From 6bd73ea66ca7d3884111559742a500579f22a271 Mon Sep 17 00:00:00 2001 From: Ben Millwood Date: Mon, 14 Oct 2024 23:32:54 +0100 Subject: [PATCH 01/54] Fix Apache instructions and PHP extension list For the Apache instruction, the Options directive does exist, but it's not the one that controls .htaccess usage, that's AllowOverride. For the PHP module, correct mbstrings to mbstring and remove hash, since the [hash extension][1] has been included in PHP since 5.1.2, and is core since PHP 7.4, both of which are above the minimum Friendica version. [1]: https://www.php.net/manual/en/hash.installation.php --- doc/Install.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/Install.md b/doc/Install.md index d7cce941a4..25dca436af 100644 --- a/doc/Install.md +++ b/doc/Install.md @@ -27,10 +27,10 @@ Due to the large variety of operating systems and PHP platforms in existence we ### Requirements -* Apache with mod-rewrite enabled and "Options All" so you can use a local `.htaccess` file +* Apache with mod_rewrite enabled and "[AllowOverride All](https://httpd.apache.org/docs/2.4/mod/core.html#allowoverride)" so you can use a local `.htaccess` file * PHP 7.4+ * PHP *command line* access with register_argc_argv set to true in the php.ini file - * Curl, GD, GMP, PDO, mbstrings, MySQLi, hash, xml, zip, IntlChar, IDN and OpenSSL extensions + * Curl, GD, GMP, PDO, mbstring, MySQLi, xml, zip, IntlChar, IDN and OpenSSL extensions * The POSIX module of PHP needs to be activated (e.g. [RHEL, CentOS](http://www.bigsoft.co.uk/blog/index.php/2014/12/08/posix-php-commands-not-working-under-centos-7) have disabled it) * Some form of email server or email gateway such that PHP mail() works. If you cannot set up your own email server, you can use the [phpmailer](https://github.com/friendica/friendica-addons/tree/develop/phpmailer) addon and use a remote SMTP server. From 7bd076fce914d10b5a4e6ee7eceef6b28fc60221 Mon Sep 17 00:00:00 2001 From: Tobias Diekershoff Date: Tue, 15 Oct 2024 04:00:50 +0000 Subject: [PATCH 02/54] bump version 2024.09-rc --- VERSION | 2 +- database.sql | 2 +- src/App.php | 2 +- view/lang/C/messages.po | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/VERSION b/VERSION index 17fb4fb56b..375619a5b1 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -2024.09-dev +2024.09-rc diff --git a/database.sql b/database.sql index dae766cfea..128323fcea 100644 --- a/database.sql +++ b/database.sql @@ -1,5 +1,5 @@ -- ------------------------------------------ --- Friendica 2024.09-dev (Yellow Archangel) +-- Friendica 2024.09-rc (Yellow Archangel) -- DB_UPDATE_VERSION 1573 -- ------------------------------------------ diff --git a/src/App.php b/src/App.php index 1f9333170d..6e3f0423a9 100644 --- a/src/App.php +++ b/src/App.php @@ -51,7 +51,7 @@ class App { const PLATFORM = 'Friendica'; const CODENAME = 'Yellow Archangel'; - const VERSION = '2024.09-dev'; + const VERSION = '2024.09-rc'; // Allow themes to control internal parameters // by changing App values in theme.php diff --git a/view/lang/C/messages.po b/view/lang/C/messages.po index 566b5df411..813289edb5 100644 --- a/view/lang/C/messages.po +++ b/view/lang/C/messages.po @@ -6,7 +6,7 @@ #, fuzzy msgid "" msgstr "" -"Project-Id-Version: 2024.09-dev\n" +"Project-Id-Version: 2024.09-rc\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2024-10-07 20:46+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" From 93536f31e80ccdc9eb48affc4fa24d615d13ffe2 Mon Sep 17 00:00:00 2001 From: Michael Date: Wed, 16 Oct 2024 03:00:20 +0000 Subject: [PATCH 03/54] Fix the following of accounts with "?" in the URL --- src/Content/Widget/VCard.php | 2 +- src/Model/Contact.php | 2 +- src/Model/Profile.php | 2 +- src/Module/Contact/Follow.php | 24 ++++++++++++++++----- src/Module/Contact/Profile.php | 2 +- view/templates/widget/follow.tpl | 4 ++-- view/theme/frio/templates/widget/follow.tpl | 4 ++-- 7 files changed, 27 insertions(+), 13 deletions(-) diff --git a/src/Content/Widget/VCard.php b/src/Content/Widget/VCard.php index 3f89299466..8a33ba09e9 100644 --- a/src/Content/Widget/VCard.php +++ b/src/Content/Widget/VCard.php @@ -78,7 +78,7 @@ class VCard if (in_array($rel, [Contact::SHARING, Contact::FRIEND])) { $unfollow_link = 'contact/unfollow?url=' . urlencode($contact_url) . '&auto=1'; } elseif (!$pending) { - $follow_link = 'contact/follow?url=' . urlencode($contact_url) . '&auto=1'; + $follow_link = 'contact/follow?binurl=' . bin2hex($contact_url) . '&auto=1'; } } diff --git a/src/Model/Contact.php b/src/Model/Contact.php index c6bdba2dc0..cd0d1feca2 100644 --- a/src/Model/Contact.php +++ b/src/Model/Contact.php @@ -1225,7 +1225,7 @@ class Contact if ($contact['uid'] && in_array($contact['rel'], [self::SHARING, self::FRIEND])) { $unfollow_link = 'contact/unfollow?url=' . urlencode($contact['url']) . '&auto=1'; } elseif (!$contact['pending']) { - $follow_link = 'contact/follow?url=' . urlencode($contact['url']) . '&auto=1'; + $follow_link = 'contact/follow?binurl=' . bin2hex($contact['url']) . '&auto=1'; } } diff --git a/src/Model/Profile.php b/src/Model/Profile.php index 8016ce201c..a27fd9c99e 100644 --- a/src/Model/Profile.php +++ b/src/Model/Profile.php @@ -325,7 +325,7 @@ class Profile if ($visitor_is_following) { $unfollow_link = $visitor_base_path . '/contact/unfollow?url=' . urlencode($profile_url) . '&auto=1'; } else { - $follow_link = $visitor_base_path . '/contact/follow?url=' . urlencode($profile_url) . '&auto=1'; + $follow_link = $visitor_base_path . '/contact/follow?binurl=' . bin2hex($profile_url) . '&auto=1'; } } diff --git a/src/Module/Contact/Follow.php b/src/Module/Contact/Follow.php index 23f88d9e2d..72c5238184 100644 --- a/src/Module/Contact/Follow.php +++ b/src/Module/Contact/Follow.php @@ -56,11 +56,15 @@ class Follow extends BaseModule throw new ForbiddenException($this->t('Access denied.')); } - if (isset($request['cancel']) || empty($request['url'])) { - $this->baseUrl->redirect('contact'); + if (!empty($request['follow-url'])) { + $this->baseUrl->redirect('contact/follow?binurl=' . bin2hex($request['follow-url'])); } - $url = Probe::cleanURI($request['url']); + $url = $this->getUrl($request); + + if (isset($request['cancel']) || empty($url)) { + $this->baseUrl->redirect('contact'); + } $this->process($url); } @@ -77,7 +81,7 @@ class Follow extends BaseModule $uid = $this->session->getLocalUserId(); // uri is used by the /authorize_interaction Mastodon route - $url = Probe::cleanURI(trim($request['uri'] ?? $request['url'] ?? '')); + $url = $this->getUrl($request); // Issue 6874: Allow remote following from Peertube if (strpos($url, 'acct:') === 0) { @@ -182,7 +186,7 @@ class Follow extends BaseModule protected function process(string $url) { - $returnPath = 'contact/follow?url=' . urlencode($url); + $returnPath = 'contact/follow?binurl=' . bin2hex($url); $result = Contact::createFromProbeForUser($this->session->getLocalUserId(), $url); @@ -227,4 +231,14 @@ class Follow extends BaseModule return; } } + + private function getUrl(array $request): string + { + if (!empty($request['binurl']) && Strings::isHex($request['binurl'])) { + $url = hex2bin($request['binurl']); + } else { + $url = $request['url'] ?? ''; + } + return Probe::cleanURI($url); + } } diff --git a/src/Module/Contact/Profile.php b/src/Module/Contact/Profile.php index efd7c5cdb6..71369c6de6 100644 --- a/src/Module/Contact/Profile.php +++ b/src/Module/Contact/Profile.php @@ -477,7 +477,7 @@ class Profile extends BaseModule } else { $contact_actions['follow'] = [ 'label' => $this->t('Follow'), - 'url' => 'contact/follow?url=' . urlencode($contact['url']) . '&auto=1', + 'url' => 'contact/follow?binurl=' . bin2hex($contact['url']) . '&auto=1', 'title' => '', 'sel' => '', 'id' => 'follow', diff --git a/view/templates/widget/follow.tpl b/view/templates/widget/follow.tpl index ae3f32d622..f980dacd3a 100644 --- a/view/templates/widget/follow.tpl +++ b/view/templates/widget/follow.tpl @@ -8,8 +8,8 @@

{{$connect}}

{{$desc nofilter}}
-
- + +
diff --git a/view/theme/frio/templates/widget/follow.tpl b/view/theme/frio/templates/widget/follow.tpl index 9e96196459..2e679f9f5d 100644 --- a/view/theme/frio/templates/widget/follow.tpl +++ b/view/theme/frio/templates/widget/follow.tpl @@ -8,10 +8,10 @@

{{$connect}}

-
+ {{* The input field - For visual consistence we are using a search input field*}}
From 124c55d3cf672a920767092e48ebd7778c21583b Mon Sep 17 00:00:00 2001 From: Tobias Diekershoff Date: Wed, 16 Oct 2024 04:54:39 +0000 Subject: [PATCH 04/54] reorder 2FA buttons The first button is selected by default, moving the disable button down, so by default the recover codes will be displayed if a user huts ENTER after typing their password. fixes 14464 --- view/templates/settings/twofactor/index.tpl | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/view/templates/settings/twofactor/index.tpl b/view/templates/settings/twofactor/index.tpl index c5f5288505..1832a09d0d 100644 --- a/view/templates/settings/twofactor/index.tpl +++ b/view/templates/settings/twofactor/index.tpl @@ -28,16 +28,16 @@ {{include file="field_password.tpl" field=$password}} -{{if !$has_secret}} -

-{{else}} -

-{{/if}} {{if $has_secret && $verified}}

{{/if}} +{{if !$has_secret}} +

+{{else}} +

+{{/if}} {{if $has_secret && !$verified}}

{{/if}} From 0faaad75c0f52dfaca7c7986522c7b308de27626 Mon Sep 17 00:00:00 2001 From: Tobias Diekershoff Date: Wed, 16 Oct 2024 05:37:07 +0000 Subject: [PATCH 05/54] Update translation files This updates various translation po files with the current state from Transifex and regenerates the string.php files from them --- view/lang/ar/messages.po | 6640 ++++++++++++++++++------------------ view/lang/ar/strings.php | 15 +- view/lang/bg/messages.po | 6920 ++++++++++++++++++------------------- view/lang/bg/strings.php | 18 +- view/lang/ca/messages.po | 6922 ++++++++++++++++++------------------- view/lang/ca/strings.php | 23 +- view/lang/cs/messages.po | 6520 ++++++++++++++++++----------------- view/lang/cs/strings.php | 16 +- view/lang/de/messages.po | 6644 ++++++++++++++++++------------------ view/lang/de/strings.php | 20 +- view/lang/eo/messages.po | 6920 ++++++++++++++++++------------------- view/lang/eo/strings.php | 18 +- view/lang/es/messages.po | 6522 ++++++++++++++++++----------------- view/lang/es/strings.php | 18 +- view/lang/et/messages.po | 6970 +++++++++++++++++++------------------- view/lang/et/strings.php | 26 +- view/lang/fr/messages.po | 6644 ++++++++++++++++++------------------ view/lang/fr/strings.php | 31 +- view/lang/gd/messages.po | 6644 ++++++++++++++++++------------------ view/lang/gd/strings.php | 17 +- view/lang/hu/messages.po | 6644 ++++++++++++++++++------------------ view/lang/hu/strings.php | 20 +- view/lang/is/messages.po | 6518 ++++++++++++++++++----------------- view/lang/is/strings.php | 9 +- view/lang/it/messages.po | 6522 ++++++++++++++++++----------------- view/lang/it/strings.php | 18 +- view/lang/ja/messages.po | 6520 ++++++++++++++++++----------------- view/lang/ja/strings.php | 17 +- view/lang/nl/messages.po | 6520 ++++++++++++++++++----------------- view/lang/nl/strings.php | 16 +- view/lang/pl/messages.po | 6644 ++++++++++++++++++------------------ view/lang/pl/strings.php | 19 +- view/lang/ru/messages.po | 6644 ++++++++++++++++++------------------ view/lang/ru/strings.php | 20 +- view/lang/sv/messages.po | 6520 ++++++++++++++++++----------------- view/lang/sv/strings.php | 11 +- 36 files changed, 59871 insertions(+), 60339 deletions(-) diff --git a/view/lang/ar/messages.po b/view/lang/ar/messages.po index d382b7641a..22abf6ddc0 100644 --- a/view/lang/ar/messages.po +++ b/view/lang/ar/messages.po @@ -1,7 +1,6 @@ # FRIENDICA Distributed Social Network -# SPDX-FileCopyrightText: Copyright (C) 2010-2024, the Friendica project -# -# SPDX-License-Identifier: AGPL-3.0-or-later +# Copyright (C) 2010-2024, the Friendica project +# This file is distributed under the same license as the Friendica package. # # Translators: # Abdullah Alsabi , 2016 @@ -17,7 +16,7 @@ msgid "" msgstr "" "Project-Id-Version: friendica\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-08-11 06:43+0000\n" +"POT-Creation-Date: 2024-10-07 20:46+0000\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" @@ -27,77 +26,77 @@ msgstr "" "Language: ar\n" "Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" -#: mod/item.php:101 mod/item.php:104 mod/item.php:171 mod/item.php:174 +#: mod/item.php:89 mod/item.php:92 mod/item.php:159 mod/item.php:162 msgid "Unable to locate original post." msgstr "تعذر إيجاد المشاركة الأصلية." -#: mod/item.php:139 +#: mod/item.php:127 msgid "Post updated." msgstr "حُدثت المشاركة." -#: mod/item.php:204 mod/item.php:208 +#: mod/item.php:192 mod/item.php:196 msgid "Item wasn't stored." msgstr "لم يخزن العنصر." -#: mod/item.php:218 +#: mod/item.php:206 msgid "Item couldn't be fetched." msgstr "تعذر جلب العنصر." -#: mod/item.php:262 mod/item.php:266 +#: mod/item.php:250 mod/item.php:254 msgid "Empty post discarded." msgstr "رُفضت المشاركة الفارغة." -#: mod/item.php:437 src/Module/Admin/Themes/Details.php:45 -#: src/Module/Admin/Themes/Index.php:65 src/Module/Debug/ItemBody.php:42 -#: src/Module/Debug/ItemBody.php:57 src/Module/Item/Feed.php:80 +#: mod/item.php:425 src/Module/Admin/Themes/Details.php:31 +#: src/Module/Admin/Themes/Index.php:51 src/Module/Debug/ItemBody.php:28 +#: src/Module/Debug/ItemBody.php:43 src/Module/Item/Feed.php:66 msgid "Item not found." msgstr "لم يُعثر على العنصر." -#: mod/item.php:461 mod/message.php:66 mod/message.php:112 mod/notes.php:45 -#: mod/photos.php:147 mod/photos.php:663 src/Model/Event.php:520 -#: src/Module/Attach.php:55 src/Module/BaseApi.php:103 -#: src/Module/BaseNotifications.php:98 src/Module/BaseSettings.php:50 -#: src/Module/Calendar/Event/API.php:88 src/Module/Calendar/Event/Form.php:84 -#: src/Module/Calendar/Export.php:82 src/Module/Calendar/Show.php:82 -#: src/Module/Circle.php:41 src/Module/Circle.php:84 -#: src/Module/Contact/Advanced.php:60 src/Module/Contact/Follow.php:87 -#: src/Module/Contact/Follow.php:160 src/Module/Contact/MatchInterests.php:87 -#: src/Module/Contact/Suggestions.php:54 src/Module/Contact/Unfollow.php:66 -#: src/Module/Contact/Unfollow.php:80 src/Module/Contact/Unfollow.php:112 -#: src/Module/FollowConfirm.php:38 src/Module/FriendSuggest.php:57 -#: src/Module/Invite.php:42 src/Module/Invite.php:131 -#: src/Module/Notifications/Notification.php:76 -#: src/Module/Notifications/Notification.php:107 -#: src/Module/OStatus/Repair.php:60 src/Module/OStatus/Subscribe.php:68 -#: src/Module/Post/Edit.php:76 src/Module/Profile/Common.php:75 -#: src/Module/Profile/Contacts.php:78 src/Module/Profile/Photos.php:92 -#: src/Module/Profile/Schedule.php:39 src/Module/Profile/Schedule.php:56 -#: src/Module/Register.php:84 src/Module/Register.php:97 -#: src/Module/Register.php:213 src/Module/Register.php:252 -#: src/Module/Search/Directory.php:37 src/Module/Settings/Account.php:50 -#: src/Module/Settings/Account.php:391 src/Module/Settings/Channels.php:66 -#: src/Module/Settings/Channels.php:141 src/Module/Settings/Delegation.php:90 -#: src/Module/Settings/Display.php:90 src/Module/Settings/Display.php:197 -#: src/Module/Settings/Profile/Photo/Crop.php:165 -#: src/Module/Settings/Profile/Photo/Index.php:110 -#: src/Module/Settings/RemoveMe.php:119 src/Module/Settings/UserExport.php:78 -#: src/Module/Settings/UserExport.php:114 -#: src/Module/Settings/UserExport.php:213 -#: src/Module/Settings/UserExport.php:233 -#: src/Module/Settings/UserExport.php:298 src/Module/User/Delegation.php:154 -#: src/Module/User/Import.php:85 src/Module/User/Import.php:92 +#: mod/item.php:449 mod/message.php:54 mod/message.php:100 mod/notes.php:33 +#: mod/photos.php:135 mod/photos.php:627 src/Model/Event.php:506 +#: src/Module/Attach.php:41 src/Module/BaseApi.php:89 +#: src/Module/BaseNotifications.php:84 src/Module/BaseSettings.php:36 +#: src/Module/Calendar/Event/API.php:74 src/Module/Calendar/Event/Form.php:70 +#: src/Module/Calendar/Export.php:68 src/Module/Calendar/Show.php:68 +#: src/Module/Circle.php:27 src/Module/Circle.php:70 +#: src/Module/Contact/Advanced.php:46 src/Module/Contact/Follow.php:73 +#: src/Module/Contact/Follow.php:141 src/Module/Contact/MatchInterests.php:73 +#: src/Module/Contact/Suggestions.php:40 src/Module/Contact/Unfollow.php:52 +#: src/Module/Contact/Unfollow.php:66 src/Module/Contact/Unfollow.php:98 +#: src/Module/FollowConfirm.php:24 src/Module/FriendSuggest.php:43 +#: src/Module/Invite.php:28 src/Module/Invite.php:117 +#: src/Module/Notifications/Notification.php:62 +#: src/Module/Notifications/Notification.php:93 +#: src/Module/OStatus/Subscribe.php:54 src/Module/Post/Edit.php:62 +#: src/Module/Profile/Common.php:61 src/Module/Profile/Contacts.php:64 +#: src/Module/Profile/Photos.php:78 src/Module/Profile/Schedule.php:25 +#: src/Module/Profile/Schedule.php:42 src/Module/Register.php:70 +#: src/Module/Register.php:83 src/Module/Register.php:199 +#: src/Module/Register.php:238 src/Module/Search/Directory.php:23 +#: src/Module/Settings/Account.php:36 src/Module/Settings/Account.php:377 +#: src/Module/Settings/Channels.php:52 src/Module/Settings/Channels.php:127 +#: src/Module/Settings/Delegation.php:76 src/Module/Settings/Display.php:76 +#: src/Module/Settings/Display.php:183 +#: src/Module/Settings/Profile/Photo/Crop.php:151 +#: src/Module/Settings/Profile/Photo/Index.php:96 +#: src/Module/Settings/RemoveMe.php:105 src/Module/Settings/UserExport.php:64 +#: src/Module/Settings/UserExport.php:100 +#: src/Module/Settings/UserExport.php:199 +#: src/Module/Settings/UserExport.php:219 +#: src/Module/Settings/UserExport.php:284 src/Module/User/Delegation.php:140 +#: src/Module/User/Import.php:71 src/Module/User/Import.php:78 msgid "Permission denied." msgstr "رُفض الإذن." -#: mod/lostpass.php:40 +#: mod/lostpass.php:28 msgid "No valid account found." msgstr "لم يُعثر على حساب صالح." -#: mod/lostpass.php:52 +#: mod/lostpass.php:40 msgid "Password reset request issued. Check your email." msgstr "تم تقديم طلب إعادة تعيين كلمه المرور. تحقق من بريدك الإلكتروني." -#: mod/lostpass.php:58 +#: mod/lostpass.php:46 #, php-format msgid "" "\n" @@ -113,7 +112,7 @@ msgid "" "\t\tissued this request." msgstr "\n\t\tعزيزي %1$s،\n\t\t\tاستلمنا مؤخرًا طلبًا لاستعادة كلمة المرور على \"%2$s\".\n\t\tلتأكيد هذا الطلب، يرجى النقر على رابط التحقق\n\t\tأدناه أو لصقه في شريط عناوين متصفح الويب الخاص بك.\n\n\t\tإذا لم تطلب هذا التغيير، الرجاء عدم اتباع الرابط\n\t\tوتجاهل و/أو حذف هذا البريد الإلكتروني، الطلب سينتهي قريبا.\n\n\t\tلن يتم تغيير كلمة المرور الخاصة بك ما لم نتمكن من التحقق من\n\t\tهويتك." -#: mod/lostpass.php:69 +#: mod/lostpass.php:57 #, php-format msgid "" "\n" @@ -130,70 +129,70 @@ msgid "" "\t\tLogin Name:\t%3$s" msgstr "\n\t\tاتبع هذا الرابط للتحقق من هويتك:\n\n\t\t\t\t%1$s\n\n\t\tسوف تتلقى رسالة متابعة تحتوي على كلمة المرور الجديدة.\n\t يمكنك تغيير كلمة المرور من صفحة إعدادات الحساب بعد الولوج.\n\n\t\tتفاصيل الولوج هي:\n\n\t\tالموقع:\t%2$s\n\t\tاسم الولوج:\t%3$s" -#: mod/lostpass.php:84 +#: mod/lostpass.php:72 #, php-format msgid "Password reset requested at %s" msgstr "طُلب إعادة تعيين كلمة المرور على %s" -#: mod/lostpass.php:100 +#: mod/lostpass.php:88 msgid "" "Request could not be verified. (You may have previously submitted it.) " "Password reset failed." msgstr "تعذر التحقق من الطلب (ربما تكون قد أرسلته مسبقاً). فشلت إعادة تعيين كلمة المرور." -#: mod/lostpass.php:113 +#: mod/lostpass.php:101 msgid "Request has expired, please make a new one." msgstr "انتهت صلاحيته، أرسل طلب جديد." -#: mod/lostpass.php:128 +#: mod/lostpass.php:116 msgid "Forgot your Password?" msgstr "نسيت كلمة المرور؟" -#: mod/lostpass.php:129 +#: mod/lostpass.php:117 msgid "" "Enter your email address and submit to have your password reset. Then check " "your email for further instructions." msgstr "أدخل عنوان بريدك الإلكتروني لإعادة تعيين كلمة المرور. بعد ذلك راجع من بريدك الإلكتروني لمزيد من التعليمات." -#: mod/lostpass.php:130 src/Module/Security/Login.php:164 +#: mod/lostpass.php:118 src/Module/Security/Login.php:150 msgid "Nickname or Email: " msgstr "اللقب أو البريد الإلكتروني: " -#: mod/lostpass.php:131 +#: mod/lostpass.php:119 msgid "Reset" msgstr "أعد التعيين" -#: mod/lostpass.php:146 src/Module/Security/Login.php:176 +#: mod/lostpass.php:134 src/Module/Security/Login.php:162 msgid "Password Reset" msgstr "إعادة تعيين كلمة المرور" -#: mod/lostpass.php:147 +#: mod/lostpass.php:135 msgid "Your password has been reset as requested." msgstr "أُعيد تعيين كلمة المرور بناء على طلبك." -#: mod/lostpass.php:148 +#: mod/lostpass.php:136 msgid "Your new password is" msgstr "كلمة مرورك الجديدة هي" -#: mod/lostpass.php:149 +#: mod/lostpass.php:137 msgid "Save or copy your new password - and then" msgstr "احفظ أو انسخ كلمة المرور الجديدة - ثم" -#: mod/lostpass.php:150 +#: mod/lostpass.php:138 msgid "click here to login" msgstr "أنقر هنا للولوج" -#: mod/lostpass.php:151 +#: mod/lostpass.php:139 msgid "" "Your password may be changed from the Settings page after " "successful login." msgstr "يمكنك تغيير كلمة المرور من الإعدادات بعد ولوجك بنجاح." -#: mod/lostpass.php:155 +#: mod/lostpass.php:143 msgid "Your password has been reset." msgstr "أُعيد تعيين كلمة المرور." -#: mod/lostpass.php:158 +#: mod/lostpass.php:146 #, php-format msgid "" "\n" @@ -204,7 +203,7 @@ msgid "" "\t\t" msgstr "\n\t\t\tعزيزي %1$s،\n\t\t\t\tغُيّرت كلمة المرور بناء على طلبك. يرجى الاحتفاظ بهذه\n\t\t\tالمعلومات (أو تغيير كلمة المرور الخاصة بك على الفور).\n\t\t\t\t" -#: mod/lostpass.php:164 +#: mod/lostpass.php:152 #, php-format msgid "" "\n" @@ -218,161 +217,161 @@ msgid "" "\t\t" msgstr "\n\t\t\tتفاصيل الولوج كالتالي:\n\n\t\t\tالموقع:\t%1$s\n\t\t\tاسم المستخدم:\t%2$s\n\t\t\tكلمة المرور:\t%3$s\n\n\t\t\tيمكنك تغيير كلمة المرور من صفحة إعدادات الحساب.\n\t\t\t" -#: mod/lostpass.php:176 +#: mod/lostpass.php:164 #, php-format msgid "Your password has been changed at %s" msgstr "غُيرت كلمة المرور على %s" -#: mod/message.php:45 mod/message.php:127 src/Content/Nav.php:321 +#: mod/message.php:33 mod/message.php:115 src/Content/Nav.php:307 msgid "New Message" msgstr "رسالة جديدة" -#: mod/message.php:81 +#: mod/message.php:69 msgid "No recipient selected." msgstr "لم تختر متلقيا." -#: mod/message.php:86 +#: mod/message.php:74 msgid "Unable to locate contact information." msgstr "تعذر العثور على معلومات المتراسل." -#: mod/message.php:90 +#: mod/message.php:78 msgid "Message could not be sent." msgstr "تعذر إرسال الرسالة." -#: mod/message.php:94 +#: mod/message.php:82 msgid "Message collection failure." msgstr "فشل استرجاع الرسائل." -#: mod/message.php:121 src/Module/Notifications/Introductions.php:141 -#: src/Module/Notifications/Introductions.php:176 -#: src/Module/Notifications/Notification.php:85 +#: mod/message.php:109 src/Module/Notifications/Introductions.php:127 +#: src/Module/Notifications/Introductions.php:162 +#: src/Module/Notifications/Notification.php:71 msgid "Discard" msgstr "ارفض" -#: mod/message.php:134 src/Content/Nav.php:318 view/theme/frio/theme.php:244 +#: mod/message.php:122 src/Content/Nav.php:304 view/theme/frio/theme.php:232 msgid "Messages" msgstr "الرسائل" -#: mod/message.php:147 +#: mod/message.php:135 msgid "Conversation not found." msgstr "لم يُعثر على المُحادثة." -#: mod/message.php:152 +#: mod/message.php:140 msgid "Message was not deleted." msgstr "لم تحذف الرسالة." -#: mod/message.php:167 +#: mod/message.php:155 msgid "Conversation was not removed." msgstr "لم تُزل المحادثة." -#: mod/message.php:180 mod/message.php:285 +#: mod/message.php:168 mod/message.php:273 msgid "Please enter a link URL:" msgstr "يرجى إدخال الرابط:" -#: mod/message.php:189 +#: mod/message.php:177 msgid "Send Private Message" msgstr "أرسل رسالة خاصة" -#: mod/message.php:190 mod/message.php:345 -#: src/Module/Privacy/PermissionTooltip.php:132 +#: mod/message.php:178 mod/message.php:333 +#: src/Module/Privacy/PermissionTooltip.php:118 msgid "To:" msgstr "إلى:" -#: mod/message.php:191 mod/message.php:346 +#: mod/message.php:179 mod/message.php:334 msgid "Subject:" msgstr "الموضوع:" -#: mod/message.php:195 mod/message.php:349 src/Module/Invite.php:171 +#: mod/message.php:183 mod/message.php:337 src/Module/Invite.php:157 msgid "Your message:" msgstr "رسالتك:" -#: mod/message.php:198 mod/message.php:353 src/Content/Conversation.php:369 -#: src/Module/Post/Edit.php:131 +#: mod/message.php:186 mod/message.php:341 src/Content/Conversation.php:355 +#: src/Module/Post/Edit.php:117 msgid "Upload photo" msgstr "ارفع صورة" -#: mod/message.php:199 mod/message.php:354 src/Module/Post/Edit.php:135 +#: mod/message.php:187 mod/message.php:342 src/Module/Post/Edit.php:121 msgid "Insert web link" msgstr "أدرج رابط ويب" -#: mod/message.php:200 mod/message.php:356 mod/photos.php:1291 -#: src/Content/Conversation.php:400 src/Content/Conversation.php:1576 -#: src/Module/Item/Compose.php:213 src/Module/Post/Edit.php:145 -#: src/Object/Post.php:618 +#: mod/message.php:188 mod/message.php:344 mod/photos.php:1255 +#: src/Content/Conversation.php:386 src/Content/Conversation.php:1562 +#: src/Module/Item/Compose.php:199 src/Module/Post/Edit.php:131 +#: src/Object/Post.php:604 msgid "Please wait" msgstr "يرجى الانتظار" -#: mod/message.php:201 mod/message.php:355 mod/photos.php:694 -#: mod/photos.php:814 mod/photos.php:1091 mod/photos.php:1132 -#: mod/photos.php:1188 mod/photos.php:1268 -#: src/Module/Calendar/Event/Form.php:250 src/Module/Contact/Advanced.php:132 -#: src/Module/Contact/Profile.php:384 -#: src/Module/Debug/ActivityPubConversion.php:146 -#: src/Module/Debug/Babel.php:321 src/Module/Debug/Localtime.php:64 -#: src/Module/Debug/Probe.php:54 src/Module/Debug/WebFinger.php:51 -#: src/Module/FriendSuggest.php:145 src/Module/Install.php:234 -#: src/Module/Install.php:274 src/Module/Install.php:309 -#: src/Module/Invite.php:178 src/Module/Item/Compose.php:196 -#: src/Module/Moderation/Item/Source.php:85 -#: src/Module/Moderation/Report/Create.php:168 -#: src/Module/Moderation/Report/Create.php:183 -#: src/Module/Moderation/Report/Create.php:211 -#: src/Module/Moderation/Report/Create.php:263 -#: src/Module/Profile/Profile.php:276 -#: src/Module/Settings/Profile/Index.php:262 -#: src/Module/Settings/Server/Action.php:79 src/Module/User/Delegation.php:189 -#: src/Object/Post.php:1159 view/theme/duepuntozero/config.php:85 -#: view/theme/frio/config.php:150 view/theme/quattro/config.php:87 -#: view/theme/vier/config.php:135 +#: mod/message.php:189 mod/message.php:343 mod/photos.php:658 +#: mod/photos.php:778 mod/photos.php:1055 mod/photos.php:1096 +#: mod/photos.php:1152 mod/photos.php:1232 +#: src/Module/Calendar/Event/Form.php:236 src/Module/Contact/Advanced.php:118 +#: src/Module/Contact/Profile.php:370 +#: src/Module/Debug/ActivityPubConversion.php:132 +#: src/Module/Debug/Babel.php:307 src/Module/Debug/Localtime.php:50 +#: src/Module/Debug/Probe.php:40 src/Module/Debug/WebFinger.php:37 +#: src/Module/FriendSuggest.php:131 src/Module/Install.php:220 +#: src/Module/Install.php:260 src/Module/Install.php:295 +#: src/Module/Invite.php:164 src/Module/Item/Compose.php:182 +#: src/Module/Moderation/Item/Source.php:71 +#: src/Module/Moderation/Report/Create.php:154 +#: src/Module/Moderation/Report/Create.php:169 +#: src/Module/Moderation/Report/Create.php:197 +#: src/Module/Moderation/Report/Create.php:249 +#: src/Module/Profile/Profile.php:262 +#: src/Module/Settings/Profile/Index.php:248 +#: src/Module/Settings/Server/Action.php:65 src/Module/User/Delegation.php:175 +#: src/Object/Post.php:1145 view/theme/duepuntozero/config.php:73 +#: view/theme/frio/config.php:138 view/theme/quattro/config.php:75 +#: view/theme/vier/config.php:123 msgid "Submit" msgstr "أرسل" -#: mod/message.php:222 +#: mod/message.php:210 msgid "No messages." msgstr "لا رسائل." -#: mod/message.php:278 +#: mod/message.php:266 msgid "Message not available." msgstr "الرّسالة غير متوفّرة." -#: mod/message.php:322 +#: mod/message.php:310 msgid "Delete message" msgstr "احذف الرسالة" -#: mod/message.php:324 mod/message.php:453 +#: mod/message.php:312 mod/message.php:441 msgid "D, d M Y - g:i A" msgstr "D, d M Y - g:i A" -#: mod/message.php:339 mod/message.php:450 +#: mod/message.php:327 mod/message.php:438 msgid "Delete conversation" msgstr "احذف المحادثة" -#: mod/message.php:341 +#: mod/message.php:329 msgid "" "No secure communications available. You may be able to " "respond from the sender's profile page." msgstr "لا يتوافر اتصال آمن. قد تستطيع الرد من خلال صفحة الملف الشخصي للمرسل." -#: mod/message.php:344 +#: mod/message.php:332 msgid "Send Reply" msgstr "أرسل ردًا" -#: mod/message.php:424 +#: mod/message.php:412 #, php-format msgid "Unknown sender - %s" msgstr "المرسل مجهول - %s" -#: mod/message.php:426 +#: mod/message.php:414 #, php-format msgid "You and %s" msgstr "أنت و %s" -#: mod/message.php:428 +#: mod/message.php:416 #, php-format msgid "%s and You" msgstr "%s وأنت" -#: mod/message.php:456 +#: mod/message.php:444 #, php-format msgid "%d message" msgid_plural "%d messages" @@ -383,799 +382,799 @@ msgstr[3] "%d رسائل" msgstr[4] "%d رسالة" msgstr[5] "%d رسالة" -#: mod/notes.php:52 src/Module/BaseProfile.php:108 +#: mod/notes.php:40 src/Module/BaseProfile.php:94 msgid "Personal Notes" msgstr "ملاحظات شخصية" -#: mod/notes.php:56 +#: mod/notes.php:44 msgid "Personal notes are visible only by yourself." msgstr "الملاحظات الشخصية مرئية لك فقط." -#: mod/notes.php:57 src/Content/Text/HTML.php:861 -#: src/Module/Admin/Storage.php:142 src/Module/Filer/SaveTag.php:74 -#: src/Module/Post/Edit.php:129 src/Module/Settings/Channels.php:229 +#: mod/notes.php:45 src/Content/Text/HTML.php:847 +#: src/Module/Admin/Storage.php:128 src/Module/Filer/SaveTag.php:60 +#: src/Module/Post/Edit.php:115 src/Module/Settings/Channels.php:215 msgid "Save" msgstr "احفظ" -#: mod/photos.php:66 mod/photos.php:129 mod/photos.php:573 -#: src/Model/Event.php:512 src/Model/Profile.php:227 -#: src/Module/Calendar/Export.php:74 src/Module/Calendar/Show.php:74 -#: src/Module/DFRN/Poll.php:43 src/Module/Feed.php:66 src/Module/HCard.php:51 -#: src/Module/Profile/Common.php:62 src/Module/Profile/Common.php:71 -#: src/Module/Profile/Contacts.php:64 src/Module/Profile/Contacts.php:72 -#: src/Module/Profile/Conversations.php:91 src/Module/Profile/Media.php:56 -#: src/Module/Profile/Photos.php:83 src/Module/Profile/RemoteFollow.php:71 -#: src/Module/Register.php:274 +#: mod/photos.php:54 mod/photos.php:117 mod/photos.php:537 +#: src/Model/Event.php:498 src/Model/Profile.php:213 +#: src/Module/Calendar/Export.php:60 src/Module/Calendar/Show.php:60 +#: src/Module/Feed.php:52 src/Module/HCard.php:37 +#: src/Module/Profile/Common.php:48 src/Module/Profile/Common.php:57 +#: src/Module/Profile/Contacts.php:50 src/Module/Profile/Contacts.php:58 +#: src/Module/Profile/Conversations.php:77 src/Module/Profile/Media.php:42 +#: src/Module/Profile/Photos.php:69 src/Module/Profile/RemoteFollow.php:57 +#: src/Module/Register.php:260 msgid "User not found." msgstr "لم يُعثر على المستخدم." -#: mod/photos.php:103 src/Module/BaseProfile.php:68 -#: src/Module/Profile/Photos.php:375 +#: mod/photos.php:91 src/Module/BaseProfile.php:54 +#: src/Module/Profile/Photos.php:361 msgid "Photo Albums" msgstr "ألبومات الصور" -#: mod/photos.php:104 src/Module/Profile/Photos.php:376 -#: src/Module/Profile/Photos.php:396 +#: mod/photos.php:92 src/Module/Profile/Photos.php:362 +#: src/Module/Profile/Photos.php:382 msgid "Recent Photos" msgstr "الصور الأخيرة" -#: mod/photos.php:106 mod/photos.php:862 src/Module/Profile/Photos.php:378 -#: src/Module/Profile/Photos.php:398 +#: mod/photos.php:94 mod/photos.php:826 src/Module/Profile/Photos.php:364 +#: src/Module/Profile/Photos.php:384 msgid "Upload New Photos" msgstr "ارفع صور جديدة" -#: mod/photos.php:118 src/Module/BaseSettings.php:72 -#: src/Module/Profile/Photos.php:359 +#: mod/photos.php:106 src/Module/BaseSettings.php:58 +#: src/Module/Profile/Photos.php:345 msgid "everybody" msgstr "الجميع" -#: mod/photos.php:154 +#: mod/photos.php:142 msgid "Contact information unavailable" msgstr "معلومات المتراسل غير متوفرة" -#: mod/photos.php:183 +#: mod/photos.php:171 msgid "Album not found." msgstr "لم يُعثر على الألبوم." -#: mod/photos.php:239 +#: mod/photos.php:227 msgid "Album successfully deleted" msgstr "حُذف الألبوم بنجاح" -#: mod/photos.php:241 +#: mod/photos.php:229 msgid "Album was empty." msgstr "ألبوم فارغ." -#: mod/photos.php:272 +#: mod/photos.php:260 msgid "Failed to delete the photo." msgstr "فشل حذف الصفحة." -#: mod/photos.php:540 +#: mod/photos.php:504 msgid "a photo" msgstr "صورة" -#: mod/photos.php:540 +#: mod/photos.php:504 #, php-format msgid "%1$s was tagged in %2$s by %3$s" msgstr "ذكر %3$s %1$s في %2$s" -#: mod/photos.php:577 src/Module/Conversation/Community.php:160 -#: src/Module/Directory.php:49 src/Module/Profile/Photos.php:293 -#: src/Module/Search/Index.php:65 +#: mod/photos.php:541 src/Module/Conversation/Community.php:148 +#: src/Module/Directory.php:35 src/Module/Profile/Photos.php:279 +#: src/Module/Search/Index.php:51 msgid "Public access denied." msgstr "رُفض الوصول العلني." -#: mod/photos.php:582 +#: mod/photos.php:546 msgid "No photos selected" msgstr "لم تختر صورًا" -#: mod/photos.php:710 +#: mod/photos.php:674 #, php-format msgid "The maximum accepted image size is %s" msgstr "الحد الأقصى لحجم الصورة المسموح به هو %s" -#: mod/photos.php:717 +#: mod/photos.php:681 msgid "Upload Photos" msgstr "ارفع صورًا" -#: mod/photos.php:721 mod/photos.php:810 +#: mod/photos.php:685 mod/photos.php:774 msgid "New album name: " msgstr "اسم الألبوم الجديد: " -#: mod/photos.php:722 +#: mod/photos.php:686 msgid "or select existing album:" msgstr "أو اختر ألبومًا موجودًا:" -#: mod/photos.php:723 +#: mod/photos.php:687 msgid "Do not show a status post for this upload" msgstr "لا تظهر مشاركة حالة لهذا الملف المرفوع" -#: mod/photos.php:726 mod/photos.php:1087 src/Content/Conversation.php:402 -#: src/Module/Calendar/Event/Form.php:253 src/Module/Post/Edit.php:183 +#: mod/photos.php:690 mod/photos.php:1051 src/Content/Conversation.php:388 +#: src/Module/Calendar/Event/Form.php:239 src/Module/Post/Edit.php:169 msgid "Permissions" msgstr "الأُذونات" -#: mod/photos.php:791 +#: mod/photos.php:755 msgid "Do you really want to delete this photo album and all its photos?" msgstr "أتريد حذف هذا الألبوم وكافة محتوياته؟" -#: mod/photos.php:792 mod/photos.php:815 +#: mod/photos.php:756 mod/photos.php:779 msgid "Delete Album" msgstr "احذف الألبوم" -#: mod/photos.php:793 mod/photos.php:893 src/Content/Conversation.php:417 -#: src/Module/Contact/Follow.php:173 src/Module/Contact/Revoke.php:106 -#: src/Module/Contact/Unfollow.php:126 -#: src/Module/Media/Attachment/Browser.php:77 -#: src/Module/Media/Photo/Browser.php:88 src/Module/Post/Edit.php:167 -#: src/Module/Post/Tag/Remove.php:109 src/Module/Profile/RemoteFollow.php:134 -#: src/Module/Security/TwoFactor/SignOut.php:125 +#: mod/photos.php:757 mod/photos.php:857 src/Content/Conversation.php:403 +#: src/Module/Contact/Follow.php:154 src/Module/Contact/Revoke.php:92 +#: src/Module/Contact/Unfollow.php:112 +#: src/Module/Media/Attachment/Browser.php:63 +#: src/Module/Media/Photo/Browser.php:74 src/Module/Post/Edit.php:153 +#: src/Module/Post/Tag/Remove.php:95 src/Module/Profile/RemoteFollow.php:120 +#: src/Module/Security/TwoFactor/SignOut.php:111 msgid "Cancel" msgstr "ألغ" -#: mod/photos.php:819 +#: mod/photos.php:783 msgid "Edit Album" msgstr "عدّل الألبوم" -#: mod/photos.php:820 +#: mod/photos.php:784 msgid "Drop Album" msgstr "احذف الألبوم" -#: mod/photos.php:824 +#: mod/photos.php:788 msgid "Show Newest First" msgstr "اعرض الأحدث أولًا" -#: mod/photos.php:826 +#: mod/photos.php:790 msgid "Show Oldest First" msgstr "اعرض الأقدم أولًا" -#: mod/photos.php:847 src/Module/Profile/Photos.php:346 +#: mod/photos.php:811 src/Module/Profile/Photos.php:332 msgid "View Photo" msgstr "اعرض الصور" -#: mod/photos.php:879 +#: mod/photos.php:843 msgid "Permission denied. Access to this item may be restricted." msgstr "رُفض الإذن. قد يكون الوصول إلى هذا العنصر مقيدا." -#: mod/photos.php:881 +#: mod/photos.php:845 msgid "Photo not available" msgstr "الصورة غير متوفرة" -#: mod/photos.php:891 +#: mod/photos.php:855 msgid "Do you really want to delete this photo?" msgstr "أتريد حذف هذه الصورة؟" -#: mod/photos.php:892 mod/photos.php:1092 +#: mod/photos.php:856 mod/photos.php:1056 msgid "Delete Photo" msgstr "احذف الصورة" -#: mod/photos.php:990 +#: mod/photos.php:954 msgid "View photo" msgstr "اعرض الصورة" -#: mod/photos.php:992 +#: mod/photos.php:956 msgid "Edit photo" msgstr "عدّل الصورة" -#: mod/photos.php:993 +#: mod/photos.php:957 msgid "Delete photo" msgstr "احذف الصورة" -#: mod/photos.php:994 +#: mod/photos.php:958 msgid "Use as profile photo" msgstr "استخدامها كصورة الملف الشخصي" -#: mod/photos.php:1001 +#: mod/photos.php:965 msgid "Private Photo" msgstr "صور خاصة" -#: mod/photos.php:1007 +#: mod/photos.php:971 msgid "View Full Size" msgstr "اعرض بالحجم الكامل" -#: mod/photos.php:1060 +#: mod/photos.php:1024 msgid "Tags: " msgstr "الوسوم: " -#: mod/photos.php:1063 +#: mod/photos.php:1027 msgid "[Select tags to remove]" msgstr "[اختر وسومًا لإزالتها]" -#: mod/photos.php:1078 +#: mod/photos.php:1042 msgid "New album name" msgstr "اسم الألبوم الجديد" -#: mod/photos.php:1079 +#: mod/photos.php:1043 msgid "Caption" msgstr "وصف الصورة" -#: mod/photos.php:1080 +#: mod/photos.php:1044 msgid "Add a Tag" msgstr "أضف وسمًا" -#: mod/photos.php:1080 +#: mod/photos.php:1044 msgid "" "Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping" msgstr "مثال: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping" -#: mod/photos.php:1081 +#: mod/photos.php:1045 msgid "Do not rotate" msgstr "لا تُدر" -#: mod/photos.php:1082 +#: mod/photos.php:1046 msgid "Rotate CW (right)" msgstr "أدر باتجاه عقارب الساعة" -#: mod/photos.php:1083 +#: mod/photos.php:1047 msgid "Rotate CCW (left)" msgstr "أدر عكس اتجاه عقارب الساعة" -#: mod/photos.php:1129 mod/photos.php:1185 mod/photos.php:1265 -#: src/Module/Contact.php:625 src/Module/Item/Compose.php:195 -#: src/Object/Post.php:1156 +#: mod/photos.php:1093 mod/photos.php:1149 mod/photos.php:1229 +#: src/Module/Contact.php:600 src/Module/Item/Compose.php:181 +#: src/Object/Post.php:1142 msgid "This is you" msgstr "هذا أنت" -#: mod/photos.php:1131 mod/photos.php:1187 mod/photos.php:1267 -#: src/Module/Moderation/Reports.php:116 src/Object/Post.php:612 -#: src/Object/Post.php:1158 +#: mod/photos.php:1095 mod/photos.php:1151 mod/photos.php:1231 +#: src/Module/Moderation/Reports.php:102 src/Object/Post.php:598 +#: src/Object/Post.php:1144 msgid "Comment" msgstr "علِّق" -#: mod/photos.php:1133 mod/photos.php:1189 mod/photos.php:1269 -#: src/Content/Conversation.php:414 src/Module/Calendar/Event/Form.php:248 -#: src/Module/Item/Compose.php:208 src/Module/Post/Edit.php:165 -#: src/Object/Post.php:1172 +#: mod/photos.php:1097 mod/photos.php:1153 mod/photos.php:1233 +#: src/Content/Conversation.php:400 src/Module/Calendar/Event/Form.php:234 +#: src/Module/Item/Compose.php:194 src/Module/Post/Edit.php:151 +#: src/Object/Post.php:1158 msgid "Preview" msgstr "معاينة" -#: mod/photos.php:1134 src/Content/Conversation.php:368 -#: src/Module/Post/Edit.php:130 src/Object/Post.php:1160 +#: mod/photos.php:1098 src/Content/Conversation.php:354 +#: src/Module/Post/Edit.php:116 src/Object/Post.php:1146 msgid "Loading..." msgstr "يحمل..." -#: mod/photos.php:1226 src/Content/Conversation.php:1498 -#: src/Object/Post.php:274 +#: mod/photos.php:1190 src/Content/Conversation.php:1484 +#: src/Object/Post.php:260 msgid "Select" msgstr "اختر" -#: mod/photos.php:1227 src/Content/Conversation.php:1499 -#: src/Module/Moderation/Users/Active.php:136 -#: src/Module/Moderation/Users/Blocked.php:136 -#: src/Module/Moderation/Users/Index.php:151 -#: src/Module/Settings/Connectors.php:254 -#: src/Module/Settings/Server/Index.php:109 +#: mod/photos.php:1191 src/Content/Conversation.php:1485 +#: src/Module/Moderation/Users/Active.php:122 +#: src/Module/Moderation/Users/Blocked.php:122 +#: src/Module/Moderation/Users/Index.php:137 +#: src/Module/Settings/Connectors.php:233 +#: src/Module/Settings/Server/Index.php:95 msgid "Delete" msgstr "احذف" -#: mod/photos.php:1288 src/Object/Post.php:440 +#: mod/photos.php:1252 src/Object/Post.php:426 msgid "Like" msgstr "أعجبني" -#: mod/photos.php:1289 src/Object/Post.php:440 +#: mod/photos.php:1253 src/Object/Post.php:426 msgid "I like this (toggle)" msgstr "أعجبني (بدِّل)" -#: mod/photos.php:1290 src/Object/Post.php:441 +#: mod/photos.php:1254 src/Object/Post.php:427 msgid "Dislike" msgstr "لم يعجبني" -#: mod/photos.php:1292 src/Object/Post.php:441 +#: mod/photos.php:1256 src/Object/Post.php:427 msgid "I don't like this (toggle)" msgstr "لم يعجبني (بدِّل)" -#: mod/photos.php:1314 +#: mod/photos.php:1278 msgid "Map" msgstr "خريطة" -#: src/App.php:446 +#: src/App.php:432 msgid "No system theme config value set." msgstr "لم تُضبط سمة النظام." -#: src/App.php:554 +#: src/App.php:540 msgid "Apologies but the website is unavailable at the moment." msgstr "نعتذر هذا الموقع غير متاح حاليا." -#: src/App/Page.php:250 +#: src/App/Page.php:236 msgid "Delete this item?" msgstr "أتريد حذف العنصر؟" -#: src/App/Page.php:251 +#: src/App/Page.php:237 msgid "" "Block this author? They won't be able to follow you nor see your public " "posts, and you won't be able to see their posts and their notifications." msgstr "أتريد حظر هذا المتراسل؟ لن يتمكن من متابعتك أو رؤية مشاركاتك العلنية، ولن تكون قادراً على رؤية مشاركاتهم واستلام تنبيهات منهم." -#: src/App/Page.php:252 +#: src/App/Page.php:238 msgid "" "Ignore this author? You won't be able to see their posts and their " "notifications." msgstr "" -#: src/App/Page.php:253 +#: src/App/Page.php:239 msgid "Collapse this author's posts?" msgstr "" -#: src/App/Page.php:254 +#: src/App/Page.php:240 msgid "Ignore this author's server?" msgstr "" -#: src/App/Page.php:255 src/Module/Settings/Server/Action.php:61 -#: src/Module/Settings/Server/Index.php:108 +#: src/App/Page.php:241 src/Module/Settings/Server/Action.php:47 +#: src/Module/Settings/Server/Index.php:94 msgid "" "You won't see any content from this server including reshares in your " "Network page, the community pages and individual conversations." msgstr "" -#: src/App/Page.php:257 +#: src/App/Page.php:243 msgid "Like not successful" msgstr "" -#: src/App/Page.php:258 +#: src/App/Page.php:244 msgid "Dislike not successful" msgstr "" -#: src/App/Page.php:259 +#: src/App/Page.php:245 msgid "Sharing not successful" msgstr "" -#: src/App/Page.php:260 +#: src/App/Page.php:246 msgid "Attendance unsuccessful" msgstr "" -#: src/App/Page.php:261 +#: src/App/Page.php:247 msgid "Backend error" msgstr "" -#: src/App/Page.php:262 +#: src/App/Page.php:248 msgid "Network error" msgstr "" -#: src/App/Page.php:265 +#: src/App/Page.php:251 msgid "Drop files here to upload" msgstr "" -#: src/App/Page.php:266 +#: src/App/Page.php:252 msgid "Your browser does not support drag and drop file uploads." msgstr "" -#: src/App/Page.php:267 +#: src/App/Page.php:253 msgid "" "Please use the fallback form below to upload your files like in the olden " "days." msgstr "" -#: src/App/Page.php:268 +#: src/App/Page.php:254 msgid "File is too big ({{filesize}}MiB). Max filesize: {{maxFilesize}}MiB." msgstr "" -#: src/App/Page.php:269 +#: src/App/Page.php:255 msgid "You can't upload files of this type." msgstr "" -#: src/App/Page.php:270 +#: src/App/Page.php:256 msgid "Server responded with {{statusCode}} code." msgstr "" -#: src/App/Page.php:271 +#: src/App/Page.php:257 msgid "Cancel upload" msgstr "" -#: src/App/Page.php:272 +#: src/App/Page.php:258 msgid "Upload canceled." msgstr "" -#: src/App/Page.php:273 +#: src/App/Page.php:259 msgid "Are you sure you want to cancel this upload?" msgstr "" -#: src/App/Page.php:274 +#: src/App/Page.php:260 msgid "Remove file" msgstr "" -#: src/App/Page.php:275 +#: src/App/Page.php:261 msgid "You can't upload any more files." msgstr "" -#: src/App/Page.php:353 +#: src/App/Page.php:339 msgid "toggle mobile" msgstr "بدّل واجهة الهاتف" -#: src/App/Router.php:309 +#: src/App/Router.php:295 #, php-format msgid "Method not allowed for this module. Allowed method(s): %s" msgstr "هذه الطريقة غير مسموح بها لهذه الوحدة. الطرق المسموح بها: %s" -#: src/App/Router.php:311 src/Module/HTTPException/PageNotFound.php:49 -#: src/Module/Stats.php:63 +#: src/App/Router.php:297 src/Module/HTTPException/PageNotFound.php:35 +#: src/Module/Stats.php:49 msgid "Page not found." msgstr "لم يُعثر على الصفحة." -#: src/App/Router.php:323 +#: src/App/Router.php:309 msgid "You must be logged in to use addons. " msgstr "يجب عليك الولوج لاستخدام الإضافات. " -#: src/BaseModule.php:407 +#: src/BaseModule.php:393 msgid "" "The form security token was not correct. This probably happened because the " "form has been opened for too long (>3 hours) before submitting it." msgstr "رمز الأمان للنموذج غير صحيح. ربما لأن النموذج فُتح لفترة طويلة (أكثر من 3 ساعات) قبل تقديمه." -#: src/BaseModule.php:434 +#: src/BaseModule.php:420 msgid "All contacts" msgstr "كل المتراسلين" -#: src/BaseModule.php:439 src/Content/Conversation/Factory/Channel.php:46 -#: src/Content/Widget.php:240 src/Core/ACL.php:195 src/Module/Contact.php:420 -#: src/Module/Privacy/PermissionTooltip.php:164 -#: src/Module/Privacy/PermissionTooltip.php:186 -#: src/Module/Settings/Channels.php:160 +#: src/BaseModule.php:425 src/Content/Conversation/Factory/Channel.php:32 +#: src/Content/Widget.php:218 src/Core/ACL.php:181 src/Module/Contact.php:395 +#: src/Module/Privacy/PermissionTooltip.php:150 +#: src/Module/Privacy/PermissionTooltip.php:172 +#: src/Module/Settings/Channels.php:146 msgid "Followers" msgstr "متابِعون" -#: src/BaseModule.php:444 src/Content/Widget.php:241 -#: src/Module/Contact.php:423 src/Module/Settings/Channels.php:159 +#: src/BaseModule.php:430 src/Content/Widget.php:219 +#: src/Module/Contact.php:398 src/Module/Settings/Channels.php:145 msgid "Following" msgstr "متابَعون" -#: src/BaseModule.php:449 src/Content/Widget.php:242 -#: src/Module/Contact.php:426 +#: src/BaseModule.php:435 src/Content/Widget.php:220 +#: src/Module/Contact.php:401 msgid "Mutual friends" msgstr "" -#: src/BaseModule.php:457 +#: src/BaseModule.php:443 msgid "Common" msgstr "الشائع" -#: src/Console/Addon.php:175 src/Console/Addon.php:199 +#: src/Console/Addon.php:161 src/Console/Addon.php:185 msgid "Addon not found" msgstr "لم يُعثر على الإضافة" -#: src/Console/Addon.php:179 +#: src/Console/Addon.php:165 msgid "Addon already enabled" msgstr "الإضافة مفعلة سلفًا" -#: src/Console/Addon.php:203 +#: src/Console/Addon.php:189 msgid "Addon already disabled" msgstr "الإضافة معطلة سلفًا" -#: src/Console/ArchiveContact.php:106 +#: src/Console/ArchiveContact.php:92 #, php-format msgid "Could not find any unarchived contact entry for this URL (%s)" msgstr "تعذر العثور على مُدخل غير مؤرشف للمتراسل ذو الرابط (%s)" -#: src/Console/ArchiveContact.php:109 +#: src/Console/ArchiveContact.php:95 msgid "The contact entries have been archived" msgstr "أُرشفت مُدخلات المتراسل" -#: src/Console/ClearAvatarCache.php:87 +#: src/Console/ClearAvatarCache.php:73 msgid "" "The avatar cache needs to be disabled in local.config.php to use this " "command." msgstr "" -#: src/Console/GlobalCommunityBlock.php:96 -#: src/Module/Moderation/Blocklist/Contact.php:65 +#: src/Console/GlobalCommunityBlock.php:82 +#: src/Module/Moderation/Blocklist/Contact.php:51 #, php-format msgid "Could not find any contact entry for this URL (%s)" msgstr "تعذر العثور على متراسل يقود اليه هذا الرابط (%s)" -#: src/Console/GlobalCommunityBlock.php:101 -#: src/Module/Moderation/Blocklist/Contact.php:82 +#: src/Console/GlobalCommunityBlock.php:87 +#: src/Module/Moderation/Blocklist/Contact.php:68 msgid "The contact has been blocked from the node" msgstr "حُجب المتراسل من هذه العقدة" -#: src/Console/MergeContacts.php:75 +#: src/Console/MergeContacts.php:61 #, php-format msgid "%d %s, %d duplicates." msgstr "" -#: src/Console/MergeContacts.php:78 +#: src/Console/MergeContacts.php:64 #, php-format msgid "uri-id is empty for contact %s." msgstr "" -#: src/Console/MergeContacts.php:91 +#: src/Console/MergeContacts.php:77 #, php-format msgid "No valid first contact found for uri-id %d." msgstr "" -#: src/Console/MergeContacts.php:102 +#: src/Console/MergeContacts.php:88 #, php-format msgid "Wrong duplicate found for uri-id %d in %d (url: %s != %s)." msgstr "" -#: src/Console/MergeContacts.php:106 +#: src/Console/MergeContacts.php:92 #, php-format msgid "Wrong duplicate found for uri-id %d in %d (nurl: %s != %s)." msgstr "" -#: src/Console/MergeContacts.php:142 +#: src/Console/MergeContacts.php:128 #, php-format msgid "Deletion of id %d failed" msgstr "فشل حذف المعرف %d" -#: src/Console/MergeContacts.php:144 +#: src/Console/MergeContacts.php:130 #, php-format msgid "Deletion of id %d was successful" msgstr "نجح حذف المعرف %d" -#: src/Console/MergeContacts.php:150 +#: src/Console/MergeContacts.php:136 #, php-format msgid "Updating \"%s\" in \"%s\" from %d to %d" msgstr "" -#: src/Console/MergeContacts.php:152 +#: src/Console/MergeContacts.php:138 msgid " - found" msgstr "" -#: src/Console/MergeContacts.php:159 +#: src/Console/MergeContacts.php:145 msgid " - failed" msgstr "- فشل" -#: src/Console/MergeContacts.php:161 +#: src/Console/MergeContacts.php:147 msgid " - success" msgstr "- نجح" -#: src/Console/MergeContacts.php:165 +#: src/Console/MergeContacts.php:151 msgid " - deleted" msgstr "- حُذف" -#: src/Console/MergeContacts.php:168 +#: src/Console/MergeContacts.php:154 msgid " - done" msgstr "- تم" -#: src/Console/MoveToAvatarCache.php:91 +#: src/Console/MoveToAvatarCache.php:77 msgid "The avatar cache needs to be enabled to use this command." msgstr "" -#: src/Console/MoveToAvatarCache.php:109 +#: src/Console/MoveToAvatarCache.php:95 #, php-format msgid "no resource in photo %s" msgstr "" -#: src/Console/MoveToAvatarCache.php:137 +#: src/Console/MoveToAvatarCache.php:123 #, php-format msgid "no photo with id %s" msgstr "" -#: src/Console/MoveToAvatarCache.php:146 +#: src/Console/MoveToAvatarCache.php:132 #, php-format msgid "no image data for photo with id %s" msgstr "" -#: src/Console/MoveToAvatarCache.php:155 +#: src/Console/MoveToAvatarCache.php:141 #, php-format msgid "invalid image for id %s" msgstr "الضورة ذات المعرف %s غير صالحة" -#: src/Console/MoveToAvatarCache.php:168 +#: src/Console/MoveToAvatarCache.php:154 #, php-format msgid "Quit on invalid photo %s" msgstr "" -#: src/Console/PostUpdate.php:87 +#: src/Console/PostUpdate.php:73 #, php-format msgid "Post update version number has been set to %s." msgstr "عُين رقم إصدار تحديث المشاركة إلى %s." -#: src/Console/PostUpdate.php:95 +#: src/Console/PostUpdate.php:81 msgid "Check for pending update actions." msgstr "تحقق من إجراءات التحديث المعلقة." -#: src/Console/PostUpdate.php:97 +#: src/Console/PostUpdate.php:83 msgid "Done." msgstr "تم." -#: src/Console/PostUpdate.php:99 +#: src/Console/PostUpdate.php:85 msgid "Execute pending post updates." msgstr "نفذ التحديثات المعلقة للمشاركة." -#: src/Console/PostUpdate.php:105 +#: src/Console/PostUpdate.php:91 msgid "All pending post updates are done." msgstr "تمت كل تحديثات المعلقة للمشاركة." -#: src/Console/User.php:158 src/Console/User.php:246 +#: src/Console/User.php:144 src/Console/User.php:232 msgid "Enter user nickname: " msgstr "أدخل لقب المستخدم: " -#: src/Console/User.php:182 src/Model/User.php:847 -#: src/Module/Api/Twitter/ContactEndpoint.php:74 -#: src/Module/Moderation/Users/Active.php:71 -#: src/Module/Moderation/Users/Blocked.php:71 -#: src/Module/Moderation/Users/Index.php:78 -#: src/Module/Moderation/Users/Pending.php:67 +#: src/Console/User.php:168 src/Model/User.php:831 +#: src/Module/Api/Twitter/ContactEndpoint.php:60 +#: src/Module/Moderation/Users/Active.php:57 +#: src/Module/Moderation/Users/Blocked.php:57 +#: src/Module/Moderation/Users/Index.php:64 +#: src/Module/Moderation/Users/Pending.php:53 msgid "User not found" msgstr "لم يُعثر على المستخدم" -#: src/Console/User.php:202 +#: src/Console/User.php:188 msgid "Enter new password: " msgstr "أدخل كلمة مرور جديدة: " -#: src/Console/User.php:210 src/Module/Security/PasswordTooLong.php:69 -#: src/Module/Settings/Account.php:75 +#: src/Console/User.php:196 src/Module/Security/PasswordTooLong.php:55 +#: src/Module/Settings/Account.php:61 msgid "Password update failed. Please try again." msgstr "فشل تحديث كلمة المرور. من فضلك أعد المحاولة." -#: src/Console/User.php:213 src/Module/Security/PasswordTooLong.php:72 -#: src/Module/Settings/Account.php:78 +#: src/Console/User.php:199 src/Module/Security/PasswordTooLong.php:58 +#: src/Module/Settings/Account.php:64 msgid "Password changed." msgstr "غُيّرت كلمة المرور." -#: src/Console/User.php:238 +#: src/Console/User.php:224 msgid "Enter user name: " msgstr "أدخل اسم المستخدم: " -#: src/Console/User.php:254 +#: src/Console/User.php:240 msgid "Enter user email address: " msgstr "أدخل عنوان البريد الإلكتروني: " -#: src/Console/User.php:262 +#: src/Console/User.php:248 msgid "Enter a language (optional): " msgstr "أدخل اللغة (اختياري): " -#: src/Console/User.php:267 +#: src/Console/User.php:253 msgid "Enter URL of an image to use as avatar (optional): " msgstr "" -#: src/Console/User.php:292 +#: src/Console/User.php:278 msgid "User is not pending." msgstr "المستخدم ليس معلقا." -#: src/Console/User.php:324 +#: src/Console/User.php:310 msgid "User has already been marked for deletion." msgstr "عُلِّم المستخدم للحذف مسبقا." -#: src/Console/User.php:329 +#: src/Console/User.php:315 #, php-format msgid "Type \"yes\" to delete %s" msgstr "اكتب \"yes\" لحذف %s" -#: src/Console/User.php:331 +#: src/Console/User.php:317 msgid "Deletion aborted." msgstr "أُلغي الحذف." -#: src/Console/User.php:456 +#: src/Console/User.php:442 msgid "Enter category: " msgstr "أدخل الفئة: " -#: src/Console/User.php:466 +#: src/Console/User.php:452 msgid "Enter key: " msgstr "أدخل المفتاح: " -#: src/Console/User.php:500 +#: src/Console/User.php:486 msgid "Enter value: " msgstr "أدخل القيمة: " -#: src/Content/BoundariesPager.php:116 src/Content/Pager.php:171 +#: src/Content/BoundariesPager.php:102 src/Content/Pager.php:157 msgid "newer" msgstr "الأحدث" -#: src/Content/BoundariesPager.php:124 src/Content/Pager.php:176 +#: src/Content/BoundariesPager.php:110 src/Content/Pager.php:162 msgid "older" msgstr "الأقدم" -#: src/Content/ContactSelector.php:51 +#: src/Content/ContactSelector.php:37 msgid "Frequently" msgstr "غالبا" -#: src/Content/ContactSelector.php:52 +#: src/Content/ContactSelector.php:38 msgid "Hourly" msgstr "كل ساعة" -#: src/Content/ContactSelector.php:53 +#: src/Content/ContactSelector.php:39 msgid "Twice daily" msgstr "مرتين يوميا" -#: src/Content/ContactSelector.php:54 +#: src/Content/ContactSelector.php:40 msgid "Daily" msgstr "يوميا" -#: src/Content/ContactSelector.php:55 +#: src/Content/ContactSelector.php:41 msgid "Weekly" msgstr "أسبوعيًا" -#: src/Content/ContactSelector.php:56 +#: src/Content/ContactSelector.php:42 msgid "Monthly" msgstr "شهرياً" -#: src/Content/ContactSelector.php:126 +#: src/Content/ContactSelector.php:112 msgid "DFRN" msgstr "DFRN" -#: src/Content/ContactSelector.php:127 +#: src/Content/ContactSelector.php:113 msgid "OStatus" msgstr "OStatus" -#: src/Content/ContactSelector.php:128 +#: src/Content/ContactSelector.php:114 msgid "RSS/Atom" msgstr "RSS/Atom" -#: src/Content/ContactSelector.php:129 -#: src/Module/Moderation/Users/Active.php:126 -#: src/Module/Moderation/Users/Blocked.php:126 -#: src/Module/Moderation/Users/Create.php:72 -#: src/Module/Moderation/Users/Deleted.php:83 -#: src/Module/Moderation/Users/Index.php:140 -#: src/Module/Moderation/Users/Index.php:160 -#: src/Module/Moderation/Users/Pending.php:99 +#: src/Content/ContactSelector.php:115 +#: src/Module/Moderation/Users/Active.php:112 +#: src/Module/Moderation/Users/Blocked.php:112 +#: src/Module/Moderation/Users/Create.php:58 +#: src/Module/Moderation/Users/Deleted.php:69 +#: src/Module/Moderation/Users/Index.php:126 +#: src/Module/Moderation/Users/Index.php:146 +#: src/Module/Moderation/Users/Pending.php:85 msgid "Email" msgstr "البريد الإلكتروني" -#: src/Content/ContactSelector.php:130 src/Module/Debug/Babel.php:315 +#: src/Content/ContactSelector.php:116 src/Module/Debug/Babel.php:301 msgid "Diaspora" msgstr "دياسبورا" -#: src/Content/ContactSelector.php:131 +#: src/Content/ContactSelector.php:117 msgid "Zot!" msgstr "زوت!" -#: src/Content/ContactSelector.php:132 +#: src/Content/ContactSelector.php:118 msgid "LinkedIn" msgstr "لينكد إن" -#: src/Content/ContactSelector.php:133 +#: src/Content/ContactSelector.php:119 msgid "XMPP/IM" msgstr "XMPP/IM" -#: src/Content/ContactSelector.php:134 +#: src/Content/ContactSelector.php:120 msgid "MySpace" msgstr "ماي سبيس" -#: src/Content/ContactSelector.php:135 +#: src/Content/ContactSelector.php:121 msgid "Google+" msgstr "غوغل+" -#: src/Content/ContactSelector.php:136 +#: src/Content/ContactSelector.php:122 msgid "pump.io" msgstr "pump.io" -#: src/Content/ContactSelector.php:137 +#: src/Content/ContactSelector.php:123 msgid "Twitter" msgstr "تويتر" -#: src/Content/ContactSelector.php:138 +#: src/Content/ContactSelector.php:124 msgid "Discourse" msgstr "دسکورس" -#: src/Content/ContactSelector.php:139 +#: src/Content/ContactSelector.php:125 msgid "Diaspora Connector" msgstr "موصل دياسبورا" -#: src/Content/ContactSelector.php:140 +#: src/Content/ContactSelector.php:126 msgid "GNU Social Connector" msgstr "موصل غنو سوشل" -#: src/Content/ContactSelector.php:141 +#: src/Content/ContactSelector.php:127 msgid "ActivityPub" msgstr "ActivityPub" -#: src/Content/ContactSelector.php:142 +#: src/Content/ContactSelector.php:128 msgid "pnut" msgstr "" -#: src/Content/ContactSelector.php:143 +#: src/Content/ContactSelector.php:129 msgid "Tumblr" msgstr "" -#: src/Content/ContactSelector.php:144 +#: src/Content/ContactSelector.php:130 msgid "Bluesky" msgstr "" -#: src/Content/ContactSelector.php:180 +#: src/Content/ContactSelector.php:166 #, php-format msgid "%s (via %s)" msgstr "%s (عبر %s)" -#: src/Content/Conversation.php:226 +#: src/Content/Conversation.php:212 msgid "and" msgstr "و" -#: src/Content/Conversation.php:229 +#: src/Content/Conversation.php:215 #, php-format msgid "and %d other people" msgstr "و %d أشخاص آخرين" -#: src/Content/Conversation.php:235 +#: src/Content/Conversation.php:221 #, php-format msgid "%2$s likes this." msgid_plural "%2$s like this." @@ -1186,7 +1185,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#: src/Content/Conversation.php:237 +#: src/Content/Conversation.php:223 #, php-format msgid "%2$s doesn't like this." msgid_plural "%2$s don't like this." @@ -1197,7 +1196,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#: src/Content/Conversation.php:239 +#: src/Content/Conversation.php:225 #, php-format msgid "%2$s attends." msgid_plural "%2$s attend." @@ -1208,7 +1207,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#: src/Content/Conversation.php:241 +#: src/Content/Conversation.php:227 #, php-format msgid "%2$s doesn't attend." msgid_plural "%2$s don't attend." @@ -1219,7 +1218,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#: src/Content/Conversation.php:243 +#: src/Content/Conversation.php:229 #, php-format msgid "%2$s attends maybe." msgid_plural "%2$s attend maybe." @@ -1230,7 +1229,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#: src/Content/Conversation.php:245 +#: src/Content/Conversation.php:231 #, php-format msgid "%2$s reshared this." msgid_plural "%2$s reshared this." @@ -1241,7 +1240,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#: src/Content/Conversation.php:276 +#: src/Content/Conversation.php:262 #, php-format msgid " likes this" msgid_plural " like this" @@ -1252,7 +1251,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#: src/Content/Conversation.php:279 +#: src/Content/Conversation.php:265 #, php-format msgid " doesn't like this" msgid_plural " don't like this" @@ -1263,7 +1262,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#: src/Content/Conversation.php:282 +#: src/Content/Conversation.php:268 #, php-format msgid " attends" msgid_plural " attend" @@ -1274,7 +1273,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#: src/Content/Conversation.php:285 +#: src/Content/Conversation.php:271 #, php-format msgid " doesn't attend" msgid_plural " don't attend" @@ -1285,7 +1284,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#: src/Content/Conversation.php:288 +#: src/Content/Conversation.php:274 #, php-format msgid " attends maybe" msgid_plural " attend maybe" @@ -1296,7 +1295,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#: src/Content/Conversation.php:291 +#: src/Content/Conversation.php:277 #, php-format msgid " reshared this" msgid_plural " reshared this" @@ -1307,1099 +1306,1099 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#: src/Content/Conversation.php:337 +#: src/Content/Conversation.php:323 msgid "Visible to everybody" msgstr "مرئي للجميع" -#: src/Content/Conversation.php:338 src/Module/Item/Compose.php:207 -#: src/Object/Post.php:1171 +#: src/Content/Conversation.php:324 src/Module/Item/Compose.php:193 +#: src/Object/Post.php:1157 msgid "Please enter a image/video/audio/webpage URL:" msgstr "رجاء أدخل رابط صورة/فيديو/صوت/صفحة ويب:" -#: src/Content/Conversation.php:339 +#: src/Content/Conversation.php:325 msgid "Tag term:" msgstr "مصطلح الوسم:" -#: src/Content/Conversation.php:340 src/Module/Filer/SaveTag.php:73 +#: src/Content/Conversation.php:326 src/Module/Filer/SaveTag.php:59 msgid "Save to Folder:" msgstr "احفظ في مجلد:" -#: src/Content/Conversation.php:341 +#: src/Content/Conversation.php:327 msgid "Where are you right now?" msgstr "أين أنت حاليا؟" -#: src/Content/Conversation.php:342 +#: src/Content/Conversation.php:328 msgid "Delete item(s)?" msgstr "أتريد حذف العناصر؟" -#: src/Content/Conversation.php:354 src/Module/Item/Compose.php:182 +#: src/Content/Conversation.php:340 src/Module/Item/Compose.php:168 msgid "Created at" msgstr "أُنشئ في" -#: src/Content/Conversation.php:364 +#: src/Content/Conversation.php:350 msgid "New Post" msgstr "مشاركة جديدة" -#: src/Content/Conversation.php:367 +#: src/Content/Conversation.php:353 msgid "Share" msgstr "شارك" -#: src/Content/Conversation.php:370 src/Module/Post/Edit.php:132 +#: src/Content/Conversation.php:356 src/Module/Post/Edit.php:118 msgid "upload photo" msgstr "ارفع صورة" -#: src/Content/Conversation.php:371 src/Module/Post/Edit.php:133 +#: src/Content/Conversation.php:357 src/Module/Post/Edit.php:119 msgid "Attach file" msgstr "أرفق ملفًا" -#: src/Content/Conversation.php:372 src/Module/Post/Edit.php:134 +#: src/Content/Conversation.php:358 src/Module/Post/Edit.php:120 msgid "attach file" msgstr "أرفق ملفًا" -#: src/Content/Conversation.php:373 src/Module/Item/Compose.php:197 -#: src/Module/Post/Edit.php:171 src/Object/Post.php:1161 +#: src/Content/Conversation.php:359 src/Module/Item/Compose.php:183 +#: src/Module/Post/Edit.php:157 src/Object/Post.php:1147 msgid "Bold" msgstr "عريض" -#: src/Content/Conversation.php:374 src/Module/Item/Compose.php:198 -#: src/Module/Post/Edit.php:172 src/Object/Post.php:1162 +#: src/Content/Conversation.php:360 src/Module/Item/Compose.php:184 +#: src/Module/Post/Edit.php:158 src/Object/Post.php:1148 msgid "Italic" msgstr "مائل" -#: src/Content/Conversation.php:375 src/Module/Item/Compose.php:199 -#: src/Module/Post/Edit.php:173 src/Object/Post.php:1163 +#: src/Content/Conversation.php:361 src/Module/Item/Compose.php:185 +#: src/Module/Post/Edit.php:159 src/Object/Post.php:1149 msgid "Underline" msgstr "تحته خط" -#: src/Content/Conversation.php:376 src/Module/Item/Compose.php:200 -#: src/Module/Post/Edit.php:174 src/Object/Post.php:1165 +#: src/Content/Conversation.php:362 src/Module/Item/Compose.php:186 +#: src/Module/Post/Edit.php:160 src/Object/Post.php:1151 msgid "Quote" msgstr "اقتبس" -#: src/Content/Conversation.php:377 src/Module/Item/Compose.php:201 -#: src/Module/Post/Edit.php:175 src/Object/Post.php:1166 +#: src/Content/Conversation.php:363 src/Module/Item/Compose.php:187 +#: src/Module/Post/Edit.php:161 src/Object/Post.php:1152 msgid "Add emojis" msgstr "" -#: src/Content/Conversation.php:378 src/Module/Item/Compose.php:202 -#: src/Object/Post.php:1164 +#: src/Content/Conversation.php:364 src/Module/Item/Compose.php:188 +#: src/Object/Post.php:1150 msgid "Content Warning" msgstr "" -#: src/Content/Conversation.php:379 src/Module/Item/Compose.php:203 -#: src/Module/Post/Edit.php:176 src/Object/Post.php:1167 +#: src/Content/Conversation.php:365 src/Module/Item/Compose.php:189 +#: src/Module/Post/Edit.php:162 src/Object/Post.php:1153 msgid "Code" msgstr "شفرة" -#: src/Content/Conversation.php:380 src/Module/Item/Compose.php:204 -#: src/Object/Post.php:1168 +#: src/Content/Conversation.php:366 src/Module/Item/Compose.php:190 +#: src/Object/Post.php:1154 msgid "Image" msgstr "صورة" -#: src/Content/Conversation.php:381 src/Module/Item/Compose.php:205 -#: src/Module/Post/Edit.php:177 src/Object/Post.php:1169 +#: src/Content/Conversation.php:367 src/Module/Item/Compose.php:191 +#: src/Module/Post/Edit.php:163 src/Object/Post.php:1155 msgid "Link" msgstr "رابط" -#: src/Content/Conversation.php:382 src/Module/Item/Compose.php:206 -#: src/Module/Post/Edit.php:178 src/Object/Post.php:1170 +#: src/Content/Conversation.php:368 src/Module/Item/Compose.php:192 +#: src/Module/Post/Edit.php:164 src/Object/Post.php:1156 msgid "Link or Media" msgstr "رابط أو وسائط" -#: src/Content/Conversation.php:383 +#: src/Content/Conversation.php:369 msgid "Video" msgstr "فيديو" -#: src/Content/Conversation.php:384 src/Module/Item/Compose.php:209 -#: src/Module/Post/Edit.php:141 +#: src/Content/Conversation.php:370 src/Module/Item/Compose.php:195 +#: src/Module/Post/Edit.php:127 msgid "Set your location" msgstr "عيّن موقعك" -#: src/Content/Conversation.php:385 src/Module/Post/Edit.php:142 +#: src/Content/Conversation.php:371 src/Module/Post/Edit.php:128 msgid "set location" msgstr "عين الموقع" -#: src/Content/Conversation.php:386 src/Module/Post/Edit.php:143 +#: src/Content/Conversation.php:372 src/Module/Post/Edit.php:129 msgid "Clear browser location" msgstr "امسح موقع المتصفح" -#: src/Content/Conversation.php:387 src/Module/Post/Edit.php:144 +#: src/Content/Conversation.php:373 src/Module/Post/Edit.php:130 msgid "clear location" msgstr "امسح الموقع" -#: src/Content/Conversation.php:389 src/Module/Item/Compose.php:214 -#: src/Module/Post/Edit.php:157 +#: src/Content/Conversation.php:375 src/Module/Item/Compose.php:200 +#: src/Module/Post/Edit.php:143 msgid "Set title" msgstr "عين العنوان" -#: src/Content/Conversation.php:391 src/Module/Item/Compose.php:215 -#: src/Module/Post/Edit.php:159 +#: src/Content/Conversation.php:377 src/Module/Item/Compose.php:201 +#: src/Module/Post/Edit.php:145 msgid "Categories (comma-separated list)" msgstr "الفئات (قائمة مفصولة بفاصلة)" -#: src/Content/Conversation.php:396 src/Module/Item/Compose.php:231 +#: src/Content/Conversation.php:382 src/Module/Item/Compose.php:217 msgid "Scheduled at" msgstr "بُرمِج في" -#: src/Content/Conversation.php:401 src/Module/Post/Edit.php:146 +#: src/Content/Conversation.php:387 src/Module/Post/Edit.php:132 msgid "Permission settings" msgstr "إعدادات الأذونات" -#: src/Content/Conversation.php:410 src/Module/Post/Edit.php:155 +#: src/Content/Conversation.php:396 src/Module/Post/Edit.php:141 msgid "Public post" msgstr "مشاركة علنية" -#: src/Content/Conversation.php:424 src/Content/Widget/VCard.php:131 -#: src/Model/Profile.php:476 src/Module/Admin/Logs/View.php:94 -#: src/Module/Post/Edit.php:181 +#: src/Content/Conversation.php:410 src/Content/Widget/VCard.php:117 +#: src/Model/Profile.php:462 src/Module/Admin/Logs/View.php:80 +#: src/Module/Post/Edit.php:167 msgid "Message" msgstr "الرسالة" -#: src/Content/Conversation.php:425 src/Module/Post/Edit.php:182 -#: src/Module/Settings/TwoFactor/Trusted.php:143 +#: src/Content/Conversation.php:411 src/Module/Post/Edit.php:168 +#: src/Module/Settings/TwoFactor/Trusted.php:129 msgid "Browser" msgstr "المتصفح" -#: src/Content/Conversation.php:427 src/Module/Post/Edit.php:185 +#: src/Content/Conversation.php:413 src/Module/Post/Edit.php:171 msgid "Open Compose page" msgstr "افتح صفحة الإنشاء" -#: src/Content/Conversation.php:594 +#: src/Content/Conversation.php:580 msgid "remove" msgstr "أزل" -#: src/Content/Conversation.php:598 +#: src/Content/Conversation.php:584 msgid "Delete Selected Items" msgstr "أزل العناصر المختارة" -#: src/Content/Conversation.php:726 src/Content/Conversation.php:729 -#: src/Content/Conversation.php:732 src/Content/Conversation.php:735 -#: src/Content/Conversation.php:738 +#: src/Content/Conversation.php:712 src/Content/Conversation.php:715 +#: src/Content/Conversation.php:718 src/Content/Conversation.php:721 +#: src/Content/Conversation.php:724 #, php-format msgid "You had been addressed (%s)." msgstr "ذُكرت (%s)." -#: src/Content/Conversation.php:741 +#: src/Content/Conversation.php:727 #, php-format msgid "You are following %s." msgstr "تتابع %s." -#: src/Content/Conversation.php:746 +#: src/Content/Conversation.php:732 #, php-format msgid "You subscribed to %s." msgstr "" -#: src/Content/Conversation.php:748 +#: src/Content/Conversation.php:734 msgid "You subscribed to one or more tags in this post." msgstr "" -#: src/Content/Conversation.php:768 +#: src/Content/Conversation.php:754 #, php-format msgid "%s reshared this." msgstr "أعاد %s نشره." -#: src/Content/Conversation.php:770 +#: src/Content/Conversation.php:756 msgid "Reshared" msgstr "أُعيد نشره" -#: src/Content/Conversation.php:770 +#: src/Content/Conversation.php:756 #, php-format msgid "Reshared by %s <%s>" msgstr "أعاد نشره %s <%s>" -#: src/Content/Conversation.php:773 +#: src/Content/Conversation.php:759 #, php-format msgid "%s is participating in this thread." msgstr "%s مشترك في هذا النقاش." -#: src/Content/Conversation.php:776 +#: src/Content/Conversation.php:762 msgid "Stored for general reasons" msgstr "" -#: src/Content/Conversation.php:779 +#: src/Content/Conversation.php:765 msgid "Global post" msgstr "مشاركة علنية" -#: src/Content/Conversation.php:782 +#: src/Content/Conversation.php:768 msgid "Sent via an relay server" msgstr "" -#: src/Content/Conversation.php:782 +#: src/Content/Conversation.php:768 #, php-format msgid "Sent via the relay server %s <%s>" msgstr "" -#: src/Content/Conversation.php:785 +#: src/Content/Conversation.php:771 msgid "Fetched" msgstr "جُلب" -#: src/Content/Conversation.php:785 +#: src/Content/Conversation.php:771 #, php-format msgid "Fetched because of %s <%s>" msgstr "جُلب بسبب %s <%s>" -#: src/Content/Conversation.php:788 +#: src/Content/Conversation.php:774 msgid "Stored because of a child post to complete this thread." msgstr "" -#: src/Content/Conversation.php:791 +#: src/Content/Conversation.php:777 msgid "Local delivery" msgstr "" -#: src/Content/Conversation.php:794 +#: src/Content/Conversation.php:780 msgid "Stored because of your activity (like, comment, star, ...)" msgstr "" -#: src/Content/Conversation.php:797 +#: src/Content/Conversation.php:783 msgid "Distributed" msgstr "" -#: src/Content/Conversation.php:800 +#: src/Content/Conversation.php:786 msgid "Pushed to us" msgstr "" -#: src/Content/Conversation.php:1518 src/Object/Post.php:261 +#: src/Content/Conversation.php:1504 src/Object/Post.php:247 msgid "Pinned item" msgstr "عنصر مثبت" -#: src/Content/Conversation.php:1535 src/Object/Post.php:555 -#: src/Object/Post.php:556 +#: src/Content/Conversation.php:1521 src/Object/Post.php:541 +#: src/Object/Post.php:542 #, php-format msgid "View %s's profile @ %s" msgstr "اعرض ملف %s الشخصي @ %s" -#: src/Content/Conversation.php:1549 src/Object/Post.php:543 +#: src/Content/Conversation.php:1535 src/Object/Post.php:529 msgid "Categories:" msgstr "الفئات:" -#: src/Content/Conversation.php:1550 src/Object/Post.php:544 +#: src/Content/Conversation.php:1536 src/Object/Post.php:530 msgid "Filed under:" msgstr "مصنف كـ:" -#: src/Content/Conversation.php:1558 src/Object/Post.php:570 +#: src/Content/Conversation.php:1544 src/Object/Post.php:556 #, php-format msgid "%s from %s" msgstr "%s من %s" -#: src/Content/Conversation.php:1574 +#: src/Content/Conversation.php:1560 msgid "View in context" msgstr "اعرضه في السياق" -#: src/Content/Conversation/Factory/Channel.php:42 +#: src/Content/Conversation/Factory/Channel.php:28 msgid "For you" msgstr "" -#: src/Content/Conversation/Factory/Channel.php:42 +#: src/Content/Conversation/Factory/Channel.php:28 msgid "Posts from contacts you interact with and who interact with you" msgstr "" -#: src/Content/Conversation/Factory/Channel.php:43 +#: src/Content/Conversation/Factory/Channel.php:29 msgid "Discover" msgstr "" -#: src/Content/Conversation/Factory/Channel.php:43 +#: src/Content/Conversation/Factory/Channel.php:29 msgid "Posts from accounts that you don't follow, but that you might like." msgstr "" -#: src/Content/Conversation/Factory/Channel.php:44 +#: src/Content/Conversation/Factory/Channel.php:30 msgid "What's Hot" msgstr "" -#: src/Content/Conversation/Factory/Channel.php:44 +#: src/Content/Conversation/Factory/Channel.php:30 msgid "Posts with a lot of interactions" msgstr "" -#: src/Content/Conversation/Factory/Channel.php:45 +#: src/Content/Conversation/Factory/Channel.php:31 #, php-format msgid "Posts in %s" msgstr "" -#: src/Content/Conversation/Factory/Channel.php:46 +#: src/Content/Conversation/Factory/Channel.php:32 msgid "Posts from your followers that you don't follow" msgstr "" -#: src/Content/Conversation/Factory/Channel.php:47 +#: src/Content/Conversation/Factory/Channel.php:33 msgid "Sharers of sharers" msgstr "" -#: src/Content/Conversation/Factory/Channel.php:47 +#: src/Content/Conversation/Factory/Channel.php:33 msgid "Posts from accounts that are followed by accounts that you follow" msgstr "" -#: src/Content/Conversation/Factory/Channel.php:48 +#: src/Content/Conversation/Factory/Channel.php:34 msgid "Quiet sharers" msgstr "" -#: src/Content/Conversation/Factory/Channel.php:48 +#: src/Content/Conversation/Factory/Channel.php:34 msgid "Posts from accounts that you follow but who don't post very often" msgstr "" -#: src/Content/Conversation/Factory/Channel.php:49 -#: src/Module/Settings/Channels.php:199 src/Module/Settings/Channels.php:220 +#: src/Content/Conversation/Factory/Channel.php:35 +#: src/Module/Settings/Channels.php:185 src/Module/Settings/Channels.php:206 msgid "Images" msgstr "" -#: src/Content/Conversation/Factory/Channel.php:49 +#: src/Content/Conversation/Factory/Channel.php:35 msgid "Posts with images" msgstr "" -#: src/Content/Conversation/Factory/Channel.php:50 -#: src/Module/Settings/Channels.php:201 src/Module/Settings/Channels.php:222 +#: src/Content/Conversation/Factory/Channel.php:36 +#: src/Module/Settings/Channels.php:187 src/Module/Settings/Channels.php:208 msgid "Audio" msgstr "" -#: src/Content/Conversation/Factory/Channel.php:50 +#: src/Content/Conversation/Factory/Channel.php:36 msgid "Posts with audio" msgstr "" -#: src/Content/Conversation/Factory/Channel.php:51 -#: src/Module/Settings/Channels.php:200 src/Module/Settings/Channels.php:221 +#: src/Content/Conversation/Factory/Channel.php:37 +#: src/Module/Settings/Channels.php:186 src/Module/Settings/Channels.php:207 msgid "Videos" msgstr "" -#: src/Content/Conversation/Factory/Channel.php:51 +#: src/Content/Conversation/Factory/Channel.php:37 msgid "Posts with videos" msgstr "" -#: src/Content/Conversation/Factory/Community.php:43 +#: src/Content/Conversation/Factory/Community.php:29 msgid "Local Community" msgstr "المجتمع المحلي" -#: src/Content/Conversation/Factory/Community.php:43 +#: src/Content/Conversation/Factory/Community.php:29 msgid "Posts from local users on this server" msgstr "مشاركات مستخدمي هذا الخادم" -#: src/Content/Conversation/Factory/Community.php:47 -#: src/Module/Settings/Channels.php:150 src/Module/Settings/Channels.php:155 +#: src/Content/Conversation/Factory/Community.php:33 +#: src/Module/Settings/Channels.php:136 src/Module/Settings/Channels.php:141 msgid "Global Community" msgstr "المجتمع العالمي" -#: src/Content/Conversation/Factory/Community.php:47 +#: src/Content/Conversation/Factory/Community.php:33 msgid "Posts from users of the whole federated network" msgstr "مشركات من الشبكة الموحدة" -#: src/Content/Conversation/Factory/Network.php:38 -#: src/Module/Settings/Channels.php:156 +#: src/Content/Conversation/Factory/Network.php:24 +#: src/Module/Settings/Channels.php:142 msgid "Latest Activity" msgstr "آخر نشاط" -#: src/Content/Conversation/Factory/Network.php:38 +#: src/Content/Conversation/Factory/Network.php:24 msgid "Sort by latest activity" msgstr "رتب حسب آخر نشاط" -#: src/Content/Conversation/Factory/Network.php:39 -#: src/Module/Settings/Channels.php:157 +#: src/Content/Conversation/Factory/Network.php:25 +#: src/Module/Settings/Channels.php:143 msgid "Latest Posts" msgstr "آخر المشاركات" -#: src/Content/Conversation/Factory/Network.php:39 +#: src/Content/Conversation/Factory/Network.php:25 msgid "Sort by post received date" msgstr "رتب حسب تاريخ استلام المشاركة" -#: src/Content/Conversation/Factory/Network.php:40 -#: src/Module/Settings/Channels.php:158 +#: src/Content/Conversation/Factory/Network.php:26 +#: src/Module/Settings/Channels.php:144 msgid "Latest Creation" msgstr "" -#: src/Content/Conversation/Factory/Network.php:40 +#: src/Content/Conversation/Factory/Network.php:26 msgid "Sort by post creation date" msgstr "" -#: src/Content/Conversation/Factory/Network.php:41 -#: src/Module/Settings/Profile/Index.php:265 +#: src/Content/Conversation/Factory/Network.php:27 +#: src/Module/Settings/Profile/Index.php:251 msgid "Personal" msgstr "نشاطي" -#: src/Content/Conversation/Factory/Network.php:41 +#: src/Content/Conversation/Factory/Network.php:27 msgid "Posts that mention or involve you" msgstr "المشاركات التي تذكرك أو تتعلق بك" -#: src/Content/Conversation/Factory/Network.php:42 src/Object/Post.php:411 +#: src/Content/Conversation/Factory/Network.php:28 src/Object/Post.php:397 msgid "Starred" msgstr "المفضلة" -#: src/Content/Conversation/Factory/Network.php:42 +#: src/Content/Conversation/Factory/Network.php:28 msgid "Favourite Posts" msgstr "المشاركات المفضلة" -#: src/Content/Feature.php:107 +#: src/Content/Feature.php:93 msgid "General Features" msgstr "الميّزات العامة" -#: src/Content/Feature.php:109 +#: src/Content/Feature.php:95 msgid "Photo Location" msgstr "موقع الصورة" -#: src/Content/Feature.php:109 +#: src/Content/Feature.php:95 msgid "" "Photo metadata is normally stripped. This extracts the location (if present)" " prior to stripping metadata and links it to a map." msgstr "عادة ما تتم إزالة البيانات الوصفية للصور. هذا يجعل من الممكن حفظ الموقع (قبل إزالة البيانات) ووضع الصورة على الخريطة." -#: src/Content/Feature.php:110 +#: src/Content/Feature.php:96 msgid "Display the community in the navigation" msgstr "" -#: src/Content/Feature.php:110 +#: src/Content/Feature.php:96 msgid "" "If enabled, the community can be accessed via the navigation menu. " "Independent from this setting, the community timelines can always be " "accessed via the channels." msgstr "" -#: src/Content/Feature.php:115 +#: src/Content/Feature.php:101 msgid "Post Composition Features" msgstr "ميّزات إنشاء المشاركة" -#: src/Content/Feature.php:116 +#: src/Content/Feature.php:102 msgid "Explicit Mentions" msgstr "ذِكر صريح" -#: src/Content/Feature.php:116 +#: src/Content/Feature.php:102 msgid "" "Add explicit mentions to comment box for manual control over who gets " "mentioned in replies." msgstr "يضيف الذِكر الصريح في صندوق التعليق مما يسمح بالتحكم اليدوي بالذِكر في التعليقات." -#: src/Content/Feature.php:117 +#: src/Content/Feature.php:103 msgid "Add an abstract from ActivityPub content warnings" msgstr "" -#: src/Content/Feature.php:117 +#: src/Content/Feature.php:103 msgid "" "Add an abstract when commenting on ActivityPub posts with a content warning." " Abstracts are displayed as content warning on systems like Mastodon or " "Pleroma." msgstr "" -#: src/Content/Feature.php:122 +#: src/Content/Feature.php:108 msgid "Post/Comment Tools" msgstr "أدوات النشر\\التعليق" -#: src/Content/Feature.php:123 +#: src/Content/Feature.php:109 msgid "Post Categories" msgstr "فئات المشاركة" -#: src/Content/Feature.php:123 +#: src/Content/Feature.php:109 msgid "Add categories to your posts" msgstr "أضف فئات لمشاركاتك" -#: src/Content/Feature.php:128 +#: src/Content/Feature.php:114 msgid "Network Widgets" msgstr "" -#: src/Content/Feature.php:129 src/Content/Widget.php:216 -#: src/Model/Circle.php:601 src/Module/Contact.php:406 -#: src/Module/Welcome.php:76 +#: src/Content/Feature.php:115 src/Content/Widget.php:194 +#: src/Model/Circle.php:587 src/Module/Contact.php:381 +#: src/Module/Welcome.php:62 msgid "Circles" msgstr "" -#: src/Content/Feature.php:129 +#: src/Content/Feature.php:115 msgid "" "Display posts that have been created by accounts of the selected circle." msgstr "" -#: src/Content/Feature.php:130 src/Content/GroupManager.php:147 -#: src/Content/Nav.php:278 src/Content/Text/HTML.php:882 -#: src/Content/Widget.php:538 src/Model/User.php:1413 +#: src/Content/Feature.php:116 src/Content/GroupManager.php:133 +#: src/Content/Nav.php:264 src/Content/Text/HTML.php:868 +#: src/Content/Widget.php:516 src/Model/User.php:1390 msgid "Groups" msgstr "" -#: src/Content/Feature.php:130 +#: src/Content/Feature.php:116 msgid "Display posts that have been distributed by the selected group." msgstr "" -#: src/Content/Feature.php:131 src/Content/Widget.php:507 +#: src/Content/Feature.php:117 src/Content/Widget.php:485 msgid "Archives" msgstr "الأرشيفات" -#: src/Content/Feature.php:131 +#: src/Content/Feature.php:117 msgid "Display an archive where posts can be selected by month and year." msgstr "" -#: src/Content/Feature.php:132 src/Content/Widget.php:289 +#: src/Content/Feature.php:118 src/Content/Widget.php:267 msgid "Protocols" msgstr "الموافيق" -#: src/Content/Feature.php:132 +#: src/Content/Feature.php:118 msgid "Display posts with the selected protocols." msgstr "" -#: src/Content/Feature.php:133 src/Content/Widget.php:544 -#: src/Module/Settings/Account.php:447 +#: src/Content/Feature.php:119 src/Content/Widget.php:522 +#: src/Module/Settings/Account.php:433 msgid "Account Types" msgstr "أنواع الحسابات" -#: src/Content/Feature.php:133 +#: src/Content/Feature.php:119 msgid "Display posts done by accounts with the selected account type." msgstr "" -#: src/Content/Feature.php:134 src/Content/Widget.php:593 -#: src/Module/Admin/Site.php:474 src/Module/BaseSettings.php:125 -#: src/Module/Settings/Channels.php:225 src/Module/Settings/Display.php:315 +#: src/Content/Feature.php:120 src/Content/Widget.php:571 +#: src/Module/Admin/Site.php:464 src/Module/BaseSettings.php:111 +#: src/Module/Settings/Channels.php:211 src/Module/Settings/Display.php:301 msgid "Channels" msgstr "" -#: src/Content/Feature.php:134 +#: src/Content/Feature.php:120 msgid "Display posts in the system channels and user defined channels." msgstr "" -#: src/Content/Feature.php:135 src/Content/Widget/SavedSearches.php:60 +#: src/Content/Feature.php:121 src/Content/Widget/SavedSearches.php:46 msgid "Saved Searches" msgstr "عمليات البحث المحفوظة" -#: src/Content/Feature.php:135 +#: src/Content/Feature.php:121 msgid "Display posts that contain subscribed hashtags." msgstr "" -#: src/Content/Feature.php:136 src/Content/Widget.php:319 +#: src/Content/Feature.php:122 src/Content/Widget.php:297 msgid "Saved Folders" msgstr "المجلدات المحفوظة" -#: src/Content/Feature.php:136 +#: src/Content/Feature.php:122 msgid "Display a list of folders in which posts are stored." msgstr "" -#: src/Content/Feature.php:137 src/Module/Conversation/Timeline.php:200 +#: src/Content/Feature.php:123 src/Module/Conversation/Timeline.php:186 msgid "Own Contacts" msgstr "مشاركات متراسليك" -#: src/Content/Feature.php:137 +#: src/Content/Feature.php:123 msgid "" "Include or exclude posts from subscribed accounts. This widget is not " "visible on all channels." msgstr "" -#: src/Content/Feature.php:138 +#: src/Content/Feature.php:124 msgid "Trending Tags" msgstr "الوسوم الشائعة" -#: src/Content/Feature.php:138 +#: src/Content/Feature.php:124 msgid "Display a list of the most popular tags in recent public posts." msgstr "" -#: src/Content/Feature.php:143 +#: src/Content/Feature.php:129 msgid "Advanced Profile Settings" msgstr "إعدادات الحساب الشخصي المُتقدّمة" -#: src/Content/Feature.php:144 +#: src/Content/Feature.php:130 msgid "Tag Cloud" msgstr "سحابة الوسوم" -#: src/Content/Feature.php:144 +#: src/Content/Feature.php:130 msgid "Provide a personal tag cloud on your profile page" msgstr "إظهار سحابة وسوم في صفحة ملفك الشخصي" -#: src/Content/Feature.php:145 +#: src/Content/Feature.php:131 msgid "Display Membership Date" msgstr "اعرض عُمر العضوية" -#: src/Content/Feature.php:145 +#: src/Content/Feature.php:131 msgid "Display membership date in profile" msgstr "اعرض عُمر العضوية في الملف الشخصي" -#: src/Content/Feature.php:150 +#: src/Content/Feature.php:136 msgid "Advanced Calendar Settings" msgstr "" -#: src/Content/Feature.php:151 +#: src/Content/Feature.php:137 msgid "Allow anonymous access to your calendar" msgstr "" -#: src/Content/Feature.php:151 +#: src/Content/Feature.php:137 msgid "" "Allows anonymous visitors to consult your calendar and your public events. " "Contact birthday events are private to you." msgstr "" -#: src/Content/GroupManager.php:149 +#: src/Content/GroupManager.php:135 msgid "External link to group" msgstr "" -#: src/Content/GroupManager.php:153 src/Content/Widget.php:513 +#: src/Content/GroupManager.php:139 src/Content/Widget.php:491 msgid "show less" msgstr "اعرض أقلّ" -#: src/Content/GroupManager.php:154 src/Content/Widget.php:411 -#: src/Content/Widget.php:514 +#: src/Content/GroupManager.php:140 src/Content/Widget.php:389 +#: src/Content/Widget.php:492 msgid "show more" msgstr "اعرض المزيد" -#: src/Content/GroupManager.php:155 +#: src/Content/GroupManager.php:141 msgid "Create new group" msgstr "" -#: src/Content/Item.php:331 src/Model/Item.php:3304 +#: src/Content/Item.php:317 src/Model/Item.php:3272 msgid "event" msgstr "حدث" -#: src/Content/Item.php:334 src/Content/Item.php:344 +#: src/Content/Item.php:320 src/Content/Item.php:330 msgid "status" msgstr "حالة" -#: src/Content/Item.php:340 src/Model/Item.php:3306 -#: src/Module/Post/Tag/Add.php:123 +#: src/Content/Item.php:326 src/Model/Item.php:3274 +#: src/Module/Post/Tag/Add.php:109 msgid "photo" msgstr "صورة" -#: src/Content/Item.php:354 src/Module/Post/Tag/Add.php:141 +#: src/Content/Item.php:340 src/Module/Post/Tag/Add.php:127 #, php-format msgid "%1$s tagged %2$s's %3$s with %4$s" msgstr "%1$s وسم %3$s %2$s بـ %4$s" -#: src/Content/Item.php:428 view/theme/frio/theme.php:265 +#: src/Content/Item.php:414 view/theme/frio/theme.php:253 msgid "Follow Thread" msgstr "تابع المناقشة" -#: src/Content/Item.php:429 src/Model/Contact.php:1256 +#: src/Content/Item.php:415 src/Model/Contact.php:1249 msgid "View Status" msgstr "اعرض الحالة" -#: src/Content/Item.php:430 src/Content/Item.php:453 -#: src/Model/Contact.php:1191 src/Model/Contact.php:1247 -#: src/Model/Contact.php:1257 src/Module/Directory.php:158 -#: src/Module/Settings/Profile/Index.php:264 +#: src/Content/Item.php:416 src/Content/Item.php:439 +#: src/Model/Contact.php:1184 src/Model/Contact.php:1240 +#: src/Model/Contact.php:1250 src/Module/Directory.php:144 +#: src/Module/Settings/Profile/Index.php:250 msgid "View Profile" msgstr "اعرض الملف الشخصي" -#: src/Content/Item.php:431 src/Model/Contact.php:1258 +#: src/Content/Item.php:417 src/Model/Contact.php:1251 msgid "View Photos" msgstr "اعرض الصور" -#: src/Content/Item.php:432 src/Model/Contact.php:1225 -#: src/Model/Profile.php:461 +#: src/Content/Item.php:418 src/Model/Contact.php:1218 +#: src/Model/Profile.php:447 msgid "Network Posts" msgstr "مشاركات الشبكة" -#: src/Content/Item.php:433 src/Model/Contact.php:1249 -#: src/Model/Contact.php:1260 +#: src/Content/Item.php:419 src/Model/Contact.php:1242 +#: src/Model/Contact.php:1253 msgid "View Contact" msgstr "اعرض المتراسل" -#: src/Content/Item.php:434 src/Model/Contact.php:1261 +#: src/Content/Item.php:420 src/Model/Contact.php:1254 msgid "Send PM" msgstr "أرسل رسالة خاصة" -#: src/Content/Item.php:435 src/Module/Contact.php:474 -#: src/Module/Contact/Profile.php:532 -#: src/Module/Moderation/Blocklist/Contact.php:116 -#: src/Module/Moderation/Users/Active.php:137 -#: src/Module/Moderation/Users/Index.php:152 +#: src/Content/Item.php:421 src/Module/Contact.php:449 +#: src/Module/Contact/Profile.php:518 +#: src/Module/Moderation/Blocklist/Contact.php:102 +#: src/Module/Moderation/Users/Active.php:123 +#: src/Module/Moderation/Users/Index.php:138 msgid "Block" msgstr "احجب" -#: src/Content/Item.php:436 src/Module/Contact.php:475 -#: src/Module/Contact/Profile.php:540 -#: src/Module/Notifications/Introductions.php:140 -#: src/Module/Notifications/Introductions.php:212 -#: src/Module/Notifications/Notification.php:89 +#: src/Content/Item.php:422 src/Module/Contact.php:450 +#: src/Module/Contact/Profile.php:526 +#: src/Module/Notifications/Introductions.php:126 +#: src/Module/Notifications/Introductions.php:198 +#: src/Module/Notifications/Notification.php:75 msgid "Ignore" msgstr "تجاهل" -#: src/Content/Item.php:437 src/Module/Contact.php:476 -#: src/Module/Contact/Profile.php:548 +#: src/Content/Item.php:423 src/Module/Contact.php:451 +#: src/Module/Contact/Profile.php:534 msgid "Collapse" msgstr "" -#: src/Content/Item.php:438 src/Object/Post.php:302 +#: src/Content/Item.php:424 src/Object/Post.php:288 #, php-format msgid "Ignore %s server" msgstr "" -#: src/Content/Item.php:442 src/Module/Settings/Channels.php:202 -#: src/Module/Settings/Channels.php:223 src/Object/Post.php:516 +#: src/Content/Item.php:428 src/Module/Settings/Channels.php:188 +#: src/Module/Settings/Channels.php:209 src/Object/Post.php:502 msgid "Languages" msgstr "اللغات" -#: src/Content/Item.php:445 src/Object/Post.php:596 +#: src/Content/Item.php:431 src/Object/Post.php:582 msgid "Search Text" msgstr "" -#: src/Content/Item.php:450 src/Content/Widget.php:80 -#: src/Model/Contact.php:1250 src/Model/Contact.php:1262 -#: src/Module/Contact/Follow.php:167 view/theme/vier/theme.php:195 +#: src/Content/Item.php:436 src/Content/Widget.php:66 +#: src/Model/Contact.php:1243 src/Model/Contact.php:1255 +#: src/Module/Contact/Follow.php:148 view/theme/vier/theme.php:183 msgid "Connect/Follow" msgstr "اقترن\\تابع" -#: src/Content/Item.php:884 +#: src/Content/Item.php:870 msgid "Unable to fetch user." msgstr "" -#: src/Content/Nav.php:121 +#: src/Content/Nav.php:107 msgid "Nothing new here" msgstr "لا جديد هنا" -#: src/Content/Nav.php:125 src/Module/Special/HTTPException.php:77 +#: src/Content/Nav.php:111 src/Module/Special/HTTPException.php:63 msgid "Go back" msgstr "عُد" -#: src/Content/Nav.php:126 +#: src/Content/Nav.php:112 msgid "Clear notifications" msgstr "امسح التنبيهات" -#: src/Content/Nav.php:127 src/Content/Text/HTML.php:869 +#: src/Content/Nav.php:113 src/Content/Text/HTML.php:855 msgid "@name, !group, #tags, content" msgstr "" -#: src/Content/Nav.php:222 src/Module/Security/Login.php:161 +#: src/Content/Nav.php:208 src/Module/Security/Login.php:147 msgid "Logout" msgstr "خروج" -#: src/Content/Nav.php:222 +#: src/Content/Nav.php:208 msgid "End this session" msgstr "أنه هذه الجلسة" -#: src/Content/Nav.php:224 src/Module/Bookmarklet.php:44 -#: src/Module/Security/Login.php:162 +#: src/Content/Nav.php:210 src/Module/Bookmarklet.php:30 +#: src/Module/Security/Login.php:148 msgid "Login" msgstr "لِج" -#: src/Content/Nav.php:224 +#: src/Content/Nav.php:210 msgid "Sign in" msgstr "لِج" -#: src/Content/Nav.php:229 src/Module/BaseProfile.php:57 -#: src/Module/Contact.php:518 +#: src/Content/Nav.php:215 src/Module/BaseProfile.php:43 +#: src/Module/Contact.php:493 msgid "Conversations" msgstr "" -#: src/Content/Nav.php:229 +#: src/Content/Nav.php:215 msgid "Conversations you started" msgstr "" -#: src/Content/Nav.php:230 src/Module/BaseProfile.php:49 -#: src/Module/BaseSettings.php:98 src/Module/Contact.php:510 -#: src/Module/Contact/Profile.php:439 src/Module/Profile/Profile.php:270 -#: src/Module/Welcome.php:57 view/theme/frio/theme.php:233 +#: src/Content/Nav.php:216 src/Module/BaseProfile.php:35 +#: src/Module/BaseSettings.php:84 src/Module/Contact.php:485 +#: src/Module/Contact/Profile.php:425 src/Module/Profile/Profile.php:256 +#: src/Module/Welcome.php:43 view/theme/frio/theme.php:221 msgid "Profile" msgstr "الملف شخصي" -#: src/Content/Nav.php:230 view/theme/frio/theme.php:233 +#: src/Content/Nav.php:216 view/theme/frio/theme.php:221 msgid "Your profile page" msgstr "صفحة ملفك الشخصي" -#: src/Content/Nav.php:231 src/Module/BaseProfile.php:65 -#: src/Module/Media/Photo/Browser.php:74 view/theme/frio/theme.php:237 +#: src/Content/Nav.php:217 src/Module/BaseProfile.php:51 +#: src/Module/Media/Photo/Browser.php:60 view/theme/frio/theme.php:225 msgid "Photos" msgstr "الصور" -#: src/Content/Nav.php:231 view/theme/frio/theme.php:237 +#: src/Content/Nav.php:217 view/theme/frio/theme.php:225 msgid "Your photos" msgstr "صورك" -#: src/Content/Nav.php:232 src/Module/BaseProfile.php:73 -#: src/Module/BaseProfile.php:76 src/Module/Contact.php:534 -#: view/theme/frio/theme.php:238 +#: src/Content/Nav.php:218 src/Module/BaseProfile.php:59 +#: src/Module/BaseProfile.php:62 src/Module/Contact.php:509 +#: view/theme/frio/theme.php:226 msgid "Media" msgstr "الوسائط" -#: src/Content/Nav.php:232 view/theme/frio/theme.php:238 +#: src/Content/Nav.php:218 view/theme/frio/theme.php:226 msgid "Your postings with media" msgstr "مشاركاتك التي تحوي وسائط" -#: src/Content/Nav.php:233 src/Content/Nav.php:293 -#: src/Module/BaseProfile.php:85 src/Module/BaseProfile.php:88 -#: src/Module/BaseProfile.php:96 src/Module/BaseProfile.php:99 -#: src/Module/Settings/Display.php:316 view/theme/frio/theme.php:239 -#: view/theme/frio/theme.php:243 +#: src/Content/Nav.php:219 src/Content/Nav.php:279 +#: src/Module/BaseProfile.php:71 src/Module/BaseProfile.php:74 +#: src/Module/BaseProfile.php:82 src/Module/BaseProfile.php:85 +#: src/Module/Settings/Display.php:302 view/theme/frio/theme.php:227 +#: view/theme/frio/theme.php:231 msgid "Calendar" msgstr "التقويم" -#: src/Content/Nav.php:233 view/theme/frio/theme.php:239 +#: src/Content/Nav.php:219 view/theme/frio/theme.php:227 msgid "Your calendar" msgstr "" -#: src/Content/Nav.php:234 +#: src/Content/Nav.php:220 msgid "Personal notes" msgstr "الملاحظات الشخصية" -#: src/Content/Nav.php:234 +#: src/Content/Nav.php:220 msgid "Your personal notes" msgstr "ملاحظاتك الشخصية" -#: src/Content/Nav.php:251 src/Content/Nav.php:308 +#: src/Content/Nav.php:237 src/Content/Nav.php:294 msgid "Home" msgstr "الرئيسية" -#: src/Content/Nav.php:251 src/Module/Settings/OAuth.php:73 +#: src/Content/Nav.php:237 src/Module/Settings/OAuth.php:59 msgid "Home Page" msgstr "الصفحة الرئيسية" -#: src/Content/Nav.php:255 src/Module/Register.php:175 -#: src/Module/Security/Login.php:128 +#: src/Content/Nav.php:241 src/Module/Register.php:161 +#: src/Module/Security/Login.php:114 msgid "Register" msgstr "سجل" -#: src/Content/Nav.php:255 +#: src/Content/Nav.php:241 msgid "Create an account" msgstr "أنشئ حسابا" -#: src/Content/Nav.php:261 src/Module/Help.php:67 -#: src/Module/Settings/TwoFactor/AppSpecific.php:132 -#: src/Module/Settings/TwoFactor/Index.php:139 -#: src/Module/Settings/TwoFactor/Recovery.php:110 -#: src/Module/Settings/TwoFactor/Verify.php:149 view/theme/vier/theme.php:240 +#: src/Content/Nav.php:247 src/Module/Help.php:53 +#: src/Module/Settings/TwoFactor/AppSpecific.php:118 +#: src/Module/Settings/TwoFactor/Index.php:125 +#: src/Module/Settings/TwoFactor/Recovery.php:96 +#: src/Module/Settings/TwoFactor/Verify.php:135 view/theme/vier/theme.php:228 msgid "Help" msgstr "المساعدة" -#: src/Content/Nav.php:261 +#: src/Content/Nav.php:247 msgid "Help and documentation" msgstr "المساعدة والوثائق" -#: src/Content/Nav.php:265 +#: src/Content/Nav.php:251 msgid "Apps" msgstr "التطبيقات" -#: src/Content/Nav.php:265 +#: src/Content/Nav.php:251 msgid "Addon applications, utilities, games" msgstr "إضافات، أدوات، ألعاب" -#: src/Content/Nav.php:269 src/Content/Text/HTML.php:867 -#: src/Module/Admin/Logs/View.php:88 src/Module/Search/Index.php:112 +#: src/Content/Nav.php:255 src/Content/Text/HTML.php:853 +#: src/Module/Admin/Logs/View.php:74 src/Module/Search/Index.php:98 msgid "Search" msgstr "ابحث" -#: src/Content/Nav.php:269 +#: src/Content/Nav.php:255 msgid "Search site content" msgstr "ابحث في محتوى الموقع" -#: src/Content/Nav.php:272 src/Content/Text/HTML.php:876 +#: src/Content/Nav.php:258 src/Content/Text/HTML.php:862 msgid "Full Text" msgstr "النص الكامل" -#: src/Content/Nav.php:273 src/Content/Text/HTML.php:877 -#: src/Content/Widget/TagCloud.php:68 +#: src/Content/Nav.php:259 src/Content/Text/HTML.php:863 +#: src/Content/Widget/TagCloud.php:54 msgid "Tags" msgstr "الوسوم" -#: src/Content/Nav.php:274 src/Content/Nav.php:329 -#: src/Content/Text/HTML.php:878 src/Module/BaseProfile.php:127 -#: src/Module/BaseProfile.php:130 src/Module/Contact.php:432 -#: src/Module/Contact.php:542 view/theme/frio/theme.php:246 +#: src/Content/Nav.php:260 src/Content/Nav.php:315 +#: src/Content/Text/HTML.php:864 src/Module/BaseProfile.php:113 +#: src/Module/BaseProfile.php:116 src/Module/Contact.php:407 +#: src/Module/Contact.php:517 view/theme/frio/theme.php:234 msgid "Contacts" msgstr "المتراسلون" -#: src/Content/Nav.php:289 +#: src/Content/Nav.php:275 msgid "Community" msgstr "المجتمع" -#: src/Content/Nav.php:289 +#: src/Content/Nav.php:275 msgid "Conversations on this and other servers" msgstr "محادثات في هذا الخادم وخوادم أخرى" -#: src/Content/Nav.php:296 +#: src/Content/Nav.php:282 msgid "Directory" msgstr "الدليل" -#: src/Content/Nav.php:296 +#: src/Content/Nav.php:282 msgid "People directory" msgstr "دليل الأشخاص" -#: src/Content/Nav.php:298 src/Module/BaseAdmin.php:85 -#: src/Module/BaseModeration.php:108 +#: src/Content/Nav.php:284 src/Module/BaseAdmin.php:71 +#: src/Module/BaseModeration.php:94 msgid "Information" msgstr "معلومات" -#: src/Content/Nav.php:298 +#: src/Content/Nav.php:284 msgid "Information about this friendica instance" msgstr "معلومات حول هذا المثيل" -#: src/Content/Nav.php:301 src/Module/Admin/Tos.php:78 -#: src/Module/BaseAdmin.php:95 src/Module/Register.php:183 -#: src/Module/Tos.php:101 +#: src/Content/Nav.php:287 src/Module/Admin/Tos.php:64 +#: src/Module/BaseAdmin.php:81 src/Module/Register.php:169 +#: src/Module/Tos.php:87 msgid "Terms of Service" msgstr "شروط الخدمة" -#: src/Content/Nav.php:301 +#: src/Content/Nav.php:287 msgid "Terms of Service of this Friendica instance" msgstr "شروط الخدمة لهذا المثيل" -#: src/Content/Nav.php:306 view/theme/frio/theme.php:242 +#: src/Content/Nav.php:292 view/theme/frio/theme.php:230 msgid "Network" msgstr "الشبكة" -#: src/Content/Nav.php:306 view/theme/frio/theme.php:242 +#: src/Content/Nav.php:292 view/theme/frio/theme.php:230 msgid "Conversations from your friends" msgstr "محادثات أصدقائك" -#: src/Content/Nav.php:308 view/theme/frio/theme.php:232 +#: src/Content/Nav.php:294 view/theme/frio/theme.php:220 msgid "Your posts and conversations" msgstr "مشاركاتك ومحادثاتك" -#: src/Content/Nav.php:312 +#: src/Content/Nav.php:298 msgid "Introductions" msgstr "المقدمات" -#: src/Content/Nav.php:312 +#: src/Content/Nav.php:298 msgid "Friend Requests" msgstr "طلبات الصداقة" -#: src/Content/Nav.php:313 src/Module/BaseNotifications.php:149 -#: src/Module/Notifications/Introductions.php:75 +#: src/Content/Nav.php:299 src/Module/BaseNotifications.php:135 +#: src/Module/Notifications/Introductions.php:61 msgid "Notifications" msgstr "التنبيهات" -#: src/Content/Nav.php:314 +#: src/Content/Nav.php:300 msgid "See all notifications" msgstr "الاطّلاع على جميع التنبيهات" -#: src/Content/Nav.php:315 src/Module/Settings/Connectors.php:254 +#: src/Content/Nav.php:301 src/Module/Settings/Connectors.php:233 msgid "Mark as seen" msgstr "علّمه كمُشاهَد" -#: src/Content/Nav.php:315 +#: src/Content/Nav.php:301 msgid "Mark all system notifications as seen" msgstr "علّم كل تنبيهات النظام كمقروءة" -#: src/Content/Nav.php:318 view/theme/frio/theme.php:244 +#: src/Content/Nav.php:304 view/theme/frio/theme.php:232 msgid "Private mail" msgstr "بريد خاص" -#: src/Content/Nav.php:319 +#: src/Content/Nav.php:305 msgid "Inbox" msgstr "صندوق الوارد" -#: src/Content/Nav.php:320 +#: src/Content/Nav.php:306 msgid "Outbox" msgstr "صندوق الصادر" -#: src/Content/Nav.php:324 +#: src/Content/Nav.php:310 msgid "Accounts" msgstr "الحسابات" -#: src/Content/Nav.php:324 +#: src/Content/Nav.php:310 msgid "Manage other pages" msgstr "إدارة الصفحات الأخرى" -#: src/Content/Nav.php:327 src/Module/Admin/Addons/Details.php:114 -#: src/Module/Admin/Themes/Details.php:99 src/Module/BaseSettings.php:182 -#: src/Module/Welcome.php:52 view/theme/frio/theme.php:245 +#: src/Content/Nav.php:313 src/Module/Admin/Addons/Details.php:100 +#: src/Module/Admin/Themes/Details.php:85 src/Module/BaseSettings.php:168 +#: src/Module/Welcome.php:38 view/theme/frio/theme.php:233 msgid "Settings" msgstr "الإعدادات" -#: src/Content/Nav.php:327 view/theme/frio/theme.php:245 +#: src/Content/Nav.php:313 view/theme/frio/theme.php:233 msgid "Account settings" msgstr "إعدادات الحساب" -#: src/Content/Nav.php:329 view/theme/frio/theme.php:246 +#: src/Content/Nav.php:315 view/theme/frio/theme.php:234 msgid "Manage/edit friends and contacts" msgstr "أدر/عدّل الأصدقاء والمتراسلين" -#: src/Content/Nav.php:334 src/Module/BaseAdmin.php:119 +#: src/Content/Nav.php:320 src/Module/BaseAdmin.php:105 msgid "Admin" msgstr "مدير" -#: src/Content/Nav.php:334 +#: src/Content/Nav.php:320 msgid "Site setup and configuration" msgstr "إعداد الموقع وتكوينه" -#: src/Content/Nav.php:335 src/Module/BaseModeration.php:128 -#: src/Module/Moderation/Blocklist/Contact.php:110 -#: src/Module/Moderation/Blocklist/Server/Add.php:121 -#: src/Module/Moderation/Blocklist/Server/Import.php:118 -#: src/Module/Moderation/Blocklist/Server/Index.php:95 -#: src/Module/Moderation/Item/Delete.php:61 -#: src/Module/Moderation/Reports.php:110 src/Module/Moderation/Summary.php:75 -#: src/Module/Moderation/Users/Active.php:133 -#: src/Module/Moderation/Users/Blocked.php:133 -#: src/Module/Moderation/Users/Deleted.php:80 -#: src/Module/Moderation/Users/Index.php:147 +#: src/Content/Nav.php:321 src/Module/BaseModeration.php:114 +#: src/Module/Moderation/Blocklist/Contact.php:96 +#: src/Module/Moderation/Blocklist/Server/Add.php:107 +#: src/Module/Moderation/Blocklist/Server/Import.php:102 +#: src/Module/Moderation/Blocklist/Server/Index.php:81 +#: src/Module/Moderation/Item/Delete.php:47 +#: src/Module/Moderation/Reports.php:96 src/Module/Moderation/Summary.php:61 +#: src/Module/Moderation/Users/Active.php:119 +#: src/Module/Moderation/Users/Blocked.php:119 +#: src/Module/Moderation/Users/Deleted.php:66 +#: src/Module/Moderation/Users/Index.php:133 msgid "Moderation" msgstr "" -#: src/Content/Nav.php:335 +#: src/Content/Nav.php:321 msgid "Content and user moderation" msgstr "" -#: src/Content/Nav.php:338 +#: src/Content/Nav.php:324 msgid "Navigation" msgstr "تصفح" -#: src/Content/Nav.php:338 +#: src/Content/Nav.php:324 msgid "Site map" msgstr "خريطة الموقع" -#: src/Content/Pager.php:216 +#: src/Content/Pager.php:202 msgid "first" msgstr "الأول" -#: src/Content/Pager.php:221 +#: src/Content/Pager.php:207 msgid "prev" msgstr "السابق" -#: src/Content/Pager.php:276 +#: src/Content/Pager.php:262 msgid "next" msgstr "التالي" -#: src/Content/Pager.php:281 +#: src/Content/Pager.php:267 msgid "last" msgstr "الأخير" -#: src/Content/Text/BBCode.php:704 src/Content/Text/BBCode.php:1880 -#: src/Content/Text/BBCode.php:1881 +#: src/Content/Text/BBCode.php:689 src/Content/Text/BBCode.php:1862 +#: src/Content/Text/BBCode.php:1863 msgid "Image/photo" msgstr "صورة" -#: src/Content/Text/BBCode.php:922 +#: src/Content/Text/BBCode.php:907 #, php-format msgid "%2$s %3$s" msgstr "%2$s %3$s" -#: src/Content/Text/BBCode.php:947 src/Model/Item.php:4060 -#: src/Model/Item.php:4066 src/Model/Item.php:4067 +#: src/Content/Text/BBCode.php:929 src/Model/Item.php:4028 +#: src/Model/Item.php:4034 src/Model/Item.php:4035 msgid "Link to source" msgstr "رابط المصدر" -#: src/Content/Text/BBCode.php:1761 src/Content/Text/HTML.php:906 +#: src/Content/Text/BBCode.php:1743 src/Content/Text/HTML.php:892 msgid "Click to open/close" msgstr "أنقر للفتح/للإغلاق" -#: src/Content/Text/BBCode.php:1816 +#: src/Content/Text/BBCode.php:1798 msgid "$1 wrote:" msgstr "كتب $1:" -#: src/Content/Text/BBCode.php:1890 src/Content/Text/BBCode.php:1891 +#: src/Content/Text/BBCode.php:1872 src/Content/Text/BBCode.php:1873 msgid "Encrypted content" msgstr "محتوى مشفر" -#: src/Content/Text/BBCode.php:2223 +#: src/Content/Text/BBCode.php:2205 msgid "Invalid source protocol" msgstr "ميفاق المصدر غير صالح" -#: src/Content/Text/BBCode.php:2242 +#: src/Content/Text/BBCode.php:2224 msgid "Invalid link protocol" msgstr "ميفاق الرابط غير صالح" -#: src/Content/Text/HTML.php:784 +#: src/Content/Text/HTML.php:770 msgid "Loading more entries..." msgstr "يحمل مزيدًا من المدخلات..." -#: src/Content/Text/HTML.php:785 +#: src/Content/Text/HTML.php:771 msgid "The end" msgstr "النهاية" -#: src/Content/Text/HTML.php:861 src/Content/Widget/VCard.php:127 -#: src/Model/Profile.php:470 src/Module/Contact/Profile.php:492 +#: src/Content/Text/HTML.php:847 src/Content/Widget/VCard.php:113 +#: src/Model/Profile.php:456 src/Module/Contact/Profile.php:478 msgid "Follow" msgstr "تابع" -#: src/Content/Widget.php:51 +#: src/Content/Widget.php:37 msgid "Add New Contact" msgstr "أضف متراسلًا جديدًا" -#: src/Content/Widget.php:52 +#: src/Content/Widget.php:38 msgid "Enter address or web location" msgstr "أدخل العنوان أو الرابط" -#: src/Content/Widget.php:53 +#: src/Content/Widget.php:39 msgid "Example: bob@example.com, http://example.com/barbara" msgstr "مثل: bob@example.com, http://example.com/barbara" -#: src/Content/Widget.php:55 +#: src/Content/Widget.php:41 msgid "Connect" msgstr "اتصل" -#: src/Content/Widget.php:72 +#: src/Content/Widget.php:58 #, php-format msgid "%d invitation available" msgid_plural "%d invitations available" @@ -2410,79 +2409,79 @@ msgstr[3] "%d دعوات متاحة" msgstr[4] "%d دعوة متاحة" msgstr[5] "%d دعوة متاحة" -#: src/Content/Widget.php:78 view/theme/vier/theme.php:193 +#: src/Content/Widget.php:64 view/theme/vier/theme.php:181 msgid "Find People" msgstr "ابحث عن أشخاص" -#: src/Content/Widget.php:79 view/theme/vier/theme.php:194 +#: src/Content/Widget.php:65 view/theme/vier/theme.php:182 msgid "Enter name or interest" msgstr "أدخل اسما أو اهتماما" -#: src/Content/Widget.php:81 view/theme/vier/theme.php:196 +#: src/Content/Widget.php:67 view/theme/vier/theme.php:184 msgid "Examples: Robert Morgenstein, Fishing" msgstr "مثال: أحمد علي، الصيد" -#: src/Content/Widget.php:82 src/Module/Contact.php:466 -#: src/Module/Directory.php:97 view/theme/vier/theme.php:197 +#: src/Content/Widget.php:68 src/Module/Contact.php:441 +#: src/Module/Directory.php:83 view/theme/vier/theme.php:185 msgid "Find" msgstr "ابحث" -#: src/Content/Widget.php:83 src/Module/Contact/Suggestions.php:73 -#: view/theme/vier/theme.php:198 +#: src/Content/Widget.php:69 src/Module/Contact/Suggestions.php:59 +#: view/theme/vier/theme.php:186 msgid "Friend Suggestions" msgstr "اقتراحات الأصدقاء" -#: src/Content/Widget.php:84 view/theme/vier/theme.php:199 +#: src/Content/Widget.php:70 view/theme/vier/theme.php:187 msgid "Similar Interests" msgstr "اهتمامات مشتركة" -#: src/Content/Widget.php:85 view/theme/vier/theme.php:200 +#: src/Content/Widget.php:71 view/theme/vier/theme.php:188 msgid "Random Profile" msgstr "ملف شخصي عشوائي" -#: src/Content/Widget.php:86 view/theme/vier/theme.php:201 +#: src/Content/Widget.php:72 view/theme/vier/theme.php:189 msgid "Invite Friends" msgstr "دعوة أصدقاء" -#: src/Content/Widget.php:87 src/Module/Directory.php:89 -#: view/theme/vier/theme.php:202 +#: src/Content/Widget.php:73 src/Module/Directory.php:75 +#: view/theme/vier/theme.php:190 msgid "Global Directory" msgstr "الدليل العالمي" -#: src/Content/Widget.php:89 view/theme/vier/theme.php:204 +#: src/Content/Widget.php:75 view/theme/vier/theme.php:192 msgid "Local Directory" msgstr "الدليل المحلي" -#: src/Content/Widget.php:218 +#: src/Content/Widget.php:196 msgid "Everyone" msgstr "الجميع" -#: src/Content/Widget.php:243 src/Module/Contact.php:429 +#: src/Content/Widget.php:221 src/Module/Contact.php:404 msgid "No relationship" msgstr "" -#: src/Content/Widget.php:248 +#: src/Content/Widget.php:226 msgid "Relationships" msgstr "العلاقات" -#: src/Content/Widget.php:250 src/Module/Circle.php:294 -#: src/Module/Contact.php:350 +#: src/Content/Widget.php:228 src/Module/Circle.php:280 +#: src/Module/Contact.php:325 msgid "All Contacts" msgstr "كل المتراسلين" -#: src/Content/Widget.php:291 +#: src/Content/Widget.php:269 msgid "All Protocols" msgstr "كل الموافيق" -#: src/Content/Widget.php:321 src/Content/Widget.php:352 +#: src/Content/Widget.php:299 src/Content/Widget.php:330 msgid "Everything" msgstr "كلّ شيء" -#: src/Content/Widget.php:350 +#: src/Content/Widget.php:328 msgid "Categories" msgstr "الفئات" -#: src/Content/Widget.php:407 +#: src/Content/Widget.php:385 #, php-format msgid "%d contact in common" msgid_plural "%d contacts in common" @@ -2493,47 +2492,47 @@ msgstr[3] "%d متراسلين مشتركين" msgstr[4] "%d متراسلًا مشتركًا" msgstr[5] "%d متراسل مشترك" -#: src/Content/Widget.php:515 +#: src/Content/Widget.php:493 msgid "On this date" msgstr "" -#: src/Content/Widget.php:535 +#: src/Content/Widget.php:513 msgid "Persons" msgstr "الأشخاص" -#: src/Content/Widget.php:536 +#: src/Content/Widget.php:514 msgid "Organisations" msgstr "المنظّمات" -#: src/Content/Widget.php:537 src/Model/Contact.php:1754 +#: src/Content/Widget.php:515 src/Model/Contact.php:1747 msgid "News" msgstr "الأخبار" -#: src/Content/Widget.php:539 +#: src/Content/Widget.php:517 msgid "Relays" msgstr "" -#: src/Content/Widget.php:546 src/Module/Moderation/BaseUsers.php:69 +#: src/Content/Widget.php:524 src/Module/Moderation/BaseUsers.php:56 msgid "All" msgstr "الكل" -#: src/Content/Widget/CalendarExport.php:56 +#: src/Content/Widget/CalendarExport.php:42 msgid "Export" msgstr "صدّر" -#: src/Content/Widget/CalendarExport.php:57 +#: src/Content/Widget/CalendarExport.php:43 msgid "Export calendar as ical" msgstr "صدّر الرزنامة كملف ical" -#: src/Content/Widget/CalendarExport.php:58 +#: src/Content/Widget/CalendarExport.php:44 msgid "Export calendar as csv" msgstr "صدّر الرزنامة كملف csv" -#: src/Content/Widget/ContactBlock.php:79 +#: src/Content/Widget/ContactBlock.php:65 msgid "No contacts" msgstr "لا متراسلين" -#: src/Content/Widget/ContactBlock.php:110 +#: src/Content/Widget/ContactBlock.php:96 #, php-format msgid "%d Contact" msgid_plural "%d Contacts" @@ -2544,15 +2543,15 @@ msgstr[3] "%d متراسلين" msgstr[4] "%d متراسلا" msgstr[5] "%d متراسل" -#: src/Content/Widget/ContactBlock.php:127 +#: src/Content/Widget/ContactBlock.php:113 msgid "View Contacts" msgstr "اعرض المتراسلين" -#: src/Content/Widget/SavedSearches.php:47 +#: src/Content/Widget/SavedSearches.php:33 msgid "Remove term" msgstr "أزل العنصر" -#: src/Content/Widget/TrendingTags.php:53 +#: src/Content/Widget/TrendingTags.php:39 #, php-format msgid "Trending Tags (last %d hour)" msgid_plural "Trending Tags (last %d hours)" @@ -2563,138 +2562,138 @@ msgstr[3] "الوسوم الشائعة (آخر %d ساعات)" msgstr[4] "الوسوم الشائعة (آخر %d ساعة)" msgstr[5] "الوسوم الشائعة (آخر %d ساعة)" -#: src/Content/Widget/TrendingTags.php:54 +#: src/Content/Widget/TrendingTags.php:40 msgid "More Trending Tags" msgstr "المزيد من الوسوم الشائعة" -#: src/Content/Widget/VCard.php:105 src/Model/Contact.php:1219 -#: src/Model/Profile.php:455 +#: src/Content/Widget/VCard.php:91 src/Model/Contact.php:1212 +#: src/Model/Profile.php:441 msgid "Post to group" msgstr "" -#: src/Content/Widget/VCard.php:110 src/Model/Contact.php:1223 -#: src/Model/Profile.php:459 src/Module/Moderation/Item/Source.php:91 +#: src/Content/Widget/VCard.php:96 src/Model/Contact.php:1216 +#: src/Model/Profile.php:445 src/Module/Moderation/Item/Source.php:77 msgid "Mention" msgstr "ذكر" -#: src/Content/Widget/VCard.php:120 src/Model/Profile.php:374 -#: src/Module/Contact/Profile.php:428 src/Module/Profile/Profile.php:201 +#: src/Content/Widget/VCard.php:106 src/Model/Profile.php:360 +#: src/Module/Contact/Profile.php:414 src/Module/Profile/Profile.php:187 msgid "XMPP:" msgstr "XMPP:" -#: src/Content/Widget/VCard.php:121 src/Model/Profile.php:375 -#: src/Module/Contact/Profile.php:430 src/Module/Profile/Profile.php:205 +#: src/Content/Widget/VCard.php:107 src/Model/Profile.php:361 +#: src/Module/Contact/Profile.php:416 src/Module/Profile/Profile.php:191 msgid "Matrix:" msgstr "مايتركس:" -#: src/Content/Widget/VCard.php:122 src/Model/Event.php:82 -#: src/Model/Event.php:109 src/Model/Event.php:471 src/Model/Event.php:960 -#: src/Model/Profile.php:369 src/Module/Contact/Profile.php:426 -#: src/Module/Directory.php:148 src/Module/Notifications/Introductions.php:193 -#: src/Module/Profile/Profile.php:223 +#: src/Content/Widget/VCard.php:108 src/Model/Event.php:68 +#: src/Model/Event.php:95 src/Model/Event.php:457 src/Model/Event.php:946 +#: src/Model/Profile.php:355 src/Module/Contact/Profile.php:412 +#: src/Module/Directory.php:134 src/Module/Notifications/Introductions.php:179 +#: src/Module/Profile/Profile.php:209 msgid "Location:" msgstr "الموقع:" -#: src/Content/Widget/VCard.php:125 src/Model/Profile.php:483 -#: src/Module/Notifications/Introductions.php:207 +#: src/Content/Widget/VCard.php:111 src/Model/Profile.php:469 +#: src/Module/Notifications/Introductions.php:193 msgid "Network:" msgstr "الشبكة:" -#: src/Content/Widget/VCard.php:129 src/Model/Contact.php:1251 -#: src/Model/Contact.php:1263 src/Model/Profile.php:472 -#: src/Module/Contact/Profile.php:484 +#: src/Content/Widget/VCard.php:115 src/Model/Contact.php:1244 +#: src/Model/Contact.php:1256 src/Model/Profile.php:458 +#: src/Module/Contact/Profile.php:470 msgid "Unfollow" msgstr "ألغِ المتابعة" -#: src/Content/Widget/VCard.php:135 src/Model/Contact.php:1221 -#: src/Model/Profile.php:457 +#: src/Content/Widget/VCard.php:121 src/Model/Contact.php:1214 +#: src/Model/Profile.php:443 msgid "View group" msgstr "" -#: src/Core/ACL.php:166 src/Module/Profile/Profile.php:271 +#: src/Core/ACL.php:152 src/Module/Profile/Profile.php:257 msgid "Yourself" msgstr "أنت" -#: src/Core/ACL.php:202 src/Module/Privacy/PermissionTooltip.php:170 -#: src/Module/Privacy/PermissionTooltip.php:192 +#: src/Core/ACL.php:188 src/Module/Privacy/PermissionTooltip.php:156 +#: src/Module/Privacy/PermissionTooltip.php:178 msgid "Mutuals" msgstr "المشتركة" -#: src/Core/ACL.php:294 +#: src/Core/ACL.php:280 msgid "Post to Email" msgstr "أنشر عبر البريد الإلكتروني" -#: src/Core/ACL.php:321 src/Module/Privacy/PermissionTooltip.php:117 -#: src/Module/Privacy/PermissionTooltip.php:231 +#: src/Core/ACL.php:307 src/Module/Privacy/PermissionTooltip.php:103 +#: src/Module/Privacy/PermissionTooltip.php:217 msgid "Public" msgstr "علني" -#: src/Core/ACL.php:322 +#: src/Core/ACL.php:308 msgid "" "This content will be shown to all your followers and can be seen in the " "community pages and by anyone with its link." msgstr "سيتم عرض هذا المحتوى لكل متابِعيك ويمكن مشاهدته في صفحات المجتمع ومن قبل أي شخص عبر رابطه." -#: src/Core/ACL.php:323 src/Module/Privacy/PermissionTooltip.php:119 +#: src/Core/ACL.php:309 src/Module/Privacy/PermissionTooltip.php:105 msgid "Limited/Private" msgstr "محدود/خاص" -#: src/Core/ACL.php:324 +#: src/Core/ACL.php:310 msgid "" "This content will be shown only to the people in the first box, to the " "exception of the people mentioned in the second box. It won't appear " "anywhere public." msgstr "سيكون هذا المحتوى مرئيًا فقط من قبل المجموعات والمتراسلين المدرجين في الحقل الأول ، وتستثنى المجموعات والمتراسلون المدرجون في الحقل الثاني. لن يكون هذا المحتوى مرئيا للعامة." -#: src/Core/ACL.php:324 +#: src/Core/ACL.php:310 msgid "" "Start typing the name of a contact or a circle to show a filtered list. You " "can also mention the special circles \"Followers\" and \"Mutuals\"." msgstr "" -#: src/Core/ACL.php:325 +#: src/Core/ACL.php:311 msgid "Show to:" msgstr "اعرضه لـ:" -#: src/Core/ACL.php:326 +#: src/Core/ACL.php:312 msgid "Except to:" msgstr "استثني:" -#: src/Core/ACL.php:327 src/Module/Post/Edit.php:154 +#: src/Core/ACL.php:313 src/Module/Post/Edit.php:140 msgid "CC: email addresses" msgstr "أرسله إلى عناوين البريد الإلكتروني" -#: src/Core/ACL.php:328 src/Module/Post/Edit.php:160 +#: src/Core/ACL.php:314 src/Module/Post/Edit.php:146 msgid "Example: bob@example.com, mary@example.com" msgstr "مثل: bob@example.com, mary@example.com" -#: src/Core/ACL.php:329 +#: src/Core/ACL.php:315 msgid "Connectors" msgstr "الموصّلات" -#: src/Core/Installer.php:180 +#: src/Core/Installer.php:166 msgid "" "The database configuration file \"config/local.config.php\" could not be " "written. Please use the enclosed text to create a configuration file in your" " web server root." msgstr "تعذر كتابة ملف تكوين قاعدة البيانات \"config/local.config.php\". رجاء استخدم النص المرفق لإنشاء ملف تكوين في المجلد الجذر للخادم." -#: src/Core/Installer.php:197 +#: src/Core/Installer.php:183 msgid "" "You may need to import the file \"database.sql\" manually using phpmyadmin " "or mysql." msgstr "استورد ملف \"database.sql\" يدويا باستخدام phpmyadmin أو mysql." -#: src/Core/Installer.php:198 src/Module/Install.php:207 -#: src/Module/Install.php:350 +#: src/Core/Installer.php:184 src/Module/Install.php:193 +#: src/Module/Install.php:336 msgid "Please see the file \"doc/INSTALL.md\"." msgstr "يرجى مراجعة ملف \"doc/INSTALL.md\"." -#: src/Core/Installer.php:259 +#: src/Core/Installer.php:245 msgid "Could not find a command line version of PHP in the web server PATH." msgstr "" -#: src/Core/Installer.php:260 +#: src/Core/Installer.php:246 msgid "" "If you don't have a command line version of PHP installed on your server, " "you will not be able to run the background processing. See 'Setup the worker'" msgstr "" -#: src/Core/Installer.php:265 +#: src/Core/Installer.php:251 msgid "PHP executable path" msgstr "مسار الملف التنفيذي لـ PHP" -#: src/Core/Installer.php:265 +#: src/Core/Installer.php:251 msgid "" "Enter full path to php executable. You can leave this blank to continue the " "installation." msgstr "أدخل المسار الكامل للملف التتفيذي لـ php. يمكنك تركه فارغًا لمتابعة التثبيت." -#: src/Core/Installer.php:270 +#: src/Core/Installer.php:256 msgid "Command line PHP" msgstr "سطر أوامر PHP" -#: src/Core/Installer.php:279 +#: src/Core/Installer.php:265 msgid "PHP executable is not the php cli binary (could be cgi-fgci version)" msgstr "ملف PHP التنفيذي ليس ملفًا ثنائيًا (قد يكون إصدار cgi-fcgi)" -#: src/Core/Installer.php:280 +#: src/Core/Installer.php:266 msgid "Found PHP version: " msgstr "اصدار PHP: " -#: src/Core/Installer.php:282 +#: src/Core/Installer.php:268 msgid "PHP cli binary" msgstr "الملف الثنائي لـ PHP" -#: src/Core/Installer.php:295 +#: src/Core/Installer.php:281 msgid "" "The command line version of PHP on your system does not have " "\"register_argc_argv\" enabled." msgstr "إصدار سطر أوامر PHP المثبت على النظام ليس مفعلًا فيه \"register_argc_argv\"." -#: src/Core/Installer.php:296 +#: src/Core/Installer.php:282 msgid "This is required for message delivery to work." msgstr "هذا مطلوب لإيصال الرسائل." -#: src/Core/Installer.php:301 +#: src/Core/Installer.php:287 msgid "PHP register_argc_argv" msgstr "" -#: src/Core/Installer.php:333 +#: src/Core/Installer.php:319 msgid "" "Error: the \"openssl_pkey_new\" function on this system is not able to " "generate encryption keys" msgstr "" -#: src/Core/Installer.php:334 +#: src/Core/Installer.php:320 msgid "" "If running under Windows, please see " "\"http://www.php.net/manual/en/openssl.installation.php\"." msgstr "إذا كنت تستعمل ويندوز راجع \"http://www.php.net/manual/en/openssl.installation.php\"." -#: src/Core/Installer.php:337 +#: src/Core/Installer.php:323 msgid "Generate encryption keys" msgstr "ولّد مفاتيح التشفير" -#: src/Core/Installer.php:388 +#: src/Core/Installer.php:374 msgid "" "Error: Apache webserver mod-rewrite module is required but not installed." msgstr "خطأ: وحدة mod-rewrite لخادم أباتشي مطلوبة لكنها لم تثبت." -#: src/Core/Installer.php:392 +#: src/Core/Installer.php:378 msgid "Apache mod_rewrite module" msgstr "وحدة Apache mod_rewrite" -#: src/Core/Installer.php:398 +#: src/Core/Installer.php:384 msgid "Error: PDO or MySQLi PHP module required but not installed." msgstr "" -#: src/Core/Installer.php:402 +#: src/Core/Installer.php:388 msgid "Error: The MySQL driver for PDO is not installed." msgstr "" -#: src/Core/Installer.php:405 +#: src/Core/Installer.php:391 msgid "PDO or MySQLi PHP module" msgstr "" -#: src/Core/Installer.php:411 +#: src/Core/Installer.php:397 msgid "Error: The IntlChar module is not installed." msgstr "" -#: src/Core/Installer.php:414 +#: src/Core/Installer.php:400 msgid "IntlChar PHP module" msgstr "" -#: src/Core/Installer.php:422 +#: src/Core/Installer.php:408 msgid "Error, XML PHP module required but not installed." msgstr "" -#: src/Core/Installer.php:426 +#: src/Core/Installer.php:412 msgid "XML PHP module" msgstr "" -#: src/Core/Installer.php:429 +#: src/Core/Installer.php:415 msgid "libCurl PHP module" msgstr "" -#: src/Core/Installer.php:430 +#: src/Core/Installer.php:416 msgid "Error: libCURL PHP module required but not installed." msgstr "" -#: src/Core/Installer.php:436 +#: src/Core/Installer.php:422 msgid "GD graphics PHP module" msgstr "" -#: src/Core/Installer.php:437 +#: src/Core/Installer.php:423 msgid "" "Error: GD graphics PHP module with JPEG support required but not installed." msgstr "" -#: src/Core/Installer.php:443 +#: src/Core/Installer.php:429 msgid "OpenSSL PHP module" msgstr "" -#: src/Core/Installer.php:444 +#: src/Core/Installer.php:430 msgid "Error: openssl PHP module required but not installed." msgstr "" -#: src/Core/Installer.php:450 +#: src/Core/Installer.php:436 msgid "mb_string PHP module" msgstr "" -#: src/Core/Installer.php:451 +#: src/Core/Installer.php:437 msgid "Error: mb_string PHP module required but not installed." msgstr "" -#: src/Core/Installer.php:457 +#: src/Core/Installer.php:443 msgid "iconv PHP module" msgstr "وحدة iconv PHP" -#: src/Core/Installer.php:458 +#: src/Core/Installer.php:444 msgid "Error: iconv PHP module required but not installed." msgstr "خطأ: وحدة iconv PHP مطلوبة ولكنها غير مثبتة." -#: src/Core/Installer.php:464 +#: src/Core/Installer.php:450 msgid "POSIX PHP module" msgstr "وحدة POSIX PHP" -#: src/Core/Installer.php:465 +#: src/Core/Installer.php:451 msgid "Error: POSIX PHP module required but not installed." msgstr "خطأ: وحدة POSIX PHP مطلوبة ولكنها غير مثبتة." -#: src/Core/Installer.php:471 +#: src/Core/Installer.php:457 msgid "Program execution functions" msgstr "مهام تنفيذ البرنامج" -#: src/Core/Installer.php:472 +#: src/Core/Installer.php:458 msgid "" "Error: Program execution functions (proc_open) required but not enabled." msgstr "" -#: src/Core/Installer.php:478 +#: src/Core/Installer.php:464 msgid "JSON PHP module" msgstr "وحدة JSON PHP" -#: src/Core/Installer.php:479 +#: src/Core/Installer.php:465 msgid "Error: JSON PHP module required but not installed." msgstr "خطأ: وحدة JSON PHP مطلوبة ولكنها غير مثبتة." -#: src/Core/Installer.php:485 +#: src/Core/Installer.php:471 msgid "File Information PHP module" msgstr "وحدة PHP fileinfo" -#: src/Core/Installer.php:486 +#: src/Core/Installer.php:472 msgid "Error: File Information PHP module required but not installed." msgstr "خطأ: وحدة PHP fileinfo مطلوبة ولكنها غير مثبتة." -#: src/Core/Installer.php:492 +#: src/Core/Installer.php:478 msgid "GNU Multiple Precision PHP module" msgstr "" -#: src/Core/Installer.php:493 +#: src/Core/Installer.php:479 msgid "Error: GNU Multiple Precision PHP module required but not installed." msgstr "" -#: src/Core/Installer.php:499 +#: src/Core/Installer.php:485 msgid "IDN Functions PHP module" msgstr "" -#: src/Core/Installer.php:500 +#: src/Core/Installer.php:486 msgid "Error: IDN Functions PHP module required but not installed." msgstr "" -#: src/Core/Installer.php:523 +#: src/Core/Installer.php:509 msgid "" "The web installer needs to be able to create a file called " "\"local.config.php\" in the \"config\" folder of your web server and it is " "unable to do so." msgstr "مثبِت الويب غير قادر على إنشاء ملف \"local.config.php\" في مجلد \"config\" التابع للخادم." -#: src/Core/Installer.php:524 +#: src/Core/Installer.php:510 msgid "" "This is most often a permission setting, as the web server may not be able " "to write files in your folder - even if you can." msgstr "في أغلب الأحيان تكون مشكلة إذن. قد لا يتمكن خادم الويب من الكتابة في دليلك - على الرغم من أنك تستطيع ذلك." -#: src/Core/Installer.php:525 +#: src/Core/Installer.php:511 msgid "" "At the end of this procedure, we will give you a text to save in a file " "named local.config.php in your Friendica \"config\" folder." msgstr "عند نهاية التثبيت سنزودك بمحتويات لملف \"local.config.php\" لتنشئه يدويًا في الدليل الفرعي \"config\" في دليل خادم فرنديكا." -#: src/Core/Installer.php:526 +#: src/Core/Installer.php:512 msgid "" "You can alternatively skip this procedure and perform a manual installation." " Please see the file \"doc/INSTALL.md\" for instructions." msgstr "يمكنك أيضًا تخطي هذه الخطوة وإجراء تثبيت يدوي. للقيام بذلك يرجى مراجعة ملف \"doc/INSTALL.md\"." -#: src/Core/Installer.php:529 +#: src/Core/Installer.php:515 msgid "config/local.config.php is writable" msgstr "ملف \"config/local.config.php\" قابل للكتابة" -#: src/Core/Installer.php:549 +#: src/Core/Installer.php:535 msgid "" "Friendica uses the Smarty3 template engine to render its web views. Smarty3 " "compiles templates to PHP to speed up rendering." msgstr "يستخدم فرنديكا محرك القوالب Smarty3 لتصيير عرض الويب. يقوم Smarty3 ببناء القوالب كـ PHP لتسريع عملية التصيير." -#: src/Core/Installer.php:550 +#: src/Core/Installer.php:536 msgid "" "In order to store these compiled templates, the web server needs to have " "write access to the directory view/smarty3/ under the Friendica top level " "folder." msgstr "لتتمكن من تخزين هذه النماذج المترجمة ، يجب أن يكون لخادم الإنترنت أذون الكتابة في دليل view/smarty3/ ضمن المجلد الجذر لفرنديكا." -#: src/Core/Installer.php:551 +#: src/Core/Installer.php:537 msgid "" "Please ensure that the user that your web server runs as (e.g. www-data) has" " write access to this folder." msgstr "" -#: src/Core/Installer.php:552 +#: src/Core/Installer.php:538 msgid "" "Note: as a security measure, you should give the web server write access to " "view/smarty3/ only--not the template files (.tpl) that it contains." msgstr "" -#: src/Core/Installer.php:555 +#: src/Core/Installer.php:541 msgid "view/smarty3 is writable" msgstr "ملف \"view/smarty3\" قابل للكتابة" -#: src/Core/Installer.php:583 +#: src/Core/Installer.php:569 msgid "" "Url rewrite in .htaccess seems not working. Make sure you copied .htaccess-" "dist to .htaccess." msgstr "" -#: src/Core/Installer.php:584 +#: src/Core/Installer.php:570 msgid "" "In some circumstances (like running inside containers), you can skip this " "error." msgstr "في بعض المواقف (مثل تشغيله من حاوية) يمكنك تجاهل هذا الخطأ." -#: src/Core/Installer.php:586 +#: src/Core/Installer.php:572 msgid "Error message from Curl when fetching" msgstr "رسالة خطأ من Curl أثناء الجلب" -#: src/Core/Installer.php:592 +#: src/Core/Installer.php:578 msgid "Url rewrite is working" msgstr "إعادة كتابة الرابط تعمل" -#: src/Core/Installer.php:621 +#: src/Core/Installer.php:607 msgid "" "The detection of TLS to secure the communication between the browser and the" " new Friendica server failed." msgstr "" -#: src/Core/Installer.php:622 +#: src/Core/Installer.php:608 msgid "" "It is highly encouraged to use Friendica only over a secure connection as " "sensitive information like passwords will be transmitted." msgstr "نوصي بشدة باستخدام فرنديكا عبر اتصال آمن فقط حيث سيتم تبادل معلومات حساسة مثل كلمات المرور." -#: src/Core/Installer.php:623 +#: src/Core/Installer.php:609 msgid "Please ensure that the connection to the server is secure." msgstr "يرجى التأكد من أن الاتصال بالخادم آمن." -#: src/Core/Installer.php:624 +#: src/Core/Installer.php:610 msgid "No TLS detected" msgstr "" -#: src/Core/Installer.php:626 +#: src/Core/Installer.php:612 msgid "TLS detected" msgstr "" -#: src/Core/Installer.php:643 +#: src/Core/Installer.php:629 msgid "ImageMagick PHP extension is not installed" msgstr "" -#: src/Core/Installer.php:645 +#: src/Core/Installer.php:631 msgid "ImageMagick PHP extension is installed" msgstr "" -#: src/Core/Installer.php:666 +#: src/Core/Installer.php:652 msgid "Database already in use." msgstr "قاعدة البيانات قيد الاستخدام." -#: src/Core/Installer.php:671 +#: src/Core/Installer.php:657 msgid "Could not connect to database." msgstr "يتعذر الاتصال بقاعدة البيانات." -#: src/Core/L10n.php:444 src/Model/Item.php:2348 +#: src/Core/L10n.php:430 src/Model/Item.php:2315 msgid "Undetermined" msgstr "" -#: src/Core/L10n.php:451 +#: src/Core/L10n.php:437 #, php-format msgid "%s (%s)" msgstr "" -#: src/Core/L10n.php:499 src/Model/Event.php:430 -#: src/Module/Settings/Display.php:284 +#: src/Core/L10n.php:485 src/Model/Event.php:416 +#: src/Module/Settings/Display.php:270 msgid "Monday" msgstr "الإثنين" -#: src/Core/L10n.php:499 src/Model/Event.php:431 -#: src/Module/Settings/Display.php:285 +#: src/Core/L10n.php:485 src/Model/Event.php:417 +#: src/Module/Settings/Display.php:271 msgid "Tuesday" msgstr "الثلاثاء" -#: src/Core/L10n.php:499 src/Model/Event.php:432 -#: src/Module/Settings/Display.php:286 +#: src/Core/L10n.php:485 src/Model/Event.php:418 +#: src/Module/Settings/Display.php:272 msgid "Wednesday" msgstr "الأربعاء" -#: src/Core/L10n.php:499 src/Model/Event.php:433 -#: src/Module/Settings/Display.php:287 +#: src/Core/L10n.php:485 src/Model/Event.php:419 +#: src/Module/Settings/Display.php:273 msgid "Thursday" msgstr "الخميس" -#: src/Core/L10n.php:499 src/Model/Event.php:434 -#: src/Module/Settings/Display.php:288 +#: src/Core/L10n.php:485 src/Model/Event.php:420 +#: src/Module/Settings/Display.php:274 msgid "Friday" msgstr "الجمعة" -#: src/Core/L10n.php:499 src/Model/Event.php:435 -#: src/Module/Settings/Display.php:289 +#: src/Core/L10n.php:485 src/Model/Event.php:421 +#: src/Module/Settings/Display.php:275 msgid "Saturday" msgstr "السبت" -#: src/Core/L10n.php:499 src/Model/Event.php:429 -#: src/Module/Settings/Display.php:283 +#: src/Core/L10n.php:485 src/Model/Event.php:415 +#: src/Module/Settings/Display.php:269 msgid "Sunday" msgstr "الأحد" -#: src/Core/L10n.php:503 src/Model/Event.php:450 +#: src/Core/L10n.php:489 src/Model/Event.php:436 msgid "January" msgstr "جانفي" -#: src/Core/L10n.php:503 src/Model/Event.php:451 +#: src/Core/L10n.php:489 src/Model/Event.php:437 msgid "February" msgstr "فيفري" -#: src/Core/L10n.php:503 src/Model/Event.php:452 +#: src/Core/L10n.php:489 src/Model/Event.php:438 msgid "March" msgstr "مارس" -#: src/Core/L10n.php:503 src/Model/Event.php:453 +#: src/Core/L10n.php:489 src/Model/Event.php:439 msgid "April" msgstr "أفريل" -#: src/Core/L10n.php:503 src/Core/L10n.php:522 src/Model/Event.php:441 +#: src/Core/L10n.php:489 src/Core/L10n.php:508 src/Model/Event.php:427 msgid "May" msgstr "ماي" -#: src/Core/L10n.php:503 src/Model/Event.php:454 +#: src/Core/L10n.php:489 src/Model/Event.php:440 msgid "June" msgstr "جوان" -#: src/Core/L10n.php:503 src/Model/Event.php:455 +#: src/Core/L10n.php:489 src/Model/Event.php:441 msgid "July" msgstr "جويلية" -#: src/Core/L10n.php:503 src/Model/Event.php:456 +#: src/Core/L10n.php:489 src/Model/Event.php:442 msgid "August" msgstr "أوت" -#: src/Core/L10n.php:503 src/Model/Event.php:457 +#: src/Core/L10n.php:489 src/Model/Event.php:443 msgid "September" msgstr "سبتمبر" -#: src/Core/L10n.php:503 src/Model/Event.php:458 +#: src/Core/L10n.php:489 src/Model/Event.php:444 msgid "October" msgstr "أكتوبر" -#: src/Core/L10n.php:503 src/Model/Event.php:459 +#: src/Core/L10n.php:489 src/Model/Event.php:445 msgid "November" msgstr "نوفمبر" -#: src/Core/L10n.php:503 src/Model/Event.php:460 +#: src/Core/L10n.php:489 src/Model/Event.php:446 msgid "December" msgstr "ديسمبر" -#: src/Core/L10n.php:518 src/Model/Event.php:422 +#: src/Core/L10n.php:504 src/Model/Event.php:408 msgid "Mon" msgstr "إث" -#: src/Core/L10n.php:518 src/Model/Event.php:423 +#: src/Core/L10n.php:504 src/Model/Event.php:409 msgid "Tue" msgstr "ثلا" -#: src/Core/L10n.php:518 src/Model/Event.php:424 +#: src/Core/L10n.php:504 src/Model/Event.php:410 msgid "Wed" msgstr "أر" -#: src/Core/L10n.php:518 src/Model/Event.php:425 +#: src/Core/L10n.php:504 src/Model/Event.php:411 msgid "Thu" msgstr "خم" -#: src/Core/L10n.php:518 src/Model/Event.php:426 +#: src/Core/L10n.php:504 src/Model/Event.php:412 msgid "Fri" msgstr "جم" -#: src/Core/L10n.php:518 src/Model/Event.php:427 +#: src/Core/L10n.php:504 src/Model/Event.php:413 msgid "Sat" msgstr "سب" -#: src/Core/L10n.php:518 src/Model/Event.php:421 +#: src/Core/L10n.php:504 src/Model/Event.php:407 msgid "Sun" msgstr "أح" -#: src/Core/L10n.php:522 src/Model/Event.php:437 +#: src/Core/L10n.php:508 src/Model/Event.php:423 msgid "Jan" msgstr "جا" -#: src/Core/L10n.php:522 src/Model/Event.php:438 +#: src/Core/L10n.php:508 src/Model/Event.php:424 msgid "Feb" msgstr "في" -#: src/Core/L10n.php:522 src/Model/Event.php:439 +#: src/Core/L10n.php:508 src/Model/Event.php:425 msgid "Mar" msgstr "مارس" -#: src/Core/L10n.php:522 src/Model/Event.php:440 +#: src/Core/L10n.php:508 src/Model/Event.php:426 msgid "Apr" msgstr "أف" -#: src/Core/L10n.php:522 src/Model/Event.php:442 +#: src/Core/L10n.php:508 src/Model/Event.php:428 msgid "Jun" msgstr "جو" -#: src/Core/L10n.php:522 src/Model/Event.php:443 +#: src/Core/L10n.php:508 src/Model/Event.php:429 msgid "Jul" msgstr "جوي" -#: src/Core/L10n.php:522 src/Model/Event.php:444 +#: src/Core/L10n.php:508 src/Model/Event.php:430 msgid "Aug" msgstr "أو" -#: src/Core/L10n.php:522 +#: src/Core/L10n.php:508 msgid "Sep" msgstr "سب" -#: src/Core/L10n.php:522 src/Model/Event.php:446 +#: src/Core/L10n.php:508 src/Model/Event.php:432 msgid "Oct" msgstr "أك" -#: src/Core/L10n.php:522 src/Model/Event.php:447 +#: src/Core/L10n.php:508 src/Model/Event.php:433 msgid "Nov" msgstr "نو" -#: src/Core/L10n.php:522 src/Model/Event.php:448 +#: src/Core/L10n.php:508 src/Model/Event.php:434 msgid "Dec" msgstr "دي" -#: src/Core/Logger/Util/LoggerSettingsCheck.php:60 +#: src/Core/Logger/Util/LoggerSettingsCheck.php:46 #, php-format msgid "The logfile '%s' is not usable. No logging possible (error: '%s')" msgstr "لا يمكن استخدام ملف السجل ''%s'. لا يمكن كتابة السجلات (خطأ: '%s')" -#: src/Core/Logger/Util/LoggerSettingsCheck.php:85 +#: src/Core/Logger/Util/LoggerSettingsCheck.php:71 #, php-format msgid "" "The debug logfile '%s' is not usable. No logging possible (error: '%s')" msgstr "لا يمكن استخدام ملف السجل الخاص بالتنقيح '%s'. لا يمكن كتابة السجلات (خطأ: '%s')" -#: src/Core/Renderer.php:92 src/Core/Renderer.php:121 -#: src/Core/Renderer.php:150 src/Core/Renderer.php:184 -#: src/Render/FriendicaSmartyEngine.php:60 +#: src/Core/Renderer.php:78 src/Core/Renderer.php:107 +#: src/Core/Renderer.php:136 src/Core/Renderer.php:170 +#: src/Render/FriendicaSmartyEngine.php:46 msgid "" "Friendica can't display this page at the moment, please contact the " "administrator." msgstr "لا يمكن لفرَندِيكا عرض هذه الصفحة حاليا، رجاء اتصل بالمدير." -#: src/Core/Renderer.php:146 +#: src/Core/Renderer.php:132 msgid "template engine cannot be registered without a name." msgstr "لا يمكن تسجيل محرك القوالب بدون اسم." -#: src/Core/Renderer.php:180 +#: src/Core/Renderer.php:166 msgid "template engine is not registered!" msgstr "لم يسجل محرك القوالب!" -#: src/Core/Storage/Type/FilesystemConfig.php:78 +#: src/Core/Storage/Type/FilesystemConfig.php:64 msgid "Storage base path" msgstr "المسار الأساسي للتخزين" -#: src/Core/Storage/Type/FilesystemConfig.php:80 +#: src/Core/Storage/Type/FilesystemConfig.php:66 msgid "" "Folder where uploaded files are saved. For maximum security, This should be " "a path outside web server folder tree" msgstr "المجلد حيث تحفظ الملفات المرفوعة. لأقصى قدر من الأمان، يجب أن يكون هذا المسار خارج شجرة مجلد الخادم" -#: src/Core/Storage/Type/FilesystemConfig.php:93 +#: src/Core/Storage/Type/FilesystemConfig.php:79 msgid "Enter a valid existing folder" msgstr "أدخل مجلد موجود وصالح" -#: src/Core/Update.php:80 +#: src/Core/Update.php:66 #, php-format msgid "" "Updates from version %s are not supported. Please update at least to version" " 2021.01 and wait until the postupdate finished version 1383." msgstr "التحديثات التلقائية غير مدعومة من الإصدار %s. يرجى التحديث يدويًا إلى الإصدار 2021.01 وانتظر تحديث البيانات للوصول إلى الإصدار 1383." -#: src/Core/Update.php:91 +#: src/Core/Update.php:77 #, php-format msgid "" "Updates from postupdate version %s are not supported. Please update at least" " to version 2021.01 and wait until the postupdate finished version 1383." msgstr "التحديث التلقائي للبيانات من الإصدار %s غير مدعوم. يرجى التحديث يدويًا إلى الإصدار 2021.01 وانتظر تحديث البيانات للوصول إلى الإصدار 1383." -#: src/Core/Update.php:183 +#: src/Core/Update.php:169 #, php-format msgid "%s: executing pre update %d" msgstr "%s: ينفذ التحديث الاستباقي %d" -#: src/Core/Update.php:225 +#: src/Core/Update.php:211 #, php-format msgid "%s: executing post update %d" msgstr "%s: ينفذ تحديث البيانات %d" -#: src/Core/Update.php:299 +#: src/Core/Update.php:285 #, php-format msgid "Update %s failed. See error logs." msgstr "فشل تحديث %s. راجع سجلات الأخطاء." -#: src/Core/Update.php:339 +#: src/Core/Update.php:325 #, php-format msgid "" "\n" @@ -3247,49 +3246,49 @@ msgid "" "\t\t\t\tfriendica developer if you can not help me on your own. My database might be invalid." msgstr "\n\t\t\tمطورو فرَندِكا أصدروا التحديث %s مؤخرا،\n\t\t\tولكن حدث خطأ أثناء تثبيته\n\t\t\tوهذا يحتاج إلى إصلاح ، ولا يمكنني فعل ذلك بمفردي. يرجى التواصل مع مطور\n\t\t\t فرَندِكا إذا لم تتمكن من مساعدتي بمفردك. قد تكون قاعدة البيانات غير صالحة." -#: src/Core/Update.php:345 +#: src/Core/Update.php:331 #, php-format msgid "The error message is\\n[pre]%s[/pre]" msgstr "رسالة الخطأ\\n[pre]%s[/pre]" -#: src/Core/Update.php:349 src/Core/Update.php:377 +#: src/Core/Update.php:335 src/Core/Update.php:363 msgid "[Friendica Notify] Database update" msgstr "[تنبيهات فرنديكا] تحديث قاعدة البيانات" -#: src/Core/Update.php:371 +#: src/Core/Update.php:357 #, php-format msgid "" "\n" "\t\t\t\tThe friendica database was successfully updated from %s to %s." msgstr "" -#: src/Database/DBStructure.php:57 +#: src/Database/DBStructure.php:43 #, php-format msgid "The database version had been set to %s." msgstr "عُين إصدار قاعدة البيانات إلى %s." -#: src/Database/DBStructure.php:82 +#: src/Database/DBStructure.php:68 #, php-format msgid "" "The post update is at version %d, it has to be at %d to safely drop the " "tables." msgstr "تحديث البيانات هو إصدار %d، لكن يجب أن يكون إصدار %d لتتمكن من حذف الجداول بأمان." -#: src/Database/DBStructure.php:95 +#: src/Database/DBStructure.php:81 msgid "No unused tables found." msgstr "لم يُعثر على جداول غير مستعملة." -#: src/Database/DBStructure.php:100 +#: src/Database/DBStructure.php:86 msgid "" "These tables are not used for friendica and will be deleted when you execute" " \"dbstructure drop -e\":" msgstr "فرنديكا لا تستخدم هذه الجداول يمكنك حذفها بتنفيذ \"dbstructure drop -e\":" -#: src/Database/DBStructure.php:137 +#: src/Database/DBStructure.php:123 msgid "There are no tables on MyISAM or InnoDB with the Antelope file format." msgstr "لا توجد جداول في MyISAM أو InnoDB بتنسيق ملف Antelope." -#: src/Database/DBStructure.php:161 +#: src/Database/DBStructure.php:147 #, php-format msgid "" "\n" @@ -3297,329 +3296,325 @@ msgid "" "%s\n" msgstr "\nحدث الخطأ %d أثناء تحديث قاعدة البيانات:\n%s\n" -#: src/Database/DBStructure.php:164 +#: src/Database/DBStructure.php:150 msgid "Errors encountered performing database changes: " msgstr "حدثت أخطاء أثناء تحديث قاعدة البيانات: " -#: src/Database/DBStructure.php:232 +#: src/Database/DBStructure.php:218 msgid "Another database update is currently running." msgstr "تحديث آخر لقاعدة البيانات جارٍ." -#: src/Database/DBStructure.php:236 +#: src/Database/DBStructure.php:222 #, php-format msgid "%s: Database update" msgstr "%s: تحديث قاعدة البيانات" -#: src/Database/DBStructure.php:493 +#: src/Database/DBStructure.php:479 #, php-format msgid "%s: updating %s table." msgstr "%s يحدث جدول %s." -#: src/Factory/Api/Mastodon/Error.php:42 +#: src/Factory/Api/Mastodon/Error.php:28 msgid "Record not found" msgstr "لم يُعثر على التسجيل" -#: src/Factory/Api/Mastodon/Error.php:49 +#: src/Factory/Api/Mastodon/Error.php:35 msgid "Unprocessable Entity" msgstr "كيان غير قابل للمعالجة" -#: src/Factory/Api/Mastodon/Error.php:56 +#: src/Factory/Api/Mastodon/Error.php:42 msgid "Unauthorized" msgstr "لم يخوّل" -#: src/Factory/Api/Mastodon/Error.php:62 +#: src/Factory/Api/Mastodon/Error.php:48 msgid "" "Token is not authorized with a valid user or is missing a required scope" msgstr "لم يُخول الرمز عبر مستخدم صالح أو يفتقر إلى حيّزٍ مطلوب" -#: src/Factory/Api/Mastodon/Error.php:69 +#: src/Factory/Api/Mastodon/Error.php:55 msgid "Internal Server Error" msgstr "خطأ داخلي في الخادم" -#: src/LegacyModule.php:63 +#: src/LegacyModule.php:49 #, php-format msgid "Legacy module file not found: %s" msgstr "لم يُعثر على ملف الوحدة القديم: %s" -#: src/Model/Circle.php:106 +#: src/Model/Circle.php:92 msgid "" "A deleted circle with this name was revived. Existing item permissions " "may apply to this circle and any future members. If this is" " not what you intended, please create another circle with a different name." msgstr "" -#: src/Model/Circle.php:544 +#: src/Model/Circle.php:530 msgid "Everybody" msgstr "الجميع" -#: src/Model/Circle.php:563 +#: src/Model/Circle.php:549 msgid "edit" msgstr "عدّل" -#: src/Model/Circle.php:600 +#: src/Model/Circle.php:586 msgid "add" msgstr "أضف" -#: src/Model/Circle.php:605 +#: src/Model/Circle.php:591 msgid "Edit circle" msgstr "" -#: src/Model/Circle.php:606 src/Module/Circle.php:195 +#: src/Model/Circle.php:592 src/Module/Circle.php:181 msgid "Contacts not in any circle" msgstr "" -#: src/Model/Circle.php:608 +#: src/Model/Circle.php:594 msgid "Create a new circle" msgstr "" -#: src/Model/Circle.php:609 src/Module/Circle.php:180 -#: src/Module/Circle.php:203 src/Module/Circle.php:278 +#: src/Model/Circle.php:595 src/Module/Circle.php:166 +#: src/Module/Circle.php:189 src/Module/Circle.php:264 msgid "Circle Name: " msgstr "" -#: src/Model/Circle.php:610 +#: src/Model/Circle.php:596 msgid "Edit circles" msgstr "" -#: src/Model/Contact.php:1270 src/Module/Moderation/Users/Pending.php:102 -#: src/Module/Notifications/Introductions.php:138 -#: src/Module/Notifications/Introductions.php:210 +#: src/Model/Contact.php:1263 src/Module/Moderation/Users/Pending.php:88 +#: src/Module/Notifications/Introductions.php:124 +#: src/Module/Notifications/Introductions.php:196 msgid "Approve" msgstr "موافق" -#: src/Model/Contact.php:1750 +#: src/Model/Contact.php:1743 msgid "Organisation" msgstr "منظّمة" -#: src/Model/Contact.php:1758 +#: src/Model/Contact.php:1751 msgid "Group" msgstr "" -#: src/Model/Contact.php:1762 src/Module/Moderation/BaseUsers.php:131 +#: src/Model/Contact.php:1755 src/Module/Moderation/BaseUsers.php:120 msgid "Relay" msgstr "مُرحِل" -#: src/Model/Contact.php:3084 +#: src/Model/Contact.php:3070 msgid "Disallowed profile URL." msgstr "رابط الملف الشخصي غير المسموح." -#: src/Model/Contact.php:3089 src/Module/Friendica.php:100 +#: src/Model/Contact.php:3075 src/Module/Friendica.php:86 msgid "Blocked domain" msgstr "نطاق محجوب" -#: src/Model/Contact.php:3094 +#: src/Model/Contact.php:3080 msgid "Connect URL missing." msgstr "رابط الاتصال مفقود." -#: src/Model/Contact.php:3103 +#: src/Model/Contact.php:3089 msgid "" "The contact could not be added. Please check the relevant network " "credentials in your Settings -> Social Networks page." msgstr "تعذر إضافة المتراسل. تحقق من بيانات اعتماد الشبكة المستهدفة في الإعدادات -> صفحة الشبكات الاجتماعية." -#: src/Model/Contact.php:3121 +#: src/Model/Contact.php:3107 #, php-format msgid "Expected network %s does not match actual network %s" msgstr "" -#: src/Model/Contact.php:3138 +#: src/Model/Contact.php:3124 msgid "This seems to be a relay account. They can't be followed by users." msgstr "" -#: src/Model/Contact.php:3145 +#: src/Model/Contact.php:3131 msgid "The profile address specified does not provide adequate information." msgstr "عنوان الملف الشخصي لا يوفر معلومات كافية." -#: src/Model/Contact.php:3147 +#: src/Model/Contact.php:3133 msgid "No compatible communication protocols or feeds were discovered." msgstr "لم تكتشف أي موافيق اتصال أو تغذيات متوافقة." -#: src/Model/Contact.php:3150 +#: src/Model/Contact.php:3136 msgid "An author or name was not found." msgstr "لم يُعثر على الكاتب أو اسمه." -#: src/Model/Contact.php:3153 +#: src/Model/Contact.php:3139 msgid "No browser URL could be matched to this address." msgstr "لا يوجد رابط يطابق هذا العنوان." -#: src/Model/Contact.php:3156 +#: src/Model/Contact.php:3142 msgid "" "Unable to match @-style Identity Address with a known protocol or email " "contact." msgstr "غير قادر على مطابقة عنوان المعرف \"@\" بميفاق معروف أو متراسل بريد إلكتروني." -#: src/Model/Contact.php:3157 +#: src/Model/Contact.php:3143 msgid "Use mailto: in front of address to force email check." msgstr "استخدم mailto: أمام العنوان للتعرّف عليه كبريد إلكتروني." -#: src/Model/Contact.php:3163 -msgid "" -"The profile address specified belongs to a network which has been disabled " -"on this site." -msgstr "عنوان الملف الشخصي تابع لشبكة محجوبة في هذا الموقع." - -#: src/Model/Contact.php:3168 +#: src/Model/Contact.php:3149 msgid "" "Limited profile. This person will be unable to receive direct/personal " "notifications from you." msgstr "ملف شخصي محدود. لن يتمكن هذا الشخص من تلقي تنبيهات مباشرة/شخصية." -#: src/Model/Contact.php:3234 +#: src/Model/Contact.php:3208 msgid "Unable to retrieve contact information." msgstr "تعذر جلب معلومات المتراسل." -#: src/Model/Event.php:54 +#: src/Model/Event.php:40 msgid "l F d, Y \\@ g:i A \\G\\M\\TP (e)" msgstr "" -#: src/Model/Event.php:75 src/Model/Event.php:92 src/Model/Event.php:469 -#: src/Model/Event.php:942 +#: src/Model/Event.php:61 src/Model/Event.php:78 src/Model/Event.php:455 +#: src/Model/Event.php:928 msgid "Starts:" msgstr "يبدأ:" -#: src/Model/Event.php:78 src/Model/Event.php:98 src/Model/Event.php:470 -#: src/Model/Event.php:946 +#: src/Model/Event.php:64 src/Model/Event.php:84 src/Model/Event.php:456 +#: src/Model/Event.php:932 msgid "Finishes:" msgstr "ينتهي:" -#: src/Model/Event.php:419 +#: src/Model/Event.php:405 msgid "all-day" msgstr "طوال اليوم" -#: src/Model/Event.php:445 +#: src/Model/Event.php:431 msgid "Sept" msgstr "سبتمبر" -#: src/Model/Event.php:462 src/Module/Calendar/Show.php:128 -#: src/Util/Temporal.php:343 +#: src/Model/Event.php:448 src/Module/Calendar/Show.php:114 +#: src/Util/Temporal.php:329 msgid "today" msgstr "اليوم" -#: src/Model/Event.php:463 src/Module/Calendar/Show.php:129 -#: src/Module/Settings/Display.php:294 src/Util/Temporal.php:353 +#: src/Model/Event.php:449 src/Module/Calendar/Show.php:115 +#: src/Module/Settings/Display.php:280 src/Util/Temporal.php:339 msgid "month" msgstr "شهر" -#: src/Model/Event.php:464 src/Module/Calendar/Show.php:130 -#: src/Module/Settings/Display.php:295 src/Util/Temporal.php:354 +#: src/Model/Event.php:450 src/Module/Calendar/Show.php:116 +#: src/Module/Settings/Display.php:281 src/Util/Temporal.php:340 msgid "week" msgstr "أسبوع" -#: src/Model/Event.php:465 src/Module/Calendar/Show.php:131 -#: src/Module/Settings/Display.php:296 src/Util/Temporal.php:355 +#: src/Model/Event.php:451 src/Module/Calendar/Show.php:117 +#: src/Module/Settings/Display.php:282 src/Util/Temporal.php:341 msgid "day" msgstr "يوم" -#: src/Model/Event.php:467 +#: src/Model/Event.php:453 msgid "No events to display" msgstr "لا توجد أحداث لعرضها" -#: src/Model/Event.php:516 src/Module/DFRN/Poll.php:47 src/Module/Feed.php:70 -#: src/Module/Update/Profile.php:56 +#: src/Model/Event.php:502 src/Module/Feed.php:56 +#: src/Module/Update/Profile.php:42 msgid "Access to this profile has been restricted." msgstr "قُيِّد الوصول لهذا الملف الشخصي." -#: src/Model/Event.php:558 src/Module/Calendar/Event/Show.php:67 +#: src/Model/Event.php:544 src/Module/Calendar/Event/Show.php:53 msgid "Event not found." msgstr "" -#: src/Model/Event.php:637 +#: src/Model/Event.php:623 msgid "l, F j" msgstr "" -#: src/Model/Event.php:664 +#: src/Model/Event.php:650 msgid "Edit event" msgstr "عدّل الحدث" -#: src/Model/Event.php:665 +#: src/Model/Event.php:651 msgid "Duplicate event" msgstr "ضاعف الحدث" -#: src/Model/Event.php:666 +#: src/Model/Event.php:652 msgid "Delete event" msgstr "احذف الحدث" -#: src/Model/Event.php:896 src/Module/Debug/Localtime.php:38 +#: src/Model/Event.php:882 src/Module/Debug/Localtime.php:24 msgid "l F d, Y \\@ g:i A" msgstr "l F d, Y \\@ g:i A" -#: src/Model/Event.php:897 +#: src/Model/Event.php:883 msgid "D g:i A" msgstr "" -#: src/Model/Event.php:898 +#: src/Model/Event.php:884 msgid "g:i A" msgstr "" -#: src/Model/Event.php:961 src/Model/Event.php:963 +#: src/Model/Event.php:947 src/Model/Event.php:949 msgid "Show map" msgstr "أظهر الخريطة" -#: src/Model/Event.php:962 +#: src/Model/Event.php:948 msgid "Hide map" msgstr "اخف الخريطة" -#: src/Model/Event.php:1055 +#: src/Model/Event.php:1041 #, php-format msgid "%s's birthday" msgstr "عيد ميلاد %s" -#: src/Model/Event.php:1056 +#: src/Model/Event.php:1042 #, php-format msgid "Happy Birthday %s" msgstr "%s عيد ميلاد سعيد" -#: src/Model/Item.php:2355 +#: src/Model/Item.php:2322 #, php-format msgid "%s (%s - %s): %s" msgstr "" -#: src/Model/Item.php:2357 +#: src/Model/Item.php:2324 #, php-format msgid "%s (%s): %s" msgstr "" -#: src/Model/Item.php:2360 +#: src/Model/Item.php:2327 #, php-format -msgid "Detected languages in this post:\\n%s" -msgstr "اللغات المكتشفة في هذه المشاركة:\\n%s" +msgid "" +"Detected languages in this post:\n" +"%s" +msgstr "" -#: src/Model/Item.php:3308 +#: src/Model/Item.php:3276 msgid "activity" msgstr "النشاط" -#: src/Model/Item.php:3310 +#: src/Model/Item.php:3278 msgid "comment" msgstr "تعليق" -#: src/Model/Item.php:3313 src/Module/Post/Tag/Add.php:123 +#: src/Model/Item.php:3281 src/Module/Post/Tag/Add.php:109 msgid "post" msgstr "مشاركة" -#: src/Model/Item.php:3483 +#: src/Model/Item.php:3451 #, php-format msgid "%s is blocked" msgstr "" -#: src/Model/Item.php:3485 +#: src/Model/Item.php:3453 #, php-format msgid "%s is ignored" msgstr "" -#: src/Model/Item.php:3487 +#: src/Model/Item.php:3455 #, php-format msgid "Content from %s is collapsed" msgstr "" -#: src/Model/Item.php:3491 +#: src/Model/Item.php:3459 msgid "Sensitive content" msgstr "" -#: src/Model/Item.php:3960 +#: src/Model/Item.php:3928 msgid "bytes" msgstr "بايت" -#: src/Model/Item.php:3991 +#: src/Model/Item.php:3959 #, php-format msgid "%2$s (%3$d%%, %1$d vote)" msgid_plural "%2$s (%3$d%%, %1$d votes)" @@ -3630,7 +3625,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#: src/Model/Item.php:3993 +#: src/Model/Item.php:3961 #, php-format msgid "%2$s (%1$d vote)" msgid_plural "%2$s (%1$d votes)" @@ -3641,7 +3636,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#: src/Model/Item.php:3998 +#: src/Model/Item.php:3966 #, php-format msgid "%d voter. Poll end: %s" msgid_plural "%d voters. Poll end: %s" @@ -3652,7 +3647,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#: src/Model/Item.php:4000 +#: src/Model/Item.php:3968 #, php-format msgid "%d voter." msgid_plural "%d voters." @@ -3663,241 +3658,241 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#: src/Model/Item.php:4002 +#: src/Model/Item.php:3970 #, php-format msgid "Poll end: %s" msgstr "" -#: src/Model/Item.php:4043 src/Model/Item.php:4044 +#: src/Model/Item.php:4011 src/Model/Item.php:4012 msgid "View on separate page" msgstr "اعرضه في صفحة منفصلة" -#: src/Model/Mail.php:135 +#: src/Model/Mail.php:121 msgid "[no subject]" msgstr "[بدون موضوع]" -#: src/Model/Photo.php:1198 src/Module/Media/Photo/Upload.php:168 +#: src/Model/Photo.php:1194 src/Module/Media/Photo/Upload.php:154 msgid "Wall Photos" msgstr "صور الحائط" -#: src/Model/Profile.php:357 src/Module/Profile/Profile.php:285 -#: src/Module/Profile/Profile.php:287 +#: src/Model/Profile.php:343 src/Module/Profile/Profile.php:271 +#: src/Module/Profile/Profile.php:273 msgid "Edit profile" msgstr "عدّل الملف الشخصي" -#: src/Model/Profile.php:359 +#: src/Model/Profile.php:345 msgid "Change profile photo" msgstr "غير صورة الملف الشخصي" -#: src/Model/Profile.php:372 src/Module/Directory.php:153 -#: src/Module/Profile/Profile.php:211 +#: src/Model/Profile.php:358 src/Module/Directory.php:139 +#: src/Module/Profile/Profile.php:197 msgid "Homepage:" msgstr "الصفحة رئيسية:" -#: src/Model/Profile.php:373 src/Module/Contact/Profile.php:432 -#: src/Module/Notifications/Introductions.php:195 +#: src/Model/Profile.php:359 src/Module/Contact/Profile.php:418 +#: src/Module/Notifications/Introductions.php:181 msgid "About:" msgstr "حول:" -#: src/Model/Profile.php:474 +#: src/Model/Profile.php:460 msgid "Atom feed" msgstr "تغذية Atom" -#: src/Model/Profile.php:481 +#: src/Model/Profile.php:467 msgid "This website has been verified to belong to the same person." msgstr "" -#: src/Model/Profile.php:532 +#: src/Model/Profile.php:518 msgid "F d" msgstr "F d" -#: src/Model/Profile.php:596 src/Model/Profile.php:677 +#: src/Model/Profile.php:582 src/Model/Profile.php:663 msgid "[today]" msgstr "[اليوم]" -#: src/Model/Profile.php:605 +#: src/Model/Profile.php:591 msgid "Birthday Reminders" msgstr "التذكير أبعياد الميلاد" -#: src/Model/Profile.php:606 +#: src/Model/Profile.php:592 msgid "Birthdays this week:" msgstr "أعياد ميلاد لهذا الأسبوع:" -#: src/Model/Profile.php:622 +#: src/Model/Profile.php:608 msgid "g A l F d" msgstr "g A l F d" -#: src/Model/Profile.php:664 +#: src/Model/Profile.php:650 msgid "[No description]" msgstr "[بدون وصف]" -#: src/Model/Profile.php:690 +#: src/Model/Profile.php:676 msgid "Event Reminders" msgstr "التذكير بالأحداث" -#: src/Model/Profile.php:691 +#: src/Model/Profile.php:677 msgid "Upcoming events the next 7 days:" msgstr "أحداث لهذا الأسبوع:" -#: src/Model/Profile.php:803 +#: src/Model/Profile.php:789 msgid "Hometown:" msgstr "المدينة:" -#: src/Model/Profile.php:804 +#: src/Model/Profile.php:790 msgid "Marital Status:" msgstr "الحالة الاجتماعية:" -#: src/Model/Profile.php:805 +#: src/Model/Profile.php:791 msgid "With:" msgstr "مع:" -#: src/Model/Profile.php:806 +#: src/Model/Profile.php:792 msgid "Since:" msgstr "منذ:" -#: src/Model/Profile.php:807 +#: src/Model/Profile.php:793 msgid "Sexual Preference:" msgstr "التفضيل الجنسي:" -#: src/Model/Profile.php:808 +#: src/Model/Profile.php:794 msgid "Political Views:" msgstr "الآراء السياسية:" -#: src/Model/Profile.php:809 +#: src/Model/Profile.php:795 msgid "Religious Views:" msgstr "الآراء الدينية:" -#: src/Model/Profile.php:810 +#: src/Model/Profile.php:796 msgid "Likes:" msgstr "أعجبني:" -#: src/Model/Profile.php:811 +#: src/Model/Profile.php:797 msgid "Dislikes:" msgstr "لم يعجبني:" -#: src/Model/Profile.php:812 +#: src/Model/Profile.php:798 msgid "Title/Description:" msgstr "العنوان/الوصف:" -#: src/Model/Profile.php:813 src/Module/Admin/Summary.php:197 -#: src/Module/Moderation/Report/Create.php:280 -#: src/Module/Moderation/Summary.php:76 +#: src/Model/Profile.php:799 src/Module/Admin/Summary.php:183 +#: src/Module/Moderation/Report/Create.php:266 +#: src/Module/Moderation/Summary.php:62 msgid "Summary" msgstr "موجز" -#: src/Model/Profile.php:814 +#: src/Model/Profile.php:800 msgid "Musical interests" msgstr "الموسيقى المفضلة" -#: src/Model/Profile.php:815 +#: src/Model/Profile.php:801 msgid "Books, literature" msgstr "الكتب والأدب" -#: src/Model/Profile.php:816 +#: src/Model/Profile.php:802 msgid "Television" msgstr "العروض التلفزيونة" -#: src/Model/Profile.php:817 +#: src/Model/Profile.php:803 msgid "Film/dance/culture/entertainment" msgstr "أفلام/رقص/ثقافة/ترفيه" -#: src/Model/Profile.php:818 +#: src/Model/Profile.php:804 msgid "Hobbies/Interests" msgstr "الهوايات/الاهتمامات" -#: src/Model/Profile.php:819 +#: src/Model/Profile.php:805 msgid "Love/romance" msgstr "الحب/الرومانسية" -#: src/Model/Profile.php:820 +#: src/Model/Profile.php:806 msgid "Work/employment" msgstr "العمل/التوظيف" -#: src/Model/Profile.php:821 +#: src/Model/Profile.php:807 msgid "School/education" msgstr "المدرسة/التعليم" -#: src/Model/Profile.php:822 +#: src/Model/Profile.php:808 msgid "Contact information and Social Networks" msgstr "معلومات الاتصال وحسابات الشبكات الاجتماعية" -#: src/Model/Profile.php:870 +#: src/Model/Profile.php:856 #, php-format msgid "Responsible account: %s" msgstr "" -#: src/Model/User.php:233 src/Model/User.php:1326 +#: src/Model/User.php:217 src/Model/User.php:1310 msgid "SERIOUS ERROR: Generation of security keys failed." msgstr "خطأ قاتل: فشل توليد مفاتيح الأمان." -#: src/Model/User.php:756 src/Model/User.php:789 +#: src/Model/User.php:740 src/Model/User.php:773 msgid "Login failed" msgstr "فشل الولوج" -#: src/Model/User.php:821 +#: src/Model/User.php:805 msgid "Not enough information to authenticate" msgstr "لا توجد معلومات كافية للاستيثاق" -#: src/Model/User.php:946 +#: src/Model/User.php:930 msgid "Password can't be empty" msgstr "لا يمكن أن تكون كلمة المرور فارغة" -#: src/Model/User.php:988 +#: src/Model/User.php:972 msgid "Empty passwords are not allowed." msgstr "لا يسمح بكلمات مرور فارغة." -#: src/Model/User.php:992 +#: src/Model/User.php:976 msgid "" "The new password has been exposed in a public data dump, please choose " "another." msgstr "كلمة المرور الجديدة جزء من تسريب بيانات علني ، يرجى اختيار كلمة مرور مختلفة." -#: src/Model/User.php:996 +#: src/Model/User.php:980 msgid "The password length is limited to 72 characters." msgstr "" -#: src/Model/User.php:1000 +#: src/Model/User.php:984 msgid "The password can't contain white spaces nor accentuated letters" msgstr "" -#: src/Model/User.php:1209 +#: src/Model/User.php:1193 msgid "Passwords do not match. Password unchanged." msgstr "كلمتا المرور غير متطابقتين. لم تغيَّر كلمة المرور." -#: src/Model/User.php:1216 +#: src/Model/User.php:1200 msgid "An invitation is required." msgstr "الدعوة إلزامية." -#: src/Model/User.php:1220 +#: src/Model/User.php:1204 msgid "Invitation could not be verified." msgstr "تعذر التحقق من الدعوة." -#: src/Model/User.php:1228 +#: src/Model/User.php:1212 msgid "Invalid OpenID url" msgstr "رابط OpenID عير صالح" -#: src/Model/User.php:1241 src/Security/Authentication.php:228 +#: src/Model/User.php:1225 src/Security/Authentication.php:214 msgid "" "We encountered a problem while logging in with the OpenID you provided. " "Please check the correct spelling of the ID." msgstr "واجهنا مشكلة أثناء الولوج باستخدام OpenID. يرجى التحقق من صحة المعرف." -#: src/Model/User.php:1241 src/Security/Authentication.php:228 +#: src/Model/User.php:1225 src/Security/Authentication.php:214 msgid "The error message was:" msgstr "رسالة الخطأ:" -#: src/Model/User.php:1247 +#: src/Model/User.php:1231 msgid "Please enter the required information." msgstr "رجاءً أدخل المعلومات المطلوبة." -#: src/Model/User.php:1261 +#: src/Model/User.php:1245 #, php-format msgid "" "system.username_min_length (%s) and system.username_max_length (%s) are " "excluding each other, swapping values." msgstr "" -#: src/Model/User.php:1268 +#: src/Model/User.php:1252 #, php-format msgid "Username should be at least %s character." msgid_plural "Username should be at least %s characters." @@ -3908,7 +3903,7 @@ msgstr[3] "يجب أن لا يقل اسم المستخدم عن %s محارف." msgstr[4] "يجب أن لا يقل اسم المستخدم عن %s محرف." msgstr[5] "يجب أن لا يقل اسم المستخدم عن %s محرف." -#: src/Model/User.php:1272 +#: src/Model/User.php:1256 #, php-format msgid "Username should be at most %s character." msgid_plural "Username should be at most %s characters." @@ -3919,60 +3914,60 @@ msgstr[3] "يجب أن لا يزيد اسم المستخدم عن %s محارف. msgstr[4] "يجب أن لا يزيد اسم المستخدم عن %s محرف." msgstr[5] "يجب أن لا يزيد اسم المستخدم عن %s محرف." -#: src/Model/User.php:1280 +#: src/Model/User.php:1264 msgid "That doesn't appear to be your full (First Last) name." msgstr "لا يبدو أن هذا اسمك الكامل." -#: src/Model/User.php:1285 +#: src/Model/User.php:1269 msgid "Your email domain is not among those allowed on this site." msgstr "نطاق بريدك الإلكتروني غير مسموح به على هذا الموقع." -#: src/Model/User.php:1289 +#: src/Model/User.php:1273 msgid "Not a valid email address." msgstr "عنوان البريد الإلكتروني غير صالح." -#: src/Model/User.php:1292 +#: src/Model/User.php:1276 msgid "The nickname was blocked from registration by the nodes admin." msgstr "هذا اللقب محظور من قبل مدير العقدة." -#: src/Model/User.php:1296 src/Model/User.php:1302 +#: src/Model/User.php:1280 src/Model/User.php:1286 msgid "Cannot use that email." msgstr "لا يمكن استخدام هذا البريد الإلكتروني." -#: src/Model/User.php:1308 +#: src/Model/User.php:1292 msgid "Your nickname can only contain a-z, 0-9 and _." msgstr "يجب أن يتكون اللقب من المحارف a-z، 0-9، _." -#: src/Model/User.php:1316 src/Model/User.php:1373 +#: src/Model/User.php:1300 src/Model/User.php:1350 msgid "Nickname is already registered. Please choose another." msgstr "هذا اللقب محجوز. اختر لقبًا آخر." -#: src/Model/User.php:1360 src/Model/User.php:1364 +#: src/Model/User.php:1337 src/Model/User.php:1341 msgid "An error occurred during registration. Please try again." msgstr "حدث خطأ أثناء التسجيل، رجاء حاول مرة أخرى." -#: src/Model/User.php:1387 +#: src/Model/User.php:1364 msgid "An error occurred creating your default profile. Please try again." msgstr "حدث خطأ أثناء إنشاء الملف الشخصي الافتراضي، رجاء حاول مرة أخرى." -#: src/Model/User.php:1394 +#: src/Model/User.php:1371 msgid "An error occurred creating your self contact. Please try again." msgstr "" -#: src/Model/User.php:1399 +#: src/Model/User.php:1376 msgid "Friends" msgstr "الأصدقاء" -#: src/Model/User.php:1403 +#: src/Model/User.php:1380 msgid "" "An error occurred creating your default contact circle. Please try again." msgstr "" -#: src/Model/User.php:1445 +#: src/Model/User.php:1428 msgid "Profile Photos" msgstr "صور الملف الشخصي" -#: src/Model/User.php:1633 +#: src/Model/User.php:1616 #, php-format msgid "" "\n" @@ -3980,7 +3975,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:1636 +#: src/Model/User.php:1619 #, php-format msgid "" "\n" @@ -4011,12 +4006,12 @@ msgid "" "\t\tThank you and welcome to %4$s." msgstr "" -#: src/Model/User.php:1668 src/Model/User.php:1774 +#: src/Model/User.php:1651 src/Model/User.php:1757 #, php-format msgid "Registration details for %s" msgstr "تفاصيل التسجيل لـ %s" -#: src/Model/User.php:1688 +#: src/Model/User.php:1671 #, php-format msgid "" "\n" @@ -4031,12 +4026,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:1707 +#: src/Model/User.php:1690 #, php-format msgid "Registration at %s" msgstr "التسجيل في %s" -#: src/Model/User.php:1731 +#: src/Model/User.php:1714 #, php-format msgid "" "\n" @@ -4045,7 +4040,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:1739 +#: src/Model/User.php:1722 #, php-format msgid "" "\n" @@ -4076,93 +4071,91 @@ msgid "" "\t\t\tThank you and welcome to %2$s." msgstr "" -#: src/Model/User.php:1801 +#: src/Model/User.php:1784 msgid "" "User with delegates can't be removed, please remove delegate users first" msgstr "" -#: src/Module/Admin/Addons/Details.php:65 +#: src/Module/Admin/Addons/Details.php:51 msgid "Addon not found." msgstr "لم يُعثر على الإضافة." -#: src/Module/Admin/Addons/Details.php:76 src/Module/Admin/Addons/Index.php:55 +#: src/Module/Admin/Addons/Details.php:62 src/Module/Admin/Addons/Index.php:41 #, php-format msgid "Addon %s disabled." msgstr "الإضافة %s معطلة." -#: src/Module/Admin/Addons/Details.php:79 src/Module/Admin/Addons/Index.php:57 +#: src/Module/Admin/Addons/Details.php:65 src/Module/Admin/Addons/Index.php:43 #, php-format msgid "Addon %s enabled." msgstr "الإضافة %s مفعلة." -#: src/Module/Admin/Addons/Details.php:88 -#: src/Module/Admin/Themes/Details.php:52 +#: src/Module/Admin/Addons/Details.php:74 +#: src/Module/Admin/Themes/Details.php:38 msgid "Disable" msgstr "عطّل" -#: src/Module/Admin/Addons/Details.php:91 -#: src/Module/Admin/Themes/Details.php:55 src/Module/Settings/Display.php:340 +#: src/Module/Admin/Addons/Details.php:77 +#: src/Module/Admin/Themes/Details.php:41 src/Module/Settings/Display.php:326 msgid "Enable" msgstr "فعّل" -#: src/Module/Admin/Addons/Details.php:111 -#: src/Module/Admin/Addons/Index.php:73 src/Module/Admin/Federation.php:220 -#: src/Module/Admin/Logs/Settings.php:88 src/Module/Admin/Logs/View.php:85 -#: src/Module/Admin/Queue.php:73 src/Module/Admin/Site.php:457 -#: src/Module/Admin/Storage.php:138 src/Module/Admin/Summary.php:196 -#: src/Module/Admin/Themes/Details.php:96 -#: src/Module/Admin/Themes/Index.php:117 src/Module/Admin/Tos.php:77 -#: src/Module/Moderation/Users/Create.php:61 -#: src/Module/Moderation/Users/Pending.php:96 +#: src/Module/Admin/Addons/Details.php:97 src/Module/Admin/Addons/Index.php:59 +#: src/Module/Admin/Federation.php:206 src/Module/Admin/Logs/Settings.php:74 +#: src/Module/Admin/Logs/View.php:71 src/Module/Admin/Queue.php:59 +#: src/Module/Admin/Site.php:447 src/Module/Admin/Storage.php:124 +#: src/Module/Admin/Summary.php:182 src/Module/Admin/Themes/Details.php:82 +#: src/Module/Admin/Themes/Index.php:103 src/Module/Admin/Tos.php:63 +#: src/Module/Moderation/Users/Create.php:47 +#: src/Module/Moderation/Users/Pending.php:82 msgid "Administration" msgstr "إدارة" -#: src/Module/Admin/Addons/Details.php:112 -#: src/Module/Admin/Addons/Index.php:74 src/Module/BaseAdmin.php:92 -#: src/Module/BaseSettings.php:139 +#: src/Module/Admin/Addons/Details.php:98 src/Module/Admin/Addons/Index.php:60 +#: src/Module/BaseAdmin.php:78 src/Module/BaseSettings.php:125 msgid "Addons" msgstr "الإضافات" -#: src/Module/Admin/Addons/Details.php:113 -#: src/Module/Admin/Themes/Details.php:98 +#: src/Module/Admin/Addons/Details.php:99 +#: src/Module/Admin/Themes/Details.php:84 msgid "Toggle" msgstr "بدّل" -#: src/Module/Admin/Addons/Details.php:120 -#: src/Module/Admin/Themes/Details.php:106 +#: src/Module/Admin/Addons/Details.php:106 +#: src/Module/Admin/Themes/Details.php:92 msgid "Author: " msgstr "الكاتب: " -#: src/Module/Admin/Addons/Details.php:121 -#: src/Module/Admin/Themes/Details.php:107 +#: src/Module/Admin/Addons/Details.php:107 +#: src/Module/Admin/Themes/Details.php:93 msgid "Maintainer: " msgstr "المصين: " -#: src/Module/Admin/Addons/Index.php:48 +#: src/Module/Admin/Addons/Index.php:34 msgid "Addons reloaded" msgstr "أُعيد تحميل الإضافة" -#: src/Module/Admin/Addons/Index.php:59 +#: src/Module/Admin/Addons/Index.php:45 #, php-format msgid "Addon %s failed to install." msgstr "فشل تثبيت إضافة %s." -#: src/Module/Admin/Addons/Index.php:75 src/Module/Admin/Features.php:83 -#: src/Module/Admin/Logs/Settings.php:90 src/Module/Admin/Site.php:460 -#: src/Module/Admin/Themes/Index.php:119 src/Module/Admin/Tos.php:86 -#: src/Module/Settings/Account.php:563 src/Module/Settings/Addons.php:78 -#: src/Module/Settings/Connectors.php:163 -#: src/Module/Settings/Connectors.php:256 -#: src/Module/Settings/Delegation.php:193 src/Module/Settings/Display.php:309 -#: src/Module/Settings/Features.php:75 +#: src/Module/Admin/Addons/Index.php:61 src/Module/Admin/Features.php:69 +#: src/Module/Admin/Logs/Settings.php:76 src/Module/Admin/Site.php:450 +#: src/Module/Admin/Themes/Index.php:105 src/Module/Admin/Tos.php:72 +#: src/Module/Settings/Account.php:549 src/Module/Settings/Addons.php:64 +#: src/Module/Settings/Connectors.php:149 +#: src/Module/Settings/Connectors.php:235 +#: src/Module/Settings/Delegation.php:179 src/Module/Settings/Display.php:295 +#: src/Module/Settings/Features.php:61 msgid "Save Settings" msgstr "احفظ الإعدادات" -#: src/Module/Admin/Addons/Index.php:76 +#: src/Module/Admin/Addons/Index.php:62 msgid "Reload active addons" msgstr "أعد تحميل الإضافات النشطة" -#: src/Module/Admin/Addons/Index.php:80 +#: src/Module/Admin/Addons/Index.php:66 #, php-format msgid "" "There are currently no addons available on your node. You can find the " @@ -4170,98 +4163,98 @@ msgid "" " the open addon registry at %2$s" msgstr "لا توجد حاليا أي إضافات متاحة في عقدتك. يمكنك العثور على مستودع الإضافات الرسمي في %1$s وقد تجد إضافات أخرى مثيرة للاهتمام في سجل الإضافات المفتوحة في %2$s" -#: src/Module/Admin/DBSync.php:51 +#: src/Module/Admin/DBSync.php:37 msgid "Update has been marked successful" msgstr "تُحقق من صحة التحديث وعلّم كـ\"ناجح\"" -#: src/Module/Admin/DBSync.php:59 +#: src/Module/Admin/DBSync.php:45 #, php-format msgid "Database structure update %s was successfully applied." msgstr "نجح تطبيق التحديث بنية قاعدة البيانات %s." -#: src/Module/Admin/DBSync.php:61 +#: src/Module/Admin/DBSync.php:47 #, php-format msgid "Executing of database structure update %s failed with error: %s" msgstr "فشل تنفيذ تحديث بنية قاعدة البيانات %s مع رمز الخطأ: %s" -#: src/Module/Admin/DBSync.php:76 +#: src/Module/Admin/DBSync.php:62 #, php-format msgid "Executing %s failed with error: %s" msgstr "فشل تنفيذ %s مع رمز الخطأ: %s" -#: src/Module/Admin/DBSync.php:78 +#: src/Module/Admin/DBSync.php:64 #, php-format msgid "Update %s was successfully applied." msgstr "نجح تنفيذ التحديث %s." -#: src/Module/Admin/DBSync.php:81 +#: src/Module/Admin/DBSync.php:67 #, php-format msgid "Update %s did not return a status. Unknown if it succeeded." msgstr "لم يُعد أي رمز حالة للتحديث %s. تتعذر معرفة حالة التحديث." -#: src/Module/Admin/DBSync.php:84 +#: src/Module/Admin/DBSync.php:70 #, php-format msgid "There was no additional update function %s that needed to be called." msgstr "لا توجد وظيفة تحديث إضافية %s يلزم استدعاؤها." -#: src/Module/Admin/DBSync.php:105 +#: src/Module/Admin/DBSync.php:91 msgid "No failed updates." msgstr "لم تفشل أي تحديثات." -#: src/Module/Admin/DBSync.php:106 +#: src/Module/Admin/DBSync.php:92 msgid "Check database structure" msgstr "تحقق من بنية قاعدة البيانات" -#: src/Module/Admin/DBSync.php:110 +#: src/Module/Admin/DBSync.php:96 msgid "Failed Updates" msgstr "التحديثات الفاشلة" -#: src/Module/Admin/DBSync.php:111 +#: src/Module/Admin/DBSync.php:97 msgid "" "This does not include updates prior to 1139, which did not return a status." msgstr "هذا لا يشمل الإصدارات السابقة لـ 1139، التي لم تُرجع تفاصيل." -#: src/Module/Admin/DBSync.php:112 +#: src/Module/Admin/DBSync.php:98 msgid "Mark success (if update was manually applied)" msgstr "ضع علامة النجاح (إذا حدثته يدوياً)" -#: src/Module/Admin/DBSync.php:113 +#: src/Module/Admin/DBSync.php:99 msgid "Attempt to execute this update step automatically" msgstr "حاول تنفيذ الخطوة تلقائيًا" -#: src/Module/Admin/Features.php:67 -#: src/Module/Notifications/Introductions.php:150 -#: src/Module/OAuth/Acknowledge.php:55 src/Module/Register.php:138 -#: src/Module/Settings/TwoFactor/Trusted.php:129 +#: src/Module/Admin/Features.php:53 +#: src/Module/Notifications/Introductions.php:136 +#: src/Module/OAuth/Acknowledge.php:41 src/Module/Register.php:124 +#: src/Module/Settings/TwoFactor/Trusted.php:115 msgid "No" msgstr "لا" -#: src/Module/Admin/Features.php:67 src/Module/Contact/Revoke.php:105 -#: src/Module/Notifications/Introductions.php:150 -#: src/Module/OAuth/Acknowledge.php:54 src/Module/Register.php:137 -#: src/Module/Settings/TwoFactor/Trusted.php:129 +#: src/Module/Admin/Features.php:53 src/Module/Contact/Revoke.php:91 +#: src/Module/Notifications/Introductions.php:136 +#: src/Module/OAuth/Acknowledge.php:40 src/Module/Register.php:123 +#: src/Module/Settings/TwoFactor/Trusted.php:115 msgid "Yes" msgstr "نعم" -#: src/Module/Admin/Features.php:67 +#: src/Module/Admin/Features.php:53 msgid "Locked" msgstr "" -#: src/Module/Admin/Features.php:81 +#: src/Module/Admin/Features.php:67 msgid "Manage Additional Features" msgstr "إدارة الميّزات الإضافية" -#: src/Module/Admin/Federation.php:82 -#: src/Module/Moderation/Report/Create.php:191 -#: src/Module/Moderation/Report/Create.php:316 +#: src/Module/Admin/Federation.php:68 +#: src/Module/Moderation/Report/Create.php:177 +#: src/Module/Moderation/Report/Create.php:302 msgid "Other" msgstr "أخرى" -#: src/Module/Admin/Federation.php:160 src/Module/Admin/Federation.php:408 +#: src/Module/Admin/Federation.php:146 src/Module/Admin/Federation.php:394 msgid "unknown" msgstr "مجهول" -#: src/Module/Admin/Federation.php:193 +#: src/Module/Admin/Federation.php:179 #, php-format msgid "%2$s total system" msgid_plural "%2$s total systems" @@ -4272,7 +4265,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#: src/Module/Admin/Federation.php:194 +#: src/Module/Admin/Federation.php:180 #, php-format msgid "%2$s active user last month" msgid_plural "%2$s active users last month" @@ -4283,7 +4276,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#: src/Module/Admin/Federation.php:195 +#: src/Module/Admin/Federation.php:181 #, php-format msgid "%2$s active user last six months" msgid_plural "%2$s active users last six months" @@ -4294,7 +4287,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#: src/Module/Admin/Federation.php:196 +#: src/Module/Admin/Federation.php:182 #, php-format msgid "%2$s registered user" msgid_plural "%2$s registered users" @@ -4305,7 +4298,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#: src/Module/Admin/Federation.php:197 +#: src/Module/Admin/Federation.php:183 #, php-format msgid "%2$s locally created post or comment" msgid_plural "%2$s locally created posts and comments" @@ -4316,7 +4309,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#: src/Module/Admin/Federation.php:200 +#: src/Module/Admin/Federation.php:186 #, php-format msgid "%2$s post per user" msgid_plural "%2$s posts per user" @@ -4327,7 +4320,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#: src/Module/Admin/Federation.php:205 +#: src/Module/Admin/Federation.php:191 #, php-format msgid "%2$s user per system" msgid_plural "%2$s users per system" @@ -4338,18 +4331,18 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#: src/Module/Admin/Federation.php:215 +#: src/Module/Admin/Federation.php:201 msgid "" "This page offers you some numbers to the known part of the federated social " "network your Friendica node is part of. These numbers are not complete but " "only reflect the part of the network your node is aware of." msgstr "تقدم لك هذه الصفحة بعض الإحصائيات للجزء المعروف من الشبكة الاجتماعية الموحدة المتصلة بعقدتك. هذه الإحصائيات ليست كاملة ولكنها تتضمن المواقع المعروفة لعقدتك من الشبكة." -#: src/Module/Admin/Federation.php:221 src/Module/BaseAdmin.php:87 +#: src/Module/Admin/Federation.php:207 src/Module/BaseAdmin.php:73 msgid "Federation Statistics" msgstr "إحصائيات الشبكة الموحدة" -#: src/Module/Admin/Federation.php:224 +#: src/Module/Admin/Federation.php:210 #, php-format msgid "" "Currently this node is aware of %2$s node (%3$s active users last month, " @@ -4366,58 +4359,58 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#: src/Module/Admin/Logs/Settings.php:47 +#: src/Module/Admin/Logs/Settings.php:33 #, php-format msgid "The logfile '%s' is not writable. No logging possible" msgstr "ملف السجل ''%s' غير قابل للكتابة. لا يمكن كتابة السجلات" -#: src/Module/Admin/Logs/Settings.php:80 +#: src/Module/Admin/Logs/Settings.php:66 msgid "PHP log currently enabled." msgstr "كتابة سجلات PHP مفعلة." -#: src/Module/Admin/Logs/Settings.php:82 +#: src/Module/Admin/Logs/Settings.php:68 msgid "PHP log currently disabled." msgstr "كتابة سجلات PHP معطلة." -#: src/Module/Admin/Logs/Settings.php:89 src/Module/BaseAdmin.php:102 -#: src/Module/BaseAdmin.php:103 +#: src/Module/Admin/Logs/Settings.php:75 src/Module/BaseAdmin.php:88 +#: src/Module/BaseAdmin.php:89 msgid "Logs" msgstr "سجلات" -#: src/Module/Admin/Logs/Settings.php:91 +#: src/Module/Admin/Logs/Settings.php:77 msgid "Clear" msgstr "امحُ" -#: src/Module/Admin/Logs/Settings.php:94 +#: src/Module/Admin/Logs/Settings.php:80 msgid "Enable Debugging" msgstr "فعّل التنقيح" -#: src/Module/Admin/Logs/Settings.php:94 src/Module/Admin/Logs/Settings.php:95 -#: src/Module/Admin/Logs/Settings.php:96 src/Module/Admin/Site.php:480 -#: src/Module/Admin/Site.php:488 +#: src/Module/Admin/Logs/Settings.php:80 src/Module/Admin/Logs/Settings.php:81 +#: src/Module/Admin/Logs/Settings.php:82 src/Module/Admin/Site.php:470 +#: src/Module/Admin/Site.php:478 msgid "" "Read-only because it is set by an environment variable" msgstr "" -#: src/Module/Admin/Logs/Settings.php:95 +#: src/Module/Admin/Logs/Settings.php:81 msgid "Log file" msgstr "ملف السجل" -#: src/Module/Admin/Logs/Settings.php:95 +#: src/Module/Admin/Logs/Settings.php:81 msgid "" "Must be writable by web server. Relative to your Friendica top-level " "directory." msgstr "إذن الكتابة للخادم في مجلد جذر فرنديكا مطلوب." -#: src/Module/Admin/Logs/Settings.php:96 +#: src/Module/Admin/Logs/Settings.php:82 msgid "Log level" msgstr "مستوى التسجيل" -#: src/Module/Admin/Logs/Settings.php:98 +#: src/Module/Admin/Logs/Settings.php:84 msgid "PHP logging" msgstr "كتابة سجلات PHP" -#: src/Module/Admin/Logs/Settings.php:99 +#: src/Module/Admin/Logs/Settings.php:85 msgid "" "To temporarily enable logging of PHP errors and warnings you can prepend the" " following to the index.php file of your installation. The filename set in " @@ -4426,402 +4419,407 @@ msgid "" "'display_errors' is to enable these options, set to '0' to disable them." msgstr "لتفعيل تسجيل أخطاء وتحذيرات PHP أدرج الأسطر التالية في بداية ملف index.php في مجلد فرنديكا. اسم الملف المحدد في سطر 'error_log' متعلق بمجلد تثبيت فرنديكا ويجب أن يكون لدى خادم الويب إذن الكتابة فيه. يأخذ التكوينان 'log_errors' و 'display_errors' القيمة '1' لتفعيلهما أو '0' لتعطيلهما." -#: src/Module/Admin/Logs/View.php:72 +#: src/Module/Admin/Logs/View.php:58 #, php-format msgid "" "Error trying to open %1$s log file.
Check to see if " "file %1$s exist and is readable." msgstr "حدث خطأ أثناء فتح ملف السجل %1$s.
تحقق مما إذا كان الملف %1$s موجودا وله أذونات القراءة." -#: src/Module/Admin/Logs/View.php:81 +#: src/Module/Admin/Logs/View.php:67 #, php-format msgid "" "Couldn't open %1$s log file.
Check to see if file %1$s " "is readable." msgstr "يتعذر فتح ملف السجل %1$s.
تحقق مما إذا كان الملف %1$s مُنح أذونات القراءة." -#: src/Module/Admin/Logs/View.php:86 src/Module/BaseAdmin.php:104 +#: src/Module/Admin/Logs/View.php:72 src/Module/BaseAdmin.php:90 msgid "View Logs" msgstr "اعرض السجلات" -#: src/Module/Admin/Logs/View.php:89 +#: src/Module/Admin/Logs/View.php:75 msgid "Search in logs" msgstr "ابحث في السجل" -#: src/Module/Admin/Logs/View.php:90 -#: src/Module/Notifications/Notifications.php:146 +#: src/Module/Admin/Logs/View.php:76 +#: src/Module/Notifications/Notifications.php:132 msgid "Show all" msgstr "اعرض الكل" -#: src/Module/Admin/Logs/View.php:91 +#: src/Module/Admin/Logs/View.php:77 msgid "Date" msgstr "التّاريخ" -#: src/Module/Admin/Logs/View.php:92 +#: src/Module/Admin/Logs/View.php:78 msgid "Level" msgstr "المستوى" -#: src/Module/Admin/Logs/View.php:93 +#: src/Module/Admin/Logs/View.php:79 msgid "Context" msgstr "السياق" -#: src/Module/Admin/Logs/View.php:95 +#: src/Module/Admin/Logs/View.php:81 msgid "ALL" msgstr "الكل" -#: src/Module/Admin/Logs/View.php:96 +#: src/Module/Admin/Logs/View.php:82 msgid "View details" msgstr "اعرض التفاصيل" -#: src/Module/Admin/Logs/View.php:97 +#: src/Module/Admin/Logs/View.php:83 msgid "Click to view details" msgstr "انقر لعرض التفاصيل" -#: src/Module/Admin/Logs/View.php:98 src/Module/Calendar/Event/Form.php:207 +#: src/Module/Admin/Logs/View.php:84 src/Module/Calendar/Event/Form.php:193 msgid "Event details" msgstr "تفاصيل الحدث" -#: src/Module/Admin/Logs/View.php:99 +#: src/Module/Admin/Logs/View.php:85 msgid "Data" msgstr "البيانات" -#: src/Module/Admin/Logs/View.php:100 -#: src/Module/Debug/ActivityPubConversion.php:63 +#: src/Module/Admin/Logs/View.php:86 +#: src/Module/Debug/ActivityPubConversion.php:49 msgid "Source" msgstr "المصدر" -#: src/Module/Admin/Logs/View.php:101 +#: src/Module/Admin/Logs/View.php:87 msgid "File" msgstr "الملف" -#: src/Module/Admin/Logs/View.php:102 +#: src/Module/Admin/Logs/View.php:88 msgid "Line" msgstr "السطر" -#: src/Module/Admin/Logs/View.php:103 +#: src/Module/Admin/Logs/View.php:89 msgid "Function" msgstr "الدالة" -#: src/Module/Admin/Logs/View.php:104 +#: src/Module/Admin/Logs/View.php:90 msgid "UID" msgstr "" -#: src/Module/Admin/Logs/View.php:105 +#: src/Module/Admin/Logs/View.php:91 msgid "Process ID" msgstr "مُعرّف العملية" -#: src/Module/Admin/Logs/View.php:106 +#: src/Module/Admin/Logs/View.php:92 msgid "Close" msgstr "أغلق" -#: src/Module/Admin/Queue.php:50 +#: src/Module/Admin/Queue.php:36 msgid "Inspect Deferred Worker Queue" msgstr "فحص طابور المهام المؤجلة" -#: src/Module/Admin/Queue.php:51 +#: src/Module/Admin/Queue.php:37 msgid "" "This page lists the deferred worker jobs. This are jobs that couldn't be " "executed at the first time." msgstr "تسرد هذه الصفحة العمليات المؤجلة. هذه العمليات لا يمكن تنفيذها لأول مرة." -#: src/Module/Admin/Queue.php:54 +#: src/Module/Admin/Queue.php:40 msgid "Inspect Worker Queue" msgstr "فحص طابور المهام" -#: src/Module/Admin/Queue.php:55 +#: src/Module/Admin/Queue.php:41 msgid "" "This page lists the currently queued worker jobs. These jobs are handled by " "the worker cronjob you've set up during install." msgstr "تسرد هذه الصفحة العمليات المتواجدة في الطابور حاليا. هذه العمليات تديرها المهام التي أعددتها أثناء التثبيت." -#: src/Module/Admin/Queue.php:76 +#: src/Module/Admin/Queue.php:62 msgid "ID" msgstr "المعرف" -#: src/Module/Admin/Queue.php:77 +#: src/Module/Admin/Queue.php:63 msgid "Command" msgstr "أمر" -#: src/Module/Admin/Queue.php:78 +#: src/Module/Admin/Queue.php:64 msgid "Job Parameters" msgstr "معطيات العملية" -#: src/Module/Admin/Queue.php:79 src/Module/Moderation/Reports.php:116 -#: src/Module/Settings/OAuth.php:74 +#: src/Module/Admin/Queue.php:65 src/Module/Moderation/Reports.php:102 +#: src/Module/Settings/OAuth.php:60 msgid "Created" msgstr "أُنشئ" -#: src/Module/Admin/Queue.php:80 +#: src/Module/Admin/Queue.php:66 msgid "Next Try" msgstr "" -#: src/Module/Admin/Queue.php:81 +#: src/Module/Admin/Queue.php:67 msgid "Priority" msgstr "الأولوية" -#: src/Module/Admin/Site.php:244 +#: src/Module/Admin/Site.php:230 +#, php-format +msgid "%s is no valid input for maximum media size" +msgstr "" + +#: src/Module/Admin/Site.php:235 #, php-format msgid "%s is no valid input for maximum image size" msgstr "" -#: src/Module/Admin/Site.php:372 src/Module/Settings/Display.php:215 +#: src/Module/Admin/Site.php:362 src/Module/Settings/Display.php:201 msgid "No special theme for mobile devices" msgstr "لا توجد سمة مخصصة للهاتف" -#: src/Module/Admin/Site.php:389 src/Module/Settings/Display.php:225 +#: src/Module/Admin/Site.php:379 src/Module/Settings/Display.php:211 #, php-format msgid "%s - (Experimental)" msgstr "%s - (اختباري)" -#: src/Module/Admin/Site.php:401 +#: src/Module/Admin/Site.php:391 msgid "No community page" msgstr "لا توجد صفحة مجتمع" -#: src/Module/Admin/Site.php:402 +#: src/Module/Admin/Site.php:392 msgid "No community page for visitors" msgstr "" -#: src/Module/Admin/Site.php:403 +#: src/Module/Admin/Site.php:393 msgid "Public postings from users of this site" msgstr "المشاركات العلنية لمستخدمي هذا الموقع" -#: src/Module/Admin/Site.php:404 +#: src/Module/Admin/Site.php:394 msgid "Public postings from the federated network" msgstr "المشاركات العلنية من الشبكة الموحدة" -#: src/Module/Admin/Site.php:405 +#: src/Module/Admin/Site.php:395 msgid "Public postings from local users and the federated network" msgstr "المشركات العلنية من الشبكة الموحدة والشبكة المحلية" -#: src/Module/Admin/Site.php:411 +#: src/Module/Admin/Site.php:401 msgid "Multi user instance" msgstr "مثيل متعدد المستخدمين" -#: src/Module/Admin/Site.php:434 +#: src/Module/Admin/Site.php:424 msgid "Closed" msgstr "مغلق" -#: src/Module/Admin/Site.php:435 +#: src/Module/Admin/Site.php:425 msgid "Requires approval" msgstr "تتطلب الحصول على موافقة" -#: src/Module/Admin/Site.php:436 +#: src/Module/Admin/Site.php:426 msgid "Open" msgstr "افتح" -#: src/Module/Admin/Site.php:440 +#: src/Module/Admin/Site.php:430 msgid "Don't check" msgstr "لا تتحقق" -#: src/Module/Admin/Site.php:441 +#: src/Module/Admin/Site.php:431 msgid "check the stable version" msgstr "تحقق من الإصدار المستقر" -#: src/Module/Admin/Site.php:442 +#: src/Module/Admin/Site.php:432 msgid "check the development version" msgstr "تحقق من الإصدار التطويري" -#: src/Module/Admin/Site.php:446 +#: src/Module/Admin/Site.php:436 msgid "none" msgstr "لا شيﺀ" -#: src/Module/Admin/Site.php:447 +#: src/Module/Admin/Site.php:437 msgid "Local contacts" msgstr "المُتراسِلون المحليون" -#: src/Module/Admin/Site.php:448 +#: src/Module/Admin/Site.php:438 msgid "Interactors" msgstr "المتفاعلون" -#: src/Module/Admin/Site.php:458 src/Module/BaseAdmin.php:90 +#: src/Module/Admin/Site.php:448 src/Module/BaseAdmin.php:76 msgid "Site" msgstr "موقع" -#: src/Module/Admin/Site.php:459 +#: src/Module/Admin/Site.php:449 msgid "General Information" msgstr "معلومات عامة" -#: src/Module/Admin/Site.php:461 +#: src/Module/Admin/Site.php:451 msgid "Republish users to directory" msgstr "أعد نشر المستخدمين في الدليل" -#: src/Module/Admin/Site.php:462 src/Module/Register.php:159 +#: src/Module/Admin/Site.php:452 src/Module/Register.php:145 msgid "Registration" msgstr "التسجيل" -#: src/Module/Admin/Site.php:463 +#: src/Module/Admin/Site.php:453 msgid "File upload" msgstr "رفع الملف" -#: src/Module/Admin/Site.php:464 +#: src/Module/Admin/Site.php:454 msgid "Policies" msgstr "السياسات" -#: src/Module/Admin/Site.php:465 src/Module/Calendar/Event/Form.php:252 -#: src/Module/Contact.php:553 src/Module/Profile/Profile.php:278 +#: src/Module/Admin/Site.php:455 src/Module/Calendar/Event/Form.php:238 +#: src/Module/Contact.php:528 src/Module/Profile/Profile.php:264 msgid "Advanced" msgstr "متقدم" -#: src/Module/Admin/Site.php:466 +#: src/Module/Admin/Site.php:456 msgid "Auto Discovered Contact Directory" msgstr "دليل المتراسلين المكتشفين تلقائيًا" -#: src/Module/Admin/Site.php:467 +#: src/Module/Admin/Site.php:457 msgid "Performance" msgstr "الأداء" -#: src/Module/Admin/Site.php:468 +#: src/Module/Admin/Site.php:458 msgid "Worker" msgstr "مهمة" -#: src/Module/Admin/Site.php:469 +#: src/Module/Admin/Site.php:459 msgid "Message Relay" msgstr "ترحيل الرسالة" -#: src/Module/Admin/Site.php:470 +#: src/Module/Admin/Site.php:460 msgid "" "Use the command \"console relay\" in the command line to add or remove " "relays." msgstr "" -#: src/Module/Admin/Site.php:471 +#: src/Module/Admin/Site.php:461 msgid "The system is not subscribed to any relays at the moment." msgstr "هذا الخادم ليس مشترك في أي مرحلات حاليًا." -#: src/Module/Admin/Site.php:472 +#: src/Module/Admin/Site.php:462 msgid "The system is currently subscribed to the following relays:" msgstr "هذا الخادم مشترك حاليًا في المرحلات التالية:" -#: src/Module/Admin/Site.php:475 +#: src/Module/Admin/Site.php:465 msgid "Relocate Node" msgstr "" -#: src/Module/Admin/Site.php:476 +#: src/Module/Admin/Site.php:466 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:477 +#: src/Module/Admin/Site.php:467 msgid "(Friendica directory)# bin/console relocate https://newdomain.com" msgstr "" -#: src/Module/Admin/Site.php:480 +#: src/Module/Admin/Site.php:470 msgid "Site name" msgstr "اسم الموقع" -#: src/Module/Admin/Site.php:481 +#: src/Module/Admin/Site.php:471 msgid "Sender Email" msgstr "بريد المرسل" -#: src/Module/Admin/Site.php:481 +#: src/Module/Admin/Site.php:471 msgid "" "The email address your server shall use to send notification emails from." msgstr "عنوان البريد الإلكتروني الذي سيستخدمه الخادم لإرسال رسائل التنبيه." -#: src/Module/Admin/Site.php:482 +#: src/Module/Admin/Site.php:472 msgid "Name of the system actor" msgstr "اسم حساب النظام" -#: src/Module/Admin/Site.php:482 +#: src/Module/Admin/Site.php:472 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:483 +#: src/Module/Admin/Site.php:473 msgid "Banner/Logo" msgstr "اللافتة/الشعار" -#: src/Module/Admin/Site.php:484 +#: src/Module/Admin/Site.php:474 msgid "Email Banner/Logo" msgstr "شعار\\لافتة البريد الإلكتروني" -#: src/Module/Admin/Site.php:485 +#: src/Module/Admin/Site.php:475 msgid "Shortcut icon" msgstr "أيقونة الاختصار" -#: src/Module/Admin/Site.php:485 +#: src/Module/Admin/Site.php:475 msgid "Link to an icon that will be used for browsers." msgstr "رابط إلى أيقونة سيتم استخدامها للمتصفحات." -#: src/Module/Admin/Site.php:486 +#: src/Module/Admin/Site.php:476 msgid "Touch icon" msgstr "أيقونة الأجهزة اللمسية" -#: src/Module/Admin/Site.php:486 +#: src/Module/Admin/Site.php:476 msgid "Link to an icon that will be used for tablets and mobiles." msgstr "رابط إلى أيقونة سيتم استخدامها للأجهزة اللوحية والهواتف." -#: src/Module/Admin/Site.php:487 +#: src/Module/Admin/Site.php:477 msgid "Additional Info" msgstr "معلومات إضافية" -#: src/Module/Admin/Site.php:487 +#: src/Module/Admin/Site.php:477 #, 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:488 +#: src/Module/Admin/Site.php:478 msgid "System language" msgstr "لغة النظام" -#: src/Module/Admin/Site.php:489 +#: src/Module/Admin/Site.php:479 msgid "System theme" msgstr "سمة النظام" -#: src/Module/Admin/Site.php:489 +#: src/Module/Admin/Site.php:479 #, php-format msgid "" "Default system theme - may be over-ridden by user profiles - Change default theme settings" msgstr "" -#: src/Module/Admin/Site.php:490 +#: src/Module/Admin/Site.php:480 msgid "Mobile system theme" msgstr "سمة الهاتف" -#: src/Module/Admin/Site.php:490 +#: src/Module/Admin/Site.php:480 msgid "Theme for mobile devices" msgstr "سمة للأجهزة المحمولة" -#: src/Module/Admin/Site.php:491 +#: src/Module/Admin/Site.php:481 msgid "Force SSL" msgstr "فرض SSL" -#: src/Module/Admin/Site.php:491 +#: src/Module/Admin/Site.php:481 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:492 +#: src/Module/Admin/Site.php:482 msgid "Show help entry from navigation menu" msgstr "أظهر المساعدة في قائمة التصفح" -#: src/Module/Admin/Site.php:492 +#: src/Module/Admin/Site.php:482 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:493 +#: src/Module/Admin/Site.php:483 msgid "Single user instance" msgstr "مثيل لمستخدم وحيد" -#: src/Module/Admin/Site.php:493 +#: src/Module/Admin/Site.php:483 msgid "Make this instance multi-user or single-user for the named user" msgstr "اجعل هذا المثيل إما لمستخدم واحد أولعدّة مستخدمين" -#: src/Module/Admin/Site.php:495 +#: src/Module/Admin/Site.php:485 msgid "Maximum image size" msgstr "الحجم الأقصى للصورة" -#: src/Module/Admin/Site.php:495 +#: src/Module/Admin/Site.php:485 #, 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" @@ -4829,35 +4827,47 @@ 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:499 +#: src/Module/Admin/Site.php:489 msgid "Maximum image length" msgstr "الطول الأقصى للصورة" -#: src/Module/Admin/Site.php:499 +#: src/Module/Admin/Site.php:489 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:500 +#: src/Module/Admin/Site.php:490 msgid "JPEG image quality" msgstr "جودة صور JPEG" -#: src/Module/Admin/Site.php:500 +#: src/Module/Admin/Site.php:490 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:502 +#: src/Module/Admin/Site.php:491 +msgid "Maximum media file size" +msgstr "" + +#: src/Module/Admin/Site.php:491 +#, php-format +msgid "" +"Maximum size in bytes of uploaded media files. Default is 0, which means no limits. You can put k, m, or g behind the desired value for KiB, MiB, GiB, respectively.\n" +"\t\t\t\t\t\t\t\t\t\t\t\t\tThe value of upload_max_filesize in your PHP.ini needs be set to at least the desired limit.\n" +"\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:496 msgid "Register policy" msgstr "سياسات التسجيل" -#: src/Module/Admin/Site.php:503 +#: src/Module/Admin/Site.php:497 msgid "Maximum Users" msgstr "" -#: src/Module/Admin/Site.php:503 +#: src/Module/Admin/Site.php:497 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 " @@ -4865,167 +4875,167 @@ msgid "" "not when the policy is set to approval." msgstr "" -#: src/Module/Admin/Site.php:504 +#: src/Module/Admin/Site.php:498 msgid "Maximum Daily Registrations" msgstr "الحد اليومي للتسجيل" -#: src/Module/Admin/Site.php:504 +#: src/Module/Admin/Site.php:498 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:505 +#: src/Module/Admin/Site.php:499 msgid "Register text" msgstr "نص صفحة التسجيل" -#: src/Module/Admin/Site.php:505 +#: src/Module/Admin/Site.php:499 msgid "" "Will be displayed prominently on the registration page. You can use BBCode " "here." msgstr "ستعرض في صفحة التسجيل. يمكنك استخدام BBCode." -#: src/Module/Admin/Site.php:506 +#: src/Module/Admin/Site.php:500 msgid "Forbidden Nicknames" msgstr "الألقاب المحظورة" -#: src/Module/Admin/Site.php:506 +#: src/Module/Admin/Site.php:500 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:507 +#: src/Module/Admin/Site.php:501 msgid "Accounts abandoned after x days" msgstr "الحسابات المهجورة بعد x يوم" -#: src/Module/Admin/Site.php:507 +#: src/Module/Admin/Site.php:501 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:508 +#: src/Module/Admin/Site.php:502 msgid "Allowed friend domains" msgstr "النطاقات المسموحة" -#: src/Module/Admin/Site.php:508 +#: src/Module/Admin/Site.php:502 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:509 +#: src/Module/Admin/Site.php:503 msgid "Allowed email domains" msgstr "نطاقات البريد الإلكتروني المسموحة" -#: src/Module/Admin/Site.php:509 +#: src/Module/Admin/Site.php:503 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:510 +#: src/Module/Admin/Site.php:504 msgid "Disallowed email domains" msgstr "" -#: src/Module/Admin/Site.php:510 +#: src/Module/Admin/Site.php:504 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 +#: src/Module/Admin/Site.php:505 msgid "No OEmbed rich content" msgstr "" -#: src/Module/Admin/Site.php:511 +#: src/Module/Admin/Site.php:505 msgid "" "Don't show the rich content (e.g. embedded PDF), except from the domains " "listed below." msgstr "" -#: src/Module/Admin/Site.php:512 +#: src/Module/Admin/Site.php:506 msgid "Trusted third-party domains" msgstr "نطاقات الخارجية الموثوق بها" -#: src/Module/Admin/Site.php:512 +#: src/Module/Admin/Site.php:506 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:513 +#: src/Module/Admin/Site.php:507 msgid "Block public" msgstr "احجب المشاركات العلنية" -#: src/Module/Admin/Site.php:513 +#: src/Module/Admin/Site.php:507 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:514 +#: src/Module/Admin/Site.php:508 msgid "Force publish" msgstr "افرض النشر" -#: src/Module/Admin/Site.php:514 +#: src/Module/Admin/Site.php:508 msgid "" "Check to force all profiles on this site to be listed in the site directory." msgstr "أشر لفرض إدراج جميع الملفات الشخصية في دليل الموقع." -#: src/Module/Admin/Site.php:514 +#: src/Module/Admin/Site.php:508 msgid "Enabling this may violate privacy laws like the GDPR" msgstr "تفعيله قد ينتهك قوانين حماية الخصوصية مثل GDPR" -#: src/Module/Admin/Site.php:515 +#: src/Module/Admin/Site.php:509 msgid "Global directory URL" msgstr "رابط الدليل العالمي" -#: src/Module/Admin/Site.php:515 +#: src/Module/Admin/Site.php:509 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:516 +#: src/Module/Admin/Site.php:510 msgid "Private posts by default for new users" msgstr "جعل المشاركات خاصة للمستخدمين الجدد افتراضيًا" -#: src/Module/Admin/Site.php:516 +#: src/Module/Admin/Site.php:510 msgid "" "Set default post permissions for all new members to the default privacy " "circle rather than public." msgstr "" -#: src/Module/Admin/Site.php:517 +#: src/Module/Admin/Site.php:511 msgid "Don't include post content in email notifications" msgstr "لا تضمن محتويات المشاركات في تنبيهات البريد الإلكتروني" -#: src/Module/Admin/Site.php:517 +#: src/Module/Admin/Site.php:511 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:518 +#: src/Module/Admin/Site.php:512 msgid "Disallow public access to addons listed in the apps menu." msgstr "لا تسمح بالوصول العلني للإضافات المدرجة في قائمة التطبيقات." -#: src/Module/Admin/Site.php:518 +#: src/Module/Admin/Site.php:512 msgid "" "Checking this box will restrict addons listed in the apps menu to members " "only." msgstr "تأشير هذا الخِيار سيجعل الوصول إلى الإضافات في قائمة التطبيقات للأعضاء فقط." -#: src/Module/Admin/Site.php:519 +#: src/Module/Admin/Site.php:513 msgid "Don't embed private images in posts" msgstr "لا تضمن الصور الخاصة في المشاركات" -#: src/Module/Admin/Site.php:519 +#: src/Module/Admin/Site.php:513 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 " @@ -5033,11 +5043,11 @@ msgid "" "while." msgstr "لا تستبدل الصور الخاصة المستضافة محليًا في المشاركات بنسخة مضمنة ، لأن هذا يعني أن المتراسلين الذين يتلقون المشاركات التي تحوي تلك الصور ستحتاج إلى مصادقة لرؤية كل صورة ، ما قد يستغرق بعض الوقت." -#: src/Module/Admin/Site.php:520 +#: src/Module/Admin/Site.php:514 msgid "Explicit Content" msgstr "محتوى حساس" -#: src/Module/Admin/Site.php:520 +#: src/Module/Admin/Site.php:514 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 " @@ -5046,329 +5056,319 @@ msgid "" "will be shown at the user registration page." msgstr "عيّن هذا الخيار للإعلان عن أن عقدتك تحتوي محتوى حساس قد لا يكون مناسباً للقصر. وسوف تنشر هذه المعلومات في معلومات العقدة وصفحة التسجيل، ويستخدم هذا الخيار في الدليل العالمي، فأثناء استعراض هذه العقدة في الدليل ستظهر لهم هذه المعلومة." -#: src/Module/Admin/Site.php:521 +#: src/Module/Admin/Site.php:515 msgid "Only local search" msgstr "" -#: src/Module/Admin/Site.php:521 +#: src/Module/Admin/Site.php:515 msgid "" "Blocks search for users who are not logged in to prevent crawlers from " "blocking your system." msgstr "" -#: src/Module/Admin/Site.php:522 +#: src/Module/Admin/Site.php:516 msgid "Blocked tags for trending tags" msgstr "" -#: src/Module/Admin/Site.php:522 +#: src/Module/Admin/Site.php:516 msgid "" "Comma separated list of hashtags that shouldn't be displayed in the trending" " tags." msgstr "" -#: src/Module/Admin/Site.php:523 +#: src/Module/Admin/Site.php:517 msgid "Cache contact avatars" msgstr "" -#: src/Module/Admin/Site.php:523 +#: src/Module/Admin/Site.php:517 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:524 +#: src/Module/Admin/Site.php:518 msgid "Allow Users to set remote_self" msgstr "اسمح للمستخدمين بتعيين remote_self" -#: src/Module/Admin/Site.php:524 +#: src/Module/Admin/Site.php:518 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:525 +#: src/Module/Admin/Site.php:519 msgid "Allow Users to set up relay channels" msgstr "" -#: src/Module/Admin/Site.php:525 +#: src/Module/Admin/Site.php:519 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:526 +#: src/Module/Admin/Site.php:520 msgid "Adjust the feed poll frequency" msgstr "" -#: src/Module/Admin/Site.php:526 +#: src/Module/Admin/Site.php:520 msgid "Automatically detect and set the best feed poll frequency." msgstr "" -#: src/Module/Admin/Site.php:527 +#: src/Module/Admin/Site.php:521 msgid "Minimum poll interval" msgstr "" -#: src/Module/Admin/Site.php:527 +#: src/Module/Admin/Site.php:521 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:528 +#: src/Module/Admin/Site.php:522 msgid "Enable multiple registrations" msgstr "فعّل تعدد التسجيل" -#: src/Module/Admin/Site.php:528 +#: src/Module/Admin/Site.php:522 msgid "Enable users to register additional accounts for use as pages." msgstr "يمكن المستخدمين من تسجيل حسابات إضافية لتستخدم كصفحات." -#: src/Module/Admin/Site.php:529 +#: src/Module/Admin/Site.php:523 msgid "Enable OpenID" msgstr "فعّل OpenID" -#: src/Module/Admin/Site.php:529 +#: src/Module/Admin/Site.php:523 msgid "Enable OpenID support for registration and logins." msgstr "فعّل دعم OpenID للتسجيل والولوج." -#: src/Module/Admin/Site.php:530 +#: src/Module/Admin/Site.php:524 msgid "Enable full name check" msgstr "" -#: src/Module/Admin/Site.php:530 +#: src/Module/Admin/Site.php:524 msgid "" "Prevents users from registering with a display name with fewer than two " "parts separated by spaces." msgstr "" -#: src/Module/Admin/Site.php:531 +#: src/Module/Admin/Site.php:525 msgid "Email administrators on new registration" msgstr "" -#: src/Module/Admin/Site.php:531 +#: src/Module/Admin/Site.php:525 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:532 +#: src/Module/Admin/Site.php:526 msgid "Community pages for visitors" msgstr "عرض صفحة المجتمع للزوار" -#: src/Module/Admin/Site.php:532 +#: src/Module/Admin/Site.php:526 msgid "" "Which community pages should be available for visitors. Local users always " "see both pages." msgstr "صفحات المجتمع المتاحة للزوار. المستخدمون المحليون يمكنهم مشاهدة كلا النوعين." -#: src/Module/Admin/Site.php:533 +#: src/Module/Admin/Site.php:527 msgid "Posts per user on community page" msgstr "حد المشاركات لكل مستخدم في صفحة المجتمع" -#: src/Module/Admin/Site.php:533 +#: src/Module/Admin/Site.php:527 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:534 +#: src/Module/Admin/Site.php:528 msgid "Posts per server on community page" msgstr "" -#: src/Module/Admin/Site.php:534 +#: src/Module/Admin/Site.php:528 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:536 +#: src/Module/Admin/Site.php:530 msgid "Enable Mail support" msgstr "فعّل دعم البريد الإلكتروني" -#: src/Module/Admin/Site.php:536 +#: src/Module/Admin/Site.php:530 msgid "" "Enable built-in mail support to poll IMAP folders and to reply via mail." msgstr "" -#: src/Module/Admin/Site.php:537 +#: src/Module/Admin/Site.php:531 msgid "" "Mail support can't be enabled because the PHP IMAP module is not installed." msgstr "" -#: src/Module/Admin/Site.php:538 -msgid "Enable OStatus support" -msgstr "" - -#: src/Module/Admin/Site.php:538 -msgid "" -"Enable built-in OStatus (StatusNet, GNU Social etc.) compatibility. All " -"communications in OStatus are public." -msgstr "" - -#: src/Module/Admin/Site.php:540 +#: src/Module/Admin/Site.php:533 msgid "" "Diaspora support can't be enabled because Friendica was installed into a sub" " directory." msgstr "" -#: src/Module/Admin/Site.php:541 +#: src/Module/Admin/Site.php:534 msgid "Enable Diaspora support" msgstr "" -#: src/Module/Admin/Site.php:541 +#: src/Module/Admin/Site.php:534 msgid "" "Enable built-in Diaspora network compatibility for communicating with " "diaspora servers." msgstr "" -#: src/Module/Admin/Site.php:542 +#: src/Module/Admin/Site.php:535 msgid "Verify SSL" msgstr "" -#: src/Module/Admin/Site.php:542 +#: src/Module/Admin/Site.php:535 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:543 +#: src/Module/Admin/Site.php:536 msgid "Proxy user" msgstr "مستخدم الوكيل" -#: src/Module/Admin/Site.php:543 +#: src/Module/Admin/Site.php:536 msgid "User name for the proxy server." msgstr "" -#: src/Module/Admin/Site.php:544 +#: src/Module/Admin/Site.php:537 msgid "Proxy URL" msgstr "رابط الوكيل" -#: src/Module/Admin/Site.php:544 +#: src/Module/Admin/Site.php:537 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:545 +#: src/Module/Admin/Site.php:538 msgid "Network timeout" msgstr "انتهت مهلة الاتصال بالشبكة" -#: src/Module/Admin/Site.php:545 +#: src/Module/Admin/Site.php:538 msgid "Value is in seconds. Set to 0 for unlimited (not recommended)." msgstr "القيمة بالثواني. تعيينها لـ 0 يعني مهلة غير محدودة (غير مستحسن)." -#: src/Module/Admin/Site.php:546 +#: src/Module/Admin/Site.php:539 msgid "Maximum Load Average" msgstr "" -#: src/Module/Admin/Site.php:546 +#: src/Module/Admin/Site.php:539 #, php-format msgid "" "Maximum system load before delivery and poll processes are deferred - " "default %d." msgstr "" -#: src/Module/Admin/Site.php:547 +#: src/Module/Admin/Site.php:540 msgid "Minimal Memory" msgstr "الحد الأدنى للذاكرة" -#: src/Module/Admin/Site.php:547 +#: src/Module/Admin/Site.php:540 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:548 +#: src/Module/Admin/Site.php:541 msgid "Periodically optimize tables" msgstr "تحسين الجداول بصفة دورية" -#: src/Module/Admin/Site.php:548 +#: src/Module/Admin/Site.php:541 msgid "Periodically optimize tables like the cache and the workerqueue" msgstr "حسن بانتظام بعض جداول قاعدة البيانات المستخدمة على نطاق واسع مثل ذاكرة التخزين المؤقت أو الأقفال أو الجلسة أو طابور المهام" -#: src/Module/Admin/Site.php:550 +#: src/Module/Admin/Site.php:543 msgid "Discover followers/followings from contacts" msgstr "اكتشف قائمة متابِعي/متابَعي متراسليك" -#: src/Module/Admin/Site.php:550 +#: src/Module/Admin/Site.php:543 msgid "" "If enabled, contacts are checked for their followers and following contacts." msgstr "اذا فُعل سيقوم هذا الخادم بتجميع قائمة متابِعي ومتابَعي متراسليك." -#: src/Module/Admin/Site.php:551 +#: src/Module/Admin/Site.php:544 msgid "None - deactivated" msgstr "لا شيء - معطل" -#: src/Module/Admin/Site.php:552 +#: src/Module/Admin/Site.php:545 msgid "" "Local contacts - contacts of our local contacts are discovered for their " "followers/followings." msgstr "المتراسلون المحليون - متراسلوا مستخدمي هذا الخادم." -#: src/Module/Admin/Site.php:553 +#: src/Module/Admin/Site.php:546 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:555 +#: src/Module/Admin/Site.php:548 msgid "Only update contacts/servers with local data" msgstr "" -#: src/Module/Admin/Site.php:555 +#: src/Module/Admin/Site.php:548 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:556 +#: src/Module/Admin/Site.php:549 msgid "Synchronize the contacts with the directory server" msgstr "زامن المتراسلين مع خادم الدليل" -#: src/Module/Admin/Site.php:556 +#: src/Module/Admin/Site.php:549 msgid "" "if enabled, the system will check periodically for new contacts on the " "defined directory server." msgstr "إذا فُعل سيقوم النظام بالتحقق دوريا للبحث عن متراسلين جدد على خادم الدليل المحدد." -#: src/Module/Admin/Site.php:558 +#: src/Module/Admin/Site.php:551 msgid "Discover contacts from other servers" msgstr "اكتشف متراسلين من خوادم أخرى" -#: src/Module/Admin/Site.php:558 +#: src/Module/Admin/Site.php:551 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:559 +#: src/Module/Admin/Site.php:552 msgid "Days between requery" msgstr "المهلة بالأيام بين الطلبات" -#: src/Module/Admin/Site.php:559 +#: src/Module/Admin/Site.php:552 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:560 +#: src/Module/Admin/Site.php:553 msgid "Search the local directory" msgstr "ابحث في الدليل المحلي" -#: src/Module/Admin/Site.php:560 +#: src/Module/Admin/Site.php:553 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:562 +#: src/Module/Admin/Site.php:555 msgid "Publish server information" msgstr "انشر معلومات الخادم" -#: src/Module/Admin/Site.php:562 +#: src/Module/Admin/Site.php:555 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 " @@ -5376,50 +5376,50 @@ msgid "" " href=\"http://the-federation.info/\">the-federation.info for details." msgstr "إذا فعل ستنشر البيانات العامة للخادم وبيانات استخدامه. تحتوي هذه البيانات على اسم وإصدار الخادم ، وعدد المستخدمين الذين لهم ملف شخصي علني، وعدد المنشورات وقائمة الموصّلات والموافيق النشطة. راجع federation.info للحصول على التفاصيل." -#: src/Module/Admin/Site.php:564 +#: src/Module/Admin/Site.php:557 msgid "Check upstream version" msgstr "تحقق من الاصدار المنبعي" -#: src/Module/Admin/Site.php:564 +#: src/Module/Admin/Site.php:557 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:565 +#: src/Module/Admin/Site.php:558 msgid "Suppress Tags" msgstr "اخف الوسوم" -#: src/Module/Admin/Site.php:565 +#: src/Module/Admin/Site.php:558 msgid "Suppress showing a list of hashtags at the end of the posting." msgstr "اخف قائمة الوسوم من أسفل المشاركة." -#: src/Module/Admin/Site.php:566 +#: src/Module/Admin/Site.php:559 msgid "Clean database" msgstr "امسح قاعدة البيانات" -#: src/Module/Admin/Site.php:566 +#: src/Module/Admin/Site.php:559 msgid "" "Remove old remote items, orphaned database records and old content from some" " other helper tables." msgstr "يزيل العناصر البعيدة القديمة والسجلات اليتيمة والمحتوى القديم من بعض الجداول المساعدة." -#: src/Module/Admin/Site.php:567 +#: src/Module/Admin/Site.php:560 msgid "Lifespan of remote items" msgstr "عمر العناصر البعيدة" -#: src/Module/Admin/Site.php:567 +#: src/Module/Admin/Site.php:560 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:568 +#: src/Module/Admin/Site.php:561 msgid "Lifespan of unclaimed items" msgstr "" -#: src/Module/Admin/Site.php:568 +#: src/Module/Admin/Site.php:561 msgid "" "When the database cleanup is enabled, this defines the days after which " "unclaimed remote items (mostly content from the relay) will be deleted. " @@ -5427,185 +5427,184 @@ msgid "" "items if set to 0." msgstr "" -#: src/Module/Admin/Site.php:569 +#: src/Module/Admin/Site.php:562 msgid "Lifespan of raw conversation data" msgstr "" -#: src/Module/Admin/Site.php:569 +#: src/Module/Admin/Site.php:562 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." +"The conversation data is used for ActivityPub, 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:570 +#: src/Module/Admin/Site.php:563 msgid "Maximum numbers of comments per post" msgstr "حد عدد التعليقات لكل مشاركة" -#: src/Module/Admin/Site.php:570 +#: src/Module/Admin/Site.php:563 msgid "How much comments should be shown for each post? Default value is 100." msgstr "عدد التعليقات التي تعرض لكل مشاركة؟ القيمة الافتراضية هي 100." -#: src/Module/Admin/Site.php:571 +#: src/Module/Admin/Site.php:564 msgid "Maximum numbers of comments per post on the display page" msgstr "الحد الأقصى لعدد التعليقات لكل محادثة في صفحة العرض (/display)" -#: src/Module/Admin/Site.php:571 +#: src/Module/Admin/Site.php:564 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:572 +#: src/Module/Admin/Site.php:565 msgid "Items per page" msgstr "" -#: src/Module/Admin/Site.php:572 +#: src/Module/Admin/Site.php:565 msgid "" "Number of items per page in stream pages (network, community, " "profile/contact statuses, search)." msgstr "" -#: src/Module/Admin/Site.php:573 +#: src/Module/Admin/Site.php:566 msgid "Items per page for mobile devices" msgstr "" -#: src/Module/Admin/Site.php:573 +#: src/Module/Admin/Site.php:566 msgid "" "Number of items per page in stream pages (network, community, " "profile/contact statuses, search) for mobile devices." msgstr "" -#: src/Module/Admin/Site.php:574 +#: src/Module/Admin/Site.php:567 msgid "Temp path" msgstr "مسار التخزين المؤقت" -#: src/Module/Admin/Site.php:574 +#: src/Module/Admin/Site.php:567 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:575 +#: src/Module/Admin/Site.php:568 msgid "Only search in tags" msgstr "ابحث في الوسوم فقط" -#: src/Module/Admin/Site.php:575 +#: src/Module/Admin/Site.php:568 msgid "On large systems the text search can slow down the system extremely." msgstr "في النّظم الكبيرة، يمكن أن يؤدي البحث عن النصوص إلى إبطاء النظام." -#: src/Module/Admin/Site.php:576 +#: src/Module/Admin/Site.php:569 msgid "Limited search scope" msgstr "" -#: src/Module/Admin/Site.php:576 +#: src/Module/Admin/Site.php:569 msgid "" "If enabled, searches will only be performed in the data used for the " "channels and not in all posts." msgstr "" -#: src/Module/Admin/Site.php:577 +#: src/Module/Admin/Site.php:570 msgid "Maximum age of items in the search table" msgstr "" -#: src/Module/Admin/Site.php:577 +#: src/Module/Admin/Site.php:570 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:578 +#: src/Module/Admin/Site.php:571 msgid "Generate counts per contact circle when calculating network count" msgstr "" -#: src/Module/Admin/Site.php:578 +#: src/Module/Admin/Site.php:571 msgid "" "On systems with users that heavily use contact circles the query can be very" " expensive." msgstr "" -#: src/Module/Admin/Site.php:579 +#: src/Module/Admin/Site.php:572 msgid "Process \"view\" activities" msgstr "" -#: src/Module/Admin/Site.php:579 +#: src/Module/Admin/Site.php:572 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:580 +#: src/Module/Admin/Site.php:573 msgid "Days, after which a contact is archived" msgstr "" -#: src/Module/Admin/Site.php:580 +#: src/Module/Admin/Site.php:573 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:582 +#: src/Module/Admin/Site.php:575 msgid "Maximum number of parallel workers" msgstr "الحد الأقصى لعدد المهام" -#: src/Module/Admin/Site.php:582 +#: src/Module/Admin/Site.php:575 #, 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:583 +#: src/Module/Admin/Site.php:576 msgid "Maximum load for workers" msgstr "" -#: src/Module/Admin/Site.php:583 +#: src/Module/Admin/Site.php:576 msgid "Maximum load that causes a cooldown before each worker function call." msgstr "" -#: src/Module/Admin/Site.php:584 +#: src/Module/Admin/Site.php:577 msgid "Enable fastlane" msgstr "" -#: src/Module/Admin/Site.php:584 +#: src/Module/Admin/Site.php:577 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:585 +#: src/Module/Admin/Site.php:578 msgid "Decoupled receiver" msgstr "" -#: src/Module/Admin/Site.php:585 +#: src/Module/Admin/Site.php:578 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:586 +#: src/Module/Admin/Site.php:579 msgid "Cron interval" msgstr "" -#: src/Module/Admin/Site.php:586 +#: src/Module/Admin/Site.php:579 msgid "Minimal period in minutes between two calls of the \"Cron\" worker job." msgstr "" -#: src/Module/Admin/Site.php:587 +#: src/Module/Admin/Site.php:580 msgid "Worker defer limit" msgstr "" -#: src/Module/Admin/Site.php:587 +#: src/Module/Admin/Site.php:580 msgid "" "Per default the systems tries delivering for 15 times before dropping it." msgstr "" -#: src/Module/Admin/Site.php:588 +#: src/Module/Admin/Site.php:581 msgid "Worker fetch limit" msgstr "" -#: src/Module/Admin/Site.php:588 +#: src/Module/Admin/Site.php:581 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" @@ -5613,214 +5612,214 @@ msgid "" "system." msgstr "" -#: src/Module/Admin/Site.php:590 +#: src/Module/Admin/Site.php:583 msgid "Direct relay transfer" msgstr "" -#: src/Module/Admin/Site.php:590 +#: src/Module/Admin/Site.php:583 msgid "" "Enables the direct transfer to other servers without using the relay servers" msgstr "" -#: src/Module/Admin/Site.php:591 +#: src/Module/Admin/Site.php:584 msgid "Relay scope" msgstr "" -#: src/Module/Admin/Site.php:591 +#: src/Module/Admin/Site.php:584 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:591 src/Module/Contact/Profile.php:328 -#: src/Module/Settings/TwoFactor/Index.php:146 +#: src/Module/Admin/Site.php:584 src/Module/Contact/Profile.php:314 +#: src/Module/Settings/TwoFactor/Index.php:132 msgid "Disabled" msgstr "معطّل" -#: src/Module/Admin/Site.php:591 +#: src/Module/Admin/Site.php:584 msgid "all" msgstr "الكل" -#: src/Module/Admin/Site.php:591 +#: src/Module/Admin/Site.php:584 msgid "tags" msgstr "الوسوم" -#: src/Module/Admin/Site.php:592 +#: src/Module/Admin/Site.php:585 msgid "Server tags" msgstr "وسوم الخادم" -#: src/Module/Admin/Site.php:592 +#: src/Module/Admin/Site.php:585 msgid "Comma separated list of tags for the \"tags\" subscription." msgstr "" -#: src/Module/Admin/Site.php:593 +#: src/Module/Admin/Site.php:586 msgid "Deny Server tags" msgstr "الوسوم المرفوضة" -#: src/Module/Admin/Site.php:593 +#: src/Module/Admin/Site.php:586 msgid "Comma separated list of tags that are rejected." msgstr "قائمة بالوسوم المرفوضة مفصول بفاصلة." -#: src/Module/Admin/Site.php:594 +#: src/Module/Admin/Site.php:587 msgid "Maximum amount of tags" msgstr "" -#: src/Module/Admin/Site.php:594 +#: src/Module/Admin/Site.php:587 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:595 +#: src/Module/Admin/Site.php:588 msgid "Allow user tags" msgstr "اسمح بوسوم المستخدمين" -#: src/Module/Admin/Site.php:595 +#: src/Module/Admin/Site.php:588 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:596 +#: src/Module/Admin/Site.php:589 msgid "Deny undetected languages" msgstr "" -#: src/Module/Admin/Site.php:596 +#: src/Module/Admin/Site.php:589 msgid "If enabled, posts with undetected languages will be rejected." msgstr "" -#: src/Module/Admin/Site.php:597 +#: src/Module/Admin/Site.php:590 msgid "Language Quality" msgstr "" -#: src/Module/Admin/Site.php:597 +#: src/Module/Admin/Site.php:590 msgid "The minimum language quality that is required to accept the post." msgstr "" -#: src/Module/Admin/Site.php:598 +#: src/Module/Admin/Site.php:591 msgid "Number of languages for the language detection" msgstr "" -#: src/Module/Admin/Site.php:598 +#: src/Module/Admin/Site.php:591 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:600 +#: src/Module/Admin/Site.php:593 msgid "Maximum age of channel" msgstr "" -#: src/Module/Admin/Site.php:600 +#: src/Module/Admin/Site.php:593 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:601 +#: src/Module/Admin/Site.php:594 msgid "Maximum number of channel posts" msgstr "" -#: src/Module/Admin/Site.php:601 +#: src/Module/Admin/Site.php:594 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:602 +#: src/Module/Admin/Site.php:595 msgid "Interaction score days" msgstr "" -#: src/Module/Admin/Site.php:602 +#: src/Module/Admin/Site.php:595 msgid "Number of days that are used to calculate the interaction score." msgstr "" -#: src/Module/Admin/Site.php:603 +#: src/Module/Admin/Site.php:596 msgid "Maximum number of posts per author" msgstr "" -#: src/Module/Admin/Site.php:603 +#: src/Module/Admin/Site.php:596 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:604 +#: src/Module/Admin/Site.php:597 msgid "Sharer interaction days" msgstr "" -#: src/Module/Admin/Site.php:604 +#: src/Module/Admin/Site.php:597 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:607 +#: src/Module/Admin/Site.php:600 msgid "Start Relocation" msgstr "ابدأ النقل" -#: src/Module/Admin/Storage.php:46 +#: src/Module/Admin/Storage.php:32 #, php-format msgid "Storage backend, %s is invalid." msgstr "قرص التخزين %s غير صالح." -#: src/Module/Admin/Storage.php:73 +#: src/Module/Admin/Storage.php:59 #, php-format msgid "Storage backend %s error: %s" msgstr "قرص التخزين %s خطأ: %s" -#: src/Module/Admin/Storage.php:84 src/Module/Admin/Storage.php:87 +#: src/Module/Admin/Storage.php:70 src/Module/Admin/Storage.php:73 msgid "Invalid storage backend setting value." msgstr "قيمة الإعداد غير صالحة." -#: src/Module/Admin/Storage.php:139 +#: src/Module/Admin/Storage.php:125 msgid "Current Storage Backend" msgstr "قرص التخزين الحالي" -#: src/Module/Admin/Storage.php:140 +#: src/Module/Admin/Storage.php:126 msgid "Storage Configuration" msgstr "إعدادات التخزين" -#: src/Module/Admin/Storage.php:141 src/Module/BaseAdmin.php:91 +#: src/Module/Admin/Storage.php:127 src/Module/BaseAdmin.php:77 msgid "Storage" msgstr "مساحة التخزين" -#: src/Module/Admin/Storage.php:143 +#: src/Module/Admin/Storage.php:129 msgid "Save & Use storage backend" msgstr "" -#: src/Module/Admin/Storage.php:144 +#: src/Module/Admin/Storage.php:130 msgid "Use storage backend" msgstr "" -#: src/Module/Admin/Storage.php:145 +#: src/Module/Admin/Storage.php:131 msgid "Save & Reload" msgstr "احفظ وأعد التحميل" -#: src/Module/Admin/Storage.php:146 +#: src/Module/Admin/Storage.php:132 msgid "This backend doesn't have custom settings" msgstr "" -#: src/Module/Admin/Storage.php:148 +#: src/Module/Admin/Storage.php:134 msgid "" "Changing the current backend is prohibited because it is set by an " "environment variable" msgstr "" -#: src/Module/Admin/Storage.php:150 +#: src/Module/Admin/Storage.php:136 msgid "Database (legacy)" msgstr "" -#: src/Module/Admin/Summary.php:55 +#: src/Module/Admin/Summary.php:41 #, php-format msgid "Template engine (%s) error: %s" msgstr "" -#: src/Module/Admin/Summary.php:59 +#: src/Module/Admin/Summary.php:45 #, php-format msgid "" "Your DB still runs with MyISAM tables. You should change the engine type to " @@ -5831,7 +5830,7 @@ msgid "" " an automatic conversion.
" msgstr "تستخدم قاعدة البيانات جداول MYISAM. يجب عليك تغيير المحرك إلى InnoDB حيث أنه من المخطط أن يستخدم فرنديكا ميزات منوطة بـ InnoDB في المستقبل.راجع هذا الدليل لتحديث قاعدة البيانات الخاصة بك. يمكنك أيضًا تشغيل الأمر php bin/console.php dbstructure toinnodb في دليل الجذر لفرنديكا للتحويل التلقائي.
" -#: src/Module/Admin/Summary.php:64 +#: src/Module/Admin/Summary.php:50 #, php-format msgid "" "Your DB still runs with InnoDB tables in the Antelope file format. You " @@ -5842,7 +5841,7 @@ msgid "" " installation for an automatic conversion.
" msgstr "تستخدم قاعدة البيانات جداول InnoDB بتنسيق Antelope. يجب عليك تغيير التنسيق إلى Barracuda حيث أن فرنديكا يستخدم ميزات منوطة بتنسيق Barracuda راجع هذا الدليل لتحديث قاعدة البيانات. يمكنك أيضًا تشغيل الأمر php bin/console.php dbstructure toinnodb في دليل الجذر لفرنديكا للتحويل التلقائي.
" -#: src/Module/Admin/Summary.php:74 +#: src/Module/Admin/Summary.php:60 #, php-format msgid "" "Your table_definition_cache is too low (%d). This can lead to the database " @@ -5850,46 +5849,46 @@ msgid "" " to %d. See here for more information.
" msgstr "" -#: src/Module/Admin/Summary.php:85 +#: src/Module/Admin/Summary.php:71 #, php-format msgid "" "There is a new version of Friendica available for download. Your current " "version is %1$s, upstream version is %2$s" msgstr "يتوفر إصدار جديد لفرنديكا. الإصدار الحالي هو %1$s والإصدار الجديد هو %2$s" -#: src/Module/Admin/Summary.php:94 +#: src/Module/Admin/Summary.php:80 msgid "" "The database update failed. Please run \"php bin/console.php dbstructure " "update\" from the command line and have a look at the errors that might " "appear." msgstr "فشل تحديث قاعدة البيانات. رجاءً شغّل أمر \"php bin/console.php dbstructure update\" من سطر الأوامر وألق نظرة على الأخطاء التي قد تظهر." -#: src/Module/Admin/Summary.php:98 +#: src/Module/Admin/Summary.php:84 msgid "" "The last update failed. Please run \"php bin/console.php dbstructure " "update\" from the command line and have a look at the errors that might " "appear. (Some of the errors are possibly inside the logfile.)" msgstr "فشل آخر تحديث لقاعدة البيانات. رجاءً شغّل أمر \"php bin/console.php dbstructure update\" من سطر الأوامر وألق نظرة على الأخطاء التي قد تظهر. (قد تجد بعض الأخطاء في ملف السجل)" -#: src/Module/Admin/Summary.php:102 +#: src/Module/Admin/Summary.php:88 msgid "" "The system.url entry is missing. This is a low level setting and can lead to" " unexpected behavior. Please add a valid entry as soon as possible in the " "config file or per console command!" msgstr "" -#: src/Module/Admin/Summary.php:107 +#: src/Module/Admin/Summary.php:93 msgid "The worker was never executed. Please check your database structure!" msgstr "لم يتم تنفيذ المهمة أبداً. يرجى التحقق من بنية قاعدة البيانات!" -#: src/Module/Admin/Summary.php:109 +#: src/Module/Admin/Summary.php:95 #, php-format msgid "" "The last worker execution was on %s UTC. This is older than one hour. Please" " check your crontab settings." msgstr "تنفيذ آخر مهمة كان على %s UTC. هذا أقدم من ساعة. يرجى التحقق من إعدادات crontab." -#: src/Module/Admin/Summary.php:114 +#: src/Module/Admin/Summary.php:100 #, php-format msgid "" "Friendica's configuration now is stored in config/local.config.php, please " @@ -5898,7 +5897,7 @@ msgid "" "help with the transition." msgstr "" -#: src/Module/Admin/Summary.php:118 +#: src/Module/Admin/Summary.php:104 #, php-format msgid "" "Friendica's configuration now is stored in config/local.config.php, please " @@ -5907,7 +5906,7 @@ msgid "" "page for help with the transition." msgstr "" -#: src/Module/Admin/Summary.php:124 +#: src/Module/Admin/Summary.php:110 #, php-format msgid "" "%s is not reachable on your system. This is a severe " @@ -5915,107 +5914,107 @@ msgid "" "href=\"%s\">the installation page for help." msgstr "" -#: src/Module/Admin/Summary.php:148 +#: src/Module/Admin/Summary.php:134 #, php-format msgid "" "Friendica's system.basepath was updated from '%s' to '%s'. Please remove the" " system.basepath from your db to avoid differences." msgstr "" -#: src/Module/Admin/Summary.php:156 +#: src/Module/Admin/Summary.php:142 #, php-format msgid "" "Friendica's current system.basepath '%s' is wrong and the config file '%s' " "isn't used." msgstr "" -#: src/Module/Admin/Summary.php:164 +#: src/Module/Admin/Summary.php:150 #, php-format msgid "" "Friendica's current system.basepath '%s' is not equal to the config file " "'%s'. Please fix your configuration." msgstr "" -#: src/Module/Admin/Summary.php:175 +#: src/Module/Admin/Summary.php:161 msgid "Message queues" msgstr "طوابير الرسائل" -#: src/Module/Admin/Summary.php:181 +#: src/Module/Admin/Summary.php:167 msgid "Server Settings" msgstr "إعدادات الخادم" -#: src/Module/Admin/Summary.php:199 +#: src/Module/Admin/Summary.php:185 msgid "Version" msgstr "الإصدار" -#: src/Module/Admin/Summary.php:203 +#: src/Module/Admin/Summary.php:189 msgid "Active addons" msgstr "الإضافات النشطة" -#: src/Module/Admin/Themes/Details.php:63 src/Module/Admin/Themes/Index.php:71 +#: src/Module/Admin/Themes/Details.php:49 src/Module/Admin/Themes/Index.php:57 #, php-format msgid "Theme %s disabled." msgstr "سمة %s معطلة." -#: src/Module/Admin/Themes/Details.php:65 src/Module/Admin/Themes/Index.php:73 +#: src/Module/Admin/Themes/Details.php:51 src/Module/Admin/Themes/Index.php:59 #, php-format msgid "Theme %s successfully enabled." msgstr "فُعّلت سمة %s بنجاح." -#: src/Module/Admin/Themes/Details.php:67 src/Module/Admin/Themes/Index.php:75 +#: src/Module/Admin/Themes/Details.php:53 src/Module/Admin/Themes/Index.php:61 #, php-format msgid "Theme %s failed to install." msgstr "فشل تثبيت سمة %s." -#: src/Module/Admin/Themes/Details.php:89 +#: src/Module/Admin/Themes/Details.php:75 msgid "Screenshot" msgstr "لقطة شاشة" -#: src/Module/Admin/Themes/Details.php:97 -#: src/Module/Admin/Themes/Index.php:118 src/Module/BaseAdmin.php:93 +#: src/Module/Admin/Themes/Details.php:83 +#: src/Module/Admin/Themes/Index.php:104 src/Module/BaseAdmin.php:79 msgid "Themes" msgstr "السمات" -#: src/Module/Admin/Themes/Embed.php:80 +#: src/Module/Admin/Themes/Embed.php:66 msgid "Unknown theme." msgstr "سمة مجهولة." -#: src/Module/Admin/Themes/Index.php:57 +#: src/Module/Admin/Themes/Index.php:43 msgid "Themes reloaded" msgstr "أُعيد تحميل السمة" -#: src/Module/Admin/Themes/Index.php:120 +#: src/Module/Admin/Themes/Index.php:106 msgid "Reload active themes" msgstr "أعد تحميل السمة النشطة" -#: src/Module/Admin/Themes/Index.php:124 +#: src/Module/Admin/Themes/Index.php:110 #, php-format msgid "No themes found on the system. They should be placed in %1$s" msgstr "لم يُعثر على أي سمات في النظام. يجب أن توضع في %1$s" -#: src/Module/Admin/Themes/Index.php:125 +#: src/Module/Admin/Themes/Index.php:111 msgid "[Experimental]" msgstr "[تجريبي]" -#: src/Module/Admin/Themes/Index.php:126 +#: src/Module/Admin/Themes/Index.php:112 msgid "[Unsupported]" msgstr "[غير مدعوم]" -#: src/Module/Admin/Tos.php:79 +#: src/Module/Admin/Tos.php:65 msgid "Display Terms of Service" msgstr "أظهر شروط الخدمة" -#: src/Module/Admin/Tos.php:79 +#: src/Module/Admin/Tos.php:65 msgid "" "Enable the Terms of Service page. If this is enabled a link to the terms " "will be added to the registration form and the general information page." msgstr "فعّل صفحة شروط الخدمة. إذا فُعّل هذا الرابط، سيضاف رابط صفحة شروط الخدمة إلى صفحة التسجيل وصفحة المعلومات العامة." -#: src/Module/Admin/Tos.php:80 +#: src/Module/Admin/Tos.php:66 msgid "Display Privacy Statement" msgstr "اعرض بيان الخصوصية" -#: src/Module/Admin/Tos.php:80 +#: src/Module/Admin/Tos.php:66 #, php-format msgid "" "Show some informations regarding the needed information to operate the node " @@ -6023,160 +6022,160 @@ msgid "" "noreferrer\">EU-GDPR." msgstr "" -#: src/Module/Admin/Tos.php:81 +#: src/Module/Admin/Tos.php:67 msgid "Privacy Statement Preview" msgstr "اعرض بيان الخصوصية" -#: src/Module/Admin/Tos.php:83 +#: src/Module/Admin/Tos.php:69 msgid "The Terms of Service" msgstr "شروط الخدمة" -#: src/Module/Admin/Tos.php:83 +#: src/Module/Admin/Tos.php:69 msgid "" "Enter the Terms of Service for your node here. You can use BBCode. Headers " "of sections should be [h2] and below." msgstr "أدخل شروط الخدمة لعقدتك هنا. يمكنك استخدام BBCode. يجب أن تكون عناوين الأقسام [h2] أو أدناه." -#: src/Module/Admin/Tos.php:84 +#: src/Module/Admin/Tos.php:70 msgid "The rules" msgstr "" -#: src/Module/Admin/Tos.php:84 +#: src/Module/Admin/Tos.php:70 msgid "Enter your system rules here. Each line represents one rule." msgstr "" -#: src/Module/Api/ApiResponse.php:293 +#: src/Module/Api/ApiResponse.php:279 #, php-format msgid "API endpoint %s %s is not implemented but might be in the future." msgstr "" -#: src/Module/Api/Mastodon/Apps.php:73 +#: src/Module/Api/Mastodon/Apps.php:59 msgid "Missing parameters" msgstr "معطيات مفقودة" -#: src/Module/Api/Mastodon/Statuses/Bookmark.php:50 +#: src/Module/Api/Mastodon/Statuses/Bookmark.php:36 msgid "Only starting posts can be bookmarked" msgstr "" -#: src/Module/Api/Mastodon/Statuses/Mute.php:51 +#: src/Module/Api/Mastodon/Statuses/Mute.php:37 msgid "Only starting posts can be muted" msgstr "" -#: src/Module/Api/Mastodon/Statuses/Reblog.php:58 +#: src/Module/Api/Mastodon/Statuses/Reblog.php:44 #, php-format msgid "Posts from %s can't be shared" msgstr "لا تمكن مشاركة مشاركات %s" -#: src/Module/Api/Mastodon/Statuses/Unbookmark.php:51 +#: src/Module/Api/Mastodon/Statuses/Unbookmark.php:37 msgid "Only starting posts can be unbookmarked" msgstr "" -#: src/Module/Api/Mastodon/Statuses/Unmute.php:51 +#: src/Module/Api/Mastodon/Statuses/Unmute.php:37 msgid "Only starting posts can be unmuted" msgstr "" -#: src/Module/Api/Mastodon/Statuses/Unreblog.php:64 +#: src/Module/Api/Mastodon/Statuses/Unreblog.php:50 #, php-format msgid "Posts from %s can't be unshared" msgstr "لا يمكن إلغاء مشاركة مشاركات %s" -#: src/Module/Api/Twitter/ContactEndpoint.php:66 +#: src/Module/Api/Twitter/ContactEndpoint.php:52 msgid "Contact not found" msgstr "لم يُعثر على المتراسل" -#: src/Module/Apps.php:62 +#: src/Module/Apps.php:48 msgid "No installed applications." msgstr "تطبيقات غير مثبتة." -#: src/Module/Apps.php:67 +#: src/Module/Apps.php:53 msgid "Applications" msgstr "التطبيقات" -#: src/Module/Attach.php:49 src/Module/Attach.php:61 +#: src/Module/Attach.php:35 src/Module/Attach.php:47 msgid "Item was not found." msgstr "لم يُعثر على العنصر." -#: src/Module/BaseAdmin.php:54 src/Module/BaseAdmin.php:58 -#: src/Module/BaseModeration.php:77 src/Module/BaseModeration.php:81 +#: src/Module/BaseAdmin.php:40 src/Module/BaseAdmin.php:44 +#: src/Module/BaseModeration.php:63 src/Module/BaseModeration.php:67 msgid "Please login to continue." msgstr "يرجى الولوج للمتابعة." -#: src/Module/BaseAdmin.php:63 +#: src/Module/BaseAdmin.php:49 msgid "You don't have access to administration pages." msgstr "ليس لديك حق النفاذ لصفحات الإدارة." -#: src/Module/BaseAdmin.php:67 +#: src/Module/BaseAdmin.php:53 msgid "" "Submanaged account can't access the administration pages. Please log back in" " as the main account." msgstr "" -#: src/Module/BaseAdmin.php:86 src/Module/BaseModeration.php:109 +#: src/Module/BaseAdmin.php:72 src/Module/BaseModeration.php:95 msgid "Overview" msgstr "نظرة عامّة" -#: src/Module/BaseAdmin.php:89 src/Module/BaseModeration.php:112 +#: src/Module/BaseAdmin.php:75 src/Module/BaseModeration.php:98 msgid "Configuration" msgstr "الضبط" -#: src/Module/BaseAdmin.php:94 src/Module/BaseSettings.php:110 +#: src/Module/BaseAdmin.php:80 src/Module/BaseSettings.php:96 msgid "Additional features" msgstr "ميزات إضافية" -#: src/Module/BaseAdmin.php:97 +#: src/Module/BaseAdmin.php:83 msgid "Database" msgstr "قاعدة بيانات" -#: src/Module/BaseAdmin.php:98 +#: src/Module/BaseAdmin.php:84 msgid "DB updates" msgstr "تحديثات قاعدة البيانات" -#: src/Module/BaseAdmin.php:99 +#: src/Module/BaseAdmin.php:85 msgid "Inspect Deferred Workers" msgstr "فحص المهام المؤجلة" -#: src/Module/BaseAdmin.php:100 +#: src/Module/BaseAdmin.php:86 msgid "Inspect worker Queue" msgstr "فحص طابور المهام" -#: src/Module/BaseAdmin.php:106 src/Module/BaseModeration.php:120 +#: src/Module/BaseAdmin.php:92 src/Module/BaseModeration.php:106 msgid "Diagnostics" msgstr "التشخيصات" -#: src/Module/BaseAdmin.php:107 +#: src/Module/BaseAdmin.php:93 msgid "PHP Info" msgstr "معلومات الـPHP" -#: src/Module/BaseAdmin.php:108 +#: src/Module/BaseAdmin.php:94 msgid "probe address" msgstr "" -#: src/Module/BaseAdmin.php:109 +#: src/Module/BaseAdmin.php:95 msgid "check webfinger" msgstr "تحقق من بصمة الويب" -#: src/Module/BaseAdmin.php:110 +#: src/Module/BaseAdmin.php:96 msgid "Babel" msgstr "" -#: src/Module/BaseAdmin.php:111 src/Module/Debug/ActivityPubConversion.php:143 +#: src/Module/BaseAdmin.php:97 src/Module/Debug/ActivityPubConversion.php:129 msgid "ActivityPub Conversion" msgstr "محادثة عبر ActivityPub" -#: src/Module/BaseAdmin.php:120 +#: src/Module/BaseAdmin.php:106 msgid "Addon Features" msgstr "ميزات الإضافة" -#: src/Module/BaseAdmin.php:121 src/Module/BaseModeration.php:129 +#: src/Module/BaseAdmin.php:107 src/Module/BaseModeration.php:115 msgid "User registrations waiting for confirmation" msgstr "مستخدم ينتظر الموافقة على طلب تسجيله" -#: src/Module/BaseApi.php:455 src/Module/BaseApi.php:471 -#: src/Module/BaseApi.php:487 +#: src/Module/BaseApi.php:441 src/Module/BaseApi.php:457 +#: src/Module/BaseApi.php:473 msgid "Too Many Requests" msgstr "طلبات كثيرة" -#: src/Module/BaseApi.php:456 +#: src/Module/BaseApi.php:442 #, php-format msgid "Daily posting limit of %d post reached. The post was rejected." msgid_plural "Daily posting limit of %d posts reached. The post was rejected." @@ -6187,7 +6186,7 @@ msgstr[3] "رُفضت المشاركة. تجاوزت الحد اليومي وه msgstr[4] "رُفضت المشاركة. تجاوزت الحد اليومي وهو %d مشاركة." msgstr[5] "رُفضت المشاركة. تجاوزت الحد اليومي وهو %d مشاركة." -#: src/Module/BaseApi.php:472 +#: src/Module/BaseApi.php:458 #, php-format msgid "Weekly posting limit of %d post reached. The post was rejected." msgid_plural "" @@ -6199,7 +6198,7 @@ msgstr[3] "رُفضت المشاركة. تجاوزت الحد الأسبوعي msgstr[4] "رُفضت المشاركة. تجاوزت الحد الأسبوعي وهو %d مشاركة." msgstr[5] "رُفضت المشاركة. تجاوزت الحد الأسبوعي وهو %d مشاركة." -#: src/Module/BaseApi.php:488 +#: src/Module/BaseApi.php:474 #, php-format msgid "Monthly posting limit of %d post reached. The post was rejected." msgid_plural "" @@ -6211,84 +6210,84 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#: src/Module/BaseModeration.php:86 +#: src/Module/BaseModeration.php:72 msgid "You don't have access to moderation pages." msgstr "" -#: src/Module/BaseModeration.php:90 +#: src/Module/BaseModeration.php:76 msgid "" "Submanaged account can't access the moderation pages. Please log back in as " "the main account." msgstr "" -#: src/Module/BaseModeration.php:110 src/Module/Moderation/Reports.php:115 +#: src/Module/BaseModeration.php:96 src/Module/Moderation/Reports.php:101 msgid "Reports" msgstr "" -#: src/Module/BaseModeration.php:113 src/Module/Moderation/Users/Index.php:148 -#: src/Module/Moderation/Users/Index.php:158 +#: src/Module/BaseModeration.php:99 src/Module/Moderation/Users/Index.php:134 +#: src/Module/Moderation/Users/Index.php:144 msgid "Users" msgstr "المستخدمون" -#: src/Module/BaseModeration.php:115 +#: src/Module/BaseModeration.php:101 msgid "Tools" msgstr "أدوات" -#: src/Module/BaseModeration.php:116 +#: src/Module/BaseModeration.php:102 msgid "Contact Blocklist" msgstr "قائمة المتراسلين المحظورين" -#: src/Module/BaseModeration.php:117 +#: src/Module/BaseModeration.php:103 msgid "Server Blocklist" msgstr "قائمة الخوادم المحظورة" -#: src/Module/BaseModeration.php:118 src/Module/Moderation/Item/Delete.php:62 +#: src/Module/BaseModeration.php:104 src/Module/Moderation/Item/Delete.php:48 msgid "Delete Item" msgstr "احذف عنصر" -#: src/Module/BaseModeration.php:121 src/Module/Moderation/Item/Source.php:82 +#: src/Module/BaseModeration.php:107 src/Module/Moderation/Item/Source.php:68 msgid "Item Source" msgstr "مصدر العنصر" -#: src/Module/BaseProfile.php:52 src/Module/Contact.php:513 +#: src/Module/BaseProfile.php:38 src/Module/Contact.php:488 msgid "Profile Details" msgstr "تفاصيل الملف الشخصي" -#: src/Module/BaseProfile.php:60 +#: src/Module/BaseProfile.php:46 msgid "Conversations started" msgstr "" -#: src/Module/BaseProfile.php:111 +#: src/Module/BaseProfile.php:97 msgid "Only You Can See This" msgstr "فقط أنت من يمكنه رؤية هذا" -#: src/Module/BaseProfile.php:116 src/Module/Profile/Schedule.php:81 +#: src/Module/BaseProfile.php:102 src/Module/Profile/Schedule.php:67 msgid "Scheduled Posts" msgstr "المشاركات المبرمجة" -#: src/Module/BaseProfile.php:119 +#: src/Module/BaseProfile.php:105 msgid "Posts that are scheduled for publishing" msgstr "المشاركات المقرر نشرها" -#: src/Module/BaseProfile.php:138 src/Module/BaseProfile.php:141 +#: src/Module/BaseProfile.php:124 src/Module/BaseProfile.php:127 msgid "Tips for New Members" msgstr "تلميحات للأعضاء الجدد" -#: src/Module/BaseSearch.php:71 +#: src/Module/BaseSearch.php:57 #, php-format msgid "People Search - %s" msgstr "البحث عن أشخاص - %s" -#: src/Module/BaseSearch.php:75 +#: src/Module/BaseSearch.php:61 #, php-format msgid "Group Search - %s" msgstr "" -#: src/Module/BaseSearch.php:121 src/Module/Contact/MatchInterests.php:140 +#: src/Module/BaseSearch.php:107 src/Module/Contact/MatchInterests.php:136 msgid "No matches" msgstr "لا تطابق" -#: src/Module/BaseSearch.php:147 +#: src/Module/BaseSearch.php:133 #, php-format msgid "" "%d result was filtered out because your node blocks the domain it is " @@ -6305,267 +6304,267 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#: src/Module/BaseSettings.php:78 +#: src/Module/BaseSettings.php:64 msgid "Account" msgstr "الحساب" -#: src/Module/BaseSettings.php:85 src/Module/Security/TwoFactor/Verify.php:96 -#: src/Module/Settings/TwoFactor/Index.php:138 +#: src/Module/BaseSettings.php:71 src/Module/Security/TwoFactor/Verify.php:82 +#: src/Module/Settings/TwoFactor/Index.php:124 msgid "Two-factor authentication" msgstr "الاستيثاق بعاملَيْن" -#: src/Module/BaseSettings.php:118 +#: src/Module/BaseSettings.php:104 msgid "Display" msgstr "العرض" -#: src/Module/BaseSettings.php:132 src/Module/Settings/Connectors.php:213 +#: src/Module/BaseSettings.php:118 src/Module/Settings/Connectors.php:195 msgid "Social Networks" msgstr "الشبكات الاجتماعية" -#: src/Module/BaseSettings.php:146 src/Module/Settings/Delegation.php:194 +#: src/Module/BaseSettings.php:132 src/Module/Settings/Delegation.php:180 msgid "Manage Accounts" msgstr "إدارة الحسابات" -#: src/Module/BaseSettings.php:153 +#: src/Module/BaseSettings.php:139 msgid "Connected apps" msgstr "التطبيقات المتصلة" -#: src/Module/BaseSettings.php:160 +#: src/Module/BaseSettings.php:146 msgid "Remote servers" msgstr "" -#: src/Module/BaseSettings.php:167 src/Module/Settings/UserExport.php:98 +#: src/Module/BaseSettings.php:153 src/Module/Settings/UserExport.php:84 msgid "Export personal data" msgstr "تصدير البيانات الشخصية" -#: src/Module/BaseSettings.php:174 +#: src/Module/BaseSettings.php:160 msgid "Remove account" msgstr "أزل الحساب" -#: src/Module/Bookmarklet.php:54 +#: src/Module/Bookmarklet.php:40 msgid "This page is missing a url parameter." msgstr "هذه الصفحة تفتقد معطى للرابط." -#: src/Module/Bookmarklet.php:66 +#: src/Module/Bookmarklet.php:52 msgid "The post was created" msgstr "أُنشأت المشاركة" -#: src/Module/Calendar/Event/API.php:100 src/Module/Calendar/Event/API.php:135 -#: src/Module/Calendar/Event/Form.php:80 +#: src/Module/Calendar/Event/API.php:86 src/Module/Calendar/Event/API.php:121 +#: src/Module/Calendar/Event/Form.php:66 msgid "Invalid Request" msgstr "" -#: src/Module/Calendar/Event/API.php:109 +#: src/Module/Calendar/Event/API.php:95 msgid "Event id is missing." msgstr "" -#: src/Module/Calendar/Event/API.php:131 +#: src/Module/Calendar/Event/API.php:117 msgid "Failed to remove event" msgstr "فشلت إزالة الحدث" -#: src/Module/Calendar/Event/API.php:187 src/Module/Calendar/Event/API.php:189 +#: src/Module/Calendar/Event/API.php:173 src/Module/Calendar/Event/API.php:175 msgid "Event can not end before it has started." msgstr "لا يمكن أن ينتهي الحدث قبل أن يبدأ." -#: src/Module/Calendar/Event/API.php:196 src/Module/Calendar/Event/API.php:198 +#: src/Module/Calendar/Event/API.php:182 src/Module/Calendar/Event/API.php:184 msgid "Event title and start time are required." msgstr "عنوان الحدث و وقت بدئه إلزاميان." -#: src/Module/Calendar/Event/Form.php:208 +#: src/Module/Calendar/Event/Form.php:194 msgid "Starting date and Title are required." msgstr "تاريخ البدء والعنوان إلزاميان." -#: src/Module/Calendar/Event/Form.php:209 -#: src/Module/Calendar/Event/Form.php:214 +#: src/Module/Calendar/Event/Form.php:195 +#: src/Module/Calendar/Event/Form.php:200 msgid "Event Starts:" msgstr "يبدأ الحدث في:" -#: src/Module/Calendar/Event/Form.php:209 -#: src/Module/Calendar/Event/Form.php:237 src/Module/Debug/Probe.php:59 -#: src/Module/Install.php:201 src/Module/Install.php:227 -#: src/Module/Install.php:232 src/Module/Install.php:246 -#: src/Module/Install.php:255 src/Module/Install.php:260 -#: src/Module/Install.php:266 src/Module/Install.php:271 -#: src/Module/Install.php:285 src/Module/Install.php:298 -#: src/Module/Install.php:325 -#: src/Module/Moderation/Blocklist/Server/Add.php:136 -#: src/Module/Moderation/Blocklist/Server/Add.php:138 -#: src/Module/Moderation/Blocklist/Server/Import.php:129 -#: src/Module/Moderation/Blocklist/Server/Index.php:86 -#: src/Module/Moderation/Blocklist/Server/Index.php:87 -#: src/Module/Moderation/Blocklist/Server/Index.php:115 -#: src/Module/Moderation/Blocklist/Server/Index.php:116 -#: src/Module/Moderation/Item/Delete.php:67 src/Module/Register.php:155 -#: src/Module/Security/TwoFactor/Verify.php:101 -#: src/Module/Settings/Channels.php:190 src/Module/Settings/Channels.php:211 -#: src/Module/Settings/TwoFactor/Index.php:161 -#: src/Module/Settings/TwoFactor/Verify.php:158 +#: src/Module/Calendar/Event/Form.php:195 +#: src/Module/Calendar/Event/Form.php:223 src/Module/Debug/Probe.php:45 +#: src/Module/Install.php:187 src/Module/Install.php:213 +#: src/Module/Install.php:218 src/Module/Install.php:232 +#: src/Module/Install.php:241 src/Module/Install.php:246 +#: src/Module/Install.php:252 src/Module/Install.php:257 +#: src/Module/Install.php:271 src/Module/Install.php:284 +#: src/Module/Install.php:311 +#: src/Module/Moderation/Blocklist/Server/Add.php:122 +#: src/Module/Moderation/Blocklist/Server/Add.php:124 +#: src/Module/Moderation/Blocklist/Server/Import.php:113 +#: src/Module/Moderation/Blocklist/Server/Index.php:72 +#: src/Module/Moderation/Blocklist/Server/Index.php:73 +#: src/Module/Moderation/Blocklist/Server/Index.php:101 +#: src/Module/Moderation/Blocklist/Server/Index.php:102 +#: src/Module/Moderation/Item/Delete.php:53 src/Module/Register.php:141 +#: src/Module/Security/TwoFactor/Verify.php:87 +#: src/Module/Settings/Channels.php:176 src/Module/Settings/Channels.php:197 +#: src/Module/Settings/TwoFactor/Index.php:147 +#: src/Module/Settings/TwoFactor/Verify.php:144 msgid "Required" msgstr "إلزامي" -#: src/Module/Calendar/Event/Form.php:223 -#: src/Module/Calendar/Event/Form.php:247 +#: src/Module/Calendar/Event/Form.php:209 +#: src/Module/Calendar/Event/Form.php:233 msgid "Finish date/time is not known or not relevant" msgstr "وقت\\تاريخ الانتهاء مجهول أو ليس له صلة" -#: src/Module/Calendar/Event/Form.php:225 -#: src/Module/Calendar/Event/Form.php:230 +#: src/Module/Calendar/Event/Form.php:211 +#: src/Module/Calendar/Event/Form.php:216 msgid "Event Finishes:" msgstr "ينتهي الحدث في:" -#: src/Module/Calendar/Event/Form.php:237 -#: src/Module/Calendar/Event/Form.php:243 +#: src/Module/Calendar/Event/Form.php:223 +#: src/Module/Calendar/Event/Form.php:229 msgid "Title (BBCode not allowed)" msgstr "" -#: src/Module/Calendar/Event/Form.php:239 +#: src/Module/Calendar/Event/Form.php:225 msgid "Description (BBCode allowed)" msgstr "" -#: src/Module/Calendar/Event/Form.php:241 +#: src/Module/Calendar/Event/Form.php:227 msgid "Location (BBCode not allowed)" msgstr "" -#: src/Module/Calendar/Event/Form.php:244 -#: src/Module/Calendar/Event/Form.php:245 +#: src/Module/Calendar/Event/Form.php:230 +#: src/Module/Calendar/Event/Form.php:231 msgid "Share this event" msgstr "شارك هذا الحدث" -#: src/Module/Calendar/Event/Form.php:251 src/Module/Profile/Profile.php:277 +#: src/Module/Calendar/Event/Form.php:237 src/Module/Profile/Profile.php:263 msgid "Basic" msgstr "أساسي" -#: src/Module/Calendar/Export.php:94 +#: src/Module/Calendar/Export.php:80 msgid "This calendar format is not supported" msgstr "تنسيق هذا التقويم غير مدعوم" -#: src/Module/Calendar/Export.php:96 +#: src/Module/Calendar/Export.php:82 msgid "No exportable data found" msgstr "لم يُعثر على بيانات قابلة للتصدير" -#: src/Module/Calendar/Export.php:113 +#: src/Module/Calendar/Export.php:99 msgid "calendar" msgstr "تقويم" -#: src/Module/Calendar/Show.php:124 +#: src/Module/Calendar/Show.php:110 msgid "Events" msgstr "الأحداث" -#: src/Module/Calendar/Show.php:125 +#: src/Module/Calendar/Show.php:111 msgid "View" msgstr "اعرض" -#: src/Module/Calendar/Show.php:126 +#: src/Module/Calendar/Show.php:112 msgid "Create New Event" msgstr "أنشئ حدثاً جديدًا" -#: src/Module/Calendar/Show.php:132 src/Module/Settings/Display.php:297 +#: src/Module/Calendar/Show.php:118 src/Module/Settings/Display.php:283 msgid "list" msgstr "قائمة" -#: src/Module/Circle.php:57 +#: src/Module/Circle.php:43 msgid "Could not create circle." msgstr "" -#: src/Module/Circle.php:68 src/Module/Circle.php:216 -#: src/Module/Circle.php:240 +#: src/Module/Circle.php:54 src/Module/Circle.php:202 +#: src/Module/Circle.php:226 msgid "Circle not found." msgstr "" -#: src/Module/Circle.php:74 +#: src/Module/Circle.php:60 msgid "Circle name was not changed." msgstr "" -#: src/Module/Circle.php:92 +#: src/Module/Circle.php:78 msgid "Unknown circle." msgstr "" -#: src/Module/Circle.php:98 src/Module/Circle.php:107 -#: src/Module/Contact/Advanced.php:70 src/Module/Contact/Advanced.php:109 -#: src/Module/Contact/Contacts.php:71 src/Module/Contact/Conversations.php:86 -#: src/Module/Contact/Conversations.php:91 -#: src/Module/Contact/Conversations.php:96 src/Module/Contact/Media.php:61 -#: src/Module/Contact/Posts.php:78 src/Module/Contact/Posts.php:83 -#: src/Module/Contact/Posts.php:88 src/Module/Contact/Profile.php:159 -#: src/Module/Contact/Profile.php:164 src/Module/Contact/Profile.php:183 -#: src/Module/Contact/Redir.php:91 src/Module/Contact/Redir.php:145 -#: src/Module/FriendSuggest.php:71 src/Module/FriendSuggest.php:109 +#: src/Module/Circle.php:84 src/Module/Circle.php:93 +#: src/Module/Contact/Advanced.php:56 src/Module/Contact/Advanced.php:95 +#: src/Module/Contact/Contacts.php:57 src/Module/Contact/Conversations.php:72 +#: src/Module/Contact/Conversations.php:77 +#: src/Module/Contact/Conversations.php:82 src/Module/Contact/Media.php:47 +#: src/Module/Contact/Posts.php:64 src/Module/Contact/Posts.php:69 +#: src/Module/Contact/Posts.php:74 src/Module/Contact/Profile.php:145 +#: src/Module/Contact/Profile.php:150 src/Module/Contact/Profile.php:169 +#: src/Module/Contact/Redir.php:77 src/Module/Contact/Redir.php:131 +#: src/Module/FriendSuggest.php:57 src/Module/FriendSuggest.php:95 msgid "Contact not found." msgstr "لم يُعثر على المتراسل." -#: src/Module/Circle.php:102 src/Module/Contact/Contacts.php:66 +#: src/Module/Circle.php:88 src/Module/Contact/Contacts.php:52 msgid "Invalid contact." msgstr "متراسل غير صالح." -#: src/Module/Circle.php:111 src/Module/Contact/Revoke.php:70 +#: src/Module/Circle.php:97 src/Module/Contact/Revoke.php:56 msgid "Contact is deleted." msgstr "حُذف المتراسل." -#: src/Module/Circle.php:117 +#: src/Module/Circle.php:103 msgid "Unable to add the contact to the circle." msgstr "" -#: src/Module/Circle.php:120 +#: src/Module/Circle.php:106 msgid "Contact successfully added to circle." msgstr "" -#: src/Module/Circle.php:124 +#: src/Module/Circle.php:110 msgid "Unable to remove the contact from the circle." msgstr "" -#: src/Module/Circle.php:127 +#: src/Module/Circle.php:113 msgid "Contact successfully removed from circle." msgstr "" -#: src/Module/Circle.php:131 +#: src/Module/Circle.php:117 msgid "Bad request." msgstr "طلب خاطئ." -#: src/Module/Circle.php:172 +#: src/Module/Circle.php:158 msgid "Save Circle" msgstr "" -#: src/Module/Circle.php:173 +#: src/Module/Circle.php:159 msgid "Filter" msgstr "رشّح" -#: src/Module/Circle.php:179 +#: src/Module/Circle.php:165 msgid "Create a circle of contacts/friends." msgstr "" -#: src/Module/Circle.php:221 +#: src/Module/Circle.php:207 msgid "Unable to remove circle." msgstr "" -#: src/Module/Circle.php:272 +#: src/Module/Circle.php:258 msgid "Delete Circle" msgstr "" -#: src/Module/Circle.php:282 +#: src/Module/Circle.php:268 msgid "Edit Circle Name" msgstr "" -#: src/Module/Circle.php:292 +#: src/Module/Circle.php:278 msgid "Members" msgstr "الأعضاء" -#: src/Module/Circle.php:295 +#: src/Module/Circle.php:281 msgid "Circle is empty" msgstr "" -#: src/Module/Circle.php:311 +#: src/Module/Circle.php:297 msgid "Remove contact from circle" msgstr "" -#: src/Module/Circle.php:334 +#: src/Module/Circle.php:320 msgid "Click on a contact to add or remove." msgstr "أنقر على المتراسل لإضافته أو حذفه." -#: src/Module/Circle.php:351 +#: src/Module/Circle.php:337 msgid "Add contact to circle" msgstr "" -#: src/Module/Contact.php:102 +#: src/Module/Contact.php:88 #, php-format msgid "%d contact edited." msgid_plural "%d contacts edited." @@ -6576,192 +6575,192 @@ msgstr[3] "حُرر %d متراسلين." msgstr[4] "حُرر %d متراسلا." msgstr[5] "حُرر %d متراسل." -#: src/Module/Contact.php:353 +#: src/Module/Contact.php:328 msgid "Show all contacts" msgstr "أظهِر كل المتراسلين" -#: src/Module/Contact.php:358 src/Module/Contact.php:437 -#: src/Module/Moderation/BaseUsers.php:85 +#: src/Module/Contact.php:333 src/Module/Contact.php:412 +#: src/Module/Moderation/BaseUsers.php:72 msgid "Pending" msgstr "معلق" -#: src/Module/Contact.php:361 +#: src/Module/Contact.php:336 msgid "Only show pending contacts" msgstr "أظهِر المتراسلين المعلقين" -#: src/Module/Contact.php:366 src/Module/Contact.php:440 -#: src/Module/Moderation/BaseUsers.php:93 +#: src/Module/Contact.php:341 src/Module/Contact.php:415 +#: src/Module/Moderation/BaseUsers.php:80 msgid "Blocked" msgstr "محجوب" -#: src/Module/Contact.php:369 +#: src/Module/Contact.php:344 msgid "Only show blocked contacts" msgstr "أظهِر المتراسلين المحجوبين فقط" -#: src/Module/Contact.php:374 src/Module/Contact.php:446 -#: src/Module/Settings/Server/Index.php:107 src/Object/Post.php:399 +#: src/Module/Contact.php:349 src/Module/Contact.php:421 +#: src/Module/Settings/Server/Index.php:93 src/Object/Post.php:385 msgid "Ignored" msgstr "مُتجاهَل" -#: src/Module/Contact.php:377 +#: src/Module/Contact.php:352 msgid "Only show ignored contacts" msgstr "أظهِر المتراسلين المتجاهلين فقط" -#: src/Module/Contact.php:382 src/Module/Contact.php:449 +#: src/Module/Contact.php:357 src/Module/Contact.php:424 msgid "Collapsed" msgstr "" -#: src/Module/Contact.php:385 +#: src/Module/Contact.php:360 msgid "Only show collapsed contacts" msgstr "" -#: src/Module/Contact.php:390 src/Module/Contact.php:452 +#: src/Module/Contact.php:365 src/Module/Contact.php:427 msgid "Archived" msgstr "مؤرشف" -#: src/Module/Contact.php:393 +#: src/Module/Contact.php:368 msgid "Only show archived contacts" msgstr "أظهِر المتراسلين المؤرشفين فقط" -#: src/Module/Contact.php:398 src/Module/Contact.php:443 +#: src/Module/Contact.php:373 src/Module/Contact.php:418 msgid "Hidden" msgstr "‮مخفي" -#: src/Module/Contact.php:401 +#: src/Module/Contact.php:376 msgid "Only show hidden contacts" msgstr "أظهِر المتراسلين المخفيين فقط" -#: src/Module/Contact.php:409 +#: src/Module/Contact.php:384 msgid "Organize your contact circles" msgstr "" -#: src/Module/Contact.php:464 +#: src/Module/Contact.php:439 msgid "Search your contacts" msgstr "ابحث في متراسليك" -#: src/Module/Contact.php:465 src/Module/Search/Index.php:207 +#: src/Module/Contact.php:440 src/Module/Search/Index.php:193 #, php-format msgid "Results for: %s" msgstr "نتائج: %s" -#: src/Module/Contact.php:473 +#: src/Module/Contact.php:448 msgid "Update" msgstr "حدّث" -#: src/Module/Contact.php:474 src/Module/Contact/Profile.php:532 -#: src/Module/Moderation/Blocklist/Contact.php:117 -#: src/Module/Moderation/Users/Blocked.php:138 -#: src/Module/Moderation/Users/Index.php:154 +#: src/Module/Contact.php:449 src/Module/Contact/Profile.php:518 +#: src/Module/Moderation/Blocklist/Contact.php:103 +#: src/Module/Moderation/Users/Blocked.php:124 +#: src/Module/Moderation/Users/Index.php:140 msgid "Unblock" msgstr "ارفع الحجب" -#: src/Module/Contact.php:475 src/Module/Contact/Profile.php:540 +#: src/Module/Contact.php:450 src/Module/Contact/Profile.php:526 msgid "Unignore" msgstr "ألغي التجاهل" -#: src/Module/Contact.php:476 src/Module/Contact/Profile.php:548 +#: src/Module/Contact.php:451 src/Module/Contact/Profile.php:534 msgid "Uncollapse" msgstr "" -#: src/Module/Contact.php:478 +#: src/Module/Contact.php:453 msgid "Batch Actions" msgstr "إجراءات متعددة" -#: src/Module/Contact.php:521 +#: src/Module/Contact.php:496 msgid "Conversations started by this contact" msgstr "بدأ هذا المتراسل للمحادثة" -#: src/Module/Contact.php:526 +#: src/Module/Contact.php:501 msgid "Posts and Comments" msgstr "التعليقات والمشاركات" -#: src/Module/Contact.php:529 +#: src/Module/Contact.php:504 msgid "Individual Posts and Replies" msgstr "" -#: src/Module/Contact.php:537 +#: src/Module/Contact.php:512 msgid "Posts containing media objects" msgstr "مشاركات تحوي وسائط" -#: src/Module/Contact.php:545 +#: src/Module/Contact.php:520 msgid "View all known contacts" msgstr "أظهِر كل المتراسلين المعروفين" -#: src/Module/Contact.php:556 +#: src/Module/Contact.php:531 msgid "Advanced Contact Settings" msgstr "إعدادات المتراسلين المُتقدّمة" -#: src/Module/Contact.php:592 +#: src/Module/Contact.php:567 msgid "Mutual Friendship" msgstr "صداقة متبادلة" -#: src/Module/Contact.php:596 +#: src/Module/Contact.php:571 msgid "is a fan of yours" msgstr "أحد معجبيك" -#: src/Module/Contact.php:600 +#: src/Module/Contact.php:575 msgid "you are a fan of" msgstr "أنت معجب" -#: src/Module/Contact.php:618 +#: src/Module/Contact.php:593 msgid "Pending outgoing contact request" msgstr "طلب تراسل صادر معلق" -#: src/Module/Contact.php:620 +#: src/Module/Contact.php:595 msgid "Pending incoming contact request" msgstr "طلب تراسل وارد معلق" -#: src/Module/Contact.php:633 src/Module/Contact/Profile.php:391 +#: src/Module/Contact.php:608 src/Module/Contact/Profile.php:377 #, php-format msgid "Visit %s's profile [%s]" msgstr "زر ملف %s الشخصي [%s]" -#: src/Module/Contact/Advanced.php:99 +#: src/Module/Contact/Advanced.php:85 msgid "Contact update failed." msgstr "فشل تحديث المتراسل." -#: src/Module/Contact/Advanced.php:130 +#: src/Module/Contact/Advanced.php:116 msgid "Return to contact editor" msgstr "عُد لمحرر المتراسلين" -#: src/Module/Contact/Advanced.php:134 -#: src/Module/Moderation/Blocklist/Contact.php:122 -#: src/Module/Moderation/Reports.php:116 -#: src/Module/Moderation/Users/Active.php:126 -#: src/Module/Moderation/Users/Blocked.php:126 -#: src/Module/Moderation/Users/Create.php:70 -#: src/Module/Moderation/Users/Deleted.php:83 -#: src/Module/Moderation/Users/Index.php:140 -#: src/Module/Moderation/Users/Index.php:160 -#: src/Module/Moderation/Users/Pending.php:99 src/Module/Settings/OAuth.php:72 +#: src/Module/Contact/Advanced.php:120 +#: src/Module/Moderation/Blocklist/Contact.php:108 +#: src/Module/Moderation/Reports.php:102 +#: src/Module/Moderation/Users/Active.php:112 +#: src/Module/Moderation/Users/Blocked.php:112 +#: src/Module/Moderation/Users/Create.php:56 +#: src/Module/Moderation/Users/Deleted.php:69 +#: src/Module/Moderation/Users/Index.php:126 +#: src/Module/Moderation/Users/Index.php:146 +#: src/Module/Moderation/Users/Pending.php:85 src/Module/Settings/OAuth.php:58 msgid "Name" msgstr "الاسم" -#: src/Module/Contact/Advanced.php:135 +#: src/Module/Contact/Advanced.php:121 msgid "Account Nickname" msgstr "لقب الحساب" -#: src/Module/Contact/Advanced.php:136 +#: src/Module/Contact/Advanced.php:122 msgid "Account URL" msgstr "رابط الحساب" -#: src/Module/Contact/Advanced.php:137 +#: src/Module/Contact/Advanced.php:123 msgid "Poll/Feed URL" msgstr "رابط استطلاع/تغذية" -#: src/Module/Contact/Advanced.php:138 +#: src/Module/Contact/Advanced.php:124 msgid "New photo from this URL" msgstr "صورة من هذا الرابط" -#: src/Module/Contact/Contacts.php:89 +#: src/Module/Contact/Contacts.php:75 msgid "No known contacts." msgstr "لا يوجد متراسل معروف." -#: src/Module/Contact/Contacts.php:103 src/Module/Profile/Common.php:128 +#: src/Module/Contact/Contacts.php:89 src/Module/Profile/Common.php:114 msgid "No common contacts." msgstr "لا متراسلين مشترَكين." -#: src/Module/Contact/Contacts.php:115 src/Module/Profile/Contacts.php:135 +#: src/Module/Contact/Contacts.php:101 src/Module/Profile/Contacts.php:121 #, php-format msgid "Follower (%s)" msgid_plural "Followers (%s)" @@ -6772,7 +6771,7 @@ msgstr[3] "%s متابِعين" msgstr[4] "%s متابِعا" msgstr[5] "%s متابِع" -#: src/Module/Contact/Contacts.php:119 src/Module/Profile/Contacts.php:138 +#: src/Module/Contact/Contacts.php:105 src/Module/Profile/Contacts.php:124 #, php-format msgid "Following (%s)" msgid_plural "Following (%s)" @@ -6783,7 +6782,7 @@ msgstr[3] "%s متابَعين" msgstr[4] "%s متابَعا" msgstr[5] "%s متابَع" -#: src/Module/Contact/Contacts.php:123 src/Module/Profile/Contacts.php:141 +#: src/Module/Contact/Contacts.php:109 src/Module/Profile/Contacts.php:127 #, php-format msgid "Mutual friend (%s)" msgid_plural "Mutual friends (%s)" @@ -6794,12 +6793,12 @@ msgstr[3] "%s أصدقاء مشتركين" msgstr[4] "%s صديقا مشتركا" msgstr[5] "%s صديق مشترك" -#: src/Module/Contact/Contacts.php:125 src/Module/Profile/Contacts.php:143 +#: src/Module/Contact/Contacts.php:111 src/Module/Profile/Contacts.php:129 #, php-format msgid "These contacts both follow and are followed by %s." msgstr "هؤلاء المتراسلون يتابعون %s وهو يتابعهم." -#: src/Module/Contact/Contacts.php:131 src/Module/Profile/Common.php:116 +#: src/Module/Contact/Contacts.php:117 src/Module/Profile/Common.php:102 #, php-format msgid "Common contact (%s)" msgid_plural "Common contacts (%s)" @@ -6810,14 +6809,14 @@ msgstr[3] "%s متراسلين مشتركين" msgstr[4] "%s متراسلا مشتركا" msgstr[5] "%s متراسل مشترك" -#: src/Module/Contact/Contacts.php:133 src/Module/Profile/Common.php:118 +#: src/Module/Contact/Contacts.php:119 src/Module/Profile/Common.php:104 #, php-format msgid "" "Both %s and yourself have publicly interacted with these " "contacts (follow, comment or likes on public posts)." msgstr "أنت و %s تفاعلتم مع نفس المتراسلين (متابعة، تعليق، إعجاب بمشاركة)." -#: src/Module/Contact/Contacts.php:139 src/Module/Profile/Contacts.php:149 +#: src/Module/Contact/Contacts.php:125 src/Module/Profile/Contacts.php:135 #, php-format msgid "Contact (%s)" msgid_plural "Contacts (%s)" @@ -6828,333 +6827,329 @@ msgstr[3] "%s متراسلين" msgstr[4] "%s متراسلا" msgstr[5] "%s متراسل" -#: src/Module/Contact/Follow.php:70 src/Module/Contact/Redir.php:59 -#: src/Module/Contact/Redir.php:220 src/Module/Conversation/Community.php:166 -#: src/Module/Debug/ItemBody.php:38 src/Module/Diaspora/Receive.php:59 -#: src/Module/Item/Display.php:96 src/Module/Item/Feed.php:59 -#: src/Module/Item/Follow.php:41 src/Module/Item/Ignore.php:41 -#: src/Module/Item/Language.php:53 src/Module/Item/Pin.php:41 -#: src/Module/Item/Pin.php:56 src/Module/Item/Searchtext.php:53 -#: src/Module/Item/Star.php:42 src/Module/Update/Display.php:37 +#: src/Module/Contact/Follow.php:56 src/Module/Contact/Redir.php:45 +#: src/Module/Contact/Redir.php:206 src/Module/Conversation/Community.php:154 +#: src/Module/Debug/ItemBody.php:24 src/Module/Diaspora/Receive.php:45 +#: src/Module/Item/Display.php:82 src/Module/Item/Feed.php:45 +#: src/Module/Item/Follow.php:27 src/Module/Item/Ignore.php:27 +#: src/Module/Item/Language.php:39 src/Module/Item/Pin.php:27 +#: src/Module/Item/Pin.php:42 src/Module/Item/Searchtext.php:39 +#: src/Module/Item/Star.php:28 src/Module/Update/Display.php:23 msgid "Access denied." msgstr "رُفض الوصول." -#: src/Module/Contact/Follow.php:105 src/Module/Contact/Unfollow.php:125 -#: src/Module/Profile/RemoteFollow.php:133 +#: src/Module/Contact/Follow.php:91 src/Module/Contact/Unfollow.php:111 +#: src/Module/Profile/RemoteFollow.php:119 msgid "Submit Request" msgstr "أرسل الطلب" -#: src/Module/Contact/Follow.php:115 +#: src/Module/Contact/Follow.php:101 msgid "You already added this contact." msgstr "أضفت هذا المتراسل سلفًا." -#: src/Module/Contact/Follow.php:130 +#: src/Module/Contact/Follow.php:116 msgid "The network type couldn't be detected. Contact can't be added." msgstr "تعذر اكتشاف نوع الشبكة. لا يمكن إضافة المتراسل." -#: src/Module/Contact/Follow.php:138 +#: src/Module/Contact/Follow.php:124 msgid "Diaspora support isn't enabled. Contact can't be added." msgstr "دعم دياسبورا غير مفعل. لا يمكن إضافة المتراسل." -#: src/Module/Contact/Follow.php:143 -msgid "OStatus support is disabled. Contact can't be added." -msgstr "دعم OStatus غير مفعل. لا يمكن إضافة المتراسل." - -#: src/Module/Contact/Follow.php:168 src/Module/Profile/RemoteFollow.php:132 +#: src/Module/Contact/Follow.php:149 src/Module/Profile/RemoteFollow.php:118 msgid "Please answer the following:" msgstr "من فضلك أجب على ما يلي:" -#: src/Module/Contact/Follow.php:169 src/Module/Contact/Unfollow.php:123 +#: src/Module/Contact/Follow.php:150 src/Module/Contact/Unfollow.php:109 msgid "Your Identity Address:" msgstr "عنوان معرّفك:" -#: src/Module/Contact/Follow.php:170 src/Module/Contact/Profile.php:422 -#: src/Module/Contact/Unfollow.php:129 -#: src/Module/Moderation/Blocklist/Contact.php:131 -#: src/Module/Moderation/Reports.php:123 -#: src/Module/Notifications/Introductions.php:135 -#: src/Module/Notifications/Introductions.php:204 +#: src/Module/Contact/Follow.php:151 src/Module/Contact/Profile.php:408 +#: src/Module/Contact/Unfollow.php:115 +#: src/Module/Moderation/Blocklist/Contact.php:117 +#: src/Module/Moderation/Reports.php:109 +#: src/Module/Notifications/Introductions.php:121 +#: src/Module/Notifications/Introductions.php:190 msgid "Profile URL" msgstr "رابط الملف الشخصي" -#: src/Module/Contact/Follow.php:171 src/Module/Contact/Profile.php:434 -#: src/Module/Notifications/Introductions.php:197 -#: src/Module/Profile/Profile.php:236 +#: src/Module/Contact/Follow.php:152 src/Module/Contact/Profile.php:420 +#: src/Module/Notifications/Introductions.php:183 +#: src/Module/Profile/Profile.php:222 msgid "Tags:" msgstr "الوسوم:" -#: src/Module/Contact/Follow.php:182 +#: src/Module/Contact/Follow.php:163 #, php-format msgid "%s knows you" msgstr "%s يعرفك" -#: src/Module/Contact/Follow.php:183 +#: src/Module/Contact/Follow.php:164 msgid "Add a personal note:" msgstr "أضف ملاحظة شخصية:" -#: src/Module/Contact/Follow.php:192 src/Module/Contact/Unfollow.php:138 +#: src/Module/Contact/Follow.php:173 src/Module/Contact/Unfollow.php:124 msgid "Posts and Replies" msgstr "" -#: src/Module/Contact/Follow.php:221 +#: src/Module/Contact/Follow.php:202 msgid "The contact could not be added." msgstr "تعذر إضافة المتراسل." -#: src/Module/Contact/MatchInterests.php:95 -#: src/Module/Media/Attachment/Upload.php:77 -#: src/Module/Media/Attachment/Upload.php:82 -#: src/Module/Media/Photo/Upload.php:81 src/Module/Media/Photo/Upload.php:86 -#: src/Module/Media/Photo/Upload.php:135 +#: src/Module/Contact/MatchInterests.php:81 +#: src/Module/Media/Attachment/Upload.php:63 +#: src/Module/Media/Attachment/Upload.php:68 +#: src/Module/Media/Photo/Upload.php:67 src/Module/Media/Photo/Upload.php:72 +#: src/Module/Media/Photo/Upload.php:121 msgid "Invalid request." msgstr "طلب غير صالح." -#: src/Module/Contact/MatchInterests.php:102 +#: src/Module/Contact/MatchInterests.php:88 msgid "No keywords to match. Please add keywords to your profile." msgstr "لا توجد كلمات مفتاحية لمطابقتها. من فضلك أضف كلمات مفتاحية إلى ملفك الشخصي." -#: src/Module/Contact/MatchInterests.php:145 +#: src/Module/Contact/MatchInterests.php:141 msgid "Profile Match" msgstr "الملفات الشخصية المطابقة" -#: src/Module/Contact/Profile.php:145 +#: src/Module/Contact/Profile.php:131 msgid "Failed to update contact record." msgstr "فشل تحديث سجل التراسل." -#: src/Module/Contact/Profile.php:209 +#: src/Module/Contact/Profile.php:195 msgid "Contact has been unblocked" msgstr "رُفع الحجب عن المتراسل" -#: src/Module/Contact/Profile.php:213 +#: src/Module/Contact/Profile.php:199 msgid "Contact has been blocked" msgstr "حُجب المتراسل" -#: src/Module/Contact/Profile.php:225 +#: src/Module/Contact/Profile.php:211 msgid "Contact has been unignored" msgstr "ألغي تجاهل المتراسل" -#: src/Module/Contact/Profile.php:229 +#: src/Module/Contact/Profile.php:215 msgid "Contact has been ignored" msgstr "تُجوهل المتراسل" -#: src/Module/Contact/Profile.php:241 +#: src/Module/Contact/Profile.php:227 msgid "Contact has been uncollapsed" msgstr "" -#: src/Module/Contact/Profile.php:245 +#: src/Module/Contact/Profile.php:231 msgid "Contact has been collapsed" msgstr "" -#: src/Module/Contact/Profile.php:273 +#: src/Module/Contact/Profile.php:259 #, php-format msgid "You are mutual friends with %s" msgstr "أنتما صديقان مشتركان لـ %s" -#: src/Module/Contact/Profile.php:274 +#: src/Module/Contact/Profile.php:260 #, php-format msgid "You are sharing with %s" msgstr "أنت تشارك مع %s" -#: src/Module/Contact/Profile.php:275 +#: src/Module/Contact/Profile.php:261 #, php-format msgid "%s is sharing with you" msgstr "%s يشارك معك" -#: src/Module/Contact/Profile.php:291 +#: src/Module/Contact/Profile.php:277 msgid "Private communications are not available for this contact." msgstr "المراسلات الخاصة غير متوفرة لهذا المتراسل." -#: src/Module/Contact/Profile.php:301 +#: src/Module/Contact/Profile.php:287 msgid "This contact is on a server you ignored." msgstr "" -#: src/Module/Contact/Profile.php:304 +#: src/Module/Contact/Profile.php:290 msgid "Never" msgstr "أبدا" -#: src/Module/Contact/Profile.php:307 +#: src/Module/Contact/Profile.php:293 msgid "(Update was not successful)" msgstr "(لم ينجح التحديث)" -#: src/Module/Contact/Profile.php:307 +#: src/Module/Contact/Profile.php:293 msgid "(Update was successful)" msgstr "(حُدث بنجاح)" -#: src/Module/Contact/Profile.php:309 src/Module/Contact/Profile.php:503 +#: src/Module/Contact/Profile.php:295 src/Module/Contact/Profile.php:489 msgid "Suggest friends" msgstr "اقترح أصدقاء" -#: src/Module/Contact/Profile.php:313 +#: src/Module/Contact/Profile.php:299 #, php-format msgid "Network type: %s" msgstr "نوع الشبكة: %s" -#: src/Module/Contact/Profile.php:318 +#: src/Module/Contact/Profile.php:304 msgid "Communications lost with this contact!" msgstr "فُقد التواصل مع هذا المتراسل!" -#: src/Module/Contact/Profile.php:324 +#: src/Module/Contact/Profile.php:310 msgid "Fetch further information for feeds" msgstr "اجلب مزيدًا من المعلومات للتغذيات" -#: src/Module/Contact/Profile.php:326 +#: src/Module/Contact/Profile.php:312 msgid "" "Fetch information like preview pictures, title and teaser from the feed " "item. You can activate this if the feed doesn't contain much text. Keywords " "are taken from the meta header in the feed item and are posted as hash tags." msgstr "" -#: src/Module/Contact/Profile.php:329 +#: src/Module/Contact/Profile.php:315 msgid "Fetch information" msgstr "اجلب معلومات" -#: src/Module/Contact/Profile.php:330 +#: src/Module/Contact/Profile.php:316 msgid "Fetch keywords" msgstr "اجلب كلمات مفتاحية" -#: src/Module/Contact/Profile.php:331 +#: src/Module/Contact/Profile.php:317 msgid "Fetch information and keywords" msgstr "اجلب معلومات وكلمات مفتاحية" -#: src/Module/Contact/Profile.php:341 src/Module/Contact/Profile.php:346 -#: src/Module/Contact/Profile.php:351 src/Module/Contact/Profile.php:357 +#: src/Module/Contact/Profile.php:327 src/Module/Contact/Profile.php:332 +#: src/Module/Contact/Profile.php:337 src/Module/Contact/Profile.php:343 msgid "No mirroring" msgstr "" -#: src/Module/Contact/Profile.php:342 src/Module/Contact/Profile.php:352 -#: src/Module/Contact/Profile.php:358 +#: src/Module/Contact/Profile.php:328 src/Module/Contact/Profile.php:338 +#: src/Module/Contact/Profile.php:344 msgid "Mirror as my own posting" msgstr "" -#: src/Module/Contact/Profile.php:347 src/Module/Contact/Profile.php:353 +#: src/Module/Contact/Profile.php:333 src/Module/Contact/Profile.php:339 msgid "Native reshare" msgstr "إعادة النشر الأصلية" -#: src/Module/Contact/Profile.php:373 +#: src/Module/Contact/Profile.php:359 msgid "Contact Information / Notes" msgstr "ملاحظات / معلومات المتراسل" -#: src/Module/Contact/Profile.php:374 +#: src/Module/Contact/Profile.php:360 msgid "Contact Settings" msgstr "إعدادات المتراسل" -#: src/Module/Contact/Profile.php:382 +#: src/Module/Contact/Profile.php:368 msgid "Contact" msgstr "متراسل" -#: src/Module/Contact/Profile.php:386 +#: src/Module/Contact/Profile.php:372 msgid "Their personal note" msgstr "ملاحظتهم الشخصية" -#: src/Module/Contact/Profile.php:388 +#: src/Module/Contact/Profile.php:374 msgid "Edit contact notes" msgstr "عدّل ملاحظات المتراسل" -#: src/Module/Contact/Profile.php:392 +#: src/Module/Contact/Profile.php:378 msgid "Block/Unblock contact" msgstr "احجب/ ارفع الحجب عن متراسل" -#: src/Module/Contact/Profile.php:393 -#: src/Module/Moderation/Report/Create.php:293 +#: src/Module/Contact/Profile.php:379 +#: src/Module/Moderation/Report/Create.php:279 msgid "Ignore contact" msgstr "تجاهل المتراسل" -#: src/Module/Contact/Profile.php:394 +#: src/Module/Contact/Profile.php:380 msgid "View conversations" msgstr "اعرض المحادثات" -#: src/Module/Contact/Profile.php:399 +#: src/Module/Contact/Profile.php:385 msgid "Last update:" msgstr "آخر تحديث:" -#: src/Module/Contact/Profile.php:401 +#: src/Module/Contact/Profile.php:387 msgid "Update public posts" msgstr "حدّث المشاركات العلنية" -#: src/Module/Contact/Profile.php:403 src/Module/Contact/Profile.php:513 +#: src/Module/Contact/Profile.php:389 src/Module/Contact/Profile.php:499 msgid "Update now" msgstr "حدّث الآن" -#: src/Module/Contact/Profile.php:405 +#: src/Module/Contact/Profile.php:391 msgid "Awaiting connection acknowledge" msgstr "ينتظر قبول الاتصال" -#: src/Module/Contact/Profile.php:406 +#: src/Module/Contact/Profile.php:392 msgid "Currently blocked" msgstr "محجوب حاليا" -#: src/Module/Contact/Profile.php:407 +#: src/Module/Contact/Profile.php:393 msgid "Currently ignored" msgstr "متجاهَل حاليا" -#: src/Module/Contact/Profile.php:408 +#: src/Module/Contact/Profile.php:394 msgid "Currently collapsed" msgstr "" -#: src/Module/Contact/Profile.php:409 +#: src/Module/Contact/Profile.php:395 msgid "Currently archived" msgstr "مُؤرشف حاليا" -#: src/Module/Contact/Profile.php:412 +#: src/Module/Contact/Profile.php:398 msgid "Manage remote servers" msgstr "" -#: src/Module/Contact/Profile.php:414 -#: src/Module/Notifications/Introductions.php:198 +#: src/Module/Contact/Profile.php:400 +#: src/Module/Notifications/Introductions.php:184 msgid "Hide this contact from others" msgstr "اخف هذا المتراسل عن الآخرين" -#: src/Module/Contact/Profile.php:414 +#: src/Module/Contact/Profile.php:400 msgid "" "Replies/likes to your public posts may still be visible" msgstr "قد تبقى الإعجابات/الردود على مشاركاتك مرئية" -#: src/Module/Contact/Profile.php:415 +#: src/Module/Contact/Profile.php:401 msgid "Notification for new posts" msgstr "تنبيه للمشاركات الجديدة" -#: src/Module/Contact/Profile.php:415 +#: src/Module/Contact/Profile.php:401 msgid "Send a notification of every new post of this contact" msgstr "أرسل تنبيها عند نشر هذا المتراسل لمشاركات الجديدة" -#: src/Module/Contact/Profile.php:417 +#: src/Module/Contact/Profile.php:403 msgid "Keyword Deny List" msgstr "قائمة الكلمات المفتاحية المرفوضة" -#: src/Module/Contact/Profile.php:417 +#: src/Module/Contact/Profile.php:403 msgid "" "Comma separated list of keywords that should not be converted to hashtags, " "when \"Fetch information and keywords\" is selected" msgstr "قائمة بالكلمات المفتاحية مفصولة بفواصل والتي لا تخول الى وسوم عند اختيار \"اجلب المعلومات والكلمات المفتاحية\"" -#: src/Module/Contact/Profile.php:435 -#: src/Module/Settings/TwoFactor/Index.php:160 +#: src/Module/Contact/Profile.php:421 +#: src/Module/Settings/TwoFactor/Index.php:146 msgid "Actions" msgstr "الإجراءات" -#: src/Module/Contact/Profile.php:437 -#: src/Module/Settings/TwoFactor/Index.php:140 view/theme/frio/theme.php:232 +#: src/Module/Contact/Profile.php:423 +#: src/Module/Settings/TwoFactor/Index.php:126 view/theme/frio/theme.php:220 msgid "Status" msgstr "الحالة" -#: src/Module/Contact/Profile.php:443 +#: src/Module/Contact/Profile.php:429 msgid "Mirror postings from this contact" msgstr "" -#: src/Module/Contact/Profile.php:445 +#: src/Module/Contact/Profile.php:431 msgid "" "Mark this contact as remote_self, this will cause friendica to repost new " "entries from this contact." msgstr "علّم هذا المتراسل على أنه remote_self ، سيقوم فرنديكا بإعادة نشر المدخلات الجديدة لهذا المتراسل." -#: src/Module/Contact/Profile.php:448 +#: src/Module/Contact/Profile.php:434 msgid "Channel Settings" msgstr "" -#: src/Module/Contact/Profile.php:449 +#: src/Module/Contact/Profile.php:435 msgid "Frequency of this contact in relevant channels" msgstr "" -#: src/Module/Contact/Profile.php:450 +#: src/Module/Contact/Profile.php:436 msgid "" "Depending on the type of the channel not all posts from this contact are " "displayed. By default, posts need to have a minimum amount of interactions " @@ -7164,201 +7159,201 @@ msgid "" "block or hide the contact completely." msgstr "" -#: src/Module/Contact/Profile.php:451 +#: src/Module/Contact/Profile.php:437 msgid "Default frequency" msgstr "" -#: src/Module/Contact/Profile.php:451 +#: src/Module/Contact/Profile.php:437 msgid "" "Posts by this contact are displayed in the \"for you\" channel if you " "interact often with this contact or if a post reached some level of " "interaction." msgstr "" -#: src/Module/Contact/Profile.php:452 +#: src/Module/Contact/Profile.php:438 msgid "Display all posts of this contact" msgstr "" -#: src/Module/Contact/Profile.php:452 +#: src/Module/Contact/Profile.php:438 msgid "All posts from this contact will appear on the \"for you\" channel" msgstr "" -#: src/Module/Contact/Profile.php:453 +#: src/Module/Contact/Profile.php:439 msgid "Display only few posts" msgstr "" -#: src/Module/Contact/Profile.php:453 +#: src/Module/Contact/Profile.php:439 msgid "" "When a contact creates a lot of posts in a short period, this setting " "reduces the number of displayed posts in every channel." msgstr "" -#: src/Module/Contact/Profile.php:454 +#: src/Module/Contact/Profile.php:440 msgid "Never display posts" msgstr "" -#: src/Module/Contact/Profile.php:454 +#: src/Module/Contact/Profile.php:440 msgid "Posts from this contact will never be displayed in any channel" msgstr "" -#: src/Module/Contact/Profile.php:455 +#: src/Module/Contact/Profile.php:441 msgid "Channel Only" msgstr "" -#: src/Module/Contact/Profile.php:455 +#: src/Module/Contact/Profile.php:441 msgid "" "If enabled, posts from this contact will only appear in channels and network" " streams in circles, but not in the general network stream." msgstr "" -#: src/Module/Contact/Profile.php:523 +#: src/Module/Contact/Profile.php:509 msgid "Refetch contact data" msgstr "أعد جلب بيانات المتراسل" -#: src/Module/Contact/Profile.php:534 +#: src/Module/Contact/Profile.php:520 msgid "Toggle Blocked status" msgstr "بدّل حالة الحجب" -#: src/Module/Contact/Profile.php:542 +#: src/Module/Contact/Profile.php:528 msgid "Toggle Ignored status" msgstr "بدّل حالة التجاهل" -#: src/Module/Contact/Profile.php:550 +#: src/Module/Contact/Profile.php:536 msgid "Toggle Collapsed status" msgstr "" -#: src/Module/Contact/Profile.php:557 src/Module/Contact/Revoke.php:103 +#: src/Module/Contact/Profile.php:543 src/Module/Contact/Revoke.php:89 msgid "Revoke Follow" msgstr "أبطل المتابعة" -#: src/Module/Contact/Profile.php:559 +#: src/Module/Contact/Profile.php:545 msgid "Revoke the follow from this contact" msgstr "أبطل المتابعة من هذا المتراسل" -#: src/Module/Contact/Redir.php:139 +#: src/Module/Contact/Redir.php:125 msgid "Bad Request." msgstr "طلب خاطئ." -#: src/Module/Contact/Revoke.php:74 +#: src/Module/Contact/Revoke.php:60 msgid "Contact is being deleted." msgstr "المتراسل يحذف." -#: src/Module/Contact/Revoke.php:88 +#: src/Module/Contact/Revoke.php:74 msgid "Follow was successfully revoked." msgstr "نجح إبطال المتابعة." -#: src/Module/Contact/Revoke.php:104 +#: src/Module/Contact/Revoke.php:90 msgid "" "Do you really want to revoke this contact's follow? This cannot be undone " "and they will have to manually follow you back again." msgstr "هل تريد إلغاء متابعة هذا المتراسل لك؟ لا يمكن التراجع عن هذا الإجراء وسيتحتم عليهم متابعتك يدوياً." -#: src/Module/Contact/Suggestions.php:62 +#: src/Module/Contact/Suggestions.php:48 msgid "" "No suggestions available. If this is a new site, please try again in 24 " "hours." msgstr "لا توجد اقتراحات متاحة. إذا كان هذا الموقع جديد، من فضلك أعد المحاولة في غضون 24 ساعة." -#: src/Module/Contact/Unfollow.php:98 src/Module/Contact/Unfollow.php:167 +#: src/Module/Contact/Unfollow.php:84 src/Module/Contact/Unfollow.php:153 msgid "You aren't following this contact." msgstr "أنت لا تتابع هذا المتراسل." -#: src/Module/Contact/Unfollow.php:103 +#: src/Module/Contact/Unfollow.php:89 msgid "Unfollowing is currently not supported by your network." msgstr "شبكتك لا تدعم إلغاء المتابعة حاليا." -#: src/Module/Contact/Unfollow.php:121 +#: src/Module/Contact/Unfollow.php:107 msgid "Disconnect/Unfollow" msgstr "ألغ الاقتران/المتابعة" -#: src/Module/Contact/Unfollow.php:175 +#: src/Module/Contact/Unfollow.php:161 msgid "Contact was successfully unfollowed" msgstr "نجح إلغاء متابعة المتراسل" -#: src/Module/Contact/Unfollow.php:178 +#: src/Module/Contact/Unfollow.php:164 msgid "Unable to unfollow this contact, please contact your administrator" msgstr "يتعذر إلغاء متابعة هذا المتراسل، يرجى الاتصال بمدير الموقع" -#: src/Module/Conversation/Channel.php:139 -#: src/Module/Conversation/Community.php:126 src/Module/Search/Index.php:152 -#: src/Module/Search/Index.php:194 +#: src/Module/Conversation/Channel.php:125 +#: src/Module/Conversation/Community.php:114 src/Module/Search/Index.php:138 +#: src/Module/Search/Index.php:180 msgid "No results." msgstr "لا نتائج." -#: src/Module/Conversation/Channel.php:177 +#: src/Module/Conversation/Channel.php:163 msgid "Channel not available." msgstr "" -#: src/Module/Conversation/Community.php:92 +#: src/Module/Conversation/Community.php:80 msgid "" "This community stream shows all public posts received by this node. They may" " not reflect the opinions of this node’s users." msgstr "يسرد هذا الدفق المجتمعي كافة المحادثات العامة التي يتلقاها الخادم. هذا لا يمثل الآراء الشخصية للمستخدمين المحليين." -#: src/Module/Conversation/Community.php:180 +#: src/Module/Conversation/Community.php:168 msgid "Community option not available." msgstr "" -#: src/Module/Conversation/Community.php:196 +#: src/Module/Conversation/Community.php:184 msgid "Not available." msgstr "غير متاح." -#: src/Module/Conversation/Network.php:216 +#: src/Module/Conversation/Network.php:202 msgid "No such circle" msgstr "" -#: src/Module/Conversation/Network.php:220 +#: src/Module/Conversation/Network.php:206 #, php-format msgid "Circle: %s" msgstr "" -#: src/Module/Conversation/Network.php:239 +#: src/Module/Conversation/Network.php:226 #, php-format msgid "Error %d (%s) while fetching the timeline." msgstr "" -#: src/Module/Conversation/Network.php:316 +#: src/Module/Conversation/Network.php:304 msgid "Network feed not available." msgstr "" -#: src/Module/Conversation/Timeline.php:204 +#: src/Module/Conversation/Timeline.php:190 msgid "Include" msgstr "تضمين" -#: src/Module/Conversation/Timeline.php:205 +#: src/Module/Conversation/Timeline.php:191 msgid "Hide" msgstr "اخف" -#: src/Module/Credits.php:44 +#: src/Module/Credits.php:30 msgid "Credits" msgstr "إشادات" -#: src/Module/Credits.php:45 +#: src/Module/Credits.php:31 msgid "" "Friendica is a community project, that would not be possible without the " "help of many people. Here is a list of those who have contributed to the " "code or the translation of Friendica. Thank you all!" msgstr "فرَندِكا هي مشروع مجتمعي، لم يكن ممكنا بدون مساعدة العديد من الناس. إليك قائمة بأولئك الذين ساهموا في الشفرة البرمجية أو في الترجمة. شكرا لكم جميعا!" -#: src/Module/Debug/ActivityPubConversion.php:59 +#: src/Module/Debug/ActivityPubConversion.php:45 msgid "Formatted" msgstr "مهيأ" -#: src/Module/Debug/ActivityPubConversion.php:71 +#: src/Module/Debug/ActivityPubConversion.php:57 msgid "Activity" msgstr "النشاط" -#: src/Module/Debug/ActivityPubConversion.php:123 +#: src/Module/Debug/ActivityPubConversion.php:109 msgid "Object data" msgstr "بيانات الكائن" -#: src/Module/Debug/ActivityPubConversion.php:130 +#: src/Module/Debug/ActivityPubConversion.php:116 msgid "Result Item" msgstr "النتيجة" -#: src/Module/Debug/ActivityPubConversion.php:135 -#: src/Module/Debug/Babel.php:300 src/Module/Moderation/Item/Source.php:93 -#: src/Module/Security/TwoFactor/Verify.php:98 +#: src/Module/Debug/ActivityPubConversion.php:121 +#: src/Module/Debug/Babel.php:286 src/Module/Moderation/Item/Source.php:79 +#: src/Module/Security/TwoFactor/Verify.php:84 msgid "Error" msgid_plural "Errors" msgstr[0] "لا أخطاء" @@ -7368,506 +7363,506 @@ msgstr[3] "أخطاء" msgstr[4] "خطأً" msgstr[5] "خطأٍ" -#: src/Module/Debug/ActivityPubConversion.php:144 +#: src/Module/Debug/ActivityPubConversion.php:130 msgid "Source activity" msgstr "نشاط المصدر" -#: src/Module/Debug/Babel.php:58 +#: src/Module/Debug/Babel.php:44 msgid "Source input" msgstr "الدخل المصدري" -#: src/Module/Debug/Babel.php:64 +#: src/Module/Debug/Babel.php:50 msgid "BBCode::toPlaintext" msgstr "BBCode::toPlaintext" -#: src/Module/Debug/Babel.php:70 +#: src/Module/Debug/Babel.php:56 msgid "BBCode::convert (raw HTML)" msgstr "BBCode::convert (raw HTML)" -#: src/Module/Debug/Babel.php:75 +#: src/Module/Debug/Babel.php:61 msgid "BBCode::convert (hex)" msgstr "" -#: src/Module/Debug/Babel.php:80 +#: src/Module/Debug/Babel.php:66 msgid "BBCode::convert" msgstr "BBCode::convert" -#: src/Module/Debug/Babel.php:86 +#: src/Module/Debug/Babel.php:72 msgid "BBCode::convert => HTML::toBBCode" msgstr "BBCode::convert => HTML::toBBCode" -#: src/Module/Debug/Babel.php:92 +#: src/Module/Debug/Babel.php:78 msgid "BBCode::toMarkdown" msgstr "BBCode::toMarkdown" -#: src/Module/Debug/Babel.php:98 +#: src/Module/Debug/Babel.php:84 msgid "BBCode::toMarkdown => Markdown::convert (raw HTML)" msgstr "BBCode::toMarkdown => Markdown::convert (raw HTML)" -#: src/Module/Debug/Babel.php:102 +#: src/Module/Debug/Babel.php:88 msgid "BBCode::toMarkdown => Markdown::convert" msgstr "BBCode::toMarkdown => Markdown::convert" -#: src/Module/Debug/Babel.php:108 +#: src/Module/Debug/Babel.php:94 msgid "BBCode::toMarkdown => Markdown::toBBCode" msgstr "BBCode::toMarkdown => Markdown::toBBCode" -#: src/Module/Debug/Babel.php:114 +#: src/Module/Debug/Babel.php:100 msgid "BBCode::toMarkdown => Markdown::convert => HTML::toBBCode" msgstr "BBCode::toMarkdown => Markdown::convert => HTML::toBBCode" -#: src/Module/Debug/Babel.php:122 +#: src/Module/Debug/Babel.php:108 msgid "Item Body" msgstr "جسد العنصر" -#: src/Module/Debug/Babel.php:126 +#: src/Module/Debug/Babel.php:112 msgid "Item Tags" msgstr "وسوم العنصر" -#: src/Module/Debug/Babel.php:132 +#: src/Module/Debug/Babel.php:118 msgid "PageInfo::appendToBody" msgstr "PageInfo::appendToBody" -#: src/Module/Debug/Babel.php:137 +#: src/Module/Debug/Babel.php:123 msgid "PageInfo::appendToBody => BBCode::convert (raw HTML)" msgstr "PageInfo::appendToBody => BBCode::convert (raw HTML)" -#: src/Module/Debug/Babel.php:141 +#: src/Module/Debug/Babel.php:127 msgid "PageInfo::appendToBody => BBCode::convert" msgstr "PageInfo::appendToBody => BBCode::convert" -#: src/Module/Debug/Babel.php:148 +#: src/Module/Debug/Babel.php:134 msgid "Source input (Diaspora format)" msgstr "" -#: src/Module/Debug/Babel.php:157 +#: src/Module/Debug/Babel.php:143 msgid "Source input (Markdown)" msgstr "" -#: src/Module/Debug/Babel.php:163 +#: src/Module/Debug/Babel.php:149 msgid "Markdown::convert (raw HTML)" msgstr "Markdown::convert (raw HTML)" -#: src/Module/Debug/Babel.php:168 +#: src/Module/Debug/Babel.php:154 msgid "Markdown::convert" msgstr "Markdown::convert" -#: src/Module/Debug/Babel.php:174 +#: src/Module/Debug/Babel.php:160 msgid "Markdown::toBBCode" msgstr "Markdown::toBBCode" -#: src/Module/Debug/Babel.php:181 +#: src/Module/Debug/Babel.php:167 msgid "Raw HTML input" msgstr "دخل HTML الخام" -#: src/Module/Debug/Babel.php:186 +#: src/Module/Debug/Babel.php:172 msgid "HTML Input" msgstr "دخْل HTML" -#: src/Module/Debug/Babel.php:193 +#: src/Module/Debug/Babel.php:179 msgid "HTML Purified (raw)" msgstr "" -#: src/Module/Debug/Babel.php:198 +#: src/Module/Debug/Babel.php:184 msgid "HTML Purified (hex)" msgstr "" -#: src/Module/Debug/Babel.php:203 +#: src/Module/Debug/Babel.php:189 msgid "HTML Purified" msgstr "" -#: src/Module/Debug/Babel.php:209 +#: src/Module/Debug/Babel.php:195 msgid "HTML::toBBCode" msgstr "HTML::toBBCode" -#: src/Module/Debug/Babel.php:215 +#: src/Module/Debug/Babel.php:201 msgid "HTML::toBBCode => BBCode::convert" msgstr "HTML::toBBCode => BBCode::convert" -#: src/Module/Debug/Babel.php:220 +#: src/Module/Debug/Babel.php:206 msgid "HTML::toBBCode => BBCode::convert (raw HTML)" msgstr "HTML::toBBCode => BBCode::convert (raw HTML)" -#: src/Module/Debug/Babel.php:226 +#: src/Module/Debug/Babel.php:212 msgid "HTML::toBBCode => BBCode::toPlaintext" msgstr "HTML::toBBCode => BBCode::toPlaintext" -#: src/Module/Debug/Babel.php:232 +#: src/Module/Debug/Babel.php:218 msgid "HTML::toMarkdown" msgstr "HTML::toMarkdown" -#: src/Module/Debug/Babel.php:238 +#: src/Module/Debug/Babel.php:224 msgid "HTML::toPlaintext" msgstr "HTML::toPlaintext" -#: src/Module/Debug/Babel.php:244 +#: src/Module/Debug/Babel.php:230 msgid "HTML::toPlaintext (compact)" msgstr "HTML::toPlaintext (compact)" -#: src/Module/Debug/Babel.php:262 +#: src/Module/Debug/Babel.php:248 msgid "Decoded post" msgstr "مشاركة مفكوكة الترميز" -#: src/Module/Debug/Babel.php:283 +#: src/Module/Debug/Babel.php:269 msgid "Post array before expand entities" msgstr "" -#: src/Module/Debug/Babel.php:290 +#: src/Module/Debug/Babel.php:276 msgid "Post converted" msgstr "حُولت المشاركة" -#: src/Module/Debug/Babel.php:295 +#: src/Module/Debug/Babel.php:281 msgid "Converted body" msgstr "" -#: src/Module/Debug/Babel.php:301 +#: src/Module/Debug/Babel.php:287 msgid "Twitter addon is absent from the addon/ folder." msgstr "إضافة تويتر غير موجودة في مجلد addon." -#: src/Module/Debug/Babel.php:311 +#: src/Module/Debug/Babel.php:297 msgid "Babel Diagnostic" msgstr "" -#: src/Module/Debug/Babel.php:313 +#: src/Module/Debug/Babel.php:299 msgid "Source text" msgstr "النص المصدري" -#: src/Module/Debug/Babel.php:314 +#: src/Module/Debug/Babel.php:300 msgid "BBCode" msgstr "BBCode" -#: src/Module/Debug/Babel.php:316 +#: src/Module/Debug/Babel.php:302 msgid "Markdown" msgstr "ماركداون" -#: src/Module/Debug/Babel.php:317 +#: src/Module/Debug/Babel.php:303 msgid "HTML" msgstr "HTML" -#: src/Module/Debug/Babel.php:319 +#: src/Module/Debug/Babel.php:305 msgid "Twitter Source / Tweet URL (requires API key)" msgstr "" -#: src/Module/Debug/Feed.php:53 src/Module/Filer/SaveTag.php:47 -#: src/Module/Settings/Profile/Index.php:180 +#: src/Module/Debug/Feed.php:39 src/Module/Filer/SaveTag.php:33 +#: src/Module/Settings/Profile/Index.php:166 msgid "You must be logged in to use this module" msgstr "يجب عليك الولوج لاستخدام هذه الوحدة" -#: src/Module/Debug/Feed.php:78 +#: src/Module/Debug/Feed.php:64 msgid "Source URL" msgstr "الرابط المصدري" -#: src/Module/Debug/Localtime.php:49 +#: src/Module/Debug/Localtime.php:35 msgid "Time Conversion" msgstr "تحويل الوقت" -#: src/Module/Debug/Localtime.php:50 +#: src/Module/Debug/Localtime.php:36 msgid "" "Friendica provides this service for sharing events with other networks and " "friends in unknown timezones." msgstr "توفر فرَندِكا هذه الخدمة لمشاركة الأحداث مع الشبكات الأخرى والأصدقاء في المناطق الزمنية غير المعروفة." -#: src/Module/Debug/Localtime.php:51 +#: src/Module/Debug/Localtime.php:37 #, php-format msgid "UTC time: %s" msgstr "التوقيت العالمي الموحد: %s" -#: src/Module/Debug/Localtime.php:54 +#: src/Module/Debug/Localtime.php:40 #, php-format msgid "Current timezone: %s" msgstr "المنطقة الزمنية الحالية: %s" -#: src/Module/Debug/Localtime.php:58 +#: src/Module/Debug/Localtime.php:44 #, php-format msgid "Converted localtime: %s" msgstr "الوقت المحلي المحوّل: %s" -#: src/Module/Debug/Localtime.php:62 +#: src/Module/Debug/Localtime.php:48 msgid "Please select your timezone:" msgstr "رجاء اختر منطقتك الزمنية:" -#: src/Module/Debug/Probe.php:38 src/Module/Debug/WebFinger.php:37 +#: src/Module/Debug/Probe.php:24 src/Module/Debug/WebFinger.php:23 msgid "Only logged in users are permitted to perform a probing." msgstr "" -#: src/Module/Debug/Probe.php:52 +#: src/Module/Debug/Probe.php:38 msgid "Probe Diagnostic" msgstr "" -#: src/Module/Debug/Probe.php:53 +#: src/Module/Debug/Probe.php:39 msgid "Output" msgstr "الخَرْج" -#: src/Module/Debug/Probe.php:56 +#: src/Module/Debug/Probe.php:42 msgid "Lookup address" msgstr "عنوان المسح" -#: src/Module/Debug/WebFinger.php:50 +#: src/Module/Debug/WebFinger.php:36 msgid "Webfinger Diagnostic" msgstr "" -#: src/Module/Debug/WebFinger.php:52 +#: src/Module/Debug/WebFinger.php:38 msgid "Lookup address:" msgstr "عنوان المسح:" -#: src/Module/Directory.php:75 +#: src/Module/Directory.php:61 msgid "No entries (some entries may be hidden)." msgstr "لا توجد مدخلات (قد تكون بعض المدخلات مخفية)." -#: src/Module/Directory.php:91 +#: src/Module/Directory.php:77 msgid "Find on this site" msgstr "ابحث في هذا الموقع" -#: src/Module/Directory.php:93 +#: src/Module/Directory.php:79 msgid "Results for:" msgstr "نتائج:" -#: src/Module/Directory.php:95 +#: src/Module/Directory.php:81 msgid "Site Directory" msgstr "دليل الموقع" -#: src/Module/Filer/RemoveTag.php:105 +#: src/Module/Filer/RemoveTag.php:91 msgid "Item was not deleted" msgstr "لم يُحذف العنصر" -#: src/Module/Filer/RemoveTag.php:115 +#: src/Module/Filer/RemoveTag.php:101 msgid "Item was not removed" msgstr "لم يُزل العنصر" -#: src/Module/Filer/SaveTag.php:73 +#: src/Module/Filer/SaveTag.php:59 msgid "- select -" msgstr "- اختر -" -#: src/Module/FriendSuggest.php:82 +#: src/Module/FriendSuggest.php:68 msgid "Suggested contact not found." msgstr "المتراسل المقترح غير موجود." -#: src/Module/FriendSuggest.php:100 +#: src/Module/FriendSuggest.php:86 msgid "Friend suggestion sent." msgstr "أُرسل إقتراح الصداقة." -#: src/Module/FriendSuggest.php:137 +#: src/Module/FriendSuggest.php:123 msgid "Suggest Friends" msgstr "اقترح أصدقاء" -#: src/Module/FriendSuggest.php:140 +#: src/Module/FriendSuggest.php:126 #, php-format msgid "Suggest a friend for %s" msgstr "أقترح أصدقاء لـ %s" -#: src/Module/Friendica.php:81 +#: src/Module/Friendica.php:67 msgid "Installed addons/apps:" msgstr "التطبيقات/الإضافات المثبتة:" -#: src/Module/Friendica.php:86 +#: src/Module/Friendica.php:72 msgid "No installed addons/apps" msgstr "لم تُثبت أي تطبيقات/إضافات" -#: src/Module/Friendica.php:91 +#: src/Module/Friendica.php:77 #, php-format msgid "Read about the Terms of Service of this node." msgstr "اقرأ عن شروط الخدمة لهذه العقدة." -#: src/Module/Friendica.php:98 +#: src/Module/Friendica.php:84 msgid "On this server the following remote servers are blocked." msgstr "الخوادم البعيدة المحجوبة عن هذا الموقع." -#: src/Module/Friendica.php:101 -#: src/Module/Moderation/Blocklist/Server/Index.php:87 -#: src/Module/Moderation/Blocklist/Server/Index.php:111 -#: src/Module/Settings/Channels.php:232 +#: src/Module/Friendica.php:87 +#: src/Module/Moderation/Blocklist/Server/Index.php:73 +#: src/Module/Moderation/Blocklist/Server/Index.php:97 +#: src/Module/Settings/Channels.php:218 msgid "Reason for the block" msgstr "سبب الحجب" -#: src/Module/Friendica.php:103 +#: src/Module/Friendica.php:89 msgid "Download this list in CSV format" msgstr "" -#: src/Module/Friendica.php:117 +#: src/Module/Friendica.php:103 #, php-format msgid "" "This is Friendica, version %s that is running at the web location %s. The " "database version is %s, the post update version is %s." msgstr "هذا فرانديكا إصدار %s يعمل على موقع %s. إصدار قاعدة البيانات هو %s، وإصدار تحديث البيانات هو %s." -#: src/Module/Friendica.php:122 +#: src/Module/Friendica.php:108 msgid "" "Please visit Friendi.ca to learn more " "about the Friendica project." msgstr "رجاء زر Friendi.ca لمعرفة المزيد عن مشروع فرَندِكا." -#: src/Module/Friendica.php:123 +#: src/Module/Friendica.php:109 msgid "Bug reports and issues: please visit" msgstr "لبلاغات العلل والمشاكل: زر" -#: src/Module/Friendica.php:123 +#: src/Module/Friendica.php:109 msgid "the bugtracker at github" msgstr "متعقب العلل على غيت-هب" -#: src/Module/Friendica.php:124 +#: src/Module/Friendica.php:110 msgid "Suggestions, praise, etc. - please email \"info\" at \"friendi - dot - ca" msgstr "للاقتراحات، أو الإشادة ، إلخ.- رجاءً راسل \"info\" at \"friendi - dot - ca" -#: src/Module/HCard.php:45 +#: src/Module/HCard.php:31 msgid "No profile" msgstr "لا ملفًا شخصيًا" -#: src/Module/HTTPException/MethodNotAllowed.php:31 +#: src/Module/HTTPException/MethodNotAllowed.php:17 msgid "Method Not Allowed." msgstr "الطريقة غير مسموح بها." -#: src/Module/Help.php:60 +#: src/Module/Help.php:46 msgid "Help:" msgstr "مساعدة:" -#: src/Module/Home.php:66 +#: src/Module/Home.php:52 #, php-format msgid "Welcome to %s" msgstr "مرحبًا بك في %s" -#: src/Module/Install.php:189 +#: src/Module/Install.php:175 msgid "Friendica Communications Server - Setup" msgstr "خادم شبكة فرنديكا - تثبيت" -#: src/Module/Install.php:200 +#: src/Module/Install.php:186 msgid "System check" msgstr "التحقق من النظام" -#: src/Module/Install.php:202 src/Module/Install.php:247 -#: src/Module/Install.php:326 +#: src/Module/Install.php:188 src/Module/Install.php:233 +#: src/Module/Install.php:312 msgid "Requirement not satisfied" msgstr "لم يستوف المتطلبات" -#: src/Module/Install.php:203 +#: src/Module/Install.php:189 msgid "Optional requirement not satisfied" msgstr "لم يستوف المتطلبات الاختيارية" -#: src/Module/Install.php:204 +#: src/Module/Install.php:190 msgid "OK" msgstr "موافق" -#: src/Module/Install.php:208 +#: src/Module/Install.php:194 msgid "Next" msgstr "التالي" -#: src/Module/Install.php:209 +#: src/Module/Install.php:195 msgid "Check again" msgstr "تحقق مجددا" -#: src/Module/Install.php:222 +#: src/Module/Install.php:208 msgid "Base settings" msgstr "الإعدادات الأساسية" -#: src/Module/Install.php:224 +#: src/Module/Install.php:210 msgid "Base path to installation" msgstr "المسار الأساسي للتثبيت" -#: src/Module/Install.php:226 +#: src/Module/Install.php:212 msgid "" "If the system cannot detect the correct path to your installation, enter the" " correct path here. This setting should only be set if you are using a " "restricted system and symbolic links to your webroot." msgstr "إذا لم يتمكن النظام من اكتشاف مسار التثبيت ، أدخل المسار الصحيح هنا. يجب استخدام هذا الإعداد فقط إذا كان لديك وصول مقيد إلى نظامك وتستخدم رابط ليّن إلى دليل الخادم." -#: src/Module/Install.php:229 +#: src/Module/Install.php:215 msgid "The Friendica system URL" msgstr "" -#: src/Module/Install.php:231 +#: src/Module/Install.php:217 msgid "" "Overwrite this field in case the system URL determination isn't right, " "otherwise leave it as is." msgstr "" -#: src/Module/Install.php:242 +#: src/Module/Install.php:228 msgid "Database connection" msgstr "اتصال قاعدة البيانات" -#: src/Module/Install.php:243 +#: src/Module/Install.php:229 msgid "" "In order to install Friendica we need to know how to connect to your " "database." msgstr "لتثبيت فرنديكا، نحتاج إلى معرفة كيفية الاتصال بقاعدة البيانات." -#: src/Module/Install.php:244 +#: src/Module/Install.php:230 msgid "" "Please contact your hosting provider or site administrator if you have " "questions about these settings." msgstr "يرجى الاتصال بموفر الاستضافة أو مدير الموقع إذا كان لديك أسئلة حول هذه الإعدادات." -#: src/Module/Install.php:245 +#: src/Module/Install.php:231 msgid "" "The database you specify below should already exist. If it does not, please " "create it before continuing." msgstr "قاعدة البيانات التي ستحددها أدناه يجب أن تكون موجودة سلفًا. إذا لم تكن موجودة، أنشئها قبل المتابعة." -#: src/Module/Install.php:252 +#: src/Module/Install.php:238 msgid "Database Server Name" msgstr "اسم خادم قاعدة البيانات" -#: src/Module/Install.php:257 +#: src/Module/Install.php:243 msgid "Database Login Name" msgstr "اسم الولوج لقاعد البيانات" -#: src/Module/Install.php:263 +#: src/Module/Install.php:249 msgid "Database Login Password" msgstr "كلمة سرّ قاعدة البيانات" -#: src/Module/Install.php:265 +#: src/Module/Install.php:251 msgid "For security reasons the password must not be empty" msgstr "لأسباب أمنية يجب ألا تكون كلمة المرور فارغة" -#: src/Module/Install.php:268 +#: src/Module/Install.php:254 msgid "Database Name" msgstr "اسم قاعدة البيانات" -#: src/Module/Install.php:272 src/Module/Install.php:300 +#: src/Module/Install.php:258 src/Module/Install.php:286 msgid "Please select a default timezone for your website" msgstr "رجاء حدد اللغة الافتراضية لموقعك" -#: src/Module/Install.php:287 +#: src/Module/Install.php:273 msgid "Site settings" msgstr "إعدادت الموقع" -#: src/Module/Install.php:295 +#: src/Module/Install.php:281 msgid "Site administrator email address" msgstr "البريد الالكتروني للمدير الموقع" -#: src/Module/Install.php:297 +#: src/Module/Install.php:283 msgid "" "Your account email address must match this in order to use the web admin " "panel." msgstr "يجب أن يتطابق عنوان بريدك الإلكتروني مع هذا من أجل استخدام لوحة الإدارة." -#: src/Module/Install.php:304 +#: src/Module/Install.php:290 msgid "System Language:" msgstr "لغة النظام:" -#: src/Module/Install.php:306 +#: src/Module/Install.php:292 msgid "" "Set the default language for your Friendica installation interface and to " "send emails." msgstr "عيّن اللغة الافتراضية لواجهة تثبيت فرَندِكا ورسائل البريد الإلكتروني." -#: src/Module/Install.php:318 +#: src/Module/Install.php:304 msgid "Your Friendica site database has been installed." msgstr "ثُبتت قاعدة بيانات فرنديكا." -#: src/Module/Install.php:328 +#: src/Module/Install.php:314 msgid "Installation finished" msgstr "انتهى التثبيت" -#: src/Module/Install.php:348 +#: src/Module/Install.php:334 msgid "

What next

" msgstr "

ما التالي

" -#: src/Module/Install.php:349 +#: src/Module/Install.php:335 msgid "" "IMPORTANT: You will need to [manually] setup a scheduled task for the " "worker." msgstr "" -#: src/Module/Install.php:352 +#: src/Module/Install.php:338 #, php-format msgid "" "Go to your new Friendica node registration page " @@ -7875,29 +7870,29 @@ msgid "" " administrator email. This will allow you to enter the site admin panel." msgstr "انتقل إلى صفحة التسجيل وسجل كمستخدم جديد. تذكر أن تستخدم نفس البريد الإلكتروني الذي أدخلته للمدير. هذا سيسمح لك بالدخول إلى لوحة الإدارة." -#: src/Module/Invite.php:57 +#: src/Module/Invite.php:43 msgid "Total invitation limit exceeded." msgstr "تجاوزت حد عدد الدعوات." -#: src/Module/Invite.php:82 +#: src/Module/Invite.php:68 #, php-format msgid "%s : Not a valid email address." msgstr "%s : عناوين بريد الكتروني غير صالحة." -#: src/Module/Invite.php:108 +#: src/Module/Invite.php:94 msgid "Please join us on Friendica" msgstr "انضم إلينا في فرَندِكا" -#: src/Module/Invite.php:117 +#: src/Module/Invite.php:103 msgid "Invitation limit exceeded. Please contact your site administrator." msgstr "تجاوزت عدد الدعوات. رجاء اتصال بمدير الموقع." -#: src/Module/Invite.php:121 +#: src/Module/Invite.php:107 #, php-format msgid "%s : Message delivery failed." msgstr "%s : فشل توصيل الرسالة." -#: src/Module/Invite.php:125 +#: src/Module/Invite.php:111 #, php-format msgid "%d message sent." msgid_plural "%d messages sent." @@ -7908,11 +7903,11 @@ msgstr[3] "أُرسلت %d رسائل." msgstr[4] "أُرسلت %d رسالة." msgstr[5] "أُرسلت %d رسالة." -#: src/Module/Invite.php:143 +#: src/Module/Invite.php:129 msgid "You have no more invitations available" msgstr "لم تتبقى لديك أي دعوة" -#: src/Module/Invite.php:150 +#: src/Module/Invite.php:136 #, php-format msgid "" "Visit %s for a list of public sites that you can join. Friendica members on " @@ -7920,14 +7915,14 @@ msgid "" " other social networks." msgstr "زر %s للحصول على قائمة المواقع العمومية التي يمكنك الانضمام إليها. يمكن لجميع أعضاء مواقع شبكة فرَندِكا الوصول لبعضهم البعض، وكذلك مع عديد من الشبكات الاجتماعية الأخرى." -#: src/Module/Invite.php:152 +#: src/Module/Invite.php:138 #, php-format msgid "" "To accept this invitation, please visit and register at %s or any other " "public Friendica website." msgstr "لقبول هذه الدعوة، من فضلك زر وسجل في %s أو في أي موقع فرَندِكا آخر." -#: src/Module/Invite.php:153 +#: src/Module/Invite.php:139 #, php-format msgid "" "Friendica sites all inter-connect to create a huge privacy-enhanced social " @@ -7936,236 +7931,236 @@ msgid "" "sites you can join." msgstr "مواقع فرَندِكا كلها متصلة لإنشاء شبكة اجتماعية ضخمة تدعم الخصوصية يملكها ويسيطر عليها أعضاؤها. يمكنهم أيضا التواصل مع العديد من الشبكات الاجتماعية الأخرى. راجع %s للحصول على قائمة مواقع فرَندِكا بديلة." -#: src/Module/Invite.php:157 +#: src/Module/Invite.php:143 msgid "" "Our apologies. This system is not currently configured to connect with other" " public sites or invite members." msgstr "" -#: src/Module/Invite.php:160 +#: src/Module/Invite.php:146 msgid "" "Friendica sites all inter-connect to create a huge privacy-enhanced social " "web that is owned and controlled by its members. They can also connect with " "many traditional social networks." msgstr "" -#: src/Module/Invite.php:159 +#: src/Module/Invite.php:145 #, php-format msgid "To accept this invitation, please visit and register at %s." msgstr "لقبول هذه الدعوة، من فضلك زر وسجل في %s." -#: src/Module/Invite.php:167 +#: src/Module/Invite.php:153 msgid "Send invitations" msgstr "أرسل دعوات" -#: src/Module/Invite.php:168 +#: src/Module/Invite.php:154 msgid "Enter email addresses, one per line:" msgstr "أدخل عناوين البريد الإلكتروني ،واحد في كل سطر:" -#: src/Module/Invite.php:172 +#: src/Module/Invite.php:158 msgid "" "You are cordially invited to join me and other close friends on Friendica - " "and help us to create a better social web." msgstr "" -#: src/Module/Invite.php:174 +#: src/Module/Invite.php:160 msgid "You will need to supply this invitation code: $invite_code" msgstr "" -#: src/Module/Invite.php:174 +#: src/Module/Invite.php:160 msgid "" "Once you have registered, please connect with me via my profile page at:" msgstr "" -#: src/Module/Invite.php:176 +#: src/Module/Invite.php:162 msgid "" "For more information about the Friendica project and why we feel it is " "important, please visit http://friendi.ca" msgstr "للحصول على مزيد من المعلومات عن مشروع فرَندِكا ولماذا نرى أنه مهم، من فضلك زر http://friendi.ca" -#: src/Module/Item/Compose.php:94 +#: src/Module/Item/Compose.php:80 msgid "Please enter a post body." msgstr "" -#: src/Module/Item/Compose.php:105 +#: src/Module/Item/Compose.php:91 msgid "This feature is only available with the frio theme." msgstr "" -#: src/Module/Item/Compose.php:129 +#: src/Module/Item/Compose.php:115 msgid "Compose new personal note" msgstr "أنشئ ملاحظة شخصية جديدة" -#: src/Module/Item/Compose.php:138 +#: src/Module/Item/Compose.php:124 msgid "Compose new post" msgstr "أنشئ مشاركة جديدة" -#: src/Module/Item/Compose.php:194 +#: src/Module/Item/Compose.php:180 msgid "Visibility" msgstr "الظّهور" -#: src/Module/Item/Compose.php:210 +#: src/Module/Item/Compose.php:196 msgid "Clear the location" msgstr "امسح الموقع الجغرافي" -#: src/Module/Item/Compose.php:211 +#: src/Module/Item/Compose.php:197 msgid "Location services are unavailable on your device" msgstr "خدمات الموقع الجغرافي غير متاحة على جهازك" -#: src/Module/Item/Compose.php:212 +#: src/Module/Item/Compose.php:198 msgid "" "Location services are disabled. Please check the website's permissions on " "your device" msgstr "" -#: src/Module/Item/Compose.php:218 +#: src/Module/Item/Compose.php:204 msgid "" "You can make this page always open when you use the New Post button in the " "Theme Customization settings." msgstr "" -#: src/Module/Item/Feed.php:86 +#: src/Module/Item/Feed.php:72 msgid "The feed for this item is unavailable." msgstr "تغذية هذا العنصر غير متوفرة." -#: src/Module/Item/Follow.php:51 +#: src/Module/Item/Follow.php:37 msgid "Unable to follow this item." msgstr "تتعذر متابعة هذا العنصر." -#: src/Module/Maintenance.php:48 src/Module/Maintenance.php:53 +#: src/Module/Maintenance.php:34 src/Module/Maintenance.php:39 msgid "System down for maintenance" msgstr "النظام مغلق للصيانة" -#: src/Module/Maintenance.php:54 +#: src/Module/Maintenance.php:40 msgid "" "This Friendica node is currently in maintenance mode, either automatically " "because it is self-updating or manually by the node administrator. This " "condition should be temporary, please come back in a few minutes." msgstr "هذه العقدة في وضع الصيانة حاليًا، وهذا إما تلقائيا بسبب التحديث أو يدويا من قبل مدير العقدة. يرجى العودة في غضون بضع دقائق." -#: src/Module/Manifest.php:40 +#: src/Module/Manifest.php:26 msgid "A Decentralized Social Network" msgstr "شبكة اجتماعية لامركزية" -#: src/Module/Media/Attachment/Browser.php:58 -#: src/Module/Media/Photo/Browser.php:59 +#: src/Module/Media/Attachment/Browser.php:44 +#: src/Module/Media/Photo/Browser.php:45 msgid "You need to be logged in to access this page." msgstr "" -#: src/Module/Media/Attachment/Browser.php:74 +#: src/Module/Media/Attachment/Browser.php:60 msgid "Files" msgstr "الملفات" -#: src/Module/Media/Attachment/Browser.php:79 -#: src/Module/Media/Photo/Browser.php:90 -#: src/Module/Settings/Profile/Photo/Index.php:127 +#: src/Module/Media/Attachment/Browser.php:65 +#: src/Module/Media/Photo/Browser.php:76 +#: src/Module/Settings/Profile/Photo/Index.php:113 msgid "Upload" msgstr "ارفع" -#: src/Module/Media/Attachment/Upload.php:97 +#: src/Module/Media/Attachment/Upload.php:83 msgid "Sorry, maybe your upload is bigger than the PHP configuration allows" msgstr "عذراً، ربّما يكون الرفع أكبر من ما يسمح به ضبط PHP" -#: src/Module/Media/Attachment/Upload.php:97 +#: src/Module/Media/Attachment/Upload.php:83 msgid "Or - did you try to upload an empty file?" msgstr "أو - هل حاولت تحميل ملف فارغ؟" -#: src/Module/Media/Attachment/Upload.php:104 +#: src/Module/Media/Attachment/Upload.php:90 #, php-format msgid "File exceeds size limit of %s" msgstr "تجاوز الملف الحد الأقصى للحجم وهو %s" -#: src/Module/Media/Attachment/Upload.php:114 +#: src/Module/Media/Attachment/Upload.php:100 msgid "File upload failed." msgstr "فشل رفع الملف." -#: src/Module/Media/Photo/Upload.php:150 src/Module/Media/Photo/Upload.php:151 -#: src/Module/Profile/Photos.php:215 -#: src/Module/Settings/Profile/Photo/Index.php:67 +#: src/Module/Media/Photo/Upload.php:136 src/Module/Media/Photo/Upload.php:137 +#: src/Module/Profile/Photos.php:201 +#: src/Module/Settings/Profile/Photo/Index.php:53 msgid "Unable to process image." msgstr "تعذرت معالجة الصورة." -#: src/Module/Media/Photo/Upload.php:176 src/Module/Profile/Photos.php:235 -#: src/Module/Settings/Profile/Photo/Index.php:94 +#: src/Module/Media/Photo/Upload.php:162 src/Module/Profile/Photos.php:221 +#: src/Module/Settings/Profile/Photo/Index.php:80 msgid "Image upload failed." msgstr "فشل رفع الصورة." -#: src/Module/Moderation/BaseUsers.php:72 +#: src/Module/Moderation/BaseUsers.php:59 msgid "List of all users" msgstr "قائمة المستخدمين" -#: src/Module/Moderation/BaseUsers.php:77 +#: src/Module/Moderation/BaseUsers.php:64 msgid "Active" msgstr "نشط" -#: src/Module/Moderation/BaseUsers.php:80 +#: src/Module/Moderation/BaseUsers.php:67 msgid "List of active accounts" msgstr "قائمة الحسابات النشطة" -#: src/Module/Moderation/BaseUsers.php:88 +#: src/Module/Moderation/BaseUsers.php:75 msgid "List of pending registrations" msgstr "قائمة التسجيلات المعلقة" -#: src/Module/Moderation/BaseUsers.php:96 +#: src/Module/Moderation/BaseUsers.php:83 msgid "List of blocked users" msgstr "قائمة المستخدمين المحجوبين" -#: src/Module/Moderation/BaseUsers.php:101 +#: src/Module/Moderation/BaseUsers.php:88 msgid "Deleted" msgstr "حُذف" -#: src/Module/Moderation/BaseUsers.php:104 +#: src/Module/Moderation/BaseUsers.php:91 msgid "List of pending user deletions" msgstr "قائمة الحذف المعلق للمستخدمين" -#: src/Module/Moderation/BaseUsers.php:119 src/Module/Settings/Account.php:487 +#: src/Module/Moderation/BaseUsers.php:108 src/Module/Settings/Account.php:473 msgid "Normal Account Page" msgstr "صفحة حساب عادي" -#: src/Module/Moderation/BaseUsers.php:120 src/Module/Settings/Account.php:494 +#: src/Module/Moderation/BaseUsers.php:109 src/Module/Settings/Account.php:480 msgid "Soapbox Page" msgstr "صفحة سياسي" -#: src/Module/Moderation/BaseUsers.php:121 src/Module/Settings/Account.php:501 +#: src/Module/Moderation/BaseUsers.php:110 src/Module/Settings/Account.php:487 msgid "Public Group" msgstr "" -#: src/Module/Moderation/BaseUsers.php:122 src/Module/Settings/Account.php:508 +#: src/Module/Moderation/BaseUsers.php:111 src/Module/Settings/Account.php:494 msgid "Public Group - Restricted" msgstr "" -#: src/Module/Moderation/BaseUsers.php:123 src/Module/Settings/Account.php:515 +#: src/Module/Moderation/BaseUsers.php:112 src/Module/Settings/Account.php:501 msgid "Automatic Friend Page" msgstr "صفحة اشترك تلقائي" -#: src/Module/Moderation/BaseUsers.php:124 +#: src/Module/Moderation/BaseUsers.php:113 msgid "Private Group" msgstr "" -#: src/Module/Moderation/BaseUsers.php:127 -#: src/Module/Moderation/Summary.php:53 src/Module/Settings/Account.php:458 +#: src/Module/Moderation/BaseUsers.php:116 +#: src/Module/Moderation/Summary.php:39 src/Module/Settings/Account.php:444 msgid "Personal Page" msgstr "صفحة شخصية" -#: src/Module/Moderation/BaseUsers.php:128 -#: src/Module/Moderation/Summary.php:54 src/Module/Settings/Account.php:465 +#: src/Module/Moderation/BaseUsers.php:117 +#: src/Module/Moderation/Summary.php:40 src/Module/Settings/Account.php:451 msgid "Organisation Page" msgstr "صفحة منظمة" -#: src/Module/Moderation/BaseUsers.php:129 -#: src/Module/Moderation/Summary.php:55 src/Module/Settings/Account.php:472 +#: src/Module/Moderation/BaseUsers.php:118 +#: src/Module/Moderation/Summary.php:41 src/Module/Settings/Account.php:458 msgid "News Page" msgstr "صفحة إخبارية" -#: src/Module/Moderation/BaseUsers.php:130 -#: src/Module/Moderation/Summary.php:56 src/Module/Settings/Account.php:479 +#: src/Module/Moderation/BaseUsers.php:119 +#: src/Module/Moderation/Summary.php:42 src/Module/Settings/Account.php:465 msgid "Community Group" msgstr "" -#: src/Module/Moderation/Blocklist/Contact.php:70 +#: src/Module/Moderation/Blocklist/Contact.php:56 msgid "You can't block a local contact, please block the user instead" msgstr "" -#: src/Module/Moderation/Blocklist/Contact.php:89 +#: src/Module/Moderation/Blocklist/Contact.php:75 #, php-format msgid "%s contact unblocked" msgid_plural "%s contacts unblocked" @@ -8176,54 +8171,54 @@ msgstr[3] "رُفع الحجب عن %s مستخدمين" msgstr[4] "رُفع الحجب عن %s مستخدمًا" msgstr[5] "رُفع الحجب عن %s مستخدم" -#: src/Module/Moderation/Blocklist/Contact.php:111 +#: src/Module/Moderation/Blocklist/Contact.php:97 msgid "Remote Contact Blocklist" msgstr "قائمة المتراسلين البِعاد المحظورين" -#: src/Module/Moderation/Blocklist/Contact.php:112 +#: src/Module/Moderation/Blocklist/Contact.php:98 msgid "" "This page allows you to prevent any message from a remote contact to reach " "your node." msgstr "هذه الصفحة تمنع رسائل المستخدمين البِعاد من الوصول لعقدتك." -#: src/Module/Moderation/Blocklist/Contact.php:113 +#: src/Module/Moderation/Blocklist/Contact.php:99 msgid "Block Remote Contact" msgstr "احجب مستخدمًا بعيدًا" -#: src/Module/Moderation/Blocklist/Contact.php:114 -#: src/Module/Moderation/Users/Active.php:135 -#: src/Module/Moderation/Users/Blocked.php:135 -#: src/Module/Moderation/Users/Index.php:149 -#: src/Module/Moderation/Users/Pending.php:98 +#: src/Module/Moderation/Blocklist/Contact.php:100 +#: src/Module/Moderation/Users/Active.php:121 +#: src/Module/Moderation/Users/Blocked.php:121 +#: src/Module/Moderation/Users/Index.php:135 +#: src/Module/Moderation/Users/Pending.php:84 msgid "select all" msgstr "اختر الكل" -#: src/Module/Moderation/Blocklist/Contact.php:115 +#: src/Module/Moderation/Blocklist/Contact.php:101 msgid "select none" msgstr "ألغ الاختيار" -#: src/Module/Moderation/Blocklist/Contact.php:118 +#: src/Module/Moderation/Blocklist/Contact.php:104 msgid "No remote contact is blocked from this node." msgstr "لم يُحجب متراسل بعيد من هذه العقدة." -#: src/Module/Moderation/Blocklist/Contact.php:120 +#: src/Module/Moderation/Blocklist/Contact.php:106 msgid "Blocked Remote Contacts" msgstr "المستخدمون البِعاد المحجبون" -#: src/Module/Moderation/Blocklist/Contact.php:121 +#: src/Module/Moderation/Blocklist/Contact.php:107 msgid "Block New Remote Contact" msgstr "احجب مستخدمًا بعيدًا" -#: src/Module/Moderation/Blocklist/Contact.php:122 -#: src/Module/Moderation/Reports.php:116 +#: src/Module/Moderation/Blocklist/Contact.php:108 +#: src/Module/Moderation/Reports.php:102 msgid "Photo" msgstr "صورة" -#: src/Module/Moderation/Blocklist/Contact.php:122 +#: src/Module/Moderation/Blocklist/Contact.php:108 msgid "Reason" msgstr "السبب" -#: src/Module/Moderation/Blocklist/Contact.php:128 +#: src/Module/Moderation/Blocklist/Contact.php:114 #, php-format msgid "%s total blocked contact" msgid_plural "%s total blocked contacts" @@ -8234,30 +8229,30 @@ msgstr[3] "%s متراسلين محجوبين" msgstr[4] "%s متراسلًا محجوبًا" msgstr[5] "%s متراسل محجوب" -#: src/Module/Moderation/Blocklist/Contact.php:131 +#: src/Module/Moderation/Blocklist/Contact.php:117 msgid "URL of the remote contact to block." msgstr "عنوان المتراسل البعيد المراد حجبه." -#: src/Module/Moderation/Blocklist/Contact.php:132 +#: src/Module/Moderation/Blocklist/Contact.php:118 msgid "Also purge contact" msgstr "امسح المتراسل أيضًا" -#: src/Module/Moderation/Blocklist/Contact.php:132 +#: src/Module/Moderation/Blocklist/Contact.php:118 msgid "" "Removes all content related to this contact from the node. Keeps the contact" " record. This action cannot be undone." msgstr "يزيل جميع المحتويات المتعلقة بهذا المتراسل من العقدة. ويحتفظ بسجل للمتراسل. لا يمكن التراجع عن هذا الإجراء." -#: src/Module/Moderation/Blocklist/Contact.php:133 -#: src/Module/Moderation/Blocklist/Server/Import.php:124 +#: src/Module/Moderation/Blocklist/Contact.php:119 +#: src/Module/Moderation/Blocklist/Server/Import.php:108 msgid "Block Reason" msgstr "سبب الحجب" -#: src/Module/Moderation/Blocklist/Server/Add.php:80 +#: src/Module/Moderation/Blocklist/Server/Add.php:66 msgid "Server domain pattern added to the blocklist." msgstr "أُضيفت صيغة النطاق لقائمة الحجب." -#: src/Module/Moderation/Blocklist/Server/Add.php:88 +#: src/Module/Moderation/Blocklist/Server/Add.php:74 #, php-format msgid "%s server scheduled to be purged." msgid_plural "%s servers scheduled to be purged." @@ -8268,17 +8263,17 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#: src/Module/Moderation/Blocklist/Server/Add.php:120 -#: src/Module/Moderation/Blocklist/Server/Import.php:117 +#: src/Module/Moderation/Blocklist/Server/Add.php:106 +#: src/Module/Moderation/Blocklist/Server/Import.php:101 msgid "← Return to the list" msgstr "→رجوع للقائمة" -#: src/Module/Moderation/Blocklist/Server/Add.php:122 +#: src/Module/Moderation/Blocklist/Server/Add.php:108 msgid "Block A New Server Domain Pattern" msgstr "احجب صيغة نطاق جديدة" -#: src/Module/Moderation/Blocklist/Server/Add.php:123 -#: src/Module/Moderation/Blocklist/Server/Index.php:99 +#: src/Module/Moderation/Blocklist/Server/Add.php:109 +#: src/Module/Moderation/Blocklist/Server/Index.php:85 msgid "" "

The server domain pattern syntax is case-insensitive shell wildcard, comprising the following special characters:

\n" "
    \n" @@ -8287,30 +8282,30 @@ msgid "" "
" msgstr "

تنسيق صيّغ النطاق غير حساس لحالة الأحرف ويستخدم محارف بَدلِ الصدفة، بما في ذلك المحارف التالية:

\n
    \n\t
  • *: أي عدد من المحارف
  • \n\t
  • ?: محرف واحد
  • \n
" -#: src/Module/Moderation/Blocklist/Server/Add.php:128 -#: src/Module/Moderation/Blocklist/Server/Index.php:107 +#: src/Module/Moderation/Blocklist/Server/Add.php:114 +#: src/Module/Moderation/Blocklist/Server/Index.php:93 msgid "Check pattern" msgstr "تحقق من الصيغة" -#: src/Module/Moderation/Blocklist/Server/Add.php:129 +#: src/Module/Moderation/Blocklist/Server/Add.php:115 msgid "Matching known servers" msgstr "يطابق الخوادم المعروفة" -#: src/Module/Moderation/Blocklist/Server/Add.php:130 -#: src/Module/Settings/Server/Action.php:76 -#: src/Module/Settings/Server/Index.php:106 +#: src/Module/Moderation/Blocklist/Server/Add.php:116 +#: src/Module/Settings/Server/Action.php:62 +#: src/Module/Settings/Server/Index.php:92 msgid "Server Name" msgstr "اسم الخادم" -#: src/Module/Moderation/Blocklist/Server/Add.php:131 +#: src/Module/Moderation/Blocklist/Server/Add.php:117 msgid "Server Domain" msgstr "نطاق الخادم" -#: src/Module/Moderation/Blocklist/Server/Add.php:132 +#: src/Module/Moderation/Blocklist/Server/Add.php:118 msgid "Known Contacts" msgstr "المتراسلون المعروفون" -#: src/Module/Moderation/Blocklist/Server/Add.php:133 +#: src/Module/Moderation/Blocklist/Server/Add.php:119 #, php-format msgid "%d known server" msgid_plural "%d known servers" @@ -8321,27 +8316,27 @@ msgstr[3] "%d خوادم معروفة" msgstr[4] "%d خادمًا معروفًا" msgstr[5] "%d خادمٍ معروفٍ" -#: src/Module/Moderation/Blocklist/Server/Add.php:134 +#: src/Module/Moderation/Blocklist/Server/Add.php:120 msgid "Add pattern to the blocklist" msgstr "أضف المرشِّح لقائمة الحجب" -#: src/Module/Moderation/Blocklist/Server/Add.php:136 -#: src/Module/Moderation/Blocklist/Server/Index.php:116 +#: src/Module/Moderation/Blocklist/Server/Add.php:122 +#: src/Module/Moderation/Blocklist/Server/Index.php:102 msgid "Server Domain Pattern" msgstr "صيغة النطاق" -#: src/Module/Moderation/Blocklist/Server/Add.php:136 -#: src/Module/Moderation/Blocklist/Server/Index.php:116 +#: src/Module/Moderation/Blocklist/Server/Add.php:122 +#: src/Module/Moderation/Blocklist/Server/Index.php:102 msgid "" "The domain pattern of the new server to add to the blocklist. Do not include" " the protocol." msgstr "صيغة النطاق المراد إضافتها إلى قائمة الحجب. لا تُضمّن الميفاق." -#: src/Module/Moderation/Blocklist/Server/Add.php:137 +#: src/Module/Moderation/Blocklist/Server/Add.php:123 msgid "Purge server" msgstr "امسح الخادم" -#: src/Module/Moderation/Blocklist/Server/Add.php:137 +#: src/Module/Moderation/Blocklist/Server/Add.php:123 msgid "" "Also purges all the locally stored content authored by the known contacts " "registered on that server. Keeps the contacts and the server records. This " @@ -8357,26 +8352,26 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#: src/Module/Moderation/Blocklist/Server/Add.php:138 +#: src/Module/Moderation/Blocklist/Server/Add.php:124 msgid "Block reason" msgstr "سبب الحجب" -#: src/Module/Moderation/Blocklist/Server/Add.php:138 +#: src/Module/Moderation/Blocklist/Server/Add.php:124 msgid "" "The reason why you blocked this server domain pattern. This reason will be " "shown publicly in the server information page." msgstr "سبب حجب صيغة نطاق الخادم. سوف يظهر علنًا في صفحة معلومات الخادم." -#: src/Module/Moderation/Blocklist/Server/Import.php:74 -#: src/Module/Moderation/Blocklist/Server/Import.php:83 +#: src/Module/Moderation/Blocklist/Server/Import.php:60 +#: src/Module/Moderation/Blocklist/Server/Import.php:67 msgid "Error importing pattern file" msgstr "" -#: src/Module/Moderation/Blocklist/Server/Import.php:89 +#: src/Module/Moderation/Blocklist/Server/Import.php:74 msgid "Local blocklist replaced with the provided file." msgstr "" -#: src/Module/Moderation/Blocklist/Server/Import.php:93 +#: src/Module/Moderation/Blocklist/Server/Import.php:78 #, php-format msgid "%d pattern was added to the local blocklist." msgid_plural "%d patterns were added to the local blocklist." @@ -8387,42 +8382,42 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#: src/Module/Moderation/Blocklist/Server/Import.php:95 +#: src/Module/Moderation/Blocklist/Server/Import.php:80 msgid "No pattern was added to the local blocklist." msgstr "" -#: src/Module/Moderation/Blocklist/Server/Import.php:119 +#: src/Module/Moderation/Blocklist/Server/Import.php:103 msgid "Import a Server Domain Pattern Blocklist" msgstr "" -#: src/Module/Moderation/Blocklist/Server/Import.php:120 +#: src/Module/Moderation/Blocklist/Server/Import.php:104 msgid "" "

This file can be downloaded from the /friendica path of any " "Friendica server.

" msgstr "" -#: src/Module/Moderation/Blocklist/Server/Import.php:121 -#: src/Module/Moderation/Blocklist/Server/Index.php:106 +#: src/Module/Moderation/Blocklist/Server/Import.php:105 +#: src/Module/Moderation/Blocklist/Server/Index.php:92 msgid "Upload file" msgstr "" -#: src/Module/Moderation/Blocklist/Server/Import.php:122 +#: src/Module/Moderation/Blocklist/Server/Import.php:106 msgid "Patterns to import" msgstr "" -#: src/Module/Moderation/Blocklist/Server/Import.php:123 +#: src/Module/Moderation/Blocklist/Server/Import.php:107 msgid "Domain Pattern" msgstr "" -#: src/Module/Moderation/Blocklist/Server/Import.php:125 +#: src/Module/Moderation/Blocklist/Server/Import.php:109 msgid "Import Mode" msgstr "" -#: src/Module/Moderation/Blocklist/Server/Import.php:126 +#: src/Module/Moderation/Blocklist/Server/Import.php:110 msgid "Import Patterns" msgstr "" -#: src/Module/Moderation/Blocklist/Server/Import.php:127 +#: src/Module/Moderation/Blocklist/Server/Import.php:111 #, php-format msgid "%d total pattern" msgid_plural "%d total patterns" @@ -8433,233 +8428,233 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#: src/Module/Moderation/Blocklist/Server/Import.php:129 -#: src/Module/Moderation/Blocklist/Server/Index.php:115 +#: src/Module/Moderation/Blocklist/Server/Import.php:113 +#: src/Module/Moderation/Blocklist/Server/Index.php:101 msgid "Server domain pattern blocklist CSV file" msgstr "" -#: src/Module/Moderation/Blocklist/Server/Import.php:130 +#: src/Module/Moderation/Blocklist/Server/Import.php:114 msgid "Append" msgstr "" -#: src/Module/Moderation/Blocklist/Server/Import.php:130 +#: src/Module/Moderation/Blocklist/Server/Import.php:114 msgid "" "Imports patterns from the file that weren't already existing in the current " "blocklist." msgstr "" -#: src/Module/Moderation/Blocklist/Server/Import.php:131 +#: src/Module/Moderation/Blocklist/Server/Import.php:115 msgid "Replace" msgstr "" -#: src/Module/Moderation/Blocklist/Server/Import.php:131 +#: src/Module/Moderation/Blocklist/Server/Import.php:115 msgid "Replaces the current blocklist by the imported patterns." msgstr "" -#: src/Module/Moderation/Blocklist/Server/Index.php:86 -#: src/Module/Moderation/Blocklist/Server/Index.php:110 -#: src/Module/Settings/Channels.php:231 +#: src/Module/Moderation/Blocklist/Server/Index.php:72 +#: src/Module/Moderation/Blocklist/Server/Index.php:96 +#: src/Module/Settings/Channels.php:217 msgid "Blocked server domain pattern" msgstr "صيّغ النطاقات المحجوبة" -#: src/Module/Moderation/Blocklist/Server/Index.php:88 +#: src/Module/Moderation/Blocklist/Server/Index.php:74 msgid "Delete server domain pattern" msgstr "احذف صيغة النطاق" -#: src/Module/Moderation/Blocklist/Server/Index.php:88 +#: src/Module/Moderation/Blocklist/Server/Index.php:74 msgid "Check to delete this entry from the blocklist" msgstr "أشّر لحذف المدخل من قائمة الحجب" -#: src/Module/Moderation/Blocklist/Server/Index.php:96 +#: src/Module/Moderation/Blocklist/Server/Index.php:82 msgid "Server Domain Pattern Blocklist" msgstr "قائمة الحجب لصيّغ النطاق" -#: src/Module/Moderation/Blocklist/Server/Index.php:97 +#: src/Module/Moderation/Blocklist/Server/Index.php:83 msgid "" "This page can be used to define a blocklist of server domain patterns from " "the federated network that are not allowed to interact with your node. For " "each domain pattern you should also provide the reason why you block it." msgstr "يمكن استخدام هذه الصفحة لتعريف صيّغ النطاقات لححب الخوادم من الشبكة الموحدة لمنع تفاعلها مع عقدتك. لكل صيغة نطاق يجب عليك تقديم سبب الحجب." -#: src/Module/Moderation/Blocklist/Server/Index.php:98 +#: src/Module/Moderation/Blocklist/Server/Index.php:84 msgid "" "The list of blocked server domain patterns will be made publically available" " on the /friendica page so that your users and " "people investigating communication problems can find the reason easily." msgstr "ستتاح قائمة صيّغ النطاقات الخادم المحجوبة في صفحة /friendica بحيث يمكن للمستخدمين التحقق من الخوادم اذا واجهوا مشكلة في الاتصال بها." -#: src/Module/Moderation/Blocklist/Server/Index.php:104 +#: src/Module/Moderation/Blocklist/Server/Index.php:90 msgid "Import server domain pattern blocklist" msgstr "" -#: src/Module/Moderation/Blocklist/Server/Index.php:105 +#: src/Module/Moderation/Blocklist/Server/Index.php:91 msgid "Add new entry to the blocklist" msgstr "أضف مُدخلًا جديد إلى القائمة الحجب" -#: src/Module/Moderation/Blocklist/Server/Index.php:108 +#: src/Module/Moderation/Blocklist/Server/Index.php:94 msgid "Save changes to the blocklist" msgstr "احفظ التغييرات في قائمة الحجب" -#: src/Module/Moderation/Blocklist/Server/Index.php:109 +#: src/Module/Moderation/Blocklist/Server/Index.php:95 msgid "Current Entries in the Blocklist" msgstr "المدخلات الموجودة في قائمة الحجب" -#: src/Module/Moderation/Blocklist/Server/Index.php:112 +#: src/Module/Moderation/Blocklist/Server/Index.php:98 msgid "Delete entry from the blocklist" msgstr "أزل مدخلًا من قائمة الحجب" -#: src/Module/Moderation/Blocklist/Server/Index.php:113 +#: src/Module/Moderation/Blocklist/Server/Index.php:99 msgid "Delete entry from the blocklist?" msgstr "أتريد إزالة المدخل من قائمة الحجب؟" -#: src/Module/Moderation/Item/Delete.php:50 +#: src/Module/Moderation/Item/Delete.php:36 msgid "Item marked for deletion." msgstr "سيُحذف العنصر." -#: src/Module/Moderation/Item/Delete.php:63 +#: src/Module/Moderation/Item/Delete.php:49 msgid "Delete this Item" msgstr "احذف العنصر" -#: src/Module/Moderation/Item/Delete.php:64 +#: src/Module/Moderation/Item/Delete.php:50 msgid "" "On this page you can delete an item from your node. If the item is a top " "level posting, the entire thread will be deleted." msgstr "في هذه الصفحة يمكنك حذف عنصر من عقدتك. إذا كان العنصر هو المشاركة الأصلية، سيحذف النقاش بأكمله." -#: src/Module/Moderation/Item/Delete.php:65 +#: src/Module/Moderation/Item/Delete.php:51 msgid "" "You need to know the GUID of the item. You can find it e.g. by looking at " "the display URL. The last part of http://example.com/display/123456 is the " "GUID, here 123456." msgstr "يجب أن تعرف GUID الخاص بالعنصر. يمكنك العثور عليه عن طريق اختيار العنصر ثم قراءة عنوان الرابط. الجزء الأخير من الرابط هو GUID. مثال: http://example.com/display/123456 حيث GUID هو 123456." -#: src/Module/Moderation/Item/Delete.php:67 +#: src/Module/Moderation/Item/Delete.php:53 msgid "GUID" msgstr "" -#: src/Module/Moderation/Item/Delete.php:67 +#: src/Module/Moderation/Item/Delete.php:53 msgid "The GUID of the item you want to delete." msgstr "" -#: src/Module/Moderation/Item/Source.php:83 +#: src/Module/Moderation/Item/Source.php:69 msgid "Item Id" msgstr "معرّف العنصر" -#: src/Module/Moderation/Item/Source.php:84 +#: src/Module/Moderation/Item/Source.php:70 msgid "Item URI" msgstr "رابط العنصر" -#: src/Module/Moderation/Item/Source.php:86 +#: src/Module/Moderation/Item/Source.php:72 msgid "Terms" msgstr "الشروط" -#: src/Module/Moderation/Item/Source.php:87 +#: src/Module/Moderation/Item/Source.php:73 msgid "Tag" msgstr "وسم" -#: src/Module/Moderation/Item/Source.php:88 -#: src/Module/Moderation/Users/Active.php:126 -#: src/Module/Moderation/Users/Blocked.php:126 -#: src/Module/Moderation/Users/Index.php:140 +#: src/Module/Moderation/Item/Source.php:74 +#: src/Module/Moderation/Users/Active.php:112 +#: src/Module/Moderation/Users/Blocked.php:112 +#: src/Module/Moderation/Users/Index.php:126 msgid "Type" msgstr "نوع" -#: src/Module/Moderation/Item/Source.php:89 +#: src/Module/Moderation/Item/Source.php:75 msgid "Term" msgstr "مصطلح" -#: src/Module/Moderation/Item/Source.php:90 +#: src/Module/Moderation/Item/Source.php:76 msgid "URL" msgstr "رابط" -#: src/Module/Moderation/Item/Source.php:92 +#: src/Module/Moderation/Item/Source.php:78 msgid "Implicit Mention" msgstr "ذِكر صريح" -#: src/Module/Moderation/Item/Source.php:94 +#: src/Module/Moderation/Item/Source.php:80 msgid "Item not found" msgstr "لم يُعثر على العنصر" -#: src/Module/Moderation/Item/Source.php:95 +#: src/Module/Moderation/Item/Source.php:81 msgid "No source recorded" msgstr "" -#: src/Module/Moderation/Item/Source.php:96 +#: src/Module/Moderation/Item/Source.php:82 msgid "" "Please make sure the debug.store_source config key is set in " "config/local.config.php for future items to have sources." msgstr "" -#: src/Module/Moderation/Item/Source.php:98 +#: src/Module/Moderation/Item/Source.php:84 msgid "Item Guid" msgstr "" -#: src/Module/Moderation/Report/Create.php:95 +#: src/Module/Moderation/Report/Create.php:81 msgid "Contact not found or their server is already blocked on this node." msgstr "" -#: src/Module/Moderation/Report/Create.php:136 +#: src/Module/Moderation/Report/Create.php:122 msgid "Please login to access this page." msgstr "" -#: src/Module/Moderation/Report/Create.php:165 -#: src/Module/Moderation/Report/Create.php:180 -#: src/Module/Moderation/Report/Create.php:208 -#: src/Module/Moderation/Report/Create.php:260 -#: src/Module/Moderation/Report/Create.php:279 +#: src/Module/Moderation/Report/Create.php:151 +#: src/Module/Moderation/Report/Create.php:166 +#: src/Module/Moderation/Report/Create.php:194 +#: src/Module/Moderation/Report/Create.php:246 +#: src/Module/Moderation/Report/Create.php:265 msgid "Create Moderation Report" msgstr "" -#: src/Module/Moderation/Report/Create.php:166 +#: src/Module/Moderation/Report/Create.php:152 msgid "Pick Contact" msgstr "" -#: src/Module/Moderation/Report/Create.php:167 +#: src/Module/Moderation/Report/Create.php:153 msgid "" "Please enter below the contact address or profile URL you would like to " "create a moderation report about." msgstr "" -#: src/Module/Moderation/Report/Create.php:171 +#: src/Module/Moderation/Report/Create.php:157 msgid "Contact address/URL" msgstr "" -#: src/Module/Moderation/Report/Create.php:181 +#: src/Module/Moderation/Report/Create.php:167 msgid "Pick Category" msgstr "" -#: src/Module/Moderation/Report/Create.php:182 +#: src/Module/Moderation/Report/Create.php:168 msgid "Please pick below the category of your report." msgstr "" -#: src/Module/Moderation/Report/Create.php:186 -#: src/Module/Moderation/Report/Create.php:311 +#: src/Module/Moderation/Report/Create.php:172 +#: src/Module/Moderation/Report/Create.php:297 msgid "Spam" msgstr "" -#: src/Module/Moderation/Report/Create.php:186 +#: src/Module/Moderation/Report/Create.php:172 msgid "" "This contact is publishing many repeated/overly long posts/replies or " "advertising their product/websites in otherwise irrelevant conversations." msgstr "" -#: src/Module/Moderation/Report/Create.php:187 -#: src/Module/Moderation/Report/Create.php:312 +#: src/Module/Moderation/Report/Create.php:173 +#: src/Module/Moderation/Report/Create.php:298 msgid "Illegal Content" msgstr "" -#: src/Module/Moderation/Report/Create.php:187 +#: src/Module/Moderation/Report/Create.php:173 msgid "" "This contact is publishing content that is considered illegal in this node's" " hosting juridiction." msgstr "" -#: src/Module/Moderation/Report/Create.php:188 -#: src/Module/Moderation/Report/Create.php:313 +#: src/Module/Moderation/Report/Create.php:174 +#: src/Module/Moderation/Report/Create.php:299 msgid "Community Safety" msgstr "" -#: src/Module/Moderation/Report/Create.php:188 +#: src/Module/Moderation/Report/Create.php:174 msgid "" "This contact aggravated you or other people, by being provocative or " "insensitive, intentionally or not. This includes disclosing people's private" @@ -8667,12 +8662,12 @@ msgid "" "replies." msgstr "" -#: src/Module/Moderation/Report/Create.php:189 -#: src/Module/Moderation/Report/Create.php:314 +#: src/Module/Moderation/Report/Create.php:175 +#: src/Module/Moderation/Report/Create.php:300 msgid "Unwanted Content/Behavior" msgstr "" -#: src/Module/Moderation/Report/Create.php:189 +#: src/Module/Moderation/Report/Create.php:175 msgid "" "This contact has repeatedly published content irrelevant to the node's theme" " or is openly criticizing the node's administration/moderation without " @@ -8680,89 +8675,89 @@ msgid "" "nitpicking on a sensitive topic." msgstr "" -#: src/Module/Moderation/Report/Create.php:190 -#: src/Module/Moderation/Report/Create.php:315 +#: src/Module/Moderation/Report/Create.php:176 +#: src/Module/Moderation/Report/Create.php:301 msgid "Rules Violation" msgstr "" -#: src/Module/Moderation/Report/Create.php:190 +#: src/Module/Moderation/Report/Create.php:176 msgid "" "This contact violated one or more rules of this node. You will be able to " "pick which one(s) in the next step." msgstr "" -#: src/Module/Moderation/Report/Create.php:191 +#: src/Module/Moderation/Report/Create.php:177 msgid "" "Please elaborate below why you submitted this report. The more details you " "provide, the better your report can be handled." msgstr "" -#: src/Module/Moderation/Report/Create.php:193 +#: src/Module/Moderation/Report/Create.php:179 msgid "Additional Information" msgstr "" -#: src/Module/Moderation/Report/Create.php:193 +#: src/Module/Moderation/Report/Create.php:179 msgid "" "Please provide any additional information relevant to this particular " "report. You will be able to attach posts by this contact in the next step, " "but any context is welcome." msgstr "" -#: src/Module/Moderation/Report/Create.php:209 +#: src/Module/Moderation/Report/Create.php:195 msgid "Pick Rules" msgstr "" -#: src/Module/Moderation/Report/Create.php:210 +#: src/Module/Moderation/Report/Create.php:196 msgid "Please pick below the node rules you believe this contact violated." msgstr "" -#: src/Module/Moderation/Report/Create.php:261 +#: src/Module/Moderation/Report/Create.php:247 msgid "Pick Posts" msgstr "" -#: src/Module/Moderation/Report/Create.php:262 +#: src/Module/Moderation/Report/Create.php:248 msgid "Please optionally pick posts to attach to your report." msgstr "" -#: src/Module/Moderation/Report/Create.php:281 +#: src/Module/Moderation/Report/Create.php:267 msgid "Submit Report" msgstr "" -#: src/Module/Moderation/Report/Create.php:282 +#: src/Module/Moderation/Report/Create.php:268 msgid "Further Action" msgstr "" -#: src/Module/Moderation/Report/Create.php:283 +#: src/Module/Moderation/Report/Create.php:269 msgid "" "You can also perform one of the following action on the contact you " "reported:" msgstr "" -#: src/Module/Moderation/Report/Create.php:291 +#: src/Module/Moderation/Report/Create.php:277 msgid "Nothing" msgstr "" -#: src/Module/Moderation/Report/Create.php:292 +#: src/Module/Moderation/Report/Create.php:278 msgid "Collapse contact" msgstr "" -#: src/Module/Moderation/Report/Create.php:292 +#: src/Module/Moderation/Report/Create.php:278 msgid "" "Their posts and replies will keep appearing in your Network page but their " "content will be collapsed by default." msgstr "" -#: src/Module/Moderation/Report/Create.php:293 +#: src/Module/Moderation/Report/Create.php:279 msgid "" "Their posts won't appear in your Network page anymore, but their replies can" " appear in forum threads. They still can follow you." msgstr "" -#: src/Module/Moderation/Report/Create.php:294 +#: src/Module/Moderation/Report/Create.php:280 msgid "Block contact" msgstr "" -#: src/Module/Moderation/Report/Create.php:294 +#: src/Module/Moderation/Report/Create.php:280 msgid "" "Their posts won't appear in your Network page anymore, but their replies can" " appear in forum threads, with their content collapsed by default. They " @@ -8770,51 +8765,51 @@ msgid "" "means." msgstr "" -#: src/Module/Moderation/Report/Create.php:297 +#: src/Module/Moderation/Report/Create.php:283 msgid "Forward report" msgstr "" -#: src/Module/Moderation/Report/Create.php:297 +#: src/Module/Moderation/Report/Create.php:283 msgid "Would you ike to forward this report to the remote server?" msgstr "" -#: src/Module/Moderation/Report/Create.php:330 +#: src/Module/Moderation/Report/Create.php:316 msgid "1. Pick a contact" msgstr "" -#: src/Module/Moderation/Report/Create.php:331 +#: src/Module/Moderation/Report/Create.php:317 msgid "2. Pick a category" msgstr "" -#: src/Module/Moderation/Report/Create.php:332 +#: src/Module/Moderation/Report/Create.php:318 msgid "2a. Pick rules" msgstr "" -#: src/Module/Moderation/Report/Create.php:333 +#: src/Module/Moderation/Report/Create.php:319 msgid "2b. Add comment" msgstr "" -#: src/Module/Moderation/Report/Create.php:334 +#: src/Module/Moderation/Report/Create.php:320 msgid "3. Pick posts" msgstr "" -#: src/Module/Moderation/Reports.php:111 +#: src/Module/Moderation/Reports.php:97 msgid "List of reports" msgstr "" -#: src/Module/Moderation/Reports.php:112 +#: src/Module/Moderation/Reports.php:98 msgid "This page display reports created by our or remote users." msgstr "" -#: src/Module/Moderation/Reports.php:113 +#: src/Module/Moderation/Reports.php:99 msgid "No report exists at this node." msgstr "" -#: src/Module/Moderation/Reports.php:116 +#: src/Module/Moderation/Reports.php:102 msgid "Category" msgstr "" -#: src/Module/Moderation/Reports.php:120 +#: src/Module/Moderation/Reports.php:106 #, php-format msgid "%s total report" msgid_plural "%s total reports" @@ -8825,24 +8820,24 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#: src/Module/Moderation/Reports.php:123 +#: src/Module/Moderation/Reports.php:109 msgid "URL of the reported contact." msgstr "" -#: src/Module/Moderation/Summary.php:57 src/Module/Settings/Account.php:436 +#: src/Module/Moderation/Summary.php:43 src/Module/Settings/Account.php:422 msgid "Channel Relay" msgstr "" -#: src/Module/Moderation/Summary.php:77 +#: src/Module/Moderation/Summary.php:63 msgid "Registered users" msgstr "الأعضاء المسجلون" -#: src/Module/Moderation/Summary.php:79 +#: src/Module/Moderation/Summary.php:65 msgid "Pending registrations" msgstr "التسجيلات المعلقة" -#: src/Module/Moderation/Users/Active.php:43 -#: src/Module/Moderation/Users/Index.php:43 +#: src/Module/Moderation/Users/Active.php:29 +#: src/Module/Moderation/Users/Index.php:29 #, php-format msgid "%s user blocked" msgid_plural "%s users blocked" @@ -8853,18 +8848,18 @@ msgstr[3] "حُجب %s مستخدمين" msgstr[4] "حُجب %s مستخدما" msgstr[5] "حُجب %s مستخدم" -#: src/Module/Moderation/Users/Active.php:51 -#: src/Module/Moderation/Users/Active.php:85 -#: src/Module/Moderation/Users/Blocked.php:51 -#: src/Module/Moderation/Users/Blocked.php:85 -#: src/Module/Moderation/Users/Index.php:58 -#: src/Module/Moderation/Users/Index.php:92 +#: src/Module/Moderation/Users/Active.php:37 +#: src/Module/Moderation/Users/Active.php:71 +#: src/Module/Moderation/Users/Blocked.php:37 +#: src/Module/Moderation/Users/Blocked.php:71 +#: src/Module/Moderation/Users/Index.php:44 +#: src/Module/Moderation/Users/Index.php:78 msgid "You can't remove yourself" msgstr "لا يمكنك إزالة نفسك" -#: src/Module/Moderation/Users/Active.php:55 -#: src/Module/Moderation/Users/Blocked.php:55 -#: src/Module/Moderation/Users/Index.php:62 +#: src/Module/Moderation/Users/Active.php:41 +#: src/Module/Moderation/Users/Blocked.php:41 +#: src/Module/Moderation/Users/Index.php:48 #, php-format msgid "%s user deleted" msgid_plural "%s users deleted" @@ -8875,88 +8870,88 @@ msgstr[3] "%s مستخدمين محذوفين" msgstr[4] "%s مستخدمًا محذوفًا" msgstr[5] "%s مستخدم محذوف" -#: src/Module/Moderation/Users/Active.php:83 -#: src/Module/Moderation/Users/Blocked.php:83 -#: src/Module/Moderation/Users/Index.php:90 +#: src/Module/Moderation/Users/Active.php:69 +#: src/Module/Moderation/Users/Blocked.php:69 +#: src/Module/Moderation/Users/Index.php:76 #, php-format msgid "User \"%s\" deleted" msgstr "حذف المستخدم \"%s\"" -#: src/Module/Moderation/Users/Active.php:93 -#: src/Module/Moderation/Users/Index.php:100 +#: src/Module/Moderation/Users/Active.php:79 +#: src/Module/Moderation/Users/Index.php:86 #, php-format msgid "User \"%s\" blocked" msgstr "حُجب المستخدم \"%s\"" -#: src/Module/Moderation/Users/Active.php:126 -#: src/Module/Moderation/Users/Blocked.php:126 -#: src/Module/Moderation/Users/Deleted.php:83 -#: src/Module/Moderation/Users/Index.php:140 -#: src/Module/Moderation/Users/Index.php:160 +#: src/Module/Moderation/Users/Active.php:112 +#: src/Module/Moderation/Users/Blocked.php:112 +#: src/Module/Moderation/Users/Deleted.php:69 +#: src/Module/Moderation/Users/Index.php:126 +#: src/Module/Moderation/Users/Index.php:146 msgid "Register date" msgstr "تاريخ التسجيل" -#: src/Module/Moderation/Users/Active.php:126 -#: src/Module/Moderation/Users/Blocked.php:126 -#: src/Module/Moderation/Users/Deleted.php:83 -#: src/Module/Moderation/Users/Index.php:140 -#: src/Module/Moderation/Users/Index.php:160 +#: src/Module/Moderation/Users/Active.php:112 +#: src/Module/Moderation/Users/Blocked.php:112 +#: src/Module/Moderation/Users/Deleted.php:69 +#: src/Module/Moderation/Users/Index.php:126 +#: src/Module/Moderation/Users/Index.php:146 msgid "Last login" msgstr "آخر ولوج" -#: src/Module/Moderation/Users/Active.php:126 -#: src/Module/Moderation/Users/Blocked.php:126 -#: src/Module/Moderation/Users/Deleted.php:83 -#: src/Module/Moderation/Users/Index.php:140 -#: src/Module/Moderation/Users/Index.php:160 +#: src/Module/Moderation/Users/Active.php:112 +#: src/Module/Moderation/Users/Blocked.php:112 +#: src/Module/Moderation/Users/Deleted.php:69 +#: src/Module/Moderation/Users/Index.php:126 +#: src/Module/Moderation/Users/Index.php:146 msgid "Last public item" msgstr "آخر عنصر منشور" -#: src/Module/Moderation/Users/Active.php:134 +#: src/Module/Moderation/Users/Active.php:120 msgid "Active Accounts" msgstr "الحسابات النشطة" -#: src/Module/Moderation/Users/Active.php:138 -#: src/Module/Moderation/Users/Blocked.php:137 -#: src/Module/Moderation/Users/Index.php:153 +#: src/Module/Moderation/Users/Active.php:124 +#: src/Module/Moderation/Users/Blocked.php:123 +#: src/Module/Moderation/Users/Index.php:139 msgid "User blocked" msgstr "المستخدم محجوب" -#: src/Module/Moderation/Users/Active.php:139 -#: src/Module/Moderation/Users/Blocked.php:139 -#: src/Module/Moderation/Users/Index.php:155 +#: src/Module/Moderation/Users/Active.php:125 +#: src/Module/Moderation/Users/Blocked.php:125 +#: src/Module/Moderation/Users/Index.php:141 msgid "Site admin" msgstr "مدير الموقع" -#: src/Module/Moderation/Users/Active.php:140 -#: src/Module/Moderation/Users/Blocked.php:140 -#: src/Module/Moderation/Users/Index.php:156 +#: src/Module/Moderation/Users/Active.php:126 +#: src/Module/Moderation/Users/Blocked.php:126 +#: src/Module/Moderation/Users/Index.php:142 msgid "Account expired" msgstr "انتهت صلاحية الحساب" -#: src/Module/Moderation/Users/Active.php:141 -#: src/Module/Moderation/Users/Index.php:159 +#: src/Module/Moderation/Users/Active.php:127 +#: src/Module/Moderation/Users/Index.php:145 msgid "Create a new user" msgstr "أنشئ مستخدمًا جديدًا" -#: src/Module/Moderation/Users/Active.php:147 -#: src/Module/Moderation/Users/Blocked.php:146 -#: src/Module/Moderation/Users/Index.php:165 +#: src/Module/Moderation/Users/Active.php:133 +#: src/Module/Moderation/Users/Blocked.php:132 +#: src/Module/Moderation/Users/Index.php:151 msgid "" "Selected users will be deleted!\\n\\nEverything these users had posted on " "this site will be permanently deleted!\\n\\nAre you sure?" msgstr "سيُحذف المستخدمون المحددون!\\n\\nكل ما نشره هؤلاء على هذا الموقع سيُحذف نهائيًا!\\n\\nهل أنت متأكد؟" -#: src/Module/Moderation/Users/Active.php:148 -#: src/Module/Moderation/Users/Blocked.php:147 -#: src/Module/Moderation/Users/Index.php:166 +#: src/Module/Moderation/Users/Active.php:134 +#: src/Module/Moderation/Users/Blocked.php:133 +#: src/Module/Moderation/Users/Index.php:152 msgid "" "The user {0} will be deleted!\\n\\nEverything this user has posted on this " "site will be permanently deleted!\\n\\nAre you sure?" msgstr "سيُحذف المستخدم {0}!\\n\\nكل ما نشره على هذا الموقع سيُحذف نهائيًا!\\n\\nهل أنت متأكد؟" -#: src/Module/Moderation/Users/Blocked.php:43 -#: src/Module/Moderation/Users/Index.php:50 +#: src/Module/Moderation/Users/Blocked.php:29 +#: src/Module/Moderation/Users/Index.php:36 #, php-format msgid "%s user unblocked" msgid_plural "%s users unblocked" @@ -8967,54 +8962,54 @@ msgstr[3] "رُفع الحجب عن %s مستخدمين" msgstr[4] "رُفع الحجب عن %s مستخدما" msgstr[5] "رُفع الحجب عن %s مستخدم" -#: src/Module/Moderation/Users/Blocked.php:92 -#: src/Module/Moderation/Users/Index.php:106 +#: src/Module/Moderation/Users/Blocked.php:78 +#: src/Module/Moderation/Users/Index.php:92 #, php-format msgid "User \"%s\" unblocked" msgstr "رُفع الحجب عن المستخدم \"%s\"" -#: src/Module/Moderation/Users/Blocked.php:134 +#: src/Module/Moderation/Users/Blocked.php:120 msgid "Blocked Users" msgstr "المستخدمون المحجوبون" -#: src/Module/Moderation/Users/Create.php:62 +#: src/Module/Moderation/Users/Create.php:48 msgid "New User" msgstr "مستخدم جديد" -#: src/Module/Moderation/Users/Create.php:63 +#: src/Module/Moderation/Users/Create.php:49 msgid "Add User" msgstr "أضف مستخدم" -#: src/Module/Moderation/Users/Create.php:70 +#: src/Module/Moderation/Users/Create.php:56 msgid "Name of the new user." msgstr "اسم المستخدم الجديد." -#: src/Module/Moderation/Users/Create.php:71 +#: src/Module/Moderation/Users/Create.php:57 msgid "Nickname" msgstr "اللقب" -#: src/Module/Moderation/Users/Create.php:71 +#: src/Module/Moderation/Users/Create.php:57 msgid "Nickname of the new user." msgstr "لقب المستخدم الجديد." -#: src/Module/Moderation/Users/Create.php:72 +#: src/Module/Moderation/Users/Create.php:58 msgid "Email address of the new user." msgstr "عنوان البريد الإلكتروني للمستخدم للجديد." -#: src/Module/Moderation/Users/Deleted.php:81 +#: src/Module/Moderation/Users/Deleted.php:67 msgid "Users awaiting permanent deletion" msgstr "مستخدمون في انتظار الحذف الدائم" -#: src/Module/Moderation/Users/Deleted.php:83 -#: src/Module/Moderation/Users/Index.php:160 +#: src/Module/Moderation/Users/Deleted.php:69 +#: src/Module/Moderation/Users/Index.php:146 msgid "Permanent deletion" msgstr "حذف نهائي" -#: src/Module/Moderation/Users/Index.php:150 +#: src/Module/Moderation/Users/Index.php:136 msgid "User waiting for permanent deletion" msgstr "مستخدم ينتظر الحذف الكلي لحسابه" -#: src/Module/Moderation/Users/Pending.php:44 +#: src/Module/Moderation/Users/Pending.php:30 #, php-format msgid "%s user approved" msgid_plural "%s users approved" @@ -9025,7 +9020,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#: src/Module/Moderation/Users/Pending.php:51 +#: src/Module/Moderation/Users/Pending.php:37 #, php-format msgid "%s registration revoked" msgid_plural "%s registrations revoked" @@ -9036,420 +9031,406 @@ msgstr[3] "أجهظت %s تسجيلات" msgstr[4] "أجهض %s تسجيلًا" msgstr[5] "أجهض %s تسجيل" -#: src/Module/Moderation/Users/Pending.php:76 +#: src/Module/Moderation/Users/Pending.php:62 msgid "Account approved." msgstr "قُبل الحساب." -#: src/Module/Moderation/Users/Pending.php:82 +#: src/Module/Moderation/Users/Pending.php:68 msgid "Registration revoked" msgstr "أجهض التسجيل" -#: src/Module/Moderation/Users/Pending.php:97 +#: src/Module/Moderation/Users/Pending.php:83 msgid "User registrations awaiting review" msgstr "تسجيلات تنتظر المعاينة" -#: src/Module/Moderation/Users/Pending.php:99 +#: src/Module/Moderation/Users/Pending.php:85 msgid "Request date" msgstr "تاريخ الطلب" -#: src/Module/Moderation/Users/Pending.php:100 +#: src/Module/Moderation/Users/Pending.php:86 msgid "No registrations." msgstr "لا توجد تسجيلات." -#: src/Module/Moderation/Users/Pending.php:101 +#: src/Module/Moderation/Users/Pending.php:87 msgid "Note from the user" msgstr "ملاحظة من المستخدم" -#: src/Module/Moderation/Users/Pending.php:103 +#: src/Module/Moderation/Users/Pending.php:89 msgid "Deny" msgstr "رفض" -#: src/Module/Notifications/Introductions.php:105 +#: src/Module/Notifications/Introductions.php:91 msgid "Show Ignored Requests" msgstr "اظهر الطلبات المتجاهلة" -#: src/Module/Notifications/Introductions.php:105 +#: src/Module/Notifications/Introductions.php:91 msgid "Hide Ignored Requests" msgstr "اخف الطلبات المتجاهلة" -#: src/Module/Notifications/Introductions.php:121 -#: src/Module/Notifications/Introductions.php:184 +#: src/Module/Notifications/Introductions.php:107 +#: src/Module/Notifications/Introductions.php:170 msgid "Notification type:" msgstr "نوع التنبيه:" -#: src/Module/Notifications/Introductions.php:124 +#: src/Module/Notifications/Introductions.php:110 msgid "Suggested by:" msgstr "اقترحه:" -#: src/Module/Notifications/Introductions.php:149 +#: src/Module/Notifications/Introductions.php:135 msgid "Claims to be known to you: " msgstr "يدعي أنّه يعرفك: " -#: src/Module/Notifications/Introductions.php:158 +#: src/Module/Notifications/Introductions.php:144 msgid "Shall your connection be bidirectional or not?" msgstr "" -#: src/Module/Notifications/Introductions.php:159 +#: src/Module/Notifications/Introductions.php:145 #, php-format msgid "" "Accepting %s as a friend allows %s to subscribe to your posts, and you will " "also receive updates from them in your news feed." msgstr "يسمح قَبُول %s كصديق لـ%s بالاشتراك في منشوراتك ، وستتلقى تحديثاتهم في تلقيمات الأخبار." -#: src/Module/Notifications/Introductions.php:160 +#: src/Module/Notifications/Introductions.php:146 #, php-format msgid "" "Accepting %s as a subscriber allows them to subscribe to your posts, but you" " will not receive updates from them in your news feed." msgstr "يسمح قَبُول %s كمشترك له بالاشتراك في منشوراتك، لكن لن تتلقى تحديثاتهم في تلقيمات الأخبار." -#: src/Module/Notifications/Introductions.php:162 +#: src/Module/Notifications/Introductions.php:148 msgid "Friend" msgstr "صديق" -#: src/Module/Notifications/Introductions.php:163 +#: src/Module/Notifications/Introductions.php:149 msgid "Subscriber" msgstr "مشترك" -#: src/Module/Notifications/Introductions.php:222 +#: src/Module/Notifications/Introductions.php:208 msgid "No introductions." msgstr "لا توجد تقديمات." -#: src/Module/Notifications/Introductions.php:223 -#: src/Module/Notifications/Notifications.php:141 +#: src/Module/Notifications/Introductions.php:209 +#: src/Module/Notifications/Notifications.php:127 #, php-format msgid "No more %s notifications." msgstr "لا مزيد من تنبيهات %s." -#: src/Module/Notifications/Notification.php:135 +#: src/Module/Notifications/Notification.php:121 msgid "You must be logged in to show this page." msgstr "يجب أن تلج لتصل لهذه الصفحة." -#: src/Module/Notifications/Notifications.php:66 +#: src/Module/Notifications/Notifications.php:52 msgid "Network Notifications" msgstr "تنبيهات الشبكة" -#: src/Module/Notifications/Notifications.php:72 +#: src/Module/Notifications/Notifications.php:58 msgid "System Notifications" msgstr "تنبيهات النظام" -#: src/Module/Notifications/Notifications.php:78 +#: src/Module/Notifications/Notifications.php:64 msgid "Personal Notifications" msgstr "تنبيهات شخصية" -#: src/Module/Notifications/Notifications.php:84 +#: src/Module/Notifications/Notifications.php:70 msgid "Home Notifications" msgstr "تنبيهات الصفحة الرئيسية" -#: src/Module/Notifications/Notifications.php:146 +#: src/Module/Notifications/Notifications.php:132 msgid "Show unread" msgstr "اعرض غير المقروءة" -#: src/Module/Notifications/Ping.php:220 +#: src/Module/Notifications/Ping.php:206 msgid "{0} requested registration" msgstr "{0} طلبَ التسجيل" -#: src/Module/Notifications/Ping.php:229 +#: src/Module/Notifications/Ping.php:215 #, php-format msgid "{0} and %d others requested registration" msgstr "{0} و %d أخرون يطلبون التسجيل" -#: src/Module/OAuth/Acknowledge.php:51 +#: src/Module/OAuth/Acknowledge.php:37 msgid "Authorize application connection" msgstr "خول لهذا التطبيق الاتصال" -#: src/Module/OAuth/Acknowledge.php:53 +#: src/Module/OAuth/Acknowledge.php:39 msgid "" "Do you want to authorize this application to access your posts and contacts," " and/or create new posts for you?" msgstr "هل تخول لهذا التطبيق الوصول إلى مشاركاتك ومتراسليك، و/أو إنشاء مشاركات جديدة باسمك؟" -#: src/Module/OAuth/Authorize.php:54 +#: src/Module/OAuth/Authorize.php:40 msgid "Unsupported or missing response type" msgstr "نوع الاستجابة غير مدعومة أو مفقودة" -#: src/Module/OAuth/Authorize.php:59 src/Module/OAuth/Token.php:75 +#: src/Module/OAuth/Authorize.php:45 src/Module/OAuth/Token.php:61 msgid "Incomplete request data" msgstr "بيانات الطلب غير كاملة" -#: src/Module/OAuth/Authorize.php:106 +#: src/Module/OAuth/Authorize.php:92 #, php-format msgid "" "Please copy the following authentication code into your application and " "close this window: %s" msgstr "الرجاء نسخ رمز الاستيثاق إلى التطبيق وإغلاق هذه النافذة: %s" -#: src/Module/OAuth/Token.php:80 +#: src/Module/OAuth/Token.php:66 msgid "Invalid data or unknown client" msgstr "" -#: src/Module/OAuth/Token.php:105 +#: src/Module/OAuth/Token.php:91 msgid "Unsupported or missing grant type" msgstr "" -#: src/Module/OStatus/Repair.php:83 -msgid "Resubscribing to OStatus contacts" -msgstr "يعيد الاشتراك في متراسلي OStatus" - -#: src/Module/OStatus/Repair.php:84 src/Module/OStatus/Subscribe.php:160 -msgid "Keep this window open until done." -msgstr "أبق هذه النافذة مفتوحة حتى ينتهي." - -#: src/Module/OStatus/Repair.php:85 -msgid "✔ Done" -msgstr "" - -#: src/Module/OStatus/Repair.php:86 -msgid "No OStatus contacts to resubscribe to." -msgstr "" - -#: src/Module/OStatus/Subscribe.php:72 +#: src/Module/OStatus/Subscribe.php:58 msgid "Subscribing to contacts" msgstr "يشترك في متراسلين" -#: src/Module/OStatus/Subscribe.php:81 +#: src/Module/OStatus/Subscribe.php:67 msgid "No contact provided." msgstr "لم يُقدم متراسلين." -#: src/Module/OStatus/Subscribe.php:87 +#: src/Module/OStatus/Subscribe.php:73 msgid "Couldn't fetch information for contact." msgstr "تعذر جلب معلومات المتراسل." -#: src/Module/OStatus/Subscribe.php:98 +#: src/Module/OStatus/Subscribe.php:84 msgid "Couldn't fetch friends for contact." msgstr "تعذر جلب أصدقاء المتراسل." -#: src/Module/OStatus/Subscribe.php:104 src/Module/OStatus/Subscribe.php:115 +#: src/Module/OStatus/Subscribe.php:90 src/Module/OStatus/Subscribe.php:101 msgid "Couldn't fetch following contacts." msgstr "تعذر جلب متابِعي المتراسل." -#: src/Module/OStatus/Subscribe.php:110 +#: src/Module/OStatus/Subscribe.php:96 msgid "Couldn't fetch remote profile." msgstr "تعذر جلب الملف الشخصي البعيد." -#: src/Module/OStatus/Subscribe.php:120 +#: src/Module/OStatus/Subscribe.php:106 msgid "Unsupported network" msgstr "شبكة غير مدعومة" -#: src/Module/OStatus/Subscribe.php:136 +#: src/Module/OStatus/Subscribe.php:122 msgid "Done" msgstr "تم" -#: src/Module/OStatus/Subscribe.php:150 +#: src/Module/OStatus/Subscribe.php:136 msgid "success" msgstr "نجح" -#: src/Module/OStatus/Subscribe.php:152 +#: src/Module/OStatus/Subscribe.php:138 msgid "failed" msgstr "فشل" -#: src/Module/OStatus/Subscribe.php:155 +#: src/Module/OStatus/Subscribe.php:141 msgid "ignored" msgstr "متجاهل" -#: src/Module/Photo.php:122 +#: src/Module/OStatus/Subscribe.php:146 +msgid "Keep this window open until done." +msgstr "أبق هذه النافذة مفتوحة حتى ينتهي." + +#: src/Module/Photo.php:108 msgid "The Photo is not available." msgstr "الصورة غير متوفرة." -#: src/Module/Photo.php:147 +#: src/Module/Photo.php:133 #, php-format msgid "The Photo with id %s is not available." msgstr "الصورة ذات المعرف %s غير متوفّرة." -#: src/Module/Photo.php:188 +#: src/Module/Photo.php:174 #, php-format msgid "Invalid external resource with url %s." msgstr "" -#: src/Module/Photo.php:190 +#: src/Module/Photo.php:176 #, php-format msgid "Invalid photo with id %s." msgstr "الصورة ذات المعرف %s غير صالحة." -#: src/Module/Post/Edit.php:82 src/Module/Post/Edit.php:96 +#: src/Module/Post/Edit.php:68 src/Module/Post/Edit.php:82 msgid "Post not found." msgstr "" -#: src/Module/Post/Edit.php:102 +#: src/Module/Post/Edit.php:88 msgid "Edit post" msgstr "عدّل المشاركة" -#: src/Module/Post/Edit.php:136 +#: src/Module/Post/Edit.php:122 msgid "web link" msgstr "رابط ويب" -#: src/Module/Post/Edit.php:137 +#: src/Module/Post/Edit.php:123 msgid "Insert video link" msgstr "أدرج رابط فيديو" -#: src/Module/Post/Edit.php:138 +#: src/Module/Post/Edit.php:124 msgid "video link" msgstr "رابط فيديو" -#: src/Module/Post/Edit.php:139 +#: src/Module/Post/Edit.php:125 msgid "Insert audio link" msgstr "إدراج رابط ملف صوتي" -#: src/Module/Post/Edit.php:140 +#: src/Module/Post/Edit.php:126 msgid "audio link" msgstr "رابط ملف صوتي" -#: src/Module/Post/Tag/Remove.php:106 +#: src/Module/Post/Tag/Remove.php:92 msgid "Remove Item Tag" msgstr "أزل وسم العنصر" -#: src/Module/Post/Tag/Remove.php:107 +#: src/Module/Post/Tag/Remove.php:93 msgid "Select a tag to remove: " msgstr "اختر الوسم لإزالته: " -#: src/Module/Post/Tag/Remove.php:108 -#: src/Module/Settings/TwoFactor/Trusted.php:147 +#: src/Module/Post/Tag/Remove.php:94 +#: src/Module/Settings/TwoFactor/Trusted.php:133 msgid "Remove" msgstr "أزل" -#: src/Module/Privacy/PermissionTooltip.php:71 +#: src/Module/Privacy/PermissionTooltip.php:57 #, php-format msgid "Wrong type \"%s\", expected one of: %s" msgstr "نوع خاطئ \"%s\" ، يُتوقع أن يكون: %s" -#: src/Module/Privacy/PermissionTooltip.php:101 +#: src/Module/Privacy/PermissionTooltip.php:87 msgid "Model not found" msgstr "" -#: src/Module/Privacy/PermissionTooltip.php:118 +#: src/Module/Privacy/PermissionTooltip.php:104 msgid "Unlisted" msgstr "" -#: src/Module/Privacy/PermissionTooltip.php:124 +#: src/Module/Privacy/PermissionTooltip.php:110 msgid "Remote privacy information not available." msgstr "معلومات الخصوصية غير متوفرة." -#: src/Module/Privacy/PermissionTooltip.php:131 +#: src/Module/Privacy/PermissionTooltip.php:117 msgid "Visible to:" msgstr "مرئي لـ:" -#: src/Module/Privacy/PermissionTooltip.php:133 +#: src/Module/Privacy/PermissionTooltip.php:119 msgid "CC:" msgstr "" -#: src/Module/Privacy/PermissionTooltip.php:134 +#: src/Module/Privacy/PermissionTooltip.php:120 msgid "BCC:" msgstr "" -#: src/Module/Privacy/PermissionTooltip.php:135 +#: src/Module/Privacy/PermissionTooltip.php:121 msgid "Audience:" msgstr "" -#: src/Module/Privacy/PermissionTooltip.php:136 +#: src/Module/Privacy/PermissionTooltip.php:122 msgid "Attributed To:" msgstr "" -#: src/Module/Privacy/PermissionTooltip.php:234 +#: src/Module/Privacy/PermissionTooltip.php:220 #, php-format msgid "Collection (%s)" msgstr "" -#: src/Module/Privacy/PermissionTooltip.php:238 +#: src/Module/Privacy/PermissionTooltip.php:224 #, php-format msgid "Followers (%s)" msgstr "متابِعون (%s)" -#: src/Module/Privacy/PermissionTooltip.php:255 +#: src/Module/Privacy/PermissionTooltip.php:241 #, php-format msgid "%d more" msgstr "" -#: src/Module/Profile/Contacts.php:159 +#: src/Module/Profile/Contacts.php:145 msgid "No contacts." msgstr "لا متراسلين." -#: src/Module/Profile/Conversations.php:106 -#: src/Module/Profile/Conversations.php:109 src/Module/Profile/Profile.php:353 -#: src/Module/Profile/Profile.php:356 src/Protocol/Feed.php:1114 -#: src/Protocol/OStatus.php:1011 -#, php-format -msgid "%s's timeline" -msgstr "الخط الزمني لـ %s" - -#: src/Module/Profile/Conversations.php:107 src/Module/Profile/Profile.php:354 -#: src/Protocol/Feed.php:1118 src/Protocol/OStatus.php:1016 +#: src/Module/Profile/Conversations.php:92 src/Module/Profile/Profile.php:339 +#: src/Protocol/Feed.php:1097 #, php-format msgid "%s's posts" msgstr "مشاركات %s" -#: src/Module/Profile/Conversations.php:108 src/Module/Profile/Profile.php:355 -#: src/Protocol/Feed.php:1121 src/Protocol/OStatus.php:1020 +#: src/Module/Profile/Conversations.php:93 src/Module/Profile/Profile.php:340 +#: src/Protocol/Feed.php:1100 #, 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:192 -#: src/Module/Settings/Profile/Photo/Index.php:58 +#: src/Module/Profile/Conversations.php:94 src/Module/Profile/Profile.php:341 +#: src/Protocol/Feed.php:1093 +#, php-format +msgid "%s's timeline" +msgstr "الخط الزمني لـ %s" + +#: src/Module/Profile/Photos.php:150 src/Module/Profile/Photos.php:153 +#: src/Module/Profile/Photos.php:178 +#: src/Module/Settings/Profile/Photo/Index.php:44 #, php-format msgid "Image exceeds size limit of %s" msgstr "تجاوزت الصورة الحد الأقصى للحجم وهو %s" -#: src/Module/Profile/Photos.php:170 +#: src/Module/Profile/Photos.php:156 msgid "Image upload didn't complete, please try again" msgstr "لم يكتمل رفع الصورة، من فضلك أعد المحاولة" -#: src/Module/Profile/Photos.php:173 +#: src/Module/Profile/Photos.php:159 msgid "Image file is missing" msgstr "ملف الصورة مفقود" -#: src/Module/Profile/Photos.php:178 +#: src/Module/Profile/Photos.php:164 msgid "" "Server can't accept new file upload at this time, please contact your " "administrator" msgstr "الخادم لا يقبل رفع ملفات جديدة، يرجى التواصل مع مدير الموقع" -#: src/Module/Profile/Photos.php:200 +#: src/Module/Profile/Photos.php:186 msgid "Image file is empty." msgstr "ملف الصورة فارغ." -#: src/Module/Profile/Photos.php:352 +#: src/Module/Profile/Photos.php:338 msgid "View Album" msgstr "اعرض الألبوم" -#: src/Module/Profile/Profile.php:114 src/Module/Profile/Restricted.php:50 +#: src/Module/Profile/Profile.php:100 src/Module/Profile/Restricted.php:36 msgid "Profile not found." msgstr "لم يُعثر على الملف الشخصي." -#: src/Module/Profile/Profile.php:160 +#: src/Module/Profile/Profile.php:146 #, php-format msgid "" "You're currently viewing your profile as %s Cancel" msgstr "أنت حاليا تستعرض ملفك الشخصي كـ %s ألغ" -#: src/Module/Profile/Profile.php:169 +#: src/Module/Profile/Profile.php:155 msgid "Full Name:" msgstr "الاسم الكامل:" -#: src/Module/Profile/Profile.php:174 +#: src/Module/Profile/Profile.php:160 msgid "Member since:" msgstr "عضو منذ:" -#: src/Module/Profile/Profile.php:180 +#: src/Module/Profile/Profile.php:166 msgid "j F, Y" msgstr "j F, Y" -#: src/Module/Profile/Profile.php:181 +#: src/Module/Profile/Profile.php:167 msgid "j F" msgstr "j F" -#: src/Module/Profile/Profile.php:189 src/Util/Temporal.php:168 +#: src/Module/Profile/Profile.php:175 src/Util/Temporal.php:154 msgid "Birthday:" msgstr "تاريخ الميلاد:" -#: src/Module/Profile/Profile.php:192 -#: src/Module/Settings/Profile/Index.php:296 src/Util/Temporal.php:170 +#: src/Module/Profile/Profile.php:178 +#: src/Module/Settings/Profile/Index.php:282 src/Util/Temporal.php:156 msgid "Age: " msgstr "العمر: " -#: src/Module/Profile/Profile.php:192 -#: src/Module/Settings/Profile/Index.php:296 src/Util/Temporal.php:170 +#: src/Module/Profile/Profile.php:178 +#: src/Module/Settings/Profile/Index.php:282 src/Util/Temporal.php:156 #, php-format msgid "%d year old" msgid_plural "%d years old" @@ -9460,46 +9441,46 @@ msgstr[3] "%d سنوات" msgstr[4] "%d سنة" msgstr[5] "%d سنة" -#: src/Module/Profile/Profile.php:197 -#: src/Module/Settings/Profile/Index.php:289 +#: src/Module/Profile/Profile.php:183 +#: src/Module/Settings/Profile/Index.php:275 msgid "Description:" msgstr "الوصف:" -#: src/Module/Profile/Profile.php:263 +#: src/Module/Profile/Profile.php:249 msgid "Groups:" msgstr "" -#: src/Module/Profile/Profile.php:275 +#: src/Module/Profile/Profile.php:261 msgid "View profile as:" msgstr "اعرض الملف الشخصي ك:" -#: src/Module/Profile/Profile.php:292 +#: src/Module/Profile/Profile.php:278 msgid "View as" msgstr "اعرض ك" -#: src/Module/Profile/RemoteFollow.php:82 +#: src/Module/Profile/RemoteFollow.php:68 msgid "Profile unavailable." msgstr "الملف الشخصي غير متوفر." -#: src/Module/Profile/RemoteFollow.php:88 +#: src/Module/Profile/RemoteFollow.php:74 msgid "Invalid locator" msgstr "" -#: src/Module/Profile/RemoteFollow.php:95 +#: src/Module/Profile/RemoteFollow.php:81 msgid "The provided profile link doesn't seem to be valid" msgstr "يبدو أنّ رابط الملف الشخصي غير صالح" -#: src/Module/Profile/RemoteFollow.php:100 +#: src/Module/Profile/RemoteFollow.php:86 msgid "" "Remote subscription can't be done for your network. Please subscribe " "directly on your system." msgstr "" -#: src/Module/Profile/RemoteFollow.php:128 +#: src/Module/Profile/RemoteFollow.php:114 msgid "Friend/Connection Request" msgstr "طلب صداقة/اقتران" -#: src/Module/Profile/RemoteFollow.php:129 +#: src/Module/Profile/RemoteFollow.php:115 #, php-format msgid "" "Enter your Webfinger address (user@domain.tld) or profile URL here. If this " @@ -9507,579 +9488,579 @@ msgid "" " or %s directly on your system." msgstr "" -#: src/Module/Profile/RemoteFollow.php:130 +#: src/Module/Profile/RemoteFollow.php:116 #, php-format msgid "" "If you are not yet a member of the free social web, follow " "this link to find a public Friendica node and join us today." msgstr "إن لم تكن عضواً في شبكة اجتماعية حرة، اتبع هذا الرابط للعثور على عقدة عمومية لفرَندِكا وانضم إلينا اليوم." -#: src/Module/Profile/RemoteFollow.php:131 +#: src/Module/Profile/RemoteFollow.php:117 msgid "Your Webfinger address or profile URL:" msgstr "" -#: src/Module/Profile/Restricted.php:59 +#: src/Module/Profile/Restricted.php:45 msgid "Restricted profile" msgstr "" -#: src/Module/Profile/Restricted.php:60 +#: src/Module/Profile/Restricted.php:46 msgid "" "This profile has been restricted which prevents access to their public " "content from anonymous visitors." msgstr "" -#: src/Module/Profile/Schedule.php:83 +#: src/Module/Profile/Schedule.php:69 msgid "Scheduled" msgstr "مُبرمج" -#: src/Module/Profile/Schedule.php:84 +#: src/Module/Profile/Schedule.php:70 msgid "Content" msgstr "المحتوى" -#: src/Module/Profile/Schedule.php:85 +#: src/Module/Profile/Schedule.php:71 msgid "Remove post" msgstr "أزل المشاركة" -#: src/Module/Register.php:91 +#: src/Module/Register.php:77 msgid "Only parent users can create additional accounts." msgstr "فقط المستخدمون الأولياء من يمكنهم إنشاء حسابات إضافية." -#: src/Module/Register.php:106 src/Module/User/Import.php:112 +#: src/Module/Register.php:92 src/Module/User/Import.php:98 msgid "" "This site has exceeded the number of allowed daily account registrations. " "Please try again tomorrow." msgstr "تجاوز هذا الموقع عدد التسجيلات اليومية المسموح بها. من فضلك حاول غدا." -#: src/Module/Register.php:123 +#: src/Module/Register.php:109 msgid "" "You may (optionally) fill in this form via OpenID by supplying your OpenID " "and clicking \"Register\"." msgstr "" -#: src/Module/Register.php:124 +#: src/Module/Register.php:110 msgid "" "If you are not familiar with OpenID, please leave that field blank and fill " "in the rest of the items." msgstr "إذا كنت لا تعرف أو لا تريد استخدام OpenID، رجاء اترك هذا الحقل فارغاً واملأ بقية العناصر." -#: src/Module/Register.php:125 +#: src/Module/Register.php:111 msgid "Your OpenID (optional): " msgstr "معرف OpenID (خياري): " -#: src/Module/Register.php:134 +#: src/Module/Register.php:120 msgid "Include your profile in member directory?" msgstr "أتريد نشر ملفك الشخصي في الدليل؟" -#: src/Module/Register.php:155 +#: src/Module/Register.php:141 msgid "Note for the admin" msgstr "ملاحظة للمدير" -#: src/Module/Register.php:155 +#: src/Module/Register.php:141 msgid "Leave a message for the admin, why you want to join this node" msgstr "اترك رسالة للمدير، تحوي سبب رغبتك الانضمام إلى هذه العقدة" -#: src/Module/Register.php:156 +#: src/Module/Register.php:142 msgid "Membership on this site is by invitation only." msgstr "العضوية في هذا الموقع عن طريق دعوة فقط." -#: src/Module/Register.php:157 +#: src/Module/Register.php:143 msgid "Your invitation code: " msgstr "رمز الدعوة: " -#: src/Module/Register.php:165 +#: src/Module/Register.php:151 msgid "Your Display Name (as you would like it to be displayed on this system" msgstr "" -#: src/Module/Register.php:166 +#: src/Module/Register.php:152 msgid "" "Your Email Address: (Initial information will be send there, so this has to " "be an existing address.)" msgstr "" -#: src/Module/Register.php:167 +#: src/Module/Register.php:153 msgid "Please repeat your e-mail address:" msgstr "رجاء أعد إدخال عنوان بريدك الإلكتروني:" -#: src/Module/Register.php:169 src/Module/Security/PasswordTooLong.php:100 -#: src/Module/Settings/Account.php:569 +#: src/Module/Register.php:155 src/Module/Security/PasswordTooLong.php:86 +#: src/Module/Settings/Account.php:555 msgid "New Password:" msgstr "كلمة المرور الجديدة:" -#: src/Module/Register.php:169 +#: src/Module/Register.php:155 msgid "Leave empty for an auto generated password." msgstr "" -#: src/Module/Register.php:170 src/Module/Security/PasswordTooLong.php:101 -#: src/Module/Settings/Account.php:570 +#: src/Module/Register.php:156 src/Module/Security/PasswordTooLong.php:87 +#: src/Module/Settings/Account.php:556 msgid "Confirm:" msgstr "التأكيد:" -#: src/Module/Register.php:171 +#: src/Module/Register.php:157 #, php-format msgid "" "Choose a profile nickname. This must begin with a text character. Your " "profile address on this site will then be \"nickname@%s\"." msgstr "" -#: src/Module/Register.php:172 +#: src/Module/Register.php:158 msgid "Choose a nickname: " msgstr "اختر لقبًا: " -#: src/Module/Register.php:180 src/Module/User/Import.php:118 +#: src/Module/Register.php:166 src/Module/User/Import.php:104 msgid "Import" msgstr "استورد" -#: src/Module/Register.php:181 +#: src/Module/Register.php:167 msgid "Import your profile to this friendica instance" msgstr "استورد ملفك الشخصي لهذا المثيل" -#: src/Module/Register.php:188 +#: src/Module/Register.php:174 msgid "Note: This node explicitly contains adult content" msgstr "" -#: src/Module/Register.php:190 src/Module/Settings/Delegation.php:181 +#: src/Module/Register.php:176 src/Module/Settings/Delegation.php:167 msgid "Parent Password:" msgstr "كلمة المرور الولي:" -#: src/Module/Register.php:190 src/Module/Settings/Delegation.php:181 +#: src/Module/Register.php:176 src/Module/Settings/Delegation.php:167 msgid "" "Please enter the password of the parent account to legitimize your request." msgstr "يرجى إدخال كلمة مرور الولي للمصادقة على طلبك." -#: src/Module/Register.php:219 +#: src/Module/Register.php:205 msgid "Password doesn't match." msgstr "كلمتا المرور غير متطابقتين." -#: src/Module/Register.php:225 +#: src/Module/Register.php:211 msgid "Please enter your password." msgstr "رجاء أدخل كلمة المرور." -#: src/Module/Register.php:267 +#: src/Module/Register.php:253 msgid "You have entered too much information." msgstr "أدخلت معلومات كثيرة." -#: src/Module/Register.php:290 +#: src/Module/Register.php:276 msgid "Please enter the identical mail address in the second field." msgstr "" -#: src/Module/Register.php:298 +#: src/Module/Register.php:284 msgid "Nickname cannot start with a digit." msgstr "" -#: src/Module/Register.php:300 +#: src/Module/Register.php:286 msgid "Nickname can only contain US-ASCII characters." msgstr "" -#: src/Module/Register.php:329 +#: src/Module/Register.php:315 msgid "The additional account was created." msgstr "أُنشئ الحساب الإضافي." -#: src/Module/Register.php:354 +#: src/Module/Register.php:340 msgid "" "Registration successful. Please check your email for further instructions." msgstr "سجلت بنجاح. راجع بريدك الإلكتروني لمزيد من التعليمات." -#: src/Module/Register.php:361 +#: src/Module/Register.php:347 #, php-format msgid "" "Failed to send email message. Here your accout details:
login: %s
" "password: %s

You can change your password after login." msgstr "" -#: src/Module/Register.php:367 +#: src/Module/Register.php:353 msgid "Registration successful." msgstr "سجلتَ بنجاح." -#: src/Module/Register.php:376 src/Module/Register.php:383 -#: src/Module/Register.php:393 +#: src/Module/Register.php:362 src/Module/Register.php:369 +#: src/Module/Register.php:379 msgid "Your registration can not be processed." msgstr "" -#: src/Module/Register.php:382 +#: src/Module/Register.php:368 msgid "You have to leave a request note for the admin." msgstr "اترك طلب للمدير." -#: src/Module/Register.php:392 +#: src/Module/Register.php:378 msgid "An internal error occured." msgstr "" -#: src/Module/Register.php:414 +#: src/Module/Register.php:400 msgid "Your registration is pending approval by the site owner." msgstr "في انتظار موافقة مالك الموقع لقبول تسجيلك." -#: src/Module/Search/Acl.php:78 +#: src/Module/Search/Acl.php:64 msgid "You must be logged in to use this module." msgstr "يجب عليك الولوج لاستخدام هذه الوحدة." -#: src/Module/Search/Index.php:69 +#: src/Module/Search/Index.php:55 msgid "Only logged in users are permitted to perform a search." msgstr "يمكن فقط للمستخدمين المسجلين البحث في الموقع." -#: src/Module/Search/Index.php:89 +#: src/Module/Search/Index.php:75 msgid "Only one search per minute is permitted for not logged in users." msgstr "يسمح ببحث واحد فقط في كل دقيقة للزوار." -#: src/Module/Search/Index.php:205 +#: src/Module/Search/Index.php:191 #, php-format msgid "Items tagged with: %s" msgstr "عناصر موسمة بـ: %s" -#: src/Module/Search/Saved.php:63 +#: src/Module/Search/Saved.php:49 msgid "Search term was not saved." msgstr "لم يُحفظ مصطلح البحث." -#: src/Module/Search/Saved.php:66 +#: src/Module/Search/Saved.php:52 msgid "Search term already saved." msgstr "حُفظ مصطلح البحث سلفًا." -#: src/Module/Search/Saved.php:72 +#: src/Module/Search/Saved.php:58 msgid "Search term was not removed." msgstr "لم يُزل مصطلح البحث." -#: src/Module/Security/Login.php:127 +#: src/Module/Security/Login.php:113 msgid "Create a New Account" msgstr "أنشئ حسابًا جديدًا" -#: src/Module/Security/Login.php:146 +#: src/Module/Security/Login.php:132 msgid "Your OpenID: " msgstr "معرف OpenID: " -#: src/Module/Security/Login.php:149 +#: src/Module/Security/Login.php:135 msgid "" "Please enter your username and password to add the OpenID to your existing " "account." msgstr "رجاء أدخل كلمة المرور واسم المستخدم لإضافة معرف OpenID لحسابك." -#: src/Module/Security/Login.php:151 +#: src/Module/Security/Login.php:137 msgid "Or login using OpenID: " msgstr "أو لج باستخدام معرف OpenID: " -#: src/Module/Security/Login.php:165 +#: src/Module/Security/Login.php:151 msgid "Password: " msgstr "كلمة المرور: " -#: src/Module/Security/Login.php:166 +#: src/Module/Security/Login.php:152 msgid "Remember me" msgstr "تذكرني" -#: src/Module/Security/Login.php:175 +#: src/Module/Security/Login.php:161 msgid "Forgot your password?" msgstr "أنسيت كلمة المرور؟" -#: src/Module/Security/Login.php:178 +#: src/Module/Security/Login.php:164 msgid "Website Terms of Service" msgstr "شروط الخدمة للموقع" -#: src/Module/Security/Login.php:179 +#: src/Module/Security/Login.php:165 msgid "terms of service" msgstr "شروط الخدمة" -#: src/Module/Security/Login.php:181 +#: src/Module/Security/Login.php:167 msgid "Website Privacy Policy" msgstr "سياسة الخصوصية للموقع" -#: src/Module/Security/Login.php:182 +#: src/Module/Security/Login.php:168 msgid "privacy policy" msgstr "سياسة الخصوصية" -#: src/Module/Security/Logout.php:89 -#: src/Module/Security/TwoFactor/SignOut.php:78 -#: src/Module/Security/TwoFactor/SignOut.php:86 -#: src/Module/Security/TwoFactor/SignOut.php:108 -#: src/Module/Security/TwoFactor/SignOut.php:115 +#: src/Module/Security/Logout.php:75 +#: src/Module/Security/TwoFactor/SignOut.php:64 +#: src/Module/Security/TwoFactor/SignOut.php:72 +#: src/Module/Security/TwoFactor/SignOut.php:94 +#: src/Module/Security/TwoFactor/SignOut.php:101 msgid "Logged out." msgstr "خرجت." -#: src/Module/Security/OpenID.php:54 +#: src/Module/Security/OpenID.php:40 msgid "OpenID protocol error. No ID returned" msgstr "خطأ في ميفاق OpenID. لم يعد أي معرف" -#: src/Module/Security/OpenID.php:90 +#: src/Module/Security/OpenID.php:76 msgid "" "Account not found. Please login to your existing account to add the OpenID " "to it." msgstr "لم يُعثر على الحساب. رجاء لج إلى حسابك الحالي لإضافة معرف OpenID إليه." -#: src/Module/Security/OpenID.php:92 +#: src/Module/Security/OpenID.php:78 msgid "" "Account not found. Please register a new account or login to your existing " "account to add the OpenID to it." msgstr "لم يُعثر على الحساب. رجاء سجل حساب جديد أو لج إلى حسابك الحالي لإضافة معرف OpenID إليه." -#: src/Module/Security/PasswordTooLong.php:57 -#: src/Module/Settings/Account.php:67 +#: src/Module/Security/PasswordTooLong.php:43 +#: src/Module/Settings/Account.php:53 msgid "Passwords do not match." msgstr "كلمتا المرور غير متطابقتين." -#: src/Module/Security/PasswordTooLong.php:64 +#: src/Module/Security/PasswordTooLong.php:50 msgid "Password does not need changing." msgstr "" -#: src/Module/Security/PasswordTooLong.php:77 -#: src/Module/Settings/Account.php:81 +#: src/Module/Security/PasswordTooLong.php:63 +#: src/Module/Settings/Account.php:67 msgid "Password unchanged." msgstr "لم تُغير كلمة المرور." -#: src/Module/Security/PasswordTooLong.php:91 +#: src/Module/Security/PasswordTooLong.php:77 msgid "Password Too Long" msgstr "" -#: src/Module/Security/PasswordTooLong.php:92 +#: src/Module/Security/PasswordTooLong.php:78 msgid "" "Since version 2022.09, we've realized that any password longer than 72 " "characters is truncated during hashing. To prevent any confusion about this " "behavior, please update your password to be fewer or equal to 72 characters." msgstr "" -#: src/Module/Security/PasswordTooLong.php:93 +#: src/Module/Security/PasswordTooLong.php:79 msgid "Update Password" msgstr "" -#: src/Module/Security/PasswordTooLong.php:99 -#: src/Module/Settings/Account.php:571 +#: src/Module/Security/PasswordTooLong.php:85 +#: src/Module/Settings/Account.php:557 msgid "Current Password:" msgstr "كلمة المرور الحالية:" -#: src/Module/Security/PasswordTooLong.php:99 -#: src/Module/Settings/Account.php:571 +#: src/Module/Security/PasswordTooLong.php:85 +#: src/Module/Settings/Account.php:557 msgid "Your current password to confirm the changes" msgstr "اكتب كلمة المرور الحالية لتأكيد التغييرات" -#: src/Module/Security/PasswordTooLong.php:100 -#: src/Module/Settings/Account.php:555 +#: src/Module/Security/PasswordTooLong.php:86 +#: src/Module/Settings/Account.php:541 msgid "" "Allowed characters are a-z, A-Z, 0-9 and special characters except white " "spaces and accentuated letters." msgstr "" -#: src/Module/Security/PasswordTooLong.php:100 -#: src/Module/Settings/Account.php:556 +#: src/Module/Security/PasswordTooLong.php:86 +#: src/Module/Settings/Account.php:542 msgid "Password length is limited to 72 characters." msgstr "" -#: src/Module/Security/TwoFactor/Recovery.php:74 +#: src/Module/Security/TwoFactor/Recovery.php:60 #, php-format msgid "Remaining recovery codes: %d" msgstr "رموز الاستعادة المتبقية: %d" -#: src/Module/Security/TwoFactor/Recovery.php:80 -#: src/Module/Security/TwoFactor/Verify.php:77 -#: src/Module/Settings/TwoFactor/Verify.php:98 +#: src/Module/Security/TwoFactor/Recovery.php:66 +#: src/Module/Security/TwoFactor/Verify.php:63 +#: src/Module/Settings/TwoFactor/Verify.php:84 msgid "Invalid code, please retry." msgstr "رمز غير صالح، من فضلك أعد المحاولة." -#: src/Module/Security/TwoFactor/Recovery.php:99 +#: src/Module/Security/TwoFactor/Recovery.php:85 msgid "Two-factor recovery" msgstr "الاستيثاق بعاملين" -#: src/Module/Security/TwoFactor/Recovery.php:100 +#: src/Module/Security/TwoFactor/Recovery.php:86 msgid "" "

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

" msgstr "" -#: src/Module/Security/TwoFactor/Recovery.php:101 +#: src/Module/Security/TwoFactor/Recovery.php:87 #, php-format msgid "Don’t have your phone? Enter a two-factor recovery code" msgstr "لا تحمل هاتفك؟ أدخل رمز الاستعادة للاستيثاق بعاملين" -#: src/Module/Security/TwoFactor/Recovery.php:102 +#: src/Module/Security/TwoFactor/Recovery.php:88 msgid "Please enter a recovery code" msgstr "رجاء أدخل رمز الاستعادة" -#: src/Module/Security/TwoFactor/Recovery.php:103 +#: src/Module/Security/TwoFactor/Recovery.php:89 msgid "Submit recovery code and complete login" msgstr "أرسل رمز الاستعادة لتكمل الولوج" -#: src/Module/Security/TwoFactor/SignOut.php:122 +#: src/Module/Security/TwoFactor/SignOut.php:108 msgid "Sign out of this browser?" msgstr "" -#: src/Module/Security/TwoFactor/SignOut.php:123 +#: src/Module/Security/TwoFactor/SignOut.php:109 msgid "" "

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

" msgstr "" -#: src/Module/Security/TwoFactor/SignOut.php:124 +#: src/Module/Security/TwoFactor/SignOut.php:110 msgid "Sign out" msgstr "" -#: src/Module/Security/TwoFactor/SignOut.php:126 +#: src/Module/Security/TwoFactor/SignOut.php:112 msgid "Trust and sign out" msgstr "" -#: src/Module/Security/TwoFactor/Trust.php:96 +#: src/Module/Security/TwoFactor/Trust.php:82 msgid "Couldn't save browser to Cookie." msgstr "" -#: src/Module/Security/TwoFactor/Trust.php:141 +#: src/Module/Security/TwoFactor/Trust.php:127 msgid "Trust this browser?" msgstr "" -#: src/Module/Security/TwoFactor/Trust.php:142 +#: src/Module/Security/TwoFactor/Trust.php:128 msgid "" "

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

" msgstr "" -#: src/Module/Security/TwoFactor/Trust.php:143 +#: src/Module/Security/TwoFactor/Trust.php:129 msgid "Not now" msgstr "" -#: src/Module/Security/TwoFactor/Trust.php:144 +#: src/Module/Security/TwoFactor/Trust.php:130 msgid "Don't trust" msgstr "" -#: src/Module/Security/TwoFactor/Trust.php:145 +#: src/Module/Security/TwoFactor/Trust.php:131 msgid "Trust" msgstr "" -#: src/Module/Security/TwoFactor/Verify.php:97 +#: src/Module/Security/TwoFactor/Verify.php:83 msgid "" "

Open the two-factor authentication app on your device to get an " "authentication code and verify your identity.

" msgstr "

افتح تطبيق الاستيثاق بعاملين على جهازك للحصول على رمز الاستيثاق والتحقق من هويتك.

" -#: src/Module/Security/TwoFactor/Verify.php:100 +#: src/Module/Security/TwoFactor/Verify.php:86 #, php-format msgid "" "If you do not have access to your authentication code you can use a two-factor recovery code." msgstr "" -#: src/Module/Security/TwoFactor/Verify.php:101 -#: src/Module/Settings/TwoFactor/Verify.php:158 +#: src/Module/Security/TwoFactor/Verify.php:87 +#: src/Module/Settings/TwoFactor/Verify.php:144 msgid "Please enter a code from your authentication app" msgstr "يرجى إدخال رمز من تطبيق الاستيثاق" -#: src/Module/Security/TwoFactor/Verify.php:102 +#: src/Module/Security/TwoFactor/Verify.php:88 msgid "Verify code and complete login" msgstr "تحقق من الرمز وأكمل الولوج" -#: src/Module/Settings/Account.php:96 +#: src/Module/Settings/Account.php:82 msgid "Please use a shorter name." msgstr "يرجى استخدام اسم أقصر." -#: src/Module/Settings/Account.php:99 +#: src/Module/Settings/Account.php:85 msgid "Name too short." msgstr "الاسم قصير جداً." -#: src/Module/Settings/Account.php:108 +#: src/Module/Settings/Account.php:94 msgid "Wrong Password." msgstr "كلمة المرور خاطئة." -#: src/Module/Settings/Account.php:113 +#: src/Module/Settings/Account.php:99 msgid "Invalid email." msgstr "البريد الإلكتروني غير صالح." -#: src/Module/Settings/Account.php:117 +#: src/Module/Settings/Account.php:103 msgid "Cannot change to that email." msgstr "لا يمكن التغيير إلى هذا البريد الإلكتروني." -#: src/Module/Settings/Account.php:146 src/Module/Settings/Account.php:195 -#: src/Module/Settings/Account.php:216 src/Module/Settings/Account.php:300 -#: src/Module/Settings/Account.php:329 +#: src/Module/Settings/Account.php:132 src/Module/Settings/Account.php:181 +#: src/Module/Settings/Account.php:202 src/Module/Settings/Account.php:286 +#: src/Module/Settings/Account.php:315 msgid "Settings were not updated." msgstr "لم تُحدث الإعدادات." -#: src/Module/Settings/Account.php:347 +#: src/Module/Settings/Account.php:333 msgid "Contact CSV file upload error" msgstr "خطأ أثناء رفع ملف CSV" -#: src/Module/Settings/Account.php:366 +#: src/Module/Settings/Account.php:352 msgid "Importing Contacts done" msgstr "أُستورد المتراسلون" -#: src/Module/Settings/Account.php:379 +#: src/Module/Settings/Account.php:365 msgid "Relocate message has been send to your contacts" msgstr "أُرسلت رسالة تنبيه بانتقالك إلى متراسليك" -#: src/Module/Settings/Account.php:396 +#: src/Module/Settings/Account.php:382 msgid "Unable to find your profile. Please contact your admin." msgstr "تعذر العثور على ملفك الشخصي. من فضلك اتصال بالمدير." -#: src/Module/Settings/Account.php:438 +#: src/Module/Settings/Account.php:424 msgid "" "Account for a service that automatically shares content based on user " "defined channels." msgstr "" -#: src/Module/Settings/Account.php:448 +#: src/Module/Settings/Account.php:434 msgid "Personal Page Subtypes" msgstr "الأنواع الفرعية للصفحة الشخصية" -#: src/Module/Settings/Account.php:449 +#: src/Module/Settings/Account.php:435 msgid "Community Group Subtypes" msgstr "" -#: src/Module/Settings/Account.php:460 +#: src/Module/Settings/Account.php:446 msgid "Account for a personal profile." msgstr "حساب ملف شخصي خاص." -#: src/Module/Settings/Account.php:467 +#: src/Module/Settings/Account.php:453 msgid "" "Account for an organisation that automatically approves contact requests as " "\"Followers\"." msgstr "حساب المنظمة يوافق تلقائياً على طلبات المراسلة \"كمتابعين\"." -#: src/Module/Settings/Account.php:474 +#: src/Module/Settings/Account.php:460 msgid "" "Account for a news reflector that automatically approves contact requests as" " \"Followers\"." msgstr "حساب إخباري يوافق تلقائياً على طلبات المراسلة \"كمتابعين\"." -#: src/Module/Settings/Account.php:481 +#: src/Module/Settings/Account.php:467 msgid "Account for community discussions." msgstr "حساب مناقشات مجتمعية." -#: src/Module/Settings/Account.php:489 +#: src/Module/Settings/Account.php:475 msgid "" "Account for a regular personal profile that requires manual approval of " "\"Friends\" and \"Followers\"." msgstr "حساب ملف شخصي عادي يتطلب الموافقة اليدوية على \"الأصدقاء\" و \"المتابعين\"." -#: src/Module/Settings/Account.php:496 +#: src/Module/Settings/Account.php:482 msgid "" "Account for a public profile that automatically approves contact requests as" " \"Followers\"." msgstr "حساب شخصي علني يوافق تلقائياً على طلبات المراسلة \"كمتابعين\"." -#: src/Module/Settings/Account.php:503 +#: src/Module/Settings/Account.php:489 msgid "Automatically approves all contact requests." msgstr "يوافق تلقائياً على جميع طلبات المراسلة." -#: src/Module/Settings/Account.php:510 +#: src/Module/Settings/Account.php:496 msgid "Contact requests have to be manually approved." msgstr "" -#: src/Module/Settings/Account.php:517 +#: src/Module/Settings/Account.php:503 msgid "" "Account for a popular profile that automatically approves contact requests " "as \"Friends\"." msgstr "حساب ملف شخصي لمشهور يوافق تلقائياً على طلبات المراسلة كـ\"أصدقاء\"." -#: src/Module/Settings/Account.php:522 +#: src/Module/Settings/Account.php:508 msgid "Private Group [Experimental]" msgstr "" -#: src/Module/Settings/Account.php:524 +#: src/Module/Settings/Account.php:510 msgid "Requires manual approval of contact requests." msgstr "يتطلب الموافقة اليدوية على طلبات المراسلة." -#: src/Module/Settings/Account.php:533 +#: src/Module/Settings/Account.php:519 msgid "OpenID:" msgstr "OpenID:" -#: src/Module/Settings/Account.php:533 +#: src/Module/Settings/Account.php:519 msgid "(Optional) Allow this OpenID to login to this account." msgstr "(اختياري) اسمح لمعرف OpenID بالولوج إلى هذا الحساب." -#: src/Module/Settings/Account.php:541 +#: src/Module/Settings/Account.php:527 msgid "Publish your profile in your local site directory?" msgstr "أتريد نشر ملفك الشخصي في الدليل المحلي للموقع؟" -#: src/Module/Settings/Account.php:541 +#: src/Module/Settings/Account.php:527 #, php-format msgid "" "Your profile will be published in this node's local " @@ -10087,94 +10068,94 @@ msgid "" " system settings." msgstr "سينشر ملفك الشخصي في الدليل المحلي لهذه العقدة. تعتمد خصوصية معلوماتك على إعدادات النظام." -#: src/Module/Settings/Account.php:547 +#: src/Module/Settings/Account.php:533 #, php-format msgid "" "Your profile will also be published in the global friendica directories " "(e.g. %s)." msgstr "سينشر ملفك الشخصي كذلك في الأدلة العالمية لفرَندِيكا (مثال %s)." -#: src/Module/Settings/Account.php:560 +#: src/Module/Settings/Account.php:546 msgid "Account Settings" msgstr "إعدادات الحساب" -#: src/Module/Settings/Account.php:561 +#: src/Module/Settings/Account.php:547 #, php-format msgid "Your Identity Address is '%s' or '%s'." msgstr "عنوان معرفك هو '%s' أو '%s'." -#: src/Module/Settings/Account.php:568 +#: src/Module/Settings/Account.php:554 msgid "Password Settings" msgstr "إعدادات كلمة المرور" -#: src/Module/Settings/Account.php:570 +#: src/Module/Settings/Account.php:556 msgid "Leave password fields blank unless changing" msgstr "اترك حقول كلمة المرور فارغة ما لم ترد تغييرها" -#: src/Module/Settings/Account.php:572 +#: src/Module/Settings/Account.php:558 msgid "Password:" msgstr "كلمة المرور:" -#: src/Module/Settings/Account.php:572 +#: src/Module/Settings/Account.php:558 msgid "Your current password to confirm the changes of the email address" msgstr "اكتب كلمة المرور الحالية لتأكيد تغيير بريدك الإلكتروني" -#: src/Module/Settings/Account.php:575 +#: src/Module/Settings/Account.php:561 msgid "Delete OpenID URL" msgstr "احذف معرف OpenID" -#: src/Module/Settings/Account.php:577 +#: src/Module/Settings/Account.php:563 msgid "Basic Settings" msgstr "الإعدادات الأساسيّة" -#: src/Module/Settings/Account.php:578 -#: src/Module/Settings/Profile/Index.php:288 +#: src/Module/Settings/Account.php:564 +#: src/Module/Settings/Profile/Index.php:274 msgid "Display name:" msgstr "الاسم العلني:" -#: src/Module/Settings/Account.php:579 +#: src/Module/Settings/Account.php:565 msgid "Email Address:" msgstr "البريد الإلكتروني:" -#: src/Module/Settings/Account.php:580 +#: src/Module/Settings/Account.php:566 msgid "Your Timezone:" msgstr "المنطقة الزمنية:" -#: src/Module/Settings/Account.php:581 +#: src/Module/Settings/Account.php:567 msgid "Your Language:" msgstr "لغتك:" -#: src/Module/Settings/Account.php:581 +#: src/Module/Settings/Account.php:567 msgid "" "Set the language we use to show you friendica interface and to send you " "emails" msgstr "عيّن لغة واجهة فرَندِيكا ورسائل البريد الإلكتروني" -#: src/Module/Settings/Account.php:582 +#: src/Module/Settings/Account.php:568 msgid "Default Post Location:" msgstr "موقع النشر الافتراضي:" -#: src/Module/Settings/Account.php:583 +#: src/Module/Settings/Account.php:569 msgid "Use Browser Location:" msgstr "استخدم موقع المتصفح:" -#: src/Module/Settings/Account.php:585 +#: src/Module/Settings/Account.php:571 msgid "Security and Privacy Settings" msgstr "إعدادات الأمان والخصوصية" -#: src/Module/Settings/Account.php:587 +#: src/Module/Settings/Account.php:573 msgid "Maximum Friend Requests/Day:" msgstr "حدُ طلبات الصداقة لليوم الواحد:" -#: src/Module/Settings/Account.php:587 +#: src/Module/Settings/Account.php:573 msgid "(to prevent spam abuse)" msgstr "(لمنع الرسائل المزعجة)" -#: src/Module/Settings/Account.php:589 +#: src/Module/Settings/Account.php:575 msgid "Allow your profile to be searchable globally?" msgstr "أتريد السماح لملفك الشخصي بالظهور في نتائج البحث العالمي؟" -#: src/Module/Settings/Account.php:589 +#: src/Module/Settings/Account.php:575 msgid "" "Activate this setting if you want others to easily find and follow you. Your" " profile will be searchable on remote systems. This setting also determines " @@ -10182,43 +10163,43 @@ msgid "" "indexed or not." msgstr "فعّل هذا الإعداد إن أردت أن يُعثر عليك بسهولة. سيتمكن المستخدمون في المواقع البعيد من العثور عليك، وأيضا سيسمح بظهور ملفك الشخصي في محركات البحث." -#: src/Module/Settings/Account.php:590 +#: src/Module/Settings/Account.php:576 msgid "Hide your contact/friend list from viewers of your profile?" msgstr "أتريد إخفاء قائمة المتراسلين/الأصدقاء عن متصفحي ملفك الشخصي؟" -#: src/Module/Settings/Account.php:590 +#: src/Module/Settings/Account.php:576 msgid "" "A list of your contacts is displayed on your profile page. Activate this " "option to disable the display of your contact list." msgstr "عادة تُعرض قائمة المتراسلين على صفحة ملفك الشخصي. إن قمت بتفعيل هذا الخيار ستخفى القائمة." -#: src/Module/Settings/Account.php:591 +#: src/Module/Settings/Account.php:577 msgid "Hide your public content from anonymous viewers" msgstr "" -#: src/Module/Settings/Account.php:591 +#: src/Module/Settings/Account.php:577 msgid "" "Anonymous visitors will only see your basic profile details. Your public " "posts and replies will still be freely accessible on the remote servers of " "your followers and through relays." msgstr "" -#: src/Module/Settings/Account.php:592 +#: src/Module/Settings/Account.php:578 msgid "Make public posts unlisted" msgstr "لا تدرج المشاركات العلنية" -#: src/Module/Settings/Account.php:592 +#: src/Module/Settings/Account.php:578 msgid "" "Your public posts will not appear on the community pages or in search " "results, nor be sent to relay servers. However they can still appear on " "public feeds on remote servers." msgstr "لن تظهر مشاركتك العلنية على صفحات المجتمع أو في نتائج البحث لهذا الموقع، ولن يتم إرسالها إلى خوادم الترحيل. غير أنها ستبقى تظهر في التغذيات العمومية للخوادم البعيدة." -#: src/Module/Settings/Account.php:593 +#: src/Module/Settings/Account.php:579 msgid "Make all posted pictures accessible" msgstr "أتح كل الصور المنشورة" -#: src/Module/Settings/Account.php:593 +#: src/Module/Settings/Account.php:579 msgid "" "This option makes every posted picture accessible via the direct link. This " "is a workaround for the problem that most other networks can't handle " @@ -10226,352 +10207,352 @@ msgid "" "public on your photo albums though." msgstr "يسمح هذا الخيار بالوصول للصورة المنشورة عبر رابط مباشر. هذا حل لمعظم الشبكات التي لا يمكنها التعامل مع الأذونات. صورك غير العلنية ستبقى مخفية." -#: src/Module/Settings/Account.php:594 +#: src/Module/Settings/Account.php:580 msgid "Allow friends to post to your profile page?" msgstr "أتسمح لأصدقائك بالنشر في صفحة ملفك الشخصي؟" -#: src/Module/Settings/Account.php:594 +#: src/Module/Settings/Account.php:580 msgid "" "Your contacts may write posts on your profile wall. These posts will be " "distributed to your contacts" msgstr "يمكن للمتراسلين كتابة مشاركات على حائط ملفك الشخصي. ستكون هذه المشركات مرئية لكل المتراسلين" -#: src/Module/Settings/Account.php:595 +#: src/Module/Settings/Account.php:581 msgid "Allow friends to tag your posts?" msgstr "أتسمح لأصدقائك بوسم مشاركاتك؟" -#: src/Module/Settings/Account.php:595 +#: src/Module/Settings/Account.php:581 msgid "Your contacts can add additional tags to your posts." msgstr "يمكن لأصدقائك إضافة وسوم لمشاركاتك." -#: src/Module/Settings/Account.php:596 +#: src/Module/Settings/Account.php:582 msgid "Default privacy circle for new contacts" msgstr "" -#: src/Module/Settings/Account.php:597 +#: src/Module/Settings/Account.php:583 msgid "Default privacy circle for new group contacts" msgstr "" -#: src/Module/Settings/Account.php:598 +#: src/Module/Settings/Account.php:584 msgid "Default Post Permissions" msgstr "أذونات النشر الافتراضية" -#: src/Module/Settings/Account.php:602 +#: src/Module/Settings/Account.php:588 msgid "Expiration settings" msgstr "إعدادات انتهاء الصلاحية" -#: src/Module/Settings/Account.php:603 +#: src/Module/Settings/Account.php:589 msgid "Automatically expire posts after this many days:" msgstr "أنه صَلاحِيَة المشاركات تلقائياً بعد هذا العدد من الأيام:" -#: src/Module/Settings/Account.php:603 +#: src/Module/Settings/Account.php:589 msgid "If empty, posts will not expire. Expired posts will be deleted" msgstr "إذا كان فارغاً، لن تنتهي صلاحية المشاركات. وإلا بعد المهلة ستحذف المشاركات المنتهية صلاحيتها" -#: src/Module/Settings/Account.php:604 +#: src/Module/Settings/Account.php:590 msgid "Expire posts" msgstr "أنه صَلاحِيَة المشاركات" -#: src/Module/Settings/Account.php:604 +#: src/Module/Settings/Account.php:590 msgid "When activated, posts and comments will be expired." msgstr "عند تفعيله، ستنهى صلاحية المشاركات والتعليقات." -#: src/Module/Settings/Account.php:605 +#: src/Module/Settings/Account.php:591 msgid "Expire personal notes" msgstr "أنه صَلاحِيَة الملاحظات الشخصية" -#: src/Module/Settings/Account.php:605 +#: src/Module/Settings/Account.php:591 msgid "" "When activated, the personal notes on your profile page will be expired." msgstr "عند تفعيله، ستنهى صلاحية الملاحظات الشخصية على صفحة ملفك الشخصي." -#: src/Module/Settings/Account.php:606 +#: src/Module/Settings/Account.php:592 msgid "Expire starred posts" msgstr "أنتهي صلاحية المشاركات المفضلة" -#: src/Module/Settings/Account.php:606 +#: src/Module/Settings/Account.php:592 msgid "" "Starring posts keeps them from being expired. That behaviour is overwritten " "by this setting." msgstr "تفضيل مشاركة تقيها من انتهاء الصلاحية. هذا السلوك يُتجاوز من خلال هذا الإعداد." -#: src/Module/Settings/Account.php:607 +#: src/Module/Settings/Account.php:593 msgid "Only expire posts by others" msgstr "أنه صَلاحِيَة مشاركات الآخرين فقط" -#: src/Module/Settings/Account.php:607 +#: src/Module/Settings/Account.php:593 msgid "" "When activated, your own posts never expire. Then the settings above are " "only valid for posts you received." msgstr "عند تفعيله، لا نهاية لصلاحية مشاركاتك. ثم تكون الإعدادات أعلاه صالحة فقط للمشاركات التي استلمتها." -#: src/Module/Settings/Account.php:610 +#: src/Module/Settings/Account.php:596 msgid "Notification Settings" msgstr "إعدادات التنبيهات" -#: src/Module/Settings/Account.php:611 +#: src/Module/Settings/Account.php:597 msgid "Send a notification email when:" msgstr "أرسل تنبيها للبريدي الإلكتروني عند:" -#: src/Module/Settings/Account.php:612 +#: src/Module/Settings/Account.php:598 msgid "You receive an introduction" msgstr "تلقي تقديم" -#: src/Module/Settings/Account.php:613 +#: src/Module/Settings/Account.php:599 msgid "Your introductions are confirmed" msgstr "أُكدت تقديماتك" -#: src/Module/Settings/Account.php:614 +#: src/Module/Settings/Account.php:600 msgid "Someone writes on your profile wall" msgstr "يكتب شخص ما على جدار ملفك الشخصي" -#: src/Module/Settings/Account.php:615 +#: src/Module/Settings/Account.php:601 msgid "Someone writes a followup comment" msgstr "شخص ما يعلق على ما نشرت" -#: src/Module/Settings/Account.php:616 +#: src/Module/Settings/Account.php:602 msgid "You receive a private message" msgstr "تلقي رسالة خاصة" -#: src/Module/Settings/Account.php:617 +#: src/Module/Settings/Account.php:603 msgid "You receive a friend suggestion" msgstr "تلقي اقتراح صداقة" -#: src/Module/Settings/Account.php:618 +#: src/Module/Settings/Account.php:604 msgid "You are tagged in a post" msgstr "ذُكرتَ في مشاركة" -#: src/Module/Settings/Account.php:620 +#: src/Module/Settings/Account.php:606 msgid "Create a desktop notification when:" msgstr "أنشئ تنبيه سطح المكتب عند:" -#: src/Module/Settings/Account.php:621 +#: src/Module/Settings/Account.php:607 msgid "Someone tagged you" msgstr "" -#: src/Module/Settings/Account.php:622 +#: src/Module/Settings/Account.php:608 msgid "Someone directly commented on your post" msgstr "" -#: src/Module/Settings/Account.php:623 +#: src/Module/Settings/Account.php:609 msgid "Someone liked your content" msgstr "أُعجب شخص بمحتواك" -#: src/Module/Settings/Account.php:623 src/Module/Settings/Account.php:624 +#: src/Module/Settings/Account.php:609 src/Module/Settings/Account.php:610 msgid "Can only be enabled, when the direct comment notification is enabled." msgstr "" -#: src/Module/Settings/Account.php:624 +#: src/Module/Settings/Account.php:610 msgid "Someone shared your content" msgstr "شارك شخص محتواك" -#: src/Module/Settings/Account.php:625 +#: src/Module/Settings/Account.php:611 msgid "Someone commented in your thread" msgstr "" -#: src/Module/Settings/Account.php:626 +#: src/Module/Settings/Account.php:612 msgid "Someone commented in a thread where you commented" msgstr "" -#: src/Module/Settings/Account.php:627 +#: src/Module/Settings/Account.php:613 msgid "Someone commented in a thread where you interacted" msgstr "" -#: src/Module/Settings/Account.php:629 +#: src/Module/Settings/Account.php:615 msgid "Activate desktop notifications" msgstr "نشّط تنبيهات سطح المكتب" -#: src/Module/Settings/Account.php:629 +#: src/Module/Settings/Account.php:615 msgid "Show desktop popup on new notifications" msgstr "أظهر منبثقات للتنبيهات الجديدة" -#: src/Module/Settings/Account.php:633 +#: src/Module/Settings/Account.php:619 msgid "Text-only notification emails" msgstr "رسائل تنبيه نصية فقط" -#: src/Module/Settings/Account.php:635 +#: src/Module/Settings/Account.php:621 msgid "Send text only notification emails, without the html part" msgstr "أرسل بريد التنبيه كنص فقط، دون وسوم html" -#: src/Module/Settings/Account.php:639 +#: src/Module/Settings/Account.php:625 msgid "Show detailled notifications" msgstr "اعرض تنبيهات مفصلة" -#: src/Module/Settings/Account.php:641 +#: src/Module/Settings/Account.php:627 msgid "" "Per default, notifications are condensed to a single notification per item. " "When enabled every notification is displayed." msgstr "افتراضيًا ، يعرض أحدث تنبيه فقط لكل محادثة. عند تفعيله ستعرض جميع التنبيهات." -#: src/Module/Settings/Account.php:645 +#: src/Module/Settings/Account.php:631 msgid "Show notifications of ignored contacts" msgstr "أظهر تنبيهات للمتراسلين المتجاهلين" -#: src/Module/Settings/Account.php:647 +#: src/Module/Settings/Account.php:633 msgid "" "You don't see posts from ignored contacts. But you still see their comments." " This setting controls if you want to still receive regular notifications " "that are caused by ignored contacts or not." msgstr "أنت لا ترى مشاركات المتراسلين المتجاهلين. لكن لا يزال بإمكانك رؤية تعليقاتهم. هذا الإعداد يتحكم إذا كنت ترغب في الاستمرار في تلقي تنبيهات سببها المتراسلون المتجاهلون." -#: src/Module/Settings/Account.php:650 +#: src/Module/Settings/Account.php:636 msgid "Advanced Account/Page Type Settings" msgstr "الإعدادات المتقدمة للحساب/للصفحة" -#: src/Module/Settings/Account.php:651 +#: src/Module/Settings/Account.php:637 msgid "Change the behaviour of this account for special situations" msgstr "غيّر سلوك هذا الحساب للحالات الخاصة" -#: src/Module/Settings/Account.php:654 +#: src/Module/Settings/Account.php:640 msgid "Import Contacts" msgstr "استيراد متراسلين" -#: src/Module/Settings/Account.php:655 +#: src/Module/Settings/Account.php:641 msgid "" "Upload a CSV file that contains the handle of your followed accounts in the " "first column you exported from the old account." msgstr "ارفع ملف CSV معرفات المتراسلين لحسابك القديم، معرفات المتابَعين تكون في العمود الأول." -#: src/Module/Settings/Account.php:656 +#: src/Module/Settings/Account.php:642 msgid "Upload File" msgstr "ارفع ملفًا" -#: src/Module/Settings/Account.php:659 +#: src/Module/Settings/Account.php:645 msgid "Relocate" msgstr "الانتقال" -#: src/Module/Settings/Account.php:660 +#: src/Module/Settings/Account.php:646 msgid "" "If you have moved this profile from another server, and some of your " "contacts don't receive your updates, try pushing this button." msgstr "إذا كنت قد نقلت هذا الملف الشخصي من خادم آخر، وبعض المتراسلين لا يتلقون تحديثاتك، أنقر هذا الزر." -#: src/Module/Settings/Account.php:661 +#: src/Module/Settings/Account.php:647 msgid "Resend relocate message to contacts" msgstr "أعد إرسال رسالة الانتقال للمتراسلين" -#: src/Module/Settings/Addons.php:86 +#: src/Module/Settings/Addons.php:72 msgid "Addon Settings" msgstr "إعدادات الإضافة" -#: src/Module/Settings/Addons.php:87 +#: src/Module/Settings/Addons.php:73 msgid "No Addon settings configured" msgstr "لم تضبط إعدادات الإضافة" -#: src/Module/Settings/Channels.php:148 +#: src/Module/Settings/Channels.php:134 msgid "" "This page can be used to define the channels that will automatically be " "reshared by your account." msgstr "" -#: src/Module/Settings/Channels.php:153 +#: src/Module/Settings/Channels.php:139 msgid "This page can be used to define your own channels." msgstr "" -#: src/Module/Settings/Channels.php:182 +#: src/Module/Settings/Channels.php:168 msgid "Publish" msgstr "" -#: src/Module/Settings/Channels.php:182 +#: src/Module/Settings/Channels.php:168 msgid "" "When selected, the channel results are reshared. This only works for public " "ActivityPub posts from the public timeline or the user defined circles." msgstr "" -#: src/Module/Settings/Channels.php:190 src/Module/Settings/Channels.php:211 -#: src/Module/Settings/Display.php:338 +#: src/Module/Settings/Channels.php:176 src/Module/Settings/Channels.php:197 +#: src/Module/Settings/Display.php:324 msgid "Label" msgstr "" -#: src/Module/Settings/Channels.php:191 src/Module/Settings/Channels.php:212 -#: src/Module/Settings/Display.php:339 -#: src/Module/Settings/TwoFactor/AppSpecific.php:137 +#: src/Module/Settings/Channels.php:177 src/Module/Settings/Channels.php:198 +#: src/Module/Settings/Display.php:325 +#: src/Module/Settings/TwoFactor/AppSpecific.php:123 msgid "Description" msgstr "الوصف" -#: src/Module/Settings/Channels.php:192 src/Module/Settings/Channels.php:213 +#: src/Module/Settings/Channels.php:178 src/Module/Settings/Channels.php:199 msgid "Access Key" msgstr "" -#: src/Module/Settings/Channels.php:193 src/Module/Settings/Channels.php:214 +#: src/Module/Settings/Channels.php:179 src/Module/Settings/Channels.php:200 msgid "Circle/Channel" msgstr "" -#: src/Module/Settings/Channels.php:194 src/Module/Settings/Channels.php:215 +#: src/Module/Settings/Channels.php:180 src/Module/Settings/Channels.php:201 msgid "Include Tags" msgstr "" -#: src/Module/Settings/Channels.php:195 src/Module/Settings/Channels.php:216 +#: src/Module/Settings/Channels.php:181 src/Module/Settings/Channels.php:202 msgid "Exclude Tags" msgstr "" -#: src/Module/Settings/Channels.php:196 src/Module/Settings/Channels.php:217 +#: src/Module/Settings/Channels.php:182 src/Module/Settings/Channels.php:203 msgid "Minimum Size" msgstr "" -#: src/Module/Settings/Channels.php:197 src/Module/Settings/Channels.php:218 +#: src/Module/Settings/Channels.php:183 src/Module/Settings/Channels.php:204 msgid "Maximum Size" msgstr "" -#: src/Module/Settings/Channels.php:198 src/Module/Settings/Channels.php:219 +#: src/Module/Settings/Channels.php:184 src/Module/Settings/Channels.php:205 msgid "Full Text Search" msgstr "" -#: src/Module/Settings/Channels.php:202 src/Module/Settings/Channels.php:223 +#: src/Module/Settings/Channels.php:188 src/Module/Settings/Channels.php:209 msgid "Select all languages that you want to see in this channel." msgstr "" -#: src/Module/Settings/Channels.php:204 +#: src/Module/Settings/Channels.php:190 msgid "Delete channel" msgstr "" -#: src/Module/Settings/Channels.php:204 +#: src/Module/Settings/Channels.php:190 msgid "Check to delete this entry from the channel list" msgstr "" -#: src/Module/Settings/Channels.php:211 +#: src/Module/Settings/Channels.php:197 msgid "Short name for the channel. It is displayed on the channels widget." msgstr "" -#: src/Module/Settings/Channels.php:212 +#: src/Module/Settings/Channels.php:198 msgid "This should describe the content of the channel in a few word." msgstr "" -#: src/Module/Settings/Channels.php:213 +#: src/Module/Settings/Channels.php:199 msgid "" "When you want to access this channel via an access key, you can define it " "here. Pay attention to not use an already used one." msgstr "" -#: src/Module/Settings/Channels.php:214 +#: src/Module/Settings/Channels.php:200 msgid "Select a circle or channel, that your channel should be based on." msgstr "" -#: src/Module/Settings/Channels.php:215 +#: src/Module/Settings/Channels.php:201 msgid "" "Comma separated list of tags. A post will be used when it contains any of " "the listed tags." msgstr "" -#: src/Module/Settings/Channels.php:216 +#: src/Module/Settings/Channels.php:202 msgid "" "Comma separated list of tags. If a post contain any of these tags, then it " "will not be part of nthis channel." msgstr "" -#: src/Module/Settings/Channels.php:217 +#: src/Module/Settings/Channels.php:203 msgid "" "Minimum post size. Leave empty for no minimum size. The size is calculated " "without links, attached posts, mentions or hashtags." msgstr "" -#: src/Module/Settings/Channels.php:218 +#: src/Module/Settings/Channels.php:204 msgid "" "Maximum post size. Leave empty for no maximum size. The size is calculated " "without links, attached posts, mentions or hashtags." msgstr "" -#: src/Module/Settings/Channels.php:219 +#: src/Module/Settings/Channels.php:205 #, php-format msgid "" "Search terms for the body, supports the \"boolean mode\" operators from " @@ -10579,600 +10560,589 @@ msgid "" "keywords: %s" msgstr "" -#: src/Module/Settings/Channels.php:220 +#: src/Module/Settings/Channels.php:206 msgid "Check to display images in the channel." msgstr "" -#: src/Module/Settings/Channels.php:221 +#: src/Module/Settings/Channels.php:207 msgid "Check to display videos in the channel." msgstr "" -#: src/Module/Settings/Channels.php:222 +#: src/Module/Settings/Channels.php:208 msgid "Check to display audio in the channel." msgstr "" -#: src/Module/Settings/Channels.php:227 +#: src/Module/Settings/Channels.php:213 msgid "Add new entry to the channel list" msgstr "" -#: src/Module/Settings/Channels.php:228 +#: src/Module/Settings/Channels.php:214 msgid "Add" msgstr "أضف" -#: src/Module/Settings/Channels.php:230 +#: src/Module/Settings/Channels.php:216 msgid "Current Entries in the channel list" msgstr "" -#: src/Module/Settings/Channels.php:233 +#: src/Module/Settings/Channels.php:219 msgid "Delete entry from the channel list" msgstr "" -#: src/Module/Settings/Channels.php:234 +#: src/Module/Settings/Channels.php:220 msgid "Delete entry from the channel list?" msgstr "" -#: src/Module/Settings/Connectors.php:122 +#: src/Module/Settings/Connectors.php:108 msgid "Failed to connect with email account using the settings provided." msgstr "فشل الاتصال بحساب البريد الإلكتروني باستخدام الإعدادات المقدمة." -#: src/Module/Settings/Connectors.php:169 -#: src/Module/Settings/Connectors.php:170 +#: src/Module/Settings/Connectors.php:155 +#: src/Module/Settings/Connectors.php:156 msgid "Diaspora (Socialhome, Hubzilla)" msgstr "دياسبورا (سوشل-هوم، هوب-زيلا)" -#: src/Module/Settings/Connectors.php:169 -#: src/Module/Settings/Connectors.php:173 +#: src/Module/Settings/Connectors.php:155 #, php-format msgid "Built-in support for %s connectivity is enabled" msgstr "" -#: src/Module/Settings/Connectors.php:170 -#: src/Module/Settings/Connectors.php:172 +#: src/Module/Settings/Connectors.php:156 #, php-format msgid "Built-in support for %s connectivity is disabled" msgstr "" -#: src/Module/Settings/Connectors.php:172 -#: src/Module/Settings/Connectors.php:173 -msgid "OStatus (GNU Social)" -msgstr "OStatus (غنو سوشل)" - -#: src/Module/Settings/Connectors.php:185 +#: src/Module/Settings/Connectors.php:167 msgid "Email access is disabled on this site." msgstr "الوصول إلى البريد الإلكتروني معطل في هذا الموقع." -#: src/Module/Settings/Connectors.php:200 -#: src/Module/Settings/Connectors.php:254 +#: src/Module/Settings/Connectors.php:182 +#: src/Module/Settings/Connectors.php:233 msgid "None" msgstr "لا شيء" -#: src/Module/Settings/Connectors.php:204 +#: src/Module/Settings/Connectors.php:186 msgid "Default (Mastodon will display the title and a link to the post)" msgstr "" -#: src/Module/Settings/Connectors.php:205 +#: src/Module/Settings/Connectors.php:187 msgid "" "Use the summary (Mastodon and some others will treat it as content warning)" msgstr "" -#: src/Module/Settings/Connectors.php:206 +#: src/Module/Settings/Connectors.php:188 msgid "Embed the title in the body" msgstr "" -#: src/Module/Settings/Connectors.php:218 +#: src/Module/Settings/Connectors.php:199 msgid "General Social Media Settings" msgstr "الإعدادات العامة لشبكات التواصل الاجتماعي" -#: src/Module/Settings/Connectors.php:221 +#: src/Module/Settings/Connectors.php:202 msgid "Followed content scope" msgstr "حيز المحتوى المتابَع" -#: src/Module/Settings/Connectors.php:223 +#: src/Module/Settings/Connectors.php:204 msgid "" "By default, conversations in which your follows participated but didn't " "start will be shown in your timeline. You can turn this behavior off, or " "expand it to the conversations in which your follows liked a post." msgstr "" -#: src/Module/Settings/Connectors.php:225 +#: src/Module/Settings/Connectors.php:206 msgid "Only conversations my follows started" msgstr "المحادثات التي بدأها متابَعي فقط" -#: src/Module/Settings/Connectors.php:226 +#: src/Module/Settings/Connectors.php:207 msgid "Conversations my follows started or commented on (default)" msgstr "المحادثات التي بدأها متابَعي أو علقوا عليها (الافتراضي)" -#: src/Module/Settings/Connectors.php:227 +#: src/Module/Settings/Connectors.php:208 msgid "Any conversation my follows interacted with, including likes" msgstr "أي محادثة تفاعل معها متابَعي" -#: src/Module/Settings/Connectors.php:230 +#: src/Module/Settings/Connectors.php:211 msgid "Collapse sensitive posts" msgstr "" -#: src/Module/Settings/Connectors.php:230 +#: src/Module/Settings/Connectors.php:211 msgid "" "If a post is marked as \"sensitive\", it will be displayed in a collapsed " "state, if this option is enabled." msgstr "" -#: src/Module/Settings/Connectors.php:231 +#: src/Module/Settings/Connectors.php:212 msgid "Enable intelligent shortening" msgstr "فعّل الاختصار الذكي" -#: src/Module/Settings/Connectors.php:231 +#: src/Module/Settings/Connectors.php:212 msgid "" "Normally the system tries to find the best link to add to shortened posts. " "If disabled, every shortened post will always point to the original " "friendica post." msgstr "يعثر الاختصار الذكي على الرابط الأنسب في المشاركات المختصرة. عند تعطيله سيشير الرابط إلى منشور فرنديكا الأصلي." -#: src/Module/Settings/Connectors.php:232 +#: src/Module/Settings/Connectors.php:213 msgid "Enable simple text shortening" msgstr "فعّل اختصار النصوص" -#: src/Module/Settings/Connectors.php:232 +#: src/Module/Settings/Connectors.php:213 msgid "" "Normally the system shortens posts at the next line feed. If this option is " "enabled then the system will shorten the text at the maximum character " "limit." msgstr "" -#: src/Module/Settings/Connectors.php:233 +#: src/Module/Settings/Connectors.php:214 msgid "Attach the link title" msgstr "أرفق عنوان الرابط" -#: src/Module/Settings/Connectors.php:233 +#: src/Module/Settings/Connectors.php:214 msgid "" "When activated, the title of the attached link will be added as a title on " "posts to Diaspora. This is mostly helpful with \"remote-self\" contacts that" " share feed content." msgstr "عند تفعيله سيتم إرفاق عنوان الصفحة بمنشور دياسبورا. هذا مفيد بشكل أساسي مع المتراسلين \"الذاتيين\" الذين يشاركون تغذيات Rss / Atom." -#: src/Module/Settings/Connectors.php:234 +#: src/Module/Settings/Connectors.php:215 msgid "API: Use spoiler field as title" msgstr "" -#: src/Module/Settings/Connectors.php:234 +#: src/Module/Settings/Connectors.php:215 msgid "" "When activated, the \"spoiler_text\" field in the API will be used for the " "title on standalone posts. When deactivated it will be used for spoiler " "text. For comments it will always be used for spoiler text." msgstr "" -#: src/Module/Settings/Connectors.php:235 +#: src/Module/Settings/Connectors.php:216 msgid "API: Automatically links at the end of the post as attached posts" msgstr "" -#: src/Module/Settings/Connectors.php:235 +#: src/Module/Settings/Connectors.php:216 msgid "" "When activated, added links at the end of the post react the same way as " "added links in the web interface." msgstr "" -#: src/Module/Settings/Connectors.php:236 +#: src/Module/Settings/Connectors.php:217 msgid "Article Mode" msgstr "" -#: src/Module/Settings/Connectors.php:236 +#: src/Module/Settings/Connectors.php:217 msgid "" "Controls how posts with titles are transmitted. Mastodon and its forks don't" " display the content of these posts if the post is created in the correct " "(default) way." msgstr "" -#: src/Module/Settings/Connectors.php:237 +#: src/Module/Settings/Connectors.php:218 msgid "Your legacy ActivityPub/GNU Social account" msgstr "حساب GNU Social\\ActivityPub القديم" -#: src/Module/Settings/Connectors.php:237 +#: src/Module/Settings/Connectors.php:218 msgid "" "If you enter your old account name from an ActivityPub based system or your " "GNU Social/Statusnet account name here (in the format user@domain.tld), your" " contacts will be added automatically. The field will be emptied when done." msgstr "إذا قمت بإدخال اسم حساب ActivityPub/GNU Social/Statusnet القديم هنا (بنسق user@domain.tld)، سيضاف المتراسلون في هذا الحساب تلقائيا. سيصفر الحقل عند الانتهاء." -#: src/Module/Settings/Connectors.php:239 -msgid "Repair OStatus subscriptions" -msgstr "أصلح اشتراكات OStatus" - -#: src/Module/Settings/Connectors.php:243 +#: src/Module/Settings/Connectors.php:222 msgid "Email/Mailbox Setup" msgstr "إعداد بريد الكتروني/صندوق بريد" -#: src/Module/Settings/Connectors.php:244 +#: src/Module/Settings/Connectors.php:223 msgid "" "If you wish to communicate with email contacts using this service " "(optional), please specify how to connect to your mailbox." msgstr "إذا كنت ترغب في التواصل مع متراسلي البريد الإلكتروني باستخدام هذه الخدمة (اختيارية)، من فضلك حدد كيفية الاتصال بصندوق بريدك." -#: src/Module/Settings/Connectors.php:245 +#: src/Module/Settings/Connectors.php:224 msgid "Last successful email check:" msgstr "آخر تحقق ناجح للبريد الإلكتروني:" -#: src/Module/Settings/Connectors.php:247 +#: src/Module/Settings/Connectors.php:226 msgid "IMAP server name:" msgstr "اسم خادم IMAP:" -#: src/Module/Settings/Connectors.php:248 +#: src/Module/Settings/Connectors.php:227 msgid "IMAP port:" msgstr "منفذ IMAP:" -#: src/Module/Settings/Connectors.php:249 +#: src/Module/Settings/Connectors.php:228 msgid "Security:" msgstr "الحماية:" -#: src/Module/Settings/Connectors.php:250 +#: src/Module/Settings/Connectors.php:229 msgid "Email login name:" msgstr "اسم الولوج للبريد الإلكتروني:" -#: src/Module/Settings/Connectors.php:251 +#: src/Module/Settings/Connectors.php:230 msgid "Email password:" msgstr "كلمة مرور البريد الإلكتروني:" -#: src/Module/Settings/Connectors.php:252 +#: src/Module/Settings/Connectors.php:231 msgid "Reply-to address:" msgstr "الرد على عنوان:" -#: src/Module/Settings/Connectors.php:253 +#: src/Module/Settings/Connectors.php:232 msgid "Send public posts to all email contacts:" msgstr "أرسل المشاركات العلنية لجميع متراسلي البريد الإلكتروني:" -#: src/Module/Settings/Connectors.php:254 +#: src/Module/Settings/Connectors.php:233 msgid "Action after import:" msgstr "الإجراء بعد الاستيراد:" -#: src/Module/Settings/Connectors.php:254 +#: src/Module/Settings/Connectors.php:233 msgid "Move to folder" msgstr "انقل إلى مجلد" -#: src/Module/Settings/Connectors.php:255 +#: src/Module/Settings/Connectors.php:234 msgid "Move to folder:" msgstr "انقل إلى المجلد:" -#: src/Module/Settings/Delegation.php:73 +#: src/Module/Settings/Delegation.php:59 msgid "Delegation successfully granted." msgstr "منح التفويض بنجاح." -#: src/Module/Settings/Delegation.php:75 +#: src/Module/Settings/Delegation.php:61 msgid "Parent user not found, unavailable or password doesn't match." msgstr "لم يُعثر على الولي أو هو غير متوفر أو كلمة مرور غير صحيحة." -#: src/Module/Settings/Delegation.php:79 +#: src/Module/Settings/Delegation.php:65 msgid "Delegation successfully revoked." msgstr "نجح إبطال التفويض." -#: src/Module/Settings/Delegation.php:98 -#: src/Module/Settings/Delegation.php:120 +#: src/Module/Settings/Delegation.php:84 +#: src/Module/Settings/Delegation.php:106 msgid "" "Delegated administrators can view but not change delegation permissions." msgstr "" -#: src/Module/Settings/Delegation.php:112 +#: src/Module/Settings/Delegation.php:98 msgid "Delegate user not found." msgstr "لم يُعثر على المندوب." -#: src/Module/Settings/Delegation.php:169 +#: src/Module/Settings/Delegation.php:155 msgid "No parent user" msgstr "لا يوجد وليٌ" -#: src/Module/Settings/Delegation.php:180 -#: src/Module/Settings/Delegation.php:191 +#: src/Module/Settings/Delegation.php:166 +#: src/Module/Settings/Delegation.php:177 msgid "Parent User" msgstr "الوليٌ" -#: src/Module/Settings/Delegation.php:188 +#: src/Module/Settings/Delegation.php:174 msgid "Additional Accounts" msgstr "الحسابات الإضافية" -#: src/Module/Settings/Delegation.php:189 +#: src/Module/Settings/Delegation.php:175 msgid "" "Register additional accounts that are automatically connected to your " "existing account so you can manage them from this account." msgstr "سجل حسابات إضافية مرتبطة تلقائيا بحسابك الحالي ويمكنك إدارتها عبر هذا الحساب." -#: src/Module/Settings/Delegation.php:190 +#: src/Module/Settings/Delegation.php:176 msgid "Register an additional account" msgstr "سجل حساب إضافي" -#: src/Module/Settings/Delegation.php:192 +#: src/Module/Settings/Delegation.php:178 msgid "" "Parent users have total control about this account, including the account " "settings. Please double check whom you give this access." msgstr "المستخدمون الأولياء لديهم سيطرة كاملة على هذا الحساب، بما في ذلك إعدادات الحساب. الرجاء الحذر عند إعطاء صلاحية الوصول إليه." -#: src/Module/Settings/Delegation.php:195 +#: src/Module/Settings/Delegation.php:181 msgid "Delegates" msgstr "المندوبون" -#: src/Module/Settings/Delegation.php:196 +#: src/Module/Settings/Delegation.php:182 msgid "" "Delegates are able to manage all aspects of this account/page except for " "basic account settings. Please do not delegate your personal account to " "anybody that you do not trust completely." msgstr "يستطيع المندوبون إدارة جميع جوانب هذا الحساب/الصفحة باستثناء إعدادات الحساب الأساسية. يرجى عدم تفويض حسابك الشخصي لأي شخص لا تثق به." -#: src/Module/Settings/Delegation.php:197 +#: src/Module/Settings/Delegation.php:183 msgid "Existing Page Delegates" msgstr "مندوبو الصفحة الحاليون" -#: src/Module/Settings/Delegation.php:198 +#: src/Module/Settings/Delegation.php:184 msgid "Potential Delegates" msgstr "المندوبون المحتملون" -#: src/Module/Settings/Delegation.php:199 +#: src/Module/Settings/Delegation.php:185 msgid "No entries." msgstr "لا مدخلات." -#: src/Module/Settings/Display.php:183 +#: src/Module/Settings/Display.php:169 msgid "The theme you chose isn't available." msgstr "السمة التي اخترتها غير متوفرة." -#: src/Module/Settings/Display.php:223 +#: src/Module/Settings/Display.php:209 #, php-format msgid "%s - (Unsupported)" msgstr "%s - (غير مدعوم)" -#: src/Module/Settings/Display.php:260 +#: src/Module/Settings/Display.php:246 msgid "No preview" msgstr "" -#: src/Module/Settings/Display.php:261 +#: src/Module/Settings/Display.php:247 msgid "No image" msgstr "" -#: src/Module/Settings/Display.php:262 +#: src/Module/Settings/Display.php:248 msgid "Small Image" msgstr "" -#: src/Module/Settings/Display.php:263 +#: src/Module/Settings/Display.php:249 msgid "Large Image" msgstr "" -#: src/Module/Settings/Display.php:308 +#: src/Module/Settings/Display.php:294 msgid "Display Settings" msgstr "إعدادات العرض" -#: src/Module/Settings/Display.php:310 +#: src/Module/Settings/Display.php:296 msgid "General Theme Settings" msgstr "الإعدادات العامة للسمة" -#: src/Module/Settings/Display.php:311 +#: src/Module/Settings/Display.php:297 msgid "Custom Theme Settings" msgstr "الإعدادات المخصصة للسمة" -#: src/Module/Settings/Display.php:312 +#: src/Module/Settings/Display.php:298 msgid "Content Settings" msgstr "إعدادات المحتوى" -#: src/Module/Settings/Display.php:313 view/theme/duepuntozero/config.php:86 -#: view/theme/frio/config.php:151 view/theme/quattro/config.php:88 -#: view/theme/vier/config.php:136 +#: src/Module/Settings/Display.php:299 view/theme/duepuntozero/config.php:74 +#: view/theme/frio/config.php:139 view/theme/quattro/config.php:76 +#: view/theme/vier/config.php:124 msgid "Theme settings" msgstr "إعدادات السمة" -#: src/Module/Settings/Display.php:314 +#: src/Module/Settings/Display.php:300 msgid "Timelines" msgstr "" -#: src/Module/Settings/Display.php:321 +#: src/Module/Settings/Display.php:307 msgid "Display Theme:" msgstr "سمة العرض:" -#: src/Module/Settings/Display.php:322 +#: src/Module/Settings/Display.php:308 msgid "Mobile Theme:" msgstr "سمة الهاتف:" -#: src/Module/Settings/Display.php:325 +#: src/Module/Settings/Display.php:311 msgid "Number of items to display per page:" msgstr "عدد العناصر التي سيتم عرضها في كل صفحة:" -#: src/Module/Settings/Display.php:325 src/Module/Settings/Display.php:326 +#: src/Module/Settings/Display.php:311 src/Module/Settings/Display.php:312 msgid "Maximum of 100 items" msgstr "الحد الأقصى هو 100 عنصر" -#: src/Module/Settings/Display.php:326 +#: src/Module/Settings/Display.php:312 msgid "Number of items to display per page when viewed from mobile device:" msgstr "عدد العناصر التي سيتم عرضها في كل صفحة في وضع الهاتف:" -#: src/Module/Settings/Display.php:327 +#: src/Module/Settings/Display.php:313 msgid "Update browser every xx seconds" msgstr "حدّث المتصفح كل xx ثانية" -#: src/Module/Settings/Display.php:327 +#: src/Module/Settings/Display.php:313 msgid "Minimum of 10 seconds. Enter -1 to disable it." msgstr "الحد الأدنى هو 10 ثواني. أدخل -1 لتعطيله." -#: src/Module/Settings/Display.php:328 +#: src/Module/Settings/Display.php:314 msgid "Display emoticons" msgstr "" -#: src/Module/Settings/Display.php:328 +#: src/Module/Settings/Display.php:314 msgid "When enabled, emoticons are replaced with matching symbols." msgstr "" -#: src/Module/Settings/Display.php:329 +#: src/Module/Settings/Display.php:315 msgid "Infinite scroll" msgstr "التمرير اللانهائي" -#: src/Module/Settings/Display.php:329 +#: src/Module/Settings/Display.php:315 msgid "Automatic fetch new items when reaching the page end." msgstr "يجلب عناصر جديدة تلقائياً عند الوصول إلى نهاية الصفحة." -#: src/Module/Settings/Display.php:330 +#: src/Module/Settings/Display.php:316 msgid "Enable Smart Threading" msgstr "" -#: src/Module/Settings/Display.php:330 +#: src/Module/Settings/Display.php:316 msgid "Enable the automatic suppression of extraneous thread indentation." msgstr "" -#: src/Module/Settings/Display.php:331 +#: src/Module/Settings/Display.php:317 msgid "Display the Dislike feature" msgstr "اعرض ميزة \"لم يعجبني\"" -#: src/Module/Settings/Display.php:331 +#: src/Module/Settings/Display.php:317 msgid "" "Display the Dislike button and dislike reactions on posts and comments." msgstr "يعرض زر لم يعجبني والتفاعلات السلبية في المشاركات والتعليقات." -#: src/Module/Settings/Display.php:332 +#: src/Module/Settings/Display.php:318 msgid "Display the resharer" msgstr "اعرض صاحب إعادة النشر" -#: src/Module/Settings/Display.php:332 +#: src/Module/Settings/Display.php:318 msgid "Display the first resharer as icon and text on a reshared item." msgstr "اعرض صورة صاحب المشاركة الأصلية كأيقونة بالإضافة إلى نص على المشاركة." -#: src/Module/Settings/Display.php:333 +#: src/Module/Settings/Display.php:319 msgid "Stay local" msgstr "ابقى في الخادم المحلي" -#: src/Module/Settings/Display.php:333 +#: src/Module/Settings/Display.php:319 msgid "Don't go to a remote system when following a contact link." msgstr "لا يذهب إلى نظام بعيد عند اتباع رابط متراسل." -#: src/Module/Settings/Display.php:334 +#: src/Module/Settings/Display.php:320 msgid "Show the post deletion checkbox" msgstr "" -#: src/Module/Settings/Display.php:334 +#: src/Module/Settings/Display.php:320 msgid "Display the checkbox for the post deletion on the network page." msgstr "" -#: src/Module/Settings/Display.php:335 +#: src/Module/Settings/Display.php:321 msgid "DIsplay the event list" msgstr "" -#: src/Module/Settings/Display.php:335 +#: src/Module/Settings/Display.php:321 msgid "Display the birthday reminder and event list on the network page." msgstr "" -#: src/Module/Settings/Display.php:336 +#: src/Module/Settings/Display.php:322 msgid "Link preview mode" msgstr "" -#: src/Module/Settings/Display.php:336 +#: src/Module/Settings/Display.php:322 msgid "Appearance of the link preview that is added to each post with a link." msgstr "" -#: src/Module/Settings/Display.php:341 +#: src/Module/Settings/Display.php:327 msgid "Bookmark" msgstr "" -#: src/Module/Settings/Display.php:343 +#: src/Module/Settings/Display.php:329 msgid "" "Enable timelines that you want to see in the channels widget. Bookmark " "timelines that you want to see in the top menu." msgstr "" -#: src/Module/Settings/Display.php:345 +#: src/Module/Settings/Display.php:331 msgid "Channel languages:" msgstr "" -#: src/Module/Settings/Display.php:345 +#: src/Module/Settings/Display.php:331 msgid "Select all languages that you want to see in your channels." msgstr "" -#: src/Module/Settings/Display.php:347 +#: src/Module/Settings/Display.php:333 msgid "Beginning of week:" msgstr "بداية الأسبوع:" -#: src/Module/Settings/Display.php:348 +#: src/Module/Settings/Display.php:334 msgid "Default calendar view:" msgstr "" -#: src/Module/Settings/Features.php:73 +#: src/Module/Settings/Features.php:59 msgid "Additional Features" msgstr "ميزات إضافية" -#: src/Module/Settings/OAuth.php:71 +#: src/Module/Settings/OAuth.php:57 msgid "Connected Apps" msgstr "التطبيقات المتصلة" -#: src/Module/Settings/OAuth.php:75 +#: src/Module/Settings/OAuth.php:61 msgid "Remove authorization" msgstr "أزل التخويل" -#: src/Module/Settings/Profile/Index.php:116 +#: src/Module/Settings/Profile/Index.php:102 msgid "Display Name is required." msgstr "" -#: src/Module/Settings/Profile/Index.php:170 +#: src/Module/Settings/Profile/Index.php:156 msgid "Profile couldn't be updated." msgstr "تعذر تحديث الملف الشخصي." -#: src/Module/Settings/Profile/Index.php:210 -#: src/Module/Settings/Profile/Index.php:231 +#: src/Module/Settings/Profile/Index.php:196 +#: src/Module/Settings/Profile/Index.php:217 msgid "Label:" msgstr "التسمية:" -#: src/Module/Settings/Profile/Index.php:211 -#: src/Module/Settings/Profile/Index.php:232 +#: src/Module/Settings/Profile/Index.php:197 +#: src/Module/Settings/Profile/Index.php:218 msgid "Value:" msgstr "القيمة:" -#: src/Module/Settings/Profile/Index.php:222 -#: src/Module/Settings/Profile/Index.php:243 +#: src/Module/Settings/Profile/Index.php:208 +#: src/Module/Settings/Profile/Index.php:229 msgid "Field Permissions" msgstr "أذونات الحقل" -#: src/Module/Settings/Profile/Index.php:223 -#: src/Module/Settings/Profile/Index.php:244 +#: src/Module/Settings/Profile/Index.php:209 +#: src/Module/Settings/Profile/Index.php:230 msgid "(click to open/close)" msgstr "(أنقر للفتح/للإغلاق)" -#: src/Module/Settings/Profile/Index.php:229 +#: src/Module/Settings/Profile/Index.php:215 msgid "Add a new profile field" msgstr "أضف حقلًا جديدًا للملف الشخصي" -#: src/Module/Settings/Profile/Index.php:252 +#: src/Module/Settings/Profile/Index.php:238 msgid "" "The homepage is verified. A rel=\"me\" link back to your Friendica profile " "page was found on the homepage." msgstr "" -#: src/Module/Settings/Profile/Index.php:254 +#: src/Module/Settings/Profile/Index.php:240 #, php-format msgid "" "To verify your homepage, add a rel=\"me\" link to it, pointing to your " "profile URL (%s)." msgstr "" -#: src/Module/Settings/Profile/Index.php:260 +#: src/Module/Settings/Profile/Index.php:246 msgid "Profile Actions" msgstr "إجراءات الملف الشخصي" -#: src/Module/Settings/Profile/Index.php:261 +#: src/Module/Settings/Profile/Index.php:247 msgid "Edit Profile Details" msgstr "عدّل تفاصيل الملف الشخصي" -#: src/Module/Settings/Profile/Index.php:263 +#: src/Module/Settings/Profile/Index.php:249 msgid "Change Profile Photo" msgstr "غيّر صورة الملف الشخصي" -#: src/Module/Settings/Profile/Index.php:266 +#: src/Module/Settings/Profile/Index.php:252 msgid "Profile picture" msgstr "صورة الملف الشخصي" -#: src/Module/Settings/Profile/Index.php:267 +#: src/Module/Settings/Profile/Index.php:253 msgid "Location" msgstr "الموقع" -#: src/Module/Settings/Profile/Index.php:268 src/Util/Temporal.php:97 -#: src/Util/Temporal.php:99 +#: src/Module/Settings/Profile/Index.php:254 src/Util/Temporal.php:83 +#: src/Util/Temporal.php:85 msgid "Miscellaneous" msgstr "متنوّع" -#: src/Module/Settings/Profile/Index.php:269 +#: src/Module/Settings/Profile/Index.php:255 msgid "Custom Profile Fields" msgstr "حقول مخصصة للملف الشخصي" -#: src/Module/Settings/Profile/Index.php:270 src/Module/Welcome.php:58 +#: src/Module/Settings/Profile/Index.php:256 src/Module/Welcome.php:44 msgid "Upload Profile Photo" msgstr "ارفع صورة الملف الشخصي" -#: src/Module/Settings/Profile/Index.php:271 +#: src/Module/Settings/Profile/Index.php:257 #, php-format msgid "" "

Custom fields appear on your profile page.

\n" @@ -11182,396 +11152,396 @@ msgid "" "\t\t\t\t

Non-public fields can only be seen by the selected Friendica contacts or the Friendica contacts in the selected circles.

" msgstr "" -#: src/Module/Settings/Profile/Index.php:291 +#: src/Module/Settings/Profile/Index.php:277 msgid "Street Address:" msgstr "عنوان الشارع:" -#: src/Module/Settings/Profile/Index.php:292 +#: src/Module/Settings/Profile/Index.php:278 msgid "Locality/City:" msgstr "المدينة:" -#: src/Module/Settings/Profile/Index.php:293 +#: src/Module/Settings/Profile/Index.php:279 msgid "Region/State:" msgstr "الولاية:" -#: src/Module/Settings/Profile/Index.php:294 +#: src/Module/Settings/Profile/Index.php:280 msgid "Postal/Zip Code:" msgstr "الرمز البريدي:" -#: src/Module/Settings/Profile/Index.php:295 +#: src/Module/Settings/Profile/Index.php:281 msgid "Country:" msgstr "الدّولة:" -#: src/Module/Settings/Profile/Index.php:297 +#: src/Module/Settings/Profile/Index.php:283 msgid "XMPP (Jabber) address:" msgstr "عنوان XMPP (Jabber):" -#: src/Module/Settings/Profile/Index.php:297 +#: src/Module/Settings/Profile/Index.php:283 msgid "" "The XMPP address will be published so that people can follow you there." msgstr "سيتم نشر عنوان XMPP حتى يتمكن الناس من متابعتك هناك." -#: src/Module/Settings/Profile/Index.php:298 +#: src/Module/Settings/Profile/Index.php:284 msgid "Matrix (Element) address:" msgstr "عنوان مايتركس:" -#: src/Module/Settings/Profile/Index.php:298 +#: src/Module/Settings/Profile/Index.php:284 msgid "" "The Matrix address will be published so that people can follow you there." msgstr "سيتم نشر عنوان مايتركس حتى يتمكن الناس من متابعتك هناك." -#: src/Module/Settings/Profile/Index.php:299 +#: src/Module/Settings/Profile/Index.php:285 msgid "Homepage URL:" msgstr "رابط الصفحة الرئيسية:" -#: src/Module/Settings/Profile/Index.php:300 +#: src/Module/Settings/Profile/Index.php:286 msgid "Public Keywords:" msgstr "الكلمات المفتاحية العلنية:" -#: src/Module/Settings/Profile/Index.php:300 +#: src/Module/Settings/Profile/Index.php:286 msgid "(Used for suggesting potential friends, can be seen by others)" msgstr "(يستخدم لاقتراح أصدقاء، يمكن للآخرين رؤيتهم)" -#: src/Module/Settings/Profile/Index.php:301 +#: src/Module/Settings/Profile/Index.php:287 msgid "Private Keywords:" msgstr "الكلمات المفتاحية الخاصة:" -#: src/Module/Settings/Profile/Index.php:301 +#: src/Module/Settings/Profile/Index.php:287 msgid "(Used for searching profiles, never shown to others)" msgstr "(يستخدم للبحث عن ملفات الشخصية، لا يظهر للآخرين)" -#: src/Module/Settings/Profile/Photo/Crop.php:107 -#: src/Module/Settings/Profile/Photo/Crop.php:125 -#: src/Module/Settings/Profile/Photo/Crop.php:143 -#: src/Module/Settings/Profile/Photo/Index.php:100 +#: src/Module/Settings/Profile/Photo/Crop.php:93 +#: src/Module/Settings/Profile/Photo/Crop.php:111 +#: src/Module/Settings/Profile/Photo/Crop.php:129 +#: src/Module/Settings/Profile/Photo/Index.php:86 #, php-format msgid "Image size reduction [%s] failed." msgstr "فشل تقليص حجم الصورة [%s]." -#: src/Module/Settings/Profile/Photo/Crop.php:150 +#: src/Module/Settings/Profile/Photo/Crop.php:136 msgid "" "Shift-reload the page or clear browser cache if the new photo does not " "display immediately." msgstr "إذا لم تظهر الصورة الجديدة أعد تحميل الصفحة مع الضغط على مفتاح Shift، أو امسح ذاكرة التخزين المؤقت للمتصفح." -#: src/Module/Settings/Profile/Photo/Crop.php:155 +#: src/Module/Settings/Profile/Photo/Crop.php:141 msgid "Unable to process image" msgstr "تعذرت معالجة الصورة" -#: src/Module/Settings/Profile/Photo/Crop.php:174 +#: src/Module/Settings/Profile/Photo/Crop.php:160 msgid "Photo not found." msgstr "لم يُعثر على الصورة." -#: src/Module/Settings/Profile/Photo/Crop.php:196 +#: src/Module/Settings/Profile/Photo/Crop.php:182 msgid "Profile picture successfully updated." msgstr "نجح تحديث صورة الملف الشخصي." -#: src/Module/Settings/Profile/Photo/Crop.php:222 -#: src/Module/Settings/Profile/Photo/Crop.php:226 +#: src/Module/Settings/Profile/Photo/Crop.php:208 +#: src/Module/Settings/Profile/Photo/Crop.php:212 msgid "Crop Image" msgstr "قص الصورة" -#: src/Module/Settings/Profile/Photo/Crop.php:223 +#: src/Module/Settings/Profile/Photo/Crop.php:209 msgid "Please adjust the image cropping for optimum viewing." msgstr "اضبط قص الصور للحصول على أفضل عرض ممكن." -#: src/Module/Settings/Profile/Photo/Crop.php:225 +#: src/Module/Settings/Profile/Photo/Crop.php:211 msgid "Use Image As Is" msgstr "استخدم الصورة كما هي" -#: src/Module/Settings/Profile/Photo/Index.php:46 +#: src/Module/Settings/Profile/Photo/Index.php:32 msgid "Missing uploaded image." msgstr "الصورة المرفوعة مفقودة." -#: src/Module/Settings/Profile/Photo/Index.php:123 +#: src/Module/Settings/Profile/Photo/Index.php:109 msgid "Profile Picture Settings" msgstr "إعدادات الصورة الشخصية" -#: src/Module/Settings/Profile/Photo/Index.php:124 +#: src/Module/Settings/Profile/Photo/Index.php:110 msgid "Current Profile Picture" msgstr "الصورة الشخصية الحالية" -#: src/Module/Settings/Profile/Photo/Index.php:125 +#: src/Module/Settings/Profile/Photo/Index.php:111 msgid "Upload Profile Picture" msgstr "ارفع صورة للملف الشخصي" -#: src/Module/Settings/Profile/Photo/Index.php:126 +#: src/Module/Settings/Profile/Photo/Index.php:112 msgid "Upload Picture:" msgstr "ارفع صورة:" -#: src/Module/Settings/Profile/Photo/Index.php:131 +#: src/Module/Settings/Profile/Photo/Index.php:117 msgid "or" msgstr "أو" -#: src/Module/Settings/Profile/Photo/Index.php:133 +#: src/Module/Settings/Profile/Photo/Index.php:119 msgid "skip this step" msgstr "تخطى هذه الخطوة" -#: src/Module/Settings/Profile/Photo/Index.php:135 +#: src/Module/Settings/Profile/Photo/Index.php:121 msgid "select a photo from your photo albums" msgstr "اختر صورة من ألبومك" -#: src/Module/Settings/RemoveMe.php:76 +#: src/Module/Settings/RemoveMe.php:62 msgid "" "There was a validation error, please make sure you're logged in with the " "account you want to remove and try again." msgstr "" -#: src/Module/Settings/RemoveMe.php:76 +#: src/Module/Settings/RemoveMe.php:62 msgid "If this error persists, please contact your administrator." msgstr "" -#: src/Module/Settings/RemoveMe.php:90 -#: src/Navigation/Notifications/Repository/Notify.php:471 -#: src/Navigation/Notifications/Repository/Notify.php:492 +#: src/Module/Settings/RemoveMe.php:76 +#: src/Navigation/Notifications/Repository/Notify.php:457 +#: src/Navigation/Notifications/Repository/Notify.php:478 msgid "[Friendica System Notify]" msgstr "[تنبيه نظام فرنديكا]" -#: src/Module/Settings/RemoveMe.php:90 +#: src/Module/Settings/RemoveMe.php:76 msgid "User deleted their account" msgstr "حذف المستخدم حسابه" -#: src/Module/Settings/RemoveMe.php:91 +#: src/Module/Settings/RemoveMe.php:77 msgid "" "On your Friendica node an user deleted their account. Please ensure that " "their data is removed from the backups." msgstr "حذف مستخدم حسابه على عقدة فرَندِكا خاصتك. من فضلك تأكد أن بياناتهم أُزيلت من النسخ الاحتياطية." -#: src/Module/Settings/RemoveMe.php:92 +#: src/Module/Settings/RemoveMe.php:78 #, php-format msgid "The user id is %d" msgstr "معرف المستخدم هو %d" -#: src/Module/Settings/RemoveMe.php:105 +#: src/Module/Settings/RemoveMe.php:91 msgid "Your account has been successfully removed. Bye bye!" msgstr "" -#: src/Module/Settings/RemoveMe.php:130 +#: src/Module/Settings/RemoveMe.php:116 msgid "Remove My Account" msgstr "أزل حسابي" -#: src/Module/Settings/RemoveMe.php:131 +#: src/Module/Settings/RemoveMe.php:117 msgid "" "This will completely remove your account. Once this has been done it is not " "recoverable." msgstr "سيزال حسابك نهائيًا. لا مجال لتراجع عند انتهائه." -#: src/Module/Settings/RemoveMe.php:136 +#: src/Module/Settings/RemoveMe.php:122 msgid "Please enter your password for verification:" msgstr "يرجى إدخال كلمة المرور للتأكيد:" -#: src/Module/Settings/Server/Action.php:60 +#: src/Module/Settings/Server/Action.php:46 msgid "Do you want to ignore this server?" msgstr "" -#: src/Module/Settings/Server/Action.php:64 +#: src/Module/Settings/Server/Action.php:50 msgid "Do you want to unignore this server?" msgstr "" -#: src/Module/Settings/Server/Action.php:74 -#: src/Module/Settings/Server/Index.php:104 +#: src/Module/Settings/Server/Action.php:60 +#: src/Module/Settings/Server/Index.php:90 msgid "Remote server settings" msgstr "" -#: src/Module/Settings/Server/Action.php:77 +#: src/Module/Settings/Server/Action.php:63 msgid "Server URL" msgstr "" -#: src/Module/Settings/Server/Index.php:78 +#: src/Module/Settings/Server/Index.php:64 msgid "Settings saved" msgstr "" -#: src/Module/Settings/Server/Index.php:105 +#: src/Module/Settings/Server/Index.php:91 msgid "" "Here you can find all the remote servers you have taken individual " "moderation actions against. For a list of servers your node has blocked, " "please check out the Information page." msgstr "" -#: src/Module/Settings/Server/Index.php:110 +#: src/Module/Settings/Server/Index.php:96 msgid "Delete all your settings for the remote server" msgstr "" -#: src/Module/Settings/Server/Index.php:111 +#: src/Module/Settings/Server/Index.php:97 msgid "Save changes" msgstr "" -#: src/Module/Settings/TwoFactor/AppSpecific.php:69 -#: src/Module/Settings/TwoFactor/Recovery.php:67 -#: src/Module/Settings/TwoFactor/Trusted.php:70 -#: src/Module/Settings/TwoFactor/Verify.php:72 +#: src/Module/Settings/TwoFactor/AppSpecific.php:55 +#: src/Module/Settings/TwoFactor/Recovery.php:53 +#: src/Module/Settings/TwoFactor/Trusted.php:56 +#: src/Module/Settings/TwoFactor/Verify.php:58 msgid "Please enter your password to access this page." msgstr "يرجى إدخال كلمة المرور للوصول إلى هذه الصفحة." -#: src/Module/Settings/TwoFactor/AppSpecific.php:87 +#: src/Module/Settings/TwoFactor/AppSpecific.php:73 msgid "App-specific password generation failed: The description is empty." msgstr "" -#: src/Module/Settings/TwoFactor/AppSpecific.php:90 +#: src/Module/Settings/TwoFactor/AppSpecific.php:76 msgid "" "App-specific password generation failed: This description already exists." msgstr "" -#: src/Module/Settings/TwoFactor/AppSpecific.php:94 +#: src/Module/Settings/TwoFactor/AppSpecific.php:80 msgid "New app-specific password generated." msgstr "أُنشئت كلمة مرور جديدة خاصة بالتطبيق بنجاح." -#: src/Module/Settings/TwoFactor/AppSpecific.php:100 +#: src/Module/Settings/TwoFactor/AppSpecific.php:86 msgid "App-specific passwords successfully revoked." msgstr "" -#: src/Module/Settings/TwoFactor/AppSpecific.php:110 +#: src/Module/Settings/TwoFactor/AppSpecific.php:96 msgid "App-specific password successfully revoked." msgstr "" -#: src/Module/Settings/TwoFactor/AppSpecific.php:131 +#: src/Module/Settings/TwoFactor/AppSpecific.php:117 msgid "Two-factor app-specific passwords" msgstr "" -#: src/Module/Settings/TwoFactor/AppSpecific.php:133 +#: src/Module/Settings/TwoFactor/AppSpecific.php:119 msgid "" "

App-specific passwords are randomly generated passwords used instead your" " regular password to authenticate your account on third-party applications " "that don't support two-factor authentication.

" msgstr "" -#: src/Module/Settings/TwoFactor/AppSpecific.php:134 +#: src/Module/Settings/TwoFactor/AppSpecific.php:120 msgid "" "Make sure to copy your new app-specific password now. You won’t be able to " "see it again!" msgstr "" -#: src/Module/Settings/TwoFactor/AppSpecific.php:138 +#: src/Module/Settings/TwoFactor/AppSpecific.php:124 msgid "Last Used" msgstr "آخر استخدام" -#: src/Module/Settings/TwoFactor/AppSpecific.php:139 +#: src/Module/Settings/TwoFactor/AppSpecific.php:125 msgid "Revoke" msgstr "أبطل" -#: src/Module/Settings/TwoFactor/AppSpecific.php:140 +#: src/Module/Settings/TwoFactor/AppSpecific.php:126 msgid "Revoke All" msgstr "أبطل الكل" -#: src/Module/Settings/TwoFactor/AppSpecific.php:143 +#: src/Module/Settings/TwoFactor/AppSpecific.php:129 msgid "" "When you generate a new app-specific password, you must use it right away, " "it will be shown to you once after you generate it." msgstr "" -#: src/Module/Settings/TwoFactor/AppSpecific.php:144 +#: src/Module/Settings/TwoFactor/AppSpecific.php:130 msgid "Generate new app-specific password" msgstr "" -#: src/Module/Settings/TwoFactor/AppSpecific.php:145 +#: src/Module/Settings/TwoFactor/AppSpecific.php:131 msgid "Friendiqa on my Fairphone 2..." msgstr "" -#: src/Module/Settings/TwoFactor/AppSpecific.php:146 +#: src/Module/Settings/TwoFactor/AppSpecific.php:132 msgid "Generate" msgstr "ولّد" -#: src/Module/Settings/TwoFactor/Index.php:88 +#: src/Module/Settings/TwoFactor/Index.php:74 msgid "Two-factor authentication successfully disabled." msgstr "عُطل الاستيثاق بعاملين." -#: src/Module/Settings/TwoFactor/Index.php:141 +#: src/Module/Settings/TwoFactor/Index.php:127 msgid "" "

Use an application on a mobile device to get two-factor authentication " "codes when prompted on login.

" msgstr "

استخدام تطبيق هاتف للحصول على رموز الاستيثاق بعاملين عند الولوج.

" -#: src/Module/Settings/TwoFactor/Index.php:145 +#: src/Module/Settings/TwoFactor/Index.php:131 msgid "Authenticator app" msgstr "تطبيق الاستيثاق" -#: src/Module/Settings/TwoFactor/Index.php:146 +#: src/Module/Settings/TwoFactor/Index.php:132 msgid "Configured" msgstr "مضبوط" -#: src/Module/Settings/TwoFactor/Index.php:146 +#: src/Module/Settings/TwoFactor/Index.php:132 msgid "Not Configured" msgstr "غير مضبوط" -#: src/Module/Settings/TwoFactor/Index.php:147 +#: src/Module/Settings/TwoFactor/Index.php:133 msgid "

You haven't finished configuring your authenticator app.

" msgstr "

لم تنته من ضبط تطبيق الاستيثاق

" -#: src/Module/Settings/TwoFactor/Index.php:148 +#: src/Module/Settings/TwoFactor/Index.php:134 msgid "

Your authenticator app is correctly configured.

" msgstr "

ضُبط تطبيق الاستيثاق.

" -#: src/Module/Settings/TwoFactor/Index.php:150 +#: src/Module/Settings/TwoFactor/Index.php:136 msgid "Recovery codes" msgstr "رموز الاستعادة" -#: src/Module/Settings/TwoFactor/Index.php:151 +#: src/Module/Settings/TwoFactor/Index.php:137 msgid "Remaining valid codes" msgstr "رموز الاستعادة المتبقية" -#: src/Module/Settings/TwoFactor/Index.php:153 +#: src/Module/Settings/TwoFactor/Index.php:139 msgid "" "

These one-use codes can replace an authenticator app code in case you " "have lost access to it.

" msgstr "" -#: src/Module/Settings/TwoFactor/Index.php:155 +#: src/Module/Settings/TwoFactor/Index.php:141 msgid "App-specific passwords" msgstr "" -#: src/Module/Settings/TwoFactor/Index.php:156 +#: src/Module/Settings/TwoFactor/Index.php:142 msgid "Generated app-specific passwords" msgstr "" -#: src/Module/Settings/TwoFactor/Index.php:158 +#: src/Module/Settings/TwoFactor/Index.php:144 msgid "" "

These randomly generated passwords allow you to authenticate on apps not " "supporting two-factor authentication.

" msgstr "" -#: src/Module/Settings/TwoFactor/Index.php:161 +#: src/Module/Settings/TwoFactor/Index.php:147 msgid "Current password:" msgstr "كلمة المرور الحالية:" -#: src/Module/Settings/TwoFactor/Index.php:161 +#: src/Module/Settings/TwoFactor/Index.php:147 msgid "" "You need to provide your current password to change two-factor " "authentication settings." msgstr "أدخل كلمة المرور لتغيير إعدادات الاستيثاق بعاملين." -#: src/Module/Settings/TwoFactor/Index.php:162 +#: src/Module/Settings/TwoFactor/Index.php:148 msgid "Enable two-factor authentication" msgstr "فعّل الاستيثاق بعاملين" -#: src/Module/Settings/TwoFactor/Index.php:163 +#: src/Module/Settings/TwoFactor/Index.php:149 msgid "Disable two-factor authentication" msgstr "عطّل الاستيثاق بعاملين" -#: src/Module/Settings/TwoFactor/Index.php:164 +#: src/Module/Settings/TwoFactor/Index.php:150 msgid "Show recovery codes" msgstr "أظهر رموز الاستعادة" -#: src/Module/Settings/TwoFactor/Index.php:165 +#: src/Module/Settings/TwoFactor/Index.php:151 msgid "Manage app-specific passwords" msgstr "" -#: src/Module/Settings/TwoFactor/Index.php:166 +#: src/Module/Settings/TwoFactor/Index.php:152 msgid "Manage trusted browsers" msgstr "" -#: src/Module/Settings/TwoFactor/Index.php:167 +#: src/Module/Settings/TwoFactor/Index.php:153 msgid "Finish app configuration" msgstr "أنه ضبط التطبيق" -#: src/Module/Settings/TwoFactor/Recovery.php:83 +#: src/Module/Settings/TwoFactor/Recovery.php:69 msgid "New recovery codes successfully generated." msgstr "نجح توليد رموز الاستعادة." -#: src/Module/Settings/TwoFactor/Recovery.php:109 +#: src/Module/Settings/TwoFactor/Recovery.php:95 msgid "Two-factor recovery codes" msgstr "" -#: src/Module/Settings/TwoFactor/Recovery.php:111 +#: src/Module/Settings/TwoFactor/Recovery.php:97 msgid "" "

Recovery codes can be used to access your account in the event you lose " "access to your device and cannot receive two-factor authentication " @@ -11580,68 +11550,68 @@ msgid "" "account.

" msgstr "

يمكن استخدام رموز الاستعادة للوصول إلى حسابك في حال فقدت الوصول إلى جهازك ولا يمكن أن تتلقى رموز الاستيثاق بعاملين.

احتفظ بها في مكان آمن! إذا فقدت جهازك ولم يكن لديك رموز الاستعادة فستفقد الوصول إلى حسابك.

" -#: src/Module/Settings/TwoFactor/Recovery.php:113 +#: src/Module/Settings/TwoFactor/Recovery.php:99 msgid "" "When you generate new recovery codes, you must copy the new codes. Your old " "codes won’t work anymore." msgstr "" -#: src/Module/Settings/TwoFactor/Recovery.php:114 +#: src/Module/Settings/TwoFactor/Recovery.php:100 msgid "Generate new recovery codes" msgstr "ولّد رموز الاستعادة" -#: src/Module/Settings/TwoFactor/Recovery.php:116 +#: src/Module/Settings/TwoFactor/Recovery.php:102 msgid "Next: Verification" msgstr "التالي: التحقق" -#: src/Module/Settings/TwoFactor/Trusted.php:87 +#: src/Module/Settings/TwoFactor/Trusted.php:73 msgid "Trusted browsers successfully removed." msgstr "" -#: src/Module/Settings/TwoFactor/Trusted.php:97 +#: src/Module/Settings/TwoFactor/Trusted.php:83 msgid "Trusted browser successfully removed." msgstr "" -#: src/Module/Settings/TwoFactor/Trusted.php:139 +#: src/Module/Settings/TwoFactor/Trusted.php:125 msgid "Two-factor Trusted Browsers" msgstr "" -#: src/Module/Settings/TwoFactor/Trusted.php:140 +#: src/Module/Settings/TwoFactor/Trusted.php:126 msgid "" "Trusted browsers are individual browsers you chose to skip two-factor " "authentication to access Friendica. Please use this feature sparingly, as it" " can negate the benefit of two-factor authentication." msgstr "" -#: src/Module/Settings/TwoFactor/Trusted.php:141 +#: src/Module/Settings/TwoFactor/Trusted.php:127 msgid "Device" msgstr "الجهاز" -#: src/Module/Settings/TwoFactor/Trusted.php:142 +#: src/Module/Settings/TwoFactor/Trusted.php:128 msgid "OS" msgstr "نظام التشغيل" -#: src/Module/Settings/TwoFactor/Trusted.php:144 +#: src/Module/Settings/TwoFactor/Trusted.php:130 msgid "Trusted" msgstr "موثوق" -#: src/Module/Settings/TwoFactor/Trusted.php:145 +#: src/Module/Settings/TwoFactor/Trusted.php:131 msgid "Created At" msgstr "" -#: src/Module/Settings/TwoFactor/Trusted.php:146 +#: src/Module/Settings/TwoFactor/Trusted.php:132 msgid "Last Use" msgstr "آخر استخدام" -#: src/Module/Settings/TwoFactor/Trusted.php:148 +#: src/Module/Settings/TwoFactor/Trusted.php:134 msgid "Remove All" msgstr "أزل الكل" -#: src/Module/Settings/TwoFactor/Verify.php:94 +#: src/Module/Settings/TwoFactor/Verify.php:80 msgid "Two-factor authentication successfully activated." msgstr "فُعّل الاستيثاق بعاملين." -#: src/Module/Settings/TwoFactor/Verify.php:128 +#: src/Module/Settings/TwoFactor/Verify.php:114 #, php-format msgid "" "

Or you can submit the authentication settings manually:

\n" @@ -11661,105 +11631,105 @@ msgid "" "" msgstr "

أو يمكنك إرسال إعدادات الاستيثاق يدوياً:

\n
\n\t
المصدر
\n\t
%s
\n\t
اسم الحساب
\n\t
%s
\n\t
المفتاح السري
\n\t
%s
\n\t
النوع
\n\t
مبني الوقت
\n\t
عدد الأرقام
\n\t
6
\n\t
خوارزمية التجزئة
\n\t
SHA-1
\n
" -#: src/Module/Settings/TwoFactor/Verify.php:148 +#: src/Module/Settings/TwoFactor/Verify.php:134 msgid "Two-factor code verification" msgstr "رمز التحقق للاستيثاق بعاملَيْن" -#: src/Module/Settings/TwoFactor/Verify.php:150 +#: src/Module/Settings/TwoFactor/Verify.php:136 msgid "" "

Please scan this QR Code with your authenticator app and submit the " "provided code.

" msgstr "" -#: src/Module/Settings/TwoFactor/Verify.php:152 +#: src/Module/Settings/TwoFactor/Verify.php:138 #, php-format msgid "" "

Or you can open the following URL in your mobile device:

%s

" msgstr "" -#: src/Module/Settings/TwoFactor/Verify.php:159 +#: src/Module/Settings/TwoFactor/Verify.php:145 msgid "Verify code and enable two-factor authentication" msgstr "تحقق من الرمز و فعّل الاستيثاق بعاملين" -#: src/Module/Settings/UserExport.php:90 +#: src/Module/Settings/UserExport.php:76 msgid "Export account" msgstr "صدّر الحساب" -#: src/Module/Settings/UserExport.php:90 +#: src/Module/Settings/UserExport.php:76 msgid "" "Export your account info and contacts. Use this to make a backup of your " "account and/or to move it to another server." msgstr "صدّر معلومات حسابك ومتراسليك. استخدمه لإنشاء نسخة احتياطية من حسابك أو لنقله إلى خادم آخر." -#: src/Module/Settings/UserExport.php:91 +#: src/Module/Settings/UserExport.php:77 msgid "Export all" msgstr "صدّر الكل" -#: src/Module/Settings/UserExport.php:91 +#: src/Module/Settings/UserExport.php:77 msgid "" "Export your account info, contacts and all your items as json. Could be a " "very big file, and could take a lot of time. Use this to make a full backup " "of your account (photos are not exported)" msgstr "صدّر معلومات حسابك ومتراسليك وجميع العناصر الخاصة بك كملف json. قد يستغرق وقتًا طويلًا وينتج عنه ملف كبير. استخدمه لإنشاء نسخة احتياطية كاملة من حسابك (الصور غير مضمنة)" -#: src/Module/Settings/UserExport.php:92 +#: src/Module/Settings/UserExport.php:78 msgid "Export Contacts to CSV" msgstr "صدّر المتراسلين الى ملف CSV" -#: src/Module/Settings/UserExport.php:92 +#: src/Module/Settings/UserExport.php:78 msgid "" "Export the list of the accounts you are following as CSV file. Compatible to" " e.g. Mastodon." msgstr "صدّر قائمة الحسابات المتابَعة إلى ملف csv. هذا الملف متوافق مع ماستدون." -#: src/Module/Special/DisplayNotFound.php:35 +#: src/Module/Special/DisplayNotFound.php:21 msgid "The top-level post isn't visible." msgstr "" -#: src/Module/Special/DisplayNotFound.php:36 +#: src/Module/Special/DisplayNotFound.php:22 msgid "The top-level post was deleted." msgstr "" -#: src/Module/Special/DisplayNotFound.php:37 +#: src/Module/Special/DisplayNotFound.php:23 msgid "" "This node has blocked the top-level author or the author of the shared post." msgstr "" -#: src/Module/Special/DisplayNotFound.php:38 +#: src/Module/Special/DisplayNotFound.php:24 msgid "" "You have ignored or blocked the top-level author or the author of the shared" " post." msgstr "" -#: src/Module/Special/DisplayNotFound.php:39 +#: src/Module/Special/DisplayNotFound.php:25 msgid "" "You have ignored the top-level author's server or the shared post author's " "server." msgstr "" -#: src/Module/Special/DisplayNotFound.php:45 +#: src/Module/Special/DisplayNotFound.php:31 msgid "Conversation Not Found" msgstr "" -#: src/Module/Special/DisplayNotFound.php:46 +#: src/Module/Special/DisplayNotFound.php:32 msgid "Unfortunately, the requested conversation isn't available to you." msgstr "" -#: src/Module/Special/DisplayNotFound.php:47 +#: src/Module/Special/DisplayNotFound.php:33 msgid "Possible reasons include:" msgstr "" -#: src/Module/Special/HTTPException.php:78 +#: src/Module/Special/HTTPException.php:64 msgid "Stack trace:" msgstr "" -#: src/Module/Special/HTTPException.php:83 +#: src/Module/Special/HTTPException.php:69 #, php-format msgid "Exception thrown in %s:%d" msgstr "" -#: src/Module/Tos.php:58 src/Module/Tos.php:107 +#: src/Module/Tos.php:44 src/Module/Tos.php:93 msgid "" "At the time of registration, and for providing communications between the " "user account and their contacts, the user has to provide a display name (pen" @@ -11772,14 +11742,14 @@ msgid "" "settings, it is not necessary for communication." msgstr "" -#: src/Module/Tos.php:59 src/Module/Tos.php:108 +#: src/Module/Tos.php:45 src/Module/Tos.php:94 msgid "" "This data is required for communication and is passed on to the nodes of the" " communication partners and is stored there. Users can enter additional " "private data that may be transmitted to the communication partners accounts." msgstr "" -#: src/Module/Tos.php:60 src/Module/Tos.php:109 +#: src/Module/Tos.php:46 src/Module/Tos.php:95 #, php-format msgid "" "At any point in time a logged in user can export their account data from the" @@ -11790,98 +11760,98 @@ msgid "" "from the nodes of the communication partners." msgstr "" -#: src/Module/Tos.php:63 src/Module/Tos.php:106 +#: src/Module/Tos.php:49 src/Module/Tos.php:92 msgid "Privacy Statement" msgstr "بيان الخصوصية" -#: src/Module/Tos.php:103 +#: src/Module/Tos.php:89 msgid "Rules" msgstr "" -#: src/Module/Update/Display.php:45 +#: src/Module/Update/Display.php:31 msgid "Parameter uri_id is missing." msgstr "" -#: src/Module/Update/Display.php:55 +#: src/Module/Update/Display.php:41 msgid "The requested item doesn't exist or has been deleted." msgstr "العنصر غير موجود أو حُذف." -#: src/Module/User/Delegation.php:146 +#: src/Module/User/Delegation.php:132 #, php-format msgid "You are now logged in as %s" msgstr "" -#: src/Module/User/Delegation.php:185 +#: src/Module/User/Delegation.php:171 msgid "Switch between your accounts" msgstr "بدّل الحساب" -#: src/Module/User/Delegation.php:186 +#: src/Module/User/Delegation.php:172 msgid "Manage your accounts" msgstr "إدارة حسابك" -#: src/Module/User/Delegation.php:187 +#: src/Module/User/Delegation.php:173 msgid "" "Toggle between different identities or community/group pages which share " "your account details or which you have been granted \"manage\" permissions" msgstr "تنقل بين مختلف الهويات أو الصفحات (المجموعات / المجتمعات) التي تملكها أو التي خوّل لك إدارتها" -#: src/Module/User/Delegation.php:188 +#: src/Module/User/Delegation.php:174 msgid "Select an identity to manage: " msgstr "" -#: src/Module/User/Import.php:104 +#: src/Module/User/Import.php:90 msgid "User imports on closed servers can only be done by an administrator." msgstr "يمكن للمدراء فقط استيراد المستخدمين في الخوادم المغلقة." -#: src/Module/User/Import.php:120 +#: src/Module/User/Import.php:106 msgid "Move account" msgstr "أنقل الحساب" -#: src/Module/User/Import.php:121 +#: src/Module/User/Import.php:107 msgid "You can import an account from another Friendica server." msgstr "يمكنك استيراد حساب من خادم فرَندِكا آخر." -#: src/Module/User/Import.php:122 +#: src/Module/User/Import.php:108 msgid "" "You need to export your account from the old server and upload it here. We " "will recreate your old account here with all your contacts. We will try also" " to inform your friends that you moved here." msgstr "تحتاج إلى تصدير حسابك من الخادم القديم ورفعه هنا. سوف نقوم بإعادة إنشاء حسابك القديم هنا مع إضافة كل المتراسلين. سوف نحاول أيضًا إبلاغهم أنك انتقلت إلى هنا." -#: src/Module/User/Import.php:123 +#: src/Module/User/Import.php:109 msgid "" "This feature is experimental. We can't import contacts from the OStatus " "network (GNU Social/Statusnet) or from Diaspora" msgstr "هذه الميزة تجريبية. لا يمكن استيراد متراسلين من شبكة OStatus (GNU Social/Statusnet) أو من شبكة دياسبورا" -#: src/Module/User/Import.php:124 +#: src/Module/User/Import.php:110 msgid "Account file" msgstr "ملف الحساب" -#: src/Module/User/Import.php:124 +#: src/Module/User/Import.php:110 msgid "" "To export your account, go to \"Settings->Export your personal data\" and " "select \"Export account\"" msgstr "لتصدير حسابك، انتقل إلى \"إعدادات-> تصدير بياناتك الشخصية\" واختر \"صدر الحساب\"" -#: src/Module/User/Import.php:218 +#: src/Module/User/Import.php:204 msgid "Error decoding account file" msgstr "خطأ أثناء فك ترميز ملف الحساب" -#: src/Module/User/Import.php:223 +#: src/Module/User/Import.php:209 msgid "Error! No version data in file! This is not a Friendica account file?" msgstr "خطأ! لا توجد بيانات إصدار في الملف! هذا ليس ملف شخصي لفرنديكا؟" -#: src/Module/User/Import.php:231 +#: src/Module/User/Import.php:217 #, php-format msgid "User '%s' already exists on this server!" msgstr "المستخدم '%s' موجود سلفًا على هذا الخادم!" -#: src/Module/User/Import.php:268 +#: src/Module/User/Import.php:254 msgid "User creation error" msgstr "خطأ أثناء إنشاء المستخدم" -#: src/Module/User/Import.php:317 +#: src/Module/User/Import.php:303 #, php-format msgid "%d contact not imported" msgid_plural "%d contacts not imported" @@ -11892,23 +11862,23 @@ msgstr[3] "لم يستورد %d متراسلين" msgstr[4] "لم يستورد %d متراسلًا" msgstr[5] "لم يستورد %d متراسل" -#: src/Module/User/Import.php:366 +#: src/Module/User/Import.php:352 msgid "User profile creation error" msgstr "خطأ أثناء إنشاء الملف الشخصي للمستخدم" -#: src/Module/User/Import.php:417 +#: src/Module/User/Import.php:403 msgid "Done. You can now login with your username and password" msgstr "تم. يمكنك الآن الولوج باستخدام اسم المستخدم وكلمة المرور" -#: src/Module/Welcome.php:44 +#: src/Module/Welcome.php:30 msgid "Welcome to Friendica" msgstr "مرحبا بك في فرَندِكا" -#: src/Module/Welcome.php:45 +#: src/Module/Welcome.php:31 msgid "New Member Checklist" msgstr "" -#: src/Module/Welcome.php:46 +#: src/Module/Welcome.php:32 msgid "" "We would like to offer some tips and links to help make your experience " "enjoyable. Click any item to visit the relevant page. A link to this page " @@ -11916,33 +11886,33 @@ msgid "" "registration and then will quietly disappear." msgstr "نود أن نقدم بعض النصائح والروابط للمساعدة في جعل تجربتك ممتعة. انقر فوق أي عنصر لزيارة الصفحة ذات الصلة. رابط لهذه الصفحة سيكون مرئيًا في الصفحة الرئيسية لمدة أسبوعين بعد تاريخ تسجيلك." -#: src/Module/Welcome.php:48 +#: src/Module/Welcome.php:34 msgid "Getting Started" msgstr "بدء الاستخدام" -#: src/Module/Welcome.php:49 +#: src/Module/Welcome.php:35 msgid "Friendica Walk-Through" msgstr "جولة في فرَندِكا" -#: src/Module/Welcome.php:50 +#: src/Module/Welcome.php:36 msgid "" "On your Quick Start page - find a brief introduction to your " "profile and network tabs, make some new connections, and find some groups to" " join." msgstr "" -#: src/Module/Welcome.php:53 +#: src/Module/Welcome.php:39 msgid "Go to Your Settings" msgstr "انتقل إلى إعداداتك" -#: src/Module/Welcome.php:54 +#: src/Module/Welcome.php:40 msgid "" "On your Settings page - change your initial password. Also make a " "note of your Identity Address. This looks just like an email address - and " "will be useful in making friends on the free social web." msgstr "على صفحة الإعدادات - قم بتغيير كلمة المرور الأولية. ولا تنسى حفظ عنوان معرفك. يبدو كعنوان بريد إلكتروني - ليتسنى صنع صداقات على مختلف الشبكات الاجتماعية الحرة." -#: src/Module/Welcome.php:55 +#: src/Module/Welcome.php:41 msgid "" "Review the other settings, particularly the privacy settings. An unpublished" " directory listing is like having an unlisted phone number. In general, you " @@ -11950,77 +11920,77 @@ msgid "" "potential friends know exactly how to find you." msgstr "" -#: src/Module/Welcome.php:59 +#: src/Module/Welcome.php:45 msgid "" "Upload a profile photo if you have not done so already. Studies have shown " "that people with real photos of themselves are ten times more likely to make" " friends than people who do not." msgstr "ارفع صورة لملفك الشخصي إذا لم تقم بذلك. تظهر الدراسات أن احتمال صنع صداقات للناس الذين يستخدمون صورهم الحقيقية هو أكثر بعشر مرات من الناس الذي لا يفعلون." -#: src/Module/Welcome.php:60 +#: src/Module/Welcome.php:46 msgid "Edit Your Profile" msgstr "عدّل ملفك الشخصي" -#: src/Module/Welcome.php:61 +#: src/Module/Welcome.php:47 msgid "" "Edit your default profile to your liking. Review the " "settings for hiding your list of friends and hiding the profile from unknown" " visitors." msgstr "عدّل ملفك الشخصي الافتراضي كيفما تحب. و راجع الإعدادات لإخفاء قائمة أصدقائك وملفك الشخصي عن الزوار." -#: src/Module/Welcome.php:62 +#: src/Module/Welcome.php:48 msgid "Profile Keywords" msgstr "الكلمات المفتاحية للملف الشخصي" -#: src/Module/Welcome.php:63 +#: src/Module/Welcome.php:49 msgid "" "Set some public keywords for your profile which describe your interests. We " "may be able to find other people with similar interests and suggest " "friendships." msgstr "عيّن بعض الكلمات المفتاحية العامة لملفك الشخصي التي تصف اهتماماتك. قد نتمكن من العثور على أشخاص آخرين ذوي اهتمامات مماثلة لنقترح عليك مصادقتهم." -#: src/Module/Welcome.php:65 +#: src/Module/Welcome.php:51 msgid "Connecting" msgstr "يتصل" -#: src/Module/Welcome.php:67 +#: src/Module/Welcome.php:53 msgid "Importing Emails" msgstr "يستورد البرائد الالكترونية" -#: src/Module/Welcome.php:68 +#: src/Module/Welcome.php:54 msgid "" "Enter your email access information on your Connector Settings page if you " "wish to import and interact with friends or mailing lists from your email " "INBOX" msgstr "" -#: src/Module/Welcome.php:69 +#: src/Module/Welcome.php:55 msgid "Go to Your Contacts Page" msgstr "انتقل الى صفحة المتراسلين" -#: src/Module/Welcome.php:70 +#: src/Module/Welcome.php:56 msgid "" "Your Contacts page is your gateway to managing friendships and connecting " "with friends on other networks. Typically you enter their address or site " "URL in the Add New Contact dialog." msgstr "في صفحة المتراسلين يمكنك إدارة وإضافة متراسلين. يمكنك إدخال المعرّف أو رابط الصفحة الشخصية في نموذج أضف متراسلًا جديدا." -#: src/Module/Welcome.php:71 +#: src/Module/Welcome.php:57 msgid "Go to Your Site's Directory" msgstr "انتقل إلى دليل موقعك" -#: src/Module/Welcome.php:72 +#: src/Module/Welcome.php:58 msgid "" "The Directory page lets you find other people in this network or other " "federated sites. Look for a Connect or Follow link on " "their profile page. Provide your own Identity Address if requested." msgstr "تتيح لك صفحة الدليل العثور على أشخاص آخرين في هذه الشبكة أو عبر الشبكة الموحدة. ابحث عن رابط اتصل أو تابع في صفحة ملفهم الشخصي. قدم عنوان معرفك إذا طلب منك." -#: src/Module/Welcome.php:73 +#: src/Module/Welcome.php:59 msgid "Finding New People" msgstr "إيجاد أشخاص جدد" -#: src/Module/Welcome.php:74 +#: src/Module/Welcome.php:60 msgid "" "On the side panel of the Contacts page are several tools to find new " "friends. We can match people by interest, look up people by name or " @@ -12029,412 +11999,408 @@ msgid "" "hours." msgstr "في الشريط الجانبي لصفحة المتراسلين يمكنك للعثور على عدة طرق للعثور على أصدقاء جدد. يمكننا مطابقة الأشخاص بناءً على اهتماماتهم، والبحث عن الأصدقاء بالاسم أو الاهتمام، وتقديم اقتراحات بناءً على هيكلية الشبكة. على موقع جديد تمامًا، يجب أن تبدأ اقتراحات الاشتراك في الظهور بعد 24 ساعة." -#: src/Module/Welcome.php:77 +#: src/Module/Welcome.php:63 msgid "Add Your Contacts To Circle" msgstr "" -#: src/Module/Welcome.php:78 +#: src/Module/Welcome.php:64 msgid "" "Once you have made some friends, organize them into private conversation " "circles from the sidebar of your Contacts page and then you can interact " "with each circle privately on your Network page." msgstr "" -#: src/Module/Welcome.php:80 +#: src/Module/Welcome.php:66 msgid "Why Aren't My Posts Public?" msgstr "لماذا لا تنشر مشاركاتي للعموم؟" -#: src/Module/Welcome.php:81 +#: src/Module/Welcome.php:67 msgid "" "Friendica respects your privacy. By default, your posts will only show up to" " people you've added as friends. For more information, see the help section " "from the link above." msgstr "فرَندِكا تحترم خصوصيتك. ولهذا افتراضيا ستظهر مشاركاتك لأصدقائك فقط. للمزيد من المعلومات راجع قسم المساعدة عبر الرابط أعلاه." -#: src/Module/Welcome.php:83 +#: src/Module/Welcome.php:69 msgid "Getting Help" msgstr "الحصول على مساعدة" -#: src/Module/Welcome.php:84 +#: src/Module/Welcome.php:70 msgid "Go to the Help Section" msgstr "انتقل إلى القسم المساعدة" -#: src/Module/Welcome.php:85 +#: src/Module/Welcome.php:71 msgid "" "Our help pages may be consulted for detail on other program" " features and resources." msgstr "يمكنك الاطلاع على صفحات المساعدة للحصول على تفاصيل حول ميزات البرامج الأخرى ومصادرها." -#: src/Navigation/Notifications/Factory/FormattedNavNotification.php:161 +#: src/Navigation/Notifications/Factory/FormattedNavNotification.php:147 msgid "{0} wants to follow you" msgstr "{0} يريد متابعتك" -#: src/Navigation/Notifications/Factory/FormattedNavNotification.php:163 +#: src/Navigation/Notifications/Factory/FormattedNavNotification.php:149 msgid "{0} has started following you" msgstr "" -#: src/Navigation/Notifications/Factory/FormattedNotify.php:96 +#: src/Navigation/Notifications/Factory/FormattedNotify.php:82 #, php-format msgid "%s liked %s's post" msgstr "أُعجب %s بمشاركة %s" -#: src/Navigation/Notifications/Factory/FormattedNotify.php:108 +#: src/Navigation/Notifications/Factory/FormattedNotify.php:94 #, php-format msgid "%s disliked %s's post" msgstr "لم يُعجب %s بمشاركة %s" -#: src/Navigation/Notifications/Factory/FormattedNotify.php:120 +#: src/Navigation/Notifications/Factory/FormattedNotify.php:106 #, php-format msgid "%s is attending %s's event" msgstr "يحضر %s حدث %s" -#: src/Navigation/Notifications/Factory/FormattedNotify.php:132 +#: src/Navigation/Notifications/Factory/FormattedNotify.php:118 #, php-format msgid "%s is not attending %s's event" msgstr "لن يحضر %s حدث %s" -#: src/Navigation/Notifications/Factory/FormattedNotify.php:144 +#: src/Navigation/Notifications/Factory/FormattedNotify.php:130 #, php-format msgid "%s may attending %s's event" msgstr "قد يحضر %s حدث %s" -#: src/Navigation/Notifications/Factory/FormattedNotify.php:174 +#: src/Navigation/Notifications/Factory/FormattedNotify.php:160 #, php-format msgid "%s is now friends with %s" msgstr "أصبح %s صديقا ل %s" -#: src/Navigation/Notifications/Factory/FormattedNotify.php:341 -#: src/Navigation/Notifications/Factory/FormattedNotify.php:379 +#: src/Navigation/Notifications/Factory/FormattedNotify.php:327 +#: src/Navigation/Notifications/Factory/FormattedNotify.php:365 #, php-format msgid "%s commented on %s's post" msgstr "علق %s على مشاركة %s" -#: src/Navigation/Notifications/Factory/FormattedNotify.php:378 +#: src/Navigation/Notifications/Factory/FormattedNotify.php:364 #, php-format msgid "%s created a new post" msgstr "أنشأ %s مشاركة جديدة" -#: src/Navigation/Notifications/Factory/Introduction.php:132 +#: src/Navigation/Notifications/Factory/Introduction.php:118 msgid "Friend Suggestion" msgstr "اقتراح صديق" -#: src/Navigation/Notifications/Factory/Introduction.php:158 +#: src/Navigation/Notifications/Factory/Introduction.php:144 msgid "Friend/Connect Request" msgstr "طلب صداقة/اقتران" -#: src/Navigation/Notifications/Factory/Introduction.php:158 -msgid "New Follower" -msgstr "متابِع جديد" - -#: src/Navigation/Notifications/Factory/Notification.php:134 +#: src/Navigation/Notifications/Factory/Notification.php:120 #, php-format msgid "%1$s wants to follow you" msgstr "%1$s يريد متابعتك" -#: src/Navigation/Notifications/Factory/Notification.php:136 +#: src/Navigation/Notifications/Factory/Notification.php:122 #, php-format msgid "%1$s has started following you" msgstr "بدأ %1$s متابعتك" -#: src/Navigation/Notifications/Factory/Notification.php:208 +#: src/Navigation/Notifications/Factory/Notification.php:194 #, php-format msgid "%1$s liked your comment on %2$s" msgstr "أٌعجب %1$s بتعليقك على %2$s" -#: src/Navigation/Notifications/Factory/Notification.php:211 +#: src/Navigation/Notifications/Factory/Notification.php:197 #, php-format msgid "%1$s liked your post %2$s" msgstr "أعجب %1$s بمشاركتك %2$s" -#: src/Navigation/Notifications/Factory/Notification.php:218 +#: src/Navigation/Notifications/Factory/Notification.php:204 #, php-format msgid "%1$s disliked your comment on %2$s" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:221 +#: src/Navigation/Notifications/Factory/Notification.php:207 #, php-format msgid "%1$s disliked your post %2$s" msgstr "لم يعجب %1$s مشاركتك %2$s" -#: src/Navigation/Notifications/Factory/Notification.php:228 +#: src/Navigation/Notifications/Factory/Notification.php:214 #, php-format msgid "%1$s shared your comment %2$s" msgstr "شارك %1$s تعليقك %2$s" -#: src/Navigation/Notifications/Factory/Notification.php:231 -#: src/Navigation/Notifications/Factory/Notification.php:316 +#: src/Navigation/Notifications/Factory/Notification.php:217 +#: src/Navigation/Notifications/Factory/Notification.php:302 #, php-format msgid "%1$s shared your post %2$s" msgstr "شارك %1$s مشاركتك %2$s" -#: src/Navigation/Notifications/Factory/Notification.php:235 -#: src/Navigation/Notifications/Factory/Notification.php:305 +#: src/Navigation/Notifications/Factory/Notification.php:221 +#: src/Navigation/Notifications/Factory/Notification.php:291 #, php-format msgid "%1$s shared the post %2$s from %3$s" msgstr "شارك %1$s المشاركة %2$s من %3$s" -#: src/Navigation/Notifications/Factory/Notification.php:237 -#: src/Navigation/Notifications/Factory/Notification.php:307 +#: src/Navigation/Notifications/Factory/Notification.php:223 +#: src/Navigation/Notifications/Factory/Notification.php:293 #, php-format msgid "%1$s shared a post from %3$s" msgstr "شارك %1$s مشاركة %3$s" -#: src/Navigation/Notifications/Factory/Notification.php:239 -#: src/Navigation/Notifications/Factory/Notification.php:309 +#: src/Navigation/Notifications/Factory/Notification.php:225 +#: src/Navigation/Notifications/Factory/Notification.php:295 #, php-format msgid "%1$s shared the post %2$s" msgstr "شارك %1$s المشاركة %2$s" -#: src/Navigation/Notifications/Factory/Notification.php:241 -#: src/Navigation/Notifications/Factory/Notification.php:311 +#: src/Navigation/Notifications/Factory/Notification.php:227 +#: src/Navigation/Notifications/Factory/Notification.php:297 #, php-format msgid "%1$s shared a post" msgstr "شارك %1$s مشاركة" -#: src/Navigation/Notifications/Factory/Notification.php:249 +#: src/Navigation/Notifications/Factory/Notification.php:235 #, php-format msgid "%1$s wants to attend your event %2$s" msgstr "يريد %1$s حضور حدَثك %2$s" -#: src/Navigation/Notifications/Factory/Notification.php:256 +#: src/Navigation/Notifications/Factory/Notification.php:242 #, php-format msgid "%1$s does not want to attend your event %2$s" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:263 +#: src/Navigation/Notifications/Factory/Notification.php:249 #, php-format msgid "%1$s maybe wants to attend your event %2$s" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:270 +#: src/Navigation/Notifications/Factory/Notification.php:256 #, php-format msgid "%1$s tagged you on %2$s" msgstr "ذكرك %1$s في %2$s" -#: src/Navigation/Notifications/Factory/Notification.php:274 +#: src/Navigation/Notifications/Factory/Notification.php:260 #, php-format msgid "%1$s replied to you on %2$s" msgstr "رد %1$s عليك في %2$s" -#: src/Navigation/Notifications/Factory/Notification.php:278 +#: src/Navigation/Notifications/Factory/Notification.php:264 #, php-format msgid "%1$s commented in your thread %2$s" msgstr "علق %1$s على نقاشك %2$s" -#: src/Navigation/Notifications/Factory/Notification.php:282 +#: src/Navigation/Notifications/Factory/Notification.php:268 #, php-format msgid "%1$s commented on your comment %2$s" msgstr "علق %1$s على تعليقك %2$s" -#: src/Navigation/Notifications/Factory/Notification.php:289 +#: src/Navigation/Notifications/Factory/Notification.php:275 #, php-format msgid "%1$s commented in their thread %2$s" msgstr "علق %1$s على نقاشه %2$s" -#: src/Navigation/Notifications/Factory/Notification.php:291 +#: src/Navigation/Notifications/Factory/Notification.php:277 #, php-format msgid "%1$s commented in their thread" msgstr "علق %1$s على نقاشه" -#: src/Navigation/Notifications/Factory/Notification.php:293 +#: src/Navigation/Notifications/Factory/Notification.php:279 #, php-format msgid "%1$s commented in the thread %2$s from %3$s" msgstr "علق %1$s على المحدثة %2$s من %3$s" -#: src/Navigation/Notifications/Factory/Notification.php:295 +#: src/Navigation/Notifications/Factory/Notification.php:281 #, php-format msgid "%1$s commented in the thread from %3$s" msgstr "علق %1$s على نقاش %3$s" -#: src/Navigation/Notifications/Factory/Notification.php:300 +#: src/Navigation/Notifications/Factory/Notification.php:286 #, php-format msgid "%1$s commented on your thread %2$s" msgstr "علق %1$s على نقاشك %2$s" -#: src/Navigation/Notifications/Repository/Notify.php:225 -#: src/Navigation/Notifications/Repository/Notify.php:754 +#: src/Navigation/Notifications/Repository/Notify.php:211 +#: src/Navigation/Notifications/Repository/Notify.php:740 msgid "[Friendica:Notify]" msgstr "[فرنديكا: تنبيه]" -#: src/Navigation/Notifications/Repository/Notify.php:293 +#: src/Navigation/Notifications/Repository/Notify.php:279 #, php-format msgid "%s New mail received at %s" msgstr "أُستلم %s بريد جديد على %s" -#: src/Navigation/Notifications/Repository/Notify.php:295 +#: src/Navigation/Notifications/Repository/Notify.php:281 #, php-format msgid "%1$s sent you a new private message at %2$s." msgstr "أرسل %1$s لك رسالة خاصة على %2$s." -#: src/Navigation/Notifications/Repository/Notify.php:296 +#: src/Navigation/Notifications/Repository/Notify.php:282 msgid "a private message" msgstr "رسالة خاصة" -#: src/Navigation/Notifications/Repository/Notify.php:296 +#: src/Navigation/Notifications/Repository/Notify.php:282 #, php-format msgid "%1$s sent you %2$s." msgstr "أرسل %1$s لك %2$s." -#: src/Navigation/Notifications/Repository/Notify.php:298 +#: src/Navigation/Notifications/Repository/Notify.php:284 #, php-format msgid "Please visit %s to view and/or reply to your private messages." msgstr "من فضلك زر %s لعرض و/أو الرد على الرسائل الخاصة." -#: src/Navigation/Notifications/Repository/Notify.php:328 +#: src/Navigation/Notifications/Repository/Notify.php:314 #, php-format msgid "%1$s commented on %2$s's %3$s %4$s" msgstr "علق %1$s على %3$s %2$s %4$s" -#: src/Navigation/Notifications/Repository/Notify.php:333 +#: src/Navigation/Notifications/Repository/Notify.php:319 #, php-format msgid "%1$s commented on your %2$s %3$s" msgstr "علق %1$s على %2$s تخصك %3$s" -#: src/Navigation/Notifications/Repository/Notify.php:337 +#: src/Navigation/Notifications/Repository/Notify.php:323 #, php-format msgid "%1$s commented on their %2$s %3$s" msgstr "علق %1$s على %2$s له %3$s" -#: src/Navigation/Notifications/Repository/Notify.php:341 -#: src/Navigation/Notifications/Repository/Notify.php:788 +#: src/Navigation/Notifications/Repository/Notify.php:327 +#: src/Navigation/Notifications/Repository/Notify.php:774 #, php-format msgid "%1$s Comment to conversation #%2$d by %3$s" msgstr "علق %1$s على محادثة %3$s #%2$d" -#: src/Navigation/Notifications/Repository/Notify.php:343 +#: src/Navigation/Notifications/Repository/Notify.php:329 #, php-format msgid "%s commented on an item/conversation you have been following." msgstr "علق %s على محادثة/عنصر تتابعه." -#: src/Navigation/Notifications/Repository/Notify.php:347 -#: src/Navigation/Notifications/Repository/Notify.php:362 -#: src/Navigation/Notifications/Repository/Notify.php:814 +#: src/Navigation/Notifications/Repository/Notify.php:333 +#: src/Navigation/Notifications/Repository/Notify.php:348 +#: src/Navigation/Notifications/Repository/Notify.php:800 #, php-format msgid "Please visit %s to view and/or reply to the conversation." msgstr "من فضلك زر %s لعرض و/أو الرد على المحادثة." -#: src/Navigation/Notifications/Repository/Notify.php:354 +#: src/Navigation/Notifications/Repository/Notify.php:340 #, php-format msgid "%s %s posted to your profile wall" msgstr "نشر %s%s على حائط ملفك الشخصي" -#: src/Navigation/Notifications/Repository/Notify.php:356 +#: src/Navigation/Notifications/Repository/Notify.php:342 #, php-format msgid "%1$s posted to your profile wall at %2$s" msgstr "نشر %1$s على حائط ملفك الشخصي على %2$s" -#: src/Navigation/Notifications/Repository/Notify.php:357 +#: src/Navigation/Notifications/Repository/Notify.php:343 #, php-format msgid "%1$s posted to [url=%2$s]your wall[/url]" msgstr "نشر %1$s على [url=%2$s]حائطك[/url]" -#: src/Navigation/Notifications/Repository/Notify.php:370 +#: src/Navigation/Notifications/Repository/Notify.php:356 #, php-format msgid "%s Introduction received" msgstr "تلقيت تقديما من %s" -#: src/Navigation/Notifications/Repository/Notify.php:372 +#: src/Navigation/Notifications/Repository/Notify.php:358 #, php-format msgid "You've received an introduction from '%1$s' at %2$s" msgstr "تلقيت تقديما من '%1$s' على %2$s" -#: src/Navigation/Notifications/Repository/Notify.php:373 +#: src/Navigation/Notifications/Repository/Notify.php:359 #, php-format msgid "You've received [url=%1$s]an introduction[/url] from %2$s." msgstr "تلقيت [url=%1$s]تقديما[/url] من %2$s." -#: src/Navigation/Notifications/Repository/Notify.php:378 -#: src/Navigation/Notifications/Repository/Notify.php:424 +#: src/Navigation/Notifications/Repository/Notify.php:364 +#: src/Navigation/Notifications/Repository/Notify.php:410 #, php-format msgid "You may visit their profile at %s" msgstr "يمكنك زيارة ملفهم الشخصي على %s" -#: src/Navigation/Notifications/Repository/Notify.php:380 +#: src/Navigation/Notifications/Repository/Notify.php:366 #, php-format msgid "Please visit %s to approve or reject the introduction." msgstr "من فضلك زر %s لقبول أو رفض التقديم." -#: src/Navigation/Notifications/Repository/Notify.php:387 +#: src/Navigation/Notifications/Repository/Notify.php:373 #, php-format msgid "%s A new person is sharing with you" msgstr "%s شخص جديد يشارك معك" -#: src/Navigation/Notifications/Repository/Notify.php:389 -#: src/Navigation/Notifications/Repository/Notify.php:390 +#: src/Navigation/Notifications/Repository/Notify.php:375 +#: src/Navigation/Notifications/Repository/Notify.php:376 #, php-format msgid "%1$s is sharing with you at %2$s" msgstr "يشارك %1$s معك على %2$s" -#: src/Navigation/Notifications/Repository/Notify.php:397 +#: src/Navigation/Notifications/Repository/Notify.php:383 #, php-format msgid "%s You have a new follower" msgstr "لديك متابِع جديد %s" -#: src/Navigation/Notifications/Repository/Notify.php:399 -#: src/Navigation/Notifications/Repository/Notify.php:400 +#: src/Navigation/Notifications/Repository/Notify.php:385 +#: src/Navigation/Notifications/Repository/Notify.php:386 #, php-format msgid "You have a new follower at %2$s : %1$s" msgstr "لديك متابِع جديد على %2$s : %1$s" -#: src/Navigation/Notifications/Repository/Notify.php:413 +#: src/Navigation/Notifications/Repository/Notify.php:399 #, php-format msgid "%s Friend suggestion received" msgstr "تلقيت إقتراح صديق %s" -#: src/Navigation/Notifications/Repository/Notify.php:415 +#: src/Navigation/Notifications/Repository/Notify.php:401 #, php-format msgid "You've received a friend suggestion from '%1$s' at %2$s" msgstr "تلقيت اقتراح صديق من '%1$s' على %2$s" -#: src/Navigation/Notifications/Repository/Notify.php:416 +#: src/Navigation/Notifications/Repository/Notify.php:402 #, php-format msgid "" "You've received [url=%1$s]a friend suggestion[/url] for %2$s from %3$s." msgstr "اقترح عليك %3$s [url=%1$s] مصادقة %2$s[/url]." -#: src/Navigation/Notifications/Repository/Notify.php:422 +#: src/Navigation/Notifications/Repository/Notify.php:408 msgid "Name:" msgstr "الاسم:" -#: src/Navigation/Notifications/Repository/Notify.php:423 +#: src/Navigation/Notifications/Repository/Notify.php:409 msgid "Photo:" msgstr "الصورة:" -#: src/Navigation/Notifications/Repository/Notify.php:426 +#: src/Navigation/Notifications/Repository/Notify.php:412 #, php-format msgid "Please visit %s to approve or reject the suggestion." msgstr "من فضلك زر %s لقبول أو رفض الاقتراح." -#: src/Navigation/Notifications/Repository/Notify.php:434 -#: src/Navigation/Notifications/Repository/Notify.php:449 +#: src/Navigation/Notifications/Repository/Notify.php:420 +#: src/Navigation/Notifications/Repository/Notify.php:435 #, php-format msgid "%s Connection accepted" msgstr "قُبِل الاقتران %s" -#: src/Navigation/Notifications/Repository/Notify.php:436 -#: src/Navigation/Notifications/Repository/Notify.php:451 +#: src/Navigation/Notifications/Repository/Notify.php:422 +#: src/Navigation/Notifications/Repository/Notify.php:437 #, php-format msgid "'%1$s' has accepted your connection request at %2$s" msgstr "قبِل '%1$s' طلب الاقتران على %2$s" -#: src/Navigation/Notifications/Repository/Notify.php:437 -#: src/Navigation/Notifications/Repository/Notify.php:452 +#: src/Navigation/Notifications/Repository/Notify.php:423 +#: src/Navigation/Notifications/Repository/Notify.php:438 #, php-format msgid "%2$s has accepted your [url=%1$s]connection request[/url]." msgstr "قبِل %2$s [url=%1$s]طلب الاقتران[/url]." -#: src/Navigation/Notifications/Repository/Notify.php:442 +#: src/Navigation/Notifications/Repository/Notify.php:428 msgid "" "You are now mutual friends and may exchange status updates, photos, and " "email without restriction." msgstr "أصبحتما صديقين من كلا الطرفين ويمكنكما تبادل تحديثات الحالة، والصور، والبريد دون قيود." -#: src/Navigation/Notifications/Repository/Notify.php:444 +#: src/Navigation/Notifications/Repository/Notify.php:430 #, php-format msgid "Please visit %s if you wish to make any changes to this relationship." msgstr "من فضلك زر %s إن أردت تغيير هذه العلاقة." -#: src/Navigation/Notifications/Repository/Notify.php:457 +#: src/Navigation/Notifications/Repository/Notify.php:443 #, php-format msgid "" "'%1$s' has chosen to accept you a fan, which restricts some forms of " @@ -12443,34 +12409,34 @@ msgid "" "automatically." msgstr "قبِلك '%1$s' كمعجب، هذا يحدُّ من أشكال التواصل بينكما مثل الرسائل الخاصة وبعض التفاعلات. يتم هذا تلقائيا اذا كانت صفحة مشهور أو مجتمع." -#: src/Navigation/Notifications/Repository/Notify.php:459 +#: src/Navigation/Notifications/Repository/Notify.php:445 #, php-format msgid "" "'%1$s' may choose to extend this into a two-way or more permissive " "relationship in the future." msgstr "قد يختار '%1$s' توسيعها إلى علاقة ذات اتجاهين أو أكثر في المستقبل." -#: src/Navigation/Notifications/Repository/Notify.php:461 +#: src/Navigation/Notifications/Repository/Notify.php:447 #, php-format msgid "Please visit %s if you wish to make any changes to this relationship." msgstr "من فضلك زر %s إن أردت تغيير هذه العلاقة." -#: src/Navigation/Notifications/Repository/Notify.php:471 +#: src/Navigation/Notifications/Repository/Notify.php:457 msgid "registration request" msgstr "طلب تسجيل" -#: src/Navigation/Notifications/Repository/Notify.php:473 +#: src/Navigation/Notifications/Repository/Notify.php:459 #, php-format msgid "You've received a registration request from '%1$s' at %2$s" msgstr "تلقيت طلب تسجيل من '%1$s' على %2$s" -#: src/Navigation/Notifications/Repository/Notify.php:474 +#: src/Navigation/Notifications/Repository/Notify.php:460 #, php-format msgid "You've received a [url=%1$s]registration request[/url] from %2$s." msgstr "تلقيت [url=%1$s]طلب تسجيل[/url] من %2$s." -#: src/Navigation/Notifications/Repository/Notify.php:479 -#: src/Navigation/Notifications/Repository/Notify.php:500 +#: src/Navigation/Notifications/Repository/Notify.php:465 +#: src/Navigation/Notifications/Repository/Notify.php:486 #, php-format msgid "" "Display Name:\t%s\n" @@ -12478,288 +12444,288 @@ msgid "" "Login Name:\t%s (%s)" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:485 +#: src/Navigation/Notifications/Repository/Notify.php:471 #, php-format msgid "Please visit %s to approve or reject the request." msgstr "من فضلك زر %s لقبول أو رفض الطلب." -#: src/Navigation/Notifications/Repository/Notify.php:492 +#: src/Navigation/Notifications/Repository/Notify.php:478 msgid "new registration" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:494 +#: src/Navigation/Notifications/Repository/Notify.php:480 #, php-format msgid "You've received a new registration from '%1$s' at %2$s" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:495 +#: src/Navigation/Notifications/Repository/Notify.php:481 #, php-format msgid "You've received a [url=%1$s]new registration[/url] from %2$s." msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:506 +#: src/Navigation/Notifications/Repository/Notify.php:492 #, php-format msgid "Please visit %s to have a look at the new registration." msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:782 +#: src/Navigation/Notifications/Repository/Notify.php:768 #, php-format msgid "%s %s tagged you" msgstr "ذكرك %s%s" -#: src/Navigation/Notifications/Repository/Notify.php:785 +#: src/Navigation/Notifications/Repository/Notify.php:771 #, php-format msgid "%s %s shared a new post" msgstr "شارك %s%s مشاركة جديدة" -#: src/Navigation/Notifications/Repository/Notify.php:793 +#: src/Navigation/Notifications/Repository/Notify.php:779 #, php-format msgid "%1$s %2$s liked your post #%3$d" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:796 +#: src/Navigation/Notifications/Repository/Notify.php:782 #, php-format msgid "%1$s %2$s liked your comment on #%3$d" msgstr "" -#: src/Object/EMail/ItemCCEMail.php:42 +#: src/Object/EMail/ItemCCEMail.php:28 #, php-format msgid "" "This message was sent to you by %s, a member of the Friendica social " "network." msgstr "أرسل %s لك هذه الرسالة، وهو عضو في شبكة فرنديكا." -#: src/Object/EMail/ItemCCEMail.php:44 +#: src/Object/EMail/ItemCCEMail.php:30 #, php-format msgid "You may visit them online at %s" msgstr "يمكنك زيارتهم عبر %s" -#: src/Object/EMail/ItemCCEMail.php:45 +#: src/Object/EMail/ItemCCEMail.php:31 msgid "" "Please contact the sender by replying to this post if you do not wish to " "receive these messages." msgstr "رجاء اتصل بالمرسل بالرد على هذا المشاركة إذا كنت لا ترغب في تلقي هذه الرسائل." -#: src/Object/EMail/ItemCCEMail.php:49 +#: src/Object/EMail/ItemCCEMail.php:35 #, php-format msgid "%s posted an update." msgstr "نشر %s تحديثاً." -#: src/Object/Post.php:138 +#: src/Object/Post.php:124 msgid "Private Message" msgstr "رسالة خاصة" -#: src/Object/Post.php:142 +#: src/Object/Post.php:128 msgid "Public Message" msgstr "رسالة علنية" -#: src/Object/Post.php:146 +#: src/Object/Post.php:132 msgid "Unlisted Message" msgstr "رسالة غير مدرجة" -#: src/Object/Post.php:182 +#: src/Object/Post.php:168 msgid "This entry was edited" msgstr "عدّل المدخل" -#: src/Object/Post.php:210 +#: src/Object/Post.php:196 msgid "Connector Message" msgstr "" -#: src/Object/Post.php:239 src/Object/Post.php:241 +#: src/Object/Post.php:225 src/Object/Post.php:227 msgid "Edit" msgstr "تعديل" -#: src/Object/Post.php:275 +#: src/Object/Post.php:261 msgid "Delete globally" msgstr "احذفه عالميًا" -#: src/Object/Post.php:275 +#: src/Object/Post.php:261 msgid "Remove locally" msgstr "أزله محليًا" -#: src/Object/Post.php:282 +#: src/Object/Post.php:268 #, php-format msgid "Block %s" msgstr "احجب %s" -#: src/Object/Post.php:287 +#: src/Object/Post.php:273 #, php-format msgid "Ignore %s" msgstr "" -#: src/Object/Post.php:292 +#: src/Object/Post.php:278 #, php-format msgid "Collapse %s" msgstr "" -#: src/Object/Post.php:296 +#: src/Object/Post.php:282 msgid "Report post" msgstr "" -#: src/Object/Post.php:307 +#: src/Object/Post.php:293 msgid "Save to folder" msgstr "احفظ في مجلد" -#: src/Object/Post.php:347 +#: src/Object/Post.php:333 msgid "I will attend" msgstr "سأحضره" -#: src/Object/Post.php:347 +#: src/Object/Post.php:333 msgid "I will not attend" msgstr "لن أحضره" -#: src/Object/Post.php:347 +#: src/Object/Post.php:333 msgid "I might attend" msgstr "قد أحضره" -#: src/Object/Post.php:394 +#: src/Object/Post.php:380 msgid "Ignore thread" msgstr "تجاهل النقاش" -#: src/Object/Post.php:395 +#: src/Object/Post.php:381 msgid "Unignore thread" msgstr "ألغ تجاهل النقاش" -#: src/Object/Post.php:396 +#: src/Object/Post.php:382 msgid "Toggle ignore status" msgstr "بدّل حالة التجاهل" -#: src/Object/Post.php:406 +#: src/Object/Post.php:392 msgid "Add star" msgstr "أضف للمفضلة" -#: src/Object/Post.php:407 +#: src/Object/Post.php:393 msgid "Remove star" msgstr "أزل من المفضلة" -#: src/Object/Post.php:408 +#: src/Object/Post.php:394 msgid "Toggle star status" msgstr "بدِّل حالة التفضيل" -#: src/Object/Post.php:419 +#: src/Object/Post.php:405 msgid "Pin" msgstr "ثبّت" -#: src/Object/Post.php:420 +#: src/Object/Post.php:406 msgid "Unpin" msgstr "ألغ التثبيت" -#: src/Object/Post.php:421 +#: src/Object/Post.php:407 msgid "Toggle pin status" msgstr "بدِّل حالة التثبيت" -#: src/Object/Post.php:424 +#: src/Object/Post.php:410 msgid "Pinned" msgstr "مُثَبَت" -#: src/Object/Post.php:429 +#: src/Object/Post.php:415 msgid "Add tag" msgstr "أضف وسما" -#: src/Object/Post.php:444 +#: src/Object/Post.php:430 msgid "Quote share this" msgstr "اقتبس وشارك" -#: src/Object/Post.php:444 +#: src/Object/Post.php:430 msgid "Quote Share" msgstr "اقتبس وشارك" -#: src/Object/Post.php:447 +#: src/Object/Post.php:433 msgid "Reshare this" msgstr "أعاد نشر هذا" -#: src/Object/Post.php:447 +#: src/Object/Post.php:433 msgid "Reshare" msgstr "أعد نشره" -#: src/Object/Post.php:448 +#: src/Object/Post.php:434 msgid "Cancel your Reshare" msgstr "ألغ إعادة النشر" -#: src/Object/Post.php:448 +#: src/Object/Post.php:434 msgid "Unshare" msgstr "ألغ المشاركة" -#: src/Object/Post.php:492 +#: src/Object/Post.php:478 #, php-format msgid "%s (Received %s)" msgstr "%s (استلم %s)" -#: src/Object/Post.php:498 +#: src/Object/Post.php:484 msgid "Comment this item on your system" msgstr "علّق على هذا العنصر على خادمك" -#: src/Object/Post.php:498 +#: src/Object/Post.php:484 msgid "Remote comment" msgstr "تعليق بعيد" -#: src/Object/Post.php:520 +#: src/Object/Post.php:506 msgid "Share via ..." msgstr "شارك عبر" -#: src/Object/Post.php:520 +#: src/Object/Post.php:506 msgid "Share via external services" msgstr "" -#: src/Object/Post.php:527 +#: src/Object/Post.php:513 msgid "Unknown parent" msgstr "" -#: src/Object/Post.php:531 +#: src/Object/Post.php:517 #, php-format msgid "in reply to %s" msgstr "" -#: src/Object/Post.php:533 +#: src/Object/Post.php:519 msgid "Parent is probably private or not federated." msgstr "" -#: src/Object/Post.php:557 +#: src/Object/Post.php:543 msgid "to" msgstr "إلى" -#: src/Object/Post.php:558 +#: src/Object/Post.php:544 msgid "via" msgstr "عبر" -#: src/Object/Post.php:559 +#: src/Object/Post.php:545 msgid "Wall-to-Wall" msgstr "حائط لحائط" -#: src/Object/Post.php:560 +#: src/Object/Post.php:546 msgid "via Wall-To-Wall:" msgstr "عير حائط لحائط" -#: src/Object/Post.php:613 +#: src/Object/Post.php:599 #, php-format msgid "Reply to %s" msgstr "رد على %s" -#: src/Object/Post.php:616 +#: src/Object/Post.php:602 msgid "More" msgstr "المزيد" -#: src/Object/Post.php:635 +#: src/Object/Post.php:621 msgid "Notifier task is pending" msgstr "مهمة التنبيه معلقة" -#: src/Object/Post.php:636 +#: src/Object/Post.php:622 msgid "Delivery to remote servers is pending" msgstr "التسليم للخوادم البعيدة معلق" -#: src/Object/Post.php:637 +#: src/Object/Post.php:623 msgid "Delivery to remote servers is underway" msgstr "التسليم إلى الخوادم البعيدة جار" -#: src/Object/Post.php:638 +#: src/Object/Post.php:624 msgid "Delivery to remote servers is mostly done" msgstr "التسليم إلى الخوادم البعيدة يكاد يكتمل" -#: src/Object/Post.php:639 +#: src/Object/Post.php:625 msgid "Delivery to remote servers is done" msgstr "التسليم للخوادم البعيدة اكتمل" -#: src/Object/Post.php:661 +#: src/Object/Post.php:647 #, php-format msgid "%d comment" msgid_plural "%d comments" @@ -12770,485 +12736,467 @@ msgstr[3] "%d تعليقات" msgstr[4] "%d تعليقا" msgstr[5] "%d تعليق" -#: src/Object/Post.php:662 +#: src/Object/Post.php:648 msgid "Show more" msgstr "اعرض المزيد" -#: src/Object/Post.php:663 +#: src/Object/Post.php:649 msgid "Show fewer" msgstr "اعرض أقل" -#: src/Object/Post.php:700 +#: src/Object/Post.php:686 #, php-format msgid "Reshared by: %s" msgstr "" -#: src/Object/Post.php:705 +#: src/Object/Post.php:691 #, php-format msgid "Viewed by: %s" msgstr "" -#: src/Object/Post.php:710 +#: src/Object/Post.php:696 #, php-format msgid "Read by: %s" msgstr "" -#: src/Object/Post.php:715 +#: src/Object/Post.php:701 #, php-format msgid "Liked by: %s" msgstr "" -#: src/Object/Post.php:720 +#: src/Object/Post.php:706 #, php-format msgid "Disliked by: %s" msgstr "" -#: src/Object/Post.php:725 +#: src/Object/Post.php:711 #, php-format msgid "Attended by: %s" msgstr "" -#: src/Object/Post.php:730 +#: src/Object/Post.php:716 #, php-format msgid "Maybe attended by: %s" msgstr "" -#: src/Object/Post.php:735 +#: src/Object/Post.php:721 #, php-format msgid "Not attended by: %s" msgstr "" -#: src/Object/Post.php:740 +#: src/Object/Post.php:726 #, php-format msgid "Commented by: %s" msgstr "" -#: src/Object/Post.php:745 +#: src/Object/Post.php:731 #, php-format msgid "Reacted with %s by: %s" msgstr "" -#: src/Object/Post.php:768 +#: src/Object/Post.php:754 #, php-format msgid "Quote shared by: %s" msgstr "" -#: src/Protocol/ActivityPub/Receiver.php:571 +#: src/Protocol/ActivityPub/Receiver.php:557 msgid "Chat" msgstr "" -#: src/Protocol/Delivery.php:544 +#: src/Protocol/Delivery.php:530 msgid "(no subject)" msgstr "(بدون موضوع)" -#: src/Protocol/OStatus.php:1392 -#, php-format -msgid "%s is now following %s." -msgstr "%s يتابع %s." - -#: src/Protocol/OStatus.php:1393 -msgid "following" -msgstr "يتابع" - -#: src/Protocol/OStatus.php:1396 -#, php-format -msgid "%s stopped following %s." -msgstr "%s توقف عن متابعة %s." - -#: src/Protocol/OStatus.php:1397 -msgid "stopped following" -msgstr "توقف عن متابعة" - -#: src/Render/FriendicaSmartyEngine.php:56 +#: src/Render/FriendicaSmartyEngine.php:42 #, php-format msgid "The folder %s must be writable by webserver." msgstr "" -#: src/Security/Authentication.php:214 +#: src/Security/Authentication.php:200 msgid "Login failed." msgstr "فشل الولوج." -#: src/Security/Authentication.php:259 +#: src/Security/Authentication.php:245 msgid "Login failed. Please check your credentials." msgstr "فشل الولوج. من فضلك تحقق من بيانات الاعتماد." -#: src/Security/Authentication.php:373 +#: src/Security/Authentication.php:359 #, php-format msgid "Welcome %s" msgstr "مرحباً %s" -#: src/Security/Authentication.php:374 +#: src/Security/Authentication.php:360 msgid "Please upload a profile photo." msgstr "من فضلك ارفع صورة لملفك الشخصي." -#: src/Security/OpenWebAuth.php:163 +#: src/Security/OpenWebAuth.php:149 #, php-format msgid "OpenWebAuth: %1$s welcomes %2$s" msgstr "OpenWebAuth: %1$s يرحب بـ %2$s" -#: src/Util/EMailer/MailBuilder.php:260 +#: src/Util/EMailer/MailBuilder.php:246 msgid "Friendica Notification" msgstr "تنبيهات فرنديكا" -#: src/Util/EMailer/NotifyMailBuilder.php:78 -#: src/Util/EMailer/SystemMailBuilder.php:54 +#: src/Util/EMailer/NotifyMailBuilder.php:64 +#: src/Util/EMailer/SystemMailBuilder.php:40 #, php-format msgid "%1$s, %2$s Administrator" msgstr "%1$s، مدير %2$s" -#: src/Util/EMailer/NotifyMailBuilder.php:80 -#: src/Util/EMailer/SystemMailBuilder.php:56 +#: src/Util/EMailer/NotifyMailBuilder.php:66 +#: src/Util/EMailer/SystemMailBuilder.php:42 #, php-format msgid "%s Administrator" msgstr "مدير %s" -#: src/Util/EMailer/NotifyMailBuilder.php:193 -#: src/Util/EMailer/NotifyMailBuilder.php:217 -#: src/Util/EMailer/SystemMailBuilder.php:101 -#: src/Util/EMailer/SystemMailBuilder.php:118 +#: src/Util/EMailer/NotifyMailBuilder.php:179 +#: src/Util/EMailer/NotifyMailBuilder.php:203 +#: src/Util/EMailer/SystemMailBuilder.php:87 +#: src/Util/EMailer/SystemMailBuilder.php:104 msgid "thanks" msgstr "الشكر" -#: src/Util/Temporal.php:172 +#: src/Util/Temporal.php:158 msgid "YYYY-MM-DD or MM-DD" msgstr "YYYY-MM-DD أو MM-DD" -#: src/Util/Temporal.php:280 +#: src/Util/Temporal.php:266 #, php-format msgid "Time zone: %s Change in Settings" msgstr "المنطقة الزمنية: %sغيرها من الإعدادات" -#: src/Util/Temporal.php:320 src/Util/Temporal.php:329 +#: src/Util/Temporal.php:306 src/Util/Temporal.php:315 msgid "never" msgstr "أبدًا" -#: src/Util/Temporal.php:343 +#: src/Util/Temporal.php:329 msgid "less than a second ago" msgstr "منذ أقل من ثانية" -#: src/Util/Temporal.php:352 +#: src/Util/Temporal.php:338 msgid "year" msgstr "سنة" -#: src/Util/Temporal.php:352 +#: src/Util/Temporal.php:338 msgid "years" msgstr "سنوات" -#: src/Util/Temporal.php:353 +#: src/Util/Temporal.php:339 msgid "months" msgstr "أشهر" -#: src/Util/Temporal.php:354 +#: src/Util/Temporal.php:340 msgid "weeks" msgstr "أسابيع" -#: src/Util/Temporal.php:355 +#: src/Util/Temporal.php:341 msgid "days" msgstr "أيام" -#: src/Util/Temporal.php:356 +#: src/Util/Temporal.php:342 msgid "hour" msgstr "ساعة" -#: src/Util/Temporal.php:356 +#: src/Util/Temporal.php:342 msgid "hours" msgstr "ساعات" -#: src/Util/Temporal.php:357 +#: src/Util/Temporal.php:343 msgid "minute" msgstr "دقيقة" -#: src/Util/Temporal.php:357 +#: src/Util/Temporal.php:343 msgid "minutes" msgstr "دقائق" -#: src/Util/Temporal.php:358 +#: src/Util/Temporal.php:344 msgid "second" msgstr "ثانية" -#: src/Util/Temporal.php:358 +#: src/Util/Temporal.php:344 msgid "seconds" msgstr "ثوان" -#: src/Util/Temporal.php:367 +#: src/Util/Temporal.php:353 #, php-format msgid "in %1$d %2$s" msgstr "في %1$d %2$s" -#: src/Util/Temporal.php:370 +#: src/Util/Temporal.php:356 #, php-format msgid "%1$d %2$s ago" msgstr "منذ %1$d %2$s" -#: src/Worker/PushSubscription.php:110 +#: src/Worker/PushSubscription.php:96 msgid "Notification from Friendica" msgstr "تنبيهات من فرنديكا" -#: src/Worker/PushSubscription.php:111 +#: src/Worker/PushSubscription.php:97 msgid "Empty Post" msgstr "مشاركة فارغة" -#: view/theme/duepuntozero/config.php:68 +#: view/theme/duepuntozero/config.php:56 msgid "default" msgstr "افتراضي" -#: view/theme/duepuntozero/config.php:69 +#: view/theme/duepuntozero/config.php:57 msgid "greenzero" msgstr "greenzero" -#: view/theme/duepuntozero/config.php:70 +#: view/theme/duepuntozero/config.php:58 msgid "purplezero" msgstr "purplezero" -#: view/theme/duepuntozero/config.php:71 +#: view/theme/duepuntozero/config.php:59 msgid "easterbunny" msgstr "easterbunny" -#: view/theme/duepuntozero/config.php:72 +#: view/theme/duepuntozero/config.php:60 msgid "darkzero" msgstr "darkzero" -#: view/theme/duepuntozero/config.php:73 +#: view/theme/duepuntozero/config.php:61 msgid "comix" msgstr "comix" -#: view/theme/duepuntozero/config.php:74 +#: view/theme/duepuntozero/config.php:62 msgid "slackr" msgstr "slackr" -#: view/theme/duepuntozero/config.php:87 +#: view/theme/duepuntozero/config.php:75 msgid "Variations" msgstr "تغيرات" -#: view/theme/frio/config.php:146 +#: view/theme/frio/config.php:134 msgid "Note" msgstr "ملاحظة" -#: view/theme/frio/config.php:146 +#: view/theme/frio/config.php:134 msgid "Check image permissions if all users are allowed to see the image" msgstr "تحقق أن أذونات الصورة تسمح للجميع مشاهدتها" -#: view/theme/frio/config.php:152 +#: view/theme/frio/config.php:140 msgid "Appearance" msgstr "" -#: view/theme/frio/config.php:153 +#: view/theme/frio/config.php:141 msgid "Accent color" msgstr "" -#: view/theme/frio/config.php:153 +#: view/theme/frio/config.php:141 msgid "Blue" msgstr "أزرق" -#: view/theme/frio/config.php:153 +#: view/theme/frio/config.php:141 msgid "Red" msgstr "أحمر" -#: view/theme/frio/config.php:153 +#: view/theme/frio/config.php:141 msgid "Purple" msgstr "بنفسجي" -#: view/theme/frio/config.php:153 +#: view/theme/frio/config.php:141 msgid "Green" msgstr "أخضر" -#: view/theme/frio/config.php:153 +#: view/theme/frio/config.php:141 msgid "Pink" msgstr "وردي" -#: view/theme/frio/config.php:154 +#: view/theme/frio/config.php:142 msgid "Copy or paste schemestring" msgstr "انسخ أو ألصق سلسلة المخططات" -#: view/theme/frio/config.php:154 +#: view/theme/frio/config.php:142 msgid "" "You can copy this string to share your theme with others. Pasting here " "applies the schemestring" msgstr "يمكنك نسخ سلسلة المخططات لمشاركة سمتك مع الآخرين. بلصقها ستطبق سلسلة المخططات" -#: view/theme/frio/config.php:155 +#: view/theme/frio/config.php:143 msgid "Navigation bar background color" msgstr "لون خلفية شريط التصفح" -#: view/theme/frio/config.php:156 +#: view/theme/frio/config.php:144 msgid "Navigation bar icon color " msgstr "لون أيقونة شريط التصفح " -#: view/theme/frio/config.php:157 +#: view/theme/frio/config.php:145 msgid "Link color" msgstr "لون الروابط" -#: view/theme/frio/config.php:158 +#: view/theme/frio/config.php:146 msgid "Set the background color" msgstr "لون الخلفية" -#: view/theme/frio/config.php:159 +#: view/theme/frio/config.php:147 msgid "Content background opacity" msgstr "شفافية خلفية المحتوى" -#: view/theme/frio/config.php:160 +#: view/theme/frio/config.php:148 msgid "Set the background image" msgstr "صورة للخلفية" -#: view/theme/frio/config.php:161 +#: view/theme/frio/config.php:149 msgid "Background image style" msgstr "نمط صورة الخلفية" -#: view/theme/frio/config.php:164 +#: view/theme/frio/config.php:152 msgid "Always open Compose page" msgstr "" -#: view/theme/frio/config.php:164 +#: view/theme/frio/config.php:152 msgid "" "The New Post button always open the 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:168 +#: view/theme/frio/config.php:156 msgid "Login page background image" msgstr "صورة لخلفية صفحة الولوج" -#: view/theme/frio/config.php:172 +#: view/theme/frio/config.php:160 msgid "Login page background color" msgstr "لون خلفية صفحة الولوج" -#: view/theme/frio/config.php:172 +#: view/theme/frio/config.php:160 msgid "Leave background image and color empty for theme defaults" msgstr "اترك صورة الخلفية ولونها فارغين لتطبيق الإعدادات الافتراضية للسمة" -#: view/theme/frio/php/Image.php:39 +#: view/theme/frio/php/Image.php:27 msgid "Top Banner" msgstr "اللافتة العلوية" -#: view/theme/frio/php/Image.php:39 +#: view/theme/frio/php/Image.php:27 msgid "" "Resize image to the width of the screen and show background color below on " "long pages." msgstr "غير حجم الصورة لتناسب عُرض الشاشة وأملأ الفراغ الناتج عن الصفحات الطويلة بلون الخلفية." -#: view/theme/frio/php/Image.php:40 +#: view/theme/frio/php/Image.php:28 msgid "Full screen" msgstr "املأ الشاشة" -#: view/theme/frio/php/Image.php:40 +#: view/theme/frio/php/Image.php:28 msgid "" "Resize image to fill entire screen, clipping either the right or the bottom." msgstr "غير حجم الصورة لملأ الشاشة. قص الحافة اليمنى أو السفلية." -#: view/theme/frio/php/Image.php:41 +#: view/theme/frio/php/Image.php:29 msgid "Single row mosaic" msgstr "فسيفساء صف واحد" -#: view/theme/frio/php/Image.php:41 +#: view/theme/frio/php/Image.php:29 msgid "" "Resize image to repeat it on a single row, either vertical or horizontal." msgstr "غيّر حجم صورة لتكرارها في صف واحد، عموديا أو أفقيا." -#: view/theme/frio/php/Image.php:42 +#: view/theme/frio/php/Image.php:30 msgid "Mosaic" msgstr "فسيفساء" -#: view/theme/frio/php/Image.php:42 +#: view/theme/frio/php/Image.php:30 msgid "Repeat image to fill the screen." msgstr "كرر صورة لملأ الشاشة." -#: view/theme/frio/php/default.php:82 view/theme/frio/php/standard.php:40 +#: view/theme/frio/php/default.php:70 view/theme/frio/php/standard.php:28 msgid "Skip to main content" msgstr "تخطى للمحتوى الرئيسي" -#: view/theme/frio/php/default.php:153 view/theme/frio/php/standard.php:75 +#: view/theme/frio/php/default.php:141 view/theme/frio/php/standard.php:63 msgid "Back to top" msgstr "عُد لأعلى" -#: view/theme/frio/php/scheme.php:105 +#: view/theme/frio/php/scheme.php:93 msgid "Light" msgstr "" -#: view/theme/frio/php/scheme.php:106 +#: view/theme/frio/php/scheme.php:94 msgid "Dark" msgstr "" -#: view/theme/frio/php/scheme.php:107 +#: view/theme/frio/php/scheme.php:95 msgid "Black" msgstr "" -#: view/theme/frio/php/scheme.php:118 +#: view/theme/frio/php/scheme.php:106 msgid "Custom" msgstr "مخصص" -#: view/theme/frio/theme.php:214 +#: view/theme/frio/theme.php:202 msgid "Guest" msgstr "ضيف" -#: view/theme/frio/theme.php:217 +#: view/theme/frio/theme.php:205 msgid "Visitor" msgstr "زائر" -#: view/theme/quattro/config.php:89 +#: view/theme/quattro/config.php:77 msgid "Alignment" msgstr "محاذاة" -#: view/theme/quattro/config.php:89 +#: view/theme/quattro/config.php:77 msgid "Left" msgstr "يسار" -#: view/theme/quattro/config.php:89 +#: view/theme/quattro/config.php:77 msgid "Center" msgstr "وسط" -#: view/theme/quattro/config.php:90 +#: view/theme/quattro/config.php:78 msgid "Color scheme" msgstr "مخططات اللَّون" -#: view/theme/quattro/config.php:91 +#: view/theme/quattro/config.php:79 msgid "Posts font size" msgstr "حجم خط المشاركة" -#: view/theme/quattro/config.php:92 +#: view/theme/quattro/config.php:80 msgid "Textareas font size" msgstr "حجم خط مساحة النص" -#: view/theme/vier/config.php:91 +#: view/theme/vier/config.php:79 msgid "Comma separated list of helper groups" msgstr "" -#: view/theme/vier/config.php:131 +#: view/theme/vier/config.php:119 msgid "don't show" msgstr "لا تعرض" -#: view/theme/vier/config.php:131 +#: view/theme/vier/config.php:119 msgid "show" msgstr "اعرض" -#: view/theme/vier/config.php:137 +#: view/theme/vier/config.php:125 msgid "Set style" msgstr "عيّن أسلوبًا" -#: view/theme/vier/config.php:138 +#: view/theme/vier/config.php:126 msgid "Community Pages" msgstr "صفحات المجتمع" -#: view/theme/vier/config.php:139 view/theme/vier/theme.php:148 +#: view/theme/vier/config.php:127 view/theme/vier/theme.php:136 msgid "Community Profiles" msgstr "الملفات الشخصية المجتمعية" -#: view/theme/vier/config.php:140 +#: view/theme/vier/config.php:128 msgid "Help or @NewHere ?" msgstr "تحتاج لمساعدة أو أنت جديد هنا NewHete@؟" -#: view/theme/vier/config.php:141 view/theme/vier/theme.php:319 +#: view/theme/vier/config.php:129 view/theme/vier/theme.php:307 msgid "Connect Services" msgstr "اتصل بخدمات" -#: view/theme/vier/config.php:142 +#: view/theme/vier/config.php:130 msgid "Find Friends" msgstr "اعثر على أصدقاء" -#: view/theme/vier/config.php:143 view/theme/vier/theme.php:175 +#: view/theme/vier/config.php:131 view/theme/vier/theme.php:163 msgid "Last users" msgstr "آخر المستخدمين" -#: view/theme/vier/theme.php:234 +#: view/theme/vier/theme.php:222 msgid "Quick Start" msgstr "ابدأ بسرعة" diff --git a/view/lang/ar/strings.php b/view/lang/ar/strings.php index 7e04c85530..1fdd8654bf 100644 --- a/view/lang/ar/strings.php +++ b/view/lang/ar/strings.php @@ -664,7 +664,6 @@ $a->strings['An author or name was not found.'] = 'لم يُعثر على الك $a->strings['No browser URL could be matched to this address.'] = 'لا يوجد رابط يطابق هذا العنوان.'; $a->strings['Unable to match @-style Identity Address with a known protocol or email contact.'] = 'غير قادر على مطابقة عنوان المعرف "@" بميفاق معروف أو متراسل بريد إلكتروني.'; $a->strings['Use mailto: in front of address to force email check.'] = 'استخدم mailto: أمام العنوان للتعرّف عليه كبريد إلكتروني.'; -$a->strings['The profile address specified belongs to a network which has been disabled on this site.'] = 'عنوان الملف الشخصي تابع لشبكة محجوبة في هذا الموقع.'; $a->strings['Limited profile. This person will be unable to receive direct/personal notifications from you.'] = 'ملف شخصي محدود. لن يتمكن هذا الشخص من تلقي تنبيهات مباشرة/شخصية.'; $a->strings['Unable to retrieve contact information.'] = 'تعذر جلب معلومات المتراسل.'; $a->strings['Starts:'] = 'يبدأ:'; @@ -685,7 +684,6 @@ $a->strings['Show map'] = 'أظهر الخريطة'; $a->strings['Hide map'] = 'اخف الخريطة'; $a->strings['%s\'s birthday'] = 'عيد ميلاد %s'; $a->strings['Happy Birthday %s'] = '%s عيد ميلاد سعيد'; -$a->strings['Detected languages in this post:\n%s'] = 'اللغات المكتشفة في هذه المشاركة:\n%s'; $a->strings['activity'] = 'النشاط'; $a->strings['comment'] = 'تعليق'; $a->strings['post'] = 'مشاركة'; @@ -1230,7 +1228,6 @@ $a->strings['Submit Request'] = 'أرسل الطلب'; $a->strings['You already added this contact.'] = 'أضفت هذا المتراسل سلفًا.'; $a->strings['The network type couldn\'t be detected. Contact can\'t be added.'] = 'تعذر اكتشاف نوع الشبكة. لا يمكن إضافة المتراسل.'; $a->strings['Diaspora support isn\'t enabled. Contact can\'t be added.'] = 'دعم دياسبورا غير مفعل. لا يمكن إضافة المتراسل.'; -$a->strings['OStatus support is disabled. Contact can\'t be added.'] = 'دعم OStatus غير مفعل. لا يمكن إضافة المتراسل.'; $a->strings['Please answer the following:'] = 'من فضلك أجب على ما يلي:'; $a->strings['Your Identity Address:'] = 'عنوان معرّفك:'; $a->strings['Profile URL'] = 'رابط الملف الشخصي'; @@ -1645,8 +1642,6 @@ $a->strings['Do you want to authorize this application to access your posts and $a->strings['Unsupported or missing response type'] = 'نوع الاستجابة غير مدعومة أو مفقودة'; $a->strings['Incomplete request data'] = 'بيانات الطلب غير كاملة'; $a->strings['Please copy the following authentication code into your application and close this window: %s'] = 'الرجاء نسخ رمز الاستيثاق إلى التطبيق وإغلاق هذه النافذة: %s'; -$a->strings['Resubscribing to OStatus contacts'] = 'يعيد الاشتراك في متراسلي OStatus'; -$a->strings['Keep this window open until done.'] = 'أبق هذه النافذة مفتوحة حتى ينتهي.'; $a->strings['Subscribing to contacts'] = 'يشترك في متراسلين'; $a->strings['No contact provided.'] = 'لم يُقدم متراسلين.'; $a->strings['Couldn\'t fetch information for contact.'] = 'تعذر جلب معلومات المتراسل.'; @@ -1658,6 +1653,7 @@ $a->strings['Done'] = 'تم'; $a->strings['success'] = 'نجح'; $a->strings['failed'] = 'فشل'; $a->strings['ignored'] = 'متجاهل'; +$a->strings['Keep this window open until done.'] = 'أبق هذه النافذة مفتوحة حتى ينتهي.'; $a->strings['The Photo is not available.'] = 'الصورة غير متوفرة.'; $a->strings['The Photo with id %s is not available.'] = 'الصورة ذات المعرف %s غير متوفّرة.'; $a->strings['Invalid photo with id %s.'] = 'الصورة ذات المعرف %s غير صالحة.'; @@ -1675,9 +1671,9 @@ $a->strings['Remote privacy information not available.'] = 'معلومات ال $a->strings['Visible to:'] = 'مرئي لـ:'; $a->strings['Followers (%s)'] = 'متابِعون (%s)'; $a->strings['No contacts.'] = 'لا متراسلين.'; -$a->strings['%s\'s timeline'] = 'الخط الزمني لـ %s'; $a->strings['%s\'s posts'] = 'مشاركات %s'; $a->strings['%s\'s comments'] = 'تعليقات %s'; +$a->strings['%s\'s timeline'] = 'الخط الزمني لـ %s'; $a->strings['Image exceeds size limit of %s'] = 'تجاوزت الصورة الحد الأقصى للحجم وهو %s'; $a->strings['Image upload didn\'t complete, please try again'] = 'لم يكتمل رفع الصورة، من فضلك أعد المحاولة'; $a->strings['Image file is missing'] = 'ملف الصورة مفقود'; @@ -1871,7 +1867,6 @@ $a->strings['Description'] = 'الوصف'; $a->strings['Add'] = 'أضف'; $a->strings['Failed to connect with email account using the settings provided.'] = 'فشل الاتصال بحساب البريد الإلكتروني باستخدام الإعدادات المقدمة.'; $a->strings['Diaspora (Socialhome, Hubzilla)'] = 'دياسبورا (سوشل-هوم، هوب-زيلا)'; -$a->strings['OStatus (GNU Social)'] = 'OStatus (غنو سوشل)'; $a->strings['Email access is disabled on this site.'] = 'الوصول إلى البريد الإلكتروني معطل في هذا الموقع.'; $a->strings['None'] = 'لا شيء'; $a->strings['General Social Media Settings'] = 'الإعدادات العامة لشبكات التواصل الاجتماعي'; @@ -1886,7 +1881,6 @@ $a->strings['Attach the link title'] = 'أرفق عنوان الرابط'; $a->strings['When activated, the title of the attached link will be added as a title on posts to Diaspora. This is mostly helpful with "remote-self" contacts that share feed content.'] = 'عند تفعيله سيتم إرفاق عنوان الصفحة بمنشور دياسبورا. هذا مفيد بشكل أساسي مع المتراسلين "الذاتيين" الذين يشاركون تغذيات Rss / Atom.'; $a->strings['Your legacy ActivityPub/GNU Social account'] = 'حساب GNU Social\ActivityPub القديم'; $a->strings['If you enter your old account name from an ActivityPub based system or your GNU Social/Statusnet account name here (in the format user@domain.tld), your contacts will be added automatically. The field will be emptied when done.'] = 'إذا قمت بإدخال اسم حساب ActivityPub/GNU Social/Statusnet القديم هنا (بنسق user@domain.tld)، سيضاف المتراسلون في هذا الحساب تلقائيا. سيصفر الحقل عند الانتهاء.'; -$a->strings['Repair OStatus subscriptions'] = 'أصلح اشتراكات OStatus'; $a->strings['Email/Mailbox Setup'] = 'إعداد بريد الكتروني/صندوق بريد'; $a->strings['If you wish to communicate with email contacts using this service (optional), please specify how to connect to your mailbox.'] = 'إذا كنت ترغب في التواصل مع متراسلي البريد الإلكتروني باستخدام هذه الخدمة (اختيارية)، من فضلك حدد كيفية الاتصال بصندوق بريدك.'; $a->strings['Last successful email check:'] = 'آخر تحقق ناجح للبريد الإلكتروني:'; @@ -2121,7 +2115,6 @@ $a->strings['%s commented on %s\'s post'] = 'علق %s على مشاركة %s'; $a->strings['%s created a new post'] = 'أنشأ %s مشاركة جديدة'; $a->strings['Friend Suggestion'] = 'اقتراح صديق'; $a->strings['Friend/Connect Request'] = 'طلب صداقة/اقتران'; -$a->strings['New Follower'] = 'متابِع جديد'; $a->strings['%1$s wants to follow you'] = '%1$s يريد متابعتك'; $a->strings['%1$s has started following you'] = 'بدأ %1$s متابعتك'; $a->strings['%1$s liked your comment on %2$s'] = 'أٌعجب %1$s بتعليقك على %2$s'; @@ -2246,10 +2239,6 @@ $a->strings['%d comment'] = [ $a->strings['Show more'] = 'اعرض المزيد'; $a->strings['Show fewer'] = 'اعرض أقل'; $a->strings['(no subject)'] = '(بدون موضوع)'; -$a->strings['%s is now following %s.'] = '%s يتابع %s.'; -$a->strings['following'] = 'يتابع'; -$a->strings['%s stopped following %s.'] = '%s توقف عن متابعة %s.'; -$a->strings['stopped following'] = 'توقف عن متابعة'; $a->strings['Login failed.'] = 'فشل الولوج.'; $a->strings['Login failed. Please check your credentials.'] = 'فشل الولوج. من فضلك تحقق من بيانات الاعتماد.'; $a->strings['Welcome %s'] = 'مرحباً %s'; diff --git a/view/lang/bg/messages.po b/view/lang/bg/messages.po index 1c1a9220b8..8311f38357 100644 --- a/view/lang/bg/messages.po +++ b/view/lang/bg/messages.po @@ -1,8 +1,7 @@ # FRIENDICA Distributed Social Network -# SPDX-FileCopyrightText: Copyright (C) 2010-2024, the Friendica project -# -# SPDX-License-Identifier: AGPL-3.0-or-later -# +# Copyright (C) 2010-2024, the Friendica project +# This file is distributed under the same license as the Friendica package. +# # Translators: # Mike Macgirvin, 2010 # Rafael Kalachev , 2021 @@ -11,7 +10,7 @@ msgid "" msgstr "" "Project-Id-Version: friendica\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-03-01 08:51-0500\n" +"POT-Creation-Date: 2024-10-07 20:46+0000\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" @@ -21,77 +20,77 @@ msgstr "" "Language: bg\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: mod/item.php:100 mod/item.php:103 mod/item.php:170 mod/item.php:173 +#: mod/item.php:89 mod/item.php:92 mod/item.php:159 mod/item.php:162 msgid "Unable to locate original post." msgstr "Не може да се намери оригиналната публикация." -#: mod/item.php:138 +#: mod/item.php:127 msgid "Post updated." msgstr "" -#: mod/item.php:203 mod/item.php:207 +#: mod/item.php:192 mod/item.php:196 msgid "Item wasn't stored." msgstr "" -#: mod/item.php:217 +#: mod/item.php:206 msgid "Item couldn't be fetched." msgstr "" -#: mod/item.php:259 mod/item.php:263 +#: mod/item.php:250 mod/item.php:254 msgid "Empty post discarded." msgstr "Empty мнение изхвърли." -#: 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 +#: mod/item.php:425 src/Module/Admin/Themes/Details.php:31 +#: src/Module/Admin/Themes/Index.php:51 src/Module/Debug/ItemBody.php:28 +#: src/Module/Debug/ItemBody.php:43 src/Module/Item/Feed.php:66 msgid "Item not found." msgstr "Елемент не е намерен." -#: mod/item.php: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 -#: src/Module/Calendar/Export.php:82 src/Module/Calendar/Show.php:82 -#: src/Module/Circle.php:41 src/Module/Circle.php:84 -#: src/Module/Contact/Advanced.php:60 src/Module/Contact/Follow.php:87 -#: src/Module/Contact/Follow.php:160 src/Module/Contact/MatchInterests.php:86 -#: src/Module/Contact/Suggestions.php:54 src/Module/Contact/Unfollow.php:66 -#: src/Module/Contact/Unfollow.php:80 src/Module/Contact/Unfollow.php:112 -#: src/Module/FollowConfirm.php:38 src/Module/FriendSuggest.php:57 -#: src/Module/Invite.php:42 src/Module/Invite.php:131 -#: src/Module/Notifications/Notification.php:76 -#: src/Module/Notifications/Notification.php:107 -#: src/Module/OStatus/Repair.php:60 src/Module/OStatus/Subscribe.php:66 -#: src/Module/Post/Edit.php:76 src/Module/Profile/Common.php:75 -#: src/Module/Profile/Contacts.php:78 src/Module/Profile/Photos.php:92 -#: src/Module/Profile/Schedule.php:39 src/Module/Profile/Schedule.php:56 -#: src/Module/Register.php:77 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: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:199 -#: src/Module/Settings/Profile/Photo/Crop.php:165 -#: src/Module/Settings/Profile/Photo/Index.php:110 -#: src/Module/Settings/RemoveMe.php:119 src/Module/Settings/UserExport.php:78 -#: src/Module/Settings/UserExport.php:114 -#: src/Module/Settings/UserExport.php:213 -#: src/Module/Settings/UserExport.php:233 -#: src/Module/Settings/UserExport.php:298 src/Module/User/Delegation.php:154 -#: src/Module/User/Import.php:84 src/Module/User/Import.php:91 +#: mod/item.php:449 mod/message.php:54 mod/message.php:100 mod/notes.php:33 +#: mod/photos.php:135 mod/photos.php:627 src/Model/Event.php:506 +#: src/Module/Attach.php:41 src/Module/BaseApi.php:89 +#: src/Module/BaseNotifications.php:84 src/Module/BaseSettings.php:36 +#: src/Module/Calendar/Event/API.php:74 src/Module/Calendar/Event/Form.php:70 +#: src/Module/Calendar/Export.php:68 src/Module/Calendar/Show.php:68 +#: src/Module/Circle.php:27 src/Module/Circle.php:70 +#: src/Module/Contact/Advanced.php:46 src/Module/Contact/Follow.php:73 +#: src/Module/Contact/Follow.php:141 src/Module/Contact/MatchInterests.php:73 +#: src/Module/Contact/Suggestions.php:40 src/Module/Contact/Unfollow.php:52 +#: src/Module/Contact/Unfollow.php:66 src/Module/Contact/Unfollow.php:98 +#: src/Module/FollowConfirm.php:24 src/Module/FriendSuggest.php:43 +#: src/Module/Invite.php:28 src/Module/Invite.php:117 +#: src/Module/Notifications/Notification.php:62 +#: src/Module/Notifications/Notification.php:93 +#: src/Module/OStatus/Subscribe.php:54 src/Module/Post/Edit.php:62 +#: src/Module/Profile/Common.php:61 src/Module/Profile/Contacts.php:64 +#: src/Module/Profile/Photos.php:78 src/Module/Profile/Schedule.php:25 +#: src/Module/Profile/Schedule.php:42 src/Module/Register.php:70 +#: src/Module/Register.php:83 src/Module/Register.php:199 +#: src/Module/Register.php:238 src/Module/Search/Directory.php:23 +#: src/Module/Settings/Account.php:36 src/Module/Settings/Account.php:377 +#: src/Module/Settings/Channels.php:52 src/Module/Settings/Channels.php:127 +#: src/Module/Settings/Delegation.php:76 src/Module/Settings/Display.php:76 +#: src/Module/Settings/Display.php:183 +#: src/Module/Settings/Profile/Photo/Crop.php:151 +#: src/Module/Settings/Profile/Photo/Index.php:96 +#: src/Module/Settings/RemoveMe.php:105 src/Module/Settings/UserExport.php:64 +#: src/Module/Settings/UserExport.php:100 +#: src/Module/Settings/UserExport.php:199 +#: src/Module/Settings/UserExport.php:219 +#: src/Module/Settings/UserExport.php:284 src/Module/User/Delegation.php:140 +#: src/Module/User/Import.php:71 src/Module/User/Import.php:78 msgid "Permission denied." msgstr "Разрешението е отказано." -#: mod/lostpass.php:40 +#: mod/lostpass.php:28 msgid "No valid account found." msgstr "Не е валиден акаунт." -#: mod/lostpass.php:52 +#: mod/lostpass.php:40 msgid "Password reset request issued. Check your email." msgstr ", Издадено искане за възстановяване на паролата. Проверете Вашата електронна поща." -#: mod/lostpass.php:58 +#: mod/lostpass.php:46 #, php-format msgid "" "\n" @@ -107,7 +106,7 @@ msgid "" "\t\tissued this request." msgstr "" -#: mod/lostpass.php:69 +#: mod/lostpass.php:57 #, php-format msgid "" "\n" @@ -124,70 +123,70 @@ msgid "" "\t\tLogin Name:\t%3$s" msgstr "" -#: mod/lostpass.php:84 +#: mod/lostpass.php:72 #, php-format msgid "Password reset requested at %s" msgstr "Исканото за нулиране на паролата на %s" -#: mod/lostpass.php:100 +#: mod/lostpass.php:88 msgid "" "Request could not be verified. (You may have previously submitted it.) " "Password reset failed." msgstr "Искането не може да бъде проверена. (Може да се преди това са го внесе.) За нулиране на паролата не успя." -#: mod/lostpass.php:113 +#: mod/lostpass.php:101 msgid "Request has expired, please make a new one." msgstr "" -#: mod/lostpass.php:128 +#: mod/lostpass.php:116 msgid "Forgot your Password?" msgstr "Забравена парола?" -#: mod/lostpass.php:129 +#: mod/lostpass.php:117 msgid "" "Enter your email address and submit to have your password reset. Then check " "your email for further instructions." msgstr "Въведете вашия имейл адрес и представя си за нулиране на паролата. След това проверявате електронната си поща за по-нататъшни инструкции." -#: mod/lostpass.php:130 src/Module/Security/Login.php:160 +#: mod/lostpass.php:118 src/Module/Security/Login.php:150 msgid "Nickname or Email: " msgstr "Псевдоним или имейл адрес: " -#: mod/lostpass.php:131 +#: mod/lostpass.php:119 msgid "Reset" msgstr "Нулиране" -#: mod/lostpass.php:146 src/Module/Security/Login.php:172 +#: mod/lostpass.php:134 src/Module/Security/Login.php:162 msgid "Password Reset" msgstr "Смяна на паролата" -#: mod/lostpass.php:147 +#: mod/lostpass.php:135 msgid "Your password has been reset as requested." msgstr "Вашата парола е променена, както беше поискано." -#: mod/lostpass.php:148 +#: mod/lostpass.php:136 msgid "Your new password is" msgstr "Вашата нова парола е" -#: mod/lostpass.php:149 +#: mod/lostpass.php:137 msgid "Save or copy your new password - and then" msgstr "Запазване или копиране на новата си парола и след това" -#: mod/lostpass.php:150 +#: mod/lostpass.php:138 msgid "click here to login" msgstr "Кликнете тук за Вход" -#: mod/lostpass.php:151 +#: mod/lostpass.php:139 msgid "" "Your password may be changed from the Settings page after " "successful login." msgstr "Вашата парола може да бъде променена от Настройки , След успешен вход." -#: mod/lostpass.php:155 +#: mod/lostpass.php:143 msgid "Your password has been reset." msgstr "" -#: mod/lostpass.php:158 +#: mod/lostpass.php:146 #, php-format msgid "" "\n" @@ -198,7 +197,7 @@ msgid "" "\t\t" msgstr "" -#: mod/lostpass.php:164 +#: mod/lostpass.php:152 #, php-format msgid "" "\n" @@ -212,2361 +211,2415 @@ msgid "" "\t\t" msgstr "" -#: mod/lostpass.php:176 +#: mod/lostpass.php:164 #, php-format msgid "Your password has been changed at %s" msgstr "" -#: mod/message.php:46 mod/message.php:128 src/Content/Nav.php:321 +#: mod/message.php:33 mod/message.php:115 src/Content/Nav.php:307 msgid "New Message" msgstr "Ново съобщение" -#: mod/message.php:82 +#: mod/message.php:69 msgid "No recipient selected." msgstr "Не е избран получател." -#: mod/message.php:87 +#: mod/message.php:74 msgid "Unable to locate contact information." msgstr "Не може да се намери информация за контакт." -#: mod/message.php:91 +#: mod/message.php:78 msgid "Message could not be sent." msgstr "Писмото не може да бъде изпратена." -#: mod/message.php:95 +#: mod/message.php:82 msgid "Message collection failure." msgstr "Съобщение за събиране на неуспех." -#: mod/message.php:122 src/Module/Notifications/Introductions.php:135 -#: src/Module/Notifications/Introductions.php:170 -#: src/Module/Notifications/Notification.php:85 +#: mod/message.php:109 src/Module/Notifications/Introductions.php:127 +#: src/Module/Notifications/Introductions.php:162 +#: src/Module/Notifications/Notification.php:71 msgid "Discard" msgstr "Отхвърляне" -#: mod/message.php:135 src/Content/Nav.php:318 view/theme/frio/theme.php:244 +#: mod/message.php:122 src/Content/Nav.php:304 view/theme/frio/theme.php:232 msgid "Messages" msgstr "Съобщения" -#: mod/message.php:148 +#: mod/message.php:135 msgid "Conversation not found." msgstr "" -#: mod/message.php:153 +#: mod/message.php:140 msgid "Message was not deleted." msgstr "" -#: mod/message.php:168 +#: mod/message.php:155 msgid "Conversation was not removed." msgstr "" -#: mod/message.php:181 mod/message.php:286 +#: mod/message.php:168 mod/message.php:273 msgid "Please enter a link URL:" msgstr "Моля, въведете URL адреса за връзка:" -#: mod/message.php:190 +#: mod/message.php:177 msgid "Send Private Message" msgstr "Изпрати Лично Съобщение" -#: mod/message.php:191 mod/message.php:346 +#: mod/message.php:178 mod/message.php:333 +#: src/Module/Privacy/PermissionTooltip.php:118 msgid "To:" msgstr "До:" -#: mod/message.php:192 mod/message.php:347 +#: mod/message.php:179 mod/message.php:334 msgid "Subject:" msgstr "Относно:" -#: mod/message.php:196 mod/message.php:350 src/Module/Invite.php:171 +#: mod/message.php:183 mod/message.php:337 src/Module/Invite.php:157 msgid "Your message:" msgstr "Ваше съобщение" -#: mod/message.php:199 mod/message.php:354 src/Content/Conversation.php:370 -#: src/Module/Post/Edit.php:131 +#: mod/message.php:186 mod/message.php:341 src/Content/Conversation.php:355 +#: src/Module/Post/Edit.php:117 msgid "Upload photo" msgstr "Качване на снимка" -#: mod/message.php:200 mod/message.php:355 src/Module/Post/Edit.php:135 +#: mod/message.php:187 mod/message.php:342 src/Module/Post/Edit.php:121 msgid "Insert web link" msgstr "Вмъкване на връзка в Мрежата" -#: mod/message.php: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 +#: mod/message.php:188 mod/message.php:344 mod/photos.php:1255 +#: src/Content/Conversation.php:386 src/Content/Conversation.php:1562 +#: src/Module/Item/Compose.php:199 src/Module/Post/Edit.php:131 +#: src/Object/Post.php:604 msgid "Please wait" msgstr "Моля, изчакайте" -#: mod/message.php: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: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 -#: src/Module/Invite.php:178 src/Module/Item/Compose.php:189 -#: src/Module/Moderation/Item/Source.php:79 -#: src/Module/Moderation/Report/Create.php:168 -#: src/Module/Moderation/Report/Create.php:183 -#: src/Module/Moderation/Report/Create.php:211 -#: src/Module/Moderation/Report/Create.php:263 -#: src/Module/Profile/Profile.php: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:150 view/theme/quattro/config.php:87 -#: view/theme/vier/config.php:135 +#: mod/message.php:189 mod/message.php:343 mod/photos.php:658 +#: mod/photos.php:778 mod/photos.php:1055 mod/photos.php:1096 +#: mod/photos.php:1152 mod/photos.php:1232 +#: src/Module/Calendar/Event/Form.php:236 src/Module/Contact/Advanced.php:118 +#: src/Module/Contact/Profile.php:370 +#: src/Module/Debug/ActivityPubConversion.php:132 +#: src/Module/Debug/Babel.php:307 src/Module/Debug/Localtime.php:50 +#: src/Module/Debug/Probe.php:40 src/Module/Debug/WebFinger.php:37 +#: src/Module/FriendSuggest.php:131 src/Module/Install.php:220 +#: src/Module/Install.php:260 src/Module/Install.php:295 +#: src/Module/Invite.php:164 src/Module/Item/Compose.php:182 +#: src/Module/Moderation/Item/Source.php:71 +#: src/Module/Moderation/Report/Create.php:154 +#: src/Module/Moderation/Report/Create.php:169 +#: src/Module/Moderation/Report/Create.php:197 +#: src/Module/Moderation/Report/Create.php:249 +#: src/Module/Profile/Profile.php:262 +#: src/Module/Settings/Profile/Index.php:248 +#: src/Module/Settings/Server/Action.php:65 src/Module/User/Delegation.php:175 +#: src/Object/Post.php:1145 view/theme/duepuntozero/config.php:73 +#: view/theme/frio/config.php:138 view/theme/quattro/config.php:75 +#: view/theme/vier/config.php:123 msgid "Submit" msgstr "Изпращане" -#: mod/message.php:223 +#: mod/message.php:210 msgid "No messages." msgstr "Няма съобщения." -#: mod/message.php:279 +#: mod/message.php:266 msgid "Message not available." msgstr "Съобщението не е посочена." -#: mod/message.php:323 +#: mod/message.php:310 msgid "Delete message" msgstr "Изтриване на съобщение" -#: mod/message.php:325 mod/message.php:456 +#: mod/message.php:312 mod/message.php:441 msgid "D, d M Y - g:i A" msgstr "D, D MY - Г: А" -#: mod/message.php:340 mod/message.php:453 +#: mod/message.php:327 mod/message.php:438 msgid "Delete conversation" msgstr "Изтриване на разговор" -#: mod/message.php:342 +#: mod/message.php:329 msgid "" "No secure communications available. You may be able to " "respond from the sender's profile page." msgstr "Няма сигурни комуникации. Можете май да бъде в състояние да отговори от страницата на профила на подателя." -#: mod/message.php:345 +#: mod/message.php:332 msgid "Send Reply" msgstr "Изпратете Отговор" -#: mod/message.php:427 +#: mod/message.php:412 #, php-format msgid "Unknown sender - %s" msgstr "Непознат подател %s" -#: mod/message.php:429 +#: mod/message.php:414 #, php-format msgid "You and %s" msgstr "Вие и %s" -#: mod/message.php:431 +#: mod/message.php:416 #, php-format msgid "%s and You" msgstr "%s" -#: mod/message.php:459 +#: mod/message.php:444 #, php-format msgid "%d message" msgid_plural "%d messages" msgstr[0] "" msgstr[1] "" -#: mod/notes.php:52 src/Module/BaseProfile.php:108 +#: mod/notes.php:40 src/Module/BaseProfile.php:94 msgid "Personal Notes" msgstr "Личните бележки" -#: mod/notes.php:56 +#: mod/notes.php:44 msgid "Personal notes are visible only by yourself." msgstr "" -#: mod/notes.php:57 src/Content/Text/HTML.php:860 -#: src/Module/Admin/Storage.php:142 src/Module/Filer/SaveTag.php:74 -#: src/Module/Post/Edit.php:129 src/Module/Settings/Channels.php:223 +#: mod/notes.php:45 src/Content/Text/HTML.php:847 +#: src/Module/Admin/Storage.php:128 src/Module/Filer/SaveTag.php:60 +#: src/Module/Post/Edit.php:115 src/Module/Settings/Channels.php:215 msgid "Save" msgstr "Запази" -#: mod/photos.php: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 -#: src/Module/Profile/Common.php:62 src/Module/Profile/Common.php:71 -#: src/Module/Profile/Contacts.php:64 src/Module/Profile/Contacts.php:72 -#: src/Module/Profile/Conversations.php:91 src/Module/Profile/Media.php:56 -#: src/Module/Profile/Photos.php:83 src/Module/Profile/RemoteFollow.php:71 -#: src/Module/Register.php:267 +#: mod/photos.php:54 mod/photos.php:117 mod/photos.php:537 +#: src/Model/Event.php:498 src/Model/Profile.php:213 +#: src/Module/Calendar/Export.php:60 src/Module/Calendar/Show.php:60 +#: src/Module/Feed.php:52 src/Module/HCard.php:37 +#: src/Module/Profile/Common.php:48 src/Module/Profile/Common.php:57 +#: src/Module/Profile/Contacts.php:50 src/Module/Profile/Contacts.php:58 +#: src/Module/Profile/Conversations.php:77 src/Module/Profile/Media.php:42 +#: src/Module/Profile/Photos.php:69 src/Module/Profile/RemoteFollow.php:57 +#: src/Module/Register.php:260 msgid "User not found." msgstr "" -#: mod/photos.php:106 src/Module/BaseProfile.php:68 -#: src/Module/Profile/Photos.php:375 +#: mod/photos.php:91 src/Module/BaseProfile.php:54 +#: src/Module/Profile/Photos.php:361 msgid "Photo Albums" msgstr "Фотоалбуми" -#: mod/photos.php:107 src/Module/Profile/Photos.php:376 -#: src/Module/Profile/Photos.php:396 +#: mod/photos.php:92 src/Module/Profile/Photos.php:362 +#: src/Module/Profile/Photos.php:382 msgid "Recent Photos" msgstr "Последни снимки" -#: mod/photos.php:109 mod/photos.php:868 src/Module/Profile/Photos.php:378 -#: src/Module/Profile/Photos.php:398 +#: mod/photos.php:94 mod/photos.php:826 src/Module/Profile/Photos.php:364 +#: src/Module/Profile/Photos.php:384 msgid "Upload New Photos" msgstr "Качване на нови снимки" -#: mod/photos.php:121 src/Module/BaseSettings.php:72 -#: src/Module/Profile/Photos.php:359 +#: mod/photos.php:106 src/Module/BaseSettings.php:58 +#: src/Module/Profile/Photos.php:345 msgid "everybody" msgstr "всички" -#: mod/photos.php:157 +#: mod/photos.php:142 msgid "Contact information unavailable" msgstr "Свържете се с информация недостъпна" -#: mod/photos.php:186 +#: mod/photos.php:171 msgid "Album not found." msgstr "Албумът не е намерен." -#: mod/photos.php:242 +#: mod/photos.php:227 msgid "Album successfully deleted" msgstr "" -#: mod/photos.php:244 +#: mod/photos.php:229 msgid "Album was empty." msgstr "" -#: mod/photos.php:275 +#: mod/photos.php:260 msgid "Failed to delete the photo." msgstr "" -#: mod/photos.php:543 +#: mod/photos.php:504 msgid "a photo" msgstr "" -#: mod/photos.php:543 +#: mod/photos.php:504 #, php-format msgid "%1$s was tagged in %2$s by %3$s" msgstr "" -#: 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 +#: mod/photos.php:541 src/Module/Conversation/Community.php:148 +#: src/Module/Directory.php:35 src/Module/Profile/Photos.php:279 +#: src/Module/Search/Index.php:51 msgid "Public access denied." msgstr "Публичен достъп отказан." -#: mod/photos.php:585 +#: mod/photos.php:546 msgid "No photos selected" msgstr "Няма избрани снимки" -#: mod/photos.php:717 +#: mod/photos.php:674 #, php-format msgid "The maximum accepted image size is %s" msgstr "" -#: mod/photos.php:724 +#: mod/photos.php:681 msgid "Upload Photos" msgstr "Качване на снимки" -#: mod/photos.php:728 mod/photos.php:816 +#: mod/photos.php:685 mod/photos.php:774 msgid "New album name: " msgstr "Нов албум име: " -#: mod/photos.php:729 +#: mod/photos.php:686 msgid "or select existing album:" msgstr "" -#: mod/photos.php:730 +#: mod/photos.php:687 msgid "Do not show a status post for this upload" msgstr "Да не се показва след статут за това качване" -#: 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 +#: mod/photos.php:690 mod/photos.php:1051 src/Content/Conversation.php:388 +#: src/Module/Calendar/Event/Form.php:239 src/Module/Post/Edit.php:169 msgid "Permissions" msgstr "права" -#: mod/photos.php:797 +#: mod/photos.php:755 msgid "Do you really want to delete this photo album and all its photos?" msgstr "" -#: mod/photos.php:798 mod/photos.php:821 +#: mod/photos.php:756 mod/photos.php:779 msgid "Delete Album" msgstr "Изтриване на албума" -#: 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 -#: src/Module/Media/Photo/Browser.php:88 src/Module/Post/Edit.php:167 -#: src/Module/Post/Tag/Remove.php:109 src/Module/Profile/RemoteFollow.php:134 -#: src/Module/Security/TwoFactor/SignOut.php:125 +#: mod/photos.php:757 mod/photos.php:857 src/Content/Conversation.php:403 +#: src/Module/Contact/Follow.php:154 src/Module/Contact/Revoke.php:92 +#: src/Module/Contact/Unfollow.php:112 +#: src/Module/Media/Attachment/Browser.php:63 +#: src/Module/Media/Photo/Browser.php:74 src/Module/Post/Edit.php:153 +#: src/Module/Post/Tag/Remove.php:95 src/Module/Profile/RemoteFollow.php:120 +#: src/Module/Security/TwoFactor/SignOut.php:111 msgid "Cancel" msgstr "Отмени" -#: mod/photos.php:825 +#: mod/photos.php:783 msgid "Edit Album" msgstr "Редактиране на албум" -#: mod/photos.php:826 +#: mod/photos.php:784 msgid "Drop Album" msgstr "" -#: mod/photos.php:830 +#: mod/photos.php:788 msgid "Show Newest First" msgstr "" -#: mod/photos.php:832 +#: mod/photos.php:790 msgid "Show Oldest First" msgstr "" -#: mod/photos.php:853 src/Module/Profile/Photos.php:346 +#: mod/photos.php:811 src/Module/Profile/Photos.php:332 msgid "View Photo" msgstr "Преглед на снимка" -#: mod/photos.php:885 +#: mod/photos.php:843 msgid "Permission denied. Access to this item may be restricted." msgstr "Разрешението е отказано. Достъпът до тази точка може да бъде ограничено." -#: mod/photos.php:887 +#: mod/photos.php:845 msgid "Photo not available" msgstr "Снимката не е" -#: mod/photos.php:897 +#: mod/photos.php:855 msgid "Do you really want to delete this photo?" msgstr "" -#: mod/photos.php:898 mod/photos.php:1098 +#: mod/photos.php:856 mod/photos.php:1056 msgid "Delete Photo" msgstr "Изтриване на снимка" -#: mod/photos.php:996 +#: mod/photos.php:954 msgid "View photo" msgstr "Преглед на снимка" -#: mod/photos.php:998 +#: mod/photos.php:956 msgid "Edit photo" msgstr "Редактиране на снимка" -#: mod/photos.php:999 +#: mod/photos.php:957 msgid "Delete photo" msgstr "" -#: mod/photos.php:1000 +#: mod/photos.php:958 msgid "Use as profile photo" msgstr "Използва се като снимката на профила" -#: mod/photos.php:1007 +#: mod/photos.php:965 msgid "Private Photo" msgstr "" -#: mod/photos.php:1013 +#: mod/photos.php:971 msgid "View Full Size" msgstr "Изглед в пълен размер" -#: mod/photos.php:1066 +#: mod/photos.php:1024 msgid "Tags: " msgstr "Маркери: " -#: mod/photos.php:1069 +#: mod/photos.php:1027 msgid "[Select tags to remove]" msgstr "" -#: mod/photos.php:1084 +#: mod/photos.php:1042 msgid "New album name" msgstr "Ново име на албум" -#: mod/photos.php:1085 +#: mod/photos.php:1043 msgid "Caption" msgstr "Надпис" -#: mod/photos.php:1086 +#: mod/photos.php:1044 msgid "Add a Tag" msgstr "Добавите етикет" -#: mod/photos.php:1086 +#: mod/photos.php:1044 msgid "" "Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping" msgstr "Пример: @ Боб, @ Barbara_Jensen, jim@example.com @, # Калифорния, къмпинг" -#: mod/photos.php:1087 +#: mod/photos.php:1045 msgid "Do not rotate" msgstr "" -#: mod/photos.php:1088 +#: mod/photos.php:1046 msgid "Rotate CW (right)" msgstr "Rotate CW (вдясно)" -#: mod/photos.php:1089 +#: mod/photos.php:1047 msgid "Rotate CCW (left)" msgstr "Завъртане ККО (вляво)" -#: 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 +#: mod/photos.php:1093 mod/photos.php:1149 mod/photos.php:1229 +#: src/Module/Contact.php:600 src/Module/Item/Compose.php:181 +#: src/Object/Post.php:1142 msgid "This is you" msgstr "Това сте вие" -#: 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 +#: mod/photos.php:1095 mod/photos.php:1151 mod/photos.php:1231 +#: src/Module/Moderation/Reports.php:102 src/Object/Post.php:598 +#: src/Object/Post.php:1144 msgid "Comment" msgstr "Коментар" -#: 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 +#: mod/photos.php:1097 mod/photos.php:1153 mod/photos.php:1233 +#: src/Content/Conversation.php:400 src/Module/Calendar/Event/Form.php:234 +#: src/Module/Item/Compose.php:194 src/Module/Post/Edit.php:151 +#: src/Object/Post.php:1158 msgid "Preview" msgstr "Преглед" -#: mod/photos.php:1140 src/Content/Conversation.php:369 -#: src/Module/Post/Edit.php:130 src/Object/Post.php:1155 +#: mod/photos.php:1098 src/Content/Conversation.php:354 +#: src/Module/Post/Edit.php:116 src/Object/Post.php:1146 msgid "Loading..." msgstr "Зареждане..." -#: mod/photos.php:1232 src/Content/Conversation.php:1501 -#: src/Object/Post.php:261 +#: mod/photos.php:1190 src/Content/Conversation.php:1484 +#: src/Object/Post.php:260 msgid "Select" msgstr "избор" -#: 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 -#: src/Module/Settings/Connectors.php:244 -#: src/Module/Settings/Server/Index.php:109 +#: mod/photos.php:1191 src/Content/Conversation.php:1485 +#: src/Module/Moderation/Users/Active.php:122 +#: src/Module/Moderation/Users/Blocked.php:122 +#: src/Module/Moderation/Users/Index.php:137 +#: src/Module/Settings/Connectors.php:233 +#: src/Module/Settings/Server/Index.php:95 msgid "Delete" msgstr "Изтриване" -#: mod/photos.php:1294 src/Object/Post.php:426 +#: mod/photos.php:1252 src/Object/Post.php:426 msgid "Like" msgstr "" -#: mod/photos.php:1295 src/Object/Post.php:426 +#: mod/photos.php:1253 src/Object/Post.php:426 msgid "I like this (toggle)" msgstr "Харесва ми това (смяна)" -#: mod/photos.php:1296 src/Object/Post.php:427 +#: mod/photos.php:1254 src/Object/Post.php:427 msgid "Dislike" msgstr "" -#: mod/photos.php:1298 src/Object/Post.php:427 +#: mod/photos.php:1256 src/Object/Post.php:427 msgid "I don't like this (toggle)" msgstr "Не ми харесва това (смяна)" -#: mod/photos.php:1320 +#: mod/photos.php:1278 msgid "Map" msgstr "" -#: src/App.php:473 +#: src/App.php:432 msgid "No system theme config value set." msgstr "" -#: src/App.php:581 +#: src/App.php:540 msgid "Apologies but the website is unavailable at the moment." msgstr "" -#: src/App/Page.php:249 +#: src/App/Page.php:236 msgid "Delete this item?" msgstr "Изтриване на тази бележка?" -#: src/App/Page.php:250 +#: src/App/Page.php:237 msgid "" "Block this author? They won't be able to follow you nor see your public " "posts, and you won't be able to see their posts and their notifications." msgstr "" -#: src/App/Page.php:251 +#: src/App/Page.php:238 msgid "" "Ignore this author? You won't be able to see their posts and their " "notifications." msgstr "" -#: src/App/Page.php:252 +#: src/App/Page.php:239 msgid "Collapse this author's posts?" msgstr "" -#: src/App/Page.php:253 +#: src/App/Page.php:240 msgid "Ignore this author's server?" msgstr "" -#: src/App/Page.php:254 src/Module/Settings/Server/Action.php:61 -#: src/Module/Settings/Server/Index.php:108 +#: src/App/Page.php:241 src/Module/Settings/Server/Action.php:47 +#: src/Module/Settings/Server/Index.php:94 msgid "" "You won't see any content from this server including reshares in your " "Network page, the community pages and individual conversations." msgstr "" -#: src/App/Page.php:256 +#: src/App/Page.php:243 msgid "Like not successful" msgstr "" -#: src/App/Page.php:257 +#: src/App/Page.php:244 msgid "Dislike not successful" msgstr "" -#: src/App/Page.php:258 +#: src/App/Page.php:245 msgid "Sharing not successful" msgstr "" -#: src/App/Page.php:259 +#: src/App/Page.php:246 msgid "Attendance unsuccessful" msgstr "" -#: src/App/Page.php:260 +#: src/App/Page.php:247 msgid "Backend error" msgstr "" -#: src/App/Page.php:261 +#: src/App/Page.php:248 msgid "Network error" msgstr "" -#: src/App/Page.php:264 +#: src/App/Page.php:251 msgid "Drop files here to upload" msgstr "" -#: src/App/Page.php:265 +#: src/App/Page.php:252 msgid "Your browser does not support drag and drop file uploads." msgstr "" -#: src/App/Page.php:266 +#: src/App/Page.php:253 msgid "" "Please use the fallback form below to upload your files like in the olden " "days." msgstr "" -#: src/App/Page.php:267 +#: src/App/Page.php:254 msgid "File is too big ({{filesize}}MiB). Max filesize: {{maxFilesize}}MiB." msgstr "" -#: src/App/Page.php:268 +#: src/App/Page.php:255 msgid "You can't upload files of this type." msgstr "" -#: src/App/Page.php:269 +#: src/App/Page.php:256 msgid "Server responded with {{statusCode}} code." msgstr "" -#: src/App/Page.php:270 +#: src/App/Page.php:257 msgid "Cancel upload" msgstr "" -#: src/App/Page.php:271 +#: src/App/Page.php:258 msgid "Upload canceled." msgstr "" -#: src/App/Page.php:272 +#: src/App/Page.php:259 msgid "Are you sure you want to cancel this upload?" msgstr "" -#: src/App/Page.php:273 +#: src/App/Page.php:260 msgid "Remove file" msgstr "" -#: src/App/Page.php:274 +#: src/App/Page.php:261 msgid "You can't upload any more files." msgstr "" -#: src/App/Page.php:352 +#: src/App/Page.php:339 msgid "toggle mobile" msgstr "" -#: src/App/Router.php:309 +#: src/App/Router.php:295 #, php-format msgid "Method not allowed for this module. Allowed method(s): %s" msgstr "" -#: src/App/Router.php:311 src/Module/HTTPException/PageNotFound.php:49 +#: src/App/Router.php:297 src/Module/HTTPException/PageNotFound.php:35 +#: src/Module/Stats.php:49 msgid "Page not found." msgstr "Страницата не е намерена." -#: src/App/Router.php:323 +#: src/App/Router.php:309 msgid "You must be logged in to use addons. " msgstr "" -#: src/BaseModule.php:407 +#: src/BaseModule.php:393 msgid "" "The form security token was not correct. This probably happened because the " "form has been opened for too long (>3 hours) before submitting it." msgstr "Маркера за сигурност не е вярна. Това вероятно е станало, тъй като формата е била отворена за прекалено дълго време (> 3 часа) преди да го представи." -#: src/BaseModule.php:434 +#: src/BaseModule.php:420 msgid "All contacts" msgstr "" -#: src/BaseModule.php:439 src/Content/Conversation/Factory/Channel.php:46 -#: src/Content/Widget.php:240 src/Core/ACL.php:195 src/Module/Contact.php:414 -#: src/Module/PermissionTooltip.php:141 src/Module/PermissionTooltip.php:163 -#: src/Module/Settings/Channels.php:154 +#: src/BaseModule.php:425 src/Content/Conversation/Factory/Channel.php:32 +#: src/Content/Widget.php:218 src/Core/ACL.php:181 src/Module/Contact.php:395 +#: src/Module/Privacy/PermissionTooltip.php:150 +#: src/Module/Privacy/PermissionTooltip.php:172 +#: src/Module/Settings/Channels.php:146 msgid "Followers" msgstr "" -#: src/BaseModule.php:444 src/Content/Widget.php:241 -#: src/Module/Contact.php:417 src/Module/Settings/Channels.php:153 +#: src/BaseModule.php:430 src/Content/Widget.php:219 +#: src/Module/Contact.php:398 src/Module/Settings/Channels.php:145 msgid "Following" msgstr "" -#: src/BaseModule.php:449 src/Content/Widget.php:242 -#: src/Module/Contact.php:420 +#: src/BaseModule.php:435 src/Content/Widget.php:220 +#: src/Module/Contact.php:401 msgid "Mutual friends" msgstr "" -#: src/BaseModule.php:457 +#: src/BaseModule.php:443 msgid "Common" msgstr "" -#: src/Console/Addon.php:175 src/Console/Addon.php:199 +#: src/Console/Addon.php:161 src/Console/Addon.php:185 msgid "Addon not found" msgstr "" -#: src/Console/Addon.php:179 +#: src/Console/Addon.php:165 msgid "Addon already enabled" msgstr "" -#: src/Console/Addon.php:203 +#: src/Console/Addon.php:189 msgid "Addon already disabled" msgstr "" -#: src/Console/ArchiveContact.php:106 +#: src/Console/ArchiveContact.php:92 #, php-format msgid "Could not find any unarchived contact entry for this URL (%s)" msgstr "" -#: src/Console/ArchiveContact.php:109 +#: src/Console/ArchiveContact.php:95 msgid "The contact entries have been archived" msgstr "" -#: src/Console/GlobalCommunityBlock.php:96 -#: src/Module/Moderation/Blocklist/Contact.php:65 +#: src/Console/ClearAvatarCache.php:73 +msgid "" +"The avatar cache needs to be disabled in local.config.php to use this " +"command." +msgstr "" + +#: src/Console/GlobalCommunityBlock.php:82 +#: src/Module/Moderation/Blocklist/Contact.php:51 #, php-format msgid "Could not find any contact entry for this URL (%s)" msgstr "" -#: src/Console/GlobalCommunityBlock.php:101 -#: src/Module/Moderation/Blocklist/Contact.php:82 +#: src/Console/GlobalCommunityBlock.php:87 +#: src/Module/Moderation/Blocklist/Contact.php:68 msgid "The contact has been blocked from the node" msgstr "" -#: src/Console/MergeContacts.php:75 +#: src/Console/MergeContacts.php:61 #, php-format msgid "%d %s, %d duplicates." msgstr "" -#: src/Console/MergeContacts.php:78 +#: src/Console/MergeContacts.php:64 #, php-format msgid "uri-id is empty for contact %s." msgstr "" -#: src/Console/MergeContacts.php:91 +#: src/Console/MergeContacts.php:77 #, php-format msgid "No valid first contact found for uri-id %d." msgstr "" -#: src/Console/MergeContacts.php:102 +#: src/Console/MergeContacts.php:88 #, php-format msgid "Wrong duplicate found for uri-id %d in %d (url: %s != %s)." msgstr "" -#: src/Console/MergeContacts.php:106 +#: src/Console/MergeContacts.php:92 #, php-format msgid "Wrong duplicate found for uri-id %d in %d (nurl: %s != %s)." msgstr "" -#: src/Console/MergeContacts.php:142 +#: src/Console/MergeContacts.php:128 #, php-format msgid "Deletion of id %d failed" msgstr "" -#: src/Console/MergeContacts.php:144 +#: src/Console/MergeContacts.php:130 #, php-format msgid "Deletion of id %d was successful" msgstr "" -#: src/Console/MergeContacts.php:150 +#: src/Console/MergeContacts.php:136 #, php-format msgid "Updating \"%s\" in \"%s\" from %d to %d" msgstr "" -#: src/Console/MergeContacts.php:152 +#: src/Console/MergeContacts.php:138 msgid " - found" msgstr "" -#: src/Console/MergeContacts.php:159 +#: src/Console/MergeContacts.php:145 msgid " - failed" msgstr "" -#: src/Console/MergeContacts.php:161 +#: src/Console/MergeContacts.php:147 msgid " - success" msgstr "" -#: src/Console/MergeContacts.php:165 +#: src/Console/MergeContacts.php:151 msgid " - deleted" msgstr "" -#: src/Console/MergeContacts.php:168 +#: src/Console/MergeContacts.php:154 msgid " - done" msgstr "" -#: src/Console/MoveToAvatarCache.php:91 +#: src/Console/MoveToAvatarCache.php:77 msgid "The avatar cache needs to be enabled to use this command." msgstr "" -#: src/Console/MoveToAvatarCache.php:109 +#: src/Console/MoveToAvatarCache.php:95 #, php-format msgid "no resource in photo %s" msgstr "" -#: src/Console/MoveToAvatarCache.php:137 +#: src/Console/MoveToAvatarCache.php:123 #, php-format msgid "no photo with id %s" msgstr "" -#: src/Console/MoveToAvatarCache.php:146 +#: src/Console/MoveToAvatarCache.php:132 #, php-format msgid "no image data for photo with id %s" msgstr "" -#: src/Console/MoveToAvatarCache.php:155 +#: src/Console/MoveToAvatarCache.php:141 #, php-format msgid "invalid image for id %s" msgstr "" -#: src/Console/MoveToAvatarCache.php:168 +#: src/Console/MoveToAvatarCache.php:154 #, php-format msgid "Quit on invalid photo %s" msgstr "" -#: src/Console/PostUpdate.php:87 +#: src/Console/PostUpdate.php:73 #, php-format msgid "Post update version number has been set to %s." msgstr "" -#: src/Console/PostUpdate.php:95 +#: src/Console/PostUpdate.php:81 msgid "Check for pending update actions." msgstr "" -#: src/Console/PostUpdate.php:97 +#: src/Console/PostUpdate.php:83 msgid "Done." msgstr "" -#: src/Console/PostUpdate.php:99 +#: src/Console/PostUpdate.php:85 msgid "Execute pending post updates." msgstr "" -#: src/Console/PostUpdate.php:105 +#: src/Console/PostUpdate.php:91 msgid "All pending post updates are done." msgstr "" -#: src/Console/User.php:158 src/Console/User.php:246 +#: src/Console/User.php:144 src/Console/User.php:232 msgid "Enter user nickname: " msgstr "" -#: src/Console/User.php:182 src/Model/User.php:819 -#: src/Module/Api/Twitter/ContactEndpoint.php:74 -#: src/Module/Moderation/Users/Active.php:71 -#: src/Module/Moderation/Users/Blocked.php:71 -#: src/Module/Moderation/Users/Index.php:78 -#: src/Module/Moderation/Users/Pending.php:67 +#: src/Console/User.php:168 src/Model/User.php:831 +#: src/Module/Api/Twitter/ContactEndpoint.php:60 +#: src/Module/Moderation/Users/Active.php:57 +#: src/Module/Moderation/Users/Blocked.php:57 +#: src/Module/Moderation/Users/Index.php:64 +#: src/Module/Moderation/Users/Pending.php:53 msgid "User not found" msgstr "" -#: src/Console/User.php:202 +#: src/Console/User.php:188 msgid "Enter new password: " msgstr "" -#: src/Console/User.php:210 src/Module/Security/PasswordTooLong.php:69 -#: src/Module/Settings/Account.php:75 +#: src/Console/User.php:196 src/Module/Security/PasswordTooLong.php:55 +#: src/Module/Settings/Account.php:61 msgid "Password update failed. Please try again." msgstr "Парола актуализация се провали. Моля, опитайте отново." -#: src/Console/User.php:213 src/Module/Security/PasswordTooLong.php:72 -#: src/Module/Settings/Account.php:78 +#: src/Console/User.php:199 src/Module/Security/PasswordTooLong.php:58 +#: src/Module/Settings/Account.php:64 msgid "Password changed." msgstr "Парола промени." -#: src/Console/User.php:238 +#: src/Console/User.php:224 msgid "Enter user name: " msgstr "" -#: src/Console/User.php:254 +#: src/Console/User.php:240 msgid "Enter user email address: " msgstr "" -#: src/Console/User.php:262 +#: src/Console/User.php:248 msgid "Enter a language (optional): " msgstr "" -#: src/Console/User.php:267 +#: src/Console/User.php:253 msgid "Enter URL of an image to use as avatar (optional): " msgstr "" -#: src/Console/User.php:292 +#: src/Console/User.php:278 msgid "User is not pending." msgstr "" -#: src/Console/User.php:324 +#: src/Console/User.php:310 msgid "User has already been marked for deletion." msgstr "" -#: src/Console/User.php:329 +#: src/Console/User.php:315 #, php-format msgid "Type \"yes\" to delete %s" msgstr "" -#: src/Console/User.php:331 +#: src/Console/User.php:317 msgid "Deletion aborted." msgstr "" -#: src/Console/User.php:456 +#: src/Console/User.php:442 msgid "Enter category: " msgstr "" -#: src/Console/User.php:466 +#: src/Console/User.php:452 msgid "Enter key: " msgstr "" -#: src/Console/User.php:500 +#: src/Console/User.php:486 msgid "Enter value: " msgstr "" -#: src/Content/BoundariesPager.php:116 src/Content/Pager.php:171 +#: src/Content/BoundariesPager.php:102 src/Content/Pager.php:157 msgid "newer" msgstr "" -#: src/Content/BoundariesPager.php:124 src/Content/Pager.php:176 +#: src/Content/BoundariesPager.php:110 src/Content/Pager.php:162 msgid "older" msgstr "" -#: src/Content/ContactSelector.php:51 +#: src/Content/ContactSelector.php:37 msgid "Frequently" msgstr "" -#: src/Content/ContactSelector.php:52 +#: src/Content/ContactSelector.php:38 msgid "Hourly" msgstr "" -#: src/Content/ContactSelector.php:53 +#: src/Content/ContactSelector.php:39 msgid "Twice daily" msgstr "" -#: src/Content/ContactSelector.php:54 +#: src/Content/ContactSelector.php:40 msgid "Daily" msgstr "" -#: src/Content/ContactSelector.php:55 +#: src/Content/ContactSelector.php:41 msgid "Weekly" msgstr "" -#: src/Content/ContactSelector.php:56 +#: src/Content/ContactSelector.php:42 msgid "Monthly" msgstr "" -#: src/Content/ContactSelector.php:126 +#: src/Content/ContactSelector.php:112 msgid "DFRN" msgstr "" -#: src/Content/ContactSelector.php:127 +#: src/Content/ContactSelector.php:113 msgid "OStatus" msgstr "" -#: src/Content/ContactSelector.php:128 +#: src/Content/ContactSelector.php:114 msgid "RSS/Atom" msgstr "" -#: src/Content/ContactSelector.php:129 -#: src/Module/Moderation/Users/Active.php:126 -#: src/Module/Moderation/Users/Blocked.php:126 -#: src/Module/Moderation/Users/Create.php:72 -#: src/Module/Moderation/Users/Deleted.php:83 -#: src/Module/Moderation/Users/Index.php:140 -#: src/Module/Moderation/Users/Index.php:160 -#: src/Module/Moderation/Users/Pending.php:99 +#: src/Content/ContactSelector.php:115 +#: src/Module/Moderation/Users/Active.php:112 +#: src/Module/Moderation/Users/Blocked.php:112 +#: src/Module/Moderation/Users/Create.php:58 +#: src/Module/Moderation/Users/Deleted.php:69 +#: src/Module/Moderation/Users/Index.php:126 +#: src/Module/Moderation/Users/Index.php:146 +#: src/Module/Moderation/Users/Pending.php:85 msgid "Email" msgstr "Е-поща" -#: src/Content/ContactSelector.php:130 src/Module/Debug/Babel.php:309 +#: src/Content/ContactSelector.php:116 src/Module/Debug/Babel.php:301 msgid "Diaspora" msgstr "Диаспора" -#: src/Content/ContactSelector.php:131 +#: src/Content/ContactSelector.php:117 msgid "Zot!" msgstr "" -#: src/Content/ContactSelector.php:132 +#: src/Content/ContactSelector.php:118 msgid "LinkedIn" msgstr "" -#: src/Content/ContactSelector.php:133 +#: src/Content/ContactSelector.php:119 msgid "XMPP/IM" msgstr "" -#: src/Content/ContactSelector.php:134 +#: src/Content/ContactSelector.php:120 msgid "MySpace" msgstr "" -#: src/Content/ContactSelector.php:135 +#: src/Content/ContactSelector.php:121 msgid "Google+" msgstr "" -#: src/Content/ContactSelector.php:136 +#: src/Content/ContactSelector.php:122 msgid "pump.io" msgstr "" -#: src/Content/ContactSelector.php:137 +#: src/Content/ContactSelector.php:123 msgid "Twitter" msgstr "" -#: src/Content/ContactSelector.php:138 +#: src/Content/ContactSelector.php:124 msgid "Discourse" msgstr "" -#: src/Content/ContactSelector.php:139 +#: src/Content/ContactSelector.php:125 msgid "Diaspora Connector" msgstr "" -#: src/Content/ContactSelector.php:140 +#: src/Content/ContactSelector.php:126 msgid "GNU Social Connector" msgstr "" -#: src/Content/ContactSelector.php:141 +#: src/Content/ContactSelector.php:127 msgid "ActivityPub" msgstr "" -#: src/Content/ContactSelector.php:142 +#: src/Content/ContactSelector.php:128 msgid "pnut" msgstr "" -#: src/Content/ContactSelector.php:143 +#: src/Content/ContactSelector.php:129 msgid "Tumblr" msgstr "" -#: src/Content/ContactSelector.php:144 +#: src/Content/ContactSelector.php:130 msgid "Bluesky" msgstr "" -#: src/Content/ContactSelector.php:180 +#: src/Content/ContactSelector.php:166 #, php-format msgid "%s (via %s)" msgstr "" -#: src/Content/Conversation.php:226 +#: src/Content/Conversation.php:212 msgid "and" msgstr "и" -#: src/Content/Conversation.php:229 +#: src/Content/Conversation.php:215 #, php-format msgid "and %d other people" msgstr "" -#: src/Content/Conversation.php:235 +#: src/Content/Conversation.php:221 #, php-format msgid "%2$s likes this." msgid_plural "%2$s like this." msgstr[0] "" msgstr[1] "" -#: src/Content/Conversation.php:237 +#: src/Content/Conversation.php:223 #, php-format msgid "%2$s doesn't like this." msgid_plural "%2$s don't like this." msgstr[0] "" msgstr[1] "" -#: src/Content/Conversation.php:239 +#: src/Content/Conversation.php:225 #, php-format msgid "%2$s attends." msgid_plural "%2$s attend." msgstr[0] "" msgstr[1] "" -#: src/Content/Conversation.php:241 +#: src/Content/Conversation.php:227 #, php-format msgid "%2$s doesn't attend." msgid_plural "%2$s don't attend." msgstr[0] "" msgstr[1] "" -#: src/Content/Conversation.php:243 +#: src/Content/Conversation.php:229 #, php-format msgid "%2$s attends maybe." msgid_plural "%2$s attend maybe." msgstr[0] "" msgstr[1] "" -#: src/Content/Conversation.php:245 +#: src/Content/Conversation.php:231 #, php-format msgid "%2$s reshared this." msgid_plural "%2$s reshared this." msgstr[0] "" msgstr[1] "" -#: src/Content/Conversation.php:276 +#: src/Content/Conversation.php:262 #, php-format msgid " likes this" msgid_plural " like this" msgstr[0] "" msgstr[1] "" -#: src/Content/Conversation.php:279 +#: src/Content/Conversation.php:265 #, php-format msgid " doesn't like this" msgid_plural " don't like this" msgstr[0] "" msgstr[1] "" -#: src/Content/Conversation.php:282 +#: src/Content/Conversation.php:268 #, php-format msgid " attends" msgid_plural " attend" msgstr[0] "" msgstr[1] "" -#: src/Content/Conversation.php:285 +#: src/Content/Conversation.php:271 #, php-format msgid " doesn't attend" msgid_plural " don't attend" msgstr[0] "" msgstr[1] "" -#: src/Content/Conversation.php:288 +#: src/Content/Conversation.php:274 #, php-format msgid " attends maybe" msgid_plural " attend maybe" msgstr[0] "" msgstr[1] "" -#: src/Content/Conversation.php:291 +#: src/Content/Conversation.php:277 #, php-format msgid " reshared this" msgid_plural " reshared this" msgstr[0] "" msgstr[1] "" -#: src/Content/Conversation.php:338 +#: src/Content/Conversation.php:323 msgid "Visible to everybody" msgstr "Видим всички " -#: src/Content/Conversation.php:339 src/Module/Item/Compose.php:200 -#: src/Object/Post.php:1166 +#: src/Content/Conversation.php:324 src/Module/Item/Compose.php:193 +#: src/Object/Post.php:1157 msgid "Please enter a image/video/audio/webpage URL:" msgstr "" -#: src/Content/Conversation.php:340 +#: src/Content/Conversation.php:325 msgid "Tag term:" msgstr "Tag термин:" -#: src/Content/Conversation.php:341 src/Module/Filer/SaveTag.php:73 +#: src/Content/Conversation.php:326 src/Module/Filer/SaveTag.php:59 msgid "Save to Folder:" msgstr "Запиши в папка:" -#: src/Content/Conversation.php:342 +#: src/Content/Conversation.php:327 msgid "Where are you right now?" msgstr "Къде сте в момента?" -#: src/Content/Conversation.php:343 +#: src/Content/Conversation.php:328 msgid "Delete item(s)?" msgstr "" -#: src/Content/Conversation.php:355 src/Module/Item/Compose.php:175 +#: src/Content/Conversation.php:340 src/Module/Item/Compose.php:168 msgid "Created at" msgstr "" -#: src/Content/Conversation.php:365 +#: src/Content/Conversation.php:350 msgid "New Post" msgstr "Нов пост" -#: src/Content/Conversation.php:368 +#: src/Content/Conversation.php:353 msgid "Share" msgstr "Споделяне" -#: src/Content/Conversation.php:371 src/Module/Post/Edit.php:132 +#: src/Content/Conversation.php:356 src/Module/Post/Edit.php:118 msgid "upload photo" msgstr "качване на снимка" -#: src/Content/Conversation.php:372 src/Module/Post/Edit.php:133 +#: src/Content/Conversation.php:357 src/Module/Post/Edit.php:119 msgid "Attach file" msgstr "Прикачване на файл" -#: src/Content/Conversation.php:373 src/Module/Post/Edit.php:134 +#: src/Content/Conversation.php:358 src/Module/Post/Edit.php:120 msgid "attach file" msgstr "Прикачване на файл" -#: src/Content/Conversation.php:374 src/Module/Item/Compose.php:190 -#: src/Module/Post/Edit.php:171 src/Object/Post.php:1156 +#: src/Content/Conversation.php:359 src/Module/Item/Compose.php:183 +#: src/Module/Post/Edit.php:157 src/Object/Post.php:1147 msgid "Bold" msgstr "Получер" -#: src/Content/Conversation.php:375 src/Module/Item/Compose.php:191 -#: src/Module/Post/Edit.php:172 src/Object/Post.php:1157 +#: src/Content/Conversation.php:360 src/Module/Item/Compose.php:184 +#: src/Module/Post/Edit.php:158 src/Object/Post.php:1148 msgid "Italic" msgstr "Курсив" -#: src/Content/Conversation.php:376 src/Module/Item/Compose.php:192 -#: src/Module/Post/Edit.php:173 src/Object/Post.php:1158 +#: src/Content/Conversation.php:361 src/Module/Item/Compose.php:185 +#: src/Module/Post/Edit.php:159 src/Object/Post.php:1149 msgid "Underline" msgstr "Подчертан" -#: src/Content/Conversation.php:377 src/Module/Item/Compose.php:193 -#: src/Module/Post/Edit.php:174 src/Object/Post.php:1160 +#: src/Content/Conversation.php:362 src/Module/Item/Compose.php:186 +#: src/Module/Post/Edit.php:160 src/Object/Post.php:1151 msgid "Quote" msgstr "Цитат" -#: src/Content/Conversation.php:378 src/Module/Item/Compose.php:194 -#: src/Module/Post/Edit.php:175 src/Object/Post.php:1161 +#: src/Content/Conversation.php:363 src/Module/Item/Compose.php:187 +#: src/Module/Post/Edit.php:161 src/Object/Post.php:1152 msgid "Add emojis" msgstr "" -#: src/Content/Conversation.php:379 src/Module/Item/Compose.php:195 -#: src/Object/Post.php:1159 +#: src/Content/Conversation.php:364 src/Module/Item/Compose.php:188 +#: src/Object/Post.php:1150 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:1162 +#: src/Content/Conversation.php:365 src/Module/Item/Compose.php:189 +#: src/Module/Post/Edit.php:162 src/Object/Post.php:1153 msgid "Code" msgstr "Код" -#: src/Content/Conversation.php:381 src/Module/Item/Compose.php:197 -#: src/Object/Post.php:1163 +#: src/Content/Conversation.php:366 src/Module/Item/Compose.php:190 +#: src/Object/Post.php:1154 msgid "Image" msgstr "Изображение" -#: src/Content/Conversation.php:382 src/Module/Item/Compose.php:198 -#: src/Module/Post/Edit.php:177 src/Object/Post.php:1164 +#: src/Content/Conversation.php:367 src/Module/Item/Compose.php:191 +#: src/Module/Post/Edit.php:163 src/Object/Post.php:1155 msgid "Link" msgstr "Връзка" -#: src/Content/Conversation.php:383 src/Module/Item/Compose.php:199 -#: src/Module/Post/Edit.php:178 src/Object/Post.php:1165 +#: src/Content/Conversation.php:368 src/Module/Item/Compose.php:192 +#: src/Module/Post/Edit.php:164 src/Object/Post.php:1156 msgid "Link or Media" msgstr "" -#: src/Content/Conversation.php:384 +#: src/Content/Conversation.php:369 msgid "Video" msgstr "" -#: src/Content/Conversation.php:385 src/Module/Item/Compose.php:202 -#: src/Module/Post/Edit.php:141 +#: src/Content/Conversation.php:370 src/Module/Item/Compose.php:195 +#: src/Module/Post/Edit.php:127 msgid "Set your location" msgstr "Задайте местоположението си" -#: src/Content/Conversation.php:386 src/Module/Post/Edit.php:142 +#: src/Content/Conversation.php:371 src/Module/Post/Edit.php:128 msgid "set location" msgstr "Задаване на местоположението" -#: src/Content/Conversation.php:387 src/Module/Post/Edit.php:143 +#: src/Content/Conversation.php:372 src/Module/Post/Edit.php:129 msgid "Clear browser location" msgstr "Изчистване на браузъра място" -#: src/Content/Conversation.php:388 src/Module/Post/Edit.php:144 +#: src/Content/Conversation.php:373 src/Module/Post/Edit.php:130 msgid "clear location" msgstr "ясно място" -#: src/Content/Conversation.php:390 src/Module/Item/Compose.php:207 -#: src/Module/Post/Edit.php:157 +#: src/Content/Conversation.php:375 src/Module/Item/Compose.php:200 +#: src/Module/Post/Edit.php:143 msgid "Set title" msgstr "Задайте заглавие" -#: src/Content/Conversation.php:392 src/Module/Item/Compose.php:208 -#: src/Module/Post/Edit.php:159 +#: src/Content/Conversation.php:377 src/Module/Item/Compose.php:201 +#: src/Module/Post/Edit.php:145 msgid "Categories (comma-separated list)" msgstr "Категории (разделен със запетаи списък)" -#: src/Content/Conversation.php:397 src/Module/Item/Compose.php:224 +#: src/Content/Conversation.php:382 src/Module/Item/Compose.php:217 msgid "Scheduled at" msgstr "" -#: src/Content/Conversation.php:402 src/Module/Post/Edit.php:146 +#: src/Content/Conversation.php:387 src/Module/Post/Edit.php:132 msgid "Permission settings" msgstr "Настройките за достъп" -#: src/Content/Conversation.php:412 src/Module/Post/Edit.php:155 +#: src/Content/Conversation.php:396 src/Module/Post/Edit.php:141 msgid "Public post" msgstr "Обществена длъжност" -#: src/Content/Conversation.php:426 src/Content/Widget/VCard.php:130 -#: src/Model/Profile.php:483 src/Module/Admin/Logs/View.php:92 -#: src/Module/Post/Edit.php:181 +#: src/Content/Conversation.php:410 src/Content/Widget/VCard.php:117 +#: src/Model/Profile.php:462 src/Module/Admin/Logs/View.php:80 +#: src/Module/Post/Edit.php:167 msgid "Message" msgstr "Съобщение" -#: src/Content/Conversation.php:427 src/Module/Post/Edit.php:182 -#: src/Module/Settings/TwoFactor/Trusted.php:143 +#: src/Content/Conversation.php:411 src/Module/Post/Edit.php:168 +#: src/Module/Settings/TwoFactor/Trusted.php:129 msgid "Browser" msgstr "Браузър" -#: src/Content/Conversation.php:429 src/Module/Post/Edit.php:185 +#: src/Content/Conversation.php:413 src/Module/Post/Edit.php:171 msgid "Open Compose page" msgstr "" -#: src/Content/Conversation.php:597 +#: src/Content/Conversation.php:580 msgid "remove" msgstr "Премахване" -#: src/Content/Conversation.php:601 +#: src/Content/Conversation.php:584 msgid "Delete Selected Items" msgstr "Изтриване на избраните елементи" -#: 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 +#: src/Content/Conversation.php:712 src/Content/Conversation.php:715 +#: src/Content/Conversation.php:718 src/Content/Conversation.php:721 +#: src/Content/Conversation.php:724 #, php-format msgid "You had been addressed (%s)." msgstr "" -#: src/Content/Conversation.php:744 +#: src/Content/Conversation.php:727 #, php-format msgid "You are following %s." msgstr "" -#: src/Content/Conversation.php:749 +#: src/Content/Conversation.php:732 #, php-format msgid "You subscribed to %s." msgstr "" -#: src/Content/Conversation.php:751 +#: src/Content/Conversation.php:734 msgid "You subscribed to one or more tags in this post." msgstr "" -#: src/Content/Conversation.php:771 +#: src/Content/Conversation.php:754 #, php-format msgid "%s reshared this." msgstr "" -#: src/Content/Conversation.php:773 +#: src/Content/Conversation.php:756 msgid "Reshared" msgstr "" -#: src/Content/Conversation.php:773 +#: src/Content/Conversation.php:756 #, php-format msgid "Reshared by %s <%s>" msgstr "" -#: src/Content/Conversation.php:776 +#: src/Content/Conversation.php:759 #, php-format msgid "%s is participating in this thread." msgstr "" -#: src/Content/Conversation.php:779 +#: src/Content/Conversation.php:762 msgid "Stored for general reasons" msgstr "" -#: src/Content/Conversation.php:782 +#: src/Content/Conversation.php:765 msgid "Global post" msgstr "" -#: src/Content/Conversation.php:785 +#: src/Content/Conversation.php:768 msgid "Sent via an relay server" msgstr "" -#: src/Content/Conversation.php:785 +#: src/Content/Conversation.php:768 #, php-format msgid "Sent via the relay server %s <%s>" msgstr "" -#: src/Content/Conversation.php:788 +#: src/Content/Conversation.php:771 msgid "Fetched" msgstr "" -#: src/Content/Conversation.php:788 +#: src/Content/Conversation.php:771 #, php-format msgid "Fetched because of %s <%s>" msgstr "" -#: src/Content/Conversation.php:791 +#: src/Content/Conversation.php:774 msgid "Stored because of a child post to complete this thread." msgstr "" -#: src/Content/Conversation.php:794 +#: src/Content/Conversation.php:777 msgid "Local delivery" msgstr "" -#: src/Content/Conversation.php:797 +#: src/Content/Conversation.php:780 msgid "Stored because of your activity (like, comment, star, ...)" msgstr "" -#: src/Content/Conversation.php:800 +#: src/Content/Conversation.php:783 msgid "Distributed" msgstr "" -#: src/Content/Conversation.php:803 +#: src/Content/Conversation.php:786 msgid "Pushed to us" msgstr "" -#: src/Content/Conversation.php:1529 src/Object/Post.php:248 +#: src/Content/Conversation.php:1504 src/Object/Post.php:247 msgid "Pinned item" msgstr "" -#: src/Content/Conversation.php:1546 src/Object/Post.php:548 -#: src/Object/Post.php:549 +#: src/Content/Conversation.php:1521 src/Object/Post.php:541 +#: src/Object/Post.php:542 #, php-format msgid "View %s's profile @ %s" msgstr "Преглед профила на %s в %s" -#: src/Content/Conversation.php:1559 src/Object/Post.php:536 +#: src/Content/Conversation.php:1535 src/Object/Post.php:529 msgid "Categories:" msgstr "Категории:" -#: src/Content/Conversation.php:1560 src/Object/Post.php:537 +#: src/Content/Conversation.php:1536 src/Object/Post.php:530 msgid "Filed under:" msgstr "Записано в:" -#: src/Content/Conversation.php:1568 src/Object/Post.php:562 +#: src/Content/Conversation.php:1544 src/Object/Post.php:556 #, php-format msgid "%s from %s" msgstr "%s от %s" -#: src/Content/Conversation.php:1584 +#: src/Content/Conversation.php:1560 msgid "View in context" msgstr "Поглед в контекста" -#: src/Content/Conversation/Factory/Channel.php:42 +#: src/Content/Conversation/Factory/Channel.php:28 msgid "For you" msgstr "" -#: src/Content/Conversation/Factory/Channel.php:42 +#: src/Content/Conversation/Factory/Channel.php:28 msgid "Posts from contacts you interact with and who interact with you" msgstr "" -#: src/Content/Conversation/Factory/Channel.php:43 +#: src/Content/Conversation/Factory/Channel.php:29 msgid "Discover" msgstr "" -#: src/Content/Conversation/Factory/Channel.php:43 +#: src/Content/Conversation/Factory/Channel.php:29 msgid "Posts from accounts that you don't follow, but that you might like." msgstr "" -#: src/Content/Conversation/Factory/Channel.php:44 +#: src/Content/Conversation/Factory/Channel.php:30 msgid "What's Hot" msgstr "" -#: src/Content/Conversation/Factory/Channel.php:44 +#: src/Content/Conversation/Factory/Channel.php:30 msgid "Posts with a lot of interactions" msgstr "" -#: src/Content/Conversation/Factory/Channel.php:45 +#: src/Content/Conversation/Factory/Channel.php:31 #, php-format msgid "Posts in %s" msgstr "" -#: src/Content/Conversation/Factory/Channel.php:46 +#: src/Content/Conversation/Factory/Channel.php:32 msgid "Posts from your followers that you don't follow" msgstr "" -#: src/Content/Conversation/Factory/Channel.php:47 +#: src/Content/Conversation/Factory/Channel.php:33 msgid "Sharers of sharers" msgstr "" -#: src/Content/Conversation/Factory/Channel.php:47 +#: src/Content/Conversation/Factory/Channel.php:33 msgid "Posts from accounts that are followed by accounts that you follow" msgstr "" -#: src/Content/Conversation/Factory/Channel.php:48 +#: src/Content/Conversation/Factory/Channel.php:34 msgid "Quiet sharers" msgstr "" -#: src/Content/Conversation/Factory/Channel.php:48 +#: src/Content/Conversation/Factory/Channel.php:34 msgid "Posts from accounts that you follow but who don't post very often" msgstr "" -#: src/Content/Conversation/Factory/Channel.php:49 -#: src/Module/Settings/Channels.php:193 src/Module/Settings/Channels.php:214 +#: src/Content/Conversation/Factory/Channel.php:35 +#: src/Module/Settings/Channels.php:185 src/Module/Settings/Channels.php:206 msgid "Images" msgstr "" -#: src/Content/Conversation/Factory/Channel.php:49 +#: src/Content/Conversation/Factory/Channel.php:35 msgid "Posts with images" msgstr "" -#: src/Content/Conversation/Factory/Channel.php:50 -#: src/Module/Settings/Channels.php:195 src/Module/Settings/Channels.php:216 +#: src/Content/Conversation/Factory/Channel.php:36 +#: src/Module/Settings/Channels.php:187 src/Module/Settings/Channels.php:208 msgid "Audio" msgstr "" -#: src/Content/Conversation/Factory/Channel.php:50 +#: src/Content/Conversation/Factory/Channel.php:36 msgid "Posts with audio" msgstr "" -#: src/Content/Conversation/Factory/Channel.php:51 -#: src/Module/Settings/Channels.php:194 src/Module/Settings/Channels.php:215 +#: src/Content/Conversation/Factory/Channel.php:37 +#: src/Module/Settings/Channels.php:186 src/Module/Settings/Channels.php:207 msgid "Videos" msgstr "" -#: src/Content/Conversation/Factory/Channel.php:51 +#: src/Content/Conversation/Factory/Channel.php:37 msgid "Posts with videos" msgstr "" -#: src/Content/Conversation/Factory/Community.php:43 +#: src/Content/Conversation/Factory/Community.php:29 msgid "Local Community" msgstr "" -#: src/Content/Conversation/Factory/Community.php:43 +#: src/Content/Conversation/Factory/Community.php:29 msgid "Posts from local users on this server" msgstr "" -#: src/Content/Conversation/Factory/Community.php:47 -#: src/Module/Settings/Channels.php:144 src/Module/Settings/Channels.php:149 +#: src/Content/Conversation/Factory/Community.php:33 +#: src/Module/Settings/Channels.php:136 src/Module/Settings/Channels.php:141 msgid "Global Community" msgstr "" -#: src/Content/Conversation/Factory/Community.php:47 +#: src/Content/Conversation/Factory/Community.php:33 msgid "Posts from users of the whole federated network" msgstr "" -#: src/Content/Conversation/Factory/Network.php:38 -#: src/Module/Settings/Channels.php:150 +#: src/Content/Conversation/Factory/Network.php:24 +#: src/Module/Settings/Channels.php:142 msgid "Latest Activity" msgstr "" -#: src/Content/Conversation/Factory/Network.php:38 +#: src/Content/Conversation/Factory/Network.php:24 msgid "Sort by latest activity" msgstr "" -#: src/Content/Conversation/Factory/Network.php:39 -#: src/Module/Settings/Channels.php:151 +#: src/Content/Conversation/Factory/Network.php:25 +#: src/Module/Settings/Channels.php:143 msgid "Latest Posts" msgstr "" -#: src/Content/Conversation/Factory/Network.php:39 +#: src/Content/Conversation/Factory/Network.php:25 msgid "Sort by post received date" msgstr "" -#: src/Content/Conversation/Factory/Network.php:40 -#: src/Module/Settings/Channels.php:152 +#: src/Content/Conversation/Factory/Network.php:26 +#: src/Module/Settings/Channels.php:144 msgid "Latest Creation" msgstr "" -#: src/Content/Conversation/Factory/Network.php:40 +#: src/Content/Conversation/Factory/Network.php:26 msgid "Sort by post creation date" msgstr "" -#: src/Content/Conversation/Factory/Network.php:41 -#: src/Module/Settings/Profile/Index.php:260 +#: src/Content/Conversation/Factory/Network.php:27 +#: src/Module/Settings/Profile/Index.php:251 msgid "Personal" msgstr "Лично" -#: src/Content/Conversation/Factory/Network.php:41 +#: src/Content/Conversation/Factory/Network.php:27 msgid "Posts that mention or involve you" msgstr "Мнения, които споменават или включват" -#: src/Content/Conversation/Factory/Network.php:42 src/Object/Post.php:398 +#: src/Content/Conversation/Factory/Network.php:28 src/Object/Post.php:397 msgid "Starred" msgstr "Със звезда" -#: src/Content/Conversation/Factory/Network.php:42 +#: src/Content/Conversation/Factory/Network.php:28 msgid "Favourite Posts" msgstr "Любими Мнения" -#: src/Content/Feature.php:96 +#: src/Content/Feature.php:93 msgid "General Features" msgstr "" -#: src/Content/Feature.php:98 +#: src/Content/Feature.php:95 msgid "Photo Location" msgstr "" -#: src/Content/Feature.php:98 +#: src/Content/Feature.php:95 msgid "" "Photo metadata is normally stripped. This extracts the location (if present)" " prior to stripping metadata and links it to a map." msgstr "" -#: src/Content/Feature.php:99 -msgid "Trending Tags" +#: src/Content/Feature.php:96 +msgid "Display the community in the navigation" msgstr "" -#: src/Content/Feature.php:99 +#: src/Content/Feature.php:96 msgid "" -"Show a community page widget with a list of the most popular tags in recent " -"public posts." +"If enabled, the community can be accessed via the navigation menu. " +"Independent from this setting, the community timelines can always be " +"accessed via the channels." msgstr "" -#: src/Content/Feature.php:104 +#: src/Content/Feature.php:101 msgid "Post Composition Features" msgstr "" -#: src/Content/Feature.php:105 -msgid "Auto-mention Groups" -msgstr "" - -#: src/Content/Feature.php:105 -msgid "" -"Add/remove mention when a group page is selected/deselected in ACL window." -msgstr "" - -#: src/Content/Feature.php:106 +#: src/Content/Feature.php:102 msgid "Explicit Mentions" msgstr "" -#: src/Content/Feature.php:106 +#: src/Content/Feature.php:102 msgid "" "Add explicit mentions to comment box for manual control over who gets " "mentioned in replies." msgstr "" -#: src/Content/Feature.php:107 +#: src/Content/Feature.php:103 msgid "Add an abstract from ActivityPub content warnings" msgstr "" -#: src/Content/Feature.php:107 +#: src/Content/Feature.php:103 msgid "" "Add an abstract when commenting on ActivityPub posts with a content warning." " Abstracts are displayed as content warning on systems like Mastodon or " "Pleroma." msgstr "" -#: src/Content/Feature.php:112 +#: src/Content/Feature.php:108 msgid "Post/Comment Tools" msgstr "" -#: src/Content/Feature.php:113 +#: src/Content/Feature.php:109 msgid "Post Categories" msgstr "" -#: src/Content/Feature.php:113 +#: src/Content/Feature.php:109 msgid "Add categories to your posts" msgstr "" +#: src/Content/Feature.php:114 +msgid "Network Widgets" +msgstr "" + +#: src/Content/Feature.php:115 src/Content/Widget.php:194 +#: src/Model/Circle.php:587 src/Module/Contact.php:381 +#: src/Module/Welcome.php:62 +msgid "Circles" +msgstr "" + +#: src/Content/Feature.php:115 +msgid "" +"Display posts that have been created by accounts of the selected circle." +msgstr "" + +#: src/Content/Feature.php:116 src/Content/GroupManager.php:133 +#: src/Content/Nav.php:264 src/Content/Text/HTML.php:868 +#: src/Content/Widget.php:516 src/Model/User.php:1390 +msgid "Groups" +msgstr "" + +#: src/Content/Feature.php:116 +msgid "Display posts that have been distributed by the selected group." +msgstr "" + +#: src/Content/Feature.php:117 src/Content/Widget.php:485 +msgid "Archives" +msgstr "Архиви" + +#: src/Content/Feature.php:117 +msgid "Display an archive where posts can be selected by month and year." +msgstr "" + +#: src/Content/Feature.php:118 src/Content/Widget.php:267 +msgid "Protocols" +msgstr "" + #: src/Content/Feature.php:118 +msgid "Display posts with the selected protocols." +msgstr "" + +#: src/Content/Feature.php:119 src/Content/Widget.php:522 +#: src/Module/Settings/Account.php:433 +msgid "Account Types" +msgstr "" + +#: src/Content/Feature.php:119 +msgid "Display posts done by accounts with the selected account type." +msgstr "" + +#: src/Content/Feature.php:120 src/Content/Widget.php:571 +#: src/Module/Admin/Site.php:464 src/Module/BaseSettings.php:111 +#: src/Module/Settings/Channels.php:211 src/Module/Settings/Display.php:301 +msgid "Channels" +msgstr "" + +#: src/Content/Feature.php:120 +msgid "Display posts in the system channels and user defined channels." +msgstr "" + +#: src/Content/Feature.php:121 src/Content/Widget/SavedSearches.php:46 +msgid "Saved Searches" +msgstr "Запазени търсения" + +#: src/Content/Feature.php:121 +msgid "Display posts that contain subscribed hashtags." +msgstr "" + +#: src/Content/Feature.php:122 src/Content/Widget.php:297 +msgid "Saved Folders" +msgstr "Записани папки" + +#: src/Content/Feature.php:122 +msgid "Display a list of folders in which posts are stored." +msgstr "" + +#: src/Content/Feature.php:123 src/Module/Conversation/Timeline.php:186 +msgid "Own Contacts" +msgstr "" + +#: src/Content/Feature.php:123 +msgid "" +"Include or exclude posts from subscribed accounts. This widget is not " +"visible on all channels." +msgstr "" + +#: src/Content/Feature.php:124 +msgid "Trending Tags" +msgstr "" + +#: src/Content/Feature.php:124 +msgid "Display a list of the most popular tags in recent public posts." +msgstr "" + +#: src/Content/Feature.php:129 msgid "Advanced Profile Settings" msgstr "" -#: src/Content/Feature.php:119 -msgid "List Groups" -msgstr "" - -#: src/Content/Feature.php:119 -msgid "Show visitors public groups at the Advanced Profile Page" -msgstr "" - -#: src/Content/Feature.php:120 +#: src/Content/Feature.php:130 msgid "Tag Cloud" msgstr "" -#: src/Content/Feature.php:120 +#: src/Content/Feature.php:130 msgid "Provide a personal tag cloud on your profile page" msgstr "" -#: src/Content/Feature.php:121 +#: src/Content/Feature.php:131 msgid "Display Membership Date" msgstr "" -#: src/Content/Feature.php:121 +#: src/Content/Feature.php:131 msgid "Display membership date in profile" msgstr "" -#: src/Content/Feature.php:126 +#: src/Content/Feature.php:136 msgid "Advanced Calendar Settings" msgstr "" -#: src/Content/Feature.php:127 +#: src/Content/Feature.php:137 msgid "Allow anonymous access to your calendar" msgstr "" -#: src/Content/Feature.php:127 +#: src/Content/Feature.php:137 msgid "" "Allows anonymous visitors to consult your calendar and your public events. " "Contact birthday events are private to you." msgstr "" -#: src/Content/GroupManager.php:147 src/Content/Nav.php:278 -#: src/Content/Text/HTML.php:881 src/Content/Widget.php:538 -#: src/Model/User.php:1381 -msgid "Groups" -msgstr "" - -#: src/Content/GroupManager.php:149 +#: src/Content/GroupManager.php:135 msgid "External link to group" msgstr "" -#: src/Content/GroupManager.php:153 src/Content/Widget.php:513 +#: src/Content/GroupManager.php:139 src/Content/Widget.php:491 msgid "show less" msgstr "" -#: src/Content/GroupManager.php:154 src/Content/Widget.php:411 -#: src/Content/Widget.php:514 +#: src/Content/GroupManager.php:140 src/Content/Widget.php:389 +#: src/Content/Widget.php:492 msgid "show more" msgstr "покажи още" -#: src/Content/GroupManager.php:155 +#: src/Content/GroupManager.php:141 msgid "Create new group" msgstr "" -#: src/Content/Item.php:332 src/Model/Item.php:3254 +#: src/Content/Item.php:317 src/Model/Item.php:3272 msgid "event" msgstr "събитието." -#: src/Content/Item.php:335 src/Content/Item.php:345 +#: src/Content/Item.php:320 src/Content/Item.php:330 msgid "status" msgstr "статус" -#: src/Content/Item.php:341 src/Model/Item.php:3256 -#: src/Module/Post/Tag/Add.php:123 +#: src/Content/Item.php:326 src/Model/Item.php:3274 +#: src/Module/Post/Tag/Add.php:109 msgid "photo" msgstr "снимка" -#: src/Content/Item.php:355 src/Module/Post/Tag/Add.php:141 +#: src/Content/Item.php:340 src/Module/Post/Tag/Add.php:127 #, php-format msgid "%1$s tagged %2$s's %3$s with %4$s" msgstr "%1$s сложи етикет с %2$s - %3$s %4$s" -#: src/Content/Item.php:429 view/theme/frio/theme.php:265 +#: src/Content/Item.php:414 view/theme/frio/theme.php:253 msgid "Follow Thread" msgstr "" -#: src/Content/Item.php:430 src/Model/Contact.php:1243 +#: src/Content/Item.php:415 src/Model/Contact.php:1249 msgid "View Status" msgstr "Показване на състоянието" -#: src/Content/Item.php:431 src/Content/Item.php:452 -#: 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 +#: src/Content/Item.php:416 src/Content/Item.php:439 +#: src/Model/Contact.php:1184 src/Model/Contact.php:1240 +#: src/Model/Contact.php:1250 src/Module/Directory.php:144 +#: src/Module/Settings/Profile/Index.php:250 msgid "View Profile" msgstr "Преглед на профил" -#: src/Content/Item.php:432 src/Model/Contact.php:1245 +#: src/Content/Item.php:417 src/Model/Contact.php:1251 msgid "View Photos" msgstr "Вижте снимки" -#: src/Content/Item.php:433 src/Model/Contact.php:1212 -#: src/Model/Profile.php:468 +#: src/Content/Item.php:418 src/Model/Contact.php:1218 +#: src/Model/Profile.php:447 msgid "Network Posts" msgstr "Мрежови Мнения" -#: src/Content/Item.php:434 src/Model/Contact.php:1236 -#: src/Model/Contact.php:1247 +#: src/Content/Item.php:419 src/Model/Contact.php:1242 +#: src/Model/Contact.php:1253 msgid "View Contact" msgstr "Преглед на Контакта" -#: src/Content/Item.php:435 src/Model/Contact.php:1248 +#: src/Content/Item.php:420 src/Model/Contact.php:1254 msgid "Send PM" msgstr "Изпратете PM" -#: src/Content/Item.php:436 src/Module/Contact.php:467 -#: src/Module/Contact/Profile.php:511 -#: src/Module/Moderation/Blocklist/Contact.php:116 -#: src/Module/Moderation/Users/Active.php:137 -#: src/Module/Moderation/Users/Index.php:152 +#: src/Content/Item.php:421 src/Module/Contact.php:449 +#: src/Module/Contact/Profile.php:518 +#: src/Module/Moderation/Blocklist/Contact.php:102 +#: src/Module/Moderation/Users/Active.php:123 +#: src/Module/Moderation/Users/Index.php:138 msgid "Block" msgstr "Блокиране" -#: src/Content/Item.php:437 src/Module/Contact.php:468 -#: src/Module/Contact/Profile.php:519 -#: src/Module/Notifications/Introductions.php:134 -#: src/Module/Notifications/Introductions.php:206 -#: src/Module/Notifications/Notification.php:89 +#: src/Content/Item.php:422 src/Module/Contact.php:450 +#: src/Module/Contact/Profile.php:526 +#: src/Module/Notifications/Introductions.php:126 +#: src/Module/Notifications/Introductions.php:198 +#: src/Module/Notifications/Notification.php:75 msgid "Ignore" msgstr "Пренебрегване" -#: src/Content/Item.php:438 src/Module/Contact.php:469 -#: src/Module/Contact/Profile.php:527 +#: src/Content/Item.php:423 src/Module/Contact.php:451 +#: src/Module/Contact/Profile.php:534 msgid "Collapse" msgstr "" -#: src/Content/Item.php:439 src/Object/Post.php:289 +#: src/Content/Item.php:424 src/Object/Post.php:288 #, php-format msgid "Ignore %s server" msgstr "" -#: src/Content/Item.php:443 src/Module/Settings/Channels.php:196 -#: src/Module/Settings/Channels.php:217 src/Object/Post.php:509 +#: src/Content/Item.php:428 src/Module/Settings/Channels.php:188 +#: src/Module/Settings/Channels.php:209 src/Object/Post.php:502 msgid "Languages" msgstr "Езици" -#: src/Content/Item.php:449 src/Content/Widget.php:80 -#: src/Model/Contact.php:1237 src/Model/Contact.php:1249 -#: src/Module/Contact/Follow.php:167 view/theme/vier/theme.php:195 +#: src/Content/Item.php:431 src/Object/Post.php:582 +msgid "Search Text" +msgstr "" + +#: src/Content/Item.php:436 src/Content/Widget.php:66 +#: src/Model/Contact.php:1243 src/Model/Contact.php:1255 +#: src/Module/Contact/Follow.php:148 view/theme/vier/theme.php:183 msgid "Connect/Follow" msgstr "Свържете се / последваща" -#: src/Content/Item.php:883 +#: src/Content/Item.php:870 msgid "Unable to fetch user." msgstr "" -#: src/Content/Nav.php:121 +#: src/Content/Nav.php:107 msgid "Nothing new here" msgstr "Нищо ново тук" -#: src/Content/Nav.php:125 src/Module/Special/HTTPException.php:77 +#: src/Content/Nav.php:111 src/Module/Special/HTTPException.php:63 msgid "Go back" msgstr "" -#: src/Content/Nav.php:126 +#: src/Content/Nav.php:112 msgid "Clear notifications" msgstr "Изчистване на уведомленията" -#: src/Content/Nav.php:127 src/Content/Text/HTML.php:868 +#: src/Content/Nav.php:113 src/Content/Text/HTML.php:855 msgid "@name, !group, #tags, content" msgstr "" -#: src/Content/Nav.php:222 src/Module/Security/Login.php:157 +#: src/Content/Nav.php:208 src/Module/Security/Login.php:147 msgid "Logout" msgstr "изход" -#: src/Content/Nav.php:222 +#: src/Content/Nav.php:208 msgid "End this session" msgstr "Край на тази сесия" -#: src/Content/Nav.php:224 src/Module/Bookmarklet.php:44 -#: src/Module/Security/Login.php:158 +#: src/Content/Nav.php:210 src/Module/Bookmarklet.php:30 +#: src/Module/Security/Login.php:148 msgid "Login" msgstr "Вход" -#: src/Content/Nav.php:224 +#: src/Content/Nav.php:210 msgid "Sign in" msgstr "Вход" -#: src/Content/Nav.php:229 src/Module/BaseProfile.php:57 -#: src/Module/Contact.php:511 +#: src/Content/Nav.php:215 src/Module/BaseProfile.php:43 +#: src/Module/Contact.php:493 msgid "Conversations" msgstr "" -#: src/Content/Nav.php:229 +#: src/Content/Nav.php:215 msgid "Conversations you started" msgstr "" -#: src/Content/Nav.php:230 src/Module/BaseProfile.php:49 -#: src/Module/BaseSettings.php:98 src/Module/Contact.php:503 -#: src/Module/Contact/Profile.php:419 src/Module/Profile/Profile.php:268 -#: src/Module/Welcome.php:57 view/theme/frio/theme.php:233 +#: src/Content/Nav.php:216 src/Module/BaseProfile.php:35 +#: src/Module/BaseSettings.php:84 src/Module/Contact.php:485 +#: src/Module/Contact/Profile.php:425 src/Module/Profile/Profile.php:256 +#: src/Module/Welcome.php:43 view/theme/frio/theme.php:221 msgid "Profile" msgstr "Височина на профила" -#: src/Content/Nav.php:230 view/theme/frio/theme.php:233 +#: src/Content/Nav.php:216 view/theme/frio/theme.php:221 msgid "Your profile page" msgstr "Вашият профил страница" -#: src/Content/Nav.php:231 src/Module/BaseProfile.php:65 -#: src/Module/Media/Photo/Browser.php:74 view/theme/frio/theme.php:237 +#: src/Content/Nav.php:217 src/Module/BaseProfile.php:51 +#: src/Module/Media/Photo/Browser.php:60 view/theme/frio/theme.php:225 msgid "Photos" msgstr "Снимки" -#: src/Content/Nav.php:231 view/theme/frio/theme.php:237 +#: src/Content/Nav.php:217 view/theme/frio/theme.php:225 msgid "Your photos" msgstr "Вашите снимки" -#: src/Content/Nav.php:232 src/Module/BaseProfile.php:73 -#: src/Module/BaseProfile.php:76 src/Module/Contact.php:527 -#: view/theme/frio/theme.php:238 +#: src/Content/Nav.php:218 src/Module/BaseProfile.php:59 +#: src/Module/BaseProfile.php:62 src/Module/Contact.php:509 +#: view/theme/frio/theme.php:226 msgid "Media" msgstr "" -#: src/Content/Nav.php:232 view/theme/frio/theme.php:238 +#: src/Content/Nav.php:218 view/theme/frio/theme.php:226 msgid "Your postings with media" msgstr "" -#: src/Content/Nav.php:233 src/Content/Nav.php:293 -#: src/Module/BaseProfile.php:85 src/Module/BaseProfile.php:88 -#: src/Module/BaseProfile.php:96 src/Module/BaseProfile.php:99 -#: src/Module/Settings/Display.php:319 view/theme/frio/theme.php:239 -#: view/theme/frio/theme.php:243 +#: src/Content/Nav.php:219 src/Content/Nav.php:279 +#: src/Module/BaseProfile.php:71 src/Module/BaseProfile.php:74 +#: src/Module/BaseProfile.php:82 src/Module/BaseProfile.php:85 +#: src/Module/Settings/Display.php:302 view/theme/frio/theme.php:227 +#: view/theme/frio/theme.php:231 msgid "Calendar" msgstr "" -#: src/Content/Nav.php:233 view/theme/frio/theme.php:239 +#: src/Content/Nav.php:219 view/theme/frio/theme.php:227 msgid "Your calendar" msgstr "" -#: src/Content/Nav.php:234 +#: src/Content/Nav.php:220 msgid "Personal notes" msgstr "Личните бележки" -#: src/Content/Nav.php:234 +#: src/Content/Nav.php:220 msgid "Your personal notes" msgstr "" -#: src/Content/Nav.php:251 src/Content/Nav.php:308 +#: src/Content/Nav.php:237 src/Content/Nav.php:294 msgid "Home" msgstr "Начало" -#: src/Content/Nav.php:251 src/Module/Settings/OAuth.php:73 +#: src/Content/Nav.php:237 src/Module/Settings/OAuth.php:59 msgid "Home Page" msgstr "Начална страница" -#: src/Content/Nav.php:255 src/Module/Register.php:168 -#: src/Module/Security/Login.php:124 +#: src/Content/Nav.php:241 src/Module/Register.php:161 +#: src/Module/Security/Login.php:114 msgid "Register" msgstr "Регистратор" -#: src/Content/Nav.php:255 +#: src/Content/Nav.php:241 msgid "Create an account" msgstr "Създаване на сметка" -#: src/Content/Nav.php:261 src/Module/Help.php:67 -#: src/Module/Settings/TwoFactor/AppSpecific.php:132 -#: src/Module/Settings/TwoFactor/Index.php:139 -#: src/Module/Settings/TwoFactor/Recovery.php:110 -#: src/Module/Settings/TwoFactor/Verify.php:149 view/theme/vier/theme.php:240 +#: src/Content/Nav.php:247 src/Module/Help.php:53 +#: src/Module/Settings/TwoFactor/AppSpecific.php:118 +#: src/Module/Settings/TwoFactor/Index.php:125 +#: src/Module/Settings/TwoFactor/Recovery.php:96 +#: src/Module/Settings/TwoFactor/Verify.php:135 view/theme/vier/theme.php:228 msgid "Help" msgstr "Помощ" -#: src/Content/Nav.php:261 +#: src/Content/Nav.php:247 msgid "Help and documentation" msgstr "Помощ и документация" -#: src/Content/Nav.php:265 +#: src/Content/Nav.php:251 msgid "Apps" msgstr "Apps" -#: src/Content/Nav.php:265 +#: src/Content/Nav.php:251 msgid "Addon applications, utilities, games" msgstr "Адон приложения, помощни програми, игри" -#: src/Content/Nav.php:269 src/Content/Text/HTML.php:866 -#: src/Module/Admin/Logs/View.php:86 src/Module/Search/Index.php:112 +#: src/Content/Nav.php:255 src/Content/Text/HTML.php:853 +#: src/Module/Admin/Logs/View.php:74 src/Module/Search/Index.php:98 msgid "Search" msgstr "Търсене" -#: src/Content/Nav.php:269 +#: src/Content/Nav.php:255 msgid "Search site content" msgstr "Търсене в сайта съдържание" -#: src/Content/Nav.php:272 src/Content/Text/HTML.php:875 +#: src/Content/Nav.php:258 src/Content/Text/HTML.php:862 msgid "Full Text" msgstr "" -#: src/Content/Nav.php:273 src/Content/Text/HTML.php:876 -#: src/Content/Widget/TagCloud.php:68 +#: src/Content/Nav.php:259 src/Content/Text/HTML.php:863 +#: src/Content/Widget/TagCloud.php:54 msgid "Tags" msgstr "" -#: src/Content/Nav.php:274 src/Content/Nav.php:329 -#: src/Content/Text/HTML.php: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:246 +#: src/Content/Nav.php:260 src/Content/Nav.php:315 +#: src/Content/Text/HTML.php:864 src/Module/BaseProfile.php:113 +#: src/Module/BaseProfile.php:116 src/Module/Contact.php:407 +#: src/Module/Contact.php:517 view/theme/frio/theme.php:234 msgid "Contacts" msgstr "Контакти " -#: src/Content/Nav.php:289 +#: src/Content/Nav.php:275 msgid "Community" msgstr "Общност" -#: src/Content/Nav.php:289 +#: src/Content/Nav.php:275 msgid "Conversations on this and other servers" msgstr "" -#: src/Content/Nav.php:296 +#: src/Content/Nav.php:282 msgid "Directory" msgstr "директория" -#: src/Content/Nav.php:296 +#: src/Content/Nav.php:282 msgid "People directory" msgstr "Хората директория" -#: src/Content/Nav.php:298 src/Module/BaseAdmin.php:85 -#: src/Module/BaseModeration.php:108 +#: src/Content/Nav.php:284 src/Module/BaseAdmin.php:71 +#: src/Module/BaseModeration.php:94 msgid "Information" msgstr "" -#: src/Content/Nav.php:298 +#: src/Content/Nav.php:284 msgid "Information about this friendica instance" msgstr "" -#: src/Content/Nav.php:301 src/Module/Admin/Tos.php:78 -#: src/Module/BaseAdmin.php:95 src/Module/Register.php:176 -#: src/Module/Tos.php:101 +#: src/Content/Nav.php:287 src/Module/Admin/Tos.php:64 +#: src/Module/BaseAdmin.php:81 src/Module/Register.php:169 +#: src/Module/Tos.php:87 msgid "Terms of Service" msgstr "" -#: src/Content/Nav.php:301 +#: src/Content/Nav.php:287 msgid "Terms of Service of this Friendica instance" msgstr "" -#: src/Content/Nav.php:306 view/theme/frio/theme.php:242 +#: src/Content/Nav.php:292 view/theme/frio/theme.php:230 msgid "Network" msgstr "Мрежа" -#: src/Content/Nav.php:306 view/theme/frio/theme.php:242 +#: src/Content/Nav.php:292 view/theme/frio/theme.php:230 msgid "Conversations from your friends" msgstr "Разговори от вашите приятели" -#: src/Content/Nav.php:308 view/theme/frio/theme.php:232 +#: src/Content/Nav.php:294 view/theme/frio/theme.php:220 msgid "Your posts and conversations" msgstr "Вашите мнения и разговори" -#: src/Content/Nav.php:312 +#: src/Content/Nav.php:298 msgid "Introductions" msgstr "Представяне" -#: src/Content/Nav.php:312 +#: src/Content/Nav.php:298 msgid "Friend Requests" msgstr "Молби за приятелство" -#: src/Content/Nav.php:313 src/Module/BaseNotifications.php:149 -#: src/Module/Notifications/Introductions.php:75 +#: src/Content/Nav.php:299 src/Module/BaseNotifications.php:135 +#: src/Module/Notifications/Introductions.php:61 msgid "Notifications" msgstr "Уведомления " -#: src/Content/Nav.php:314 +#: src/Content/Nav.php:300 msgid "See all notifications" msgstr "Вижте всички нотификации" -#: src/Content/Nav.php:315 src/Module/Settings/Connectors.php:244 +#: src/Content/Nav.php:301 src/Module/Settings/Connectors.php:233 msgid "Mark as seen" msgstr "Марк, както се вижда" -#: src/Content/Nav.php:315 +#: src/Content/Nav.php:301 msgid "Mark all system notifications as seen" msgstr "" -#: src/Content/Nav.php:318 view/theme/frio/theme.php:244 +#: src/Content/Nav.php:304 view/theme/frio/theme.php:232 msgid "Private mail" msgstr "Частна поща" -#: src/Content/Nav.php:319 +#: src/Content/Nav.php:305 msgid "Inbox" msgstr "Вх. поща" -#: src/Content/Nav.php:320 +#: src/Content/Nav.php:306 msgid "Outbox" msgstr "Изходящи" -#: src/Content/Nav.php:324 +#: src/Content/Nav.php:310 msgid "Accounts" msgstr "" -#: src/Content/Nav.php:324 +#: src/Content/Nav.php:310 msgid "Manage other pages" msgstr "Управление на други страници" -#: src/Content/Nav.php:327 src/Module/Admin/Addons/Details.php:114 -#: src/Module/Admin/Themes/Details.php:93 src/Module/BaseSettings.php:182 -#: src/Module/Welcome.php:52 view/theme/frio/theme.php:245 +#: src/Content/Nav.php:313 src/Module/Admin/Addons/Details.php:100 +#: src/Module/Admin/Themes/Details.php:85 src/Module/BaseSettings.php:168 +#: src/Module/Welcome.php:38 view/theme/frio/theme.php:233 msgid "Settings" msgstr "Настройки" -#: src/Content/Nav.php:327 view/theme/frio/theme.php:245 +#: src/Content/Nav.php:313 view/theme/frio/theme.php:233 msgid "Account settings" msgstr "Настройки на профила" -#: src/Content/Nav.php:329 view/theme/frio/theme.php:246 +#: src/Content/Nav.php:315 view/theme/frio/theme.php:234 msgid "Manage/edit friends and contacts" msgstr "Управление / редактиране на приятели и контакти" -#: src/Content/Nav.php:334 src/Module/BaseAdmin.php:119 +#: src/Content/Nav.php:320 src/Module/BaseAdmin.php:105 msgid "Admin" msgstr "admin" -#: src/Content/Nav.php:334 +#: src/Content/Nav.php:320 msgid "Site setup and configuration" msgstr "Настройка и конфигуриране на сайта" -#: src/Content/Nav.php:335 src/Module/BaseModeration.php:128 -#: src/Module/Moderation/Blocklist/Contact.php:110 -#: src/Module/Moderation/Blocklist/Server/Add.php:121 -#: src/Module/Moderation/Blocklist/Server/Import.php:118 -#: src/Module/Moderation/Blocklist/Server/Index.php:95 -#: src/Module/Moderation/Item/Delete.php:61 -#: src/Module/Moderation/Reports.php:89 src/Module/Moderation/Summary.php:75 -#: src/Module/Moderation/Users/Active.php:133 -#: src/Module/Moderation/Users/Blocked.php:133 -#: src/Module/Moderation/Users/Deleted.php:80 -#: src/Module/Moderation/Users/Index.php:147 +#: src/Content/Nav.php:321 src/Module/BaseModeration.php:114 +#: src/Module/Moderation/Blocklist/Contact.php:96 +#: src/Module/Moderation/Blocklist/Server/Add.php:107 +#: src/Module/Moderation/Blocklist/Server/Import.php:102 +#: src/Module/Moderation/Blocklist/Server/Index.php:81 +#: src/Module/Moderation/Item/Delete.php:47 +#: src/Module/Moderation/Reports.php:96 src/Module/Moderation/Summary.php:61 +#: src/Module/Moderation/Users/Active.php:119 +#: src/Module/Moderation/Users/Blocked.php:119 +#: src/Module/Moderation/Users/Deleted.php:66 +#: src/Module/Moderation/Users/Index.php:133 msgid "Moderation" msgstr "" -#: src/Content/Nav.php:335 +#: src/Content/Nav.php:321 msgid "Content and user moderation" msgstr "" -#: src/Content/Nav.php:338 +#: src/Content/Nav.php:324 msgid "Navigation" msgstr "Навигация" -#: src/Content/Nav.php:338 +#: src/Content/Nav.php:324 msgid "Site map" msgstr "Карта на сайта" -#: src/Content/Pager.php:216 +#: src/Content/Pager.php:202 msgid "first" msgstr "Първа" -#: src/Content/Pager.php:221 +#: src/Content/Pager.php:207 msgid "prev" msgstr "Пред." -#: src/Content/Pager.php:276 +#: src/Content/Pager.php:262 msgid "next" msgstr "следващ" -#: src/Content/Pager.php:281 +#: src/Content/Pager.php:267 msgid "last" msgstr "Дата на последния одит. " -#: src/Content/Text/BBCode.php:767 src/Content/Text/BBCode.php:1728 -#: src/Content/Text/BBCode.php:1729 +#: src/Content/Text/BBCode.php:689 src/Content/Text/BBCode.php:1862 +#: src/Content/Text/BBCode.php:1863 msgid "Image/photo" msgstr "Изображение / снимка" -#: src/Content/Text/BBCode.php:985 +#: src/Content/Text/BBCode.php:907 #, php-format msgid "%2$s %3$s" msgstr "" -#: src/Content/Text/BBCode.php:1010 src/Model/Item.php:3999 -#: src/Model/Item.php:4005 src/Model/Item.php:4006 +#: src/Content/Text/BBCode.php:929 src/Model/Item.php:4028 +#: src/Model/Item.php:4034 src/Model/Item.php:4035 msgid "Link to source" msgstr "" -#: src/Content/Text/BBCode.php:1635 src/Content/Text/HTML.php:905 +#: src/Content/Text/BBCode.php:1743 src/Content/Text/HTML.php:892 msgid "Click to open/close" msgstr "Кликнете за отваряне / затваряне" -#: src/Content/Text/BBCode.php:1668 +#: src/Content/Text/BBCode.php:1798 msgid "$1 wrote:" msgstr "$ 1 пише:" -#: src/Content/Text/BBCode.php:1733 src/Content/Text/BBCode.php:1734 +#: src/Content/Text/BBCode.php:1872 src/Content/Text/BBCode.php:1873 msgid "Encrypted content" msgstr "Шифрирано съдържание" -#: src/Content/Text/BBCode.php:1997 +#: src/Content/Text/BBCode.php:2205 msgid "Invalid source protocol" msgstr "" -#: src/Content/Text/BBCode.php:2016 +#: src/Content/Text/BBCode.php:2224 msgid "Invalid link protocol" msgstr "" -#: src/Content/Text/HTML.php:783 +#: src/Content/Text/HTML.php:770 msgid "Loading more entries..." msgstr "" -#: src/Content/Text/HTML.php:784 +#: src/Content/Text/HTML.php:771 msgid "The end" msgstr "" -#: src/Content/Text/HTML.php:860 src/Content/Widget/VCard.php:126 -#: src/Model/Profile.php:477 src/Module/Contact/Profile.php:471 +#: src/Content/Text/HTML.php:847 src/Content/Widget/VCard.php:113 +#: src/Model/Profile.php:456 src/Module/Contact/Profile.php:478 msgid "Follow" msgstr "" -#: src/Content/Widget.php:51 +#: src/Content/Widget.php:37 msgid "Add New Contact" msgstr "Добавяне на нов контакт" -#: src/Content/Widget.php:52 +#: src/Content/Widget.php:38 msgid "Enter address or web location" msgstr "Въведете местоположение на адрес или уеб" -#: src/Content/Widget.php:53 +#: src/Content/Widget.php:39 msgid "Example: bob@example.com, http://example.com/barbara" msgstr "Пример: bob@example.com, http://example.com/barbara" -#: src/Content/Widget.php:55 +#: src/Content/Widget.php:41 msgid "Connect" msgstr "Свързване! " -#: src/Content/Widget.php:72 +#: src/Content/Widget.php:58 #, php-format msgid "%d invitation available" msgid_plural "%d invitations available" msgstr[0] "" msgstr[1] "" -#: src/Content/Widget.php:78 view/theme/vier/theme.php:193 +#: src/Content/Widget.php:64 view/theme/vier/theme.php:181 msgid "Find People" msgstr "Намерете хора," -#: src/Content/Widget.php:79 view/theme/vier/theme.php:194 +#: src/Content/Widget.php:65 view/theme/vier/theme.php:182 msgid "Enter name or interest" msgstr "Въведете името или интерес" -#: src/Content/Widget.php:81 view/theme/vier/theme.php:196 +#: src/Content/Widget.php:67 view/theme/vier/theme.php:184 msgid "Examples: Robert Morgenstein, Fishing" msgstr "Примери: Робърт Morgenstein, Риболов" -#: src/Content/Widget.php:82 src/Module/Contact.php:460 -#: src/Module/Directory.php:96 view/theme/vier/theme.php:197 +#: src/Content/Widget.php:68 src/Module/Contact.php:441 +#: src/Module/Directory.php:83 view/theme/vier/theme.php:185 msgid "Find" msgstr "Търсене" -#: src/Content/Widget.php:83 src/Module/Contact/Suggestions.php:73 -#: view/theme/vier/theme.php:198 +#: src/Content/Widget.php:69 src/Module/Contact/Suggestions.php:59 +#: view/theme/vier/theme.php:186 msgid "Friend Suggestions" msgstr "Предложения за приятели" -#: src/Content/Widget.php:84 view/theme/vier/theme.php:199 +#: src/Content/Widget.php:70 view/theme/vier/theme.php:187 msgid "Similar Interests" msgstr "Сходни интереси" -#: src/Content/Widget.php:85 view/theme/vier/theme.php:200 +#: src/Content/Widget.php:71 view/theme/vier/theme.php:188 msgid "Random Profile" msgstr "Случайна Профил" -#: src/Content/Widget.php:86 view/theme/vier/theme.php:201 +#: src/Content/Widget.php:72 view/theme/vier/theme.php:189 msgid "Invite Friends" msgstr "Покани приятели" -#: src/Content/Widget.php:87 src/Module/Directory.php:88 -#: view/theme/vier/theme.php:202 +#: src/Content/Widget.php:73 src/Module/Directory.php:75 +#: view/theme/vier/theme.php:190 msgid "Global Directory" msgstr "Глобален справочник" -#: src/Content/Widget.php:89 view/theme/vier/theme.php:204 +#: src/Content/Widget.php:75 view/theme/vier/theme.php:192 msgid "Local Directory" msgstr "Локалната директория" -#: src/Content/Widget.php:216 src/Model/Circle.php:601 -#: src/Module/Contact.php:400 src/Module/Welcome.php:76 -msgid "Circles" -msgstr "" - -#: src/Content/Widget.php:218 +#: src/Content/Widget.php:196 msgid "Everyone" msgstr "" -#: src/Content/Widget.php:243 src/Module/Contact.php:423 +#: src/Content/Widget.php:221 src/Module/Contact.php:404 msgid "No relationship" msgstr "" -#: src/Content/Widget.php:248 +#: src/Content/Widget.php:226 msgid "Relationships" msgstr "" -#: src/Content/Widget.php:250 src/Module/Circle.php:292 -#: src/Module/Contact.php:344 +#: src/Content/Widget.php:228 src/Module/Circle.php:280 +#: src/Module/Contact.php:325 msgid "All Contacts" msgstr "Всички Контакти" -#: src/Content/Widget.php:289 -msgid "Protocols" -msgstr "" - -#: src/Content/Widget.php:291 +#: src/Content/Widget.php:269 msgid "All Protocols" msgstr "" -#: src/Content/Widget.php:319 -msgid "Saved Folders" -msgstr "Записани папки" - -#: src/Content/Widget.php:321 src/Content/Widget.php:352 +#: src/Content/Widget.php:299 src/Content/Widget.php:330 msgid "Everything" msgstr "Всичко" -#: src/Content/Widget.php:350 +#: src/Content/Widget.php:328 msgid "Categories" msgstr "Категории" -#: src/Content/Widget.php:407 +#: src/Content/Widget.php:385 #, php-format msgid "%d contact in common" msgid_plural "%d contacts in common" msgstr[0] "" msgstr[1] "" -#: src/Content/Widget.php:507 -msgid "Archives" -msgstr "Архиви" - -#: src/Content/Widget.php:515 +#: src/Content/Widget.php:493 msgid "On this date" msgstr "" -#: src/Content/Widget.php:535 +#: src/Content/Widget.php:513 msgid "Persons" msgstr "" -#: src/Content/Widget.php:536 +#: src/Content/Widget.php:514 msgid "Organisations" msgstr "" -#: src/Content/Widget.php:537 src/Model/Contact.php:1739 +#: src/Content/Widget.php:515 src/Model/Contact.php:1747 msgid "News" msgstr "" -#: src/Content/Widget.php:539 +#: src/Content/Widget.php:517 msgid "Relays" msgstr "" -#: src/Content/Widget.php:544 src/Module/Settings/Account.php:442 -msgid "Account Types" -msgstr "" - -#: src/Content/Widget.php:546 src/Module/Moderation/BaseUsers.php:69 +#: src/Content/Widget.php:524 src/Module/Moderation/BaseUsers.php:56 msgid "All" msgstr "" -#: 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:318 -msgid "Channels" -msgstr "" - -#: src/Content/Widget/CalendarExport.php:56 +#: src/Content/Widget/CalendarExport.php:42 msgid "Export" msgstr "" -#: src/Content/Widget/CalendarExport.php:57 +#: src/Content/Widget/CalendarExport.php:43 msgid "Export calendar as ical" msgstr "" -#: src/Content/Widget/CalendarExport.php:58 +#: src/Content/Widget/CalendarExport.php:44 msgid "Export calendar as csv" msgstr "" -#: src/Content/Widget/ContactBlock.php:79 +#: src/Content/Widget/ContactBlock.php:65 msgid "No contacts" msgstr "Няма контакти" -#: src/Content/Widget/ContactBlock.php:110 +#: src/Content/Widget/ContactBlock.php:96 #, php-format msgid "%d Contact" msgid_plural "%d Contacts" msgstr[0] "" msgstr[1] "" -#: src/Content/Widget/ContactBlock.php:127 +#: src/Content/Widget/ContactBlock.php:113 msgid "View Contacts" msgstr "Вижте Контакти" -#: src/Content/Widget/SavedSearches.php:47 +#: src/Content/Widget/SavedSearches.php:33 msgid "Remove term" msgstr "Премахване мандат" -#: src/Content/Widget/SavedSearches.php:60 -msgid "Saved Searches" -msgstr "Запазени търсения" - -#: src/Content/Widget/TrendingTags.php:52 +#: src/Content/Widget/TrendingTags.php:39 #, php-format msgid "Trending Tags (last %d hour)" msgid_plural "Trending Tags (last %d hours)" msgstr[0] "" msgstr[1] "" -#: src/Content/Widget/TrendingTags.php:53 +#: src/Content/Widget/TrendingTags.php:40 msgid "More Trending Tags" msgstr "" -#: src/Content/Widget/VCard.php:104 src/Model/Contact.php:1205 -#: src/Model/Profile.php:461 +#: src/Content/Widget/VCard.php:91 src/Model/Contact.php:1212 +#: src/Model/Profile.php:441 msgid "Post to group" msgstr "" -#: src/Content/Widget/VCard.php:109 src/Model/Contact.php:1210 -#: src/Model/Profile.php:466 src/Module/Moderation/Item/Source.php:85 +#: src/Content/Widget/VCard.php:96 src/Model/Contact.php:1216 +#: src/Model/Profile.php:445 src/Module/Moderation/Item/Source.php:77 msgid "Mention" msgstr "" -#: src/Content/Widget/VCard.php:119 src/Model/Profile.php:380 -#: src/Module/Contact/Profile.php:408 src/Module/Profile/Profile.php:199 +#: src/Content/Widget/VCard.php:106 src/Model/Profile.php:360 +#: src/Module/Contact/Profile.php:414 src/Module/Profile/Profile.php:187 msgid "XMPP:" msgstr "" -#: src/Content/Widget/VCard.php:120 src/Model/Profile.php:381 -#: src/Module/Contact/Profile.php:410 src/Module/Profile/Profile.php:203 +#: src/Content/Widget/VCard.php:107 src/Model/Profile.php:361 +#: src/Module/Contact/Profile.php:416 src/Module/Profile/Profile.php:191 msgid "Matrix:" msgstr "" -#: src/Content/Widget/VCard.php:121 src/Model/Event.php:82 -#: 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 +#: src/Content/Widget/VCard.php:108 src/Model/Event.php:68 +#: src/Model/Event.php:95 src/Model/Event.php:457 src/Model/Event.php:946 +#: src/Model/Profile.php:355 src/Module/Contact/Profile.php:412 +#: src/Module/Directory.php:134 src/Module/Notifications/Introductions.php:179 +#: src/Module/Profile/Profile.php:209 msgid "Location:" msgstr "Място:" -#: src/Content/Widget/VCard.php:124 src/Model/Profile.php:490 -#: src/Module/Notifications/Introductions.php:201 +#: src/Content/Widget/VCard.php:111 src/Model/Profile.php:469 +#: src/Module/Notifications/Introductions.php:193 msgid "Network:" msgstr "" -#: src/Content/Widget/VCard.php:128 src/Model/Contact.php:1238 -#: src/Model/Contact.php:1250 src/Model/Profile.php:479 -#: src/Module/Contact/Profile.php:463 +#: src/Content/Widget/VCard.php:115 src/Model/Contact.php:1244 +#: src/Model/Contact.php:1256 src/Model/Profile.php:458 +#: src/Module/Contact/Profile.php:470 msgid "Unfollow" msgstr "" -#: src/Content/Widget/VCard.php:134 src/Model/Contact.php:1207 -#: src/Model/Profile.php:463 +#: src/Content/Widget/VCard.php:121 src/Model/Contact.php:1214 +#: src/Model/Profile.php:443 msgid "View group" msgstr "" -#: src/Core/ACL.php:166 src/Module/Profile/Profile.php:269 +#: src/Core/ACL.php:152 src/Module/Profile/Profile.php:257 msgid "Yourself" msgstr "" -#: src/Core/ACL.php:202 src/Module/PermissionTooltip.php:147 -#: src/Module/PermissionTooltip.php:169 +#: src/Core/ACL.php:188 src/Module/Privacy/PermissionTooltip.php:156 +#: src/Module/Privacy/PermissionTooltip.php:178 msgid "Mutuals" msgstr "" -#: src/Core/ACL.php:294 +#: src/Core/ACL.php:280 msgid "Post to Email" msgstr "Коментар на e-mail" -#: src/Core/ACL.php:321 src/Module/PermissionTooltip.php:90 -#: src/Module/PermissionTooltip.php:211 +#: src/Core/ACL.php:307 src/Module/Privacy/PermissionTooltip.php:103 +#: src/Module/Privacy/PermissionTooltip.php:217 msgid "Public" msgstr "" -#: src/Core/ACL.php:322 +#: src/Core/ACL.php:308 msgid "" "This content will be shown to all your followers and can be seen in the " "community pages and by anyone with its link." msgstr "" -#: src/Core/ACL.php:323 src/Module/PermissionTooltip.php:98 +#: src/Core/ACL.php:309 src/Module/Privacy/PermissionTooltip.php:105 msgid "Limited/Private" msgstr "" -#: src/Core/ACL.php:324 +#: src/Core/ACL.php:310 msgid "" "This content will be shown only to the people in the first box, to the " "exception of the people mentioned in the second box. It won't appear " "anywhere public." msgstr "" -#: src/Core/ACL.php:324 +#: src/Core/ACL.php:310 msgid "" "Start typing the name of a contact or a circle to show a filtered list. You " "can also mention the special circles \"Followers\" and \"Mutuals\"." msgstr "" -#: src/Core/ACL.php:325 +#: src/Core/ACL.php:311 msgid "Show to:" msgstr "" -#: src/Core/ACL.php:326 +#: src/Core/ACL.php:312 msgid "Except to:" msgstr "" -#: src/Core/ACL.php:327 src/Module/Post/Edit.php:154 +#: src/Core/ACL.php:313 src/Module/Post/Edit.php:140 msgid "CC: email addresses" msgstr "CC: имейл адреси" -#: src/Core/ACL.php:328 src/Module/Post/Edit.php:160 +#: src/Core/ACL.php:314 src/Module/Post/Edit.php:146 msgid "Example: bob@example.com, mary@example.com" msgstr "Пример: bob@example.com, mary@example.com" -#: src/Core/ACL.php:329 +#: src/Core/ACL.php:315 msgid "Connectors" msgstr "" -#: src/Core/Installer.php:180 +#: src/Core/Installer.php:166 msgid "" "The database configuration file \"config/local.config.php\" could not be " "written. Please use the enclosed text to create a configuration file in your" " web server root." msgstr "" -#: src/Core/Installer.php:197 +#: src/Core/Installer.php:183 msgid "" "You may need to import the file \"database.sql\" manually using phpmyadmin " "or mysql." msgstr "Може да се наложи да импортирате файла \"database.sql\" ръчно чрез настървение или MySQL." -#: src/Core/Installer.php:198 src/Module/Install.php:207 -#: src/Module/Install.php:350 +#: src/Core/Installer.php:184 src/Module/Install.php:193 +#: src/Module/Install.php:336 msgid "Please see the file \"doc/INSTALL.md\"." msgstr "" -#: src/Core/Installer.php:259 +#: src/Core/Installer.php:245 msgid "Could not find a command line version of PHP in the web server PATH." msgstr "Не може да се намери командния ред версия на PHP в PATH уеб сървър." -#: src/Core/Installer.php:260 +#: src/Core/Installer.php:246 msgid "" "If you don't have a command line version of PHP installed on your server, " "you will not be able to run the background processing. See 'Setup the worker'" msgstr "" -#: src/Core/Installer.php:265 +#: src/Core/Installer.php:251 msgid "PHP executable path" msgstr "PHP изпълним път" -#: src/Core/Installer.php:265 +#: src/Core/Installer.php:251 msgid "" "Enter full path to php executable. You can leave this blank to continue the " "installation." msgstr "Въведете пълния път до изпълнимия файл на PHP. Можете да оставите полето празно, за да продължите инсталацията." -#: src/Core/Installer.php:270 +#: src/Core/Installer.php:256 msgid "Command line PHP" msgstr "Команден ред PHP" -#: src/Core/Installer.php:279 +#: src/Core/Installer.php:265 msgid "PHP executable is not the php cli binary (could be cgi-fgci version)" msgstr "" -#: src/Core/Installer.php:280 +#: src/Core/Installer.php:266 msgid "Found PHP version: " msgstr "" -#: src/Core/Installer.php:282 +#: src/Core/Installer.php:268 msgid "PHP cli binary" msgstr "" -#: src/Core/Installer.php:295 +#: src/Core/Installer.php:281 msgid "" "The command line version of PHP on your system does not have " "\"register_argc_argv\" enabled." msgstr "В командния ред версия на PHP на вашата система не трябва \"register_argc_argv\" дадоха възможност." -#: src/Core/Installer.php:296 +#: src/Core/Installer.php:282 msgid "This is required for message delivery to work." msgstr "Това е необходимо за доставка на съобщение, за да работят." -#: src/Core/Installer.php:301 +#: src/Core/Installer.php:287 msgid "PHP register_argc_argv" msgstr "PHP register_argc_argv" -#: src/Core/Installer.php:333 +#: src/Core/Installer.php:319 msgid "" "Error: the \"openssl_pkey_new\" function on this system is not able to " "generate encryption keys" msgstr "Грешка: \"openssl_pkey_new\" функция на тази система не е в състояние да генерира криптиращи ключове" -#: src/Core/Installer.php:334 +#: src/Core/Installer.php:320 msgid "" "If running under Windows, please see " "\"http://www.php.net/manual/en/openssl.installation.php\"." msgstr "Ако работите под Windows, моля, вижте \"http://www.php.net/manual/en/openssl.installation.php\"." -#: src/Core/Installer.php:337 +#: src/Core/Installer.php:323 msgid "Generate encryption keys" msgstr "Генериране на криптиращи ключове" -#: src/Core/Installer.php:388 +#: src/Core/Installer.php:374 msgid "" "Error: Apache webserver mod-rewrite module is required but not installed." msgstr "Грешка: МОД-пренаписване модул на Apache уеб сървър е необходимо, но не е инсталиран." -#: src/Core/Installer.php:392 +#: src/Core/Installer.php:378 msgid "Apache mod_rewrite module" msgstr "Apache mod_rewrite модул" -#: src/Core/Installer.php:398 +#: src/Core/Installer.php:384 msgid "Error: PDO or MySQLi PHP module required but not installed." msgstr "" -#: src/Core/Installer.php:402 +#: src/Core/Installer.php:388 msgid "Error: The MySQL driver for PDO is not installed." msgstr "" -#: src/Core/Installer.php:405 +#: src/Core/Installer.php:391 msgid "PDO or MySQLi PHP module" msgstr "" -#: src/Core/Installer.php:411 +#: src/Core/Installer.php:397 msgid "Error: The IntlChar module is not installed." msgstr "" -#: src/Core/Installer.php:414 +#: src/Core/Installer.php:400 msgid "IntlChar PHP module" msgstr "" -#: src/Core/Installer.php:422 +#: src/Core/Installer.php:408 msgid "Error, XML PHP module required but not installed." msgstr "" -#: src/Core/Installer.php:426 +#: src/Core/Installer.php:412 msgid "XML PHP module" msgstr "" -#: src/Core/Installer.php:429 +#: src/Core/Installer.php:415 msgid "libCurl PHP module" msgstr "libCurl PHP модул" -#: src/Core/Installer.php:430 +#: src/Core/Installer.php:416 msgid "Error: libCURL PHP module required but not installed." msgstr "Грешка: libCURL PHP модул, но не е инсталирана." -#: src/Core/Installer.php:436 +#: src/Core/Installer.php:422 msgid "GD graphics PHP module" msgstr "GD графика PHP модул" -#: src/Core/Installer.php:437 +#: src/Core/Installer.php:423 msgid "" "Error: GD graphics PHP module with JPEG support required but not installed." msgstr "Грешка: GD графика PHP модул с поддръжка на JPEG, но не е инсталирана." -#: src/Core/Installer.php:443 +#: src/Core/Installer.php:429 msgid "OpenSSL PHP module" msgstr "OpenSSL PHP модул" -#: src/Core/Installer.php:444 +#: src/Core/Installer.php:430 msgid "Error: openssl PHP module required but not installed." msgstr "Грешка: OpenSSL PHP модул са необходими, но не е инсталирана." -#: src/Core/Installer.php:450 +#: src/Core/Installer.php:436 msgid "mb_string PHP module" msgstr "mb_string PHP модул" -#: src/Core/Installer.php:451 +#: src/Core/Installer.php:437 msgid "Error: mb_string PHP module required but not installed." msgstr "Грешка: mb_string PHP модул, но не е инсталирана." -#: src/Core/Installer.php:457 +#: src/Core/Installer.php:443 msgid "iconv PHP module" msgstr "" -#: src/Core/Installer.php:458 +#: src/Core/Installer.php:444 msgid "Error: iconv PHP module required but not installed." msgstr "" -#: src/Core/Installer.php:464 +#: src/Core/Installer.php:450 msgid "POSIX PHP module" msgstr "" -#: src/Core/Installer.php:465 +#: src/Core/Installer.php:451 msgid "Error: POSIX PHP module required but not installed." msgstr "" -#: src/Core/Installer.php:471 +#: src/Core/Installer.php:457 msgid "Program execution functions" msgstr "" -#: src/Core/Installer.php:472 +#: src/Core/Installer.php:458 msgid "" "Error: Program execution functions (proc_open) required but not enabled." msgstr "" -#: src/Core/Installer.php:478 +#: src/Core/Installer.php:464 msgid "JSON PHP module" msgstr "" -#: src/Core/Installer.php:479 +#: src/Core/Installer.php:465 msgid "Error: JSON PHP module required but not installed." msgstr "" -#: src/Core/Installer.php:485 +#: src/Core/Installer.php:471 msgid "File Information PHP module" msgstr "" -#: src/Core/Installer.php:486 +#: src/Core/Installer.php:472 msgid "Error: File Information PHP module required but not installed." msgstr "" -#: src/Core/Installer.php:492 +#: src/Core/Installer.php:478 msgid "GNU Multiple Precision PHP module" msgstr "" -#: src/Core/Installer.php:493 +#: src/Core/Installer.php:479 msgid "Error: GNU Multiple Precision PHP module required but not installed." msgstr "" -#: src/Core/Installer.php:516 +#: src/Core/Installer.php:485 +msgid "IDN Functions PHP module" +msgstr "" + +#: src/Core/Installer.php:486 +msgid "Error: IDN Functions PHP module required but not installed." +msgstr "" + +#: src/Core/Installer.php:509 msgid "" "The web installer needs to be able to create a file called " "\"local.config.php\" in the \"config\" folder of your web server and it is " "unable to do so." msgstr "" -#: src/Core/Installer.php:517 +#: src/Core/Installer.php:510 msgid "" "This is most often a permission setting, as the web server may not be able " "to write files in your folder - even if you can." msgstr "Това е най-често настройка разрешение, тъй като уеб сървъра не може да бъде в състояние да записва файлове във вашата папка - дори и ако можете." -#: src/Core/Installer.php:518 +#: src/Core/Installer.php:511 msgid "" "At the end of this procedure, we will give you a text to save in a file " "named local.config.php in your Friendica \"config\" folder." msgstr "" -#: src/Core/Installer.php:519 +#: src/Core/Installer.php:512 msgid "" "You can alternatively skip this procedure and perform a manual installation." " Please see the file \"doc/INSTALL.md\" for instructions." msgstr "" -#: src/Core/Installer.php:522 +#: src/Core/Installer.php:515 msgid "config/local.config.php is writable" msgstr "" -#: src/Core/Installer.php:542 +#: src/Core/Installer.php:535 msgid "" "Friendica uses the Smarty3 template engine to render its web views. Smarty3 " "compiles templates to PHP to speed up rendering." msgstr "" -#: src/Core/Installer.php:543 +#: src/Core/Installer.php:536 msgid "" "In order to store these compiled templates, the web server needs to have " "write access to the directory view/smarty3/ under the Friendica top level " "folder." msgstr "" -#: src/Core/Installer.php:544 +#: src/Core/Installer.php:537 msgid "" "Please ensure that the user that your web server runs as (e.g. www-data) has" " write access to this folder." msgstr "" -#: src/Core/Installer.php:545 +#: src/Core/Installer.php:538 msgid "" "Note: as a security measure, you should give the web server write access to " "view/smarty3/ only--not the template files (.tpl) that it contains." msgstr "" -#: src/Core/Installer.php:548 +#: src/Core/Installer.php:541 msgid "view/smarty3 is writable" msgstr "" -#: src/Core/Installer.php:576 +#: src/Core/Installer.php:569 msgid "" "Url rewrite in .htaccess seems not working. Make sure you copied .htaccess-" "dist to .htaccess." msgstr "" -#: src/Core/Installer.php:577 +#: src/Core/Installer.php:570 msgid "" "In some circumstances (like running inside containers), you can skip this " "error." msgstr "" -#: src/Core/Installer.php:579 +#: src/Core/Installer.php:572 msgid "Error message from Curl when fetching" msgstr "" -#: src/Core/Installer.php:585 +#: src/Core/Installer.php:578 msgid "Url rewrite is working" msgstr ", Url пренаписванията работи" -#: src/Core/Installer.php:614 +#: src/Core/Installer.php:607 msgid "" "The detection of TLS to secure the communication between the browser and the" " new Friendica server failed." msgstr "" -#: src/Core/Installer.php:615 +#: src/Core/Installer.php:608 msgid "" "It is highly encouraged to use Friendica only over a secure connection as " "sensitive information like passwords will be transmitted." msgstr "" -#: src/Core/Installer.php:616 +#: src/Core/Installer.php:609 msgid "Please ensure that the connection to the server is secure." msgstr "" -#: src/Core/Installer.php:617 +#: src/Core/Installer.php:610 msgid "No TLS detected" msgstr "" -#: src/Core/Installer.php:619 +#: src/Core/Installer.php:612 msgid "TLS detected" msgstr "" -#: src/Core/Installer.php:636 +#: src/Core/Installer.php:629 msgid "ImageMagick PHP extension is not installed" msgstr "" -#: src/Core/Installer.php:638 +#: src/Core/Installer.php:631 msgid "ImageMagick PHP extension is installed" msgstr "" -#: src/Core/Installer.php:659 +#: src/Core/Installer.php:652 msgid "Database already in use." msgstr "" -#: src/Core/Installer.php:664 +#: src/Core/Installer.php:657 msgid "Could not connect to database." msgstr "Не може да се свърже с базата данни." -#: src/Core/L10n.php:444 src/Model/Item.php:2298 +#: src/Core/L10n.php:430 src/Model/Item.php:2315 msgid "Undetermined" msgstr "" -#: src/Core/L10n.php:451 +#: src/Core/L10n.php:437 #, php-format msgid "%s (%s)" msgstr "" -#: src/Core/L10n.php:499 src/Model/Event.php:430 -#: src/Module/Settings/Display.php:287 +#: src/Core/L10n.php:485 src/Model/Event.php:416 +#: src/Module/Settings/Display.php:270 msgid "Monday" msgstr "Понеделник" -#: src/Core/L10n.php:499 src/Model/Event.php:431 -#: src/Module/Settings/Display.php:288 +#: src/Core/L10n.php:485 src/Model/Event.php:417 +#: src/Module/Settings/Display.php:271 msgid "Tuesday" msgstr "Вторник" -#: src/Core/L10n.php:499 src/Model/Event.php:432 -#: src/Module/Settings/Display.php:289 +#: src/Core/L10n.php:485 src/Model/Event.php:418 +#: src/Module/Settings/Display.php:272 msgid "Wednesday" msgstr "Сряда" -#: src/Core/L10n.php:499 src/Model/Event.php:433 -#: src/Module/Settings/Display.php:290 +#: src/Core/L10n.php:485 src/Model/Event.php:419 +#: src/Module/Settings/Display.php:273 msgid "Thursday" msgstr "Четвъртък" -#: src/Core/L10n.php:499 src/Model/Event.php:434 -#: src/Module/Settings/Display.php:291 +#: src/Core/L10n.php:485 src/Model/Event.php:420 +#: src/Module/Settings/Display.php:274 msgid "Friday" msgstr "Петък" -#: src/Core/L10n.php:499 src/Model/Event.php:435 -#: src/Module/Settings/Display.php:292 +#: src/Core/L10n.php:485 src/Model/Event.php:421 +#: src/Module/Settings/Display.php:275 msgid "Saturday" msgstr "Събота" -#: src/Core/L10n.php:499 src/Model/Event.php:429 -#: src/Module/Settings/Display.php:286 +#: src/Core/L10n.php:485 src/Model/Event.php:415 +#: src/Module/Settings/Display.php:269 msgid "Sunday" msgstr "Неделя" -#: src/Core/L10n.php:503 src/Model/Event.php:450 +#: src/Core/L10n.php:489 src/Model/Event.php:436 msgid "January" msgstr "януари" -#: src/Core/L10n.php:503 src/Model/Event.php:451 +#: src/Core/L10n.php:489 src/Model/Event.php:437 msgid "February" msgstr "февруари" -#: src/Core/L10n.php:503 src/Model/Event.php:452 +#: src/Core/L10n.php:489 src/Model/Event.php:438 msgid "March" msgstr "март" -#: src/Core/L10n.php:503 src/Model/Event.php:453 +#: src/Core/L10n.php:489 src/Model/Event.php:439 msgid "April" msgstr "април" -#: src/Core/L10n.php:503 src/Core/L10n.php:522 src/Model/Event.php:441 +#: src/Core/L10n.php:489 src/Core/L10n.php:508 src/Model/Event.php:427 msgid "May" msgstr "Май" -#: src/Core/L10n.php:503 src/Model/Event.php:454 +#: src/Core/L10n.php:489 src/Model/Event.php:440 msgid "June" msgstr "юни" -#: src/Core/L10n.php:503 src/Model/Event.php:455 +#: src/Core/L10n.php:489 src/Model/Event.php:441 msgid "July" msgstr "юли" -#: src/Core/L10n.php:503 src/Model/Event.php:456 +#: src/Core/L10n.php:489 src/Model/Event.php:442 msgid "August" msgstr "август" -#: src/Core/L10n.php:503 src/Model/Event.php:457 +#: src/Core/L10n.php:489 src/Model/Event.php:443 msgid "September" msgstr "септември" -#: src/Core/L10n.php:503 src/Model/Event.php:458 +#: src/Core/L10n.php:489 src/Model/Event.php:444 msgid "October" msgstr "октомври" -#: src/Core/L10n.php:503 src/Model/Event.php:459 +#: src/Core/L10n.php:489 src/Model/Event.php:445 msgid "November" msgstr "ноември" -#: src/Core/L10n.php:503 src/Model/Event.php:460 +#: src/Core/L10n.php:489 src/Model/Event.php:446 msgid "December" msgstr "декември" -#: src/Core/L10n.php:518 src/Model/Event.php:422 +#: src/Core/L10n.php:504 src/Model/Event.php:408 msgid "Mon" msgstr "" -#: src/Core/L10n.php:518 src/Model/Event.php:423 +#: src/Core/L10n.php:504 src/Model/Event.php:409 msgid "Tue" msgstr "" -#: src/Core/L10n.php:518 src/Model/Event.php:424 +#: src/Core/L10n.php:504 src/Model/Event.php:410 msgid "Wed" msgstr "" -#: src/Core/L10n.php:518 src/Model/Event.php:425 +#: src/Core/L10n.php:504 src/Model/Event.php:411 msgid "Thu" msgstr "" -#: src/Core/L10n.php:518 src/Model/Event.php:426 +#: src/Core/L10n.php:504 src/Model/Event.php:412 msgid "Fri" msgstr "" -#: src/Core/L10n.php:518 src/Model/Event.php:427 +#: src/Core/L10n.php:504 src/Model/Event.php:413 msgid "Sat" msgstr "" -#: src/Core/L10n.php:518 src/Model/Event.php:421 +#: src/Core/L10n.php:504 src/Model/Event.php:407 msgid "Sun" msgstr "" -#: src/Core/L10n.php:522 src/Model/Event.php:437 +#: src/Core/L10n.php:508 src/Model/Event.php:423 msgid "Jan" msgstr "" -#: src/Core/L10n.php:522 src/Model/Event.php:438 +#: src/Core/L10n.php:508 src/Model/Event.php:424 msgid "Feb" msgstr "" -#: src/Core/L10n.php:522 src/Model/Event.php:439 +#: src/Core/L10n.php:508 src/Model/Event.php:425 msgid "Mar" msgstr "" -#: src/Core/L10n.php:522 src/Model/Event.php:440 +#: src/Core/L10n.php:508 src/Model/Event.php:426 msgid "Apr" msgstr "" -#: src/Core/L10n.php:522 src/Model/Event.php:442 +#: src/Core/L10n.php:508 src/Model/Event.php:428 msgid "Jun" msgstr "" -#: src/Core/L10n.php:522 src/Model/Event.php:443 +#: src/Core/L10n.php:508 src/Model/Event.php:429 msgid "Jul" msgstr "" -#: src/Core/L10n.php:522 src/Model/Event.php:444 +#: src/Core/L10n.php:508 src/Model/Event.php:430 msgid "Aug" msgstr "" -#: src/Core/L10n.php:522 +#: src/Core/L10n.php:508 msgid "Sep" msgstr "" -#: src/Core/L10n.php:522 src/Model/Event.php:446 +#: src/Core/L10n.php:508 src/Model/Event.php:432 msgid "Oct" msgstr "" -#: src/Core/L10n.php:522 src/Model/Event.php:447 +#: src/Core/L10n.php:508 src/Model/Event.php:433 msgid "Nov" msgstr "" -#: src/Core/L10n.php:522 src/Model/Event.php:448 +#: src/Core/L10n.php:508 src/Model/Event.php:434 msgid "Dec" msgstr "" -#: src/Core/Logger/Util/LoggerSettingsCheck.php:60 +#: src/Core/Logger/Util/LoggerSettingsCheck.php:46 #, php-format msgid "The logfile '%s' is not usable. No logging possible (error: '%s')" msgstr "" -#: src/Core/Logger/Util/LoggerSettingsCheck.php:85 +#: src/Core/Logger/Util/LoggerSettingsCheck.php:71 #, php-format msgid "" "The debug logfile '%s' is not usable. No logging possible (error: '%s')" msgstr "" -#: src/Core/Renderer.php:89 src/Core/Renderer.php:118 -#: src/Core/Renderer.php:147 src/Core/Renderer.php:181 -#: src/Render/FriendicaSmartyEngine.php:60 +#: src/Core/Renderer.php:78 src/Core/Renderer.php:107 +#: src/Core/Renderer.php:136 src/Core/Renderer.php:170 +#: src/Render/FriendicaSmartyEngine.php:46 msgid "" "Friendica can't display this page at the moment, please contact the " "administrator." msgstr "" -#: src/Core/Renderer.php:143 +#: src/Core/Renderer.php:132 msgid "template engine cannot be registered without a name." msgstr "" -#: src/Core/Renderer.php:177 +#: src/Core/Renderer.php:166 msgid "template engine is not registered!" msgstr "" -#: src/Core/Storage/Type/FilesystemConfig.php:78 +#: src/Core/Storage/Type/FilesystemConfig.php:64 msgid "Storage base path" msgstr "" -#: src/Core/Storage/Type/FilesystemConfig.php:80 +#: src/Core/Storage/Type/FilesystemConfig.php:66 msgid "" "Folder where uploaded files are saved. For maximum security, This should be " "a path outside web server folder tree" msgstr "" -#: src/Core/Storage/Type/FilesystemConfig.php:93 +#: src/Core/Storage/Type/FilesystemConfig.php:79 msgid "Enter a valid existing folder" msgstr "" -#: src/Core/Update.php:80 +#: src/Core/Update.php:66 #, php-format msgid "" "Updates from version %s are not supported. Please update at least to version" " 2021.01 and wait until the postupdate finished version 1383." msgstr "" -#: src/Core/Update.php:91 +#: src/Core/Update.php:77 #, php-format msgid "" "Updates from postupdate version %s are not supported. Please update at least" " to version 2021.01 and wait until the postupdate finished version 1383." msgstr "" -#: src/Core/Update.php:183 +#: src/Core/Update.php:169 #, php-format msgid "%s: executing pre update %d" msgstr "" -#: src/Core/Update.php:225 +#: src/Core/Update.php:211 #, php-format msgid "%s: executing post update %d" msgstr "" -#: src/Core/Update.php:299 +#: src/Core/Update.php:285 #, php-format msgid "Update %s failed. See error logs." msgstr "Актуализация %s не успя. Виж логовете за грешки." -#: src/Core/Update.php:339 +#: src/Core/Update.php:325 #, php-format msgid "" "\n" @@ -3111,49 +3172,49 @@ msgid "" "\t\t\t\tfriendica developer if you can not help me on your own. My database might be invalid." msgstr "" -#: src/Core/Update.php:345 +#: src/Core/Update.php:331 #, php-format msgid "The error message is\\n[pre]%s[/pre]" msgstr "" -#: src/Core/Update.php:349 src/Core/Update.php:377 +#: src/Core/Update.php:335 src/Core/Update.php:363 msgid "[Friendica Notify] Database update" msgstr "" -#: src/Core/Update.php:371 +#: src/Core/Update.php:357 #, php-format msgid "" "\n" "\t\t\t\tThe friendica database was successfully updated from %s to %s." msgstr "" -#: src/Database/DBStructure.php:57 +#: src/Database/DBStructure.php:43 #, php-format msgid "The database version had been set to %s." msgstr "" -#: src/Database/DBStructure.php:82 +#: src/Database/DBStructure.php:68 #, php-format msgid "" "The post update is at version %d, it has to be at %d to safely drop the " "tables." msgstr "" -#: src/Database/DBStructure.php:95 +#: src/Database/DBStructure.php:81 msgid "No unused tables found." msgstr "" -#: src/Database/DBStructure.php:100 +#: src/Database/DBStructure.php:86 msgid "" "These tables are not used for friendica and will be deleted when you execute" " \"dbstructure drop -e\":" msgstr "" -#: src/Database/DBStructure.php:137 +#: src/Database/DBStructure.php:123 msgid "There are no tables on MyISAM or InnoDB with the Antelope file format." msgstr "" -#: src/Database/DBStructure.php:161 +#: src/Database/DBStructure.php:147 #, php-format msgid "" "\n" @@ -3161,659 +3222,654 @@ msgid "" "%s\n" msgstr "" -#: src/Database/DBStructure.php:164 +#: src/Database/DBStructure.php:150 msgid "Errors encountered performing database changes: " msgstr "" -#: src/Database/DBStructure.php:232 +#: src/Database/DBStructure.php:218 msgid "Another database update is currently running." msgstr "" -#: src/Database/DBStructure.php:236 +#: src/Database/DBStructure.php:222 #, php-format msgid "%s: Database update" msgstr "" -#: src/Database/DBStructure.php:493 +#: src/Database/DBStructure.php:479 #, php-format msgid "%s: updating %s table." msgstr "" -#: src/Factory/Api/Mastodon/Error.php:42 +#: src/Factory/Api/Mastodon/Error.php:28 msgid "Record not found" msgstr "" -#: src/Factory/Api/Mastodon/Error.php:49 +#: src/Factory/Api/Mastodon/Error.php:35 msgid "Unprocessable Entity" msgstr "" -#: src/Factory/Api/Mastodon/Error.php:56 +#: src/Factory/Api/Mastodon/Error.php:42 msgid "Unauthorized" msgstr "" -#: src/Factory/Api/Mastodon/Error.php:62 +#: src/Factory/Api/Mastodon/Error.php:48 msgid "" "Token is not authorized with a valid user or is missing a required scope" msgstr "" -#: src/Factory/Api/Mastodon/Error.php:69 +#: src/Factory/Api/Mastodon/Error.php:55 msgid "Internal Server Error" msgstr "" -#: src/LegacyModule.php:63 +#: src/LegacyModule.php:49 #, php-format msgid "Legacy module file not found: %s" msgstr "" -#: src/Model/Circle.php:106 +#: src/Model/Circle.php:92 msgid "" "A deleted circle with this name was revived. Existing item permissions " "may apply to this circle and any future members. If this is" " not what you intended, please create another circle with a different name." msgstr "" -#: src/Model/Circle.php:544 +#: src/Model/Circle.php:530 msgid "Everybody" msgstr "Всички" -#: src/Model/Circle.php:563 +#: src/Model/Circle.php:549 msgid "edit" msgstr "редактиране" -#: src/Model/Circle.php:600 +#: src/Model/Circle.php:586 msgid "add" msgstr "добави" -#: src/Model/Circle.php:605 +#: src/Model/Circle.php:591 msgid "Edit circle" msgstr "" -#: src/Model/Circle.php:606 src/Module/Circle.php:193 +#: src/Model/Circle.php:592 src/Module/Circle.php:181 msgid "Contacts not in any circle" msgstr "" -#: src/Model/Circle.php:608 +#: src/Model/Circle.php:594 msgid "Create a new circle" msgstr "" -#: src/Model/Circle.php:609 src/Module/Circle.php:178 -#: src/Module/Circle.php:201 src/Module/Circle.php:276 +#: src/Model/Circle.php:595 src/Module/Circle.php:166 +#: src/Module/Circle.php:189 src/Module/Circle.php:264 msgid "Circle Name: " msgstr "" -#: src/Model/Circle.php:610 +#: src/Model/Circle.php:596 msgid "Edit circles" msgstr "" -#: src/Model/Contact.php:1257 src/Module/Moderation/Users/Pending.php:102 -#: src/Module/Notifications/Introductions.php:132 -#: src/Module/Notifications/Introductions.php:204 +#: src/Model/Contact.php:1263 src/Module/Moderation/Users/Pending.php:88 +#: src/Module/Notifications/Introductions.php:124 +#: src/Module/Notifications/Introductions.php:196 msgid "Approve" msgstr "Одобряване" -#: src/Model/Contact.php:1735 +#: src/Model/Contact.php:1743 msgid "Organisation" msgstr "" -#: src/Model/Contact.php:1743 +#: src/Model/Contact.php:1751 msgid "Group" msgstr "" -#: src/Model/Contact.php:1747 src/Module/Moderation/BaseUsers.php:130 +#: src/Model/Contact.php:1755 src/Module/Moderation/BaseUsers.php:120 msgid "Relay" msgstr "" -#: src/Model/Contact.php:3050 +#: src/Model/Contact.php:3070 msgid "Disallowed profile URL." msgstr "Отхвърлен профила URL." -#: src/Model/Contact.php:3055 src/Module/Friendica.php:101 +#: src/Model/Contact.php:3075 src/Module/Friendica.php:86 msgid "Blocked domain" msgstr "" -#: src/Model/Contact.php:3060 +#: src/Model/Contact.php:3080 msgid "Connect URL missing." msgstr "Свързване URL липсва." -#: src/Model/Contact.php:3069 +#: src/Model/Contact.php:3089 msgid "" "The contact could not be added. Please check the relevant network " "credentials in your Settings -> Social Networks page." msgstr "" -#: src/Model/Contact.php:3087 +#: src/Model/Contact.php:3107 #, php-format msgid "Expected network %s does not match actual network %s" msgstr "" -#: src/Model/Contact.php:3104 +#: src/Model/Contact.php:3124 msgid "This seems to be a relay account. They can't be followed by users." msgstr "" -#: src/Model/Contact.php:3111 +#: src/Model/Contact.php:3131 msgid "The profile address specified does not provide adequate information." msgstr "Профилът на посочения адрес не предоставя достатъчна информация." -#: src/Model/Contact.php:3113 +#: src/Model/Contact.php:3133 msgid "No compatible communication protocols or feeds were discovered." msgstr "Няма съвместими комуникационни протоколи или фуражите не са били открити." -#: src/Model/Contact.php:3116 +#: src/Model/Contact.php:3136 msgid "An author or name was not found." msgstr "Един автор или име не е намерен." -#: src/Model/Contact.php:3119 +#: src/Model/Contact.php:3139 msgid "No browser URL could be matched to this address." msgstr "Не браузър URL може да съвпадне с този адрес." -#: src/Model/Contact.php:3122 +#: src/Model/Contact.php:3142 msgid "" "Unable to match @-style Identity Address with a known protocol or email " "contact." msgstr "Не мога да съответства @ стил Адрес идентичност с известен протокол или се свържете с имейл." -#: src/Model/Contact.php:3123 +#: src/Model/Contact.php:3143 msgid "Use mailto: in front of address to force email check." msgstr "Използвайте mailto: пред адрес, за да принуди проверка на имейл." -#: src/Model/Contact.php:3129 -msgid "" -"The profile address specified belongs to a network which has been disabled " -"on this site." -msgstr "Профилът адрес принадлежи към мрежа, която е била забранена в този сайт." - -#: src/Model/Contact.php:3134 +#: src/Model/Contact.php:3149 msgid "" "Limited profile. This person will be unable to receive direct/personal " "notifications from you." msgstr "Limited профил. Този човек ще бъде в състояние да получат преки / лична уведомления от вас." -#: src/Model/Contact.php:3200 +#: src/Model/Contact.php:3208 msgid "Unable to retrieve contact information." msgstr "Не мога да получа информация за контакт." -#: src/Model/Event.php:54 +#: src/Model/Event.php:40 msgid "l F d, Y \\@ g:i A \\G\\M\\TP (e)" msgstr "" -#: src/Model/Event.php:75 src/Model/Event.php:92 src/Model/Event.php:469 -#: src/Model/Event.php:942 +#: src/Model/Event.php:61 src/Model/Event.php:78 src/Model/Event.php:455 +#: src/Model/Event.php:928 msgid "Starts:" msgstr "Започва:" -#: src/Model/Event.php:78 src/Model/Event.php:98 src/Model/Event.php:470 -#: src/Model/Event.php:946 +#: src/Model/Event.php:64 src/Model/Event.php:84 src/Model/Event.php:456 +#: src/Model/Event.php:932 msgid "Finishes:" msgstr "Играчи:" -#: src/Model/Event.php:419 +#: src/Model/Event.php:405 msgid "all-day" msgstr "" -#: src/Model/Event.php:445 +#: src/Model/Event.php:431 msgid "Sept" msgstr "" -#: src/Model/Event.php:462 src/Module/Calendar/Show.php:128 -#: src/Util/Temporal.php:343 +#: src/Model/Event.php:448 src/Module/Calendar/Show.php:114 +#: src/Util/Temporal.php:329 msgid "today" msgstr "" -#: src/Model/Event.php:463 src/Module/Calendar/Show.php:129 -#: src/Module/Settings/Display.php:297 src/Util/Temporal.php:353 +#: src/Model/Event.php:449 src/Module/Calendar/Show.php:115 +#: src/Module/Settings/Display.php:280 src/Util/Temporal.php:339 msgid "month" msgstr "месец." -#: src/Model/Event.php:464 src/Module/Calendar/Show.php:130 -#: src/Module/Settings/Display.php:298 src/Util/Temporal.php:354 +#: src/Model/Event.php:450 src/Module/Calendar/Show.php:116 +#: src/Module/Settings/Display.php:281 src/Util/Temporal.php:340 msgid "week" msgstr "седмица" -#: src/Model/Event.php:465 src/Module/Calendar/Show.php:131 -#: src/Module/Settings/Display.php:299 src/Util/Temporal.php:355 +#: src/Model/Event.php:451 src/Module/Calendar/Show.php:117 +#: src/Module/Settings/Display.php:282 src/Util/Temporal.php:341 msgid "day" msgstr "Ден:" -#: src/Model/Event.php:467 +#: src/Model/Event.php:453 msgid "No events to display" msgstr "" -#: src/Model/Event.php:516 src/Module/DFRN/Poll.php:47 src/Module/Feed.php:69 -#: src/Module/Update/Profile.php:56 +#: src/Model/Event.php:502 src/Module/Feed.php:56 +#: src/Module/Update/Profile.php:42 msgid "Access to this profile has been restricted." msgstr "Достъпът до този профил е ограничен." -#: src/Model/Event.php:558 src/Module/Calendar/Event/Show.php:67 +#: src/Model/Event.php:544 src/Module/Calendar/Event/Show.php:53 msgid "Event not found." msgstr "" -#: src/Model/Event.php:637 +#: src/Model/Event.php:623 msgid "l, F j" msgstr "л, F J" -#: src/Model/Event.php:664 +#: src/Model/Event.php:650 msgid "Edit event" msgstr "Редактиране на Събитието" -#: src/Model/Event.php:665 +#: src/Model/Event.php:651 msgid "Duplicate event" msgstr "" -#: src/Model/Event.php:666 +#: src/Model/Event.php:652 msgid "Delete event" msgstr "" -#: src/Model/Event.php:896 src/Module/Debug/Localtime.php:38 +#: src/Model/Event.php:882 src/Module/Debug/Localtime.php:24 msgid "l F d, Y \\@ g:i A" msgstr "L F г, Y \\ @ G: I A" -#: src/Model/Event.php:897 +#: src/Model/Event.php:883 msgid "D g:i A" msgstr "" -#: src/Model/Event.php:898 +#: src/Model/Event.php:884 msgid "g:i A" msgstr "" -#: src/Model/Event.php:961 src/Model/Event.php:963 +#: src/Model/Event.php:947 src/Model/Event.php:949 msgid "Show map" msgstr "" -#: src/Model/Event.php:962 +#: src/Model/Event.php:948 msgid "Hide map" msgstr "" -#: src/Model/Event.php:1055 +#: src/Model/Event.php:1041 #, php-format msgid "%s's birthday" msgstr "" -#: src/Model/Event.php:1056 +#: src/Model/Event.php:1042 #, php-format msgid "Happy Birthday %s" msgstr "Честит рожден ден, %s!" -#: src/Model/Item.php:2305 +#: src/Model/Item.php:2322 #, php-format msgid "%s (%s - %s): %s" msgstr "" -#: src/Model/Item.php:2307 +#: src/Model/Item.php:2324 #, php-format msgid "%s (%s): %s" msgstr "" -#: src/Model/Item.php:2310 +#: src/Model/Item.php:2327 #, php-format -msgid "Detected languages in this post:\\n%s" +msgid "" +"Detected languages in this post:\n" +"%s" msgstr "" -#: src/Model/Item.php:3258 +#: src/Model/Item.php:3276 msgid "activity" msgstr "дейност" -#: src/Model/Item.php:3260 +#: src/Model/Item.php:3278 msgid "comment" msgstr "" -#: src/Model/Item.php:3263 src/Module/Post/Tag/Add.php:123 +#: src/Model/Item.php:3281 src/Module/Post/Tag/Add.php:109 msgid "post" msgstr "след" -#: src/Model/Item.php:3434 +#: src/Model/Item.php:3451 #, php-format msgid "%s is blocked" msgstr "" -#: src/Model/Item.php:3436 +#: src/Model/Item.php:3453 #, php-format msgid "%s is ignored" msgstr "" -#: src/Model/Item.php:3438 +#: src/Model/Item.php:3455 #, php-format msgid "Content from %s is collapsed" msgstr "" -#: src/Model/Item.php:3442 -#, php-format -msgid "Content warning: %s" +#: src/Model/Item.php:3459 +msgid "Sensitive content" msgstr "" -#: src/Model/Item.php:3906 +#: src/Model/Item.php:3928 msgid "bytes" msgstr "байта" -#: src/Model/Item.php:3937 +#: src/Model/Item.php:3959 #, 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:3939 +#: src/Model/Item.php:3961 #, php-format msgid "%2$s (%1$d vote)" msgid_plural "%2$s (%1$d votes)" msgstr[0] "" msgstr[1] "" -#: src/Model/Item.php:3944 +#: src/Model/Item.php:3966 #, php-format msgid "%d voter. Poll end: %s" msgid_plural "%d voters. Poll end: %s" msgstr[0] "" msgstr[1] "" -#: src/Model/Item.php:3946 +#: src/Model/Item.php:3968 #, php-format msgid "%d voter." msgid_plural "%d voters." msgstr[0] "" msgstr[1] "" -#: src/Model/Item.php:3948 +#: src/Model/Item.php:3970 #, php-format msgid "Poll end: %s" msgstr "" -#: src/Model/Item.php:3982 src/Model/Item.php:3983 +#: src/Model/Item.php:4011 src/Model/Item.php:4012 msgid "View on separate page" msgstr "" -#: src/Model/Mail.php:135 +#: src/Model/Mail.php:121 msgid "[no subject]" msgstr "[Без тема]" -#: src/Model/Photo.php:1187 src/Module/Media/Photo/Upload.php:168 +#: src/Model/Photo.php:1194 src/Module/Media/Photo/Upload.php:154 msgid "Wall Photos" msgstr "Стена снимки" -#: src/Model/Profile.php:363 src/Module/Profile/Profile.php:283 -#: src/Module/Profile/Profile.php:285 +#: src/Model/Profile.php:343 src/Module/Profile/Profile.php:271 +#: src/Module/Profile/Profile.php:273 msgid "Edit profile" msgstr "Редактиране на потребителския профил" -#: src/Model/Profile.php:365 +#: src/Model/Profile.php:345 msgid "Change profile photo" msgstr "Промяна на снимката на профил" -#: src/Model/Profile.php:378 src/Module/Directory.php:152 -#: src/Module/Profile/Profile.php:209 +#: src/Model/Profile.php:358 src/Module/Directory.php:139 +#: src/Module/Profile/Profile.php:197 msgid "Homepage:" msgstr "Начална страница:" -#: src/Model/Profile.php:379 src/Module/Contact/Profile.php:412 -#: src/Module/Notifications/Introductions.php:189 +#: src/Model/Profile.php:359 src/Module/Contact/Profile.php:418 +#: src/Module/Notifications/Introductions.php:181 msgid "About:" msgstr "това ?" -#: src/Model/Profile.php:481 +#: src/Model/Profile.php:460 msgid "Atom feed" msgstr "" -#: src/Model/Profile.php:488 +#: src/Model/Profile.php:467 msgid "This website has been verified to belong to the same person." msgstr "" -#: src/Model/Profile.php:539 +#: src/Model/Profile.php:518 msgid "F d" msgstr "F г" -#: src/Model/Profile.php:603 src/Model/Profile.php:680 +#: src/Model/Profile.php:582 src/Model/Profile.php:663 msgid "[today]" msgstr "Днес" -#: src/Model/Profile.php:612 +#: src/Model/Profile.php:591 msgid "Birthday Reminders" msgstr "Напомняния за рождени дни" -#: src/Model/Profile.php:613 +#: src/Model/Profile.php:592 msgid "Birthdays this week:" msgstr "Рождени дни този Седмица:" -#: src/Model/Profile.php:629 +#: src/Model/Profile.php:608 msgid "g A l F d" msgstr "грама Л Е г" -#: src/Model/Profile.php:667 +#: src/Model/Profile.php:650 msgid "[No description]" msgstr "[Няма описание]" -#: src/Model/Profile.php:693 +#: src/Model/Profile.php:676 msgid "Event Reminders" msgstr "Напомняния" -#: src/Model/Profile.php:694 +#: src/Model/Profile.php:677 msgid "Upcoming events the next 7 days:" msgstr "" -#: src/Model/Profile.php:893 -#, php-format -msgid "OpenWebAuth: %1$s welcomes %2$s" -msgstr "" - -#: src/Model/Profile.php:1033 +#: src/Model/Profile.php:789 msgid "Hometown:" msgstr "Hometown:" -#: src/Model/Profile.php:1034 +#: src/Model/Profile.php:790 msgid "Marital Status:" msgstr "" -#: src/Model/Profile.php:1035 +#: src/Model/Profile.php:791 msgid "With:" msgstr "" -#: src/Model/Profile.php:1036 +#: src/Model/Profile.php:792 msgid "Since:" msgstr "" -#: src/Model/Profile.php:1037 +#: src/Model/Profile.php:793 msgid "Sexual Preference:" msgstr "Сексуални предпочитания:" -#: src/Model/Profile.php:1038 +#: src/Model/Profile.php:794 msgid "Political Views:" msgstr "Политически възгледи:" -#: src/Model/Profile.php:1039 +#: src/Model/Profile.php:795 msgid "Religious Views:" msgstr "Религиозни възгледи:" -#: src/Model/Profile.php:1040 +#: src/Model/Profile.php:796 msgid "Likes:" msgstr "Харесвания:" -#: src/Model/Profile.php:1041 +#: src/Model/Profile.php:797 msgid "Dislikes:" msgstr "Нехаресвания:" -#: src/Model/Profile.php:1042 +#: src/Model/Profile.php:798 msgid "Title/Description:" msgstr "Наименование/Описание" -#: src/Model/Profile.php:1043 src/Module/Admin/Summary.php:197 -#: src/Module/Moderation/Report/Create.php:280 -#: src/Module/Moderation/Summary.php:76 +#: src/Model/Profile.php:799 src/Module/Admin/Summary.php:183 +#: src/Module/Moderation/Report/Create.php:266 +#: src/Module/Moderation/Summary.php:62 msgid "Summary" msgstr "Резюме" -#: src/Model/Profile.php:1044 +#: src/Model/Profile.php:800 msgid "Musical interests" msgstr "Музикални интереси" -#: src/Model/Profile.php:1045 +#: src/Model/Profile.php:801 msgid "Books, literature" msgstr "Книги, литература" -#: src/Model/Profile.php:1046 +#: src/Model/Profile.php:802 msgid "Television" msgstr "Телевизия" -#: src/Model/Profile.php:1047 +#: src/Model/Profile.php:803 msgid "Film/dance/culture/entertainment" msgstr "Филм / танц / Култура / забавления" -#: src/Model/Profile.php:1048 +#: src/Model/Profile.php:804 msgid "Hobbies/Interests" msgstr "Хобита / интереси" -#: src/Model/Profile.php:1049 +#: src/Model/Profile.php:805 msgid "Love/romance" msgstr "Любов / романтика" -#: src/Model/Profile.php:1050 +#: src/Model/Profile.php:806 msgid "Work/employment" msgstr "Работа / заетост" -#: src/Model/Profile.php:1051 +#: src/Model/Profile.php:807 msgid "School/education" msgstr "Училище / образование" -#: src/Model/Profile.php:1052 +#: src/Model/Profile.php:808 msgid "Contact information and Social Networks" msgstr "Информация за контакти и социални мрежи" -#: src/Model/User.php:228 src/Model/User.php:1294 +#: src/Model/Profile.php:856 +#, php-format +msgid "Responsible account: %s" +msgstr "" + +#: src/Model/User.php:217 src/Model/User.php:1310 msgid "SERIOUS ERROR: Generation of security keys failed." msgstr "Сериозна грешка: генериране на ключове за защита не успя." -#: src/Model/User.php:728 src/Model/User.php:761 +#: src/Model/User.php:740 src/Model/User.php:773 msgid "Login failed" msgstr "" -#: src/Model/User.php:793 +#: src/Model/User.php:805 msgid "Not enough information to authenticate" msgstr "" -#: src/Model/User.php:914 +#: src/Model/User.php:930 msgid "Password can't be empty" msgstr "" -#: src/Model/User.php:956 +#: src/Model/User.php:972 msgid "Empty passwords are not allowed." msgstr "" -#: src/Model/User.php:960 +#: src/Model/User.php:976 msgid "" "The new password has been exposed in a public data dump, please choose " "another." msgstr "" -#: src/Model/User.php:964 +#: src/Model/User.php:980 msgid "The password length is limited to 72 characters." msgstr "" -#: src/Model/User.php:968 +#: src/Model/User.php:984 msgid "The password can't contain white spaces nor accentuated letters" msgstr "" -#: src/Model/User.php:1177 +#: src/Model/User.php:1193 msgid "Passwords do not match. Password unchanged." msgstr "Паролите не съвпадат. Парола непроменен." -#: src/Model/User.php:1184 +#: src/Model/User.php:1200 msgid "An invitation is required." msgstr "Се изисква покана." -#: src/Model/User.php:1188 +#: src/Model/User.php:1204 msgid "Invitation could not be verified." msgstr "Покана не може да бъде проверена." -#: src/Model/User.php:1196 +#: src/Model/User.php:1212 msgid "Invalid OpenID url" msgstr "Невалиден URL OpenID" -#: src/Model/User.php:1209 src/Security/Authentication.php:241 +#: src/Model/User.php:1225 src/Security/Authentication.php:214 msgid "" "We encountered a problem while logging in with the OpenID you provided. " "Please check the correct spelling of the ID." msgstr "Ние се натъкна на проблем, докато влезете с OpenID, който сте посочили. Моля, проверете правилното изписване на идентификацията." -#: src/Model/User.php:1209 src/Security/Authentication.php:241 +#: src/Model/User.php:1225 src/Security/Authentication.php:214 msgid "The error message was:" msgstr "Съобщението за грешка е:" -#: src/Model/User.php:1215 +#: src/Model/User.php:1231 msgid "Please enter the required information." msgstr "Моля, въведете необходимата информация." -#: src/Model/User.php:1229 +#: src/Model/User.php:1245 #, 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:1236 +#: src/Model/User.php:1252 #, 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:1240 +#: src/Model/User.php:1256 #, 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:1248 +#: src/Model/User.php:1264 msgid "That doesn't appear to be your full (First Last) name." msgstr "Това не изглежда да е пълен (първи Последно) име." -#: src/Model/User.php:1253 +#: src/Model/User.php:1269 msgid "Your email domain is not among those allowed on this site." msgstr "Вашият имейл домейн не е сред тези, разрешени на този сайт." -#: src/Model/User.php:1257 +#: src/Model/User.php:1273 msgid "Not a valid email address." msgstr "Не е валиден имейл адрес." -#: src/Model/User.php:1260 +#: src/Model/User.php:1276 msgid "The nickname was blocked from registration by the nodes admin." msgstr "" -#: src/Model/User.php:1264 src/Model/User.php:1270 +#: src/Model/User.php:1280 src/Model/User.php:1286 msgid "Cannot use that email." msgstr "Не може да се използва този имейл." -#: src/Model/User.php:1276 +#: src/Model/User.php:1292 msgid "Your nickname can only contain a-z, 0-9 and _." msgstr "" -#: src/Model/User.php:1284 src/Model/User.php:1341 +#: src/Model/User.php:1300 src/Model/User.php:1350 msgid "Nickname is already registered. Please choose another." msgstr "Псевдоним вече е регистрирано. Моля, изберете друга." -#: src/Model/User.php:1328 src/Model/User.php:1332 +#: src/Model/User.php:1337 src/Model/User.php:1341 msgid "An error occurred during registration. Please try again." msgstr "Възникна грешка по време на регистрацията. Моля, опитайте отново." -#: src/Model/User.php:1355 +#: src/Model/User.php:1364 msgid "An error occurred creating your default profile. Please try again." msgstr "Възникна грешка при създаването на своя профил по подразбиране. Моля, опитайте отново." -#: src/Model/User.php:1362 +#: src/Model/User.php:1371 msgid "An error occurred creating your self contact. Please try again." msgstr "" -#: src/Model/User.php:1367 +#: src/Model/User.php:1376 msgid "Friends" msgstr "Приятели" -#: src/Model/User.php:1371 +#: src/Model/User.php:1380 msgid "" "An error occurred creating your default contact circle. Please try again." msgstr "" -#: src/Model/User.php:1413 +#: src/Model/User.php:1428 msgid "Profile Photos" msgstr "Снимка на профила" -#: src/Model/User.php:1595 +#: src/Model/User.php:1616 #, php-format msgid "" "\n" @@ -3821,7 +3877,7 @@ msgid "" "\t\t\tthe administrator of %2$s has set up an account for you." msgstr "" -#: src/Model/User.php:1598 +#: src/Model/User.php:1619 #, php-format msgid "" "\n" @@ -3852,12 +3908,12 @@ msgid "" "\t\tThank you and welcome to %4$s." msgstr "" -#: src/Model/User.php:1630 src/Model/User.php:1736 +#: src/Model/User.php:1651 src/Model/User.php:1757 #, php-format msgid "Registration details for %s" msgstr "Регистрационни данни за %s" -#: src/Model/User.php:1650 +#: src/Model/User.php:1671 #, php-format msgid "" "\n" @@ -3872,12 +3928,12 @@ msgid "" "\t\t" msgstr "" -#: src/Model/User.php:1669 +#: src/Model/User.php:1690 #, php-format msgid "Registration at %s" msgstr "" -#: src/Model/User.php:1693 +#: src/Model/User.php:1714 #, php-format msgid "" "\n" @@ -3886,7 +3942,7 @@ msgid "" "\t\t\t" msgstr "" -#: src/Model/User.php:1701 +#: src/Model/User.php:1722 #, php-format msgid "" "\n" @@ -3917,93 +3973,91 @@ msgid "" "\t\t\tThank you and welcome to %2$s." msgstr "" -#: src/Model/User.php:1763 +#: src/Model/User.php:1784 msgid "" "User with delegates can't be removed, please remove delegate users first" msgstr "" -#: src/Module/Admin/Addons/Details.php:65 +#: src/Module/Admin/Addons/Details.php:51 msgid "Addon not found." msgstr "" -#: src/Module/Admin/Addons/Details.php:76 src/Module/Admin/Addons/Index.php:49 +#: src/Module/Admin/Addons/Details.php:62 src/Module/Admin/Addons/Index.php:41 #, php-format msgid "Addon %s disabled." msgstr "" -#: src/Module/Admin/Addons/Details.php:79 src/Module/Admin/Addons/Index.php:51 +#: src/Module/Admin/Addons/Details.php:65 src/Module/Admin/Addons/Index.php:43 #, php-format msgid "Addon %s enabled." msgstr "" -#: src/Module/Admin/Addons/Details.php:88 -#: src/Module/Admin/Themes/Details.php:46 +#: src/Module/Admin/Addons/Details.php:74 +#: src/Module/Admin/Themes/Details.php:38 msgid "Disable" msgstr "забрани" -#: src/Module/Admin/Addons/Details.php:91 -#: src/Module/Admin/Themes/Details.php:49 src/Module/Settings/Display.php:344 +#: src/Module/Admin/Addons/Details.php:77 +#: src/Module/Admin/Themes/Details.php:41 src/Module/Settings/Display.php:326 msgid "Enable" msgstr "Да се активира ли?" -#: src/Module/Admin/Addons/Details.php:111 -#: src/Module/Admin/Addons/Index.php: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: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 -#: src/Module/Moderation/Users/Create.php:61 -#: src/Module/Moderation/Users/Pending.php:96 +#: src/Module/Admin/Addons/Details.php:97 src/Module/Admin/Addons/Index.php:59 +#: src/Module/Admin/Federation.php:206 src/Module/Admin/Logs/Settings.php:74 +#: src/Module/Admin/Logs/View.php:71 src/Module/Admin/Queue.php:59 +#: src/Module/Admin/Site.php:447 src/Module/Admin/Storage.php:124 +#: src/Module/Admin/Summary.php:182 src/Module/Admin/Themes/Details.php:82 +#: src/Module/Admin/Themes/Index.php:103 src/Module/Admin/Tos.php:63 +#: src/Module/Moderation/Users/Create.php:47 +#: src/Module/Moderation/Users/Pending.php:82 msgid "Administration" msgstr "Администриране " -#: src/Module/Admin/Addons/Details.php:112 -#: src/Module/Admin/Addons/Index.php:68 src/Module/BaseAdmin.php:92 -#: src/Module/BaseSettings.php:139 +#: src/Module/Admin/Addons/Details.php:98 src/Module/Admin/Addons/Index.php:60 +#: src/Module/BaseAdmin.php:78 src/Module/BaseSettings.php:125 msgid "Addons" msgstr "" -#: src/Module/Admin/Addons/Details.php:113 -#: src/Module/Admin/Themes/Details.php:92 +#: src/Module/Admin/Addons/Details.php:99 +#: src/Module/Admin/Themes/Details.php:84 msgid "Toggle" msgstr "切換" -#: src/Module/Admin/Addons/Details.php:120 -#: src/Module/Admin/Themes/Details.php:100 +#: src/Module/Admin/Addons/Details.php:106 +#: src/Module/Admin/Themes/Details.php:92 msgid "Author: " msgstr "Автор: " -#: src/Module/Admin/Addons/Details.php:121 -#: src/Module/Admin/Themes/Details.php:101 +#: src/Module/Admin/Addons/Details.php:107 +#: src/Module/Admin/Themes/Details.php:93 msgid "Maintainer: " msgstr "Отговорник: " -#: src/Module/Admin/Addons/Index.php:42 +#: src/Module/Admin/Addons/Index.php:34 msgid "Addons reloaded" msgstr "" -#: src/Module/Admin/Addons/Index.php:53 +#: src/Module/Admin/Addons/Index.php:45 #, php-format 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: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:312 -#: src/Module/Settings/Features.php:76 +#: src/Module/Admin/Addons/Index.php:61 src/Module/Admin/Features.php:69 +#: src/Module/Admin/Logs/Settings.php:76 src/Module/Admin/Site.php:450 +#: src/Module/Admin/Themes/Index.php:105 src/Module/Admin/Tos.php:72 +#: src/Module/Settings/Account.php:549 src/Module/Settings/Addons.php:64 +#: src/Module/Settings/Connectors.php:149 +#: src/Module/Settings/Connectors.php:235 +#: src/Module/Settings/Delegation.php:179 src/Module/Settings/Display.php:295 +#: src/Module/Settings/Features.php:61 msgid "Save Settings" msgstr "" -#: src/Module/Admin/Addons/Index.php:70 +#: src/Module/Admin/Addons/Index.php:62 msgid "Reload active addons" msgstr "" -#: src/Module/Admin/Addons/Index.php:74 +#: src/Module/Admin/Addons/Index.php:66 #, php-format msgid "" "There are currently no addons available on your node. You can find the " @@ -4011,145 +4065,158 @@ msgid "" " the open addon registry at %2$s" msgstr "" -#: src/Module/Admin/DBSync.php:51 +#: src/Module/Admin/DBSync.php:37 msgid "Update has been marked successful" msgstr "Update е маркиран успешно" -#: src/Module/Admin/DBSync.php:59 +#: src/Module/Admin/DBSync.php:45 #, php-format msgid "Database structure update %s was successfully applied." msgstr "" -#: src/Module/Admin/DBSync.php:61 +#: src/Module/Admin/DBSync.php:47 #, php-format msgid "Executing of database structure update %s failed with error: %s" msgstr "" -#: src/Module/Admin/DBSync.php:76 +#: src/Module/Admin/DBSync.php:62 #, php-format msgid "Executing %s failed with error: %s" msgstr "" -#: src/Module/Admin/DBSync.php:78 +#: src/Module/Admin/DBSync.php:64 #, php-format msgid "Update %s was successfully applied." msgstr "Актуализация %s бе успешно приложена." -#: src/Module/Admin/DBSync.php:81 +#: src/Module/Admin/DBSync.php:67 #, php-format msgid "Update %s did not return a status. Unknown if it succeeded." msgstr "Актуализация %s не се връща статус. Известно дали тя успя." -#: src/Module/Admin/DBSync.php:84 +#: src/Module/Admin/DBSync.php:70 #, php-format msgid "There was no additional update function %s that needed to be called." msgstr "" -#: src/Module/Admin/DBSync.php:105 +#: src/Module/Admin/DBSync.php:91 msgid "No failed updates." msgstr "Няма провалени новини." -#: src/Module/Admin/DBSync.php:106 +#: src/Module/Admin/DBSync.php:92 msgid "Check database structure" msgstr "" -#: src/Module/Admin/DBSync.php:110 +#: src/Module/Admin/DBSync.php:96 msgid "Failed Updates" msgstr "Неуспешно Updates" -#: src/Module/Admin/DBSync.php:111 +#: src/Module/Admin/DBSync.php:97 msgid "" "This does not include updates prior to 1139, which did not return a status." msgstr "Това не включва актуализации, преди 1139, които не връщат статута." -#: src/Module/Admin/DBSync.php:112 +#: src/Module/Admin/DBSync.php:98 msgid "Mark success (if update was manually applied)" msgstr "Марк успех (ако актуализация е ръчно прилага)" -#: src/Module/Admin/DBSync.php:113 +#: src/Module/Admin/DBSync.php:99 msgid "Attempt to execute this update step automatically" msgstr "Опита да изпълни тази стъпка се обновяват автоматично" -#: src/Module/Admin/Features.php:76 -#, php-format -msgid "Lock feature %s" +#: src/Module/Admin/Features.php:53 +#: src/Module/Notifications/Introductions.php:136 +#: src/Module/OAuth/Acknowledge.php:41 src/Module/Register.php:124 +#: src/Module/Settings/TwoFactor/Trusted.php:115 +msgid "No" +msgstr "Не" + +#: src/Module/Admin/Features.php:53 src/Module/Contact/Revoke.php:91 +#: src/Module/Notifications/Introductions.php:136 +#: src/Module/OAuth/Acknowledge.php:40 src/Module/Register.php:123 +#: src/Module/Settings/TwoFactor/Trusted.php:115 +msgid "Yes" +msgstr "Yes" + +#: src/Module/Admin/Features.php:53 +msgid "Locked" msgstr "" -#: src/Module/Admin/Features.php:84 +#: src/Module/Admin/Features.php:67 msgid "Manage Additional Features" msgstr "" -#: src/Module/Admin/Federation.php:80 -#: src/Module/Moderation/Report/Create.php:191 -#: src/Module/Moderation/Report/Create.php:316 +#: src/Module/Admin/Federation.php:68 +#: src/Module/Moderation/Report/Create.php:177 +#: src/Module/Moderation/Report/Create.php:302 msgid "Other" msgstr "Друг" -#: src/Module/Admin/Federation.php:158 src/Module/Admin/Federation.php:407 +#: src/Module/Admin/Federation.php:146 src/Module/Admin/Federation.php:394 msgid "unknown" msgstr "" -#: src/Module/Admin/Federation.php:191 +#: src/Module/Admin/Federation.php:179 #, php-format msgid "%2$s total system" msgid_plural "%2$s total systems" msgstr[0] "" msgstr[1] "" -#: src/Module/Admin/Federation.php:192 +#: src/Module/Admin/Federation.php:180 #, php-format msgid "%2$s active user last month" msgid_plural "%2$s active users last month" msgstr[0] "" msgstr[1] "" -#: src/Module/Admin/Federation.php:193 +#: src/Module/Admin/Federation.php:181 #, php-format msgid "%2$s active user last six months" msgid_plural "%2$s active users last six months" msgstr[0] "" msgstr[1] "" -#: src/Module/Admin/Federation.php:194 +#: src/Module/Admin/Federation.php:182 #, php-format msgid "%2$s registered user" msgid_plural "%2$s registered users" msgstr[0] "" msgstr[1] "" -#: src/Module/Admin/Federation.php:195 +#: src/Module/Admin/Federation.php:183 #, php-format msgid "%2$s locally created post or comment" msgid_plural "%2$s locally created posts and comments" msgstr[0] "" msgstr[1] "" -#: src/Module/Admin/Federation.php:198 +#: src/Module/Admin/Federation.php:186 #, php-format msgid "%2$s post per user" msgid_plural "%2$s posts per user" msgstr[0] "" msgstr[1] "" -#: src/Module/Admin/Federation.php:203 +#: src/Module/Admin/Federation.php:191 #, php-format msgid "%2$s user per system" msgid_plural "%2$s users per system" msgstr[0] "" msgstr[1] "" -#: src/Module/Admin/Federation.php:213 +#: src/Module/Admin/Federation.php:201 msgid "" "This page offers you some numbers to the known part of the federated social " "network your Friendica node is part of. These numbers are not complete but " "only reflect the part of the network your node is aware of." msgstr "" -#: src/Module/Admin/Federation.php:219 src/Module/BaseAdmin.php:87 +#: src/Module/Admin/Federation.php:207 src/Module/BaseAdmin.php:73 msgid "Federation Statistics" msgstr "" -#: src/Module/Admin/Federation.php:223 +#: src/Module/Admin/Federation.php:210 #, php-format msgid "" "Currently this node is aware of %2$s node (%3$s active users last month, " @@ -4162,58 +4229,58 @@ msgid_plural "" msgstr[0] "" msgstr[1] "" -#: src/Module/Admin/Logs/Settings.php:47 +#: src/Module/Admin/Logs/Settings.php:33 #, php-format msgid "The logfile '%s' is not writable. No logging possible" msgstr "" -#: src/Module/Admin/Logs/Settings.php:77 +#: src/Module/Admin/Logs/Settings.php:66 msgid "PHP log currently enabled." msgstr "" -#: src/Module/Admin/Logs/Settings.php:79 +#: src/Module/Admin/Logs/Settings.php:68 msgid "PHP log currently disabled." msgstr "" -#: src/Module/Admin/Logs/Settings.php:86 src/Module/BaseAdmin.php:102 -#: src/Module/BaseAdmin.php:103 +#: src/Module/Admin/Logs/Settings.php:75 src/Module/BaseAdmin.php:88 +#: src/Module/BaseAdmin.php:89 msgid "Logs" msgstr "Дневници" -#: src/Module/Admin/Logs/Settings.php:88 +#: src/Module/Admin/Logs/Settings.php:77 msgid "Clear" msgstr "Безцветен " -#: src/Module/Admin/Logs/Settings.php:91 +#: src/Module/Admin/Logs/Settings.php:80 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:480 -#: src/Module/Admin/Site.php:488 +#: src/Module/Admin/Logs/Settings.php:80 src/Module/Admin/Logs/Settings.php:81 +#: src/Module/Admin/Logs/Settings.php:82 src/Module/Admin/Site.php:470 +#: src/Module/Admin/Site.php:478 msgid "" "Read-only because it is set by an environment variable" msgstr "" -#: src/Module/Admin/Logs/Settings.php:92 +#: src/Module/Admin/Logs/Settings.php:81 msgid "Log file" msgstr "Регистрационен файл" -#: src/Module/Admin/Logs/Settings.php:92 +#: src/Module/Admin/Logs/Settings.php:81 msgid "" "Must be writable by web server. Relative to your Friendica top-level " "directory." msgstr "Трябва да бъде записван от уеб сървър. В сравнение с вашата Friendica най-високо ниво директория." -#: src/Module/Admin/Logs/Settings.php:93 +#: src/Module/Admin/Logs/Settings.php:82 msgid "Log level" msgstr "Вход ниво" -#: src/Module/Admin/Logs/Settings.php:95 +#: src/Module/Admin/Logs/Settings.php:84 msgid "PHP logging" msgstr "" -#: src/Module/Admin/Logs/Settings.php:96 +#: src/Module/Admin/Logs/Settings.php:85 msgid "" "To temporarily enable logging of PHP errors and warnings you can prepend the" " following to the index.php file of your installation. The filename set in " @@ -4222,398 +4289,407 @@ msgid "" "'display_errors' is to enable these options, set to '0' to disable them." msgstr "" -#: src/Module/Admin/Logs/View.php:70 +#: src/Module/Admin/Logs/View.php:58 #, php-format msgid "" "Error trying to open %1$s log file.
Check to see if " "file %1$s exist and is readable." msgstr "" -#: src/Module/Admin/Logs/View.php:79 +#: src/Module/Admin/Logs/View.php:67 #, php-format msgid "" "Couldn't open %1$s log file.
Check to see if file %1$s " "is readable." msgstr "" -#: src/Module/Admin/Logs/View.php:84 src/Module/BaseAdmin.php:104 +#: src/Module/Admin/Logs/View.php:72 src/Module/BaseAdmin.php:90 msgid "View Logs" msgstr "" -#: src/Module/Admin/Logs/View.php:87 +#: src/Module/Admin/Logs/View.php:75 msgid "Search in logs" msgstr "" -#: src/Module/Admin/Logs/View.php:88 -#: src/Module/Notifications/Notifications.php:140 +#: src/Module/Admin/Logs/View.php:76 +#: src/Module/Notifications/Notifications.php:132 msgid "Show all" msgstr "" -#: src/Module/Admin/Logs/View.php:89 +#: src/Module/Admin/Logs/View.php:77 msgid "Date" msgstr "" -#: src/Module/Admin/Logs/View.php:90 +#: src/Module/Admin/Logs/View.php:78 msgid "Level" msgstr "" -#: src/Module/Admin/Logs/View.php:91 +#: src/Module/Admin/Logs/View.php:79 msgid "Context" msgstr "" -#: src/Module/Admin/Logs/View.php:93 +#: src/Module/Admin/Logs/View.php:81 msgid "ALL" msgstr "" -#: src/Module/Admin/Logs/View.php:94 +#: src/Module/Admin/Logs/View.php:82 msgid "View details" msgstr "" -#: src/Module/Admin/Logs/View.php:95 +#: src/Module/Admin/Logs/View.php:83 msgid "Click to view details" msgstr "" -#: src/Module/Admin/Logs/View.php:96 src/Module/Calendar/Event/Form.php:207 +#: src/Module/Admin/Logs/View.php:84 src/Module/Calendar/Event/Form.php:193 msgid "Event details" msgstr "Подробности за събитието" -#: src/Module/Admin/Logs/View.php:97 +#: src/Module/Admin/Logs/View.php:85 msgid "Data" msgstr "" -#: src/Module/Admin/Logs/View.php:98 -#: src/Module/Debug/ActivityPubConversion.php:57 +#: src/Module/Admin/Logs/View.php:86 +#: src/Module/Debug/ActivityPubConversion.php:49 msgid "Source" msgstr "" -#: src/Module/Admin/Logs/View.php:99 +#: src/Module/Admin/Logs/View.php:87 msgid "File" msgstr "" -#: src/Module/Admin/Logs/View.php:100 +#: src/Module/Admin/Logs/View.php:88 msgid "Line" msgstr "" -#: src/Module/Admin/Logs/View.php:101 +#: src/Module/Admin/Logs/View.php:89 msgid "Function" msgstr "" -#: src/Module/Admin/Logs/View.php:102 +#: src/Module/Admin/Logs/View.php:90 msgid "UID" msgstr "" -#: src/Module/Admin/Logs/View.php:103 +#: src/Module/Admin/Logs/View.php:91 msgid "Process ID" msgstr "" -#: src/Module/Admin/Logs/View.php:104 +#: src/Module/Admin/Logs/View.php:92 msgid "Close" msgstr "" -#: src/Module/Admin/Queue.php:50 +#: src/Module/Admin/Queue.php:36 msgid "Inspect Deferred Worker Queue" msgstr "" -#: src/Module/Admin/Queue.php:51 +#: src/Module/Admin/Queue.php:37 msgid "" "This page lists the deferred worker jobs. This are jobs that couldn't be " "executed at the first time." msgstr "" -#: src/Module/Admin/Queue.php:54 +#: src/Module/Admin/Queue.php:40 msgid "Inspect Worker Queue" msgstr "" -#: src/Module/Admin/Queue.php:55 +#: src/Module/Admin/Queue.php:41 msgid "" "This page lists the currently queued worker jobs. These jobs are handled by " "the worker cronjob you've set up during install." msgstr "" -#: src/Module/Admin/Queue.php:75 +#: src/Module/Admin/Queue.php:62 msgid "ID" msgstr "" -#: src/Module/Admin/Queue.php:76 +#: src/Module/Admin/Queue.php:63 msgid "Command" msgstr "" -#: src/Module/Admin/Queue.php:77 +#: src/Module/Admin/Queue.php:64 msgid "Job Parameters" msgstr "" -#: src/Module/Admin/Queue.php:78 src/Module/Moderation/Reports.php:95 -#: src/Module/Settings/OAuth.php:74 +#: src/Module/Admin/Queue.php:65 src/Module/Moderation/Reports.php:102 +#: src/Module/Settings/OAuth.php:60 msgid "Created" msgstr "" -#: src/Module/Admin/Queue.php:79 +#: src/Module/Admin/Queue.php:66 +msgid "Next Try" +msgstr "" + +#: src/Module/Admin/Queue.php:67 msgid "Priority" msgstr "" -#: src/Module/Admin/Site.php:244 +#: src/Module/Admin/Site.php:230 +#, php-format +msgid "%s is no valid input for maximum media size" +msgstr "" + +#: src/Module/Admin/Site.php:235 #, php-format msgid "%s is no valid input for maximum image size" msgstr "" -#: src/Module/Admin/Site.php:372 src/Module/Settings/Display.php:217 +#: src/Module/Admin/Site.php:362 src/Module/Settings/Display.php:201 msgid "No special theme for mobile devices" msgstr "" -#: src/Module/Admin/Site.php:389 src/Module/Settings/Display.php:227 +#: src/Module/Admin/Site.php:379 src/Module/Settings/Display.php:211 #, php-format msgid "%s - (Experimental)" msgstr "" -#: src/Module/Admin/Site.php:401 +#: src/Module/Admin/Site.php:391 msgid "No community page" msgstr "" -#: src/Module/Admin/Site.php:402 +#: src/Module/Admin/Site.php:392 msgid "No community page for visitors" msgstr "" -#: src/Module/Admin/Site.php:403 +#: src/Module/Admin/Site.php:393 msgid "Public postings from users of this site" msgstr "" -#: src/Module/Admin/Site.php:404 +#: src/Module/Admin/Site.php:394 msgid "Public postings from the federated network" msgstr "" -#: src/Module/Admin/Site.php:405 +#: src/Module/Admin/Site.php:395 msgid "Public postings from local users and the federated network" msgstr "" -#: src/Module/Admin/Site.php:411 +#: src/Module/Admin/Site.php:401 msgid "Multi user instance" msgstr "" -#: src/Module/Admin/Site.php:434 +#: src/Module/Admin/Site.php:424 msgid "Closed" msgstr "Затворен" -#: src/Module/Admin/Site.php:435 +#: src/Module/Admin/Site.php:425 msgid "Requires approval" msgstr "Изисква одобрение" -#: src/Module/Admin/Site.php:436 +#: src/Module/Admin/Site.php:426 msgid "Open" msgstr "Отворена." -#: src/Module/Admin/Site.php:440 +#: src/Module/Admin/Site.php:430 msgid "Don't check" msgstr "" -#: src/Module/Admin/Site.php:441 +#: src/Module/Admin/Site.php:431 msgid "check the stable version" msgstr "" -#: src/Module/Admin/Site.php:442 +#: src/Module/Admin/Site.php:432 msgid "check the development version" msgstr "" -#: src/Module/Admin/Site.php:446 +#: src/Module/Admin/Site.php:436 msgid "none" msgstr "" -#: src/Module/Admin/Site.php:447 +#: src/Module/Admin/Site.php:437 msgid "Local contacts" msgstr "" -#: src/Module/Admin/Site.php:448 +#: src/Module/Admin/Site.php:438 msgid "Interactors" msgstr "" -#: src/Module/Admin/Site.php:458 src/Module/BaseAdmin.php:90 +#: src/Module/Admin/Site.php:448 src/Module/BaseAdmin.php:76 msgid "Site" msgstr "Сайт" -#: src/Module/Admin/Site.php:459 +#: src/Module/Admin/Site.php:449 msgid "General Information" msgstr "" -#: src/Module/Admin/Site.php:461 +#: src/Module/Admin/Site.php:451 msgid "Republish users to directory" msgstr "" -#: src/Module/Admin/Site.php:462 src/Module/Register.php:152 +#: src/Module/Admin/Site.php:452 src/Module/Register.php:145 msgid "Registration" msgstr "Регистрация" -#: src/Module/Admin/Site.php:463 +#: src/Module/Admin/Site.php:453 msgid "File upload" msgstr "Прикачване на файлове" -#: src/Module/Admin/Site.php:464 +#: src/Module/Admin/Site.php:454 msgid "Policies" msgstr "Политики" -#: src/Module/Admin/Site.php:465 src/Module/Calendar/Event/Form.php:252 -#: src/Module/Contact.php:546 src/Module/Profile/Profile.php:276 +#: src/Module/Admin/Site.php:455 src/Module/Calendar/Event/Form.php:238 +#: src/Module/Contact.php:528 src/Module/Profile/Profile.php:264 msgid "Advanced" msgstr "Напреднал" -#: src/Module/Admin/Site.php:466 +#: src/Module/Admin/Site.php:456 msgid "Auto Discovered Contact Directory" msgstr "" -#: src/Module/Admin/Site.php:467 +#: src/Module/Admin/Site.php:457 msgid "Performance" msgstr "Производителност" -#: src/Module/Admin/Site.php:468 +#: src/Module/Admin/Site.php:458 msgid "Worker" msgstr "" -#: src/Module/Admin/Site.php:469 +#: src/Module/Admin/Site.php:459 msgid "Message Relay" msgstr "" -#: src/Module/Admin/Site.php:470 +#: src/Module/Admin/Site.php:460 msgid "" "Use the command \"console relay\" in the command line to add or remove " "relays." msgstr "" -#: src/Module/Admin/Site.php:471 +#: src/Module/Admin/Site.php:461 msgid "The system is not subscribed to any relays at the moment." msgstr "" -#: src/Module/Admin/Site.php:472 +#: src/Module/Admin/Site.php:462 msgid "The system is currently subscribed to the following relays:" msgstr "" -#: src/Module/Admin/Site.php:475 +#: src/Module/Admin/Site.php:465 msgid "Relocate Node" msgstr "" -#: src/Module/Admin/Site.php:476 +#: src/Module/Admin/Site.php:466 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:477 +#: src/Module/Admin/Site.php:467 msgid "(Friendica directory)# bin/console relocate https://newdomain.com" msgstr "" -#: src/Module/Admin/Site.php:480 +#: src/Module/Admin/Site.php:470 msgid "Site name" msgstr "Име на сайта" -#: src/Module/Admin/Site.php:481 +#: src/Module/Admin/Site.php:471 msgid "Sender Email" msgstr "" -#: src/Module/Admin/Site.php:481 +#: src/Module/Admin/Site.php:471 msgid "" "The email address your server shall use to send notification emails from." msgstr "" -#: src/Module/Admin/Site.php:482 +#: src/Module/Admin/Site.php:472 msgid "Name of the system actor" msgstr "" -#: src/Module/Admin/Site.php:482 +#: src/Module/Admin/Site.php:472 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:483 +#: src/Module/Admin/Site.php:473 msgid "Banner/Logo" msgstr "Банер / лого" -#: src/Module/Admin/Site.php:484 +#: src/Module/Admin/Site.php:474 msgid "Email Banner/Logo" msgstr "" -#: src/Module/Admin/Site.php:485 +#: src/Module/Admin/Site.php:475 msgid "Shortcut icon" msgstr "" -#: src/Module/Admin/Site.php:485 +#: src/Module/Admin/Site.php:475 msgid "Link to an icon that will be used for browsers." msgstr "" -#: src/Module/Admin/Site.php:486 +#: src/Module/Admin/Site.php:476 msgid "Touch icon" msgstr "" -#: src/Module/Admin/Site.php:486 +#: src/Module/Admin/Site.php:476 msgid "Link to an icon that will be used for tablets and mobiles." msgstr "" -#: src/Module/Admin/Site.php:487 +#: src/Module/Admin/Site.php:477 msgid "Additional Info" msgstr "" -#: src/Module/Admin/Site.php:487 +#: src/Module/Admin/Site.php:477 #, 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:488 +#: src/Module/Admin/Site.php:478 msgid "System language" msgstr "Системен език" -#: src/Module/Admin/Site.php:489 +#: src/Module/Admin/Site.php:479 msgid "System theme" msgstr "Системна тема" -#: src/Module/Admin/Site.php:489 +#: src/Module/Admin/Site.php:479 #, php-format msgid "" "Default system theme - may be over-ridden by user profiles - Change default theme settings" msgstr "" -#: src/Module/Admin/Site.php:490 +#: src/Module/Admin/Site.php:480 msgid "Mobile system theme" msgstr "" -#: src/Module/Admin/Site.php:490 +#: src/Module/Admin/Site.php:480 msgid "Theme for mobile devices" msgstr "" -#: src/Module/Admin/Site.php:491 +#: src/Module/Admin/Site.php:481 msgid "Force SSL" msgstr "" -#: src/Module/Admin/Site.php:491 +#: src/Module/Admin/Site.php:481 msgid "" "Force all Non-SSL requests to SSL - Attention: on some systems it could lead" " to endless loops." msgstr "" -#: src/Module/Admin/Site.php:492 +#: src/Module/Admin/Site.php:482 msgid "Show help entry from navigation menu" msgstr "" -#: src/Module/Admin/Site.php:492 +#: src/Module/Admin/Site.php:482 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:493 +#: src/Module/Admin/Site.php:483 msgid "Single user instance" msgstr "" -#: src/Module/Admin/Site.php:493 +#: src/Module/Admin/Site.php:483 msgid "Make this instance multi-user or single-user for the named user" msgstr "" -#: src/Module/Admin/Site.php:495 +#: src/Module/Admin/Site.php:485 msgid "Maximum image size" msgstr "Максимален размер на изображението" -#: src/Module/Admin/Site.php:495 +#: src/Module/Admin/Site.php:485 #, 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 +4697,47 @@ 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:499 +#: src/Module/Admin/Site.php:489 msgid "Maximum image length" msgstr "" -#: src/Module/Admin/Site.php:499 +#: src/Module/Admin/Site.php:489 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:500 +#: src/Module/Admin/Site.php:490 msgid "JPEG image quality" msgstr "" -#: src/Module/Admin/Site.php:500 +#: src/Module/Admin/Site.php:490 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:502 +#: src/Module/Admin/Site.php:491 +msgid "Maximum media file size" +msgstr "" + +#: src/Module/Admin/Site.php:491 +#, php-format +msgid "" +"Maximum size in bytes of uploaded media files. Default is 0, which means no limits. You can put k, m, or g behind the desired value for KiB, MiB, GiB, respectively.\n" +"\t\t\t\t\t\t\t\t\t\t\t\t\tThe value of upload_max_filesize in your PHP.ini needs be set to at least the desired limit.\n" +"\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:496 msgid "Register policy" msgstr "Регистрирайте политика" -#: src/Module/Admin/Site.php:503 +#: src/Module/Admin/Site.php:497 msgid "Maximum Users" msgstr "" -#: src/Module/Admin/Site.php:503 +#: src/Module/Admin/Site.php:497 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,167 +4745,167 @@ msgid "" "not when the policy is set to approval." msgstr "" -#: src/Module/Admin/Site.php:504 +#: src/Module/Admin/Site.php:498 msgid "Maximum Daily Registrations" msgstr "" -#: src/Module/Admin/Site.php:504 +#: src/Module/Admin/Site.php:498 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:505 +#: src/Module/Admin/Site.php:499 msgid "Register text" msgstr "Регистрирайте се текст" -#: src/Module/Admin/Site.php:505 +#: src/Module/Admin/Site.php:499 msgid "" "Will be displayed prominently on the registration page. You can use BBCode " "here." msgstr "" -#: src/Module/Admin/Site.php:506 +#: src/Module/Admin/Site.php:500 msgid "Forbidden Nicknames" msgstr "" -#: src/Module/Admin/Site.php:506 +#: src/Module/Admin/Site.php:500 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:507 +#: src/Module/Admin/Site.php:501 msgid "Accounts abandoned after x days" msgstr "Сметките изоставени след дни х" -#: src/Module/Admin/Site.php:507 +#: src/Module/Admin/Site.php:501 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:508 +#: src/Module/Admin/Site.php:502 msgid "Allowed friend domains" msgstr "Позволи на домейни приятел" -#: src/Module/Admin/Site.php:508 +#: src/Module/Admin/Site.php:502 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:509 +#: src/Module/Admin/Site.php:503 msgid "Allowed email domains" msgstr "Позволи на домейни имейл" -#: src/Module/Admin/Site.php:509 +#: src/Module/Admin/Site.php:503 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:510 +#: src/Module/Admin/Site.php:504 msgid "Disallowed email domains" msgstr "" -#: src/Module/Admin/Site.php:510 +#: src/Module/Admin/Site.php:504 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 +#: src/Module/Admin/Site.php:505 msgid "No OEmbed rich content" msgstr "" -#: src/Module/Admin/Site.php:511 +#: src/Module/Admin/Site.php:505 msgid "" "Don't show the rich content (e.g. embedded PDF), except from the domains " "listed below." msgstr "" -#: src/Module/Admin/Site.php:512 +#: src/Module/Admin/Site.php:506 msgid "Trusted third-party domains" msgstr "" -#: src/Module/Admin/Site.php:512 +#: src/Module/Admin/Site.php:506 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:513 +#: src/Module/Admin/Site.php:507 msgid "Block public" msgstr "Блокиране на обществения" -#: src/Module/Admin/Site.php:513 +#: src/Module/Admin/Site.php:507 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:514 +#: src/Module/Admin/Site.php:508 msgid "Force publish" msgstr "Принудително публикува" -#: src/Module/Admin/Site.php:514 +#: src/Module/Admin/Site.php:508 msgid "" "Check to force all profiles on this site to be listed in the site directory." msgstr "Проверете, за да се принудят всички профили на този сайт да бъдат изброени в директорията на сайта." -#: src/Module/Admin/Site.php:514 +#: src/Module/Admin/Site.php:508 msgid "Enabling this may violate privacy laws like the GDPR" msgstr "" -#: src/Module/Admin/Site.php:515 +#: src/Module/Admin/Site.php:509 msgid "Global directory URL" msgstr "" -#: src/Module/Admin/Site.php:515 +#: src/Module/Admin/Site.php:509 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:516 +#: src/Module/Admin/Site.php:510 msgid "Private posts by default for new users" msgstr "" -#: src/Module/Admin/Site.php:516 +#: src/Module/Admin/Site.php:510 msgid "" "Set default post permissions for all new members to the default privacy " "circle rather than public." msgstr "" -#: src/Module/Admin/Site.php:517 +#: src/Module/Admin/Site.php:511 msgid "Don't include post content in email notifications" msgstr "" -#: src/Module/Admin/Site.php:517 +#: src/Module/Admin/Site.php:511 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:518 +#: src/Module/Admin/Site.php:512 msgid "Disallow public access to addons listed in the apps menu." msgstr "" -#: src/Module/Admin/Site.php:518 +#: src/Module/Admin/Site.php:512 msgid "" "Checking this box will restrict addons listed in the apps menu to members " "only." msgstr "" -#: src/Module/Admin/Site.php:519 +#: src/Module/Admin/Site.php:513 msgid "Don't embed private images in posts" msgstr "" -#: src/Module/Admin/Site.php:519 +#: src/Module/Admin/Site.php:513 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 " @@ -4825,11 +4913,11 @@ msgid "" "while." msgstr "" -#: src/Module/Admin/Site.php:520 +#: src/Module/Admin/Site.php:514 msgid "Explicit Content" msgstr "" -#: src/Module/Admin/Site.php:520 +#: src/Module/Admin/Site.php:514 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 " @@ -4838,339 +4926,319 @@ msgid "" "will be shown at the user registration page." msgstr "" -#: src/Module/Admin/Site.php:521 -msgid "Proxify external content" -msgstr "" - -#: 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:522 +#: src/Module/Admin/Site.php:515 msgid "Only local search" msgstr "" -#: src/Module/Admin/Site.php:522 +#: src/Module/Admin/Site.php:515 msgid "" "Blocks search for users who are not logged in to prevent crawlers from " "blocking your system." msgstr "" -#: src/Module/Admin/Site.php:523 +#: src/Module/Admin/Site.php:516 msgid "Blocked tags for trending tags" msgstr "" -#: src/Module/Admin/Site.php:523 +#: src/Module/Admin/Site.php:516 msgid "" "Comma separated list of hashtags that shouldn't be displayed in the trending" " tags." msgstr "" -#: src/Module/Admin/Site.php:524 +#: src/Module/Admin/Site.php:517 msgid "Cache contact avatars" msgstr "" -#: src/Module/Admin/Site.php:524 +#: src/Module/Admin/Site.php:517 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:525 +#: src/Module/Admin/Site.php:518 msgid "Allow Users to set remote_self" msgstr "" -#: src/Module/Admin/Site.php:525 +#: src/Module/Admin/Site.php:518 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:526 +#: src/Module/Admin/Site.php:519 msgid "Allow Users to set up relay channels" msgstr "" -#: src/Module/Admin/Site.php:526 +#: src/Module/Admin/Site.php:519 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:527 +#: src/Module/Admin/Site.php:520 msgid "Adjust the feed poll frequency" msgstr "" -#: src/Module/Admin/Site.php:527 +#: src/Module/Admin/Site.php:520 msgid "Automatically detect and set the best feed poll frequency." msgstr "" -#: src/Module/Admin/Site.php:528 +#: src/Module/Admin/Site.php:521 msgid "Minimum poll interval" msgstr "" -#: src/Module/Admin/Site.php:528 +#: src/Module/Admin/Site.php:521 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:529 +#: src/Module/Admin/Site.php:522 msgid "Enable multiple registrations" msgstr "" -#: src/Module/Admin/Site.php:529 +#: src/Module/Admin/Site.php:522 msgid "Enable users to register additional accounts for use as pages." msgstr "" -#: src/Module/Admin/Site.php:530 +#: src/Module/Admin/Site.php:523 msgid "Enable OpenID" msgstr "" -#: src/Module/Admin/Site.php:530 +#: src/Module/Admin/Site.php:523 msgid "Enable OpenID support for registration and logins." msgstr "" -#: src/Module/Admin/Site.php:531 +#: src/Module/Admin/Site.php:524 msgid "Enable full name check" msgstr "" -#: src/Module/Admin/Site.php:531 +#: src/Module/Admin/Site.php:524 msgid "" "Prevents users from registering with a display name with fewer than two " "parts separated by spaces." msgstr "" -#: src/Module/Admin/Site.php:532 +#: src/Module/Admin/Site.php:525 msgid "Email administrators on new registration" msgstr "" -#: src/Module/Admin/Site.php:532 +#: src/Module/Admin/Site.php:525 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:533 +#: src/Module/Admin/Site.php:526 msgid "Community pages for visitors" msgstr "" -#: src/Module/Admin/Site.php:533 +#: src/Module/Admin/Site.php:526 msgid "" "Which community pages should be available for visitors. Local users always " "see both pages." msgstr "" -#: src/Module/Admin/Site.php:534 +#: src/Module/Admin/Site.php:527 msgid "Posts per user on community page" msgstr "" -#: src/Module/Admin/Site.php:534 +#: src/Module/Admin/Site.php:527 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:535 +#: src/Module/Admin/Site.php:528 msgid "Posts per server on community page" msgstr "" -#: src/Module/Admin/Site.php:535 +#: src/Module/Admin/Site.php:528 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:537 +#: src/Module/Admin/Site.php:530 msgid "Enable Mail support" msgstr "" -#: src/Module/Admin/Site.php:537 +#: src/Module/Admin/Site.php:530 msgid "" "Enable built-in mail support to poll IMAP folders and to reply via mail." msgstr "" -#: src/Module/Admin/Site.php:538 +#: src/Module/Admin/Site.php:531 msgid "" "Mail support can't be enabled because the PHP IMAP module is not installed." msgstr "" -#: src/Module/Admin/Site.php:539 -msgid "Enable OStatus support" -msgstr "" - -#: 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:541 +#: src/Module/Admin/Site.php:533 msgid "" "Diaspora support can't be enabled because Friendica was installed into a sub" " directory." msgstr "" -#: src/Module/Admin/Site.php:542 +#: src/Module/Admin/Site.php:534 msgid "Enable Diaspora support" msgstr "Активирайте диаспора подкрепа" -#: src/Module/Admin/Site.php:542 +#: src/Module/Admin/Site.php:534 msgid "" "Enable built-in Diaspora network compatibility for communicating with " "diaspora servers." msgstr "" -#: src/Module/Admin/Site.php:543 +#: src/Module/Admin/Site.php:535 msgid "Verify SSL" msgstr "Провери SSL" -#: src/Module/Admin/Site.php:543 +#: src/Module/Admin/Site.php:535 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:544 +#: src/Module/Admin/Site.php:536 msgid "Proxy user" msgstr "Proxy потребител" -#: src/Module/Admin/Site.php:544 +#: src/Module/Admin/Site.php:536 msgid "User name for the proxy server." msgstr "" -#: src/Module/Admin/Site.php:545 +#: src/Module/Admin/Site.php:537 msgid "Proxy URL" msgstr "Proxy URL" -#: src/Module/Admin/Site.php:545 +#: src/Module/Admin/Site.php:537 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:546 +#: src/Module/Admin/Site.php:538 msgid "Network timeout" msgstr "Мрежа изчакване" -#: src/Module/Admin/Site.php:546 +#: src/Module/Admin/Site.php:538 msgid "Value is in seconds. Set to 0 for unlimited (not recommended)." msgstr "Стойността е в секунди. Настройте на 0 за неограничен (не се препоръчва)." -#: src/Module/Admin/Site.php:547 +#: src/Module/Admin/Site.php:539 msgid "Maximum Load Average" msgstr "Максимално натоварване" -#: src/Module/Admin/Site.php:547 +#: src/Module/Admin/Site.php:539 #, php-format msgid "" "Maximum system load before delivery and poll processes are deferred - " "default %d." msgstr "" -#: src/Module/Admin/Site.php:548 +#: src/Module/Admin/Site.php:540 msgid "Minimal Memory" msgstr "" -#: src/Module/Admin/Site.php:548 +#: src/Module/Admin/Site.php:540 msgid "" "Minimal free memory in MB for the worker. Needs access to /proc/meminfo - " "default 0 (deactivated)." msgstr "" -#: src/Module/Admin/Site.php:549 +#: src/Module/Admin/Site.php:541 msgid "Periodically optimize tables" msgstr "" -#: src/Module/Admin/Site.php:549 +#: src/Module/Admin/Site.php:541 msgid "Periodically optimize tables like the cache and the workerqueue" msgstr "" -#: src/Module/Admin/Site.php:551 +#: src/Module/Admin/Site.php:543 msgid "Discover followers/followings from contacts" msgstr "" -#: src/Module/Admin/Site.php:551 +#: src/Module/Admin/Site.php:543 msgid "" "If enabled, contacts are checked for their followers and following contacts." msgstr "" -#: src/Module/Admin/Site.php:552 +#: src/Module/Admin/Site.php:544 msgid "None - deactivated" msgstr "" -#: src/Module/Admin/Site.php:553 +#: src/Module/Admin/Site.php:545 msgid "" "Local contacts - contacts of our local contacts are discovered for their " "followers/followings." msgstr "" -#: src/Module/Admin/Site.php:554 +#: src/Module/Admin/Site.php:546 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:556 +#: src/Module/Admin/Site.php:548 msgid "Only update contacts/servers with local data" msgstr "" -#: src/Module/Admin/Site.php:556 +#: src/Module/Admin/Site.php:548 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:557 +#: src/Module/Admin/Site.php:549 msgid "Synchronize the contacts with the directory server" msgstr "" -#: src/Module/Admin/Site.php:557 +#: src/Module/Admin/Site.php:549 msgid "" "if enabled, the system will check periodically for new contacts on the " "defined directory server." msgstr "" -#: src/Module/Admin/Site.php:559 +#: src/Module/Admin/Site.php:551 msgid "Discover contacts from other servers" msgstr "" -#: src/Module/Admin/Site.php:559 +#: src/Module/Admin/Site.php:551 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:560 +#: src/Module/Admin/Site.php:552 msgid "Days between requery" msgstr "" -#: src/Module/Admin/Site.php:560 +#: src/Module/Admin/Site.php:552 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:561 +#: src/Module/Admin/Site.php:553 msgid "Search the local directory" msgstr "" -#: src/Module/Admin/Site.php:561 +#: src/Module/Admin/Site.php:553 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:563 +#: src/Module/Admin/Site.php:555 msgid "Publish server information" msgstr "" -#: src/Module/Admin/Site.php:563 +#: src/Module/Admin/Site.php:555 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 " @@ -5178,50 +5246,50 @@ msgid "" " href=\"http://the-federation.info/\">the-federation.info for details." msgstr "" -#: src/Module/Admin/Site.php:565 +#: src/Module/Admin/Site.php:557 msgid "Check upstream version" msgstr "" -#: src/Module/Admin/Site.php:565 +#: src/Module/Admin/Site.php:557 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:566 +#: src/Module/Admin/Site.php:558 msgid "Suppress Tags" msgstr "" -#: src/Module/Admin/Site.php:566 +#: src/Module/Admin/Site.php:558 msgid "Suppress showing a list of hashtags at the end of the posting." msgstr "" -#: src/Module/Admin/Site.php:567 +#: src/Module/Admin/Site.php:559 msgid "Clean database" msgstr "" -#: src/Module/Admin/Site.php:567 +#: src/Module/Admin/Site.php:559 msgid "" "Remove old remote items, orphaned database records and old content from some" " other helper tables." msgstr "" -#: src/Module/Admin/Site.php:568 +#: src/Module/Admin/Site.php:560 msgid "Lifespan of remote items" msgstr "" -#: src/Module/Admin/Site.php:568 +#: src/Module/Admin/Site.php:560 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:569 +#: src/Module/Admin/Site.php:561 msgid "Lifespan of unclaimed items" msgstr "" -#: src/Module/Admin/Site.php:569 +#: src/Module/Admin/Site.php:561 msgid "" "When the database cleanup is enabled, this defines the days after which " "unclaimed remote items (mostly content from the relay) will be deleted. " @@ -5229,175 +5297,184 @@ msgid "" "items if set to 0." msgstr "" -#: src/Module/Admin/Site.php:570 +#: src/Module/Admin/Site.php:562 msgid "Lifespan of raw conversation data" msgstr "" -#: src/Module/Admin/Site.php:570 +#: src/Module/Admin/Site.php:562 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." +"The conversation data is used for ActivityPub, 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:571 +#: src/Module/Admin/Site.php:563 msgid "Maximum numbers of comments per post" msgstr "" -#: src/Module/Admin/Site.php:571 +#: src/Module/Admin/Site.php:563 msgid "How much comments should be shown for each post? Default value is 100." msgstr "" -#: src/Module/Admin/Site.php:572 +#: src/Module/Admin/Site.php:564 msgid "Maximum numbers of comments per post on the display page" msgstr "" -#: src/Module/Admin/Site.php:572 +#: src/Module/Admin/Site.php:564 msgid "" "How many comments should be shown on the single view for each post? Default " "value is 1000." msgstr "" -#: src/Module/Admin/Site.php:573 +#: src/Module/Admin/Site.php:565 msgid "Items per page" msgstr "" -#: src/Module/Admin/Site.php:573 +#: src/Module/Admin/Site.php:565 msgid "" "Number of items per page in stream pages (network, community, " "profile/contact statuses, search)." msgstr "" -#: src/Module/Admin/Site.php:574 +#: src/Module/Admin/Site.php:566 msgid "Items per page for mobile devices" msgstr "" -#: src/Module/Admin/Site.php:574 +#: src/Module/Admin/Site.php:566 msgid "" "Number of items per page in stream pages (network, community, " "profile/contact statuses, search) for mobile devices." msgstr "" -#: src/Module/Admin/Site.php:575 +#: src/Module/Admin/Site.php:567 msgid "Temp path" msgstr "" -#: src/Module/Admin/Site.php:575 +#: src/Module/Admin/Site.php:567 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:576 +#: src/Module/Admin/Site.php:568 msgid "Only search in tags" msgstr "" -#: src/Module/Admin/Site.php:576 +#: src/Module/Admin/Site.php:568 msgid "On large systems the text search can slow down the system extremely." msgstr "" -#: src/Module/Admin/Site.php:577 +#: src/Module/Admin/Site.php:569 +msgid "Limited search scope" +msgstr "" + +#: src/Module/Admin/Site.php:569 +msgid "" +"If enabled, searches will only be performed in the data used for the " +"channels and not in all posts." +msgstr "" + +#: src/Module/Admin/Site.php:570 msgid "Maximum age of items in the search table" msgstr "" -#: src/Module/Admin/Site.php:577 +#: src/Module/Admin/Site.php:570 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:578 +#: src/Module/Admin/Site.php:571 msgid "Generate counts per contact circle when calculating network count" msgstr "" -#: src/Module/Admin/Site.php:578 +#: src/Module/Admin/Site.php:571 msgid "" "On systems with users that heavily use contact circles the query can be very" " expensive." msgstr "" -#: src/Module/Admin/Site.php:579 +#: src/Module/Admin/Site.php:572 msgid "Process \"view\" activities" msgstr "" -#: src/Module/Admin/Site.php:579 +#: src/Module/Admin/Site.php:572 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:580 +#: src/Module/Admin/Site.php:573 msgid "Days, after which a contact is archived" msgstr "" -#: src/Module/Admin/Site.php:580 +#: src/Module/Admin/Site.php:573 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:582 +#: src/Module/Admin/Site.php:575 msgid "Maximum number of parallel workers" msgstr "" -#: src/Module/Admin/Site.php:582 +#: src/Module/Admin/Site.php:575 #, 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:583 +#: src/Module/Admin/Site.php:576 msgid "Maximum load for workers" msgstr "" -#: src/Module/Admin/Site.php:583 +#: src/Module/Admin/Site.php:576 msgid "Maximum load that causes a cooldown before each worker function call." msgstr "" -#: src/Module/Admin/Site.php:584 +#: src/Module/Admin/Site.php:577 msgid "Enable fastlane" msgstr "" -#: src/Module/Admin/Site.php:584 +#: src/Module/Admin/Site.php:577 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:585 +#: src/Module/Admin/Site.php:578 msgid "Decoupled receiver" msgstr "" -#: src/Module/Admin/Site.php:585 +#: src/Module/Admin/Site.php:578 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:586 +#: src/Module/Admin/Site.php:579 msgid "Cron interval" msgstr "" -#: src/Module/Admin/Site.php:586 +#: src/Module/Admin/Site.php:579 msgid "Minimal period in minutes between two calls of the \"Cron\" worker job." msgstr "" -#: src/Module/Admin/Site.php:587 +#: src/Module/Admin/Site.php:580 msgid "Worker defer limit" msgstr "" -#: src/Module/Admin/Site.php:587 +#: src/Module/Admin/Site.php:580 msgid "" "Per default the systems tries delivering for 15 times before dropping it." msgstr "" -#: src/Module/Admin/Site.php:588 +#: src/Module/Admin/Site.php:581 msgid "Worker fetch limit" msgstr "" -#: src/Module/Admin/Site.php:588 +#: src/Module/Admin/Site.php:581 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" @@ -5405,214 +5482,214 @@ msgid "" "system." msgstr "" -#: src/Module/Admin/Site.php:590 +#: src/Module/Admin/Site.php:583 msgid "Direct relay transfer" msgstr "" -#: src/Module/Admin/Site.php:590 +#: src/Module/Admin/Site.php:583 msgid "" "Enables the direct transfer to other servers without using the relay servers" msgstr "" -#: src/Module/Admin/Site.php:591 +#: src/Module/Admin/Site.php:584 msgid "Relay scope" msgstr "" -#: src/Module/Admin/Site.php:591 +#: src/Module/Admin/Site.php:584 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:591 src/Module/Contact/Profile.php:309 -#: src/Module/Settings/TwoFactor/Index.php:146 +#: src/Module/Admin/Site.php:584 src/Module/Contact/Profile.php:314 +#: src/Module/Settings/TwoFactor/Index.php:132 msgid "Disabled" msgstr "" -#: src/Module/Admin/Site.php:591 +#: src/Module/Admin/Site.php:584 msgid "all" msgstr "" -#: src/Module/Admin/Site.php:591 +#: src/Module/Admin/Site.php:584 msgid "tags" msgstr "" -#: src/Module/Admin/Site.php:592 +#: src/Module/Admin/Site.php:585 msgid "Server tags" msgstr "" -#: src/Module/Admin/Site.php:592 +#: src/Module/Admin/Site.php:585 msgid "Comma separated list of tags for the \"tags\" subscription." msgstr "" -#: src/Module/Admin/Site.php:593 +#: src/Module/Admin/Site.php:586 msgid "Deny Server tags" msgstr "" -#: src/Module/Admin/Site.php:593 +#: src/Module/Admin/Site.php:586 msgid "Comma separated list of tags that are rejected." msgstr "" -#: src/Module/Admin/Site.php:594 +#: src/Module/Admin/Site.php:587 msgid "Maximum amount of tags" msgstr "" -#: src/Module/Admin/Site.php:594 +#: src/Module/Admin/Site.php:587 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:595 +#: src/Module/Admin/Site.php:588 msgid "Allow user tags" msgstr "" -#: src/Module/Admin/Site.php:595 +#: src/Module/Admin/Site.php:588 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:596 +#: src/Module/Admin/Site.php:589 msgid "Deny undetected languages" msgstr "" -#: src/Module/Admin/Site.php:596 +#: src/Module/Admin/Site.php:589 msgid "If enabled, posts with undetected languages will be rejected." msgstr "" -#: src/Module/Admin/Site.php:597 +#: src/Module/Admin/Site.php:590 msgid "Language Quality" msgstr "" -#: src/Module/Admin/Site.php:597 +#: src/Module/Admin/Site.php:590 msgid "The minimum language quality that is required to accept the post." msgstr "" -#: src/Module/Admin/Site.php:598 +#: src/Module/Admin/Site.php:591 msgid "Number of languages for the language detection" msgstr "" -#: src/Module/Admin/Site.php:598 +#: src/Module/Admin/Site.php:591 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:600 +#: src/Module/Admin/Site.php:593 msgid "Maximum age of channel" msgstr "" -#: src/Module/Admin/Site.php:600 +#: src/Module/Admin/Site.php:593 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:601 +#: src/Module/Admin/Site.php:594 msgid "Maximum number of channel posts" msgstr "" -#: src/Module/Admin/Site.php:601 +#: src/Module/Admin/Site.php:594 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:602 +#: src/Module/Admin/Site.php:595 msgid "Interaction score days" msgstr "" -#: src/Module/Admin/Site.php:602 +#: src/Module/Admin/Site.php:595 msgid "Number of days that are used to calculate the interaction score." msgstr "" -#: src/Module/Admin/Site.php:603 +#: src/Module/Admin/Site.php:596 msgid "Maximum number of posts per author" msgstr "" -#: src/Module/Admin/Site.php:603 +#: src/Module/Admin/Site.php:596 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:604 +#: src/Module/Admin/Site.php:597 msgid "Sharer interaction days" msgstr "" -#: src/Module/Admin/Site.php:604 +#: src/Module/Admin/Site.php:597 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:607 +#: src/Module/Admin/Site.php:600 msgid "Start Relocation" msgstr "" -#: src/Module/Admin/Storage.php:46 +#: src/Module/Admin/Storage.php:32 #, php-format msgid "Storage backend, %s is invalid." msgstr "" -#: src/Module/Admin/Storage.php:73 +#: src/Module/Admin/Storage.php:59 #, php-format msgid "Storage backend %s error: %s" msgstr "" -#: src/Module/Admin/Storage.php:84 src/Module/Admin/Storage.php:87 +#: src/Module/Admin/Storage.php:70 src/Module/Admin/Storage.php:73 msgid "Invalid storage backend setting value." msgstr "" -#: src/Module/Admin/Storage.php:139 +#: src/Module/Admin/Storage.php:125 msgid "Current Storage Backend" msgstr "" -#: src/Module/Admin/Storage.php:140 +#: src/Module/Admin/Storage.php:126 msgid "Storage Configuration" msgstr "" -#: src/Module/Admin/Storage.php:141 src/Module/BaseAdmin.php:91 +#: src/Module/Admin/Storage.php:127 src/Module/BaseAdmin.php:77 msgid "Storage" msgstr "" -#: src/Module/Admin/Storage.php:143 +#: src/Module/Admin/Storage.php:129 msgid "Save & Use storage backend" msgstr "" -#: src/Module/Admin/Storage.php:144 +#: src/Module/Admin/Storage.php:130 msgid "Use storage backend" msgstr "" -#: src/Module/Admin/Storage.php:145 +#: src/Module/Admin/Storage.php:131 msgid "Save & Reload" msgstr "" -#: src/Module/Admin/Storage.php:146 +#: src/Module/Admin/Storage.php:132 msgid "This backend doesn't have custom settings" msgstr "" -#: src/Module/Admin/Storage.php:148 +#: src/Module/Admin/Storage.php:134 msgid "" "Changing the current backend is prohibited because it is set by an " "environment variable" msgstr "" -#: src/Module/Admin/Storage.php:150 +#: src/Module/Admin/Storage.php:136 msgid "Database (legacy)" msgstr "" -#: src/Module/Admin/Summary.php:55 +#: src/Module/Admin/Summary.php:41 #, php-format msgid "Template engine (%s) error: %s" msgstr "" -#: src/Module/Admin/Summary.php:59 +#: src/Module/Admin/Summary.php:45 #, php-format msgid "" "Your DB still runs with MyISAM tables. You should change the engine type to " @@ -5623,7 +5700,7 @@ msgid "" " an automatic conversion.
" msgstr "" -#: src/Module/Admin/Summary.php:64 +#: src/Module/Admin/Summary.php:50 #, php-format msgid "" "Your DB still runs with InnoDB tables in the Antelope file format. You " @@ -5634,7 +5711,7 @@ msgid "" " installation for an automatic conversion.
" msgstr "" -#: src/Module/Admin/Summary.php:74 +#: src/Module/Admin/Summary.php:60 #, php-format msgid "" "Your table_definition_cache is too low (%d). This can lead to the database " @@ -5642,46 +5719,46 @@ msgid "" " to %d. See here for more information.
" msgstr "" -#: src/Module/Admin/Summary.php:85 +#: src/Module/Admin/Summary.php:71 #, php-format msgid "" "There is a new version of Friendica available for download. Your current " "version is %1$s, upstream version is %2$s" msgstr "" -#: src/Module/Admin/Summary.php:94 +#: src/Module/Admin/Summary.php:80 msgid "" "The database update failed. Please run \"php bin/console.php dbstructure " "update\" from the command line and have a look at the errors that might " "appear." msgstr "" -#: src/Module/Admin/Summary.php:98 +#: src/Module/Admin/Summary.php:84 msgid "" "The last update failed. Please run \"php bin/console.php dbstructure " "update\" from the command line and have a look at the errors that might " "appear. (Some of the errors are possibly inside the logfile.)" msgstr "" -#: src/Module/Admin/Summary.php:102 +#: src/Module/Admin/Summary.php:88 msgid "" "The system.url entry is missing. This is a low level setting and can lead to" " unexpected behavior. Please add a valid entry as soon as possible in the " "config file or per console command!" msgstr "" -#: src/Module/Admin/Summary.php:107 +#: src/Module/Admin/Summary.php:93 msgid "The worker was never executed. Please check your database structure!" msgstr "" -#: src/Module/Admin/Summary.php:109 +#: src/Module/Admin/Summary.php:95 #, php-format msgid "" "The last worker execution was on %s UTC. This is older than one hour. Please" " check your crontab settings." msgstr "" -#: src/Module/Admin/Summary.php:114 +#: src/Module/Admin/Summary.php:100 #, php-format msgid "" "Friendica's configuration now is stored in config/local.config.php, please " @@ -5690,7 +5767,7 @@ msgid "" "help with the transition." msgstr "" -#: src/Module/Admin/Summary.php:118 +#: src/Module/Admin/Summary.php:104 #, php-format msgid "" "Friendica's configuration now is stored in config/local.config.php, please " @@ -5699,7 +5776,7 @@ msgid "" "page for help with the transition." msgstr "" -#: src/Module/Admin/Summary.php:124 +#: src/Module/Admin/Summary.php:110 #, php-format msgid "" "%s is not reachable on your system. This is a severe " @@ -5707,107 +5784,107 @@ msgid "" "href=\"%s\">the installation page for help." msgstr "" -#: src/Module/Admin/Summary.php:148 +#: src/Module/Admin/Summary.php:134 #, php-format msgid "" "Friendica's system.basepath was updated from '%s' to '%s'. Please remove the" " system.basepath from your db to avoid differences." msgstr "" -#: src/Module/Admin/Summary.php:156 +#: src/Module/Admin/Summary.php:142 #, php-format msgid "" "Friendica's current system.basepath '%s' is wrong and the config file '%s' " "isn't used." msgstr "" -#: src/Module/Admin/Summary.php:164 +#: src/Module/Admin/Summary.php:150 #, php-format msgid "" "Friendica's current system.basepath '%s' is not equal to the config file " "'%s'. Please fix your configuration." msgstr "" -#: src/Module/Admin/Summary.php:175 +#: src/Module/Admin/Summary.php:161 msgid "Message queues" msgstr "Съобщение опашки" -#: src/Module/Admin/Summary.php:181 +#: src/Module/Admin/Summary.php:167 msgid "Server Settings" msgstr "" -#: src/Module/Admin/Summary.php:199 +#: src/Module/Admin/Summary.php:185 msgid "Version" msgstr "Версия " -#: src/Module/Admin/Summary.php:203 +#: src/Module/Admin/Summary.php:189 msgid "Active addons" msgstr "" -#: src/Module/Admin/Themes/Details.php:57 src/Module/Admin/Themes/Index.php:65 +#: src/Module/Admin/Themes/Details.php:49 src/Module/Admin/Themes/Index.php:57 #, php-format msgid "Theme %s disabled." msgstr "" -#: src/Module/Admin/Themes/Details.php:59 src/Module/Admin/Themes/Index.php:67 +#: src/Module/Admin/Themes/Details.php:51 src/Module/Admin/Themes/Index.php:59 #, php-format msgid "Theme %s successfully enabled." msgstr "" -#: src/Module/Admin/Themes/Details.php:61 src/Module/Admin/Themes/Index.php:69 +#: src/Module/Admin/Themes/Details.php:53 src/Module/Admin/Themes/Index.php:61 #, php-format msgid "Theme %s failed to install." msgstr "" -#: src/Module/Admin/Themes/Details.php:83 +#: src/Module/Admin/Themes/Details.php:75 msgid "Screenshot" msgstr "Screenshot" -#: src/Module/Admin/Themes/Details.php:91 -#: src/Module/Admin/Themes/Index.php:112 src/Module/BaseAdmin.php:93 +#: src/Module/Admin/Themes/Details.php:83 +#: src/Module/Admin/Themes/Index.php:104 src/Module/BaseAdmin.php:79 msgid "Themes" msgstr "Теми" -#: src/Module/Admin/Themes/Embed.php:80 +#: src/Module/Admin/Themes/Embed.php:66 msgid "Unknown theme." msgstr "" -#: src/Module/Admin/Themes/Index.php:51 +#: src/Module/Admin/Themes/Index.php:43 msgid "Themes reloaded" msgstr "" -#: src/Module/Admin/Themes/Index.php:114 +#: src/Module/Admin/Themes/Index.php:106 msgid "Reload active themes" msgstr "" -#: src/Module/Admin/Themes/Index.php:118 +#: src/Module/Admin/Themes/Index.php:110 #, php-format msgid "No themes found on the system. They should be placed in %1$s" msgstr "" -#: src/Module/Admin/Themes/Index.php:119 +#: src/Module/Admin/Themes/Index.php:111 msgid "[Experimental]" msgstr "(Експериментален)" -#: src/Module/Admin/Themes/Index.php:120 +#: src/Module/Admin/Themes/Index.php:112 msgid "[Unsupported]" msgstr "Неподдържан]" -#: src/Module/Admin/Tos.php:79 +#: src/Module/Admin/Tos.php:65 msgid "Display Terms of Service" msgstr "" -#: src/Module/Admin/Tos.php:79 +#: src/Module/Admin/Tos.php:65 msgid "" "Enable the Terms of Service page. If this is enabled a link to the terms " "will be added to the registration form and the general information page." msgstr "" -#: src/Module/Admin/Tos.php:80 +#: src/Module/Admin/Tos.php:66 msgid "Display Privacy Statement" msgstr "" -#: src/Module/Admin/Tos.php:80 +#: src/Module/Admin/Tos.php:66 #, php-format msgid "" "Show some informations regarding the needed information to operate the node " @@ -5815,167 +5892,167 @@ msgid "" "noreferrer\">EU-GDPR." msgstr "" -#: src/Module/Admin/Tos.php:81 +#: src/Module/Admin/Tos.php:67 msgid "Privacy Statement Preview" msgstr "" -#: src/Module/Admin/Tos.php:83 +#: src/Module/Admin/Tos.php:69 msgid "The Terms of Service" msgstr "" -#: src/Module/Admin/Tos.php:83 +#: src/Module/Admin/Tos.php:69 msgid "" "Enter the Terms of Service for your node here. You can use BBCode. Headers " "of sections should be [h2] and below." msgstr "" -#: src/Module/Admin/Tos.php:84 +#: src/Module/Admin/Tos.php:70 msgid "The rules" msgstr "" -#: src/Module/Admin/Tos.php:84 +#: src/Module/Admin/Tos.php:70 msgid "Enter your system rules here. Each line represents one rule." msgstr "" -#: src/Module/Api/ApiResponse.php:293 +#: src/Module/Api/ApiResponse.php:279 #, php-format msgid "API endpoint %s %s is not implemented but might be in the future." msgstr "" -#: src/Module/Api/Mastodon/Apps.php:73 +#: src/Module/Api/Mastodon/Apps.php:59 msgid "Missing parameters" msgstr "" -#: src/Module/Api/Mastodon/Statuses/Bookmark.php:51 +#: src/Module/Api/Mastodon/Statuses/Bookmark.php:36 msgid "Only starting posts can be bookmarked" msgstr "" -#: src/Module/Api/Mastodon/Statuses/Mute.php:51 +#: src/Module/Api/Mastodon/Statuses/Mute.php:37 msgid "Only starting posts can be muted" msgstr "" -#: src/Module/Api/Mastodon/Statuses/Reblog.php:58 +#: src/Module/Api/Mastodon/Statuses/Reblog.php:44 #, php-format msgid "Posts from %s can't be shared" msgstr "" -#: src/Module/Api/Mastodon/Statuses/Unbookmark.php:51 +#: src/Module/Api/Mastodon/Statuses/Unbookmark.php:37 msgid "Only starting posts can be unbookmarked" msgstr "" -#: src/Module/Api/Mastodon/Statuses/Unmute.php:51 +#: src/Module/Api/Mastodon/Statuses/Unmute.php:37 msgid "Only starting posts can be unmuted" msgstr "" -#: src/Module/Api/Mastodon/Statuses/Unreblog.php:64 +#: src/Module/Api/Mastodon/Statuses/Unreblog.php:50 #, php-format msgid "Posts from %s can't be unshared" msgstr "" -#: src/Module/Api/Twitter/ContactEndpoint.php:66 +#: src/Module/Api/Twitter/ContactEndpoint.php:52 msgid "Contact not found" msgstr "" -#: src/Module/Apps.php:62 +#: src/Module/Apps.php:48 msgid "No installed applications." msgstr "Няма инсталираните приложения." -#: src/Module/Apps.php:67 +#: src/Module/Apps.php:53 msgid "Applications" msgstr "Приложения" -#: src/Module/Attach.php:49 src/Module/Attach.php:61 +#: src/Module/Attach.php:35 src/Module/Attach.php:47 msgid "Item was not found." msgstr "Елемент не е намерен." -#: src/Module/BaseAdmin.php:54 src/Module/BaseAdmin.php:58 -#: src/Module/BaseModeration.php:77 src/Module/BaseModeration.php:81 +#: src/Module/BaseAdmin.php:40 src/Module/BaseAdmin.php:44 +#: src/Module/BaseModeration.php:63 src/Module/BaseModeration.php:67 msgid "Please login to continue." msgstr "Моля, влезте, за да продължите." -#: src/Module/BaseAdmin.php:63 +#: src/Module/BaseAdmin.php:49 msgid "You don't have access to administration pages." msgstr "" -#: src/Module/BaseAdmin.php:67 +#: src/Module/BaseAdmin.php:53 msgid "" "Submanaged account can't access the administration pages. Please log back in" " as the main account." msgstr "" -#: src/Module/BaseAdmin.php:86 src/Module/BaseModeration.php:109 +#: src/Module/BaseAdmin.php:72 src/Module/BaseModeration.php:95 msgid "Overview" msgstr "" -#: src/Module/BaseAdmin.php:89 src/Module/BaseModeration.php:112 +#: src/Module/BaseAdmin.php:75 src/Module/BaseModeration.php:98 msgid "Configuration" msgstr "" -#: src/Module/BaseAdmin.php:94 src/Module/BaseSettings.php:110 +#: src/Module/BaseAdmin.php:80 src/Module/BaseSettings.php:96 msgid "Additional features" msgstr "Допълнителни възможности" -#: src/Module/BaseAdmin.php:97 +#: src/Module/BaseAdmin.php:83 msgid "Database" msgstr "" -#: src/Module/BaseAdmin.php:98 +#: src/Module/BaseAdmin.php:84 msgid "DB updates" msgstr "Обновления на БД" -#: src/Module/BaseAdmin.php:99 +#: src/Module/BaseAdmin.php:85 msgid "Inspect Deferred Workers" msgstr "" -#: src/Module/BaseAdmin.php:100 +#: src/Module/BaseAdmin.php:86 msgid "Inspect worker Queue" msgstr "" -#: src/Module/BaseAdmin.php:106 src/Module/BaseModeration.php:120 +#: src/Module/BaseAdmin.php:92 src/Module/BaseModeration.php:106 msgid "Diagnostics" msgstr "" -#: src/Module/BaseAdmin.php:107 +#: src/Module/BaseAdmin.php:93 msgid "PHP Info" msgstr "" -#: src/Module/BaseAdmin.php:108 +#: src/Module/BaseAdmin.php:94 msgid "probe address" msgstr "" -#: src/Module/BaseAdmin.php:109 +#: src/Module/BaseAdmin.php:95 msgid "check webfinger" msgstr "" -#: src/Module/BaseAdmin.php:110 +#: src/Module/BaseAdmin.php:96 msgid "Babel" msgstr "" -#: src/Module/BaseAdmin.php:111 src/Module/Debug/ActivityPubConversion.php:137 +#: src/Module/BaseAdmin.php:97 src/Module/Debug/ActivityPubConversion.php:129 msgid "ActivityPub Conversion" msgstr "" -#: src/Module/BaseAdmin.php:120 +#: src/Module/BaseAdmin.php:106 msgid "Addon Features" msgstr "" -#: src/Module/BaseAdmin.php:121 src/Module/BaseModeration.php:129 +#: src/Module/BaseAdmin.php:107 src/Module/BaseModeration.php:115 msgid "User registrations waiting for confirmation" msgstr "Потребителски регистрации, чакащи за потвърждение" -#: src/Module/BaseApi.php:455 src/Module/BaseApi.php:471 -#: src/Module/BaseApi.php:487 +#: src/Module/BaseApi.php:441 src/Module/BaseApi.php:457 +#: src/Module/BaseApi.php:473 msgid "Too Many Requests" msgstr "" -#: src/Module/BaseApi.php:456 +#: src/Module/BaseApi.php:442 #, php-format msgid "Daily posting limit of %d post reached. The post was rejected." msgid_plural "Daily posting limit of %d posts reached. The post was rejected." msgstr[0] "Дневният лимит от %dпост е достигнат. Постът беше отхвърлен." msgstr[1] "Дневният лимит от %d поста е достигнат. Постът беше отхвърлен." -#: src/Module/BaseApi.php:472 +#: src/Module/BaseApi.php:458 #, php-format msgid "Weekly posting limit of %d post reached. The post was rejected." msgid_plural "" @@ -5983,7 +6060,7 @@ msgid_plural "" msgstr[0] "Седмичният лимит от %d пост е достигнат. Постът беше отказан." msgstr[1] "Седмичният лимит от %d поста е достигнат. Постът беше отказан." -#: src/Module/BaseApi.php:488 +#: src/Module/BaseApi.php:474 #, php-format msgid "Monthly posting limit of %d post reached. The post was rejected." msgid_plural "" @@ -5991,84 +6068,84 @@ msgid_plural "" msgstr[0] "" msgstr[1] "" -#: src/Module/BaseModeration.php:86 +#: src/Module/BaseModeration.php:72 msgid "You don't have access to moderation pages." msgstr "" -#: src/Module/BaseModeration.php:90 +#: src/Module/BaseModeration.php:76 msgid "" "Submanaged account can't access the moderation pages. Please log back in as " "the main account." msgstr "" -#: src/Module/BaseModeration.php:110 src/Module/Moderation/Reports.php:94 +#: src/Module/BaseModeration.php:96 src/Module/Moderation/Reports.php:101 msgid "Reports" msgstr "" -#: src/Module/BaseModeration.php:113 src/Module/Moderation/Users/Index.php:148 -#: src/Module/Moderation/Users/Index.php:158 +#: src/Module/BaseModeration.php:99 src/Module/Moderation/Users/Index.php:134 +#: src/Module/Moderation/Users/Index.php:144 msgid "Users" msgstr "Потребители" -#: src/Module/BaseModeration.php:115 +#: src/Module/BaseModeration.php:101 msgid "Tools" msgstr "" -#: src/Module/BaseModeration.php:116 +#: src/Module/BaseModeration.php:102 msgid "Contact Blocklist" msgstr "" -#: src/Module/BaseModeration.php:117 +#: src/Module/BaseModeration.php:103 msgid "Server Blocklist" msgstr "" -#: src/Module/BaseModeration.php:118 src/Module/Moderation/Item/Delete.php:62 +#: src/Module/BaseModeration.php:104 src/Module/Moderation/Item/Delete.php:48 msgid "Delete Item" msgstr "" -#: src/Module/BaseModeration.php:121 src/Module/Moderation/Item/Source.php:76 +#: src/Module/BaseModeration.php:107 src/Module/Moderation/Item/Source.php:68 msgid "Item Source" msgstr "" -#: src/Module/BaseProfile.php:52 src/Module/Contact.php:506 +#: src/Module/BaseProfile.php:38 src/Module/Contact.php:488 msgid "Profile Details" msgstr "Детайли от профила" -#: src/Module/BaseProfile.php:60 +#: src/Module/BaseProfile.php:46 msgid "Conversations started" msgstr "" -#: src/Module/BaseProfile.php:111 +#: src/Module/BaseProfile.php:97 msgid "Only You Can See This" msgstr "Можете да видите това" -#: src/Module/BaseProfile.php:116 src/Module/Profile/Schedule.php:81 +#: src/Module/BaseProfile.php:102 src/Module/Profile/Schedule.php:67 msgid "Scheduled Posts" msgstr "" -#: src/Module/BaseProfile.php:119 +#: src/Module/BaseProfile.php:105 msgid "Posts that are scheduled for publishing" msgstr "" -#: src/Module/BaseProfile.php:138 src/Module/BaseProfile.php:141 +#: src/Module/BaseProfile.php:124 src/Module/BaseProfile.php:127 msgid "Tips for New Members" msgstr "Съвети за нови членове" -#: src/Module/BaseSearch.php:71 +#: src/Module/BaseSearch.php:57 #, php-format msgid "People Search - %s" msgstr "" -#: src/Module/BaseSearch.php:75 +#: src/Module/BaseSearch.php:61 #, php-format msgid "Group Search - %s" msgstr "" -#: src/Module/BaseSearch.php:121 src/Module/Contact/MatchInterests.php:139 +#: src/Module/BaseSearch.php:107 src/Module/Contact/MatchInterests.php:136 msgid "No matches" msgstr "Няма съответствия" -#: src/Module/BaseSearch.php:147 +#: src/Module/BaseSearch.php:133 #, php-format msgid "" "%d result was filtered out because your node blocks the domain it is " @@ -6081,831 +6158,828 @@ msgid_plural "" msgstr[0] "" msgstr[1] "" -#: src/Module/BaseSettings.php:78 +#: src/Module/BaseSettings.php:64 msgid "Account" msgstr "профил" -#: src/Module/BaseSettings.php:85 src/Module/Security/TwoFactor/Verify.php:96 -#: src/Module/Settings/TwoFactor/Index.php:138 +#: src/Module/BaseSettings.php:71 src/Module/Security/TwoFactor/Verify.php:82 +#: src/Module/Settings/TwoFactor/Index.php:124 msgid "Two-factor authentication" msgstr "" -#: src/Module/BaseSettings.php:118 +#: src/Module/BaseSettings.php:104 msgid "Display" msgstr "" -#: src/Module/BaseSettings.php:132 src/Module/Settings/Connectors.php:204 +#: src/Module/BaseSettings.php:118 src/Module/Settings/Connectors.php:195 msgid "Social Networks" msgstr "" -#: src/Module/BaseSettings.php:146 src/Module/Settings/Delegation.php:194 +#: src/Module/BaseSettings.php:132 src/Module/Settings/Delegation.php:180 msgid "Manage Accounts" msgstr "" -#: src/Module/BaseSettings.php:153 +#: src/Module/BaseSettings.php:139 msgid "Connected apps" msgstr "Свързани приложения" -#: src/Module/BaseSettings.php:160 +#: src/Module/BaseSettings.php:146 msgid "Remote servers" msgstr "" -#: src/Module/BaseSettings.php:167 src/Module/Settings/UserExport.php:98 +#: src/Module/BaseSettings.php:153 src/Module/Settings/UserExport.php:84 msgid "Export personal data" msgstr "Експортиране на личните данни" -#: src/Module/BaseSettings.php:174 +#: src/Module/BaseSettings.php:160 msgid "Remove account" msgstr "Премахване сметка" -#: src/Module/Bookmarklet.php:54 +#: src/Module/Bookmarklet.php:40 msgid "This page is missing a url parameter." msgstr "" -#: src/Module/Bookmarklet.php:66 +#: src/Module/Bookmarklet.php:52 msgid "The post was created" msgstr "" -#: src/Module/Calendar/Event/API.php:100 src/Module/Calendar/Event/API.php:135 -#: src/Module/Calendar/Event/Form.php:80 +#: src/Module/Calendar/Event/API.php:86 src/Module/Calendar/Event/API.php:121 +#: src/Module/Calendar/Event/Form.php:66 msgid "Invalid Request" msgstr "" -#: src/Module/Calendar/Event/API.php:109 +#: src/Module/Calendar/Event/API.php:95 msgid "Event id is missing." msgstr "" -#: src/Module/Calendar/Event/API.php:131 +#: src/Module/Calendar/Event/API.php:117 msgid "Failed to remove event" msgstr "" -#: src/Module/Calendar/Event/API.php:187 src/Module/Calendar/Event/API.php:189 +#: src/Module/Calendar/Event/API.php:173 src/Module/Calendar/Event/API.php:175 msgid "Event can not end before it has started." msgstr "" -#: src/Module/Calendar/Event/API.php:196 src/Module/Calendar/Event/API.php:198 +#: src/Module/Calendar/Event/API.php:182 src/Module/Calendar/Event/API.php:184 msgid "Event title and start time are required." msgstr "" -#: src/Module/Calendar/Event/Form.php:208 +#: src/Module/Calendar/Event/Form.php:194 msgid "Starting date and Title are required." msgstr "" -#: src/Module/Calendar/Event/Form.php:209 -#: src/Module/Calendar/Event/Form.php:214 +#: src/Module/Calendar/Event/Form.php:195 +#: src/Module/Calendar/Event/Form.php:200 msgid "Event Starts:" msgstr "Събитие Започва:" -#: src/Module/Calendar/Event/Form.php:209 -#: src/Module/Calendar/Event/Form.php:237 src/Module/Debug/Probe.php:59 -#: src/Module/Install.php:201 src/Module/Install.php:227 -#: src/Module/Install.php:232 src/Module/Install.php:246 -#: src/Module/Install.php:255 src/Module/Install.php:260 -#: src/Module/Install.php:266 src/Module/Install.php:271 -#: src/Module/Install.php:285 src/Module/Install.php:298 -#: src/Module/Install.php:325 -#: src/Module/Moderation/Blocklist/Server/Add.php:136 -#: src/Module/Moderation/Blocklist/Server/Add.php:138 -#: src/Module/Moderation/Blocklist/Server/Import.php:129 -#: src/Module/Moderation/Blocklist/Server/Index.php:86 -#: src/Module/Moderation/Blocklist/Server/Index.php:87 -#: src/Module/Moderation/Blocklist/Server/Index.php:115 -#: src/Module/Moderation/Blocklist/Server/Index.php:116 -#: src/Module/Moderation/Item/Delete.php:67 src/Module/Register.php:148 -#: src/Module/Security/TwoFactor/Verify.php:101 -#: src/Module/Settings/Channels.php:184 src/Module/Settings/Channels.php:205 -#: src/Module/Settings/TwoFactor/Index.php:161 -#: src/Module/Settings/TwoFactor/Verify.php:158 +#: src/Module/Calendar/Event/Form.php:195 +#: src/Module/Calendar/Event/Form.php:223 src/Module/Debug/Probe.php:45 +#: src/Module/Install.php:187 src/Module/Install.php:213 +#: src/Module/Install.php:218 src/Module/Install.php:232 +#: src/Module/Install.php:241 src/Module/Install.php:246 +#: src/Module/Install.php:252 src/Module/Install.php:257 +#: src/Module/Install.php:271 src/Module/Install.php:284 +#: src/Module/Install.php:311 +#: src/Module/Moderation/Blocklist/Server/Add.php:122 +#: src/Module/Moderation/Blocklist/Server/Add.php:124 +#: src/Module/Moderation/Blocklist/Server/Import.php:113 +#: src/Module/Moderation/Blocklist/Server/Index.php:72 +#: src/Module/Moderation/Blocklist/Server/Index.php:73 +#: src/Module/Moderation/Blocklist/Server/Index.php:101 +#: src/Module/Moderation/Blocklist/Server/Index.php:102 +#: src/Module/Moderation/Item/Delete.php:53 src/Module/Register.php:141 +#: src/Module/Security/TwoFactor/Verify.php:87 +#: src/Module/Settings/Channels.php:176 src/Module/Settings/Channels.php:197 +#: src/Module/Settings/TwoFactor/Index.php:147 +#: src/Module/Settings/TwoFactor/Verify.php:144 msgid "Required" msgstr "Задължително" -#: src/Module/Calendar/Event/Form.php:223 -#: src/Module/Calendar/Event/Form.php:247 +#: src/Module/Calendar/Event/Form.php:209 +#: src/Module/Calendar/Event/Form.php:233 msgid "Finish date/time is not known or not relevant" msgstr "Завършете дата / час не е известен или не е приложимо" -#: src/Module/Calendar/Event/Form.php:225 -#: src/Module/Calendar/Event/Form.php:230 +#: src/Module/Calendar/Event/Form.php:211 +#: src/Module/Calendar/Event/Form.php:216 msgid "Event Finishes:" msgstr "Събитие играчи:" -#: src/Module/Calendar/Event/Form.php:237 -#: src/Module/Calendar/Event/Form.php:243 +#: src/Module/Calendar/Event/Form.php:223 +#: src/Module/Calendar/Event/Form.php:229 msgid "Title (BBCode not allowed)" msgstr "" -#: src/Module/Calendar/Event/Form.php:239 +#: src/Module/Calendar/Event/Form.php:225 msgid "Description (BBCode allowed)" msgstr "" -#: src/Module/Calendar/Event/Form.php:241 +#: src/Module/Calendar/Event/Form.php:227 msgid "Location (BBCode not allowed)" msgstr "" -#: src/Module/Calendar/Event/Form.php:244 -#: src/Module/Calendar/Event/Form.php:245 +#: src/Module/Calendar/Event/Form.php:230 +#: src/Module/Calendar/Event/Form.php:231 msgid "Share this event" msgstr "Споделете това събитие" -#: src/Module/Calendar/Event/Form.php:251 src/Module/Profile/Profile.php:275 +#: src/Module/Calendar/Event/Form.php:237 src/Module/Profile/Profile.php:263 msgid "Basic" msgstr "" -#: src/Module/Calendar/Export.php:94 +#: src/Module/Calendar/Export.php:80 msgid "This calendar format is not supported" msgstr "" -#: src/Module/Calendar/Export.php:96 +#: src/Module/Calendar/Export.php:82 msgid "No exportable data found" msgstr "" -#: src/Module/Calendar/Export.php:113 +#: src/Module/Calendar/Export.php:99 msgid "calendar" msgstr "" -#: src/Module/Calendar/Show.php:124 +#: src/Module/Calendar/Show.php:110 msgid "Events" msgstr "Събития" -#: src/Module/Calendar/Show.php:125 +#: src/Module/Calendar/Show.php:111 msgid "View" msgstr "" -#: src/Module/Calendar/Show.php:126 +#: src/Module/Calendar/Show.php:112 msgid "Create New Event" msgstr "Създаване на нов събитие" -#: src/Module/Calendar/Show.php:132 src/Module/Settings/Display.php:300 +#: src/Module/Calendar/Show.php:118 src/Module/Settings/Display.php:283 msgid "list" msgstr "" -#: src/Module/Circle.php:57 +#: src/Module/Circle.php:43 msgid "Could not create circle." msgstr "" -#: src/Module/Circle.php:68 src/Module/Circle.php:214 -#: src/Module/Circle.php:238 +#: src/Module/Circle.php:54 src/Module/Circle.php:202 +#: src/Module/Circle.php:226 msgid "Circle not found." msgstr "" -#: src/Module/Circle.php:74 +#: src/Module/Circle.php:60 msgid "Circle name was not changed." msgstr "" -#: src/Module/Circle.php:92 +#: src/Module/Circle.php:78 msgid "Unknown circle." msgstr "" -#: src/Module/Circle.php:98 src/Module/Circle.php:107 -#: src/Module/Contact/Advanced.php:70 src/Module/Contact/Advanced.php:109 -#: src/Module/Contact/Contacts.php:71 src/Module/Contact/Conversations.php:86 -#: src/Module/Contact/Conversations.php:91 -#: src/Module/Contact/Conversations.php:96 src/Module/Contact/Media.php:61 -#: src/Module/Contact/Posts.php:78 src/Module/Contact/Posts.php:83 -#: src/Module/Contact/Posts.php:88 src/Module/Contact/Profile.php:154 -#: src/Module/Contact/Profile.php:159 src/Module/Contact/Profile.php:164 -#: src/Module/Contact/Redir.php:94 src/Module/Contact/Redir.php:140 -#: src/Module/FriendSuggest.php:71 src/Module/FriendSuggest.php:109 +#: src/Module/Circle.php:84 src/Module/Circle.php:93 +#: src/Module/Contact/Advanced.php:56 src/Module/Contact/Advanced.php:95 +#: src/Module/Contact/Contacts.php:57 src/Module/Contact/Conversations.php:72 +#: src/Module/Contact/Conversations.php:77 +#: src/Module/Contact/Conversations.php:82 src/Module/Contact/Media.php:47 +#: src/Module/Contact/Posts.php:64 src/Module/Contact/Posts.php:69 +#: src/Module/Contact/Posts.php:74 src/Module/Contact/Profile.php:145 +#: src/Module/Contact/Profile.php:150 src/Module/Contact/Profile.php:169 +#: src/Module/Contact/Redir.php:77 src/Module/Contact/Redir.php:131 +#: src/Module/FriendSuggest.php:57 src/Module/FriendSuggest.php:95 msgid "Contact not found." msgstr "Контактът не е намерен." -#: src/Module/Circle.php:102 src/Module/Contact/Contacts.php:66 +#: src/Module/Circle.php:88 src/Module/Contact/Contacts.php:52 msgid "Invalid contact." msgstr "Невалиден свържете." -#: src/Module/Circle.php:111 src/Module/Contact/Revoke.php:73 +#: src/Module/Circle.php:97 src/Module/Contact/Revoke.php:56 msgid "Contact is deleted." msgstr "" -#: src/Module/Circle.php:117 +#: src/Module/Circle.php:103 msgid "Unable to add the contact to the circle." msgstr "" -#: src/Module/Circle.php:120 +#: src/Module/Circle.php:106 msgid "Contact successfully added to circle." msgstr "" -#: src/Module/Circle.php:124 +#: src/Module/Circle.php:110 msgid "Unable to remove the contact from the circle." msgstr "" -#: src/Module/Circle.php:127 +#: src/Module/Circle.php:113 msgid "Contact successfully removed from circle." msgstr "" -#: src/Module/Circle.php:131 +#: src/Module/Circle.php:117 msgid "Bad request." msgstr "" -#: src/Module/Circle.php:170 +#: src/Module/Circle.php:158 msgid "Save Circle" msgstr "" -#: src/Module/Circle.php:171 +#: src/Module/Circle.php:159 msgid "Filter" msgstr "" -#: src/Module/Circle.php:177 +#: src/Module/Circle.php:165 msgid "Create a circle of contacts/friends." msgstr "" -#: src/Module/Circle.php:219 +#: src/Module/Circle.php:207 msgid "Unable to remove circle." msgstr "" -#: src/Module/Circle.php:270 +#: src/Module/Circle.php:258 msgid "Delete Circle" msgstr "" -#: src/Module/Circle.php:280 +#: src/Module/Circle.php:268 msgid "Edit Circle Name" msgstr "" -#: src/Module/Circle.php:290 +#: src/Module/Circle.php:278 msgid "Members" msgstr "Членове" -#: src/Module/Circle.php:293 +#: src/Module/Circle.php:281 msgid "Circle is empty" msgstr "" -#: src/Module/Circle.php:306 +#: src/Module/Circle.php:297 msgid "Remove contact from circle" msgstr "" -#: src/Module/Circle.php:329 +#: src/Module/Circle.php:320 msgid "Click on a contact to add or remove." msgstr "Щракнете върху контакт, за да добавите или премахнете." -#: src/Module/Circle.php:343 +#: src/Module/Circle.php:337 msgid "Add contact to circle" msgstr "" -#: src/Module/Contact.php:96 +#: src/Module/Contact.php:88 #, php-format msgid "%d contact edited." msgid_plural "%d contacts edited." msgstr[0] "" msgstr[1] "" -#: src/Module/Contact.php:347 +#: src/Module/Contact.php:328 msgid "Show all contacts" msgstr "Покажи на всички контакти" -#: src/Module/Contact.php:352 src/Module/Contact.php:431 -#: src/Module/Moderation/BaseUsers.php:85 +#: src/Module/Contact.php:333 src/Module/Contact.php:412 +#: src/Module/Moderation/BaseUsers.php:72 msgid "Pending" msgstr "" -#: src/Module/Contact.php:355 +#: src/Module/Contact.php:336 msgid "Only show pending contacts" msgstr "" -#: src/Module/Contact.php:360 src/Module/Contact.php:434 -#: src/Module/Moderation/BaseUsers.php:93 +#: src/Module/Contact.php:341 src/Module/Contact.php:415 +#: src/Module/Moderation/BaseUsers.php:80 msgid "Blocked" msgstr "Блокиран" -#: src/Module/Contact.php:363 +#: src/Module/Contact.php:344 msgid "Only show blocked contacts" msgstr "Покажи само Блокираните контакти" -#: src/Module/Contact.php:368 src/Module/Contact.php:440 -#: src/Module/Settings/Server/Index.php:107 src/Object/Post.php:386 +#: src/Module/Contact.php:349 src/Module/Contact.php:421 +#: src/Module/Settings/Server/Index.php:93 src/Object/Post.php:385 msgid "Ignored" msgstr "Игнорирани" -#: src/Module/Contact.php:371 +#: src/Module/Contact.php:352 msgid "Only show ignored contacts" msgstr "Покажи само игнорирани контакти" -#: src/Module/Contact.php:376 src/Module/Contact.php:443 +#: src/Module/Contact.php:357 src/Module/Contact.php:424 msgid "Collapsed" msgstr "" -#: src/Module/Contact.php:379 +#: src/Module/Contact.php:360 msgid "Only show collapsed contacts" msgstr "" -#: src/Module/Contact.php:384 src/Module/Contact.php:446 +#: src/Module/Contact.php:365 src/Module/Contact.php:427 msgid "Archived" msgstr "Архивиран:" -#: src/Module/Contact.php:387 +#: src/Module/Contact.php:368 msgid "Only show archived contacts" msgstr "Покажи само архивирани контакти" -#: src/Module/Contact.php:392 src/Module/Contact.php:437 +#: src/Module/Contact.php:373 src/Module/Contact.php:418 msgid "Hidden" msgstr "Скрит" -#: src/Module/Contact.php:395 +#: src/Module/Contact.php:376 msgid "Only show hidden contacts" msgstr "Само показва скрити контакти" -#: src/Module/Contact.php:403 +#: src/Module/Contact.php:384 msgid "Organize your contact circles" msgstr "" -#: src/Module/Contact.php:458 +#: src/Module/Contact.php:439 msgid "Search your contacts" msgstr "Търсене на вашите контакти" -#: src/Module/Contact.php:459 src/Module/Search/Index.php:207 +#: src/Module/Contact.php:440 src/Module/Search/Index.php:193 #, php-format msgid "Results for: %s" msgstr "" -#: src/Module/Contact.php:466 +#: src/Module/Contact.php:448 msgid "Update" msgstr "Актуализиране" -#: src/Module/Contact.php:467 src/Module/Contact/Profile.php:511 -#: src/Module/Moderation/Blocklist/Contact.php:117 -#: src/Module/Moderation/Users/Blocked.php:138 -#: src/Module/Moderation/Users/Index.php:154 +#: src/Module/Contact.php:449 src/Module/Contact/Profile.php:518 +#: src/Module/Moderation/Blocklist/Contact.php:103 +#: src/Module/Moderation/Users/Blocked.php:124 +#: src/Module/Moderation/Users/Index.php:140 msgid "Unblock" msgstr "Разблокиране" -#: src/Module/Contact.php:468 src/Module/Contact/Profile.php:519 +#: src/Module/Contact.php:450 src/Module/Contact/Profile.php:526 msgid "Unignore" msgstr "Извади от пренебрегнатите" -#: src/Module/Contact.php:469 src/Module/Contact/Profile.php:527 +#: src/Module/Contact.php:451 src/Module/Contact/Profile.php:534 msgid "Uncollapse" msgstr "" -#: src/Module/Contact.php:471 +#: src/Module/Contact.php:453 msgid "Batch Actions" msgstr "" -#: src/Module/Contact.php:514 +#: src/Module/Contact.php:496 msgid "Conversations started by this contact" msgstr "" -#: src/Module/Contact.php:519 +#: src/Module/Contact.php:501 msgid "Posts and Comments" msgstr "" -#: src/Module/Contact.php:522 +#: src/Module/Contact.php:504 msgid "Individual Posts and Replies" msgstr "" -#: src/Module/Contact.php:530 +#: src/Module/Contact.php:512 msgid "Posts containing media objects" msgstr "" -#: src/Module/Contact.php:538 +#: src/Module/Contact.php:520 msgid "View all known contacts" msgstr "" -#: src/Module/Contact.php:549 +#: src/Module/Contact.php:531 msgid "Advanced Contact Settings" msgstr "Разширени настройки за контакт" -#: src/Module/Contact.php:585 +#: src/Module/Contact.php:567 msgid "Mutual Friendship" msgstr "Взаимното приятелство" -#: src/Module/Contact.php:589 +#: src/Module/Contact.php:571 msgid "is a fan of yours" msgstr "е фенка" -#: src/Module/Contact.php:593 +#: src/Module/Contact.php:575 msgid "you are a fan of" msgstr "Вие сте фен на" -#: src/Module/Contact.php:611 +#: src/Module/Contact.php:593 msgid "Pending outgoing contact request" msgstr "" -#: src/Module/Contact.php:613 +#: src/Module/Contact.php:595 msgid "Pending incoming contact request" msgstr "" -#: src/Module/Contact.php:626 src/Module/Contact/Profile.php:371 +#: src/Module/Contact.php:608 src/Module/Contact/Profile.php:377 #, php-format msgid "Visit %s's profile [%s]" msgstr "Посетете %s Профилът на [ %s ]" -#: src/Module/Contact/Advanced.php:99 +#: src/Module/Contact/Advanced.php:85 msgid "Contact update failed." msgstr "Свържете се актуализира провали." -#: src/Module/Contact/Advanced.php:130 +#: src/Module/Contact/Advanced.php:116 msgid "Return to contact editor" msgstr "Назад, за да се свържете с редактор" -#: src/Module/Contact/Advanced.php:134 -#: src/Module/Moderation/Blocklist/Contact.php:122 -#: src/Module/Moderation/Reports.php:95 -#: src/Module/Moderation/Users/Active.php:126 -#: src/Module/Moderation/Users/Blocked.php:126 -#: src/Module/Moderation/Users/Create.php:70 -#: src/Module/Moderation/Users/Deleted.php:83 -#: src/Module/Moderation/Users/Index.php:140 -#: src/Module/Moderation/Users/Index.php:160 -#: src/Module/Moderation/Users/Pending.php:99 src/Module/Settings/OAuth.php:72 +#: src/Module/Contact/Advanced.php:120 +#: src/Module/Moderation/Blocklist/Contact.php:108 +#: src/Module/Moderation/Reports.php:102 +#: src/Module/Moderation/Users/Active.php:112 +#: src/Module/Moderation/Users/Blocked.php:112 +#: src/Module/Moderation/Users/Create.php:56 +#: src/Module/Moderation/Users/Deleted.php:69 +#: src/Module/Moderation/Users/Index.php:126 +#: src/Module/Moderation/Users/Index.php:146 +#: src/Module/Moderation/Users/Pending.php:85 src/Module/Settings/OAuth.php:58 msgid "Name" msgstr "Име" -#: src/Module/Contact/Advanced.php:135 +#: src/Module/Contact/Advanced.php:121 msgid "Account Nickname" msgstr "Сметка Псевдоним" -#: src/Module/Contact/Advanced.php:136 +#: src/Module/Contact/Advanced.php:122 msgid "Account URL" msgstr "Сметка URL" -#: src/Module/Contact/Advanced.php:137 +#: src/Module/Contact/Advanced.php:123 msgid "Poll/Feed URL" msgstr "Анкета / URL Feed" -#: src/Module/Contact/Advanced.php:138 +#: src/Module/Contact/Advanced.php:124 msgid "New photo from this URL" msgstr "Нова снимка от този адрес" -#: src/Module/Contact/Contacts.php:89 +#: src/Module/Contact/Contacts.php:75 msgid "No known contacts." msgstr "" -#: src/Module/Contact/Contacts.php:103 src/Module/Profile/Common.php:128 +#: src/Module/Contact/Contacts.php:89 src/Module/Profile/Common.php:114 msgid "No common contacts." msgstr "" -#: src/Module/Contact/Contacts.php:115 src/Module/Profile/Contacts.php:135 +#: src/Module/Contact/Contacts.php:101 src/Module/Profile/Contacts.php:121 #, php-format msgid "Follower (%s)" msgid_plural "Followers (%s)" msgstr[0] "" msgstr[1] "" -#: src/Module/Contact/Contacts.php:119 src/Module/Profile/Contacts.php:138 +#: src/Module/Contact/Contacts.php:105 src/Module/Profile/Contacts.php:124 #, php-format msgid "Following (%s)" msgid_plural "Following (%s)" msgstr[0] "" msgstr[1] "" -#: src/Module/Contact/Contacts.php:123 src/Module/Profile/Contacts.php:141 +#: src/Module/Contact/Contacts.php:109 src/Module/Profile/Contacts.php:127 #, php-format msgid "Mutual friend (%s)" msgid_plural "Mutual friends (%s)" msgstr[0] "" msgstr[1] "" -#: src/Module/Contact/Contacts.php:125 src/Module/Profile/Contacts.php:143 +#: src/Module/Contact/Contacts.php:111 src/Module/Profile/Contacts.php:129 #, php-format msgid "These contacts both follow and are followed by %s." msgstr "" -#: src/Module/Contact/Contacts.php:131 src/Module/Profile/Common.php:116 +#: src/Module/Contact/Contacts.php:117 src/Module/Profile/Common.php:102 #, php-format msgid "Common contact (%s)" msgid_plural "Common contacts (%s)" msgstr[0] "" msgstr[1] "" -#: src/Module/Contact/Contacts.php:133 src/Module/Profile/Common.php:118 +#: src/Module/Contact/Contacts.php:119 src/Module/Profile/Common.php:104 #, php-format msgid "" "Both %s and yourself have publicly interacted with these " "contacts (follow, comment or likes on public posts)." msgstr "" -#: src/Module/Contact/Contacts.php:139 src/Module/Profile/Contacts.php:149 +#: src/Module/Contact/Contacts.php:125 src/Module/Profile/Contacts.php:135 #, php-format msgid "Contact (%s)" msgid_plural "Contacts (%s)" msgstr[0] "" msgstr[1] "" -#: src/Module/Contact/Follow.php:70 src/Module/Contact/Redir.php:62 -#: src/Module/Contact/Redir.php:222 src/Module/Conversation/Community.php:166 -#: src/Module/Debug/ItemBody.php:38 src/Module/Diaspora/Receive.php:57 -#: src/Module/Item/Display.php:96 src/Module/Item/Feed.php:59 -#: src/Module/Item/Follow.php:41 src/Module/Item/Ignore.php:41 -#: src/Module/Item/Pin.php:41 src/Module/Item/Pin.php:56 -#: src/Module/Item/Star.php:42 src/Module/Update/Display.php:37 +#: src/Module/Contact/Follow.php:56 src/Module/Contact/Redir.php:45 +#: src/Module/Contact/Redir.php:206 src/Module/Conversation/Community.php:154 +#: src/Module/Debug/ItemBody.php:24 src/Module/Diaspora/Receive.php:45 +#: src/Module/Item/Display.php:82 src/Module/Item/Feed.php:45 +#: src/Module/Item/Follow.php:27 src/Module/Item/Ignore.php:27 +#: src/Module/Item/Language.php:39 src/Module/Item/Pin.php:27 +#: src/Module/Item/Pin.php:42 src/Module/Item/Searchtext.php:39 +#: src/Module/Item/Star.php:28 src/Module/Update/Display.php:23 msgid "Access denied." msgstr "Отказан достъп." -#: src/Module/Contact/Follow.php:105 src/Module/Contact/Unfollow.php:125 -#: src/Module/Profile/RemoteFollow.php:133 +#: src/Module/Contact/Follow.php:91 src/Module/Contact/Unfollow.php:111 +#: src/Module/Profile/RemoteFollow.php:119 msgid "Submit Request" msgstr "Изпращане на заявката" -#: src/Module/Contact/Follow.php:115 +#: src/Module/Contact/Follow.php:101 msgid "You already added this contact." msgstr "" -#: src/Module/Contact/Follow.php:130 +#: src/Module/Contact/Follow.php:116 msgid "The network type couldn't be detected. Contact can't be added." msgstr "" -#: src/Module/Contact/Follow.php:138 +#: src/Module/Contact/Follow.php:124 msgid "Diaspora support isn't enabled. Contact can't be added." msgstr "" -#: src/Module/Contact/Follow.php:143 -msgid "OStatus support is disabled. Contact can't be added." -msgstr "" - -#: src/Module/Contact/Follow.php:168 src/Module/Profile/RemoteFollow.php:132 +#: src/Module/Contact/Follow.php:149 src/Module/Profile/RemoteFollow.php:118 msgid "Please answer the following:" msgstr "Моля отговорете на следните:" -#: src/Module/Contact/Follow.php:169 src/Module/Contact/Unfollow.php:123 +#: src/Module/Contact/Follow.php:150 src/Module/Contact/Unfollow.php:109 msgid "Your Identity Address:" msgstr "Адрес на вашата самоличност:" -#: src/Module/Contact/Follow.php:170 src/Module/Contact/Profile.php:402 -#: src/Module/Contact/Unfollow.php:129 -#: src/Module/Moderation/Blocklist/Contact.php:133 -#: src/Module/Moderation/Reports.php:104 -#: src/Module/Notifications/Introductions.php:129 -#: src/Module/Notifications/Introductions.php:198 +#: src/Module/Contact/Follow.php:151 src/Module/Contact/Profile.php:408 +#: src/Module/Contact/Unfollow.php:115 +#: src/Module/Moderation/Blocklist/Contact.php:117 +#: src/Module/Moderation/Reports.php:109 +#: src/Module/Notifications/Introductions.php:121 +#: src/Module/Notifications/Introductions.php:190 msgid "Profile URL" msgstr "" -#: src/Module/Contact/Follow.php:171 src/Module/Contact/Profile.php:414 -#: src/Module/Notifications/Introductions.php:191 -#: src/Module/Profile/Profile.php:234 +#: src/Module/Contact/Follow.php:152 src/Module/Contact/Profile.php:420 +#: src/Module/Notifications/Introductions.php:183 +#: src/Module/Profile/Profile.php:222 msgid "Tags:" msgstr "Маркери:" -#: src/Module/Contact/Follow.php:182 +#: src/Module/Contact/Follow.php:163 #, php-format msgid "%s knows you" msgstr "" -#: src/Module/Contact/Follow.php:183 +#: src/Module/Contact/Follow.php:164 msgid "Add a personal note:" msgstr "Добавяне на лична бележка:" -#: src/Module/Contact/Follow.php:192 src/Module/Contact/Unfollow.php:138 +#: src/Module/Contact/Follow.php:173 src/Module/Contact/Unfollow.php:124 msgid "Posts and Replies" msgstr "" -#: src/Module/Contact/Follow.php:221 +#: src/Module/Contact/Follow.php:202 msgid "The contact could not be added." msgstr "" -#: src/Module/Contact/MatchInterests.php:94 -#: src/Module/Media/Attachment/Upload.php:77 -#: src/Module/Media/Attachment/Upload.php:82 -#: src/Module/Media/Photo/Upload.php:81 src/Module/Media/Photo/Upload.php:86 -#: src/Module/Media/Photo/Upload.php:135 +#: src/Module/Contact/MatchInterests.php:81 +#: src/Module/Media/Attachment/Upload.php:63 +#: src/Module/Media/Attachment/Upload.php:68 +#: src/Module/Media/Photo/Upload.php:67 src/Module/Media/Photo/Upload.php:72 +#: src/Module/Media/Photo/Upload.php:121 msgid "Invalid request." msgstr "" -#: src/Module/Contact/MatchInterests.php:101 +#: src/Module/Contact/MatchInterests.php:88 msgid "No keywords to match. Please add keywords to your profile." msgstr "" -#: src/Module/Contact/MatchInterests.php:144 +#: src/Module/Contact/MatchInterests.php:141 msgid "Profile Match" msgstr "Профил мач" -#: src/Module/Contact/Profile.php:140 +#: src/Module/Contact/Profile.php:131 msgid "Failed to update contact record." msgstr "Неуспех да се актуализира рекорд за контакт." -#: src/Module/Contact/Profile.php:190 +#: src/Module/Contact/Profile.php:195 msgid "Contact has been unblocked" msgstr "Контакт са отблокирани" -#: src/Module/Contact/Profile.php:194 +#: src/Module/Contact/Profile.php:199 msgid "Contact has been blocked" msgstr "За контакти е бил блокиран" -#: src/Module/Contact/Profile.php:206 +#: src/Module/Contact/Profile.php:211 msgid "Contact has been unignored" msgstr "За контакти е бил unignored" -#: src/Module/Contact/Profile.php:210 +#: src/Module/Contact/Profile.php:215 msgid "Contact has been ignored" msgstr "Лицето е било игнорирано" -#: src/Module/Contact/Profile.php:222 +#: src/Module/Contact/Profile.php:227 msgid "Contact has been uncollapsed" msgstr "" -#: src/Module/Contact/Profile.php:226 +#: src/Module/Contact/Profile.php:231 msgid "Contact has been collapsed" msgstr "" -#: src/Module/Contact/Profile.php:254 +#: src/Module/Contact/Profile.php:259 #, php-format msgid "You are mutual friends with %s" msgstr "Вие сте общи приятели с %s" -#: src/Module/Contact/Profile.php:255 +#: src/Module/Contact/Profile.php:260 #, php-format msgid "You are sharing with %s" msgstr "Вие споделяте с %s" -#: src/Module/Contact/Profile.php:256 +#: src/Module/Contact/Profile.php:261 #, php-format msgid "%s is sharing with you" msgstr "%s се споделя с вас" -#: src/Module/Contact/Profile.php:272 +#: src/Module/Contact/Profile.php:277 msgid "Private communications are not available for this contact." msgstr "Частни съобщения не са на разположение за този контакт." -#: src/Module/Contact/Profile.php:282 +#: src/Module/Contact/Profile.php:287 msgid "This contact is on a server you ignored." msgstr "" -#: src/Module/Contact/Profile.php:285 +#: src/Module/Contact/Profile.php:290 msgid "Never" msgstr "Никога!" -#: src/Module/Contact/Profile.php:288 +#: src/Module/Contact/Profile.php:293 msgid "(Update was not successful)" msgstr "(Актуализация не е била успешна)" -#: src/Module/Contact/Profile.php:288 +#: src/Module/Contact/Profile.php:293 msgid "(Update was successful)" msgstr "(Update е била успешна)" -#: src/Module/Contact/Profile.php:290 src/Module/Contact/Profile.php:482 +#: src/Module/Contact/Profile.php:295 src/Module/Contact/Profile.php:489 msgid "Suggest friends" msgstr "Предложете приятели" -#: src/Module/Contact/Profile.php:294 +#: src/Module/Contact/Profile.php:299 #, php-format msgid "Network type: %s" msgstr "Тип мрежа: %s" -#: src/Module/Contact/Profile.php:299 +#: src/Module/Contact/Profile.php:304 msgid "Communications lost with this contact!" msgstr "Communications загубиха с този контакт!" -#: src/Module/Contact/Profile.php:305 +#: src/Module/Contact/Profile.php:310 msgid "Fetch further information for feeds" msgstr "" -#: src/Module/Contact/Profile.php:307 +#: src/Module/Contact/Profile.php:312 msgid "" "Fetch information like preview pictures, title and teaser from the feed " "item. You can activate this if the feed doesn't contain much text. Keywords " "are taken from the meta header in the feed item and are posted as hash tags." msgstr "" -#: src/Module/Contact/Profile.php:310 +#: src/Module/Contact/Profile.php:315 msgid "Fetch information" msgstr "" -#: src/Module/Contact/Profile.php:311 +#: src/Module/Contact/Profile.php:316 msgid "Fetch keywords" msgstr "" -#: src/Module/Contact/Profile.php:312 +#: src/Module/Contact/Profile.php:317 msgid "Fetch information and keywords" msgstr "" -#: src/Module/Contact/Profile.php:322 src/Module/Contact/Profile.php:327 -#: src/Module/Contact/Profile.php:332 src/Module/Contact/Profile.php:338 +#: src/Module/Contact/Profile.php:327 src/Module/Contact/Profile.php:332 +#: src/Module/Contact/Profile.php:337 src/Module/Contact/Profile.php:343 msgid "No mirroring" msgstr "" -#: src/Module/Contact/Profile.php:323 src/Module/Contact/Profile.php:333 -#: src/Module/Contact/Profile.php:339 +#: src/Module/Contact/Profile.php:328 src/Module/Contact/Profile.php:338 +#: src/Module/Contact/Profile.php:344 msgid "Mirror as my own posting" msgstr "" -#: src/Module/Contact/Profile.php:328 src/Module/Contact/Profile.php:334 +#: src/Module/Contact/Profile.php:333 src/Module/Contact/Profile.php:339 msgid "Native reshare" msgstr "" -#: src/Module/Contact/Profile.php:353 +#: src/Module/Contact/Profile.php:359 msgid "Contact Information / Notes" msgstr "Информация за контакти / Забележки" -#: src/Module/Contact/Profile.php:354 +#: src/Module/Contact/Profile.php:360 msgid "Contact Settings" msgstr "" -#: src/Module/Contact/Profile.php:362 +#: src/Module/Contact/Profile.php:368 msgid "Contact" msgstr "" -#: src/Module/Contact/Profile.php:366 +#: src/Module/Contact/Profile.php:372 msgid "Their personal note" msgstr "" -#: src/Module/Contact/Profile.php:368 +#: src/Module/Contact/Profile.php:374 msgid "Edit contact notes" msgstr "Редактиране на контакт с бележка" -#: src/Module/Contact/Profile.php:372 +#: src/Module/Contact/Profile.php:378 msgid "Block/Unblock contact" msgstr "Блокиране / Деблокиране на контакт" -#: src/Module/Contact/Profile.php:373 -#: src/Module/Moderation/Report/Create.php:293 +#: src/Module/Contact/Profile.php:379 +#: src/Module/Moderation/Report/Create.php:279 msgid "Ignore contact" msgstr "Игнорирай се свържете с" -#: src/Module/Contact/Profile.php:374 +#: src/Module/Contact/Profile.php:380 msgid "View conversations" msgstr "Вижте разговори" -#: src/Module/Contact/Profile.php:379 +#: src/Module/Contact/Profile.php:385 msgid "Last update:" msgstr "Последна актуализация:" -#: src/Module/Contact/Profile.php:381 +#: src/Module/Contact/Profile.php:387 msgid "Update public posts" msgstr "Актуализиране на държавни длъжности" -#: src/Module/Contact/Profile.php:383 src/Module/Contact/Profile.php:492 +#: src/Module/Contact/Profile.php:389 src/Module/Contact/Profile.php:499 msgid "Update now" msgstr "Актуализирай сега" -#: src/Module/Contact/Profile.php:385 +#: src/Module/Contact/Profile.php:391 msgid "Awaiting connection acknowledge" msgstr "" -#: src/Module/Contact/Profile.php:386 +#: src/Module/Contact/Profile.php:392 msgid "Currently blocked" msgstr "Които понастоящем са блокирани" -#: src/Module/Contact/Profile.php:387 +#: src/Module/Contact/Profile.php:393 msgid "Currently ignored" msgstr "В момента игнорирани" -#: src/Module/Contact/Profile.php:388 +#: src/Module/Contact/Profile.php:394 msgid "Currently collapsed" msgstr "" -#: src/Module/Contact/Profile.php:389 +#: src/Module/Contact/Profile.php:395 msgid "Currently archived" msgstr "В момента архивират" -#: src/Module/Contact/Profile.php:392 +#: src/Module/Contact/Profile.php:398 msgid "Manage remote servers" msgstr "" -#: src/Module/Contact/Profile.php:394 -#: src/Module/Notifications/Introductions.php:192 +#: src/Module/Contact/Profile.php:400 +#: src/Module/Notifications/Introductions.php:184 msgid "Hide this contact from others" msgstr "Скриване на този контакт от другите" -#: src/Module/Contact/Profile.php:394 +#: src/Module/Contact/Profile.php:400 msgid "" "Replies/likes to your public posts may still be visible" msgstr "Отговори / обича да си публични длъжности май все още да се вижда" -#: src/Module/Contact/Profile.php:395 +#: src/Module/Contact/Profile.php:401 msgid "Notification for new posts" msgstr "" -#: src/Module/Contact/Profile.php:395 +#: src/Module/Contact/Profile.php:401 msgid "Send a notification of every new post of this contact" msgstr "" -#: src/Module/Contact/Profile.php:397 +#: src/Module/Contact/Profile.php:403 msgid "Keyword Deny List" msgstr "" -#: src/Module/Contact/Profile.php:397 +#: src/Module/Contact/Profile.php:403 msgid "" "Comma separated list of keywords that should not be converted to hashtags, " "when \"Fetch information and keywords\" is selected" msgstr "" -#: src/Module/Contact/Profile.php:415 -#: src/Module/Settings/TwoFactor/Index.php:160 +#: src/Module/Contact/Profile.php:421 +#: src/Module/Settings/TwoFactor/Index.php:146 msgid "Actions" msgstr "" -#: src/Module/Contact/Profile.php:417 -#: src/Module/Settings/TwoFactor/Index.php:140 view/theme/frio/theme.php:232 +#: src/Module/Contact/Profile.php:423 +#: src/Module/Settings/TwoFactor/Index.php:126 view/theme/frio/theme.php:220 msgid "Status" msgstr "Състояние:" -#: src/Module/Contact/Profile.php:423 +#: src/Module/Contact/Profile.php:429 msgid "Mirror postings from this contact" msgstr "" -#: src/Module/Contact/Profile.php:425 +#: src/Module/Contact/Profile.php:431 msgid "" "Mark this contact as remote_self, this will cause friendica to repost new " "entries from this contact." msgstr "" -#: src/Module/Contact/Profile.php:428 +#: src/Module/Contact/Profile.php:434 msgid "Channel Settings" msgstr "" -#: src/Module/Contact/Profile.php:429 +#: src/Module/Contact/Profile.php:435 msgid "Frequency of this contact in relevant channels" msgstr "" -#: src/Module/Contact/Profile.php:430 +#: src/Module/Contact/Profile.php:436 msgid "" "Depending on the type of the channel not all posts from this contact are " "displayed. By default, posts need to have a minimum amount of interactions " @@ -6915,711 +6989,706 @@ msgid "" "block or hide the contact completely." msgstr "" -#: src/Module/Contact/Profile.php:431 +#: src/Module/Contact/Profile.php:437 msgid "Default frequency" msgstr "" -#: src/Module/Contact/Profile.php:431 +#: src/Module/Contact/Profile.php:437 msgid "" "Posts by this contact are displayed in the \"for you\" channel if you " "interact often with this contact or if a post reached some level of " "interaction." msgstr "" -#: src/Module/Contact/Profile.php:432 +#: src/Module/Contact/Profile.php:438 msgid "Display all posts of this contact" msgstr "" -#: src/Module/Contact/Profile.php:432 +#: src/Module/Contact/Profile.php:438 msgid "All posts from this contact will appear on the \"for you\" channel" msgstr "" -#: src/Module/Contact/Profile.php:433 +#: src/Module/Contact/Profile.php:439 msgid "Display only few posts" msgstr "" -#: src/Module/Contact/Profile.php:433 +#: src/Module/Contact/Profile.php:439 msgid "" "When a contact creates a lot of posts in a short period, this setting " "reduces the number of displayed posts in every channel." msgstr "" -#: src/Module/Contact/Profile.php:434 +#: src/Module/Contact/Profile.php:440 msgid "Never display posts" msgstr "" -#: src/Module/Contact/Profile.php:434 +#: src/Module/Contact/Profile.php:440 msgid "Posts from this contact will never be displayed in any channel" msgstr "" -#: src/Module/Contact/Profile.php:502 +#: src/Module/Contact/Profile.php:441 +msgid "Channel Only" +msgstr "" + +#: src/Module/Contact/Profile.php:441 +msgid "" +"If enabled, posts from this contact will only appear in channels and network" +" streams in circles, but not in the general network stream." +msgstr "" + +#: src/Module/Contact/Profile.php:509 msgid "Refetch contact data" msgstr "" -#: src/Module/Contact/Profile.php:513 +#: src/Module/Contact/Profile.php:520 msgid "Toggle Blocked status" msgstr "Превключване Блокирани статус" -#: src/Module/Contact/Profile.php:521 +#: src/Module/Contact/Profile.php:528 msgid "Toggle Ignored status" msgstr "Превключване игнорирани статус" -#: src/Module/Contact/Profile.php:529 +#: src/Module/Contact/Profile.php:536 msgid "Toggle Collapsed status" msgstr "" -#: src/Module/Contact/Profile.php:536 src/Module/Contact/Revoke.php:106 +#: src/Module/Contact/Profile.php:543 src/Module/Contact/Revoke.php:89 msgid "Revoke Follow" msgstr "" -#: src/Module/Contact/Profile.php:538 +#: src/Module/Contact/Profile.php:545 msgid "Revoke the follow from this contact" msgstr "" -#: src/Module/Contact/Redir.php:134 src/Module/Contact/Redir.php:186 +#: src/Module/Contact/Redir.php:125 msgid "Bad Request." msgstr "" -#: src/Module/Contact/Revoke.php:63 -msgid "Unknown contact." -msgstr "" - -#: src/Module/Contact/Revoke.php:77 +#: src/Module/Contact/Revoke.php:60 msgid "Contact is being deleted." msgstr "" -#: src/Module/Contact/Revoke.php:91 +#: src/Module/Contact/Revoke.php:74 msgid "Follow was successfully revoked." msgstr "" -#: src/Module/Contact/Revoke.php:107 +#: src/Module/Contact/Revoke.php:90 msgid "" "Do you really want to revoke this contact's follow? This cannot be undone " "and they will have to manually follow you back again." msgstr "" -#: src/Module/Contact/Revoke.php:108 -#: src/Module/Notifications/Introductions.php:144 -#: src/Module/OAuth/Acknowledge.php:54 src/Module/Register.php:130 -#: src/Module/Settings/TwoFactor/Trusted.php:129 -msgid "Yes" -msgstr "Yes" - -#: src/Module/Contact/Suggestions.php:62 +#: src/Module/Contact/Suggestions.php:48 msgid "" "No suggestions available. If this is a new site, please try again in 24 " "hours." msgstr "Няма предложения. Ако това е нов сайт, моля опитайте отново в рамките на 24 часа." -#: src/Module/Contact/Unfollow.php:98 src/Module/Contact/Unfollow.php:167 +#: src/Module/Contact/Unfollow.php:84 src/Module/Contact/Unfollow.php:153 msgid "You aren't following this contact." msgstr "" -#: src/Module/Contact/Unfollow.php:103 +#: src/Module/Contact/Unfollow.php:89 msgid "Unfollowing is currently not supported by your network." msgstr "" -#: src/Module/Contact/Unfollow.php:121 +#: src/Module/Contact/Unfollow.php:107 msgid "Disconnect/Unfollow" msgstr "" -#: src/Module/Contact/Unfollow.php:175 +#: src/Module/Contact/Unfollow.php:161 msgid "Contact was successfully unfollowed" msgstr "" -#: src/Module/Contact/Unfollow.php:178 +#: src/Module/Contact/Unfollow.php:164 msgid "Unable to unfollow this contact, please contact your administrator" msgstr "" -#: src/Module/Conversation/Channel.php:139 -#: src/Module/Conversation/Community.php:126 src/Module/Search/Index.php:152 -#: src/Module/Search/Index.php:194 +#: src/Module/Conversation/Channel.php:125 +#: src/Module/Conversation/Community.php:114 src/Module/Search/Index.php:138 +#: src/Module/Search/Index.php:180 msgid "No results." msgstr "Няма резултати." -#: src/Module/Conversation/Channel.php:177 +#: src/Module/Conversation/Channel.php:163 msgid "Channel not available." msgstr "" -#: src/Module/Conversation/Community.php:92 +#: src/Module/Conversation/Community.php:80 msgid "" "This community stream shows all public posts received by this node. They may" " not reflect the opinions of this node’s users." msgstr "" -#: src/Module/Conversation/Community.php:180 +#: src/Module/Conversation/Community.php:168 msgid "Community option not available." msgstr "" -#: src/Module/Conversation/Community.php:196 +#: src/Module/Conversation/Community.php:184 msgid "Not available." msgstr "Няма налични" -#: src/Module/Conversation/Network.php:200 +#: src/Module/Conversation/Network.php:202 msgid "No such circle" msgstr "" -#: src/Module/Conversation/Network.php:204 +#: src/Module/Conversation/Network.php:206 #, php-format msgid "Circle: %s" msgstr "" -#: src/Module/Conversation/Network.php:223 +#: src/Module/Conversation/Network.php:226 #, php-format msgid "Error %d (%s) while fetching the timeline." msgstr "" -#: src/Module/Conversation/Network.php:300 +#: src/Module/Conversation/Network.php:304 msgid "Network feed not available." msgstr "" -#: src/Module/Conversation/Timeline.php:196 -msgid "Own Contacts" -msgstr "" - -#: src/Module/Conversation/Timeline.php:200 +#: src/Module/Conversation/Timeline.php:190 msgid "Include" msgstr "" -#: src/Module/Conversation/Timeline.php:201 +#: src/Module/Conversation/Timeline.php:191 msgid "Hide" msgstr "" -#: src/Module/Credits.php:44 +#: src/Module/Credits.php:30 msgid "Credits" msgstr "" -#: src/Module/Credits.php:45 +#: src/Module/Credits.php:31 msgid "" "Friendica is a community project, that would not be possible without the " "help of many people. Here is a list of those who have contributed to the " "code or the translation of Friendica. Thank you all!" msgstr "" -#: src/Module/Debug/ActivityPubConversion.php:53 +#: src/Module/Debug/ActivityPubConversion.php:45 msgid "Formatted" msgstr "" -#: src/Module/Debug/ActivityPubConversion.php:65 +#: src/Module/Debug/ActivityPubConversion.php:57 msgid "Activity" msgstr "" -#: src/Module/Debug/ActivityPubConversion.php:117 +#: src/Module/Debug/ActivityPubConversion.php:109 msgid "Object data" msgstr "" -#: src/Module/Debug/ActivityPubConversion.php:124 +#: src/Module/Debug/ActivityPubConversion.php:116 msgid "Result Item" msgstr "" -#: src/Module/Debug/ActivityPubConversion.php:129 -#: src/Module/Debug/Babel.php:294 src/Module/Moderation/Item/Source.php:87 -#: src/Module/Security/TwoFactor/Verify.php:98 +#: src/Module/Debug/ActivityPubConversion.php:121 +#: src/Module/Debug/Babel.php:286 src/Module/Moderation/Item/Source.php:79 +#: src/Module/Security/TwoFactor/Verify.php:84 msgid "Error" msgid_plural "Errors" msgstr[0] "" msgstr[1] "" -#: src/Module/Debug/ActivityPubConversion.php:138 +#: src/Module/Debug/ActivityPubConversion.php:130 msgid "Source activity" msgstr "" -#: src/Module/Debug/Babel.php:52 +#: src/Module/Debug/Babel.php:44 msgid "Source input" msgstr "" -#: src/Module/Debug/Babel.php:58 +#: src/Module/Debug/Babel.php:50 msgid "BBCode::toPlaintext" msgstr "" -#: src/Module/Debug/Babel.php:64 +#: src/Module/Debug/Babel.php:56 msgid "BBCode::convert (raw HTML)" msgstr "" -#: src/Module/Debug/Babel.php:69 +#: src/Module/Debug/Babel.php:61 msgid "BBCode::convert (hex)" msgstr "" -#: src/Module/Debug/Babel.php:74 +#: src/Module/Debug/Babel.php:66 msgid "BBCode::convert" msgstr "" -#: src/Module/Debug/Babel.php:80 +#: src/Module/Debug/Babel.php:72 msgid "BBCode::convert => HTML::toBBCode" msgstr "" -#: src/Module/Debug/Babel.php:86 +#: src/Module/Debug/Babel.php:78 msgid "BBCode::toMarkdown" msgstr "" -#: src/Module/Debug/Babel.php:92 +#: src/Module/Debug/Babel.php:84 msgid "BBCode::toMarkdown => Markdown::convert (raw HTML)" msgstr "" -#: src/Module/Debug/Babel.php:96 +#: src/Module/Debug/Babel.php:88 msgid "BBCode::toMarkdown => Markdown::convert" msgstr "" -#: src/Module/Debug/Babel.php:102 +#: src/Module/Debug/Babel.php:94 msgid "BBCode::toMarkdown => Markdown::toBBCode" msgstr "" -#: src/Module/Debug/Babel.php:108 +#: src/Module/Debug/Babel.php:100 msgid "BBCode::toMarkdown => Markdown::convert => HTML::toBBCode" msgstr "" -#: src/Module/Debug/Babel.php:116 +#: src/Module/Debug/Babel.php:108 msgid "Item Body" msgstr "" -#: src/Module/Debug/Babel.php:120 +#: src/Module/Debug/Babel.php:112 msgid "Item Tags" msgstr "" -#: src/Module/Debug/Babel.php:126 +#: src/Module/Debug/Babel.php:118 msgid "PageInfo::appendToBody" msgstr "" -#: src/Module/Debug/Babel.php:131 +#: src/Module/Debug/Babel.php:123 msgid "PageInfo::appendToBody => BBCode::convert (raw HTML)" msgstr "" -#: src/Module/Debug/Babel.php:135 +#: src/Module/Debug/Babel.php:127 msgid "PageInfo::appendToBody => BBCode::convert" msgstr "" -#: src/Module/Debug/Babel.php:142 +#: src/Module/Debug/Babel.php:134 msgid "Source input (Diaspora format)" msgstr "" -#: src/Module/Debug/Babel.php:151 +#: src/Module/Debug/Babel.php:143 msgid "Source input (Markdown)" msgstr "" -#: src/Module/Debug/Babel.php:157 +#: src/Module/Debug/Babel.php:149 msgid "Markdown::convert (raw HTML)" msgstr "" -#: src/Module/Debug/Babel.php:162 +#: src/Module/Debug/Babel.php:154 msgid "Markdown::convert" msgstr "" -#: src/Module/Debug/Babel.php:168 +#: src/Module/Debug/Babel.php:160 msgid "Markdown::toBBCode" msgstr "" -#: src/Module/Debug/Babel.php:175 +#: src/Module/Debug/Babel.php:167 msgid "Raw HTML input" msgstr "" -#: src/Module/Debug/Babel.php:180 +#: src/Module/Debug/Babel.php:172 msgid "HTML Input" msgstr "" -#: src/Module/Debug/Babel.php:187 +#: src/Module/Debug/Babel.php:179 msgid "HTML Purified (raw)" msgstr "" -#: src/Module/Debug/Babel.php:192 +#: src/Module/Debug/Babel.php:184 msgid "HTML Purified (hex)" msgstr "" -#: src/Module/Debug/Babel.php:197 +#: src/Module/Debug/Babel.php:189 msgid "HTML Purified" msgstr "" -#: src/Module/Debug/Babel.php:203 +#: src/Module/Debug/Babel.php:195 msgid "HTML::toBBCode" msgstr "" -#: src/Module/Debug/Babel.php:209 +#: src/Module/Debug/Babel.php:201 msgid "HTML::toBBCode => BBCode::convert" msgstr "" -#: src/Module/Debug/Babel.php:214 +#: src/Module/Debug/Babel.php:206 msgid "HTML::toBBCode => BBCode::convert (raw HTML)" msgstr "" -#: src/Module/Debug/Babel.php:220 +#: src/Module/Debug/Babel.php:212 msgid "HTML::toBBCode => BBCode::toPlaintext" msgstr "" -#: src/Module/Debug/Babel.php:226 +#: src/Module/Debug/Babel.php:218 msgid "HTML::toMarkdown" msgstr "" -#: src/Module/Debug/Babel.php:232 +#: src/Module/Debug/Babel.php:224 msgid "HTML::toPlaintext" msgstr "" -#: src/Module/Debug/Babel.php:238 +#: src/Module/Debug/Babel.php:230 msgid "HTML::toPlaintext (compact)" msgstr "" -#: src/Module/Debug/Babel.php:256 +#: src/Module/Debug/Babel.php:248 msgid "Decoded post" msgstr "" -#: src/Module/Debug/Babel.php:277 +#: src/Module/Debug/Babel.php:269 msgid "Post array before expand entities" msgstr "" -#: src/Module/Debug/Babel.php:284 +#: src/Module/Debug/Babel.php:276 msgid "Post converted" msgstr "" -#: src/Module/Debug/Babel.php:289 +#: src/Module/Debug/Babel.php:281 msgid "Converted body" msgstr "" -#: src/Module/Debug/Babel.php:295 +#: src/Module/Debug/Babel.php:287 msgid "Twitter addon is absent from the addon/ folder." msgstr "" -#: src/Module/Debug/Babel.php:305 +#: src/Module/Debug/Babel.php:297 msgid "Babel Diagnostic" msgstr "" -#: src/Module/Debug/Babel.php:307 +#: src/Module/Debug/Babel.php:299 msgid "Source text" msgstr "" -#: src/Module/Debug/Babel.php:308 +#: src/Module/Debug/Babel.php:300 msgid "BBCode" msgstr "" -#: src/Module/Debug/Babel.php:310 +#: src/Module/Debug/Babel.php:302 msgid "Markdown" msgstr "" -#: src/Module/Debug/Babel.php:311 +#: src/Module/Debug/Babel.php:303 msgid "HTML" msgstr "" -#: src/Module/Debug/Babel.php:313 +#: src/Module/Debug/Babel.php:305 msgid "Twitter Source / Tweet URL (requires API key)" msgstr "" -#: src/Module/Debug/Feed.php:52 src/Module/Filer/SaveTag.php:47 -#: src/Module/Settings/Profile/Index.php:177 +#: src/Module/Debug/Feed.php:39 src/Module/Filer/SaveTag.php:33 +#: src/Module/Settings/Profile/Index.php:166 msgid "You must be logged in to use this module" msgstr "" -#: src/Module/Debug/Feed.php:77 +#: src/Module/Debug/Feed.php:64 msgid "Source URL" msgstr "" -#: src/Module/Debug/Localtime.php:49 +#: src/Module/Debug/Localtime.php:35 msgid "Time Conversion" msgstr "Време за преобразуване" -#: src/Module/Debug/Localtime.php:50 +#: src/Module/Debug/Localtime.php:36 msgid "" "Friendica provides this service for sharing events with other networks and " "friends in unknown timezones." msgstr "" -#: src/Module/Debug/Localtime.php:51 +#: src/Module/Debug/Localtime.php:37 #, php-format msgid "UTC time: %s" msgstr "UTC време: %s" -#: src/Module/Debug/Localtime.php:54 +#: src/Module/Debug/Localtime.php:40 #, php-format msgid "Current timezone: %s" msgstr "Текуща часова зона: %s" -#: src/Module/Debug/Localtime.php:58 +#: src/Module/Debug/Localtime.php:44 #, php-format msgid "Converted localtime: %s" msgstr "Превърнат localtime: %s" -#: src/Module/Debug/Localtime.php:62 +#: src/Module/Debug/Localtime.php:48 msgid "Please select your timezone:" msgstr "Моля изберете вашия часовата зона:" -#: src/Module/Debug/Probe.php:38 src/Module/Debug/WebFinger.php:37 +#: src/Module/Debug/Probe.php:24 src/Module/Debug/WebFinger.php:23 msgid "Only logged in users are permitted to perform a probing." msgstr "" -#: src/Module/Debug/Probe.php:52 +#: src/Module/Debug/Probe.php:38 msgid "Probe Diagnostic" msgstr "" -#: src/Module/Debug/Probe.php:53 +#: src/Module/Debug/Probe.php:39 msgid "Output" msgstr "" -#: src/Module/Debug/Probe.php:56 +#: src/Module/Debug/Probe.php:42 msgid "Lookup address" msgstr "" -#: src/Module/Debug/WebFinger.php:50 +#: src/Module/Debug/WebFinger.php:36 msgid "Webfinger Diagnostic" msgstr "" -#: src/Module/Debug/WebFinger.php:52 +#: src/Module/Debug/WebFinger.php:38 msgid "Lookup address:" msgstr "" -#: src/Module/Directory.php:74 +#: src/Module/Directory.php:61 msgid "No entries (some entries may be hidden)." msgstr "Няма записи (някои вписвания, могат да бъдат скрити)." -#: src/Module/Directory.php:90 +#: src/Module/Directory.php:77 msgid "Find on this site" msgstr "Търсене в този сайт" -#: src/Module/Directory.php:92 +#: src/Module/Directory.php:79 msgid "Results for:" msgstr "" -#: src/Module/Directory.php:94 +#: src/Module/Directory.php:81 msgid "Site Directory" msgstr "Site Directory" -#: src/Module/Filer/RemoveTag.php:105 +#: src/Module/Filer/RemoveTag.php:91 msgid "Item was not deleted" msgstr "" -#: src/Module/Filer/RemoveTag.php:115 +#: src/Module/Filer/RemoveTag.php:101 msgid "Item was not removed" msgstr "" -#: src/Module/Filer/SaveTag.php:73 +#: src/Module/Filer/SaveTag.php:59 msgid "- select -" msgstr "избор" -#: src/Module/FriendSuggest.php:82 +#: src/Module/FriendSuggest.php:68 msgid "Suggested contact not found." msgstr "" -#: src/Module/FriendSuggest.php:100 +#: src/Module/FriendSuggest.php:86 msgid "Friend suggestion sent." msgstr "Предложението за приятелство е изпратено." -#: src/Module/FriendSuggest.php:137 +#: src/Module/FriendSuggest.php:123 msgid "Suggest Friends" msgstr "Предлагане на приятели" -#: src/Module/FriendSuggest.php:140 +#: src/Module/FriendSuggest.php:126 #, php-format msgid "Suggest a friend for %s" msgstr "Предлагане на приятел за %s" -#: src/Module/Friendica.php:82 +#: src/Module/Friendica.php:67 msgid "Installed addons/apps:" msgstr "" -#: src/Module/Friendica.php:87 +#: src/Module/Friendica.php:72 msgid "No installed addons/apps" msgstr "" -#: src/Module/Friendica.php:92 +#: src/Module/Friendica.php:77 #, php-format msgid "Read about the Terms of Service of this node." msgstr "" -#: src/Module/Friendica.php:99 +#: src/Module/Friendica.php:84 msgid "On this server the following remote servers are blocked." 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:226 +#: src/Module/Friendica.php:87 +#: src/Module/Moderation/Blocklist/Server/Index.php:73 +#: src/Module/Moderation/Blocklist/Server/Index.php:97 +#: src/Module/Settings/Channels.php:218 msgid "Reason for the block" msgstr "" -#: src/Module/Friendica.php:104 +#: src/Module/Friendica.php:89 msgid "Download this list in CSV format" msgstr "" -#: src/Module/Friendica.php:118 +#: src/Module/Friendica.php:103 #, php-format msgid "" "This is Friendica, version %s that is running at the web location %s. The " "database version is %s, the post update version is %s." msgstr "" -#: src/Module/Friendica.php:123 +#: src/Module/Friendica.php:108 msgid "" "Please visit Friendi.ca to learn more " "about the Friendica project." msgstr "" -#: src/Module/Friendica.php:124 +#: src/Module/Friendica.php:109 msgid "Bug reports and issues: please visit" msgstr "Доклади за грешки и проблеми: моля посетете" -#: src/Module/Friendica.php:124 +#: src/Module/Friendica.php:109 msgid "the bugtracker at github" msgstr "" -#: src/Module/Friendica.php:125 +#: src/Module/Friendica.php:110 msgid "Suggestions, praise, etc. - please email \"info\" at \"friendi - dot - ca" msgstr "" -#: src/Module/HCard.php:45 +#: src/Module/HCard.php:31 msgid "No profile" msgstr "Няма профил" -#: src/Module/HTTPException/MethodNotAllowed.php:31 +#: src/Module/HTTPException/MethodNotAllowed.php:17 msgid "Method Not Allowed." msgstr "" -#: src/Module/Help.php:60 +#: src/Module/Help.php:46 msgid "Help:" msgstr "Помощ" -#: src/Module/Home.php:63 +#: src/Module/Home.php:52 #, php-format msgid "Welcome to %s" msgstr "Добре дошли %s" -#: src/Module/Install.php:189 +#: src/Module/Install.php:175 msgid "Friendica Communications Server - Setup" msgstr "" -#: src/Module/Install.php:200 +#: src/Module/Install.php:186 msgid "System check" msgstr "Проверка на системата" -#: src/Module/Install.php:202 src/Module/Install.php:247 -#: src/Module/Install.php:326 +#: src/Module/Install.php:188 src/Module/Install.php:233 +#: src/Module/Install.php:312 msgid "Requirement not satisfied" msgstr "" -#: src/Module/Install.php:203 +#: src/Module/Install.php:189 msgid "Optional requirement not satisfied" msgstr "" -#: src/Module/Install.php:204 +#: src/Module/Install.php:190 msgid "OK" msgstr "" -#: src/Module/Install.php:208 +#: src/Module/Install.php:194 msgid "Next" msgstr "Следваща" -#: src/Module/Install.php:209 +#: src/Module/Install.php:195 msgid "Check again" msgstr "Проверете отново" -#: src/Module/Install.php:222 +#: src/Module/Install.php:208 msgid "Base settings" msgstr "" -#: src/Module/Install.php:224 +#: src/Module/Install.php:210 msgid "Base path to installation" msgstr "" -#: src/Module/Install.php:226 +#: src/Module/Install.php:212 msgid "" "If the system cannot detect the correct path to your installation, enter the" " correct path here. This setting should only be set if you are using a " "restricted system and symbolic links to your webroot." msgstr "" -#: src/Module/Install.php:229 +#: src/Module/Install.php:215 msgid "The Friendica system URL" msgstr "" -#: src/Module/Install.php:231 +#: src/Module/Install.php:217 msgid "" "Overwrite this field in case the system URL determination isn't right, " "otherwise leave it as is." msgstr "" -#: src/Module/Install.php:242 +#: src/Module/Install.php:228 msgid "Database connection" msgstr "Свързване на база данни" -#: src/Module/Install.php:243 +#: src/Module/Install.php:229 msgid "" "In order to install Friendica we need to know how to connect to your " "database." msgstr "За да инсталирате Friendica трябва да знаем как да се свърже към вашата база данни." -#: src/Module/Install.php:244 +#: src/Module/Install.php:230 msgid "" "Please contact your hosting provider or site administrator if you have " "questions about these settings." msgstr "Моля, свържете с вашия хостинг доставчик или администратора на сайта, ако имате въпроси относно тези настройки." -#: src/Module/Install.php:245 +#: src/Module/Install.php:231 msgid "" "The database you specify below should already exist. If it does not, please " "create it before continuing." msgstr "База данни, за да определите по-долу би трябвало вече да съществува. Ако това не стане, моля да го създадете, преди да продължите." -#: src/Module/Install.php:252 +#: src/Module/Install.php:238 msgid "Database Server Name" msgstr "Име на сървър за база данни" -#: src/Module/Install.php:257 +#: src/Module/Install.php:243 msgid "Database Login Name" msgstr "Името на базата данни Парола" -#: src/Module/Install.php:263 +#: src/Module/Install.php:249 msgid "Database Login Password" msgstr "Database Влизам Парола" -#: src/Module/Install.php:265 +#: src/Module/Install.php:251 msgid "For security reasons the password must not be empty" msgstr "" -#: src/Module/Install.php:268 +#: src/Module/Install.php:254 msgid "Database Name" msgstr "Име на база данни" -#: src/Module/Install.php:272 src/Module/Install.php:300 +#: src/Module/Install.php:258 src/Module/Install.php:286 msgid "Please select a default timezone for your website" msgstr "Моля, изберете часовата зона по подразбиране за вашия уеб сайт" -#: src/Module/Install.php:287 +#: src/Module/Install.php:273 msgid "Site settings" msgstr "Настройки на сайта" -#: src/Module/Install.php:295 +#: src/Module/Install.php:281 msgid "Site administrator email address" msgstr "Сайт администратор на имейл адрес" -#: src/Module/Install.php:297 +#: src/Module/Install.php:283 msgid "" "Your account email address must match this in order to use the web admin " "panel." msgstr "Вашият имейл адрес трябва да съответстват на това, за да използвате уеб панел администратор." -#: src/Module/Install.php:304 +#: src/Module/Install.php:290 msgid "System Language:" msgstr "" -#: src/Module/Install.php:306 +#: src/Module/Install.php:292 msgid "" "Set the default language for your Friendica installation interface and to " "send emails." msgstr "" -#: src/Module/Install.php:318 +#: src/Module/Install.php:304 msgid "Your Friendica site database has been installed." msgstr "Вашият Friendica сайт база данни е инсталиран." -#: src/Module/Install.php:328 +#: src/Module/Install.php:314 msgid "Installation finished" msgstr "" -#: src/Module/Install.php:348 +#: src/Module/Install.php:334 msgid "

What next

" msgstr "

Каква е следващата стъпка " -#: src/Module/Install.php:349 +#: src/Module/Install.php:335 msgid "" "IMPORTANT: You will need to [manually] setup a scheduled task for the " "worker." msgstr "" -#: src/Module/Install.php:352 +#: src/Module/Install.php:338 #, php-format msgid "" "Go to your new Friendica node registration page " @@ -7627,40 +7696,40 @@ msgid "" " administrator email. This will allow you to enter the site admin panel." msgstr "" -#: src/Module/Invite.php:57 +#: src/Module/Invite.php:43 msgid "Total invitation limit exceeded." msgstr "" -#: src/Module/Invite.php:82 +#: src/Module/Invite.php:68 #, php-format msgid "%s : Not a valid email address." msgstr "%s не е валиден имейл адрес." -#: src/Module/Invite.php:108 +#: src/Module/Invite.php:94 msgid "Please join us on Friendica" msgstr "Моля, присъединете се към нас на Friendica" -#: src/Module/Invite.php:117 +#: src/Module/Invite.php:103 msgid "Invitation limit exceeded. Please contact your site administrator." msgstr "" -#: src/Module/Invite.php:121 +#: src/Module/Invite.php:107 #, php-format msgid "%s : Message delivery failed." msgstr "%s : Съобщение доставка не успя." -#: src/Module/Invite.php:125 +#: src/Module/Invite.php:111 #, php-format msgid "%d message sent." msgid_plural "%d messages sent." msgstr[0] "" msgstr[1] "" -#: src/Module/Invite.php:143 +#: src/Module/Invite.php:129 msgid "You have no more invitations available" msgstr "Имате няма повече покани" -#: src/Module/Invite.php:150 +#: src/Module/Invite.php:136 #, php-format msgid "" "Visit %s for a list of public sites that you can join. Friendica members on " @@ -7668,14 +7737,14 @@ msgid "" " other social networks." msgstr "Посетете %s за списък на публичните сайтове, които можете да се присъедините. Friendica членове на други сайтове могат да се свързват един с друг, както и с членовете на много други социални мрежи." -#: src/Module/Invite.php:152 +#: src/Module/Invite.php:138 #, php-format msgid "" "To accept this invitation, please visit and register at %s or any other " "public Friendica website." msgstr "За да приемете тази покана, моля, посетете и се регистрира в %s или друга публична уебсайт Friendica." -#: src/Module/Invite.php:153 +#: src/Module/Invite.php:139 #, php-format msgid "" "Friendica sites all inter-connect to create a huge privacy-enhanced social " @@ -7684,333 +7753,337 @@ msgid "" "sites you can join." msgstr "Friendica сайтове се свързват, за да се създаде огромна допълнителна защита на личния живот, социална мрежа, която е собственост и се управлява от нейните членове. Те също могат да се свържат с много от традиционните социални мрежи. Виж %s за списък на алтернативни сайтове Friendica, можете да се присъедините." -#: src/Module/Invite.php:157 +#: src/Module/Invite.php:143 msgid "" "Our apologies. This system is not currently configured to connect with other" " public sites or invite members." msgstr "Нашите извинения. Тази система в момента не е конфигуриран да се свържете с други обществени обекти, или ще поканят членове." -#: src/Module/Invite.php:160 +#: src/Module/Invite.php:146 msgid "" "Friendica sites all inter-connect to create a huge privacy-enhanced social " "web that is owned and controlled by its members. They can also connect with " "many traditional social networks." msgstr "" -#: src/Module/Invite.php:159 +#: src/Module/Invite.php:145 #, php-format msgid "To accept this invitation, please visit and register at %s." msgstr "" -#: src/Module/Invite.php:167 +#: src/Module/Invite.php:153 msgid "Send invitations" msgstr "Изпращане на покани" -#: src/Module/Invite.php:168 +#: src/Module/Invite.php:154 msgid "Enter email addresses, one per line:" msgstr "Въведете имейл адреси, по един на ред:" -#: src/Module/Invite.php:172 +#: src/Module/Invite.php:158 msgid "" "You are cordially invited to join me and other close friends on Friendica - " "and help us to create a better social web." msgstr "Вие сте любезно поканени да се присъединят към мен и други близки приятели за Friendica, - и да ни помогне да създадем по-добра социална мрежа." -#: src/Module/Invite.php:174 +#: src/Module/Invite.php:160 msgid "You will need to supply this invitation code: $invite_code" msgstr "Вие ще трябва да предоставят този код за покана: $ invite_code" -#: src/Module/Invite.php:174 +#: src/Module/Invite.php:160 msgid "" "Once you have registered, please connect with me via my profile page at:" msgstr "След като сте се регистрирали, моля свържете се с мен чрез профила на моята страница в:" -#: src/Module/Invite.php:176 +#: src/Module/Invite.php:162 msgid "" "For more information about the Friendica project and why we feel it is " "important, please visit http://friendi.ca" msgstr "" -#: src/Module/Item/Compose.php:85 +#: src/Module/Item/Compose.php:80 msgid "Please enter a post body." msgstr "" -#: src/Module/Item/Compose.php:98 +#: src/Module/Item/Compose.php:91 msgid "This feature is only available with the frio theme." msgstr "" -#: src/Module/Item/Compose.php:122 +#: src/Module/Item/Compose.php:115 msgid "Compose new personal note" msgstr "" -#: src/Module/Item/Compose.php:131 +#: src/Module/Item/Compose.php:124 msgid "Compose new post" msgstr "" -#: src/Module/Item/Compose.php:187 +#: src/Module/Item/Compose.php:180 msgid "Visibility" msgstr "" -#: src/Module/Item/Compose.php:203 +#: src/Module/Item/Compose.php:196 msgid "Clear the location" msgstr "" -#: src/Module/Item/Compose.php:204 +#: src/Module/Item/Compose.php:197 msgid "Location services are unavailable on your device" msgstr "" -#: src/Module/Item/Compose.php:205 +#: src/Module/Item/Compose.php:198 msgid "" "Location services are disabled. Please check the website's permissions on " "your device" msgstr "" -#: src/Module/Item/Compose.php:211 +#: src/Module/Item/Compose.php:204 msgid "" "You can make this page always open when you use the New Post button in the " "Theme Customization settings." msgstr "" -#: src/Module/Item/Feed.php:86 +#: src/Module/Item/Feed.php:72 msgid "The feed for this item is unavailable." msgstr "" -#: src/Module/Item/Follow.php:51 +#: src/Module/Item/Follow.php:37 msgid "Unable to follow this item." msgstr "" -#: src/Module/Maintenance.php:48 src/Module/Maintenance.php:53 +#: src/Module/Maintenance.php:34 src/Module/Maintenance.php:39 msgid "System down for maintenance" msgstr "" -#: src/Module/Maintenance.php:54 +#: src/Module/Maintenance.php:40 msgid "" "This Friendica node is currently in maintenance mode, either automatically " "because it is self-updating or manually by the node administrator. This " "condition should be temporary, please come back in a few minutes." msgstr "" -#: src/Module/Manifest.php:40 +#: src/Module/Manifest.php:26 msgid "A Decentralized Social Network" msgstr "" -#: src/Module/Media/Attachment/Browser.php:58 -#: src/Module/Media/Photo/Browser.php:59 +#: src/Module/Media/Attachment/Browser.php:44 +#: src/Module/Media/Photo/Browser.php:45 msgid "You need to be logged in to access this page." msgstr "" -#: src/Module/Media/Attachment/Browser.php:74 +#: src/Module/Media/Attachment/Browser.php:60 msgid "Files" msgstr "Файлове" -#: src/Module/Media/Attachment/Browser.php:79 -#: src/Module/Media/Photo/Browser.php:90 -#: src/Module/Settings/Profile/Photo/Index.php:127 +#: src/Module/Media/Attachment/Browser.php:65 +#: src/Module/Media/Photo/Browser.php:76 +#: src/Module/Settings/Profile/Photo/Index.php:113 msgid "Upload" msgstr "Качете в Мрежата " -#: src/Module/Media/Attachment/Upload.php:97 +#: src/Module/Media/Attachment/Upload.php:83 msgid "Sorry, maybe your upload is bigger than the PHP configuration allows" msgstr "" -#: src/Module/Media/Attachment/Upload.php:97 +#: src/Module/Media/Attachment/Upload.php:83 msgid "Or - did you try to upload an empty file?" msgstr "" -#: src/Module/Media/Attachment/Upload.php:104 +#: src/Module/Media/Attachment/Upload.php:90 #, php-format msgid "File exceeds size limit of %s" msgstr "" -#: src/Module/Media/Attachment/Upload.php:114 +#: src/Module/Media/Attachment/Upload.php:100 msgid "File upload failed." msgstr "Файл за качване не успя." -#: src/Module/Media/Photo/Upload.php:150 src/Module/Media/Photo/Upload.php:151 -#: src/Module/Profile/Photos.php:215 -#: src/Module/Settings/Profile/Photo/Index.php:67 +#: src/Module/Media/Photo/Upload.php:136 src/Module/Media/Photo/Upload.php:137 +#: src/Module/Profile/Photos.php:201 +#: src/Module/Settings/Profile/Photo/Index.php:53 msgid "Unable to process image." msgstr "Не може да се обработи." -#: src/Module/Media/Photo/Upload.php:176 src/Module/Profile/Photos.php:235 -#: src/Module/Settings/Profile/Photo/Index.php:94 +#: src/Module/Media/Photo/Upload.php:162 src/Module/Profile/Photos.php:221 +#: src/Module/Settings/Profile/Photo/Index.php:80 msgid "Image upload failed." msgstr "Image Upload неуспешно." -#: src/Module/Moderation/BaseUsers.php:72 +#: src/Module/Moderation/BaseUsers.php:59 msgid "List of all users" msgstr "" -#: src/Module/Moderation/BaseUsers.php:77 +#: src/Module/Moderation/BaseUsers.php:64 msgid "Active" msgstr "" -#: src/Module/Moderation/BaseUsers.php:80 +#: src/Module/Moderation/BaseUsers.php:67 msgid "List of active accounts" msgstr "" -#: src/Module/Moderation/BaseUsers.php:88 +#: src/Module/Moderation/BaseUsers.php:75 msgid "List of pending registrations" msgstr "" -#: src/Module/Moderation/BaseUsers.php:96 +#: src/Module/Moderation/BaseUsers.php:83 msgid "List of blocked users" msgstr "" -#: src/Module/Moderation/BaseUsers.php:101 +#: src/Module/Moderation/BaseUsers.php:88 msgid "Deleted" msgstr "" -#: src/Module/Moderation/BaseUsers.php:104 +#: src/Module/Moderation/BaseUsers.php:91 msgid "List of pending user deletions" msgstr "" -#: src/Module/Moderation/BaseUsers.php:119 src/Module/Settings/Account.php:482 +#: src/Module/Moderation/BaseUsers.php:108 src/Module/Settings/Account.php:473 msgid "Normal Account Page" msgstr "Нормално страницата с профила" -#: src/Module/Moderation/BaseUsers.php:120 src/Module/Settings/Account.php:489 +#: src/Module/Moderation/BaseUsers.php:109 src/Module/Settings/Account.php:480 msgid "Soapbox Page" msgstr "Импровизирана трибуна Page" -#: src/Module/Moderation/BaseUsers.php:121 src/Module/Settings/Account.php:496 +#: src/Module/Moderation/BaseUsers.php:110 src/Module/Settings/Account.php:487 msgid "Public Group" msgstr "" -#: src/Module/Moderation/BaseUsers.php:122 src/Module/Settings/Account.php:503 +#: src/Module/Moderation/BaseUsers.php:111 src/Module/Settings/Account.php:494 +msgid "Public Group - Restricted" +msgstr "" + +#: src/Module/Moderation/BaseUsers.php:112 src/Module/Settings/Account.php:501 msgid "Automatic Friend Page" msgstr "Автоматично приятел Page" -#: src/Module/Moderation/BaseUsers.php:123 +#: src/Module/Moderation/BaseUsers.php:113 msgid "Private Group" msgstr "" -#: src/Module/Moderation/BaseUsers.php:126 -#: src/Module/Moderation/Summary.php:53 src/Module/Settings/Account.php:453 +#: src/Module/Moderation/BaseUsers.php:116 +#: src/Module/Moderation/Summary.php:39 src/Module/Settings/Account.php:444 msgid "Personal Page" msgstr "" -#: src/Module/Moderation/BaseUsers.php:127 -#: src/Module/Moderation/Summary.php:54 src/Module/Settings/Account.php:460 +#: src/Module/Moderation/BaseUsers.php:117 +#: src/Module/Moderation/Summary.php:40 src/Module/Settings/Account.php:451 msgid "Organisation Page" msgstr "" -#: src/Module/Moderation/BaseUsers.php:128 -#: src/Module/Moderation/Summary.php:55 src/Module/Settings/Account.php:467 +#: src/Module/Moderation/BaseUsers.php:118 +#: src/Module/Moderation/Summary.php:41 src/Module/Settings/Account.php:458 msgid "News Page" msgstr "" -#: src/Module/Moderation/BaseUsers.php:129 -#: src/Module/Moderation/Summary.php:56 src/Module/Settings/Account.php:474 +#: src/Module/Moderation/BaseUsers.php:119 +#: src/Module/Moderation/Summary.php:42 src/Module/Settings/Account.php:465 msgid "Community Group" msgstr "" -#: src/Module/Moderation/Blocklist/Contact.php:70 +#: src/Module/Moderation/Blocklist/Contact.php:56 msgid "You can't block a local contact, please block the user instead" msgstr "" -#: src/Module/Moderation/Blocklist/Contact.php:89 +#: src/Module/Moderation/Blocklist/Contact.php:75 #, php-format msgid "%s contact unblocked" msgid_plural "%s contacts unblocked" msgstr[0] "" msgstr[1] "" -#: src/Module/Moderation/Blocklist/Contact.php:111 +#: src/Module/Moderation/Blocklist/Contact.php:97 msgid "Remote Contact Blocklist" msgstr "" -#: src/Module/Moderation/Blocklist/Contact.php:112 +#: src/Module/Moderation/Blocklist/Contact.php:98 msgid "" "This page allows you to prevent any message from a remote contact to reach " "your node." msgstr "" -#: src/Module/Moderation/Blocklist/Contact.php:113 +#: src/Module/Moderation/Blocklist/Contact.php:99 msgid "Block Remote Contact" msgstr "" -#: src/Module/Moderation/Blocklist/Contact.php:114 -#: src/Module/Moderation/Users/Active.php:135 -#: src/Module/Moderation/Users/Blocked.php:135 -#: src/Module/Moderation/Users/Index.php:149 -#: src/Module/Moderation/Users/Pending.php:98 +#: src/Module/Moderation/Blocklist/Contact.php:100 +#: src/Module/Moderation/Users/Active.php:121 +#: src/Module/Moderation/Users/Blocked.php:121 +#: src/Module/Moderation/Users/Index.php:135 +#: src/Module/Moderation/Users/Pending.php:84 msgid "select all" msgstr "Избор на всичко" -#: src/Module/Moderation/Blocklist/Contact.php:115 +#: src/Module/Moderation/Blocklist/Contact.php:101 msgid "select none" msgstr "" -#: src/Module/Moderation/Blocklist/Contact.php:118 +#: src/Module/Moderation/Blocklist/Contact.php:104 msgid "No remote contact is blocked from this node." msgstr "" -#: src/Module/Moderation/Blocklist/Contact.php:120 +#: src/Module/Moderation/Blocklist/Contact.php:106 msgid "Blocked Remote Contacts" msgstr "" -#: src/Module/Moderation/Blocklist/Contact.php:121 +#: src/Module/Moderation/Blocklist/Contact.php:107 msgid "Block New Remote Contact" msgstr "" -#: src/Module/Moderation/Blocklist/Contact.php:122 -#: src/Module/Moderation/Reports.php:95 +#: src/Module/Moderation/Blocklist/Contact.php:108 +#: src/Module/Moderation/Reports.php:102 msgid "Photo" msgstr "" -#: src/Module/Moderation/Blocklist/Contact.php:122 +#: src/Module/Moderation/Blocklist/Contact.php:108 msgid "Reason" msgstr "" -#: src/Module/Moderation/Blocklist/Contact.php:130 +#: src/Module/Moderation/Blocklist/Contact.php:114 #, php-format msgid "%s total blocked contact" msgid_plural "%s total blocked contacts" msgstr[0] "" msgstr[1] "" -#: src/Module/Moderation/Blocklist/Contact.php:133 +#: src/Module/Moderation/Blocklist/Contact.php:117 msgid "URL of the remote contact to block." msgstr "" -#: src/Module/Moderation/Blocklist/Contact.php:134 +#: src/Module/Moderation/Blocklist/Contact.php:118 msgid "Also purge contact" msgstr "" -#: src/Module/Moderation/Blocklist/Contact.php:134 +#: src/Module/Moderation/Blocklist/Contact.php:118 msgid "" "Removes all content related to this contact from the node. Keeps the contact" " record. This action cannot be undone." msgstr "" -#: src/Module/Moderation/Blocklist/Contact.php:135 -#: src/Module/Moderation/Blocklist/Server/Import.php:124 +#: src/Module/Moderation/Blocklist/Contact.php:119 +#: src/Module/Moderation/Blocklist/Server/Import.php:108 msgid "Block Reason" msgstr "" -#: src/Module/Moderation/Blocklist/Server/Add.php:80 +#: src/Module/Moderation/Blocklist/Server/Add.php:66 msgid "Server domain pattern added to the blocklist." msgstr "" -#: src/Module/Moderation/Blocklist/Server/Add.php:88 +#: src/Module/Moderation/Blocklist/Server/Add.php:74 #, php-format msgid "%s server scheduled to be purged." msgid_plural "%s servers scheduled to be purged." msgstr[0] "" msgstr[1] "" -#: src/Module/Moderation/Blocklist/Server/Add.php:120 -#: src/Module/Moderation/Blocklist/Server/Import.php:117 +#: src/Module/Moderation/Blocklist/Server/Add.php:106 +#: src/Module/Moderation/Blocklist/Server/Import.php:101 msgid "← Return to the list" msgstr "" -#: src/Module/Moderation/Blocklist/Server/Add.php:122 +#: src/Module/Moderation/Blocklist/Server/Add.php:108 msgid "Block A New Server Domain Pattern" msgstr "" -#: src/Module/Moderation/Blocklist/Server/Add.php:123 -#: src/Module/Moderation/Blocklist/Server/Index.php:99 +#: src/Module/Moderation/Blocklist/Server/Add.php:109 +#: src/Module/Moderation/Blocklist/Server/Index.php:85 msgid "" "

The server domain pattern syntax is case-insensitive shell wildcard, comprising the following special characters:

\n" "
    \n" @@ -8019,57 +8092,57 @@ msgid "" "
" msgstr "" -#: src/Module/Moderation/Blocklist/Server/Add.php:128 -#: src/Module/Moderation/Blocklist/Server/Index.php:107 +#: src/Module/Moderation/Blocklist/Server/Add.php:114 +#: src/Module/Moderation/Blocklist/Server/Index.php:93 msgid "Check pattern" msgstr "" -#: src/Module/Moderation/Blocklist/Server/Add.php:129 +#: src/Module/Moderation/Blocklist/Server/Add.php:115 msgid "Matching known servers" msgstr "" -#: src/Module/Moderation/Blocklist/Server/Add.php:130 -#: src/Module/Settings/Server/Action.php:76 -#: src/Module/Settings/Server/Index.php:106 +#: src/Module/Moderation/Blocklist/Server/Add.php:116 +#: src/Module/Settings/Server/Action.php:62 +#: src/Module/Settings/Server/Index.php:92 msgid "Server Name" msgstr "" -#: src/Module/Moderation/Blocklist/Server/Add.php:131 +#: src/Module/Moderation/Blocklist/Server/Add.php:117 msgid "Server Domain" msgstr "" -#: src/Module/Moderation/Blocklist/Server/Add.php:132 +#: src/Module/Moderation/Blocklist/Server/Add.php:118 msgid "Known Contacts" msgstr "" -#: src/Module/Moderation/Blocklist/Server/Add.php:133 +#: src/Module/Moderation/Blocklist/Server/Add.php:119 #, php-format msgid "%d known server" msgid_plural "%d known servers" msgstr[0] "" msgstr[1] "" -#: src/Module/Moderation/Blocklist/Server/Add.php:134 +#: src/Module/Moderation/Blocklist/Server/Add.php:120 msgid "Add pattern to the blocklist" msgstr "" -#: src/Module/Moderation/Blocklist/Server/Add.php:136 -#: src/Module/Moderation/Blocklist/Server/Index.php:116 +#: src/Module/Moderation/Blocklist/Server/Add.php:122 +#: src/Module/Moderation/Blocklist/Server/Index.php:102 msgid "Server Domain Pattern" msgstr "" -#: src/Module/Moderation/Blocklist/Server/Add.php:136 -#: src/Module/Moderation/Blocklist/Server/Index.php:116 +#: src/Module/Moderation/Blocklist/Server/Add.php:122 +#: src/Module/Moderation/Blocklist/Server/Index.php:102 msgid "" "The domain pattern of the new server to add to the blocklist. Do not include" " the protocol." msgstr "" -#: src/Module/Moderation/Blocklist/Server/Add.php:137 +#: src/Module/Moderation/Blocklist/Server/Add.php:123 msgid "Purge server" msgstr "" -#: src/Module/Moderation/Blocklist/Server/Add.php:137 +#: src/Module/Moderation/Blocklist/Server/Add.php:123 msgid "" "Also purges all the locally stored content authored by the known contacts " "registered on that server. Keeps the contacts and the server records. This " @@ -8081,301 +8154,301 @@ msgid_plural "" msgstr[0] "" msgstr[1] "" -#: src/Module/Moderation/Blocklist/Server/Add.php:138 +#: src/Module/Moderation/Blocklist/Server/Add.php:124 msgid "Block reason" msgstr "" -#: src/Module/Moderation/Blocklist/Server/Add.php:138 +#: src/Module/Moderation/Blocklist/Server/Add.php:124 msgid "" "The reason why you blocked this server domain pattern. This reason will be " "shown publicly in the server information page." msgstr "" -#: src/Module/Moderation/Blocklist/Server/Import.php:74 -#: src/Module/Moderation/Blocklist/Server/Import.php:83 +#: src/Module/Moderation/Blocklist/Server/Import.php:60 +#: src/Module/Moderation/Blocklist/Server/Import.php:67 msgid "Error importing pattern file" msgstr "" -#: src/Module/Moderation/Blocklist/Server/Import.php:89 +#: src/Module/Moderation/Blocklist/Server/Import.php:74 msgid "Local blocklist replaced with the provided file." msgstr "" -#: src/Module/Moderation/Blocklist/Server/Import.php:93 +#: src/Module/Moderation/Blocklist/Server/Import.php:78 #, php-format msgid "%d pattern was added to the local blocklist." msgid_plural "%d patterns were added to the local blocklist." msgstr[0] "" msgstr[1] "" -#: src/Module/Moderation/Blocklist/Server/Import.php:95 +#: src/Module/Moderation/Blocklist/Server/Import.php:80 msgid "No pattern was added to the local blocklist." msgstr "" -#: src/Module/Moderation/Blocklist/Server/Import.php:119 +#: src/Module/Moderation/Blocklist/Server/Import.php:103 msgid "Import a Server Domain Pattern Blocklist" msgstr "" -#: src/Module/Moderation/Blocklist/Server/Import.php:120 +#: src/Module/Moderation/Blocklist/Server/Import.php:104 msgid "" "

This file can be downloaded from the /friendica path of any " "Friendica server.

" msgstr "" -#: src/Module/Moderation/Blocklist/Server/Import.php:121 -#: src/Module/Moderation/Blocklist/Server/Index.php:106 +#: src/Module/Moderation/Blocklist/Server/Import.php:105 +#: src/Module/Moderation/Blocklist/Server/Index.php:92 msgid "Upload file" msgstr "" -#: src/Module/Moderation/Blocklist/Server/Import.php:122 +#: src/Module/Moderation/Blocklist/Server/Import.php:106 msgid "Patterns to import" msgstr "" -#: src/Module/Moderation/Blocklist/Server/Import.php:123 +#: src/Module/Moderation/Blocklist/Server/Import.php:107 msgid "Domain Pattern" msgstr "" -#: src/Module/Moderation/Blocklist/Server/Import.php:125 +#: src/Module/Moderation/Blocklist/Server/Import.php:109 msgid "Import Mode" msgstr "" -#: src/Module/Moderation/Blocklist/Server/Import.php:126 +#: src/Module/Moderation/Blocklist/Server/Import.php:110 msgid "Import Patterns" msgstr "" -#: src/Module/Moderation/Blocklist/Server/Import.php:127 +#: src/Module/Moderation/Blocklist/Server/Import.php:111 #, php-format msgid "%d total pattern" msgid_plural "%d total patterns" msgstr[0] "" msgstr[1] "" -#: src/Module/Moderation/Blocklist/Server/Import.php:129 -#: src/Module/Moderation/Blocklist/Server/Index.php:115 +#: src/Module/Moderation/Blocklist/Server/Import.php:113 +#: src/Module/Moderation/Blocklist/Server/Index.php:101 msgid "Server domain pattern blocklist CSV file" msgstr "" -#: src/Module/Moderation/Blocklist/Server/Import.php:130 +#: src/Module/Moderation/Blocklist/Server/Import.php:114 msgid "Append" msgstr "" -#: src/Module/Moderation/Blocklist/Server/Import.php:130 +#: src/Module/Moderation/Blocklist/Server/Import.php:114 msgid "" "Imports patterns from the file that weren't already existing in the current " "blocklist." msgstr "" -#: src/Module/Moderation/Blocklist/Server/Import.php:131 +#: src/Module/Moderation/Blocklist/Server/Import.php:115 msgid "Replace" msgstr "" -#: src/Module/Moderation/Blocklist/Server/Import.php:131 +#: src/Module/Moderation/Blocklist/Server/Import.php:115 msgid "Replaces the current blocklist by the imported patterns." msgstr "" -#: src/Module/Moderation/Blocklist/Server/Index.php:86 -#: src/Module/Moderation/Blocklist/Server/Index.php:110 -#: src/Module/Settings/Channels.php:225 +#: src/Module/Moderation/Blocklist/Server/Index.php:72 +#: src/Module/Moderation/Blocklist/Server/Index.php:96 +#: src/Module/Settings/Channels.php:217 msgid "Blocked server domain pattern" msgstr "" -#: src/Module/Moderation/Blocklist/Server/Index.php:88 +#: src/Module/Moderation/Blocklist/Server/Index.php:74 msgid "Delete server domain pattern" msgstr "" -#: src/Module/Moderation/Blocklist/Server/Index.php:88 +#: src/Module/Moderation/Blocklist/Server/Index.php:74 msgid "Check to delete this entry from the blocklist" msgstr "" -#: src/Module/Moderation/Blocklist/Server/Index.php:96 +#: src/Module/Moderation/Blocklist/Server/Index.php:82 msgid "Server Domain Pattern Blocklist" msgstr "" -#: src/Module/Moderation/Blocklist/Server/Index.php:97 +#: src/Module/Moderation/Blocklist/Server/Index.php:83 msgid "" "This page can be used to define a blocklist of server domain patterns from " "the federated network that are not allowed to interact with your node. For " "each domain pattern you should also provide the reason why you block it." msgstr "" -#: src/Module/Moderation/Blocklist/Server/Index.php:98 +#: src/Module/Moderation/Blocklist/Server/Index.php:84 msgid "" "The list of blocked server domain patterns will be made publically available" " on the /friendica page so that your users and " "people investigating communication problems can find the reason easily." msgstr "" -#: src/Module/Moderation/Blocklist/Server/Index.php:104 +#: src/Module/Moderation/Blocklist/Server/Index.php:90 msgid "Import server domain pattern blocklist" msgstr "" -#: src/Module/Moderation/Blocklist/Server/Index.php:105 +#: src/Module/Moderation/Blocklist/Server/Index.php:91 msgid "Add new entry to the blocklist" msgstr "" -#: src/Module/Moderation/Blocklist/Server/Index.php:108 +#: src/Module/Moderation/Blocklist/Server/Index.php:94 msgid "Save changes to the blocklist" msgstr "" -#: src/Module/Moderation/Blocklist/Server/Index.php:109 +#: src/Module/Moderation/Blocklist/Server/Index.php:95 msgid "Current Entries in the Blocklist" msgstr "" -#: src/Module/Moderation/Blocklist/Server/Index.php:112 +#: src/Module/Moderation/Blocklist/Server/Index.php:98 msgid "Delete entry from the blocklist" msgstr "" -#: src/Module/Moderation/Blocklist/Server/Index.php:113 +#: src/Module/Moderation/Blocklist/Server/Index.php:99 msgid "Delete entry from the blocklist?" msgstr "" -#: src/Module/Moderation/Item/Delete.php:50 +#: src/Module/Moderation/Item/Delete.php:36 msgid "Item marked for deletion." msgstr "" -#: src/Module/Moderation/Item/Delete.php:63 +#: src/Module/Moderation/Item/Delete.php:49 msgid "Delete this Item" msgstr "" -#: src/Module/Moderation/Item/Delete.php:64 +#: src/Module/Moderation/Item/Delete.php:50 msgid "" "On this page you can delete an item from your node. If the item is a top " "level posting, the entire thread will be deleted." msgstr "" -#: src/Module/Moderation/Item/Delete.php:65 +#: src/Module/Moderation/Item/Delete.php:51 msgid "" "You need to know the GUID of the item. You can find it e.g. by looking at " "the display URL. The last part of http://example.com/display/123456 is the " "GUID, here 123456." msgstr "" -#: src/Module/Moderation/Item/Delete.php:67 +#: src/Module/Moderation/Item/Delete.php:53 msgid "GUID" msgstr "" -#: src/Module/Moderation/Item/Delete.php:67 +#: src/Module/Moderation/Item/Delete.php:53 msgid "The GUID of the item you want to delete." msgstr "" -#: src/Module/Moderation/Item/Source.php:77 +#: src/Module/Moderation/Item/Source.php:69 msgid "Item Id" msgstr "" -#: src/Module/Moderation/Item/Source.php:78 +#: src/Module/Moderation/Item/Source.php:70 msgid "Item URI" msgstr "" -#: src/Module/Moderation/Item/Source.php:80 +#: src/Module/Moderation/Item/Source.php:72 msgid "Terms" msgstr "" -#: src/Module/Moderation/Item/Source.php:81 +#: src/Module/Moderation/Item/Source.php:73 msgid "Tag" msgstr "" -#: src/Module/Moderation/Item/Source.php:82 -#: src/Module/Moderation/Users/Active.php:126 -#: src/Module/Moderation/Users/Blocked.php:126 -#: src/Module/Moderation/Users/Index.php:140 +#: src/Module/Moderation/Item/Source.php:74 +#: src/Module/Moderation/Users/Active.php:112 +#: src/Module/Moderation/Users/Blocked.php:112 +#: src/Module/Moderation/Users/Index.php:126 msgid "Type" msgstr "" -#: src/Module/Moderation/Item/Source.php:83 +#: src/Module/Moderation/Item/Source.php:75 msgid "Term" msgstr "" -#: src/Module/Moderation/Item/Source.php:84 +#: src/Module/Moderation/Item/Source.php:76 msgid "URL" msgstr "" -#: src/Module/Moderation/Item/Source.php:86 +#: src/Module/Moderation/Item/Source.php:78 msgid "Implicit Mention" msgstr "" -#: src/Module/Moderation/Item/Source.php:88 +#: src/Module/Moderation/Item/Source.php:80 msgid "Item not found" msgstr "Елемент не е намерена" -#: src/Module/Moderation/Item/Source.php:89 +#: src/Module/Moderation/Item/Source.php:81 msgid "No source recorded" msgstr "" -#: src/Module/Moderation/Item/Source.php:90 +#: src/Module/Moderation/Item/Source.php:82 msgid "" "Please make sure the debug.store_source config key is set in " "config/local.config.php for future items to have sources." msgstr "" -#: src/Module/Moderation/Item/Source.php:92 +#: src/Module/Moderation/Item/Source.php:84 msgid "Item Guid" msgstr "" -#: src/Module/Moderation/Report/Create.php:95 +#: src/Module/Moderation/Report/Create.php:81 msgid "Contact not found or their server is already blocked on this node." msgstr "" -#: src/Module/Moderation/Report/Create.php:136 +#: src/Module/Moderation/Report/Create.php:122 msgid "Please login to access this page." msgstr "" -#: src/Module/Moderation/Report/Create.php:165 -#: src/Module/Moderation/Report/Create.php:180 -#: src/Module/Moderation/Report/Create.php:208 -#: src/Module/Moderation/Report/Create.php:260 -#: src/Module/Moderation/Report/Create.php:279 +#: src/Module/Moderation/Report/Create.php:151 +#: src/Module/Moderation/Report/Create.php:166 +#: src/Module/Moderation/Report/Create.php:194 +#: src/Module/Moderation/Report/Create.php:246 +#: src/Module/Moderation/Report/Create.php:265 msgid "Create Moderation Report" msgstr "" -#: src/Module/Moderation/Report/Create.php:166 +#: src/Module/Moderation/Report/Create.php:152 msgid "Pick Contact" msgstr "" -#: src/Module/Moderation/Report/Create.php:167 +#: src/Module/Moderation/Report/Create.php:153 msgid "" "Please enter below the contact address or profile URL you would like to " "create a moderation report about." msgstr "" -#: src/Module/Moderation/Report/Create.php:171 +#: src/Module/Moderation/Report/Create.php:157 msgid "Contact address/URL" msgstr "" -#: src/Module/Moderation/Report/Create.php:181 +#: src/Module/Moderation/Report/Create.php:167 msgid "Pick Category" msgstr "" -#: src/Module/Moderation/Report/Create.php:182 +#: src/Module/Moderation/Report/Create.php:168 msgid "Please pick below the category of your report." msgstr "" -#: src/Module/Moderation/Report/Create.php:186 -#: src/Module/Moderation/Report/Create.php:311 +#: src/Module/Moderation/Report/Create.php:172 +#: src/Module/Moderation/Report/Create.php:297 msgid "Spam" msgstr "" -#: src/Module/Moderation/Report/Create.php:186 +#: src/Module/Moderation/Report/Create.php:172 msgid "" "This contact is publishing many repeated/overly long posts/replies or " "advertising their product/websites in otherwise irrelevant conversations." msgstr "" -#: src/Module/Moderation/Report/Create.php:187 -#: src/Module/Moderation/Report/Create.php:312 +#: src/Module/Moderation/Report/Create.php:173 +#: src/Module/Moderation/Report/Create.php:298 msgid "Illegal Content" msgstr "" -#: src/Module/Moderation/Report/Create.php:187 +#: src/Module/Moderation/Report/Create.php:173 msgid "" "This contact is publishing content that is considered illegal in this node's" " hosting juridiction." msgstr "" -#: src/Module/Moderation/Report/Create.php:188 -#: src/Module/Moderation/Report/Create.php:313 +#: src/Module/Moderation/Report/Create.php:174 +#: src/Module/Moderation/Report/Create.php:299 msgid "Community Safety" msgstr "" -#: src/Module/Moderation/Report/Create.php:188 +#: src/Module/Moderation/Report/Create.php:174 msgid "" "This contact aggravated you or other people, by being provocative or " "insensitive, intentionally or not. This includes disclosing people's private" @@ -8383,12 +8456,12 @@ msgid "" "replies." msgstr "" -#: src/Module/Moderation/Report/Create.php:189 -#: src/Module/Moderation/Report/Create.php:314 +#: src/Module/Moderation/Report/Create.php:175 +#: src/Module/Moderation/Report/Create.php:300 msgid "Unwanted Content/Behavior" msgstr "" -#: src/Module/Moderation/Report/Create.php:189 +#: src/Module/Moderation/Report/Create.php:175 msgid "" "This contact has repeatedly published content irrelevant to the node's theme" " or is openly criticizing the node's administration/moderation without " @@ -8396,89 +8469,89 @@ msgid "" "nitpicking on a sensitive topic." msgstr "" -#: src/Module/Moderation/Report/Create.php:190 -#: src/Module/Moderation/Report/Create.php:315 +#: src/Module/Moderation/Report/Create.php:176 +#: src/Module/Moderation/Report/Create.php:301 msgid "Rules Violation" msgstr "" -#: src/Module/Moderation/Report/Create.php:190 +#: src/Module/Moderation/Report/Create.php:176 msgid "" "This contact violated one or more rules of this node. You will be able to " "pick which one(s) in the next step." msgstr "" -#: src/Module/Moderation/Report/Create.php:191 +#: src/Module/Moderation/Report/Create.php:177 msgid "" "Please elaborate below why you submitted this report. The more details you " "provide, the better your report can be handled." msgstr "" -#: src/Module/Moderation/Report/Create.php:193 +#: src/Module/Moderation/Report/Create.php:179 msgid "Additional Information" msgstr "" -#: src/Module/Moderation/Report/Create.php:193 +#: src/Module/Moderation/Report/Create.php:179 msgid "" "Please provide any additional information relevant to this particular " "report. You will be able to attach posts by this contact in the next step, " "but any context is welcome." msgstr "" -#: src/Module/Moderation/Report/Create.php:209 +#: src/Module/Moderation/Report/Create.php:195 msgid "Pick Rules" msgstr "" -#: src/Module/Moderation/Report/Create.php:210 +#: src/Module/Moderation/Report/Create.php:196 msgid "Please pick below the node rules you believe this contact violated." msgstr "" -#: src/Module/Moderation/Report/Create.php:261 +#: src/Module/Moderation/Report/Create.php:247 msgid "Pick Posts" msgstr "" -#: src/Module/Moderation/Report/Create.php:262 +#: src/Module/Moderation/Report/Create.php:248 msgid "Please optionally pick posts to attach to your report." msgstr "" -#: src/Module/Moderation/Report/Create.php:281 +#: src/Module/Moderation/Report/Create.php:267 msgid "Submit Report" msgstr "" -#: src/Module/Moderation/Report/Create.php:282 +#: src/Module/Moderation/Report/Create.php:268 msgid "Further Action" msgstr "" -#: src/Module/Moderation/Report/Create.php:283 +#: src/Module/Moderation/Report/Create.php:269 msgid "" "You can also perform one of the following action on the contact you " "reported:" msgstr "" -#: src/Module/Moderation/Report/Create.php:291 +#: src/Module/Moderation/Report/Create.php:277 msgid "Nothing" msgstr "" -#: src/Module/Moderation/Report/Create.php:292 +#: src/Module/Moderation/Report/Create.php:278 msgid "Collapse contact" msgstr "" -#: src/Module/Moderation/Report/Create.php:292 +#: src/Module/Moderation/Report/Create.php:278 msgid "" "Their posts and replies will keep appearing in your Network page but their " "content will be collapsed by default." msgstr "" -#: src/Module/Moderation/Report/Create.php:293 +#: src/Module/Moderation/Report/Create.php:279 msgid "" "Their posts won't appear in your Network page anymore, but their replies can" " appear in forum threads. They still can follow you." msgstr "" -#: src/Module/Moderation/Report/Create.php:294 +#: src/Module/Moderation/Report/Create.php:280 msgid "Block contact" msgstr "" -#: src/Module/Moderation/Report/Create.php:294 +#: src/Module/Moderation/Report/Create.php:280 msgid "" "Their posts won't appear in your Network page anymore, but their replies can" " appear in forum threads, with their content collapsed by default. They " @@ -8486,723 +8559,694 @@ msgid "" "means." msgstr "" -#: src/Module/Moderation/Report/Create.php:297 +#: src/Module/Moderation/Report/Create.php:283 msgid "Forward report" msgstr "" -#: src/Module/Moderation/Report/Create.php:297 +#: src/Module/Moderation/Report/Create.php:283 msgid "Would you ike to forward this report to the remote server?" msgstr "" -#: src/Module/Moderation/Report/Create.php:330 +#: src/Module/Moderation/Report/Create.php:316 msgid "1. Pick a contact" msgstr "" -#: src/Module/Moderation/Report/Create.php:331 +#: src/Module/Moderation/Report/Create.php:317 msgid "2. Pick a category" msgstr "" -#: src/Module/Moderation/Report/Create.php:332 +#: src/Module/Moderation/Report/Create.php:318 msgid "2a. Pick rules" msgstr "" -#: src/Module/Moderation/Report/Create.php:333 +#: src/Module/Moderation/Report/Create.php:319 msgid "2b. Add comment" msgstr "" -#: src/Module/Moderation/Report/Create.php:334 +#: src/Module/Moderation/Report/Create.php:320 msgid "3. Pick posts" msgstr "" -#: src/Module/Moderation/Reports.php:90 +#: src/Module/Moderation/Reports.php:97 msgid "List of reports" msgstr "" -#: src/Module/Moderation/Reports.php:91 +#: src/Module/Moderation/Reports.php:98 msgid "This page display reports created by our or remote users." msgstr "" -#: src/Module/Moderation/Reports.php:92 +#: src/Module/Moderation/Reports.php:99 msgid "No report exists at this node." msgstr "" -#: src/Module/Moderation/Reports.php:95 +#: src/Module/Moderation/Reports.php:102 msgid "Category" msgstr "" -#: src/Module/Moderation/Reports.php:101 +#: src/Module/Moderation/Reports.php:106 #, php-format msgid "%s total report" msgid_plural "%s total reports" msgstr[0] "" msgstr[1] "" -#: src/Module/Moderation/Reports.php:104 +#: src/Module/Moderation/Reports.php:109 msgid "URL of the reported contact." msgstr "" -#: src/Module/Moderation/Summary.php:57 src/Module/Settings/Account.php:431 +#: src/Module/Moderation/Summary.php:43 src/Module/Settings/Account.php:422 msgid "Channel Relay" msgstr "" -#: src/Module/Moderation/Summary.php:77 +#: src/Module/Moderation/Summary.php:63 msgid "Registered users" msgstr "Регистрираните потребители" -#: src/Module/Moderation/Summary.php:79 +#: src/Module/Moderation/Summary.php:65 msgid "Pending registrations" msgstr "Предстоящи регистрации" -#: src/Module/Moderation/Users/Active.php:43 -#: src/Module/Moderation/Users/Index.php:43 +#: src/Module/Moderation/Users/Active.php:29 +#: src/Module/Moderation/Users/Index.php:29 #, php-format msgid "%s user blocked" msgid_plural "%s users blocked" msgstr[0] "" msgstr[1] "" -#: src/Module/Moderation/Users/Active.php:51 -#: src/Module/Moderation/Users/Active.php:85 -#: src/Module/Moderation/Users/Blocked.php:51 -#: src/Module/Moderation/Users/Blocked.php:85 -#: src/Module/Moderation/Users/Index.php:58 -#: src/Module/Moderation/Users/Index.php:92 +#: src/Module/Moderation/Users/Active.php:37 +#: src/Module/Moderation/Users/Active.php:71 +#: src/Module/Moderation/Users/Blocked.php:37 +#: src/Module/Moderation/Users/Blocked.php:71 +#: src/Module/Moderation/Users/Index.php:44 +#: src/Module/Moderation/Users/Index.php:78 msgid "You can't remove yourself" msgstr "" -#: src/Module/Moderation/Users/Active.php:55 -#: src/Module/Moderation/Users/Blocked.php:55 -#: src/Module/Moderation/Users/Index.php:62 +#: src/Module/Moderation/Users/Active.php:41 +#: src/Module/Moderation/Users/Blocked.php:41 +#: src/Module/Moderation/Users/Index.php:48 #, php-format msgid "%s user deleted" msgid_plural "%s users deleted" msgstr[0] "" msgstr[1] "" -#: src/Module/Moderation/Users/Active.php:83 -#: src/Module/Moderation/Users/Blocked.php:83 -#: src/Module/Moderation/Users/Index.php:90 +#: src/Module/Moderation/Users/Active.php:69 +#: src/Module/Moderation/Users/Blocked.php:69 +#: src/Module/Moderation/Users/Index.php:76 #, php-format msgid "User \"%s\" deleted" msgstr "" -#: src/Module/Moderation/Users/Active.php:93 -#: src/Module/Moderation/Users/Index.php:100 +#: src/Module/Moderation/Users/Active.php:79 +#: src/Module/Moderation/Users/Index.php:86 #, php-format msgid "User \"%s\" blocked" msgstr "" -#: src/Module/Moderation/Users/Active.php:126 -#: src/Module/Moderation/Users/Blocked.php:126 -#: src/Module/Moderation/Users/Deleted.php:83 -#: src/Module/Moderation/Users/Index.php:140 -#: src/Module/Moderation/Users/Index.php:160 +#: src/Module/Moderation/Users/Active.php:112 +#: src/Module/Moderation/Users/Blocked.php:112 +#: src/Module/Moderation/Users/Deleted.php:69 +#: src/Module/Moderation/Users/Index.php:126 +#: src/Module/Moderation/Users/Index.php:146 msgid "Register date" msgstr "Дата на регистрация" -#: src/Module/Moderation/Users/Active.php:126 -#: src/Module/Moderation/Users/Blocked.php:126 -#: src/Module/Moderation/Users/Deleted.php:83 -#: src/Module/Moderation/Users/Index.php:140 -#: src/Module/Moderation/Users/Index.php:160 +#: src/Module/Moderation/Users/Active.php:112 +#: src/Module/Moderation/Users/Blocked.php:112 +#: src/Module/Moderation/Users/Deleted.php:69 +#: src/Module/Moderation/Users/Index.php:126 +#: src/Module/Moderation/Users/Index.php:146 msgid "Last login" msgstr "Последно влизане" -#: src/Module/Moderation/Users/Active.php:126 -#: src/Module/Moderation/Users/Blocked.php:126 -#: src/Module/Moderation/Users/Deleted.php:83 -#: src/Module/Moderation/Users/Index.php:140 -#: src/Module/Moderation/Users/Index.php:160 +#: src/Module/Moderation/Users/Active.php:112 +#: src/Module/Moderation/Users/Blocked.php:112 +#: src/Module/Moderation/Users/Deleted.php:69 +#: src/Module/Moderation/Users/Index.php:126 +#: src/Module/Moderation/Users/Index.php:146 msgid "Last public item" msgstr "" -#: src/Module/Moderation/Users/Active.php:134 +#: src/Module/Moderation/Users/Active.php:120 msgid "Active Accounts" msgstr "" -#: src/Module/Moderation/Users/Active.php:138 -#: src/Module/Moderation/Users/Blocked.php:137 -#: src/Module/Moderation/Users/Index.php:153 +#: src/Module/Moderation/Users/Active.php:124 +#: src/Module/Moderation/Users/Blocked.php:123 +#: src/Module/Moderation/Users/Index.php:139 msgid "User blocked" msgstr "" -#: src/Module/Moderation/Users/Active.php:139 -#: src/Module/Moderation/Users/Blocked.php:139 -#: src/Module/Moderation/Users/Index.php:155 +#: src/Module/Moderation/Users/Active.php:125 +#: src/Module/Moderation/Users/Blocked.php:125 +#: src/Module/Moderation/Users/Index.php:141 msgid "Site admin" msgstr "Администратор на сайта" -#: src/Module/Moderation/Users/Active.php:140 -#: src/Module/Moderation/Users/Blocked.php:140 -#: src/Module/Moderation/Users/Index.php:156 +#: src/Module/Moderation/Users/Active.php:126 +#: src/Module/Moderation/Users/Blocked.php:126 +#: src/Module/Moderation/Users/Index.php:142 msgid "Account expired" msgstr "" -#: src/Module/Moderation/Users/Active.php:141 -#: src/Module/Moderation/Users/Index.php:159 +#: src/Module/Moderation/Users/Active.php:127 +#: src/Module/Moderation/Users/Index.php:145 msgid "Create a new user" msgstr "" -#: src/Module/Moderation/Users/Active.php:147 -#: src/Module/Moderation/Users/Blocked.php:146 -#: src/Module/Moderation/Users/Index.php:165 +#: src/Module/Moderation/Users/Active.php:133 +#: src/Module/Moderation/Users/Blocked.php:132 +#: src/Module/Moderation/Users/Index.php:151 msgid "" "Selected users will be deleted!\\n\\nEverything these users had posted on " "this site will be permanently deleted!\\n\\nAre you sure?" msgstr "Избрани потребители ще бъде изтрита! \\ N \\ nEverything тези потребители са публикувани на този сайт ще бъде изтрит завинаги! \\ N \\ nСигурни ли сте?" -#: src/Module/Moderation/Users/Active.php:148 -#: src/Module/Moderation/Users/Blocked.php:147 -#: src/Module/Moderation/Users/Index.php:166 +#: src/Module/Moderation/Users/Active.php:134 +#: src/Module/Moderation/Users/Blocked.php:133 +#: src/Module/Moderation/Users/Index.php:152 msgid "" "The user {0} will be deleted!\\n\\nEverything this user has posted on this " "site will be permanently deleted!\\n\\nAre you sure?" msgstr "Потребител {0} ще бъде изтрит! \\ n \\ nEverything този потребител публикувани на този сайт ще бъде изтрит завинаги! \\ n \\ nСигурни ли сте?" -#: src/Module/Moderation/Users/Blocked.php:43 -#: src/Module/Moderation/Users/Index.php:50 +#: src/Module/Moderation/Users/Blocked.php:29 +#: src/Module/Moderation/Users/Index.php:36 #, php-format msgid "%s user unblocked" msgid_plural "%s users unblocked" msgstr[0] "" msgstr[1] "" -#: src/Module/Moderation/Users/Blocked.php:92 -#: src/Module/Moderation/Users/Index.php:106 +#: src/Module/Moderation/Users/Blocked.php:78 +#: src/Module/Moderation/Users/Index.php:92 #, php-format msgid "User \"%s\" unblocked" msgstr "" -#: src/Module/Moderation/Users/Blocked.php:134 +#: src/Module/Moderation/Users/Blocked.php:120 msgid "Blocked Users" msgstr "" -#: src/Module/Moderation/Users/Create.php:62 +#: src/Module/Moderation/Users/Create.php:48 msgid "New User" msgstr "" -#: src/Module/Moderation/Users/Create.php:63 +#: src/Module/Moderation/Users/Create.php:49 msgid "Add User" msgstr "" -#: src/Module/Moderation/Users/Create.php:70 +#: src/Module/Moderation/Users/Create.php:56 msgid "Name of the new user." msgstr "" -#: src/Module/Moderation/Users/Create.php:71 +#: src/Module/Moderation/Users/Create.php:57 msgid "Nickname" msgstr "" -#: src/Module/Moderation/Users/Create.php:71 +#: src/Module/Moderation/Users/Create.php:57 msgid "Nickname of the new user." msgstr "" -#: src/Module/Moderation/Users/Create.php:72 +#: src/Module/Moderation/Users/Create.php:58 msgid "Email address of the new user." msgstr "" -#: src/Module/Moderation/Users/Deleted.php:81 +#: src/Module/Moderation/Users/Deleted.php:67 msgid "Users awaiting permanent deletion" msgstr "" -#: src/Module/Moderation/Users/Deleted.php:83 -#: src/Module/Moderation/Users/Index.php:160 +#: src/Module/Moderation/Users/Deleted.php:69 +#: src/Module/Moderation/Users/Index.php:146 msgid "Permanent deletion" msgstr "" -#: src/Module/Moderation/Users/Index.php:150 +#: src/Module/Moderation/Users/Index.php:136 msgid "User waiting for permanent deletion" msgstr "" -#: src/Module/Moderation/Users/Pending.php:44 +#: src/Module/Moderation/Users/Pending.php:30 #, php-format msgid "%s user approved" msgid_plural "%s users approved" msgstr[0] "" msgstr[1] "" -#: src/Module/Moderation/Users/Pending.php:51 +#: src/Module/Moderation/Users/Pending.php:37 #, php-format msgid "%s registration revoked" msgid_plural "%s registrations revoked" msgstr[0] "" msgstr[1] "" -#: src/Module/Moderation/Users/Pending.php:76 +#: src/Module/Moderation/Users/Pending.php:62 msgid "Account approved." msgstr "Сметка одобрен." -#: src/Module/Moderation/Users/Pending.php:82 +#: src/Module/Moderation/Users/Pending.php:68 msgid "Registration revoked" msgstr "" -#: src/Module/Moderation/Users/Pending.php:97 +#: src/Module/Moderation/Users/Pending.php:83 msgid "User registrations awaiting review" msgstr "" -#: src/Module/Moderation/Users/Pending.php:99 +#: src/Module/Moderation/Users/Pending.php:85 msgid "Request date" msgstr "Искане дата" -#: src/Module/Moderation/Users/Pending.php:100 +#: src/Module/Moderation/Users/Pending.php:86 msgid "No registrations." msgstr "Няма регистрации." -#: src/Module/Moderation/Users/Pending.php:101 +#: src/Module/Moderation/Users/Pending.php:87 msgid "Note from the user" msgstr "" -#: src/Module/Moderation/Users/Pending.php:103 +#: src/Module/Moderation/Users/Pending.php:89 msgid "Deny" msgstr "Отказ" -#: src/Module/Notifications/Introductions.php:99 +#: src/Module/Notifications/Introductions.php:91 msgid "Show Ignored Requests" msgstr "Показване на пренебрегнатите заявки" -#: src/Module/Notifications/Introductions.php:99 +#: src/Module/Notifications/Introductions.php:91 msgid "Hide Ignored Requests" msgstr "Скриване на пренебрегнатите заявки" -#: src/Module/Notifications/Introductions.php:115 -#: src/Module/Notifications/Introductions.php:178 +#: src/Module/Notifications/Introductions.php:107 +#: src/Module/Notifications/Introductions.php:170 msgid "Notification type:" msgstr "" -#: src/Module/Notifications/Introductions.php:118 +#: src/Module/Notifications/Introductions.php:110 msgid "Suggested by:" msgstr "" -#: src/Module/Notifications/Introductions.php:143 +#: src/Module/Notifications/Introductions.php:135 msgid "Claims to be known to you: " msgstr "Искания, да се знае за вас: " #: src/Module/Notifications/Introductions.php:144 -#: src/Module/OAuth/Acknowledge.php:55 src/Module/Register.php:131 -#: src/Module/Settings/TwoFactor/Trusted.php:129 -msgid "No" -msgstr "Не" - -#: src/Module/Notifications/Introductions.php:152 msgid "Shall your connection be bidirectional or not?" msgstr "" -#: src/Module/Notifications/Introductions.php:153 +#: src/Module/Notifications/Introductions.php:145 #, php-format msgid "" "Accepting %s as a friend allows %s to subscribe to your posts, and you will " "also receive updates from them in your news feed." msgstr "" -#: src/Module/Notifications/Introductions.php:154 +#: src/Module/Notifications/Introductions.php:146 #, php-format msgid "" "Accepting %s as a subscriber allows them to subscribe to your posts, but you" " will not receive updates from them in your news feed." msgstr "" -#: src/Module/Notifications/Introductions.php:156 +#: src/Module/Notifications/Introductions.php:148 msgid "Friend" msgstr "Приятел" -#: src/Module/Notifications/Introductions.php:157 +#: src/Module/Notifications/Introductions.php:149 msgid "Subscriber" msgstr "" -#: src/Module/Notifications/Introductions.php:216 +#: src/Module/Notifications/Introductions.php:208 msgid "No introductions." msgstr "Няма въвеждане." -#: src/Module/Notifications/Introductions.php:217 -#: src/Module/Notifications/Notifications.php:135 +#: src/Module/Notifications/Introductions.php:209 +#: src/Module/Notifications/Notifications.php:127 #, php-format msgid "No more %s notifications." msgstr "" -#: src/Module/Notifications/Notification.php:135 +#: src/Module/Notifications/Notification.php:121 msgid "You must be logged in to show this page." msgstr "" -#: src/Module/Notifications/Notifications.php:66 +#: src/Module/Notifications/Notifications.php:52 msgid "Network Notifications" msgstr "Мрежа Известия" -#: src/Module/Notifications/Notifications.php:72 +#: src/Module/Notifications/Notifications.php:58 msgid "System Notifications" msgstr "Системни известия" -#: src/Module/Notifications/Notifications.php:78 +#: src/Module/Notifications/Notifications.php:64 msgid "Personal Notifications" msgstr "Лични Известия" -#: src/Module/Notifications/Notifications.php:84 +#: src/Module/Notifications/Notifications.php:70 msgid "Home Notifications" msgstr "Начало Известия" -#: src/Module/Notifications/Notifications.php:140 +#: src/Module/Notifications/Notifications.php:132 msgid "Show unread" msgstr "" -#: src/Module/Notifications/Ping.php:246 +#: src/Module/Notifications/Ping.php:206 msgid "{0} requested registration" msgstr "{0} исканата регистрация" -#: src/Module/Notifications/Ping.php:255 +#: src/Module/Notifications/Ping.php:215 #, php-format msgid "{0} and %d others requested registration" msgstr "" -#: src/Module/OAuth/Acknowledge.php:51 +#: src/Module/OAuth/Acknowledge.php:37 msgid "Authorize application connection" msgstr "Разрешава връзка с прилагането" -#: src/Module/OAuth/Acknowledge.php:53 +#: src/Module/OAuth/Acknowledge.php:39 msgid "" "Do you want to authorize this application to access your posts and contacts," " and/or create new posts for you?" msgstr "Искате ли да се разреши това приложение за достъп до вашите мнения и контакти, и / или създаване на нови длъжности за вас?" -#: src/Module/OAuth/Authorize.php:54 +#: src/Module/OAuth/Authorize.php:40 msgid "Unsupported or missing response type" msgstr "" -#: src/Module/OAuth/Authorize.php:59 src/Module/OAuth/Token.php:75 +#: src/Module/OAuth/Authorize.php:45 src/Module/OAuth/Token.php:61 msgid "Incomplete request data" msgstr "" -#: src/Module/OAuth/Authorize.php:106 +#: src/Module/OAuth/Authorize.php:92 #, php-format msgid "" "Please copy the following authentication code into your application and " "close this window: %s" msgstr "" -#: src/Module/OAuth/Token.php:80 +#: src/Module/OAuth/Token.php:66 msgid "Invalid data or unknown client" msgstr "" -#: src/Module/OAuth/Token.php:105 +#: src/Module/OAuth/Token.php:91 msgid "Unsupported or missing grant type" msgstr "" -#: src/Module/OStatus/Repair.php:83 -msgid "Resubscribing to OStatus contacts" -msgstr "" - -#: src/Module/OStatus/Repair.php:84 src/Module/OStatus/Subscribe.php:158 -msgid "Keep this window open until done." -msgstr "" - -#: src/Module/OStatus/Repair.php:85 -msgid "✔ Done" -msgstr "" - -#: src/Module/OStatus/Repair.php:86 -msgid "No OStatus contacts to resubscribe to." -msgstr "" - -#: src/Module/OStatus/Subscribe.php:70 +#: src/Module/OStatus/Subscribe.php:58 msgid "Subscribing to contacts" msgstr "" -#: src/Module/OStatus/Subscribe.php:79 +#: src/Module/OStatus/Subscribe.php:67 msgid "No contact provided." msgstr "" -#: src/Module/OStatus/Subscribe.php:85 +#: src/Module/OStatus/Subscribe.php:73 msgid "Couldn't fetch information for contact." msgstr "" -#: src/Module/OStatus/Subscribe.php:96 +#: src/Module/OStatus/Subscribe.php:84 msgid "Couldn't fetch friends for contact." msgstr "" -#: src/Module/OStatus/Subscribe.php:102 src/Module/OStatus/Subscribe.php:113 +#: src/Module/OStatus/Subscribe.php:90 src/Module/OStatus/Subscribe.php:101 msgid "Couldn't fetch following contacts." msgstr "" -#: src/Module/OStatus/Subscribe.php:108 +#: src/Module/OStatus/Subscribe.php:96 msgid "Couldn't fetch remote profile." msgstr "" -#: src/Module/OStatus/Subscribe.php:118 +#: src/Module/OStatus/Subscribe.php:106 msgid "Unsupported network" msgstr "" -#: src/Module/OStatus/Subscribe.php:134 +#: src/Module/OStatus/Subscribe.php:122 msgid "Done" msgstr "" -#: src/Module/OStatus/Subscribe.php:148 +#: src/Module/OStatus/Subscribe.php:136 msgid "success" msgstr "" -#: src/Module/OStatus/Subscribe.php:150 +#: src/Module/OStatus/Subscribe.php:138 msgid "failed" msgstr "" -#: src/Module/OStatus/Subscribe.php:153 +#: src/Module/OStatus/Subscribe.php:141 msgid "ignored" msgstr "" -#: src/Module/PermissionTooltip.php:49 -#, php-format -msgid "Wrong type \"%s\", expected one of: %s" +#: src/Module/OStatus/Subscribe.php:146 +msgid "Keep this window open until done." msgstr "" -#: src/Module/PermissionTooltip.php:79 -msgid "Model not found" -msgstr "" - -#: src/Module/PermissionTooltip.php:94 -msgid "Unlisted" -msgstr "" - -#: src/Module/PermissionTooltip.php:112 -msgid "Remote privacy information not available." -msgstr "Дистанционно неприкосновеността на личния живот информация не е достъпен." - -#: src/Module/PermissionTooltip.php:120 -msgid "Visible to:" -msgstr "Вижда се от:" - -#: src/Module/PermissionTooltip.php:214 -#, php-format -msgid "Collection (%s)" -msgstr "" - -#: src/Module/PermissionTooltip.php:218 -#, php-format -msgid "Followers (%s)" -msgstr "" - -#: src/Module/PermissionTooltip.php:237 -#, php-format -msgid "%d more" -msgstr "" - -#: src/Module/PermissionTooltip.php:241 -#, php-format -msgid "To: %s
" -msgstr "" - -#: src/Module/PermissionTooltip.php:244 -#, php-format -msgid "CC: %s
" -msgstr "" - -#: src/Module/PermissionTooltip.php:247 -#, php-format -msgid "BCC: %s
" -msgstr "" - -#: src/Module/PermissionTooltip.php:250 -#, php-format -msgid "Audience: %s
" -msgstr "" - -#: src/Module/PermissionTooltip.php:253 -#, php-format -msgid "Attributed To: %s
" -msgstr "" - -#: src/Module/Photo.php:123 +#: src/Module/Photo.php:108 msgid "The Photo is not available." msgstr "" -#: src/Module/Photo.php:148 +#: src/Module/Photo.php:133 #, php-format msgid "The Photo with id %s is not available." msgstr "" -#: src/Module/Photo.php:189 +#: src/Module/Photo.php:174 #, php-format msgid "Invalid external resource with url %s." msgstr "" -#: src/Module/Photo.php:191 +#: src/Module/Photo.php:176 #, php-format msgid "Invalid photo with id %s." msgstr "" -#: src/Module/Post/Edit.php:82 src/Module/Post/Edit.php:96 +#: src/Module/Post/Edit.php:68 src/Module/Post/Edit.php:82 msgid "Post not found." msgstr "" -#: src/Module/Post/Edit.php:102 +#: src/Module/Post/Edit.php:88 msgid "Edit post" msgstr "Редактиране на мнение" -#: src/Module/Post/Edit.php:136 +#: src/Module/Post/Edit.php:122 msgid "web link" msgstr "Уеб-линк" -#: src/Module/Post/Edit.php:137 +#: src/Module/Post/Edit.php:123 msgid "Insert video link" msgstr "Поставете линка на видео" -#: src/Module/Post/Edit.php:138 +#: src/Module/Post/Edit.php:124 msgid "video link" msgstr "видео връзка" -#: src/Module/Post/Edit.php:139 +#: src/Module/Post/Edit.php:125 msgid "Insert audio link" msgstr "Поставете аудио връзка" -#: src/Module/Post/Edit.php:140 +#: src/Module/Post/Edit.php:126 msgid "audio link" msgstr "аудио връзка" -#: src/Module/Post/Tag/Remove.php:106 +#: src/Module/Post/Tag/Remove.php:92 msgid "Remove Item Tag" msgstr "Извадете Tag т." -#: src/Module/Post/Tag/Remove.php:107 +#: src/Module/Post/Tag/Remove.php:93 msgid "Select a tag to remove: " msgstr "Изберете етикет, за да премахнете: " -#: src/Module/Post/Tag/Remove.php:108 -#: src/Module/Settings/TwoFactor/Trusted.php:147 +#: src/Module/Post/Tag/Remove.php:94 +#: src/Module/Settings/TwoFactor/Trusted.php:133 msgid "Remove" msgstr "Премахване" -#: src/Module/Profile/Contacts.php:159 +#: src/Module/Privacy/PermissionTooltip.php:57 +#, php-format +msgid "Wrong type \"%s\", expected one of: %s" +msgstr "" + +#: src/Module/Privacy/PermissionTooltip.php:87 +msgid "Model not found" +msgstr "" + +#: src/Module/Privacy/PermissionTooltip.php:104 +msgid "Unlisted" +msgstr "" + +#: src/Module/Privacy/PermissionTooltip.php:110 +msgid "Remote privacy information not available." +msgstr "Дистанционно неприкосновеността на личния живот информация не е достъпен." + +#: src/Module/Privacy/PermissionTooltip.php:117 +msgid "Visible to:" +msgstr "Вижда се от:" + +#: src/Module/Privacy/PermissionTooltip.php:119 +msgid "CC:" +msgstr "" + +#: src/Module/Privacy/PermissionTooltip.php:120 +msgid "BCC:" +msgstr "" + +#: src/Module/Privacy/PermissionTooltip.php:121 +msgid "Audience:" +msgstr "" + +#: src/Module/Privacy/PermissionTooltip.php:122 +msgid "Attributed To:" +msgstr "" + +#: src/Module/Privacy/PermissionTooltip.php:220 +#, php-format +msgid "Collection (%s)" +msgstr "" + +#: src/Module/Privacy/PermissionTooltip.php:224 +#, php-format +msgid "Followers (%s)" +msgstr "" + +#: src/Module/Privacy/PermissionTooltip.php:241 +#, php-format +msgid "%d more" +msgstr "" + +#: src/Module/Profile/Contacts.php:145 msgid "No contacts." msgstr "Няма контакти." -#: src/Module/Profile/Conversations.php:106 -#: src/Module/Profile/Conversations.php:109 src/Module/Profile/Profile.php:351 -#: 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:1103 src/Protocol/OStatus.php:1014 +#: src/Module/Profile/Conversations.php:92 src/Module/Profile/Profile.php:339 +#: src/Protocol/Feed.php:1097 #, php-format msgid "%s's posts" msgstr "" -#: src/Module/Profile/Conversations.php:108 src/Module/Profile/Profile.php:353 -#: src/Protocol/Feed.php:1106 src/Protocol/OStatus.php:1018 +#: src/Module/Profile/Conversations.php:93 src/Module/Profile/Profile.php:340 +#: src/Protocol/Feed.php:1100 #, php-format msgid "%s's comments" msgstr "" -#: src/Module/Profile/Photos.php:164 src/Module/Profile/Photos.php:167 -#: src/Module/Profile/Photos.php:192 -#: src/Module/Settings/Profile/Photo/Index.php:58 +#: src/Module/Profile/Conversations.php:94 src/Module/Profile/Profile.php:341 +#: src/Protocol/Feed.php:1093 +#, php-format +msgid "%s's timeline" +msgstr "" + +#: src/Module/Profile/Photos.php:150 src/Module/Profile/Photos.php:153 +#: src/Module/Profile/Photos.php:178 +#: src/Module/Settings/Profile/Photo/Index.php:44 #, php-format msgid "Image exceeds size limit of %s" msgstr "" -#: src/Module/Profile/Photos.php:170 +#: src/Module/Profile/Photos.php:156 msgid "Image upload didn't complete, please try again" msgstr "" -#: src/Module/Profile/Photos.php:173 +#: src/Module/Profile/Photos.php:159 msgid "Image file is missing" msgstr "" -#: src/Module/Profile/Photos.php:178 +#: src/Module/Profile/Photos.php:164 msgid "" "Server can't accept new file upload at this time, please contact your " "administrator" msgstr "" -#: src/Module/Profile/Photos.php:200 +#: src/Module/Profile/Photos.php:186 msgid "Image file is empty." msgstr "Image файл е празен." -#: src/Module/Profile/Photos.php:352 +#: src/Module/Profile/Photos.php:338 msgid "View Album" msgstr "Вижте албуми" -#: src/Module/Profile/Profile.php:112 src/Module/Profile/Restricted.php:50 +#: src/Module/Profile/Profile.php:100 src/Module/Profile/Restricted.php:36 msgid "Profile not found." msgstr "Профил не е намерен." -#: src/Module/Profile/Profile.php:158 +#: src/Module/Profile/Profile.php:146 #, php-format msgid "" "You're currently viewing your profile as %s Cancel" msgstr "" -#: src/Module/Profile/Profile.php:167 +#: src/Module/Profile/Profile.php:155 msgid "Full Name:" msgstr "Собствено и фамилно име" -#: src/Module/Profile/Profile.php:172 +#: src/Module/Profile/Profile.php:160 msgid "Member since:" msgstr "" -#: src/Module/Profile/Profile.php:178 +#: src/Module/Profile/Profile.php:166 msgid "j F, Y" msgstr "J F, Y" -#: src/Module/Profile/Profile.php:179 +#: src/Module/Profile/Profile.php:167 msgid "j F" msgstr "J F" -#: src/Module/Profile/Profile.php:187 src/Util/Temporal.php:168 +#: src/Module/Profile/Profile.php:175 src/Util/Temporal.php:154 msgid "Birthday:" msgstr "Дата на раждане:" -#: src/Module/Profile/Profile.php:190 -#: src/Module/Settings/Profile/Index.php:291 src/Util/Temporal.php:170 +#: src/Module/Profile/Profile.php:178 +#: src/Module/Settings/Profile/Index.php:282 src/Util/Temporal.php:156 msgid "Age: " msgstr "Възраст: " -#: src/Module/Profile/Profile.php:190 -#: src/Module/Settings/Profile/Index.php:291 src/Util/Temporal.php:170 +#: src/Module/Profile/Profile.php:178 +#: src/Module/Settings/Profile/Index.php:282 src/Util/Temporal.php:156 #, php-format msgid "%d year old" msgid_plural "%d years old" msgstr[0] "" msgstr[1] "" -#: src/Module/Profile/Profile.php:195 -#: src/Module/Settings/Profile/Index.php:284 +#: src/Module/Profile/Profile.php:183 +#: src/Module/Settings/Profile/Index.php:275 msgid "Description:" msgstr "Описание:" -#: src/Module/Profile/Profile.php:261 +#: src/Module/Profile/Profile.php:249 msgid "Groups:" msgstr "" -#: src/Module/Profile/Profile.php:273 +#: src/Module/Profile/Profile.php:261 msgid "View profile as:" msgstr "" -#: src/Module/Profile/Profile.php:290 +#: src/Module/Profile/Profile.php:278 msgid "View as" msgstr "" -#: src/Module/Profile/RemoteFollow.php:82 +#: src/Module/Profile/RemoteFollow.php:68 msgid "Profile unavailable." msgstr "Профил недостъпни." -#: src/Module/Profile/RemoteFollow.php:88 +#: src/Module/Profile/RemoteFollow.php:74 msgid "Invalid locator" msgstr "Невалиден локатор" -#: src/Module/Profile/RemoteFollow.php:95 +#: src/Module/Profile/RemoteFollow.php:81 msgid "The provided profile link doesn't seem to be valid" msgstr "" -#: src/Module/Profile/RemoteFollow.php:100 +#: src/Module/Profile/RemoteFollow.php:86 msgid "" "Remote subscription can't be done for your network. Please subscribe " "directly on your system." msgstr "" -#: src/Module/Profile/RemoteFollow.php:128 +#: src/Module/Profile/RemoteFollow.php:114 msgid "Friend/Connection Request" msgstr "Приятел / заявка за връзка" -#: src/Module/Profile/RemoteFollow.php:129 +#: src/Module/Profile/RemoteFollow.php:115 #, php-format msgid "" "Enter your Webfinger address (user@domain.tld) or profile URL here. If this " @@ -9210,575 +9254,579 @@ msgid "" " or %s directly on your system." msgstr "" -#: src/Module/Profile/RemoteFollow.php:130 +#: src/Module/Profile/RemoteFollow.php:116 #, php-format msgid "" "If you are not yet a member of the free social web, follow " "this link to find a public Friendica node and join us today." msgstr "" -#: src/Module/Profile/RemoteFollow.php:131 +#: src/Module/Profile/RemoteFollow.php:117 msgid "Your Webfinger address or profile URL:" msgstr "" -#: src/Module/Profile/Restricted.php:59 +#: src/Module/Profile/Restricted.php:45 msgid "Restricted profile" msgstr "" -#: src/Module/Profile/Restricted.php:60 +#: src/Module/Profile/Restricted.php:46 msgid "" "This profile has been restricted which prevents access to their public " "content from anonymous visitors." msgstr "" -#: src/Module/Profile/Schedule.php:83 +#: src/Module/Profile/Schedule.php:69 msgid "Scheduled" msgstr "" -#: src/Module/Profile/Schedule.php:84 +#: src/Module/Profile/Schedule.php:70 msgid "Content" msgstr "" -#: src/Module/Profile/Schedule.php:85 +#: src/Module/Profile/Schedule.php:71 msgid "Remove post" msgstr "" -#: src/Module/Register.php:84 +#: src/Module/Register.php:77 msgid "Only parent users can create additional accounts." msgstr "" -#: src/Module/Register.php:99 src/Module/User/Import.php:111 +#: src/Module/Register.php:92 src/Module/User/Import.php:98 msgid "" "This site has exceeded the number of allowed daily account registrations. " "Please try again tomorrow." msgstr "Този сайт е надвишил броя на разрешените дневни регистрации сметка. Моля, опитайте отново утре." -#: src/Module/Register.php:116 +#: src/Module/Register.php:109 msgid "" "You may (optionally) fill in this form via OpenID by supplying your OpenID " "and clicking \"Register\"." msgstr "" -#: src/Module/Register.php:117 +#: src/Module/Register.php:110 msgid "" "If you are not familiar with OpenID, please leave that field blank and fill " "in the rest of the items." msgstr "Ако не сте запознати с OpenID, моля оставете това поле празно и попълнете останалата част от елементите." -#: src/Module/Register.php:118 +#: src/Module/Register.php:111 msgid "Your OpenID (optional): " msgstr "Вашият OpenID (не е задължително): " -#: src/Module/Register.php:127 +#: src/Module/Register.php:120 msgid "Include your profile in member directory?" msgstr "Включете вашия профил в член директория?" -#: src/Module/Register.php:148 +#: src/Module/Register.php:141 msgid "Note for the admin" msgstr "" -#: src/Module/Register.php:148 +#: src/Module/Register.php:141 msgid "Leave a message for the admin, why you want to join this node" msgstr "" -#: src/Module/Register.php:149 +#: src/Module/Register.php:142 msgid "Membership on this site is by invitation only." msgstr "Членството на този сайт е само с покани." -#: src/Module/Register.php:150 +#: src/Module/Register.php:143 msgid "Your invitation code: " msgstr "" -#: src/Module/Register.php:158 +#: src/Module/Register.php:151 msgid "Your Display Name (as you would like it to be displayed on this system" msgstr "" -#: src/Module/Register.php:159 +#: src/Module/Register.php:152 msgid "" "Your Email Address: (Initial information will be send there, so this has to " "be an existing address.)" msgstr "" -#: src/Module/Register.php:160 +#: src/Module/Register.php:153 msgid "Please repeat your e-mail address:" msgstr "" -#: src/Module/Register.php:162 src/Module/Security/PasswordTooLong.php:100 -#: src/Module/Settings/Account.php:557 +#: src/Module/Register.php:155 src/Module/Security/PasswordTooLong.php:86 +#: src/Module/Settings/Account.php:555 msgid "New Password:" msgstr "нова парола" -#: src/Module/Register.php:162 +#: src/Module/Register.php:155 msgid "Leave empty for an auto generated password." msgstr "" -#: src/Module/Register.php:163 src/Module/Security/PasswordTooLong.php:101 -#: src/Module/Settings/Account.php:558 +#: src/Module/Register.php:156 src/Module/Security/PasswordTooLong.php:87 +#: src/Module/Settings/Account.php:556 msgid "Confirm:" msgstr "Потвърждаване..." -#: src/Module/Register.php:164 +#: src/Module/Register.php:157 #, php-format msgid "" "Choose a profile nickname. This must begin with a text character. Your " "profile address on this site will then be \"nickname@%s\"." msgstr "" -#: src/Module/Register.php:165 +#: src/Module/Register.php:158 msgid "Choose a nickname: " msgstr "Изберете прякор: " -#: src/Module/Register.php:173 src/Module/User/Import.php:117 +#: src/Module/Register.php:166 src/Module/User/Import.php:104 msgid "Import" msgstr "Внасяне" -#: src/Module/Register.php:174 +#: src/Module/Register.php:167 msgid "Import your profile to this friendica instance" msgstr "" -#: src/Module/Register.php:181 +#: src/Module/Register.php:174 msgid "Note: This node explicitly contains adult content" msgstr "" -#: src/Module/Register.php:183 src/Module/Settings/Delegation.php:181 +#: src/Module/Register.php:176 src/Module/Settings/Delegation.php:167 msgid "Parent Password:" msgstr "" -#: src/Module/Register.php:183 src/Module/Settings/Delegation.php:181 +#: src/Module/Register.php:176 src/Module/Settings/Delegation.php:167 msgid "" "Please enter the password of the parent account to legitimize your request." msgstr "" -#: src/Module/Register.php:212 +#: src/Module/Register.php:205 msgid "Password doesn't match." msgstr "" -#: src/Module/Register.php:218 +#: src/Module/Register.php:211 msgid "Please enter your password." msgstr "" -#: src/Module/Register.php:260 +#: src/Module/Register.php:253 msgid "You have entered too much information." msgstr "" -#: src/Module/Register.php:283 +#: src/Module/Register.php:276 msgid "Please enter the identical mail address in the second field." msgstr "" -#: src/Module/Register.php:291 +#: src/Module/Register.php:284 msgid "Nickname cannot start with a digit." msgstr "" -#: src/Module/Register.php:293 +#: src/Module/Register.php:286 msgid "Nickname can only contain US-ASCII characters." msgstr "" -#: src/Module/Register.php:322 +#: src/Module/Register.php:315 msgid "The additional account was created." msgstr "" -#: src/Module/Register.php:347 +#: src/Module/Register.php:340 msgid "" "Registration successful. Please check your email for further instructions." msgstr "Регистрация успешно. Моля, проверете електронната си поща за по-нататъшни инструкции." -#: src/Module/Register.php:354 +#: src/Module/Register.php:347 #, php-format msgid "" "Failed to send email message. Here your accout details:
login: %s
" "password: %s

You can change your password after login." msgstr "" -#: src/Module/Register.php:360 +#: src/Module/Register.php:353 msgid "Registration successful." msgstr "" -#: src/Module/Register.php:369 src/Module/Register.php:376 -#: src/Module/Register.php:386 +#: src/Module/Register.php:362 src/Module/Register.php:369 +#: src/Module/Register.php:379 msgid "Your registration can not be processed." msgstr "Вашата регистрация не могат да бъдат обработени." -#: src/Module/Register.php:375 +#: src/Module/Register.php:368 msgid "You have to leave a request note for the admin." msgstr "" -#: src/Module/Register.php:385 +#: src/Module/Register.php:378 msgid "An internal error occured." msgstr "" -#: src/Module/Register.php:407 +#: src/Module/Register.php:400 msgid "Your registration is pending approval by the site owner." msgstr "Вашата регистрация е в очакване на одобрение от собственика на сайта." -#: src/Module/Search/Acl.php:73 +#: src/Module/Search/Acl.php:64 msgid "You must be logged in to use this module." msgstr "" -#: src/Module/Search/Index.php:69 +#: src/Module/Search/Index.php:55 msgid "Only logged in users are permitted to perform a search." msgstr "" -#: src/Module/Search/Index.php:89 +#: src/Module/Search/Index.php:75 msgid "Only one search per minute is permitted for not logged in users." msgstr "" -#: src/Module/Search/Index.php:205 +#: src/Module/Search/Index.php:191 #, php-format msgid "Items tagged with: %s" msgstr "" -#: src/Module/Search/Saved.php:59 +#: src/Module/Search/Saved.php:49 msgid "Search term was not saved." msgstr "" -#: src/Module/Search/Saved.php:62 +#: src/Module/Search/Saved.php:52 msgid "Search term already saved." msgstr "" -#: src/Module/Search/Saved.php:68 +#: src/Module/Search/Saved.php:58 msgid "Search term was not removed." msgstr "" -#: src/Module/Security/Login.php:123 +#: src/Module/Security/Login.php:113 msgid "Create a New Account" msgstr "Създаване на нов профил:" -#: src/Module/Security/Login.php:142 +#: src/Module/Security/Login.php:132 msgid "Your OpenID: " msgstr "" -#: src/Module/Security/Login.php:145 +#: src/Module/Security/Login.php:135 msgid "" "Please enter your username and password to add the OpenID to your existing " "account." msgstr "" -#: src/Module/Security/Login.php:147 +#: src/Module/Security/Login.php:137 msgid "Or login using OpenID: " msgstr "Или да влезнете с OpenID: " -#: src/Module/Security/Login.php:161 +#: src/Module/Security/Login.php:151 msgid "Password: " msgstr "Парола " -#: src/Module/Security/Login.php:162 +#: src/Module/Security/Login.php:152 msgid "Remember me" msgstr "" -#: src/Module/Security/Login.php:171 +#: src/Module/Security/Login.php:161 msgid "Forgot your password?" msgstr "Забравена парола?" -#: src/Module/Security/Login.php:174 +#: src/Module/Security/Login.php:164 msgid "Website Terms of Service" msgstr "Условия за ползване на сайта" -#: src/Module/Security/Login.php:175 +#: src/Module/Security/Login.php:165 msgid "terms of service" msgstr "условия за ползване" -#: src/Module/Security/Login.php:177 +#: src/Module/Security/Login.php:167 msgid "Website Privacy Policy" msgstr "Политика за поверителност на сайта" -#: src/Module/Security/Login.php:178 +#: src/Module/Security/Login.php:168 msgid "privacy policy" msgstr "политика за поверителност" -#: src/Module/Security/Logout.php:84 -#: src/Module/Security/TwoFactor/SignOut.php:78 -#: src/Module/Security/TwoFactor/SignOut.php:86 -#: src/Module/Security/TwoFactor/SignOut.php:108 -#: src/Module/Security/TwoFactor/SignOut.php:115 +#: src/Module/Security/Logout.php:75 +#: src/Module/Security/TwoFactor/SignOut.php:64 +#: src/Module/Security/TwoFactor/SignOut.php:72 +#: src/Module/Security/TwoFactor/SignOut.php:94 +#: src/Module/Security/TwoFactor/SignOut.php:101 msgid "Logged out." msgstr "Изход" -#: src/Module/Security/OpenID.php:54 +#: src/Module/Security/OpenID.php:40 msgid "OpenID protocol error. No ID returned" msgstr "" -#: src/Module/Security/OpenID.php:90 +#: src/Module/Security/OpenID.php:76 msgid "" "Account not found. Please login to your existing account to add the OpenID " "to it." msgstr "" -#: src/Module/Security/OpenID.php:92 +#: src/Module/Security/OpenID.php:78 msgid "" "Account not found. Please register a new account or login to your existing " "account to add the OpenID to it." msgstr "" -#: src/Module/Security/PasswordTooLong.php:57 -#: src/Module/Settings/Account.php:67 +#: src/Module/Security/PasswordTooLong.php:43 +#: src/Module/Settings/Account.php:53 msgid "Passwords do not match." msgstr "" -#: src/Module/Security/PasswordTooLong.php:64 +#: src/Module/Security/PasswordTooLong.php:50 msgid "Password does not need changing." msgstr "" -#: src/Module/Security/PasswordTooLong.php:77 -#: src/Module/Settings/Account.php:81 +#: src/Module/Security/PasswordTooLong.php:63 +#: src/Module/Settings/Account.php:67 msgid "Password unchanged." msgstr "" -#: src/Module/Security/PasswordTooLong.php:91 +#: src/Module/Security/PasswordTooLong.php:77 msgid "Password Too Long" msgstr "" -#: src/Module/Security/PasswordTooLong.php:92 +#: src/Module/Security/PasswordTooLong.php:78 msgid "" "Since version 2022.09, we've realized that any password longer than 72 " "characters is truncated during hashing. To prevent any confusion about this " "behavior, please update your password to be fewer or equal to 72 characters." msgstr "" -#: src/Module/Security/PasswordTooLong.php:93 +#: src/Module/Security/PasswordTooLong.php:79 msgid "Update Password" msgstr "" -#: src/Module/Security/PasswordTooLong.php:99 -#: src/Module/Settings/Account.php:559 +#: src/Module/Security/PasswordTooLong.php:85 +#: src/Module/Settings/Account.php:557 msgid "Current Password:" msgstr "Текуща парола:" -#: src/Module/Security/PasswordTooLong.php:99 -#: src/Module/Settings/Account.php:559 +#: src/Module/Security/PasswordTooLong.php:85 +#: src/Module/Settings/Account.php:557 msgid "Your current password to confirm the changes" msgstr "" -#: src/Module/Security/PasswordTooLong.php:100 -#: src/Module/Settings/Account.php:543 +#: src/Module/Security/PasswordTooLong.php:86 +#: src/Module/Settings/Account.php:541 msgid "" "Allowed characters are a-z, A-Z, 0-9 and special characters except white " "spaces and accentuated letters." msgstr "" -#: src/Module/Security/PasswordTooLong.php:100 -#: src/Module/Settings/Account.php:544 +#: src/Module/Security/PasswordTooLong.php:86 +#: src/Module/Settings/Account.php:542 msgid "Password length is limited to 72 characters." msgstr "" -#: src/Module/Security/TwoFactor/Recovery.php:74 +#: src/Module/Security/TwoFactor/Recovery.php:60 #, php-format msgid "Remaining recovery codes: %d" msgstr "" -#: src/Module/Security/TwoFactor/Recovery.php:80 -#: src/Module/Security/TwoFactor/Verify.php:77 -#: src/Module/Settings/TwoFactor/Verify.php:98 +#: src/Module/Security/TwoFactor/Recovery.php:66 +#: src/Module/Security/TwoFactor/Verify.php:63 +#: src/Module/Settings/TwoFactor/Verify.php:84 msgid "Invalid code, please retry." msgstr "" -#: src/Module/Security/TwoFactor/Recovery.php:99 +#: src/Module/Security/TwoFactor/Recovery.php:85 msgid "Two-factor recovery" msgstr "" -#: src/Module/Security/TwoFactor/Recovery.php:100 +#: src/Module/Security/TwoFactor/Recovery.php:86 msgid "" "

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

" msgstr "" -#: src/Module/Security/TwoFactor/Recovery.php:101 +#: src/Module/Security/TwoFactor/Recovery.php:87 #, php-format msgid "Don’t have your phone? Enter a two-factor recovery code" msgstr "" -#: src/Module/Security/TwoFactor/Recovery.php:102 +#: src/Module/Security/TwoFactor/Recovery.php:88 msgid "Please enter a recovery code" msgstr "" -#: src/Module/Security/TwoFactor/Recovery.php:103 +#: src/Module/Security/TwoFactor/Recovery.php:89 msgid "Submit recovery code and complete login" msgstr "" -#: src/Module/Security/TwoFactor/SignOut.php:122 +#: src/Module/Security/TwoFactor/SignOut.php:108 msgid "Sign out of this browser?" msgstr "" -#: src/Module/Security/TwoFactor/SignOut.php:123 +#: src/Module/Security/TwoFactor/SignOut.php:109 msgid "" "

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

" msgstr "" -#: src/Module/Security/TwoFactor/SignOut.php:124 +#: src/Module/Security/TwoFactor/SignOut.php:110 msgid "Sign out" msgstr "" -#: src/Module/Security/TwoFactor/SignOut.php:126 +#: src/Module/Security/TwoFactor/SignOut.php:112 msgid "Trust and sign out" msgstr "" -#: src/Module/Security/TwoFactor/Trust.php:96 +#: src/Module/Security/TwoFactor/Trust.php:82 msgid "Couldn't save browser to Cookie." msgstr "" -#: src/Module/Security/TwoFactor/Trust.php:141 +#: src/Module/Security/TwoFactor/Trust.php:127 msgid "Trust this browser?" msgstr "" -#: src/Module/Security/TwoFactor/Trust.php:142 +#: src/Module/Security/TwoFactor/Trust.php:128 msgid "" "

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

" msgstr "" -#: src/Module/Security/TwoFactor/Trust.php:143 +#: src/Module/Security/TwoFactor/Trust.php:129 msgid "Not now" msgstr "" -#: src/Module/Security/TwoFactor/Trust.php:144 +#: src/Module/Security/TwoFactor/Trust.php:130 msgid "Don't trust" msgstr "" -#: src/Module/Security/TwoFactor/Trust.php:145 +#: src/Module/Security/TwoFactor/Trust.php:131 msgid "Trust" msgstr "" -#: src/Module/Security/TwoFactor/Verify.php:97 +#: src/Module/Security/TwoFactor/Verify.php:83 msgid "" "

Open the two-factor authentication app on your device to get an " "authentication code and verify your identity.

" msgstr "" -#: src/Module/Security/TwoFactor/Verify.php:100 +#: src/Module/Security/TwoFactor/Verify.php:86 #, php-format msgid "" "If you do not have access to your authentication code you can use a two-factor recovery code." msgstr "" -#: src/Module/Security/TwoFactor/Verify.php:101 -#: src/Module/Settings/TwoFactor/Verify.php:158 +#: src/Module/Security/TwoFactor/Verify.php:87 +#: src/Module/Settings/TwoFactor/Verify.php:144 msgid "Please enter a code from your authentication app" msgstr "" -#: src/Module/Security/TwoFactor/Verify.php:102 +#: src/Module/Security/TwoFactor/Verify.php:88 msgid "Verify code and complete login" msgstr "" -#: src/Module/Settings/Account.php:96 +#: src/Module/Settings/Account.php:82 msgid "Please use a shorter name." msgstr "" -#: src/Module/Settings/Account.php:99 +#: src/Module/Settings/Account.php:85 msgid "Name too short." msgstr "" -#: src/Module/Settings/Account.php:108 +#: src/Module/Settings/Account.php:94 msgid "Wrong Password." msgstr "" -#: src/Module/Settings/Account.php:113 +#: src/Module/Settings/Account.php:99 msgid "Invalid email." msgstr "" -#: src/Module/Settings/Account.php:117 +#: src/Module/Settings/Account.php:103 msgid "Cannot change to that email." msgstr "" -#: src/Module/Settings/Account.php:146 src/Module/Settings/Account.php:195 -#: src/Module/Settings/Account.php:216 src/Module/Settings/Account.php:300 -#: src/Module/Settings/Account.php:329 +#: src/Module/Settings/Account.php:132 src/Module/Settings/Account.php:181 +#: src/Module/Settings/Account.php:202 src/Module/Settings/Account.php:286 +#: src/Module/Settings/Account.php:315 msgid "Settings were not updated." msgstr "" -#: src/Module/Settings/Account.php:342 +#: src/Module/Settings/Account.php:333 msgid "Contact CSV file upload error" msgstr "" -#: src/Module/Settings/Account.php:361 +#: src/Module/Settings/Account.php:352 msgid "Importing Contacts done" msgstr "" -#: src/Module/Settings/Account.php:374 +#: src/Module/Settings/Account.php:365 msgid "Relocate message has been send to your contacts" msgstr "" -#: src/Module/Settings/Account.php:391 +#: src/Module/Settings/Account.php:382 msgid "Unable to find your profile. Please contact your admin." msgstr "" -#: src/Module/Settings/Account.php:433 +#: src/Module/Settings/Account.php:424 msgid "" "Account for a service that automatically shares content based on user " "defined channels." msgstr "" -#: src/Module/Settings/Account.php:443 +#: src/Module/Settings/Account.php:434 msgid "Personal Page Subtypes" msgstr "" -#: src/Module/Settings/Account.php:444 +#: src/Module/Settings/Account.php:435 msgid "Community Group Subtypes" msgstr "" -#: src/Module/Settings/Account.php:455 +#: src/Module/Settings/Account.php:446 msgid "Account for a personal profile." msgstr "" -#: src/Module/Settings/Account.php:462 +#: src/Module/Settings/Account.php:453 msgid "" "Account for an organisation that automatically approves contact requests as " "\"Followers\"." msgstr "" -#: src/Module/Settings/Account.php:469 +#: src/Module/Settings/Account.php:460 msgid "" "Account for a news reflector that automatically approves contact requests as" " \"Followers\"." msgstr "" -#: src/Module/Settings/Account.php:476 +#: src/Module/Settings/Account.php:467 msgid "Account for community discussions." msgstr "" -#: src/Module/Settings/Account.php:484 +#: src/Module/Settings/Account.php:475 msgid "" "Account for a regular personal profile that requires manual approval of " "\"Friends\" and \"Followers\"." msgstr "" -#: src/Module/Settings/Account.php:491 +#: src/Module/Settings/Account.php:482 msgid "" "Account for a public profile that automatically approves contact requests as" " \"Followers\"." msgstr "" -#: src/Module/Settings/Account.php:498 +#: src/Module/Settings/Account.php:489 msgid "Automatically approves all contact requests." msgstr "" -#: src/Module/Settings/Account.php:505 +#: src/Module/Settings/Account.php:496 +msgid "Contact requests have to be manually approved." +msgstr "" + +#: src/Module/Settings/Account.php:503 msgid "" "Account for a popular profile that automatically approves contact requests " "as \"Friends\"." msgstr "" -#: src/Module/Settings/Account.php:510 +#: src/Module/Settings/Account.php:508 msgid "Private Group [Experimental]" msgstr "" -#: src/Module/Settings/Account.php:512 +#: src/Module/Settings/Account.php:510 msgid "Requires manual approval of contact requests." msgstr "" -#: src/Module/Settings/Account.php:521 +#: src/Module/Settings/Account.php:519 msgid "OpenID:" msgstr "OpenID:" -#: src/Module/Settings/Account.php:521 +#: src/Module/Settings/Account.php:519 msgid "(Optional) Allow this OpenID to login to this account." msgstr "(По избор) позволяват това OpenID, за да влезете в тази сметка." -#: src/Module/Settings/Account.php:529 +#: src/Module/Settings/Account.php:527 msgid "Publish your profile in your local site directory?" msgstr "" -#: src/Module/Settings/Account.php:529 +#: src/Module/Settings/Account.php:527 #, php-format msgid "" "Your profile will be published in this node's local " @@ -9786,94 +9834,94 @@ msgid "" " system settings." msgstr "" -#: src/Module/Settings/Account.php:535 +#: src/Module/Settings/Account.php:533 #, php-format msgid "" "Your profile will also be published in the global friendica directories " "(e.g. %s)." msgstr "" -#: src/Module/Settings/Account.php:548 +#: src/Module/Settings/Account.php:546 msgid "Account Settings" msgstr "Настройки на профила" -#: src/Module/Settings/Account.php:549 +#: src/Module/Settings/Account.php:547 #, php-format msgid "Your Identity Address is '%s' or '%s'." msgstr "" -#: src/Module/Settings/Account.php:556 +#: src/Module/Settings/Account.php:554 msgid "Password Settings" msgstr "Парола Настройки" -#: src/Module/Settings/Account.php:558 +#: src/Module/Settings/Account.php:556 msgid "Leave password fields blank unless changing" msgstr "Оставете паролите полета празни, освен ако промяна" -#: src/Module/Settings/Account.php:560 +#: src/Module/Settings/Account.php:558 msgid "Password:" msgstr "Парола" -#: src/Module/Settings/Account.php:560 +#: src/Module/Settings/Account.php:558 msgid "Your current password to confirm the changes of the email address" msgstr "" -#: src/Module/Settings/Account.php:563 +#: src/Module/Settings/Account.php:561 msgid "Delete OpenID URL" msgstr "" -#: src/Module/Settings/Account.php:565 +#: src/Module/Settings/Account.php:563 msgid "Basic Settings" msgstr "Основни настройки" -#: src/Module/Settings/Account.php:566 -#: src/Module/Settings/Profile/Index.php:283 +#: src/Module/Settings/Account.php:564 +#: src/Module/Settings/Profile/Index.php:274 msgid "Display name:" msgstr "" -#: src/Module/Settings/Account.php:567 +#: src/Module/Settings/Account.php:565 msgid "Email Address:" msgstr "Електронна поща:" -#: src/Module/Settings/Account.php:568 +#: src/Module/Settings/Account.php:566 msgid "Your Timezone:" msgstr "Вашият Часовата зона:" -#: src/Module/Settings/Account.php:569 +#: src/Module/Settings/Account.php:567 msgid "Your Language:" msgstr "" -#: src/Module/Settings/Account.php:569 +#: src/Module/Settings/Account.php:567 msgid "" "Set the language we use to show you friendica interface and to send you " "emails" msgstr "" -#: src/Module/Settings/Account.php:570 +#: src/Module/Settings/Account.php:568 msgid "Default Post Location:" msgstr "Мнение местоположението по подразбиране:" -#: src/Module/Settings/Account.php:571 +#: src/Module/Settings/Account.php:569 msgid "Use Browser Location:" msgstr "Използвайте Browser Местоположение:" -#: src/Module/Settings/Account.php:573 +#: src/Module/Settings/Account.php:571 msgid "Security and Privacy Settings" msgstr "Сигурност и и лични настройки" -#: src/Module/Settings/Account.php:575 +#: src/Module/Settings/Account.php:573 msgid "Maximum Friend Requests/Day:" msgstr "Максимален брой молби за приятелство / ден:" -#: src/Module/Settings/Account.php:575 +#: src/Module/Settings/Account.php:573 msgid "(to prevent spam abuse)" msgstr "(Да се ​​предотврати спама злоупотреба)" -#: src/Module/Settings/Account.php:577 +#: src/Module/Settings/Account.php:575 msgid "Allow your profile to be searchable globally?" msgstr "" -#: src/Module/Settings/Account.php:577 +#: src/Module/Settings/Account.php:575 msgid "" "Activate this setting if you want others to easily find and follow you. Your" " profile will be searchable on remote systems. This setting also determines " @@ -9881,43 +9929,43 @@ msgid "" "indexed or not." msgstr "" -#: src/Module/Settings/Account.php:578 +#: src/Module/Settings/Account.php:576 msgid "Hide your contact/friend list from viewers of your profile?" msgstr "" -#: src/Module/Settings/Account.php:578 +#: src/Module/Settings/Account.php:576 msgid "" "A list of your contacts is displayed on your profile page. Activate this " "option to disable the display of your contact list." msgstr "" -#: src/Module/Settings/Account.php:579 +#: src/Module/Settings/Account.php:577 msgid "Hide your public content from anonymous viewers" msgstr "" -#: src/Module/Settings/Account.php:579 +#: src/Module/Settings/Account.php:577 msgid "" "Anonymous visitors will only see your basic profile details. Your public " "posts and replies will still be freely accessible on the remote servers of " "your followers and through relays." msgstr "" -#: src/Module/Settings/Account.php:580 +#: src/Module/Settings/Account.php:578 msgid "Make public posts unlisted" msgstr "" -#: src/Module/Settings/Account.php:580 +#: src/Module/Settings/Account.php:578 msgid "" "Your public posts will not appear on the community pages or in search " "results, nor be sent to relay servers. However they can still appear on " "public feeds on remote servers." msgstr "" -#: src/Module/Settings/Account.php:581 +#: src/Module/Settings/Account.php:579 msgid "Make all posted pictures accessible" msgstr "" -#: src/Module/Settings/Account.php:581 +#: src/Module/Settings/Account.php:579 msgid "" "This option makes every posted picture accessible via the direct link. This " "is a workaround for the problem that most other networks can't handle " @@ -9925,352 +9973,352 @@ msgid "" "public on your photo albums though." msgstr "" -#: src/Module/Settings/Account.php:582 +#: src/Module/Settings/Account.php:580 msgid "Allow friends to post to your profile page?" msgstr "Оставете приятели, които да публикувате в страницата с вашия профил?" -#: src/Module/Settings/Account.php:582 +#: src/Module/Settings/Account.php:580 msgid "" "Your contacts may write posts on your profile wall. These posts will be " "distributed to your contacts" msgstr "" -#: src/Module/Settings/Account.php:583 +#: src/Module/Settings/Account.php:581 msgid "Allow friends to tag your posts?" msgstr "Оставете приятели, за да маркирам собствените си мнения?" -#: src/Module/Settings/Account.php:583 +#: src/Module/Settings/Account.php:581 msgid "Your contacts can add additional tags to your posts." msgstr "" -#: src/Module/Settings/Account.php:584 +#: src/Module/Settings/Account.php:582 msgid "Default privacy circle for new contacts" msgstr "" -#: src/Module/Settings/Account.php:585 +#: src/Module/Settings/Account.php:583 msgid "Default privacy circle for new group contacts" msgstr "" -#: src/Module/Settings/Account.php:586 +#: src/Module/Settings/Account.php:584 msgid "Default Post Permissions" msgstr "Разрешения по подразбиране и" -#: src/Module/Settings/Account.php:590 +#: src/Module/Settings/Account.php:588 msgid "Expiration settings" msgstr "" -#: src/Module/Settings/Account.php:591 +#: src/Module/Settings/Account.php:589 msgid "Automatically expire posts after this many days:" msgstr "Автоматично изтича мнения след толкова много дни:" -#: src/Module/Settings/Account.php:591 +#: src/Module/Settings/Account.php:589 msgid "If empty, posts will not expire. Expired posts will be deleted" msgstr "Ако е празна, мнението няма да изтече. Изтекли мнения ще бъдат изтрити" -#: src/Module/Settings/Account.php:592 +#: src/Module/Settings/Account.php:590 msgid "Expire posts" msgstr "" -#: src/Module/Settings/Account.php:592 +#: src/Module/Settings/Account.php:590 msgid "When activated, posts and comments will be expired." msgstr "" -#: src/Module/Settings/Account.php:593 +#: src/Module/Settings/Account.php:591 msgid "Expire personal notes" msgstr "" -#: src/Module/Settings/Account.php:593 +#: src/Module/Settings/Account.php:591 msgid "" "When activated, the personal notes on your profile page will be expired." msgstr "" -#: src/Module/Settings/Account.php:594 +#: src/Module/Settings/Account.php:592 msgid "Expire starred posts" msgstr "" -#: src/Module/Settings/Account.php:594 +#: src/Module/Settings/Account.php:592 msgid "" "Starring posts keeps them from being expired. That behaviour is overwritten " "by this setting." msgstr "" -#: src/Module/Settings/Account.php:595 +#: src/Module/Settings/Account.php:593 msgid "Only expire posts by others" msgstr "" -#: src/Module/Settings/Account.php:595 +#: src/Module/Settings/Account.php:593 msgid "" "When activated, your own posts never expire. Then the settings above are " "only valid for posts you received." msgstr "" -#: src/Module/Settings/Account.php:598 +#: src/Module/Settings/Account.php:596 msgid "Notification Settings" msgstr "Настройки за уведомяване" -#: src/Module/Settings/Account.php:599 +#: src/Module/Settings/Account.php:597 msgid "Send a notification email when:" msgstr "Изпращане на известие по имейл, когато:" -#: src/Module/Settings/Account.php:600 +#: src/Module/Settings/Account.php:598 msgid "You receive an introduction" msgstr "Вие получавате въведение" -#: src/Module/Settings/Account.php:601 +#: src/Module/Settings/Account.php:599 msgid "Your introductions are confirmed" msgstr "Вашите въвеждания са потвърдени" -#: src/Module/Settings/Account.php:602 +#: src/Module/Settings/Account.php:600 msgid "Someone writes on your profile wall" msgstr "Някой пише в профила ви стена" -#: src/Module/Settings/Account.php:603 +#: src/Module/Settings/Account.php:601 msgid "Someone writes a followup comment" msgstr "Някой пише последващ коментар" -#: src/Module/Settings/Account.php:604 +#: src/Module/Settings/Account.php:602 msgid "You receive a private message" msgstr "Ще получите лично съобщение" -#: src/Module/Settings/Account.php:605 +#: src/Module/Settings/Account.php:603 msgid "You receive a friend suggestion" msgstr "Ще получите предложение приятел" -#: src/Module/Settings/Account.php:606 +#: src/Module/Settings/Account.php:604 msgid "You are tagged in a post" msgstr "Са маркирани в един пост" -#: src/Module/Settings/Account.php:608 +#: src/Module/Settings/Account.php:606 msgid "Create a desktop notification when:" msgstr "" -#: src/Module/Settings/Account.php:609 +#: src/Module/Settings/Account.php:607 msgid "Someone tagged you" msgstr "" -#: src/Module/Settings/Account.php:610 +#: src/Module/Settings/Account.php:608 msgid "Someone directly commented on your post" msgstr "" -#: src/Module/Settings/Account.php:611 +#: src/Module/Settings/Account.php:609 msgid "Someone liked your content" msgstr "" -#: src/Module/Settings/Account.php:611 src/Module/Settings/Account.php:612 +#: src/Module/Settings/Account.php:609 src/Module/Settings/Account.php:610 msgid "Can only be enabled, when the direct comment notification is enabled." msgstr "" -#: src/Module/Settings/Account.php:612 +#: src/Module/Settings/Account.php:610 msgid "Someone shared your content" msgstr "" -#: src/Module/Settings/Account.php:613 +#: src/Module/Settings/Account.php:611 msgid "Someone commented in your thread" msgstr "" -#: src/Module/Settings/Account.php:614 +#: src/Module/Settings/Account.php:612 msgid "Someone commented in a thread where you commented" msgstr "" -#: src/Module/Settings/Account.php:615 +#: src/Module/Settings/Account.php:613 msgid "Someone commented in a thread where you interacted" msgstr "" -#: src/Module/Settings/Account.php:617 +#: src/Module/Settings/Account.php:615 msgid "Activate desktop notifications" msgstr "" -#: src/Module/Settings/Account.php:617 +#: src/Module/Settings/Account.php:615 msgid "Show desktop popup on new notifications" msgstr "" -#: src/Module/Settings/Account.php:621 +#: src/Module/Settings/Account.php:619 msgid "Text-only notification emails" msgstr "" -#: src/Module/Settings/Account.php:623 +#: src/Module/Settings/Account.php:621 msgid "Send text only notification emails, without the html part" msgstr "" -#: src/Module/Settings/Account.php:627 +#: src/Module/Settings/Account.php:625 msgid "Show detailled notifications" msgstr "" -#: src/Module/Settings/Account.php:629 +#: src/Module/Settings/Account.php:627 msgid "" "Per default, notifications are condensed to a single notification per item. " "When enabled every notification is displayed." msgstr "" -#: src/Module/Settings/Account.php:633 +#: src/Module/Settings/Account.php:631 msgid "Show notifications of ignored contacts" msgstr "" -#: src/Module/Settings/Account.php:635 +#: src/Module/Settings/Account.php:633 msgid "" "You don't see posts from ignored contacts. But you still see their comments." " This setting controls if you want to still receive regular notifications " "that are caused by ignored contacts or not." msgstr "" -#: src/Module/Settings/Account.php:638 +#: src/Module/Settings/Account.php:636 msgid "Advanced Account/Page Type Settings" msgstr "Разширено сметка / Настройки на вид страница" -#: src/Module/Settings/Account.php:639 +#: src/Module/Settings/Account.php:637 msgid "Change the behaviour of this account for special situations" msgstr "Промяна на поведението на тази сметка за специални ситуации" -#: src/Module/Settings/Account.php:642 +#: src/Module/Settings/Account.php:640 msgid "Import Contacts" msgstr "" -#: src/Module/Settings/Account.php:643 +#: src/Module/Settings/Account.php:641 msgid "" "Upload a CSV file that contains the handle of your followed accounts in the " "first column you exported from the old account." msgstr "" -#: src/Module/Settings/Account.php:644 +#: src/Module/Settings/Account.php:642 msgid "Upload File" msgstr "" -#: src/Module/Settings/Account.php:647 +#: src/Module/Settings/Account.php:645 msgid "Relocate" msgstr "" -#: src/Module/Settings/Account.php:648 +#: src/Module/Settings/Account.php:646 msgid "" "If you have moved this profile from another server, and some of your " "contacts don't receive your updates, try pushing this button." msgstr "" -#: src/Module/Settings/Account.php:649 +#: src/Module/Settings/Account.php:647 msgid "Resend relocate message to contacts" msgstr "" -#: src/Module/Settings/Addons.php:86 +#: src/Module/Settings/Addons.php:72 msgid "Addon Settings" msgstr "" -#: src/Module/Settings/Addons.php:87 +#: src/Module/Settings/Addons.php:73 msgid "No Addon settings configured" msgstr "" -#: src/Module/Settings/Channels.php:142 +#: src/Module/Settings/Channels.php:134 msgid "" "This page can be used to define the channels that will automatically be " "reshared by your account." msgstr "" -#: src/Module/Settings/Channels.php:147 +#: src/Module/Settings/Channels.php:139 msgid "This page can be used to define your own channels." msgstr "" -#: src/Module/Settings/Channels.php:176 +#: src/Module/Settings/Channels.php:168 msgid "Publish" msgstr "" -#: src/Module/Settings/Channels.php:176 +#: src/Module/Settings/Channels.php:168 msgid "" "When selected, the channel results are reshared. This only works for public " "ActivityPub posts from the public timeline or the user defined circles." msgstr "" -#: src/Module/Settings/Channels.php:184 src/Module/Settings/Channels.php:205 -#: src/Module/Settings/Display.php:342 +#: src/Module/Settings/Channels.php:176 src/Module/Settings/Channels.php:197 +#: src/Module/Settings/Display.php:324 msgid "Label" msgstr "" -#: src/Module/Settings/Channels.php:185 src/Module/Settings/Channels.php:206 -#: src/Module/Settings/Display.php:343 -#: src/Module/Settings/TwoFactor/AppSpecific.php:137 +#: src/Module/Settings/Channels.php:177 src/Module/Settings/Channels.php:198 +#: src/Module/Settings/Display.php:325 +#: src/Module/Settings/TwoFactor/AppSpecific.php:123 msgid "Description" msgstr "" -#: src/Module/Settings/Channels.php:186 src/Module/Settings/Channels.php:207 +#: src/Module/Settings/Channels.php:178 src/Module/Settings/Channels.php:199 msgid "Access Key" msgstr "" -#: src/Module/Settings/Channels.php:187 src/Module/Settings/Channels.php:208 +#: src/Module/Settings/Channels.php:179 src/Module/Settings/Channels.php:200 msgid "Circle/Channel" msgstr "" -#: src/Module/Settings/Channels.php:188 src/Module/Settings/Channels.php:209 +#: src/Module/Settings/Channels.php:180 src/Module/Settings/Channels.php:201 msgid "Include Tags" msgstr "" -#: src/Module/Settings/Channels.php:189 src/Module/Settings/Channels.php:210 +#: src/Module/Settings/Channels.php:181 src/Module/Settings/Channels.php:202 msgid "Exclude Tags" msgstr "" -#: src/Module/Settings/Channels.php:190 src/Module/Settings/Channels.php:211 +#: src/Module/Settings/Channels.php:182 src/Module/Settings/Channels.php:203 msgid "Minimum Size" msgstr "" -#: src/Module/Settings/Channels.php:191 src/Module/Settings/Channels.php:212 +#: src/Module/Settings/Channels.php:183 src/Module/Settings/Channels.php:204 msgid "Maximum Size" msgstr "" -#: src/Module/Settings/Channels.php:192 src/Module/Settings/Channels.php:213 +#: src/Module/Settings/Channels.php:184 src/Module/Settings/Channels.php:205 msgid "Full Text Search" msgstr "" -#: src/Module/Settings/Channels.php:196 src/Module/Settings/Channels.php:217 +#: src/Module/Settings/Channels.php:188 src/Module/Settings/Channels.php:209 msgid "Select all languages that you want to see in this channel." msgstr "" -#: src/Module/Settings/Channels.php:198 +#: src/Module/Settings/Channels.php:190 msgid "Delete channel" msgstr "" -#: src/Module/Settings/Channels.php:198 +#: src/Module/Settings/Channels.php:190 msgid "Check to delete this entry from the channel list" msgstr "" -#: src/Module/Settings/Channels.php:205 +#: src/Module/Settings/Channels.php:197 msgid "Short name for the channel. It is displayed on the channels widget." msgstr "" -#: src/Module/Settings/Channels.php:206 +#: src/Module/Settings/Channels.php:198 msgid "This should describe the content of the channel in a few word." msgstr "" -#: src/Module/Settings/Channels.php:207 +#: src/Module/Settings/Channels.php:199 msgid "" "When you want to access this channel via an access key, you can define it " "here. Pay attention to not use an already used one." msgstr "" -#: src/Module/Settings/Channels.php:208 +#: src/Module/Settings/Channels.php:200 msgid "Select a circle or channel, that your channel should be based on." msgstr "" -#: src/Module/Settings/Channels.php:209 +#: src/Module/Settings/Channels.php:201 msgid "" "Comma separated list of tags. A post will be used when it contains any of " "the listed tags." msgstr "" -#: src/Module/Settings/Channels.php:210 +#: src/Module/Settings/Channels.php:202 msgid "" "Comma separated list of tags. If a post contain any of these tags, then it " "will not be part of nthis channel." msgstr "" -#: src/Module/Settings/Channels.php:211 +#: src/Module/Settings/Channels.php:203 msgid "" "Minimum post size. Leave empty for no minimum size. The size is calculated " "without links, attached posts, mentions or hashtags." msgstr "" -#: src/Module/Settings/Channels.php:212 +#: src/Module/Settings/Channels.php:204 msgid "" "Maximum post size. Leave empty for no maximum size. The size is calculated " "without links, attached posts, mentions or hashtags." msgstr "" -#: src/Module/Settings/Channels.php:213 +#: src/Module/Settings/Channels.php:205 #, php-format msgid "" "Search terms for the body, supports the \"boolean mode\" operators from " @@ -10278,586 +10326,589 @@ msgid "" "keywords: %s" msgstr "" -#: src/Module/Settings/Channels.php:214 +#: src/Module/Settings/Channels.php:206 msgid "Check to display images in the channel." msgstr "" -#: src/Module/Settings/Channels.php:215 +#: src/Module/Settings/Channels.php:207 msgid "Check to display videos in the channel." msgstr "" -#: src/Module/Settings/Channels.php:216 +#: src/Module/Settings/Channels.php:208 msgid "Check to display audio in the channel." msgstr "" -#: src/Module/Settings/Channels.php:221 +#: src/Module/Settings/Channels.php:213 msgid "Add new entry to the channel list" msgstr "" -#: src/Module/Settings/Channels.php:222 +#: src/Module/Settings/Channels.php:214 msgid "Add" msgstr "Добави" -#: src/Module/Settings/Channels.php:224 +#: src/Module/Settings/Channels.php:216 msgid "Current Entries in the channel list" msgstr "" -#: src/Module/Settings/Channels.php:227 +#: src/Module/Settings/Channels.php:219 msgid "Delete entry from the channel list" msgstr "" -#: src/Module/Settings/Channels.php:228 +#: src/Module/Settings/Channels.php:220 msgid "Delete entry from the channel list?" msgstr "" -#: src/Module/Settings/Connectors.php:120 +#: src/Module/Settings/Connectors.php:108 msgid "Failed to connect with email account using the settings provided." msgstr "Неуспех да се свърже с имейл акаунт, като използвате предоставените настройки." -#: src/Module/Settings/Connectors.php:166 -#: src/Module/Settings/Connectors.php:167 +#: src/Module/Settings/Connectors.php:155 +#: src/Module/Settings/Connectors.php:156 msgid "Diaspora (Socialhome, Hubzilla)" msgstr "" -#: src/Module/Settings/Connectors.php:166 -#: src/Module/Settings/Connectors.php:170 +#: src/Module/Settings/Connectors.php:155 #, php-format msgid "Built-in support for %s connectivity is enabled" msgstr "" -#: src/Module/Settings/Connectors.php:167 -#: src/Module/Settings/Connectors.php:169 +#: src/Module/Settings/Connectors.php:156 #, php-format msgid "Built-in support for %s connectivity is disabled" msgstr "" -#: src/Module/Settings/Connectors.php:169 -#: src/Module/Settings/Connectors.php:170 -msgid "OStatus (GNU Social)" -msgstr "" - -#: src/Module/Settings/Connectors.php:182 +#: src/Module/Settings/Connectors.php:167 msgid "Email access is disabled on this site." msgstr "Достъп до електронна поща е забранен на този сайт." -#: src/Module/Settings/Connectors.php:197 -#: src/Module/Settings/Connectors.php:244 +#: src/Module/Settings/Connectors.php:182 +#: src/Module/Settings/Connectors.php:233 msgid "None" msgstr "Няма " -#: src/Module/Settings/Connectors.php:209 +#: src/Module/Settings/Connectors.php:186 +msgid "Default (Mastodon will display the title and a link to the post)" +msgstr "" + +#: src/Module/Settings/Connectors.php:187 +msgid "" +"Use the summary (Mastodon and some others will treat it as content warning)" +msgstr "" + +#: src/Module/Settings/Connectors.php:188 +msgid "Embed the title in the body" +msgstr "" + +#: src/Module/Settings/Connectors.php:199 msgid "General Social Media Settings" msgstr "" -#: src/Module/Settings/Connectors.php:212 +#: src/Module/Settings/Connectors.php:202 msgid "Followed content scope" msgstr "" -#: src/Module/Settings/Connectors.php:214 +#: src/Module/Settings/Connectors.php:204 msgid "" "By default, conversations in which your follows participated but didn't " "start will be shown in your timeline. You can turn this behavior off, or " "expand it to the conversations in which your follows liked a post." msgstr "" -#: src/Module/Settings/Connectors.php:216 +#: src/Module/Settings/Connectors.php:206 msgid "Only conversations my follows started" msgstr "" -#: src/Module/Settings/Connectors.php:217 +#: src/Module/Settings/Connectors.php:207 msgid "Conversations my follows started or commented on (default)" msgstr "" -#: src/Module/Settings/Connectors.php:218 +#: src/Module/Settings/Connectors.php:208 msgid "Any conversation my follows interacted with, including likes" msgstr "" -#: src/Module/Settings/Connectors.php:221 -msgid "Enable Content Warning" +#: src/Module/Settings/Connectors.php:211 +msgid "Collapse sensitive posts" msgstr "" -#: src/Module/Settings/Connectors.php:221 +#: src/Module/Settings/Connectors.php:211 msgid "" -"Users on networks like Mastodon or Pleroma are able to set a content warning" -" field which collapse their post by default. This enables the automatic " -"collapsing instead of setting the content warning as the post title. Doesn't" -" affect any other content filtering you eventually set up." +"If a post is marked as \"sensitive\", it will be displayed in a collapsed " +"state, if this option is enabled." msgstr "" -#: src/Module/Settings/Connectors.php:222 +#: src/Module/Settings/Connectors.php:212 msgid "Enable intelligent shortening" msgstr "" -#: src/Module/Settings/Connectors.php:222 +#: src/Module/Settings/Connectors.php:212 msgid "" "Normally the system tries to find the best link to add to shortened posts. " "If disabled, every shortened post will always point to the original " "friendica post." msgstr "" -#: src/Module/Settings/Connectors.php:223 +#: src/Module/Settings/Connectors.php:213 msgid "Enable simple text shortening" msgstr "" -#: src/Module/Settings/Connectors.php:223 +#: src/Module/Settings/Connectors.php:213 msgid "" "Normally the system shortens posts at the next line feed. If this option is " "enabled then the system will shorten the text at the maximum character " "limit." msgstr "" -#: src/Module/Settings/Connectors.php:224 +#: src/Module/Settings/Connectors.php:214 msgid "Attach the link title" msgstr "" -#: src/Module/Settings/Connectors.php:224 +#: src/Module/Settings/Connectors.php:214 msgid "" "When activated, the title of the attached link will be added as a title on " "posts to Diaspora. This is mostly helpful with \"remote-self\" contacts that" " share feed content." msgstr "" -#: src/Module/Settings/Connectors.php:225 +#: src/Module/Settings/Connectors.php:215 msgid "API: Use spoiler field as title" msgstr "" -#: src/Module/Settings/Connectors.php:225 +#: src/Module/Settings/Connectors.php:215 msgid "" "When activated, the \"spoiler_text\" field in the API will be used for the " "title on standalone posts. When deactivated it will be used for spoiler " "text. For comments it will always be used for spoiler text." msgstr "" -#: src/Module/Settings/Connectors.php:226 +#: src/Module/Settings/Connectors.php:216 msgid "API: Automatically links at the end of the post as attached posts" msgstr "" -#: src/Module/Settings/Connectors.php:226 +#: src/Module/Settings/Connectors.php:216 msgid "" "When activated, added links at the end of the post react the same way as " "added links in the web interface." msgstr "" -#: src/Module/Settings/Connectors.php:227 +#: src/Module/Settings/Connectors.php:217 +msgid "Article Mode" +msgstr "" + +#: src/Module/Settings/Connectors.php:217 +msgid "" +"Controls how posts with titles are transmitted. Mastodon and its forks don't" +" display the content of these posts if the post is created in the correct " +"(default) way." +msgstr "" + +#: src/Module/Settings/Connectors.php:218 msgid "Your legacy ActivityPub/GNU Social account" msgstr "" -#: src/Module/Settings/Connectors.php:227 +#: src/Module/Settings/Connectors.php:218 msgid "" "If you enter your old account name from an ActivityPub based system or your " "GNU Social/Statusnet account name here (in the format user@domain.tld), your" " contacts will be added automatically. The field will be emptied when done." msgstr "" -#: src/Module/Settings/Connectors.php:229 -msgid "Repair OStatus subscriptions" -msgstr "" - -#: src/Module/Settings/Connectors.php:233 +#: src/Module/Settings/Connectors.php:222 msgid "Email/Mailbox Setup" msgstr "Email / Mailbox Setup" -#: src/Module/Settings/Connectors.php:234 +#: src/Module/Settings/Connectors.php:223 msgid "" "If you wish to communicate with email contacts using this service " "(optional), please specify how to connect to your mailbox." msgstr "Ако желаете да се комуникира с имейл контакти, които използват тази услуга (по желание), моля посочете как да се свържете с вашата пощенска кутия." -#: src/Module/Settings/Connectors.php:235 +#: src/Module/Settings/Connectors.php:224 msgid "Last successful email check:" msgstr "Последна успешна проверка на електронната поща:" -#: src/Module/Settings/Connectors.php:237 +#: src/Module/Settings/Connectors.php:226 msgid "IMAP server name:" msgstr "Име на IMAP сървъра:" -#: src/Module/Settings/Connectors.php:238 +#: src/Module/Settings/Connectors.php:227 msgid "IMAP port:" msgstr "IMAP порта:" -#: src/Module/Settings/Connectors.php:239 +#: src/Module/Settings/Connectors.php:228 msgid "Security:" msgstr "Сигурност" -#: src/Module/Settings/Connectors.php:240 +#: src/Module/Settings/Connectors.php:229 msgid "Email login name:" msgstr "Email потребителско име:" -#: src/Module/Settings/Connectors.php:241 +#: src/Module/Settings/Connectors.php:230 msgid "Email password:" msgstr "Email парола:" -#: src/Module/Settings/Connectors.php:242 +#: src/Module/Settings/Connectors.php:231 msgid "Reply-to address:" msgstr "Адрес за отговор:" -#: src/Module/Settings/Connectors.php:243 +#: src/Module/Settings/Connectors.php:232 msgid "Send public posts to all email contacts:" msgstr "Изпратете публични длъжности за всички имейл контакти:" -#: src/Module/Settings/Connectors.php:244 +#: src/Module/Settings/Connectors.php:233 msgid "Action after import:" msgstr "Действия след вноса:" -#: src/Module/Settings/Connectors.php:244 +#: src/Module/Settings/Connectors.php:233 msgid "Move to folder" msgstr "Премества избраното в папка" -#: src/Module/Settings/Connectors.php:245 +#: src/Module/Settings/Connectors.php:234 msgid "Move to folder:" msgstr "Премества избраното в папка" -#: src/Module/Settings/Delegation.php:73 +#: src/Module/Settings/Delegation.php:59 msgid "Delegation successfully granted." msgstr "" -#: src/Module/Settings/Delegation.php:75 +#: src/Module/Settings/Delegation.php:61 msgid "Parent user not found, unavailable or password doesn't match." msgstr "" -#: src/Module/Settings/Delegation.php:79 +#: src/Module/Settings/Delegation.php:65 msgid "Delegation successfully revoked." msgstr "" -#: src/Module/Settings/Delegation.php:98 -#: src/Module/Settings/Delegation.php:120 +#: src/Module/Settings/Delegation.php:84 +#: src/Module/Settings/Delegation.php:106 msgid "" "Delegated administrators can view but not change delegation permissions." msgstr "" -#: src/Module/Settings/Delegation.php:112 +#: src/Module/Settings/Delegation.php:98 msgid "Delegate user not found." msgstr "" -#: src/Module/Settings/Delegation.php:169 +#: src/Module/Settings/Delegation.php:155 msgid "No parent user" msgstr "" -#: src/Module/Settings/Delegation.php:180 -#: src/Module/Settings/Delegation.php:191 +#: src/Module/Settings/Delegation.php:166 +#: src/Module/Settings/Delegation.php:177 msgid "Parent User" msgstr "" -#: src/Module/Settings/Delegation.php:188 +#: src/Module/Settings/Delegation.php:174 msgid "Additional Accounts" msgstr "" -#: src/Module/Settings/Delegation.php:189 +#: src/Module/Settings/Delegation.php:175 msgid "" "Register additional accounts that are automatically connected to your " "existing account so you can manage them from this account." msgstr "" -#: src/Module/Settings/Delegation.php:190 +#: src/Module/Settings/Delegation.php:176 msgid "Register an additional account" msgstr "" -#: src/Module/Settings/Delegation.php:192 +#: src/Module/Settings/Delegation.php:178 msgid "" "Parent users have total control about this account, including the account " "settings. Please double check whom you give this access." msgstr "" -#: src/Module/Settings/Delegation.php:195 +#: src/Module/Settings/Delegation.php:181 msgid "Delegates" msgstr "" -#: src/Module/Settings/Delegation.php:196 +#: src/Module/Settings/Delegation.php:182 msgid "" "Delegates are able to manage all aspects of this account/page except for " "basic account settings. Please do not delegate your personal account to " "anybody that you do not trust completely." msgstr "Делегатите са в състояние да управляват всички аспекти от тази сметка / страница, с изключение на основните настройки сметка. Моля, не делегира Вашата лична сметка на никого, че не се доверявате напълно." -#: src/Module/Settings/Delegation.php:197 +#: src/Module/Settings/Delegation.php:183 msgid "Existing Page Delegates" msgstr "Съществуващите Делегатите Страница" -#: src/Module/Settings/Delegation.php:198 +#: src/Module/Settings/Delegation.php:184 msgid "Potential Delegates" msgstr "Потенциални Делегатите" -#: src/Module/Settings/Delegation.php:199 +#: src/Module/Settings/Delegation.php:185 msgid "No entries." msgstr "няма регистрирани" -#: src/Module/Settings/Display.php:185 +#: src/Module/Settings/Display.php:169 msgid "The theme you chose isn't available." msgstr "" -#: src/Module/Settings/Display.php:225 +#: src/Module/Settings/Display.php:209 #, php-format msgid "%s - (Unsupported)" msgstr "" -#: src/Module/Settings/Display.php:263 +#: src/Module/Settings/Display.php:246 msgid "No preview" msgstr "" -#: src/Module/Settings/Display.php:264 +#: src/Module/Settings/Display.php:247 msgid "No image" msgstr "" -#: src/Module/Settings/Display.php:265 +#: src/Module/Settings/Display.php:248 msgid "Small Image" msgstr "" -#: src/Module/Settings/Display.php:266 +#: src/Module/Settings/Display.php:249 msgid "Large Image" msgstr "" -#: src/Module/Settings/Display.php:311 +#: src/Module/Settings/Display.php:294 msgid "Display Settings" msgstr "Настройки на дисплея" -#: src/Module/Settings/Display.php:313 +#: src/Module/Settings/Display.php:296 msgid "General Theme Settings" msgstr "" -#: src/Module/Settings/Display.php:314 +#: src/Module/Settings/Display.php:297 msgid "Custom Theme Settings" msgstr "" -#: src/Module/Settings/Display.php:315 +#: src/Module/Settings/Display.php:298 msgid "Content Settings" msgstr "" -#: 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 +#: src/Module/Settings/Display.php:299 view/theme/duepuntozero/config.php:74 +#: view/theme/frio/config.php:139 view/theme/quattro/config.php:76 +#: view/theme/vier/config.php:124 msgid "Theme settings" msgstr "Тема Настройки" -#: src/Module/Settings/Display.php:317 +#: src/Module/Settings/Display.php:300 msgid "Timelines" msgstr "" -#: src/Module/Settings/Display.php:324 +#: src/Module/Settings/Display.php:307 msgid "Display Theme:" msgstr "Палитрата на дисплея:" -#: src/Module/Settings/Display.php:325 +#: src/Module/Settings/Display.php:308 msgid "Mobile Theme:" msgstr "" -#: src/Module/Settings/Display.php:328 +#: src/Module/Settings/Display.php:311 msgid "Number of items to display per page:" msgstr "" -#: src/Module/Settings/Display.php:328 src/Module/Settings/Display.php:329 +#: src/Module/Settings/Display.php:311 src/Module/Settings/Display.php:312 msgid "Maximum of 100 items" msgstr "Максимум от 100 точки" -#: src/Module/Settings/Display.php:329 +#: src/Module/Settings/Display.php:312 msgid "Number of items to display per page when viewed from mobile device:" msgstr "" -#: src/Module/Settings/Display.php:330 +#: src/Module/Settings/Display.php:313 msgid "Update browser every xx seconds" msgstr "Актуализиране на браузъра на всеки ХХ секунди" -#: src/Module/Settings/Display.php:330 +#: src/Module/Settings/Display.php:313 msgid "Minimum of 10 seconds. Enter -1 to disable it." msgstr "" -#: src/Module/Settings/Display.php:331 +#: src/Module/Settings/Display.php:314 msgid "Display emoticons" msgstr "" -#: src/Module/Settings/Display.php:331 +#: src/Module/Settings/Display.php:314 msgid "When enabled, emoticons are replaced with matching symbols." msgstr "" -#: src/Module/Settings/Display.php:332 +#: src/Module/Settings/Display.php:315 msgid "Infinite scroll" msgstr "" -#: src/Module/Settings/Display.php:332 +#: src/Module/Settings/Display.php:315 msgid "Automatic fetch new items when reaching the page end." msgstr "" -#: src/Module/Settings/Display.php:333 +#: src/Module/Settings/Display.php:316 msgid "Enable Smart Threading" msgstr "" -#: src/Module/Settings/Display.php:333 +#: src/Module/Settings/Display.php:316 msgid "Enable the automatic suppression of extraneous thread indentation." msgstr "" -#: src/Module/Settings/Display.php:334 +#: src/Module/Settings/Display.php:317 msgid "Display the Dislike feature" msgstr "" -#: src/Module/Settings/Display.php:334 +#: src/Module/Settings/Display.php:317 msgid "" "Display the Dislike button and dislike reactions on posts and comments." msgstr "" -#: src/Module/Settings/Display.php:335 +#: src/Module/Settings/Display.php:318 msgid "Display the resharer" msgstr "" -#: src/Module/Settings/Display.php:335 +#: src/Module/Settings/Display.php:318 msgid "Display the first resharer as icon and text on a reshared item." msgstr "" -#: src/Module/Settings/Display.php: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 +#: src/Module/Settings/Display.php:319 msgid "Stay local" msgstr "" -#: src/Module/Settings/Display.php:337 +#: src/Module/Settings/Display.php:319 msgid "Don't go to a remote system when following a contact link." msgstr "" -#: src/Module/Settings/Display.php:338 +#: src/Module/Settings/Display.php:320 msgid "Show the post deletion checkbox" msgstr "" -#: src/Module/Settings/Display.php:338 +#: src/Module/Settings/Display.php:320 msgid "Display the checkbox for the post deletion on the network page." msgstr "" -#: src/Module/Settings/Display.php:339 +#: src/Module/Settings/Display.php:321 msgid "DIsplay the event list" msgstr "" -#: src/Module/Settings/Display.php:339 +#: src/Module/Settings/Display.php:321 msgid "Display the birthday reminder and event list on the network page." msgstr "" -#: src/Module/Settings/Display.php:340 +#: src/Module/Settings/Display.php:322 msgid "Link preview mode" msgstr "" -#: src/Module/Settings/Display.php:340 +#: src/Module/Settings/Display.php:322 msgid "Appearance of the link preview that is added to each post with a link." msgstr "" -#: src/Module/Settings/Display.php:345 +#: src/Module/Settings/Display.php:327 msgid "Bookmark" msgstr "" -#: src/Module/Settings/Display.php:347 +#: src/Module/Settings/Display.php:329 msgid "" "Enable timelines that you want to see in the channels widget. Bookmark " "timelines that you want to see in the top menu." msgstr "" -#: src/Module/Settings/Display.php:349 +#: src/Module/Settings/Display.php:331 msgid "Channel languages:" msgstr "" -#: src/Module/Settings/Display.php:349 +#: src/Module/Settings/Display.php:331 msgid "Select all languages that you want to see in your channels." msgstr "" -#: src/Module/Settings/Display.php:351 +#: src/Module/Settings/Display.php:333 msgid "Beginning of week:" msgstr "" -#: src/Module/Settings/Display.php:352 +#: src/Module/Settings/Display.php:334 msgid "Default calendar view:" msgstr "" -#: src/Module/Settings/Features.php:74 +#: src/Module/Settings/Features.php:59 msgid "Additional Features" msgstr "Допълнителни възможности" -#: src/Module/Settings/OAuth.php:71 +#: src/Module/Settings/OAuth.php:57 msgid "Connected Apps" msgstr "Свързани Apps" -#: src/Module/Settings/OAuth.php:75 +#: src/Module/Settings/OAuth.php:61 msgid "Remove authorization" msgstr "Премахване на разрешение" -#: src/Module/Settings/Profile/Index.php:116 +#: src/Module/Settings/Profile/Index.php:102 msgid "Display Name is required." msgstr "" -#: src/Module/Settings/Profile/Index.php:167 +#: src/Module/Settings/Profile/Index.php:156 msgid "Profile couldn't be updated." msgstr "" -#: src/Module/Settings/Profile/Index.php:205 -#: src/Module/Settings/Profile/Index.php:226 +#: src/Module/Settings/Profile/Index.php:196 +#: src/Module/Settings/Profile/Index.php:217 msgid "Label:" msgstr "" -#: src/Module/Settings/Profile/Index.php:206 -#: src/Module/Settings/Profile/Index.php:227 +#: src/Module/Settings/Profile/Index.php:197 +#: src/Module/Settings/Profile/Index.php:218 msgid "Value:" msgstr "" -#: src/Module/Settings/Profile/Index.php:217 -#: src/Module/Settings/Profile/Index.php:238 +#: src/Module/Settings/Profile/Index.php:208 +#: src/Module/Settings/Profile/Index.php:229 msgid "Field Permissions" msgstr "" -#: src/Module/Settings/Profile/Index.php:218 -#: src/Module/Settings/Profile/Index.php:239 +#: src/Module/Settings/Profile/Index.php:209 +#: src/Module/Settings/Profile/Index.php:230 msgid "(click to open/close)" msgstr "(Щракнете за отваряне / затваряне)" -#: src/Module/Settings/Profile/Index.php:224 +#: src/Module/Settings/Profile/Index.php:215 msgid "Add a new profile field" msgstr "" -#: src/Module/Settings/Profile/Index.php:247 +#: src/Module/Settings/Profile/Index.php:238 msgid "" "The homepage is verified. A rel=\"me\" link back to your Friendica profile " "page was found on the homepage." msgstr "" -#: src/Module/Settings/Profile/Index.php:249 +#: src/Module/Settings/Profile/Index.php:240 #, php-format msgid "" "To verify your homepage, add a rel=\"me\" link to it, pointing to your " "profile URL (%s)." msgstr "" -#: src/Module/Settings/Profile/Index.php:255 +#: src/Module/Settings/Profile/Index.php:246 msgid "Profile Actions" msgstr "" -#: src/Module/Settings/Profile/Index.php:256 +#: src/Module/Settings/Profile/Index.php:247 msgid "Edit Profile Details" msgstr "Редактиране на детайли от профила" -#: src/Module/Settings/Profile/Index.php:258 +#: src/Module/Settings/Profile/Index.php:249 msgid "Change Profile Photo" msgstr "Промяна снимката на профила" -#: src/Module/Settings/Profile/Index.php:261 +#: src/Module/Settings/Profile/Index.php:252 msgid "Profile picture" msgstr "" -#: src/Module/Settings/Profile/Index.php:262 +#: src/Module/Settings/Profile/Index.php:253 msgid "Location" msgstr "Местоположение " -#: src/Module/Settings/Profile/Index.php:263 src/Util/Temporal.php:97 -#: src/Util/Temporal.php:99 +#: src/Module/Settings/Profile/Index.php:254 src/Util/Temporal.php:83 +#: src/Util/Temporal.php:85 msgid "Miscellaneous" msgstr "Разни" -#: src/Module/Settings/Profile/Index.php:264 +#: src/Module/Settings/Profile/Index.php:255 msgid "Custom Profile Fields" msgstr "" -#: src/Module/Settings/Profile/Index.php:265 src/Module/Welcome.php:58 +#: src/Module/Settings/Profile/Index.php:256 src/Module/Welcome.php:44 msgid "Upload Profile Photo" msgstr "Качване на снимка Профилът" -#: src/Module/Settings/Profile/Index.php:266 +#: src/Module/Settings/Profile/Index.php:257 #, php-format msgid "" "

Custom fields appear on your profile page.

\n" @@ -10867,396 +10918,396 @@ msgid "" "\t\t\t\t

Non-public fields can only be seen by the selected Friendica contacts or the Friendica contacts in the selected circles.

" msgstr "" -#: src/Module/Settings/Profile/Index.php:286 +#: src/Module/Settings/Profile/Index.php:277 msgid "Street Address:" msgstr "Адрес:" -#: src/Module/Settings/Profile/Index.php:287 +#: src/Module/Settings/Profile/Index.php:278 msgid "Locality/City:" msgstr "Махала / Град:" -#: src/Module/Settings/Profile/Index.php:288 +#: src/Module/Settings/Profile/Index.php:279 msgid "Region/State:" msgstr "Регион / Щат:" -#: src/Module/Settings/Profile/Index.php:289 +#: src/Module/Settings/Profile/Index.php:280 msgid "Postal/Zip Code:" msgstr "Postal / Zip Code:" -#: src/Module/Settings/Profile/Index.php:290 +#: src/Module/Settings/Profile/Index.php:281 msgid "Country:" msgstr "Държава:" -#: src/Module/Settings/Profile/Index.php:292 +#: src/Module/Settings/Profile/Index.php:283 msgid "XMPP (Jabber) address:" msgstr "" -#: src/Module/Settings/Profile/Index.php:292 +#: src/Module/Settings/Profile/Index.php:283 msgid "" "The XMPP address will be published so that people can follow you there." msgstr "" -#: src/Module/Settings/Profile/Index.php:293 +#: src/Module/Settings/Profile/Index.php:284 msgid "Matrix (Element) address:" msgstr "" -#: src/Module/Settings/Profile/Index.php:293 +#: src/Module/Settings/Profile/Index.php:284 msgid "" "The Matrix address will be published so that people can follow you there." msgstr "" -#: src/Module/Settings/Profile/Index.php:294 +#: src/Module/Settings/Profile/Index.php:285 msgid "Homepage URL:" msgstr "Електронна страница:" -#: src/Module/Settings/Profile/Index.php:295 +#: src/Module/Settings/Profile/Index.php:286 msgid "Public Keywords:" msgstr "Публичните Ключови думи:" -#: src/Module/Settings/Profile/Index.php:295 +#: src/Module/Settings/Profile/Index.php:286 msgid "(Used for suggesting potential friends, can be seen by others)" msgstr "(Използва се за предполагайки потенциален приятели, може да се види от други)" -#: src/Module/Settings/Profile/Index.php:296 +#: src/Module/Settings/Profile/Index.php:287 msgid "Private Keywords:" msgstr "Частни Ключови думи:" -#: src/Module/Settings/Profile/Index.php:296 +#: src/Module/Settings/Profile/Index.php:287 msgid "(Used for searching profiles, never shown to others)" msgstr "(Използва се за търсене на профилите, никога не показва и на други)" -#: src/Module/Settings/Profile/Photo/Crop.php:107 -#: src/Module/Settings/Profile/Photo/Crop.php:125 -#: src/Module/Settings/Profile/Photo/Crop.php:143 -#: src/Module/Settings/Profile/Photo/Index.php:100 +#: src/Module/Settings/Profile/Photo/Crop.php:93 +#: src/Module/Settings/Profile/Photo/Crop.php:111 +#: src/Module/Settings/Profile/Photo/Crop.php:129 +#: src/Module/Settings/Profile/Photo/Index.php:86 #, php-format msgid "Image size reduction [%s] failed." msgstr "Намаляване на размер [ %s ] не успя." -#: src/Module/Settings/Profile/Photo/Crop.php:150 +#: src/Module/Settings/Profile/Photo/Crop.php:136 msgid "" "Shift-reload the page or clear browser cache if the new photo does not " "display immediately." msgstr "Shift-презаредите страницата или ясно, кеша на браузъра, ако новата снимка не показва веднага." -#: src/Module/Settings/Profile/Photo/Crop.php:155 +#: src/Module/Settings/Profile/Photo/Crop.php:141 msgid "Unable to process image" msgstr "Не може да се обработи" -#: src/Module/Settings/Profile/Photo/Crop.php:174 +#: src/Module/Settings/Profile/Photo/Crop.php:160 msgid "Photo not found." msgstr "" -#: src/Module/Settings/Profile/Photo/Crop.php:196 +#: src/Module/Settings/Profile/Photo/Crop.php:182 msgid "Profile picture successfully updated." msgstr "" -#: src/Module/Settings/Profile/Photo/Crop.php:222 -#: src/Module/Settings/Profile/Photo/Crop.php:226 +#: src/Module/Settings/Profile/Photo/Crop.php:208 +#: src/Module/Settings/Profile/Photo/Crop.php:212 msgid "Crop Image" msgstr "Изрязване на изображението" -#: src/Module/Settings/Profile/Photo/Crop.php:223 +#: src/Module/Settings/Profile/Photo/Crop.php:209 msgid "Please adjust the image cropping for optimum viewing." msgstr "Моля, настроите образа на изрязване за оптимално гледане." -#: src/Module/Settings/Profile/Photo/Crop.php:225 +#: src/Module/Settings/Profile/Photo/Crop.php:211 msgid "Use Image As Is" msgstr "" -#: src/Module/Settings/Profile/Photo/Index.php:46 +#: src/Module/Settings/Profile/Photo/Index.php:32 msgid "Missing uploaded image." msgstr "" -#: src/Module/Settings/Profile/Photo/Index.php:123 +#: src/Module/Settings/Profile/Photo/Index.php:109 msgid "Profile Picture Settings" msgstr "" -#: src/Module/Settings/Profile/Photo/Index.php:124 +#: src/Module/Settings/Profile/Photo/Index.php:110 msgid "Current Profile Picture" msgstr "" -#: src/Module/Settings/Profile/Photo/Index.php:125 +#: src/Module/Settings/Profile/Photo/Index.php:111 msgid "Upload Profile Picture" msgstr "" -#: src/Module/Settings/Profile/Photo/Index.php:126 +#: src/Module/Settings/Profile/Photo/Index.php:112 msgid "Upload Picture:" msgstr "" -#: src/Module/Settings/Profile/Photo/Index.php:131 +#: src/Module/Settings/Profile/Photo/Index.php:117 msgid "or" msgstr "или" -#: src/Module/Settings/Profile/Photo/Index.php:133 +#: src/Module/Settings/Profile/Photo/Index.php:119 msgid "skip this step" msgstr "пропуснете тази стъпка" -#: src/Module/Settings/Profile/Photo/Index.php:135 +#: src/Module/Settings/Profile/Photo/Index.php:121 msgid "select a photo from your photo albums" msgstr "изберете снимка от вашите фото албуми" -#: src/Module/Settings/RemoveMe.php:76 +#: src/Module/Settings/RemoveMe.php:62 msgid "" "There was a validation error, please make sure you're logged in with the " "account you want to remove and try again." msgstr "" -#: src/Module/Settings/RemoveMe.php:76 +#: src/Module/Settings/RemoveMe.php:62 msgid "If this error persists, please contact your administrator." msgstr "" -#: src/Module/Settings/RemoveMe.php:90 -#: src/Navigation/Notifications/Repository/Notify.php:471 -#: src/Navigation/Notifications/Repository/Notify.php:492 +#: src/Module/Settings/RemoveMe.php:76 +#: src/Navigation/Notifications/Repository/Notify.php:457 +#: src/Navigation/Notifications/Repository/Notify.php:478 msgid "[Friendica System Notify]" msgstr "" -#: src/Module/Settings/RemoveMe.php:90 +#: src/Module/Settings/RemoveMe.php:76 msgid "User deleted their account" msgstr "" -#: src/Module/Settings/RemoveMe.php:91 +#: src/Module/Settings/RemoveMe.php:77 msgid "" "On your Friendica node an user deleted their account. Please ensure that " "their data is removed from the backups." msgstr "" -#: src/Module/Settings/RemoveMe.php:92 +#: src/Module/Settings/RemoveMe.php:78 #, php-format msgid "The user id is %d" msgstr "" -#: src/Module/Settings/RemoveMe.php:105 +#: src/Module/Settings/RemoveMe.php:91 msgid "Your account has been successfully removed. Bye bye!" msgstr "" -#: src/Module/Settings/RemoveMe.php:130 +#: src/Module/Settings/RemoveMe.php:116 msgid "Remove My Account" msgstr "Извадете Моят профил" -#: src/Module/Settings/RemoveMe.php:131 +#: src/Module/Settings/RemoveMe.php:117 msgid "" "This will completely remove your account. Once this has been done it is not " "recoverable." msgstr "Това ще премахне изцяло сметката си. След като това е направено, не е възстановим." -#: src/Module/Settings/RemoveMe.php:136 +#: src/Module/Settings/RemoveMe.php:122 msgid "Please enter your password for verification:" msgstr "Моля, въведете паролата си за проверка:" -#: src/Module/Settings/Server/Action.php:60 +#: src/Module/Settings/Server/Action.php:46 msgid "Do you want to ignore this server?" msgstr "" -#: src/Module/Settings/Server/Action.php:64 +#: src/Module/Settings/Server/Action.php:50 msgid "Do you want to unignore this server?" msgstr "" -#: src/Module/Settings/Server/Action.php:74 -#: src/Module/Settings/Server/Index.php:104 +#: src/Module/Settings/Server/Action.php:60 +#: src/Module/Settings/Server/Index.php:90 msgid "Remote server settings" msgstr "" -#: src/Module/Settings/Server/Action.php:77 +#: src/Module/Settings/Server/Action.php:63 msgid "Server URL" msgstr "" -#: src/Module/Settings/Server/Index.php:78 +#: src/Module/Settings/Server/Index.php:64 msgid "Settings saved" msgstr "" -#: src/Module/Settings/Server/Index.php:105 +#: src/Module/Settings/Server/Index.php:91 msgid "" "Here you can find all the remote servers you have taken individual " "moderation actions against. For a list of servers your node has blocked, " "please check out the Information page." msgstr "" -#: src/Module/Settings/Server/Index.php:110 +#: src/Module/Settings/Server/Index.php:96 msgid "Delete all your settings for the remote server" msgstr "" -#: src/Module/Settings/Server/Index.php:111 +#: src/Module/Settings/Server/Index.php:97 msgid "Save changes" msgstr "" -#: src/Module/Settings/TwoFactor/AppSpecific.php:69 -#: src/Module/Settings/TwoFactor/Recovery.php:67 -#: src/Module/Settings/TwoFactor/Trusted.php:70 -#: src/Module/Settings/TwoFactor/Verify.php:72 +#: src/Module/Settings/TwoFactor/AppSpecific.php:55 +#: src/Module/Settings/TwoFactor/Recovery.php:53 +#: src/Module/Settings/TwoFactor/Trusted.php:56 +#: src/Module/Settings/TwoFactor/Verify.php:58 msgid "Please enter your password to access this page." msgstr "" -#: src/Module/Settings/TwoFactor/AppSpecific.php:87 +#: src/Module/Settings/TwoFactor/AppSpecific.php:73 msgid "App-specific password generation failed: The description is empty." msgstr "" -#: src/Module/Settings/TwoFactor/AppSpecific.php:90 +#: src/Module/Settings/TwoFactor/AppSpecific.php:76 msgid "" "App-specific password generation failed: This description already exists." msgstr "" -#: src/Module/Settings/TwoFactor/AppSpecific.php:94 +#: src/Module/Settings/TwoFactor/AppSpecific.php:80 msgid "New app-specific password generated." msgstr "" -#: src/Module/Settings/TwoFactor/AppSpecific.php:100 +#: src/Module/Settings/TwoFactor/AppSpecific.php:86 msgid "App-specific passwords successfully revoked." msgstr "" -#: src/Module/Settings/TwoFactor/AppSpecific.php:110 +#: src/Module/Settings/TwoFactor/AppSpecific.php:96 msgid "App-specific password successfully revoked." msgstr "" -#: src/Module/Settings/TwoFactor/AppSpecific.php:131 +#: src/Module/Settings/TwoFactor/AppSpecific.php:117 msgid "Two-factor app-specific passwords" msgstr "" -#: src/Module/Settings/TwoFactor/AppSpecific.php:133 +#: src/Module/Settings/TwoFactor/AppSpecific.php:119 msgid "" "

App-specific passwords are randomly generated passwords used instead your" " regular password to authenticate your account on third-party applications " "that don't support two-factor authentication.

" msgstr "" -#: src/Module/Settings/TwoFactor/AppSpecific.php:134 +#: src/Module/Settings/TwoFactor/AppSpecific.php:120 msgid "" "Make sure to copy your new app-specific password now. You won’t be able to " "see it again!" msgstr "" -#: src/Module/Settings/TwoFactor/AppSpecific.php:138 +#: src/Module/Settings/TwoFactor/AppSpecific.php:124 msgid "Last Used" msgstr "" -#: src/Module/Settings/TwoFactor/AppSpecific.php:139 +#: src/Module/Settings/TwoFactor/AppSpecific.php:125 msgid "Revoke" msgstr "" -#: src/Module/Settings/TwoFactor/AppSpecific.php:140 +#: src/Module/Settings/TwoFactor/AppSpecific.php:126 msgid "Revoke All" msgstr "" -#: src/Module/Settings/TwoFactor/AppSpecific.php:143 +#: src/Module/Settings/TwoFactor/AppSpecific.php:129 msgid "" "When you generate a new app-specific password, you must use it right away, " "it will be shown to you once after you generate it." msgstr "" -#: src/Module/Settings/TwoFactor/AppSpecific.php:144 +#: src/Module/Settings/TwoFactor/AppSpecific.php:130 msgid "Generate new app-specific password" msgstr "" -#: src/Module/Settings/TwoFactor/AppSpecific.php:145 +#: src/Module/Settings/TwoFactor/AppSpecific.php:131 msgid "Friendiqa on my Fairphone 2..." msgstr "" -#: src/Module/Settings/TwoFactor/AppSpecific.php:146 +#: src/Module/Settings/TwoFactor/AppSpecific.php:132 msgid "Generate" msgstr "" -#: src/Module/Settings/TwoFactor/Index.php:88 +#: src/Module/Settings/TwoFactor/Index.php:74 msgid "Two-factor authentication successfully disabled." msgstr "" -#: src/Module/Settings/TwoFactor/Index.php:141 +#: src/Module/Settings/TwoFactor/Index.php:127 msgid "" "

Use an application on a mobile device to get two-factor authentication " "codes when prompted on login.

" msgstr "" -#: src/Module/Settings/TwoFactor/Index.php:145 +#: src/Module/Settings/TwoFactor/Index.php:131 msgid "Authenticator app" msgstr "" -#: src/Module/Settings/TwoFactor/Index.php:146 +#: src/Module/Settings/TwoFactor/Index.php:132 msgid "Configured" msgstr "" -#: src/Module/Settings/TwoFactor/Index.php:146 +#: src/Module/Settings/TwoFactor/Index.php:132 msgid "Not Configured" msgstr "" -#: src/Module/Settings/TwoFactor/Index.php:147 +#: src/Module/Settings/TwoFactor/Index.php:133 msgid "

You haven't finished configuring your authenticator app.

" msgstr "" -#: src/Module/Settings/TwoFactor/Index.php:148 +#: src/Module/Settings/TwoFactor/Index.php:134 msgid "

Your authenticator app is correctly configured.

" msgstr "" -#: src/Module/Settings/TwoFactor/Index.php:150 +#: src/Module/Settings/TwoFactor/Index.php:136 msgid "Recovery codes" msgstr "" -#: src/Module/Settings/TwoFactor/Index.php:151 +#: src/Module/Settings/TwoFactor/Index.php:137 msgid "Remaining valid codes" msgstr "" -#: src/Module/Settings/TwoFactor/Index.php:153 +#: src/Module/Settings/TwoFactor/Index.php:139 msgid "" "

These one-use codes can replace an authenticator app code in case you " "have lost access to it.

" msgstr "" -#: src/Module/Settings/TwoFactor/Index.php:155 +#: src/Module/Settings/TwoFactor/Index.php:141 msgid "App-specific passwords" msgstr "" -#: src/Module/Settings/TwoFactor/Index.php:156 +#: src/Module/Settings/TwoFactor/Index.php:142 msgid "Generated app-specific passwords" msgstr "" -#: src/Module/Settings/TwoFactor/Index.php:158 +#: src/Module/Settings/TwoFactor/Index.php:144 msgid "" "

These randomly generated passwords allow you to authenticate on apps not " "supporting two-factor authentication.

" msgstr "" -#: src/Module/Settings/TwoFactor/Index.php:161 +#: src/Module/Settings/TwoFactor/Index.php:147 msgid "Current password:" msgstr "" -#: src/Module/Settings/TwoFactor/Index.php:161 +#: src/Module/Settings/TwoFactor/Index.php:147 msgid "" "You need to provide your current password to change two-factor " "authentication settings." msgstr "" -#: src/Module/Settings/TwoFactor/Index.php:162 +#: src/Module/Settings/TwoFactor/Index.php:148 msgid "Enable two-factor authentication" msgstr "" -#: src/Module/Settings/TwoFactor/Index.php:163 +#: src/Module/Settings/TwoFactor/Index.php:149 msgid "Disable two-factor authentication" msgstr "" -#: src/Module/Settings/TwoFactor/Index.php:164 +#: src/Module/Settings/TwoFactor/Index.php:150 msgid "Show recovery codes" msgstr "" -#: src/Module/Settings/TwoFactor/Index.php:165 +#: src/Module/Settings/TwoFactor/Index.php:151 msgid "Manage app-specific passwords" msgstr "" -#: src/Module/Settings/TwoFactor/Index.php:166 +#: src/Module/Settings/TwoFactor/Index.php:152 msgid "Manage trusted browsers" msgstr "" -#: src/Module/Settings/TwoFactor/Index.php:167 +#: src/Module/Settings/TwoFactor/Index.php:153 msgid "Finish app configuration" msgstr "" -#: src/Module/Settings/TwoFactor/Recovery.php:83 +#: src/Module/Settings/TwoFactor/Recovery.php:69 msgid "New recovery codes successfully generated." msgstr "" -#: src/Module/Settings/TwoFactor/Recovery.php:109 +#: src/Module/Settings/TwoFactor/Recovery.php:95 msgid "Two-factor recovery codes" msgstr "" -#: src/Module/Settings/TwoFactor/Recovery.php:111 +#: src/Module/Settings/TwoFactor/Recovery.php:97 msgid "" "

Recovery codes can be used to access your account in the event you lose " "access to your device and cannot receive two-factor authentication " @@ -11265,68 +11316,68 @@ msgid "" "account.

" msgstr "" -#: src/Module/Settings/TwoFactor/Recovery.php:113 +#: src/Module/Settings/TwoFactor/Recovery.php:99 msgid "" "When you generate new recovery codes, you must copy the new codes. Your old " "codes won’t work anymore." msgstr "" -#: src/Module/Settings/TwoFactor/Recovery.php:114 +#: src/Module/Settings/TwoFactor/Recovery.php:100 msgid "Generate new recovery codes" msgstr "" -#: src/Module/Settings/TwoFactor/Recovery.php:116 +#: src/Module/Settings/TwoFactor/Recovery.php:102 msgid "Next: Verification" msgstr "" -#: src/Module/Settings/TwoFactor/Trusted.php:87 +#: src/Module/Settings/TwoFactor/Trusted.php:73 msgid "Trusted browsers successfully removed." msgstr "" -#: src/Module/Settings/TwoFactor/Trusted.php:97 +#: src/Module/Settings/TwoFactor/Trusted.php:83 msgid "Trusted browser successfully removed." msgstr "" -#: src/Module/Settings/TwoFactor/Trusted.php:139 +#: src/Module/Settings/TwoFactor/Trusted.php:125 msgid "Two-factor Trusted Browsers" msgstr "" -#: src/Module/Settings/TwoFactor/Trusted.php:140 +#: src/Module/Settings/TwoFactor/Trusted.php:126 msgid "" "Trusted browsers are individual browsers you chose to skip two-factor " "authentication to access Friendica. Please use this feature sparingly, as it" " can negate the benefit of two-factor authentication." msgstr "" -#: src/Module/Settings/TwoFactor/Trusted.php:141 +#: src/Module/Settings/TwoFactor/Trusted.php:127 msgid "Device" msgstr "" -#: src/Module/Settings/TwoFactor/Trusted.php:142 +#: src/Module/Settings/TwoFactor/Trusted.php:128 msgid "OS" msgstr "" -#: src/Module/Settings/TwoFactor/Trusted.php:144 +#: src/Module/Settings/TwoFactor/Trusted.php:130 msgid "Trusted" msgstr "" -#: src/Module/Settings/TwoFactor/Trusted.php:145 +#: src/Module/Settings/TwoFactor/Trusted.php:131 msgid "Created At" msgstr "" -#: src/Module/Settings/TwoFactor/Trusted.php:146 +#: src/Module/Settings/TwoFactor/Trusted.php:132 msgid "Last Use" msgstr "" -#: src/Module/Settings/TwoFactor/Trusted.php:148 +#: src/Module/Settings/TwoFactor/Trusted.php:134 msgid "Remove All" msgstr "" -#: src/Module/Settings/TwoFactor/Verify.php:94 +#: src/Module/Settings/TwoFactor/Verify.php:80 msgid "Two-factor authentication successfully activated." msgstr "" -#: src/Module/Settings/TwoFactor/Verify.php:128 +#: src/Module/Settings/TwoFactor/Verify.php:114 #, php-format msgid "" "

Or you can submit the authentication settings manually:

\n" @@ -11346,105 +11397,105 @@ msgid "" "" msgstr "" -#: src/Module/Settings/TwoFactor/Verify.php:148 +#: src/Module/Settings/TwoFactor/Verify.php:134 msgid "Two-factor code verification" msgstr "" -#: src/Module/Settings/TwoFactor/Verify.php:150 +#: src/Module/Settings/TwoFactor/Verify.php:136 msgid "" "

Please scan this QR Code with your authenticator app and submit the " "provided code.

" msgstr "" -#: src/Module/Settings/TwoFactor/Verify.php:152 +#: src/Module/Settings/TwoFactor/Verify.php:138 #, php-format msgid "" "

Or you can open the following URL in your mobile device:

%s

" msgstr "" -#: src/Module/Settings/TwoFactor/Verify.php:159 +#: src/Module/Settings/TwoFactor/Verify.php:145 msgid "Verify code and enable two-factor authentication" msgstr "" -#: src/Module/Settings/UserExport.php:90 +#: src/Module/Settings/UserExport.php:76 msgid "Export account" msgstr "" -#: src/Module/Settings/UserExport.php:90 +#: src/Module/Settings/UserExport.php:76 msgid "" "Export your account info and contacts. Use this to make a backup of your " "account and/or to move it to another server." msgstr "" -#: src/Module/Settings/UserExport.php:91 +#: src/Module/Settings/UserExport.php:77 msgid "Export all" msgstr "Изнасяне на всичко" -#: src/Module/Settings/UserExport.php:91 +#: src/Module/Settings/UserExport.php:77 msgid "" "Export your account info, contacts and all your items as json. Could be a " "very big file, and could take a lot of time. Use this to make a full backup " "of your account (photos are not exported)" msgstr "" -#: src/Module/Settings/UserExport.php:92 +#: src/Module/Settings/UserExport.php:78 msgid "Export Contacts to CSV" msgstr "" -#: src/Module/Settings/UserExport.php:92 +#: src/Module/Settings/UserExport.php:78 msgid "" "Export the list of the accounts you are following as CSV file. Compatible to" " e.g. Mastodon." msgstr "" -#: src/Module/Special/DisplayNotFound.php:35 +#: src/Module/Special/DisplayNotFound.php:21 msgid "The top-level post isn't visible." msgstr "" -#: src/Module/Special/DisplayNotFound.php:36 +#: src/Module/Special/DisplayNotFound.php:22 msgid "The top-level post was deleted." msgstr "" -#: src/Module/Special/DisplayNotFound.php:37 +#: src/Module/Special/DisplayNotFound.php:23 msgid "" "This node has blocked the top-level author or the author of the shared post." msgstr "" -#: src/Module/Special/DisplayNotFound.php:38 +#: src/Module/Special/DisplayNotFound.php:24 msgid "" "You have ignored or blocked the top-level author or the author of the shared" " post." msgstr "" -#: src/Module/Special/DisplayNotFound.php:39 +#: src/Module/Special/DisplayNotFound.php:25 msgid "" "You have ignored the top-level author's server or the shared post author's " "server." msgstr "" -#: src/Module/Special/DisplayNotFound.php:45 +#: src/Module/Special/DisplayNotFound.php:31 msgid "Conversation Not Found" msgstr "" -#: src/Module/Special/DisplayNotFound.php:46 +#: src/Module/Special/DisplayNotFound.php:32 msgid "Unfortunately, the requested conversation isn't available to you." msgstr "" -#: src/Module/Special/DisplayNotFound.php:47 +#: src/Module/Special/DisplayNotFound.php:33 msgid "Possible reasons include:" msgstr "" -#: src/Module/Special/HTTPException.php:78 +#: src/Module/Special/HTTPException.php:64 msgid "Stack trace:" msgstr "" -#: src/Module/Special/HTTPException.php:83 +#: src/Module/Special/HTTPException.php:69 #, php-format msgid "Exception thrown in %s:%d" msgstr "" -#: src/Module/Tos.php:58 src/Module/Tos.php:107 +#: src/Module/Tos.php:44 src/Module/Tos.php:93 msgid "" "At the time of registration, and for providing communications between the " "user account and their contacts, the user has to provide a display name (pen" @@ -11457,14 +11508,14 @@ msgid "" "settings, it is not necessary for communication." msgstr "" -#: src/Module/Tos.php:59 src/Module/Tos.php:108 +#: src/Module/Tos.php:45 src/Module/Tos.php:94 msgid "" "This data is required for communication and is passed on to the nodes of the" " communication partners and is stored there. Users can enter additional " "private data that may be transmitted to the communication partners accounts." msgstr "" -#: src/Module/Tos.php:60 src/Module/Tos.php:109 +#: src/Module/Tos.php:46 src/Module/Tos.php:95 #, php-format msgid "" "At any point in time a logged in user can export their account data from the" @@ -11475,121 +11526,121 @@ msgid "" "from the nodes of the communication partners." msgstr "" -#: src/Module/Tos.php:63 src/Module/Tos.php:106 +#: src/Module/Tos.php:49 src/Module/Tos.php:92 msgid "Privacy Statement" msgstr "" -#: src/Module/Tos.php:103 +#: src/Module/Tos.php:89 msgid "Rules" msgstr "" -#: src/Module/Update/Display.php:45 +#: src/Module/Update/Display.php:31 msgid "Parameter uri_id is missing." msgstr "" -#: src/Module/Update/Display.php:55 +#: src/Module/Update/Display.php:41 msgid "The requested item doesn't exist or has been deleted." msgstr "" -#: src/Module/User/Delegation.php:146 +#: src/Module/User/Delegation.php:132 #, php-format msgid "You are now logged in as %s" msgstr "" -#: src/Module/User/Delegation.php:185 +#: src/Module/User/Delegation.php:171 msgid "Switch between your accounts" msgstr "" -#: src/Module/User/Delegation.php:186 +#: src/Module/User/Delegation.php:172 msgid "Manage your accounts" msgstr "" -#: src/Module/User/Delegation.php:187 +#: src/Module/User/Delegation.php:173 msgid "" "Toggle between different identities or community/group pages which share " "your account details or which you have been granted \"manage\" permissions" msgstr "Превключвате между различните идентичности или общността / групата страници, които споделят данните на акаунта ви, или които сте получили \"управление\" разрешения" -#: src/Module/User/Delegation.php:188 +#: src/Module/User/Delegation.php:174 msgid "Select an identity to manage: " msgstr "Изберете идентичност, за да управлява: " -#: src/Module/User/Import.php:103 +#: src/Module/User/Import.php:90 msgid "User imports on closed servers can only be done by an administrator." msgstr "" -#: src/Module/User/Import.php:119 +#: src/Module/User/Import.php:106 msgid "Move account" msgstr "" -#: src/Module/User/Import.php:120 +#: src/Module/User/Import.php:107 msgid "You can import an account from another Friendica server." msgstr "" -#: src/Module/User/Import.php:121 +#: src/Module/User/Import.php:108 msgid "" "You need to export your account from the old server and upload it here. We " "will recreate your old account here with all your contacts. We will try also" " to inform your friends that you moved here." msgstr "" -#: src/Module/User/Import.php:122 +#: src/Module/User/Import.php:109 msgid "" "This feature is experimental. We can't import contacts from the OStatus " "network (GNU Social/Statusnet) or from Diaspora" msgstr "" -#: src/Module/User/Import.php:123 +#: src/Module/User/Import.php:110 msgid "Account file" msgstr "" -#: src/Module/User/Import.php:123 +#: src/Module/User/Import.php:110 msgid "" "To export your account, go to \"Settings->Export your personal data\" and " "select \"Export account\"" msgstr "" -#: src/Module/User/Import.php:217 +#: src/Module/User/Import.php:204 msgid "Error decoding account file" msgstr "" -#: src/Module/User/Import.php:222 +#: src/Module/User/Import.php:209 msgid "Error! No version data in file! This is not a Friendica account file?" msgstr "" -#: src/Module/User/Import.php:230 +#: src/Module/User/Import.php:217 #, php-format msgid "User '%s' already exists on this server!" msgstr "" -#: src/Module/User/Import.php:267 +#: src/Module/User/Import.php:254 msgid "User creation error" msgstr "Грешка при създаване на потребителя" -#: src/Module/User/Import.php:316 +#: src/Module/User/Import.php:303 #, php-format msgid "%d contact not imported" msgid_plural "%d contacts not imported" msgstr[0] "" msgstr[1] "" -#: src/Module/User/Import.php:365 +#: src/Module/User/Import.php:352 msgid "User profile creation error" msgstr "Грешка при създаване профила на потребителя" -#: src/Module/User/Import.php:416 +#: src/Module/User/Import.php:403 msgid "Done. You can now login with your username and password" msgstr "" -#: src/Module/Welcome.php:44 +#: src/Module/Welcome.php:30 msgid "Welcome to Friendica" msgstr "Добре дошли да Friendica" -#: src/Module/Welcome.php:45 +#: src/Module/Welcome.php:31 msgid "New Member Checklist" msgstr "Нова държава Чеклист" -#: src/Module/Welcome.php:46 +#: src/Module/Welcome.php:32 msgid "" "We would like to offer some tips and links to help make your experience " "enjoyable. Click any item to visit the relevant page. A link to this page " @@ -11597,33 +11648,33 @@ msgid "" "registration and then will quietly disappear." msgstr "Бихме искали да предложим някои съвети и връзки, за да направи своя опит приятно. Кликнете върху елемент, за да посетите съответната страница. Линк към тази страница ще бъде видима от началната си страница в продължение на две седмици след първоначалната си регистрация и след това спокойно ще изчезне." -#: src/Module/Welcome.php:48 +#: src/Module/Welcome.php:34 msgid "Getting Started" msgstr "" -#: src/Module/Welcome.php:49 +#: src/Module/Welcome.php:35 msgid "Friendica Walk-Through" msgstr "" -#: src/Module/Welcome.php:50 +#: src/Module/Welcome.php:36 msgid "" "On your Quick Start page - find a brief introduction to your " "profile and network tabs, make some new connections, and find some groups to" " join." msgstr "" -#: src/Module/Welcome.php:53 +#: src/Module/Welcome.php:39 msgid "Go to Your Settings" msgstr "" -#: src/Module/Welcome.php:54 +#: src/Module/Welcome.php:40 msgid "" "On your Settings page - change your initial password. Also make a " "note of your Identity Address. This looks just like an email address - and " "will be useful in making friends on the free social web." msgstr "На настройки - да промени първоначалната си парола. Също така направи бележка на вашата самоличност адрес. Това изглежда точно като имейл адрес - и ще бъде полезно при вземането на приятели за свободното социална мрежа." -#: src/Module/Welcome.php:55 +#: src/Module/Welcome.php:41 msgid "" "Review the other settings, particularly the privacy settings. An unpublished" " directory listing is like having an unlisted phone number. In general, you " @@ -11631,77 +11682,77 @@ msgid "" "potential friends know exactly how to find you." msgstr "Прегледайте други настройки, по-специално на настройките за поверителност. Непубликуван списък директория е нещо като скрит телефонен номер. Като цяло, може би трябва да публикува вашата обява - освен ако не всички от вашите приятели и потенциални приятели, знаят точно как да те намеря." -#: src/Module/Welcome.php:59 +#: src/Module/Welcome.php:45 msgid "" "Upload a profile photo if you have not done so already. Studies have shown " "that people with real photos of themselves are ten times more likely to make" " friends than people who do not." msgstr "Качване на снимката на профила, ако не сте го направили вече. Проучванията показват, че хората с истински снимки на себе си, са десет пъти по-вероятно да станат приятели, отколкото хората, които не." -#: src/Module/Welcome.php:60 +#: src/Module/Welcome.php:46 msgid "Edit Your Profile" msgstr "Редактиране на профила" -#: src/Module/Welcome.php:61 +#: src/Module/Welcome.php:47 msgid "" "Edit your default profile to your liking. Review the " "settings for hiding your list of friends and hiding the profile from unknown" " visitors." msgstr "Редактиране на подразбиране профил да ви хареса. Преглед на настройките за скриване на вашия списък с приятели и скриване на профила от неизвестни посетители." -#: src/Module/Welcome.php:62 +#: src/Module/Welcome.php:48 msgid "Profile Keywords" msgstr "Ключови думи на профила" -#: src/Module/Welcome.php:63 +#: src/Module/Welcome.php:49 msgid "" "Set some public keywords for your profile which describe your interests. We " "may be able to find other people with similar interests and suggest " "friendships." msgstr "" -#: src/Module/Welcome.php:65 +#: src/Module/Welcome.php:51 msgid "Connecting" msgstr "Свързване" -#: src/Module/Welcome.php:67 +#: src/Module/Welcome.php:53 msgid "Importing Emails" msgstr "Внасяне на е-пощи" -#: src/Module/Welcome.php:68 +#: src/Module/Welcome.php:54 msgid "" "Enter your email access information on your Connector Settings page if you " "wish to import and interact with friends or mailing lists from your email " "INBOX" msgstr "Въведете своя имейл достъп до информация на страницата Настройки на Connector, ако желаете да внасят и да взаимодейства с приятели или списъци с адреси от електронната си поща Входящи" -#: src/Module/Welcome.php:69 +#: src/Module/Welcome.php:55 msgid "Go to Your Contacts Page" msgstr "" -#: src/Module/Welcome.php:70 +#: src/Module/Welcome.php:56 msgid "" "Your Contacts page is your gateway to managing friendships and connecting " "with friends on other networks. Typically you enter their address or site " "URL in the Add New Contact dialog." msgstr "Контакти страница е вашата врата към управлението на приятелства и свързване с приятели в други мрежи. Обикновено можете да въведете адрес или адрес на сайта в Добавяне на нов контакт диалоговия." -#: src/Module/Welcome.php:71 +#: src/Module/Welcome.php:57 msgid "Go to Your Site's Directory" msgstr "" -#: src/Module/Welcome.php:72 +#: src/Module/Welcome.php:58 msgid "" "The Directory page lets you find other people in this network or other " "federated sites. Look for a Connect or Follow link on " "their profile page. Provide your own Identity Address if requested." msgstr "Страницата на справочника ви позволява да намерите други хора в тази мрежа или други сайтове Федерални. Потърсете Свържете или Следвайте в профила си страница. Предоставяне на вашия собствен адрес за самоличност, ако това бъде поискано." -#: src/Module/Welcome.php:73 +#: src/Module/Welcome.php:59 msgid "Finding New People" msgstr "Откриване на нови хора" -#: src/Module/Welcome.php:74 +#: src/Module/Welcome.php:60 msgid "" "On the side panel of the Contacts page are several tools to find new " "friends. We can match people by interest, look up people by name or " @@ -11710,412 +11761,408 @@ msgid "" "hours." msgstr "На страничния панел на страницата \"Контакти\" са няколко инструмента, да намерите нови приятели. Ние можем да съчетаем хора по интереси, потърсете хора по име или интерес, и да предостави предложения на базата на мрежови връзки. На чисто нов сайт, приятел предложения ще обикновено започват да се населена в рамките на 24 часа." -#: src/Module/Welcome.php:77 +#: src/Module/Welcome.php:63 msgid "Add Your Contacts To Circle" msgstr "" -#: src/Module/Welcome.php:78 +#: src/Module/Welcome.php:64 msgid "" "Once you have made some friends, organize them into private conversation " "circles from the sidebar of your Contacts page and then you can interact " "with each circle privately on your Network page." msgstr "" -#: src/Module/Welcome.php:80 +#: src/Module/Welcome.php:66 msgid "Why Aren't My Posts Public?" msgstr "Защо публикациите ми не са публични?" -#: src/Module/Welcome.php:81 +#: src/Module/Welcome.php:67 msgid "" "Friendica respects your privacy. By default, your posts will only show up to" " people you've added as friends. For more information, see the help section " "from the link above." msgstr "" -#: src/Module/Welcome.php:83 +#: src/Module/Welcome.php:69 msgid "Getting Help" msgstr "" -#: src/Module/Welcome.php:84 +#: src/Module/Welcome.php:70 msgid "Go to the Help Section" msgstr "" -#: src/Module/Welcome.php:85 +#: src/Module/Welcome.php:71 msgid "" "Our help pages may be consulted for detail on other program" " features and resources." msgstr "Нашата помощ страницата може да бъде консултиран за подробности относно други характеристики, програма и ресурси." -#: src/Navigation/Notifications/Factory/FormattedNavNotification.php:161 +#: src/Navigation/Notifications/Factory/FormattedNavNotification.php:147 msgid "{0} wants to follow you" msgstr "" -#: src/Navigation/Notifications/Factory/FormattedNavNotification.php:163 +#: src/Navigation/Notifications/Factory/FormattedNavNotification.php:149 msgid "{0} has started following you" msgstr "" -#: src/Navigation/Notifications/Factory/FormattedNotify.php:96 +#: src/Navigation/Notifications/Factory/FormattedNotify.php:82 #, php-format msgid "%s liked %s's post" msgstr "%s харесва %s е след" -#: src/Navigation/Notifications/Factory/FormattedNotify.php:108 +#: src/Navigation/Notifications/Factory/FormattedNotify.php:94 #, php-format msgid "%s disliked %s's post" msgstr "%s не харесвал %s е след" -#: src/Navigation/Notifications/Factory/FormattedNotify.php:120 +#: src/Navigation/Notifications/Factory/FormattedNotify.php:106 #, php-format msgid "%s is attending %s's event" msgstr "" -#: src/Navigation/Notifications/Factory/FormattedNotify.php:132 +#: src/Navigation/Notifications/Factory/FormattedNotify.php:118 #, php-format msgid "%s is not attending %s's event" msgstr "" -#: src/Navigation/Notifications/Factory/FormattedNotify.php:144 +#: src/Navigation/Notifications/Factory/FormattedNotify.php:130 #, php-format msgid "%s may attending %s's event" msgstr "" -#: src/Navigation/Notifications/Factory/FormattedNotify.php:174 +#: src/Navigation/Notifications/Factory/FormattedNotify.php:160 #, php-format msgid "%s is now friends with %s" msgstr "%s вече е приятел с %s" -#: src/Navigation/Notifications/Factory/FormattedNotify.php:341 -#: src/Navigation/Notifications/Factory/FormattedNotify.php:379 +#: src/Navigation/Notifications/Factory/FormattedNotify.php:327 +#: src/Navigation/Notifications/Factory/FormattedNotify.php:365 #, php-format msgid "%s commented on %s's post" msgstr "%s коментира %s е след" -#: src/Navigation/Notifications/Factory/FormattedNotify.php:378 +#: src/Navigation/Notifications/Factory/FormattedNotify.php:364 #, php-format msgid "%s created a new post" msgstr "%s създаден нов пост" -#: src/Navigation/Notifications/Factory/Introduction.php:133 +#: src/Navigation/Notifications/Factory/Introduction.php:118 msgid "Friend Suggestion" msgstr "Приятел за предложения" -#: src/Navigation/Notifications/Factory/Introduction.php:159 +#: src/Navigation/Notifications/Factory/Introduction.php:144 msgid "Friend/Connect Request" msgstr "Приятел / заявка за свързване" -#: src/Navigation/Notifications/Factory/Introduction.php:159 -msgid "New Follower" -msgstr "Нов последовател" - -#: src/Navigation/Notifications/Factory/Notification.php:134 +#: src/Navigation/Notifications/Factory/Notification.php:120 #, php-format msgid "%1$s wants to follow you" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:136 +#: src/Navigation/Notifications/Factory/Notification.php:122 #, php-format msgid "%1$s has started following you" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:208 +#: src/Navigation/Notifications/Factory/Notification.php:194 #, php-format msgid "%1$s liked your comment on %2$s" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:211 +#: src/Navigation/Notifications/Factory/Notification.php:197 #, php-format msgid "%1$s liked your post %2$s" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:218 +#: src/Navigation/Notifications/Factory/Notification.php:204 #, php-format msgid "%1$s disliked your comment on %2$s" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:221 +#: src/Navigation/Notifications/Factory/Notification.php:207 #, php-format msgid "%1$s disliked your post %2$s" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:228 +#: src/Navigation/Notifications/Factory/Notification.php:214 #, php-format msgid "%1$s shared your comment %2$s" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:231 -#: src/Navigation/Notifications/Factory/Notification.php:316 +#: src/Navigation/Notifications/Factory/Notification.php:217 +#: src/Navigation/Notifications/Factory/Notification.php:302 #, php-format msgid "%1$s shared your post %2$s" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:235 -#: src/Navigation/Notifications/Factory/Notification.php:305 +#: src/Navigation/Notifications/Factory/Notification.php:221 +#: src/Navigation/Notifications/Factory/Notification.php:291 #, php-format msgid "%1$s shared the post %2$s from %3$s" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:237 -#: src/Navigation/Notifications/Factory/Notification.php:307 +#: src/Navigation/Notifications/Factory/Notification.php:223 +#: src/Navigation/Notifications/Factory/Notification.php:293 #, php-format msgid "%1$s shared a post from %3$s" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:239 -#: src/Navigation/Notifications/Factory/Notification.php:309 +#: src/Navigation/Notifications/Factory/Notification.php:225 +#: src/Navigation/Notifications/Factory/Notification.php:295 #, php-format msgid "%1$s shared the post %2$s" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:241 -#: src/Navigation/Notifications/Factory/Notification.php:311 +#: src/Navigation/Notifications/Factory/Notification.php:227 +#: src/Navigation/Notifications/Factory/Notification.php:297 #, php-format msgid "%1$s shared a post" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:249 +#: src/Navigation/Notifications/Factory/Notification.php:235 #, php-format msgid "%1$s wants to attend your event %2$s" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:256 +#: src/Navigation/Notifications/Factory/Notification.php:242 #, php-format msgid "%1$s does not want to attend your event %2$s" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:263 +#: src/Navigation/Notifications/Factory/Notification.php:249 #, php-format msgid "%1$s maybe wants to attend your event %2$s" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:270 +#: src/Navigation/Notifications/Factory/Notification.php:256 #, php-format msgid "%1$s tagged you on %2$s" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:274 +#: src/Navigation/Notifications/Factory/Notification.php:260 #, php-format msgid "%1$s replied to you on %2$s" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:278 +#: src/Navigation/Notifications/Factory/Notification.php:264 #, php-format msgid "%1$s commented in your thread %2$s" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:282 +#: src/Navigation/Notifications/Factory/Notification.php:268 #, php-format msgid "%1$s commented on your comment %2$s" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:289 +#: src/Navigation/Notifications/Factory/Notification.php:275 #, php-format msgid "%1$s commented in their thread %2$s" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:291 +#: src/Navigation/Notifications/Factory/Notification.php:277 #, php-format msgid "%1$s commented in their thread" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:293 +#: src/Navigation/Notifications/Factory/Notification.php:279 #, php-format msgid "%1$s commented in the thread %2$s from %3$s" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:295 +#: src/Navigation/Notifications/Factory/Notification.php:281 #, php-format msgid "%1$s commented in the thread from %3$s" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:300 +#: src/Navigation/Notifications/Factory/Notification.php:286 #, php-format msgid "%1$s commented on your thread %2$s" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:225 -#: src/Navigation/Notifications/Repository/Notify.php:754 +#: src/Navigation/Notifications/Repository/Notify.php:211 +#: src/Navigation/Notifications/Repository/Notify.php:740 msgid "[Friendica:Notify]" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:293 +#: src/Navigation/Notifications/Repository/Notify.php:279 #, php-format msgid "%s New mail received at %s" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:295 +#: src/Navigation/Notifications/Repository/Notify.php:281 #, php-format msgid "%1$s sent you a new private message at %2$s." msgstr "%1$s в %2$s ви изпрати ново лично съобщение ." -#: src/Navigation/Notifications/Repository/Notify.php:296 +#: src/Navigation/Notifications/Repository/Notify.php:282 msgid "a private message" msgstr "лично съобщение" -#: src/Navigation/Notifications/Repository/Notify.php:296 +#: src/Navigation/Notifications/Repository/Notify.php:282 #, php-format msgid "%1$s sent you %2$s." msgstr "Ви изпрати %2$s %1$s %2$s ." -#: src/Navigation/Notifications/Repository/Notify.php:298 +#: src/Navigation/Notifications/Repository/Notify.php:284 #, php-format msgid "Please visit %s to view and/or reply to your private messages." msgstr "Моля, посетете %s да видите и / или да отговорите на Вашите лични съобщения." -#: src/Navigation/Notifications/Repository/Notify.php:328 +#: src/Navigation/Notifications/Repository/Notify.php:314 #, php-format msgid "%1$s commented on %2$s's %3$s %4$s" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:333 +#: src/Navigation/Notifications/Repository/Notify.php:319 #, php-format msgid "%1$s commented on your %2$s %3$s" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:337 +#: src/Navigation/Notifications/Repository/Notify.php:323 #, php-format msgid "%1$s commented on their %2$s %3$s" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:341 -#: src/Navigation/Notifications/Repository/Notify.php:788 +#: src/Navigation/Notifications/Repository/Notify.php:327 +#: src/Navigation/Notifications/Repository/Notify.php:774 #, php-format msgid "%1$s Comment to conversation #%2$d by %3$s" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:343 +#: src/Navigation/Notifications/Repository/Notify.php:329 #, php-format msgid "%s commented on an item/conversation you have been following." msgstr "%s коментира артикул / разговор, който са били." -#: src/Navigation/Notifications/Repository/Notify.php:347 -#: src/Navigation/Notifications/Repository/Notify.php:362 -#: src/Navigation/Notifications/Repository/Notify.php:814 +#: src/Navigation/Notifications/Repository/Notify.php:333 +#: src/Navigation/Notifications/Repository/Notify.php:348 +#: src/Navigation/Notifications/Repository/Notify.php:800 #, php-format msgid "Please visit %s to view and/or reply to the conversation." msgstr "Моля, посетете %s да видите и / или да отговорите на разговор." -#: src/Navigation/Notifications/Repository/Notify.php:354 +#: src/Navigation/Notifications/Repository/Notify.php:340 #, php-format msgid "%s %s posted to your profile wall" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:356 +#: src/Navigation/Notifications/Repository/Notify.php:342 #, php-format msgid "%1$s posted to your profile wall at %2$s" msgstr "%1$s публикуван вашия профил стена при %2$s" -#: src/Navigation/Notifications/Repository/Notify.php:357 +#: src/Navigation/Notifications/Repository/Notify.php:343 #, php-format msgid "%1$s posted to [url=%2$s]your wall[/url]" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:370 +#: src/Navigation/Notifications/Repository/Notify.php:356 #, php-format msgid "%s Introduction received" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:372 +#: src/Navigation/Notifications/Repository/Notify.php:358 #, php-format msgid "You've received an introduction from '%1$s' at %2$s" msgstr "Получили сте въведения от %1$s в %2$s" -#: src/Navigation/Notifications/Repository/Notify.php:373 +#: src/Navigation/Notifications/Repository/Notify.php:359 #, php-format msgid "You've received [url=%1$s]an introduction[/url] from %2$s." msgstr "Получили сте [URL = %1$s ] въведение [/ URL] от %2$s ." -#: src/Navigation/Notifications/Repository/Notify.php:378 -#: src/Navigation/Notifications/Repository/Notify.php:424 +#: src/Navigation/Notifications/Repository/Notify.php:364 +#: src/Navigation/Notifications/Repository/Notify.php:410 #, php-format msgid "You may visit their profile at %s" msgstr "Можете да посетите техния профил в %s" -#: src/Navigation/Notifications/Repository/Notify.php:380 +#: src/Navigation/Notifications/Repository/Notify.php:366 #, php-format msgid "Please visit %s to approve or reject the introduction." msgstr "Моля, посетете %s да одобри или да отхвърли въвеждането." -#: src/Navigation/Notifications/Repository/Notify.php:387 +#: src/Navigation/Notifications/Repository/Notify.php:373 #, php-format msgid "%s A new person is sharing with you" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:389 -#: src/Navigation/Notifications/Repository/Notify.php:390 +#: src/Navigation/Notifications/Repository/Notify.php:375 +#: src/Navigation/Notifications/Repository/Notify.php:376 #, php-format msgid "%1$s is sharing with you at %2$s" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:397 +#: src/Navigation/Notifications/Repository/Notify.php:383 #, php-format msgid "%s You have a new follower" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:399 -#: src/Navigation/Notifications/Repository/Notify.php:400 +#: src/Navigation/Notifications/Repository/Notify.php:385 +#: src/Navigation/Notifications/Repository/Notify.php:386 #, php-format msgid "You have a new follower at %2$s : %1$s" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:413 +#: src/Navigation/Notifications/Repository/Notify.php:399 #, php-format msgid "%s Friend suggestion received" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:415 +#: src/Navigation/Notifications/Repository/Notify.php:401 #, php-format msgid "You've received a friend suggestion from '%1$s' at %2$s" msgstr "Получили сте приятел предложение от %1$s в %2$s" -#: src/Navigation/Notifications/Repository/Notify.php:416 +#: src/Navigation/Notifications/Repository/Notify.php:402 #, php-format msgid "" "You've received [url=%1$s]a friend suggestion[/url] for %2$s from %3$s." msgstr "Получили сте [URL = %1$s ] предложение приятел [/ URL] %2$s от %3$s ." -#: src/Navigation/Notifications/Repository/Notify.php:422 +#: src/Navigation/Notifications/Repository/Notify.php:408 msgid "Name:" msgstr "Наименование:" -#: src/Navigation/Notifications/Repository/Notify.php:423 +#: src/Navigation/Notifications/Repository/Notify.php:409 msgid "Photo:" msgstr "Снимка:" -#: src/Navigation/Notifications/Repository/Notify.php:426 +#: src/Navigation/Notifications/Repository/Notify.php:412 #, php-format msgid "Please visit %s to approve or reject the suggestion." msgstr "Моля, посетете %s да одобри или отхвърли предложението." -#: src/Navigation/Notifications/Repository/Notify.php:434 -#: src/Navigation/Notifications/Repository/Notify.php:449 +#: src/Navigation/Notifications/Repository/Notify.php:420 +#: src/Navigation/Notifications/Repository/Notify.php:435 #, php-format msgid "%s Connection accepted" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:436 -#: src/Navigation/Notifications/Repository/Notify.php:451 +#: src/Navigation/Notifications/Repository/Notify.php:422 +#: src/Navigation/Notifications/Repository/Notify.php:437 #, php-format msgid "'%1$s' has accepted your connection request at %2$s" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:437 -#: src/Navigation/Notifications/Repository/Notify.php:452 +#: src/Navigation/Notifications/Repository/Notify.php:423 +#: src/Navigation/Notifications/Repository/Notify.php:438 #, php-format msgid "%2$s has accepted your [url=%1$s]connection request[/url]." msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:442 +#: src/Navigation/Notifications/Repository/Notify.php:428 msgid "" "You are now mutual friends and may exchange status updates, photos, and " "email without restriction." msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:444 +#: src/Navigation/Notifications/Repository/Notify.php:430 #, php-format msgid "Please visit %s if you wish to make any changes to this relationship." msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:457 +#: src/Navigation/Notifications/Repository/Notify.php:443 #, php-format msgid "" "'%1$s' has chosen to accept you a fan, which restricts some forms of " @@ -12124,34 +12171,34 @@ msgid "" "automatically." msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:459 +#: src/Navigation/Notifications/Repository/Notify.php:445 #, php-format msgid "" "'%1$s' may choose to extend this into a two-way or more permissive " "relationship in the future." msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:461 +#: src/Navigation/Notifications/Repository/Notify.php:447 #, php-format msgid "Please visit %s if you wish to make any changes to this relationship." msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:471 +#: src/Navigation/Notifications/Repository/Notify.php:457 msgid "registration request" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:473 +#: src/Navigation/Notifications/Repository/Notify.php:459 #, php-format msgid "You've received a registration request from '%1$s' at %2$s" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:474 +#: src/Navigation/Notifications/Repository/Notify.php:460 #, php-format msgid "You've received a [url=%1$s]registration request[/url] from %2$s." msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:479 -#: src/Navigation/Notifications/Repository/Notify.php:500 +#: src/Navigation/Notifications/Repository/Notify.php:465 +#: src/Navigation/Notifications/Repository/Notify.php:486 #, php-format msgid "" "Display Name:\t%s\n" @@ -12159,768 +12206,755 @@ msgid "" "Login Name:\t%s (%s)" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:485 +#: src/Navigation/Notifications/Repository/Notify.php:471 #, php-format msgid "Please visit %s to approve or reject the request." msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:492 +#: src/Navigation/Notifications/Repository/Notify.php:478 msgid "new registration" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:494 +#: src/Navigation/Notifications/Repository/Notify.php:480 #, php-format msgid "You've received a new registration from '%1$s' at %2$s" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:495 +#: src/Navigation/Notifications/Repository/Notify.php:481 #, php-format msgid "You've received a [url=%1$s]new registration[/url] from %2$s." msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:506 +#: src/Navigation/Notifications/Repository/Notify.php:492 #, php-format msgid "Please visit %s to have a look at the new registration." msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:782 +#: src/Navigation/Notifications/Repository/Notify.php:768 #, php-format msgid "%s %s tagged you" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:785 +#: src/Navigation/Notifications/Repository/Notify.php:771 #, php-format msgid "%s %s shared a new post" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:793 +#: src/Navigation/Notifications/Repository/Notify.php:779 #, php-format msgid "%1$s %2$s liked your post #%3$d" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:796 +#: src/Navigation/Notifications/Repository/Notify.php:782 #, php-format msgid "%1$s %2$s liked your comment on #%3$d" msgstr "" -#: src/Object/EMail/ItemCCEMail.php:42 +#: src/Object/EMail/ItemCCEMail.php:28 #, php-format msgid "" "This message was sent to you by %s, a member of the Friendica social " "network." msgstr "Това съобщение е изпратено до вас от %s , член на социалната мрежа на Friendica." -#: src/Object/EMail/ItemCCEMail.php:44 +#: src/Object/EMail/ItemCCEMail.php:30 #, php-format msgid "You may visit them online at %s" msgstr "Можете да ги посетите онлайн на адрес %s" -#: src/Object/EMail/ItemCCEMail.php:45 +#: src/Object/EMail/ItemCCEMail.php:31 msgid "" "Please contact the sender by replying to this post if you do not wish to " "receive these messages." msgstr "Моля, свържете се с подателя, като отговори на този пост, ако не желаете да получавате тези съобщения." -#: src/Object/EMail/ItemCCEMail.php:49 +#: src/Object/EMail/ItemCCEMail.php:35 #, php-format msgid "%s posted an update." msgstr "%s е публикувал актуализация." -#: src/Object/Post.php:138 +#: src/Object/Post.php:124 msgid "Private Message" msgstr "Лично съобщение" -#: src/Object/Post.php:142 +#: src/Object/Post.php:128 msgid "Public Message" msgstr "" -#: src/Object/Post.php:146 +#: src/Object/Post.php:132 msgid "Unlisted Message" msgstr "" -#: src/Object/Post.php:182 +#: src/Object/Post.php:168 msgid "This entry was edited" msgstr "Записът е редактиран" -#: src/Object/Post.php:210 +#: src/Object/Post.php:196 msgid "Connector Message" msgstr "" -#: src/Object/Post.php:226 src/Object/Post.php:228 +#: src/Object/Post.php:225 src/Object/Post.php:227 msgid "Edit" msgstr "Редактиране" -#: src/Object/Post.php:262 +#: src/Object/Post.php:261 msgid "Delete globally" msgstr "" -#: src/Object/Post.php:262 +#: src/Object/Post.php:261 msgid "Remove locally" msgstr "" -#: src/Object/Post.php:269 +#: src/Object/Post.php:268 #, php-format msgid "Block %s" msgstr "" -#: src/Object/Post.php:274 +#: src/Object/Post.php:273 #, php-format msgid "Ignore %s" msgstr "" -#: src/Object/Post.php:279 +#: src/Object/Post.php:278 #, php-format msgid "Collapse %s" msgstr "" -#: src/Object/Post.php:283 +#: src/Object/Post.php:282 msgid "Report post" msgstr "" -#: src/Object/Post.php:294 +#: src/Object/Post.php:293 msgid "Save to folder" msgstr "" -#: src/Object/Post.php:334 +#: src/Object/Post.php:333 msgid "I will attend" msgstr "" -#: src/Object/Post.php:334 +#: src/Object/Post.php:333 msgid "I will not attend" msgstr "" -#: src/Object/Post.php:334 +#: src/Object/Post.php:333 msgid "I might attend" msgstr "" -#: src/Object/Post.php:381 +#: src/Object/Post.php:380 msgid "Ignore thread" msgstr "" -#: src/Object/Post.php:382 +#: src/Object/Post.php:381 msgid "Unignore thread" msgstr "" -#: src/Object/Post.php:383 +#: src/Object/Post.php:382 msgid "Toggle ignore status" msgstr "" -#: src/Object/Post.php:393 +#: src/Object/Post.php:392 msgid "Add star" msgstr "" -#: src/Object/Post.php:394 +#: src/Object/Post.php:393 msgid "Remove star" msgstr "" -#: src/Object/Post.php:395 +#: src/Object/Post.php:394 msgid "Toggle star status" msgstr "" -#: src/Object/Post.php:406 +#: src/Object/Post.php:405 msgid "Pin" msgstr "" -#: src/Object/Post.php:407 +#: src/Object/Post.php:406 msgid "Unpin" msgstr "" -#: src/Object/Post.php:408 +#: src/Object/Post.php:407 msgid "Toggle pin status" msgstr "" -#: src/Object/Post.php:411 +#: src/Object/Post.php:410 msgid "Pinned" msgstr "" -#: src/Object/Post.php:416 +#: src/Object/Post.php:415 msgid "Add tag" msgstr "" -#: src/Object/Post.php:429 +#: src/Object/Post.php:430 msgid "Quote share this" msgstr "" -#: src/Object/Post.php:429 +#: src/Object/Post.php:430 msgid "Quote Share" msgstr "" -#: src/Object/Post.php:432 +#: src/Object/Post.php:433 msgid "Reshare this" msgstr "" -#: src/Object/Post.php:432 +#: src/Object/Post.php:433 msgid "Reshare" msgstr "" -#: src/Object/Post.php:433 +#: src/Object/Post.php:434 msgid "Cancel your Reshare" msgstr "" -#: src/Object/Post.php:433 +#: src/Object/Post.php:434 msgid "Unshare" msgstr "" -#: src/Object/Post.php:485 +#: src/Object/Post.php:478 #, php-format msgid "%s (Received %s)" msgstr "" -#: src/Object/Post.php:491 +#: src/Object/Post.php:484 msgid "Comment this item on your system" msgstr "" -#: src/Object/Post.php:491 +#: src/Object/Post.php:484 msgid "Remote comment" msgstr "" -#: src/Object/Post.php:513 +#: src/Object/Post.php:506 msgid "Share via ..." msgstr "" -#: src/Object/Post.php:513 +#: src/Object/Post.php:506 msgid "Share via external services" msgstr "" -#: src/Object/Post.php:520 +#: src/Object/Post.php:513 msgid "Unknown parent" msgstr "" -#: src/Object/Post.php:524 +#: src/Object/Post.php:517 #, php-format msgid "in reply to %s" msgstr "" -#: src/Object/Post.php:526 +#: src/Object/Post.php:519 msgid "Parent is probably private or not federated." msgstr "" -#: src/Object/Post.php:550 +#: src/Object/Post.php:543 msgid "to" msgstr "за" -#: src/Object/Post.php:551 +#: src/Object/Post.php:544 msgid "via" msgstr "" -#: src/Object/Post.php:552 +#: src/Object/Post.php:545 msgid "Wall-to-Wall" msgstr "От стена до стена" -#: src/Object/Post.php:553 +#: src/Object/Post.php:546 msgid "via Wall-To-Wall:" msgstr "чрез стена до стена:" -#: src/Object/Post.php:604 +#: src/Object/Post.php:599 #, php-format msgid "Reply to %s" msgstr "" -#: src/Object/Post.php:607 +#: src/Object/Post.php:602 msgid "More" msgstr "" -#: src/Object/Post.php:626 +#: src/Object/Post.php:621 msgid "Notifier task is pending" msgstr "" -#: src/Object/Post.php:627 +#: src/Object/Post.php:622 msgid "Delivery to remote servers is pending" msgstr "" -#: src/Object/Post.php:628 +#: src/Object/Post.php:623 msgid "Delivery to remote servers is underway" msgstr "" -#: src/Object/Post.php:629 +#: src/Object/Post.php:624 msgid "Delivery to remote servers is mostly done" msgstr "" -#: src/Object/Post.php:630 +#: src/Object/Post.php:625 msgid "Delivery to remote servers is done" msgstr "" -#: src/Object/Post.php:652 +#: src/Object/Post.php:647 #, php-format msgid "%d comment" msgid_plural "%d comments" msgstr[0] "" msgstr[1] "" -#: src/Object/Post.php:653 +#: src/Object/Post.php:648 msgid "Show more" msgstr "" -#: src/Object/Post.php:654 +#: src/Object/Post.php:649 msgid "Show fewer" msgstr "" -#: src/Object/Post.php:691 +#: src/Object/Post.php:686 #, php-format msgid "Reshared by: %s" msgstr "" -#: src/Object/Post.php:696 +#: src/Object/Post.php:691 #, php-format msgid "Viewed by: %s" msgstr "" -#: src/Object/Post.php:701 +#: src/Object/Post.php:696 #, php-format msgid "Read by: %s" msgstr "" -#: src/Object/Post.php:706 +#: src/Object/Post.php:701 #, php-format msgid "Liked by: %s" msgstr "" -#: src/Object/Post.php:711 +#: src/Object/Post.php:706 #, php-format msgid "Disliked by: %s" msgstr "" -#: src/Object/Post.php:716 +#: src/Object/Post.php:711 #, php-format msgid "Attended by: %s" msgstr "" -#: src/Object/Post.php:721 +#: src/Object/Post.php:716 #, php-format msgid "Maybe attended by: %s" msgstr "" -#: src/Object/Post.php:726 +#: src/Object/Post.php:721 #, php-format msgid "Not attended by: %s" msgstr "" -#: src/Object/Post.php:731 +#: src/Object/Post.php:726 #, php-format msgid "Commented by: %s" msgstr "" -#: src/Object/Post.php:736 +#: src/Object/Post.php:731 #, php-format msgid "Reacted with %s by: %s" msgstr "" -#: src/Object/Post.php:759 +#: src/Object/Post.php:754 #, php-format msgid "Quote shared by: %s" msgstr "" -#: src/Protocol/ActivityPub/Receiver.php:568 +#: src/Protocol/ActivityPub/Receiver.php:557 msgid "Chat" msgstr "" -#: src/Protocol/Delivery.php:547 +#: src/Protocol/Delivery.php:530 msgid "(no subject)" msgstr "" -#: src/Protocol/OStatus.php:1390 -#, php-format -msgid "%s is now following %s." -msgstr "" - -#: src/Protocol/OStatus.php:1391 -msgid "following" -msgstr "следните условия:" - -#: src/Protocol/OStatus.php:1394 -#, php-format -msgid "%s stopped following %s." -msgstr "" - -#: src/Protocol/OStatus.php:1395 -msgid "stopped following" -msgstr "спря след" - -#: src/Render/FriendicaSmartyEngine.php:56 +#: src/Render/FriendicaSmartyEngine.php:42 #, php-format msgid "The folder %s must be writable by webserver." msgstr "" -#: src/Security/Authentication.php:227 +#: src/Security/Authentication.php:200 msgid "Login failed." msgstr "Влез не успя." -#: src/Security/Authentication.php:272 +#: src/Security/Authentication.php:245 msgid "Login failed. Please check your credentials." msgstr "" -#: src/Security/Authentication.php:391 +#: src/Security/Authentication.php:359 #, php-format msgid "Welcome %s" msgstr "" -#: src/Security/Authentication.php:392 +#: src/Security/Authentication.php:360 msgid "Please upload a profile photo." msgstr "Моля, да качите снимка профил." -#: src/Util/EMailer/MailBuilder.php:260 +#: src/Security/OpenWebAuth.php:149 +#, php-format +msgid "OpenWebAuth: %1$s welcomes %2$s" +msgstr "" + +#: src/Util/EMailer/MailBuilder.php:246 msgid "Friendica Notification" msgstr "" -#: src/Util/EMailer/NotifyMailBuilder.php:78 -#: src/Util/EMailer/SystemMailBuilder.php:54 +#: src/Util/EMailer/NotifyMailBuilder.php:64 +#: src/Util/EMailer/SystemMailBuilder.php:40 #, php-format msgid "%1$s, %2$s Administrator" msgstr "" -#: src/Util/EMailer/NotifyMailBuilder.php:80 -#: src/Util/EMailer/SystemMailBuilder.php:56 +#: src/Util/EMailer/NotifyMailBuilder.php:66 +#: src/Util/EMailer/SystemMailBuilder.php:42 #, php-format msgid "%s Administrator" msgstr "" -#: src/Util/EMailer/NotifyMailBuilder.php:193 -#: src/Util/EMailer/NotifyMailBuilder.php:217 -#: src/Util/EMailer/SystemMailBuilder.php:101 -#: src/Util/EMailer/SystemMailBuilder.php:118 +#: src/Util/EMailer/NotifyMailBuilder.php:179 +#: src/Util/EMailer/NotifyMailBuilder.php:203 +#: src/Util/EMailer/SystemMailBuilder.php:87 +#: src/Util/EMailer/SystemMailBuilder.php:104 msgid "thanks" msgstr "" -#: src/Util/Temporal.php:172 +#: src/Util/Temporal.php:158 msgid "YYYY-MM-DD or MM-DD" msgstr "" -#: src/Util/Temporal.php:280 +#: src/Util/Temporal.php:266 #, php-format msgid "Time zone: %s Change in Settings" msgstr "" -#: src/Util/Temporal.php:320 src/Util/Temporal.php:329 +#: src/Util/Temporal.php:306 src/Util/Temporal.php:315 msgid "never" msgstr "" -#: src/Util/Temporal.php:343 +#: src/Util/Temporal.php:329 msgid "less than a second ago" msgstr "" -#: src/Util/Temporal.php:352 +#: src/Util/Temporal.php:338 msgid "year" msgstr "" -#: src/Util/Temporal.php:352 +#: src/Util/Temporal.php:338 msgid "years" msgstr "" -#: src/Util/Temporal.php:353 +#: src/Util/Temporal.php:339 msgid "months" msgstr "" -#: src/Util/Temporal.php:354 +#: src/Util/Temporal.php:340 msgid "weeks" msgstr "" -#: src/Util/Temporal.php:355 +#: src/Util/Temporal.php:341 msgid "days" msgstr "" -#: src/Util/Temporal.php:356 +#: src/Util/Temporal.php:342 msgid "hour" msgstr "" -#: src/Util/Temporal.php:356 +#: src/Util/Temporal.php:342 msgid "hours" msgstr "" -#: src/Util/Temporal.php:357 +#: src/Util/Temporal.php:343 msgid "minute" msgstr "" -#: src/Util/Temporal.php:357 +#: src/Util/Temporal.php:343 msgid "minutes" msgstr "" -#: src/Util/Temporal.php:358 +#: src/Util/Temporal.php:344 msgid "second" msgstr "" -#: src/Util/Temporal.php:358 +#: src/Util/Temporal.php:344 msgid "seconds" msgstr "" -#: src/Util/Temporal.php:367 +#: src/Util/Temporal.php:353 #, php-format msgid "in %1$d %2$s" msgstr "" -#: src/Util/Temporal.php:370 +#: src/Util/Temporal.php:356 #, php-format msgid "%1$d %2$s ago" msgstr "" -#: src/Worker/PushSubscription.php:110 +#: src/Worker/PushSubscription.php:96 msgid "Notification from Friendica" msgstr "" -#: src/Worker/PushSubscription.php:111 +#: src/Worker/PushSubscription.php:97 msgid "Empty Post" msgstr "" -#: view/theme/duepuntozero/config.php:68 +#: view/theme/duepuntozero/config.php:56 msgid "default" msgstr "" -#: view/theme/duepuntozero/config.php:69 +#: view/theme/duepuntozero/config.php:57 msgid "greenzero" msgstr "" -#: view/theme/duepuntozero/config.php:70 +#: view/theme/duepuntozero/config.php:58 msgid "purplezero" msgstr "" -#: view/theme/duepuntozero/config.php:71 +#: view/theme/duepuntozero/config.php:59 msgid "easterbunny" msgstr "" -#: view/theme/duepuntozero/config.php:72 +#: view/theme/duepuntozero/config.php:60 msgid "darkzero" msgstr "" -#: view/theme/duepuntozero/config.php:73 +#: view/theme/duepuntozero/config.php:61 msgid "comix" msgstr "" -#: view/theme/duepuntozero/config.php:74 +#: view/theme/duepuntozero/config.php:62 msgid "slackr" msgstr "" -#: view/theme/duepuntozero/config.php:87 +#: view/theme/duepuntozero/config.php:75 msgid "Variations" msgstr "" -#: view/theme/frio/config.php:146 +#: view/theme/frio/config.php:134 msgid "Note" msgstr "" -#: view/theme/frio/config.php:146 +#: view/theme/frio/config.php:134 msgid "Check image permissions if all users are allowed to see the image" msgstr "" -#: view/theme/frio/config.php:152 +#: view/theme/frio/config.php:140 msgid "Appearance" msgstr "" -#: view/theme/frio/config.php:153 +#: view/theme/frio/config.php:141 msgid "Accent color" msgstr "" -#: view/theme/frio/config.php:153 +#: view/theme/frio/config.php:141 msgid "Blue" msgstr "" -#: view/theme/frio/config.php:153 +#: view/theme/frio/config.php:141 msgid "Red" msgstr "" -#: view/theme/frio/config.php:153 +#: view/theme/frio/config.php:141 msgid "Purple" msgstr "" -#: view/theme/frio/config.php:153 +#: view/theme/frio/config.php:141 msgid "Green" msgstr "" -#: view/theme/frio/config.php:153 +#: view/theme/frio/config.php:141 msgid "Pink" msgstr "" -#: view/theme/frio/config.php:154 +#: view/theme/frio/config.php:142 msgid "Copy or paste schemestring" msgstr "" -#: view/theme/frio/config.php:154 +#: view/theme/frio/config.php:142 msgid "" "You can copy this string to share your theme with others. Pasting here " "applies the schemestring" msgstr "" -#: view/theme/frio/config.php:155 +#: view/theme/frio/config.php:143 msgid "Navigation bar background color" msgstr "" -#: view/theme/frio/config.php:156 +#: view/theme/frio/config.php:144 msgid "Navigation bar icon color " msgstr "" -#: view/theme/frio/config.php:157 +#: view/theme/frio/config.php:145 msgid "Link color" msgstr "" -#: view/theme/frio/config.php:158 +#: view/theme/frio/config.php:146 msgid "Set the background color" msgstr "" -#: view/theme/frio/config.php:159 +#: view/theme/frio/config.php:147 msgid "Content background opacity" msgstr "" -#: view/theme/frio/config.php:160 +#: view/theme/frio/config.php:148 msgid "Set the background image" msgstr "" -#: view/theme/frio/config.php:161 +#: view/theme/frio/config.php:149 msgid "Background image style" msgstr "" -#: view/theme/frio/config.php:164 +#: view/theme/frio/config.php:152 msgid "Always open Compose page" msgstr "" -#: view/theme/frio/config.php:164 +#: view/theme/frio/config.php:152 msgid "" "The New Post button always open the 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:168 +#: view/theme/frio/config.php:156 msgid "Login page background image" msgstr "" -#: view/theme/frio/config.php:172 +#: view/theme/frio/config.php:160 msgid "Login page background color" msgstr "" -#: view/theme/frio/config.php:172 +#: view/theme/frio/config.php:160 msgid "Leave background image and color empty for theme defaults" msgstr "" -#: view/theme/frio/php/Image.php:39 +#: view/theme/frio/php/Image.php:27 msgid "Top Banner" msgstr "" -#: view/theme/frio/php/Image.php:39 +#: view/theme/frio/php/Image.php:27 msgid "" "Resize image to the width of the screen and show background color below on " "long pages." msgstr "" -#: view/theme/frio/php/Image.php:40 +#: view/theme/frio/php/Image.php:28 msgid "Full screen" msgstr "" -#: view/theme/frio/php/Image.php:40 +#: view/theme/frio/php/Image.php:28 msgid "" "Resize image to fill entire screen, clipping either the right or the bottom." msgstr "" -#: view/theme/frio/php/Image.php:41 +#: view/theme/frio/php/Image.php:29 msgid "Single row mosaic" msgstr "" -#: view/theme/frio/php/Image.php:41 +#: view/theme/frio/php/Image.php:29 msgid "" "Resize image to repeat it on a single row, either vertical or horizontal." msgstr "" -#: view/theme/frio/php/Image.php:42 +#: view/theme/frio/php/Image.php:30 msgid "Mosaic" msgstr "" -#: view/theme/frio/php/Image.php:42 +#: view/theme/frio/php/Image.php:30 msgid "Repeat image to fill the screen." msgstr "" -#: view/theme/frio/php/default.php:82 view/theme/frio/php/standard.php:40 +#: view/theme/frio/php/default.php:70 view/theme/frio/php/standard.php:28 msgid "Skip to main content" msgstr "" -#: view/theme/frio/php/default.php:153 view/theme/frio/php/standard.php:75 +#: view/theme/frio/php/default.php:141 view/theme/frio/php/standard.php:63 msgid "Back to top" msgstr "" -#: view/theme/frio/php/scheme.php:105 +#: view/theme/frio/php/scheme.php:93 msgid "Light" msgstr "" -#: view/theme/frio/php/scheme.php:106 +#: view/theme/frio/php/scheme.php:94 msgid "Dark" msgstr "" -#: view/theme/frio/php/scheme.php:107 +#: view/theme/frio/php/scheme.php:95 msgid "Black" msgstr "" -#: view/theme/frio/php/scheme.php:118 +#: view/theme/frio/php/scheme.php:106 msgid "Custom" msgstr "" -#: view/theme/frio/theme.php:214 +#: view/theme/frio/theme.php:202 msgid "Guest" msgstr "" -#: view/theme/frio/theme.php:217 +#: view/theme/frio/theme.php:205 msgid "Visitor" msgstr "" -#: view/theme/quattro/config.php:89 +#: view/theme/quattro/config.php:77 msgid "Alignment" msgstr "" -#: view/theme/quattro/config.php:89 +#: view/theme/quattro/config.php:77 msgid "Left" msgstr "" -#: view/theme/quattro/config.php:89 +#: view/theme/quattro/config.php:77 msgid "Center" msgstr "" -#: view/theme/quattro/config.php:90 +#: view/theme/quattro/config.php:78 msgid "Color scheme" msgstr "" -#: view/theme/quattro/config.php:91 +#: view/theme/quattro/config.php:79 msgid "Posts font size" msgstr "" -#: view/theme/quattro/config.php:92 +#: view/theme/quattro/config.php:80 msgid "Textareas font size" msgstr "" -#: view/theme/vier/config.php:91 +#: view/theme/vier/config.php:79 msgid "Comma separated list of helper groups" msgstr "" -#: view/theme/vier/config.php:131 +#: view/theme/vier/config.php:119 msgid "don't show" msgstr "" -#: view/theme/vier/config.php:131 +#: view/theme/vier/config.php:119 msgid "show" msgstr "" -#: view/theme/vier/config.php:137 +#: view/theme/vier/config.php:125 msgid "Set style" msgstr "" -#: view/theme/vier/config.php:138 +#: view/theme/vier/config.php:126 msgid "Community Pages" msgstr "" -#: view/theme/vier/config.php:139 view/theme/vier/theme.php:148 +#: view/theme/vier/config.php:127 view/theme/vier/theme.php:136 msgid "Community Profiles" msgstr "" -#: view/theme/vier/config.php:140 +#: view/theme/vier/config.php:128 msgid "Help or @NewHere ?" msgstr "" -#: view/theme/vier/config.php:141 view/theme/vier/theme.php:319 +#: view/theme/vier/config.php:129 view/theme/vier/theme.php:307 msgid "Connect Services" msgstr "" -#: view/theme/vier/config.php:142 +#: view/theme/vier/config.php:130 msgid "Find Friends" msgstr "" -#: view/theme/vier/config.php:143 view/theme/vier/theme.php:175 +#: view/theme/vier/config.php:131 view/theme/vier/theme.php:163 msgid "Last users" msgstr "" -#: view/theme/vier/theme.php:234 +#: view/theme/vier/theme.php:222 msgid "Quick Start" msgstr "" diff --git a/view/lang/bg/strings.php b/view/lang/bg/strings.php index 2054f0b166..e40915e0e8 100644 --- a/view/lang/bg/strings.php +++ b/view/lang/bg/strings.php @@ -134,6 +134,9 @@ $a->strings['Personal'] = 'Лично'; $a->strings['Posts that mention or involve you'] = 'Мнения, които споменават или включват'; $a->strings['Starred'] = 'Със звезда'; $a->strings['Favourite Posts'] = 'Любими Мнения'; +$a->strings['Archives'] = 'Архиви'; +$a->strings['Saved Searches'] = 'Запазени търсения'; +$a->strings['Saved Folders'] = 'Записани папки'; $a->strings['show more'] = 'покажи още'; $a->strings['event'] = 'събитието.'; $a->strings['status'] = 'статус'; @@ -216,14 +219,11 @@ $a->strings['Invite Friends'] = 'Покани приятели'; $a->strings['Global Directory'] = 'Глобален справочник'; $a->strings['Local Directory'] = 'Локалната директория'; $a->strings['All Contacts'] = 'Всички Контакти'; -$a->strings['Saved Folders'] = 'Записани папки'; $a->strings['Everything'] = 'Всичко'; $a->strings['Categories'] = 'Категории'; -$a->strings['Archives'] = 'Архиви'; $a->strings['No contacts'] = 'Няма контакти'; $a->strings['View Contacts'] = 'Вижте Контакти'; $a->strings['Remove term'] = 'Премахване мандат'; -$a->strings['Saved Searches'] = 'Запазени търсения'; $a->strings['Location:'] = 'Място:'; $a->strings['Post to Email'] = 'Коментар на e-mail'; $a->strings['CC: email addresses'] = 'CC: имейл адреси'; @@ -284,7 +284,6 @@ $a->strings['An author or name was not found.'] = 'Един автор или и $a->strings['No browser URL could be matched to this address.'] = 'Не браузър URL може да съвпадне с този адрес.'; $a->strings['Unable to match @-style Identity Address with a known protocol or email contact.'] = 'Не мога да съответства @ стил Адрес идентичност с известен протокол или се свържете с имейл.'; $a->strings['Use mailto: in front of address to force email check.'] = 'Използвайте mailto: пред адрес, за да принуди проверка на имейл.'; -$a->strings['The profile address specified belongs to a network which has been disabled on this site.'] = 'Профилът адрес принадлежи към мрежа, която е била забранена в този сайт.'; $a->strings['Limited profile. This person will be unable to receive direct/personal notifications from you.'] = 'Limited профил. Този човек ще бъде в състояние да получат преки / лична уведомления от вас.'; $a->strings['Unable to retrieve contact information.'] = 'Не мога да получа информация за контакт.'; $a->strings['Starts:'] = 'Започва:'; @@ -362,6 +361,8 @@ $a->strings['Failed Updates'] = 'Неуспешно Updates'; $a->strings['This does not include updates prior to 1139, which did not return a status.'] = 'Това не включва актуализации, преди 1139, които не връщат статута.'; $a->strings['Mark success (if update was manually applied)'] = 'Марк успех (ако актуализация е ръчно прилага)'; $a->strings['Attempt to execute this update step automatically'] = 'Опита да изпълни тази стъпка се обновяват автоматично'; +$a->strings['No'] = 'Не'; +$a->strings['Yes'] = 'Yes'; $a->strings['Other'] = 'Друг'; $a->strings['Logs'] = 'Дневници'; $a->strings['Clear'] = 'Безцветен '; @@ -507,7 +508,6 @@ $a->strings['Replies/likes to your public posts may still be vi $a->strings['Status'] = 'Състояние:'; $a->strings['Toggle Blocked status'] = 'Превключване Блокирани статус'; $a->strings['Toggle Ignored status'] = 'Превключване игнорирани статус'; -$a->strings['Yes'] = 'Yes'; $a->strings['No suggestions available. If this is a new site, please try again in 24 hours.'] = 'Няма предложения. Ако това е нов сайт, моля опитайте отново в рамките на 24 часа.'; $a->strings['No results.'] = 'Няма резултати.'; $a->strings['Not available.'] = 'Няма налични'; @@ -581,7 +581,6 @@ $a->strings['Deny'] = 'Отказ'; $a->strings['Show Ignored Requests'] = 'Показване на пренебрегнатите заявки'; $a->strings['Hide Ignored Requests'] = 'Скриване на пренебрегнатите заявки'; $a->strings['Claims to be known to you: '] = 'Искания, да се знае за вас: '; -$a->strings['No'] = 'Не'; $a->strings['Friend'] = 'Приятел'; $a->strings['No introductions.'] = 'Няма въвеждане.'; $a->strings['Network Notifications'] = 'Мрежа Известия'; @@ -591,8 +590,6 @@ $a->strings['Home Notifications'] = 'Начало Известия'; $a->strings['{0} requested registration'] = '{0} исканата регистрация'; $a->strings['Authorize application connection'] = 'Разрешава връзка с прилагането'; $a->strings['Do you want to authorize this application to access your posts and contacts, and/or create new posts for you?'] = 'Искате ли да се разреши това приложение за достъп до вашите мнения и контакти, и / или създаване на нови длъжности за вас?'; -$a->strings['Remote privacy information not available.'] = 'Дистанционно неприкосновеността на личния живот информация не е достъпен.'; -$a->strings['Visible to:'] = 'Вижда се от:'; $a->strings['Edit post'] = 'Редактиране на мнение'; $a->strings['web link'] = 'Уеб-линк'; $a->strings['Insert video link'] = 'Поставете линка на видео'; @@ -602,6 +599,8 @@ $a->strings['audio link'] = 'аудио връзка'; $a->strings['Remove Item Tag'] = 'Извадете Tag т.'; $a->strings['Select a tag to remove: '] = 'Изберете етикет, за да премахнете: '; $a->strings['Remove'] = 'Премахване'; +$a->strings['Remote privacy information not available.'] = 'Дистанционно неприкосновеността на личния живот информация не е достъпен.'; +$a->strings['Visible to:'] = 'Вижда се от:'; $a->strings['No contacts.'] = 'Няма контакти.'; $a->strings['Image file is empty.'] = 'Image файл е празен.'; $a->strings['View Album'] = 'Вижте албуми'; @@ -753,7 +752,6 @@ $a->strings['%s commented on %s\'s post'] = '%s коментира %s е сле $a->strings['%s created a new post'] = '%s създаден нов пост'; $a->strings['Friend Suggestion'] = 'Приятел за предложения'; $a->strings['Friend/Connect Request'] = 'Приятел / заявка за свързване'; -$a->strings['New Follower'] = 'Нов последовател'; $a->strings['%1$s sent you a new private message at %2$s.'] = '%1$s в %2$s ви изпрати ново лично съобщение .'; $a->strings['a private message'] = 'лично съобщение'; $a->strings['%1$s sent you %2$s.'] = 'Ви изпрати %2$s %1$s %2$s .'; @@ -780,7 +778,5 @@ $a->strings['Edit'] = 'Редактиране'; $a->strings['to'] = 'за'; $a->strings['Wall-to-Wall'] = 'От стена до стена'; $a->strings['via Wall-To-Wall:'] = 'чрез стена до стена:'; -$a->strings['following'] = 'следните условия:'; -$a->strings['stopped following'] = 'спря след'; $a->strings['Login failed.'] = 'Влез не успя.'; $a->strings['Please upload a profile photo.'] = 'Моля, да качите снимка профил.'; diff --git a/view/lang/ca/messages.po b/view/lang/ca/messages.po index 5f2d82b69b..21cd1694ba 100644 --- a/view/lang/ca/messages.po +++ b/view/lang/ca/messages.po @@ -1,8 +1,7 @@ # FRIENDICA Distributed Social Network -# SPDX-FileCopyrightText: Copyright (C) 2010-2024, the Friendica project -# -# SPDX-License-Identifier: AGPL-3.0-or-later -# +# Copyright (C) 2010-2024, the Friendica project +# This file is distributed under the same license as the Friendica package. +# # Translators: # Joan Bar , 2019 # Rafael Garau, 2012 @@ -12,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: friendica\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-03-01 08:51-0500\n" +"POT-Creation-Date: 2024-10-07 20:46+0000\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" @@ -22,77 +21,77 @@ msgstr "" "Language: ca\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: mod/item.php:100 mod/item.php:103 mod/item.php:170 mod/item.php:173 +#: mod/item.php:89 mod/item.php:92 mod/item.php:159 mod/item.php:162 msgid "Unable to locate original post." msgstr "No es pot localitzar post original." -#: mod/item.php:138 +#: mod/item.php:127 msgid "Post updated." msgstr "" -#: mod/item.php:203 mod/item.php:207 +#: mod/item.php:192 mod/item.php:196 msgid "Item wasn't stored." msgstr "" -#: mod/item.php:217 +#: mod/item.php:206 msgid "Item couldn't be fetched." msgstr "" -#: mod/item.php:259 mod/item.php:263 +#: mod/item.php:250 mod/item.php:254 msgid "Empty post discarded." msgstr "Buidat després de rebutjar." -#: 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 +#: mod/item.php:425 src/Module/Admin/Themes/Details.php:31 +#: src/Module/Admin/Themes/Index.php:51 src/Module/Debug/ItemBody.php:28 +#: src/Module/Debug/ItemBody.php:43 src/Module/Item/Feed.php:66 msgid "Item not found." msgstr "Article no trobat." -#: 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 -#: src/Module/Calendar/Export.php:82 src/Module/Calendar/Show.php:82 -#: src/Module/Circle.php:41 src/Module/Circle.php:84 -#: src/Module/Contact/Advanced.php:60 src/Module/Contact/Follow.php:87 -#: src/Module/Contact/Follow.php:160 src/Module/Contact/MatchInterests.php:86 -#: src/Module/Contact/Suggestions.php:54 src/Module/Contact/Unfollow.php:66 -#: src/Module/Contact/Unfollow.php:80 src/Module/Contact/Unfollow.php:112 -#: src/Module/FollowConfirm.php:38 src/Module/FriendSuggest.php:57 -#: src/Module/Invite.php:42 src/Module/Invite.php:131 -#: src/Module/Notifications/Notification.php:76 -#: src/Module/Notifications/Notification.php:107 -#: src/Module/OStatus/Repair.php:60 src/Module/OStatus/Subscribe.php:66 -#: src/Module/Post/Edit.php:76 src/Module/Profile/Common.php:75 -#: src/Module/Profile/Contacts.php:78 src/Module/Profile/Photos.php:92 -#: src/Module/Profile/Schedule.php:39 src/Module/Profile/Schedule.php:56 -#: src/Module/Register.php:77 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: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:199 -#: src/Module/Settings/Profile/Photo/Crop.php:165 -#: src/Module/Settings/Profile/Photo/Index.php:110 -#: src/Module/Settings/RemoveMe.php:119 src/Module/Settings/UserExport.php:78 -#: src/Module/Settings/UserExport.php:114 -#: src/Module/Settings/UserExport.php:213 -#: src/Module/Settings/UserExport.php:233 -#: src/Module/Settings/UserExport.php:298 src/Module/User/Delegation.php:154 -#: src/Module/User/Import.php:84 src/Module/User/Import.php:91 +#: mod/item.php:449 mod/message.php:54 mod/message.php:100 mod/notes.php:33 +#: mod/photos.php:135 mod/photos.php:627 src/Model/Event.php:506 +#: src/Module/Attach.php:41 src/Module/BaseApi.php:89 +#: src/Module/BaseNotifications.php:84 src/Module/BaseSettings.php:36 +#: src/Module/Calendar/Event/API.php:74 src/Module/Calendar/Event/Form.php:70 +#: src/Module/Calendar/Export.php:68 src/Module/Calendar/Show.php:68 +#: src/Module/Circle.php:27 src/Module/Circle.php:70 +#: src/Module/Contact/Advanced.php:46 src/Module/Contact/Follow.php:73 +#: src/Module/Contact/Follow.php:141 src/Module/Contact/MatchInterests.php:73 +#: src/Module/Contact/Suggestions.php:40 src/Module/Contact/Unfollow.php:52 +#: src/Module/Contact/Unfollow.php:66 src/Module/Contact/Unfollow.php:98 +#: src/Module/FollowConfirm.php:24 src/Module/FriendSuggest.php:43 +#: src/Module/Invite.php:28 src/Module/Invite.php:117 +#: src/Module/Notifications/Notification.php:62 +#: src/Module/Notifications/Notification.php:93 +#: src/Module/OStatus/Subscribe.php:54 src/Module/Post/Edit.php:62 +#: src/Module/Profile/Common.php:61 src/Module/Profile/Contacts.php:64 +#: src/Module/Profile/Photos.php:78 src/Module/Profile/Schedule.php:25 +#: src/Module/Profile/Schedule.php:42 src/Module/Register.php:70 +#: src/Module/Register.php:83 src/Module/Register.php:199 +#: src/Module/Register.php:238 src/Module/Search/Directory.php:23 +#: src/Module/Settings/Account.php:36 src/Module/Settings/Account.php:377 +#: src/Module/Settings/Channels.php:52 src/Module/Settings/Channels.php:127 +#: src/Module/Settings/Delegation.php:76 src/Module/Settings/Display.php:76 +#: src/Module/Settings/Display.php:183 +#: src/Module/Settings/Profile/Photo/Crop.php:151 +#: src/Module/Settings/Profile/Photo/Index.php:96 +#: src/Module/Settings/RemoveMe.php:105 src/Module/Settings/UserExport.php:64 +#: src/Module/Settings/UserExport.php:100 +#: src/Module/Settings/UserExport.php:199 +#: src/Module/Settings/UserExport.php:219 +#: src/Module/Settings/UserExport.php:284 src/Module/User/Delegation.php:140 +#: src/Module/User/Import.php:71 src/Module/User/Import.php:78 msgid "Permission denied." msgstr "Permís denegat." -#: mod/lostpass.php:40 +#: mod/lostpass.php:28 msgid "No valid account found." msgstr "Compte no vàlid trobat." -#: mod/lostpass.php:52 +#: mod/lostpass.php:40 msgid "Password reset request issued. Check your email." msgstr "Sol·licitut de restabliment de contrasenya enviat. Comprovi el seu correu." -#: mod/lostpass.php:58 +#: mod/lostpass.php:46 #, php-format msgid "" "\n" @@ -108,7 +107,7 @@ msgid "" "\t\tissued this request." msgstr "\n\t\tBenvolgut %1$s,\n\t\t\tRecentment es va rebre una sol·licitud a \"%2$s\" per restablir el vostre compte\n\t\tcontrasenya Per confirmar aquesta sol·licitud, seleccioneu l’enllaç de verificació\n\t\ta continuació o enganxeu-lo a la barra d'adreces del navegador web\n\t\tSi NO heu sol·licitat aquest canvi, NO seguiu l'enllaç\n\t\tsempre que, ignorant i / o suprimint aquest correu electrònic, la sol·licitud caducarà en breu.\n\n\t\tLa vostra contrasenya no es canviarà tret que puguem verificar-la\nva emetre aquesta sol·licitud." -#: mod/lostpass.php:69 +#: mod/lostpass.php:57 #, php-format msgid "" "\n" @@ -125,70 +124,70 @@ msgid "" "\t\tLogin Name:\t%3$s" msgstr "\n\t\tSeguiu aquest enllaç aviat per verificar la vostra identitat:\n\n\t\t%1$s\n\n\t\tA continuació, rebrà un missatge de seguiment que conté la nova contrasenya.\n\t\tPodeu canviar aquesta contrasenya des de la pàgina de configuració del compte després d’iniciar la sessió.\n\t\tEls detalls d’inici de sessió són els següents:\n\n\t\tUbicació del lloc:\t%2$s\n\t\tNom d'usuari:\t%3$s" -#: mod/lostpass.php:84 +#: mod/lostpass.php:72 #, php-format msgid "Password reset requested at %s" msgstr "Contrasenya restablerta enviada a %s" -#: mod/lostpass.php:100 +#: mod/lostpass.php:88 msgid "" "Request could not be verified. (You may have previously submitted it.) " "Password reset failed." msgstr "La sol·licitut no pot ser verificada. (Hauries de presentar-la abans). Restabliment de contrasenya fracassat." -#: mod/lostpass.php:113 +#: mod/lostpass.php:101 msgid "Request has expired, please make a new one." msgstr "La sol·licitud ha caducat, fes-ne una de nova." -#: mod/lostpass.php:128 +#: mod/lostpass.php:116 msgid "Forgot your Password?" msgstr "Has Oblidat la Contrasenya?" -#: mod/lostpass.php:129 +#: mod/lostpass.php:117 msgid "" "Enter your email address and submit to have your password reset. Then check " "your email for further instructions." msgstr "Introdueixi la seva adreça de correu i enivii-la per restablir la seva contrasenya. Llavors comprovi el seu correu per a les següents instruccións. " -#: mod/lostpass.php:130 src/Module/Security/Login.php:160 +#: mod/lostpass.php:118 src/Module/Security/Login.php:150 msgid "Nickname or Email: " msgstr "Àlies o Correu:" -#: mod/lostpass.php:131 +#: mod/lostpass.php:119 msgid "Reset" msgstr "Restablir" -#: mod/lostpass.php:146 src/Module/Security/Login.php:172 +#: mod/lostpass.php:134 src/Module/Security/Login.php:162 msgid "Password Reset" msgstr "Restabliment de Contrasenya" -#: mod/lostpass.php:147 +#: mod/lostpass.php:135 msgid "Your password has been reset as requested." msgstr "La teva contrasenya fou restablerta com vas demanar." -#: mod/lostpass.php:148 +#: mod/lostpass.php:136 msgid "Your new password is" msgstr "La teva nova contrasenya es" -#: mod/lostpass.php:149 +#: mod/lostpass.php:137 msgid "Save or copy your new password - and then" msgstr "Guarda o copia la nova contrasenya - i llavors" -#: mod/lostpass.php:150 +#: mod/lostpass.php:138 msgid "click here to login" msgstr "clica aquí per identificarte" -#: mod/lostpass.php:151 +#: mod/lostpass.php:139 msgid "" "Your password may be changed from the Settings page after " "successful login." msgstr "Pots camviar la contrasenya des de la pàgina de Configuración desprès d'accedir amb èxit." -#: mod/lostpass.php:155 +#: mod/lostpass.php:143 msgid "Your password has been reset." msgstr "" -#: mod/lostpass.php:158 +#: mod/lostpass.php:146 #, php-format msgid "" "\n" @@ -199,7 +198,7 @@ msgid "" "\t\t" msgstr "\n\t\t\tBenvolgut %1$s,\n\t\t\t\tLa vostra contrasenya s'ha canviat segons la sol·licitud. Conserveu-ho\n\t\t\tinformació sobre els vostres registres (o canviar-ne la contrasenya immediatament a\n\t\t\tcosa que recordareu).\n\t\t" -#: mod/lostpass.php:164 +#: mod/lostpass.php:152 #, php-format msgid "" "\n" @@ -213,2361 +212,2415 @@ msgid "" "\t\t" msgstr "\n\t\t\tLes dades de connexió són les següents:\n\n\t\t\tUbicació del lloc:\t%1$s\n\t\t\tNom d'usuari:\t%2$s\n\t\t\tContrasenya:\t%3$s\n\n\t\t\todeu canviar aquesta contrasenya des de la pàgina de configuració del compte després d’iniciar la sessió..\n\t\t" -#: mod/lostpass.php:176 +#: mod/lostpass.php:164 #, php-format msgid "Your password has been changed at %s" msgstr "La teva contrasenya ha estat canviada a %s" -#: mod/message.php:46 mod/message.php:128 src/Content/Nav.php:321 +#: mod/message.php:33 mod/message.php:115 src/Content/Nav.php:307 msgid "New Message" msgstr "Nou Missatge" -#: mod/message.php:82 +#: mod/message.php:69 msgid "No recipient selected." msgstr "No s'ha seleccionat destinatari." -#: mod/message.php:87 +#: mod/message.php:74 msgid "Unable to locate contact information." msgstr "No es pot trobar informació de contacte." -#: mod/message.php:91 +#: mod/message.php:78 msgid "Message could not be sent." msgstr "El Missatge no ha estat enviat." -#: mod/message.php:95 +#: mod/message.php:82 msgid "Message collection failure." msgstr "Ha fallat la recollida del missatge." -#: mod/message.php:122 src/Module/Notifications/Introductions.php:135 -#: src/Module/Notifications/Introductions.php:170 -#: src/Module/Notifications/Notification.php:85 +#: mod/message.php:109 src/Module/Notifications/Introductions.php:127 +#: src/Module/Notifications/Introductions.php:162 +#: src/Module/Notifications/Notification.php:71 msgid "Discard" msgstr "Descartar" -#: mod/message.php:135 src/Content/Nav.php:318 view/theme/frio/theme.php:244 +#: mod/message.php:122 src/Content/Nav.php:304 view/theme/frio/theme.php:232 msgid "Messages" msgstr "Missatges" -#: mod/message.php:148 +#: mod/message.php:135 msgid "Conversation not found." msgstr "No s'ha trobat la conversa." -#: mod/message.php:153 +#: mod/message.php:140 msgid "Message was not deleted." msgstr "" -#: mod/message.php:168 +#: mod/message.php:155 msgid "Conversation was not removed." msgstr "" -#: mod/message.php:181 mod/message.php:286 +#: mod/message.php:168 mod/message.php:273 msgid "Please enter a link URL:" msgstr "Sius plau, entri l'enllaç URL:" -#: mod/message.php:190 +#: mod/message.php:177 msgid "Send Private Message" msgstr "Enviant Missatge Privat" -#: mod/message.php:191 mod/message.php:346 +#: mod/message.php:178 mod/message.php:333 +#: src/Module/Privacy/PermissionTooltip.php:118 msgid "To:" msgstr "Per a:" -#: mod/message.php:192 mod/message.php:347 +#: mod/message.php:179 mod/message.php:334 msgid "Subject:" msgstr "Assumpte::" -#: mod/message.php:196 mod/message.php:350 src/Module/Invite.php:171 +#: mod/message.php:183 mod/message.php:337 src/Module/Invite.php:157 msgid "Your message:" msgstr "El teu missatge:" -#: mod/message.php:199 mod/message.php:354 src/Content/Conversation.php:370 -#: src/Module/Post/Edit.php:131 +#: mod/message.php:186 mod/message.php:341 src/Content/Conversation.php:355 +#: src/Module/Post/Edit.php:117 msgid "Upload photo" msgstr "Carregar foto" -#: mod/message.php:200 mod/message.php:355 src/Module/Post/Edit.php:135 +#: mod/message.php:187 mod/message.php:342 src/Module/Post/Edit.php:121 msgid "Insert web link" msgstr "Inserir enllaç web" -#: 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 +#: mod/message.php:188 mod/message.php:344 mod/photos.php:1255 +#: src/Content/Conversation.php:386 src/Content/Conversation.php:1562 +#: src/Module/Item/Compose.php:199 src/Module/Post/Edit.php:131 +#: src/Object/Post.php:604 msgid "Please wait" msgstr "Si us plau esperi" -#: 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: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 -#: src/Module/Invite.php:178 src/Module/Item/Compose.php:189 -#: src/Module/Moderation/Item/Source.php:79 -#: src/Module/Moderation/Report/Create.php:168 -#: src/Module/Moderation/Report/Create.php:183 -#: src/Module/Moderation/Report/Create.php:211 -#: src/Module/Moderation/Report/Create.php:263 -#: src/Module/Profile/Profile.php: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:150 view/theme/quattro/config.php:87 -#: view/theme/vier/config.php:135 +#: mod/message.php:189 mod/message.php:343 mod/photos.php:658 +#: mod/photos.php:778 mod/photos.php:1055 mod/photos.php:1096 +#: mod/photos.php:1152 mod/photos.php:1232 +#: src/Module/Calendar/Event/Form.php:236 src/Module/Contact/Advanced.php:118 +#: src/Module/Contact/Profile.php:370 +#: src/Module/Debug/ActivityPubConversion.php:132 +#: src/Module/Debug/Babel.php:307 src/Module/Debug/Localtime.php:50 +#: src/Module/Debug/Probe.php:40 src/Module/Debug/WebFinger.php:37 +#: src/Module/FriendSuggest.php:131 src/Module/Install.php:220 +#: src/Module/Install.php:260 src/Module/Install.php:295 +#: src/Module/Invite.php:164 src/Module/Item/Compose.php:182 +#: src/Module/Moderation/Item/Source.php:71 +#: src/Module/Moderation/Report/Create.php:154 +#: src/Module/Moderation/Report/Create.php:169 +#: src/Module/Moderation/Report/Create.php:197 +#: src/Module/Moderation/Report/Create.php:249 +#: src/Module/Profile/Profile.php:262 +#: src/Module/Settings/Profile/Index.php:248 +#: src/Module/Settings/Server/Action.php:65 src/Module/User/Delegation.php:175 +#: src/Object/Post.php:1145 view/theme/duepuntozero/config.php:73 +#: view/theme/frio/config.php:138 view/theme/quattro/config.php:75 +#: view/theme/vier/config.php:123 msgid "Submit" msgstr "Enviar" -#: mod/message.php:223 +#: mod/message.php:210 msgid "No messages." msgstr "Sense missatges." -#: mod/message.php:279 +#: mod/message.php:266 msgid "Message not available." msgstr "Missatge no disponible." -#: mod/message.php:323 +#: mod/message.php:310 msgid "Delete message" msgstr "Esborra missatge" -#: mod/message.php:325 mod/message.php:456 +#: mod/message.php:312 mod/message.php:441 msgid "D, d M Y - g:i A" msgstr "D, d M Y - g:i A" -#: mod/message.php:340 mod/message.php:453 +#: mod/message.php:327 mod/message.php:438 msgid "Delete conversation" msgstr "Esborrar conversació" -#: mod/message.php:342 +#: mod/message.php:329 msgid "" "No secure communications available. You may be able to " "respond from the sender's profile page." msgstr "Comunicacions degures no disponibles. Tú pots respondre des de la pàgina de perfil del remitent." -#: mod/message.php:345 +#: mod/message.php:332 msgid "Send Reply" msgstr "Enviar Resposta" -#: mod/message.php:427 +#: mod/message.php:412 #, php-format msgid "Unknown sender - %s" msgstr "remitent desconegut - %s" -#: mod/message.php:429 +#: mod/message.php:414 #, php-format msgid "You and %s" msgstr "Tu i %s" -#: mod/message.php:431 +#: mod/message.php:416 #, php-format msgid "%s and You" msgstr "%s i Tu" -#: mod/message.php:459 +#: mod/message.php:444 #, php-format msgid "%d message" msgid_plural "%d messages" msgstr[0] "%d missatge" msgstr[1] "%d missatges" -#: mod/notes.php:52 src/Module/BaseProfile.php:108 +#: mod/notes.php:40 src/Module/BaseProfile.php:94 msgid "Personal Notes" msgstr "Notes Personals" -#: mod/notes.php:56 +#: mod/notes.php:44 msgid "Personal notes are visible only by yourself." msgstr "" -#: mod/notes.php:57 src/Content/Text/HTML.php:860 -#: src/Module/Admin/Storage.php:142 src/Module/Filer/SaveTag.php:74 -#: src/Module/Post/Edit.php:129 src/Module/Settings/Channels.php:223 +#: mod/notes.php:45 src/Content/Text/HTML.php:847 +#: src/Module/Admin/Storage.php:128 src/Module/Filer/SaveTag.php:60 +#: src/Module/Post/Edit.php:115 src/Module/Settings/Channels.php:215 msgid "Save" msgstr "Guardar" -#: 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 -#: src/Module/Profile/Common.php:62 src/Module/Profile/Common.php:71 -#: src/Module/Profile/Contacts.php:64 src/Module/Profile/Contacts.php:72 -#: src/Module/Profile/Conversations.php:91 src/Module/Profile/Media.php:56 -#: src/Module/Profile/Photos.php:83 src/Module/Profile/RemoteFollow.php:71 -#: src/Module/Register.php:267 +#: mod/photos.php:54 mod/photos.php:117 mod/photos.php:537 +#: src/Model/Event.php:498 src/Model/Profile.php:213 +#: src/Module/Calendar/Export.php:60 src/Module/Calendar/Show.php:60 +#: src/Module/Feed.php:52 src/Module/HCard.php:37 +#: src/Module/Profile/Common.php:48 src/Module/Profile/Common.php:57 +#: src/Module/Profile/Contacts.php:50 src/Module/Profile/Contacts.php:58 +#: src/Module/Profile/Conversations.php:77 src/Module/Profile/Media.php:42 +#: src/Module/Profile/Photos.php:69 src/Module/Profile/RemoteFollow.php:57 +#: src/Module/Register.php:260 msgid "User not found." msgstr "" -#: mod/photos.php:106 src/Module/BaseProfile.php:68 -#: src/Module/Profile/Photos.php:375 +#: mod/photos.php:91 src/Module/BaseProfile.php:54 +#: src/Module/Profile/Photos.php:361 msgid "Photo Albums" msgstr "Àlbum de Fotos" -#: mod/photos.php:107 src/Module/Profile/Photos.php:376 -#: src/Module/Profile/Photos.php:396 +#: mod/photos.php:92 src/Module/Profile/Photos.php:362 +#: src/Module/Profile/Photos.php:382 msgid "Recent Photos" msgstr "Fotos Recents" -#: mod/photos.php:109 mod/photos.php:868 src/Module/Profile/Photos.php:378 -#: src/Module/Profile/Photos.php:398 +#: mod/photos.php:94 mod/photos.php:826 src/Module/Profile/Photos.php:364 +#: src/Module/Profile/Photos.php:384 msgid "Upload New Photos" msgstr "Actualitzar Noves Fotos" -#: mod/photos.php:121 src/Module/BaseSettings.php:72 -#: src/Module/Profile/Photos.php:359 +#: mod/photos.php:106 src/Module/BaseSettings.php:58 +#: src/Module/Profile/Photos.php:345 msgid "everybody" msgstr "tothom" -#: mod/photos.php:157 +#: mod/photos.php:142 msgid "Contact information unavailable" msgstr "Informació del Contacte no disponible" -#: mod/photos.php:186 +#: mod/photos.php:171 msgid "Album not found." msgstr "Àlbum no trobat." -#: mod/photos.php:242 +#: mod/photos.php:227 msgid "Album successfully deleted" msgstr "" -#: mod/photos.php:244 +#: mod/photos.php:229 msgid "Album was empty." msgstr "" -#: mod/photos.php:275 +#: mod/photos.php:260 msgid "Failed to delete the photo." msgstr "" -#: mod/photos.php:543 +#: mod/photos.php:504 msgid "a photo" msgstr "una foto" -#: mod/photos.php:543 +#: mod/photos.php:504 #, 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:580 src/Module/Conversation/Community.php:160 -#: src/Module/Directory.php:48 src/Module/Profile/Photos.php:293 -#: src/Module/Search/Index.php:65 +#: mod/photos.php:541 src/Module/Conversation/Community.php:148 +#: src/Module/Directory.php:35 src/Module/Profile/Photos.php:279 +#: src/Module/Search/Index.php:51 msgid "Public access denied." msgstr "Accés públic denegat." -#: mod/photos.php:585 +#: mod/photos.php:546 msgid "No photos selected" msgstr "No s'han seleccionat fotos" -#: mod/photos.php:717 +#: mod/photos.php:674 #, php-format msgid "The maximum accepted image size is %s" msgstr "" -#: mod/photos.php:724 +#: mod/photos.php:681 msgid "Upload Photos" msgstr "Carregar Fotos" -#: mod/photos.php:728 mod/photos.php:816 +#: mod/photos.php:685 mod/photos.php:774 msgid "New album name: " msgstr "Nou nom d'àlbum:" -#: mod/photos.php:729 +#: mod/photos.php:686 msgid "or select existing album:" msgstr "" -#: mod/photos.php:730 +#: mod/photos.php:687 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:732 mod/photos.php:1093 src/Content/Conversation.php:403 -#: src/Module/Calendar/Event/Form.php:253 src/Module/Post/Edit.php:183 +#: mod/photos.php:690 mod/photos.php:1051 src/Content/Conversation.php:388 +#: src/Module/Calendar/Event/Form.php:239 src/Module/Post/Edit.php:169 msgid "Permissions" msgstr "Permisos" -#: mod/photos.php:797 +#: mod/photos.php:755 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:798 mod/photos.php:821 +#: mod/photos.php:756 mod/photos.php:779 msgid "Delete Album" msgstr "Eliminar Àlbum" -#: 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 -#: src/Module/Media/Photo/Browser.php:88 src/Module/Post/Edit.php:167 -#: src/Module/Post/Tag/Remove.php:109 src/Module/Profile/RemoteFollow.php:134 -#: src/Module/Security/TwoFactor/SignOut.php:125 +#: mod/photos.php:757 mod/photos.php:857 src/Content/Conversation.php:403 +#: src/Module/Contact/Follow.php:154 src/Module/Contact/Revoke.php:92 +#: src/Module/Contact/Unfollow.php:112 +#: src/Module/Media/Attachment/Browser.php:63 +#: src/Module/Media/Photo/Browser.php:74 src/Module/Post/Edit.php:153 +#: src/Module/Post/Tag/Remove.php:95 src/Module/Profile/RemoteFollow.php:120 +#: src/Module/Security/TwoFactor/SignOut.php:111 msgid "Cancel" msgstr "Cancel·lar" -#: mod/photos.php:825 +#: mod/photos.php:783 msgid "Edit Album" msgstr "Editar Àlbum" -#: mod/photos.php:826 +#: mod/photos.php:784 msgid "Drop Album" msgstr "" -#: mod/photos.php:830 +#: mod/photos.php:788 msgid "Show Newest First" msgstr "Mostrar el més Nou Primer" -#: mod/photos.php:832 +#: mod/photos.php:790 msgid "Show Oldest First" msgstr "Mostrar el més Antic Primer" -#: mod/photos.php:853 src/Module/Profile/Photos.php:346 +#: mod/photos.php:811 src/Module/Profile/Photos.php:332 msgid "View Photo" msgstr "Veure Foto" -#: mod/photos.php:885 +#: mod/photos.php:843 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:887 +#: mod/photos.php:845 msgid "Photo not available" msgstr "Foto no disponible" -#: mod/photos.php:897 +#: mod/photos.php:855 msgid "Do you really want to delete this photo?" msgstr "Realment vols esborrar aquesta foto?" -#: mod/photos.php:898 mod/photos.php:1098 +#: mod/photos.php:856 mod/photos.php:1056 msgid "Delete Photo" msgstr "Eliminar Foto" -#: mod/photos.php:996 +#: mod/photos.php:954 msgid "View photo" msgstr "Veure foto" -#: mod/photos.php:998 +#: mod/photos.php:956 msgid "Edit photo" msgstr "Editar foto" -#: mod/photos.php:999 +#: mod/photos.php:957 msgid "Delete photo" msgstr "" -#: mod/photos.php:1000 +#: mod/photos.php:958 msgid "Use as profile photo" msgstr "Emprar com a foto del perfil" -#: mod/photos.php:1007 +#: mod/photos.php:965 msgid "Private Photo" msgstr "" -#: mod/photos.php:1013 +#: mod/photos.php:971 msgid "View Full Size" msgstr "Veure'l a Mida Completa" -#: mod/photos.php:1066 +#: mod/photos.php:1024 msgid "Tags: " msgstr "Etiquetes:" -#: mod/photos.php:1069 +#: mod/photos.php:1027 msgid "[Select tags to remove]" msgstr "" -#: mod/photos.php:1084 +#: mod/photos.php:1042 msgid "New album name" msgstr "Nou nom d'àlbum" -#: mod/photos.php:1085 +#: mod/photos.php:1043 msgid "Caption" msgstr "Títol" -#: mod/photos.php:1086 +#: mod/photos.php:1044 msgid "Add a Tag" msgstr "Afegir una etiqueta" -#: mod/photos.php:1086 +#: mod/photos.php:1044 msgid "" "Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping" msgstr "Exemple: @bob, @Barbara_jensen, @jim@example.com, #California, #camping" -#: mod/photos.php:1087 +#: mod/photos.php:1045 msgid "Do not rotate" msgstr "" -#: mod/photos.php:1088 +#: mod/photos.php:1046 msgid "Rotate CW (right)" msgstr "Rotar CW (dreta)" -#: mod/photos.php:1089 +#: mod/photos.php:1047 msgid "Rotate CCW (left)" msgstr "Rotar CCW (esquerra)" -#: 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 +#: mod/photos.php:1093 mod/photos.php:1149 mod/photos.php:1229 +#: src/Module/Contact.php:600 src/Module/Item/Compose.php:181 +#: src/Object/Post.php:1142 msgid "This is you" msgstr "Aquest ets tu" -#: 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 +#: mod/photos.php:1095 mod/photos.php:1151 mod/photos.php:1231 +#: src/Module/Moderation/Reports.php:102 src/Object/Post.php:598 +#: src/Object/Post.php:1144 msgid "Comment" msgstr "Comentari" -#: 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 +#: mod/photos.php:1097 mod/photos.php:1153 mod/photos.php:1233 +#: src/Content/Conversation.php:400 src/Module/Calendar/Event/Form.php:234 +#: src/Module/Item/Compose.php:194 src/Module/Post/Edit.php:151 +#: src/Object/Post.php:1158 msgid "Preview" msgstr "Vista prèvia" -#: mod/photos.php:1140 src/Content/Conversation.php:369 -#: src/Module/Post/Edit.php:130 src/Object/Post.php:1155 +#: mod/photos.php:1098 src/Content/Conversation.php:354 +#: src/Module/Post/Edit.php:116 src/Object/Post.php:1146 msgid "Loading..." msgstr "" -#: mod/photos.php:1232 src/Content/Conversation.php:1501 -#: src/Object/Post.php:261 +#: mod/photos.php:1190 src/Content/Conversation.php:1484 +#: src/Object/Post.php:260 msgid "Select" msgstr "Selecionar" -#: 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 -#: src/Module/Settings/Connectors.php:244 -#: src/Module/Settings/Server/Index.php:109 +#: mod/photos.php:1191 src/Content/Conversation.php:1485 +#: src/Module/Moderation/Users/Active.php:122 +#: src/Module/Moderation/Users/Blocked.php:122 +#: src/Module/Moderation/Users/Index.php:137 +#: src/Module/Settings/Connectors.php:233 +#: src/Module/Settings/Server/Index.php:95 msgid "Delete" msgstr "Esborrar" -#: mod/photos.php:1294 src/Object/Post.php:426 +#: mod/photos.php:1252 src/Object/Post.php:426 msgid "Like" msgstr "" -#: mod/photos.php:1295 src/Object/Post.php:426 +#: mod/photos.php:1253 src/Object/Post.php:426 msgid "I like this (toggle)" msgstr "M'agrada això (canviar)" -#: mod/photos.php:1296 src/Object/Post.php:427 +#: mod/photos.php:1254 src/Object/Post.php:427 msgid "Dislike" msgstr "" -#: mod/photos.php:1298 src/Object/Post.php:427 +#: mod/photos.php:1256 src/Object/Post.php:427 msgid "I don't like this (toggle)" msgstr "No m'agrada això (canviar)" -#: mod/photos.php:1320 +#: mod/photos.php:1278 msgid "Map" msgstr "" -#: src/App.php:473 +#: src/App.php:432 msgid "No system theme config value set." msgstr "" -#: src/App.php:581 +#: src/App.php:540 msgid "Apologies but the website is unavailable at the moment." msgstr "" -#: src/App/Page.php:249 +#: src/App/Page.php:236 msgid "Delete this item?" msgstr "Esborrar aquest element?" -#: src/App/Page.php:250 +#: src/App/Page.php:237 msgid "" "Block this author? They won't be able to follow you nor see your public " "posts, and you won't be able to see their posts and their notifications." msgstr "" -#: src/App/Page.php:251 +#: src/App/Page.php:238 msgid "" "Ignore this author? You won't be able to see their posts and their " "notifications." msgstr "" -#: src/App/Page.php:252 +#: src/App/Page.php:239 msgid "Collapse this author's posts?" msgstr "" -#: src/App/Page.php:253 +#: src/App/Page.php:240 msgid "Ignore this author's server?" msgstr "" -#: src/App/Page.php:254 src/Module/Settings/Server/Action.php:61 -#: src/Module/Settings/Server/Index.php:108 +#: src/App/Page.php:241 src/Module/Settings/Server/Action.php:47 +#: src/Module/Settings/Server/Index.php:94 msgid "" "You won't see any content from this server including reshares in your " "Network page, the community pages and individual conversations." msgstr "" -#: src/App/Page.php:256 +#: src/App/Page.php:243 msgid "Like not successful" msgstr "" -#: src/App/Page.php:257 +#: src/App/Page.php:244 msgid "Dislike not successful" msgstr "" -#: src/App/Page.php:258 +#: src/App/Page.php:245 msgid "Sharing not successful" msgstr "" -#: src/App/Page.php:259 +#: src/App/Page.php:246 msgid "Attendance unsuccessful" msgstr "" -#: src/App/Page.php:260 +#: src/App/Page.php:247 msgid "Backend error" msgstr "" -#: src/App/Page.php:261 +#: src/App/Page.php:248 msgid "Network error" msgstr "" -#: src/App/Page.php:264 +#: src/App/Page.php:251 msgid "Drop files here to upload" msgstr "" -#: src/App/Page.php:265 +#: src/App/Page.php:252 msgid "Your browser does not support drag and drop file uploads." msgstr "" -#: src/App/Page.php:266 +#: src/App/Page.php:253 msgid "" "Please use the fallback form below to upload your files like in the olden " "days." msgstr "" -#: src/App/Page.php:267 +#: src/App/Page.php:254 msgid "File is too big ({{filesize}}MiB). Max filesize: {{maxFilesize}}MiB." msgstr "" -#: src/App/Page.php:268 +#: src/App/Page.php:255 msgid "You can't upload files of this type." msgstr "" -#: src/App/Page.php:269 +#: src/App/Page.php:256 msgid "Server responded with {{statusCode}} code." msgstr "" -#: src/App/Page.php:270 +#: src/App/Page.php:257 msgid "Cancel upload" msgstr "" -#: src/App/Page.php:271 +#: src/App/Page.php:258 msgid "Upload canceled." msgstr "" -#: src/App/Page.php:272 +#: src/App/Page.php:259 msgid "Are you sure you want to cancel this upload?" msgstr "" -#: src/App/Page.php:273 +#: src/App/Page.php:260 msgid "Remove file" msgstr "" -#: src/App/Page.php:274 +#: src/App/Page.php:261 msgid "You can't upload any more files." msgstr "" -#: src/App/Page.php:352 +#: src/App/Page.php:339 msgid "toggle mobile" msgstr "canviar a mòbil" -#: src/App/Router.php:309 +#: src/App/Router.php:295 #, php-format msgid "Method not allowed for this module. Allowed method(s): %s" msgstr "" -#: src/App/Router.php:311 src/Module/HTTPException/PageNotFound.php:49 +#: src/App/Router.php:297 src/Module/HTTPException/PageNotFound.php:35 +#: src/Module/Stats.php:49 msgid "Page not found." msgstr "Pàgina no trobada." -#: src/App/Router.php:323 +#: src/App/Router.php:309 msgid "You must be logged in to use addons. " msgstr "T'has d'identificar per emprar els complements" -#: src/BaseModule.php:407 +#: src/BaseModule.php:393 msgid "" "The form security token was not correct. This probably happened because the " "form has been opened for too long (>3 hours) before submitting it." msgstr "El formulari del token de seguretat no es correcte. Això probablement passa perquè el formulari ha estat massa temps obert (>3 hores) abans d'enviat-lo." -#: src/BaseModule.php:434 +#: src/BaseModule.php:420 msgid "All contacts" msgstr "Tots contactes" -#: src/BaseModule.php:439 src/Content/Conversation/Factory/Channel.php:46 -#: src/Content/Widget.php:240 src/Core/ACL.php:195 src/Module/Contact.php:414 -#: src/Module/PermissionTooltip.php:141 src/Module/PermissionTooltip.php:163 -#: src/Module/Settings/Channels.php:154 +#: src/BaseModule.php:425 src/Content/Conversation/Factory/Channel.php:32 +#: src/Content/Widget.php:218 src/Core/ACL.php:181 src/Module/Contact.php:395 +#: src/Module/Privacy/PermissionTooltip.php:150 +#: src/Module/Privacy/PermissionTooltip.php:172 +#: src/Module/Settings/Channels.php:146 msgid "Followers" msgstr "Seguidors" -#: src/BaseModule.php:444 src/Content/Widget.php:241 -#: src/Module/Contact.php:417 src/Module/Settings/Channels.php:153 +#: src/BaseModule.php:430 src/Content/Widget.php:219 +#: src/Module/Contact.php:398 src/Module/Settings/Channels.php:145 msgid "Following" msgstr "" -#: src/BaseModule.php:449 src/Content/Widget.php:242 -#: src/Module/Contact.php:420 +#: src/BaseModule.php:435 src/Content/Widget.php:220 +#: src/Module/Contact.php:401 msgid "Mutual friends" msgstr "" -#: src/BaseModule.php:457 +#: src/BaseModule.php:443 msgid "Common" msgstr "" -#: src/Console/Addon.php:175 src/Console/Addon.php:199 +#: src/Console/Addon.php:161 src/Console/Addon.php:185 msgid "Addon not found" msgstr "" -#: src/Console/Addon.php:179 +#: src/Console/Addon.php:165 msgid "Addon already enabled" msgstr "" -#: src/Console/Addon.php:203 +#: src/Console/Addon.php:189 msgid "Addon already disabled" msgstr "" -#: src/Console/ArchiveContact.php:106 +#: src/Console/ArchiveContact.php:92 #, php-format msgid "Could not find any unarchived contact entry for this URL (%s)" msgstr "" -#: src/Console/ArchiveContact.php:109 +#: src/Console/ArchiveContact.php:95 msgid "The contact entries have been archived" msgstr "" -#: src/Console/GlobalCommunityBlock.php:96 -#: src/Module/Moderation/Blocklist/Contact.php:65 +#: src/Console/ClearAvatarCache.php:73 +msgid "" +"The avatar cache needs to be disabled in local.config.php to use this " +"command." +msgstr "" + +#: src/Console/GlobalCommunityBlock.php:82 +#: src/Module/Moderation/Blocklist/Contact.php:51 #, php-format msgid "Could not find any contact entry for this URL (%s)" msgstr "" -#: src/Console/GlobalCommunityBlock.php:101 -#: src/Module/Moderation/Blocklist/Contact.php:82 +#: src/Console/GlobalCommunityBlock.php:87 +#: src/Module/Moderation/Blocklist/Contact.php:68 msgid "The contact has been blocked from the node" msgstr "" -#: src/Console/MergeContacts.php:75 +#: src/Console/MergeContacts.php:61 #, php-format msgid "%d %s, %d duplicates." msgstr "" -#: src/Console/MergeContacts.php:78 +#: src/Console/MergeContacts.php:64 #, php-format msgid "uri-id is empty for contact %s." msgstr "" -#: src/Console/MergeContacts.php:91 +#: src/Console/MergeContacts.php:77 #, php-format msgid "No valid first contact found for uri-id %d." msgstr "" -#: src/Console/MergeContacts.php:102 +#: src/Console/MergeContacts.php:88 #, php-format msgid "Wrong duplicate found for uri-id %d in %d (url: %s != %s)." msgstr "" -#: src/Console/MergeContacts.php:106 +#: src/Console/MergeContacts.php:92 #, php-format msgid "Wrong duplicate found for uri-id %d in %d (nurl: %s != %s)." msgstr "" -#: src/Console/MergeContacts.php:142 +#: src/Console/MergeContacts.php:128 #, php-format msgid "Deletion of id %d failed" msgstr "" -#: src/Console/MergeContacts.php:144 +#: src/Console/MergeContacts.php:130 #, php-format msgid "Deletion of id %d was successful" msgstr "" -#: src/Console/MergeContacts.php:150 +#: src/Console/MergeContacts.php:136 #, php-format msgid "Updating \"%s\" in \"%s\" from %d to %d" msgstr "" -#: src/Console/MergeContacts.php:152 +#: src/Console/MergeContacts.php:138 msgid " - found" msgstr "" -#: src/Console/MergeContacts.php:159 +#: src/Console/MergeContacts.php:145 msgid " - failed" msgstr "" -#: src/Console/MergeContacts.php:161 +#: src/Console/MergeContacts.php:147 msgid " - success" msgstr "" -#: src/Console/MergeContacts.php:165 +#: src/Console/MergeContacts.php:151 msgid " - deleted" msgstr "" -#: src/Console/MergeContacts.php:168 +#: src/Console/MergeContacts.php:154 msgid " - done" msgstr "" -#: src/Console/MoveToAvatarCache.php:91 +#: src/Console/MoveToAvatarCache.php:77 msgid "The avatar cache needs to be enabled to use this command." msgstr "" -#: src/Console/MoveToAvatarCache.php:109 +#: src/Console/MoveToAvatarCache.php:95 #, php-format msgid "no resource in photo %s" msgstr "" -#: src/Console/MoveToAvatarCache.php:137 +#: src/Console/MoveToAvatarCache.php:123 #, php-format msgid "no photo with id %s" msgstr "" -#: src/Console/MoveToAvatarCache.php:146 +#: src/Console/MoveToAvatarCache.php:132 #, php-format msgid "no image data for photo with id %s" msgstr "" -#: src/Console/MoveToAvatarCache.php:155 +#: src/Console/MoveToAvatarCache.php:141 #, php-format msgid "invalid image for id %s" msgstr "" -#: src/Console/MoveToAvatarCache.php:168 +#: src/Console/MoveToAvatarCache.php:154 #, php-format msgid "Quit on invalid photo %s" msgstr "" -#: src/Console/PostUpdate.php:87 +#: src/Console/PostUpdate.php:73 #, php-format msgid "Post update version number has been set to %s." msgstr "" -#: src/Console/PostUpdate.php:95 +#: src/Console/PostUpdate.php:81 msgid "Check for pending update actions." msgstr "" -#: src/Console/PostUpdate.php:97 +#: src/Console/PostUpdate.php:83 msgid "Done." msgstr "" -#: src/Console/PostUpdate.php:99 +#: src/Console/PostUpdate.php:85 msgid "Execute pending post updates." msgstr "" -#: src/Console/PostUpdate.php:105 +#: src/Console/PostUpdate.php:91 msgid "All pending post updates are done." msgstr "" -#: src/Console/User.php:158 src/Console/User.php:246 +#: src/Console/User.php:144 src/Console/User.php:232 msgid "Enter user nickname: " msgstr "" -#: src/Console/User.php:182 src/Model/User.php:819 -#: src/Module/Api/Twitter/ContactEndpoint.php:74 -#: src/Module/Moderation/Users/Active.php:71 -#: src/Module/Moderation/Users/Blocked.php:71 -#: src/Module/Moderation/Users/Index.php:78 -#: src/Module/Moderation/Users/Pending.php:67 +#: src/Console/User.php:168 src/Model/User.php:831 +#: src/Module/Api/Twitter/ContactEndpoint.php:60 +#: src/Module/Moderation/Users/Active.php:57 +#: src/Module/Moderation/Users/Blocked.php:57 +#: src/Module/Moderation/Users/Index.php:64 +#: src/Module/Moderation/Users/Pending.php:53 msgid "User not found" msgstr "" -#: src/Console/User.php:202 +#: src/Console/User.php:188 msgid "Enter new password: " msgstr "" -#: src/Console/User.php:210 src/Module/Security/PasswordTooLong.php:69 -#: src/Module/Settings/Account.php:75 +#: src/Console/User.php:196 src/Module/Security/PasswordTooLong.php:55 +#: src/Module/Settings/Account.php:61 msgid "Password update failed. Please try again." msgstr "Ha fallat l'actualització de la Contrasenya. Per favor, intenti-ho de nou." -#: src/Console/User.php:213 src/Module/Security/PasswordTooLong.php:72 -#: src/Module/Settings/Account.php:78 +#: src/Console/User.php:199 src/Module/Security/PasswordTooLong.php:58 +#: src/Module/Settings/Account.php:64 msgid "Password changed." msgstr "Contrasenya canviada." -#: src/Console/User.php:238 +#: src/Console/User.php:224 msgid "Enter user name: " msgstr "" -#: src/Console/User.php:254 +#: src/Console/User.php:240 msgid "Enter user email address: " msgstr "" -#: src/Console/User.php:262 +#: src/Console/User.php:248 msgid "Enter a language (optional): " msgstr "" -#: src/Console/User.php:267 +#: src/Console/User.php:253 msgid "Enter URL of an image to use as avatar (optional): " msgstr "" -#: src/Console/User.php:292 +#: src/Console/User.php:278 msgid "User is not pending." msgstr "" -#: src/Console/User.php:324 +#: src/Console/User.php:310 msgid "User has already been marked for deletion." msgstr "" -#: src/Console/User.php:329 +#: src/Console/User.php:315 #, php-format msgid "Type \"yes\" to delete %s" msgstr "" -#: src/Console/User.php:331 +#: src/Console/User.php:317 msgid "Deletion aborted." msgstr "" -#: src/Console/User.php:456 +#: src/Console/User.php:442 msgid "Enter category: " msgstr "" -#: src/Console/User.php:466 +#: src/Console/User.php:452 msgid "Enter key: " msgstr "" -#: src/Console/User.php:500 +#: src/Console/User.php:486 msgid "Enter value: " msgstr "" -#: src/Content/BoundariesPager.php:116 src/Content/Pager.php:171 +#: src/Content/BoundariesPager.php:102 src/Content/Pager.php:157 msgid "newer" msgstr "Més nou" -#: src/Content/BoundariesPager.php:124 src/Content/Pager.php:176 +#: src/Content/BoundariesPager.php:110 src/Content/Pager.php:162 msgid "older" msgstr "més vell" -#: src/Content/ContactSelector.php:51 +#: src/Content/ContactSelector.php:37 msgid "Frequently" msgstr "" -#: src/Content/ContactSelector.php:52 +#: src/Content/ContactSelector.php:38 msgid "Hourly" msgstr "" -#: src/Content/ContactSelector.php:53 +#: src/Content/ContactSelector.php:39 msgid "Twice daily" msgstr "" -#: src/Content/ContactSelector.php:54 +#: src/Content/ContactSelector.php:40 msgid "Daily" msgstr "" -#: src/Content/ContactSelector.php:55 +#: src/Content/ContactSelector.php:41 msgid "Weekly" msgstr "" -#: src/Content/ContactSelector.php:56 +#: src/Content/ContactSelector.php:42 msgid "Monthly" msgstr "" -#: src/Content/ContactSelector.php:126 +#: src/Content/ContactSelector.php:112 msgid "DFRN" msgstr "" -#: src/Content/ContactSelector.php:127 +#: src/Content/ContactSelector.php:113 msgid "OStatus" msgstr "" -#: src/Content/ContactSelector.php:128 +#: src/Content/ContactSelector.php:114 msgid "RSS/Atom" msgstr "" -#: src/Content/ContactSelector.php:129 -#: src/Module/Moderation/Users/Active.php:126 -#: src/Module/Moderation/Users/Blocked.php:126 -#: src/Module/Moderation/Users/Create.php:72 -#: src/Module/Moderation/Users/Deleted.php:83 -#: src/Module/Moderation/Users/Index.php:140 -#: src/Module/Moderation/Users/Index.php:160 -#: src/Module/Moderation/Users/Pending.php:99 +#: src/Content/ContactSelector.php:115 +#: src/Module/Moderation/Users/Active.php:112 +#: src/Module/Moderation/Users/Blocked.php:112 +#: src/Module/Moderation/Users/Create.php:58 +#: src/Module/Moderation/Users/Deleted.php:69 +#: src/Module/Moderation/Users/Index.php:126 +#: src/Module/Moderation/Users/Index.php:146 +#: src/Module/Moderation/Users/Pending.php:85 msgid "Email" msgstr "Correu" -#: src/Content/ContactSelector.php:130 src/Module/Debug/Babel.php:309 +#: src/Content/ContactSelector.php:116 src/Module/Debug/Babel.php:301 msgid "Diaspora" msgstr "Diaspora" -#: src/Content/ContactSelector.php:131 +#: src/Content/ContactSelector.php:117 msgid "Zot!" msgstr "" -#: src/Content/ContactSelector.php:132 +#: src/Content/ContactSelector.php:118 msgid "LinkedIn" msgstr "" -#: src/Content/ContactSelector.php:133 +#: src/Content/ContactSelector.php:119 msgid "XMPP/IM" msgstr "" -#: src/Content/ContactSelector.php:134 +#: src/Content/ContactSelector.php:120 msgid "MySpace" msgstr "" -#: src/Content/ContactSelector.php:135 +#: src/Content/ContactSelector.php:121 msgid "Google+" msgstr "" -#: src/Content/ContactSelector.php:136 +#: src/Content/ContactSelector.php:122 msgid "pump.io" msgstr "" -#: src/Content/ContactSelector.php:137 +#: src/Content/ContactSelector.php:123 msgid "Twitter" msgstr "" -#: src/Content/ContactSelector.php:138 +#: src/Content/ContactSelector.php:124 msgid "Discourse" msgstr "" -#: src/Content/ContactSelector.php:139 +#: src/Content/ContactSelector.php:125 msgid "Diaspora Connector" msgstr "" -#: src/Content/ContactSelector.php:140 +#: src/Content/ContactSelector.php:126 msgid "GNU Social Connector" msgstr "" -#: src/Content/ContactSelector.php:141 +#: src/Content/ContactSelector.php:127 msgid "ActivityPub" msgstr "" -#: src/Content/ContactSelector.php:142 +#: src/Content/ContactSelector.php:128 msgid "pnut" msgstr "" -#: src/Content/ContactSelector.php:143 +#: src/Content/ContactSelector.php:129 msgid "Tumblr" msgstr "" -#: src/Content/ContactSelector.php:144 +#: src/Content/ContactSelector.php:130 msgid "Bluesky" msgstr "" -#: src/Content/ContactSelector.php:180 +#: src/Content/ContactSelector.php:166 #, php-format msgid "%s (via %s)" msgstr "" -#: src/Content/Conversation.php:226 +#: src/Content/Conversation.php:212 msgid "and" msgstr "i" -#: src/Content/Conversation.php:229 +#: src/Content/Conversation.php:215 #, php-format msgid "and %d other people" msgstr "i %d altre gent" -#: src/Content/Conversation.php:235 +#: src/Content/Conversation.php:221 #, php-format msgid "%2$s likes this." msgid_plural "%2$s like this." msgstr[0] "" msgstr[1] "" -#: src/Content/Conversation.php:237 +#: src/Content/Conversation.php:223 #, php-format msgid "%2$s doesn't like this." msgid_plural "%2$s don't like this." msgstr[0] "" msgstr[1] "" -#: src/Content/Conversation.php:239 +#: src/Content/Conversation.php:225 #, php-format msgid "%2$s attends." msgid_plural "%2$s attend." msgstr[0] "" msgstr[1] "" -#: src/Content/Conversation.php:241 +#: src/Content/Conversation.php:227 #, php-format msgid "%2$s doesn't attend." msgid_plural "%2$s don't attend." msgstr[0] "" msgstr[1] "" -#: src/Content/Conversation.php:243 +#: src/Content/Conversation.php:229 #, php-format msgid "%2$s attends maybe." msgid_plural "%2$s attend maybe." msgstr[0] "" msgstr[1] "" -#: src/Content/Conversation.php:245 +#: src/Content/Conversation.php:231 #, php-format msgid "%2$s reshared this." msgid_plural "%2$s reshared this." msgstr[0] "" msgstr[1] "" -#: src/Content/Conversation.php:276 +#: src/Content/Conversation.php:262 #, php-format msgid " likes this" msgid_plural " like this" msgstr[0] "" msgstr[1] "" -#: src/Content/Conversation.php:279 +#: src/Content/Conversation.php:265 #, php-format msgid " doesn't like this" msgid_plural " don't like this" msgstr[0] "" msgstr[1] "" -#: src/Content/Conversation.php:282 +#: src/Content/Conversation.php:268 #, php-format msgid " attends" msgid_plural " attend" msgstr[0] "" msgstr[1] "" -#: src/Content/Conversation.php:285 +#: src/Content/Conversation.php:271 #, php-format msgid " doesn't attend" msgid_plural " don't attend" msgstr[0] "" msgstr[1] "" -#: src/Content/Conversation.php:288 +#: src/Content/Conversation.php:274 #, php-format msgid " attends maybe" msgid_plural " attend maybe" msgstr[0] "" msgstr[1] "" -#: src/Content/Conversation.php:291 +#: src/Content/Conversation.php:277 #, php-format msgid " reshared this" msgid_plural " reshared this" msgstr[0] "" msgstr[1] "" -#: src/Content/Conversation.php:338 +#: src/Content/Conversation.php:323 msgid "Visible to everybody" msgstr "Visible per a tothom" -#: src/Content/Conversation.php:339 src/Module/Item/Compose.php:200 -#: src/Object/Post.php:1166 +#: src/Content/Conversation.php:324 src/Module/Item/Compose.php:193 +#: src/Object/Post.php:1157 msgid "Please enter a image/video/audio/webpage URL:" msgstr "Introduïu una URL / imatge / vídeo / àudio / pàgina web:" -#: src/Content/Conversation.php:340 +#: src/Content/Conversation.php:325 msgid "Tag term:" msgstr "Terminis de l'etiqueta:" -#: src/Content/Conversation.php:341 src/Module/Filer/SaveTag.php:73 +#: src/Content/Conversation.php:326 src/Module/Filer/SaveTag.php:59 msgid "Save to Folder:" msgstr "Guardar a la Carpeta:" -#: src/Content/Conversation.php:342 +#: src/Content/Conversation.php:327 msgid "Where are you right now?" msgstr "On ets ara?" -#: src/Content/Conversation.php:343 +#: src/Content/Conversation.php:328 msgid "Delete item(s)?" msgstr "Esborrar element(s)?" -#: src/Content/Conversation.php:355 src/Module/Item/Compose.php:175 +#: src/Content/Conversation.php:340 src/Module/Item/Compose.php:168 msgid "Created at" msgstr "" -#: src/Content/Conversation.php:365 +#: src/Content/Conversation.php:350 msgid "New Post" msgstr "Missatge nou" -#: src/Content/Conversation.php:368 +#: src/Content/Conversation.php:353 msgid "Share" msgstr "Compartir" -#: src/Content/Conversation.php:371 src/Module/Post/Edit.php:132 +#: src/Content/Conversation.php:356 src/Module/Post/Edit.php:118 msgid "upload photo" msgstr "carregar fotos" -#: src/Content/Conversation.php:372 src/Module/Post/Edit.php:133 +#: src/Content/Conversation.php:357 src/Module/Post/Edit.php:119 msgid "Attach file" msgstr "Adjunta fitxer" -#: src/Content/Conversation.php:373 src/Module/Post/Edit.php:134 +#: src/Content/Conversation.php:358 src/Module/Post/Edit.php:120 msgid "attach file" msgstr "adjuntar arxiu" -#: src/Content/Conversation.php:374 src/Module/Item/Compose.php:190 -#: src/Module/Post/Edit.php:171 src/Object/Post.php:1156 +#: src/Content/Conversation.php:359 src/Module/Item/Compose.php:183 +#: src/Module/Post/Edit.php:157 src/Object/Post.php:1147 msgid "Bold" msgstr "Negreta" -#: src/Content/Conversation.php:375 src/Module/Item/Compose.php:191 -#: src/Module/Post/Edit.php:172 src/Object/Post.php:1157 +#: src/Content/Conversation.php:360 src/Module/Item/Compose.php:184 +#: src/Module/Post/Edit.php:158 src/Object/Post.php:1148 msgid "Italic" msgstr "Itallica" -#: src/Content/Conversation.php:376 src/Module/Item/Compose.php:192 -#: src/Module/Post/Edit.php:173 src/Object/Post.php:1158 +#: src/Content/Conversation.php:361 src/Module/Item/Compose.php:185 +#: src/Module/Post/Edit.php:159 src/Object/Post.php:1149 msgid "Underline" msgstr "Subratllat" -#: src/Content/Conversation.php:377 src/Module/Item/Compose.php:193 -#: src/Module/Post/Edit.php:174 src/Object/Post.php:1160 +#: src/Content/Conversation.php:362 src/Module/Item/Compose.php:186 +#: src/Module/Post/Edit.php:160 src/Object/Post.php:1151 msgid "Quote" msgstr "Cometes" -#: src/Content/Conversation.php:378 src/Module/Item/Compose.php:194 -#: src/Module/Post/Edit.php:175 src/Object/Post.php:1161 +#: src/Content/Conversation.php:363 src/Module/Item/Compose.php:187 +#: src/Module/Post/Edit.php:161 src/Object/Post.php:1152 msgid "Add emojis" msgstr "" -#: src/Content/Conversation.php:379 src/Module/Item/Compose.php:195 -#: src/Object/Post.php:1159 +#: src/Content/Conversation.php:364 src/Module/Item/Compose.php:188 +#: src/Object/Post.php:1150 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:1162 +#: src/Content/Conversation.php:365 src/Module/Item/Compose.php:189 +#: src/Module/Post/Edit.php:162 src/Object/Post.php:1153 msgid "Code" msgstr "Codi" -#: src/Content/Conversation.php:381 src/Module/Item/Compose.php:197 -#: src/Object/Post.php:1163 +#: src/Content/Conversation.php:366 src/Module/Item/Compose.php:190 +#: src/Object/Post.php:1154 msgid "Image" msgstr "Imatge" -#: src/Content/Conversation.php:382 src/Module/Item/Compose.php:198 -#: src/Module/Post/Edit.php:177 src/Object/Post.php:1164 +#: src/Content/Conversation.php:367 src/Module/Item/Compose.php:191 +#: src/Module/Post/Edit.php:163 src/Object/Post.php:1155 msgid "Link" msgstr "Enllaç" -#: src/Content/Conversation.php:383 src/Module/Item/Compose.php:199 -#: src/Module/Post/Edit.php:178 src/Object/Post.php:1165 +#: src/Content/Conversation.php:368 src/Module/Item/Compose.php:192 +#: src/Module/Post/Edit.php:164 src/Object/Post.php:1156 msgid "Link or Media" msgstr "Enllaç o suports" -#: src/Content/Conversation.php:384 +#: src/Content/Conversation.php:369 msgid "Video" msgstr "" -#: src/Content/Conversation.php:385 src/Module/Item/Compose.php:202 -#: src/Module/Post/Edit.php:141 +#: src/Content/Conversation.php:370 src/Module/Item/Compose.php:195 +#: src/Module/Post/Edit.php:127 msgid "Set your location" msgstr "Canvia la teva ubicació" -#: src/Content/Conversation.php:386 src/Module/Post/Edit.php:142 +#: src/Content/Conversation.php:371 src/Module/Post/Edit.php:128 msgid "set location" msgstr "establir la ubicació" -#: src/Content/Conversation.php:387 src/Module/Post/Edit.php:143 +#: src/Content/Conversation.php:372 src/Module/Post/Edit.php:129 msgid "Clear browser location" msgstr "neteja adreçes del navegador" -#: src/Content/Conversation.php:388 src/Module/Post/Edit.php:144 +#: src/Content/Conversation.php:373 src/Module/Post/Edit.php:130 msgid "clear location" msgstr "netejar ubicació" -#: src/Content/Conversation.php:390 src/Module/Item/Compose.php:207 -#: src/Module/Post/Edit.php:157 +#: src/Content/Conversation.php:375 src/Module/Item/Compose.php:200 +#: src/Module/Post/Edit.php:143 msgid "Set title" msgstr "Canviar títol" -#: src/Content/Conversation.php:392 src/Module/Item/Compose.php:208 -#: src/Module/Post/Edit.php:159 +#: src/Content/Conversation.php:377 src/Module/Item/Compose.php:201 +#: src/Module/Post/Edit.php:145 msgid "Categories (comma-separated list)" msgstr "Categories (lista separada per comes)" -#: src/Content/Conversation.php:397 src/Module/Item/Compose.php:224 +#: src/Content/Conversation.php:382 src/Module/Item/Compose.php:217 msgid "Scheduled at" msgstr "" -#: src/Content/Conversation.php:402 src/Module/Post/Edit.php:146 +#: src/Content/Conversation.php:387 src/Module/Post/Edit.php:132 msgid "Permission settings" msgstr "Configuració de permisos" -#: src/Content/Conversation.php:412 src/Module/Post/Edit.php:155 +#: src/Content/Conversation.php:396 src/Module/Post/Edit.php:141 msgid "Public post" msgstr "Enviament públic" -#: src/Content/Conversation.php:426 src/Content/Widget/VCard.php:130 -#: src/Model/Profile.php:483 src/Module/Admin/Logs/View.php:92 -#: src/Module/Post/Edit.php:181 +#: src/Content/Conversation.php:410 src/Content/Widget/VCard.php:117 +#: src/Model/Profile.php:462 src/Module/Admin/Logs/View.php:80 +#: src/Module/Post/Edit.php:167 msgid "Message" msgstr "Missatge" -#: src/Content/Conversation.php:427 src/Module/Post/Edit.php:182 -#: src/Module/Settings/TwoFactor/Trusted.php:143 +#: src/Content/Conversation.php:411 src/Module/Post/Edit.php:168 +#: src/Module/Settings/TwoFactor/Trusted.php:129 msgid "Browser" msgstr "Navegador" -#: src/Content/Conversation.php:429 src/Module/Post/Edit.php:185 +#: src/Content/Conversation.php:413 src/Module/Post/Edit.php:171 msgid "Open Compose page" msgstr "" -#: src/Content/Conversation.php:597 +#: src/Content/Conversation.php:580 msgid "remove" msgstr "esborrar" -#: src/Content/Conversation.php:601 +#: src/Content/Conversation.php:584 msgid "Delete Selected Items" msgstr "Esborra els Elements Seleccionats" -#: 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 +#: src/Content/Conversation.php:712 src/Content/Conversation.php:715 +#: src/Content/Conversation.php:718 src/Content/Conversation.php:721 +#: src/Content/Conversation.php:724 #, php-format msgid "You had been addressed (%s)." msgstr "" -#: src/Content/Conversation.php:744 +#: src/Content/Conversation.php:727 #, php-format msgid "You are following %s." msgstr "" -#: src/Content/Conversation.php:749 +#: src/Content/Conversation.php:732 #, php-format msgid "You subscribed to %s." msgstr "" -#: src/Content/Conversation.php:751 +#: src/Content/Conversation.php:734 msgid "You subscribed to one or more tags in this post." msgstr "" -#: src/Content/Conversation.php:771 +#: src/Content/Conversation.php:754 #, php-format msgid "%s reshared this." msgstr "%s va tornar a compartir això" -#: src/Content/Conversation.php:773 +#: src/Content/Conversation.php:756 msgid "Reshared" msgstr "" -#: src/Content/Conversation.php:773 +#: src/Content/Conversation.php:756 #, php-format msgid "Reshared by %s <%s>" msgstr "" -#: src/Content/Conversation.php:776 +#: src/Content/Conversation.php:759 #, php-format msgid "%s is participating in this thread." msgstr "" -#: src/Content/Conversation.php:779 +#: src/Content/Conversation.php:762 msgid "Stored for general reasons" msgstr "" -#: src/Content/Conversation.php:782 +#: src/Content/Conversation.php:765 msgid "Global post" msgstr "" -#: src/Content/Conversation.php:785 +#: src/Content/Conversation.php:768 msgid "Sent via an relay server" msgstr "" -#: src/Content/Conversation.php:785 +#: src/Content/Conversation.php:768 #, php-format msgid "Sent via the relay server %s <%s>" msgstr "" -#: src/Content/Conversation.php:788 +#: src/Content/Conversation.php:771 msgid "Fetched" msgstr "" -#: src/Content/Conversation.php:788 +#: src/Content/Conversation.php:771 #, php-format msgid "Fetched because of %s <%s>" msgstr "" -#: src/Content/Conversation.php:791 +#: src/Content/Conversation.php:774 msgid "Stored because of a child post to complete this thread." msgstr "" -#: src/Content/Conversation.php:794 +#: src/Content/Conversation.php:777 msgid "Local delivery" msgstr "" -#: src/Content/Conversation.php:797 +#: src/Content/Conversation.php:780 msgid "Stored because of your activity (like, comment, star, ...)" msgstr "" -#: src/Content/Conversation.php:800 +#: src/Content/Conversation.php:783 msgid "Distributed" msgstr "" -#: src/Content/Conversation.php:803 +#: src/Content/Conversation.php:786 msgid "Pushed to us" msgstr "" -#: src/Content/Conversation.php:1529 src/Object/Post.php:248 +#: src/Content/Conversation.php:1504 src/Object/Post.php:247 msgid "Pinned item" msgstr "" -#: src/Content/Conversation.php:1546 src/Object/Post.php:548 -#: src/Object/Post.php:549 +#: src/Content/Conversation.php:1521 src/Object/Post.php:541 +#: src/Object/Post.php:542 #, php-format msgid "View %s's profile @ %s" msgstr "Veure perfil de %s @ %s" -#: src/Content/Conversation.php:1559 src/Object/Post.php:536 +#: src/Content/Conversation.php:1535 src/Object/Post.php:529 msgid "Categories:" msgstr "Categories:" -#: src/Content/Conversation.php:1560 src/Object/Post.php:537 +#: src/Content/Conversation.php:1536 src/Object/Post.php:530 msgid "Filed under:" msgstr "Arxivat a:" -#: src/Content/Conversation.php:1568 src/Object/Post.php:562 +#: src/Content/Conversation.php:1544 src/Object/Post.php:556 #, php-format msgid "%s from %s" msgstr "%s des de %s" -#: src/Content/Conversation.php:1584 +#: src/Content/Conversation.php:1560 msgid "View in context" msgstr "Veure en context" -#: src/Content/Conversation/Factory/Channel.php:42 +#: src/Content/Conversation/Factory/Channel.php:28 msgid "For you" msgstr "" -#: src/Content/Conversation/Factory/Channel.php:42 +#: src/Content/Conversation/Factory/Channel.php:28 msgid "Posts from contacts you interact with and who interact with you" msgstr "" -#: src/Content/Conversation/Factory/Channel.php:43 +#: src/Content/Conversation/Factory/Channel.php:29 msgid "Discover" msgstr "" -#: src/Content/Conversation/Factory/Channel.php:43 +#: src/Content/Conversation/Factory/Channel.php:29 msgid "Posts from accounts that you don't follow, but that you might like." msgstr "" -#: src/Content/Conversation/Factory/Channel.php:44 +#: src/Content/Conversation/Factory/Channel.php:30 msgid "What's Hot" msgstr "" -#: src/Content/Conversation/Factory/Channel.php:44 +#: src/Content/Conversation/Factory/Channel.php:30 msgid "Posts with a lot of interactions" msgstr "" -#: src/Content/Conversation/Factory/Channel.php:45 +#: src/Content/Conversation/Factory/Channel.php:31 #, php-format msgid "Posts in %s" msgstr "" -#: src/Content/Conversation/Factory/Channel.php:46 +#: src/Content/Conversation/Factory/Channel.php:32 msgid "Posts from your followers that you don't follow" msgstr "" -#: src/Content/Conversation/Factory/Channel.php:47 +#: src/Content/Conversation/Factory/Channel.php:33 msgid "Sharers of sharers" msgstr "" -#: src/Content/Conversation/Factory/Channel.php:47 +#: src/Content/Conversation/Factory/Channel.php:33 msgid "Posts from accounts that are followed by accounts that you follow" msgstr "" -#: src/Content/Conversation/Factory/Channel.php:48 +#: src/Content/Conversation/Factory/Channel.php:34 msgid "Quiet sharers" msgstr "" -#: src/Content/Conversation/Factory/Channel.php:48 +#: src/Content/Conversation/Factory/Channel.php:34 msgid "Posts from accounts that you follow but who don't post very often" msgstr "" -#: src/Content/Conversation/Factory/Channel.php:49 -#: src/Module/Settings/Channels.php:193 src/Module/Settings/Channels.php:214 +#: src/Content/Conversation/Factory/Channel.php:35 +#: src/Module/Settings/Channels.php:185 src/Module/Settings/Channels.php:206 msgid "Images" msgstr "" -#: src/Content/Conversation/Factory/Channel.php:49 +#: src/Content/Conversation/Factory/Channel.php:35 msgid "Posts with images" msgstr "" -#: src/Content/Conversation/Factory/Channel.php:50 -#: src/Module/Settings/Channels.php:195 src/Module/Settings/Channels.php:216 +#: src/Content/Conversation/Factory/Channel.php:36 +#: src/Module/Settings/Channels.php:187 src/Module/Settings/Channels.php:208 msgid "Audio" msgstr "" -#: src/Content/Conversation/Factory/Channel.php:50 +#: src/Content/Conversation/Factory/Channel.php:36 msgid "Posts with audio" msgstr "" -#: src/Content/Conversation/Factory/Channel.php:51 -#: src/Module/Settings/Channels.php:194 src/Module/Settings/Channels.php:215 +#: src/Content/Conversation/Factory/Channel.php:37 +#: src/Module/Settings/Channels.php:186 src/Module/Settings/Channels.php:207 msgid "Videos" msgstr "" -#: src/Content/Conversation/Factory/Channel.php:51 +#: src/Content/Conversation/Factory/Channel.php:37 msgid "Posts with videos" msgstr "" -#: src/Content/Conversation/Factory/Community.php:43 +#: src/Content/Conversation/Factory/Community.php:29 msgid "Local Community" msgstr "" -#: src/Content/Conversation/Factory/Community.php:43 +#: src/Content/Conversation/Factory/Community.php:29 msgid "Posts from local users on this server" msgstr "" -#: src/Content/Conversation/Factory/Community.php:47 -#: src/Module/Settings/Channels.php:144 src/Module/Settings/Channels.php:149 +#: src/Content/Conversation/Factory/Community.php:33 +#: src/Module/Settings/Channels.php:136 src/Module/Settings/Channels.php:141 msgid "Global Community" msgstr "" -#: src/Content/Conversation/Factory/Community.php:47 +#: src/Content/Conversation/Factory/Community.php:33 msgid "Posts from users of the whole federated network" msgstr "" -#: src/Content/Conversation/Factory/Network.php:38 -#: src/Module/Settings/Channels.php:150 +#: src/Content/Conversation/Factory/Network.php:24 +#: src/Module/Settings/Channels.php:142 msgid "Latest Activity" msgstr "" -#: src/Content/Conversation/Factory/Network.php:38 +#: src/Content/Conversation/Factory/Network.php:24 msgid "Sort by latest activity" msgstr "" -#: src/Content/Conversation/Factory/Network.php:39 -#: src/Module/Settings/Channels.php:151 +#: src/Content/Conversation/Factory/Network.php:25 +#: src/Module/Settings/Channels.php:143 msgid "Latest Posts" msgstr "" -#: src/Content/Conversation/Factory/Network.php:39 +#: src/Content/Conversation/Factory/Network.php:25 msgid "Sort by post received date" msgstr "" -#: src/Content/Conversation/Factory/Network.php:40 -#: src/Module/Settings/Channels.php:152 +#: src/Content/Conversation/Factory/Network.php:26 +#: src/Module/Settings/Channels.php:144 msgid "Latest Creation" msgstr "" -#: src/Content/Conversation/Factory/Network.php:40 +#: src/Content/Conversation/Factory/Network.php:26 msgid "Sort by post creation date" msgstr "" -#: src/Content/Conversation/Factory/Network.php:41 -#: src/Module/Settings/Profile/Index.php:260 +#: src/Content/Conversation/Factory/Network.php:27 +#: src/Module/Settings/Profile/Index.php:251 msgid "Personal" msgstr "Personal" -#: src/Content/Conversation/Factory/Network.php:41 +#: src/Content/Conversation/Factory/Network.php:27 msgid "Posts that mention or involve you" msgstr "Missatge que et menciona o t'impliquen" -#: src/Content/Conversation/Factory/Network.php:42 src/Object/Post.php:398 +#: src/Content/Conversation/Factory/Network.php:28 src/Object/Post.php:397 msgid "Starred" msgstr "Favorits" -#: src/Content/Conversation/Factory/Network.php:42 +#: src/Content/Conversation/Factory/Network.php:28 msgid "Favourite Posts" msgstr "Enviaments Favorits" -#: src/Content/Feature.php:96 +#: src/Content/Feature.php:93 msgid "General Features" msgstr "Característiques Generals" -#: src/Content/Feature.php:98 +#: src/Content/Feature.php:95 msgid "Photo Location" msgstr "" -#: src/Content/Feature.php:98 +#: src/Content/Feature.php:95 msgid "" "Photo metadata is normally stripped. This extracts the location (if present)" " prior to stripping metadata and links it to a map." msgstr "" -#: src/Content/Feature.php:99 -msgid "Trending Tags" +#: src/Content/Feature.php:96 +msgid "Display the community in the navigation" msgstr "" -#: src/Content/Feature.php:99 +#: src/Content/Feature.php:96 msgid "" -"Show a community page widget with a list of the most popular tags in recent " -"public posts." +"If enabled, the community can be accessed via the navigation menu. " +"Independent from this setting, the community timelines can always be " +"accessed via the channels." msgstr "" -#: src/Content/Feature.php:104 +#: src/Content/Feature.php:101 msgid "Post Composition Features" msgstr "Característiques de Composició d'Enviaments" -#: src/Content/Feature.php:105 -msgid "Auto-mention Groups" -msgstr "" - -#: src/Content/Feature.php:105 -msgid "" -"Add/remove mention when a group page is selected/deselected in ACL window." -msgstr "" - -#: src/Content/Feature.php:106 +#: src/Content/Feature.php:102 msgid "Explicit Mentions" msgstr "" -#: src/Content/Feature.php:106 +#: src/Content/Feature.php:102 msgid "" "Add explicit mentions to comment box for manual control over who gets " "mentioned in replies." msgstr "" -#: src/Content/Feature.php:107 +#: src/Content/Feature.php:103 msgid "Add an abstract from ActivityPub content warnings" msgstr "" -#: src/Content/Feature.php:107 +#: src/Content/Feature.php:103 msgid "" "Add an abstract when commenting on ActivityPub posts with a content warning." " Abstracts are displayed as content warning on systems like Mastodon or " "Pleroma." msgstr "" -#: src/Content/Feature.php:112 +#: src/Content/Feature.php:108 msgid "Post/Comment Tools" msgstr "Eines d'Enviaments/Comentaris" -#: src/Content/Feature.php:113 +#: src/Content/Feature.php:109 msgid "Post Categories" msgstr "Categories en Enviaments" -#: src/Content/Feature.php:113 +#: src/Content/Feature.php:109 msgid "Add categories to your posts" msgstr "Afegeix categories als teus enviaments" +#: src/Content/Feature.php:114 +msgid "Network Widgets" +msgstr "" + +#: src/Content/Feature.php:115 src/Content/Widget.php:194 +#: src/Model/Circle.php:587 src/Module/Contact.php:381 +#: src/Module/Welcome.php:62 +msgid "Circles" +msgstr "" + +#: src/Content/Feature.php:115 +msgid "" +"Display posts that have been created by accounts of the selected circle." +msgstr "" + +#: src/Content/Feature.php:116 src/Content/GroupManager.php:133 +#: src/Content/Nav.php:264 src/Content/Text/HTML.php:868 +#: src/Content/Widget.php:516 src/Model/User.php:1390 +msgid "Groups" +msgstr "" + +#: src/Content/Feature.php:116 +msgid "Display posts that have been distributed by the selected group." +msgstr "" + +#: src/Content/Feature.php:117 src/Content/Widget.php:485 +msgid "Archives" +msgstr "Arxius" + +#: src/Content/Feature.php:117 +msgid "Display an archive where posts can be selected by month and year." +msgstr "" + +#: src/Content/Feature.php:118 src/Content/Widget.php:267 +msgid "Protocols" +msgstr "" + #: src/Content/Feature.php:118 +msgid "Display posts with the selected protocols." +msgstr "" + +#: src/Content/Feature.php:119 src/Content/Widget.php:522 +#: src/Module/Settings/Account.php:433 +msgid "Account Types" +msgstr "" + +#: src/Content/Feature.php:119 +msgid "Display posts done by accounts with the selected account type." +msgstr "" + +#: src/Content/Feature.php:120 src/Content/Widget.php:571 +#: src/Module/Admin/Site.php:464 src/Module/BaseSettings.php:111 +#: src/Module/Settings/Channels.php:211 src/Module/Settings/Display.php:301 +msgid "Channels" +msgstr "" + +#: src/Content/Feature.php:120 +msgid "Display posts in the system channels and user defined channels." +msgstr "" + +#: src/Content/Feature.php:121 src/Content/Widget/SavedSearches.php:46 +msgid "Saved Searches" +msgstr "Cerques Guardades" + +#: src/Content/Feature.php:121 +msgid "Display posts that contain subscribed hashtags." +msgstr "" + +#: src/Content/Feature.php:122 src/Content/Widget.php:297 +msgid "Saved Folders" +msgstr "Carpetes Guardades" + +#: src/Content/Feature.php:122 +msgid "Display a list of folders in which posts are stored." +msgstr "" + +#: src/Content/Feature.php:123 src/Module/Conversation/Timeline.php:186 +msgid "Own Contacts" +msgstr "" + +#: src/Content/Feature.php:123 +msgid "" +"Include or exclude posts from subscribed accounts. This widget is not " +"visible on all channels." +msgstr "" + +#: src/Content/Feature.php:124 +msgid "Trending Tags" +msgstr "" + +#: src/Content/Feature.php:124 +msgid "Display a list of the most popular tags in recent public posts." +msgstr "" + +#: src/Content/Feature.php:129 msgid "Advanced Profile Settings" msgstr "" -#: src/Content/Feature.php:119 -msgid "List Groups" -msgstr "" - -#: src/Content/Feature.php:119 -msgid "Show visitors public groups at the Advanced Profile Page" -msgstr "" - -#: src/Content/Feature.php:120 +#: src/Content/Feature.php:130 msgid "Tag Cloud" msgstr "" -#: src/Content/Feature.php:120 +#: src/Content/Feature.php:130 msgid "Provide a personal tag cloud on your profile page" msgstr "" -#: src/Content/Feature.php:121 +#: src/Content/Feature.php:131 msgid "Display Membership Date" msgstr "" -#: src/Content/Feature.php:121 +#: src/Content/Feature.php:131 msgid "Display membership date in profile" msgstr "" -#: src/Content/Feature.php:126 +#: src/Content/Feature.php:136 msgid "Advanced Calendar Settings" msgstr "" -#: src/Content/Feature.php:127 +#: src/Content/Feature.php:137 msgid "Allow anonymous access to your calendar" msgstr "" -#: src/Content/Feature.php:127 +#: src/Content/Feature.php:137 msgid "" "Allows anonymous visitors to consult your calendar and your public events. " "Contact birthday events are private to you." msgstr "" -#: src/Content/GroupManager.php:147 src/Content/Nav.php:278 -#: src/Content/Text/HTML.php:881 src/Content/Widget.php:538 -#: src/Model/User.php:1381 -msgid "Groups" -msgstr "" - -#: src/Content/GroupManager.php:149 +#: src/Content/GroupManager.php:135 msgid "External link to group" msgstr "" -#: src/Content/GroupManager.php:153 src/Content/Widget.php:513 +#: src/Content/GroupManager.php:139 src/Content/Widget.php:491 msgid "show less" msgstr "" -#: src/Content/GroupManager.php:154 src/Content/Widget.php:411 -#: src/Content/Widget.php:514 +#: src/Content/GroupManager.php:140 src/Content/Widget.php:389 +#: src/Content/Widget.php:492 msgid "show more" msgstr "Mostrar més" -#: src/Content/GroupManager.php:155 +#: src/Content/GroupManager.php:141 msgid "Create new group" msgstr "" -#: src/Content/Item.php:332 src/Model/Item.php:3254 +#: src/Content/Item.php:317 src/Model/Item.php:3272 msgid "event" msgstr "esdeveniment" -#: src/Content/Item.php:335 src/Content/Item.php:345 +#: src/Content/Item.php:320 src/Content/Item.php:330 msgid "status" msgstr "estatus" -#: src/Content/Item.php:341 src/Model/Item.php:3256 -#: src/Module/Post/Tag/Add.php:123 +#: src/Content/Item.php:326 src/Model/Item.php:3274 +#: src/Module/Post/Tag/Add.php:109 msgid "photo" msgstr "foto" -#: src/Content/Item.php:355 src/Module/Post/Tag/Add.php:141 +#: src/Content/Item.php:340 src/Module/Post/Tag/Add.php:127 #, php-format msgid "%1$s tagged %2$s's %3$s with %4$s" msgstr "%1$s etiquetats %2$s %3$s amb %4$s" -#: src/Content/Item.php:429 view/theme/frio/theme.php:265 +#: src/Content/Item.php:414 view/theme/frio/theme.php:253 msgid "Follow Thread" msgstr "Seguir el Fil" -#: src/Content/Item.php:430 src/Model/Contact.php:1243 +#: src/Content/Item.php:415 src/Model/Contact.php:1249 msgid "View Status" msgstr "Veure Estatus" -#: src/Content/Item.php:431 src/Content/Item.php:452 -#: 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 +#: src/Content/Item.php:416 src/Content/Item.php:439 +#: src/Model/Contact.php:1184 src/Model/Contact.php:1240 +#: src/Model/Contact.php:1250 src/Module/Directory.php:144 +#: src/Module/Settings/Profile/Index.php:250 msgid "View Profile" msgstr "Veure Perfil" -#: src/Content/Item.php:432 src/Model/Contact.php:1245 +#: src/Content/Item.php:417 src/Model/Contact.php:1251 msgid "View Photos" msgstr "Veure Fotos" -#: src/Content/Item.php:433 src/Model/Contact.php:1212 -#: src/Model/Profile.php:468 +#: src/Content/Item.php:418 src/Model/Contact.php:1218 +#: src/Model/Profile.php:447 msgid "Network Posts" msgstr "Enviaments a la Xarxa" -#: src/Content/Item.php:434 src/Model/Contact.php:1236 -#: src/Model/Contact.php:1247 +#: src/Content/Item.php:419 src/Model/Contact.php:1242 +#: src/Model/Contact.php:1253 msgid "View Contact" msgstr "Veure contacte" -#: src/Content/Item.php:435 src/Model/Contact.php:1248 +#: src/Content/Item.php:420 src/Model/Contact.php:1254 msgid "Send PM" msgstr "Enviar Missatge Privat" -#: src/Content/Item.php:436 src/Module/Contact.php:467 -#: src/Module/Contact/Profile.php:511 -#: src/Module/Moderation/Blocklist/Contact.php:116 -#: src/Module/Moderation/Users/Active.php:137 -#: src/Module/Moderation/Users/Index.php:152 +#: src/Content/Item.php:421 src/Module/Contact.php:449 +#: src/Module/Contact/Profile.php:518 +#: src/Module/Moderation/Blocklist/Contact.php:102 +#: src/Module/Moderation/Users/Active.php:123 +#: src/Module/Moderation/Users/Index.php:138 msgid "Block" msgstr "Bloquejar" -#: src/Content/Item.php:437 src/Module/Contact.php:468 -#: src/Module/Contact/Profile.php:519 -#: src/Module/Notifications/Introductions.php:134 -#: src/Module/Notifications/Introductions.php:206 -#: src/Module/Notifications/Notification.php:89 +#: src/Content/Item.php:422 src/Module/Contact.php:450 +#: src/Module/Contact/Profile.php:526 +#: src/Module/Notifications/Introductions.php:126 +#: src/Module/Notifications/Introductions.php:198 +#: src/Module/Notifications/Notification.php:75 msgid "Ignore" msgstr "Ignorar" -#: src/Content/Item.php:438 src/Module/Contact.php:469 -#: src/Module/Contact/Profile.php:527 +#: src/Content/Item.php:423 src/Module/Contact.php:451 +#: src/Module/Contact/Profile.php:534 msgid "Collapse" msgstr "" -#: src/Content/Item.php:439 src/Object/Post.php:289 +#: src/Content/Item.php:424 src/Object/Post.php:288 #, php-format msgid "Ignore %s server" msgstr "" -#: src/Content/Item.php:443 src/Module/Settings/Channels.php:196 -#: src/Module/Settings/Channels.php:217 src/Object/Post.php:509 +#: src/Content/Item.php:428 src/Module/Settings/Channels.php:188 +#: src/Module/Settings/Channels.php:209 src/Object/Post.php:502 msgid "Languages" msgstr "" -#: src/Content/Item.php:449 src/Content/Widget.php:80 -#: src/Model/Contact.php:1237 src/Model/Contact.php:1249 -#: src/Module/Contact/Follow.php:167 view/theme/vier/theme.php:195 +#: src/Content/Item.php:431 src/Object/Post.php:582 +msgid "Search Text" +msgstr "" + +#: src/Content/Item.php:436 src/Content/Widget.php:66 +#: src/Model/Contact.php:1243 src/Model/Contact.php:1255 +#: src/Module/Contact/Follow.php:148 view/theme/vier/theme.php:183 msgid "Connect/Follow" msgstr "Connectar/Seguir" -#: src/Content/Item.php:883 +#: src/Content/Item.php:870 msgid "Unable to fetch user." msgstr "" -#: src/Content/Nav.php:121 +#: src/Content/Nav.php:107 msgid "Nothing new here" msgstr "Res nou aquí" -#: src/Content/Nav.php:125 src/Module/Special/HTTPException.php:77 +#: src/Content/Nav.php:111 src/Module/Special/HTTPException.php:63 msgid "Go back" msgstr "" -#: src/Content/Nav.php:126 +#: src/Content/Nav.php:112 msgid "Clear notifications" msgstr "Neteja notificacions" -#: src/Content/Nav.php:127 src/Content/Text/HTML.php:868 +#: src/Content/Nav.php:113 src/Content/Text/HTML.php:855 msgid "@name, !group, #tags, content" msgstr "" -#: src/Content/Nav.php:222 src/Module/Security/Login.php:157 +#: src/Content/Nav.php:208 src/Module/Security/Login.php:147 msgid "Logout" msgstr "Sortir" -#: src/Content/Nav.php:222 +#: src/Content/Nav.php:208 msgid "End this session" msgstr "Termina sessió" -#: src/Content/Nav.php:224 src/Module/Bookmarklet.php:44 -#: src/Module/Security/Login.php:158 +#: src/Content/Nav.php:210 src/Module/Bookmarklet.php:30 +#: src/Module/Security/Login.php:148 msgid "Login" msgstr "Identifica't" -#: src/Content/Nav.php:224 +#: src/Content/Nav.php:210 msgid "Sign in" msgstr "Accedeix" -#: src/Content/Nav.php:229 src/Module/BaseProfile.php:57 -#: src/Module/Contact.php:511 +#: src/Content/Nav.php:215 src/Module/BaseProfile.php:43 +#: src/Module/Contact.php:493 msgid "Conversations" msgstr "" -#: src/Content/Nav.php:229 +#: src/Content/Nav.php:215 msgid "Conversations you started" msgstr "" -#: src/Content/Nav.php:230 src/Module/BaseProfile.php:49 -#: src/Module/BaseSettings.php:98 src/Module/Contact.php:503 -#: src/Module/Contact/Profile.php:419 src/Module/Profile/Profile.php:268 -#: src/Module/Welcome.php:57 view/theme/frio/theme.php:233 +#: src/Content/Nav.php:216 src/Module/BaseProfile.php:35 +#: src/Module/BaseSettings.php:84 src/Module/Contact.php:485 +#: src/Module/Contact/Profile.php:425 src/Module/Profile/Profile.php:256 +#: src/Module/Welcome.php:43 view/theme/frio/theme.php:221 msgid "Profile" msgstr "Perfil" -#: src/Content/Nav.php:230 view/theme/frio/theme.php:233 +#: src/Content/Nav.php:216 view/theme/frio/theme.php:221 msgid "Your profile page" msgstr "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:237 +#: src/Content/Nav.php:217 src/Module/BaseProfile.php:51 +#: src/Module/Media/Photo/Browser.php:60 view/theme/frio/theme.php:225 msgid "Photos" msgstr "Fotos" -#: src/Content/Nav.php:231 view/theme/frio/theme.php:237 +#: src/Content/Nav.php:217 view/theme/frio/theme.php:225 msgid "Your photos" msgstr "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:238 +#: src/Content/Nav.php:218 src/Module/BaseProfile.php:59 +#: src/Module/BaseProfile.php:62 src/Module/Contact.php:509 +#: view/theme/frio/theme.php:226 msgid "Media" msgstr "" -#: src/Content/Nav.php:232 view/theme/frio/theme.php:238 +#: src/Content/Nav.php:218 view/theme/frio/theme.php:226 msgid "Your postings with media" msgstr "" -#: src/Content/Nav.php:233 src/Content/Nav.php:293 -#: src/Module/BaseProfile.php:85 src/Module/BaseProfile.php:88 -#: src/Module/BaseProfile.php:96 src/Module/BaseProfile.php:99 -#: src/Module/Settings/Display.php:319 view/theme/frio/theme.php:239 -#: view/theme/frio/theme.php:243 +#: src/Content/Nav.php:219 src/Content/Nav.php:279 +#: src/Module/BaseProfile.php:71 src/Module/BaseProfile.php:74 +#: src/Module/BaseProfile.php:82 src/Module/BaseProfile.php:85 +#: src/Module/Settings/Display.php:302 view/theme/frio/theme.php:227 +#: view/theme/frio/theme.php:231 msgid "Calendar" msgstr "" -#: src/Content/Nav.php:233 view/theme/frio/theme.php:239 +#: src/Content/Nav.php:219 view/theme/frio/theme.php:227 msgid "Your calendar" msgstr "" -#: src/Content/Nav.php:234 +#: src/Content/Nav.php:220 msgid "Personal notes" msgstr "Notes personals" -#: src/Content/Nav.php:234 +#: src/Content/Nav.php:220 msgid "Your personal notes" msgstr "" -#: src/Content/Nav.php:251 src/Content/Nav.php:308 +#: src/Content/Nav.php:237 src/Content/Nav.php:294 msgid "Home" msgstr "Inici" -#: src/Content/Nav.php:251 src/Module/Settings/OAuth.php:73 +#: src/Content/Nav.php:237 src/Module/Settings/OAuth.php:59 msgid "Home Page" msgstr "Pàgina d'Inici" -#: src/Content/Nav.php:255 src/Module/Register.php:168 -#: src/Module/Security/Login.php:124 +#: src/Content/Nav.php:241 src/Module/Register.php:161 +#: src/Module/Security/Login.php:114 msgid "Register" msgstr "Registrar" -#: src/Content/Nav.php:255 +#: src/Content/Nav.php:241 msgid "Create an account" msgstr "Crear un compte" -#: src/Content/Nav.php:261 src/Module/Help.php:67 -#: src/Module/Settings/TwoFactor/AppSpecific.php:132 -#: src/Module/Settings/TwoFactor/Index.php:139 -#: src/Module/Settings/TwoFactor/Recovery.php:110 -#: src/Module/Settings/TwoFactor/Verify.php:149 view/theme/vier/theme.php:240 +#: src/Content/Nav.php:247 src/Module/Help.php:53 +#: src/Module/Settings/TwoFactor/AppSpecific.php:118 +#: src/Module/Settings/TwoFactor/Index.php:125 +#: src/Module/Settings/TwoFactor/Recovery.php:96 +#: src/Module/Settings/TwoFactor/Verify.php:135 view/theme/vier/theme.php:228 msgid "Help" msgstr "Ajuda" -#: src/Content/Nav.php:261 +#: src/Content/Nav.php:247 msgid "Help and documentation" msgstr "Ajuda i documentació" -#: src/Content/Nav.php:265 +#: src/Content/Nav.php:251 msgid "Apps" msgstr "Aplicacions" -#: src/Content/Nav.php:265 +#: src/Content/Nav.php:251 msgid "Addon applications, utilities, games" msgstr "Afegits: aplicacions, utilitats, jocs" -#: src/Content/Nav.php:269 src/Content/Text/HTML.php:866 -#: src/Module/Admin/Logs/View.php:86 src/Module/Search/Index.php:112 +#: src/Content/Nav.php:255 src/Content/Text/HTML.php:853 +#: src/Module/Admin/Logs/View.php:74 src/Module/Search/Index.php:98 msgid "Search" msgstr "Cercar" -#: src/Content/Nav.php:269 +#: src/Content/Nav.php:255 msgid "Search site content" msgstr "Busca contingut en el lloc" -#: src/Content/Nav.php:272 src/Content/Text/HTML.php:875 +#: src/Content/Nav.php:258 src/Content/Text/HTML.php:862 msgid "Full Text" msgstr "Text Complet" -#: src/Content/Nav.php:273 src/Content/Text/HTML.php:876 -#: src/Content/Widget/TagCloud.php:68 +#: src/Content/Nav.php:259 src/Content/Text/HTML.php:863 +#: src/Content/Widget/TagCloud.php:54 msgid "Tags" msgstr "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:246 +#: src/Content/Nav.php:260 src/Content/Nav.php:315 +#: src/Content/Text/HTML.php:864 src/Module/BaseProfile.php:113 +#: src/Module/BaseProfile.php:116 src/Module/Contact.php:407 +#: src/Module/Contact.php:517 view/theme/frio/theme.php:234 msgid "Contacts" msgstr "Contactes" -#: src/Content/Nav.php:289 +#: src/Content/Nav.php:275 msgid "Community" msgstr "Comunitat" -#: src/Content/Nav.php:289 +#: src/Content/Nav.php:275 msgid "Conversations on this and other servers" msgstr "" -#: src/Content/Nav.php:296 +#: src/Content/Nav.php:282 msgid "Directory" msgstr "Directori" -#: src/Content/Nav.php:296 +#: src/Content/Nav.php:282 msgid "People directory" msgstr "Directori de gent" -#: src/Content/Nav.php:298 src/Module/BaseAdmin.php:85 -#: src/Module/BaseModeration.php:108 +#: src/Content/Nav.php:284 src/Module/BaseAdmin.php:71 +#: src/Module/BaseModeration.php:94 msgid "Information" msgstr "" -#: src/Content/Nav.php:298 +#: src/Content/Nav.php:284 msgid "Information about this friendica instance" msgstr "" -#: src/Content/Nav.php:301 src/Module/Admin/Tos.php:78 -#: src/Module/BaseAdmin.php:95 src/Module/Register.php:176 -#: src/Module/Tos.php:101 +#: src/Content/Nav.php:287 src/Module/Admin/Tos.php:64 +#: src/Module/BaseAdmin.php:81 src/Module/Register.php:169 +#: src/Module/Tos.php:87 msgid "Terms of Service" msgstr "" -#: src/Content/Nav.php:301 +#: src/Content/Nav.php:287 msgid "Terms of Service of this Friendica instance" msgstr "" -#: src/Content/Nav.php:306 view/theme/frio/theme.php:242 +#: src/Content/Nav.php:292 view/theme/frio/theme.php:230 msgid "Network" msgstr "Xarxa" -#: src/Content/Nav.php:306 view/theme/frio/theme.php:242 +#: src/Content/Nav.php:292 view/theme/frio/theme.php:230 msgid "Conversations from your friends" msgstr "Converses dels teus amics" -#: src/Content/Nav.php:308 view/theme/frio/theme.php:232 +#: src/Content/Nav.php:294 view/theme/frio/theme.php:220 msgid "Your posts and conversations" msgstr "Els teus anuncis i converses" -#: src/Content/Nav.php:312 +#: src/Content/Nav.php:298 msgid "Introductions" msgstr "Presentacions" -#: src/Content/Nav.php:312 +#: src/Content/Nav.php:298 msgid "Friend Requests" msgstr "Sol·licitud d'Amistat" -#: src/Content/Nav.php:313 src/Module/BaseNotifications.php:149 -#: src/Module/Notifications/Introductions.php:75 +#: src/Content/Nav.php:299 src/Module/BaseNotifications.php:135 +#: src/Module/Notifications/Introductions.php:61 msgid "Notifications" msgstr "Notificacions" -#: src/Content/Nav.php:314 +#: src/Content/Nav.php:300 msgid "See all notifications" msgstr "Veure totes les notificacions" -#: src/Content/Nav.php:315 src/Module/Settings/Connectors.php:244 +#: src/Content/Nav.php:301 src/Module/Settings/Connectors.php:233 msgid "Mark as seen" msgstr "Marcar com a vist" -#: src/Content/Nav.php:315 +#: src/Content/Nav.php:301 msgid "Mark all system notifications as seen" msgstr "" -#: src/Content/Nav.php:318 view/theme/frio/theme.php:244 +#: src/Content/Nav.php:304 view/theme/frio/theme.php:232 msgid "Private mail" msgstr "Correu privat" -#: src/Content/Nav.php:319 +#: src/Content/Nav.php:305 msgid "Inbox" msgstr "Safata d'entrada" -#: src/Content/Nav.php:320 +#: src/Content/Nav.php:306 msgid "Outbox" msgstr "Safata de sortida" -#: src/Content/Nav.php:324 +#: src/Content/Nav.php:310 msgid "Accounts" msgstr "" -#: src/Content/Nav.php:324 +#: src/Content/Nav.php:310 msgid "Manage other pages" msgstr "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:245 +#: src/Content/Nav.php:313 src/Module/Admin/Addons/Details.php:100 +#: src/Module/Admin/Themes/Details.php:85 src/Module/BaseSettings.php:168 +#: src/Module/Welcome.php:38 view/theme/frio/theme.php:233 msgid "Settings" msgstr "Ajustos" -#: src/Content/Nav.php:327 view/theme/frio/theme.php:245 +#: src/Content/Nav.php:313 view/theme/frio/theme.php:233 msgid "Account settings" msgstr "Configuració del compte" -#: src/Content/Nav.php:329 view/theme/frio/theme.php:246 +#: src/Content/Nav.php:315 view/theme/frio/theme.php:234 msgid "Manage/edit friends and contacts" msgstr "Gestiona/edita amics i contactes" -#: src/Content/Nav.php:334 src/Module/BaseAdmin.php:119 +#: src/Content/Nav.php:320 src/Module/BaseAdmin.php:105 msgid "Admin" msgstr "Admin" -#: src/Content/Nav.php:334 +#: src/Content/Nav.php:320 msgid "Site setup and configuration" msgstr "Ajustos i configuració del lloc" -#: src/Content/Nav.php:335 src/Module/BaseModeration.php:128 -#: src/Module/Moderation/Blocklist/Contact.php:110 -#: src/Module/Moderation/Blocklist/Server/Add.php:121 -#: src/Module/Moderation/Blocklist/Server/Import.php:118 -#: src/Module/Moderation/Blocklist/Server/Index.php:95 -#: src/Module/Moderation/Item/Delete.php:61 -#: src/Module/Moderation/Reports.php:89 src/Module/Moderation/Summary.php:75 -#: src/Module/Moderation/Users/Active.php:133 -#: src/Module/Moderation/Users/Blocked.php:133 -#: src/Module/Moderation/Users/Deleted.php:80 -#: src/Module/Moderation/Users/Index.php:147 +#: src/Content/Nav.php:321 src/Module/BaseModeration.php:114 +#: src/Module/Moderation/Blocklist/Contact.php:96 +#: src/Module/Moderation/Blocklist/Server/Add.php:107 +#: src/Module/Moderation/Blocklist/Server/Import.php:102 +#: src/Module/Moderation/Blocklist/Server/Index.php:81 +#: src/Module/Moderation/Item/Delete.php:47 +#: src/Module/Moderation/Reports.php:96 src/Module/Moderation/Summary.php:61 +#: src/Module/Moderation/Users/Active.php:119 +#: src/Module/Moderation/Users/Blocked.php:119 +#: src/Module/Moderation/Users/Deleted.php:66 +#: src/Module/Moderation/Users/Index.php:133 msgid "Moderation" msgstr "" -#: src/Content/Nav.php:335 +#: src/Content/Nav.php:321 msgid "Content and user moderation" msgstr "" -#: src/Content/Nav.php:338 +#: src/Content/Nav.php:324 msgid "Navigation" msgstr "Navegació" -#: src/Content/Nav.php:338 +#: src/Content/Nav.php:324 msgid "Site map" msgstr "Mapa del lloc" -#: src/Content/Pager.php:216 +#: src/Content/Pager.php:202 msgid "first" msgstr "Primer" -#: src/Content/Pager.php:221 +#: src/Content/Pager.php:207 msgid "prev" msgstr "Prev" -#: src/Content/Pager.php:276 +#: src/Content/Pager.php:262 msgid "next" msgstr "següent" -#: src/Content/Pager.php:281 +#: src/Content/Pager.php:267 msgid "last" msgstr "Últim" -#: src/Content/Text/BBCode.php:767 src/Content/Text/BBCode.php:1728 -#: src/Content/Text/BBCode.php:1729 +#: src/Content/Text/BBCode.php:689 src/Content/Text/BBCode.php:1862 +#: src/Content/Text/BBCode.php:1863 msgid "Image/photo" msgstr "Imatge/foto" -#: src/Content/Text/BBCode.php:985 +#: src/Content/Text/BBCode.php:907 #, php-format msgid "%2$s %3$s" msgstr "" -#: src/Content/Text/BBCode.php:1010 src/Model/Item.php:3999 -#: src/Model/Item.php:4005 src/Model/Item.php:4006 +#: src/Content/Text/BBCode.php:929 src/Model/Item.php:4028 +#: src/Model/Item.php:4034 src/Model/Item.php:4035 msgid "Link to source" msgstr "" -#: src/Content/Text/BBCode.php:1635 src/Content/Text/HTML.php:905 +#: src/Content/Text/BBCode.php:1743 src/Content/Text/HTML.php:892 msgid "Click to open/close" msgstr "Clicar per a obrir/tancar" -#: src/Content/Text/BBCode.php:1668 +#: src/Content/Text/BBCode.php:1798 msgid "$1 wrote:" msgstr "$1 va escriure:" -#: src/Content/Text/BBCode.php:1733 src/Content/Text/BBCode.php:1734 +#: src/Content/Text/BBCode.php:1872 src/Content/Text/BBCode.php:1873 msgid "Encrypted content" msgstr "Encriptar contingut" -#: src/Content/Text/BBCode.php:1997 +#: src/Content/Text/BBCode.php:2205 msgid "Invalid source protocol" msgstr "" -#: src/Content/Text/BBCode.php:2016 +#: src/Content/Text/BBCode.php:2224 msgid "Invalid link protocol" msgstr "" -#: src/Content/Text/HTML.php:783 +#: src/Content/Text/HTML.php:770 msgid "Loading more entries..." msgstr "Carregant mes entrades..." -#: src/Content/Text/HTML.php:784 +#: src/Content/Text/HTML.php:771 msgid "The end" msgstr "El final" -#: src/Content/Text/HTML.php:860 src/Content/Widget/VCard.php:126 -#: src/Model/Profile.php:477 src/Module/Contact/Profile.php:471 +#: src/Content/Text/HTML.php:847 src/Content/Widget/VCard.php:113 +#: src/Model/Profile.php:456 src/Module/Contact/Profile.php:478 msgid "Follow" msgstr "Seguir" -#: src/Content/Widget.php:51 +#: src/Content/Widget.php:37 msgid "Add New Contact" msgstr "Afegir Nou Contacte" -#: src/Content/Widget.php:52 +#: src/Content/Widget.php:38 msgid "Enter address or web location" msgstr "Introdueixi adreça o ubicació web" -#: src/Content/Widget.php:53 +#: src/Content/Widget.php:39 msgid "Example: bob@example.com, http://example.com/barbara" msgstr "Exemple: bob@example.com, http://example.com/barbara" -#: src/Content/Widget.php:55 +#: src/Content/Widget.php:41 msgid "Connect" msgstr "Connexió" -#: src/Content/Widget.php:72 +#: src/Content/Widget.php:58 #, php-format msgid "%d invitation available" msgid_plural "%d invitations available" msgstr[0] "%d invitació disponible" msgstr[1] "%d invitacions disponibles" -#: src/Content/Widget.php:78 view/theme/vier/theme.php:193 +#: src/Content/Widget.php:64 view/theme/vier/theme.php:181 msgid "Find People" msgstr "Trobar Gent" -#: src/Content/Widget.php:79 view/theme/vier/theme.php:194 +#: src/Content/Widget.php:65 view/theme/vier/theme.php:182 msgid "Enter name or interest" msgstr "Introdueixi nom o aficions" -#: src/Content/Widget.php:81 view/theme/vier/theme.php:196 +#: src/Content/Widget.php:67 view/theme/vier/theme.php:184 msgid "Examples: Robert Morgenstein, Fishing" msgstr "Exemples: Robert Morgenstein, Pescar" -#: src/Content/Widget.php:82 src/Module/Contact.php:460 -#: src/Module/Directory.php:96 view/theme/vier/theme.php:197 +#: src/Content/Widget.php:68 src/Module/Contact.php:441 +#: src/Module/Directory.php:83 view/theme/vier/theme.php:185 msgid "Find" msgstr "Cercar" -#: src/Content/Widget.php:83 src/Module/Contact/Suggestions.php:73 -#: view/theme/vier/theme.php:198 +#: src/Content/Widget.php:69 src/Module/Contact/Suggestions.php:59 +#: view/theme/vier/theme.php:186 msgid "Friend Suggestions" msgstr "Amics Suggerits" -#: src/Content/Widget.php:84 view/theme/vier/theme.php:199 +#: src/Content/Widget.php:70 view/theme/vier/theme.php:187 msgid "Similar Interests" msgstr "Aficions Similars" -#: src/Content/Widget.php:85 view/theme/vier/theme.php:200 +#: src/Content/Widget.php:71 view/theme/vier/theme.php:188 msgid "Random Profile" msgstr "Perfi Aleatori" -#: src/Content/Widget.php:86 view/theme/vier/theme.php:201 +#: src/Content/Widget.php:72 view/theme/vier/theme.php:189 msgid "Invite Friends" msgstr "Invita Amics" -#: src/Content/Widget.php:87 src/Module/Directory.php:88 -#: view/theme/vier/theme.php:202 +#: src/Content/Widget.php:73 src/Module/Directory.php:75 +#: view/theme/vier/theme.php:190 msgid "Global Directory" msgstr "Directori Global" -#: src/Content/Widget.php:89 view/theme/vier/theme.php:204 +#: src/Content/Widget.php:75 view/theme/vier/theme.php:192 msgid "Local Directory" msgstr "Directori Local" -#: 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:218 +#: src/Content/Widget.php:196 msgid "Everyone" msgstr "" -#: src/Content/Widget.php:243 src/Module/Contact.php:423 +#: src/Content/Widget.php:221 src/Module/Contact.php:404 msgid "No relationship" msgstr "" -#: src/Content/Widget.php:248 +#: src/Content/Widget.php:226 msgid "Relationships" msgstr "" -#: src/Content/Widget.php:250 src/Module/Circle.php:292 -#: src/Module/Contact.php:344 +#: src/Content/Widget.php:228 src/Module/Circle.php:280 +#: src/Module/Contact.php:325 msgid "All Contacts" msgstr "Tots els Contactes" -#: src/Content/Widget.php:289 -msgid "Protocols" -msgstr "" - -#: src/Content/Widget.php:291 +#: src/Content/Widget.php:269 msgid "All Protocols" msgstr "" -#: src/Content/Widget.php:319 -msgid "Saved Folders" -msgstr "Carpetes Guardades" - -#: src/Content/Widget.php:321 src/Content/Widget.php:352 +#: src/Content/Widget.php:299 src/Content/Widget.php:330 msgid "Everything" msgstr "Tot" -#: src/Content/Widget.php:350 +#: src/Content/Widget.php:328 msgid "Categories" msgstr "Categories" -#: src/Content/Widget.php:407 +#: src/Content/Widget.php:385 #, 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:507 -msgid "Archives" -msgstr "Arxius" - -#: src/Content/Widget.php:515 +#: src/Content/Widget.php:493 msgid "On this date" msgstr "" -#: src/Content/Widget.php:535 +#: src/Content/Widget.php:513 msgid "Persons" msgstr "" -#: src/Content/Widget.php:536 +#: src/Content/Widget.php:514 msgid "Organisations" msgstr "" -#: src/Content/Widget.php:537 src/Model/Contact.php:1739 +#: src/Content/Widget.php:515 src/Model/Contact.php:1747 msgid "News" msgstr "" -#: src/Content/Widget.php:539 +#: src/Content/Widget.php:517 msgid "Relays" msgstr "" -#: src/Content/Widget.php:544 src/Module/Settings/Account.php:442 -msgid "Account Types" -msgstr "" - -#: src/Content/Widget.php:546 src/Module/Moderation/BaseUsers.php:69 +#: src/Content/Widget.php:524 src/Module/Moderation/BaseUsers.php:56 msgid "All" msgstr "" -#: 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:318 -msgid "Channels" -msgstr "" - -#: src/Content/Widget/CalendarExport.php:56 +#: src/Content/Widget/CalendarExport.php:42 msgid "Export" msgstr "Exportar" -#: src/Content/Widget/CalendarExport.php:57 +#: src/Content/Widget/CalendarExport.php:43 msgid "Export calendar as ical" msgstr "Exportar calendari com ical" -#: src/Content/Widget/CalendarExport.php:58 +#: src/Content/Widget/CalendarExport.php:44 msgid "Export calendar as csv" msgstr "Exportar calendari com csv" -#: src/Content/Widget/ContactBlock.php:79 +#: src/Content/Widget/ContactBlock.php:65 msgid "No contacts" msgstr "Sense contactes" -#: src/Content/Widget/ContactBlock.php:110 +#: src/Content/Widget/ContactBlock.php:96 #, php-format msgid "%d Contact" msgid_plural "%d Contacts" msgstr[0] "%d Contacte" msgstr[1] "%d Contactes" -#: src/Content/Widget/ContactBlock.php:127 +#: src/Content/Widget/ContactBlock.php:113 msgid "View Contacts" msgstr "Veure Contactes" -#: src/Content/Widget/SavedSearches.php:47 +#: src/Content/Widget/SavedSearches.php:33 msgid "Remove term" msgstr "Traieu termini" -#: src/Content/Widget/SavedSearches.php:60 -msgid "Saved Searches" -msgstr "Cerques Guardades" - -#: src/Content/Widget/TrendingTags.php:52 +#: src/Content/Widget/TrendingTags.php:39 #, php-format msgid "Trending Tags (last %d hour)" msgid_plural "Trending Tags (last %d hours)" msgstr[0] "" msgstr[1] "" -#: src/Content/Widget/TrendingTags.php:53 +#: src/Content/Widget/TrendingTags.php:40 msgid "More Trending Tags" msgstr "" -#: src/Content/Widget/VCard.php:104 src/Model/Contact.php:1205 -#: src/Model/Profile.php:461 +#: src/Content/Widget/VCard.php:91 src/Model/Contact.php:1212 +#: src/Model/Profile.php:441 msgid "Post to group" msgstr "" -#: src/Content/Widget/VCard.php:109 src/Model/Contact.php:1210 -#: src/Model/Profile.php:466 src/Module/Moderation/Item/Source.php:85 +#: src/Content/Widget/VCard.php:96 src/Model/Contact.php:1216 +#: src/Model/Profile.php:445 src/Module/Moderation/Item/Source.php:77 msgid "Mention" msgstr "" -#: src/Content/Widget/VCard.php:119 src/Model/Profile.php:380 -#: src/Module/Contact/Profile.php:408 src/Module/Profile/Profile.php:199 +#: src/Content/Widget/VCard.php:106 src/Model/Profile.php:360 +#: src/Module/Contact/Profile.php:414 src/Module/Profile/Profile.php:187 msgid "XMPP:" msgstr "" -#: src/Content/Widget/VCard.php:120 src/Model/Profile.php:381 -#: src/Module/Contact/Profile.php:410 src/Module/Profile/Profile.php:203 +#: src/Content/Widget/VCard.php:107 src/Model/Profile.php:361 +#: src/Module/Contact/Profile.php:416 src/Module/Profile/Profile.php:191 msgid "Matrix:" msgstr "" -#: src/Content/Widget/VCard.php:121 src/Model/Event.php:82 -#: 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 +#: src/Content/Widget/VCard.php:108 src/Model/Event.php:68 +#: src/Model/Event.php:95 src/Model/Event.php:457 src/Model/Event.php:946 +#: src/Model/Profile.php:355 src/Module/Contact/Profile.php:412 +#: src/Module/Directory.php:134 src/Module/Notifications/Introductions.php:179 +#: src/Module/Profile/Profile.php:209 msgid "Location:" msgstr "Ubicació:" -#: src/Content/Widget/VCard.php:124 src/Model/Profile.php:490 -#: src/Module/Notifications/Introductions.php:201 +#: src/Content/Widget/VCard.php:111 src/Model/Profile.php:469 +#: src/Module/Notifications/Introductions.php:193 msgid "Network:" msgstr "" -#: src/Content/Widget/VCard.php:128 src/Model/Contact.php:1238 -#: src/Model/Contact.php:1250 src/Model/Profile.php:479 -#: src/Module/Contact/Profile.php:463 +#: src/Content/Widget/VCard.php:115 src/Model/Contact.php:1244 +#: src/Model/Contact.php:1256 src/Model/Profile.php:458 +#: src/Module/Contact/Profile.php:470 msgid "Unfollow" msgstr "" -#: src/Content/Widget/VCard.php:134 src/Model/Contact.php:1207 -#: src/Model/Profile.php:463 +#: src/Content/Widget/VCard.php:121 src/Model/Contact.php:1214 +#: src/Model/Profile.php:443 msgid "View group" msgstr "" -#: src/Core/ACL.php:166 src/Module/Profile/Profile.php:269 +#: src/Core/ACL.php:152 src/Module/Profile/Profile.php:257 msgid "Yourself" msgstr "" -#: src/Core/ACL.php:202 src/Module/PermissionTooltip.php:147 -#: src/Module/PermissionTooltip.php:169 +#: src/Core/ACL.php:188 src/Module/Privacy/PermissionTooltip.php:156 +#: src/Module/Privacy/PermissionTooltip.php:178 msgid "Mutuals" msgstr "Mútues" -#: src/Core/ACL.php:294 +#: src/Core/ACL.php:280 msgid "Post to Email" msgstr "Correu per enviar" -#: src/Core/ACL.php:321 src/Module/PermissionTooltip.php:90 -#: src/Module/PermissionTooltip.php:211 +#: src/Core/ACL.php:307 src/Module/Privacy/PermissionTooltip.php:103 +#: src/Module/Privacy/PermissionTooltip.php:217 msgid "Public" msgstr "" -#: src/Core/ACL.php:322 +#: src/Core/ACL.php:308 msgid "" "This content will be shown to all your followers and can be seen in the " "community pages and by anyone with its link." msgstr "" -#: src/Core/ACL.php:323 src/Module/PermissionTooltip.php:98 +#: src/Core/ACL.php:309 src/Module/Privacy/PermissionTooltip.php:105 msgid "Limited/Private" msgstr "" -#: src/Core/ACL.php:324 +#: src/Core/ACL.php:310 msgid "" "This content will be shown only to the people in the first box, to the " "exception of the people mentioned in the second box. It won't appear " "anywhere public." msgstr "" -#: src/Core/ACL.php:324 +#: src/Core/ACL.php:310 msgid "" "Start typing the name of a contact or a circle to show a filtered list. You " "can also mention the special circles \"Followers\" and \"Mutuals\"." msgstr "" -#: src/Core/ACL.php:325 +#: src/Core/ACL.php:311 msgid "Show to:" msgstr "" -#: src/Core/ACL.php:326 +#: src/Core/ACL.php:312 msgid "Except to:" msgstr "" -#: src/Core/ACL.php:327 src/Module/Post/Edit.php:154 +#: src/Core/ACL.php:313 src/Module/Post/Edit.php:140 msgid "CC: email addresses" msgstr "CC: Adreça de correu" -#: src/Core/ACL.php:328 src/Module/Post/Edit.php:160 +#: src/Core/ACL.php:314 src/Module/Post/Edit.php:146 msgid "Example: bob@example.com, mary@example.com" msgstr "Exemple: bob@example.com, mary@example.com" -#: src/Core/ACL.php:329 +#: src/Core/ACL.php:315 msgid "Connectors" msgstr "" -#: src/Core/Installer.php:180 +#: src/Core/Installer.php:166 msgid "" "The database configuration file \"config/local.config.php\" could not be " "written. Please use the enclosed text to create a configuration file in your" " web server root." msgstr "El fitxer de configuració de la base de dades 'config / local.config.php' no s'ha pogut escriure. Utilitzeu el text adjunt per crear un fitxer de configuració a l’arrel del servidor web." -#: src/Core/Installer.php:197 +#: src/Core/Installer.php:183 msgid "" "You may need to import the file \"database.sql\" manually using phpmyadmin " "or mysql." msgstr "Pot ser que hagi d'importar l'arxiu \"database.sql\" manualment amb phpmyadmin o mysql." -#: src/Core/Installer.php:198 src/Module/Install.php:207 -#: src/Module/Install.php:350 +#: src/Core/Installer.php:184 src/Module/Install.php:193 +#: src/Module/Install.php:336 msgid "Please see the file \"doc/INSTALL.md\"." msgstr "" -#: src/Core/Installer.php:259 +#: src/Core/Installer.php:245 msgid "Could not find a command line version of PHP in the web server PATH." msgstr "No es va poder trobar una versió de línia de comandos de PHP en la ruta del servidor web." -#: src/Core/Installer.php:260 +#: src/Core/Installer.php:246 msgid "" "If you don't have a command line version of PHP installed on your server, " "you will not be able to run the background processing. See 'Setup the worker'" msgstr "" -#: src/Core/Installer.php:265 +#: src/Core/Installer.php:251 msgid "PHP executable path" msgstr "Direcció del executable PHP" -#: src/Core/Installer.php:265 +#: src/Core/Installer.php:251 msgid "" "Enter full path to php executable. You can leave this blank to continue the " "installation." msgstr "Entra la ruta sencera fins l'executable de php. Pots deixar això buit per continuar l'instal·lació." -#: src/Core/Installer.php:270 +#: src/Core/Installer.php:256 msgid "Command line PHP" msgstr "Linia de comandos PHP" -#: src/Core/Installer.php:279 +#: src/Core/Installer.php:265 msgid "PHP executable is not the php cli binary (could be cgi-fgci version)" msgstr "El programari executable PHP no es el binari php cli (hauria de ser la versió cgi-fcgi)" -#: src/Core/Installer.php:280 +#: src/Core/Installer.php:266 msgid "Found PHP version: " msgstr "Trobada la versió PHP:" -#: src/Core/Installer.php:282 +#: src/Core/Installer.php:268 msgid "PHP cli binary" msgstr "PHP cli binari" -#: src/Core/Installer.php:295 +#: src/Core/Installer.php:281 msgid "" "The command line version of PHP on your system does not have " "\"register_argc_argv\" enabled." msgstr "La versió de línia de comandos de PHP en el seu sistema no té \"register_argc_argv\" habilitat." -#: src/Core/Installer.php:296 +#: src/Core/Installer.php:282 msgid "This is required for message delivery to work." msgstr "Això és necessari perquè funcioni el lliurament de missatges." -#: src/Core/Installer.php:301 +#: src/Core/Installer.php:287 msgid "PHP register_argc_argv" msgstr "PHP register_argc_argv" -#: src/Core/Installer.php:333 +#: src/Core/Installer.php:319 msgid "" "Error: the \"openssl_pkey_new\" function on this system is not able to " "generate encryption keys" msgstr "Error: la funció \"openssl_pkey_new\" en aquest sistema no és capaç de generar claus de xifrat" -#: src/Core/Installer.php:334 +#: src/Core/Installer.php:320 msgid "" "If running under Windows, please see " "\"http://www.php.net/manual/en/openssl.installation.php\"." msgstr "Si s'executa en Windows, per favor consulti la secció \"http://www.php.net/manual/en/openssl.installation.php\"." -#: src/Core/Installer.php:337 +#: src/Core/Installer.php:323 msgid "Generate encryption keys" msgstr "Generar claus d'encripció" -#: src/Core/Installer.php:388 +#: src/Core/Installer.php:374 msgid "" "Error: Apache webserver mod-rewrite module is required but not installed." msgstr "Error: el mòdul mod-rewrite del servidor web Apache és necessari però no està instal·lat." -#: src/Core/Installer.php:392 +#: src/Core/Installer.php:378 msgid "Apache mod_rewrite module" msgstr "Apache mod_rewrite modul " -#: src/Core/Installer.php:398 +#: src/Core/Installer.php:384 msgid "Error: PDO or MySQLi PHP module required but not installed." msgstr "Error: PDO or MySQLi PHP mòdul necessari però no instal·lat." -#: src/Core/Installer.php:402 +#: src/Core/Installer.php:388 msgid "Error: The MySQL driver for PDO is not installed." msgstr "Error: The MySQL el controlador de PDO no està instal·lat." -#: src/Core/Installer.php:405 +#: src/Core/Installer.php:391 msgid "PDO or MySQLi PHP module" msgstr "" -#: src/Core/Installer.php:411 +#: src/Core/Installer.php:397 msgid "Error: The IntlChar module is not installed." msgstr "" -#: src/Core/Installer.php:414 +#: src/Core/Installer.php:400 msgid "IntlChar PHP module" msgstr "" -#: src/Core/Installer.php:422 +#: src/Core/Installer.php:408 msgid "Error, XML PHP module required but not installed." msgstr "Error, XML PHP mòdul necessari però no instal·lat." -#: src/Core/Installer.php:426 +#: src/Core/Installer.php:412 msgid "XML PHP module" msgstr "" -#: src/Core/Installer.php:429 +#: src/Core/Installer.php:415 msgid "libCurl PHP module" msgstr "Mòdul libCurl de PHP" -#: src/Core/Installer.php:430 +#: src/Core/Installer.php:416 msgid "Error: libCURL PHP module required but not installed." msgstr "Error: El mòdul libCURL de PHP és necessari però no està instal·lat." -#: src/Core/Installer.php:436 +#: src/Core/Installer.php:422 msgid "GD graphics PHP module" msgstr "Mòdul GD de gràfics de PHP" -#: src/Core/Installer.php:437 +#: src/Core/Installer.php:423 msgid "" "Error: GD graphics PHP module with JPEG support required but not installed." msgstr "Error: el mòdul gràfic GD de PHP amb support per JPEG és necessari però no està instal·lat." -#: src/Core/Installer.php:443 +#: src/Core/Installer.php:429 msgid "OpenSSL PHP module" msgstr "Mòdul OpenSSl de PHP" -#: src/Core/Installer.php:444 +#: src/Core/Installer.php:430 msgid "Error: openssl PHP module required but not installed." msgstr "Error: El mòdul enssl de PHP és necessari però no està instal·lat." -#: src/Core/Installer.php:450 +#: src/Core/Installer.php:436 msgid "mb_string PHP module" msgstr "Mòdul mb_string de PHP" -#: src/Core/Installer.php:451 +#: src/Core/Installer.php:437 msgid "Error: mb_string PHP module required but not installed." msgstr "Error: mòdul mb_string de PHP requerit però no instal·lat." -#: src/Core/Installer.php:457 +#: src/Core/Installer.php:443 msgid "iconv PHP module" msgstr "" -#: src/Core/Installer.php:458 +#: src/Core/Installer.php:444 msgid "Error: iconv PHP module required but not installed." msgstr "" -#: src/Core/Installer.php:464 +#: src/Core/Installer.php:450 msgid "POSIX PHP module" msgstr "" -#: src/Core/Installer.php:465 +#: src/Core/Installer.php:451 msgid "Error: POSIX PHP module required but not installed." msgstr "" -#: src/Core/Installer.php:471 +#: src/Core/Installer.php:457 msgid "Program execution functions" msgstr "" -#: src/Core/Installer.php:472 +#: src/Core/Installer.php:458 msgid "" "Error: Program execution functions (proc_open) required but not enabled." msgstr "" -#: src/Core/Installer.php:478 +#: src/Core/Installer.php:464 msgid "JSON PHP module" msgstr "" -#: src/Core/Installer.php:479 +#: src/Core/Installer.php:465 msgid "Error: JSON PHP module required but not installed." msgstr "" -#: src/Core/Installer.php:485 +#: src/Core/Installer.php:471 msgid "File Information PHP module" msgstr "" -#: src/Core/Installer.php:486 +#: src/Core/Installer.php:472 msgid "Error: File Information PHP module required but not installed." msgstr "" -#: src/Core/Installer.php:492 +#: src/Core/Installer.php:478 msgid "GNU Multiple Precision PHP module" msgstr "" -#: src/Core/Installer.php:493 +#: src/Core/Installer.php:479 msgid "Error: GNU Multiple Precision PHP module required but not installed." msgstr "" -#: src/Core/Installer.php:516 +#: src/Core/Installer.php:485 +msgid "IDN Functions PHP module" +msgstr "" + +#: src/Core/Installer.php:486 +msgid "Error: IDN Functions PHP module required but not installed." +msgstr "" + +#: src/Core/Installer.php:509 msgid "" "The web installer needs to be able to create a file called " "\"local.config.php\" in the \"config\" folder of your web server and it is " "unable to do so." msgstr "" -#: src/Core/Installer.php:517 +#: src/Core/Installer.php:510 msgid "" "This is most often a permission setting, as the web server may not be able " "to write files in your folder - even if you can." msgstr "Això freqüentment és a causa d'una configuració de permisos; el servidor web no pot escriure arxius en la carpeta - encara que sigui possible." -#: src/Core/Installer.php:518 +#: src/Core/Installer.php:511 msgid "" "At the end of this procedure, we will give you a text to save in a file " "named local.config.php in your Friendica \"config\" folder." msgstr "" -#: src/Core/Installer.php:519 +#: src/Core/Installer.php:512 msgid "" "You can alternatively skip this procedure and perform a manual installation." " Please see the file \"doc/INSTALL.md\" for instructions." msgstr "" -#: src/Core/Installer.php:522 +#: src/Core/Installer.php:515 msgid "config/local.config.php is writable" msgstr "" -#: src/Core/Installer.php:542 +#: src/Core/Installer.php:535 msgid "" "Friendica uses the Smarty3 template engine to render its web views. Smarty3 " "compiles templates to PHP to speed up rendering." msgstr "Friendica empra el motor de plantilla Smarty3 per dibuixar la web. Smarty3 compila plantilles a PHP per accelerar el redibuxar." -#: src/Core/Installer.php:543 +#: src/Core/Installer.php:536 msgid "" "In order to store these compiled templates, the web server needs to have " "write access to the directory view/smarty3/ under the Friendica top level " "folder." msgstr "Per poder guardar aquestes plantilles compilades, el servidor web necessita tenir accés d'escriptura al directori view/smarty3/ sota la carpeta principal de Friendica." -#: src/Core/Installer.php:544 +#: src/Core/Installer.php:537 msgid "" "Please ensure that the user that your web server runs as (e.g. www-data) has" " write access to this folder." msgstr "Per favor, asegura que l'usuari que corre el servidor web (p.e. www-data) te accés d'escriptura a aquesta carpeta." -#: src/Core/Installer.php:545 +#: src/Core/Installer.php:538 msgid "" "Note: as a security measure, you should give the web server write access to " "view/smarty3/ only--not the template files (.tpl) that it contains." msgstr "Nota: Com a mesura de seguretat, hauries de facilitar al servidor web, accés d'escriptura a view/smarty3/ excepte els fitxers de plantilles (.tpl) que conté." -#: src/Core/Installer.php:548 +#: src/Core/Installer.php:541 msgid "view/smarty3 is writable" msgstr "view/smarty3 es escribible" -#: src/Core/Installer.php:576 +#: src/Core/Installer.php:569 msgid "" "Url rewrite in .htaccess seems not working. Make sure you copied .htaccess-" "dist to .htaccess." msgstr "" -#: src/Core/Installer.php:577 +#: src/Core/Installer.php:570 msgid "" "In some circumstances (like running inside containers), you can skip this " "error." msgstr "" -#: src/Core/Installer.php:579 +#: src/Core/Installer.php:572 msgid "Error message from Curl when fetching" msgstr "" -#: src/Core/Installer.php:585 +#: src/Core/Installer.php:578 msgid "Url rewrite is working" msgstr "URL rewrite està treballant" -#: src/Core/Installer.php:614 +#: src/Core/Installer.php:607 msgid "" "The detection of TLS to secure the communication between the browser and the" " new Friendica server failed." msgstr "" -#: src/Core/Installer.php:615 +#: src/Core/Installer.php:608 msgid "" "It is highly encouraged to use Friendica only over a secure connection as " "sensitive information like passwords will be transmitted." msgstr "" -#: src/Core/Installer.php:616 +#: src/Core/Installer.php:609 msgid "Please ensure that the connection to the server is secure." msgstr "" -#: src/Core/Installer.php:617 +#: src/Core/Installer.php:610 msgid "No TLS detected" msgstr "" -#: src/Core/Installer.php:619 +#: src/Core/Installer.php:612 msgid "TLS detected" msgstr "" -#: src/Core/Installer.php:636 +#: src/Core/Installer.php:629 msgid "ImageMagick PHP extension is not installed" msgstr "" -#: src/Core/Installer.php:638 +#: src/Core/Installer.php:631 msgid "ImageMagick PHP extension is installed" msgstr "" -#: src/Core/Installer.php:659 +#: src/Core/Installer.php:652 msgid "Database already in use." msgstr "" -#: src/Core/Installer.php:664 +#: src/Core/Installer.php:657 msgid "Could not connect to database." msgstr "No puc connectar a la base de dades." -#: src/Core/L10n.php:444 src/Model/Item.php:2298 +#: src/Core/L10n.php:430 src/Model/Item.php:2315 msgid "Undetermined" msgstr "" -#: src/Core/L10n.php:451 +#: src/Core/L10n.php:437 #, php-format msgid "%s (%s)" msgstr "" -#: src/Core/L10n.php:499 src/Model/Event.php:430 -#: src/Module/Settings/Display.php:287 +#: src/Core/L10n.php:485 src/Model/Event.php:416 +#: src/Module/Settings/Display.php:270 msgid "Monday" msgstr "Dilluns" -#: src/Core/L10n.php:499 src/Model/Event.php:431 -#: src/Module/Settings/Display.php:288 +#: src/Core/L10n.php:485 src/Model/Event.php:417 +#: src/Module/Settings/Display.php:271 msgid "Tuesday" msgstr "Dimarts" -#: src/Core/L10n.php:499 src/Model/Event.php:432 -#: src/Module/Settings/Display.php:289 +#: src/Core/L10n.php:485 src/Model/Event.php:418 +#: src/Module/Settings/Display.php:272 msgid "Wednesday" msgstr "Dimecres" -#: src/Core/L10n.php:499 src/Model/Event.php:433 -#: src/Module/Settings/Display.php:290 +#: src/Core/L10n.php:485 src/Model/Event.php:419 +#: src/Module/Settings/Display.php:273 msgid "Thursday" msgstr "Dijous" -#: src/Core/L10n.php:499 src/Model/Event.php:434 -#: src/Module/Settings/Display.php:291 +#: src/Core/L10n.php:485 src/Model/Event.php:420 +#: src/Module/Settings/Display.php:274 msgid "Friday" msgstr "Divendres" -#: src/Core/L10n.php:499 src/Model/Event.php:435 -#: src/Module/Settings/Display.php:292 +#: src/Core/L10n.php:485 src/Model/Event.php:421 +#: src/Module/Settings/Display.php:275 msgid "Saturday" msgstr "Dissabte" -#: src/Core/L10n.php:499 src/Model/Event.php:429 -#: src/Module/Settings/Display.php:286 +#: src/Core/L10n.php:485 src/Model/Event.php:415 +#: src/Module/Settings/Display.php:269 msgid "Sunday" msgstr "Diumenge" -#: src/Core/L10n.php:503 src/Model/Event.php:450 +#: src/Core/L10n.php:489 src/Model/Event.php:436 msgid "January" msgstr "Gener" -#: src/Core/L10n.php:503 src/Model/Event.php:451 +#: src/Core/L10n.php:489 src/Model/Event.php:437 msgid "February" msgstr "Febrer" -#: src/Core/L10n.php:503 src/Model/Event.php:452 +#: src/Core/L10n.php:489 src/Model/Event.php:438 msgid "March" msgstr "Març" -#: src/Core/L10n.php:503 src/Model/Event.php:453 +#: src/Core/L10n.php:489 src/Model/Event.php:439 msgid "April" msgstr "Abril" -#: src/Core/L10n.php:503 src/Core/L10n.php:522 src/Model/Event.php:441 +#: src/Core/L10n.php:489 src/Core/L10n.php:508 src/Model/Event.php:427 msgid "May" msgstr "Maig" -#: src/Core/L10n.php:503 src/Model/Event.php:454 +#: src/Core/L10n.php:489 src/Model/Event.php:440 msgid "June" msgstr "Juny" -#: src/Core/L10n.php:503 src/Model/Event.php:455 +#: src/Core/L10n.php:489 src/Model/Event.php:441 msgid "July" msgstr "Juliol" -#: src/Core/L10n.php:503 src/Model/Event.php:456 +#: src/Core/L10n.php:489 src/Model/Event.php:442 msgid "August" msgstr "Agost" -#: src/Core/L10n.php:503 src/Model/Event.php:457 +#: src/Core/L10n.php:489 src/Model/Event.php:443 msgid "September" msgstr "Setembre" -#: src/Core/L10n.php:503 src/Model/Event.php:458 +#: src/Core/L10n.php:489 src/Model/Event.php:444 msgid "October" msgstr "Octubre" -#: src/Core/L10n.php:503 src/Model/Event.php:459 +#: src/Core/L10n.php:489 src/Model/Event.php:445 msgid "November" msgstr "Novembre" -#: src/Core/L10n.php:503 src/Model/Event.php:460 +#: src/Core/L10n.php:489 src/Model/Event.php:446 msgid "December" msgstr "Desembre" -#: src/Core/L10n.php:518 src/Model/Event.php:422 +#: src/Core/L10n.php:504 src/Model/Event.php:408 msgid "Mon" msgstr "Dl" -#: src/Core/L10n.php:518 src/Model/Event.php:423 +#: src/Core/L10n.php:504 src/Model/Event.php:409 msgid "Tue" msgstr "Dt" -#: src/Core/L10n.php:518 src/Model/Event.php:424 +#: src/Core/L10n.php:504 src/Model/Event.php:410 msgid "Wed" msgstr "Dc" -#: src/Core/L10n.php:518 src/Model/Event.php:425 +#: src/Core/L10n.php:504 src/Model/Event.php:411 msgid "Thu" msgstr "Dj" -#: src/Core/L10n.php:518 src/Model/Event.php:426 +#: src/Core/L10n.php:504 src/Model/Event.php:412 msgid "Fri" msgstr "Dv" -#: src/Core/L10n.php:518 src/Model/Event.php:427 +#: src/Core/L10n.php:504 src/Model/Event.php:413 msgid "Sat" msgstr "Ds" -#: src/Core/L10n.php:518 src/Model/Event.php:421 +#: src/Core/L10n.php:504 src/Model/Event.php:407 msgid "Sun" msgstr "Dg" -#: src/Core/L10n.php:522 src/Model/Event.php:437 +#: src/Core/L10n.php:508 src/Model/Event.php:423 msgid "Jan" msgstr "Gen" -#: src/Core/L10n.php:522 src/Model/Event.php:438 +#: src/Core/L10n.php:508 src/Model/Event.php:424 msgid "Feb" msgstr "Feb" -#: src/Core/L10n.php:522 src/Model/Event.php:439 +#: src/Core/L10n.php:508 src/Model/Event.php:425 msgid "Mar" msgstr "Mar" -#: src/Core/L10n.php:522 src/Model/Event.php:440 +#: src/Core/L10n.php:508 src/Model/Event.php:426 msgid "Apr" msgstr "Abr" -#: src/Core/L10n.php:522 src/Model/Event.php:442 +#: src/Core/L10n.php:508 src/Model/Event.php:428 msgid "Jun" msgstr "Jun" -#: src/Core/L10n.php:522 src/Model/Event.php:443 +#: src/Core/L10n.php:508 src/Model/Event.php:429 msgid "Jul" msgstr "Jul" -#: src/Core/L10n.php:522 src/Model/Event.php:444 +#: src/Core/L10n.php:508 src/Model/Event.php:430 msgid "Aug" msgstr "Ago" -#: src/Core/L10n.php:522 +#: src/Core/L10n.php:508 msgid "Sep" msgstr "Set" -#: src/Core/L10n.php:522 src/Model/Event.php:446 +#: src/Core/L10n.php:508 src/Model/Event.php:432 msgid "Oct" msgstr "Oct" -#: src/Core/L10n.php:522 src/Model/Event.php:447 +#: src/Core/L10n.php:508 src/Model/Event.php:433 msgid "Nov" msgstr "Nov" -#: src/Core/L10n.php:522 src/Model/Event.php:448 +#: src/Core/L10n.php:508 src/Model/Event.php:434 msgid "Dec" msgstr "Des" -#: src/Core/Logger/Util/LoggerSettingsCheck.php:60 +#: src/Core/Logger/Util/LoggerSettingsCheck.php:46 #, php-format msgid "The logfile '%s' is not usable. No logging possible (error: '%s')" msgstr "" -#: src/Core/Logger/Util/LoggerSettingsCheck.php:85 +#: src/Core/Logger/Util/LoggerSettingsCheck.php:71 #, php-format msgid "" "The debug logfile '%s' is not usable. No logging possible (error: '%s')" msgstr "" -#: src/Core/Renderer.php:89 src/Core/Renderer.php:118 -#: src/Core/Renderer.php:147 src/Core/Renderer.php:181 -#: src/Render/FriendicaSmartyEngine.php:60 +#: src/Core/Renderer.php:78 src/Core/Renderer.php:107 +#: src/Core/Renderer.php:136 src/Core/Renderer.php:170 +#: src/Render/FriendicaSmartyEngine.php:46 msgid "" "Friendica can't display this page at the moment, please contact the " "administrator." msgstr "" -#: src/Core/Renderer.php:143 +#: src/Core/Renderer.php:132 msgid "template engine cannot be registered without a name." msgstr "" -#: src/Core/Renderer.php:177 +#: src/Core/Renderer.php:166 msgid "template engine is not registered!" msgstr "" -#: src/Core/Storage/Type/FilesystemConfig.php:78 +#: src/Core/Storage/Type/FilesystemConfig.php:64 msgid "Storage base path" msgstr "Ruta base d'emmagatzematge" -#: src/Core/Storage/Type/FilesystemConfig.php:80 +#: src/Core/Storage/Type/FilesystemConfig.php:66 msgid "" "Folder where uploaded files are saved. For maximum security, This should be " "a path outside web server folder tree" msgstr "Carpeta on es desen els fitxers penjats. Per a la màxima seguretat, aquest ha de ser un camí fora de l'arbre de carpetes del servidor web" -#: src/Core/Storage/Type/FilesystemConfig.php:93 +#: src/Core/Storage/Type/FilesystemConfig.php:79 msgid "Enter a valid existing folder" msgstr "Introduïu una carpeta existent vàlida" -#: src/Core/Update.php:80 +#: src/Core/Update.php:66 #, php-format msgid "" "Updates from version %s are not supported. Please update at least to version" " 2021.01 and wait until the postupdate finished version 1383." msgstr "" -#: src/Core/Update.php:91 +#: src/Core/Update.php:77 #, php-format msgid "" "Updates from postupdate version %s are not supported. Please update at least" " to version 2021.01 and wait until the postupdate finished version 1383." msgstr "" -#: src/Core/Update.php:183 +#: src/Core/Update.php:169 #, php-format msgid "%s: executing pre update %d" msgstr "" -#: src/Core/Update.php:225 +#: src/Core/Update.php:211 #, php-format msgid "%s: executing post update %d" msgstr "" -#: src/Core/Update.php:299 +#: src/Core/Update.php:285 #, php-format msgid "Update %s failed. See error logs." msgstr "Actualització de %s fracassà. Mira el registre d'errors." -#: src/Core/Update.php:339 +#: src/Core/Update.php:325 #, php-format msgid "" "\n" @@ -3112,49 +3173,49 @@ msgid "" "\t\t\t\tfriendica developer if you can not help me on your own. My database might be invalid." msgstr "\n\t\t\t\tEls desenvolupadors de Friendica van publicar l'actualització %s recentment\n\t\t\t\tperò, quan vaig intentar instal·lar-ho, alguna cosa va anar terriblement malament.\n\t\t\t\tAixò s'ha de solucionar aviat i no ho puc fer sol. Contacteu amb\n\t\t\t\tdesenvolupador amic si no em podeu ajudar pel vostre compte. És possible que la meva base de dades no sigui vàlida." -#: src/Core/Update.php:345 +#: src/Core/Update.php:331 #, php-format msgid "The error message is\\n[pre]%s[/pre]" msgstr "" -#: src/Core/Update.php:349 src/Core/Update.php:377 +#: src/Core/Update.php:335 src/Core/Update.php:363 msgid "[Friendica Notify] Database update" msgstr "[Notificació Friendica] Actualització de la base de dades" -#: src/Core/Update.php:371 +#: src/Core/Update.php:357 #, php-format msgid "" "\n" "\t\t\t\tThe friendica database was successfully updated from %s to %s." msgstr "" -#: src/Database/DBStructure.php:57 +#: src/Database/DBStructure.php:43 #, php-format msgid "The database version had been set to %s." msgstr "" -#: src/Database/DBStructure.php:82 +#: src/Database/DBStructure.php:68 #, php-format msgid "" "The post update is at version %d, it has to be at %d to safely drop the " "tables." msgstr "" -#: src/Database/DBStructure.php:95 +#: src/Database/DBStructure.php:81 msgid "No unused tables found." msgstr "" -#: src/Database/DBStructure.php:100 +#: src/Database/DBStructure.php:86 msgid "" "These tables are not used for friendica and will be deleted when you execute" " \"dbstructure drop -e\":" msgstr "" -#: src/Database/DBStructure.php:137 +#: src/Database/DBStructure.php:123 msgid "There are no tables on MyISAM or InnoDB with the Antelope file format." msgstr "" -#: src/Database/DBStructure.php:161 +#: src/Database/DBStructure.php:147 #, php-format msgid "" "\n" @@ -3162,659 +3223,654 @@ msgid "" "%s\n" msgstr "\nError %d es va produir durant l'actualització de la base de dades:\n%s\n" -#: src/Database/DBStructure.php:164 +#: src/Database/DBStructure.php:150 msgid "Errors encountered performing database changes: " msgstr "S'han produït errors en realitzar canvis de base de dades:" -#: src/Database/DBStructure.php:232 +#: src/Database/DBStructure.php:218 msgid "Another database update is currently running." msgstr "" -#: src/Database/DBStructure.php:236 +#: src/Database/DBStructure.php:222 #, php-format msgid "%s: Database update" msgstr "%s: Actualització de la base de dades" -#: src/Database/DBStructure.php:493 +#: src/Database/DBStructure.php:479 #, php-format msgid "%s: updating %s table." msgstr "%s: actualització %s taula." -#: src/Factory/Api/Mastodon/Error.php:42 +#: src/Factory/Api/Mastodon/Error.php:28 msgid "Record not found" msgstr "" -#: src/Factory/Api/Mastodon/Error.php:49 +#: src/Factory/Api/Mastodon/Error.php:35 msgid "Unprocessable Entity" msgstr "" -#: src/Factory/Api/Mastodon/Error.php:56 +#: src/Factory/Api/Mastodon/Error.php:42 msgid "Unauthorized" msgstr "" -#: src/Factory/Api/Mastodon/Error.php:62 +#: src/Factory/Api/Mastodon/Error.php:48 msgid "" "Token is not authorized with a valid user or is missing a required scope" msgstr "" -#: src/Factory/Api/Mastodon/Error.php:69 +#: src/Factory/Api/Mastodon/Error.php:55 msgid "Internal Server Error" msgstr "" -#: src/LegacyModule.php:63 +#: src/LegacyModule.php:49 #, php-format msgid "Legacy module file not found: %s" msgstr "" -#: src/Model/Circle.php:106 +#: src/Model/Circle.php:92 msgid "" "A deleted circle with this name was revived. Existing item permissions " "may apply to this circle and any future members. If this is" " not what you intended, please create another circle with a different name." msgstr "" -#: src/Model/Circle.php:544 +#: src/Model/Circle.php:530 msgid "Everybody" msgstr "Tothom" -#: src/Model/Circle.php:563 +#: src/Model/Circle.php:549 msgid "edit" msgstr "editar" -#: src/Model/Circle.php:600 +#: src/Model/Circle.php:586 msgid "add" msgstr "afegir" -#: src/Model/Circle.php:605 +#: src/Model/Circle.php:591 msgid "Edit circle" msgstr "" -#: src/Model/Circle.php:606 src/Module/Circle.php:193 +#: src/Model/Circle.php:592 src/Module/Circle.php:181 msgid "Contacts not in any circle" msgstr "" -#: src/Model/Circle.php:608 +#: src/Model/Circle.php:594 msgid "Create a new circle" msgstr "" -#: src/Model/Circle.php:609 src/Module/Circle.php:178 -#: src/Module/Circle.php:201 src/Module/Circle.php:276 +#: src/Model/Circle.php:595 src/Module/Circle.php:166 +#: src/Module/Circle.php:189 src/Module/Circle.php:264 msgid "Circle Name: " msgstr "" -#: src/Model/Circle.php:610 +#: src/Model/Circle.php:596 msgid "Edit circles" msgstr "" -#: src/Model/Contact.php:1257 src/Module/Moderation/Users/Pending.php:102 -#: src/Module/Notifications/Introductions.php:132 -#: src/Module/Notifications/Introductions.php:204 +#: src/Model/Contact.php:1263 src/Module/Moderation/Users/Pending.php:88 +#: src/Module/Notifications/Introductions.php:124 +#: src/Module/Notifications/Introductions.php:196 msgid "Approve" msgstr "Aprovar" -#: src/Model/Contact.php:1735 +#: src/Model/Contact.php:1743 msgid "Organisation" msgstr "" -#: src/Model/Contact.php:1743 +#: src/Model/Contact.php:1751 msgid "Group" msgstr "" -#: src/Model/Contact.php:1747 src/Module/Moderation/BaseUsers.php:130 +#: src/Model/Contact.php:1755 src/Module/Moderation/BaseUsers.php:120 msgid "Relay" msgstr "" -#: src/Model/Contact.php:3050 +#: src/Model/Contact.php:3070 msgid "Disallowed profile URL." msgstr "Perfil URL no permès." -#: src/Model/Contact.php:3055 src/Module/Friendica.php:101 +#: src/Model/Contact.php:3075 src/Module/Friendica.php:86 msgid "Blocked domain" msgstr "" -#: src/Model/Contact.php:3060 +#: src/Model/Contact.php:3080 msgid "Connect URL missing." msgstr "URL del connector perduda." -#: src/Model/Contact.php:3069 +#: src/Model/Contact.php:3089 msgid "" "The contact could not be added. Please check the relevant network " "credentials in your Settings -> Social Networks page." msgstr "" -#: src/Model/Contact.php:3087 +#: src/Model/Contact.php:3107 #, php-format msgid "Expected network %s does not match actual network %s" msgstr "" -#: src/Model/Contact.php:3104 +#: src/Model/Contact.php:3124 msgid "This seems to be a relay account. They can't be followed by users." msgstr "" -#: src/Model/Contact.php:3111 +#: src/Model/Contact.php:3131 msgid "The profile address specified does not provide adequate information." msgstr "L'adreça de perfil especificada no proveeix informació adient." -#: src/Model/Contact.php:3113 +#: src/Model/Contact.php:3133 msgid "No compatible communication protocols or feeds were discovered." msgstr "Protocol de comunnicació no compatible o alimentador descobert." -#: src/Model/Contact.php:3116 +#: src/Model/Contact.php:3136 msgid "An author or name was not found." msgstr "Un autor o nom no va ser trobat" -#: src/Model/Contact.php:3119 +#: src/Model/Contact.php:3139 msgid "No browser URL could be matched to this address." msgstr "Cap direcció URL del navegador coincideix amb aquesta adreça." -#: src/Model/Contact.php:3122 +#: src/Model/Contact.php:3142 msgid "" "Unable to match @-style Identity Address with a known protocol or email " "contact." msgstr "Incapaç de trobar coincidències amb la Adreça d'Identitat estil @ amb els protocols coneguts o contactes de correu. " -#: src/Model/Contact.php:3123 +#: src/Model/Contact.php:3143 msgid "Use mailto: in front of address to force email check." msgstr "Emprar mailto: davant la adreça per a forçar la comprovació del correu." -#: src/Model/Contact.php:3129 -msgid "" -"The profile address specified belongs to a network which has been disabled " -"on this site." -msgstr "La direcció del perfil especificat pertany a una xarxa que ha estat desactivada en aquest lloc." - -#: src/Model/Contact.php:3134 +#: src/Model/Contact.php:3149 msgid "" "Limited profile. This person will be unable to receive direct/personal " "notifications from you." msgstr "Perfil limitat. Aquesta persona no podrà rebre notificacions personals/directes de tu." -#: src/Model/Contact.php:3200 +#: src/Model/Contact.php:3208 msgid "Unable to retrieve contact information." msgstr "No es pot recuperar la informació de contacte." -#: src/Model/Event.php:54 +#: src/Model/Event.php:40 msgid "l F d, Y \\@ g:i A \\G\\M\\TP (e)" msgstr "" -#: src/Model/Event.php:75 src/Model/Event.php:92 src/Model/Event.php:469 -#: src/Model/Event.php:942 +#: src/Model/Event.php:61 src/Model/Event.php:78 src/Model/Event.php:455 +#: src/Model/Event.php:928 msgid "Starts:" msgstr "Inici:" -#: src/Model/Event.php:78 src/Model/Event.php:98 src/Model/Event.php:470 -#: src/Model/Event.php:946 +#: src/Model/Event.php:64 src/Model/Event.php:84 src/Model/Event.php:456 +#: src/Model/Event.php:932 msgid "Finishes:" msgstr "Acaba:" -#: src/Model/Event.php:419 +#: src/Model/Event.php:405 msgid "all-day" msgstr "tot el dia" -#: src/Model/Event.php:445 +#: src/Model/Event.php:431 msgid "Sept" msgstr "Set" -#: src/Model/Event.php:462 src/Module/Calendar/Show.php:128 -#: src/Util/Temporal.php:343 +#: src/Model/Event.php:448 src/Module/Calendar/Show.php:114 +#: src/Util/Temporal.php:329 msgid "today" msgstr "avui" -#: src/Model/Event.php:463 src/Module/Calendar/Show.php:129 -#: src/Module/Settings/Display.php:297 src/Util/Temporal.php:353 +#: src/Model/Event.php:449 src/Module/Calendar/Show.php:115 +#: src/Module/Settings/Display.php:280 src/Util/Temporal.php:339 msgid "month" msgstr "mes" -#: src/Model/Event.php:464 src/Module/Calendar/Show.php:130 -#: src/Module/Settings/Display.php:298 src/Util/Temporal.php:354 +#: src/Model/Event.php:450 src/Module/Calendar/Show.php:116 +#: src/Module/Settings/Display.php:281 src/Util/Temporal.php:340 msgid "week" msgstr "setmana" -#: src/Model/Event.php:465 src/Module/Calendar/Show.php:131 -#: src/Module/Settings/Display.php:299 src/Util/Temporal.php:355 +#: src/Model/Event.php:451 src/Module/Calendar/Show.php:117 +#: src/Module/Settings/Display.php:282 src/Util/Temporal.php:341 msgid "day" msgstr "dia" -#: src/Model/Event.php:467 +#: src/Model/Event.php:453 msgid "No events to display" msgstr "No hi ha esdeveniments per mostrar" -#: src/Model/Event.php:516 src/Module/DFRN/Poll.php:47 src/Module/Feed.php:69 -#: src/Module/Update/Profile.php:56 +#: src/Model/Event.php:502 src/Module/Feed.php:56 +#: src/Module/Update/Profile.php:42 msgid "Access to this profile has been restricted." msgstr "L'accés a aquest perfil ha estat restringit." -#: src/Model/Event.php:558 src/Module/Calendar/Event/Show.php:67 +#: src/Model/Event.php:544 src/Module/Calendar/Event/Show.php:53 msgid "Event not found." msgstr "" -#: src/Model/Event.php:637 +#: src/Model/Event.php:623 msgid "l, F j" msgstr "l, F j" -#: src/Model/Event.php:664 +#: src/Model/Event.php:650 msgid "Edit event" msgstr "Editar esdeveniment" -#: src/Model/Event.php:665 +#: src/Model/Event.php:651 msgid "Duplicate event" msgstr "Esdeveniment duplicat" -#: src/Model/Event.php:666 +#: src/Model/Event.php:652 msgid "Delete event" msgstr "Esborrar esdeveniment" -#: src/Model/Event.php:896 src/Module/Debug/Localtime.php:38 +#: src/Model/Event.php:882 src/Module/Debug/Localtime.php:24 msgid "l F d, Y \\@ g:i A" msgstr "l F d, Y \\@ g:i A" -#: src/Model/Event.php:897 +#: src/Model/Event.php:883 msgid "D g:i A" msgstr "D g:i A" -#: src/Model/Event.php:898 +#: src/Model/Event.php:884 msgid "g:i A" msgstr "g:i A" -#: src/Model/Event.php:961 src/Model/Event.php:963 +#: src/Model/Event.php:947 src/Model/Event.php:949 msgid "Show map" msgstr "Mostra el mapa" -#: src/Model/Event.php:962 +#: src/Model/Event.php:948 msgid "Hide map" msgstr "Amaga el mapa" -#: src/Model/Event.php:1055 +#: src/Model/Event.php:1041 #, php-format msgid "%s's birthday" msgstr "%s aniversari" -#: src/Model/Event.php:1056 +#: src/Model/Event.php:1042 #, php-format msgid "Happy Birthday %s" msgstr "Feliç Aniversari %s" -#: src/Model/Item.php:2305 +#: src/Model/Item.php:2322 #, php-format msgid "%s (%s - %s): %s" msgstr "" -#: src/Model/Item.php:2307 +#: src/Model/Item.php:2324 #, php-format msgid "%s (%s): %s" msgstr "" -#: src/Model/Item.php:2310 +#: src/Model/Item.php:2327 #, php-format -msgid "Detected languages in this post:\\n%s" +msgid "" +"Detected languages in this post:\n" +"%s" msgstr "" -#: src/Model/Item.php:3258 +#: src/Model/Item.php:3276 msgid "activity" msgstr "activitat" -#: src/Model/Item.php:3260 +#: src/Model/Item.php:3278 msgid "comment" msgstr "" -#: src/Model/Item.php:3263 src/Module/Post/Tag/Add.php:123 +#: src/Model/Item.php:3281 src/Module/Post/Tag/Add.php:109 msgid "post" msgstr "missatge" -#: src/Model/Item.php:3434 +#: src/Model/Item.php:3451 #, php-format msgid "%s is blocked" msgstr "" -#: src/Model/Item.php:3436 +#: src/Model/Item.php:3453 #, php-format msgid "%s is ignored" msgstr "" -#: src/Model/Item.php:3438 +#: src/Model/Item.php:3455 #, php-format msgid "Content from %s is collapsed" msgstr "" -#: src/Model/Item.php:3442 -#, php-format -msgid "Content warning: %s" +#: src/Model/Item.php:3459 +msgid "Sensitive content" msgstr "" -#: src/Model/Item.php:3906 +#: src/Model/Item.php:3928 msgid "bytes" msgstr "bytes" -#: src/Model/Item.php:3937 +#: src/Model/Item.php:3959 #, 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:3939 +#: src/Model/Item.php:3961 #, php-format msgid "%2$s (%1$d vote)" msgid_plural "%2$s (%1$d votes)" msgstr[0] "" msgstr[1] "" -#: src/Model/Item.php:3944 +#: src/Model/Item.php:3966 #, php-format msgid "%d voter. Poll end: %s" msgid_plural "%d voters. Poll end: %s" msgstr[0] "" msgstr[1] "" -#: src/Model/Item.php:3946 +#: src/Model/Item.php:3968 #, php-format msgid "%d voter." msgid_plural "%d voters." msgstr[0] "" msgstr[1] "" -#: src/Model/Item.php:3948 +#: src/Model/Item.php:3970 #, php-format msgid "Poll end: %s" msgstr "" -#: src/Model/Item.php:3982 src/Model/Item.php:3983 +#: src/Model/Item.php:4011 src/Model/Item.php:4012 msgid "View on separate page" msgstr "Veure en un altre pàgina" -#: src/Model/Mail.php:135 +#: src/Model/Mail.php:121 msgid "[no subject]" msgstr "[Sense assumpte]" -#: src/Model/Photo.php:1187 src/Module/Media/Photo/Upload.php:168 +#: src/Model/Photo.php:1194 src/Module/Media/Photo/Upload.php:154 msgid "Wall Photos" msgstr "Fotos del Mur" -#: src/Model/Profile.php:363 src/Module/Profile/Profile.php:283 -#: src/Module/Profile/Profile.php:285 +#: src/Model/Profile.php:343 src/Module/Profile/Profile.php:271 +#: src/Module/Profile/Profile.php:273 msgid "Edit profile" msgstr "Editar perfil" -#: src/Model/Profile.php:365 +#: src/Model/Profile.php:345 msgid "Change profile photo" msgstr "Canviar la foto del perfil" -#: src/Model/Profile.php:378 src/Module/Directory.php:152 -#: src/Module/Profile/Profile.php:209 +#: src/Model/Profile.php:358 src/Module/Directory.php:139 +#: src/Module/Profile/Profile.php:197 msgid "Homepage:" msgstr "Pàgina web:" -#: src/Model/Profile.php:379 src/Module/Contact/Profile.php:412 -#: src/Module/Notifications/Introductions.php:189 +#: src/Model/Profile.php:359 src/Module/Contact/Profile.php:418 +#: src/Module/Notifications/Introductions.php:181 msgid "About:" msgstr "Acerca de:" -#: src/Model/Profile.php:481 +#: src/Model/Profile.php:460 msgid "Atom feed" msgstr "" -#: src/Model/Profile.php:488 +#: src/Model/Profile.php:467 msgid "This website has been verified to belong to the same person." msgstr "" -#: src/Model/Profile.php:539 +#: src/Model/Profile.php:518 msgid "F d" msgstr "F d" -#: src/Model/Profile.php:603 src/Model/Profile.php:680 +#: src/Model/Profile.php:582 src/Model/Profile.php:663 msgid "[today]" msgstr "[avui]" -#: src/Model/Profile.php:612 +#: src/Model/Profile.php:591 msgid "Birthday Reminders" msgstr "Recordatori d'Aniversaris" -#: src/Model/Profile.php:613 +#: src/Model/Profile.php:592 msgid "Birthdays this week:" msgstr "Aniversari aquesta setmana" -#: src/Model/Profile.php:629 +#: src/Model/Profile.php:608 msgid "g A l F d" msgstr "g A l F d" -#: src/Model/Profile.php:667 +#: src/Model/Profile.php:650 msgid "[No description]" msgstr "[sense descripció]" -#: src/Model/Profile.php:693 +#: src/Model/Profile.php:676 msgid "Event Reminders" msgstr "Recordatori d'Esdeveniments" -#: src/Model/Profile.php:694 +#: src/Model/Profile.php:677 msgid "Upcoming events the next 7 days:" msgstr "" -#: src/Model/Profile.php:893 -#, php-format -msgid "OpenWebAuth: %1$s welcomes %2$s" -msgstr "" - -#: src/Model/Profile.php:1033 +#: src/Model/Profile.php:789 msgid "Hometown:" msgstr "Lloc de residència:" -#: src/Model/Profile.php:1034 +#: src/Model/Profile.php:790 msgid "Marital Status:" msgstr "" -#: src/Model/Profile.php:1035 +#: src/Model/Profile.php:791 msgid "With:" msgstr "" -#: src/Model/Profile.php:1036 +#: src/Model/Profile.php:792 msgid "Since:" msgstr "" -#: src/Model/Profile.php:1037 +#: src/Model/Profile.php:793 msgid "Sexual Preference:" msgstr "Preferència Sexual:" -#: src/Model/Profile.php:1038 +#: src/Model/Profile.php:794 msgid "Political Views:" msgstr "Idees Polítiques:" -#: src/Model/Profile.php:1039 +#: src/Model/Profile.php:795 msgid "Religious Views:" msgstr "Creencies Religioses:" -#: src/Model/Profile.php:1040 +#: src/Model/Profile.php:796 msgid "Likes:" msgstr "Agrada:" -#: src/Model/Profile.php:1041 +#: src/Model/Profile.php:797 msgid "Dislikes:" msgstr "No Agrada" -#: src/Model/Profile.php:1042 +#: src/Model/Profile.php:798 msgid "Title/Description:" msgstr "Títol/Descripció:" -#: src/Model/Profile.php:1043 src/Module/Admin/Summary.php:197 -#: src/Module/Moderation/Report/Create.php:280 -#: src/Module/Moderation/Summary.php:76 +#: src/Model/Profile.php:799 src/Module/Admin/Summary.php:183 +#: src/Module/Moderation/Report/Create.php:266 +#: src/Module/Moderation/Summary.php:62 msgid "Summary" msgstr "Sumari" -#: src/Model/Profile.php:1044 +#: src/Model/Profile.php:800 msgid "Musical interests" msgstr "Gustos musicals" -#: src/Model/Profile.php:1045 +#: src/Model/Profile.php:801 msgid "Books, literature" msgstr "Llibres, Literatura" -#: src/Model/Profile.php:1046 +#: src/Model/Profile.php:802 msgid "Television" msgstr "Televisió" -#: src/Model/Profile.php:1047 +#: src/Model/Profile.php:803 msgid "Film/dance/culture/entertainment" msgstr "Cinema/ball/cultura/entreteniments" -#: src/Model/Profile.php:1048 +#: src/Model/Profile.php:804 msgid "Hobbies/Interests" msgstr "Aficions/Interessos" -#: src/Model/Profile.php:1049 +#: src/Model/Profile.php:805 msgid "Love/romance" msgstr "Amor/sentiments" -#: src/Model/Profile.php:1050 +#: src/Model/Profile.php:806 msgid "Work/employment" msgstr "Treball/ocupació" -#: src/Model/Profile.php:1051 +#: src/Model/Profile.php:807 msgid "School/education" msgstr "Ensenyament/estudis" -#: src/Model/Profile.php:1052 +#: src/Model/Profile.php:808 msgid "Contact information and Social Networks" msgstr "Informació de contacte i Xarxes Socials" -#: src/Model/User.php:228 src/Model/User.php:1294 +#: src/Model/Profile.php:856 +#, php-format +msgid "Responsible account: %s" +msgstr "" + +#: src/Model/User.php:217 src/Model/User.php:1310 msgid "SERIOUS ERROR: Generation of security keys failed." msgstr "ERROR IMPORTANT: La generació de claus de seguretat ha fallat." -#: src/Model/User.php:728 src/Model/User.php:761 +#: src/Model/User.php:740 src/Model/User.php:773 msgid "Login failed" msgstr "" -#: src/Model/User.php:793 +#: src/Model/User.php:805 msgid "Not enough information to authenticate" msgstr "" -#: src/Model/User.php:914 +#: src/Model/User.php:930 msgid "Password can't be empty" msgstr "" -#: src/Model/User.php:956 +#: src/Model/User.php:972 msgid "Empty passwords are not allowed." msgstr "" -#: src/Model/User.php:960 +#: src/Model/User.php:976 msgid "" "The new password has been exposed in a public data dump, please choose " "another." msgstr "" -#: src/Model/User.php:964 +#: src/Model/User.php:980 msgid "The password length is limited to 72 characters." msgstr "" -#: src/Model/User.php:968 +#: src/Model/User.php:984 msgid "The password can't contain white spaces nor accentuated letters" msgstr "" -#: src/Model/User.php:1177 +#: src/Model/User.php:1193 msgid "Passwords do not match. Password unchanged." msgstr "Les contrasenyes no coincideixen. Contrasenya no canviada." -#: src/Model/User.php:1184 +#: src/Model/User.php:1200 msgid "An invitation is required." msgstr "Es requereix invitació." -#: src/Model/User.php:1188 +#: src/Model/User.php:1204 msgid "Invitation could not be verified." msgstr "La invitació no ha pogut ser verificada." -#: src/Model/User.php:1196 +#: src/Model/User.php:1212 msgid "Invalid OpenID url" msgstr "OpenID url no vàlid" -#: src/Model/User.php:1209 src/Security/Authentication.php:241 +#: src/Model/User.php:1225 src/Security/Authentication.php:214 msgid "" "We encountered a problem while logging in with the OpenID you provided. " "Please check the correct spelling of the ID." msgstr "Em trobat un problema quan accedies amb la OpenID que has proporcionat. Per favor, revisa la cadena del ID." -#: src/Model/User.php:1209 src/Security/Authentication.php:241 +#: src/Model/User.php:1225 src/Security/Authentication.php:214 msgid "The error message was:" msgstr "El missatge d'error fou: " -#: src/Model/User.php:1215 +#: src/Model/User.php:1231 msgid "Please enter the required information." msgstr "Per favor, introdueixi la informació requerida." -#: src/Model/User.php:1229 +#: src/Model/User.php:1245 #, 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:1236 +#: src/Model/User.php:1252 #, 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:1240 +#: src/Model/User.php:1256 #, 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:1248 +#: src/Model/User.php:1264 msgid "That doesn't appear to be your full (First Last) name." msgstr "Això no sembla ser el teu nom complet." -#: src/Model/User.php:1253 +#: src/Model/User.php:1269 msgid "Your email domain is not among those allowed on this site." msgstr "El seu domini de correu electrònic no es troba entre els permesos en aquest lloc." -#: src/Model/User.php:1257 +#: src/Model/User.php:1273 msgid "Not a valid email address." msgstr "Adreça de correu no vàlida." -#: src/Model/User.php:1260 +#: src/Model/User.php:1276 msgid "The nickname was blocked from registration by the nodes admin." msgstr "" -#: src/Model/User.php:1264 src/Model/User.php:1270 +#: src/Model/User.php:1280 src/Model/User.php:1286 msgid "Cannot use that email." msgstr "No es pot utilitzar aquest correu electrònic." -#: src/Model/User.php:1276 +#: src/Model/User.php:1292 msgid "Your nickname can only contain a-z, 0-9 and _." msgstr "" -#: src/Model/User.php:1284 src/Model/User.php:1341 +#: src/Model/User.php:1300 src/Model/User.php:1350 msgid "Nickname is already registered. Please choose another." msgstr "àlies ja registrat. Tria un altre." -#: src/Model/User.php:1328 src/Model/User.php:1332 +#: src/Model/User.php:1337 src/Model/User.php:1341 msgid "An error occurred during registration. Please try again." msgstr "Un error ha succeït durant el registre. Intenta-ho de nou." -#: src/Model/User.php:1355 +#: src/Model/User.php:1364 msgid "An error occurred creating your default profile. Please try again." msgstr "Un error ha succeit durant la creació del teu perfil per defecte. Intenta-ho de nou." -#: src/Model/User.php:1362 +#: src/Model/User.php:1371 msgid "An error occurred creating your self contact. Please try again." msgstr "" -#: src/Model/User.php:1367 +#: src/Model/User.php:1376 msgid "Friends" msgstr "Amics/Amigues" -#: src/Model/User.php:1371 +#: src/Model/User.php:1380 msgid "" "An error occurred creating your default contact circle. Please try again." msgstr "" -#: src/Model/User.php:1413 +#: src/Model/User.php:1428 msgid "Profile Photos" msgstr "Fotos del Perfil" -#: src/Model/User.php:1595 +#: src/Model/User.php:1616 #, php-format msgid "" "\n" @@ -3822,7 +3878,7 @@ msgid "" "\t\t\tthe administrator of %2$s has set up an account for you." msgstr "" -#: src/Model/User.php:1598 +#: src/Model/User.php:1619 #, php-format msgid "" "\n" @@ -3853,12 +3909,12 @@ msgid "" "\t\tThank you and welcome to %4$s." msgstr "" -#: src/Model/User.php:1630 src/Model/User.php:1736 +#: src/Model/User.php:1651 src/Model/User.php:1757 #, php-format msgid "Registration details for %s" msgstr "Detalls del registre per a %s" -#: src/Model/User.php:1650 +#: src/Model/User.php:1671 #, php-format msgid "" "\n" @@ -3873,12 +3929,12 @@ msgid "" "\t\t" msgstr "" -#: src/Model/User.php:1669 +#: src/Model/User.php:1690 #, php-format msgid "Registration at %s" msgstr "" -#: src/Model/User.php:1693 +#: src/Model/User.php:1714 #, php-format msgid "" "\n" @@ -3887,7 +3943,7 @@ msgid "" "\t\t\t" msgstr "" -#: src/Model/User.php:1701 +#: src/Model/User.php:1722 #, php-format msgid "" "\n" @@ -3918,93 +3974,91 @@ msgid "" "\t\t\tThank you and welcome to %2$s." msgstr "" -#: src/Model/User.php:1763 +#: src/Model/User.php:1784 msgid "" "User with delegates can't be removed, please remove delegate users first" msgstr "" -#: src/Module/Admin/Addons/Details.php:65 +#: src/Module/Admin/Addons/Details.php:51 msgid "Addon not found." msgstr "" -#: src/Module/Admin/Addons/Details.php:76 src/Module/Admin/Addons/Index.php:49 +#: src/Module/Admin/Addons/Details.php:62 src/Module/Admin/Addons/Index.php:41 #, php-format msgid "Addon %s disabled." msgstr "" -#: src/Module/Admin/Addons/Details.php:79 src/Module/Admin/Addons/Index.php:51 +#: src/Module/Admin/Addons/Details.php:65 src/Module/Admin/Addons/Index.php:43 #, php-format msgid "Addon %s enabled." msgstr "" -#: src/Module/Admin/Addons/Details.php:88 -#: src/Module/Admin/Themes/Details.php:46 +#: src/Module/Admin/Addons/Details.php:74 +#: src/Module/Admin/Themes/Details.php:38 msgid "Disable" msgstr "Deshabilitar" -#: src/Module/Admin/Addons/Details.php:91 -#: src/Module/Admin/Themes/Details.php:49 src/Module/Settings/Display.php:344 +#: src/Module/Admin/Addons/Details.php:77 +#: src/Module/Admin/Themes/Details.php:41 src/Module/Settings/Display.php:326 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: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 -#: src/Module/Moderation/Users/Create.php:61 -#: src/Module/Moderation/Users/Pending.php:96 +#: src/Module/Admin/Addons/Details.php:97 src/Module/Admin/Addons/Index.php:59 +#: src/Module/Admin/Federation.php:206 src/Module/Admin/Logs/Settings.php:74 +#: src/Module/Admin/Logs/View.php:71 src/Module/Admin/Queue.php:59 +#: src/Module/Admin/Site.php:447 src/Module/Admin/Storage.php:124 +#: src/Module/Admin/Summary.php:182 src/Module/Admin/Themes/Details.php:82 +#: src/Module/Admin/Themes/Index.php:103 src/Module/Admin/Tos.php:63 +#: src/Module/Moderation/Users/Create.php:47 +#: src/Module/Moderation/Users/Pending.php:82 msgid "Administration" msgstr "Administració" -#: src/Module/Admin/Addons/Details.php:112 -#: src/Module/Admin/Addons/Index.php:68 src/Module/BaseAdmin.php:92 -#: src/Module/BaseSettings.php:139 +#: src/Module/Admin/Addons/Details.php:98 src/Module/Admin/Addons/Index.php:60 +#: src/Module/BaseAdmin.php:78 src/Module/BaseSettings.php:125 msgid "Addons" msgstr "" -#: src/Module/Admin/Addons/Details.php:113 -#: src/Module/Admin/Themes/Details.php:92 +#: src/Module/Admin/Addons/Details.php:99 +#: src/Module/Admin/Themes/Details.php:84 msgid "Toggle" msgstr "Canviar" -#: src/Module/Admin/Addons/Details.php:120 -#: src/Module/Admin/Themes/Details.php:100 +#: src/Module/Admin/Addons/Details.php:106 +#: src/Module/Admin/Themes/Details.php:92 msgid "Author: " msgstr "Autor:" -#: src/Module/Admin/Addons/Details.php:121 -#: src/Module/Admin/Themes/Details.php:101 +#: src/Module/Admin/Addons/Details.php:107 +#: src/Module/Admin/Themes/Details.php:93 msgid "Maintainer: " msgstr "Responsable:" -#: src/Module/Admin/Addons/Index.php:42 +#: src/Module/Admin/Addons/Index.php:34 msgid "Addons reloaded" msgstr "" -#: src/Module/Admin/Addons/Index.php:53 +#: src/Module/Admin/Addons/Index.php:45 #, php-format 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: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:312 -#: src/Module/Settings/Features.php:76 +#: src/Module/Admin/Addons/Index.php:61 src/Module/Admin/Features.php:69 +#: src/Module/Admin/Logs/Settings.php:76 src/Module/Admin/Site.php:450 +#: src/Module/Admin/Themes/Index.php:105 src/Module/Admin/Tos.php:72 +#: src/Module/Settings/Account.php:549 src/Module/Settings/Addons.php:64 +#: src/Module/Settings/Connectors.php:149 +#: src/Module/Settings/Connectors.php:235 +#: src/Module/Settings/Delegation.php:179 src/Module/Settings/Display.php:295 +#: src/Module/Settings/Features.php:61 msgid "Save Settings" msgstr "Desa la configuració" -#: src/Module/Admin/Addons/Index.php:70 +#: src/Module/Admin/Addons/Index.php:62 msgid "Reload active addons" msgstr "" -#: src/Module/Admin/Addons/Index.php:74 +#: src/Module/Admin/Addons/Index.php:66 #, php-format msgid "" "There are currently no addons available on your node. You can find the " @@ -4012,145 +4066,158 @@ msgid "" " the open addon registry at %2$s" msgstr "" -#: src/Module/Admin/DBSync.php:51 +#: src/Module/Admin/DBSync.php:37 msgid "Update has been marked successful" msgstr "L'actualització ha estat marcada amb èxit" -#: src/Module/Admin/DBSync.php:59 +#: src/Module/Admin/DBSync.php:45 #, php-format msgid "Database structure update %s was successfully applied." msgstr "" -#: src/Module/Admin/DBSync.php:61 +#: src/Module/Admin/DBSync.php:47 #, php-format msgid "Executing of database structure update %s failed with error: %s" msgstr "" -#: src/Module/Admin/DBSync.php:76 +#: src/Module/Admin/DBSync.php:62 #, php-format msgid "Executing %s failed with error: %s" msgstr "" -#: src/Module/Admin/DBSync.php:78 +#: src/Module/Admin/DBSync.php:64 #, php-format msgid "Update %s was successfully applied." msgstr "L'actualització de %s es va aplicar amb èxit." -#: src/Module/Admin/DBSync.php:81 +#: src/Module/Admin/DBSync.php:67 #, php-format msgid "Update %s did not return a status. Unknown if it succeeded." msgstr "L'actualització de %s no ha retornat el seu estatus. Es desconeix si ha estat amb èxit." -#: src/Module/Admin/DBSync.php:84 +#: src/Module/Admin/DBSync.php:70 #, php-format msgid "There was no additional update function %s that needed to be called." msgstr "" -#: src/Module/Admin/DBSync.php:105 +#: src/Module/Admin/DBSync.php:91 msgid "No failed updates." msgstr "No hi ha actualitzacions fallides." -#: src/Module/Admin/DBSync.php:106 +#: src/Module/Admin/DBSync.php:92 msgid "Check database structure" msgstr "" -#: src/Module/Admin/DBSync.php:110 +#: src/Module/Admin/DBSync.php:96 msgid "Failed Updates" msgstr "Actualitzacions Fallides" -#: src/Module/Admin/DBSync.php:111 +#: src/Module/Admin/DBSync.php:97 msgid "" "This does not include updates prior to 1139, which did not return a status." msgstr "Això no inclou actualitzacions anteriors a 1139, raó per la que no ha retornat l'estatus." -#: src/Module/Admin/DBSync.php:112 +#: src/Module/Admin/DBSync.php:98 msgid "Mark success (if update was manually applied)" msgstr "Marcat am èxit (si l'actualització es va fer manualment)" -#: src/Module/Admin/DBSync.php:113 +#: src/Module/Admin/DBSync.php:99 msgid "Attempt to execute this update step automatically" msgstr "Intentant executar aquest pas d'actualització automàticament" -#: src/Module/Admin/Features.php:76 -#, php-format -msgid "Lock feature %s" +#: src/Module/Admin/Features.php:53 +#: src/Module/Notifications/Introductions.php:136 +#: src/Module/OAuth/Acknowledge.php:41 src/Module/Register.php:124 +#: src/Module/Settings/TwoFactor/Trusted.php:115 +msgid "No" +msgstr "No" + +#: src/Module/Admin/Features.php:53 src/Module/Contact/Revoke.php:91 +#: src/Module/Notifications/Introductions.php:136 +#: src/Module/OAuth/Acknowledge.php:40 src/Module/Register.php:123 +#: src/Module/Settings/TwoFactor/Trusted.php:115 +msgid "Yes" +msgstr "Si" + +#: src/Module/Admin/Features.php:53 +msgid "Locked" msgstr "" -#: src/Module/Admin/Features.php:84 +#: src/Module/Admin/Features.php:67 msgid "Manage Additional Features" msgstr "" -#: src/Module/Admin/Federation.php:80 -#: src/Module/Moderation/Report/Create.php:191 -#: src/Module/Moderation/Report/Create.php:316 +#: src/Module/Admin/Federation.php:68 +#: src/Module/Moderation/Report/Create.php:177 +#: src/Module/Moderation/Report/Create.php:302 msgid "Other" msgstr "Altres" -#: src/Module/Admin/Federation.php:158 src/Module/Admin/Federation.php:407 +#: src/Module/Admin/Federation.php:146 src/Module/Admin/Federation.php:394 msgid "unknown" msgstr "" -#: src/Module/Admin/Federation.php:191 +#: src/Module/Admin/Federation.php:179 #, php-format msgid "%2$s total system" msgid_plural "%2$s total systems" msgstr[0] "" msgstr[1] "" -#: src/Module/Admin/Federation.php:192 +#: src/Module/Admin/Federation.php:180 #, php-format msgid "%2$s active user last month" msgid_plural "%2$s active users last month" msgstr[0] "" msgstr[1] "" -#: src/Module/Admin/Federation.php:193 +#: src/Module/Admin/Federation.php:181 #, php-format msgid "%2$s active user last six months" msgid_plural "%2$s active users last six months" msgstr[0] "" msgstr[1] "" -#: src/Module/Admin/Federation.php:194 +#: src/Module/Admin/Federation.php:182 #, php-format msgid "%2$s registered user" msgid_plural "%2$s registered users" msgstr[0] "" msgstr[1] "" -#: src/Module/Admin/Federation.php:195 +#: src/Module/Admin/Federation.php:183 #, php-format msgid "%2$s locally created post or comment" msgid_plural "%2$s locally created posts and comments" msgstr[0] "" msgstr[1] "" -#: src/Module/Admin/Federation.php:198 +#: src/Module/Admin/Federation.php:186 #, php-format msgid "%2$s post per user" msgid_plural "%2$s posts per user" msgstr[0] "" msgstr[1] "" -#: src/Module/Admin/Federation.php:203 +#: src/Module/Admin/Federation.php:191 #, php-format msgid "%2$s user per system" msgid_plural "%2$s users per system" msgstr[0] "" msgstr[1] "" -#: src/Module/Admin/Federation.php:213 +#: src/Module/Admin/Federation.php:201 msgid "" "This page offers you some numbers to the known part of the federated social " "network your Friendica node is part of. These numbers are not complete but " "only reflect the part of the network your node is aware of." msgstr "" -#: src/Module/Admin/Federation.php:219 src/Module/BaseAdmin.php:87 +#: src/Module/Admin/Federation.php:207 src/Module/BaseAdmin.php:73 msgid "Federation Statistics" msgstr "" -#: src/Module/Admin/Federation.php:223 +#: src/Module/Admin/Federation.php:210 #, php-format msgid "" "Currently this node is aware of %2$s node (%3$s active users last month, " @@ -4163,58 +4230,58 @@ msgid_plural "" msgstr[0] "" msgstr[1] "" -#: src/Module/Admin/Logs/Settings.php:47 +#: src/Module/Admin/Logs/Settings.php:33 #, php-format msgid "The logfile '%s' is not writable. No logging possible" msgstr "" -#: src/Module/Admin/Logs/Settings.php:77 +#: src/Module/Admin/Logs/Settings.php:66 msgid "PHP log currently enabled." msgstr "" -#: src/Module/Admin/Logs/Settings.php:79 +#: src/Module/Admin/Logs/Settings.php:68 msgid "PHP log currently disabled." msgstr "" -#: src/Module/Admin/Logs/Settings.php:86 src/Module/BaseAdmin.php:102 -#: src/Module/BaseAdmin.php:103 +#: src/Module/Admin/Logs/Settings.php:75 src/Module/BaseAdmin.php:88 +#: src/Module/BaseAdmin.php:89 msgid "Logs" msgstr "Registres" -#: src/Module/Admin/Logs/Settings.php:88 +#: src/Module/Admin/Logs/Settings.php:77 msgid "Clear" msgstr "Netejar" -#: src/Module/Admin/Logs/Settings.php:91 +#: src/Module/Admin/Logs/Settings.php:80 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:480 -#: src/Module/Admin/Site.php:488 +#: src/Module/Admin/Logs/Settings.php:80 src/Module/Admin/Logs/Settings.php:81 +#: src/Module/Admin/Logs/Settings.php:82 src/Module/Admin/Site.php:470 +#: src/Module/Admin/Site.php:478 msgid "" "Read-only because it is set by an environment variable" msgstr "" -#: src/Module/Admin/Logs/Settings.php:92 +#: src/Module/Admin/Logs/Settings.php:81 msgid "Log file" msgstr "Arxiu de registre" -#: src/Module/Admin/Logs/Settings.php:92 +#: src/Module/Admin/Logs/Settings.php:81 msgid "" "Must be writable by web server. Relative to your Friendica top-level " "directory." msgstr "Ha de tenir permisos d'escriptura pel servidor web. En relació amb el seu directori Friendica de nivell superior." -#: src/Module/Admin/Logs/Settings.php:93 +#: src/Module/Admin/Logs/Settings.php:82 msgid "Log level" msgstr "Nivell de transcripció" -#: src/Module/Admin/Logs/Settings.php:95 +#: src/Module/Admin/Logs/Settings.php:84 msgid "PHP logging" msgstr "" -#: src/Module/Admin/Logs/Settings.php:96 +#: src/Module/Admin/Logs/Settings.php:85 msgid "" "To temporarily enable logging of PHP errors and warnings you can prepend the" " following to the index.php file of your installation. The filename set in " @@ -4223,398 +4290,407 @@ msgid "" "'display_errors' is to enable these options, set to '0' to disable them." msgstr "" -#: src/Module/Admin/Logs/View.php:70 +#: src/Module/Admin/Logs/View.php:58 #, php-format msgid "" "Error trying to open %1$s log file.
Check to see if " "file %1$s exist and is readable." msgstr "" -#: src/Module/Admin/Logs/View.php:79 +#: src/Module/Admin/Logs/View.php:67 #, php-format msgid "" "Couldn't open %1$s log file.
Check to see if file %1$s " "is readable." msgstr "" -#: src/Module/Admin/Logs/View.php:84 src/Module/BaseAdmin.php:104 +#: src/Module/Admin/Logs/View.php:72 src/Module/BaseAdmin.php:90 msgid "View Logs" msgstr "" -#: src/Module/Admin/Logs/View.php:87 +#: src/Module/Admin/Logs/View.php:75 msgid "Search in logs" msgstr "" -#: src/Module/Admin/Logs/View.php:88 -#: src/Module/Notifications/Notifications.php:140 +#: src/Module/Admin/Logs/View.php:76 +#: src/Module/Notifications/Notifications.php:132 msgid "Show all" msgstr "" -#: src/Module/Admin/Logs/View.php:89 +#: src/Module/Admin/Logs/View.php:77 msgid "Date" msgstr "" -#: src/Module/Admin/Logs/View.php:90 +#: src/Module/Admin/Logs/View.php:78 msgid "Level" msgstr "" -#: src/Module/Admin/Logs/View.php:91 +#: src/Module/Admin/Logs/View.php:79 msgid "Context" msgstr "" -#: src/Module/Admin/Logs/View.php:93 +#: src/Module/Admin/Logs/View.php:81 msgid "ALL" msgstr "" -#: src/Module/Admin/Logs/View.php:94 +#: src/Module/Admin/Logs/View.php:82 msgid "View details" msgstr "" -#: src/Module/Admin/Logs/View.php:95 +#: src/Module/Admin/Logs/View.php:83 msgid "Click to view details" msgstr "" -#: src/Module/Admin/Logs/View.php:96 src/Module/Calendar/Event/Form.php:207 +#: src/Module/Admin/Logs/View.php:84 src/Module/Calendar/Event/Form.php:193 msgid "Event details" msgstr "Detalls del esdeveniment" -#: src/Module/Admin/Logs/View.php:97 +#: src/Module/Admin/Logs/View.php:85 msgid "Data" msgstr "" -#: src/Module/Admin/Logs/View.php:98 -#: src/Module/Debug/ActivityPubConversion.php:57 +#: src/Module/Admin/Logs/View.php:86 +#: src/Module/Debug/ActivityPubConversion.php:49 msgid "Source" msgstr "" -#: src/Module/Admin/Logs/View.php:99 +#: src/Module/Admin/Logs/View.php:87 msgid "File" msgstr "" -#: src/Module/Admin/Logs/View.php:100 +#: src/Module/Admin/Logs/View.php:88 msgid "Line" msgstr "" -#: src/Module/Admin/Logs/View.php:101 +#: src/Module/Admin/Logs/View.php:89 msgid "Function" msgstr "" -#: src/Module/Admin/Logs/View.php:102 +#: src/Module/Admin/Logs/View.php:90 msgid "UID" msgstr "" -#: src/Module/Admin/Logs/View.php:103 +#: src/Module/Admin/Logs/View.php:91 msgid "Process ID" msgstr "" -#: src/Module/Admin/Logs/View.php:104 +#: src/Module/Admin/Logs/View.php:92 msgid "Close" msgstr "" -#: src/Module/Admin/Queue.php:50 +#: src/Module/Admin/Queue.php:36 msgid "Inspect Deferred Worker Queue" msgstr "" -#: src/Module/Admin/Queue.php:51 +#: src/Module/Admin/Queue.php:37 msgid "" "This page lists the deferred worker jobs. This are jobs that couldn't be " "executed at the first time." msgstr "" -#: src/Module/Admin/Queue.php:54 +#: src/Module/Admin/Queue.php:40 msgid "Inspect Worker Queue" msgstr "" -#: src/Module/Admin/Queue.php:55 +#: src/Module/Admin/Queue.php:41 msgid "" "This page lists the currently queued worker jobs. These jobs are handled by " "the worker cronjob you've set up during install." msgstr "" -#: src/Module/Admin/Queue.php:75 +#: src/Module/Admin/Queue.php:62 msgid "ID" msgstr "" -#: src/Module/Admin/Queue.php:76 +#: src/Module/Admin/Queue.php:63 msgid "Command" msgstr "" -#: src/Module/Admin/Queue.php:77 +#: src/Module/Admin/Queue.php:64 msgid "Job Parameters" msgstr "" -#: src/Module/Admin/Queue.php:78 src/Module/Moderation/Reports.php:95 -#: src/Module/Settings/OAuth.php:74 +#: src/Module/Admin/Queue.php:65 src/Module/Moderation/Reports.php:102 +#: src/Module/Settings/OAuth.php:60 msgid "Created" msgstr "" -#: src/Module/Admin/Queue.php:79 +#: src/Module/Admin/Queue.php:66 +msgid "Next Try" +msgstr "" + +#: src/Module/Admin/Queue.php:67 msgid "Priority" msgstr "" -#: src/Module/Admin/Site.php:244 +#: src/Module/Admin/Site.php:230 +#, php-format +msgid "%s is no valid input for maximum media size" +msgstr "" + +#: src/Module/Admin/Site.php:235 #, php-format msgid "%s is no valid input for maximum image size" msgstr "" -#: src/Module/Admin/Site.php:372 src/Module/Settings/Display.php:217 +#: src/Module/Admin/Site.php:362 src/Module/Settings/Display.php:201 msgid "No special theme for mobile devices" msgstr "No hi ha un tema específic per a mòbil" -#: src/Module/Admin/Site.php:389 src/Module/Settings/Display.php:227 +#: src/Module/Admin/Site.php:379 src/Module/Settings/Display.php:211 #, php-format msgid "%s - (Experimental)" msgstr "%s - (Experimental)" -#: src/Module/Admin/Site.php:401 +#: src/Module/Admin/Site.php:391 msgid "No community page" msgstr "" -#: src/Module/Admin/Site.php:402 +#: src/Module/Admin/Site.php:392 msgid "No community page for visitors" msgstr "" -#: src/Module/Admin/Site.php:403 +#: src/Module/Admin/Site.php:393 msgid "Public postings from users of this site" msgstr "" -#: src/Module/Admin/Site.php:404 +#: src/Module/Admin/Site.php:394 msgid "Public postings from the federated network" msgstr "" -#: src/Module/Admin/Site.php:405 +#: src/Module/Admin/Site.php:395 msgid "Public postings from local users and the federated network" msgstr "" -#: src/Module/Admin/Site.php:411 +#: src/Module/Admin/Site.php:401 msgid "Multi user instance" msgstr "Instancia multiusuari" -#: src/Module/Admin/Site.php:434 +#: src/Module/Admin/Site.php:424 msgid "Closed" msgstr "Tancat" -#: src/Module/Admin/Site.php:435 +#: src/Module/Admin/Site.php:425 msgid "Requires approval" msgstr "Requereix aprovació" -#: src/Module/Admin/Site.php:436 +#: src/Module/Admin/Site.php:426 msgid "Open" msgstr "Obert" -#: src/Module/Admin/Site.php:440 +#: src/Module/Admin/Site.php:430 msgid "Don't check" msgstr "" -#: src/Module/Admin/Site.php:441 +#: src/Module/Admin/Site.php:431 msgid "check the stable version" msgstr "" -#: src/Module/Admin/Site.php:442 +#: src/Module/Admin/Site.php:432 msgid "check the development version" msgstr "" -#: src/Module/Admin/Site.php:446 +#: src/Module/Admin/Site.php:436 msgid "none" msgstr "" -#: src/Module/Admin/Site.php:447 +#: src/Module/Admin/Site.php:437 msgid "Local contacts" msgstr "" -#: src/Module/Admin/Site.php:448 +#: src/Module/Admin/Site.php:438 msgid "Interactors" msgstr "" -#: src/Module/Admin/Site.php:458 src/Module/BaseAdmin.php:90 +#: src/Module/Admin/Site.php:448 src/Module/BaseAdmin.php:76 msgid "Site" msgstr "Lloc" -#: src/Module/Admin/Site.php:459 +#: src/Module/Admin/Site.php:449 msgid "General Information" msgstr "" -#: src/Module/Admin/Site.php:461 +#: src/Module/Admin/Site.php:451 msgid "Republish users to directory" msgstr "" -#: src/Module/Admin/Site.php:462 src/Module/Register.php:152 +#: src/Module/Admin/Site.php:452 src/Module/Register.php:145 msgid "Registration" msgstr "Procés de Registre" -#: src/Module/Admin/Site.php:463 +#: src/Module/Admin/Site.php:453 msgid "File upload" msgstr "Fitxer carregat" -#: src/Module/Admin/Site.php:464 +#: src/Module/Admin/Site.php:454 msgid "Policies" msgstr "Polítiques" -#: src/Module/Admin/Site.php:465 src/Module/Calendar/Event/Form.php:252 -#: src/Module/Contact.php:546 src/Module/Profile/Profile.php:276 +#: src/Module/Admin/Site.php:455 src/Module/Calendar/Event/Form.php:238 +#: src/Module/Contact.php:528 src/Module/Profile/Profile.php:264 msgid "Advanced" msgstr "Avançat" -#: src/Module/Admin/Site.php:466 +#: src/Module/Admin/Site.php:456 msgid "Auto Discovered Contact Directory" msgstr "" -#: src/Module/Admin/Site.php:467 +#: src/Module/Admin/Site.php:457 msgid "Performance" msgstr "Rendiment" -#: src/Module/Admin/Site.php:468 +#: src/Module/Admin/Site.php:458 msgid "Worker" msgstr "" -#: src/Module/Admin/Site.php:469 +#: src/Module/Admin/Site.php:459 msgid "Message Relay" msgstr "" -#: src/Module/Admin/Site.php:470 +#: src/Module/Admin/Site.php:460 msgid "" "Use the command \"console relay\" in the command line to add or remove " "relays." msgstr "" -#: src/Module/Admin/Site.php:471 +#: src/Module/Admin/Site.php:461 msgid "The system is not subscribed to any relays at the moment." msgstr "" -#: src/Module/Admin/Site.php:472 +#: src/Module/Admin/Site.php:462 msgid "The system is currently subscribed to the following relays:" msgstr "" -#: src/Module/Admin/Site.php:475 +#: src/Module/Admin/Site.php:465 msgid "Relocate Node" msgstr "" -#: src/Module/Admin/Site.php:476 +#: src/Module/Admin/Site.php:466 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:477 +#: src/Module/Admin/Site.php:467 msgid "(Friendica directory)# bin/console relocate https://newdomain.com" msgstr "" -#: src/Module/Admin/Site.php:480 +#: src/Module/Admin/Site.php:470 msgid "Site name" msgstr "Nom del lloc" -#: src/Module/Admin/Site.php:481 +#: src/Module/Admin/Site.php:471 msgid "Sender Email" msgstr "" -#: src/Module/Admin/Site.php:481 +#: src/Module/Admin/Site.php:471 msgid "" "The email address your server shall use to send notification emails from." msgstr "" -#: src/Module/Admin/Site.php:482 +#: src/Module/Admin/Site.php:472 msgid "Name of the system actor" msgstr "" -#: src/Module/Admin/Site.php:482 +#: src/Module/Admin/Site.php:472 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:483 +#: src/Module/Admin/Site.php:473 msgid "Banner/Logo" msgstr "Senyera/Logo" -#: src/Module/Admin/Site.php:484 +#: src/Module/Admin/Site.php:474 msgid "Email Banner/Logo" msgstr "" -#: src/Module/Admin/Site.php:485 +#: src/Module/Admin/Site.php:475 msgid "Shortcut icon" msgstr "" -#: src/Module/Admin/Site.php:485 +#: src/Module/Admin/Site.php:475 msgid "Link to an icon that will be used for browsers." msgstr "" -#: src/Module/Admin/Site.php:486 +#: src/Module/Admin/Site.php:476 msgid "Touch icon" msgstr "" -#: src/Module/Admin/Site.php:486 +#: src/Module/Admin/Site.php:476 msgid "Link to an icon that will be used for tablets and mobiles." msgstr "" -#: src/Module/Admin/Site.php:487 +#: src/Module/Admin/Site.php:477 msgid "Additional Info" msgstr "" -#: src/Module/Admin/Site.php:487 +#: src/Module/Admin/Site.php:477 #, 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:488 +#: src/Module/Admin/Site.php:478 msgid "System language" msgstr "Idioma del Sistema" -#: src/Module/Admin/Site.php:489 +#: src/Module/Admin/Site.php:479 msgid "System theme" msgstr "Tema del sistema" -#: src/Module/Admin/Site.php:489 +#: src/Module/Admin/Site.php:479 #, php-format msgid "" "Default system theme - may be over-ridden by user profiles - Change default theme settings" msgstr "" -#: src/Module/Admin/Site.php:490 +#: src/Module/Admin/Site.php:480 msgid "Mobile system theme" msgstr "Tema per a mòbil" -#: src/Module/Admin/Site.php:490 +#: src/Module/Admin/Site.php:480 msgid "Theme for mobile devices" msgstr "Tema per a aparells mòbils" -#: src/Module/Admin/Site.php:491 +#: src/Module/Admin/Site.php:481 msgid "Force SSL" msgstr "" -#: src/Module/Admin/Site.php:491 +#: src/Module/Admin/Site.php:481 msgid "" "Force all Non-SSL requests to SSL - Attention: on some systems it could lead" " to endless loops." msgstr "" -#: src/Module/Admin/Site.php:492 +#: src/Module/Admin/Site.php:482 msgid "Show help entry from navigation menu" msgstr "" -#: src/Module/Admin/Site.php:492 +#: src/Module/Admin/Site.php:482 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:493 +#: src/Module/Admin/Site.php:483 msgid "Single user instance" msgstr "Instancia per a un únic usuari" -#: src/Module/Admin/Site.php:493 +#: src/Module/Admin/Site.php:483 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:495 +#: src/Module/Admin/Site.php:485 msgid "Maximum image size" msgstr "Mida màxima de les imatges" -#: src/Module/Admin/Site.php:495 +#: src/Module/Admin/Site.php:485 #, 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" @@ -4622,35 +4698,47 @@ 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:499 +#: src/Module/Admin/Site.php:489 msgid "Maximum image length" msgstr "Maxima longitud d'imatge" -#: src/Module/Admin/Site.php:499 +#: src/Module/Admin/Site.php:489 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:500 +#: src/Module/Admin/Site.php:490 msgid "JPEG image quality" msgstr "Qualitat per a la imatge JPEG" -#: src/Module/Admin/Site.php:500 +#: src/Module/Admin/Site.php:490 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:502 +#: src/Module/Admin/Site.php:491 +msgid "Maximum media file size" +msgstr "" + +#: src/Module/Admin/Site.php:491 +#, php-format +msgid "" +"Maximum size in bytes of uploaded media files. Default is 0, which means no limits. You can put k, m, or g behind the desired value for KiB, MiB, GiB, respectively.\n" +"\t\t\t\t\t\t\t\t\t\t\t\t\tThe value of upload_max_filesize in your PHP.ini needs be set to at least the desired limit.\n" +"\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:496 msgid "Register policy" msgstr "Política per a registrar" -#: src/Module/Admin/Site.php:503 +#: src/Module/Admin/Site.php:497 msgid "Maximum Users" msgstr "" -#: src/Module/Admin/Site.php:503 +#: src/Module/Admin/Site.php:497 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 " @@ -4658,167 +4746,167 @@ msgid "" "not when the policy is set to approval." msgstr "" -#: src/Module/Admin/Site.php:504 +#: src/Module/Admin/Site.php:498 msgid "Maximum Daily Registrations" msgstr "Registres Màxims Diaris" -#: src/Module/Admin/Site.php:504 +#: src/Module/Admin/Site.php:498 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:505 +#: src/Module/Admin/Site.php:499 msgid "Register text" msgstr "Text al registrar" -#: src/Module/Admin/Site.php:505 +#: src/Module/Admin/Site.php:499 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:506 +#: src/Module/Admin/Site.php:500 msgid "Forbidden Nicknames" msgstr "Noms prohibits" -#: src/Module/Admin/Site.php:506 +#: src/Module/Admin/Site.php:500 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:507 +#: src/Module/Admin/Site.php:501 msgid "Accounts abandoned after x days" msgstr "Comptes abandonats després de x dies" -#: src/Module/Admin/Site.php:507 +#: src/Module/Admin/Site.php:501 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:508 +#: src/Module/Admin/Site.php:502 msgid "Allowed friend domains" msgstr "Dominis amics permesos" -#: src/Module/Admin/Site.php:508 +#: src/Module/Admin/Site.php:502 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:509 +#: src/Module/Admin/Site.php:503 msgid "Allowed email domains" msgstr "Dominis de correu permesos" -#: src/Module/Admin/Site.php:509 +#: src/Module/Admin/Site.php:503 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:510 +#: src/Module/Admin/Site.php:504 msgid "Disallowed email domains" msgstr "" -#: src/Module/Admin/Site.php:510 +#: src/Module/Admin/Site.php:504 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 +#: src/Module/Admin/Site.php:505 msgid "No OEmbed rich content" msgstr "" -#: src/Module/Admin/Site.php:511 +#: src/Module/Admin/Site.php:505 msgid "" "Don't show the rich content (e.g. embedded PDF), except from the domains " "listed below." msgstr "" -#: src/Module/Admin/Site.php:512 +#: src/Module/Admin/Site.php:506 msgid "Trusted third-party domains" msgstr "" -#: src/Module/Admin/Site.php:512 +#: src/Module/Admin/Site.php:506 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:513 +#: src/Module/Admin/Site.php:507 msgid "Block public" msgstr "Bloqueig públic" -#: src/Module/Admin/Site.php:513 +#: src/Module/Admin/Site.php:507 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:514 +#: src/Module/Admin/Site.php:508 msgid "Force publish" msgstr "Forçar publicació" -#: src/Module/Admin/Site.php:514 +#: src/Module/Admin/Site.php:508 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:514 +#: src/Module/Admin/Site.php:508 msgid "Enabling this may violate privacy laws like the GDPR" msgstr "" -#: src/Module/Admin/Site.php:515 +#: src/Module/Admin/Site.php:509 msgid "Global directory URL" msgstr "" -#: src/Module/Admin/Site.php:515 +#: src/Module/Admin/Site.php:509 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:516 +#: src/Module/Admin/Site.php:510 msgid "Private posts by default for new users" msgstr "Els enviaments dels nous usuaris seran privats per defecte." -#: src/Module/Admin/Site.php:516 +#: src/Module/Admin/Site.php:510 msgid "" "Set default post permissions for all new members to the default privacy " "circle rather than public." msgstr "" -#: src/Module/Admin/Site.php:517 +#: src/Module/Admin/Site.php:511 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:517 +#: src/Module/Admin/Site.php:511 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:518 +#: src/Module/Admin/Site.php:512 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:518 +#: src/Module/Admin/Site.php:512 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:519 +#: src/Module/Admin/Site.php:513 msgid "Don't embed private images in posts" msgstr "No incrustar imatges en missatges privats" -#: src/Module/Admin/Site.php:519 +#: src/Module/Admin/Site.php:513 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 " @@ -4826,11 +4914,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:520 +#: src/Module/Admin/Site.php:514 msgid "Explicit Content" msgstr "" -#: src/Module/Admin/Site.php:520 +#: src/Module/Admin/Site.php:514 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 " @@ -4839,339 +4927,319 @@ msgid "" "will be shown at the user registration page." msgstr "" -#: src/Module/Admin/Site.php:521 -msgid "Proxify external content" -msgstr "" - -#: 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:522 +#: src/Module/Admin/Site.php:515 msgid "Only local search" msgstr "" -#: src/Module/Admin/Site.php:522 +#: src/Module/Admin/Site.php:515 msgid "" "Blocks search for users who are not logged in to prevent crawlers from " "blocking your system." msgstr "" -#: src/Module/Admin/Site.php:523 +#: src/Module/Admin/Site.php:516 msgid "Blocked tags for trending tags" msgstr "" -#: src/Module/Admin/Site.php:523 +#: src/Module/Admin/Site.php:516 msgid "" "Comma separated list of hashtags that shouldn't be displayed in the trending" " tags." msgstr "" -#: src/Module/Admin/Site.php:524 +#: src/Module/Admin/Site.php:517 msgid "Cache contact avatars" msgstr "" -#: src/Module/Admin/Site.php:524 +#: src/Module/Admin/Site.php:517 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:525 +#: src/Module/Admin/Site.php:518 msgid "Allow Users to set remote_self" msgstr "" -#: src/Module/Admin/Site.php:525 +#: src/Module/Admin/Site.php:518 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:526 +#: src/Module/Admin/Site.php:519 msgid "Allow Users to set up relay channels" msgstr "" -#: src/Module/Admin/Site.php:526 +#: src/Module/Admin/Site.php:519 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:527 +#: src/Module/Admin/Site.php:520 msgid "Adjust the feed poll frequency" msgstr "" -#: src/Module/Admin/Site.php:527 +#: src/Module/Admin/Site.php:520 msgid "Automatically detect and set the best feed poll frequency." msgstr "" -#: src/Module/Admin/Site.php:528 +#: src/Module/Admin/Site.php:521 msgid "Minimum poll interval" msgstr "" -#: src/Module/Admin/Site.php:528 +#: src/Module/Admin/Site.php:521 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:529 +#: src/Module/Admin/Site.php:522 msgid "Enable multiple registrations" msgstr "" -#: src/Module/Admin/Site.php:529 +#: src/Module/Admin/Site.php:522 msgid "Enable users to register additional accounts for use as pages." msgstr "" -#: src/Module/Admin/Site.php:530 +#: src/Module/Admin/Site.php:523 msgid "Enable OpenID" msgstr "" -#: src/Module/Admin/Site.php:530 +#: src/Module/Admin/Site.php:523 msgid "Enable OpenID support for registration and logins." msgstr "" -#: src/Module/Admin/Site.php:531 +#: src/Module/Admin/Site.php:524 msgid "Enable full name check" msgstr "" -#: src/Module/Admin/Site.php:531 +#: src/Module/Admin/Site.php:524 msgid "" "Prevents users from registering with a display name with fewer than two " "parts separated by spaces." msgstr "" -#: src/Module/Admin/Site.php:532 +#: src/Module/Admin/Site.php:525 msgid "Email administrators on new registration" msgstr "" -#: src/Module/Admin/Site.php:532 +#: src/Module/Admin/Site.php:525 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:533 +#: src/Module/Admin/Site.php:526 msgid "Community pages for visitors" msgstr "" -#: src/Module/Admin/Site.php:533 +#: src/Module/Admin/Site.php:526 msgid "" "Which community pages should be available for visitors. Local users always " "see both pages." msgstr "" -#: src/Module/Admin/Site.php:534 +#: src/Module/Admin/Site.php:527 msgid "Posts per user on community page" msgstr "" -#: src/Module/Admin/Site.php:534 +#: src/Module/Admin/Site.php:527 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:535 +#: src/Module/Admin/Site.php:528 msgid "Posts per server on community page" msgstr "" -#: src/Module/Admin/Site.php:535 +#: src/Module/Admin/Site.php:528 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:537 +#: src/Module/Admin/Site.php:530 msgid "Enable Mail support" msgstr "" -#: src/Module/Admin/Site.php:537 +#: src/Module/Admin/Site.php:530 msgid "" "Enable built-in mail support to poll IMAP folders and to reply via mail." msgstr "" -#: src/Module/Admin/Site.php:538 +#: src/Module/Admin/Site.php:531 msgid "" "Mail support can't be enabled because the PHP IMAP module is not installed." msgstr "" -#: src/Module/Admin/Site.php:539 -msgid "Enable OStatus support" -msgstr "" - -#: 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:541 +#: src/Module/Admin/Site.php:533 msgid "" "Diaspora support can't be enabled because Friendica was installed into a sub" " directory." msgstr "" -#: src/Module/Admin/Site.php:542 +#: src/Module/Admin/Site.php:534 msgid "Enable Diaspora support" msgstr "Habilitar suport per Diaspora" -#: src/Module/Admin/Site.php:542 +#: src/Module/Admin/Site.php:534 msgid "" "Enable built-in Diaspora network compatibility for communicating with " "diaspora servers." msgstr "" -#: src/Module/Admin/Site.php:543 +#: src/Module/Admin/Site.php:535 msgid "Verify SSL" msgstr "Verificar SSL" -#: src/Module/Admin/Site.php:543 +#: src/Module/Admin/Site.php:535 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:544 +#: src/Module/Admin/Site.php:536 msgid "Proxy user" msgstr "proxy d'usuari" -#: src/Module/Admin/Site.php:544 +#: src/Module/Admin/Site.php:536 msgid "User name for the proxy server." msgstr "" -#: src/Module/Admin/Site.php:545 +#: src/Module/Admin/Site.php:537 msgid "Proxy URL" msgstr "URL del proxy" -#: src/Module/Admin/Site.php:545 +#: src/Module/Admin/Site.php:537 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:546 +#: src/Module/Admin/Site.php:538 msgid "Network timeout" msgstr "Temps excedit a la xarxa" -#: src/Module/Admin/Site.php:546 +#: src/Module/Admin/Site.php:538 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:547 +#: src/Module/Admin/Site.php:539 msgid "Maximum Load Average" msgstr "Càrrega Màxima Sostinguda" -#: src/Module/Admin/Site.php:547 +#: src/Module/Admin/Site.php:539 #, php-format msgid "" "Maximum system load before delivery and poll processes are deferred - " "default %d." msgstr "" -#: src/Module/Admin/Site.php:548 +#: src/Module/Admin/Site.php:540 msgid "Minimal Memory" msgstr "" -#: src/Module/Admin/Site.php:548 +#: src/Module/Admin/Site.php:540 msgid "" "Minimal free memory in MB for the worker. Needs access to /proc/meminfo - " "default 0 (deactivated)." msgstr "" -#: src/Module/Admin/Site.php:549 +#: src/Module/Admin/Site.php:541 msgid "Periodically optimize tables" msgstr "" -#: src/Module/Admin/Site.php:549 +#: src/Module/Admin/Site.php:541 msgid "Periodically optimize tables like the cache and the workerqueue" msgstr "" -#: src/Module/Admin/Site.php:551 +#: src/Module/Admin/Site.php:543 msgid "Discover followers/followings from contacts" msgstr "" -#: src/Module/Admin/Site.php:551 +#: src/Module/Admin/Site.php:543 msgid "" "If enabled, contacts are checked for their followers and following contacts." msgstr "" -#: src/Module/Admin/Site.php:552 +#: src/Module/Admin/Site.php:544 msgid "None - deactivated" msgstr "" -#: src/Module/Admin/Site.php:553 +#: src/Module/Admin/Site.php:545 msgid "" "Local contacts - contacts of our local contacts are discovered for their " "followers/followings." msgstr "" -#: src/Module/Admin/Site.php:554 +#: src/Module/Admin/Site.php:546 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:556 +#: src/Module/Admin/Site.php:548 msgid "Only update contacts/servers with local data" msgstr "" -#: src/Module/Admin/Site.php:556 +#: src/Module/Admin/Site.php:548 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:557 +#: src/Module/Admin/Site.php:549 msgid "Synchronize the contacts with the directory server" msgstr "" -#: src/Module/Admin/Site.php:557 +#: src/Module/Admin/Site.php:549 msgid "" "if enabled, the system will check periodically for new contacts on the " "defined directory server." msgstr "" -#: src/Module/Admin/Site.php:559 +#: src/Module/Admin/Site.php:551 msgid "Discover contacts from other servers" msgstr "" -#: src/Module/Admin/Site.php:559 +#: src/Module/Admin/Site.php:551 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:560 +#: src/Module/Admin/Site.php:552 msgid "Days between requery" msgstr "" -#: src/Module/Admin/Site.php:560 +#: src/Module/Admin/Site.php:552 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:561 +#: src/Module/Admin/Site.php:553 msgid "Search the local directory" msgstr "" -#: src/Module/Admin/Site.php:561 +#: src/Module/Admin/Site.php:553 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:563 +#: src/Module/Admin/Site.php:555 msgid "Publish server information" msgstr "" -#: src/Module/Admin/Site.php:563 +#: src/Module/Admin/Site.php:555 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 " @@ -5179,50 +5247,50 @@ msgid "" " href=\"http://the-federation.info/\">the-federation.info for details." msgstr "" -#: src/Module/Admin/Site.php:565 +#: src/Module/Admin/Site.php:557 msgid "Check upstream version" msgstr "" -#: src/Module/Admin/Site.php:565 +#: src/Module/Admin/Site.php:557 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:566 +#: src/Module/Admin/Site.php:558 msgid "Suppress Tags" msgstr "" -#: src/Module/Admin/Site.php:566 +#: src/Module/Admin/Site.php:558 msgid "Suppress showing a list of hashtags at the end of the posting." msgstr "" -#: src/Module/Admin/Site.php:567 +#: src/Module/Admin/Site.php:559 msgid "Clean database" msgstr "" -#: src/Module/Admin/Site.php:567 +#: src/Module/Admin/Site.php:559 msgid "" "Remove old remote items, orphaned database records and old content from some" " other helper tables." msgstr "" -#: src/Module/Admin/Site.php:568 +#: src/Module/Admin/Site.php:560 msgid "Lifespan of remote items" msgstr "" -#: src/Module/Admin/Site.php:568 +#: src/Module/Admin/Site.php:560 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:569 +#: src/Module/Admin/Site.php:561 msgid "Lifespan of unclaimed items" msgstr "" -#: src/Module/Admin/Site.php:569 +#: src/Module/Admin/Site.php:561 msgid "" "When the database cleanup is enabled, this defines the days after which " "unclaimed remote items (mostly content from the relay) will be deleted. " @@ -5230,175 +5298,184 @@ msgid "" "items if set to 0." msgstr "" -#: src/Module/Admin/Site.php:570 +#: src/Module/Admin/Site.php:562 msgid "Lifespan of raw conversation data" msgstr "" -#: src/Module/Admin/Site.php:570 +#: src/Module/Admin/Site.php:562 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." +"The conversation data is used for ActivityPub, 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:571 +#: src/Module/Admin/Site.php:563 msgid "Maximum numbers of comments per post" msgstr "" -#: src/Module/Admin/Site.php:571 +#: src/Module/Admin/Site.php:563 msgid "How much comments should be shown for each post? Default value is 100." msgstr "" -#: src/Module/Admin/Site.php:572 +#: src/Module/Admin/Site.php:564 msgid "Maximum numbers of comments per post on the display page" msgstr "" -#: src/Module/Admin/Site.php:572 +#: src/Module/Admin/Site.php:564 msgid "" "How many comments should be shown on the single view for each post? Default " "value is 1000." msgstr "" -#: src/Module/Admin/Site.php:573 +#: src/Module/Admin/Site.php:565 msgid "Items per page" msgstr "" -#: src/Module/Admin/Site.php:573 +#: src/Module/Admin/Site.php:565 msgid "" "Number of items per page in stream pages (network, community, " "profile/contact statuses, search)." msgstr "" -#: src/Module/Admin/Site.php:574 +#: src/Module/Admin/Site.php:566 msgid "Items per page for mobile devices" msgstr "" -#: src/Module/Admin/Site.php:574 +#: src/Module/Admin/Site.php:566 msgid "" "Number of items per page in stream pages (network, community, " "profile/contact statuses, search) for mobile devices." msgstr "" -#: src/Module/Admin/Site.php:575 +#: src/Module/Admin/Site.php:567 msgid "Temp path" msgstr "Camí a carpeta temporal" -#: src/Module/Admin/Site.php:575 +#: src/Module/Admin/Site.php:567 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:576 +#: src/Module/Admin/Site.php:568 msgid "Only search in tags" msgstr "" -#: src/Module/Admin/Site.php:576 +#: src/Module/Admin/Site.php:568 msgid "On large systems the text search can slow down the system extremely." msgstr "" -#: src/Module/Admin/Site.php:577 +#: src/Module/Admin/Site.php:569 +msgid "Limited search scope" +msgstr "" + +#: src/Module/Admin/Site.php:569 +msgid "" +"If enabled, searches will only be performed in the data used for the " +"channels and not in all posts." +msgstr "" + +#: src/Module/Admin/Site.php:570 msgid "Maximum age of items in the search table" msgstr "" -#: src/Module/Admin/Site.php:577 +#: src/Module/Admin/Site.php:570 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:578 +#: src/Module/Admin/Site.php:571 msgid "Generate counts per contact circle when calculating network count" msgstr "" -#: src/Module/Admin/Site.php:578 +#: src/Module/Admin/Site.php:571 msgid "" "On systems with users that heavily use contact circles the query can be very" " expensive." msgstr "" -#: src/Module/Admin/Site.php:579 +#: src/Module/Admin/Site.php:572 msgid "Process \"view\" activities" msgstr "" -#: src/Module/Admin/Site.php:579 +#: src/Module/Admin/Site.php:572 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:580 +#: src/Module/Admin/Site.php:573 msgid "Days, after which a contact is archived" msgstr "" -#: src/Module/Admin/Site.php:580 +#: src/Module/Admin/Site.php:573 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:582 +#: src/Module/Admin/Site.php:575 msgid "Maximum number of parallel workers" msgstr "" -#: src/Module/Admin/Site.php:582 +#: src/Module/Admin/Site.php:575 #, 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:583 +#: src/Module/Admin/Site.php:576 msgid "Maximum load for workers" msgstr "" -#: src/Module/Admin/Site.php:583 +#: src/Module/Admin/Site.php:576 msgid "Maximum load that causes a cooldown before each worker function call." msgstr "" -#: src/Module/Admin/Site.php:584 +#: src/Module/Admin/Site.php:577 msgid "Enable fastlane" msgstr "" -#: src/Module/Admin/Site.php:584 +#: src/Module/Admin/Site.php:577 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:585 +#: src/Module/Admin/Site.php:578 msgid "Decoupled receiver" msgstr "" -#: src/Module/Admin/Site.php:585 +#: src/Module/Admin/Site.php:578 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:586 +#: src/Module/Admin/Site.php:579 msgid "Cron interval" msgstr "" -#: src/Module/Admin/Site.php:586 +#: src/Module/Admin/Site.php:579 msgid "Minimal period in minutes between two calls of the \"Cron\" worker job." msgstr "" -#: src/Module/Admin/Site.php:587 +#: src/Module/Admin/Site.php:580 msgid "Worker defer limit" msgstr "" -#: src/Module/Admin/Site.php:587 +#: src/Module/Admin/Site.php:580 msgid "" "Per default the systems tries delivering for 15 times before dropping it." msgstr "" -#: src/Module/Admin/Site.php:588 +#: src/Module/Admin/Site.php:581 msgid "Worker fetch limit" msgstr "" -#: src/Module/Admin/Site.php:588 +#: src/Module/Admin/Site.php:581 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" @@ -5406,214 +5483,214 @@ msgid "" "system." msgstr "" -#: src/Module/Admin/Site.php:590 +#: src/Module/Admin/Site.php:583 msgid "Direct relay transfer" msgstr "" -#: src/Module/Admin/Site.php:590 +#: src/Module/Admin/Site.php:583 msgid "" "Enables the direct transfer to other servers without using the relay servers" msgstr "" -#: src/Module/Admin/Site.php:591 +#: src/Module/Admin/Site.php:584 msgid "Relay scope" msgstr "" -#: src/Module/Admin/Site.php:591 +#: src/Module/Admin/Site.php:584 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:591 src/Module/Contact/Profile.php:309 -#: src/Module/Settings/TwoFactor/Index.php:146 +#: src/Module/Admin/Site.php:584 src/Module/Contact/Profile.php:314 +#: src/Module/Settings/TwoFactor/Index.php:132 msgid "Disabled" msgstr "" -#: src/Module/Admin/Site.php:591 +#: src/Module/Admin/Site.php:584 msgid "all" msgstr "" -#: src/Module/Admin/Site.php:591 +#: src/Module/Admin/Site.php:584 msgid "tags" msgstr "" -#: src/Module/Admin/Site.php:592 +#: src/Module/Admin/Site.php:585 msgid "Server tags" msgstr "" -#: src/Module/Admin/Site.php:592 +#: src/Module/Admin/Site.php:585 msgid "Comma separated list of tags for the \"tags\" subscription." msgstr "" -#: src/Module/Admin/Site.php:593 +#: src/Module/Admin/Site.php:586 msgid "Deny Server tags" msgstr "" -#: src/Module/Admin/Site.php:593 +#: src/Module/Admin/Site.php:586 msgid "Comma separated list of tags that are rejected." msgstr "" -#: src/Module/Admin/Site.php:594 +#: src/Module/Admin/Site.php:587 msgid "Maximum amount of tags" msgstr "" -#: src/Module/Admin/Site.php:594 +#: src/Module/Admin/Site.php:587 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:595 +#: src/Module/Admin/Site.php:588 msgid "Allow user tags" msgstr "" -#: src/Module/Admin/Site.php:595 +#: src/Module/Admin/Site.php:588 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:596 +#: src/Module/Admin/Site.php:589 msgid "Deny undetected languages" msgstr "" -#: src/Module/Admin/Site.php:596 +#: src/Module/Admin/Site.php:589 msgid "If enabled, posts with undetected languages will be rejected." msgstr "" -#: src/Module/Admin/Site.php:597 +#: src/Module/Admin/Site.php:590 msgid "Language Quality" msgstr "" -#: src/Module/Admin/Site.php:597 +#: src/Module/Admin/Site.php:590 msgid "The minimum language quality that is required to accept the post." msgstr "" -#: src/Module/Admin/Site.php:598 +#: src/Module/Admin/Site.php:591 msgid "Number of languages for the language detection" msgstr "" -#: src/Module/Admin/Site.php:598 +#: src/Module/Admin/Site.php:591 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:600 +#: src/Module/Admin/Site.php:593 msgid "Maximum age of channel" msgstr "" -#: src/Module/Admin/Site.php:600 +#: src/Module/Admin/Site.php:593 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:601 +#: src/Module/Admin/Site.php:594 msgid "Maximum number of channel posts" msgstr "" -#: src/Module/Admin/Site.php:601 +#: src/Module/Admin/Site.php:594 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:602 +#: src/Module/Admin/Site.php:595 msgid "Interaction score days" msgstr "" -#: src/Module/Admin/Site.php:602 +#: src/Module/Admin/Site.php:595 msgid "Number of days that are used to calculate the interaction score." msgstr "" -#: src/Module/Admin/Site.php:603 +#: src/Module/Admin/Site.php:596 msgid "Maximum number of posts per author" msgstr "" -#: src/Module/Admin/Site.php:603 +#: src/Module/Admin/Site.php:596 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:604 +#: src/Module/Admin/Site.php:597 msgid "Sharer interaction days" msgstr "" -#: src/Module/Admin/Site.php:604 +#: src/Module/Admin/Site.php:597 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:607 +#: src/Module/Admin/Site.php:600 msgid "Start Relocation" msgstr "" -#: src/Module/Admin/Storage.php:46 +#: src/Module/Admin/Storage.php:32 #, php-format msgid "Storage backend, %s is invalid." msgstr "" -#: src/Module/Admin/Storage.php:73 +#: src/Module/Admin/Storage.php:59 #, php-format msgid "Storage backend %s error: %s" msgstr "" -#: src/Module/Admin/Storage.php:84 src/Module/Admin/Storage.php:87 +#: src/Module/Admin/Storage.php:70 src/Module/Admin/Storage.php:73 msgid "Invalid storage backend setting value." msgstr "" -#: src/Module/Admin/Storage.php:139 +#: src/Module/Admin/Storage.php:125 msgid "Current Storage Backend" msgstr "" -#: src/Module/Admin/Storage.php:140 +#: src/Module/Admin/Storage.php:126 msgid "Storage Configuration" msgstr "" -#: src/Module/Admin/Storage.php:141 src/Module/BaseAdmin.php:91 +#: src/Module/Admin/Storage.php:127 src/Module/BaseAdmin.php:77 msgid "Storage" msgstr "" -#: src/Module/Admin/Storage.php:143 +#: src/Module/Admin/Storage.php:129 msgid "Save & Use storage backend" msgstr "" -#: src/Module/Admin/Storage.php:144 +#: src/Module/Admin/Storage.php:130 msgid "Use storage backend" msgstr "" -#: src/Module/Admin/Storage.php:145 +#: src/Module/Admin/Storage.php:131 msgid "Save & Reload" msgstr "" -#: src/Module/Admin/Storage.php:146 +#: src/Module/Admin/Storage.php:132 msgid "This backend doesn't have custom settings" msgstr "" -#: src/Module/Admin/Storage.php:148 +#: src/Module/Admin/Storage.php:134 msgid "" "Changing the current backend is prohibited because it is set by an " "environment variable" msgstr "" -#: src/Module/Admin/Storage.php:150 +#: src/Module/Admin/Storage.php:136 msgid "Database (legacy)" msgstr "" -#: src/Module/Admin/Summary.php:55 +#: src/Module/Admin/Summary.php:41 #, php-format msgid "Template engine (%s) error: %s" msgstr "" -#: src/Module/Admin/Summary.php:59 +#: src/Module/Admin/Summary.php:45 #, php-format msgid "" "Your DB still runs with MyISAM tables. You should change the engine type to " @@ -5624,7 +5701,7 @@ msgid "" " an automatic conversion.
" msgstr "" -#: src/Module/Admin/Summary.php:64 +#: src/Module/Admin/Summary.php:50 #, php-format msgid "" "Your DB still runs with InnoDB tables in the Antelope file format. You " @@ -5635,7 +5712,7 @@ msgid "" " installation for an automatic conversion.
" msgstr "" -#: src/Module/Admin/Summary.php:74 +#: src/Module/Admin/Summary.php:60 #, php-format msgid "" "Your table_definition_cache is too low (%d). This can lead to the database " @@ -5643,46 +5720,46 @@ msgid "" " to %d. See here for more information.
" msgstr "" -#: src/Module/Admin/Summary.php:85 +#: src/Module/Admin/Summary.php:71 #, php-format msgid "" "There is a new version of Friendica available for download. Your current " "version is %1$s, upstream version is %2$s" msgstr "" -#: src/Module/Admin/Summary.php:94 +#: src/Module/Admin/Summary.php:80 msgid "" "The database update failed. Please run \"php bin/console.php dbstructure " "update\" from the command line and have a look at the errors that might " "appear." msgstr "" -#: src/Module/Admin/Summary.php:98 +#: src/Module/Admin/Summary.php:84 msgid "" "The last update failed. Please run \"php bin/console.php dbstructure " "update\" from the command line and have a look at the errors that might " "appear. (Some of the errors are possibly inside the logfile.)" msgstr "" -#: src/Module/Admin/Summary.php:102 +#: src/Module/Admin/Summary.php:88 msgid "" "The system.url entry is missing. This is a low level setting and can lead to" " unexpected behavior. Please add a valid entry as soon as possible in the " "config file or per console command!" msgstr "" -#: src/Module/Admin/Summary.php:107 +#: src/Module/Admin/Summary.php:93 msgid "The worker was never executed. Please check your database structure!" msgstr "" -#: src/Module/Admin/Summary.php:109 +#: src/Module/Admin/Summary.php:95 #, php-format msgid "" "The last worker execution was on %s UTC. This is older than one hour. Please" " check your crontab settings." msgstr "" -#: src/Module/Admin/Summary.php:114 +#: src/Module/Admin/Summary.php:100 #, php-format msgid "" "Friendica's configuration now is stored in config/local.config.php, please " @@ -5691,7 +5768,7 @@ msgid "" "help with the transition." msgstr "" -#: src/Module/Admin/Summary.php:118 +#: src/Module/Admin/Summary.php:104 #, php-format msgid "" "Friendica's configuration now is stored in config/local.config.php, please " @@ -5700,7 +5777,7 @@ msgid "" "page for help with the transition." msgstr "" -#: src/Module/Admin/Summary.php:124 +#: src/Module/Admin/Summary.php:110 #, php-format msgid "" "%s is not reachable on your system. This is a severe " @@ -5708,107 +5785,107 @@ msgid "" "href=\"%s\">the installation page for help." msgstr "" -#: src/Module/Admin/Summary.php:148 +#: src/Module/Admin/Summary.php:134 #, php-format msgid "" "Friendica's system.basepath was updated from '%s' to '%s'. Please remove the" " system.basepath from your db to avoid differences." msgstr "" -#: src/Module/Admin/Summary.php:156 +#: src/Module/Admin/Summary.php:142 #, php-format msgid "" "Friendica's current system.basepath '%s' is wrong and the config file '%s' " "isn't used." msgstr "" -#: src/Module/Admin/Summary.php:164 +#: src/Module/Admin/Summary.php:150 #, php-format msgid "" "Friendica's current system.basepath '%s' is not equal to the config file " "'%s'. Please fix your configuration." msgstr "" -#: src/Module/Admin/Summary.php:175 +#: src/Module/Admin/Summary.php:161 msgid "Message queues" msgstr "Cues de missatges" -#: src/Module/Admin/Summary.php:181 +#: src/Module/Admin/Summary.php:167 msgid "Server Settings" msgstr "" -#: src/Module/Admin/Summary.php:199 +#: src/Module/Admin/Summary.php:185 msgid "Version" msgstr "Versió" -#: src/Module/Admin/Summary.php:203 +#: src/Module/Admin/Summary.php:189 msgid "Active addons" msgstr "" -#: src/Module/Admin/Themes/Details.php:57 src/Module/Admin/Themes/Index.php:65 +#: src/Module/Admin/Themes/Details.php:49 src/Module/Admin/Themes/Index.php:57 #, php-format msgid "Theme %s disabled." msgstr "" -#: src/Module/Admin/Themes/Details.php:59 src/Module/Admin/Themes/Index.php:67 +#: src/Module/Admin/Themes/Details.php:51 src/Module/Admin/Themes/Index.php:59 #, php-format msgid "Theme %s successfully enabled." msgstr "" -#: src/Module/Admin/Themes/Details.php:61 src/Module/Admin/Themes/Index.php:69 +#: src/Module/Admin/Themes/Details.php:53 src/Module/Admin/Themes/Index.php:61 #, php-format msgid "Theme %s failed to install." msgstr "" -#: src/Module/Admin/Themes/Details.php:83 +#: src/Module/Admin/Themes/Details.php:75 msgid "Screenshot" msgstr "Captura de pantalla" -#: src/Module/Admin/Themes/Details.php:91 -#: src/Module/Admin/Themes/Index.php:112 src/Module/BaseAdmin.php:93 +#: src/Module/Admin/Themes/Details.php:83 +#: src/Module/Admin/Themes/Index.php:104 src/Module/BaseAdmin.php:79 msgid "Themes" msgstr "Temes" -#: src/Module/Admin/Themes/Embed.php:80 +#: src/Module/Admin/Themes/Embed.php:66 msgid "Unknown theme." msgstr "" -#: src/Module/Admin/Themes/Index.php:51 +#: src/Module/Admin/Themes/Index.php:43 msgid "Themes reloaded" msgstr "" -#: src/Module/Admin/Themes/Index.php:114 +#: src/Module/Admin/Themes/Index.php:106 msgid "Reload active themes" msgstr "" -#: src/Module/Admin/Themes/Index.php:118 +#: src/Module/Admin/Themes/Index.php:110 #, php-format msgid "No themes found on the system. They should be placed in %1$s" msgstr "" -#: src/Module/Admin/Themes/Index.php:119 +#: src/Module/Admin/Themes/Index.php:111 msgid "[Experimental]" msgstr "[Experimental]" -#: src/Module/Admin/Themes/Index.php:120 +#: src/Module/Admin/Themes/Index.php:112 msgid "[Unsupported]" msgstr "[No soportat]" -#: src/Module/Admin/Tos.php:79 +#: src/Module/Admin/Tos.php:65 msgid "Display Terms of Service" msgstr "" -#: src/Module/Admin/Tos.php:79 +#: src/Module/Admin/Tos.php:65 msgid "" "Enable the Terms of Service page. If this is enabled a link to the terms " "will be added to the registration form and the general information page." msgstr "" -#: src/Module/Admin/Tos.php:80 +#: src/Module/Admin/Tos.php:66 msgid "Display Privacy Statement" msgstr "" -#: src/Module/Admin/Tos.php:80 +#: src/Module/Admin/Tos.php:66 #, php-format msgid "" "Show some informations regarding the needed information to operate the node " @@ -5816,167 +5893,167 @@ msgid "" "noreferrer\">EU-GDPR." msgstr "" -#: src/Module/Admin/Tos.php:81 +#: src/Module/Admin/Tos.php:67 msgid "Privacy Statement Preview" msgstr "" -#: src/Module/Admin/Tos.php:83 +#: src/Module/Admin/Tos.php:69 msgid "The Terms of Service" msgstr "" -#: src/Module/Admin/Tos.php:83 +#: src/Module/Admin/Tos.php:69 msgid "" "Enter the Terms of Service for your node here. You can use BBCode. Headers " "of sections should be [h2] and below." msgstr "" -#: src/Module/Admin/Tos.php:84 +#: src/Module/Admin/Tos.php:70 msgid "The rules" msgstr "" -#: src/Module/Admin/Tos.php:84 +#: src/Module/Admin/Tos.php:70 msgid "Enter your system rules here. Each line represents one rule." msgstr "" -#: src/Module/Api/ApiResponse.php:293 +#: src/Module/Api/ApiResponse.php:279 #, php-format msgid "API endpoint %s %s is not implemented but might be in the future." msgstr "" -#: src/Module/Api/Mastodon/Apps.php:73 +#: src/Module/Api/Mastodon/Apps.php:59 msgid "Missing parameters" msgstr "" -#: src/Module/Api/Mastodon/Statuses/Bookmark.php:51 +#: src/Module/Api/Mastodon/Statuses/Bookmark.php:36 msgid "Only starting posts can be bookmarked" msgstr "" -#: src/Module/Api/Mastodon/Statuses/Mute.php:51 +#: src/Module/Api/Mastodon/Statuses/Mute.php:37 msgid "Only starting posts can be muted" msgstr "" -#: src/Module/Api/Mastodon/Statuses/Reblog.php:58 +#: src/Module/Api/Mastodon/Statuses/Reblog.php:44 #, php-format msgid "Posts from %s can't be shared" msgstr "" -#: src/Module/Api/Mastodon/Statuses/Unbookmark.php:51 +#: src/Module/Api/Mastodon/Statuses/Unbookmark.php:37 msgid "Only starting posts can be unbookmarked" msgstr "" -#: src/Module/Api/Mastodon/Statuses/Unmute.php:51 +#: src/Module/Api/Mastodon/Statuses/Unmute.php:37 msgid "Only starting posts can be unmuted" msgstr "" -#: src/Module/Api/Mastodon/Statuses/Unreblog.php:64 +#: src/Module/Api/Mastodon/Statuses/Unreblog.php:50 #, php-format msgid "Posts from %s can't be unshared" msgstr "" -#: src/Module/Api/Twitter/ContactEndpoint.php:66 +#: src/Module/Api/Twitter/ContactEndpoint.php:52 msgid "Contact not found" msgstr "" -#: src/Module/Apps.php:62 +#: src/Module/Apps.php:48 msgid "No installed applications." msgstr "Aplicacions no instal·lades." -#: src/Module/Apps.php:67 +#: src/Module/Apps.php:53 msgid "Applications" msgstr "Aplicacions" -#: src/Module/Attach.php:49 src/Module/Attach.php:61 +#: src/Module/Attach.php:35 src/Module/Attach.php:47 msgid "Item was not found." msgstr "Element no trobat." -#: src/Module/BaseAdmin.php:54 src/Module/BaseAdmin.php:58 -#: src/Module/BaseModeration.php:77 src/Module/BaseModeration.php:81 +#: src/Module/BaseAdmin.php:40 src/Module/BaseAdmin.php:44 +#: src/Module/BaseModeration.php:63 src/Module/BaseModeration.php:67 msgid "Please login to continue." msgstr "Per favor, accedeixi per a continuar." -#: src/Module/BaseAdmin.php:63 +#: src/Module/BaseAdmin.php:49 msgid "You don't have access to administration pages." msgstr "" -#: src/Module/BaseAdmin.php:67 +#: src/Module/BaseAdmin.php:53 msgid "" "Submanaged account can't access the administration pages. Please log back in" " as the main account." msgstr "" -#: src/Module/BaseAdmin.php:86 src/Module/BaseModeration.php:109 +#: src/Module/BaseAdmin.php:72 src/Module/BaseModeration.php:95 msgid "Overview" msgstr "" -#: src/Module/BaseAdmin.php:89 src/Module/BaseModeration.php:112 +#: src/Module/BaseAdmin.php:75 src/Module/BaseModeration.php:98 msgid "Configuration" msgstr "" -#: src/Module/BaseAdmin.php:94 src/Module/BaseSettings.php:110 +#: src/Module/BaseAdmin.php:80 src/Module/BaseSettings.php:96 msgid "Additional features" msgstr "Característiques Adicionals" -#: src/Module/BaseAdmin.php:97 +#: src/Module/BaseAdmin.php:83 msgid "Database" msgstr "" -#: src/Module/BaseAdmin.php:98 +#: src/Module/BaseAdmin.php:84 msgid "DB updates" msgstr "Actualitzacions de BD" -#: src/Module/BaseAdmin.php:99 +#: src/Module/BaseAdmin.php:85 msgid "Inspect Deferred Workers" msgstr "" -#: src/Module/BaseAdmin.php:100 +#: src/Module/BaseAdmin.php:86 msgid "Inspect worker Queue" msgstr "" -#: src/Module/BaseAdmin.php:106 src/Module/BaseModeration.php:120 +#: src/Module/BaseAdmin.php:92 src/Module/BaseModeration.php:106 msgid "Diagnostics" msgstr "" -#: src/Module/BaseAdmin.php:107 +#: src/Module/BaseAdmin.php:93 msgid "PHP Info" msgstr "" -#: src/Module/BaseAdmin.php:108 +#: src/Module/BaseAdmin.php:94 msgid "probe address" msgstr "" -#: src/Module/BaseAdmin.php:109 +#: src/Module/BaseAdmin.php:95 msgid "check webfinger" msgstr "" -#: src/Module/BaseAdmin.php:110 +#: src/Module/BaseAdmin.php:96 msgid "Babel" msgstr "" -#: src/Module/BaseAdmin.php:111 src/Module/Debug/ActivityPubConversion.php:137 +#: src/Module/BaseAdmin.php:97 src/Module/Debug/ActivityPubConversion.php:129 msgid "ActivityPub Conversion" msgstr "" -#: src/Module/BaseAdmin.php:120 +#: src/Module/BaseAdmin.php:106 msgid "Addon Features" msgstr "" -#: src/Module/BaseAdmin.php:121 src/Module/BaseModeration.php:129 +#: src/Module/BaseAdmin.php:107 src/Module/BaseModeration.php:115 msgid "User registrations waiting for confirmation" msgstr "Registre d'usuari a l'espera de confirmació" -#: src/Module/BaseApi.php:455 src/Module/BaseApi.php:471 -#: src/Module/BaseApi.php:487 +#: src/Module/BaseApi.php:441 src/Module/BaseApi.php:457 +#: src/Module/BaseApi.php:473 msgid "Too Many Requests" msgstr "" -#: src/Module/BaseApi.php:456 +#: src/Module/BaseApi.php:442 #, php-format msgid "Daily posting limit of %d post reached. The post was rejected." msgid_plural "Daily posting limit of %d posts reached. The post was rejected." msgstr[0] "" msgstr[1] "" -#: src/Module/BaseApi.php:472 +#: src/Module/BaseApi.php:458 #, php-format msgid "Weekly posting limit of %d post reached. The post was rejected." msgid_plural "" @@ -5984,7 +6061,7 @@ msgid_plural "" msgstr[0] "" msgstr[1] "" -#: src/Module/BaseApi.php:488 +#: src/Module/BaseApi.php:474 #, php-format msgid "Monthly posting limit of %d post reached. The post was rejected." msgid_plural "" @@ -5992,84 +6069,84 @@ msgid_plural "" msgstr[0] "" msgstr[1] "" -#: src/Module/BaseModeration.php:86 +#: src/Module/BaseModeration.php:72 msgid "You don't have access to moderation pages." msgstr "" -#: src/Module/BaseModeration.php:90 +#: src/Module/BaseModeration.php:76 msgid "" "Submanaged account can't access the moderation pages. Please log back in as " "the main account." msgstr "" -#: src/Module/BaseModeration.php:110 src/Module/Moderation/Reports.php:94 +#: src/Module/BaseModeration.php:96 src/Module/Moderation/Reports.php:101 msgid "Reports" msgstr "" -#: src/Module/BaseModeration.php:113 src/Module/Moderation/Users/Index.php:148 -#: src/Module/Moderation/Users/Index.php:158 +#: src/Module/BaseModeration.php:99 src/Module/Moderation/Users/Index.php:134 +#: src/Module/Moderation/Users/Index.php:144 msgid "Users" msgstr "Usuaris" -#: src/Module/BaseModeration.php:115 +#: src/Module/BaseModeration.php:101 msgid "Tools" msgstr "" -#: src/Module/BaseModeration.php:116 +#: src/Module/BaseModeration.php:102 msgid "Contact Blocklist" msgstr "" -#: src/Module/BaseModeration.php:117 +#: src/Module/BaseModeration.php:103 msgid "Server Blocklist" msgstr "" -#: src/Module/BaseModeration.php:118 src/Module/Moderation/Item/Delete.php:62 +#: src/Module/BaseModeration.php:104 src/Module/Moderation/Item/Delete.php:48 msgid "Delete Item" msgstr "" -#: src/Module/BaseModeration.php:121 src/Module/Moderation/Item/Source.php:76 +#: src/Module/BaseModeration.php:107 src/Module/Moderation/Item/Source.php:68 msgid "Item Source" msgstr "" -#: src/Module/BaseProfile.php:52 src/Module/Contact.php:506 +#: src/Module/BaseProfile.php:38 src/Module/Contact.php:488 msgid "Profile Details" msgstr "Detalls del Perfil" -#: src/Module/BaseProfile.php:60 +#: src/Module/BaseProfile.php:46 msgid "Conversations started" msgstr "" -#: src/Module/BaseProfile.php:111 +#: src/Module/BaseProfile.php:97 msgid "Only You Can See This" msgstr "Només ho pots veure tu" -#: src/Module/BaseProfile.php:116 src/Module/Profile/Schedule.php:81 +#: src/Module/BaseProfile.php:102 src/Module/Profile/Schedule.php:67 msgid "Scheduled Posts" msgstr "" -#: src/Module/BaseProfile.php:119 +#: src/Module/BaseProfile.php:105 msgid "Posts that are scheduled for publishing" msgstr "" -#: src/Module/BaseProfile.php:138 src/Module/BaseProfile.php:141 +#: src/Module/BaseProfile.php:124 src/Module/BaseProfile.php:127 msgid "Tips for New Members" msgstr "Consells per a nous membres" -#: src/Module/BaseSearch.php:71 +#: src/Module/BaseSearch.php:57 #, php-format msgid "People Search - %s" msgstr "" -#: src/Module/BaseSearch.php:75 +#: src/Module/BaseSearch.php:61 #, php-format msgid "Group Search - %s" msgstr "" -#: src/Module/BaseSearch.php:121 src/Module/Contact/MatchInterests.php:139 +#: src/Module/BaseSearch.php:107 src/Module/Contact/MatchInterests.php:136 msgid "No matches" msgstr "No hi ha coincidències" -#: src/Module/BaseSearch.php:147 +#: src/Module/BaseSearch.php:133 #, php-format msgid "" "%d result was filtered out because your node blocks the domain it is " @@ -6082,831 +6159,828 @@ msgid_plural "" msgstr[0] "" msgstr[1] "" -#: src/Module/BaseSettings.php:78 +#: src/Module/BaseSettings.php:64 msgid "Account" msgstr "Compte" -#: src/Module/BaseSettings.php:85 src/Module/Security/TwoFactor/Verify.php:96 -#: src/Module/Settings/TwoFactor/Index.php:138 +#: src/Module/BaseSettings.php:71 src/Module/Security/TwoFactor/Verify.php:82 +#: src/Module/Settings/TwoFactor/Index.php:124 msgid "Two-factor authentication" msgstr "" -#: src/Module/BaseSettings.php:118 +#: src/Module/BaseSettings.php:104 msgid "Display" msgstr "" -#: src/Module/BaseSettings.php:132 src/Module/Settings/Connectors.php:204 +#: src/Module/BaseSettings.php:118 src/Module/Settings/Connectors.php:195 msgid "Social Networks" msgstr "Xarxes socials" -#: src/Module/BaseSettings.php:146 src/Module/Settings/Delegation.php:194 +#: src/Module/BaseSettings.php:132 src/Module/Settings/Delegation.php:180 msgid "Manage Accounts" msgstr "" -#: src/Module/BaseSettings.php:153 +#: src/Module/BaseSettings.php:139 msgid "Connected apps" msgstr "App connectada" -#: src/Module/BaseSettings.php:160 +#: src/Module/BaseSettings.php:146 msgid "Remote servers" msgstr "" -#: src/Module/BaseSettings.php:167 src/Module/Settings/UserExport.php:98 +#: src/Module/BaseSettings.php:153 src/Module/Settings/UserExport.php:84 msgid "Export personal data" msgstr "Exportar dades personals" -#: src/Module/BaseSettings.php:174 +#: src/Module/BaseSettings.php:160 msgid "Remove account" msgstr "Esborrar compte" -#: src/Module/Bookmarklet.php:54 +#: src/Module/Bookmarklet.php:40 msgid "This page is missing a url parameter." msgstr "" -#: src/Module/Bookmarklet.php:66 +#: src/Module/Bookmarklet.php:52 msgid "The post was created" msgstr "" -#: src/Module/Calendar/Event/API.php:100 src/Module/Calendar/Event/API.php:135 -#: src/Module/Calendar/Event/Form.php:80 +#: src/Module/Calendar/Event/API.php:86 src/Module/Calendar/Event/API.php:121 +#: src/Module/Calendar/Event/Form.php:66 msgid "Invalid Request" msgstr "" -#: src/Module/Calendar/Event/API.php:109 +#: src/Module/Calendar/Event/API.php:95 msgid "Event id is missing." msgstr "" -#: src/Module/Calendar/Event/API.php:131 +#: src/Module/Calendar/Event/API.php:117 msgid "Failed to remove event" msgstr "" -#: src/Module/Calendar/Event/API.php:187 src/Module/Calendar/Event/API.php:189 +#: src/Module/Calendar/Event/API.php:173 src/Module/Calendar/Event/API.php:175 msgid "Event can not end before it has started." msgstr "" -#: src/Module/Calendar/Event/API.php:196 src/Module/Calendar/Event/API.php:198 +#: src/Module/Calendar/Event/API.php:182 src/Module/Calendar/Event/API.php:184 msgid "Event title and start time are required." msgstr "Títol d'esdeveniment i hora d'inici requerits." -#: src/Module/Calendar/Event/Form.php:208 +#: src/Module/Calendar/Event/Form.php:194 msgid "Starting date and Title are required." msgstr "" -#: src/Module/Calendar/Event/Form.php:209 -#: src/Module/Calendar/Event/Form.php:214 +#: src/Module/Calendar/Event/Form.php:195 +#: src/Module/Calendar/Event/Form.php:200 msgid "Event Starts:" msgstr "Inici d'Esdeveniment:" -#: src/Module/Calendar/Event/Form.php:209 -#: src/Module/Calendar/Event/Form.php:237 src/Module/Debug/Probe.php:59 -#: src/Module/Install.php:201 src/Module/Install.php:227 -#: src/Module/Install.php:232 src/Module/Install.php:246 -#: src/Module/Install.php:255 src/Module/Install.php:260 -#: src/Module/Install.php:266 src/Module/Install.php:271 -#: src/Module/Install.php:285 src/Module/Install.php:298 -#: src/Module/Install.php:325 -#: src/Module/Moderation/Blocklist/Server/Add.php:136 -#: src/Module/Moderation/Blocklist/Server/Add.php:138 -#: src/Module/Moderation/Blocklist/Server/Import.php:129 -#: src/Module/Moderation/Blocklist/Server/Index.php:86 -#: src/Module/Moderation/Blocklist/Server/Index.php:87 -#: src/Module/Moderation/Blocklist/Server/Index.php:115 -#: src/Module/Moderation/Blocklist/Server/Index.php:116 -#: src/Module/Moderation/Item/Delete.php:67 src/Module/Register.php:148 -#: src/Module/Security/TwoFactor/Verify.php:101 -#: src/Module/Settings/Channels.php:184 src/Module/Settings/Channels.php:205 -#: src/Module/Settings/TwoFactor/Index.php:161 -#: src/Module/Settings/TwoFactor/Verify.php:158 +#: src/Module/Calendar/Event/Form.php:195 +#: src/Module/Calendar/Event/Form.php:223 src/Module/Debug/Probe.php:45 +#: src/Module/Install.php:187 src/Module/Install.php:213 +#: src/Module/Install.php:218 src/Module/Install.php:232 +#: src/Module/Install.php:241 src/Module/Install.php:246 +#: src/Module/Install.php:252 src/Module/Install.php:257 +#: src/Module/Install.php:271 src/Module/Install.php:284 +#: src/Module/Install.php:311 +#: src/Module/Moderation/Blocklist/Server/Add.php:122 +#: src/Module/Moderation/Blocklist/Server/Add.php:124 +#: src/Module/Moderation/Blocklist/Server/Import.php:113 +#: src/Module/Moderation/Blocklist/Server/Index.php:72 +#: src/Module/Moderation/Blocklist/Server/Index.php:73 +#: src/Module/Moderation/Blocklist/Server/Index.php:101 +#: src/Module/Moderation/Blocklist/Server/Index.php:102 +#: src/Module/Moderation/Item/Delete.php:53 src/Module/Register.php:141 +#: src/Module/Security/TwoFactor/Verify.php:87 +#: src/Module/Settings/Channels.php:176 src/Module/Settings/Channels.php:197 +#: src/Module/Settings/TwoFactor/Index.php:147 +#: src/Module/Settings/TwoFactor/Verify.php:144 msgid "Required" msgstr "Requerit" -#: src/Module/Calendar/Event/Form.php:223 -#: src/Module/Calendar/Event/Form.php:247 +#: src/Module/Calendar/Event/Form.php:209 +#: src/Module/Calendar/Event/Form.php:233 msgid "Finish date/time is not known or not relevant" msgstr "La data/hora de finalització no es coneixen o no són relevants" -#: src/Module/Calendar/Event/Form.php:225 -#: src/Module/Calendar/Event/Form.php:230 +#: src/Module/Calendar/Event/Form.php:211 +#: src/Module/Calendar/Event/Form.php:216 msgid "Event Finishes:" msgstr "L'esdeveniment Finalitza:" -#: src/Module/Calendar/Event/Form.php:237 -#: src/Module/Calendar/Event/Form.php:243 +#: src/Module/Calendar/Event/Form.php:223 +#: src/Module/Calendar/Event/Form.php:229 msgid "Title (BBCode not allowed)" msgstr "" -#: src/Module/Calendar/Event/Form.php:239 +#: src/Module/Calendar/Event/Form.php:225 msgid "Description (BBCode allowed)" msgstr "" -#: src/Module/Calendar/Event/Form.php:241 +#: src/Module/Calendar/Event/Form.php:227 msgid "Location (BBCode not allowed)" msgstr "" -#: src/Module/Calendar/Event/Form.php:244 -#: src/Module/Calendar/Event/Form.php:245 +#: src/Module/Calendar/Event/Form.php:230 +#: src/Module/Calendar/Event/Form.php:231 msgid "Share this event" msgstr "Compartir aquest esdeveniment" -#: src/Module/Calendar/Event/Form.php:251 src/Module/Profile/Profile.php:275 +#: src/Module/Calendar/Event/Form.php:237 src/Module/Profile/Profile.php:263 msgid "Basic" msgstr "Basic" -#: src/Module/Calendar/Export.php:94 +#: src/Module/Calendar/Export.php:80 msgid "This calendar format is not supported" msgstr "" -#: src/Module/Calendar/Export.php:96 +#: src/Module/Calendar/Export.php:82 msgid "No exportable data found" msgstr "" -#: src/Module/Calendar/Export.php:113 +#: src/Module/Calendar/Export.php:99 msgid "calendar" msgstr "calendari" -#: src/Module/Calendar/Show.php:124 +#: src/Module/Calendar/Show.php:110 msgid "Events" msgstr "Esdeveniments" -#: src/Module/Calendar/Show.php:125 +#: src/Module/Calendar/Show.php:111 msgid "View" msgstr "" -#: src/Module/Calendar/Show.php:126 +#: src/Module/Calendar/Show.php:112 msgid "Create New Event" msgstr "Crear un nou esdeveniment" -#: src/Module/Calendar/Show.php:132 src/Module/Settings/Display.php:300 +#: src/Module/Calendar/Show.php:118 src/Module/Settings/Display.php:283 msgid "list" msgstr "llista" -#: src/Module/Circle.php:57 +#: src/Module/Circle.php:43 msgid "Could not create circle." msgstr "" -#: src/Module/Circle.php:68 src/Module/Circle.php:214 -#: src/Module/Circle.php:238 +#: src/Module/Circle.php:54 src/Module/Circle.php:202 +#: src/Module/Circle.php:226 msgid "Circle not found." msgstr "" -#: src/Module/Circle.php:74 +#: src/Module/Circle.php:60 msgid "Circle name was not changed." msgstr "" -#: src/Module/Circle.php:92 +#: src/Module/Circle.php:78 msgid "Unknown circle." msgstr "" -#: src/Module/Circle.php:98 src/Module/Circle.php:107 -#: src/Module/Contact/Advanced.php:70 src/Module/Contact/Advanced.php:109 -#: src/Module/Contact/Contacts.php:71 src/Module/Contact/Conversations.php:86 -#: src/Module/Contact/Conversations.php:91 -#: src/Module/Contact/Conversations.php:96 src/Module/Contact/Media.php:61 -#: src/Module/Contact/Posts.php:78 src/Module/Contact/Posts.php:83 -#: src/Module/Contact/Posts.php:88 src/Module/Contact/Profile.php:154 -#: src/Module/Contact/Profile.php:159 src/Module/Contact/Profile.php:164 -#: src/Module/Contact/Redir.php:94 src/Module/Contact/Redir.php:140 -#: src/Module/FriendSuggest.php:71 src/Module/FriendSuggest.php:109 +#: src/Module/Circle.php:84 src/Module/Circle.php:93 +#: src/Module/Contact/Advanced.php:56 src/Module/Contact/Advanced.php:95 +#: src/Module/Contact/Contacts.php:57 src/Module/Contact/Conversations.php:72 +#: src/Module/Contact/Conversations.php:77 +#: src/Module/Contact/Conversations.php:82 src/Module/Contact/Media.php:47 +#: src/Module/Contact/Posts.php:64 src/Module/Contact/Posts.php:69 +#: src/Module/Contact/Posts.php:74 src/Module/Contact/Profile.php:145 +#: src/Module/Contact/Profile.php:150 src/Module/Contact/Profile.php:169 +#: src/Module/Contact/Redir.php:77 src/Module/Contact/Redir.php:131 +#: src/Module/FriendSuggest.php:57 src/Module/FriendSuggest.php:95 msgid "Contact not found." msgstr "Contacte no trobat" -#: src/Module/Circle.php:102 src/Module/Contact/Contacts.php:66 +#: src/Module/Circle.php:88 src/Module/Contact/Contacts.php:52 msgid "Invalid contact." msgstr "Contacte no vàlid." -#: src/Module/Circle.php:111 src/Module/Contact/Revoke.php:73 +#: src/Module/Circle.php:97 src/Module/Contact/Revoke.php:56 msgid "Contact is deleted." msgstr "" -#: src/Module/Circle.php:117 +#: src/Module/Circle.php:103 msgid "Unable to add the contact to the circle." msgstr "" -#: src/Module/Circle.php:120 +#: src/Module/Circle.php:106 msgid "Contact successfully added to circle." msgstr "" -#: src/Module/Circle.php:124 +#: src/Module/Circle.php:110 msgid "Unable to remove the contact from the circle." msgstr "" -#: src/Module/Circle.php:127 +#: src/Module/Circle.php:113 msgid "Contact successfully removed from circle." msgstr "" -#: src/Module/Circle.php:131 +#: src/Module/Circle.php:117 msgid "Bad request." msgstr "" -#: src/Module/Circle.php:170 +#: src/Module/Circle.php:158 msgid "Save Circle" msgstr "" -#: src/Module/Circle.php:171 +#: src/Module/Circle.php:159 msgid "Filter" msgstr "" -#: src/Module/Circle.php:177 +#: src/Module/Circle.php:165 msgid "Create a circle of contacts/friends." msgstr "" -#: src/Module/Circle.php:219 +#: src/Module/Circle.php:207 msgid "Unable to remove circle." msgstr "" -#: src/Module/Circle.php:270 +#: src/Module/Circle.php:258 msgid "Delete Circle" msgstr "" -#: src/Module/Circle.php:280 +#: src/Module/Circle.php:268 msgid "Edit Circle Name" msgstr "" -#: src/Module/Circle.php:290 +#: src/Module/Circle.php:278 msgid "Members" msgstr "Membres" -#: src/Module/Circle.php:293 +#: src/Module/Circle.php:281 msgid "Circle is empty" msgstr "" -#: src/Module/Circle.php:306 +#: src/Module/Circle.php:297 msgid "Remove contact from circle" msgstr "" -#: src/Module/Circle.php:329 +#: src/Module/Circle.php:320 msgid "Click on a contact to add or remove." msgstr "Clicar sobre el contacte per afegir o esborrar." -#: src/Module/Circle.php:343 +#: src/Module/Circle.php:337 msgid "Add contact to circle" msgstr "" -#: src/Module/Contact.php:96 +#: src/Module/Contact.php:88 #, php-format msgid "%d contact edited." msgid_plural "%d contacts edited." msgstr[0] "" msgstr[1] "" -#: src/Module/Contact.php:347 +#: src/Module/Contact.php:328 msgid "Show all contacts" msgstr "Mostrar tots els contactes" -#: src/Module/Contact.php:352 src/Module/Contact.php:431 -#: src/Module/Moderation/BaseUsers.php:85 +#: src/Module/Contact.php:333 src/Module/Contact.php:412 +#: src/Module/Moderation/BaseUsers.php:72 msgid "Pending" msgstr "" -#: src/Module/Contact.php:355 +#: src/Module/Contact.php:336 msgid "Only show pending contacts" msgstr "" -#: src/Module/Contact.php:360 src/Module/Contact.php:434 -#: src/Module/Moderation/BaseUsers.php:93 +#: src/Module/Contact.php:341 src/Module/Contact.php:415 +#: src/Module/Moderation/BaseUsers.php:80 msgid "Blocked" msgstr "Blocat" -#: src/Module/Contact.php:363 +#: src/Module/Contact.php:344 msgid "Only show blocked contacts" msgstr "Mostrar únicament els contactes blocats" -#: src/Module/Contact.php:368 src/Module/Contact.php:440 -#: src/Module/Settings/Server/Index.php:107 src/Object/Post.php:386 +#: src/Module/Contact.php:349 src/Module/Contact.php:421 +#: src/Module/Settings/Server/Index.php:93 src/Object/Post.php:385 msgid "Ignored" msgstr "Ignorat" -#: src/Module/Contact.php:371 +#: src/Module/Contact.php:352 msgid "Only show ignored contacts" msgstr "Mostrar únicament els contactes ignorats" -#: src/Module/Contact.php:376 src/Module/Contact.php:443 +#: src/Module/Contact.php:357 src/Module/Contact.php:424 msgid "Collapsed" msgstr "" -#: src/Module/Contact.php:379 +#: src/Module/Contact.php:360 msgid "Only show collapsed contacts" msgstr "" -#: src/Module/Contact.php:384 src/Module/Contact.php:446 +#: src/Module/Contact.php:365 src/Module/Contact.php:427 msgid "Archived" msgstr "Arxivat" -#: src/Module/Contact.php:387 +#: src/Module/Contact.php:368 msgid "Only show archived contacts" msgstr "Mostrar únicament els contactes arxivats" -#: src/Module/Contact.php:392 src/Module/Contact.php:437 +#: src/Module/Contact.php:373 src/Module/Contact.php:418 msgid "Hidden" msgstr "Amagat" -#: src/Module/Contact.php:395 +#: src/Module/Contact.php:376 msgid "Only show hidden contacts" msgstr "Mostrar únicament els contactes amagats" -#: src/Module/Contact.php:403 +#: src/Module/Contact.php:384 msgid "Organize your contact circles" msgstr "" -#: src/Module/Contact.php:458 +#: src/Module/Contact.php:439 msgid "Search your contacts" msgstr "Cercant el seus contactes" -#: src/Module/Contact.php:459 src/Module/Search/Index.php:207 +#: src/Module/Contact.php:440 src/Module/Search/Index.php:193 #, php-format msgid "Results for: %s" msgstr "" -#: src/Module/Contact.php:466 +#: src/Module/Contact.php:448 msgid "Update" msgstr "Actualitzar" -#: src/Module/Contact.php:467 src/Module/Contact/Profile.php:511 -#: src/Module/Moderation/Blocklist/Contact.php:117 -#: src/Module/Moderation/Users/Blocked.php:138 -#: src/Module/Moderation/Users/Index.php:154 +#: src/Module/Contact.php:449 src/Module/Contact/Profile.php:518 +#: src/Module/Moderation/Blocklist/Contact.php:103 +#: src/Module/Moderation/Users/Blocked.php:124 +#: src/Module/Moderation/Users/Index.php:140 msgid "Unblock" msgstr "Desbloquejar" -#: src/Module/Contact.php:468 src/Module/Contact/Profile.php:519 +#: src/Module/Contact.php:450 src/Module/Contact/Profile.php:526 msgid "Unignore" msgstr "Treure d'Ignorats" -#: src/Module/Contact.php:469 src/Module/Contact/Profile.php:527 +#: src/Module/Contact.php:451 src/Module/Contact/Profile.php:534 msgid "Uncollapse" msgstr "" -#: src/Module/Contact.php:471 +#: src/Module/Contact.php:453 msgid "Batch Actions" msgstr "" -#: src/Module/Contact.php:514 +#: src/Module/Contact.php:496 msgid "Conversations started by this contact" msgstr "" -#: src/Module/Contact.php:519 +#: src/Module/Contact.php:501 msgid "Posts and Comments" msgstr "" -#: src/Module/Contact.php:522 +#: src/Module/Contact.php:504 msgid "Individual Posts and Replies" msgstr "" -#: src/Module/Contact.php:530 +#: src/Module/Contact.php:512 msgid "Posts containing media objects" msgstr "" -#: src/Module/Contact.php:538 +#: src/Module/Contact.php:520 msgid "View all known contacts" msgstr "" -#: src/Module/Contact.php:549 +#: src/Module/Contact.php:531 msgid "Advanced Contact Settings" msgstr "Ajustos Avançats per als Contactes" -#: src/Module/Contact.php:585 +#: src/Module/Contact.php:567 msgid "Mutual Friendship" msgstr "Amistat Mutua" -#: src/Module/Contact.php:589 +#: src/Module/Contact.php:571 msgid "is a fan of yours" msgstr "Es un fan teu" -#: src/Module/Contact.php:593 +#: src/Module/Contact.php:575 msgid "you are a fan of" msgstr "ets fan de" -#: src/Module/Contact.php:611 +#: src/Module/Contact.php:593 msgid "Pending outgoing contact request" msgstr "" -#: src/Module/Contact.php:613 +#: src/Module/Contact.php:595 msgid "Pending incoming contact request" msgstr "" -#: src/Module/Contact.php:626 src/Module/Contact/Profile.php:371 +#: src/Module/Contact.php:608 src/Module/Contact/Profile.php:377 #, php-format msgid "Visit %s's profile [%s]" msgstr "Visitar perfil de %s [%s]" -#: src/Module/Contact/Advanced.php:99 +#: src/Module/Contact/Advanced.php:85 msgid "Contact update failed." msgstr "Fracassà l'actualització de Contacte" -#: src/Module/Contact/Advanced.php:130 +#: src/Module/Contact/Advanced.php:116 msgid "Return to contact editor" msgstr "Tornar al editor de contactes" -#: src/Module/Contact/Advanced.php:134 -#: src/Module/Moderation/Blocklist/Contact.php:122 -#: src/Module/Moderation/Reports.php:95 -#: src/Module/Moderation/Users/Active.php:126 -#: src/Module/Moderation/Users/Blocked.php:126 -#: src/Module/Moderation/Users/Create.php:70 -#: src/Module/Moderation/Users/Deleted.php:83 -#: src/Module/Moderation/Users/Index.php:140 -#: src/Module/Moderation/Users/Index.php:160 -#: src/Module/Moderation/Users/Pending.php:99 src/Module/Settings/OAuth.php:72 +#: src/Module/Contact/Advanced.php:120 +#: src/Module/Moderation/Blocklist/Contact.php:108 +#: src/Module/Moderation/Reports.php:102 +#: src/Module/Moderation/Users/Active.php:112 +#: src/Module/Moderation/Users/Blocked.php:112 +#: src/Module/Moderation/Users/Create.php:56 +#: src/Module/Moderation/Users/Deleted.php:69 +#: src/Module/Moderation/Users/Index.php:126 +#: src/Module/Moderation/Users/Index.php:146 +#: src/Module/Moderation/Users/Pending.php:85 src/Module/Settings/OAuth.php:58 msgid "Name" msgstr "Nom" -#: src/Module/Contact/Advanced.php:135 +#: src/Module/Contact/Advanced.php:121 msgid "Account Nickname" msgstr "Àlies del Compte" -#: src/Module/Contact/Advanced.php:136 +#: src/Module/Contact/Advanced.php:122 msgid "Account URL" msgstr "Adreça URL del Compte" -#: src/Module/Contact/Advanced.php:137 +#: src/Module/Contact/Advanced.php:123 msgid "Poll/Feed URL" msgstr "Adreça de Enquesta/Alimentador" -#: src/Module/Contact/Advanced.php:138 +#: src/Module/Contact/Advanced.php:124 msgid "New photo from this URL" msgstr "Nova foto d'aquesta URL" -#: src/Module/Contact/Contacts.php:89 +#: src/Module/Contact/Contacts.php:75 msgid "No known contacts." msgstr "" -#: src/Module/Contact/Contacts.php:103 src/Module/Profile/Common.php:128 +#: src/Module/Contact/Contacts.php:89 src/Module/Profile/Common.php:114 msgid "No common contacts." msgstr "" -#: src/Module/Contact/Contacts.php:115 src/Module/Profile/Contacts.php:135 +#: src/Module/Contact/Contacts.php:101 src/Module/Profile/Contacts.php:121 #, php-format msgid "Follower (%s)" msgid_plural "Followers (%s)" msgstr[0] "" msgstr[1] "" -#: src/Module/Contact/Contacts.php:119 src/Module/Profile/Contacts.php:138 +#: src/Module/Contact/Contacts.php:105 src/Module/Profile/Contacts.php:124 #, php-format msgid "Following (%s)" msgid_plural "Following (%s)" msgstr[0] "" msgstr[1] "" -#: src/Module/Contact/Contacts.php:123 src/Module/Profile/Contacts.php:141 +#: src/Module/Contact/Contacts.php:109 src/Module/Profile/Contacts.php:127 #, php-format msgid "Mutual friend (%s)" msgid_plural "Mutual friends (%s)" msgstr[0] "" msgstr[1] "" -#: src/Module/Contact/Contacts.php:125 src/Module/Profile/Contacts.php:143 +#: src/Module/Contact/Contacts.php:111 src/Module/Profile/Contacts.php:129 #, php-format msgid "These contacts both follow and are followed by %s." msgstr "" -#: src/Module/Contact/Contacts.php:131 src/Module/Profile/Common.php:116 +#: src/Module/Contact/Contacts.php:117 src/Module/Profile/Common.php:102 #, php-format msgid "Common contact (%s)" msgid_plural "Common contacts (%s)" msgstr[0] "" msgstr[1] "" -#: src/Module/Contact/Contacts.php:133 src/Module/Profile/Common.php:118 +#: src/Module/Contact/Contacts.php:119 src/Module/Profile/Common.php:104 #, php-format msgid "" "Both %s and yourself have publicly interacted with these " "contacts (follow, comment or likes on public posts)." msgstr "" -#: src/Module/Contact/Contacts.php:139 src/Module/Profile/Contacts.php:149 +#: src/Module/Contact/Contacts.php:125 src/Module/Profile/Contacts.php:135 #, php-format msgid "Contact (%s)" msgid_plural "Contacts (%s)" msgstr[0] "" msgstr[1] "" -#: src/Module/Contact/Follow.php:70 src/Module/Contact/Redir.php:62 -#: src/Module/Contact/Redir.php:222 src/Module/Conversation/Community.php:166 -#: src/Module/Debug/ItemBody.php:38 src/Module/Diaspora/Receive.php:57 -#: src/Module/Item/Display.php:96 src/Module/Item/Feed.php:59 -#: src/Module/Item/Follow.php:41 src/Module/Item/Ignore.php:41 -#: src/Module/Item/Pin.php:41 src/Module/Item/Pin.php:56 -#: src/Module/Item/Star.php:42 src/Module/Update/Display.php:37 +#: src/Module/Contact/Follow.php:56 src/Module/Contact/Redir.php:45 +#: src/Module/Contact/Redir.php:206 src/Module/Conversation/Community.php:154 +#: src/Module/Debug/ItemBody.php:24 src/Module/Diaspora/Receive.php:45 +#: src/Module/Item/Display.php:82 src/Module/Item/Feed.php:45 +#: src/Module/Item/Follow.php:27 src/Module/Item/Ignore.php:27 +#: src/Module/Item/Language.php:39 src/Module/Item/Pin.php:27 +#: src/Module/Item/Pin.php:42 src/Module/Item/Searchtext.php:39 +#: src/Module/Item/Star.php:28 src/Module/Update/Display.php:23 msgid "Access denied." msgstr "Accés denegat." -#: src/Module/Contact/Follow.php:105 src/Module/Contact/Unfollow.php:125 -#: src/Module/Profile/RemoteFollow.php:133 +#: src/Module/Contact/Follow.php:91 src/Module/Contact/Unfollow.php:111 +#: src/Module/Profile/RemoteFollow.php:119 msgid "Submit Request" msgstr "Sol·licitud Enviada" -#: src/Module/Contact/Follow.php:115 +#: src/Module/Contact/Follow.php:101 msgid "You already added this contact." msgstr "Ja heu afegit aquest contacte." -#: src/Module/Contact/Follow.php:130 +#: src/Module/Contact/Follow.php:116 msgid "The network type couldn't be detected. Contact can't be added." msgstr "No s'ha pogut detectar el tipus de xarxa. El contacte no es pot afegir." -#: src/Module/Contact/Follow.php:138 +#: src/Module/Contact/Follow.php:124 msgid "Diaspora support isn't enabled. Contact can't be added." msgstr "Diaspora l'assistència no està habilitada. El contacte no es pot afegir." -#: src/Module/Contact/Follow.php:143 -msgid "OStatus support is disabled. Contact can't be added." -msgstr "OStatus l'assistència està desactivada. El contacte no es pot afegir." - -#: src/Module/Contact/Follow.php:168 src/Module/Profile/RemoteFollow.php:132 +#: src/Module/Contact/Follow.php:149 src/Module/Profile/RemoteFollow.php:118 msgid "Please answer the following:" msgstr "Si us plau, contesti les següents preguntes:" -#: src/Module/Contact/Follow.php:169 src/Module/Contact/Unfollow.php:123 +#: src/Module/Contact/Follow.php:150 src/Module/Contact/Unfollow.php:109 msgid "Your Identity Address:" msgstr "La Teva Adreça Identificativa:" -#: src/Module/Contact/Follow.php:170 src/Module/Contact/Profile.php:402 -#: src/Module/Contact/Unfollow.php:129 -#: src/Module/Moderation/Blocklist/Contact.php:133 -#: src/Module/Moderation/Reports.php:104 -#: src/Module/Notifications/Introductions.php:129 -#: src/Module/Notifications/Introductions.php:198 +#: src/Module/Contact/Follow.php:151 src/Module/Contact/Profile.php:408 +#: src/Module/Contact/Unfollow.php:115 +#: src/Module/Moderation/Blocklist/Contact.php:117 +#: src/Module/Moderation/Reports.php:109 +#: src/Module/Notifications/Introductions.php:121 +#: src/Module/Notifications/Introductions.php:190 msgid "Profile URL" msgstr "Perfil URL" -#: src/Module/Contact/Follow.php:171 src/Module/Contact/Profile.php:414 -#: src/Module/Notifications/Introductions.php:191 -#: src/Module/Profile/Profile.php:234 +#: src/Module/Contact/Follow.php:152 src/Module/Contact/Profile.php:420 +#: src/Module/Notifications/Introductions.php:183 +#: src/Module/Profile/Profile.php:222 msgid "Tags:" msgstr "Etiquetes:" -#: src/Module/Contact/Follow.php:182 +#: src/Module/Contact/Follow.php:163 #, php-format msgid "%s knows you" msgstr "" -#: src/Module/Contact/Follow.php:183 +#: src/Module/Contact/Follow.php:164 msgid "Add a personal note:" msgstr "Afegir una nota personal:" -#: src/Module/Contact/Follow.php:192 src/Module/Contact/Unfollow.php:138 +#: src/Module/Contact/Follow.php:173 src/Module/Contact/Unfollow.php:124 msgid "Posts and Replies" msgstr "" -#: src/Module/Contact/Follow.php:221 +#: src/Module/Contact/Follow.php:202 msgid "The contact could not be added." msgstr "El contacte no s'ha pogut afegir." -#: src/Module/Contact/MatchInterests.php:94 -#: src/Module/Media/Attachment/Upload.php:77 -#: src/Module/Media/Attachment/Upload.php:82 -#: src/Module/Media/Photo/Upload.php:81 src/Module/Media/Photo/Upload.php:86 -#: src/Module/Media/Photo/Upload.php:135 +#: src/Module/Contact/MatchInterests.php:81 +#: src/Module/Media/Attachment/Upload.php:63 +#: src/Module/Media/Attachment/Upload.php:68 +#: src/Module/Media/Photo/Upload.php:67 src/Module/Media/Photo/Upload.php:72 +#: src/Module/Media/Photo/Upload.php:121 msgid "Invalid request." msgstr "" -#: src/Module/Contact/MatchInterests.php:101 +#: src/Module/Contact/MatchInterests.php:88 msgid "No keywords to match. Please add keywords to your profile." msgstr "" -#: src/Module/Contact/MatchInterests.php:144 +#: src/Module/Contact/MatchInterests.php:141 msgid "Profile Match" msgstr "Perfil Aconseguit" -#: src/Module/Contact/Profile.php:140 +#: src/Module/Contact/Profile.php:131 msgid "Failed to update contact record." msgstr "Error en actualitzar registre de contacte." -#: src/Module/Contact/Profile.php:190 +#: src/Module/Contact/Profile.php:195 msgid "Contact has been unblocked" msgstr "El contacte ha estat desbloquejat" -#: src/Module/Contact/Profile.php:194 +#: src/Module/Contact/Profile.php:199 msgid "Contact has been blocked" msgstr "Elcontacte ha estat bloquejat" -#: src/Module/Contact/Profile.php:206 +#: src/Module/Contact/Profile.php:211 msgid "Contact has been unignored" msgstr "El contacte ha estat recordat" -#: src/Module/Contact/Profile.php:210 +#: src/Module/Contact/Profile.php:215 msgid "Contact has been ignored" msgstr "El contacte ha estat ignorat" -#: src/Module/Contact/Profile.php:222 +#: src/Module/Contact/Profile.php:227 msgid "Contact has been uncollapsed" msgstr "" -#: src/Module/Contact/Profile.php:226 +#: src/Module/Contact/Profile.php:231 msgid "Contact has been collapsed" msgstr "" -#: src/Module/Contact/Profile.php:254 +#: src/Module/Contact/Profile.php:259 #, php-format msgid "You are mutual friends with %s" msgstr "Ara te una amistat mutua amb %s" -#: src/Module/Contact/Profile.php:255 +#: src/Module/Contact/Profile.php:260 #, php-format msgid "You are sharing with %s" msgstr "Estas compartint amb %s" -#: src/Module/Contact/Profile.php:256 +#: src/Module/Contact/Profile.php:261 #, php-format msgid "%s is sharing with you" msgstr "%s esta compartint amb tú" -#: src/Module/Contact/Profile.php:272 +#: src/Module/Contact/Profile.php:277 msgid "Private communications are not available for this contact." msgstr "Comunicacions privades no disponibles per aquest contacte." -#: src/Module/Contact/Profile.php:282 +#: src/Module/Contact/Profile.php:287 msgid "This contact is on a server you ignored." msgstr "" -#: src/Module/Contact/Profile.php:285 +#: src/Module/Contact/Profile.php:290 msgid "Never" msgstr "Mai" -#: src/Module/Contact/Profile.php:288 +#: src/Module/Contact/Profile.php:293 msgid "(Update was not successful)" msgstr "(L'actualització fracassà)" -#: src/Module/Contact/Profile.php:288 +#: src/Module/Contact/Profile.php:293 msgid "(Update was successful)" msgstr "(L'actualització fou exitosa)" -#: src/Module/Contact/Profile.php:290 src/Module/Contact/Profile.php:482 +#: src/Module/Contact/Profile.php:295 src/Module/Contact/Profile.php:489 msgid "Suggest friends" msgstr "Suggerir amics" -#: src/Module/Contact/Profile.php:294 +#: src/Module/Contact/Profile.php:299 #, php-format msgid "Network type: %s" msgstr "Xarxa tipus: %s" -#: src/Module/Contact/Profile.php:299 +#: src/Module/Contact/Profile.php:304 msgid "Communications lost with this contact!" msgstr "La comunicació amb aquest contacte s'ha perdut!" -#: src/Module/Contact/Profile.php:305 +#: src/Module/Contact/Profile.php:310 msgid "Fetch further information for feeds" msgstr "" -#: src/Module/Contact/Profile.php:307 +#: src/Module/Contact/Profile.php:312 msgid "" "Fetch information like preview pictures, title and teaser from the feed " "item. You can activate this if the feed doesn't contain much text. Keywords " "are taken from the meta header in the feed item and are posted as hash tags." msgstr "" -#: src/Module/Contact/Profile.php:310 +#: src/Module/Contact/Profile.php:315 msgid "Fetch information" msgstr "" -#: src/Module/Contact/Profile.php:311 +#: src/Module/Contact/Profile.php:316 msgid "Fetch keywords" msgstr "" -#: src/Module/Contact/Profile.php:312 +#: src/Module/Contact/Profile.php:317 msgid "Fetch information and keywords" msgstr "" -#: src/Module/Contact/Profile.php:322 src/Module/Contact/Profile.php:327 -#: src/Module/Contact/Profile.php:332 src/Module/Contact/Profile.php:338 +#: src/Module/Contact/Profile.php:327 src/Module/Contact/Profile.php:332 +#: src/Module/Contact/Profile.php:337 src/Module/Contact/Profile.php:343 msgid "No mirroring" msgstr "" -#: src/Module/Contact/Profile.php:323 src/Module/Contact/Profile.php:333 -#: src/Module/Contact/Profile.php:339 +#: src/Module/Contact/Profile.php:328 src/Module/Contact/Profile.php:338 +#: src/Module/Contact/Profile.php:344 msgid "Mirror as my own posting" msgstr "" -#: src/Module/Contact/Profile.php:328 src/Module/Contact/Profile.php:334 +#: src/Module/Contact/Profile.php:333 src/Module/Contact/Profile.php:339 msgid "Native reshare" msgstr "" -#: src/Module/Contact/Profile.php:353 +#: src/Module/Contact/Profile.php:359 msgid "Contact Information / Notes" msgstr "Informació/Notes del contacte" -#: src/Module/Contact/Profile.php:354 +#: src/Module/Contact/Profile.php:360 msgid "Contact Settings" msgstr "" -#: src/Module/Contact/Profile.php:362 +#: src/Module/Contact/Profile.php:368 msgid "Contact" msgstr "" -#: src/Module/Contact/Profile.php:366 +#: src/Module/Contact/Profile.php:372 msgid "Their personal note" msgstr "" -#: src/Module/Contact/Profile.php:368 +#: src/Module/Contact/Profile.php:374 msgid "Edit contact notes" msgstr "Editar notes de contactes" -#: src/Module/Contact/Profile.php:372 +#: src/Module/Contact/Profile.php:378 msgid "Block/Unblock contact" msgstr "Bloquejar/Alliberar contacte" -#: src/Module/Contact/Profile.php:373 -#: src/Module/Moderation/Report/Create.php:293 +#: src/Module/Contact/Profile.php:379 +#: src/Module/Moderation/Report/Create.php:279 msgid "Ignore contact" msgstr "Ignore contacte" -#: src/Module/Contact/Profile.php:374 +#: src/Module/Contact/Profile.php:380 msgid "View conversations" msgstr "Veient conversacions" -#: src/Module/Contact/Profile.php:379 +#: src/Module/Contact/Profile.php:385 msgid "Last update:" msgstr "Última actualització:" -#: src/Module/Contact/Profile.php:381 +#: src/Module/Contact/Profile.php:387 msgid "Update public posts" msgstr "Actualitzar enviament públic" -#: src/Module/Contact/Profile.php:383 src/Module/Contact/Profile.php:492 +#: src/Module/Contact/Profile.php:389 src/Module/Contact/Profile.php:499 msgid "Update now" msgstr "Actualitza ara" -#: src/Module/Contact/Profile.php:385 +#: src/Module/Contact/Profile.php:391 msgid "Awaiting connection acknowledge" msgstr "" -#: src/Module/Contact/Profile.php:386 +#: src/Module/Contact/Profile.php:392 msgid "Currently blocked" msgstr "Bloquejat actualment" -#: src/Module/Contact/Profile.php:387 +#: src/Module/Contact/Profile.php:393 msgid "Currently ignored" msgstr "Ignorat actualment" -#: src/Module/Contact/Profile.php:388 +#: src/Module/Contact/Profile.php:394 msgid "Currently collapsed" msgstr "" -#: src/Module/Contact/Profile.php:389 +#: src/Module/Contact/Profile.php:395 msgid "Currently archived" msgstr "Actualment arxivat" -#: src/Module/Contact/Profile.php:392 +#: src/Module/Contact/Profile.php:398 msgid "Manage remote servers" msgstr "" -#: src/Module/Contact/Profile.php:394 -#: src/Module/Notifications/Introductions.php:192 +#: src/Module/Contact/Profile.php:400 +#: src/Module/Notifications/Introductions.php:184 msgid "Hide this contact from others" msgstr "Amaga aquest contacte dels altres" -#: src/Module/Contact/Profile.php:394 +#: src/Module/Contact/Profile.php:400 msgid "" "Replies/likes to your public posts may still be visible" msgstr "Répliques/agraiments per als teus missatges públics poden romandre visibles" -#: src/Module/Contact/Profile.php:395 +#: src/Module/Contact/Profile.php:401 msgid "Notification for new posts" msgstr "" -#: src/Module/Contact/Profile.php:395 +#: src/Module/Contact/Profile.php:401 msgid "Send a notification of every new post of this contact" msgstr "" -#: src/Module/Contact/Profile.php:397 +#: src/Module/Contact/Profile.php:403 msgid "Keyword Deny List" msgstr "" -#: src/Module/Contact/Profile.php:397 +#: src/Module/Contact/Profile.php:403 msgid "" "Comma separated list of keywords that should not be converted to hashtags, " "when \"Fetch information and keywords\" is selected" msgstr "" -#: src/Module/Contact/Profile.php:415 -#: src/Module/Settings/TwoFactor/Index.php:160 +#: src/Module/Contact/Profile.php:421 +#: src/Module/Settings/TwoFactor/Index.php:146 msgid "Actions" msgstr "" -#: src/Module/Contact/Profile.php:417 -#: src/Module/Settings/TwoFactor/Index.php:140 view/theme/frio/theme.php:232 +#: src/Module/Contact/Profile.php:423 +#: src/Module/Settings/TwoFactor/Index.php:126 view/theme/frio/theme.php:220 msgid "Status" msgstr "Estatus" -#: src/Module/Contact/Profile.php:423 +#: src/Module/Contact/Profile.php:429 msgid "Mirror postings from this contact" msgstr "" -#: src/Module/Contact/Profile.php:425 +#: src/Module/Contact/Profile.php:431 msgid "" "Mark this contact as remote_self, this will cause friendica to repost new " "entries from this contact." msgstr "" -#: src/Module/Contact/Profile.php:428 +#: src/Module/Contact/Profile.php:434 msgid "Channel Settings" msgstr "" -#: src/Module/Contact/Profile.php:429 +#: src/Module/Contact/Profile.php:435 msgid "Frequency of this contact in relevant channels" msgstr "" -#: src/Module/Contact/Profile.php:430 +#: src/Module/Contact/Profile.php:436 msgid "" "Depending on the type of the channel not all posts from this contact are " "displayed. By default, posts need to have a minimum amount of interactions " @@ -6916,711 +6990,706 @@ msgid "" "block or hide the contact completely." msgstr "" -#: src/Module/Contact/Profile.php:431 +#: src/Module/Contact/Profile.php:437 msgid "Default frequency" msgstr "" -#: src/Module/Contact/Profile.php:431 +#: src/Module/Contact/Profile.php:437 msgid "" "Posts by this contact are displayed in the \"for you\" channel if you " "interact often with this contact or if a post reached some level of " "interaction." msgstr "" -#: src/Module/Contact/Profile.php:432 +#: src/Module/Contact/Profile.php:438 msgid "Display all posts of this contact" msgstr "" -#: src/Module/Contact/Profile.php:432 +#: src/Module/Contact/Profile.php:438 msgid "All posts from this contact will appear on the \"for you\" channel" msgstr "" -#: src/Module/Contact/Profile.php:433 +#: src/Module/Contact/Profile.php:439 msgid "Display only few posts" msgstr "" -#: src/Module/Contact/Profile.php:433 +#: src/Module/Contact/Profile.php:439 msgid "" "When a contact creates a lot of posts in a short period, this setting " "reduces the number of displayed posts in every channel." msgstr "" -#: src/Module/Contact/Profile.php:434 +#: src/Module/Contact/Profile.php:440 msgid "Never display posts" msgstr "" -#: src/Module/Contact/Profile.php:434 +#: src/Module/Contact/Profile.php:440 msgid "Posts from this contact will never be displayed in any channel" msgstr "" -#: src/Module/Contact/Profile.php:502 +#: src/Module/Contact/Profile.php:441 +msgid "Channel Only" +msgstr "" + +#: src/Module/Contact/Profile.php:441 +msgid "" +"If enabled, posts from this contact will only appear in channels and network" +" streams in circles, but not in the general network stream." +msgstr "" + +#: src/Module/Contact/Profile.php:509 msgid "Refetch contact data" msgstr "" -#: src/Module/Contact/Profile.php:513 +#: src/Module/Contact/Profile.php:520 msgid "Toggle Blocked status" msgstr "Canvi de estatus blocat" -#: src/Module/Contact/Profile.php:521 +#: src/Module/Contact/Profile.php:528 msgid "Toggle Ignored status" msgstr "Canvi de estatus ignorat" -#: src/Module/Contact/Profile.php:529 +#: src/Module/Contact/Profile.php:536 msgid "Toggle Collapsed status" msgstr "" -#: src/Module/Contact/Profile.php:536 src/Module/Contact/Revoke.php:106 +#: src/Module/Contact/Profile.php:543 src/Module/Contact/Revoke.php:89 msgid "Revoke Follow" msgstr "" -#: src/Module/Contact/Profile.php:538 +#: src/Module/Contact/Profile.php:545 msgid "Revoke the follow from this contact" msgstr "" -#: src/Module/Contact/Redir.php:134 src/Module/Contact/Redir.php:186 +#: src/Module/Contact/Redir.php:125 msgid "Bad Request." msgstr "" -#: src/Module/Contact/Revoke.php:63 -msgid "Unknown contact." -msgstr "" - -#: src/Module/Contact/Revoke.php:77 +#: src/Module/Contact/Revoke.php:60 msgid "Contact is being deleted." msgstr "" -#: src/Module/Contact/Revoke.php:91 +#: src/Module/Contact/Revoke.php:74 msgid "Follow was successfully revoked." msgstr "" -#: src/Module/Contact/Revoke.php:107 +#: src/Module/Contact/Revoke.php:90 msgid "" "Do you really want to revoke this contact's follow? This cannot be undone " "and they will have to manually follow you back again." msgstr "" -#: src/Module/Contact/Revoke.php:108 -#: src/Module/Notifications/Introductions.php:144 -#: src/Module/OAuth/Acknowledge.php:54 src/Module/Register.php:130 -#: src/Module/Settings/TwoFactor/Trusted.php:129 -msgid "Yes" -msgstr "Si" - -#: src/Module/Contact/Suggestions.php:62 +#: src/Module/Contact/Suggestions.php:48 msgid "" "No suggestions available. If this is a new site, please try again in 24 " "hours." msgstr "Cap suggeriment disponible. Si això és un nou lloc, si us plau torna a intentar en 24 hores." -#: src/Module/Contact/Unfollow.php:98 src/Module/Contact/Unfollow.php:167 +#: src/Module/Contact/Unfollow.php:84 src/Module/Contact/Unfollow.php:153 msgid "You aren't following this contact." msgstr "No seguiu aquest contacte." -#: src/Module/Contact/Unfollow.php:103 +#: src/Module/Contact/Unfollow.php:89 msgid "Unfollowing is currently not supported by your network." msgstr "Actualment, la vostra xarxa no és compatible amb el fet de seguir." -#: src/Module/Contact/Unfollow.php:121 +#: src/Module/Contact/Unfollow.php:107 msgid "Disconnect/Unfollow" msgstr "Desconnecta / Deixa de seguir" -#: src/Module/Contact/Unfollow.php:175 +#: src/Module/Contact/Unfollow.php:161 msgid "Contact was successfully unfollowed" msgstr "" -#: src/Module/Contact/Unfollow.php:178 +#: src/Module/Contact/Unfollow.php:164 msgid "Unable to unfollow this contact, please contact your administrator" msgstr "" -#: src/Module/Conversation/Channel.php:139 -#: src/Module/Conversation/Community.php:126 src/Module/Search/Index.php:152 -#: src/Module/Search/Index.php:194 +#: src/Module/Conversation/Channel.php:125 +#: src/Module/Conversation/Community.php:114 src/Module/Search/Index.php:138 +#: src/Module/Search/Index.php:180 msgid "No results." msgstr "Sense resultats." -#: src/Module/Conversation/Channel.php:177 +#: src/Module/Conversation/Channel.php:163 msgid "Channel not available." msgstr "" -#: src/Module/Conversation/Community.php:92 +#: src/Module/Conversation/Community.php:80 msgid "" "This community stream shows all public posts received by this node. They may" " not reflect the opinions of this node’s users." msgstr "" -#: src/Module/Conversation/Community.php:180 +#: src/Module/Conversation/Community.php:168 msgid "Community option not available." msgstr "" -#: src/Module/Conversation/Community.php:196 +#: src/Module/Conversation/Community.php:184 msgid "Not available." msgstr "No disponible." -#: src/Module/Conversation/Network.php:200 +#: src/Module/Conversation/Network.php:202 msgid "No such circle" msgstr "" -#: src/Module/Conversation/Network.php:204 +#: src/Module/Conversation/Network.php:206 #, php-format msgid "Circle: %s" msgstr "" -#: src/Module/Conversation/Network.php:223 +#: src/Module/Conversation/Network.php:226 #, php-format msgid "Error %d (%s) while fetching the timeline." msgstr "" -#: src/Module/Conversation/Network.php:300 +#: src/Module/Conversation/Network.php:304 msgid "Network feed not available." msgstr "" -#: src/Module/Conversation/Timeline.php:196 -msgid "Own Contacts" -msgstr "" - -#: src/Module/Conversation/Timeline.php:200 +#: src/Module/Conversation/Timeline.php:190 msgid "Include" msgstr "" -#: src/Module/Conversation/Timeline.php:201 +#: src/Module/Conversation/Timeline.php:191 msgid "Hide" msgstr "" -#: src/Module/Credits.php:44 +#: src/Module/Credits.php:30 msgid "Credits" msgstr "" -#: src/Module/Credits.php:45 +#: src/Module/Credits.php:31 msgid "" "Friendica is a community project, that would not be possible without the " "help of many people. Here is a list of those who have contributed to the " "code or the translation of Friendica. Thank you all!" msgstr "" -#: src/Module/Debug/ActivityPubConversion.php:53 +#: src/Module/Debug/ActivityPubConversion.php:45 msgid "Formatted" msgstr "" -#: src/Module/Debug/ActivityPubConversion.php:65 +#: src/Module/Debug/ActivityPubConversion.php:57 msgid "Activity" msgstr "" -#: src/Module/Debug/ActivityPubConversion.php:117 +#: src/Module/Debug/ActivityPubConversion.php:109 msgid "Object data" msgstr "" -#: src/Module/Debug/ActivityPubConversion.php:124 +#: src/Module/Debug/ActivityPubConversion.php:116 msgid "Result Item" msgstr "" -#: src/Module/Debug/ActivityPubConversion.php:129 -#: src/Module/Debug/Babel.php:294 src/Module/Moderation/Item/Source.php:87 -#: src/Module/Security/TwoFactor/Verify.php:98 +#: src/Module/Debug/ActivityPubConversion.php:121 +#: src/Module/Debug/Babel.php:286 src/Module/Moderation/Item/Source.php:79 +#: src/Module/Security/TwoFactor/Verify.php:84 msgid "Error" msgid_plural "Errors" msgstr[0] "" msgstr[1] "" -#: src/Module/Debug/ActivityPubConversion.php:138 +#: src/Module/Debug/ActivityPubConversion.php:130 msgid "Source activity" msgstr "" -#: src/Module/Debug/Babel.php:52 +#: src/Module/Debug/Babel.php:44 msgid "Source input" msgstr "" -#: src/Module/Debug/Babel.php:58 +#: src/Module/Debug/Babel.php:50 msgid "BBCode::toPlaintext" msgstr "" -#: src/Module/Debug/Babel.php:64 +#: src/Module/Debug/Babel.php:56 msgid "BBCode::convert (raw HTML)" msgstr "" -#: src/Module/Debug/Babel.php:69 +#: src/Module/Debug/Babel.php:61 msgid "BBCode::convert (hex)" msgstr "" -#: src/Module/Debug/Babel.php:74 +#: src/Module/Debug/Babel.php:66 msgid "BBCode::convert" msgstr "" -#: src/Module/Debug/Babel.php:80 +#: src/Module/Debug/Babel.php:72 msgid "BBCode::convert => HTML::toBBCode" msgstr "" -#: src/Module/Debug/Babel.php:86 +#: src/Module/Debug/Babel.php:78 msgid "BBCode::toMarkdown" msgstr "" -#: src/Module/Debug/Babel.php:92 +#: src/Module/Debug/Babel.php:84 msgid "BBCode::toMarkdown => Markdown::convert (raw HTML)" msgstr "" -#: src/Module/Debug/Babel.php:96 +#: src/Module/Debug/Babel.php:88 msgid "BBCode::toMarkdown => Markdown::convert" msgstr "" -#: src/Module/Debug/Babel.php:102 +#: src/Module/Debug/Babel.php:94 msgid "BBCode::toMarkdown => Markdown::toBBCode" msgstr "" -#: src/Module/Debug/Babel.php:108 +#: src/Module/Debug/Babel.php:100 msgid "BBCode::toMarkdown => Markdown::convert => HTML::toBBCode" msgstr "" -#: src/Module/Debug/Babel.php:116 +#: src/Module/Debug/Babel.php:108 msgid "Item Body" msgstr "" -#: src/Module/Debug/Babel.php:120 +#: src/Module/Debug/Babel.php:112 msgid "Item Tags" msgstr "" -#: src/Module/Debug/Babel.php:126 +#: src/Module/Debug/Babel.php:118 msgid "PageInfo::appendToBody" msgstr "" -#: src/Module/Debug/Babel.php:131 +#: src/Module/Debug/Babel.php:123 msgid "PageInfo::appendToBody => BBCode::convert (raw HTML)" msgstr "" -#: src/Module/Debug/Babel.php:135 +#: src/Module/Debug/Babel.php:127 msgid "PageInfo::appendToBody => BBCode::convert" msgstr "" -#: src/Module/Debug/Babel.php:142 +#: src/Module/Debug/Babel.php:134 msgid "Source input (Diaspora format)" msgstr "" -#: src/Module/Debug/Babel.php:151 +#: src/Module/Debug/Babel.php:143 msgid "Source input (Markdown)" msgstr "" -#: src/Module/Debug/Babel.php:157 +#: src/Module/Debug/Babel.php:149 msgid "Markdown::convert (raw HTML)" msgstr "" -#: src/Module/Debug/Babel.php:162 +#: src/Module/Debug/Babel.php:154 msgid "Markdown::convert" msgstr "" -#: src/Module/Debug/Babel.php:168 +#: src/Module/Debug/Babel.php:160 msgid "Markdown::toBBCode" msgstr "" -#: src/Module/Debug/Babel.php:175 +#: src/Module/Debug/Babel.php:167 msgid "Raw HTML input" msgstr "" -#: src/Module/Debug/Babel.php:180 +#: src/Module/Debug/Babel.php:172 msgid "HTML Input" msgstr "" -#: src/Module/Debug/Babel.php:187 +#: src/Module/Debug/Babel.php:179 msgid "HTML Purified (raw)" msgstr "" -#: src/Module/Debug/Babel.php:192 +#: src/Module/Debug/Babel.php:184 msgid "HTML Purified (hex)" msgstr "" -#: src/Module/Debug/Babel.php:197 +#: src/Module/Debug/Babel.php:189 msgid "HTML Purified" msgstr "" -#: src/Module/Debug/Babel.php:203 +#: src/Module/Debug/Babel.php:195 msgid "HTML::toBBCode" msgstr "" -#: src/Module/Debug/Babel.php:209 +#: src/Module/Debug/Babel.php:201 msgid "HTML::toBBCode => BBCode::convert" msgstr "" -#: src/Module/Debug/Babel.php:214 +#: src/Module/Debug/Babel.php:206 msgid "HTML::toBBCode => BBCode::convert (raw HTML)" msgstr "" -#: src/Module/Debug/Babel.php:220 +#: src/Module/Debug/Babel.php:212 msgid "HTML::toBBCode => BBCode::toPlaintext" msgstr "" -#: src/Module/Debug/Babel.php:226 +#: src/Module/Debug/Babel.php:218 msgid "HTML::toMarkdown" msgstr "" -#: src/Module/Debug/Babel.php:232 +#: src/Module/Debug/Babel.php:224 msgid "HTML::toPlaintext" msgstr "" -#: src/Module/Debug/Babel.php:238 +#: src/Module/Debug/Babel.php:230 msgid "HTML::toPlaintext (compact)" msgstr "" -#: src/Module/Debug/Babel.php:256 +#: src/Module/Debug/Babel.php:248 msgid "Decoded post" msgstr "" -#: src/Module/Debug/Babel.php:277 +#: src/Module/Debug/Babel.php:269 msgid "Post array before expand entities" msgstr "" -#: src/Module/Debug/Babel.php:284 +#: src/Module/Debug/Babel.php:276 msgid "Post converted" msgstr "" -#: src/Module/Debug/Babel.php:289 +#: src/Module/Debug/Babel.php:281 msgid "Converted body" msgstr "" -#: src/Module/Debug/Babel.php:295 +#: src/Module/Debug/Babel.php:287 msgid "Twitter addon is absent from the addon/ folder." msgstr "" -#: src/Module/Debug/Babel.php:305 +#: src/Module/Debug/Babel.php:297 msgid "Babel Diagnostic" msgstr "" -#: src/Module/Debug/Babel.php:307 +#: src/Module/Debug/Babel.php:299 msgid "Source text" msgstr "" -#: src/Module/Debug/Babel.php:308 +#: src/Module/Debug/Babel.php:300 msgid "BBCode" msgstr "" -#: src/Module/Debug/Babel.php:310 +#: src/Module/Debug/Babel.php:302 msgid "Markdown" msgstr "" -#: src/Module/Debug/Babel.php:311 +#: src/Module/Debug/Babel.php:303 msgid "HTML" msgstr "" -#: src/Module/Debug/Babel.php:313 +#: src/Module/Debug/Babel.php:305 msgid "Twitter Source / Tweet URL (requires API key)" msgstr "" -#: src/Module/Debug/Feed.php:52 src/Module/Filer/SaveTag.php:47 -#: src/Module/Settings/Profile/Index.php:177 +#: src/Module/Debug/Feed.php:39 src/Module/Filer/SaveTag.php:33 +#: src/Module/Settings/Profile/Index.php:166 msgid "You must be logged in to use this module" msgstr "" -#: src/Module/Debug/Feed.php:77 +#: src/Module/Debug/Feed.php:64 msgid "Source URL" msgstr "" -#: src/Module/Debug/Localtime.php:49 +#: src/Module/Debug/Localtime.php:35 msgid "Time Conversion" msgstr "Temps de Conversió" -#: src/Module/Debug/Localtime.php:50 +#: src/Module/Debug/Localtime.php:36 msgid "" "Friendica provides this service for sharing events with other networks and " "friends in unknown timezones." msgstr "Friendica ofereix aquest servei per a compartir esdeveniments amb d'altres xarxes i amics en zones horaries que son desconegudes" -#: src/Module/Debug/Localtime.php:51 +#: src/Module/Debug/Localtime.php:37 #, php-format msgid "UTC time: %s" msgstr "hora UTC: %s" -#: src/Module/Debug/Localtime.php:54 +#: src/Module/Debug/Localtime.php:40 #, php-format msgid "Current timezone: %s" msgstr "Zona horària actual: %s" -#: src/Module/Debug/Localtime.php:58 +#: src/Module/Debug/Localtime.php:44 #, php-format msgid "Converted localtime: %s" msgstr "Conversión de hora local: %s" -#: src/Module/Debug/Localtime.php:62 +#: src/Module/Debug/Localtime.php:48 msgid "Please select your timezone:" msgstr "Si us plau, seleccioneu la vostra zona horària:" -#: src/Module/Debug/Probe.php:38 src/Module/Debug/WebFinger.php:37 +#: src/Module/Debug/Probe.php:24 src/Module/Debug/WebFinger.php:23 msgid "Only logged in users are permitted to perform a probing." msgstr "" -#: src/Module/Debug/Probe.php:52 +#: src/Module/Debug/Probe.php:38 msgid "Probe Diagnostic" msgstr "" -#: src/Module/Debug/Probe.php:53 +#: src/Module/Debug/Probe.php:39 msgid "Output" msgstr "" -#: src/Module/Debug/Probe.php:56 +#: src/Module/Debug/Probe.php:42 msgid "Lookup address" msgstr "" -#: src/Module/Debug/WebFinger.php:50 +#: src/Module/Debug/WebFinger.php:36 msgid "Webfinger Diagnostic" msgstr "" -#: src/Module/Debug/WebFinger.php:52 +#: src/Module/Debug/WebFinger.php:38 msgid "Lookup address:" msgstr "" -#: src/Module/Directory.php:74 +#: src/Module/Directory.php:61 msgid "No entries (some entries may be hidden)." msgstr "No hi ha entrades (algunes de les entrades poden estar amagades)." -#: src/Module/Directory.php:90 +#: src/Module/Directory.php:77 msgid "Find on this site" msgstr "Trobat en aquest lloc" -#: src/Module/Directory.php:92 +#: src/Module/Directory.php:79 msgid "Results for:" msgstr "" -#: src/Module/Directory.php:94 +#: src/Module/Directory.php:81 msgid "Site Directory" msgstr "Directori Local" -#: src/Module/Filer/RemoveTag.php:105 +#: src/Module/Filer/RemoveTag.php:91 msgid "Item was not deleted" msgstr "" -#: src/Module/Filer/RemoveTag.php:115 +#: src/Module/Filer/RemoveTag.php:101 msgid "Item was not removed" msgstr "" -#: src/Module/Filer/SaveTag.php:73 +#: src/Module/Filer/SaveTag.php:59 msgid "- select -" msgstr "- seleccionar -" -#: src/Module/FriendSuggest.php:82 +#: src/Module/FriendSuggest.php:68 msgid "Suggested contact not found." msgstr "No s'ha trobat el contacte suggerit." -#: src/Module/FriendSuggest.php:100 +#: src/Module/FriendSuggest.php:86 msgid "Friend suggestion sent." msgstr "Enviat suggeriment d'amic." -#: src/Module/FriendSuggest.php:137 +#: src/Module/FriendSuggest.php:123 msgid "Suggest Friends" msgstr "Suggerir Amics" -#: src/Module/FriendSuggest.php:140 +#: src/Module/FriendSuggest.php:126 #, php-format msgid "Suggest a friend for %s" msgstr "Suggerir un amic per a %s" -#: src/Module/Friendica.php:82 +#: src/Module/Friendica.php:67 msgid "Installed addons/apps:" msgstr "" -#: src/Module/Friendica.php:87 +#: src/Module/Friendica.php:72 msgid "No installed addons/apps" msgstr "" -#: src/Module/Friendica.php:92 +#: src/Module/Friendica.php:77 #, php-format msgid "Read about the Terms of Service of this node." msgstr "" -#: src/Module/Friendica.php:99 +#: src/Module/Friendica.php:84 msgid "On this server the following remote servers are blocked." 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:226 +#: src/Module/Friendica.php:87 +#: src/Module/Moderation/Blocklist/Server/Index.php:73 +#: src/Module/Moderation/Blocklist/Server/Index.php:97 +#: src/Module/Settings/Channels.php:218 msgid "Reason for the block" msgstr "" -#: src/Module/Friendica.php:104 +#: src/Module/Friendica.php:89 msgid "Download this list in CSV format" msgstr "" -#: src/Module/Friendica.php:118 +#: src/Module/Friendica.php:103 #, php-format msgid "" "This is Friendica, version %s that is running at the web location %s. The " "database version is %s, the post update version is %s." msgstr "" -#: src/Module/Friendica.php:123 +#: src/Module/Friendica.php:108 msgid "" "Please visit Friendi.ca to learn more " "about the Friendica project." msgstr "" -#: src/Module/Friendica.php:124 +#: src/Module/Friendica.php:109 msgid "Bug reports and issues: please visit" msgstr "Pels informes d'error i problemes: si us plau, visiteu" -#: src/Module/Friendica.php:124 +#: src/Module/Friendica.php:109 msgid "the bugtracker at github" msgstr "" -#: src/Module/Friendica.php:125 +#: src/Module/Friendica.php:110 msgid "Suggestions, praise, etc. - please email \"info\" at \"friendi - dot - ca" msgstr "" -#: src/Module/HCard.php:45 +#: src/Module/HCard.php:31 msgid "No profile" msgstr "Sense perfil" -#: src/Module/HTTPException/MethodNotAllowed.php:31 +#: src/Module/HTTPException/MethodNotAllowed.php:17 msgid "Method Not Allowed." msgstr "" -#: src/Module/Help.php:60 +#: src/Module/Help.php:46 msgid "Help:" msgstr "Ajuda:" -#: src/Module/Home.php:63 +#: src/Module/Home.php:52 #, php-format msgid "Welcome to %s" msgstr "Benvingut a %s" -#: src/Module/Install.php:189 +#: src/Module/Install.php:175 msgid "Friendica Communications Server - Setup" msgstr "" -#: src/Module/Install.php:200 +#: src/Module/Install.php:186 msgid "System check" msgstr "Comprovació del Sistema" -#: src/Module/Install.php:202 src/Module/Install.php:247 -#: src/Module/Install.php:326 +#: src/Module/Install.php:188 src/Module/Install.php:233 +#: src/Module/Install.php:312 msgid "Requirement not satisfied" msgstr "" -#: src/Module/Install.php:203 +#: src/Module/Install.php:189 msgid "Optional requirement not satisfied" msgstr "" -#: src/Module/Install.php:204 +#: src/Module/Install.php:190 msgid "OK" msgstr "" -#: src/Module/Install.php:208 +#: src/Module/Install.php:194 msgid "Next" msgstr "Següent" -#: src/Module/Install.php:209 +#: src/Module/Install.php:195 msgid "Check again" msgstr "Comprovi de nou" -#: src/Module/Install.php:222 +#: src/Module/Install.php:208 msgid "Base settings" msgstr "" -#: src/Module/Install.php:224 +#: src/Module/Install.php:210 msgid "Base path to installation" msgstr "Trajectoria base per a instal·lar" -#: src/Module/Install.php:226 +#: src/Module/Install.php:212 msgid "" "If the system cannot detect the correct path to your installation, enter the" " correct path here. This setting should only be set if you are using a " "restricted system and symbolic links to your webroot." msgstr "" -#: src/Module/Install.php:229 +#: src/Module/Install.php:215 msgid "The Friendica system URL" msgstr "" -#: src/Module/Install.php:231 +#: src/Module/Install.php:217 msgid "" "Overwrite this field in case the system URL determination isn't right, " "otherwise leave it as is." msgstr "" -#: src/Module/Install.php:242 +#: src/Module/Install.php:228 msgid "Database connection" msgstr "Conexió a la base de dades" -#: src/Module/Install.php:243 +#: src/Module/Install.php:229 msgid "" "In order to install Friendica we need to know how to connect to your " "database." msgstr "Per a instal·lar Friendica necessitem conèixer com connectar amb la deva base de dades." -#: src/Module/Install.php:244 +#: src/Module/Install.php:230 msgid "" "Please contact your hosting provider or site administrator if you have " "questions about these settings." msgstr "Per favor, posi's en contacte amb el seu proveïdor de hosting o administrador del lloc si té alguna pregunta sobre aquestes opcions." -#: src/Module/Install.php:245 +#: src/Module/Install.php:231 msgid "" "The database you specify below should already exist. If it does not, please " "create it before continuing." msgstr "La base de dades que especifiques ja hauria d'existir. Si no és així, crea-la abans de continuar." -#: src/Module/Install.php:252 +#: src/Module/Install.php:238 msgid "Database Server Name" msgstr "Nom del Servidor de base de Dades" -#: src/Module/Install.php:257 +#: src/Module/Install.php:243 msgid "Database Login Name" msgstr "Nom d'Usuari de la base de Dades" -#: src/Module/Install.php:263 +#: src/Module/Install.php:249 msgid "Database Login Password" msgstr "Contrasenya d'Usuari de la base de Dades" -#: src/Module/Install.php:265 +#: src/Module/Install.php:251 msgid "For security reasons the password must not be empty" msgstr "" -#: src/Module/Install.php:268 +#: src/Module/Install.php:254 msgid "Database Name" msgstr "Nom de la base de Dades" -#: src/Module/Install.php:272 src/Module/Install.php:300 +#: src/Module/Install.php:258 src/Module/Install.php:286 msgid "Please select a default timezone for your website" msgstr "Per favor, seleccioni una zona horària per defecte per al seu lloc web" -#: src/Module/Install.php:287 +#: src/Module/Install.php:273 msgid "Site settings" msgstr "Configuracions del lloc" -#: src/Module/Install.php:295 +#: src/Module/Install.php:281 msgid "Site administrator email address" msgstr "Adreça de correu del administrador del lloc" -#: src/Module/Install.php:297 +#: src/Module/Install.php:283 msgid "" "Your account email address must match this in order to use the web admin " "panel." msgstr "El seu compte d'adreça electrònica ha de coincidir per tal d'utilitzar el panell d'administració web." -#: src/Module/Install.php:304 +#: src/Module/Install.php:290 msgid "System Language:" msgstr "" -#: src/Module/Install.php:306 +#: src/Module/Install.php:292 msgid "" "Set the default language for your Friendica installation interface and to " "send emails." msgstr "" -#: src/Module/Install.php:318 +#: src/Module/Install.php:304 msgid "Your Friendica site database has been installed." msgstr "La base de dades del teu lloc Friendica ha estat instal·lada." -#: src/Module/Install.php:328 +#: src/Module/Install.php:314 msgid "Installation finished" msgstr "" -#: src/Module/Install.php:348 +#: src/Module/Install.php:334 msgid "

What next

" msgstr "

Que es següent

" -#: src/Module/Install.php:349 +#: src/Module/Install.php:335 msgid "" "IMPORTANT: You will need to [manually] setup a scheduled task for the " "worker." msgstr "" -#: src/Module/Install.php:352 +#: src/Module/Install.php:338 #, php-format msgid "" "Go to your new Friendica node registration page " @@ -7628,40 +7697,40 @@ msgid "" " administrator email. This will allow you to enter the site admin panel." msgstr "" -#: src/Module/Invite.php:57 +#: src/Module/Invite.php:43 msgid "Total invitation limit exceeded." msgstr "Limit d'invitacions excedit." -#: src/Module/Invite.php:82 +#: src/Module/Invite.php:68 #, php-format msgid "%s : Not a valid email address." msgstr "%s : No es una adreça de correu vàlida" -#: src/Module/Invite.php:108 +#: src/Module/Invite.php:94 msgid "Please join us on Friendica" msgstr "Per favor, uneixi's a nosaltres en Friendica" -#: src/Module/Invite.php:117 +#: src/Module/Invite.php:103 msgid "Invitation limit exceeded. Please contact your site administrator." msgstr "Limit d'invitacions excedit. Per favor, Contacti amb l'administrador del lloc." -#: src/Module/Invite.php:121 +#: src/Module/Invite.php:107 #, php-format msgid "%s : Message delivery failed." msgstr "%s : Ha fallat l'entrega del missatge." -#: src/Module/Invite.php:125 +#: src/Module/Invite.php:111 #, php-format msgid "%d message sent." msgid_plural "%d messages sent." msgstr[0] "%d missatge enviat" msgstr[1] "%d missatges enviats." -#: src/Module/Invite.php:143 +#: src/Module/Invite.php:129 msgid "You have no more invitations available" msgstr "No te més invitacions disponibles" -#: src/Module/Invite.php:150 +#: src/Module/Invite.php:136 #, php-format msgid "" "Visit %s for a list of public sites that you can join. Friendica members on " @@ -7669,14 +7738,14 @@ msgid "" " other social networks." msgstr "Visita %s per a una llista de llocs públics on unir-te. Els membres de Friendica d'altres llocs poden connectar-se de forma total, així com amb membres de moltes altres xarxes socials." -#: src/Module/Invite.php:152 +#: src/Module/Invite.php:138 #, php-format msgid "" "To accept this invitation, please visit and register at %s or any other " "public Friendica website." msgstr "Per acceptar aquesta invitació, per favor visita i registra't a %s o en qualsevol altre pàgina web pública Friendica." -#: src/Module/Invite.php:153 +#: src/Module/Invite.php:139 #, php-format msgid "" "Friendica sites all inter-connect to create a huge privacy-enhanced social " @@ -7685,333 +7754,337 @@ msgid "" "sites you can join." msgstr "Tots els llocs Friendica estàn interconnectats per crear una web social amb privacitat millorada, controlada i propietat dels seus membres. També poden connectar amb moltes xarxes socials tradicionals. Consulteu %s per a una llista de llocs de Friendica alternatius en que pot inscriure's." -#: src/Module/Invite.php:157 +#: src/Module/Invite.php:143 msgid "" "Our apologies. This system is not currently configured to connect with other" " public sites or invite members." msgstr "Nostres disculpes. Aquest sistema no està configurat actualment per connectar amb altres llocs públics o convidar als membres." -#: src/Module/Invite.php:160 +#: src/Module/Invite.php:146 msgid "" "Friendica sites all inter-connect to create a huge privacy-enhanced social " "web that is owned and controlled by its members. They can also connect with " "many traditional social networks." msgstr "" -#: src/Module/Invite.php:159 +#: src/Module/Invite.php:145 #, php-format msgid "To accept this invitation, please visit and register at %s." msgstr "" -#: src/Module/Invite.php:167 +#: src/Module/Invite.php:153 msgid "Send invitations" msgstr "Enviant Invitacions" -#: src/Module/Invite.php:168 +#: src/Module/Invite.php:154 msgid "Enter email addresses, one per line:" msgstr "Entri adreçes de correu, una per línia:" -#: src/Module/Invite.php:172 +#: src/Module/Invite.php:158 msgid "" "You are cordially invited to join me and other close friends on Friendica - " "and help us to create a better social web." msgstr "Estàs cordialment convidat a ajuntarte a mi i altres amics propers en Friendica - i ajudar-nos a crear una millor web social." -#: src/Module/Invite.php:174 +#: src/Module/Invite.php:160 msgid "You will need to supply this invitation code: $invite_code" msgstr "Vostè haurà de proporcionar aquest codi d'invitació: $invite_code" -#: src/Module/Invite.php:174 +#: src/Module/Invite.php:160 msgid "" "Once you have registered, please connect with me via my profile page at:" msgstr "Un cop registrat, si us plau contactar amb mi a través de la meva pàgina de perfil a:" -#: src/Module/Invite.php:176 +#: src/Module/Invite.php:162 msgid "" "For more information about the Friendica project and why we feel it is " "important, please visit http://friendi.ca" msgstr "" -#: src/Module/Item/Compose.php:85 +#: src/Module/Item/Compose.php:80 msgid "Please enter a post body." msgstr "" -#: src/Module/Item/Compose.php:98 +#: src/Module/Item/Compose.php:91 msgid "This feature is only available with the frio theme." msgstr "" -#: src/Module/Item/Compose.php:122 +#: src/Module/Item/Compose.php:115 msgid "Compose new personal note" msgstr "" -#: src/Module/Item/Compose.php:131 +#: src/Module/Item/Compose.php:124 msgid "Compose new post" msgstr "" -#: src/Module/Item/Compose.php:187 +#: src/Module/Item/Compose.php:180 msgid "Visibility" msgstr "" -#: src/Module/Item/Compose.php:203 +#: src/Module/Item/Compose.php:196 msgid "Clear the location" msgstr "" -#: src/Module/Item/Compose.php:204 +#: src/Module/Item/Compose.php:197 msgid "Location services are unavailable on your device" msgstr "" -#: src/Module/Item/Compose.php:205 +#: src/Module/Item/Compose.php:198 msgid "" "Location services are disabled. Please check the website's permissions on " "your device" msgstr "" -#: src/Module/Item/Compose.php:211 +#: src/Module/Item/Compose.php:204 msgid "" "You can make this page always open when you use the New Post button in the " "Theme Customization settings." msgstr "" -#: src/Module/Item/Feed.php:86 +#: src/Module/Item/Feed.php:72 msgid "The feed for this item is unavailable." msgstr "" -#: src/Module/Item/Follow.php:51 +#: src/Module/Item/Follow.php:37 msgid "Unable to follow this item." msgstr "" -#: src/Module/Maintenance.php:48 src/Module/Maintenance.php:53 +#: src/Module/Maintenance.php:34 src/Module/Maintenance.php:39 msgid "System down for maintenance" msgstr "Sistema apagat per manteniment" -#: src/Module/Maintenance.php:54 +#: src/Module/Maintenance.php:40 msgid "" "This Friendica node is currently in maintenance mode, either automatically " "because it is self-updating or manually by the node administrator. This " "condition should be temporary, please come back in a few minutes." msgstr "" -#: src/Module/Manifest.php:40 +#: src/Module/Manifest.php:26 msgid "A Decentralized Social Network" msgstr "" -#: src/Module/Media/Attachment/Browser.php:58 -#: src/Module/Media/Photo/Browser.php:59 +#: src/Module/Media/Attachment/Browser.php:44 +#: src/Module/Media/Photo/Browser.php:45 msgid "You need to be logged in to access this page." msgstr "" -#: src/Module/Media/Attachment/Browser.php:74 +#: src/Module/Media/Attachment/Browser.php:60 msgid "Files" msgstr "Arxius" -#: src/Module/Media/Attachment/Browser.php:79 -#: src/Module/Media/Photo/Browser.php:90 -#: src/Module/Settings/Profile/Photo/Index.php:127 +#: src/Module/Media/Attachment/Browser.php:65 +#: src/Module/Media/Photo/Browser.php:76 +#: src/Module/Settings/Profile/Photo/Index.php:113 msgid "Upload" msgstr "Pujar" -#: src/Module/Media/Attachment/Upload.php:97 +#: src/Module/Media/Attachment/Upload.php:83 msgid "Sorry, maybe your upload is bigger than the PHP configuration allows" msgstr "" -#: src/Module/Media/Attachment/Upload.php:97 +#: src/Module/Media/Attachment/Upload.php:83 msgid "Or - did you try to upload an empty file?" msgstr "" -#: src/Module/Media/Attachment/Upload.php:104 +#: src/Module/Media/Attachment/Upload.php:90 #, php-format msgid "File exceeds size limit of %s" msgstr "" -#: src/Module/Media/Attachment/Upload.php:114 +#: src/Module/Media/Attachment/Upload.php:100 msgid "File upload failed." msgstr "La càrrega de fitxers ha fallat." -#: src/Module/Media/Photo/Upload.php:150 src/Module/Media/Photo/Upload.php:151 -#: src/Module/Profile/Photos.php:215 -#: src/Module/Settings/Profile/Photo/Index.php:67 +#: src/Module/Media/Photo/Upload.php:136 src/Module/Media/Photo/Upload.php:137 +#: src/Module/Profile/Photos.php:201 +#: src/Module/Settings/Profile/Photo/Index.php:53 msgid "Unable to process image." msgstr "Incapaç de processar la imatge." -#: src/Module/Media/Photo/Upload.php:176 src/Module/Profile/Photos.php:235 -#: src/Module/Settings/Profile/Photo/Index.php:94 +#: src/Module/Media/Photo/Upload.php:162 src/Module/Profile/Photos.php:221 +#: src/Module/Settings/Profile/Photo/Index.php:80 msgid "Image upload failed." msgstr "Actualització de la imatge fracassada." -#: src/Module/Moderation/BaseUsers.php:72 +#: src/Module/Moderation/BaseUsers.php:59 msgid "List of all users" msgstr "" -#: src/Module/Moderation/BaseUsers.php:77 +#: src/Module/Moderation/BaseUsers.php:64 msgid "Active" msgstr "" -#: src/Module/Moderation/BaseUsers.php:80 +#: src/Module/Moderation/BaseUsers.php:67 msgid "List of active accounts" msgstr "" -#: src/Module/Moderation/BaseUsers.php:88 +#: src/Module/Moderation/BaseUsers.php:75 msgid "List of pending registrations" msgstr "" -#: src/Module/Moderation/BaseUsers.php:96 +#: src/Module/Moderation/BaseUsers.php:83 msgid "List of blocked users" msgstr "" -#: src/Module/Moderation/BaseUsers.php:101 +#: src/Module/Moderation/BaseUsers.php:88 msgid "Deleted" msgstr "" -#: src/Module/Moderation/BaseUsers.php:104 +#: src/Module/Moderation/BaseUsers.php:91 msgid "List of pending user deletions" msgstr "" -#: src/Module/Moderation/BaseUsers.php:119 src/Module/Settings/Account.php:482 +#: src/Module/Moderation/BaseUsers.php:108 src/Module/Settings/Account.php:473 msgid "Normal Account Page" msgstr "Pàgina Normal del Compte " -#: src/Module/Moderation/BaseUsers.php:120 src/Module/Settings/Account.php:489 +#: src/Module/Moderation/BaseUsers.php:109 src/Module/Settings/Account.php:480 msgid "Soapbox Page" msgstr "Pàgina de Soapbox" -#: src/Module/Moderation/BaseUsers.php:121 src/Module/Settings/Account.php:496 +#: src/Module/Moderation/BaseUsers.php:110 src/Module/Settings/Account.php:487 msgid "Public Group" msgstr "" -#: src/Module/Moderation/BaseUsers.php:122 src/Module/Settings/Account.php:503 +#: src/Module/Moderation/BaseUsers.php:111 src/Module/Settings/Account.php:494 +msgid "Public Group - Restricted" +msgstr "" + +#: src/Module/Moderation/BaseUsers.php:112 src/Module/Settings/Account.php:501 msgid "Automatic Friend Page" msgstr "Compte d'Amistat Automàtica" -#: src/Module/Moderation/BaseUsers.php:123 +#: src/Module/Moderation/BaseUsers.php:113 msgid "Private Group" msgstr "" -#: src/Module/Moderation/BaseUsers.php:126 -#: src/Module/Moderation/Summary.php:53 src/Module/Settings/Account.php:453 +#: src/Module/Moderation/BaseUsers.php:116 +#: src/Module/Moderation/Summary.php:39 src/Module/Settings/Account.php:444 msgid "Personal Page" msgstr "" -#: src/Module/Moderation/BaseUsers.php:127 -#: src/Module/Moderation/Summary.php:54 src/Module/Settings/Account.php:460 +#: src/Module/Moderation/BaseUsers.php:117 +#: src/Module/Moderation/Summary.php:40 src/Module/Settings/Account.php:451 msgid "Organisation Page" msgstr "Página de organización" -#: src/Module/Moderation/BaseUsers.php:128 -#: src/Module/Moderation/Summary.php:55 src/Module/Settings/Account.php:467 +#: src/Module/Moderation/BaseUsers.php:118 +#: src/Module/Moderation/Summary.php:41 src/Module/Settings/Account.php:458 msgid "News Page" msgstr "Página de noticias" -#: src/Module/Moderation/BaseUsers.php:129 -#: src/Module/Moderation/Summary.php:56 src/Module/Settings/Account.php:474 +#: src/Module/Moderation/BaseUsers.php:119 +#: src/Module/Moderation/Summary.php:42 src/Module/Settings/Account.php:465 msgid "Community Group" msgstr "" -#: src/Module/Moderation/Blocklist/Contact.php:70 +#: src/Module/Moderation/Blocklist/Contact.php:56 msgid "You can't block a local contact, please block the user instead" msgstr "" -#: src/Module/Moderation/Blocklist/Contact.php:89 +#: src/Module/Moderation/Blocklist/Contact.php:75 #, php-format msgid "%s contact unblocked" msgid_plural "%s contacts unblocked" msgstr[0] "" msgstr[1] "" -#: src/Module/Moderation/Blocklist/Contact.php:111 +#: src/Module/Moderation/Blocklist/Contact.php:97 msgid "Remote Contact Blocklist" msgstr "" -#: src/Module/Moderation/Blocklist/Contact.php:112 +#: src/Module/Moderation/Blocklist/Contact.php:98 msgid "" "This page allows you to prevent any message from a remote contact to reach " "your node." msgstr "" -#: src/Module/Moderation/Blocklist/Contact.php:113 +#: src/Module/Moderation/Blocklist/Contact.php:99 msgid "Block Remote Contact" msgstr "" -#: src/Module/Moderation/Blocklist/Contact.php:114 -#: src/Module/Moderation/Users/Active.php:135 -#: src/Module/Moderation/Users/Blocked.php:135 -#: src/Module/Moderation/Users/Index.php:149 -#: src/Module/Moderation/Users/Pending.php:98 +#: src/Module/Moderation/Blocklist/Contact.php:100 +#: src/Module/Moderation/Users/Active.php:121 +#: src/Module/Moderation/Users/Blocked.php:121 +#: src/Module/Moderation/Users/Index.php:135 +#: src/Module/Moderation/Users/Pending.php:84 msgid "select all" msgstr "Seleccionar tot" -#: src/Module/Moderation/Blocklist/Contact.php:115 +#: src/Module/Moderation/Blocklist/Contact.php:101 msgid "select none" msgstr "" -#: src/Module/Moderation/Blocklist/Contact.php:118 +#: src/Module/Moderation/Blocklist/Contact.php:104 msgid "No remote contact is blocked from this node." msgstr "" -#: src/Module/Moderation/Blocklist/Contact.php:120 +#: src/Module/Moderation/Blocklist/Contact.php:106 msgid "Blocked Remote Contacts" msgstr "" -#: src/Module/Moderation/Blocklist/Contact.php:121 +#: src/Module/Moderation/Blocklist/Contact.php:107 msgid "Block New Remote Contact" msgstr "" -#: src/Module/Moderation/Blocklist/Contact.php:122 -#: src/Module/Moderation/Reports.php:95 +#: src/Module/Moderation/Blocklist/Contact.php:108 +#: src/Module/Moderation/Reports.php:102 msgid "Photo" msgstr "" -#: src/Module/Moderation/Blocklist/Contact.php:122 +#: src/Module/Moderation/Blocklist/Contact.php:108 msgid "Reason" msgstr "" -#: src/Module/Moderation/Blocklist/Contact.php:130 +#: src/Module/Moderation/Blocklist/Contact.php:114 #, php-format msgid "%s total blocked contact" msgid_plural "%s total blocked contacts" msgstr[0] "" msgstr[1] "" -#: src/Module/Moderation/Blocklist/Contact.php:133 +#: src/Module/Moderation/Blocklist/Contact.php:117 msgid "URL of the remote contact to block." msgstr "" -#: src/Module/Moderation/Blocklist/Contact.php:134 +#: src/Module/Moderation/Blocklist/Contact.php:118 msgid "Also purge contact" msgstr "" -#: src/Module/Moderation/Blocklist/Contact.php:134 +#: src/Module/Moderation/Blocklist/Contact.php:118 msgid "" "Removes all content related to this contact from the node. Keeps the contact" " record. This action cannot be undone." msgstr "" -#: src/Module/Moderation/Blocklist/Contact.php:135 -#: src/Module/Moderation/Blocklist/Server/Import.php:124 +#: src/Module/Moderation/Blocklist/Contact.php:119 +#: src/Module/Moderation/Blocklist/Server/Import.php:108 msgid "Block Reason" msgstr "" -#: src/Module/Moderation/Blocklist/Server/Add.php:80 +#: src/Module/Moderation/Blocklist/Server/Add.php:66 msgid "Server domain pattern added to the blocklist." msgstr "" -#: src/Module/Moderation/Blocklist/Server/Add.php:88 +#: src/Module/Moderation/Blocklist/Server/Add.php:74 #, php-format msgid "%s server scheduled to be purged." msgid_plural "%s servers scheduled to be purged." msgstr[0] "" msgstr[1] "" -#: src/Module/Moderation/Blocklist/Server/Add.php:120 -#: src/Module/Moderation/Blocklist/Server/Import.php:117 +#: src/Module/Moderation/Blocklist/Server/Add.php:106 +#: src/Module/Moderation/Blocklist/Server/Import.php:101 msgid "← Return to the list" msgstr "" -#: src/Module/Moderation/Blocklist/Server/Add.php:122 +#: src/Module/Moderation/Blocklist/Server/Add.php:108 msgid "Block A New Server Domain Pattern" msgstr "" -#: src/Module/Moderation/Blocklist/Server/Add.php:123 -#: src/Module/Moderation/Blocklist/Server/Index.php:99 +#: src/Module/Moderation/Blocklist/Server/Add.php:109 +#: src/Module/Moderation/Blocklist/Server/Index.php:85 msgid "" "

The server domain pattern syntax is case-insensitive shell wildcard, comprising the following special characters:

\n" "
    \n" @@ -8020,57 +8093,57 @@ msgid "" "
" msgstr "" -#: src/Module/Moderation/Blocklist/Server/Add.php:128 -#: src/Module/Moderation/Blocklist/Server/Index.php:107 +#: src/Module/Moderation/Blocklist/Server/Add.php:114 +#: src/Module/Moderation/Blocklist/Server/Index.php:93 msgid "Check pattern" msgstr "" -#: src/Module/Moderation/Blocklist/Server/Add.php:129 +#: src/Module/Moderation/Blocklist/Server/Add.php:115 msgid "Matching known servers" msgstr "" -#: src/Module/Moderation/Blocklist/Server/Add.php:130 -#: src/Module/Settings/Server/Action.php:76 -#: src/Module/Settings/Server/Index.php:106 +#: src/Module/Moderation/Blocklist/Server/Add.php:116 +#: src/Module/Settings/Server/Action.php:62 +#: src/Module/Settings/Server/Index.php:92 msgid "Server Name" msgstr "" -#: src/Module/Moderation/Blocklist/Server/Add.php:131 +#: src/Module/Moderation/Blocklist/Server/Add.php:117 msgid "Server Domain" msgstr "" -#: src/Module/Moderation/Blocklist/Server/Add.php:132 +#: src/Module/Moderation/Blocklist/Server/Add.php:118 msgid "Known Contacts" msgstr "" -#: src/Module/Moderation/Blocklist/Server/Add.php:133 +#: src/Module/Moderation/Blocklist/Server/Add.php:119 #, php-format msgid "%d known server" msgid_plural "%d known servers" msgstr[0] "" msgstr[1] "" -#: src/Module/Moderation/Blocklist/Server/Add.php:134 +#: src/Module/Moderation/Blocklist/Server/Add.php:120 msgid "Add pattern to the blocklist" msgstr "" -#: src/Module/Moderation/Blocklist/Server/Add.php:136 -#: src/Module/Moderation/Blocklist/Server/Index.php:116 +#: src/Module/Moderation/Blocklist/Server/Add.php:122 +#: src/Module/Moderation/Blocklist/Server/Index.php:102 msgid "Server Domain Pattern" msgstr "" -#: src/Module/Moderation/Blocklist/Server/Add.php:136 -#: src/Module/Moderation/Blocklist/Server/Index.php:116 +#: src/Module/Moderation/Blocklist/Server/Add.php:122 +#: src/Module/Moderation/Blocklist/Server/Index.php:102 msgid "" "The domain pattern of the new server to add to the blocklist. Do not include" " the protocol." msgstr "" -#: src/Module/Moderation/Blocklist/Server/Add.php:137 +#: src/Module/Moderation/Blocklist/Server/Add.php:123 msgid "Purge server" msgstr "" -#: src/Module/Moderation/Blocklist/Server/Add.php:137 +#: src/Module/Moderation/Blocklist/Server/Add.php:123 msgid "" "Also purges all the locally stored content authored by the known contacts " "registered on that server. Keeps the contacts and the server records. This " @@ -8082,301 +8155,301 @@ msgid_plural "" msgstr[0] "" msgstr[1] "" -#: src/Module/Moderation/Blocklist/Server/Add.php:138 +#: src/Module/Moderation/Blocklist/Server/Add.php:124 msgid "Block reason" msgstr "" -#: src/Module/Moderation/Blocklist/Server/Add.php:138 +#: src/Module/Moderation/Blocklist/Server/Add.php:124 msgid "" "The reason why you blocked this server domain pattern. This reason will be " "shown publicly in the server information page." msgstr "" -#: src/Module/Moderation/Blocklist/Server/Import.php:74 -#: src/Module/Moderation/Blocklist/Server/Import.php:83 +#: src/Module/Moderation/Blocklist/Server/Import.php:60 +#: src/Module/Moderation/Blocklist/Server/Import.php:67 msgid "Error importing pattern file" msgstr "" -#: src/Module/Moderation/Blocklist/Server/Import.php:89 +#: src/Module/Moderation/Blocklist/Server/Import.php:74 msgid "Local blocklist replaced with the provided file." msgstr "" -#: src/Module/Moderation/Blocklist/Server/Import.php:93 +#: src/Module/Moderation/Blocklist/Server/Import.php:78 #, php-format msgid "%d pattern was added to the local blocklist." msgid_plural "%d patterns were added to the local blocklist." msgstr[0] "" msgstr[1] "" -#: src/Module/Moderation/Blocklist/Server/Import.php:95 +#: src/Module/Moderation/Blocklist/Server/Import.php:80 msgid "No pattern was added to the local blocklist." msgstr "" -#: src/Module/Moderation/Blocklist/Server/Import.php:119 +#: src/Module/Moderation/Blocklist/Server/Import.php:103 msgid "Import a Server Domain Pattern Blocklist" msgstr "" -#: src/Module/Moderation/Blocklist/Server/Import.php:120 +#: src/Module/Moderation/Blocklist/Server/Import.php:104 msgid "" "

This file can be downloaded from the /friendica path of any " "Friendica server.

" msgstr "" -#: src/Module/Moderation/Blocklist/Server/Import.php:121 -#: src/Module/Moderation/Blocklist/Server/Index.php:106 +#: src/Module/Moderation/Blocklist/Server/Import.php:105 +#: src/Module/Moderation/Blocklist/Server/Index.php:92 msgid "Upload file" msgstr "" -#: src/Module/Moderation/Blocklist/Server/Import.php:122 +#: src/Module/Moderation/Blocklist/Server/Import.php:106 msgid "Patterns to import" msgstr "" -#: src/Module/Moderation/Blocklist/Server/Import.php:123 +#: src/Module/Moderation/Blocklist/Server/Import.php:107 msgid "Domain Pattern" msgstr "" -#: src/Module/Moderation/Blocklist/Server/Import.php:125 +#: src/Module/Moderation/Blocklist/Server/Import.php:109 msgid "Import Mode" msgstr "" -#: src/Module/Moderation/Blocklist/Server/Import.php:126 +#: src/Module/Moderation/Blocklist/Server/Import.php:110 msgid "Import Patterns" msgstr "" -#: src/Module/Moderation/Blocklist/Server/Import.php:127 +#: src/Module/Moderation/Blocklist/Server/Import.php:111 #, php-format msgid "%d total pattern" msgid_plural "%d total patterns" msgstr[0] "" msgstr[1] "" -#: src/Module/Moderation/Blocklist/Server/Import.php:129 -#: src/Module/Moderation/Blocklist/Server/Index.php:115 +#: src/Module/Moderation/Blocklist/Server/Import.php:113 +#: src/Module/Moderation/Blocklist/Server/Index.php:101 msgid "Server domain pattern blocklist CSV file" msgstr "" -#: src/Module/Moderation/Blocklist/Server/Import.php:130 +#: src/Module/Moderation/Blocklist/Server/Import.php:114 msgid "Append" msgstr "" -#: src/Module/Moderation/Blocklist/Server/Import.php:130 +#: src/Module/Moderation/Blocklist/Server/Import.php:114 msgid "" "Imports patterns from the file that weren't already existing in the current " "blocklist." msgstr "" -#: src/Module/Moderation/Blocklist/Server/Import.php:131 +#: src/Module/Moderation/Blocklist/Server/Import.php:115 msgid "Replace" msgstr "" -#: src/Module/Moderation/Blocklist/Server/Import.php:131 +#: src/Module/Moderation/Blocklist/Server/Import.php:115 msgid "Replaces the current blocklist by the imported patterns." msgstr "" -#: src/Module/Moderation/Blocklist/Server/Index.php:86 -#: src/Module/Moderation/Blocklist/Server/Index.php:110 -#: src/Module/Settings/Channels.php:225 +#: src/Module/Moderation/Blocklist/Server/Index.php:72 +#: src/Module/Moderation/Blocklist/Server/Index.php:96 +#: src/Module/Settings/Channels.php:217 msgid "Blocked server domain pattern" msgstr "" -#: src/Module/Moderation/Blocklist/Server/Index.php:88 +#: src/Module/Moderation/Blocklist/Server/Index.php:74 msgid "Delete server domain pattern" msgstr "" -#: src/Module/Moderation/Blocklist/Server/Index.php:88 +#: src/Module/Moderation/Blocklist/Server/Index.php:74 msgid "Check to delete this entry from the blocklist" msgstr "" -#: src/Module/Moderation/Blocklist/Server/Index.php:96 +#: src/Module/Moderation/Blocklist/Server/Index.php:82 msgid "Server Domain Pattern Blocklist" msgstr "" -#: src/Module/Moderation/Blocklist/Server/Index.php:97 +#: src/Module/Moderation/Blocklist/Server/Index.php:83 msgid "" "This page can be used to define a blocklist of server domain patterns from " "the federated network that are not allowed to interact with your node. For " "each domain pattern you should also provide the reason why you block it." msgstr "" -#: src/Module/Moderation/Blocklist/Server/Index.php:98 +#: src/Module/Moderation/Blocklist/Server/Index.php:84 msgid "" "The list of blocked server domain patterns will be made publically available" " on the /friendica page so that your users and " "people investigating communication problems can find the reason easily." msgstr "" -#: src/Module/Moderation/Blocklist/Server/Index.php:104 +#: src/Module/Moderation/Blocklist/Server/Index.php:90 msgid "Import server domain pattern blocklist" msgstr "" -#: src/Module/Moderation/Blocklist/Server/Index.php:105 +#: src/Module/Moderation/Blocklist/Server/Index.php:91 msgid "Add new entry to the blocklist" msgstr "" -#: src/Module/Moderation/Blocklist/Server/Index.php:108 +#: src/Module/Moderation/Blocklist/Server/Index.php:94 msgid "Save changes to the blocklist" msgstr "" -#: src/Module/Moderation/Blocklist/Server/Index.php:109 +#: src/Module/Moderation/Blocklist/Server/Index.php:95 msgid "Current Entries in the Blocklist" msgstr "" -#: src/Module/Moderation/Blocklist/Server/Index.php:112 +#: src/Module/Moderation/Blocklist/Server/Index.php:98 msgid "Delete entry from the blocklist" msgstr "" -#: src/Module/Moderation/Blocklist/Server/Index.php:113 +#: src/Module/Moderation/Blocklist/Server/Index.php:99 msgid "Delete entry from the blocklist?" msgstr "" -#: src/Module/Moderation/Item/Delete.php:50 +#: src/Module/Moderation/Item/Delete.php:36 msgid "Item marked for deletion." msgstr "" -#: src/Module/Moderation/Item/Delete.php:63 +#: src/Module/Moderation/Item/Delete.php:49 msgid "Delete this Item" msgstr "" -#: src/Module/Moderation/Item/Delete.php:64 +#: src/Module/Moderation/Item/Delete.php:50 msgid "" "On this page you can delete an item from your node. If the item is a top " "level posting, the entire thread will be deleted." msgstr "" -#: src/Module/Moderation/Item/Delete.php:65 +#: src/Module/Moderation/Item/Delete.php:51 msgid "" "You need to know the GUID of the item. You can find it e.g. by looking at " "the display URL. The last part of http://example.com/display/123456 is the " "GUID, here 123456." msgstr "" -#: src/Module/Moderation/Item/Delete.php:67 +#: src/Module/Moderation/Item/Delete.php:53 msgid "GUID" msgstr "" -#: src/Module/Moderation/Item/Delete.php:67 +#: src/Module/Moderation/Item/Delete.php:53 msgid "The GUID of the item you want to delete." msgstr "" -#: src/Module/Moderation/Item/Source.php:77 +#: src/Module/Moderation/Item/Source.php:69 msgid "Item Id" msgstr "" -#: src/Module/Moderation/Item/Source.php:78 +#: src/Module/Moderation/Item/Source.php:70 msgid "Item URI" msgstr "" -#: src/Module/Moderation/Item/Source.php:80 +#: src/Module/Moderation/Item/Source.php:72 msgid "Terms" msgstr "" -#: src/Module/Moderation/Item/Source.php:81 +#: src/Module/Moderation/Item/Source.php:73 msgid "Tag" msgstr "" -#: src/Module/Moderation/Item/Source.php:82 -#: src/Module/Moderation/Users/Active.php:126 -#: src/Module/Moderation/Users/Blocked.php:126 -#: src/Module/Moderation/Users/Index.php:140 +#: src/Module/Moderation/Item/Source.php:74 +#: src/Module/Moderation/Users/Active.php:112 +#: src/Module/Moderation/Users/Blocked.php:112 +#: src/Module/Moderation/Users/Index.php:126 msgid "Type" msgstr "" -#: src/Module/Moderation/Item/Source.php:83 +#: src/Module/Moderation/Item/Source.php:75 msgid "Term" msgstr "" -#: src/Module/Moderation/Item/Source.php:84 +#: src/Module/Moderation/Item/Source.php:76 msgid "URL" msgstr "" -#: src/Module/Moderation/Item/Source.php:86 +#: src/Module/Moderation/Item/Source.php:78 msgid "Implicit Mention" msgstr "" -#: src/Module/Moderation/Item/Source.php:88 +#: src/Module/Moderation/Item/Source.php:80 msgid "Item not found" msgstr "Element no trobat" -#: src/Module/Moderation/Item/Source.php:89 +#: src/Module/Moderation/Item/Source.php:81 msgid "No source recorded" msgstr "" -#: src/Module/Moderation/Item/Source.php:90 +#: src/Module/Moderation/Item/Source.php:82 msgid "" "Please make sure the debug.store_source config key is set in " "config/local.config.php for future items to have sources." msgstr "" -#: src/Module/Moderation/Item/Source.php:92 +#: src/Module/Moderation/Item/Source.php:84 msgid "Item Guid" msgstr "" -#: src/Module/Moderation/Report/Create.php:95 +#: src/Module/Moderation/Report/Create.php:81 msgid "Contact not found or their server is already blocked on this node." msgstr "" -#: src/Module/Moderation/Report/Create.php:136 +#: src/Module/Moderation/Report/Create.php:122 msgid "Please login to access this page." msgstr "" -#: src/Module/Moderation/Report/Create.php:165 -#: src/Module/Moderation/Report/Create.php:180 -#: src/Module/Moderation/Report/Create.php:208 -#: src/Module/Moderation/Report/Create.php:260 -#: src/Module/Moderation/Report/Create.php:279 +#: src/Module/Moderation/Report/Create.php:151 +#: src/Module/Moderation/Report/Create.php:166 +#: src/Module/Moderation/Report/Create.php:194 +#: src/Module/Moderation/Report/Create.php:246 +#: src/Module/Moderation/Report/Create.php:265 msgid "Create Moderation Report" msgstr "" -#: src/Module/Moderation/Report/Create.php:166 +#: src/Module/Moderation/Report/Create.php:152 msgid "Pick Contact" msgstr "" -#: src/Module/Moderation/Report/Create.php:167 +#: src/Module/Moderation/Report/Create.php:153 msgid "" "Please enter below the contact address or profile URL you would like to " "create a moderation report about." msgstr "" -#: src/Module/Moderation/Report/Create.php:171 +#: src/Module/Moderation/Report/Create.php:157 msgid "Contact address/URL" msgstr "" -#: src/Module/Moderation/Report/Create.php:181 +#: src/Module/Moderation/Report/Create.php:167 msgid "Pick Category" msgstr "" -#: src/Module/Moderation/Report/Create.php:182 +#: src/Module/Moderation/Report/Create.php:168 msgid "Please pick below the category of your report." msgstr "" -#: src/Module/Moderation/Report/Create.php:186 -#: src/Module/Moderation/Report/Create.php:311 +#: src/Module/Moderation/Report/Create.php:172 +#: src/Module/Moderation/Report/Create.php:297 msgid "Spam" msgstr "" -#: src/Module/Moderation/Report/Create.php:186 +#: src/Module/Moderation/Report/Create.php:172 msgid "" "This contact is publishing many repeated/overly long posts/replies or " "advertising their product/websites in otherwise irrelevant conversations." msgstr "" -#: src/Module/Moderation/Report/Create.php:187 -#: src/Module/Moderation/Report/Create.php:312 +#: src/Module/Moderation/Report/Create.php:173 +#: src/Module/Moderation/Report/Create.php:298 msgid "Illegal Content" msgstr "" -#: src/Module/Moderation/Report/Create.php:187 +#: src/Module/Moderation/Report/Create.php:173 msgid "" "This contact is publishing content that is considered illegal in this node's" " hosting juridiction." msgstr "" -#: src/Module/Moderation/Report/Create.php:188 -#: src/Module/Moderation/Report/Create.php:313 +#: src/Module/Moderation/Report/Create.php:174 +#: src/Module/Moderation/Report/Create.php:299 msgid "Community Safety" msgstr "" -#: src/Module/Moderation/Report/Create.php:188 +#: src/Module/Moderation/Report/Create.php:174 msgid "" "This contact aggravated you or other people, by being provocative or " "insensitive, intentionally or not. This includes disclosing people's private" @@ -8384,12 +8457,12 @@ msgid "" "replies." msgstr "" -#: src/Module/Moderation/Report/Create.php:189 -#: src/Module/Moderation/Report/Create.php:314 +#: src/Module/Moderation/Report/Create.php:175 +#: src/Module/Moderation/Report/Create.php:300 msgid "Unwanted Content/Behavior" msgstr "" -#: src/Module/Moderation/Report/Create.php:189 +#: src/Module/Moderation/Report/Create.php:175 msgid "" "This contact has repeatedly published content irrelevant to the node's theme" " or is openly criticizing the node's administration/moderation without " @@ -8397,89 +8470,89 @@ msgid "" "nitpicking on a sensitive topic." msgstr "" -#: src/Module/Moderation/Report/Create.php:190 -#: src/Module/Moderation/Report/Create.php:315 +#: src/Module/Moderation/Report/Create.php:176 +#: src/Module/Moderation/Report/Create.php:301 msgid "Rules Violation" msgstr "" -#: src/Module/Moderation/Report/Create.php:190 +#: src/Module/Moderation/Report/Create.php:176 msgid "" "This contact violated one or more rules of this node. You will be able to " "pick which one(s) in the next step." msgstr "" -#: src/Module/Moderation/Report/Create.php:191 +#: src/Module/Moderation/Report/Create.php:177 msgid "" "Please elaborate below why you submitted this report. The more details you " "provide, the better your report can be handled." msgstr "" -#: src/Module/Moderation/Report/Create.php:193 +#: src/Module/Moderation/Report/Create.php:179 msgid "Additional Information" msgstr "" -#: src/Module/Moderation/Report/Create.php:193 +#: src/Module/Moderation/Report/Create.php:179 msgid "" "Please provide any additional information relevant to this particular " "report. You will be able to attach posts by this contact in the next step, " "but any context is welcome." msgstr "" -#: src/Module/Moderation/Report/Create.php:209 +#: src/Module/Moderation/Report/Create.php:195 msgid "Pick Rules" msgstr "" -#: src/Module/Moderation/Report/Create.php:210 +#: src/Module/Moderation/Report/Create.php:196 msgid "Please pick below the node rules you believe this contact violated." msgstr "" -#: src/Module/Moderation/Report/Create.php:261 +#: src/Module/Moderation/Report/Create.php:247 msgid "Pick Posts" msgstr "" -#: src/Module/Moderation/Report/Create.php:262 +#: src/Module/Moderation/Report/Create.php:248 msgid "Please optionally pick posts to attach to your report." msgstr "" -#: src/Module/Moderation/Report/Create.php:281 +#: src/Module/Moderation/Report/Create.php:267 msgid "Submit Report" msgstr "" -#: src/Module/Moderation/Report/Create.php:282 +#: src/Module/Moderation/Report/Create.php:268 msgid "Further Action" msgstr "" -#: src/Module/Moderation/Report/Create.php:283 +#: src/Module/Moderation/Report/Create.php:269 msgid "" "You can also perform one of the following action on the contact you " "reported:" msgstr "" -#: src/Module/Moderation/Report/Create.php:291 +#: src/Module/Moderation/Report/Create.php:277 msgid "Nothing" msgstr "" -#: src/Module/Moderation/Report/Create.php:292 +#: src/Module/Moderation/Report/Create.php:278 msgid "Collapse contact" msgstr "" -#: src/Module/Moderation/Report/Create.php:292 +#: src/Module/Moderation/Report/Create.php:278 msgid "" "Their posts and replies will keep appearing in your Network page but their " "content will be collapsed by default." msgstr "" -#: src/Module/Moderation/Report/Create.php:293 +#: src/Module/Moderation/Report/Create.php:279 msgid "" "Their posts won't appear in your Network page anymore, but their replies can" " appear in forum threads. They still can follow you." msgstr "" -#: src/Module/Moderation/Report/Create.php:294 +#: src/Module/Moderation/Report/Create.php:280 msgid "Block contact" msgstr "" -#: src/Module/Moderation/Report/Create.php:294 +#: src/Module/Moderation/Report/Create.php:280 msgid "" "Their posts won't appear in your Network page anymore, but their replies can" " appear in forum threads, with their content collapsed by default. They " @@ -8487,723 +8560,694 @@ msgid "" "means." msgstr "" -#: src/Module/Moderation/Report/Create.php:297 +#: src/Module/Moderation/Report/Create.php:283 msgid "Forward report" msgstr "" -#: src/Module/Moderation/Report/Create.php:297 +#: src/Module/Moderation/Report/Create.php:283 msgid "Would you ike to forward this report to the remote server?" msgstr "" -#: src/Module/Moderation/Report/Create.php:330 +#: src/Module/Moderation/Report/Create.php:316 msgid "1. Pick a contact" msgstr "" -#: src/Module/Moderation/Report/Create.php:331 +#: src/Module/Moderation/Report/Create.php:317 msgid "2. Pick a category" msgstr "" -#: src/Module/Moderation/Report/Create.php:332 +#: src/Module/Moderation/Report/Create.php:318 msgid "2a. Pick rules" msgstr "" -#: src/Module/Moderation/Report/Create.php:333 +#: src/Module/Moderation/Report/Create.php:319 msgid "2b. Add comment" msgstr "" -#: src/Module/Moderation/Report/Create.php:334 +#: src/Module/Moderation/Report/Create.php:320 msgid "3. Pick posts" msgstr "" -#: src/Module/Moderation/Reports.php:90 +#: src/Module/Moderation/Reports.php:97 msgid "List of reports" msgstr "" -#: src/Module/Moderation/Reports.php:91 +#: src/Module/Moderation/Reports.php:98 msgid "This page display reports created by our or remote users." msgstr "" -#: src/Module/Moderation/Reports.php:92 +#: src/Module/Moderation/Reports.php:99 msgid "No report exists at this node." msgstr "" -#: src/Module/Moderation/Reports.php:95 +#: src/Module/Moderation/Reports.php:102 msgid "Category" msgstr "" -#: src/Module/Moderation/Reports.php:101 +#: src/Module/Moderation/Reports.php:106 #, php-format msgid "%s total report" msgid_plural "%s total reports" msgstr[0] "" msgstr[1] "" -#: src/Module/Moderation/Reports.php:104 +#: src/Module/Moderation/Reports.php:109 msgid "URL of the reported contact." msgstr "" -#: src/Module/Moderation/Summary.php:57 src/Module/Settings/Account.php:431 +#: src/Module/Moderation/Summary.php:43 src/Module/Settings/Account.php:422 msgid "Channel Relay" msgstr "" -#: src/Module/Moderation/Summary.php:77 +#: src/Module/Moderation/Summary.php:63 msgid "Registered users" msgstr "Usuaris registrats" -#: src/Module/Moderation/Summary.php:79 +#: src/Module/Moderation/Summary.php:65 msgid "Pending registrations" msgstr "Registres d'usuari pendents" -#: src/Module/Moderation/Users/Active.php:43 -#: src/Module/Moderation/Users/Index.php:43 +#: src/Module/Moderation/Users/Active.php:29 +#: src/Module/Moderation/Users/Index.php:29 #, php-format msgid "%s user blocked" msgid_plural "%s users blocked" msgstr[0] "" msgstr[1] "" -#: src/Module/Moderation/Users/Active.php:51 -#: src/Module/Moderation/Users/Active.php:85 -#: src/Module/Moderation/Users/Blocked.php:51 -#: src/Module/Moderation/Users/Blocked.php:85 -#: src/Module/Moderation/Users/Index.php:58 -#: src/Module/Moderation/Users/Index.php:92 +#: src/Module/Moderation/Users/Active.php:37 +#: src/Module/Moderation/Users/Active.php:71 +#: src/Module/Moderation/Users/Blocked.php:37 +#: src/Module/Moderation/Users/Blocked.php:71 +#: src/Module/Moderation/Users/Index.php:44 +#: src/Module/Moderation/Users/Index.php:78 msgid "You can't remove yourself" msgstr "" -#: src/Module/Moderation/Users/Active.php:55 -#: src/Module/Moderation/Users/Blocked.php:55 -#: src/Module/Moderation/Users/Index.php:62 +#: src/Module/Moderation/Users/Active.php:41 +#: src/Module/Moderation/Users/Blocked.php:41 +#: src/Module/Moderation/Users/Index.php:48 #, php-format msgid "%s user deleted" msgid_plural "%s users deleted" msgstr[0] "%s usuari esborrat" msgstr[1] "%s usuaris esborrats" -#: src/Module/Moderation/Users/Active.php:83 -#: src/Module/Moderation/Users/Blocked.php:83 -#: src/Module/Moderation/Users/Index.php:90 +#: src/Module/Moderation/Users/Active.php:69 +#: src/Module/Moderation/Users/Blocked.php:69 +#: src/Module/Moderation/Users/Index.php:76 #, php-format msgid "User \"%s\" deleted" msgstr "" -#: src/Module/Moderation/Users/Active.php:93 -#: src/Module/Moderation/Users/Index.php:100 +#: src/Module/Moderation/Users/Active.php:79 +#: src/Module/Moderation/Users/Index.php:86 #, php-format msgid "User \"%s\" blocked" msgstr "" -#: src/Module/Moderation/Users/Active.php:126 -#: src/Module/Moderation/Users/Blocked.php:126 -#: src/Module/Moderation/Users/Deleted.php:83 -#: src/Module/Moderation/Users/Index.php:140 -#: src/Module/Moderation/Users/Index.php:160 +#: src/Module/Moderation/Users/Active.php:112 +#: src/Module/Moderation/Users/Blocked.php:112 +#: src/Module/Moderation/Users/Deleted.php:69 +#: src/Module/Moderation/Users/Index.php:126 +#: src/Module/Moderation/Users/Index.php:146 msgid "Register date" msgstr "Data de registre" -#: src/Module/Moderation/Users/Active.php:126 -#: src/Module/Moderation/Users/Blocked.php:126 -#: src/Module/Moderation/Users/Deleted.php:83 -#: src/Module/Moderation/Users/Index.php:140 -#: src/Module/Moderation/Users/Index.php:160 +#: src/Module/Moderation/Users/Active.php:112 +#: src/Module/Moderation/Users/Blocked.php:112 +#: src/Module/Moderation/Users/Deleted.php:69 +#: src/Module/Moderation/Users/Index.php:126 +#: src/Module/Moderation/Users/Index.php:146 msgid "Last login" msgstr "Últim accés" -#: src/Module/Moderation/Users/Active.php:126 -#: src/Module/Moderation/Users/Blocked.php:126 -#: src/Module/Moderation/Users/Deleted.php:83 -#: src/Module/Moderation/Users/Index.php:140 -#: src/Module/Moderation/Users/Index.php:160 +#: src/Module/Moderation/Users/Active.php:112 +#: src/Module/Moderation/Users/Blocked.php:112 +#: src/Module/Moderation/Users/Deleted.php:69 +#: src/Module/Moderation/Users/Index.php:126 +#: src/Module/Moderation/Users/Index.php:146 msgid "Last public item" msgstr "" -#: src/Module/Moderation/Users/Active.php:134 +#: src/Module/Moderation/Users/Active.php:120 msgid "Active Accounts" msgstr "" -#: src/Module/Moderation/Users/Active.php:138 -#: src/Module/Moderation/Users/Blocked.php:137 -#: src/Module/Moderation/Users/Index.php:153 +#: src/Module/Moderation/Users/Active.php:124 +#: src/Module/Moderation/Users/Blocked.php:123 +#: src/Module/Moderation/Users/Index.php:139 msgid "User blocked" msgstr "" -#: src/Module/Moderation/Users/Active.php:139 -#: src/Module/Moderation/Users/Blocked.php:139 -#: src/Module/Moderation/Users/Index.php:155 +#: src/Module/Moderation/Users/Active.php:125 +#: src/Module/Moderation/Users/Blocked.php:125 +#: src/Module/Moderation/Users/Index.php:141 msgid "Site admin" msgstr "Administrador del lloc" -#: src/Module/Moderation/Users/Active.php:140 -#: src/Module/Moderation/Users/Blocked.php:140 -#: src/Module/Moderation/Users/Index.php:156 +#: src/Module/Moderation/Users/Active.php:126 +#: src/Module/Moderation/Users/Blocked.php:126 +#: src/Module/Moderation/Users/Index.php:142 msgid "Account expired" msgstr "Compte expirat" -#: src/Module/Moderation/Users/Active.php:141 -#: src/Module/Moderation/Users/Index.php:159 +#: src/Module/Moderation/Users/Active.php:127 +#: src/Module/Moderation/Users/Index.php:145 msgid "Create a new user" msgstr "" -#: src/Module/Moderation/Users/Active.php:147 -#: src/Module/Moderation/Users/Blocked.php:146 -#: src/Module/Moderation/Users/Index.php:165 +#: src/Module/Moderation/Users/Active.php:133 +#: src/Module/Moderation/Users/Blocked.php:132 +#: src/Module/Moderation/Users/Index.php:151 msgid "" "Selected users will be deleted!\\n\\nEverything these users had posted on " "this site will be permanently deleted!\\n\\nAre you sure?" msgstr "Els usuaris seleccionats seran esborrats!\\n\\nqualsevol cosa que aquests usuaris hagin publicat en aquest lloc s'esborrarà!\\n\\nEsteu segur?" -#: src/Module/Moderation/Users/Active.php:148 -#: src/Module/Moderation/Users/Blocked.php:147 -#: src/Module/Moderation/Users/Index.php:166 +#: src/Module/Moderation/Users/Active.php:134 +#: src/Module/Moderation/Users/Blocked.php:133 +#: src/Module/Moderation/Users/Index.php:152 msgid "" "The user {0} will be deleted!\\n\\nEverything this user has posted on this " "site will be permanently deleted!\\n\\nAre you sure?" msgstr "L'usuari {0} s'eliminarà!\\n\\nQualsevol cosa que aquest usuari hagi publicat en aquest lloc s'esborrarà!\\n\\nEsteu segur?" -#: src/Module/Moderation/Users/Blocked.php:43 -#: src/Module/Moderation/Users/Index.php:50 +#: src/Module/Moderation/Users/Blocked.php:29 +#: src/Module/Moderation/Users/Index.php:36 #, php-format msgid "%s user unblocked" msgid_plural "%s users unblocked" msgstr[0] "" msgstr[1] "" -#: src/Module/Moderation/Users/Blocked.php:92 -#: src/Module/Moderation/Users/Index.php:106 +#: src/Module/Moderation/Users/Blocked.php:78 +#: src/Module/Moderation/Users/Index.php:92 #, php-format msgid "User \"%s\" unblocked" msgstr "" -#: src/Module/Moderation/Users/Blocked.php:134 +#: src/Module/Moderation/Users/Blocked.php:120 msgid "Blocked Users" msgstr "" -#: src/Module/Moderation/Users/Create.php:62 +#: src/Module/Moderation/Users/Create.php:48 msgid "New User" msgstr "" -#: src/Module/Moderation/Users/Create.php:63 +#: src/Module/Moderation/Users/Create.php:49 msgid "Add User" msgstr "" -#: src/Module/Moderation/Users/Create.php:70 +#: src/Module/Moderation/Users/Create.php:56 msgid "Name of the new user." msgstr "" -#: src/Module/Moderation/Users/Create.php:71 +#: src/Module/Moderation/Users/Create.php:57 msgid "Nickname" msgstr "" -#: src/Module/Moderation/Users/Create.php:71 +#: src/Module/Moderation/Users/Create.php:57 msgid "Nickname of the new user." msgstr "" -#: src/Module/Moderation/Users/Create.php:72 +#: src/Module/Moderation/Users/Create.php:58 msgid "Email address of the new user." msgstr "" -#: src/Module/Moderation/Users/Deleted.php:81 +#: src/Module/Moderation/Users/Deleted.php:67 msgid "Users awaiting permanent deletion" msgstr "" -#: src/Module/Moderation/Users/Deleted.php:83 -#: src/Module/Moderation/Users/Index.php:160 +#: src/Module/Moderation/Users/Deleted.php:69 +#: src/Module/Moderation/Users/Index.php:146 msgid "Permanent deletion" msgstr "" -#: src/Module/Moderation/Users/Index.php:150 +#: src/Module/Moderation/Users/Index.php:136 msgid "User waiting for permanent deletion" msgstr "" -#: src/Module/Moderation/Users/Pending.php:44 +#: src/Module/Moderation/Users/Pending.php:30 #, php-format msgid "%s user approved" msgid_plural "%s users approved" msgstr[0] "" msgstr[1] "" -#: src/Module/Moderation/Users/Pending.php:51 +#: src/Module/Moderation/Users/Pending.php:37 #, php-format msgid "%s registration revoked" msgid_plural "%s registrations revoked" msgstr[0] "" msgstr[1] "" -#: src/Module/Moderation/Users/Pending.php:76 +#: src/Module/Moderation/Users/Pending.php:62 msgid "Account approved." msgstr "Compte aprovat." -#: src/Module/Moderation/Users/Pending.php:82 +#: src/Module/Moderation/Users/Pending.php:68 msgid "Registration revoked" msgstr "" -#: src/Module/Moderation/Users/Pending.php:97 +#: src/Module/Moderation/Users/Pending.php:83 msgid "User registrations awaiting review" msgstr "" -#: src/Module/Moderation/Users/Pending.php:99 +#: src/Module/Moderation/Users/Pending.php:85 msgid "Request date" msgstr "Data de sol·licitud" -#: src/Module/Moderation/Users/Pending.php:100 +#: src/Module/Moderation/Users/Pending.php:86 msgid "No registrations." msgstr "Sense registres." -#: src/Module/Moderation/Users/Pending.php:101 +#: src/Module/Moderation/Users/Pending.php:87 msgid "Note from the user" msgstr "" -#: src/Module/Moderation/Users/Pending.php:103 +#: src/Module/Moderation/Users/Pending.php:89 msgid "Deny" msgstr "Denegar" -#: src/Module/Notifications/Introductions.php:99 +#: src/Module/Notifications/Introductions.php:91 msgid "Show Ignored Requests" msgstr "Mostra les Sol·licituds Ignorades" -#: src/Module/Notifications/Introductions.php:99 +#: src/Module/Notifications/Introductions.php:91 msgid "Hide Ignored Requests" msgstr "Amaga les Sol·licituds Ignorades" -#: src/Module/Notifications/Introductions.php:115 -#: src/Module/Notifications/Introductions.php:178 +#: src/Module/Notifications/Introductions.php:107 +#: src/Module/Notifications/Introductions.php:170 msgid "Notification type:" msgstr "" -#: src/Module/Notifications/Introductions.php:118 +#: src/Module/Notifications/Introductions.php:110 msgid "Suggested by:" msgstr "" -#: src/Module/Notifications/Introductions.php:143 +#: src/Module/Notifications/Introductions.php:135 msgid "Claims to be known to you: " msgstr "Diu que et coneix:" #: src/Module/Notifications/Introductions.php:144 -#: src/Module/OAuth/Acknowledge.php:55 src/Module/Register.php:131 -#: src/Module/Settings/TwoFactor/Trusted.php:129 -msgid "No" -msgstr "No" - -#: src/Module/Notifications/Introductions.php:152 msgid "Shall your connection be bidirectional or not?" msgstr "" -#: src/Module/Notifications/Introductions.php:153 +#: src/Module/Notifications/Introductions.php:145 #, php-format msgid "" "Accepting %s as a friend allows %s to subscribe to your posts, and you will " "also receive updates from them in your news feed." msgstr "" -#: src/Module/Notifications/Introductions.php:154 +#: src/Module/Notifications/Introductions.php:146 #, php-format msgid "" "Accepting %s as a subscriber allows them to subscribe to your posts, but you" " will not receive updates from them in your news feed." msgstr "" -#: src/Module/Notifications/Introductions.php:156 +#: src/Module/Notifications/Introductions.php:148 msgid "Friend" msgstr "Amic" -#: src/Module/Notifications/Introductions.php:157 +#: src/Module/Notifications/Introductions.php:149 msgid "Subscriber" msgstr "" -#: src/Module/Notifications/Introductions.php:216 +#: src/Module/Notifications/Introductions.php:208 msgid "No introductions." msgstr "Sense presentacions." -#: src/Module/Notifications/Introductions.php:217 -#: src/Module/Notifications/Notifications.php:135 +#: src/Module/Notifications/Introductions.php:209 +#: src/Module/Notifications/Notifications.php:127 #, php-format msgid "No more %s notifications." msgstr "" -#: src/Module/Notifications/Notification.php:135 +#: src/Module/Notifications/Notification.php:121 msgid "You must be logged in to show this page." msgstr "" -#: src/Module/Notifications/Notifications.php:66 +#: src/Module/Notifications/Notifications.php:52 msgid "Network Notifications" msgstr "Notificacions de la Xarxa" -#: src/Module/Notifications/Notifications.php:72 +#: src/Module/Notifications/Notifications.php:58 msgid "System Notifications" msgstr "Notificacions del Sistema" -#: src/Module/Notifications/Notifications.php:78 +#: src/Module/Notifications/Notifications.php:64 msgid "Personal Notifications" msgstr "Notificacions Personals" -#: src/Module/Notifications/Notifications.php:84 +#: src/Module/Notifications/Notifications.php:70 msgid "Home Notifications" msgstr "Notificacions d'Inici" -#: src/Module/Notifications/Notifications.php:140 +#: src/Module/Notifications/Notifications.php:132 msgid "Show unread" msgstr "" -#: src/Module/Notifications/Ping.php:246 +#: src/Module/Notifications/Ping.php:206 msgid "{0} requested registration" msgstr "{0} solicituts de registre" -#: src/Module/Notifications/Ping.php:255 +#: src/Module/Notifications/Ping.php:215 #, php-format msgid "{0} and %d others requested registration" msgstr "" -#: src/Module/OAuth/Acknowledge.php:51 +#: src/Module/OAuth/Acknowledge.php:37 msgid "Authorize application connection" msgstr "Autoritzi la connexió de aplicacions" -#: src/Module/OAuth/Acknowledge.php:53 +#: src/Module/OAuth/Acknowledge.php:39 msgid "" "Do you want to authorize this application to access your posts and contacts," " and/or create new posts for you?" msgstr "Vol autoritzar a aquesta aplicació per accedir als teus missatges i contactes, i/o crear nous enviaments per a vostè?" -#: src/Module/OAuth/Authorize.php:54 +#: src/Module/OAuth/Authorize.php:40 msgid "Unsupported or missing response type" msgstr "" -#: src/Module/OAuth/Authorize.php:59 src/Module/OAuth/Token.php:75 +#: src/Module/OAuth/Authorize.php:45 src/Module/OAuth/Token.php:61 msgid "Incomplete request data" msgstr "" -#: src/Module/OAuth/Authorize.php:106 +#: src/Module/OAuth/Authorize.php:92 #, php-format msgid "" "Please copy the following authentication code into your application and " "close this window: %s" msgstr "" -#: src/Module/OAuth/Token.php:80 +#: src/Module/OAuth/Token.php:66 msgid "Invalid data or unknown client" msgstr "" -#: src/Module/OAuth/Token.php:105 +#: src/Module/OAuth/Token.php:91 msgid "Unsupported or missing grant type" msgstr "" -#: src/Module/OStatus/Repair.php:83 -msgid "Resubscribing to OStatus contacts" -msgstr "Tornar a inscriure’s a OStatus contactes" - -#: src/Module/OStatus/Repair.php:84 src/Module/OStatus/Subscribe.php:158 -msgid "Keep this window open until done." -msgstr "Manteniu aquesta finestra oberta fins que no hàgiu acabat." - -#: src/Module/OStatus/Repair.php:85 -msgid "✔ Done" -msgstr "" - -#: src/Module/OStatus/Repair.php:86 -msgid "No OStatus contacts to resubscribe to." -msgstr "" - -#: src/Module/OStatus/Subscribe.php:70 +#: src/Module/OStatus/Subscribe.php:58 msgid "Subscribing to contacts" msgstr "" -#: src/Module/OStatus/Subscribe.php:79 +#: src/Module/OStatus/Subscribe.php:67 msgid "No contact provided." msgstr "No s’ha proporcionat cap contacte." -#: src/Module/OStatus/Subscribe.php:85 +#: src/Module/OStatus/Subscribe.php:73 msgid "Couldn't fetch information for contact." msgstr "No s'ha pogut obtenir informació per al contacte." -#: src/Module/OStatus/Subscribe.php:96 +#: src/Module/OStatus/Subscribe.php:84 msgid "Couldn't fetch friends for contact." msgstr "No s'ha pogut buscar amics per contactar-los." -#: src/Module/OStatus/Subscribe.php:102 src/Module/OStatus/Subscribe.php:113 +#: src/Module/OStatus/Subscribe.php:90 src/Module/OStatus/Subscribe.php:101 msgid "Couldn't fetch following contacts." msgstr "" -#: src/Module/OStatus/Subscribe.php:108 +#: src/Module/OStatus/Subscribe.php:96 msgid "Couldn't fetch remote profile." msgstr "" -#: src/Module/OStatus/Subscribe.php:118 +#: src/Module/OStatus/Subscribe.php:106 msgid "Unsupported network" msgstr "" -#: src/Module/OStatus/Subscribe.php:134 +#: src/Module/OStatus/Subscribe.php:122 msgid "Done" msgstr "Fet" -#: src/Module/OStatus/Subscribe.php:148 +#: src/Module/OStatus/Subscribe.php:136 msgid "success" msgstr "èxit" -#: src/Module/OStatus/Subscribe.php:150 +#: src/Module/OStatus/Subscribe.php:138 msgid "failed" msgstr "suspendre" -#: src/Module/OStatus/Subscribe.php:153 +#: src/Module/OStatus/Subscribe.php:141 msgid "ignored" msgstr "ignorar" -#: src/Module/PermissionTooltip.php:49 -#, php-format -msgid "Wrong type \"%s\", expected one of: %s" -msgstr "" +#: src/Module/OStatus/Subscribe.php:146 +msgid "Keep this window open until done." +msgstr "Manteniu aquesta finestra oberta fins que no hàgiu acabat." -#: src/Module/PermissionTooltip.php:79 -msgid "Model not found" -msgstr "" - -#: src/Module/PermissionTooltip.php:94 -msgid "Unlisted" -msgstr "" - -#: src/Module/PermissionTooltip.php:112 -msgid "Remote privacy information not available." -msgstr "Informació de privacitat remota no disponible." - -#: src/Module/PermissionTooltip.php:120 -msgid "Visible to:" -msgstr "Visible per a:" - -#: src/Module/PermissionTooltip.php:214 -#, php-format -msgid "Collection (%s)" -msgstr "" - -#: src/Module/PermissionTooltip.php:218 -#, php-format -msgid "Followers (%s)" -msgstr "" - -#: src/Module/PermissionTooltip.php:237 -#, php-format -msgid "%d more" -msgstr "" - -#: src/Module/PermissionTooltip.php:241 -#, php-format -msgid "To: %s
" -msgstr "" - -#: src/Module/PermissionTooltip.php:244 -#, php-format -msgid "CC: %s
" -msgstr "" - -#: src/Module/PermissionTooltip.php:247 -#, php-format -msgid "BCC: %s
" -msgstr "" - -#: src/Module/PermissionTooltip.php:250 -#, php-format -msgid "Audience: %s
" -msgstr "" - -#: src/Module/PermissionTooltip.php:253 -#, php-format -msgid "Attributed To: %s
" -msgstr "" - -#: src/Module/Photo.php:123 +#: src/Module/Photo.php:108 msgid "The Photo is not available." msgstr "" -#: src/Module/Photo.php:148 +#: src/Module/Photo.php:133 #, php-format msgid "The Photo with id %s is not available." msgstr "" -#: src/Module/Photo.php:189 +#: src/Module/Photo.php:174 #, php-format msgid "Invalid external resource with url %s." msgstr "" -#: src/Module/Photo.php:191 +#: src/Module/Photo.php:176 #, php-format msgid "Invalid photo with id %s." msgstr "" -#: src/Module/Post/Edit.php:82 src/Module/Post/Edit.php:96 +#: src/Module/Post/Edit.php:68 src/Module/Post/Edit.php:82 msgid "Post not found." msgstr "" -#: src/Module/Post/Edit.php:102 +#: src/Module/Post/Edit.php:88 msgid "Edit post" msgstr "Editar Enviament" -#: src/Module/Post/Edit.php:136 +#: src/Module/Post/Edit.php:122 msgid "web link" msgstr "enllaç de web" -#: src/Module/Post/Edit.php:137 +#: src/Module/Post/Edit.php:123 msgid "Insert video link" msgstr "Insertar enllaç de video" -#: src/Module/Post/Edit.php:138 +#: src/Module/Post/Edit.php:124 msgid "video link" msgstr "enllaç de video" -#: src/Module/Post/Edit.php:139 +#: src/Module/Post/Edit.php:125 msgid "Insert audio link" msgstr "Insertar enllaç de audio" -#: src/Module/Post/Edit.php:140 +#: src/Module/Post/Edit.php:126 msgid "audio link" msgstr "enllaç de audio" -#: src/Module/Post/Tag/Remove.php:106 +#: src/Module/Post/Tag/Remove.php:92 msgid "Remove Item Tag" msgstr "Esborrar etiqueta del element" -#: src/Module/Post/Tag/Remove.php:107 +#: src/Module/Post/Tag/Remove.php:93 msgid "Select a tag to remove: " msgstr "Selecciona etiqueta a esborrar:" -#: src/Module/Post/Tag/Remove.php:108 -#: src/Module/Settings/TwoFactor/Trusted.php:147 +#: src/Module/Post/Tag/Remove.php:94 +#: src/Module/Settings/TwoFactor/Trusted.php:133 msgid "Remove" msgstr "Esborrar" -#: src/Module/Profile/Contacts.php:159 +#: src/Module/Privacy/PermissionTooltip.php:57 +#, php-format +msgid "Wrong type \"%s\", expected one of: %s" +msgstr "" + +#: src/Module/Privacy/PermissionTooltip.php:87 +msgid "Model not found" +msgstr "" + +#: src/Module/Privacy/PermissionTooltip.php:104 +msgid "Unlisted" +msgstr "" + +#: src/Module/Privacy/PermissionTooltip.php:110 +msgid "Remote privacy information not available." +msgstr "Informació de privacitat remota no disponible." + +#: src/Module/Privacy/PermissionTooltip.php:117 +msgid "Visible to:" +msgstr "Visible per a:" + +#: src/Module/Privacy/PermissionTooltip.php:119 +msgid "CC:" +msgstr "" + +#: src/Module/Privacy/PermissionTooltip.php:120 +msgid "BCC:" +msgstr "" + +#: src/Module/Privacy/PermissionTooltip.php:121 +msgid "Audience:" +msgstr "" + +#: src/Module/Privacy/PermissionTooltip.php:122 +msgid "Attributed To:" +msgstr "" + +#: src/Module/Privacy/PermissionTooltip.php:220 +#, php-format +msgid "Collection (%s)" +msgstr "" + +#: src/Module/Privacy/PermissionTooltip.php:224 +#, php-format +msgid "Followers (%s)" +msgstr "" + +#: src/Module/Privacy/PermissionTooltip.php:241 +#, php-format +msgid "%d more" +msgstr "" + +#: src/Module/Profile/Contacts.php:145 msgid "No contacts." 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: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:1103 src/Protocol/OStatus.php:1014 +#: src/Module/Profile/Conversations.php:92 src/Module/Profile/Profile.php:339 +#: src/Protocol/Feed.php:1097 #, php-format msgid "%s's posts" msgstr "" -#: src/Module/Profile/Conversations.php:108 src/Module/Profile/Profile.php:353 -#: src/Protocol/Feed.php:1106 src/Protocol/OStatus.php:1018 +#: src/Module/Profile/Conversations.php:93 src/Module/Profile/Profile.php:340 +#: src/Protocol/Feed.php:1100 #, php-format msgid "%s's comments" msgstr "" -#: src/Module/Profile/Photos.php:164 src/Module/Profile/Photos.php:167 -#: src/Module/Profile/Photos.php:192 -#: src/Module/Settings/Profile/Photo/Index.php:58 +#: src/Module/Profile/Conversations.php:94 src/Module/Profile/Profile.php:341 +#: src/Protocol/Feed.php:1093 +#, php-format +msgid "%s's timeline" +msgstr "" + +#: src/Module/Profile/Photos.php:150 src/Module/Profile/Photos.php:153 +#: src/Module/Profile/Photos.php:178 +#: src/Module/Settings/Profile/Photo/Index.php:44 #, php-format msgid "Image exceeds size limit of %s" msgstr "" -#: src/Module/Profile/Photos.php:170 +#: src/Module/Profile/Photos.php:156 msgid "Image upload didn't complete, please try again" msgstr "" -#: src/Module/Profile/Photos.php:173 +#: src/Module/Profile/Photos.php:159 msgid "Image file is missing" msgstr "" -#: src/Module/Profile/Photos.php:178 +#: src/Module/Profile/Photos.php:164 msgid "" "Server can't accept new file upload at this time, please contact your " "administrator" msgstr "" -#: src/Module/Profile/Photos.php:200 +#: src/Module/Profile/Photos.php:186 msgid "Image file is empty." msgstr "El fitxer de imatge és buit." -#: src/Module/Profile/Photos.php:352 +#: src/Module/Profile/Photos.php:338 msgid "View Album" msgstr "Veure Àlbum" -#: src/Module/Profile/Profile.php:112 src/Module/Profile/Restricted.php:50 +#: src/Module/Profile/Profile.php:100 src/Module/Profile/Restricted.php:36 msgid "Profile not found." msgstr "Perfil no trobat." -#: src/Module/Profile/Profile.php:158 +#: src/Module/Profile/Profile.php:146 #, php-format msgid "" "You're currently viewing your profile as %s Cancel" msgstr "" -#: src/Module/Profile/Profile.php:167 +#: src/Module/Profile/Profile.php:155 msgid "Full Name:" msgstr "Nom Complet:" -#: src/Module/Profile/Profile.php:172 +#: src/Module/Profile/Profile.php:160 msgid "Member since:" msgstr "" -#: src/Module/Profile/Profile.php:178 +#: src/Module/Profile/Profile.php:166 msgid "j F, Y" msgstr "j F, Y" -#: src/Module/Profile/Profile.php:179 +#: src/Module/Profile/Profile.php:167 msgid "j F" msgstr "j F" -#: src/Module/Profile/Profile.php:187 src/Util/Temporal.php:168 +#: src/Module/Profile/Profile.php:175 src/Util/Temporal.php:154 msgid "Birthday:" msgstr "Aniversari:" -#: src/Module/Profile/Profile.php:190 -#: src/Module/Settings/Profile/Index.php:291 src/Util/Temporal.php:170 +#: src/Module/Profile/Profile.php:178 +#: src/Module/Settings/Profile/Index.php:282 src/Util/Temporal.php:156 msgid "Age: " msgstr "Edat:" -#: src/Module/Profile/Profile.php:190 -#: src/Module/Settings/Profile/Index.php:291 src/Util/Temporal.php:170 +#: src/Module/Profile/Profile.php:178 +#: src/Module/Settings/Profile/Index.php:282 src/Util/Temporal.php:156 #, php-format msgid "%d year old" msgid_plural "%d years old" msgstr[0] "" msgstr[1] "" -#: src/Module/Profile/Profile.php:195 -#: src/Module/Settings/Profile/Index.php:284 +#: src/Module/Profile/Profile.php:183 +#: src/Module/Settings/Profile/Index.php:275 msgid "Description:" msgstr "Descripció:" -#: src/Module/Profile/Profile.php:261 +#: src/Module/Profile/Profile.php:249 msgid "Groups:" msgstr "" -#: src/Module/Profile/Profile.php:273 +#: src/Module/Profile/Profile.php:261 msgid "View profile as:" msgstr "" -#: src/Module/Profile/Profile.php:290 +#: src/Module/Profile/Profile.php:278 msgid "View as" msgstr "" -#: src/Module/Profile/RemoteFollow.php:82 +#: src/Module/Profile/RemoteFollow.php:68 msgid "Profile unavailable." msgstr "Perfil no disponible" -#: src/Module/Profile/RemoteFollow.php:88 +#: src/Module/Profile/RemoteFollow.php:74 msgid "Invalid locator" msgstr "Localitzador no vàlid" -#: src/Module/Profile/RemoteFollow.php:95 +#: src/Module/Profile/RemoteFollow.php:81 msgid "The provided profile link doesn't seem to be valid" msgstr "" -#: src/Module/Profile/RemoteFollow.php:100 +#: src/Module/Profile/RemoteFollow.php:86 msgid "" "Remote subscription can't be done for your network. Please subscribe " "directly on your system." msgstr "" -#: src/Module/Profile/RemoteFollow.php:128 +#: src/Module/Profile/RemoteFollow.php:114 msgid "Friend/Connection Request" msgstr "Sol·licitud d'Amistat" -#: src/Module/Profile/RemoteFollow.php:129 +#: src/Module/Profile/RemoteFollow.php:115 #, php-format msgid "" "Enter your Webfinger address (user@domain.tld) or profile URL here. If this " @@ -9211,575 +9255,579 @@ msgid "" " or %s directly on your system." msgstr "" -#: src/Module/Profile/RemoteFollow.php:130 +#: src/Module/Profile/RemoteFollow.php:116 #, php-format msgid "" "If you are not yet a member of the free social web, follow " "this link to find a public Friendica node and join us today." msgstr "" -#: src/Module/Profile/RemoteFollow.php:131 +#: src/Module/Profile/RemoteFollow.php:117 msgid "Your Webfinger address or profile URL:" msgstr "" -#: src/Module/Profile/Restricted.php:59 +#: src/Module/Profile/Restricted.php:45 msgid "Restricted profile" msgstr "" -#: src/Module/Profile/Restricted.php:60 +#: src/Module/Profile/Restricted.php:46 msgid "" "This profile has been restricted which prevents access to their public " "content from anonymous visitors." msgstr "" -#: src/Module/Profile/Schedule.php:83 +#: src/Module/Profile/Schedule.php:69 msgid "Scheduled" msgstr "" -#: src/Module/Profile/Schedule.php:84 +#: src/Module/Profile/Schedule.php:70 msgid "Content" msgstr "" -#: src/Module/Profile/Schedule.php:85 +#: src/Module/Profile/Schedule.php:71 msgid "Remove post" msgstr "" -#: src/Module/Register.php:84 +#: src/Module/Register.php:77 msgid "Only parent users can create additional accounts." msgstr "" -#: src/Module/Register.php:99 src/Module/User/Import.php:111 +#: src/Module/Register.php:92 src/Module/User/Import.php:98 msgid "" "This site has exceeded the number of allowed daily account registrations. " "Please try again tomorrow." msgstr "Aquest lloc excedeix el nombre diari de registres de comptes. Per favor, provi de nou demà." -#: src/Module/Register.php:116 +#: src/Module/Register.php:109 msgid "" "You may (optionally) fill in this form via OpenID by supplying your OpenID " "and clicking \"Register\"." msgstr "Podeu (opcionalment) omplir aquest formulari mitjançant OpenID subministrant el vostre OpenID i fent clic a 'Registre'." -#: src/Module/Register.php:117 +#: src/Module/Register.php:110 msgid "" "If you are not familiar with OpenID, please leave that field blank and fill " "in the rest of the items." msgstr "Si vostè no està familiaritzat amb Twitter, si us plau deixi aquest camp en blanc i completi la resta dels elements." -#: src/Module/Register.php:118 +#: src/Module/Register.php:111 msgid "Your OpenID (optional): " msgstr "El seu OpenID (opcional):" -#: src/Module/Register.php:127 +#: src/Module/Register.php:120 msgid "Include your profile in member directory?" msgstr "Incloc el seu perfil al directori de membres?" -#: src/Module/Register.php:148 +#: src/Module/Register.php:141 msgid "Note for the admin" msgstr "Nota per a l'administrador" -#: src/Module/Register.php:148 +#: src/Module/Register.php:141 msgid "Leave a message for the admin, why you want to join this node" msgstr "Deixa un missatge per a l'administrador, per què vols unir-te a aquest node" -#: src/Module/Register.php:149 +#: src/Module/Register.php:142 msgid "Membership on this site is by invitation only." msgstr "Lloc accesible mitjançant invitació." -#: src/Module/Register.php:150 +#: src/Module/Register.php:143 msgid "Your invitation code: " msgstr "El vostre codi d'invitació:" -#: src/Module/Register.php:158 +#: src/Module/Register.php:151 msgid "Your Display Name (as you would like it to be displayed on this system" msgstr "" -#: src/Module/Register.php:159 +#: src/Module/Register.php:152 msgid "" "Your Email Address: (Initial information will be send there, so this has to " "be an existing address.)" msgstr "La vostra adreça de correu electrònic: (la informació inicial s’enviarà allà, així que ha de ser una adreça existent.)" -#: src/Module/Register.php:160 +#: src/Module/Register.php:153 msgid "Please repeat your e-mail address:" msgstr "" -#: src/Module/Register.php:162 src/Module/Security/PasswordTooLong.php:100 -#: src/Module/Settings/Account.php:557 +#: src/Module/Register.php:155 src/Module/Security/PasswordTooLong.php:86 +#: src/Module/Settings/Account.php:555 msgid "New Password:" msgstr "Nova Contrasenya:" -#: src/Module/Register.php:162 +#: src/Module/Register.php:155 msgid "Leave empty for an auto generated password." msgstr "Deixeu-lo buit per obtenir una contrasenya generat automàticament." -#: src/Module/Register.php:163 src/Module/Security/PasswordTooLong.php:101 -#: src/Module/Settings/Account.php:558 +#: src/Module/Register.php:156 src/Module/Security/PasswordTooLong.php:87 +#: src/Module/Settings/Account.php:556 msgid "Confirm:" msgstr "Confirmar:" -#: src/Module/Register.php:164 +#: src/Module/Register.php:157 #, php-format msgid "" "Choose a profile nickname. This must begin with a text character. Your " "profile address on this site will then be \"nickname@%s\"." msgstr "Trieu un sobrenom de perfil. Això ha de començar amb un caràcter de text. La vostra adreça de perfil en aquest lloc serà la següent\"sobrenom @%s\"." -#: src/Module/Register.php:165 +#: src/Module/Register.php:158 msgid "Choose a nickname: " msgstr "Tria un àlies:" -#: src/Module/Register.php:173 src/Module/User/Import.php:117 +#: src/Module/Register.php:166 src/Module/User/Import.php:104 msgid "Import" msgstr "Importar" -#: src/Module/Register.php:174 +#: src/Module/Register.php:167 msgid "Import your profile to this friendica instance" msgstr "Importeu el vostre perfil a aquesta instància de friendica" -#: src/Module/Register.php:181 +#: src/Module/Register.php:174 msgid "Note: This node explicitly contains adult content" msgstr "Nota: Aquest node conté explícitament contingut per a adults" -#: src/Module/Register.php:183 src/Module/Settings/Delegation.php:181 +#: src/Module/Register.php:176 src/Module/Settings/Delegation.php:167 msgid "Parent Password:" msgstr "Contrasenya principal:" -#: src/Module/Register.php:183 src/Module/Settings/Delegation.php:181 +#: src/Module/Register.php:176 src/Module/Settings/Delegation.php:167 msgid "" "Please enter the password of the parent account to legitimize your request." msgstr "Introduïu la contrasenya del compte principal per validar la vostra sol·licitud." -#: src/Module/Register.php:212 +#: src/Module/Register.php:205 msgid "Password doesn't match." msgstr "" -#: src/Module/Register.php:218 +#: src/Module/Register.php:211 msgid "Please enter your password." msgstr "" -#: src/Module/Register.php:260 +#: src/Module/Register.php:253 msgid "You have entered too much information." msgstr "" -#: src/Module/Register.php:283 +#: src/Module/Register.php:276 msgid "Please enter the identical mail address in the second field." msgstr "" -#: src/Module/Register.php:291 +#: src/Module/Register.php:284 msgid "Nickname cannot start with a digit." msgstr "" -#: src/Module/Register.php:293 +#: src/Module/Register.php:286 msgid "Nickname can only contain US-ASCII characters." msgstr "" -#: src/Module/Register.php:322 +#: src/Module/Register.php:315 msgid "The additional account was created." msgstr "" -#: src/Module/Register.php:347 +#: src/Module/Register.php:340 msgid "" "Registration successful. Please check your email for further instructions." msgstr "Registrat amb èxit. Per favor, comprovi el seu correu per a posteriors instruccions." -#: src/Module/Register.php:354 +#: src/Module/Register.php:347 #, php-format msgid "" "Failed to send email message. Here your accout details:
login: %s
" "password: %s

You can change your password after login." msgstr "No s'ha pogut enviar el missatge de correu electrònic. Aquí teniu els vostres detalls
iniciar Sessió %s
contrasenya: %s

Podeu canviar la vostra contrasenya després de l’inici de sessió." -#: src/Module/Register.php:360 +#: src/Module/Register.php:353 msgid "Registration successful." msgstr "El registre ha tingut èxit." -#: src/Module/Register.php:369 src/Module/Register.php:376 -#: src/Module/Register.php:386 +#: src/Module/Register.php:362 src/Module/Register.php:369 +#: src/Module/Register.php:379 msgid "Your registration can not be processed." msgstr "El seu registre no pot ser processat." -#: src/Module/Register.php:375 +#: src/Module/Register.php:368 msgid "You have to leave a request note for the admin." msgstr "" -#: src/Module/Register.php:385 +#: src/Module/Register.php:378 msgid "An internal error occured." msgstr "" -#: src/Module/Register.php:407 +#: src/Module/Register.php:400 msgid "Your registration is pending approval by the site owner." msgstr "El seu registre està pendent d'aprovació pel propietari del lloc." -#: src/Module/Search/Acl.php:73 +#: src/Module/Search/Acl.php:64 msgid "You must be logged in to use this module." msgstr "" -#: src/Module/Search/Index.php:69 +#: src/Module/Search/Index.php:55 msgid "Only logged in users are permitted to perform a search." msgstr "" -#: src/Module/Search/Index.php:89 +#: src/Module/Search/Index.php:75 msgid "Only one search per minute is permitted for not logged in users." msgstr "" -#: src/Module/Search/Index.php:205 +#: src/Module/Search/Index.php:191 #, php-format msgid "Items tagged with: %s" msgstr "" -#: src/Module/Search/Saved.php:59 +#: src/Module/Search/Saved.php:49 msgid "Search term was not saved." msgstr "" -#: src/Module/Search/Saved.php:62 +#: src/Module/Search/Saved.php:52 msgid "Search term already saved." msgstr "" -#: src/Module/Search/Saved.php:68 +#: src/Module/Search/Saved.php:58 msgid "Search term was not removed." msgstr "" -#: src/Module/Security/Login.php:123 +#: src/Module/Security/Login.php:113 msgid "Create a New Account" msgstr "Crear un Nou Compte" -#: src/Module/Security/Login.php:142 +#: src/Module/Security/Login.php:132 msgid "Your OpenID: " msgstr "" -#: src/Module/Security/Login.php:145 +#: src/Module/Security/Login.php:135 msgid "" "Please enter your username and password to add the OpenID to your existing " "account." msgstr "" -#: src/Module/Security/Login.php:147 +#: src/Module/Security/Login.php:137 msgid "Or login using OpenID: " msgstr "O accedixi emprant OpenID:" -#: src/Module/Security/Login.php:161 +#: src/Module/Security/Login.php:151 msgid "Password: " msgstr "Contrasenya:" -#: src/Module/Security/Login.php:162 +#: src/Module/Security/Login.php:152 msgid "Remember me" msgstr "Recorda'm ho" -#: src/Module/Security/Login.php:171 +#: src/Module/Security/Login.php:161 msgid "Forgot your password?" msgstr "Oblidà la contrasenya?" -#: src/Module/Security/Login.php:174 +#: src/Module/Security/Login.php:164 msgid "Website Terms of Service" msgstr "Termes del Servei al Llocweb" -#: src/Module/Security/Login.php:175 +#: src/Module/Security/Login.php:165 msgid "terms of service" msgstr "termes del servei" -#: src/Module/Security/Login.php:177 +#: src/Module/Security/Login.php:167 msgid "Website Privacy Policy" msgstr "Política de Privacitat al Llocweb" -#: src/Module/Security/Login.php:178 +#: src/Module/Security/Login.php:168 msgid "privacy policy" msgstr "política de privacitat" -#: src/Module/Security/Logout.php:84 -#: src/Module/Security/TwoFactor/SignOut.php:78 -#: src/Module/Security/TwoFactor/SignOut.php:86 -#: src/Module/Security/TwoFactor/SignOut.php:108 -#: src/Module/Security/TwoFactor/SignOut.php:115 +#: src/Module/Security/Logout.php:75 +#: src/Module/Security/TwoFactor/SignOut.php:64 +#: src/Module/Security/TwoFactor/SignOut.php:72 +#: src/Module/Security/TwoFactor/SignOut.php:94 +#: src/Module/Security/TwoFactor/SignOut.php:101 msgid "Logged out." msgstr "Has sortit" -#: src/Module/Security/OpenID.php:54 +#: src/Module/Security/OpenID.php:40 msgid "OpenID protocol error. No ID returned" msgstr "" -#: src/Module/Security/OpenID.php:90 +#: src/Module/Security/OpenID.php:76 msgid "" "Account not found. Please login to your existing account to add the OpenID " "to it." msgstr "" -#: src/Module/Security/OpenID.php:92 +#: src/Module/Security/OpenID.php:78 msgid "" "Account not found. Please register a new account or login to your existing " "account to add the OpenID to it." msgstr "" -#: src/Module/Security/PasswordTooLong.php:57 -#: src/Module/Settings/Account.php:67 +#: src/Module/Security/PasswordTooLong.php:43 +#: src/Module/Settings/Account.php:53 msgid "Passwords do not match." msgstr "" -#: src/Module/Security/PasswordTooLong.php:64 +#: src/Module/Security/PasswordTooLong.php:50 msgid "Password does not need changing." msgstr "" -#: src/Module/Security/PasswordTooLong.php:77 -#: src/Module/Settings/Account.php:81 +#: src/Module/Security/PasswordTooLong.php:63 +#: src/Module/Settings/Account.php:67 msgid "Password unchanged." msgstr "" -#: src/Module/Security/PasswordTooLong.php:91 +#: src/Module/Security/PasswordTooLong.php:77 msgid "Password Too Long" msgstr "" -#: src/Module/Security/PasswordTooLong.php:92 +#: src/Module/Security/PasswordTooLong.php:78 msgid "" "Since version 2022.09, we've realized that any password longer than 72 " "characters is truncated during hashing. To prevent any confusion about this " "behavior, please update your password to be fewer or equal to 72 characters." msgstr "" -#: src/Module/Security/PasswordTooLong.php:93 +#: src/Module/Security/PasswordTooLong.php:79 msgid "Update Password" msgstr "" -#: src/Module/Security/PasswordTooLong.php:99 -#: src/Module/Settings/Account.php:559 +#: src/Module/Security/PasswordTooLong.php:85 +#: src/Module/Settings/Account.php:557 msgid "Current Password:" msgstr "Contrasenya Actual:" -#: src/Module/Security/PasswordTooLong.php:99 -#: src/Module/Settings/Account.php:559 +#: src/Module/Security/PasswordTooLong.php:85 +#: src/Module/Settings/Account.php:557 msgid "Your current password to confirm the changes" msgstr "La teva actual contrasenya a fi de confirmar els canvis" -#: src/Module/Security/PasswordTooLong.php:100 -#: src/Module/Settings/Account.php:543 +#: src/Module/Security/PasswordTooLong.php:86 +#: src/Module/Settings/Account.php:541 msgid "" "Allowed characters are a-z, A-Z, 0-9 and special characters except white " "spaces and accentuated letters." msgstr "" -#: src/Module/Security/PasswordTooLong.php:100 -#: src/Module/Settings/Account.php:544 +#: src/Module/Security/PasswordTooLong.php:86 +#: src/Module/Settings/Account.php:542 msgid "Password length is limited to 72 characters." msgstr "" -#: src/Module/Security/TwoFactor/Recovery.php:74 +#: src/Module/Security/TwoFactor/Recovery.php:60 #, php-format msgid "Remaining recovery codes: %d" msgstr "" -#: src/Module/Security/TwoFactor/Recovery.php:80 -#: src/Module/Security/TwoFactor/Verify.php:77 -#: src/Module/Settings/TwoFactor/Verify.php:98 +#: src/Module/Security/TwoFactor/Recovery.php:66 +#: src/Module/Security/TwoFactor/Verify.php:63 +#: src/Module/Settings/TwoFactor/Verify.php:84 msgid "Invalid code, please retry." msgstr "" -#: src/Module/Security/TwoFactor/Recovery.php:99 +#: src/Module/Security/TwoFactor/Recovery.php:85 msgid "Two-factor recovery" msgstr "" -#: src/Module/Security/TwoFactor/Recovery.php:100 +#: src/Module/Security/TwoFactor/Recovery.php:86 msgid "" "

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

" msgstr "" -#: src/Module/Security/TwoFactor/Recovery.php:101 +#: src/Module/Security/TwoFactor/Recovery.php:87 #, php-format msgid "Don’t have your phone? Enter a two-factor recovery code" msgstr "" -#: src/Module/Security/TwoFactor/Recovery.php:102 +#: src/Module/Security/TwoFactor/Recovery.php:88 msgid "Please enter a recovery code" msgstr "" -#: src/Module/Security/TwoFactor/Recovery.php:103 +#: src/Module/Security/TwoFactor/Recovery.php:89 msgid "Submit recovery code and complete login" msgstr "" -#: src/Module/Security/TwoFactor/SignOut.php:122 +#: src/Module/Security/TwoFactor/SignOut.php:108 msgid "Sign out of this browser?" msgstr "" -#: src/Module/Security/TwoFactor/SignOut.php:123 +#: src/Module/Security/TwoFactor/SignOut.php:109 msgid "" "

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

" msgstr "" -#: src/Module/Security/TwoFactor/SignOut.php:124 +#: src/Module/Security/TwoFactor/SignOut.php:110 msgid "Sign out" msgstr "" -#: src/Module/Security/TwoFactor/SignOut.php:126 +#: src/Module/Security/TwoFactor/SignOut.php:112 msgid "Trust and sign out" msgstr "" -#: src/Module/Security/TwoFactor/Trust.php:96 +#: src/Module/Security/TwoFactor/Trust.php:82 msgid "Couldn't save browser to Cookie." msgstr "" -#: src/Module/Security/TwoFactor/Trust.php:141 +#: src/Module/Security/TwoFactor/Trust.php:127 msgid "Trust this browser?" msgstr "" -#: src/Module/Security/TwoFactor/Trust.php:142 +#: src/Module/Security/TwoFactor/Trust.php:128 msgid "" "

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

" msgstr "" -#: src/Module/Security/TwoFactor/Trust.php:143 +#: src/Module/Security/TwoFactor/Trust.php:129 msgid "Not now" msgstr "" -#: src/Module/Security/TwoFactor/Trust.php:144 +#: src/Module/Security/TwoFactor/Trust.php:130 msgid "Don't trust" msgstr "" -#: src/Module/Security/TwoFactor/Trust.php:145 +#: src/Module/Security/TwoFactor/Trust.php:131 msgid "Trust" msgstr "" -#: src/Module/Security/TwoFactor/Verify.php:97 +#: src/Module/Security/TwoFactor/Verify.php:83 msgid "" "

Open the two-factor authentication app on your device to get an " "authentication code and verify your identity.

" msgstr "" -#: src/Module/Security/TwoFactor/Verify.php:100 +#: src/Module/Security/TwoFactor/Verify.php:86 #, php-format msgid "" "If you do not have access to your authentication code you can use a two-factor recovery code." msgstr "" -#: src/Module/Security/TwoFactor/Verify.php:101 -#: src/Module/Settings/TwoFactor/Verify.php:158 +#: src/Module/Security/TwoFactor/Verify.php:87 +#: src/Module/Settings/TwoFactor/Verify.php:144 msgid "Please enter a code from your authentication app" msgstr "" -#: src/Module/Security/TwoFactor/Verify.php:102 +#: src/Module/Security/TwoFactor/Verify.php:88 msgid "Verify code and complete login" msgstr "" -#: src/Module/Settings/Account.php:96 +#: src/Module/Settings/Account.php:82 msgid "Please use a shorter name." msgstr "" -#: src/Module/Settings/Account.php:99 +#: src/Module/Settings/Account.php:85 msgid "Name too short." msgstr "" -#: src/Module/Settings/Account.php:108 +#: src/Module/Settings/Account.php:94 msgid "Wrong Password." msgstr "" -#: src/Module/Settings/Account.php:113 +#: src/Module/Settings/Account.php:99 msgid "Invalid email." msgstr "" -#: src/Module/Settings/Account.php:117 +#: src/Module/Settings/Account.php:103 msgid "Cannot change to that email." msgstr "" -#: src/Module/Settings/Account.php:146 src/Module/Settings/Account.php:195 -#: src/Module/Settings/Account.php:216 src/Module/Settings/Account.php:300 -#: src/Module/Settings/Account.php:329 +#: src/Module/Settings/Account.php:132 src/Module/Settings/Account.php:181 +#: src/Module/Settings/Account.php:202 src/Module/Settings/Account.php:286 +#: src/Module/Settings/Account.php:315 msgid "Settings were not updated." msgstr "" -#: src/Module/Settings/Account.php:342 +#: src/Module/Settings/Account.php:333 msgid "Contact CSV file upload error" msgstr "" -#: src/Module/Settings/Account.php:361 +#: src/Module/Settings/Account.php:352 msgid "Importing Contacts done" msgstr "" -#: src/Module/Settings/Account.php:374 +#: src/Module/Settings/Account.php:365 msgid "Relocate message has been send to your contacts" msgstr "" -#: src/Module/Settings/Account.php:391 +#: src/Module/Settings/Account.php:382 msgid "Unable to find your profile. Please contact your admin." msgstr "" -#: src/Module/Settings/Account.php:433 +#: src/Module/Settings/Account.php:424 msgid "" "Account for a service that automatically shares content based on user " "defined channels." msgstr "" -#: src/Module/Settings/Account.php:443 +#: src/Module/Settings/Account.php:434 msgid "Personal Page Subtypes" msgstr "" -#: src/Module/Settings/Account.php:444 +#: src/Module/Settings/Account.php:435 msgid "Community Group Subtypes" msgstr "" -#: src/Module/Settings/Account.php:455 +#: src/Module/Settings/Account.php:446 msgid "Account for a personal profile." msgstr "" -#: src/Module/Settings/Account.php:462 +#: src/Module/Settings/Account.php:453 msgid "" "Account for an organisation that automatically approves contact requests as " "\"Followers\"." msgstr "Compte per a una organització que aprovi automàticament les sol·licituds de contacte com a 'seguidors'." -#: src/Module/Settings/Account.php:469 +#: src/Module/Settings/Account.php:460 msgid "" "Account for a news reflector that automatically approves contact requests as" " \"Followers\"." msgstr "" -#: src/Module/Settings/Account.php:476 +#: src/Module/Settings/Account.php:467 msgid "Account for community discussions." msgstr "" -#: src/Module/Settings/Account.php:484 +#: src/Module/Settings/Account.php:475 msgid "" "Account for a regular personal profile that requires manual approval of " "\"Friends\" and \"Followers\"." msgstr "" -#: src/Module/Settings/Account.php:491 +#: src/Module/Settings/Account.php:482 msgid "" "Account for a public profile that automatically approves contact requests as" " \"Followers\"." msgstr "Cuenta para un perfil público que aprueba automáticamente las solicitudes de contacto como 'Seguidores'." -#: src/Module/Settings/Account.php:498 +#: src/Module/Settings/Account.php:489 msgid "Automatically approves all contact requests." msgstr "" -#: src/Module/Settings/Account.php:505 +#: src/Module/Settings/Account.php:496 +msgid "Contact requests have to be manually approved." +msgstr "" + +#: src/Module/Settings/Account.php:503 msgid "" "Account for a popular profile that automatically approves contact requests " "as \"Friends\"." msgstr "" -#: src/Module/Settings/Account.php:510 +#: src/Module/Settings/Account.php:508 msgid "Private Group [Experimental]" msgstr "" -#: src/Module/Settings/Account.php:512 +#: src/Module/Settings/Account.php:510 msgid "Requires manual approval of contact requests." msgstr "" -#: src/Module/Settings/Account.php:521 +#: src/Module/Settings/Account.php:519 msgid "OpenID:" msgstr "OpenID:" -#: src/Module/Settings/Account.php:521 +#: src/Module/Settings/Account.php:519 msgid "(Optional) Allow this OpenID to login to this account." msgstr "(Opcional) Permetre a aquest OpenID iniciar sessió en aquest compte." -#: src/Module/Settings/Account.php:529 +#: src/Module/Settings/Account.php:527 msgid "Publish your profile in your local site directory?" msgstr "" -#: src/Module/Settings/Account.php:529 +#: src/Module/Settings/Account.php:527 #, php-format msgid "" "Your profile will be published in this node's local " @@ -9787,94 +9835,94 @@ msgid "" " system settings." msgstr "" -#: src/Module/Settings/Account.php:535 +#: src/Module/Settings/Account.php:533 #, php-format msgid "" "Your profile will also be published in the global friendica directories " "(e.g. %s)." msgstr "" -#: src/Module/Settings/Account.php:548 +#: src/Module/Settings/Account.php:546 msgid "Account Settings" msgstr "Ajustos de Compte" -#: src/Module/Settings/Account.php:549 +#: src/Module/Settings/Account.php:547 #, php-format msgid "Your Identity Address is '%s' or '%s'." msgstr "" -#: src/Module/Settings/Account.php:556 +#: src/Module/Settings/Account.php:554 msgid "Password Settings" msgstr "Ajustos de Contrasenya" -#: src/Module/Settings/Account.php:558 +#: src/Module/Settings/Account.php:556 msgid "Leave password fields blank unless changing" msgstr "Deixi els camps de contrasenya buits per a no fer canvis" -#: src/Module/Settings/Account.php:560 +#: src/Module/Settings/Account.php:558 msgid "Password:" msgstr "Contrasenya:" -#: src/Module/Settings/Account.php:560 +#: src/Module/Settings/Account.php:558 msgid "Your current password to confirm the changes of the email address" msgstr "" -#: src/Module/Settings/Account.php:563 +#: src/Module/Settings/Account.php:561 msgid "Delete OpenID URL" msgstr "" -#: src/Module/Settings/Account.php:565 +#: src/Module/Settings/Account.php:563 msgid "Basic Settings" msgstr "Ajustos Basics" -#: src/Module/Settings/Account.php:566 -#: src/Module/Settings/Profile/Index.php:283 +#: src/Module/Settings/Account.php:564 +#: src/Module/Settings/Profile/Index.php:274 msgid "Display name:" msgstr "" -#: src/Module/Settings/Account.php:567 +#: src/Module/Settings/Account.php:565 msgid "Email Address:" msgstr "Adreça de Correu:" -#: src/Module/Settings/Account.php:568 +#: src/Module/Settings/Account.php:566 msgid "Your Timezone:" msgstr "La teva zona Horària:" -#: src/Module/Settings/Account.php:569 +#: src/Module/Settings/Account.php:567 msgid "Your Language:" msgstr "El teu idioma:" -#: src/Module/Settings/Account.php:569 +#: src/Module/Settings/Account.php:567 msgid "" "Set the language we use to show you friendica interface and to send you " "emails" msgstr "Definiu l’idioma que utilitzem per mostrar-vos la interfície Friendica i per enviar-vos correus electrònics" -#: src/Module/Settings/Account.php:570 +#: src/Module/Settings/Account.php:568 msgid "Default Post Location:" msgstr "Localització per Defecte del Missatge:" -#: src/Module/Settings/Account.php:571 +#: src/Module/Settings/Account.php:569 msgid "Use Browser Location:" msgstr "Ubicar-se amb el Navegador:" -#: src/Module/Settings/Account.php:573 +#: src/Module/Settings/Account.php:571 msgid "Security and Privacy Settings" msgstr "Ajustos de Seguretat i Privacitat" -#: src/Module/Settings/Account.php:575 +#: src/Module/Settings/Account.php:573 msgid "Maximum Friend Requests/Day:" msgstr "Nombre Màxim de Sol·licituds per Dia" -#: src/Module/Settings/Account.php:575 +#: src/Module/Settings/Account.php:573 msgid "(to prevent spam abuse)" msgstr "(per a prevenir abusos de spam)" -#: src/Module/Settings/Account.php:577 +#: src/Module/Settings/Account.php:575 msgid "Allow your profile to be searchable globally?" msgstr "" -#: src/Module/Settings/Account.php:577 +#: src/Module/Settings/Account.php:575 msgid "" "Activate this setting if you want others to easily find and follow you. Your" " profile will be searchable on remote systems. This setting also determines " @@ -9882,43 +9930,43 @@ msgid "" "indexed or not." msgstr "" -#: src/Module/Settings/Account.php:578 +#: src/Module/Settings/Account.php:576 msgid "Hide your contact/friend list from viewers of your profile?" msgstr "" -#: src/Module/Settings/Account.php:578 +#: src/Module/Settings/Account.php:576 msgid "" "A list of your contacts is displayed on your profile page. Activate this " "option to disable the display of your contact list." msgstr "" -#: src/Module/Settings/Account.php:579 +#: src/Module/Settings/Account.php:577 msgid "Hide your public content from anonymous viewers" msgstr "" -#: src/Module/Settings/Account.php:579 +#: src/Module/Settings/Account.php:577 msgid "" "Anonymous visitors will only see your basic profile details. Your public " "posts and replies will still be freely accessible on the remote servers of " "your followers and through relays." msgstr "" -#: src/Module/Settings/Account.php:580 +#: src/Module/Settings/Account.php:578 msgid "Make public posts unlisted" msgstr "" -#: src/Module/Settings/Account.php:580 +#: src/Module/Settings/Account.php:578 msgid "" "Your public posts will not appear on the community pages or in search " "results, nor be sent to relay servers. However they can still appear on " "public feeds on remote servers." msgstr "" -#: src/Module/Settings/Account.php:581 +#: src/Module/Settings/Account.php:579 msgid "Make all posted pictures accessible" msgstr "" -#: src/Module/Settings/Account.php:581 +#: src/Module/Settings/Account.php:579 msgid "" "This option makes every posted picture accessible via the direct link. This " "is a workaround for the problem that most other networks can't handle " @@ -9926,352 +9974,352 @@ msgid "" "public on your photo albums though." msgstr "" -#: src/Module/Settings/Account.php:582 +#: src/Module/Settings/Account.php:580 msgid "Allow friends to post to your profile page?" msgstr "Permet als amics publicar en la seva pàgina de perfil?" -#: src/Module/Settings/Account.php:582 +#: src/Module/Settings/Account.php:580 msgid "" "Your contacts may write posts on your profile wall. These posts will be " "distributed to your contacts" msgstr "" -#: src/Module/Settings/Account.php:583 +#: src/Module/Settings/Account.php:581 msgid "Allow friends to tag your posts?" msgstr "Permet als amics d'etiquetar els teus missatges?" -#: src/Module/Settings/Account.php:583 +#: src/Module/Settings/Account.php:581 msgid "Your contacts can add additional tags to your posts." msgstr "" -#: src/Module/Settings/Account.php:584 +#: src/Module/Settings/Account.php:582 msgid "Default privacy circle for new contacts" msgstr "" -#: src/Module/Settings/Account.php:585 +#: src/Module/Settings/Account.php:583 msgid "Default privacy circle for new group contacts" msgstr "" -#: src/Module/Settings/Account.php:586 +#: src/Module/Settings/Account.php:584 msgid "Default Post Permissions" msgstr "Permisos de Correu per Defecte" -#: src/Module/Settings/Account.php:590 +#: src/Module/Settings/Account.php:588 msgid "Expiration settings" msgstr "" -#: src/Module/Settings/Account.php:591 +#: src/Module/Settings/Account.php:589 msgid "Automatically expire posts after this many days:" msgstr "Després de aquests nombre de dies, els missatges caduquen automàticament:" -#: src/Module/Settings/Account.php:591 +#: src/Module/Settings/Account.php:589 msgid "If empty, posts will not expire. Expired posts will be deleted" msgstr "Si està buit, els missatges no caducarà. Missatges caducats s'eliminaran" -#: src/Module/Settings/Account.php:592 +#: src/Module/Settings/Account.php:590 msgid "Expire posts" msgstr "" -#: src/Module/Settings/Account.php:592 +#: src/Module/Settings/Account.php:590 msgid "When activated, posts and comments will be expired." msgstr "" -#: src/Module/Settings/Account.php:593 +#: src/Module/Settings/Account.php:591 msgid "Expire personal notes" msgstr "" -#: src/Module/Settings/Account.php:593 +#: src/Module/Settings/Account.php:591 msgid "" "When activated, the personal notes on your profile page will be expired." msgstr "" -#: src/Module/Settings/Account.php:594 +#: src/Module/Settings/Account.php:592 msgid "Expire starred posts" msgstr "" -#: src/Module/Settings/Account.php:594 +#: src/Module/Settings/Account.php:592 msgid "" "Starring posts keeps them from being expired. That behaviour is overwritten " "by this setting." msgstr "" -#: src/Module/Settings/Account.php:595 +#: src/Module/Settings/Account.php:593 msgid "Only expire posts by others" msgstr "" -#: src/Module/Settings/Account.php:595 +#: src/Module/Settings/Account.php:593 msgid "" "When activated, your own posts never expire. Then the settings above are " "only valid for posts you received." msgstr "" -#: src/Module/Settings/Account.php:598 +#: src/Module/Settings/Account.php:596 msgid "Notification Settings" msgstr "Ajustos de Notificació" -#: src/Module/Settings/Account.php:599 +#: src/Module/Settings/Account.php:597 msgid "Send a notification email when:" msgstr "Envia un correu notificant quan:" -#: src/Module/Settings/Account.php:600 +#: src/Module/Settings/Account.php:598 msgid "You receive an introduction" msgstr "Has rebut una presentació" -#: src/Module/Settings/Account.php:601 +#: src/Module/Settings/Account.php:599 msgid "Your introductions are confirmed" msgstr "La teva presentació està confirmada" -#: src/Module/Settings/Account.php:602 +#: src/Module/Settings/Account.php:600 msgid "Someone writes on your profile wall" msgstr "Algú ha escrit en el teu mur de perfil" -#: src/Module/Settings/Account.php:603 +#: src/Module/Settings/Account.php:601 msgid "Someone writes a followup comment" msgstr "Algú ha escrit un comentari de seguiment" -#: src/Module/Settings/Account.php:604 +#: src/Module/Settings/Account.php:602 msgid "You receive a private message" msgstr "Has rebut un missatge privat" -#: src/Module/Settings/Account.php:605 +#: src/Module/Settings/Account.php:603 msgid "You receive a friend suggestion" msgstr "Has rebut una suggerencia d'un amic" -#: src/Module/Settings/Account.php:606 +#: src/Module/Settings/Account.php:604 msgid "You are tagged in a post" msgstr "Estàs etiquetat en un enviament" -#: src/Module/Settings/Account.php:608 +#: src/Module/Settings/Account.php:606 msgid "Create a desktop notification when:" msgstr "" -#: src/Module/Settings/Account.php:609 +#: src/Module/Settings/Account.php:607 msgid "Someone tagged you" msgstr "" -#: src/Module/Settings/Account.php:610 +#: src/Module/Settings/Account.php:608 msgid "Someone directly commented on your post" msgstr "" -#: src/Module/Settings/Account.php:611 +#: src/Module/Settings/Account.php:609 msgid "Someone liked your content" msgstr "" -#: src/Module/Settings/Account.php:611 src/Module/Settings/Account.php:612 +#: src/Module/Settings/Account.php:609 src/Module/Settings/Account.php:610 msgid "Can only be enabled, when the direct comment notification is enabled." msgstr "" -#: src/Module/Settings/Account.php:612 +#: src/Module/Settings/Account.php:610 msgid "Someone shared your content" msgstr "" -#: src/Module/Settings/Account.php:613 +#: src/Module/Settings/Account.php:611 msgid "Someone commented in your thread" msgstr "" -#: src/Module/Settings/Account.php:614 +#: src/Module/Settings/Account.php:612 msgid "Someone commented in a thread where you commented" msgstr "" -#: src/Module/Settings/Account.php:615 +#: src/Module/Settings/Account.php:613 msgid "Someone commented in a thread where you interacted" msgstr "" -#: src/Module/Settings/Account.php:617 +#: src/Module/Settings/Account.php:615 msgid "Activate desktop notifications" msgstr "Activa les notificacions a l'escriptori" -#: src/Module/Settings/Account.php:617 +#: src/Module/Settings/Account.php:615 msgid "Show desktop popup on new notifications" msgstr "Mostra la finestra emergent a les noves notificacions" -#: src/Module/Settings/Account.php:621 +#: src/Module/Settings/Account.php:619 msgid "Text-only notification emails" msgstr "Correu electrònic de notificació de només text" -#: src/Module/Settings/Account.php:623 +#: src/Module/Settings/Account.php:621 msgid "Send text only notification emails, without the html part" msgstr "Envieu només missatges de correu electrònic de notificació de text, sense la part html" -#: src/Module/Settings/Account.php:627 +#: src/Module/Settings/Account.php:625 msgid "Show detailled notifications" msgstr "Mostra les notificacions detallades" -#: src/Module/Settings/Account.php:629 +#: src/Module/Settings/Account.php:627 msgid "" "Per default, notifications are condensed to a single notification per item. " "When enabled every notification is displayed." msgstr "Per defecte, les notificacions es condensen a una única notificació per element. Quan està activada, es mostra tota notificació." -#: src/Module/Settings/Account.php:633 +#: src/Module/Settings/Account.php:631 msgid "Show notifications of ignored contacts" msgstr "" -#: src/Module/Settings/Account.php:635 +#: src/Module/Settings/Account.php:633 msgid "" "You don't see posts from ignored contacts. But you still see their comments." " This setting controls if you want to still receive regular notifications " "that are caused by ignored contacts or not." msgstr "" -#: src/Module/Settings/Account.php:638 +#: src/Module/Settings/Account.php:636 msgid "Advanced Account/Page Type Settings" msgstr "Ajustos Avançats de Compte/ Pàgina" -#: src/Module/Settings/Account.php:639 +#: src/Module/Settings/Account.php:637 msgid "Change the behaviour of this account for special situations" msgstr "Canviar el comportament d'aquest compte en situacions especials" -#: src/Module/Settings/Account.php:642 +#: src/Module/Settings/Account.php:640 msgid "Import Contacts" msgstr "" -#: src/Module/Settings/Account.php:643 +#: src/Module/Settings/Account.php:641 msgid "" "Upload a CSV file that contains the handle of your followed accounts in the " "first column you exported from the old account." msgstr "" -#: src/Module/Settings/Account.php:644 +#: src/Module/Settings/Account.php:642 msgid "Upload File" msgstr "" -#: src/Module/Settings/Account.php:647 +#: src/Module/Settings/Account.php:645 msgid "Relocate" msgstr "traslladar-se" -#: src/Module/Settings/Account.php:648 +#: src/Module/Settings/Account.php:646 msgid "" "If you have moved this profile from another server, and some of your " "contacts don't receive your updates, try pushing this button." msgstr "Si heu mogut aquest perfil d'un altre servidor i alguns dels vostres contactes no reben les vostres actualitzacions, proveu de prémer aquest botó." -#: src/Module/Settings/Account.php:649 +#: src/Module/Settings/Account.php:647 msgid "Resend relocate message to contacts" msgstr "Torneu a enviar el missatge a contactes" -#: src/Module/Settings/Addons.php:86 +#: src/Module/Settings/Addons.php:72 msgid "Addon Settings" msgstr "" -#: src/Module/Settings/Addons.php:87 +#: src/Module/Settings/Addons.php:73 msgid "No Addon settings configured" msgstr "" -#: src/Module/Settings/Channels.php:142 +#: src/Module/Settings/Channels.php:134 msgid "" "This page can be used to define the channels that will automatically be " "reshared by your account." msgstr "" -#: src/Module/Settings/Channels.php:147 +#: src/Module/Settings/Channels.php:139 msgid "This page can be used to define your own channels." msgstr "" -#: src/Module/Settings/Channels.php:176 +#: src/Module/Settings/Channels.php:168 msgid "Publish" msgstr "" -#: src/Module/Settings/Channels.php:176 +#: src/Module/Settings/Channels.php:168 msgid "" "When selected, the channel results are reshared. This only works for public " "ActivityPub posts from the public timeline or the user defined circles." msgstr "" -#: src/Module/Settings/Channels.php:184 src/Module/Settings/Channels.php:205 -#: src/Module/Settings/Display.php:342 +#: src/Module/Settings/Channels.php:176 src/Module/Settings/Channels.php:197 +#: src/Module/Settings/Display.php:324 msgid "Label" msgstr "" -#: src/Module/Settings/Channels.php:185 src/Module/Settings/Channels.php:206 -#: src/Module/Settings/Display.php:343 -#: src/Module/Settings/TwoFactor/AppSpecific.php:137 +#: src/Module/Settings/Channels.php:177 src/Module/Settings/Channels.php:198 +#: src/Module/Settings/Display.php:325 +#: src/Module/Settings/TwoFactor/AppSpecific.php:123 msgid "Description" msgstr "Descripció" -#: src/Module/Settings/Channels.php:186 src/Module/Settings/Channels.php:207 +#: src/Module/Settings/Channels.php:178 src/Module/Settings/Channels.php:199 msgid "Access Key" msgstr "" -#: src/Module/Settings/Channels.php:187 src/Module/Settings/Channels.php:208 +#: src/Module/Settings/Channels.php:179 src/Module/Settings/Channels.php:200 msgid "Circle/Channel" msgstr "" -#: src/Module/Settings/Channels.php:188 src/Module/Settings/Channels.php:209 +#: src/Module/Settings/Channels.php:180 src/Module/Settings/Channels.php:201 msgid "Include Tags" msgstr "" -#: src/Module/Settings/Channels.php:189 src/Module/Settings/Channels.php:210 +#: src/Module/Settings/Channels.php:181 src/Module/Settings/Channels.php:202 msgid "Exclude Tags" msgstr "" -#: src/Module/Settings/Channels.php:190 src/Module/Settings/Channels.php:211 +#: src/Module/Settings/Channels.php:182 src/Module/Settings/Channels.php:203 msgid "Minimum Size" msgstr "" -#: src/Module/Settings/Channels.php:191 src/Module/Settings/Channels.php:212 +#: src/Module/Settings/Channels.php:183 src/Module/Settings/Channels.php:204 msgid "Maximum Size" msgstr "" -#: src/Module/Settings/Channels.php:192 src/Module/Settings/Channels.php:213 +#: src/Module/Settings/Channels.php:184 src/Module/Settings/Channels.php:205 msgid "Full Text Search" msgstr "" -#: src/Module/Settings/Channels.php:196 src/Module/Settings/Channels.php:217 +#: src/Module/Settings/Channels.php:188 src/Module/Settings/Channels.php:209 msgid "Select all languages that you want to see in this channel." msgstr "" -#: src/Module/Settings/Channels.php:198 +#: src/Module/Settings/Channels.php:190 msgid "Delete channel" msgstr "" -#: src/Module/Settings/Channels.php:198 +#: src/Module/Settings/Channels.php:190 msgid "Check to delete this entry from the channel list" msgstr "" -#: src/Module/Settings/Channels.php:205 +#: src/Module/Settings/Channels.php:197 msgid "Short name for the channel. It is displayed on the channels widget." msgstr "" -#: src/Module/Settings/Channels.php:206 +#: src/Module/Settings/Channels.php:198 msgid "This should describe the content of the channel in a few word." msgstr "" -#: src/Module/Settings/Channels.php:207 +#: src/Module/Settings/Channels.php:199 msgid "" "When you want to access this channel via an access key, you can define it " "here. Pay attention to not use an already used one." msgstr "" -#: src/Module/Settings/Channels.php:208 +#: src/Module/Settings/Channels.php:200 msgid "Select a circle or channel, that your channel should be based on." msgstr "" -#: src/Module/Settings/Channels.php:209 +#: src/Module/Settings/Channels.php:201 msgid "" "Comma separated list of tags. A post will be used when it contains any of " "the listed tags." msgstr "" -#: src/Module/Settings/Channels.php:210 +#: src/Module/Settings/Channels.php:202 msgid "" "Comma separated list of tags. If a post contain any of these tags, then it " "will not be part of nthis channel." msgstr "" -#: src/Module/Settings/Channels.php:211 +#: src/Module/Settings/Channels.php:203 msgid "" "Minimum post size. Leave empty for no minimum size. The size is calculated " "without links, attached posts, mentions or hashtags." msgstr "" -#: src/Module/Settings/Channels.php:212 +#: src/Module/Settings/Channels.php:204 msgid "" "Maximum post size. Leave empty for no maximum size. The size is calculated " "without links, attached posts, mentions or hashtags." msgstr "" -#: src/Module/Settings/Channels.php:213 +#: src/Module/Settings/Channels.php:205 #, php-format msgid "" "Search terms for the body, supports the \"boolean mode\" operators from " @@ -10279,586 +10327,589 @@ msgid "" "keywords: %s" msgstr "" -#: src/Module/Settings/Channels.php:214 +#: src/Module/Settings/Channels.php:206 msgid "Check to display images in the channel." msgstr "" -#: src/Module/Settings/Channels.php:215 +#: src/Module/Settings/Channels.php:207 msgid "Check to display videos in the channel." msgstr "" -#: src/Module/Settings/Channels.php:216 +#: src/Module/Settings/Channels.php:208 msgid "Check to display audio in the channel." msgstr "" -#: src/Module/Settings/Channels.php:221 +#: src/Module/Settings/Channels.php:213 msgid "Add new entry to the channel list" msgstr "" -#: src/Module/Settings/Channels.php:222 +#: src/Module/Settings/Channels.php:214 msgid "Add" msgstr "Afegir" -#: src/Module/Settings/Channels.php:224 +#: src/Module/Settings/Channels.php:216 msgid "Current Entries in the channel list" msgstr "" -#: src/Module/Settings/Channels.php:227 +#: src/Module/Settings/Channels.php:219 msgid "Delete entry from the channel list" msgstr "" -#: src/Module/Settings/Channels.php:228 +#: src/Module/Settings/Channels.php:220 msgid "Delete entry from the channel list?" msgstr "" -#: src/Module/Settings/Connectors.php:120 +#: src/Module/Settings/Connectors.php:108 msgid "Failed to connect with email account using the settings provided." msgstr "Connexió fracassada amb el compte de correu emprant la configuració proveïda." -#: src/Module/Settings/Connectors.php:166 -#: src/Module/Settings/Connectors.php:167 +#: src/Module/Settings/Connectors.php:155 +#: src/Module/Settings/Connectors.php:156 msgid "Diaspora (Socialhome, Hubzilla)" msgstr "" -#: src/Module/Settings/Connectors.php:166 -#: src/Module/Settings/Connectors.php:170 +#: src/Module/Settings/Connectors.php:155 #, php-format msgid "Built-in support for %s connectivity is enabled" msgstr "" -#: src/Module/Settings/Connectors.php:167 -#: src/Module/Settings/Connectors.php:169 +#: src/Module/Settings/Connectors.php:156 #, php-format msgid "Built-in support for %s connectivity is disabled" msgstr "" -#: src/Module/Settings/Connectors.php:169 -#: src/Module/Settings/Connectors.php:170 -msgid "OStatus (GNU Social)" -msgstr "" - -#: src/Module/Settings/Connectors.php:182 +#: src/Module/Settings/Connectors.php:167 msgid "Email access is disabled on this site." msgstr "L'accés al correu està deshabilitat en aquest lloc." -#: src/Module/Settings/Connectors.php:197 -#: src/Module/Settings/Connectors.php:244 +#: src/Module/Settings/Connectors.php:182 +#: src/Module/Settings/Connectors.php:233 msgid "None" msgstr "Cap" -#: src/Module/Settings/Connectors.php:209 +#: src/Module/Settings/Connectors.php:186 +msgid "Default (Mastodon will display the title and a link to the post)" +msgstr "" + +#: src/Module/Settings/Connectors.php:187 +msgid "" +"Use the summary (Mastodon and some others will treat it as content warning)" +msgstr "" + +#: src/Module/Settings/Connectors.php:188 +msgid "Embed the title in the body" +msgstr "" + +#: src/Module/Settings/Connectors.php:199 msgid "General Social Media Settings" msgstr "Configuració general de les xarxes socials" -#: src/Module/Settings/Connectors.php:212 +#: src/Module/Settings/Connectors.php:202 msgid "Followed content scope" msgstr "" -#: src/Module/Settings/Connectors.php:214 +#: src/Module/Settings/Connectors.php:204 msgid "" "By default, conversations in which your follows participated but didn't " "start will be shown in your timeline. You can turn this behavior off, or " "expand it to the conversations in which your follows liked a post." msgstr "" -#: src/Module/Settings/Connectors.php:216 +#: src/Module/Settings/Connectors.php:206 msgid "Only conversations my follows started" msgstr "" -#: src/Module/Settings/Connectors.php:217 +#: src/Module/Settings/Connectors.php:207 msgid "Conversations my follows started or commented on (default)" msgstr "" -#: src/Module/Settings/Connectors.php:218 +#: src/Module/Settings/Connectors.php:208 msgid "Any conversation my follows interacted with, including likes" msgstr "" -#: src/Module/Settings/Connectors.php:221 -msgid "Enable Content Warning" +#: src/Module/Settings/Connectors.php:211 +msgid "Collapse sensitive posts" msgstr "" -#: src/Module/Settings/Connectors.php:221 +#: src/Module/Settings/Connectors.php:211 msgid "" -"Users on networks like Mastodon or Pleroma are able to set a content warning" -" field which collapse their post by default. This enables the automatic " -"collapsing instead of setting the content warning as the post title. Doesn't" -" affect any other content filtering you eventually set up." +"If a post is marked as \"sensitive\", it will be displayed in a collapsed " +"state, if this option is enabled." msgstr "" -#: src/Module/Settings/Connectors.php:222 +#: src/Module/Settings/Connectors.php:212 msgid "Enable intelligent shortening" msgstr "" -#: src/Module/Settings/Connectors.php:222 +#: src/Module/Settings/Connectors.php:212 msgid "" "Normally the system tries to find the best link to add to shortened posts. " "If disabled, every shortened post will always point to the original " "friendica post." msgstr "" -#: src/Module/Settings/Connectors.php:223 +#: src/Module/Settings/Connectors.php:213 msgid "Enable simple text shortening" msgstr "" -#: src/Module/Settings/Connectors.php:223 +#: src/Module/Settings/Connectors.php:213 msgid "" "Normally the system shortens posts at the next line feed. If this option is " "enabled then the system will shorten the text at the maximum character " "limit." msgstr "" -#: src/Module/Settings/Connectors.php:224 +#: src/Module/Settings/Connectors.php:214 msgid "Attach the link title" msgstr "" -#: src/Module/Settings/Connectors.php:224 +#: src/Module/Settings/Connectors.php:214 msgid "" "When activated, the title of the attached link will be added as a title on " "posts to Diaspora. This is mostly helpful with \"remote-self\" contacts that" " share feed content." msgstr "" -#: src/Module/Settings/Connectors.php:225 +#: src/Module/Settings/Connectors.php:215 msgid "API: Use spoiler field as title" msgstr "" -#: src/Module/Settings/Connectors.php:225 +#: src/Module/Settings/Connectors.php:215 msgid "" "When activated, the \"spoiler_text\" field in the API will be used for the " "title on standalone posts. When deactivated it will be used for spoiler " "text. For comments it will always be used for spoiler text." msgstr "" -#: src/Module/Settings/Connectors.php:226 +#: src/Module/Settings/Connectors.php:216 msgid "API: Automatically links at the end of the post as attached posts" msgstr "" -#: src/Module/Settings/Connectors.php:226 +#: src/Module/Settings/Connectors.php:216 msgid "" "When activated, added links at the end of the post react the same way as " "added links in the web interface." msgstr "" -#: src/Module/Settings/Connectors.php:227 +#: src/Module/Settings/Connectors.php:217 +msgid "Article Mode" +msgstr "" + +#: src/Module/Settings/Connectors.php:217 +msgid "" +"Controls how posts with titles are transmitted. Mastodon and its forks don't" +" display the content of these posts if the post is created in the correct " +"(default) way." +msgstr "" + +#: src/Module/Settings/Connectors.php:218 msgid "Your legacy ActivityPub/GNU Social account" msgstr "" -#: src/Module/Settings/Connectors.php:227 +#: src/Module/Settings/Connectors.php:218 msgid "" "If you enter your old account name from an ActivityPub based system or your " "GNU Social/Statusnet account name here (in the format user@domain.tld), your" " contacts will be added automatically. The field will be emptied when done." msgstr "" -#: src/Module/Settings/Connectors.php:229 -msgid "Repair OStatus subscriptions" -msgstr "Repara les subscripcions a OStatus" - -#: src/Module/Settings/Connectors.php:233 +#: src/Module/Settings/Connectors.php:222 msgid "Email/Mailbox Setup" msgstr "Preparació de Correu/Bústia" -#: src/Module/Settings/Connectors.php:234 +#: src/Module/Settings/Connectors.php:223 msgid "" "If you wish to communicate with email contacts using this service " "(optional), please specify how to connect to your mailbox." msgstr "Si vol comunicar-se amb els contactes de correu emprant aquest servei (opcional), Si us plau, especifiqui com connectar amb la seva bústia." -#: src/Module/Settings/Connectors.php:235 +#: src/Module/Settings/Connectors.php:224 msgid "Last successful email check:" msgstr "Última comprovació de correu amb èxit:" -#: src/Module/Settings/Connectors.php:237 +#: src/Module/Settings/Connectors.php:226 msgid "IMAP server name:" msgstr "Nom del servidor IMAP:" -#: src/Module/Settings/Connectors.php:238 +#: src/Module/Settings/Connectors.php:227 msgid "IMAP port:" msgstr "Port IMAP:" -#: src/Module/Settings/Connectors.php:239 +#: src/Module/Settings/Connectors.php:228 msgid "Security:" msgstr "Seguretat:" -#: src/Module/Settings/Connectors.php:240 +#: src/Module/Settings/Connectors.php:229 msgid "Email login name:" msgstr "Nom d'usuari del correu" -#: src/Module/Settings/Connectors.php:241 +#: src/Module/Settings/Connectors.php:230 msgid "Email password:" msgstr "Contrasenya del correu:" -#: src/Module/Settings/Connectors.php:242 +#: src/Module/Settings/Connectors.php:231 msgid "Reply-to address:" msgstr "Adreça de resposta:" -#: src/Module/Settings/Connectors.php:243 +#: src/Module/Settings/Connectors.php:232 msgid "Send public posts to all email contacts:" msgstr "Enviar correu públic a tots els contactes del correu:" -#: src/Module/Settings/Connectors.php:244 +#: src/Module/Settings/Connectors.php:233 msgid "Action after import:" msgstr "Acció després d'importar:" -#: src/Module/Settings/Connectors.php:244 +#: src/Module/Settings/Connectors.php:233 msgid "Move to folder" msgstr "Moure a la carpeta" -#: src/Module/Settings/Connectors.php:245 +#: src/Module/Settings/Connectors.php:234 msgid "Move to folder:" msgstr "Moure a la carpeta:" -#: src/Module/Settings/Delegation.php:73 +#: src/Module/Settings/Delegation.php:59 msgid "Delegation successfully granted." msgstr "" -#: src/Module/Settings/Delegation.php:75 +#: src/Module/Settings/Delegation.php:61 msgid "Parent user not found, unavailable or password doesn't match." msgstr "" -#: src/Module/Settings/Delegation.php:79 +#: src/Module/Settings/Delegation.php:65 msgid "Delegation successfully revoked." msgstr "" -#: src/Module/Settings/Delegation.php:98 -#: src/Module/Settings/Delegation.php:120 +#: src/Module/Settings/Delegation.php:84 +#: src/Module/Settings/Delegation.php:106 msgid "" "Delegated administrators can view but not change delegation permissions." msgstr "" -#: src/Module/Settings/Delegation.php:112 +#: src/Module/Settings/Delegation.php:98 msgid "Delegate user not found." msgstr "" -#: src/Module/Settings/Delegation.php:169 +#: src/Module/Settings/Delegation.php:155 msgid "No parent user" msgstr "Cap usuari principal" -#: src/Module/Settings/Delegation.php:180 -#: src/Module/Settings/Delegation.php:191 +#: src/Module/Settings/Delegation.php:166 +#: src/Module/Settings/Delegation.php:177 msgid "Parent User" msgstr "Usuari Principal" -#: src/Module/Settings/Delegation.php:188 +#: src/Module/Settings/Delegation.php:174 msgid "Additional Accounts" msgstr "" -#: src/Module/Settings/Delegation.php:189 +#: src/Module/Settings/Delegation.php:175 msgid "" "Register additional accounts that are automatically connected to your " "existing account so you can manage them from this account." msgstr "" -#: src/Module/Settings/Delegation.php:190 +#: src/Module/Settings/Delegation.php:176 msgid "Register an additional account" msgstr "" -#: src/Module/Settings/Delegation.php:192 +#: src/Module/Settings/Delegation.php:178 msgid "" "Parent users have total control about this account, including the account " "settings. Please double check whom you give this access." msgstr "Els usuaris principals tenen un control total sobre aquest compte, inclosa la configuració del compte. Si us plau, comprova a qui dóna aquest accés." -#: src/Module/Settings/Delegation.php:195 +#: src/Module/Settings/Delegation.php:181 msgid "Delegates" msgstr "delegada" -#: src/Module/Settings/Delegation.php:196 +#: src/Module/Settings/Delegation.php:182 msgid "" "Delegates are able to manage all aspects of this account/page except for " "basic account settings. Please do not delegate your personal account to " "anybody that you do not trust completely." msgstr "Els delegats poden gestionar tots els aspectes d'aquest compte/pàgina, excepte per als ajustaments bàsics del compte. Si us plau, no deleguin el seu compte personal a ningú que no confiïn completament." -#: src/Module/Settings/Delegation.php:197 +#: src/Module/Settings/Delegation.php:183 msgid "Existing Page Delegates" msgstr "Actuals Delegats de Pàgina" -#: src/Module/Settings/Delegation.php:198 +#: src/Module/Settings/Delegation.php:184 msgid "Potential Delegates" msgstr "Delegats Potencials" -#: src/Module/Settings/Delegation.php:199 +#: src/Module/Settings/Delegation.php:185 msgid "No entries." msgstr "Sense entrades" -#: src/Module/Settings/Display.php:185 +#: src/Module/Settings/Display.php:169 msgid "The theme you chose isn't available." msgstr "" -#: src/Module/Settings/Display.php:225 +#: src/Module/Settings/Display.php:209 #, php-format msgid "%s - (Unsupported)" msgstr "%s - (No és compatible)" -#: src/Module/Settings/Display.php:263 +#: src/Module/Settings/Display.php:246 msgid "No preview" msgstr "" -#: src/Module/Settings/Display.php:264 +#: src/Module/Settings/Display.php:247 msgid "No image" msgstr "" -#: src/Module/Settings/Display.php:265 +#: src/Module/Settings/Display.php:248 msgid "Small Image" msgstr "" -#: src/Module/Settings/Display.php:266 +#: src/Module/Settings/Display.php:249 msgid "Large Image" msgstr "" -#: src/Module/Settings/Display.php:311 +#: src/Module/Settings/Display.php:294 msgid "Display Settings" msgstr "Ajustos de Pantalla" -#: src/Module/Settings/Display.php:313 +#: src/Module/Settings/Display.php:296 msgid "General Theme Settings" msgstr "" -#: src/Module/Settings/Display.php:314 +#: src/Module/Settings/Display.php:297 msgid "Custom Theme Settings" msgstr "" -#: src/Module/Settings/Display.php:315 +#: src/Module/Settings/Display.php:298 msgid "Content Settings" msgstr "" -#: 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 +#: src/Module/Settings/Display.php:299 view/theme/duepuntozero/config.php:74 +#: view/theme/frio/config.php:139 view/theme/quattro/config.php:76 +#: view/theme/vier/config.php:124 msgid "Theme settings" msgstr "Configuració de Temes" -#: src/Module/Settings/Display.php:317 +#: src/Module/Settings/Display.php:300 msgid "Timelines" msgstr "" -#: src/Module/Settings/Display.php:324 +#: src/Module/Settings/Display.php:307 msgid "Display Theme:" msgstr "Visualitzar el Tema:" -#: src/Module/Settings/Display.php:325 +#: src/Module/Settings/Display.php:308 msgid "Mobile Theme:" msgstr "Tema Mobile:" -#: src/Module/Settings/Display.php:328 +#: src/Module/Settings/Display.php:311 msgid "Number of items to display per page:" msgstr "Número d'elements a mostrar per pàgina" -#: src/Module/Settings/Display.php:328 src/Module/Settings/Display.php:329 +#: src/Module/Settings/Display.php:311 src/Module/Settings/Display.php:312 msgid "Maximum of 100 items" msgstr "Màxim de 100 elements" -#: src/Module/Settings/Display.php:329 +#: src/Module/Settings/Display.php:312 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:330 +#: src/Module/Settings/Display.php:313 msgid "Update browser every xx seconds" msgstr "Actualitzar navegador cada xx segons" -#: src/Module/Settings/Display.php:330 +#: src/Module/Settings/Display.php:313 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:331 +#: src/Module/Settings/Display.php:314 msgid "Display emoticons" msgstr "" -#: src/Module/Settings/Display.php:331 +#: src/Module/Settings/Display.php:314 msgid "When enabled, emoticons are replaced with matching symbols." msgstr "" -#: src/Module/Settings/Display.php:332 +#: src/Module/Settings/Display.php:315 msgid "Infinite scroll" msgstr "" -#: src/Module/Settings/Display.php:332 +#: src/Module/Settings/Display.php:315 msgid "Automatic fetch new items when reaching the page end." msgstr "" -#: src/Module/Settings/Display.php:333 +#: src/Module/Settings/Display.php:316 msgid "Enable Smart Threading" msgstr "" -#: src/Module/Settings/Display.php:333 +#: src/Module/Settings/Display.php:316 msgid "Enable the automatic suppression of extraneous thread indentation." msgstr "" -#: src/Module/Settings/Display.php:334 +#: src/Module/Settings/Display.php:317 msgid "Display the Dislike feature" msgstr "" -#: src/Module/Settings/Display.php:334 +#: src/Module/Settings/Display.php:317 msgid "" "Display the Dislike button and dislike reactions on posts and comments." msgstr "" -#: src/Module/Settings/Display.php:335 +#: src/Module/Settings/Display.php:318 msgid "Display the resharer" msgstr "" -#: src/Module/Settings/Display.php:335 +#: src/Module/Settings/Display.php:318 msgid "Display the first resharer as icon and text on a reshared item." msgstr "" -#: src/Module/Settings/Display.php: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 +#: src/Module/Settings/Display.php:319 msgid "Stay local" msgstr "" -#: src/Module/Settings/Display.php:337 +#: src/Module/Settings/Display.php:319 msgid "Don't go to a remote system when following a contact link." msgstr "" -#: src/Module/Settings/Display.php:338 +#: src/Module/Settings/Display.php:320 msgid "Show the post deletion checkbox" msgstr "" -#: src/Module/Settings/Display.php:338 +#: src/Module/Settings/Display.php:320 msgid "Display the checkbox for the post deletion on the network page." msgstr "" -#: src/Module/Settings/Display.php:339 +#: src/Module/Settings/Display.php:321 msgid "DIsplay the event list" msgstr "" -#: src/Module/Settings/Display.php:339 +#: src/Module/Settings/Display.php:321 msgid "Display the birthday reminder and event list on the network page." msgstr "" -#: src/Module/Settings/Display.php:340 +#: src/Module/Settings/Display.php:322 msgid "Link preview mode" msgstr "" -#: src/Module/Settings/Display.php:340 +#: src/Module/Settings/Display.php:322 msgid "Appearance of the link preview that is added to each post with a link." msgstr "" -#: src/Module/Settings/Display.php:345 +#: src/Module/Settings/Display.php:327 msgid "Bookmark" msgstr "" -#: src/Module/Settings/Display.php:347 +#: src/Module/Settings/Display.php:329 msgid "" "Enable timelines that you want to see in the channels widget. Bookmark " "timelines that you want to see in the top menu." msgstr "" -#: src/Module/Settings/Display.php:349 +#: src/Module/Settings/Display.php:331 msgid "Channel languages:" msgstr "" -#: src/Module/Settings/Display.php:349 +#: src/Module/Settings/Display.php:331 msgid "Select all languages that you want to see in your channels." msgstr "" -#: src/Module/Settings/Display.php:351 +#: src/Module/Settings/Display.php:333 msgid "Beginning of week:" msgstr "" -#: src/Module/Settings/Display.php:352 +#: src/Module/Settings/Display.php:334 msgid "Default calendar view:" msgstr "" -#: src/Module/Settings/Features.php:74 +#: src/Module/Settings/Features.php:59 msgid "Additional Features" msgstr "Característiques Adicionals" -#: src/Module/Settings/OAuth.php:71 +#: src/Module/Settings/OAuth.php:57 msgid "Connected Apps" msgstr "Aplicacions conectades" -#: src/Module/Settings/OAuth.php:75 +#: src/Module/Settings/OAuth.php:61 msgid "Remove authorization" msgstr "retirar l'autorització" -#: src/Module/Settings/Profile/Index.php:116 +#: src/Module/Settings/Profile/Index.php:102 msgid "Display Name is required." msgstr "" -#: src/Module/Settings/Profile/Index.php:167 +#: src/Module/Settings/Profile/Index.php:156 msgid "Profile couldn't be updated." msgstr "" -#: src/Module/Settings/Profile/Index.php:205 -#: src/Module/Settings/Profile/Index.php:226 +#: src/Module/Settings/Profile/Index.php:196 +#: src/Module/Settings/Profile/Index.php:217 msgid "Label:" msgstr "" -#: src/Module/Settings/Profile/Index.php:206 -#: src/Module/Settings/Profile/Index.php:227 +#: src/Module/Settings/Profile/Index.php:197 +#: src/Module/Settings/Profile/Index.php:218 msgid "Value:" msgstr "" -#: src/Module/Settings/Profile/Index.php:217 -#: src/Module/Settings/Profile/Index.php:238 +#: src/Module/Settings/Profile/Index.php:208 +#: src/Module/Settings/Profile/Index.php:229 msgid "Field Permissions" msgstr "" -#: src/Module/Settings/Profile/Index.php:218 -#: src/Module/Settings/Profile/Index.php:239 +#: src/Module/Settings/Profile/Index.php:209 +#: src/Module/Settings/Profile/Index.php:230 msgid "(click to open/close)" msgstr "(clicar per a obrir/tancar)" -#: src/Module/Settings/Profile/Index.php:224 +#: src/Module/Settings/Profile/Index.php:215 msgid "Add a new profile field" msgstr "" -#: src/Module/Settings/Profile/Index.php:247 +#: src/Module/Settings/Profile/Index.php:238 msgid "" "The homepage is verified. A rel=\"me\" link back to your Friendica profile " "page was found on the homepage." msgstr "" -#: src/Module/Settings/Profile/Index.php:249 +#: src/Module/Settings/Profile/Index.php:240 #, php-format msgid "" "To verify your homepage, add a rel=\"me\" link to it, pointing to your " "profile URL (%s)." msgstr "" -#: src/Module/Settings/Profile/Index.php:255 +#: src/Module/Settings/Profile/Index.php:246 msgid "Profile Actions" msgstr "" -#: src/Module/Settings/Profile/Index.php:256 +#: src/Module/Settings/Profile/Index.php:247 msgid "Edit Profile Details" msgstr "Editor de Detalls del Perfil" -#: src/Module/Settings/Profile/Index.php:258 +#: src/Module/Settings/Profile/Index.php:249 msgid "Change Profile Photo" msgstr "Canviar la Foto del Perfil" -#: src/Module/Settings/Profile/Index.php:261 +#: src/Module/Settings/Profile/Index.php:252 msgid "Profile picture" msgstr "" -#: src/Module/Settings/Profile/Index.php:262 +#: src/Module/Settings/Profile/Index.php:253 msgid "Location" msgstr "Ubicació" -#: src/Module/Settings/Profile/Index.php:263 src/Util/Temporal.php:97 -#: src/Util/Temporal.php:99 +#: src/Module/Settings/Profile/Index.php:254 src/Util/Temporal.php:83 +#: src/Util/Temporal.php:85 msgid "Miscellaneous" msgstr "Miscel·lania" -#: src/Module/Settings/Profile/Index.php:264 +#: src/Module/Settings/Profile/Index.php:255 msgid "Custom Profile Fields" msgstr "" -#: src/Module/Settings/Profile/Index.php:265 src/Module/Welcome.php:58 +#: src/Module/Settings/Profile/Index.php:256 src/Module/Welcome.php:44 msgid "Upload Profile Photo" msgstr "Pujar Foto del Perfil" -#: src/Module/Settings/Profile/Index.php:266 +#: src/Module/Settings/Profile/Index.php:257 #, php-format msgid "" "

Custom fields appear on your profile page.

\n" @@ -10868,396 +10919,396 @@ msgid "" "\t\t\t\t

Non-public fields can only be seen by the selected Friendica contacts or the Friendica contacts in the selected circles.

" msgstr "" -#: src/Module/Settings/Profile/Index.php:286 +#: src/Module/Settings/Profile/Index.php:277 msgid "Street Address:" msgstr "Direcció:" -#: src/Module/Settings/Profile/Index.php:287 +#: src/Module/Settings/Profile/Index.php:278 msgid "Locality/City:" msgstr "Localitat/Ciutat:" -#: src/Module/Settings/Profile/Index.php:288 +#: src/Module/Settings/Profile/Index.php:279 msgid "Region/State:" msgstr "Regió/Estat:" -#: src/Module/Settings/Profile/Index.php:289 +#: src/Module/Settings/Profile/Index.php:280 msgid "Postal/Zip Code:" msgstr "Codi Postal:" -#: src/Module/Settings/Profile/Index.php:290 +#: src/Module/Settings/Profile/Index.php:281 msgid "Country:" msgstr "País" -#: src/Module/Settings/Profile/Index.php:292 +#: src/Module/Settings/Profile/Index.php:283 msgid "XMPP (Jabber) address:" msgstr "" -#: src/Module/Settings/Profile/Index.php:292 +#: src/Module/Settings/Profile/Index.php:283 msgid "" "The XMPP address will be published so that people can follow you there." msgstr "" -#: src/Module/Settings/Profile/Index.php:293 +#: src/Module/Settings/Profile/Index.php:284 msgid "Matrix (Element) address:" msgstr "" -#: src/Module/Settings/Profile/Index.php:293 +#: src/Module/Settings/Profile/Index.php:284 msgid "" "The Matrix address will be published so that people can follow you there." msgstr "" -#: src/Module/Settings/Profile/Index.php:294 +#: src/Module/Settings/Profile/Index.php:285 msgid "Homepage URL:" msgstr "Pàgina web URL:" -#: src/Module/Settings/Profile/Index.php:295 +#: src/Module/Settings/Profile/Index.php:286 msgid "Public Keywords:" msgstr "Paraules Clau Públiques" -#: src/Module/Settings/Profile/Index.php:295 +#: src/Module/Settings/Profile/Index.php:286 msgid "(Used for suggesting potential friends, can be seen by others)" msgstr "(Emprat per suggerir potencials amics, Altres poden veure-ho)" -#: src/Module/Settings/Profile/Index.php:296 +#: src/Module/Settings/Profile/Index.php:287 msgid "Private Keywords:" msgstr "Paraules Clau Privades:" -#: src/Module/Settings/Profile/Index.php:296 +#: src/Module/Settings/Profile/Index.php:287 msgid "(Used for searching profiles, never shown to others)" 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:100 +#: src/Module/Settings/Profile/Photo/Crop.php:93 +#: src/Module/Settings/Profile/Photo/Crop.php:111 +#: src/Module/Settings/Profile/Photo/Crop.php:129 +#: src/Module/Settings/Profile/Photo/Index.php:86 #, php-format msgid "Image size reduction [%s] failed." msgstr "La reducció de la imatge [%s] va fracassar." -#: src/Module/Settings/Profile/Photo/Crop.php:150 +#: src/Module/Settings/Profile/Photo/Crop.php:136 msgid "" "Shift-reload the page or clear browser cache if the new photo does not " "display immediately." msgstr "Recarregui la pàgina o netegi la caché del navegador si la nova foto no apareix immediatament." -#: src/Module/Settings/Profile/Photo/Crop.php:155 +#: src/Module/Settings/Profile/Photo/Crop.php:141 msgid "Unable to process image" msgstr "No es pot processar la imatge" -#: src/Module/Settings/Profile/Photo/Crop.php:174 +#: src/Module/Settings/Profile/Photo/Crop.php:160 msgid "Photo not found." msgstr "" -#: src/Module/Settings/Profile/Photo/Crop.php:196 +#: src/Module/Settings/Profile/Photo/Crop.php:182 msgid "Profile picture successfully updated." msgstr "" -#: src/Module/Settings/Profile/Photo/Crop.php:222 -#: src/Module/Settings/Profile/Photo/Crop.php:226 +#: src/Module/Settings/Profile/Photo/Crop.php:208 +#: src/Module/Settings/Profile/Photo/Crop.php:212 msgid "Crop Image" msgstr "retallar imatge" -#: src/Module/Settings/Profile/Photo/Crop.php:223 +#: src/Module/Settings/Profile/Photo/Crop.php:209 msgid "Please adjust the image cropping for optimum viewing." msgstr "Per favor, ajusta la retallada d'imatge per a una optima visualització." -#: src/Module/Settings/Profile/Photo/Crop.php:225 +#: src/Module/Settings/Profile/Photo/Crop.php:211 msgid "Use Image As Is" msgstr "" -#: src/Module/Settings/Profile/Photo/Index.php:46 +#: src/Module/Settings/Profile/Photo/Index.php:32 msgid "Missing uploaded image." msgstr "" -#: src/Module/Settings/Profile/Photo/Index.php:123 +#: src/Module/Settings/Profile/Photo/Index.php:109 msgid "Profile Picture Settings" msgstr "" -#: src/Module/Settings/Profile/Photo/Index.php:124 +#: src/Module/Settings/Profile/Photo/Index.php:110 msgid "Current Profile Picture" msgstr "" -#: src/Module/Settings/Profile/Photo/Index.php:125 +#: src/Module/Settings/Profile/Photo/Index.php:111 msgid "Upload Profile Picture" msgstr "" -#: src/Module/Settings/Profile/Photo/Index.php:126 +#: src/Module/Settings/Profile/Photo/Index.php:112 msgid "Upload Picture:" msgstr "" -#: src/Module/Settings/Profile/Photo/Index.php:131 +#: src/Module/Settings/Profile/Photo/Index.php:117 msgid "or" msgstr "o" -#: src/Module/Settings/Profile/Photo/Index.php:133 +#: src/Module/Settings/Profile/Photo/Index.php:119 msgid "skip this step" msgstr "saltar aquest pas" -#: src/Module/Settings/Profile/Photo/Index.php:135 +#: src/Module/Settings/Profile/Photo/Index.php:121 msgid "select a photo from your photo albums" msgstr "tria una foto dels teus àlbums" -#: src/Module/Settings/RemoveMe.php:76 +#: src/Module/Settings/RemoveMe.php:62 msgid "" "There was a validation error, please make sure you're logged in with the " "account you want to remove and try again." msgstr "" -#: src/Module/Settings/RemoveMe.php:76 +#: src/Module/Settings/RemoveMe.php:62 msgid "If this error persists, please contact your administrator." msgstr "" -#: src/Module/Settings/RemoveMe.php:90 -#: src/Navigation/Notifications/Repository/Notify.php:471 -#: src/Navigation/Notifications/Repository/Notify.php:492 +#: src/Module/Settings/RemoveMe.php:76 +#: src/Navigation/Notifications/Repository/Notify.php:457 +#: src/Navigation/Notifications/Repository/Notify.php:478 msgid "[Friendica System Notify]" msgstr "[Notificació del sistema Friendica]" -#: src/Module/Settings/RemoveMe.php:90 +#: src/Module/Settings/RemoveMe.php:76 msgid "User deleted their account" msgstr "L’usuari ha suprimit el seu compte" -#: src/Module/Settings/RemoveMe.php:91 +#: src/Module/Settings/RemoveMe.php:77 msgid "" "On your Friendica node an user deleted their account. Please ensure that " "their data is removed from the backups." msgstr "Al vostre node Friendica, un usuari ha suprimit el seu compte. Assegureu-vos que les seves dades siguin eliminades de les còpies de seguretat." -#: src/Module/Settings/RemoveMe.php:92 +#: src/Module/Settings/RemoveMe.php:78 #, php-format msgid "The user id is %d" msgstr "L’identificador d’usuari és %d" -#: src/Module/Settings/RemoveMe.php:105 +#: src/Module/Settings/RemoveMe.php:91 msgid "Your account has been successfully removed. Bye bye!" msgstr "" -#: src/Module/Settings/RemoveMe.php:130 +#: src/Module/Settings/RemoveMe.php:116 msgid "Remove My Account" msgstr "Eliminar el Meu Compte" -#: src/Module/Settings/RemoveMe.php:131 +#: src/Module/Settings/RemoveMe.php:117 msgid "" "This will completely remove your account. Once this has been done it is not " "recoverable." msgstr "Això eliminarà per complet el seu compte. Quan s'hagi fet això, no serà recuperable." -#: src/Module/Settings/RemoveMe.php:136 +#: src/Module/Settings/RemoveMe.php:122 msgid "Please enter your password for verification:" msgstr "Si us plau, introduïu la contrasenya per a la verificació:" -#: src/Module/Settings/Server/Action.php:60 +#: src/Module/Settings/Server/Action.php:46 msgid "Do you want to ignore this server?" msgstr "" -#: src/Module/Settings/Server/Action.php:64 +#: src/Module/Settings/Server/Action.php:50 msgid "Do you want to unignore this server?" msgstr "" -#: src/Module/Settings/Server/Action.php:74 -#: src/Module/Settings/Server/Index.php:104 +#: src/Module/Settings/Server/Action.php:60 +#: src/Module/Settings/Server/Index.php:90 msgid "Remote server settings" msgstr "" -#: src/Module/Settings/Server/Action.php:77 +#: src/Module/Settings/Server/Action.php:63 msgid "Server URL" msgstr "" -#: src/Module/Settings/Server/Index.php:78 +#: src/Module/Settings/Server/Index.php:64 msgid "Settings saved" msgstr "" -#: src/Module/Settings/Server/Index.php:105 +#: src/Module/Settings/Server/Index.php:91 msgid "" "Here you can find all the remote servers you have taken individual " "moderation actions against. For a list of servers your node has blocked, " "please check out the Information page." msgstr "" -#: src/Module/Settings/Server/Index.php:110 +#: src/Module/Settings/Server/Index.php:96 msgid "Delete all your settings for the remote server" msgstr "" -#: src/Module/Settings/Server/Index.php:111 +#: src/Module/Settings/Server/Index.php:97 msgid "Save changes" msgstr "" -#: src/Module/Settings/TwoFactor/AppSpecific.php:69 -#: src/Module/Settings/TwoFactor/Recovery.php:67 -#: src/Module/Settings/TwoFactor/Trusted.php:70 -#: src/Module/Settings/TwoFactor/Verify.php:72 +#: src/Module/Settings/TwoFactor/AppSpecific.php:55 +#: src/Module/Settings/TwoFactor/Recovery.php:53 +#: src/Module/Settings/TwoFactor/Trusted.php:56 +#: src/Module/Settings/TwoFactor/Verify.php:58 msgid "Please enter your password to access this page." msgstr "Introduïu la vostra contrasenya per accedir a aquesta pàgina." -#: src/Module/Settings/TwoFactor/AppSpecific.php:87 +#: src/Module/Settings/TwoFactor/AppSpecific.php:73 msgid "App-specific password generation failed: The description is empty." msgstr "Ha fallat la generació de contrasenya específica per a l’aplicació: la descripció està buida." -#: src/Module/Settings/TwoFactor/AppSpecific.php:90 +#: src/Module/Settings/TwoFactor/AppSpecific.php:76 msgid "" "App-specific password generation failed: This description already exists." msgstr "Ha fallat la generació de contrasenya específica per a l'aplicació: aquesta descripció ja existeix" -#: src/Module/Settings/TwoFactor/AppSpecific.php:94 +#: src/Module/Settings/TwoFactor/AppSpecific.php:80 msgid "New app-specific password generated." msgstr "S'ha generat una contrasenya nova específica per a l'aplicació." -#: src/Module/Settings/TwoFactor/AppSpecific.php:100 +#: src/Module/Settings/TwoFactor/AppSpecific.php:86 msgid "App-specific passwords successfully revoked." msgstr "Les contrasenyes específiques de l'aplicació s'han revocat correctament." -#: src/Module/Settings/TwoFactor/AppSpecific.php:110 +#: src/Module/Settings/TwoFactor/AppSpecific.php:96 msgid "App-specific password successfully revoked." msgstr "La contrasenya específica de l'aplicació s'ha revocat correctament." -#: src/Module/Settings/TwoFactor/AppSpecific.php:131 +#: src/Module/Settings/TwoFactor/AppSpecific.php:117 msgid "Two-factor app-specific passwords" msgstr "Contrasenyes específiques per a l'aplicació de dos factors" -#: src/Module/Settings/TwoFactor/AppSpecific.php:133 +#: src/Module/Settings/TwoFactor/AppSpecific.php:119 msgid "" "

App-specific passwords are randomly generated passwords used instead your" " regular password to authenticate your account on third-party applications " "that don't support two-factor authentication.

" msgstr "

Les contrasenyes específiques de l’aplicació són contrasenyes generades aleatòriament en lloc de la contrasenya habitual per autenticar el vostre compte en aplicacions de tercers que no admeten l’autenticació de dos factors

" -#: src/Module/Settings/TwoFactor/AppSpecific.php:134 +#: src/Module/Settings/TwoFactor/AppSpecific.php:120 msgid "" "Make sure to copy your new app-specific password now. You won’t be able to " "see it again!" msgstr "Assegureu-vos de copiar la vostra nova contrasenya específica de l'aplicació ara. No el podreu tornar a veure!" -#: src/Module/Settings/TwoFactor/AppSpecific.php:138 +#: src/Module/Settings/TwoFactor/AppSpecific.php:124 msgid "Last Used" msgstr "Últim utilitzat" -#: src/Module/Settings/TwoFactor/AppSpecific.php:139 +#: src/Module/Settings/TwoFactor/AppSpecific.php:125 msgid "Revoke" msgstr "Revocar" -#: src/Module/Settings/TwoFactor/AppSpecific.php:140 +#: src/Module/Settings/TwoFactor/AppSpecific.php:126 msgid "Revoke All" msgstr "Revoca tot" -#: src/Module/Settings/TwoFactor/AppSpecific.php:143 +#: src/Module/Settings/TwoFactor/AppSpecific.php:129 msgid "" "When you generate a new app-specific password, you must use it right away, " "it will be shown to you once after you generate it." msgstr "Quan genereu una contrasenya nova específica de l’aplicació, l’heu d’utilitzar de seguida, us la mostrarà un cop després de generar-la." -#: src/Module/Settings/TwoFactor/AppSpecific.php:144 +#: src/Module/Settings/TwoFactor/AppSpecific.php:130 msgid "Generate new app-specific password" msgstr "Genereu una contrasenya nova específica de l'aplicació" -#: src/Module/Settings/TwoFactor/AppSpecific.php:145 +#: src/Module/Settings/TwoFactor/AppSpecific.php:131 msgid "Friendiqa on my Fairphone 2..." msgstr "Friendica al meu Fairphone 2." -#: src/Module/Settings/TwoFactor/AppSpecific.php:146 +#: src/Module/Settings/TwoFactor/AppSpecific.php:132 msgid "Generate" msgstr "generar" -#: src/Module/Settings/TwoFactor/Index.php:88 +#: src/Module/Settings/TwoFactor/Index.php:74 msgid "Two-factor authentication successfully disabled." msgstr "S'ha desactivat correctament l'autenticació de dos factors." -#: src/Module/Settings/TwoFactor/Index.php:141 +#: src/Module/Settings/TwoFactor/Index.php:127 msgid "" "

Use an application on a mobile device to get two-factor authentication " "codes when prompted on login.

" msgstr "" -#: src/Module/Settings/TwoFactor/Index.php:145 +#: src/Module/Settings/TwoFactor/Index.php:131 msgid "Authenticator app" msgstr "" -#: src/Module/Settings/TwoFactor/Index.php:146 +#: src/Module/Settings/TwoFactor/Index.php:132 msgid "Configured" msgstr "" -#: src/Module/Settings/TwoFactor/Index.php:146 +#: src/Module/Settings/TwoFactor/Index.php:132 msgid "Not Configured" msgstr "" -#: src/Module/Settings/TwoFactor/Index.php:147 +#: src/Module/Settings/TwoFactor/Index.php:133 msgid "

You haven't finished configuring your authenticator app.

" msgstr "" -#: src/Module/Settings/TwoFactor/Index.php:148 +#: src/Module/Settings/TwoFactor/Index.php:134 msgid "

Your authenticator app is correctly configured.

" msgstr "" -#: src/Module/Settings/TwoFactor/Index.php:150 +#: src/Module/Settings/TwoFactor/Index.php:136 msgid "Recovery codes" msgstr "" -#: src/Module/Settings/TwoFactor/Index.php:151 +#: src/Module/Settings/TwoFactor/Index.php:137 msgid "Remaining valid codes" msgstr "" -#: src/Module/Settings/TwoFactor/Index.php:153 +#: src/Module/Settings/TwoFactor/Index.php:139 msgid "" "

These one-use codes can replace an authenticator app code in case you " "have lost access to it.

" msgstr "" -#: src/Module/Settings/TwoFactor/Index.php:155 +#: src/Module/Settings/TwoFactor/Index.php:141 msgid "App-specific passwords" msgstr "" -#: src/Module/Settings/TwoFactor/Index.php:156 +#: src/Module/Settings/TwoFactor/Index.php:142 msgid "Generated app-specific passwords" msgstr "" -#: src/Module/Settings/TwoFactor/Index.php:158 +#: src/Module/Settings/TwoFactor/Index.php:144 msgid "" "

These randomly generated passwords allow you to authenticate on apps not " "supporting two-factor authentication.

" msgstr "" -#: src/Module/Settings/TwoFactor/Index.php:161 +#: src/Module/Settings/TwoFactor/Index.php:147 msgid "Current password:" msgstr "" -#: src/Module/Settings/TwoFactor/Index.php:161 +#: src/Module/Settings/TwoFactor/Index.php:147 msgid "" "You need to provide your current password to change two-factor " "authentication settings." msgstr "" -#: src/Module/Settings/TwoFactor/Index.php:162 +#: src/Module/Settings/TwoFactor/Index.php:148 msgid "Enable two-factor authentication" msgstr "" -#: src/Module/Settings/TwoFactor/Index.php:163 +#: src/Module/Settings/TwoFactor/Index.php:149 msgid "Disable two-factor authentication" msgstr "" -#: src/Module/Settings/TwoFactor/Index.php:164 +#: src/Module/Settings/TwoFactor/Index.php:150 msgid "Show recovery codes" msgstr "" -#: src/Module/Settings/TwoFactor/Index.php:165 +#: src/Module/Settings/TwoFactor/Index.php:151 msgid "Manage app-specific passwords" msgstr "" -#: src/Module/Settings/TwoFactor/Index.php:166 +#: src/Module/Settings/TwoFactor/Index.php:152 msgid "Manage trusted browsers" msgstr "" -#: src/Module/Settings/TwoFactor/Index.php:167 +#: src/Module/Settings/TwoFactor/Index.php:153 msgid "Finish app configuration" msgstr "" -#: src/Module/Settings/TwoFactor/Recovery.php:83 +#: src/Module/Settings/TwoFactor/Recovery.php:69 msgid "New recovery codes successfully generated." msgstr "" -#: src/Module/Settings/TwoFactor/Recovery.php:109 +#: src/Module/Settings/TwoFactor/Recovery.php:95 msgid "Two-factor recovery codes" msgstr "" -#: src/Module/Settings/TwoFactor/Recovery.php:111 +#: src/Module/Settings/TwoFactor/Recovery.php:97 msgid "" "

Recovery codes can be used to access your account in the event you lose " "access to your device and cannot receive two-factor authentication " @@ -11266,68 +11317,68 @@ msgid "" "account.

" msgstr "" -#: src/Module/Settings/TwoFactor/Recovery.php:113 +#: src/Module/Settings/TwoFactor/Recovery.php:99 msgid "" "When you generate new recovery codes, you must copy the new codes. Your old " "codes won’t work anymore." msgstr "" -#: src/Module/Settings/TwoFactor/Recovery.php:114 +#: src/Module/Settings/TwoFactor/Recovery.php:100 msgid "Generate new recovery codes" msgstr "" -#: src/Module/Settings/TwoFactor/Recovery.php:116 +#: src/Module/Settings/TwoFactor/Recovery.php:102 msgid "Next: Verification" msgstr "" -#: src/Module/Settings/TwoFactor/Trusted.php:87 +#: src/Module/Settings/TwoFactor/Trusted.php:73 msgid "Trusted browsers successfully removed." msgstr "" -#: src/Module/Settings/TwoFactor/Trusted.php:97 +#: src/Module/Settings/TwoFactor/Trusted.php:83 msgid "Trusted browser successfully removed." msgstr "" -#: src/Module/Settings/TwoFactor/Trusted.php:139 +#: src/Module/Settings/TwoFactor/Trusted.php:125 msgid "Two-factor Trusted Browsers" msgstr "" -#: src/Module/Settings/TwoFactor/Trusted.php:140 +#: src/Module/Settings/TwoFactor/Trusted.php:126 msgid "" "Trusted browsers are individual browsers you chose to skip two-factor " "authentication to access Friendica. Please use this feature sparingly, as it" " can negate the benefit of two-factor authentication." msgstr "" -#: src/Module/Settings/TwoFactor/Trusted.php:141 +#: src/Module/Settings/TwoFactor/Trusted.php:127 msgid "Device" msgstr "" -#: src/Module/Settings/TwoFactor/Trusted.php:142 +#: src/Module/Settings/TwoFactor/Trusted.php:128 msgid "OS" msgstr "" -#: src/Module/Settings/TwoFactor/Trusted.php:144 +#: src/Module/Settings/TwoFactor/Trusted.php:130 msgid "Trusted" msgstr "" -#: src/Module/Settings/TwoFactor/Trusted.php:145 +#: src/Module/Settings/TwoFactor/Trusted.php:131 msgid "Created At" msgstr "" -#: src/Module/Settings/TwoFactor/Trusted.php:146 +#: src/Module/Settings/TwoFactor/Trusted.php:132 msgid "Last Use" msgstr "" -#: src/Module/Settings/TwoFactor/Trusted.php:148 +#: src/Module/Settings/TwoFactor/Trusted.php:134 msgid "Remove All" msgstr "" -#: src/Module/Settings/TwoFactor/Verify.php:94 +#: src/Module/Settings/TwoFactor/Verify.php:80 msgid "Two-factor authentication successfully activated." msgstr "" -#: src/Module/Settings/TwoFactor/Verify.php:128 +#: src/Module/Settings/TwoFactor/Verify.php:114 #, php-format msgid "" "

Or you can submit the authentication settings manually:

\n" @@ -11347,105 +11398,105 @@ msgid "" "" msgstr "" -#: src/Module/Settings/TwoFactor/Verify.php:148 +#: src/Module/Settings/TwoFactor/Verify.php:134 msgid "Two-factor code verification" msgstr "" -#: src/Module/Settings/TwoFactor/Verify.php:150 +#: src/Module/Settings/TwoFactor/Verify.php:136 msgid "" "

Please scan this QR Code with your authenticator app and submit the " "provided code.

" msgstr "" -#: src/Module/Settings/TwoFactor/Verify.php:152 +#: src/Module/Settings/TwoFactor/Verify.php:138 #, php-format msgid "" "

Or you can open the following URL in your mobile device:

%s

" msgstr "" -#: src/Module/Settings/TwoFactor/Verify.php:159 +#: src/Module/Settings/TwoFactor/Verify.php:145 msgid "Verify code and enable two-factor authentication" msgstr "" -#: src/Module/Settings/UserExport.php:90 +#: src/Module/Settings/UserExport.php:76 msgid "Export account" msgstr "Exportar compte" -#: src/Module/Settings/UserExport.php:90 +#: src/Module/Settings/UserExport.php:76 msgid "" "Export your account info and contacts. Use this to make a backup of your " "account and/or to move it to another server." msgstr "Exportar la teva informació del compte i de contactes. Empra això per fer una còpia de seguretat del teu compte i/o moure'l cap altre servidor. " -#: src/Module/Settings/UserExport.php:91 +#: src/Module/Settings/UserExport.php:77 msgid "Export all" msgstr "Exportar tot" -#: src/Module/Settings/UserExport.php:91 +#: src/Module/Settings/UserExport.php:77 msgid "" "Export your account info, contacts and all your items as json. Could be a " "very big file, and could take a lot of time. Use this to make a full backup " "of your account (photos are not exported)" msgstr "" -#: src/Module/Settings/UserExport.php:92 +#: src/Module/Settings/UserExport.php:78 msgid "Export Contacts to CSV" msgstr "" -#: src/Module/Settings/UserExport.php:92 +#: src/Module/Settings/UserExport.php:78 msgid "" "Export the list of the accounts you are following as CSV file. Compatible to" " e.g. Mastodon." msgstr "" -#: src/Module/Special/DisplayNotFound.php:35 +#: src/Module/Special/DisplayNotFound.php:21 msgid "The top-level post isn't visible." msgstr "" -#: src/Module/Special/DisplayNotFound.php:36 +#: src/Module/Special/DisplayNotFound.php:22 msgid "The top-level post was deleted." msgstr "" -#: src/Module/Special/DisplayNotFound.php:37 +#: src/Module/Special/DisplayNotFound.php:23 msgid "" "This node has blocked the top-level author or the author of the shared post." msgstr "" -#: src/Module/Special/DisplayNotFound.php:38 +#: src/Module/Special/DisplayNotFound.php:24 msgid "" "You have ignored or blocked the top-level author or the author of the shared" " post." msgstr "" -#: src/Module/Special/DisplayNotFound.php:39 +#: src/Module/Special/DisplayNotFound.php:25 msgid "" "You have ignored the top-level author's server or the shared post author's " "server." msgstr "" -#: src/Module/Special/DisplayNotFound.php:45 +#: src/Module/Special/DisplayNotFound.php:31 msgid "Conversation Not Found" msgstr "" -#: src/Module/Special/DisplayNotFound.php:46 +#: src/Module/Special/DisplayNotFound.php:32 msgid "Unfortunately, the requested conversation isn't available to you." msgstr "" -#: src/Module/Special/DisplayNotFound.php:47 +#: src/Module/Special/DisplayNotFound.php:33 msgid "Possible reasons include:" msgstr "" -#: src/Module/Special/HTTPException.php:78 +#: src/Module/Special/HTTPException.php:64 msgid "Stack trace:" msgstr "" -#: src/Module/Special/HTTPException.php:83 +#: src/Module/Special/HTTPException.php:69 #, php-format msgid "Exception thrown in %s:%d" msgstr "" -#: src/Module/Tos.php:58 src/Module/Tos.php:107 +#: src/Module/Tos.php:44 src/Module/Tos.php:93 msgid "" "At the time of registration, and for providing communications between the " "user account and their contacts, the user has to provide a display name (pen" @@ -11458,14 +11509,14 @@ msgid "" "settings, it is not necessary for communication." msgstr "" -#: src/Module/Tos.php:59 src/Module/Tos.php:108 +#: src/Module/Tos.php:45 src/Module/Tos.php:94 msgid "" "This data is required for communication and is passed on to the nodes of the" " communication partners and is stored there. Users can enter additional " "private data that may be transmitted to the communication partners accounts." msgstr "" -#: src/Module/Tos.php:60 src/Module/Tos.php:109 +#: src/Module/Tos.php:46 src/Module/Tos.php:95 #, php-format msgid "" "At any point in time a logged in user can export their account data from the" @@ -11476,121 +11527,121 @@ msgid "" "from the nodes of the communication partners." msgstr "" -#: src/Module/Tos.php:63 src/Module/Tos.php:106 +#: src/Module/Tos.php:49 src/Module/Tos.php:92 msgid "Privacy Statement" msgstr "" -#: src/Module/Tos.php:103 +#: src/Module/Tos.php:89 msgid "Rules" msgstr "" -#: src/Module/Update/Display.php:45 +#: src/Module/Update/Display.php:31 msgid "Parameter uri_id is missing." msgstr "" -#: src/Module/Update/Display.php:55 +#: src/Module/Update/Display.php:41 msgid "The requested item doesn't exist or has been deleted." msgstr "" -#: src/Module/User/Delegation.php:146 +#: src/Module/User/Delegation.php:132 #, php-format msgid "You are now logged in as %s" msgstr "" -#: src/Module/User/Delegation.php:185 +#: src/Module/User/Delegation.php:171 msgid "Switch between your accounts" msgstr "" -#: src/Module/User/Delegation.php:186 +#: src/Module/User/Delegation.php:172 msgid "Manage your accounts" msgstr "" -#: src/Module/User/Delegation.php:187 +#: src/Module/User/Delegation.php:173 msgid "" "Toggle between different identities or community/group pages which share " "your account details or which you have been granted \"manage\" permissions" msgstr "Alternar entre les diferents identitats o les pàgines de comunitats/grups que comparteixen les dades del seu compte o que se li ha concedit els permisos de \"administrar\"" -#: src/Module/User/Delegation.php:188 +#: src/Module/User/Delegation.php:174 msgid "Select an identity to manage: " msgstr "Seleccionar identitat a administrar:" -#: src/Module/User/Import.php:103 +#: src/Module/User/Import.php:90 msgid "User imports on closed servers can only be done by an administrator." msgstr "Les administracions de servidors tancats només poden ser realitzades per un administrador." -#: src/Module/User/Import.php:119 +#: src/Module/User/Import.php:106 msgid "Move account" msgstr "Moure el compte" -#: src/Module/User/Import.php:120 +#: src/Module/User/Import.php:107 msgid "You can import an account from another Friendica server." msgstr "Pots importar un compte d'un altre servidor Friendica" -#: src/Module/User/Import.php:121 +#: src/Module/User/Import.php:108 msgid "" "You need to export your account from the old server and upload it here. We " "will recreate your old account here with all your contacts. We will try also" " to inform your friends that you moved here." msgstr "Es necessari que exportis el teu compte de l'antic servidor i el pugis a aquest. Recrearem el teu antic compte aquí amb tots els teus contactes. Intentarem també informar als teus amics que t'has traslladat aquí." -#: src/Module/User/Import.php:122 +#: src/Module/User/Import.php:109 msgid "" "This feature is experimental. We can't import contacts from the OStatus " "network (GNU Social/Statusnet) or from Diaspora" msgstr "Aquesta característica és experimental. No podem importar contactes des de la xarxa OStatus(GNU Social/Statusnet) or from Diaspora" -#: src/Module/User/Import.php:123 +#: src/Module/User/Import.php:110 msgid "Account file" msgstr "Arxiu del compte" -#: src/Module/User/Import.php:123 +#: src/Module/User/Import.php:110 msgid "" "To export your account, go to \"Settings->Export your personal data\" and " "select \"Export account\"" msgstr "Per exportar el vostre compte, aneu a 'Configuració-> Exporta les vostres dades personals' i seleccioneu 'Exporta el compte'" -#: src/Module/User/Import.php:217 +#: src/Module/User/Import.php:204 msgid "Error decoding account file" msgstr "Error decodificant l'arxiu del compte" -#: src/Module/User/Import.php:222 +#: src/Module/User/Import.php:209 msgid "Error! No version data in file! This is not a Friendica account file?" msgstr "Error! No hi ha dades al arxiu! No es un arxiu de compte de Friendica?" -#: src/Module/User/Import.php:230 +#: src/Module/User/Import.php:217 #, php-format msgid "User '%s' already exists on this server!" msgstr "El usuari %s' ja existeix en aquest servidor!" -#: src/Module/User/Import.php:267 +#: src/Module/User/Import.php:254 msgid "User creation error" msgstr "Error en la creació de l'usuari" -#: src/Module/User/Import.php:316 +#: src/Module/User/Import.php:303 #, php-format msgid "%d contact not imported" msgid_plural "%d contacts not imported" msgstr[0] "%d contacte no importat" msgstr[1] "%d contactes no importats" -#: src/Module/User/Import.php:365 +#: src/Module/User/Import.php:352 msgid "User profile creation error" msgstr "Error en la creació del perfil d'usuari" -#: src/Module/User/Import.php:416 +#: src/Module/User/Import.php:403 msgid "Done. You can now login with your username and password" msgstr "Fet. Ja pots identificar-te amb el teu nom d'usuari i contrasenya" -#: src/Module/Welcome.php:44 +#: src/Module/Welcome.php:30 msgid "Welcome to Friendica" msgstr "Benvingut a Friendica" -#: src/Module/Welcome.php:45 +#: src/Module/Welcome.php:31 msgid "New Member Checklist" msgstr "Llista de Verificació dels Nous Membres" -#: src/Module/Welcome.php:46 +#: src/Module/Welcome.php:32 msgid "" "We would like to offer some tips and links to help make your experience " "enjoyable. Click any item to visit the relevant page. A link to this page " @@ -11598,33 +11649,33 @@ msgid "" "registration and then will quietly disappear." msgstr "Ens agradaria oferir alguns consells i enllaços per ajudar a fer la teva experiència agradable. Feu clic a qualsevol element per visitar la pàgina corresponent. Un enllaç a aquesta pàgina serà visible des de la pàgina d'inici durant dues setmanes després de la teva inscripció inicial i després desapareixerà en silenci." -#: src/Module/Welcome.php:48 +#: src/Module/Welcome.php:34 msgid "Getting Started" msgstr "Començem" -#: src/Module/Welcome.php:49 +#: src/Module/Welcome.php:35 msgid "Friendica Walk-Through" msgstr "Paseja per Friendica" -#: src/Module/Welcome.php:50 +#: src/Module/Welcome.php:36 msgid "" "On your Quick Start page - find a brief introduction to your " "profile and network tabs, make some new connections, and find some groups to" " join." msgstr "A la teva pàgina de Inici Ràpid - troba una breu presentació per les teves fitxes de perfil i xarxa, crea alguna nova connexió i troba algun grup per unir-te." -#: src/Module/Welcome.php:53 +#: src/Module/Welcome.php:39 msgid "Go to Your Settings" msgstr "Anar als Teus Ajustos" -#: src/Module/Welcome.php:54 +#: src/Module/Welcome.php:40 msgid "" "On your Settings page - change your initial password. Also make a " "note of your Identity Address. This looks just like an email address - and " "will be useful in making friends on the free social web." msgstr "En la de la seva configuració de la pàgina - canviï la contrasenya inicial. També prengui nota de la Adreça d'Identitat. Això s'assembla a una adreça de correu electrònic - i serà útil per fer amics a la xarxa social lliure." -#: src/Module/Welcome.php:55 +#: src/Module/Welcome.php:41 msgid "" "Review the other settings, particularly the privacy settings. An unpublished" " directory listing is like having an unlisted phone number. In general, you " @@ -11632,77 +11683,77 @@ msgid "" "potential friends know exactly how to find you." msgstr "Reviseu les altres configuracions, en particular la configuració de privadesa. Una llista de directoris no publicada és com tenir un número de telèfon no llistat. Normalment, hauria de publicar la seva llista - a menys que tots els seus amics i els amics potencials sàpiguen exactament com trobar-li." -#: src/Module/Welcome.php:59 +#: src/Module/Welcome.php:45 msgid "" "Upload a profile photo if you have not done so already. Studies have shown " "that people with real photos of themselves are ten times more likely to make" " friends than people who do not." msgstr "Puji una foto del seu perfil si encara no ho ha fet. Els estudis han demostrat que les persones amb fotos reals de ells mateixos tenen deu vegades més probabilitats de fer amics que les persones que no ho fan." -#: src/Module/Welcome.php:60 +#: src/Module/Welcome.php:46 msgid "Edit Your Profile" msgstr "Editar el Teu Perfil" -#: src/Module/Welcome.php:61 +#: src/Module/Welcome.php:47 msgid "" "Edit your default profile to your liking. Review the " "settings for hiding your list of friends and hiding the profile from unknown" " visitors." msgstr "Editi el perfil per defecte al seu gust. Reviseu la configuració per ocultar la seva llista d'amics i ocultar el perfil dels visitants desconeguts." -#: src/Module/Welcome.php:62 +#: src/Module/Welcome.php:48 msgid "Profile Keywords" msgstr "Paraules clau del Perfil" -#: src/Module/Welcome.php:63 +#: src/Module/Welcome.php:49 msgid "" "Set some public keywords for your profile which describe your interests. We " "may be able to find other people with similar interests and suggest " "friendships." msgstr "" -#: src/Module/Welcome.php:65 +#: src/Module/Welcome.php:51 msgid "Connecting" msgstr "Connectant" -#: src/Module/Welcome.php:67 +#: src/Module/Welcome.php:53 msgid "Importing Emails" msgstr "Important Emails" -#: src/Module/Welcome.php:68 +#: src/Module/Welcome.php:54 msgid "" "Enter your email access information on your Connector Settings page if you " "wish to import and interact with friends or mailing lists from your email " "INBOX" msgstr "Introduïu les dades d'accés al correu electrònic a la seva pàgina de configuració de connector, si es desitja importar i relacionar-se amb amics o llistes de correu de la seva bústia d'email" -#: src/Module/Welcome.php:69 +#: src/Module/Welcome.php:55 msgid "Go to Your Contacts Page" msgstr "Anar a la Teva Pàgina de Contactes" -#: src/Module/Welcome.php:70 +#: src/Module/Welcome.php:56 msgid "" "Your Contacts page is your gateway to managing friendships and connecting " "with friends on other networks. Typically you enter their address or site " "URL in the Add New Contact dialog." msgstr "La seva pàgina de Contactes és la seva porta d'entrada a la gestió de l'amistat i la connexió amb amics d'altres xarxes. Normalment, vostè entrar en la seva direcció o URL del lloc al diàleg Afegir Nou Contacte." -#: src/Module/Welcome.php:71 +#: src/Module/Welcome.php:57 msgid "Go to Your Site's Directory" msgstr "Anar al Teu Directori" -#: src/Module/Welcome.php:72 +#: src/Module/Welcome.php:58 msgid "" "The Directory page lets you find other people in this network or other " "federated sites. Look for a Connect or Follow link on " "their profile page. Provide your own Identity Address if requested." msgstr "La pàgina del Directori li permet trobar altres persones en aquesta xarxa o altres llocs federats. Busqui un enllaç Connectar o Seguir a la seva pàgina de perfil. Proporcioni la seva pròpia Adreça de Identitat si així ho sol·licita." -#: src/Module/Welcome.php:73 +#: src/Module/Welcome.php:59 msgid "Finding New People" msgstr "Trobar Gent Nova" -#: src/Module/Welcome.php:74 +#: src/Module/Welcome.php:60 msgid "" "On the side panel of the Contacts page are several tools to find new " "friends. We can match people by interest, look up people by name or " @@ -11711,412 +11762,408 @@ msgid "" "hours." msgstr "Al tauler lateral de la pàgina de contacte Hi ha diverses eines per trobar nous amics. Podem coincidir amb les persones per interesos, buscar persones pel nom o per interès, i oferir suggeriments basats en les relacions de la xarxa. En un nou lloc, els suggeriments d'amics, en general comencen a poblar el lloc a les 24 hores." -#: src/Module/Welcome.php:77 +#: src/Module/Welcome.php:63 msgid "Add Your Contacts To Circle" msgstr "" -#: src/Module/Welcome.php:78 +#: src/Module/Welcome.php:64 msgid "" "Once you have made some friends, organize them into private conversation " "circles from the sidebar of your Contacts page and then you can interact " "with each circle privately on your Network page." msgstr "" -#: src/Module/Welcome.php:80 +#: src/Module/Welcome.php:66 msgid "Why Aren't My Posts Public?" msgstr "Per que no es public el meu enviament?" -#: src/Module/Welcome.php:81 +#: src/Module/Welcome.php:67 msgid "" "Friendica respects your privacy. By default, your posts will only show up to" " people you've added as friends. For more information, see the help section " "from the link above." msgstr "Friendica respecta la teva privacitat. Per defecte, els teus enviaments només s'envien a gent que has afegit com a amic. Per més informació, mira la secció d'ajuda des de l'enllaç de dalt." -#: src/Module/Welcome.php:83 +#: src/Module/Welcome.php:69 msgid "Getting Help" msgstr "Demanant Ajuda" -#: src/Module/Welcome.php:84 +#: src/Module/Welcome.php:70 msgid "Go to the Help Section" msgstr "Anar a la secció d'Ajuda" -#: src/Module/Welcome.php:85 +#: src/Module/Welcome.php:71 msgid "" "Our help pages may be consulted for detail on other program" " features and resources." msgstr "A les nostres pàgines d'ajuda es poden consultar detalls sobre les característiques d'altres programes i recursos." -#: src/Navigation/Notifications/Factory/FormattedNavNotification.php:161 +#: src/Navigation/Notifications/Factory/FormattedNavNotification.php:147 msgid "{0} wants to follow you" msgstr "" -#: src/Navigation/Notifications/Factory/FormattedNavNotification.php:163 +#: src/Navigation/Notifications/Factory/FormattedNavNotification.php:149 msgid "{0} has started following you" msgstr "" -#: src/Navigation/Notifications/Factory/FormattedNotify.php:96 +#: src/Navigation/Notifications/Factory/FormattedNotify.php:82 #, php-format msgid "%s liked %s's post" msgstr "A %s li agrada l'enviament de %s" -#: src/Navigation/Notifications/Factory/FormattedNotify.php:108 +#: src/Navigation/Notifications/Factory/FormattedNotify.php:94 #, php-format msgid "%s disliked %s's post" msgstr "A %s no li agrada l'enviament de %s" -#: src/Navigation/Notifications/Factory/FormattedNotify.php:120 +#: src/Navigation/Notifications/Factory/FormattedNotify.php:106 #, php-format msgid "%s is attending %s's event" msgstr "" -#: src/Navigation/Notifications/Factory/FormattedNotify.php:132 +#: src/Navigation/Notifications/Factory/FormattedNotify.php:118 #, php-format msgid "%s is not attending %s's event" msgstr "" -#: src/Navigation/Notifications/Factory/FormattedNotify.php:144 +#: src/Navigation/Notifications/Factory/FormattedNotify.php:130 #, php-format msgid "%s may attending %s's event" msgstr "" -#: src/Navigation/Notifications/Factory/FormattedNotify.php:174 +#: src/Navigation/Notifications/Factory/FormattedNotify.php:160 #, php-format msgid "%s is now friends with %s" msgstr "%s es ara amic de %s" -#: src/Navigation/Notifications/Factory/FormattedNotify.php:341 -#: src/Navigation/Notifications/Factory/FormattedNotify.php:379 +#: src/Navigation/Notifications/Factory/FormattedNotify.php:327 +#: src/Navigation/Notifications/Factory/FormattedNotify.php:365 #, php-format msgid "%s commented on %s's post" msgstr "%s va comentar en l'enviament de %s" -#: src/Navigation/Notifications/Factory/FormattedNotify.php:378 +#: src/Navigation/Notifications/Factory/FormattedNotify.php:364 #, php-format msgid "%s created a new post" msgstr "%s ha creat un enviament nou" -#: src/Navigation/Notifications/Factory/Introduction.php:133 +#: src/Navigation/Notifications/Factory/Introduction.php:118 msgid "Friend Suggestion" msgstr "Amics Suggerits " -#: src/Navigation/Notifications/Factory/Introduction.php:159 +#: src/Navigation/Notifications/Factory/Introduction.php:144 msgid "Friend/Connect Request" msgstr "Sol·licitud d'Amistat/Connexió" -#: src/Navigation/Notifications/Factory/Introduction.php:159 -msgid "New Follower" -msgstr "Nou Seguidor" - -#: src/Navigation/Notifications/Factory/Notification.php:134 +#: src/Navigation/Notifications/Factory/Notification.php:120 #, php-format msgid "%1$s wants to follow you" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:136 +#: src/Navigation/Notifications/Factory/Notification.php:122 #, php-format msgid "%1$s has started following you" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:208 +#: src/Navigation/Notifications/Factory/Notification.php:194 #, php-format msgid "%1$s liked your comment on %2$s" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:211 +#: src/Navigation/Notifications/Factory/Notification.php:197 #, php-format msgid "%1$s liked your post %2$s" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:218 +#: src/Navigation/Notifications/Factory/Notification.php:204 #, php-format msgid "%1$s disliked your comment on %2$s" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:221 +#: src/Navigation/Notifications/Factory/Notification.php:207 #, php-format msgid "%1$s disliked your post %2$s" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:228 +#: src/Navigation/Notifications/Factory/Notification.php:214 #, php-format msgid "%1$s shared your comment %2$s" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:231 -#: src/Navigation/Notifications/Factory/Notification.php:316 +#: src/Navigation/Notifications/Factory/Notification.php:217 +#: src/Navigation/Notifications/Factory/Notification.php:302 #, php-format msgid "%1$s shared your post %2$s" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:235 -#: src/Navigation/Notifications/Factory/Notification.php:305 +#: src/Navigation/Notifications/Factory/Notification.php:221 +#: src/Navigation/Notifications/Factory/Notification.php:291 #, php-format msgid "%1$s shared the post %2$s from %3$s" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:237 -#: src/Navigation/Notifications/Factory/Notification.php:307 +#: src/Navigation/Notifications/Factory/Notification.php:223 +#: src/Navigation/Notifications/Factory/Notification.php:293 #, php-format msgid "%1$s shared a post from %3$s" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:239 -#: src/Navigation/Notifications/Factory/Notification.php:309 +#: src/Navigation/Notifications/Factory/Notification.php:225 +#: src/Navigation/Notifications/Factory/Notification.php:295 #, php-format msgid "%1$s shared the post %2$s" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:241 -#: src/Navigation/Notifications/Factory/Notification.php:311 +#: src/Navigation/Notifications/Factory/Notification.php:227 +#: src/Navigation/Notifications/Factory/Notification.php:297 #, php-format msgid "%1$s shared a post" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:249 +#: src/Navigation/Notifications/Factory/Notification.php:235 #, php-format msgid "%1$s wants to attend your event %2$s" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:256 +#: src/Navigation/Notifications/Factory/Notification.php:242 #, php-format msgid "%1$s does not want to attend your event %2$s" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:263 +#: src/Navigation/Notifications/Factory/Notification.php:249 #, php-format msgid "%1$s maybe wants to attend your event %2$s" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:270 +#: src/Navigation/Notifications/Factory/Notification.php:256 #, php-format msgid "%1$s tagged you on %2$s" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:274 +#: src/Navigation/Notifications/Factory/Notification.php:260 #, php-format msgid "%1$s replied to you on %2$s" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:278 +#: src/Navigation/Notifications/Factory/Notification.php:264 #, php-format msgid "%1$s commented in your thread %2$s" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:282 +#: src/Navigation/Notifications/Factory/Notification.php:268 #, php-format msgid "%1$s commented on your comment %2$s" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:289 +#: src/Navigation/Notifications/Factory/Notification.php:275 #, php-format msgid "%1$s commented in their thread %2$s" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:291 +#: src/Navigation/Notifications/Factory/Notification.php:277 #, php-format msgid "%1$s commented in their thread" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:293 +#: src/Navigation/Notifications/Factory/Notification.php:279 #, php-format msgid "%1$s commented in the thread %2$s from %3$s" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:295 +#: src/Navigation/Notifications/Factory/Notification.php:281 #, php-format msgid "%1$s commented in the thread from %3$s" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:300 +#: src/Navigation/Notifications/Factory/Notification.php:286 #, php-format msgid "%1$s commented on your thread %2$s" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:225 -#: src/Navigation/Notifications/Repository/Notify.php:754 +#: src/Navigation/Notifications/Repository/Notify.php:211 +#: src/Navigation/Notifications/Repository/Notify.php:740 msgid "[Friendica:Notify]" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:293 +#: src/Navigation/Notifications/Repository/Notify.php:279 #, php-format msgid "%s New mail received at %s" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:295 +#: src/Navigation/Notifications/Repository/Notify.php:281 #, php-format msgid "%1$s sent you a new private message at %2$s." msgstr "%1$s t'ha enviat un missatge privat nou en %2$s." -#: src/Navigation/Notifications/Repository/Notify.php:296 +#: src/Navigation/Notifications/Repository/Notify.php:282 msgid "a private message" msgstr "un missatge privat" -#: src/Navigation/Notifications/Repository/Notify.php:296 +#: src/Navigation/Notifications/Repository/Notify.php:282 #, php-format msgid "%1$s sent you %2$s." msgstr "%1$s t'ha enviat %2$s." -#: src/Navigation/Notifications/Repository/Notify.php:298 +#: src/Navigation/Notifications/Repository/Notify.php:284 #, php-format msgid "Please visit %s to view and/or reply to your private messages." msgstr "Per favor, visiteu %s per a veure i/o respondre els teus missatges privats." -#: src/Navigation/Notifications/Repository/Notify.php:328 +#: src/Navigation/Notifications/Repository/Notify.php:314 #, php-format msgid "%1$s commented on %2$s's %3$s %4$s" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:333 +#: src/Navigation/Notifications/Repository/Notify.php:319 #, php-format msgid "%1$s commented on your %2$s %3$s" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:337 +#: src/Navigation/Notifications/Repository/Notify.php:323 #, php-format msgid "%1$s commented on their %2$s %3$s" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:341 -#: src/Navigation/Notifications/Repository/Notify.php:788 +#: src/Navigation/Notifications/Repository/Notify.php:327 +#: src/Navigation/Notifications/Repository/Notify.php:774 #, php-format msgid "%1$s Comment to conversation #%2$d by %3$s" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:343 +#: src/Navigation/Notifications/Repository/Notify.php:329 #, php-format msgid "%s commented on an item/conversation you have been following." msgstr "%s ha comentat un element/conversació que estas seguint." -#: src/Navigation/Notifications/Repository/Notify.php:347 -#: src/Navigation/Notifications/Repository/Notify.php:362 -#: src/Navigation/Notifications/Repository/Notify.php:814 +#: src/Navigation/Notifications/Repository/Notify.php:333 +#: src/Navigation/Notifications/Repository/Notify.php:348 +#: src/Navigation/Notifications/Repository/Notify.php:800 #, php-format msgid "Please visit %s to view and/or reply to the conversation." msgstr "Si us pau, visiteu %s per a veure i/o respondre la conversació." -#: src/Navigation/Notifications/Repository/Notify.php:354 +#: src/Navigation/Notifications/Repository/Notify.php:340 #, php-format msgid "%s %s posted to your profile wall" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:356 +#: src/Navigation/Notifications/Repository/Notify.php:342 #, php-format msgid "%1$s posted to your profile wall at %2$s" msgstr "%1$s ha fet un enviament al teu mur de perfils en %2$s" -#: src/Navigation/Notifications/Repository/Notify.php:357 +#: src/Navigation/Notifications/Repository/Notify.php:343 #, php-format msgid "%1$s posted to [url=%2$s]your wall[/url]" msgstr "%1$s enviat a [url=%2$s]teu mur[/url]" -#: src/Navigation/Notifications/Repository/Notify.php:370 +#: src/Navigation/Notifications/Repository/Notify.php:356 #, php-format msgid "%s Introduction received" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:372 +#: src/Navigation/Notifications/Repository/Notify.php:358 #, php-format msgid "You've received an introduction from '%1$s' at %2$s" msgstr "Has rebut una presentació des de '%1$s' en %2$s" -#: src/Navigation/Notifications/Repository/Notify.php:373 +#: src/Navigation/Notifications/Repository/Notify.php:359 #, php-format msgid "You've received [url=%1$s]an introduction[/url] from %2$s." msgstr "Has rebut [url=%1$s] com a presentació[/url] des de %2$s." -#: src/Navigation/Notifications/Repository/Notify.php:378 -#: src/Navigation/Notifications/Repository/Notify.php:424 +#: src/Navigation/Notifications/Repository/Notify.php:364 +#: src/Navigation/Notifications/Repository/Notify.php:410 #, php-format msgid "You may visit their profile at %s" msgstr "Pot visitar el seu perfil en %s" -#: src/Navigation/Notifications/Repository/Notify.php:380 +#: src/Navigation/Notifications/Repository/Notify.php:366 #, php-format msgid "Please visit %s to approve or reject the introduction." msgstr "Si us plau visiteu %s per aprovar o rebutjar la presentació." -#: src/Navigation/Notifications/Repository/Notify.php:387 +#: src/Navigation/Notifications/Repository/Notify.php:373 #, php-format msgid "%s A new person is sharing with you" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:389 -#: src/Navigation/Notifications/Repository/Notify.php:390 +#: src/Navigation/Notifications/Repository/Notify.php:375 +#: src/Navigation/Notifications/Repository/Notify.php:376 #, php-format msgid "%1$s is sharing with you at %2$s" msgstr "%1$s està compartint amb tú a %2$s" -#: src/Navigation/Notifications/Repository/Notify.php:397 +#: src/Navigation/Notifications/Repository/Notify.php:383 #, php-format msgid "%s You have a new follower" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:399 -#: src/Navigation/Notifications/Repository/Notify.php:400 +#: src/Navigation/Notifications/Repository/Notify.php:385 +#: src/Navigation/Notifications/Repository/Notify.php:386 #, php-format msgid "You have a new follower at %2$s : %1$s" msgstr "Tens un nou seguidor a %2$s : %1$s" -#: src/Navigation/Notifications/Repository/Notify.php:413 +#: src/Navigation/Notifications/Repository/Notify.php:399 #, php-format msgid "%s Friend suggestion received" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:415 +#: src/Navigation/Notifications/Repository/Notify.php:401 #, php-format msgid "You've received a friend suggestion from '%1$s' at %2$s" msgstr "Has rebut una suggerencia d'amistat des de '%1$s' en %2$s" -#: src/Navigation/Notifications/Repository/Notify.php:416 +#: src/Navigation/Notifications/Repository/Notify.php:402 #, php-format msgid "" "You've received [url=%1$s]a friend suggestion[/url] for %2$s from %3$s." msgstr "Has rebut [url=%1$s] com a suggerencia d'amistat[/url] per a %2$s des de %3$s." -#: src/Navigation/Notifications/Repository/Notify.php:422 +#: src/Navigation/Notifications/Repository/Notify.php:408 msgid "Name:" msgstr "Nom:" -#: src/Navigation/Notifications/Repository/Notify.php:423 +#: src/Navigation/Notifications/Repository/Notify.php:409 msgid "Photo:" msgstr "Foto:" -#: src/Navigation/Notifications/Repository/Notify.php:426 +#: src/Navigation/Notifications/Repository/Notify.php:412 #, php-format msgid "Please visit %s to approve or reject the suggestion." msgstr "Si us plau, visiteu %s per aprovar o rebutjar la suggerencia." -#: src/Navigation/Notifications/Repository/Notify.php:434 -#: src/Navigation/Notifications/Repository/Notify.php:449 +#: src/Navigation/Notifications/Repository/Notify.php:420 +#: src/Navigation/Notifications/Repository/Notify.php:435 #, php-format msgid "%s Connection accepted" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:436 -#: src/Navigation/Notifications/Repository/Notify.php:451 +#: src/Navigation/Notifications/Repository/Notify.php:422 +#: src/Navigation/Notifications/Repository/Notify.php:437 #, php-format msgid "'%1$s' has accepted your connection request at %2$s" msgstr "'%1$s' ha acceptat la teva petició de conexió a %2$s" -#: src/Navigation/Notifications/Repository/Notify.php:437 -#: src/Navigation/Notifications/Repository/Notify.php:452 +#: src/Navigation/Notifications/Repository/Notify.php:423 +#: src/Navigation/Notifications/Repository/Notify.php:438 #, php-format msgid "%2$s has accepted your [url=%1$s]connection request[/url]." msgstr "%2$s ha acceptat el teu [url=%1$s]sol·licitud de connexió[/url]." -#: src/Navigation/Notifications/Repository/Notify.php:442 +#: src/Navigation/Notifications/Repository/Notify.php:428 msgid "" "You are now mutual friends and may exchange status updates, photos, and " "email without restriction." msgstr "Ara sou amics mutus i podeu intercanviar actualitzacions d'estat, fotos i correu electrònic sense restriccions." -#: src/Navigation/Notifications/Repository/Notify.php:444 +#: src/Navigation/Notifications/Repository/Notify.php:430 #, php-format msgid "Please visit %s if you wish to make any changes to this relationship." msgstr " Visiteu%ssi voleu fer canvis en aquesta relació." -#: src/Navigation/Notifications/Repository/Notify.php:457 +#: src/Navigation/Notifications/Repository/Notify.php:443 #, php-format msgid "" "'%1$s' has chosen to accept you a fan, which restricts some forms of " @@ -12125,34 +12172,34 @@ msgid "" "automatically." msgstr "'%1$s' ha decidit acceptar-vos un fan, que restringeix algunes formes de comunicació, com ara la missatgeria privada i algunes interaccions de perfils. Si es tracta d’una pàgina de celebritat o comunitat, aquestes opcions s’apliquen automàticament." -#: src/Navigation/Notifications/Repository/Notify.php:459 +#: src/Navigation/Notifications/Repository/Notify.php:445 #, php-format msgid "" "'%1$s' may choose to extend this into a two-way or more permissive " "relationship in the future." msgstr "'%1$s' pot decidir optar per ampliar-la en una relació bidireccional o més permissiva en el futur." -#: src/Navigation/Notifications/Repository/Notify.php:461 +#: src/Navigation/Notifications/Repository/Notify.php:447 #, php-format msgid "Please visit %s if you wish to make any changes to this relationship." msgstr "Visiteu%s si voleu fer canvis en aquesta relació." -#: src/Navigation/Notifications/Repository/Notify.php:471 +#: src/Navigation/Notifications/Repository/Notify.php:457 msgid "registration request" msgstr "sol·licitud de registre" -#: src/Navigation/Notifications/Repository/Notify.php:473 +#: src/Navigation/Notifications/Repository/Notify.php:459 #, php-format msgid "You've received a registration request from '%1$s' at %2$s" msgstr "Heu rebut una sol·licitud de registre de '%1$s' a %2$s" -#: src/Navigation/Notifications/Repository/Notify.php:474 +#: src/Navigation/Notifications/Repository/Notify.php:460 #, php-format msgid "You've received a [url=%1$s]registration request[/url] from %2$s." msgstr "Heu rebut un [url=%1$s]sol·licitud de registre[/url] from %2$s." -#: src/Navigation/Notifications/Repository/Notify.php:479 -#: src/Navigation/Notifications/Repository/Notify.php:500 +#: src/Navigation/Notifications/Repository/Notify.php:465 +#: src/Navigation/Notifications/Repository/Notify.php:486 #, php-format msgid "" "Display Name:\t%s\n" @@ -12160,768 +12207,755 @@ msgid "" "Login Name:\t%s (%s)" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:485 +#: src/Navigation/Notifications/Repository/Notify.php:471 #, php-format msgid "Please visit %s to approve or reject the request." msgstr "Visiteu %s per aprovar o rebutjar la sol·licitud." -#: src/Navigation/Notifications/Repository/Notify.php:492 +#: src/Navigation/Notifications/Repository/Notify.php:478 msgid "new registration" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:494 +#: src/Navigation/Notifications/Repository/Notify.php:480 #, php-format msgid "You've received a new registration from '%1$s' at %2$s" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:495 +#: src/Navigation/Notifications/Repository/Notify.php:481 #, php-format msgid "You've received a [url=%1$s]new registration[/url] from %2$s." msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:506 +#: src/Navigation/Notifications/Repository/Notify.php:492 #, php-format msgid "Please visit %s to have a look at the new registration." msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:782 +#: src/Navigation/Notifications/Repository/Notify.php:768 #, php-format msgid "%s %s tagged you" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:785 +#: src/Navigation/Notifications/Repository/Notify.php:771 #, php-format msgid "%s %s shared a new post" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:793 +#: src/Navigation/Notifications/Repository/Notify.php:779 #, php-format msgid "%1$s %2$s liked your post #%3$d" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:796 +#: src/Navigation/Notifications/Repository/Notify.php:782 #, php-format msgid "%1$s %2$s liked your comment on #%3$d" msgstr "" -#: src/Object/EMail/ItemCCEMail.php:42 +#: src/Object/EMail/ItemCCEMail.php:28 #, php-format msgid "" "This message was sent to you by %s, a member of the Friendica social " "network." msgstr "Aquest missatge va ser enviat a vostè per %s, un membre de la xarxa social Friendica." -#: src/Object/EMail/ItemCCEMail.php:44 +#: src/Object/EMail/ItemCCEMail.php:30 #, php-format msgid "You may visit them online at %s" msgstr "El pot visitar en línia a %s" -#: src/Object/EMail/ItemCCEMail.php:45 +#: src/Object/EMail/ItemCCEMail.php:31 msgid "" "Please contact the sender by replying to this post if you do not wish to " "receive these messages." msgstr "Si us plau, poseu-vos en contacte amb el remitent responent a aquest missatge si no voleu rebre aquests missatges." -#: src/Object/EMail/ItemCCEMail.php:49 +#: src/Object/EMail/ItemCCEMail.php:35 #, php-format msgid "%s posted an update." msgstr "%s ha publicat una actualització." -#: src/Object/Post.php:138 +#: src/Object/Post.php:124 msgid "Private Message" msgstr "Missatge Privat" -#: src/Object/Post.php:142 +#: src/Object/Post.php:128 msgid "Public Message" msgstr "" -#: src/Object/Post.php:146 +#: src/Object/Post.php:132 msgid "Unlisted Message" msgstr "" -#: src/Object/Post.php:182 +#: src/Object/Post.php:168 msgid "This entry was edited" msgstr "L'entrada fou editada" -#: src/Object/Post.php:210 +#: src/Object/Post.php:196 msgid "Connector Message" msgstr "" -#: src/Object/Post.php:226 src/Object/Post.php:228 +#: src/Object/Post.php:225 src/Object/Post.php:227 msgid "Edit" msgstr "Editar" -#: src/Object/Post.php:262 +#: src/Object/Post.php:261 msgid "Delete globally" msgstr "" -#: src/Object/Post.php:262 +#: src/Object/Post.php:261 msgid "Remove locally" msgstr "" -#: src/Object/Post.php:269 +#: src/Object/Post.php:268 #, php-format msgid "Block %s" msgstr "" -#: src/Object/Post.php:274 +#: src/Object/Post.php:273 #, php-format msgid "Ignore %s" msgstr "" -#: src/Object/Post.php:279 +#: src/Object/Post.php:278 #, php-format msgid "Collapse %s" msgstr "" -#: src/Object/Post.php:283 +#: src/Object/Post.php:282 msgid "Report post" msgstr "" -#: src/Object/Post.php:294 +#: src/Object/Post.php:293 msgid "Save to folder" msgstr "" -#: src/Object/Post.php:334 +#: src/Object/Post.php:333 msgid "I will attend" msgstr "" -#: src/Object/Post.php:334 +#: src/Object/Post.php:333 msgid "I will not attend" msgstr "" -#: src/Object/Post.php:334 +#: src/Object/Post.php:333 msgid "I might attend" msgstr "" -#: src/Object/Post.php:381 +#: src/Object/Post.php:380 msgid "Ignore thread" msgstr "" -#: src/Object/Post.php:382 +#: src/Object/Post.php:381 msgid "Unignore thread" msgstr "" -#: src/Object/Post.php:383 +#: src/Object/Post.php:382 msgid "Toggle ignore status" msgstr "" -#: src/Object/Post.php:393 +#: src/Object/Post.php:392 msgid "Add star" msgstr "" -#: src/Object/Post.php:394 +#: src/Object/Post.php:393 msgid "Remove star" msgstr "" -#: src/Object/Post.php:395 +#: src/Object/Post.php:394 msgid "Toggle star status" msgstr "" -#: src/Object/Post.php:406 +#: src/Object/Post.php:405 msgid "Pin" msgstr "" -#: src/Object/Post.php:407 +#: src/Object/Post.php:406 msgid "Unpin" msgstr "" -#: src/Object/Post.php:408 +#: src/Object/Post.php:407 msgid "Toggle pin status" msgstr "" -#: src/Object/Post.php:411 +#: src/Object/Post.php:410 msgid "Pinned" msgstr "" -#: src/Object/Post.php:416 +#: src/Object/Post.php:415 msgid "Add tag" msgstr "" -#: src/Object/Post.php:429 +#: src/Object/Post.php:430 msgid "Quote share this" msgstr "" -#: src/Object/Post.php:429 +#: src/Object/Post.php:430 msgid "Quote Share" msgstr "" -#: src/Object/Post.php:432 +#: src/Object/Post.php:433 msgid "Reshare this" msgstr "" -#: src/Object/Post.php:432 +#: src/Object/Post.php:433 msgid "Reshare" msgstr "" -#: src/Object/Post.php:433 +#: src/Object/Post.php:434 msgid "Cancel your Reshare" msgstr "" -#: src/Object/Post.php:433 +#: src/Object/Post.php:434 msgid "Unshare" msgstr "" -#: src/Object/Post.php:485 +#: src/Object/Post.php:478 #, php-format msgid "%s (Received %s)" msgstr "" -#: src/Object/Post.php:491 +#: src/Object/Post.php:484 msgid "Comment this item on your system" msgstr "" -#: src/Object/Post.php:491 +#: src/Object/Post.php:484 msgid "Remote comment" msgstr "" -#: src/Object/Post.php:513 +#: src/Object/Post.php:506 msgid "Share via ..." msgstr "" -#: src/Object/Post.php:513 +#: src/Object/Post.php:506 msgid "Share via external services" msgstr "" -#: src/Object/Post.php:520 +#: src/Object/Post.php:513 msgid "Unknown parent" msgstr "" -#: src/Object/Post.php:524 +#: src/Object/Post.php:517 #, php-format msgid "in reply to %s" msgstr "" -#: src/Object/Post.php:526 +#: src/Object/Post.php:519 msgid "Parent is probably private or not federated." msgstr "" -#: src/Object/Post.php:550 +#: src/Object/Post.php:543 msgid "to" msgstr "a" -#: src/Object/Post.php:551 +#: src/Object/Post.php:544 msgid "via" msgstr "via" -#: src/Object/Post.php:552 +#: src/Object/Post.php:545 msgid "Wall-to-Wall" msgstr "Mur-a-Mur" -#: src/Object/Post.php:553 +#: src/Object/Post.php:546 msgid "via Wall-To-Wall:" msgstr "via Mur-a-Mur" -#: src/Object/Post.php:604 +#: src/Object/Post.php:599 #, php-format msgid "Reply to %s" msgstr "" -#: src/Object/Post.php:607 +#: src/Object/Post.php:602 msgid "More" msgstr "" -#: src/Object/Post.php:626 +#: src/Object/Post.php:621 msgid "Notifier task is pending" msgstr "" -#: src/Object/Post.php:627 +#: src/Object/Post.php:622 msgid "Delivery to remote servers is pending" msgstr "" -#: src/Object/Post.php:628 +#: src/Object/Post.php:623 msgid "Delivery to remote servers is underway" msgstr "" -#: src/Object/Post.php:629 +#: src/Object/Post.php:624 msgid "Delivery to remote servers is mostly done" msgstr "" -#: src/Object/Post.php:630 +#: src/Object/Post.php:625 msgid "Delivery to remote servers is done" msgstr "" -#: src/Object/Post.php:652 +#: src/Object/Post.php:647 #, php-format msgid "%d comment" msgid_plural "%d comments" msgstr[0] "%d comentari" msgstr[1] "%d comentaris" -#: src/Object/Post.php:653 +#: src/Object/Post.php:648 msgid "Show more" msgstr "" -#: src/Object/Post.php:654 +#: src/Object/Post.php:649 msgid "Show fewer" msgstr "" -#: src/Object/Post.php:691 +#: src/Object/Post.php:686 #, php-format msgid "Reshared by: %s" msgstr "" -#: src/Object/Post.php:696 +#: src/Object/Post.php:691 #, php-format msgid "Viewed by: %s" msgstr "" -#: src/Object/Post.php:701 +#: src/Object/Post.php:696 #, php-format msgid "Read by: %s" msgstr "" -#: src/Object/Post.php:706 +#: src/Object/Post.php:701 #, php-format msgid "Liked by: %s" msgstr "" -#: src/Object/Post.php:711 +#: src/Object/Post.php:706 #, php-format msgid "Disliked by: %s" msgstr "" -#: src/Object/Post.php:716 +#: src/Object/Post.php:711 #, php-format msgid "Attended by: %s" msgstr "" -#: src/Object/Post.php:721 +#: src/Object/Post.php:716 #, php-format msgid "Maybe attended by: %s" msgstr "" -#: src/Object/Post.php:726 +#: src/Object/Post.php:721 #, php-format msgid "Not attended by: %s" msgstr "" -#: src/Object/Post.php:731 +#: src/Object/Post.php:726 #, php-format msgid "Commented by: %s" msgstr "" -#: src/Object/Post.php:736 +#: src/Object/Post.php:731 #, php-format msgid "Reacted with %s by: %s" msgstr "" -#: src/Object/Post.php:759 +#: src/Object/Post.php:754 #, php-format msgid "Quote shared by: %s" msgstr "" -#: src/Protocol/ActivityPub/Receiver.php:568 +#: src/Protocol/ActivityPub/Receiver.php:557 msgid "Chat" msgstr "" -#: src/Protocol/Delivery.php:547 +#: src/Protocol/Delivery.php:530 msgid "(no subject)" msgstr "" -#: src/Protocol/OStatus.php:1390 -#, php-format -msgid "%s is now following %s." -msgstr "" - -#: src/Protocol/OStatus.php:1391 -msgid "following" -msgstr "seguint" - -#: src/Protocol/OStatus.php:1394 -#, php-format -msgid "%s stopped following %s." -msgstr "" - -#: src/Protocol/OStatus.php:1395 -msgid "stopped following" -msgstr "Deixar de seguir" - -#: src/Render/FriendicaSmartyEngine.php:56 +#: src/Render/FriendicaSmartyEngine.php:42 #, php-format msgid "The folder %s must be writable by webserver." msgstr "" -#: src/Security/Authentication.php:227 +#: src/Security/Authentication.php:200 msgid "Login failed." msgstr "Error d'accés." -#: src/Security/Authentication.php:272 +#: src/Security/Authentication.php:245 msgid "Login failed. Please check your credentials." msgstr "" -#: src/Security/Authentication.php:391 +#: src/Security/Authentication.php:359 #, php-format msgid "Welcome %s" msgstr "" -#: src/Security/Authentication.php:392 +#: src/Security/Authentication.php:360 msgid "Please upload a profile photo." msgstr "Per favor, carrega una foto per al perfil" -#: src/Util/EMailer/MailBuilder.php:260 +#: src/Security/OpenWebAuth.php:149 +#, php-format +msgid "OpenWebAuth: %1$s welcomes %2$s" +msgstr "" + +#: src/Util/EMailer/MailBuilder.php:246 msgid "Friendica Notification" msgstr "" -#: src/Util/EMailer/NotifyMailBuilder.php:78 -#: src/Util/EMailer/SystemMailBuilder.php:54 +#: src/Util/EMailer/NotifyMailBuilder.php:64 +#: src/Util/EMailer/SystemMailBuilder.php:40 #, php-format msgid "%1$s, %2$s Administrator" msgstr "" -#: src/Util/EMailer/NotifyMailBuilder.php:80 -#: src/Util/EMailer/SystemMailBuilder.php:56 +#: src/Util/EMailer/NotifyMailBuilder.php:66 +#: src/Util/EMailer/SystemMailBuilder.php:42 #, php-format msgid "%s Administrator" msgstr "" -#: src/Util/EMailer/NotifyMailBuilder.php:193 -#: src/Util/EMailer/NotifyMailBuilder.php:217 -#: src/Util/EMailer/SystemMailBuilder.php:101 -#: src/Util/EMailer/SystemMailBuilder.php:118 +#: src/Util/EMailer/NotifyMailBuilder.php:179 +#: src/Util/EMailer/NotifyMailBuilder.php:203 +#: src/Util/EMailer/SystemMailBuilder.php:87 +#: src/Util/EMailer/SystemMailBuilder.php:104 msgid "thanks" msgstr "" -#: src/Util/Temporal.php:172 +#: src/Util/Temporal.php:158 msgid "YYYY-MM-DD or MM-DD" msgstr "" -#: src/Util/Temporal.php:280 +#: src/Util/Temporal.php:266 #, php-format msgid "Time zone: %s Change in Settings" msgstr "" -#: src/Util/Temporal.php:320 src/Util/Temporal.php:329 +#: src/Util/Temporal.php:306 src/Util/Temporal.php:315 msgid "never" msgstr "" -#: src/Util/Temporal.php:343 +#: src/Util/Temporal.php:329 msgid "less than a second ago" msgstr "" -#: src/Util/Temporal.php:352 +#: src/Util/Temporal.php:338 msgid "year" msgstr "" -#: src/Util/Temporal.php:352 +#: src/Util/Temporal.php:338 msgid "years" msgstr "" -#: src/Util/Temporal.php:353 +#: src/Util/Temporal.php:339 msgid "months" msgstr "" -#: src/Util/Temporal.php:354 +#: src/Util/Temporal.php:340 msgid "weeks" msgstr "" -#: src/Util/Temporal.php:355 +#: src/Util/Temporal.php:341 msgid "days" msgstr "" -#: src/Util/Temporal.php:356 +#: src/Util/Temporal.php:342 msgid "hour" msgstr "" -#: src/Util/Temporal.php:356 +#: src/Util/Temporal.php:342 msgid "hours" msgstr "" -#: src/Util/Temporal.php:357 +#: src/Util/Temporal.php:343 msgid "minute" msgstr "" -#: src/Util/Temporal.php:357 +#: src/Util/Temporal.php:343 msgid "minutes" msgstr "" -#: src/Util/Temporal.php:358 +#: src/Util/Temporal.php:344 msgid "second" msgstr "" -#: src/Util/Temporal.php:358 +#: src/Util/Temporal.php:344 msgid "seconds" msgstr "" -#: src/Util/Temporal.php:367 +#: src/Util/Temporal.php:353 #, php-format msgid "in %1$d %2$s" msgstr "" -#: src/Util/Temporal.php:370 +#: src/Util/Temporal.php:356 #, php-format msgid "%1$d %2$s ago" msgstr "" -#: src/Worker/PushSubscription.php:110 +#: src/Worker/PushSubscription.php:96 msgid "Notification from Friendica" msgstr "" -#: src/Worker/PushSubscription.php:111 +#: src/Worker/PushSubscription.php:97 msgid "Empty Post" msgstr "" -#: view/theme/duepuntozero/config.php:68 +#: view/theme/duepuntozero/config.php:56 msgid "default" msgstr "" -#: view/theme/duepuntozero/config.php:69 +#: view/theme/duepuntozero/config.php:57 msgid "greenzero" msgstr "" -#: view/theme/duepuntozero/config.php:70 +#: view/theme/duepuntozero/config.php:58 msgid "purplezero" msgstr "" -#: view/theme/duepuntozero/config.php:71 +#: view/theme/duepuntozero/config.php:59 msgid "easterbunny" msgstr "" -#: view/theme/duepuntozero/config.php:72 +#: view/theme/duepuntozero/config.php:60 msgid "darkzero" msgstr "" -#: view/theme/duepuntozero/config.php:73 +#: view/theme/duepuntozero/config.php:61 msgid "comix" msgstr "" -#: view/theme/duepuntozero/config.php:74 +#: view/theme/duepuntozero/config.php:62 msgid "slackr" msgstr "" -#: view/theme/duepuntozero/config.php:87 +#: view/theme/duepuntozero/config.php:75 msgid "Variations" msgstr "" -#: view/theme/frio/config.php:146 +#: view/theme/frio/config.php:134 msgid "Note" msgstr "" -#: view/theme/frio/config.php:146 +#: view/theme/frio/config.php:134 msgid "Check image permissions if all users are allowed to see the image" msgstr "" -#: view/theme/frio/config.php:152 +#: view/theme/frio/config.php:140 msgid "Appearance" msgstr "" -#: view/theme/frio/config.php:153 +#: view/theme/frio/config.php:141 msgid "Accent color" msgstr "" -#: view/theme/frio/config.php:153 +#: view/theme/frio/config.php:141 msgid "Blue" msgstr "" -#: view/theme/frio/config.php:153 +#: view/theme/frio/config.php:141 msgid "Red" msgstr "" -#: view/theme/frio/config.php:153 +#: view/theme/frio/config.php:141 msgid "Purple" msgstr "" -#: view/theme/frio/config.php:153 +#: view/theme/frio/config.php:141 msgid "Green" msgstr "" -#: view/theme/frio/config.php:153 +#: view/theme/frio/config.php:141 msgid "Pink" msgstr "" -#: view/theme/frio/config.php:154 +#: view/theme/frio/config.php:142 msgid "Copy or paste schemestring" msgstr "" -#: view/theme/frio/config.php:154 +#: view/theme/frio/config.php:142 msgid "" "You can copy this string to share your theme with others. Pasting here " "applies the schemestring" msgstr "" -#: view/theme/frio/config.php:155 +#: view/theme/frio/config.php:143 msgid "Navigation bar background color" msgstr "" -#: view/theme/frio/config.php:156 +#: view/theme/frio/config.php:144 msgid "Navigation bar icon color " msgstr "" -#: view/theme/frio/config.php:157 +#: view/theme/frio/config.php:145 msgid "Link color" msgstr "" -#: view/theme/frio/config.php:158 +#: view/theme/frio/config.php:146 msgid "Set the background color" msgstr "" -#: view/theme/frio/config.php:159 +#: view/theme/frio/config.php:147 msgid "Content background opacity" msgstr "" -#: view/theme/frio/config.php:160 +#: view/theme/frio/config.php:148 msgid "Set the background image" msgstr "" -#: view/theme/frio/config.php:161 +#: view/theme/frio/config.php:149 msgid "Background image style" msgstr "" -#: view/theme/frio/config.php:164 +#: view/theme/frio/config.php:152 msgid "Always open Compose page" msgstr "" -#: view/theme/frio/config.php:164 +#: view/theme/frio/config.php:152 msgid "" "The New Post button always open the 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:168 +#: view/theme/frio/config.php:156 msgid "Login page background image" msgstr "" -#: view/theme/frio/config.php:172 +#: view/theme/frio/config.php:160 msgid "Login page background color" msgstr "" -#: view/theme/frio/config.php:172 +#: view/theme/frio/config.php:160 msgid "Leave background image and color empty for theme defaults" msgstr "" -#: view/theme/frio/php/Image.php:39 +#: view/theme/frio/php/Image.php:27 msgid "Top Banner" msgstr "" -#: view/theme/frio/php/Image.php:39 +#: view/theme/frio/php/Image.php:27 msgid "" "Resize image to the width of the screen and show background color below on " "long pages." msgstr "" -#: view/theme/frio/php/Image.php:40 +#: view/theme/frio/php/Image.php:28 msgid "Full screen" msgstr "" -#: view/theme/frio/php/Image.php:40 +#: view/theme/frio/php/Image.php:28 msgid "" "Resize image to fill entire screen, clipping either the right or the bottom." msgstr "" -#: view/theme/frio/php/Image.php:41 +#: view/theme/frio/php/Image.php:29 msgid "Single row mosaic" msgstr "" -#: view/theme/frio/php/Image.php:41 +#: view/theme/frio/php/Image.php:29 msgid "" "Resize image to repeat it on a single row, either vertical or horizontal." msgstr "" -#: view/theme/frio/php/Image.php:42 +#: view/theme/frio/php/Image.php:30 msgid "Mosaic" msgstr "" -#: view/theme/frio/php/Image.php:42 +#: view/theme/frio/php/Image.php:30 msgid "Repeat image to fill the screen." msgstr "" -#: view/theme/frio/php/default.php:82 view/theme/frio/php/standard.php:40 +#: view/theme/frio/php/default.php:70 view/theme/frio/php/standard.php:28 msgid "Skip to main content" msgstr "" -#: view/theme/frio/php/default.php:153 view/theme/frio/php/standard.php:75 +#: view/theme/frio/php/default.php:141 view/theme/frio/php/standard.php:63 msgid "Back to top" msgstr "" -#: view/theme/frio/php/scheme.php:105 +#: view/theme/frio/php/scheme.php:93 msgid "Light" msgstr "" -#: view/theme/frio/php/scheme.php:106 +#: view/theme/frio/php/scheme.php:94 msgid "Dark" msgstr "" -#: view/theme/frio/php/scheme.php:107 +#: view/theme/frio/php/scheme.php:95 msgid "Black" msgstr "" -#: view/theme/frio/php/scheme.php:118 +#: view/theme/frio/php/scheme.php:106 msgid "Custom" msgstr "" -#: view/theme/frio/theme.php:214 +#: view/theme/frio/theme.php:202 msgid "Guest" msgstr "" -#: view/theme/frio/theme.php:217 +#: view/theme/frio/theme.php:205 msgid "Visitor" msgstr "" -#: view/theme/quattro/config.php:89 +#: view/theme/quattro/config.php:77 msgid "Alignment" msgstr "" -#: view/theme/quattro/config.php:89 +#: view/theme/quattro/config.php:77 msgid "Left" msgstr "" -#: view/theme/quattro/config.php:89 +#: view/theme/quattro/config.php:77 msgid "Center" msgstr "" -#: view/theme/quattro/config.php:90 +#: view/theme/quattro/config.php:78 msgid "Color scheme" msgstr "" -#: view/theme/quattro/config.php:91 +#: view/theme/quattro/config.php:79 msgid "Posts font size" msgstr "" -#: view/theme/quattro/config.php:92 +#: view/theme/quattro/config.php:80 msgid "Textareas font size" msgstr "" -#: view/theme/vier/config.php:91 +#: view/theme/vier/config.php:79 msgid "Comma separated list of helper groups" msgstr "" -#: view/theme/vier/config.php:131 +#: view/theme/vier/config.php:119 msgid "don't show" msgstr "" -#: view/theme/vier/config.php:131 +#: view/theme/vier/config.php:119 msgid "show" msgstr "" -#: view/theme/vier/config.php:137 +#: view/theme/vier/config.php:125 msgid "Set style" msgstr "" -#: view/theme/vier/config.php:138 +#: view/theme/vier/config.php:126 msgid "Community Pages" msgstr "" -#: view/theme/vier/config.php:139 view/theme/vier/theme.php:148 +#: view/theme/vier/config.php:127 view/theme/vier/theme.php:136 msgid "Community Profiles" msgstr "" -#: view/theme/vier/config.php:140 +#: view/theme/vier/config.php:128 msgid "Help or @NewHere ?" msgstr "" -#: view/theme/vier/config.php:141 view/theme/vier/theme.php:319 +#: view/theme/vier/config.php:129 view/theme/vier/theme.php:307 msgid "Connect Services" msgstr "" -#: view/theme/vier/config.php:142 +#: view/theme/vier/config.php:130 msgid "Find Friends" msgstr "" -#: view/theme/vier/config.php:143 view/theme/vier/theme.php:175 +#: view/theme/vier/config.php:131 view/theme/vier/theme.php:163 msgid "Last users" msgstr "" -#: view/theme/vier/theme.php:234 +#: view/theme/vier/theme.php:222 msgid "Quick Start" msgstr "" diff --git a/view/lang/ca/strings.php b/view/lang/ca/strings.php index 6cb3101877..1f553c14aa 100644 --- a/view/lang/ca/strings.php +++ b/view/lang/ca/strings.php @@ -232,6 +232,9 @@ $a->strings['Post Composition Features'] = 'Característiques de Composició d\' $a->strings['Post/Comment Tools'] = 'Eines d\'Enviaments/Comentaris'; $a->strings['Post Categories'] = 'Categories en Enviaments'; $a->strings['Add categories to your posts'] = 'Afegeix categories als teus enviaments'; +$a->strings['Archives'] = 'Arxius'; +$a->strings['Saved Searches'] = 'Cerques Guardades'; +$a->strings['Saved Folders'] = 'Carpetes Guardades'; $a->strings['show more'] = 'Mostrar més'; $a->strings['event'] = 'esdeveniment'; $a->strings['status'] = 'estatus'; @@ -323,14 +326,12 @@ $a->strings['Invite Friends'] = 'Invita Amics'; $a->strings['Global Directory'] = 'Directori Global'; $a->strings['Local Directory'] = 'Directori Local'; $a->strings['All Contacts'] = 'Tots els Contactes'; -$a->strings['Saved Folders'] = 'Carpetes Guardades'; $a->strings['Everything'] = 'Tot'; $a->strings['Categories'] = 'Categories'; $a->strings['%d contact in common'] = [ 0 => '%d contacte en comú', 1 => '%d contactes en comú', ]; -$a->strings['Archives'] = 'Arxius'; $a->strings['Export'] = 'Exportar'; $a->strings['Export calendar as ical'] = 'Exportar calendari com ical'; $a->strings['Export calendar as csv'] = 'Exportar calendari com csv'; @@ -341,7 +342,6 @@ $a->strings['%d Contact'] = [ ]; $a->strings['View Contacts'] = 'Veure Contactes'; $a->strings['Remove term'] = 'Traieu termini'; -$a->strings['Saved Searches'] = 'Cerques Guardades'; $a->strings['Location:'] = 'Ubicació:'; $a->strings['Mutuals'] = 'Mútues'; $a->strings['Post to Email'] = 'Correu per enviar'; @@ -456,7 +456,6 @@ $a->strings['An author or name was not found.'] = 'Un autor o nom no va ser trob $a->strings['No browser URL could be matched to this address.'] = 'Cap direcció URL del navegador coincideix amb aquesta adreça.'; $a->strings['Unable to match @-style Identity Address with a known protocol or email contact.'] = 'Incapaç de trobar coincidències amb la Adreça d\'Identitat estil @ amb els protocols coneguts o contactes de correu. '; $a->strings['Use mailto: in front of address to force email check.'] = 'Emprar mailto: davant la adreça per a forçar la comprovació del correu.'; -$a->strings['The profile address specified belongs to a network which has been disabled on this site.'] = 'La direcció del perfil especificat pertany a una xarxa que ha estat desactivada en aquest lloc.'; $a->strings['Limited profile. This person will be unable to receive direct/personal notifications from you.'] = 'Perfil limitat. Aquesta persona no podrà rebre notificacions personals/directes de tu.'; $a->strings['Unable to retrieve contact information.'] = 'No es pot recuperar la informació de contacte.'; $a->strings['Starts:'] = 'Inici:'; @@ -547,6 +546,8 @@ $a->strings['Failed Updates'] = 'Actualitzacions Fallides'; $a->strings['This does not include updates prior to 1139, which did not return a status.'] = 'Això no inclou actualitzacions anteriors a 1139, raó per la que no ha retornat l\'estatus.'; $a->strings['Mark success (if update was manually applied)'] = 'Marcat am èxit (si l\'actualització es va fer manualment)'; $a->strings['Attempt to execute this update step automatically'] = 'Intentant executar aquest pas d\'actualització automàticament'; +$a->strings['No'] = 'No'; +$a->strings['Yes'] = 'Si'; $a->strings['Other'] = 'Altres'; $a->strings['Logs'] = 'Registres'; $a->strings['Clear'] = 'Netejar'; @@ -681,7 +682,6 @@ $a->strings['Submit Request'] = 'Sol·licitud Enviada'; $a->strings['You already added this contact.'] = 'Ja heu afegit aquest contacte.'; $a->strings['The network type couldn\'t be detected. Contact can\'t be added.'] = 'No s\'ha pogut detectar el tipus de xarxa. El contacte no es pot afegir.'; $a->strings['Diaspora support isn\'t enabled. Contact can\'t be added.'] = 'Diaspora l\'assistència no està habilitada. El contacte no es pot afegir.'; -$a->strings['OStatus support is disabled. Contact can\'t be added.'] = 'OStatus l\'assistència està desactivada. El contacte no es pot afegir.'; $a->strings['Please answer the following:'] = 'Si us plau, contesti les següents preguntes:'; $a->strings['Your Identity Address:'] = 'La Teva Adreça Identificativa:'; $a->strings['Profile URL'] = 'Perfil URL'; @@ -720,7 +720,6 @@ $a->strings['Replies/likes to your public posts may still be vi $a->strings['Status'] = 'Estatus'; $a->strings['Toggle Blocked status'] = 'Canvi de estatus blocat'; $a->strings['Toggle Ignored status'] = 'Canvi de estatus ignorat'; -$a->strings['Yes'] = 'Si'; $a->strings['No suggestions available. If this is a new site, please try again in 24 hours.'] = 'Cap suggeriment disponible. Si això és un nou lloc, si us plau torna a intentar en 24 hores.'; $a->strings['You aren\'t following this contact.'] = 'No seguiu aquest contacte.'; $a->strings['Unfollowing is currently not supported by your network.'] = 'Actualment, la vostra xarxa no és compatible amb el fet de seguir.'; @@ -814,7 +813,6 @@ $a->strings['Deny'] = 'Denegar'; $a->strings['Show Ignored Requests'] = 'Mostra les Sol·licituds Ignorades'; $a->strings['Hide Ignored Requests'] = 'Amaga les Sol·licituds Ignorades'; $a->strings['Claims to be known to you: '] = 'Diu que et coneix:'; -$a->strings['No'] = 'No'; $a->strings['Friend'] = 'Amic'; $a->strings['No introductions.'] = 'Sense presentacions.'; $a->strings['Network Notifications'] = 'Notificacions de la Xarxa'; @@ -824,8 +822,6 @@ $a->strings['Home Notifications'] = 'Notificacions d\'Inici'; $a->strings['{0} requested registration'] = '{0} solicituts de registre'; $a->strings['Authorize application connection'] = 'Autoritzi la connexió de aplicacions'; $a->strings['Do you want to authorize this application to access your posts and contacts, and/or create new posts for you?'] = 'Vol autoritzar a aquesta aplicació per accedir als teus missatges i contactes, i/o crear nous enviaments per a vostè?'; -$a->strings['Resubscribing to OStatus contacts'] = 'Tornar a inscriure’s a OStatus contactes'; -$a->strings['Keep this window open until done.'] = 'Manteniu aquesta finestra oberta fins que no hàgiu acabat.'; $a->strings['No contact provided.'] = 'No s’ha proporcionat cap contacte.'; $a->strings['Couldn\'t fetch information for contact.'] = 'No s\'ha pogut obtenir informació per al contacte.'; $a->strings['Couldn\'t fetch friends for contact.'] = 'No s\'ha pogut buscar amics per contactar-los.'; @@ -833,8 +829,7 @@ $a->strings['Done'] = 'Fet'; $a->strings['success'] = 'èxit'; $a->strings['failed'] = 'suspendre'; $a->strings['ignored'] = 'ignorar'; -$a->strings['Remote privacy information not available.'] = 'Informació de privacitat remota no disponible.'; -$a->strings['Visible to:'] = 'Visible per a:'; +$a->strings['Keep this window open until done.'] = 'Manteniu aquesta finestra oberta fins que no hàgiu acabat.'; $a->strings['Edit post'] = 'Editar Enviament'; $a->strings['web link'] = 'enllaç de web'; $a->strings['Insert video link'] = 'Insertar enllaç de video'; @@ -844,6 +839,8 @@ $a->strings['audio link'] = 'enllaç de audio'; $a->strings['Remove Item Tag'] = 'Esborrar etiqueta del element'; $a->strings['Select a tag to remove: '] = 'Selecciona etiqueta a esborrar:'; $a->strings['Remove'] = 'Esborrar'; +$a->strings['Remote privacy information not available.'] = 'Informació de privacitat remota no disponible.'; +$a->strings['Visible to:'] = 'Visible per a:'; $a->strings['No contacts.'] = 'Sense Contactes'; $a->strings['Image file is empty.'] = 'El fitxer de imatge és buit.'; $a->strings['View Album'] = 'Veure Àlbum'; @@ -943,7 +940,6 @@ $a->strings['Failed to connect with email account using the settings provided.'] $a->strings['Email access is disabled on this site.'] = 'L\'accés al correu està deshabilitat en aquest lloc.'; $a->strings['None'] = 'Cap'; $a->strings['General Social Media Settings'] = 'Configuració general de les xarxes socials'; -$a->strings['Repair OStatus subscriptions'] = 'Repara les subscripcions a OStatus'; $a->strings['Email/Mailbox Setup'] = 'Preparació de Correu/Bústia'; $a->strings['If you wish to communicate with email contacts using this service (optional), please specify how to connect to your mailbox.'] = 'Si vol comunicar-se amb els contactes de correu emprant aquest servei (opcional), Si us plau, especifiqui com connectar amb la seva bústia.'; $a->strings['Last successful email check:'] = 'Última comprovació de correu amb èxit:'; @@ -1082,7 +1078,6 @@ $a->strings['%s commented on %s\'s post'] = '%s va comentar en l\'enviament de % $a->strings['%s created a new post'] = '%s ha creat un enviament nou'; $a->strings['Friend Suggestion'] = 'Amics Suggerits '; $a->strings['Friend/Connect Request'] = 'Sol·licitud d\'Amistat/Connexió'; -$a->strings['New Follower'] = 'Nou Seguidor'; $a->strings['%1$s sent you a new private message at %2$s.'] = '%1$s t\'ha enviat un missatge privat nou en %2$s.'; $a->strings['a private message'] = 'un missatge privat'; $a->strings['%1$s sent you %2$s.'] = '%1$s t\'ha enviat %2$s.'; @@ -1128,7 +1123,5 @@ $a->strings['%d comment'] = [ 0 => '%d comentari', 1 => '%d comentaris', ]; -$a->strings['following'] = 'seguint'; -$a->strings['stopped following'] = 'Deixar de seguir'; $a->strings['Login failed.'] = 'Error d\'accés.'; $a->strings['Please upload a profile photo.'] = 'Per favor, carrega una foto per al perfil'; diff --git a/view/lang/cs/messages.po b/view/lang/cs/messages.po index e8e066ba2e..ab72eb9bea 100644 --- a/view/lang/cs/messages.po +++ b/view/lang/cs/messages.po @@ -1,8 +1,7 @@ # FRIENDICA Distributed Social Network -# SPDX-FileCopyrightText: Copyright (C) 2010-2024, the Friendica project -# -# SPDX-License-Identifier: AGPL-3.0-or-later -# +# Copyright (C) 2010-2024, the Friendica project +# This file is distributed under the same license as the Friendica package. +# # Translators: # Aditoo, 2018-2019 # Josef Moravek , 2014 @@ -14,7 +13,7 @@ msgid "" msgstr "" "Project-Id-Version: friendica\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-05-15 12:16+0000\n" +"POT-Creation-Date: 2024-10-07 20:46+0000\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" @@ -24,77 +23,77 @@ msgstr "" "Language: cs\n" "Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n <= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\n" -#: mod/item.php:101 mod/item.php:104 mod/item.php:171 mod/item.php:174 +#: mod/item.php:89 mod/item.php:92 mod/item.php:159 mod/item.php:162 msgid "Unable to locate original post." msgstr "Nelze nalézt původní příspěvek." -#: mod/item.php:139 +#: mod/item.php:127 msgid "Post updated." msgstr "" -#: mod/item.php:204 mod/item.php:208 +#: mod/item.php:192 mod/item.php:196 msgid "Item wasn't stored." msgstr "" -#: mod/item.php:218 +#: mod/item.php:206 msgid "Item couldn't be fetched." msgstr "" -#: mod/item.php:260 mod/item.php:264 +#: mod/item.php:250 mod/item.php:254 msgid "Empty post discarded." msgstr "Prázdný příspěvek odstraněn." -#: mod/item.php:435 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 +#: mod/item.php:425 src/Module/Admin/Themes/Details.php:31 +#: src/Module/Admin/Themes/Index.php:51 src/Module/Debug/ItemBody.php:28 +#: src/Module/Debug/ItemBody.php:43 src/Module/Item/Feed.php:66 msgid "Item not found." msgstr "Položka nenalezena." -#: mod/item.php:459 mod/message.php:66 mod/message.php:112 mod/notes.php:45 -#: mod/photos.php:146 mod/photos.php:662 src/Model/Event.php:520 -#: src/Module/Attach.php:55 src/Module/BaseApi.php:103 -#: src/Module/BaseNotifications.php:98 src/Module/BaseSettings.php:50 -#: src/Module/Calendar/Event/API.php:88 src/Module/Calendar/Event/Form.php:84 -#: src/Module/Calendar/Export.php:82 src/Module/Calendar/Show.php:82 -#: src/Module/Circle.php:41 src/Module/Circle.php:84 -#: src/Module/Contact/Advanced.php:60 src/Module/Contact/Follow.php:87 -#: src/Module/Contact/Follow.php:160 src/Module/Contact/MatchInterests.php:87 -#: src/Module/Contact/Suggestions.php:54 src/Module/Contact/Unfollow.php:66 -#: src/Module/Contact/Unfollow.php:80 src/Module/Contact/Unfollow.php:112 -#: src/Module/FollowConfirm.php:38 src/Module/FriendSuggest.php:57 -#: src/Module/Invite.php:42 src/Module/Invite.php:131 -#: src/Module/Notifications/Notification.php:76 -#: src/Module/Notifications/Notification.php:107 -#: src/Module/OStatus/Repair.php:60 src/Module/OStatus/Subscribe.php:68 -#: src/Module/Post/Edit.php:76 src/Module/Profile/Common.php:75 -#: src/Module/Profile/Contacts.php:78 src/Module/Profile/Photos.php:92 -#: src/Module/Profile/Schedule.php:39 src/Module/Profile/Schedule.php:56 -#: src/Module/Register.php:78 src/Module/Register.php:91 -#: src/Module/Register.php:207 src/Module/Register.php:246 -#: src/Module/Search/Directory.php:37 src/Module/Settings/Account.php:50 -#: src/Module/Settings/Account.php:386 src/Module/Settings/Channels.php:66 -#: src/Module/Settings/Channels.php:141 src/Module/Settings/Delegation.php:90 -#: src/Module/Settings/Display.php:90 src/Module/Settings/Display.php:197 -#: src/Module/Settings/Profile/Photo/Crop.php:165 -#: src/Module/Settings/Profile/Photo/Index.php:110 -#: src/Module/Settings/RemoveMe.php:119 src/Module/Settings/UserExport.php:78 -#: src/Module/Settings/UserExport.php:114 -#: src/Module/Settings/UserExport.php:213 -#: src/Module/Settings/UserExport.php:233 -#: src/Module/Settings/UserExport.php:298 src/Module/User/Delegation.php:154 -#: src/Module/User/Import.php:85 src/Module/User/Import.php:92 +#: mod/item.php:449 mod/message.php:54 mod/message.php:100 mod/notes.php:33 +#: mod/photos.php:135 mod/photos.php:627 src/Model/Event.php:506 +#: src/Module/Attach.php:41 src/Module/BaseApi.php:89 +#: src/Module/BaseNotifications.php:84 src/Module/BaseSettings.php:36 +#: src/Module/Calendar/Event/API.php:74 src/Module/Calendar/Event/Form.php:70 +#: src/Module/Calendar/Export.php:68 src/Module/Calendar/Show.php:68 +#: src/Module/Circle.php:27 src/Module/Circle.php:70 +#: src/Module/Contact/Advanced.php:46 src/Module/Contact/Follow.php:73 +#: src/Module/Contact/Follow.php:141 src/Module/Contact/MatchInterests.php:73 +#: src/Module/Contact/Suggestions.php:40 src/Module/Contact/Unfollow.php:52 +#: src/Module/Contact/Unfollow.php:66 src/Module/Contact/Unfollow.php:98 +#: src/Module/FollowConfirm.php:24 src/Module/FriendSuggest.php:43 +#: src/Module/Invite.php:28 src/Module/Invite.php:117 +#: src/Module/Notifications/Notification.php:62 +#: src/Module/Notifications/Notification.php:93 +#: src/Module/OStatus/Subscribe.php:54 src/Module/Post/Edit.php:62 +#: src/Module/Profile/Common.php:61 src/Module/Profile/Contacts.php:64 +#: src/Module/Profile/Photos.php:78 src/Module/Profile/Schedule.php:25 +#: src/Module/Profile/Schedule.php:42 src/Module/Register.php:70 +#: src/Module/Register.php:83 src/Module/Register.php:199 +#: src/Module/Register.php:238 src/Module/Search/Directory.php:23 +#: src/Module/Settings/Account.php:36 src/Module/Settings/Account.php:377 +#: src/Module/Settings/Channels.php:52 src/Module/Settings/Channels.php:127 +#: src/Module/Settings/Delegation.php:76 src/Module/Settings/Display.php:76 +#: src/Module/Settings/Display.php:183 +#: src/Module/Settings/Profile/Photo/Crop.php:151 +#: src/Module/Settings/Profile/Photo/Index.php:96 +#: src/Module/Settings/RemoveMe.php:105 src/Module/Settings/UserExport.php:64 +#: src/Module/Settings/UserExport.php:100 +#: src/Module/Settings/UserExport.php:199 +#: src/Module/Settings/UserExport.php:219 +#: src/Module/Settings/UserExport.php:284 src/Module/User/Delegation.php:140 +#: src/Module/User/Import.php:71 src/Module/User/Import.php:78 msgid "Permission denied." msgstr "Přístup odmítnut." -#: mod/lostpass.php:40 +#: mod/lostpass.php:28 msgid "No valid account found." msgstr "Nenalezen žádný platný účet." -#: mod/lostpass.php:52 +#: mod/lostpass.php:40 msgid "Password reset request issued. Check your email." msgstr "Požadavek o obnovení hesla vyřízen. Zkontrolujte Vaši e-mailovou schránku." -#: mod/lostpass.php:58 +#: mod/lostpass.php:46 #, php-format msgid "" "\n" @@ -110,7 +109,7 @@ msgid "" "\t\tissued this request." msgstr "\n\t\tVážený/á %1$s,\n\t\t\tPřed nedávnem jsme obdrželi na „%2$s“ požadavek o obnovení\n\t\thesla k vašemu účtu. Pro potvrzení tohoto požadavku, prosím klikněte na odkaz\n\t\tpro ověření dole, nebo ho zkopírujte do adresního řádku vašeho prohlížeče.\n\n\t\tPokud jste o tuto změnu NEPOŽÁDAL/A, prosím NEKLIKEJTE na tento odkaz\n\t\ta ignorujte a/nebo smažte tento e-mail. Platnost požadavku brzy vyprší.\n\n\t\tVaše heslo nebude změněno, dokud nedokážeme ověřit, že jste tento\n\t\tpožadavek nevydal/a vy." -#: mod/lostpass.php:69 +#: mod/lostpass.php:57 #, php-format msgid "" "\n" @@ -127,70 +126,70 @@ msgid "" "\t\tLogin Name:\t%3$s" msgstr "\n\t\tKlikněte na tento odkaz brzy pro ověření vaší identity:\n\n\t\t%1$s\n\n\t\tObdržíte poté následnou zprávu obsahující nové heslo.\n\t\tPo přihlášení můžete toto heslo změnit na stránce nastavení vašeho účtu.\n\n\t\tZde jsou vaše přihlašovací detaily:\n\n\t\tAdresa stránky:\t\t%2$s\n\t\tPřihlašovací jméno:\t%3$s" -#: mod/lostpass.php:84 +#: mod/lostpass.php:72 #, php-format msgid "Password reset requested at %s" msgstr "Na %s bylo požádáno o obnovení hesla" -#: mod/lostpass.php:100 +#: mod/lostpass.php:88 msgid "" "Request could not be verified. (You may have previously submitted it.) " "Password reset failed." msgstr "Požadavek nemohl být ověřen. (Možná jste jej odeslal/a již dříve.) Obnovení hesla se nezdařilo." -#: mod/lostpass.php:113 +#: mod/lostpass.php:101 msgid "Request has expired, please make a new one." msgstr "Platnost požadavku vypršela, prosím vytvořte nový." -#: mod/lostpass.php:128 +#: mod/lostpass.php:116 msgid "Forgot your Password?" msgstr "Zapomněl/a jste heslo?" -#: mod/lostpass.php:129 +#: mod/lostpass.php:117 msgid "" "Enter your email address and submit to have your password reset. Then check " "your email for further instructions." msgstr "Zadejte svůj e-mailovou adresu a odešlete pro obnovení vašeho hesla. Poté zkontrolujte svůj e-mail pro další instrukce." -#: mod/lostpass.php:130 src/Module/Security/Login.php:160 +#: mod/lostpass.php:118 src/Module/Security/Login.php:150 msgid "Nickname or Email: " msgstr "Přezdívka nebo e-mail: " -#: mod/lostpass.php:131 +#: mod/lostpass.php:119 msgid "Reset" msgstr "Obnovit" -#: mod/lostpass.php:146 src/Module/Security/Login.php:172 +#: mod/lostpass.php:134 src/Module/Security/Login.php:162 msgid "Password Reset" msgstr "Obnovit heslo" -#: mod/lostpass.php:147 +#: mod/lostpass.php:135 msgid "Your password has been reset as requested." msgstr "Vaše heslo bylo na vaše přání obnoveno." -#: mod/lostpass.php:148 +#: mod/lostpass.php:136 msgid "Your new password is" msgstr "Někdo vám napsal na vaši profilovou stránku" -#: mod/lostpass.php:149 +#: mod/lostpass.php:137 msgid "Save or copy your new password - and then" msgstr "Uložte si nebo zkopírujte nové heslo - a pak" -#: mod/lostpass.php:150 +#: mod/lostpass.php:138 msgid "click here to login" msgstr "klikněte zde pro přihlášení" -#: mod/lostpass.php:151 +#: mod/lostpass.php:139 msgid "" "Your password may be changed from the Settings page after " "successful login." msgstr "Nezdá se, že by to bylo vaše celé jméno (křestní jméno a příjmení)." -#: mod/lostpass.php:155 +#: mod/lostpass.php:143 msgid "Your password has been reset." msgstr "" -#: mod/lostpass.php:158 +#: mod/lostpass.php:146 #, php-format msgid "" "\n" @@ -201,7 +200,7 @@ msgid "" "\t\t" msgstr "\n\t\t\tVážený/á %1$s,\n\t\t\t\tVaše heslo bylo změněno, jak jste požádal/a. Prosím uchovejte\n\t\t\ttyto informace pro vaše záznamy (nebo si ihned změňte heslo na něco,\n\t\t\tco si zapamatujete).\n\t\t" -#: mod/lostpass.php:164 +#: mod/lostpass.php:152 #, php-format msgid "" "\n" @@ -215,161 +214,161 @@ msgid "" "\t\t" msgstr "\n\t\t\tZde jsou vaše přihlašovací detaily:\n\n\t\t\tAdresa stránky:\t\t%1$s\n\t\t\tPřihlašovací jméno:\t%2$s\n\t\t\tHeslo:\t\t\t%3$s\n\n\t\t\tToto heslo si po přihlášení můžete změnit na stránce nastavení Vašeho účtu.\n\t\t" -#: mod/lostpass.php:176 +#: mod/lostpass.php:164 #, php-format msgid "Your password has been changed at %s" msgstr "Vaše heslo bylo změněno na %s" -#: mod/message.php:45 mod/message.php:127 src/Content/Nav.php:321 +#: mod/message.php:33 mod/message.php:115 src/Content/Nav.php:307 msgid "New Message" msgstr "Nová zpráva" -#: mod/message.php:81 +#: mod/message.php:69 msgid "No recipient selected." msgstr "Nevybrán příjemce." -#: mod/message.php:86 +#: mod/message.php:74 msgid "Unable to locate contact information." msgstr "Nepodařilo se najít kontaktní informace." -#: mod/message.php:90 +#: mod/message.php:78 msgid "Message could not be sent." msgstr "Zprávu se nepodařilo odeslat." -#: mod/message.php:94 +#: mod/message.php:82 msgid "Message collection failure." msgstr "Sběr zpráv selhal." -#: mod/message.php:121 src/Module/Notifications/Introductions.php:135 -#: src/Module/Notifications/Introductions.php:170 -#: src/Module/Notifications/Notification.php:85 +#: mod/message.php:109 src/Module/Notifications/Introductions.php:127 +#: src/Module/Notifications/Introductions.php:162 +#: src/Module/Notifications/Notification.php:71 msgid "Discard" msgstr "Odstranit" -#: mod/message.php:134 src/Content/Nav.php:318 view/theme/frio/theme.php:244 +#: mod/message.php:122 src/Content/Nav.php:304 view/theme/frio/theme.php:232 msgid "Messages" msgstr "Zprávy" -#: mod/message.php:147 +#: mod/message.php:135 msgid "Conversation not found." msgstr "Konverzace nenalezena." -#: mod/message.php:152 +#: mod/message.php:140 msgid "Message was not deleted." msgstr "" -#: mod/message.php:167 +#: mod/message.php:155 msgid "Conversation was not removed." msgstr "" -#: mod/message.php:180 mod/message.php:285 +#: mod/message.php:168 mod/message.php:273 msgid "Please enter a link URL:" msgstr "Zadejte prosím URL odkaz:" -#: mod/message.php:189 +#: mod/message.php:177 msgid "Send Private Message" msgstr "Odeslat soukromou zprávu" -#: mod/message.php:190 mod/message.php:345 -#: src/Module/Privacy/PermissionTooltip.php:132 +#: mod/message.php:178 mod/message.php:333 +#: src/Module/Privacy/PermissionTooltip.php:118 msgid "To:" msgstr "Adresát:" -#: mod/message.php:191 mod/message.php:346 +#: mod/message.php:179 mod/message.php:334 msgid "Subject:" msgstr "Předmět:" -#: mod/message.php:195 mod/message.php:349 src/Module/Invite.php:171 +#: mod/message.php:183 mod/message.php:337 src/Module/Invite.php:157 msgid "Your message:" msgstr "Vaše zpráva:" -#: mod/message.php:198 mod/message.php:353 src/Content/Conversation.php:369 -#: src/Module/Post/Edit.php:131 +#: mod/message.php:186 mod/message.php:341 src/Content/Conversation.php:355 +#: src/Module/Post/Edit.php:117 msgid "Upload photo" msgstr "Nahrát fotku" -#: mod/message.php:199 mod/message.php:354 src/Module/Post/Edit.php:135 +#: mod/message.php:187 mod/message.php:342 src/Module/Post/Edit.php:121 msgid "Insert web link" msgstr "Vložit webový odkaz" -#: mod/message.php:200 mod/message.php:356 mod/photos.php:1290 -#: src/Content/Conversation.php:400 src/Content/Conversation.php:1576 -#: src/Module/Item/Compose.php:213 src/Module/Post/Edit.php:145 -#: src/Object/Post.php:618 +#: mod/message.php:188 mod/message.php:344 mod/photos.php:1255 +#: src/Content/Conversation.php:386 src/Content/Conversation.php:1562 +#: src/Module/Item/Compose.php:199 src/Module/Post/Edit.php:131 +#: src/Object/Post.php:604 msgid "Please wait" msgstr "Čekejte prosím" -#: mod/message.php:201 mod/message.php:355 mod/photos.php:693 -#: mod/photos.php:813 mod/photos.php:1090 mod/photos.php:1131 -#: mod/photos.php:1187 mod/photos.php:1267 -#: src/Module/Calendar/Event/Form.php:250 src/Module/Contact/Advanced.php:132 +#: mod/message.php:189 mod/message.php:343 mod/photos.php:658 +#: mod/photos.php:778 mod/photos.php:1055 mod/photos.php:1096 +#: mod/photos.php:1152 mod/photos.php:1232 +#: src/Module/Calendar/Event/Form.php:236 src/Module/Contact/Advanced.php:118 #: src/Module/Contact/Profile.php:370 -#: src/Module/Debug/ActivityPubConversion.php:140 -#: 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 -#: src/Module/Invite.php:178 src/Module/Item/Compose.php:196 -#: src/Module/Moderation/Item/Source.php:79 -#: src/Module/Moderation/Report/Create.php:168 -#: src/Module/Moderation/Report/Create.php:183 -#: src/Module/Moderation/Report/Create.php:211 -#: src/Module/Moderation/Report/Create.php:263 -#: src/Module/Profile/Profile.php: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:1159 view/theme/duepuntozero/config.php:85 -#: view/theme/frio/config.php:150 view/theme/quattro/config.php:87 -#: view/theme/vier/config.php:135 +#: src/Module/Debug/ActivityPubConversion.php:132 +#: src/Module/Debug/Babel.php:307 src/Module/Debug/Localtime.php:50 +#: src/Module/Debug/Probe.php:40 src/Module/Debug/WebFinger.php:37 +#: src/Module/FriendSuggest.php:131 src/Module/Install.php:220 +#: src/Module/Install.php:260 src/Module/Install.php:295 +#: src/Module/Invite.php:164 src/Module/Item/Compose.php:182 +#: src/Module/Moderation/Item/Source.php:71 +#: src/Module/Moderation/Report/Create.php:154 +#: src/Module/Moderation/Report/Create.php:169 +#: src/Module/Moderation/Report/Create.php:197 +#: src/Module/Moderation/Report/Create.php:249 +#: src/Module/Profile/Profile.php:262 +#: src/Module/Settings/Profile/Index.php:248 +#: src/Module/Settings/Server/Action.php:65 src/Module/User/Delegation.php:175 +#: src/Object/Post.php:1145 view/theme/duepuntozero/config.php:73 +#: view/theme/frio/config.php:138 view/theme/quattro/config.php:75 +#: view/theme/vier/config.php:123 msgid "Submit" msgstr "Odeslat" -#: mod/message.php:222 +#: mod/message.php:210 msgid "No messages." msgstr "Žádné zprávy." -#: mod/message.php:278 +#: mod/message.php:266 msgid "Message not available." msgstr "Zpráva není k dispozici." -#: mod/message.php:322 +#: mod/message.php:310 msgid "Delete message" msgstr "Smazat zprávu" -#: mod/message.php:324 mod/message.php:453 +#: mod/message.php:312 mod/message.php:441 msgid "D, d M Y - g:i A" msgstr "D d. M Y - g:i A" -#: mod/message.php:339 mod/message.php:450 +#: mod/message.php:327 mod/message.php:438 msgid "Delete conversation" msgstr "Odstranit konverzaci" -#: mod/message.php:341 +#: mod/message.php:329 msgid "" "No secure communications available. You may be able to " "respond from the sender's profile page." msgstr "Není k dispozici zabezpečená komunikace. Možná budete schopen/na reagovat z odesílatelovy profilové stránky." -#: mod/message.php:344 +#: mod/message.php:332 msgid "Send Reply" msgstr "Poslat odpověď" -#: mod/message.php:424 +#: mod/message.php:412 #, php-format msgid "Unknown sender - %s" msgstr "Neznámý odesilatel - %s" -#: mod/message.php:426 +#: mod/message.php:414 #, php-format msgid "You and %s" msgstr "Vy a %s" -#: mod/message.php:428 +#: mod/message.php:416 #, php-format msgid "%s and You" msgstr "%s a vy" -#: mod/message.php:456 +#: mod/message.php:444 #, php-format msgid "%d message" msgid_plural "%d messages" @@ -378,792 +377,799 @@ msgstr[1] "%d zprávy" msgstr[2] "%d zprávy" msgstr[3] "%d zpráv" -#: mod/notes.php:52 src/Module/BaseProfile.php:108 +#: mod/notes.php:40 src/Module/BaseProfile.php:94 msgid "Personal Notes" msgstr "Osobní poznámky" -#: mod/notes.php:56 +#: mod/notes.php:44 msgid "Personal notes are visible only by yourself." msgstr "" -#: mod/notes.php:57 src/Content/Text/HTML.php:861 -#: src/Module/Admin/Storage.php:142 src/Module/Filer/SaveTag.php:74 -#: src/Module/Post/Edit.php:129 src/Module/Settings/Channels.php:229 +#: mod/notes.php:45 src/Content/Text/HTML.php:847 +#: src/Module/Admin/Storage.php:128 src/Module/Filer/SaveTag.php:60 +#: src/Module/Post/Edit.php:115 src/Module/Settings/Channels.php:215 msgid "Save" msgstr "Uložit" -#: mod/photos.php:65 mod/photos.php:128 mod/photos.php:572 -#: src/Model/Event.php:512 src/Model/Profile.php:234 -#: src/Module/Calendar/Export.php:74 src/Module/Calendar/Show.php:74 -#: src/Module/DFRN/Poll.php:43 src/Module/Feed.php:64 src/Module/HCard.php:51 -#: src/Module/Profile/Common.php:62 src/Module/Profile/Common.php:71 -#: src/Module/Profile/Contacts.php:64 src/Module/Profile/Contacts.php:72 -#: src/Module/Profile/Conversations.php:91 src/Module/Profile/Media.php:56 -#: src/Module/Profile/Photos.php:83 src/Module/Profile/RemoteFollow.php:71 -#: src/Module/Register.php:268 +#: mod/photos.php:54 mod/photos.php:117 mod/photos.php:537 +#: src/Model/Event.php:498 src/Model/Profile.php:213 +#: src/Module/Calendar/Export.php:60 src/Module/Calendar/Show.php:60 +#: src/Module/Feed.php:52 src/Module/HCard.php:37 +#: src/Module/Profile/Common.php:48 src/Module/Profile/Common.php:57 +#: src/Module/Profile/Contacts.php:50 src/Module/Profile/Contacts.php:58 +#: src/Module/Profile/Conversations.php:77 src/Module/Profile/Media.php:42 +#: src/Module/Profile/Photos.php:69 src/Module/Profile/RemoteFollow.php:57 +#: src/Module/Register.php:260 msgid "User not found." msgstr "Uživatel nenalezen." -#: mod/photos.php:102 src/Module/BaseProfile.php:68 -#: src/Module/Profile/Photos.php:375 +#: mod/photos.php:91 src/Module/BaseProfile.php:54 +#: src/Module/Profile/Photos.php:361 msgid "Photo Albums" msgstr "Fotoalba" -#: mod/photos.php:103 src/Module/Profile/Photos.php:376 -#: src/Module/Profile/Photos.php:396 +#: mod/photos.php:92 src/Module/Profile/Photos.php:362 +#: src/Module/Profile/Photos.php:382 msgid "Recent Photos" msgstr "Nedávné fotky" -#: mod/photos.php:105 mod/photos.php:861 src/Module/Profile/Photos.php:378 -#: src/Module/Profile/Photos.php:398 +#: mod/photos.php:94 mod/photos.php:826 src/Module/Profile/Photos.php:364 +#: src/Module/Profile/Photos.php:384 msgid "Upload New Photos" msgstr "Nahrát nové fotky" -#: mod/photos.php:117 src/Module/BaseSettings.php:72 -#: src/Module/Profile/Photos.php:359 +#: mod/photos.php:106 src/Module/BaseSettings.php:58 +#: src/Module/Profile/Photos.php:345 msgid "everybody" msgstr "Žádost o připojení selhala nebo byla zrušena." -#: mod/photos.php:153 +#: mod/photos.php:142 msgid "Contact information unavailable" msgstr "Kontakt byl zablokován" -#: mod/photos.php:182 +#: mod/photos.php:171 msgid "Album not found." msgstr "Album nenalezeno." -#: mod/photos.php:238 +#: mod/photos.php:227 msgid "Album successfully deleted" msgstr "Album úspěšně smazáno" -#: mod/photos.php:240 +#: mod/photos.php:229 msgid "Album was empty." msgstr "Album bylo prázdné." -#: mod/photos.php:271 +#: mod/photos.php:260 msgid "Failed to delete the photo." msgstr "" -#: mod/photos.php:539 +#: mod/photos.php:504 msgid "a photo" msgstr "fotce" -#: mod/photos.php:539 +#: mod/photos.php:504 #, 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:576 src/Module/Conversation/Community.php:160 -#: src/Module/Directory.php:48 src/Module/Profile/Photos.php:293 -#: src/Module/Search/Index.php:65 +#: mod/photos.php:541 src/Module/Conversation/Community.php:148 +#: src/Module/Directory.php:35 src/Module/Profile/Photos.php:279 +#: src/Module/Search/Index.php:51 msgid "Public access denied." msgstr "Veřejný přístup odepřen." -#: mod/photos.php:581 +#: mod/photos.php:546 msgid "No photos selected" msgstr "Není vybrána žádná fotka" -#: mod/photos.php:709 +#: mod/photos.php:674 #, php-format msgid "The maximum accepted image size is %s" msgstr "" -#: mod/photos.php:716 +#: mod/photos.php:681 msgid "Upload Photos" msgstr "Nahrát fotky" -#: mod/photos.php:720 mod/photos.php:809 +#: mod/photos.php:685 mod/photos.php:774 msgid "New album name: " msgstr "Název nového alba: " -#: mod/photos.php:721 +#: mod/photos.php:686 msgid "or select existing album:" msgstr "nebo si vyberte existující album:" -#: mod/photos.php:722 +#: mod/photos.php:687 msgid "Do not show a status post for this upload" msgstr "Nezobrazovat pro toto nahrání stavovou zprávu" -#: mod/photos.php:725 mod/photos.php:1086 src/Content/Conversation.php:402 -#: src/Module/Calendar/Event/Form.php:253 src/Module/Post/Edit.php:183 +#: mod/photos.php:690 mod/photos.php:1051 src/Content/Conversation.php:388 +#: src/Module/Calendar/Event/Form.php:239 src/Module/Post/Edit.php:169 msgid "Permissions" msgstr "Oprávnění" -#: mod/photos.php:790 +#: mod/photos.php:755 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:791 mod/photos.php:814 +#: mod/photos.php:756 mod/photos.php:779 msgid "Delete Album" msgstr "Smazat album" -#: mod/photos.php:792 mod/photos.php:892 src/Content/Conversation.php:417 -#: 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 -#: src/Module/Media/Photo/Browser.php:88 src/Module/Post/Edit.php:167 -#: src/Module/Post/Tag/Remove.php:109 src/Module/Profile/RemoteFollow.php:134 -#: src/Module/Security/TwoFactor/SignOut.php:125 +#: mod/photos.php:757 mod/photos.php:857 src/Content/Conversation.php:403 +#: src/Module/Contact/Follow.php:154 src/Module/Contact/Revoke.php:92 +#: src/Module/Contact/Unfollow.php:112 +#: src/Module/Media/Attachment/Browser.php:63 +#: src/Module/Media/Photo/Browser.php:74 src/Module/Post/Edit.php:153 +#: src/Module/Post/Tag/Remove.php:95 src/Module/Profile/RemoteFollow.php:120 +#: src/Module/Security/TwoFactor/SignOut.php:111 msgid "Cancel" msgstr "Zrušit" -#: mod/photos.php:818 +#: mod/photos.php:783 msgid "Edit Album" msgstr "Upravit album" -#: mod/photos.php:819 +#: mod/photos.php:784 msgid "Drop Album" msgstr "Smazat album" -#: mod/photos.php:823 +#: mod/photos.php:788 msgid "Show Newest First" msgstr "Zobrazit nejprve nejnovější" -#: mod/photos.php:825 +#: mod/photos.php:790 msgid "Show Oldest First" msgstr "Zobrazit nejprve nejstarší" -#: mod/photos.php:846 src/Module/Profile/Photos.php:346 +#: mod/photos.php:811 src/Module/Profile/Photos.php:332 msgid "View Photo" msgstr "Zobrazit fotku" -#: mod/photos.php:878 +#: mod/photos.php:843 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:880 +#: mod/photos.php:845 msgid "Photo not available" msgstr "Fotka není k dispozici" -#: mod/photos.php:890 +#: mod/photos.php:855 msgid "Do you really want to delete this photo?" msgstr "Opravdu chcete smazat tuto fotku?" -#: mod/photos.php:891 mod/photos.php:1091 +#: mod/photos.php:856 mod/photos.php:1056 msgid "Delete Photo" msgstr "Smazat fotku" -#: mod/photos.php:989 +#: mod/photos.php:954 msgid "View photo" msgstr "Zobrazit fotku" -#: mod/photos.php:991 +#: mod/photos.php:956 msgid "Edit photo" msgstr "Upravit fotku" -#: mod/photos.php:992 +#: mod/photos.php:957 msgid "Delete photo" msgstr "Smazat fotku" -#: mod/photos.php:993 +#: mod/photos.php:958 msgid "Use as profile photo" msgstr "Použít jako profilovou fotku" -#: mod/photos.php:1000 +#: mod/photos.php:965 msgid "Private Photo" msgstr "Soukromá fotka" -#: mod/photos.php:1006 +#: mod/photos.php:971 msgid "View Full Size" msgstr "Zobrazit v plné velikosti" -#: mod/photos.php:1059 +#: mod/photos.php:1024 msgid "Tags: " msgstr "Štítky: " -#: mod/photos.php:1062 +#: mod/photos.php:1027 msgid "[Select tags to remove]" msgstr "[Vyberte štítky pro odstranění]" -#: mod/photos.php:1077 +#: mod/photos.php:1042 msgid "New album name" msgstr "Nové jméno alba" -#: mod/photos.php:1078 +#: mod/photos.php:1043 msgid "Caption" msgstr "Titulek" -#: mod/photos.php:1079 +#: mod/photos.php:1044 msgid "Add a Tag" msgstr "Přidat štítek" -#: mod/photos.php:1079 +#: mod/photos.php:1044 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:1080 +#: mod/photos.php:1045 msgid "Do not rotate" msgstr "Neotáčet" -#: mod/photos.php:1081 +#: mod/photos.php:1046 msgid "Rotate CW (right)" msgstr "Otáčet po směru hodinových ručiček (doprava)" -#: mod/photos.php:1082 +#: mod/photos.php:1047 msgid "Rotate CCW (left)" msgstr "Otáčet proti směru hodinových ručiček (doleva)" -#: mod/photos.php:1128 mod/photos.php:1184 mod/photos.php:1264 -#: src/Module/Contact.php:618 src/Module/Item/Compose.php:195 -#: src/Object/Post.php:1156 +#: mod/photos.php:1093 mod/photos.php:1149 mod/photos.php:1229 +#: src/Module/Contact.php:600 src/Module/Item/Compose.php:181 +#: src/Object/Post.php:1142 msgid "This is you" msgstr "Tohle jste vy" -#: mod/photos.php:1130 mod/photos.php:1186 mod/photos.php:1266 -#: src/Module/Moderation/Reports.php:110 src/Object/Post.php:612 -#: src/Object/Post.php:1158 +#: mod/photos.php:1095 mod/photos.php:1151 mod/photos.php:1231 +#: src/Module/Moderation/Reports.php:102 src/Object/Post.php:598 +#: src/Object/Post.php:1144 msgid "Comment" msgstr "Okomentovat" -#: mod/photos.php:1132 mod/photos.php:1188 mod/photos.php:1268 -#: src/Content/Conversation.php:414 src/Module/Calendar/Event/Form.php:248 -#: src/Module/Item/Compose.php:208 src/Module/Post/Edit.php:165 -#: src/Object/Post.php:1172 +#: mod/photos.php:1097 mod/photos.php:1153 mod/photos.php:1233 +#: src/Content/Conversation.php:400 src/Module/Calendar/Event/Form.php:234 +#: src/Module/Item/Compose.php:194 src/Module/Post/Edit.php:151 +#: src/Object/Post.php:1158 msgid "Preview" msgstr "Náhled" -#: mod/photos.php:1133 src/Content/Conversation.php:368 -#: src/Module/Post/Edit.php:130 src/Object/Post.php:1160 +#: mod/photos.php:1098 src/Content/Conversation.php:354 +#: src/Module/Post/Edit.php:116 src/Object/Post.php:1146 msgid "Loading..." msgstr "" -#: mod/photos.php:1225 src/Content/Conversation.php:1498 -#: src/Object/Post.php:274 +#: mod/photos.php:1190 src/Content/Conversation.php:1484 +#: src/Object/Post.php:260 msgid "Select" msgstr "Vybrat" -#: mod/photos.php:1226 src/Content/Conversation.php:1499 -#: src/Module/Moderation/Users/Active.php:136 -#: src/Module/Moderation/Users/Blocked.php:136 -#: src/Module/Moderation/Users/Index.php:151 -#: src/Module/Settings/Connectors.php:244 -#: src/Module/Settings/Server/Index.php:109 +#: mod/photos.php:1191 src/Content/Conversation.php:1485 +#: src/Module/Moderation/Users/Active.php:122 +#: src/Module/Moderation/Users/Blocked.php:122 +#: src/Module/Moderation/Users/Index.php:137 +#: src/Module/Settings/Connectors.php:233 +#: src/Module/Settings/Server/Index.php:95 msgid "Delete" msgstr "Odstranit" -#: mod/photos.php:1287 src/Object/Post.php:440 +#: mod/photos.php:1252 src/Object/Post.php:426 msgid "Like" msgstr "" -#: mod/photos.php:1288 src/Object/Post.php:440 +#: mod/photos.php:1253 src/Object/Post.php:426 msgid "I like this (toggle)" msgstr "To se mi líbí (přepínat)" -#: mod/photos.php:1289 src/Object/Post.php:441 +#: mod/photos.php:1254 src/Object/Post.php:427 msgid "Dislike" msgstr "" -#: mod/photos.php:1291 src/Object/Post.php:441 +#: mod/photos.php:1256 src/Object/Post.php:427 msgid "I don't like this (toggle)" msgstr "To se mi nelíbí (přepínat)" -#: mod/photos.php:1313 +#: mod/photos.php:1278 msgid "Map" msgstr "Mapa" -#: src/App.php:438 +#: src/App.php:432 msgid "No system theme config value set." msgstr "Není nastavena konfigurační hodnota systémového motivu." -#: src/App.php:546 +#: src/App.php:540 msgid "Apologies but the website is unavailable at the moment." msgstr "" -#: src/App/Page.php:250 +#: src/App/Page.php:236 msgid "Delete this item?" msgstr "Odstranit tuto položku?" -#: src/App/Page.php:251 +#: src/App/Page.php:237 msgid "" "Block this author? They won't be able to follow you nor see your public " "posts, and you won't be able to see their posts and their notifications." msgstr "" -#: src/App/Page.php:252 +#: src/App/Page.php:238 msgid "" "Ignore this author? You won't be able to see their posts and their " "notifications." msgstr "" -#: src/App/Page.php:253 +#: src/App/Page.php:239 msgid "Collapse this author's posts?" msgstr "" -#: src/App/Page.php:254 +#: src/App/Page.php:240 msgid "Ignore this author's server?" msgstr "" -#: src/App/Page.php:255 src/Module/Settings/Server/Action.php:61 -#: src/Module/Settings/Server/Index.php:108 +#: src/App/Page.php:241 src/Module/Settings/Server/Action.php:47 +#: src/Module/Settings/Server/Index.php:94 msgid "" "You won't see any content from this server including reshares in your " "Network page, the community pages and individual conversations." msgstr "" -#: src/App/Page.php:257 +#: src/App/Page.php:243 msgid "Like not successful" msgstr "" -#: src/App/Page.php:258 +#: src/App/Page.php:244 msgid "Dislike not successful" msgstr "" -#: src/App/Page.php:259 +#: src/App/Page.php:245 msgid "Sharing not successful" msgstr "" -#: src/App/Page.php:260 +#: src/App/Page.php:246 msgid "Attendance unsuccessful" msgstr "" -#: src/App/Page.php:261 +#: src/App/Page.php:247 msgid "Backend error" msgstr "" -#: src/App/Page.php:262 +#: src/App/Page.php:248 msgid "Network error" msgstr "" -#: src/App/Page.php:265 +#: src/App/Page.php:251 msgid "Drop files here to upload" msgstr "" -#: src/App/Page.php:266 +#: src/App/Page.php:252 msgid "Your browser does not support drag and drop file uploads." msgstr "" -#: src/App/Page.php:267 +#: src/App/Page.php:253 msgid "" "Please use the fallback form below to upload your files like in the olden " "days." msgstr "" -#: src/App/Page.php:268 +#: src/App/Page.php:254 msgid "File is too big ({{filesize}}MiB). Max filesize: {{maxFilesize}}MiB." msgstr "" -#: src/App/Page.php:269 +#: src/App/Page.php:255 msgid "You can't upload files of this type." msgstr "" -#: src/App/Page.php:270 +#: src/App/Page.php:256 msgid "Server responded with {{statusCode}} code." msgstr "" -#: src/App/Page.php:271 +#: src/App/Page.php:257 msgid "Cancel upload" msgstr "" -#: src/App/Page.php:272 +#: src/App/Page.php:258 msgid "Upload canceled." msgstr "" -#: src/App/Page.php:273 +#: src/App/Page.php:259 msgid "Are you sure you want to cancel this upload?" msgstr "" -#: src/App/Page.php:274 +#: src/App/Page.php:260 msgid "Remove file" msgstr "" -#: src/App/Page.php:275 +#: src/App/Page.php:261 msgid "You can't upload any more files." msgstr "" -#: src/App/Page.php:353 +#: src/App/Page.php:339 msgid "toggle mobile" msgstr "přepínat mobilní zobrazení" -#: src/App/Router.php:309 +#: src/App/Router.php:295 #, php-format msgid "Method not allowed for this module. Allowed method(s): %s" msgstr "" -#: src/App/Router.php:311 src/Module/HTTPException/PageNotFound.php:49 +#: src/App/Router.php:297 src/Module/HTTPException/PageNotFound.php:35 +#: src/Module/Stats.php:49 msgid "Page not found." msgstr "Stránka nenalezena" -#: src/App/Router.php:323 +#: src/App/Router.php:309 msgid "You must be logged in to use addons. " msgstr "Pro použití doplňků musíte být přihlášen/a." -#: src/BaseModule.php:407 +#: src/BaseModule.php:393 msgid "" "The form security token was not correct. This probably happened because the " "form has been opened for too long (>3 hours) before submitting it." msgstr "Formulářový bezpečnostní token nebyl správný. To pravděpodobně nastalo kvůli tom, že formulář byl otevřen příliš dlouho (>3 hodiny) před jeho odesláním." -#: src/BaseModule.php:434 +#: src/BaseModule.php:420 msgid "All contacts" msgstr "Všechny kontakty" -#: src/BaseModule.php:439 src/Content/Conversation/Factory/Channel.php:46 -#: src/Content/Widget.php:240 src/Core/ACL.php:195 src/Module/Contact.php:414 -#: src/Module/Privacy/PermissionTooltip.php:164 -#: src/Module/Privacy/PermissionTooltip.php:186 -#: src/Module/Settings/Channels.php:160 +#: src/BaseModule.php:425 src/Content/Conversation/Factory/Channel.php:32 +#: src/Content/Widget.php:218 src/Core/ACL.php:181 src/Module/Contact.php:395 +#: src/Module/Privacy/PermissionTooltip.php:150 +#: src/Module/Privacy/PermissionTooltip.php:172 +#: src/Module/Settings/Channels.php:146 msgid "Followers" msgstr "Sledující" -#: src/BaseModule.php:444 src/Content/Widget.php:241 -#: src/Module/Contact.php:417 src/Module/Settings/Channels.php:159 +#: src/BaseModule.php:430 src/Content/Widget.php:219 +#: src/Module/Contact.php:398 src/Module/Settings/Channels.php:145 msgid "Following" msgstr "Sleduji" -#: src/BaseModule.php:449 src/Content/Widget.php:242 -#: src/Module/Contact.php:420 +#: src/BaseModule.php:435 src/Content/Widget.php:220 +#: src/Module/Contact.php:401 msgid "Mutual friends" msgstr "" -#: src/BaseModule.php:457 +#: src/BaseModule.php:443 msgid "Common" msgstr "" -#: src/Console/Addon.php:175 src/Console/Addon.php:199 +#: src/Console/Addon.php:161 src/Console/Addon.php:185 msgid "Addon not found" msgstr "" -#: src/Console/Addon.php:179 +#: src/Console/Addon.php:165 msgid "Addon already enabled" msgstr "" -#: src/Console/Addon.php:203 +#: src/Console/Addon.php:189 msgid "Addon already disabled" msgstr "" -#: src/Console/ArchiveContact.php:106 +#: src/Console/ArchiveContact.php:92 #, php-format msgid "Could not find any unarchived contact entry for this URL (%s)" msgstr "Nelze najít žádný nearchivovaný záznam kontaktu pro tuto URL adresu (%s)" -#: src/Console/ArchiveContact.php:109 +#: src/Console/ArchiveContact.php:95 msgid "The contact entries have been archived" msgstr "Záznamy kontaktů byly archivovány" -#: src/Console/GlobalCommunityBlock.php:96 -#: src/Module/Moderation/Blocklist/Contact.php:65 +#: src/Console/ClearAvatarCache.php:73 +msgid "" +"The avatar cache needs to be disabled in local.config.php to use this " +"command." +msgstr "" + +#: src/Console/GlobalCommunityBlock.php:82 +#: src/Module/Moderation/Blocklist/Contact.php:51 #, php-format msgid "Could not find any contact entry for this URL (%s)" msgstr "Nelze nalézt žádnou položku v kontaktech pro tuto URL adresu (%s)" -#: src/Console/GlobalCommunityBlock.php:101 -#: src/Module/Moderation/Blocklist/Contact.php:82 +#: src/Console/GlobalCommunityBlock.php:87 +#: src/Module/Moderation/Blocklist/Contact.php:68 msgid "The contact has been blocked from the node" msgstr "Kontakt byl na serveru zablokován" -#: src/Console/MergeContacts.php:75 +#: src/Console/MergeContacts.php:61 #, php-format msgid "%d %s, %d duplicates." msgstr "" -#: src/Console/MergeContacts.php:78 +#: src/Console/MergeContacts.php:64 #, php-format msgid "uri-id is empty for contact %s." msgstr "" -#: src/Console/MergeContacts.php:91 +#: src/Console/MergeContacts.php:77 #, php-format msgid "No valid first contact found for uri-id %d." msgstr "" -#: src/Console/MergeContacts.php:102 +#: src/Console/MergeContacts.php:88 #, php-format msgid "Wrong duplicate found for uri-id %d in %d (url: %s != %s)." msgstr "" -#: src/Console/MergeContacts.php:106 +#: src/Console/MergeContacts.php:92 #, php-format msgid "Wrong duplicate found for uri-id %d in %d (nurl: %s != %s)." msgstr "" -#: src/Console/MergeContacts.php:142 +#: src/Console/MergeContacts.php:128 #, php-format msgid "Deletion of id %d failed" msgstr "" -#: src/Console/MergeContacts.php:144 +#: src/Console/MergeContacts.php:130 #, php-format msgid "Deletion of id %d was successful" msgstr "" -#: src/Console/MergeContacts.php:150 +#: src/Console/MergeContacts.php:136 #, php-format msgid "Updating \"%s\" in \"%s\" from %d to %d" msgstr "" -#: src/Console/MergeContacts.php:152 +#: src/Console/MergeContacts.php:138 msgid " - found" msgstr "" -#: src/Console/MergeContacts.php:159 +#: src/Console/MergeContacts.php:145 msgid " - failed" msgstr "" -#: src/Console/MergeContacts.php:161 +#: src/Console/MergeContacts.php:147 msgid " - success" msgstr "" -#: src/Console/MergeContacts.php:165 +#: src/Console/MergeContacts.php:151 msgid " - deleted" msgstr "" -#: src/Console/MergeContacts.php:168 +#: src/Console/MergeContacts.php:154 msgid " - done" msgstr "" -#: src/Console/MoveToAvatarCache.php:91 +#: src/Console/MoveToAvatarCache.php:77 msgid "The avatar cache needs to be enabled to use this command." msgstr "" -#: src/Console/MoveToAvatarCache.php:109 +#: src/Console/MoveToAvatarCache.php:95 #, php-format msgid "no resource in photo %s" msgstr "" -#: src/Console/MoveToAvatarCache.php:137 +#: src/Console/MoveToAvatarCache.php:123 #, php-format msgid "no photo with id %s" msgstr "" -#: src/Console/MoveToAvatarCache.php:146 +#: src/Console/MoveToAvatarCache.php:132 #, php-format msgid "no image data for photo with id %s" msgstr "" -#: src/Console/MoveToAvatarCache.php:155 +#: src/Console/MoveToAvatarCache.php:141 #, php-format msgid "invalid image for id %s" msgstr "" -#: src/Console/MoveToAvatarCache.php:168 +#: src/Console/MoveToAvatarCache.php:154 #, php-format msgid "Quit on invalid photo %s" msgstr "" -#: src/Console/PostUpdate.php:87 +#: src/Console/PostUpdate.php:73 #, php-format msgid "Post update version number has been set to %s." msgstr "Číslo verze post update bylo nastaveno na %s." -#: src/Console/PostUpdate.php:95 +#: src/Console/PostUpdate.php:81 msgid "Check for pending update actions." msgstr "Zkontrolovat čekající akce po aktualizaci." -#: src/Console/PostUpdate.php:97 +#: src/Console/PostUpdate.php:83 msgid "Done." msgstr "Hotovo." -#: src/Console/PostUpdate.php:99 +#: src/Console/PostUpdate.php:85 msgid "Execute pending post updates." msgstr "Provést čekající aktualizace příspěvků." -#: src/Console/PostUpdate.php:105 +#: src/Console/PostUpdate.php:91 msgid "All pending post updates are done." msgstr "Všechny čekající aktualizace příspěvků jsou hotové." -#: src/Console/User.php:158 src/Console/User.php:246 +#: src/Console/User.php:144 src/Console/User.php:232 msgid "Enter user nickname: " msgstr "" -#: src/Console/User.php:182 src/Model/User.php:824 -#: src/Module/Api/Twitter/ContactEndpoint.php:74 -#: src/Module/Moderation/Users/Active.php:71 -#: src/Module/Moderation/Users/Blocked.php:71 -#: src/Module/Moderation/Users/Index.php:78 -#: src/Module/Moderation/Users/Pending.php:67 +#: src/Console/User.php:168 src/Model/User.php:831 +#: src/Module/Api/Twitter/ContactEndpoint.php:60 +#: src/Module/Moderation/Users/Active.php:57 +#: src/Module/Moderation/Users/Blocked.php:57 +#: src/Module/Moderation/Users/Index.php:64 +#: src/Module/Moderation/Users/Pending.php:53 msgid "User not found" msgstr "Uživatel nenalezen." -#: src/Console/User.php:202 +#: src/Console/User.php:188 msgid "Enter new password: " msgstr "Zadejte nové heslo" -#: src/Console/User.php:210 src/Module/Security/PasswordTooLong.php:69 -#: src/Module/Settings/Account.php:75 +#: src/Console/User.php:196 src/Module/Security/PasswordTooLong.php:55 +#: src/Module/Settings/Account.php:61 msgid "Password update failed. Please try again." msgstr "Aktualizace hesla se nezdařila. Zkuste to prosím znovu." -#: src/Console/User.php:213 src/Module/Security/PasswordTooLong.php:72 -#: src/Module/Settings/Account.php:78 +#: src/Console/User.php:199 src/Module/Security/PasswordTooLong.php:58 +#: src/Module/Settings/Account.php:64 msgid "Password changed." msgstr "Heslo bylo změněno." -#: src/Console/User.php:238 +#: src/Console/User.php:224 msgid "Enter user name: " msgstr "" -#: src/Console/User.php:254 +#: src/Console/User.php:240 msgid "Enter user email address: " msgstr "" -#: src/Console/User.php:262 +#: src/Console/User.php:248 msgid "Enter a language (optional): " msgstr "" -#: src/Console/User.php:267 +#: src/Console/User.php:253 msgid "Enter URL of an image to use as avatar (optional): " msgstr "" -#: src/Console/User.php:292 +#: src/Console/User.php:278 msgid "User is not pending." msgstr "" -#: src/Console/User.php:324 +#: src/Console/User.php:310 msgid "User has already been marked for deletion." msgstr "" -#: src/Console/User.php:329 +#: src/Console/User.php:315 #, php-format msgid "Type \"yes\" to delete %s" msgstr "" -#: src/Console/User.php:331 +#: src/Console/User.php:317 msgid "Deletion aborted." msgstr "" -#: src/Console/User.php:456 +#: src/Console/User.php:442 msgid "Enter category: " msgstr "" -#: src/Console/User.php:466 +#: src/Console/User.php:452 msgid "Enter key: " msgstr "" -#: src/Console/User.php:500 +#: src/Console/User.php:486 msgid "Enter value: " msgstr "" -#: src/Content/BoundariesPager.php:116 src/Content/Pager.php:171 +#: src/Content/BoundariesPager.php:102 src/Content/Pager.php:157 msgid "newer" msgstr "novější" -#: src/Content/BoundariesPager.php:124 src/Content/Pager.php:176 +#: src/Content/BoundariesPager.php:110 src/Content/Pager.php:162 msgid "older" msgstr "starší" -#: src/Content/ContactSelector.php:51 +#: src/Content/ContactSelector.php:37 msgid "Frequently" msgstr "Často" -#: src/Content/ContactSelector.php:52 +#: src/Content/ContactSelector.php:38 msgid "Hourly" msgstr "Hodinově" -#: src/Content/ContactSelector.php:53 +#: src/Content/ContactSelector.php:39 msgid "Twice daily" msgstr "Dvakrát denně" -#: src/Content/ContactSelector.php:54 +#: src/Content/ContactSelector.php:40 msgid "Daily" msgstr "Denně" -#: src/Content/ContactSelector.php:55 +#: src/Content/ContactSelector.php:41 msgid "Weekly" msgstr "Týdně" -#: src/Content/ContactSelector.php:56 +#: src/Content/ContactSelector.php:42 msgid "Monthly" msgstr "Měsíčně" -#: src/Content/ContactSelector.php:126 +#: src/Content/ContactSelector.php:112 msgid "DFRN" msgstr "DFRN" -#: src/Content/ContactSelector.php:127 +#: src/Content/ContactSelector.php:113 msgid "OStatus" msgstr "OStatus" -#: src/Content/ContactSelector.php:128 +#: src/Content/ContactSelector.php:114 msgid "RSS/Atom" msgstr "RSS/Atom" -#: src/Content/ContactSelector.php:129 -#: src/Module/Moderation/Users/Active.php:126 -#: src/Module/Moderation/Users/Blocked.php:126 -#: src/Module/Moderation/Users/Create.php:72 -#: src/Module/Moderation/Users/Deleted.php:83 -#: src/Module/Moderation/Users/Index.php:140 -#: src/Module/Moderation/Users/Index.php:160 -#: src/Module/Moderation/Users/Pending.php:99 +#: src/Content/ContactSelector.php:115 +#: src/Module/Moderation/Users/Active.php:112 +#: src/Module/Moderation/Users/Blocked.php:112 +#: src/Module/Moderation/Users/Create.php:58 +#: src/Module/Moderation/Users/Deleted.php:69 +#: src/Module/Moderation/Users/Index.php:126 +#: src/Module/Moderation/Users/Index.php:146 +#: src/Module/Moderation/Users/Pending.php:85 msgid "Email" msgstr "E-mail" -#: src/Content/ContactSelector.php:130 src/Module/Debug/Babel.php:309 +#: src/Content/ContactSelector.php:116 src/Module/Debug/Babel.php:301 msgid "Diaspora" msgstr "Diaspora" -#: src/Content/ContactSelector.php:131 +#: src/Content/ContactSelector.php:117 msgid "Zot!" msgstr "Zot!" -#: src/Content/ContactSelector.php:132 +#: src/Content/ContactSelector.php:118 msgid "LinkedIn" msgstr "LinkedIn" -#: src/Content/ContactSelector.php:133 +#: src/Content/ContactSelector.php:119 msgid "XMPP/IM" msgstr "XMPP/IM" -#: src/Content/ContactSelector.php:134 +#: src/Content/ContactSelector.php:120 msgid "MySpace" msgstr "MySpace" -#: src/Content/ContactSelector.php:135 +#: src/Content/ContactSelector.php:121 msgid "Google+" msgstr "Google+" -#: src/Content/ContactSelector.php:136 +#: src/Content/ContactSelector.php:122 msgid "pump.io" msgstr "pump.io" -#: src/Content/ContactSelector.php:137 +#: src/Content/ContactSelector.php:123 msgid "Twitter" msgstr "Twitter" -#: src/Content/ContactSelector.php:138 +#: src/Content/ContactSelector.php:124 msgid "Discourse" msgstr "" -#: src/Content/ContactSelector.php:139 +#: src/Content/ContactSelector.php:125 msgid "Diaspora Connector" msgstr "Diaspora Connector" -#: src/Content/ContactSelector.php:140 +#: src/Content/ContactSelector.php:126 msgid "GNU Social Connector" msgstr "GNU social Connector" -#: src/Content/ContactSelector.php:141 +#: src/Content/ContactSelector.php:127 msgid "ActivityPub" msgstr "ActivityPub" -#: src/Content/ContactSelector.php:142 +#: src/Content/ContactSelector.php:128 msgid "pnut" msgstr "pnut" -#: src/Content/ContactSelector.php:143 +#: src/Content/ContactSelector.php:129 msgid "Tumblr" msgstr "" -#: src/Content/ContactSelector.php:144 +#: src/Content/ContactSelector.php:130 msgid "Bluesky" msgstr "" -#: src/Content/ContactSelector.php:180 +#: src/Content/ContactSelector.php:166 #, php-format msgid "%s (via %s)" msgstr "" -#: src/Content/Conversation.php:226 +#: src/Content/Conversation.php:212 msgid "and" msgstr "a" -#: src/Content/Conversation.php:229 +#: src/Content/Conversation.php:215 #, php-format msgid "and %d other people" msgstr "a dalších %d lidí" -#: src/Content/Conversation.php:235 +#: src/Content/Conversation.php:221 #, php-format msgid "%2$s likes this." msgid_plural "%2$s like this." @@ -1172,7 +1178,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: src/Content/Conversation.php:237 +#: src/Content/Conversation.php:223 #, php-format msgid "%2$s doesn't like this." msgid_plural "%2$s don't like this." @@ -1181,7 +1187,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: src/Content/Conversation.php:239 +#: src/Content/Conversation.php:225 #, php-format msgid "%2$s attends." msgid_plural "%2$s attend." @@ -1190,7 +1196,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: src/Content/Conversation.php:241 +#: src/Content/Conversation.php:227 #, php-format msgid "%2$s doesn't attend." msgid_plural "%2$s don't attend." @@ -1199,7 +1205,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: src/Content/Conversation.php:243 +#: src/Content/Conversation.php:229 #, php-format msgid "%2$s attends maybe." msgid_plural "%2$s attend maybe." @@ -1208,7 +1214,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: src/Content/Conversation.php:245 +#: src/Content/Conversation.php:231 #, php-format msgid "%2$s reshared this." msgid_plural "%2$s reshared this." @@ -1217,7 +1223,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: src/Content/Conversation.php:276 +#: src/Content/Conversation.php:262 #, php-format msgid " likes this" msgid_plural " like this" @@ -1226,7 +1232,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: src/Content/Conversation.php:279 +#: src/Content/Conversation.php:265 #, php-format msgid " doesn't like this" msgid_plural " don't like this" @@ -1235,7 +1241,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: src/Content/Conversation.php:282 +#: src/Content/Conversation.php:268 #, php-format msgid " attends" msgid_plural " attend" @@ -1244,7 +1250,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: src/Content/Conversation.php:285 +#: src/Content/Conversation.php:271 #, php-format msgid " doesn't attend" msgid_plural " don't attend" @@ -1253,7 +1259,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: src/Content/Conversation.php:288 +#: src/Content/Conversation.php:274 #, php-format msgid " attends maybe" msgid_plural " attend maybe" @@ -1262,7 +1268,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: src/Content/Conversation.php:291 +#: src/Content/Conversation.php:277 #, php-format msgid " reshared this" msgid_plural " reshared this" @@ -1271,1099 +1277,1099 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: src/Content/Conversation.php:337 +#: src/Content/Conversation.php:323 msgid "Visible to everybody" msgstr "Viditelné pro všechny" -#: src/Content/Conversation.php:338 src/Module/Item/Compose.php:207 -#: src/Object/Post.php:1171 +#: src/Content/Conversation.php:324 src/Module/Item/Compose.php:193 +#: src/Object/Post.php:1157 msgid "Please enter a image/video/audio/webpage URL:" msgstr "Prosím zadejte URL obrázku/videa/audia/webové stránky:" -#: src/Content/Conversation.php:339 +#: src/Content/Conversation.php:325 msgid "Tag term:" msgstr "Štítek:" -#: src/Content/Conversation.php:340 src/Module/Filer/SaveTag.php:73 +#: src/Content/Conversation.php:326 src/Module/Filer/SaveTag.php:59 msgid "Save to Folder:" msgstr "Uložit do složky:" -#: src/Content/Conversation.php:341 +#: src/Content/Conversation.php:327 msgid "Where are you right now?" msgstr "Kde právě jste?" -#: src/Content/Conversation.php:342 +#: src/Content/Conversation.php:328 msgid "Delete item(s)?" msgstr "Smazat položku(y)?" -#: src/Content/Conversation.php:354 src/Module/Item/Compose.php:182 +#: src/Content/Conversation.php:340 src/Module/Item/Compose.php:168 msgid "Created at" msgstr "" -#: src/Content/Conversation.php:364 +#: src/Content/Conversation.php:350 msgid "New Post" msgstr "Nový příspěvek" -#: src/Content/Conversation.php:367 +#: src/Content/Conversation.php:353 msgid "Share" msgstr "Sdílet" -#: src/Content/Conversation.php:370 src/Module/Post/Edit.php:132 +#: src/Content/Conversation.php:356 src/Module/Post/Edit.php:118 msgid "upload photo" msgstr "nahrát fotku" -#: src/Content/Conversation.php:371 src/Module/Post/Edit.php:133 +#: src/Content/Conversation.php:357 src/Module/Post/Edit.php:119 msgid "Attach file" msgstr "Přiložit soubor" -#: src/Content/Conversation.php:372 src/Module/Post/Edit.php:134 +#: src/Content/Conversation.php:358 src/Module/Post/Edit.php:120 msgid "attach file" msgstr "přiložit soubor" -#: src/Content/Conversation.php:373 src/Module/Item/Compose.php:197 -#: src/Module/Post/Edit.php:171 src/Object/Post.php:1161 +#: src/Content/Conversation.php:359 src/Module/Item/Compose.php:183 +#: src/Module/Post/Edit.php:157 src/Object/Post.php:1147 msgid "Bold" msgstr "Tučné" -#: src/Content/Conversation.php:374 src/Module/Item/Compose.php:198 -#: src/Module/Post/Edit.php:172 src/Object/Post.php:1162 +#: src/Content/Conversation.php:360 src/Module/Item/Compose.php:184 +#: src/Module/Post/Edit.php:158 src/Object/Post.php:1148 msgid "Italic" msgstr "Kurziva" -#: src/Content/Conversation.php:375 src/Module/Item/Compose.php:199 -#: src/Module/Post/Edit.php:173 src/Object/Post.php:1163 +#: src/Content/Conversation.php:361 src/Module/Item/Compose.php:185 +#: src/Module/Post/Edit.php:159 src/Object/Post.php:1149 msgid "Underline" msgstr "Podtržené" -#: src/Content/Conversation.php:376 src/Module/Item/Compose.php:200 -#: src/Module/Post/Edit.php:174 src/Object/Post.php:1165 +#: src/Content/Conversation.php:362 src/Module/Item/Compose.php:186 +#: src/Module/Post/Edit.php:160 src/Object/Post.php:1151 msgid "Quote" msgstr "Citace" -#: src/Content/Conversation.php:377 src/Module/Item/Compose.php:201 -#: src/Module/Post/Edit.php:175 src/Object/Post.php:1166 +#: src/Content/Conversation.php:363 src/Module/Item/Compose.php:187 +#: src/Module/Post/Edit.php:161 src/Object/Post.php:1152 msgid "Add emojis" msgstr "" -#: src/Content/Conversation.php:378 src/Module/Item/Compose.php:202 -#: src/Object/Post.php:1164 +#: src/Content/Conversation.php:364 src/Module/Item/Compose.php:188 +#: src/Object/Post.php:1150 msgid "Content Warning" msgstr "" -#: src/Content/Conversation.php:379 src/Module/Item/Compose.php:203 -#: src/Module/Post/Edit.php:176 src/Object/Post.php:1167 +#: src/Content/Conversation.php:365 src/Module/Item/Compose.php:189 +#: src/Module/Post/Edit.php:162 src/Object/Post.php:1153 msgid "Code" msgstr "Kód" -#: src/Content/Conversation.php:380 src/Module/Item/Compose.php:204 -#: src/Object/Post.php:1168 +#: src/Content/Conversation.php:366 src/Module/Item/Compose.php:190 +#: src/Object/Post.php:1154 msgid "Image" msgstr "Obrázek" -#: src/Content/Conversation.php:381 src/Module/Item/Compose.php:205 -#: src/Module/Post/Edit.php:177 src/Object/Post.php:1169 +#: src/Content/Conversation.php:367 src/Module/Item/Compose.php:191 +#: src/Module/Post/Edit.php:163 src/Object/Post.php:1155 msgid "Link" msgstr "Odkaz" -#: src/Content/Conversation.php:382 src/Module/Item/Compose.php:206 -#: src/Module/Post/Edit.php:178 src/Object/Post.php:1170 +#: src/Content/Conversation.php:368 src/Module/Item/Compose.php:192 +#: src/Module/Post/Edit.php:164 src/Object/Post.php:1156 msgid "Link or Media" msgstr "Odkaz nebo média" -#: src/Content/Conversation.php:383 +#: src/Content/Conversation.php:369 msgid "Video" msgstr "" -#: src/Content/Conversation.php:384 src/Module/Item/Compose.php:209 -#: src/Module/Post/Edit.php:141 +#: src/Content/Conversation.php:370 src/Module/Item/Compose.php:195 +#: src/Module/Post/Edit.php:127 msgid "Set your location" msgstr "Nastavit vaši polohu" -#: src/Content/Conversation.php:385 src/Module/Post/Edit.php:142 +#: src/Content/Conversation.php:371 src/Module/Post/Edit.php:128 msgid "set location" msgstr "nastavit polohu" -#: src/Content/Conversation.php:386 src/Module/Post/Edit.php:143 +#: src/Content/Conversation.php:372 src/Module/Post/Edit.php:129 msgid "Clear browser location" msgstr "Vymazat polohu v prohlížeči" -#: src/Content/Conversation.php:387 src/Module/Post/Edit.php:144 +#: src/Content/Conversation.php:373 src/Module/Post/Edit.php:130 msgid "clear location" msgstr "vymazat polohu" -#: src/Content/Conversation.php:389 src/Module/Item/Compose.php:214 -#: src/Module/Post/Edit.php:157 +#: src/Content/Conversation.php:375 src/Module/Item/Compose.php:200 +#: src/Module/Post/Edit.php:143 msgid "Set title" msgstr "Nastavit nadpis" -#: src/Content/Conversation.php:391 src/Module/Item/Compose.php:215 -#: src/Module/Post/Edit.php:159 +#: src/Content/Conversation.php:377 src/Module/Item/Compose.php:201 +#: src/Module/Post/Edit.php:145 msgid "Categories (comma-separated list)" msgstr "Kategorie (seznam, oddělujte čárkou)" -#: src/Content/Conversation.php:396 src/Module/Item/Compose.php:231 +#: src/Content/Conversation.php:382 src/Module/Item/Compose.php:217 msgid "Scheduled at" msgstr "" -#: src/Content/Conversation.php:401 src/Module/Post/Edit.php:146 +#: src/Content/Conversation.php:387 src/Module/Post/Edit.php:132 msgid "Permission settings" msgstr "Nastavení oprávnění" -#: src/Content/Conversation.php:410 src/Module/Post/Edit.php:155 +#: src/Content/Conversation.php:396 src/Module/Post/Edit.php:141 msgid "Public post" msgstr "Veřejný příspěvek" -#: src/Content/Conversation.php:424 src/Content/Widget/VCard.php:131 -#: src/Model/Profile.php:483 src/Module/Admin/Logs/View.php:94 -#: src/Module/Post/Edit.php:181 +#: src/Content/Conversation.php:410 src/Content/Widget/VCard.php:117 +#: src/Model/Profile.php:462 src/Module/Admin/Logs/View.php:80 +#: src/Module/Post/Edit.php:167 msgid "Message" msgstr "Zpráva" -#: src/Content/Conversation.php:425 src/Module/Post/Edit.php:182 -#: src/Module/Settings/TwoFactor/Trusted.php:143 +#: src/Content/Conversation.php:411 src/Module/Post/Edit.php:168 +#: src/Module/Settings/TwoFactor/Trusted.php:129 msgid "Browser" msgstr "Prohlížeč" -#: src/Content/Conversation.php:427 src/Module/Post/Edit.php:185 +#: src/Content/Conversation.php:413 src/Module/Post/Edit.php:171 msgid "Open Compose page" msgstr "" -#: src/Content/Conversation.php:594 +#: src/Content/Conversation.php:580 msgid "remove" msgstr "odstranit" -#: src/Content/Conversation.php:598 +#: src/Content/Conversation.php:584 msgid "Delete Selected Items" msgstr "Smazat vybrané položky" -#: src/Content/Conversation.php:726 src/Content/Conversation.php:729 -#: src/Content/Conversation.php:732 src/Content/Conversation.php:735 -#: src/Content/Conversation.php:738 +#: src/Content/Conversation.php:712 src/Content/Conversation.php:715 +#: src/Content/Conversation.php:718 src/Content/Conversation.php:721 +#: src/Content/Conversation.php:724 #, php-format msgid "You had been addressed (%s)." msgstr "" -#: src/Content/Conversation.php:741 +#: src/Content/Conversation.php:727 #, php-format msgid "You are following %s." msgstr "" -#: src/Content/Conversation.php:746 +#: src/Content/Conversation.php:732 #, php-format msgid "You subscribed to %s." msgstr "" -#: src/Content/Conversation.php:748 +#: src/Content/Conversation.php:734 msgid "You subscribed to one or more tags in this post." msgstr "" -#: src/Content/Conversation.php:768 +#: src/Content/Conversation.php:754 #, php-format msgid "%s reshared this." msgstr "%s tohle znovusdílel/a." -#: src/Content/Conversation.php:770 +#: src/Content/Conversation.php:756 msgid "Reshared" msgstr "" -#: src/Content/Conversation.php:770 +#: src/Content/Conversation.php:756 #, php-format msgid "Reshared by %s <%s>" msgstr "" -#: src/Content/Conversation.php:773 +#: src/Content/Conversation.php:759 #, php-format msgid "%s is participating in this thread." msgstr "" -#: src/Content/Conversation.php:776 +#: src/Content/Conversation.php:762 msgid "Stored for general reasons" msgstr "" -#: src/Content/Conversation.php:779 +#: src/Content/Conversation.php:765 msgid "Global post" msgstr "" -#: src/Content/Conversation.php:782 +#: src/Content/Conversation.php:768 msgid "Sent via an relay server" msgstr "" -#: src/Content/Conversation.php:782 +#: src/Content/Conversation.php:768 #, php-format msgid "Sent via the relay server %s <%s>" msgstr "" -#: src/Content/Conversation.php:785 +#: src/Content/Conversation.php:771 msgid "Fetched" msgstr "" -#: src/Content/Conversation.php:785 +#: src/Content/Conversation.php:771 #, php-format msgid "Fetched because of %s <%s>" msgstr "" -#: src/Content/Conversation.php:788 +#: src/Content/Conversation.php:774 msgid "Stored because of a child post to complete this thread." msgstr "" -#: src/Content/Conversation.php:791 +#: src/Content/Conversation.php:777 msgid "Local delivery" msgstr "" -#: src/Content/Conversation.php:794 +#: src/Content/Conversation.php:780 msgid "Stored because of your activity (like, comment, star, ...)" msgstr "" -#: src/Content/Conversation.php:797 +#: src/Content/Conversation.php:783 msgid "Distributed" msgstr "" -#: src/Content/Conversation.php:800 +#: src/Content/Conversation.php:786 msgid "Pushed to us" msgstr "" -#: src/Content/Conversation.php:1518 src/Object/Post.php:261 +#: src/Content/Conversation.php:1504 src/Object/Post.php:247 msgid "Pinned item" msgstr "" -#: src/Content/Conversation.php:1535 src/Object/Post.php:555 -#: src/Object/Post.php:556 +#: src/Content/Conversation.php:1521 src/Object/Post.php:541 +#: src/Object/Post.php:542 #, php-format msgid "View %s's profile @ %s" msgstr "Zobrazit profil uživatele %s na %s" -#: src/Content/Conversation.php:1549 src/Object/Post.php:543 +#: src/Content/Conversation.php:1535 src/Object/Post.php:529 msgid "Categories:" msgstr "Kategorie:" -#: src/Content/Conversation.php:1550 src/Object/Post.php:544 +#: src/Content/Conversation.php:1536 src/Object/Post.php:530 msgid "Filed under:" msgstr "Vyplněn pod:" -#: src/Content/Conversation.php:1558 src/Object/Post.php:570 +#: src/Content/Conversation.php:1544 src/Object/Post.php:556 #, php-format msgid "%s from %s" msgstr "%s z %s" -#: src/Content/Conversation.php:1574 +#: src/Content/Conversation.php:1560 msgid "View in context" msgstr "Zobrazit v kontextu" -#: src/Content/Conversation/Factory/Channel.php:42 +#: src/Content/Conversation/Factory/Channel.php:28 msgid "For you" msgstr "" -#: src/Content/Conversation/Factory/Channel.php:42 +#: src/Content/Conversation/Factory/Channel.php:28 msgid "Posts from contacts you interact with and who interact with you" msgstr "" -#: src/Content/Conversation/Factory/Channel.php:43 +#: src/Content/Conversation/Factory/Channel.php:29 msgid "Discover" msgstr "" -#: src/Content/Conversation/Factory/Channel.php:43 +#: src/Content/Conversation/Factory/Channel.php:29 msgid "Posts from accounts that you don't follow, but that you might like." msgstr "" -#: src/Content/Conversation/Factory/Channel.php:44 +#: src/Content/Conversation/Factory/Channel.php:30 msgid "What's Hot" msgstr "" -#: src/Content/Conversation/Factory/Channel.php:44 +#: src/Content/Conversation/Factory/Channel.php:30 msgid "Posts with a lot of interactions" msgstr "" -#: src/Content/Conversation/Factory/Channel.php:45 +#: src/Content/Conversation/Factory/Channel.php:31 #, php-format msgid "Posts in %s" msgstr "" -#: src/Content/Conversation/Factory/Channel.php:46 +#: src/Content/Conversation/Factory/Channel.php:32 msgid "Posts from your followers that you don't follow" msgstr "" -#: src/Content/Conversation/Factory/Channel.php:47 +#: src/Content/Conversation/Factory/Channel.php:33 msgid "Sharers of sharers" msgstr "" -#: src/Content/Conversation/Factory/Channel.php:47 +#: src/Content/Conversation/Factory/Channel.php:33 msgid "Posts from accounts that are followed by accounts that you follow" msgstr "" -#: src/Content/Conversation/Factory/Channel.php:48 +#: src/Content/Conversation/Factory/Channel.php:34 msgid "Quiet sharers" msgstr "" -#: src/Content/Conversation/Factory/Channel.php:48 +#: src/Content/Conversation/Factory/Channel.php:34 msgid "Posts from accounts that you follow but who don't post very often" msgstr "" -#: src/Content/Conversation/Factory/Channel.php:49 -#: src/Module/Settings/Channels.php:199 src/Module/Settings/Channels.php:220 +#: src/Content/Conversation/Factory/Channel.php:35 +#: src/Module/Settings/Channels.php:185 src/Module/Settings/Channels.php:206 msgid "Images" msgstr "" -#: src/Content/Conversation/Factory/Channel.php:49 +#: src/Content/Conversation/Factory/Channel.php:35 msgid "Posts with images" msgstr "" -#: src/Content/Conversation/Factory/Channel.php:50 -#: src/Module/Settings/Channels.php:201 src/Module/Settings/Channels.php:222 +#: src/Content/Conversation/Factory/Channel.php:36 +#: src/Module/Settings/Channels.php:187 src/Module/Settings/Channels.php:208 msgid "Audio" msgstr "" -#: src/Content/Conversation/Factory/Channel.php:50 +#: src/Content/Conversation/Factory/Channel.php:36 msgid "Posts with audio" msgstr "" -#: src/Content/Conversation/Factory/Channel.php:51 -#: src/Module/Settings/Channels.php:200 src/Module/Settings/Channels.php:221 +#: src/Content/Conversation/Factory/Channel.php:37 +#: src/Module/Settings/Channels.php:186 src/Module/Settings/Channels.php:207 msgid "Videos" msgstr "" -#: src/Content/Conversation/Factory/Channel.php:51 +#: src/Content/Conversation/Factory/Channel.php:37 msgid "Posts with videos" msgstr "" -#: src/Content/Conversation/Factory/Community.php:43 +#: src/Content/Conversation/Factory/Community.php:29 msgid "Local Community" msgstr "Místní komunita" -#: src/Content/Conversation/Factory/Community.php:43 +#: src/Content/Conversation/Factory/Community.php:29 msgid "Posts from local users on this server" msgstr "Příspěvky od místních uživatelů na tomto serveru" -#: src/Content/Conversation/Factory/Community.php:47 -#: src/Module/Settings/Channels.php:150 src/Module/Settings/Channels.php:155 +#: src/Content/Conversation/Factory/Community.php:33 +#: src/Module/Settings/Channels.php:136 src/Module/Settings/Channels.php:141 msgid "Global Community" msgstr "Globální komunita" -#: src/Content/Conversation/Factory/Community.php:47 +#: src/Content/Conversation/Factory/Community.php:33 msgid "Posts from users of the whole federated network" msgstr "Příspěvky od uživatelů z celé federované sítě" -#: src/Content/Conversation/Factory/Network.php:38 -#: src/Module/Settings/Channels.php:156 +#: src/Content/Conversation/Factory/Network.php:24 +#: src/Module/Settings/Channels.php:142 msgid "Latest Activity" msgstr "" -#: src/Content/Conversation/Factory/Network.php:38 +#: src/Content/Conversation/Factory/Network.php:24 msgid "Sort by latest activity" msgstr "" -#: src/Content/Conversation/Factory/Network.php:39 -#: src/Module/Settings/Channels.php:157 +#: src/Content/Conversation/Factory/Network.php:25 +#: src/Module/Settings/Channels.php:143 msgid "Latest Posts" msgstr "" -#: src/Content/Conversation/Factory/Network.php:39 +#: src/Content/Conversation/Factory/Network.php:25 msgid "Sort by post received date" msgstr "" -#: src/Content/Conversation/Factory/Network.php:40 -#: src/Module/Settings/Channels.php:158 +#: src/Content/Conversation/Factory/Network.php:26 +#: src/Module/Settings/Channels.php:144 msgid "Latest Creation" msgstr "" -#: src/Content/Conversation/Factory/Network.php:40 +#: src/Content/Conversation/Factory/Network.php:26 msgid "Sort by post creation date" msgstr "" -#: src/Content/Conversation/Factory/Network.php:41 -#: src/Module/Settings/Profile/Index.php:260 +#: src/Content/Conversation/Factory/Network.php:27 +#: src/Module/Settings/Profile/Index.php:251 msgid "Personal" msgstr "Osobní" -#: src/Content/Conversation/Factory/Network.php:41 +#: src/Content/Conversation/Factory/Network.php:27 msgid "Posts that mention or involve you" msgstr "Příspěvky, které vás zmiňují nebo zahrnují" -#: src/Content/Conversation/Factory/Network.php:42 src/Object/Post.php:411 +#: src/Content/Conversation/Factory/Network.php:28 src/Object/Post.php:397 msgid "Starred" msgstr "S hvězdou" -#: src/Content/Conversation/Factory/Network.php:42 +#: src/Content/Conversation/Factory/Network.php:28 msgid "Favourite Posts" msgstr "Oblíbené přízpěvky" -#: src/Content/Feature.php:107 +#: src/Content/Feature.php:93 msgid "General Features" msgstr "Obecné vlastnosti" -#: src/Content/Feature.php:109 +#: src/Content/Feature.php:95 msgid "Photo Location" msgstr "Poloha fotky" -#: src/Content/Feature.php:109 +#: src/Content/Feature.php:95 msgid "" "Photo metadata is normally stripped. This extracts the location (if present)" " prior to stripping metadata and links it to a map." msgstr "Metadata fotek jsou normálně odebrána. Tato funkce před odebrání metadat extrahuje polohu (pokud je k dispozici) a propojí ji s mapou." -#: src/Content/Feature.php:110 +#: src/Content/Feature.php:96 msgid "Display the community in the navigation" msgstr "" -#: src/Content/Feature.php:110 +#: src/Content/Feature.php:96 msgid "" "If enabled, the community can be accessed via the navigation menu. " "Independent from this setting, the community timelines can always be " "accessed via the channels." msgstr "" -#: src/Content/Feature.php:115 +#: src/Content/Feature.php:101 msgid "Post Composition Features" msgstr "Nastavení vytváření příspěvků" -#: src/Content/Feature.php:116 +#: src/Content/Feature.php:102 msgid "Explicit Mentions" msgstr "Výslovné zmínky" -#: src/Content/Feature.php:116 +#: src/Content/Feature.php:102 msgid "" "Add explicit mentions to comment box for manual control over who gets " "mentioned in replies." msgstr "Přidá do pole pro komentování výslovné zmínky pro ruční kontrolu nad tím, koho zmíníte v odpovědích." -#: src/Content/Feature.php:117 +#: src/Content/Feature.php:103 msgid "Add an abstract from ActivityPub content warnings" msgstr "" -#: src/Content/Feature.php:117 +#: src/Content/Feature.php:103 msgid "" "Add an abstract when commenting on ActivityPub posts with a content warning." " Abstracts are displayed as content warning on systems like Mastodon or " "Pleroma." msgstr "" -#: src/Content/Feature.php:122 +#: src/Content/Feature.php:108 msgid "Post/Comment Tools" msgstr "Nástroje příspěvků/komentářů" -#: src/Content/Feature.php:123 +#: src/Content/Feature.php:109 msgid "Post Categories" msgstr "Kategorie příspěvků" -#: src/Content/Feature.php:123 +#: src/Content/Feature.php:109 msgid "Add categories to your posts" msgstr "Přidat kategorie k vašim příspěvkům" -#: src/Content/Feature.php:128 +#: src/Content/Feature.php:114 msgid "Network Widgets" msgstr "" -#: src/Content/Feature.php:129 src/Content/Widget.php:216 -#: src/Model/Circle.php:601 src/Module/Contact.php:400 -#: src/Module/Welcome.php:76 +#: src/Content/Feature.php:115 src/Content/Widget.php:194 +#: src/Model/Circle.php:587 src/Module/Contact.php:381 +#: src/Module/Welcome.php:62 msgid "Circles" msgstr "" -#: src/Content/Feature.php:129 +#: src/Content/Feature.php:115 msgid "" "Display posts that have been created by accounts of the selected circle." msgstr "" -#: src/Content/Feature.php:130 src/Content/GroupManager.php:147 -#: src/Content/Nav.php:278 src/Content/Text/HTML.php:882 -#: src/Content/Widget.php:538 src/Model/User.php:1390 +#: src/Content/Feature.php:116 src/Content/GroupManager.php:133 +#: src/Content/Nav.php:264 src/Content/Text/HTML.php:868 +#: src/Content/Widget.php:516 src/Model/User.php:1390 msgid "Groups" msgstr "" -#: src/Content/Feature.php:130 +#: src/Content/Feature.php:116 msgid "Display posts that have been distributed by the selected group." msgstr "" -#: src/Content/Feature.php:131 src/Content/Widget.php:507 +#: src/Content/Feature.php:117 src/Content/Widget.php:485 msgid "Archives" msgstr "Archivy" -#: src/Content/Feature.php:131 +#: src/Content/Feature.php:117 msgid "Display an archive where posts can be selected by month and year." msgstr "" -#: src/Content/Feature.php:132 src/Content/Widget.php:289 +#: src/Content/Feature.php:118 src/Content/Widget.php:267 msgid "Protocols" msgstr "Protokoly" -#: src/Content/Feature.php:132 +#: src/Content/Feature.php:118 msgid "Display posts with the selected protocols." msgstr "" -#: src/Content/Feature.php:133 src/Content/Widget.php:544 -#: src/Module/Settings/Account.php:442 +#: src/Content/Feature.php:119 src/Content/Widget.php:522 +#: src/Module/Settings/Account.php:433 msgid "Account Types" msgstr "Typy účtů" -#: src/Content/Feature.php:133 +#: src/Content/Feature.php:119 msgid "Display posts done by accounts with the selected account type." msgstr "" -#: src/Content/Feature.php:134 src/Content/Widget.php:593 -#: src/Module/Admin/Site.php:472 src/Module/BaseSettings.php:125 -#: src/Module/Settings/Channels.php:225 src/Module/Settings/Display.php:315 +#: src/Content/Feature.php:120 src/Content/Widget.php:571 +#: src/Module/Admin/Site.php:464 src/Module/BaseSettings.php:111 +#: src/Module/Settings/Channels.php:211 src/Module/Settings/Display.php:301 msgid "Channels" msgstr "" -#: src/Content/Feature.php:134 +#: src/Content/Feature.php:120 msgid "Display posts in the system channels and user defined channels." msgstr "" -#: src/Content/Feature.php:135 src/Content/Widget/SavedSearches.php:60 +#: src/Content/Feature.php:121 src/Content/Widget/SavedSearches.php:46 msgid "Saved Searches" msgstr "Uložená hledání" -#: src/Content/Feature.php:135 +#: src/Content/Feature.php:121 msgid "Display posts that contain subscribed hashtags." msgstr "" -#: src/Content/Feature.php:136 src/Content/Widget.php:319 +#: src/Content/Feature.php:122 src/Content/Widget.php:297 msgid "Saved Folders" msgstr "Uložené složky" -#: src/Content/Feature.php:136 +#: src/Content/Feature.php:122 msgid "Display a list of folders in which posts are stored." msgstr "" -#: src/Content/Feature.php:137 src/Module/Conversation/Timeline.php:199 +#: src/Content/Feature.php:123 src/Module/Conversation/Timeline.php:186 msgid "Own Contacts" msgstr "" -#: src/Content/Feature.php:137 +#: src/Content/Feature.php:123 msgid "" "Include or exclude posts from subscribed accounts. This widget is not " "visible on all channels." msgstr "" -#: src/Content/Feature.php:138 +#: src/Content/Feature.php:124 msgid "Trending Tags" msgstr "Populární štítky" -#: src/Content/Feature.php:138 +#: src/Content/Feature.php:124 msgid "Display a list of the most popular tags in recent public posts." msgstr "" -#: src/Content/Feature.php:143 +#: src/Content/Feature.php:129 msgid "Advanced Profile Settings" msgstr "Pokročilá nastavení profilu" -#: src/Content/Feature.php:144 +#: src/Content/Feature.php:130 msgid "Tag Cloud" msgstr "Štítkový oblak" -#: src/Content/Feature.php:144 +#: src/Content/Feature.php:130 msgid "Provide a personal tag cloud on your profile page" msgstr "Poskytne na vaší profilové stránce osobní „štítkový oblak“" -#: src/Content/Feature.php:145 +#: src/Content/Feature.php:131 msgid "Display Membership Date" msgstr "Zobrazit datum členství" -#: src/Content/Feature.php:145 +#: src/Content/Feature.php:131 msgid "Display membership date in profile" msgstr "Zobrazit v profilu datum připojení" -#: src/Content/Feature.php:150 +#: src/Content/Feature.php:136 msgid "Advanced Calendar Settings" msgstr "" -#: src/Content/Feature.php:151 +#: src/Content/Feature.php:137 msgid "Allow anonymous access to your calendar" msgstr "" -#: src/Content/Feature.php:151 +#: src/Content/Feature.php:137 msgid "" "Allows anonymous visitors to consult your calendar and your public events. " "Contact birthday events are private to you." msgstr "" -#: src/Content/GroupManager.php:149 +#: src/Content/GroupManager.php:135 msgid "External link to group" msgstr "" -#: src/Content/GroupManager.php:153 src/Content/Widget.php:513 +#: src/Content/GroupManager.php:139 src/Content/Widget.php:491 msgid "show less" msgstr "" -#: src/Content/GroupManager.php:154 src/Content/Widget.php:411 -#: src/Content/Widget.php:514 +#: src/Content/GroupManager.php:140 src/Content/Widget.php:389 +#: src/Content/Widget.php:492 msgid "show more" msgstr "zobrazit více" -#: src/Content/GroupManager.php:155 +#: src/Content/GroupManager.php:141 msgid "Create new group" msgstr "" -#: src/Content/Item.php:331 src/Model/Item.php:3256 +#: src/Content/Item.php:317 src/Model/Item.php:3272 msgid "event" msgstr "událost" -#: src/Content/Item.php:334 src/Content/Item.php:344 +#: src/Content/Item.php:320 src/Content/Item.php:330 msgid "status" msgstr "stav" -#: src/Content/Item.php:340 src/Model/Item.php:3258 -#: src/Module/Post/Tag/Add.php:123 +#: src/Content/Item.php:326 src/Model/Item.php:3274 +#: src/Module/Post/Tag/Add.php:109 msgid "photo" msgstr "fotka" -#: src/Content/Item.php:354 src/Module/Post/Tag/Add.php:141 +#: src/Content/Item.php:340 src/Module/Post/Tag/Add.php:127 #, php-format msgid "%1$s tagged %2$s's %3$s with %4$s" msgstr "%1$s označil/a %3$s uživatele %2$s štítkem %4$s" -#: src/Content/Item.php:428 view/theme/frio/theme.php:265 +#: src/Content/Item.php:414 view/theme/frio/theme.php:253 msgid "Follow Thread" msgstr "Sledovat vlákno" -#: src/Content/Item.php:429 src/Model/Contact.php:1233 +#: src/Content/Item.php:415 src/Model/Contact.php:1249 msgid "View Status" msgstr "Zobrazit stav" -#: src/Content/Item.php:430 src/Content/Item.php:453 -#: src/Model/Contact.php:1168 src/Model/Contact.php:1224 -#: src/Model/Contact.php:1234 src/Module/Directory.php:157 -#: src/Module/Settings/Profile/Index.php:259 +#: src/Content/Item.php:416 src/Content/Item.php:439 +#: src/Model/Contact.php:1184 src/Model/Contact.php:1240 +#: src/Model/Contact.php:1250 src/Module/Directory.php:144 +#: src/Module/Settings/Profile/Index.php:250 msgid "View Profile" msgstr "Zobrazit profil" -#: src/Content/Item.php:431 src/Model/Contact.php:1235 +#: src/Content/Item.php:417 src/Model/Contact.php:1251 msgid "View Photos" msgstr "Zobrazit fotky" -#: src/Content/Item.php:432 src/Model/Contact.php:1202 -#: src/Model/Profile.php:468 +#: src/Content/Item.php:418 src/Model/Contact.php:1218 +#: src/Model/Profile.php:447 msgid "Network Posts" msgstr "Síťové příspěvky" -#: src/Content/Item.php:433 src/Model/Contact.php:1226 -#: src/Model/Contact.php:1237 +#: src/Content/Item.php:419 src/Model/Contact.php:1242 +#: src/Model/Contact.php:1253 msgid "View Contact" msgstr "Zobrazit kontakt" -#: src/Content/Item.php:434 src/Model/Contact.php:1238 +#: src/Content/Item.php:420 src/Model/Contact.php:1254 msgid "Send PM" msgstr "Poslat soukromou zprávu" -#: src/Content/Item.php:435 src/Module/Contact.php:467 +#: src/Content/Item.php:421 src/Module/Contact.php:449 #: src/Module/Contact/Profile.php:518 -#: src/Module/Moderation/Blocklist/Contact.php:116 -#: src/Module/Moderation/Users/Active.php:137 -#: src/Module/Moderation/Users/Index.php:152 +#: src/Module/Moderation/Blocklist/Contact.php:102 +#: src/Module/Moderation/Users/Active.php:123 +#: src/Module/Moderation/Users/Index.php:138 msgid "Block" msgstr "Blokovat" -#: src/Content/Item.php:436 src/Module/Contact.php:468 +#: src/Content/Item.php:422 src/Module/Contact.php:450 #: src/Module/Contact/Profile.php:526 -#: src/Module/Notifications/Introductions.php:134 -#: src/Module/Notifications/Introductions.php:206 -#: src/Module/Notifications/Notification.php:89 +#: src/Module/Notifications/Introductions.php:126 +#: src/Module/Notifications/Introductions.php:198 +#: src/Module/Notifications/Notification.php:75 msgid "Ignore" msgstr "Ignorovat" -#: src/Content/Item.php:437 src/Module/Contact.php:469 +#: src/Content/Item.php:423 src/Module/Contact.php:451 #: src/Module/Contact/Profile.php:534 msgid "Collapse" msgstr "" -#: src/Content/Item.php:438 src/Object/Post.php:302 +#: src/Content/Item.php:424 src/Object/Post.php:288 #, php-format msgid "Ignore %s server" msgstr "" -#: src/Content/Item.php:442 src/Module/Settings/Channels.php:202 -#: src/Module/Settings/Channels.php:223 src/Object/Post.php:516 +#: src/Content/Item.php:428 src/Module/Settings/Channels.php:188 +#: src/Module/Settings/Channels.php:209 src/Object/Post.php:502 msgid "Languages" msgstr "" -#: src/Content/Item.php:445 src/Object/Post.php:596 +#: src/Content/Item.php:431 src/Object/Post.php:582 msgid "Search Text" msgstr "" -#: src/Content/Item.php:450 src/Content/Widget.php:80 -#: src/Model/Contact.php:1227 src/Model/Contact.php:1239 -#: src/Module/Contact/Follow.php:167 view/theme/vier/theme.php:195 +#: src/Content/Item.php:436 src/Content/Widget.php:66 +#: src/Model/Contact.php:1243 src/Model/Contact.php:1255 +#: src/Module/Contact/Follow.php:148 view/theme/vier/theme.php:183 msgid "Connect/Follow" msgstr "Spojit se/sledovat" -#: src/Content/Item.php:884 +#: src/Content/Item.php:870 msgid "Unable to fetch user." msgstr "" -#: src/Content/Nav.php:121 +#: src/Content/Nav.php:107 msgid "Nothing new here" msgstr "Zde není nic nového" -#: src/Content/Nav.php:125 src/Module/Special/HTTPException.php:77 +#: src/Content/Nav.php:111 src/Module/Special/HTTPException.php:63 msgid "Go back" msgstr "Přejít zpět" -#: src/Content/Nav.php:126 +#: src/Content/Nav.php:112 msgid "Clear notifications" msgstr "Vymazat oznámení" -#: src/Content/Nav.php:127 src/Content/Text/HTML.php:869 +#: src/Content/Nav.php:113 src/Content/Text/HTML.php:855 msgid "@name, !group, #tags, content" msgstr "" -#: src/Content/Nav.php:222 src/Module/Security/Login.php:157 +#: src/Content/Nav.php:208 src/Module/Security/Login.php:147 msgid "Logout" msgstr "Odhlásit se" -#: src/Content/Nav.php:222 +#: src/Content/Nav.php:208 msgid "End this session" msgstr "Konec této relace" -#: src/Content/Nav.php:224 src/Module/Bookmarklet.php:44 -#: src/Module/Security/Login.php:158 +#: src/Content/Nav.php:210 src/Module/Bookmarklet.php:30 +#: src/Module/Security/Login.php:148 msgid "Login" msgstr "Přihlásit se" -#: src/Content/Nav.php:224 +#: src/Content/Nav.php:210 msgid "Sign in" msgstr "Přihlásit se" -#: src/Content/Nav.php:229 src/Module/BaseProfile.php:57 -#: src/Module/Contact.php:511 +#: src/Content/Nav.php:215 src/Module/BaseProfile.php:43 +#: src/Module/Contact.php:493 msgid "Conversations" msgstr "" -#: src/Content/Nav.php:229 +#: src/Content/Nav.php:215 msgid "Conversations you started" msgstr "" -#: src/Content/Nav.php:230 src/Module/BaseProfile.php:49 -#: src/Module/BaseSettings.php:98 src/Module/Contact.php:503 -#: src/Module/Contact/Profile.php:425 src/Module/Profile/Profile.php:268 -#: src/Module/Welcome.php:57 view/theme/frio/theme.php:233 +#: src/Content/Nav.php:216 src/Module/BaseProfile.php:35 +#: src/Module/BaseSettings.php:84 src/Module/Contact.php:485 +#: src/Module/Contact/Profile.php:425 src/Module/Profile/Profile.php:256 +#: src/Module/Welcome.php:43 view/theme/frio/theme.php:221 msgid "Profile" msgstr "Profil" -#: src/Content/Nav.php:230 view/theme/frio/theme.php:233 +#: src/Content/Nav.php:216 view/theme/frio/theme.php:221 msgid "Your profile page" msgstr "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:237 +#: src/Content/Nav.php:217 src/Module/BaseProfile.php:51 +#: src/Module/Media/Photo/Browser.php:60 view/theme/frio/theme.php:225 msgid "Photos" msgstr "Fotky" -#: src/Content/Nav.php:231 view/theme/frio/theme.php:237 +#: src/Content/Nav.php:217 view/theme/frio/theme.php:225 msgid "Your photos" msgstr "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:238 +#: src/Content/Nav.php:218 src/Module/BaseProfile.php:59 +#: src/Module/BaseProfile.php:62 src/Module/Contact.php:509 +#: view/theme/frio/theme.php:226 msgid "Media" msgstr "" -#: src/Content/Nav.php:232 view/theme/frio/theme.php:238 +#: src/Content/Nav.php:218 view/theme/frio/theme.php:226 msgid "Your postings with media" msgstr "" -#: src/Content/Nav.php:233 src/Content/Nav.php:293 -#: src/Module/BaseProfile.php:85 src/Module/BaseProfile.php:88 -#: src/Module/BaseProfile.php:96 src/Module/BaseProfile.php:99 -#: src/Module/Settings/Display.php:316 view/theme/frio/theme.php:239 -#: view/theme/frio/theme.php:243 +#: src/Content/Nav.php:219 src/Content/Nav.php:279 +#: src/Module/BaseProfile.php:71 src/Module/BaseProfile.php:74 +#: src/Module/BaseProfile.php:82 src/Module/BaseProfile.php:85 +#: src/Module/Settings/Display.php:302 view/theme/frio/theme.php:227 +#: view/theme/frio/theme.php:231 msgid "Calendar" msgstr "Kalendář" -#: src/Content/Nav.php:233 view/theme/frio/theme.php:239 +#: src/Content/Nav.php:219 view/theme/frio/theme.php:227 msgid "Your calendar" msgstr "" -#: src/Content/Nav.php:234 +#: src/Content/Nav.php:220 msgid "Personal notes" msgstr "Osobní poznámky" -#: src/Content/Nav.php:234 +#: src/Content/Nav.php:220 msgid "Your personal notes" msgstr "Vaše osobní poznámky" -#: src/Content/Nav.php:251 src/Content/Nav.php:308 +#: src/Content/Nav.php:237 src/Content/Nav.php:294 msgid "Home" msgstr "Domů" -#: src/Content/Nav.php:251 src/Module/Settings/OAuth.php:73 +#: src/Content/Nav.php:237 src/Module/Settings/OAuth.php:59 msgid "Home Page" msgstr "Domovská stránka" -#: src/Content/Nav.php:255 src/Module/Register.php:169 -#: src/Module/Security/Login.php:124 +#: src/Content/Nav.php:241 src/Module/Register.php:161 +#: src/Module/Security/Login.php:114 msgid "Register" msgstr "Registrovat" -#: src/Content/Nav.php:255 +#: src/Content/Nav.php:241 msgid "Create an account" msgstr "Vytvořit účet" -#: src/Content/Nav.php:261 src/Module/Help.php:67 -#: src/Module/Settings/TwoFactor/AppSpecific.php:132 -#: src/Module/Settings/TwoFactor/Index.php:139 -#: src/Module/Settings/TwoFactor/Recovery.php:110 -#: src/Module/Settings/TwoFactor/Verify.php:149 view/theme/vier/theme.php:240 +#: src/Content/Nav.php:247 src/Module/Help.php:53 +#: src/Module/Settings/TwoFactor/AppSpecific.php:118 +#: src/Module/Settings/TwoFactor/Index.php:125 +#: src/Module/Settings/TwoFactor/Recovery.php:96 +#: src/Module/Settings/TwoFactor/Verify.php:135 view/theme/vier/theme.php:228 msgid "Help" msgstr "Nápověda" -#: src/Content/Nav.php:261 +#: src/Content/Nav.php:247 msgid "Help and documentation" msgstr "Nápověda a dokumentace" -#: src/Content/Nav.php:265 +#: src/Content/Nav.php:251 msgid "Apps" msgstr "Aplikace" -#: src/Content/Nav.php:265 +#: src/Content/Nav.php:251 msgid "Addon applications, utilities, games" msgstr "Doplňkové aplikace, nástroje, hry" -#: src/Content/Nav.php:269 src/Content/Text/HTML.php:867 -#: src/Module/Admin/Logs/View.php:88 src/Module/Search/Index.php:112 +#: src/Content/Nav.php:255 src/Content/Text/HTML.php:853 +#: src/Module/Admin/Logs/View.php:74 src/Module/Search/Index.php:98 msgid "Search" msgstr "Hledat" -#: src/Content/Nav.php:269 +#: src/Content/Nav.php:255 msgid "Search site content" msgstr "Hledání na stránkách tohoto webu" -#: src/Content/Nav.php:272 src/Content/Text/HTML.php:876 +#: src/Content/Nav.php:258 src/Content/Text/HTML.php:862 msgid "Full Text" msgstr "Celý text" -#: src/Content/Nav.php:273 src/Content/Text/HTML.php:877 -#: src/Content/Widget/TagCloud.php:68 +#: src/Content/Nav.php:259 src/Content/Text/HTML.php:863 +#: src/Content/Widget/TagCloud.php:54 msgid "Tags" msgstr "Štítky" -#: src/Content/Nav.php:274 src/Content/Nav.php:329 -#: src/Content/Text/HTML.php:878 src/Module/BaseProfile.php:127 -#: src/Module/BaseProfile.php:130 src/Module/Contact.php:426 -#: src/Module/Contact.php:535 view/theme/frio/theme.php:246 +#: src/Content/Nav.php:260 src/Content/Nav.php:315 +#: src/Content/Text/HTML.php:864 src/Module/BaseProfile.php:113 +#: src/Module/BaseProfile.php:116 src/Module/Contact.php:407 +#: src/Module/Contact.php:517 view/theme/frio/theme.php:234 msgid "Contacts" msgstr "Kontakty" -#: src/Content/Nav.php:289 +#: src/Content/Nav.php:275 msgid "Community" msgstr "Komunita" -#: src/Content/Nav.php:289 +#: src/Content/Nav.php:275 msgid "Conversations on this and other servers" msgstr "Konverzace na tomto a jiných serverech" -#: src/Content/Nav.php:296 +#: src/Content/Nav.php:282 msgid "Directory" msgstr "Adresář" -#: src/Content/Nav.php:296 +#: src/Content/Nav.php:282 msgid "People directory" msgstr "Adresář" -#: src/Content/Nav.php:298 src/Module/BaseAdmin.php:85 -#: src/Module/BaseModeration.php:108 +#: src/Content/Nav.php:284 src/Module/BaseAdmin.php:71 +#: src/Module/BaseModeration.php:94 msgid "Information" msgstr "Informace" -#: src/Content/Nav.php:298 +#: src/Content/Nav.php:284 msgid "Information about this friendica instance" msgstr "Informace o této instanci Friendica" -#: src/Content/Nav.php:301 src/Module/Admin/Tos.php:78 -#: src/Module/BaseAdmin.php:95 src/Module/Register.php:177 -#: src/Module/Tos.php:101 +#: src/Content/Nav.php:287 src/Module/Admin/Tos.php:64 +#: src/Module/BaseAdmin.php:81 src/Module/Register.php:169 +#: src/Module/Tos.php:87 msgid "Terms of Service" msgstr "Podmínky používání" -#: src/Content/Nav.php:301 +#: src/Content/Nav.php:287 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:242 +#: src/Content/Nav.php:292 view/theme/frio/theme.php:230 msgid "Network" msgstr "Síť" -#: src/Content/Nav.php:306 view/theme/frio/theme.php:242 +#: src/Content/Nav.php:292 view/theme/frio/theme.php:230 msgid "Conversations from your friends" msgstr "Konverzace od vašich přátel" -#: src/Content/Nav.php:308 view/theme/frio/theme.php:232 +#: src/Content/Nav.php:294 view/theme/frio/theme.php:220 msgid "Your posts and conversations" msgstr "Vaše příspěvky a konverzace" -#: src/Content/Nav.php:312 +#: src/Content/Nav.php:298 msgid "Introductions" msgstr "Představení" -#: src/Content/Nav.php:312 +#: src/Content/Nav.php:298 msgid "Friend Requests" msgstr "Požadavky o přátelství" -#: src/Content/Nav.php:313 src/Module/BaseNotifications.php:149 -#: src/Module/Notifications/Introductions.php:75 +#: src/Content/Nav.php:299 src/Module/BaseNotifications.php:135 +#: src/Module/Notifications/Introductions.php:61 msgid "Notifications" msgstr "Oznámení" -#: src/Content/Nav.php:314 +#: src/Content/Nav.php:300 msgid "See all notifications" msgstr "Zobrazit všechna oznámení" -#: src/Content/Nav.php:315 src/Module/Settings/Connectors.php:244 +#: src/Content/Nav.php:301 src/Module/Settings/Connectors.php:233 msgid "Mark as seen" msgstr "Označit jako přečtené" -#: src/Content/Nav.php:315 +#: src/Content/Nav.php:301 msgid "Mark all system notifications as seen" msgstr "" -#: src/Content/Nav.php:318 view/theme/frio/theme.php:244 +#: src/Content/Nav.php:304 view/theme/frio/theme.php:232 msgid "Private mail" msgstr "Soukromá pošta" -#: src/Content/Nav.php:319 +#: src/Content/Nav.php:305 msgid "Inbox" msgstr "Doručená pošta" -#: src/Content/Nav.php:320 +#: src/Content/Nav.php:306 msgid "Outbox" msgstr "Odeslaná pošta" -#: src/Content/Nav.php:324 +#: src/Content/Nav.php:310 msgid "Accounts" msgstr "" -#: src/Content/Nav.php:324 +#: src/Content/Nav.php:310 msgid "Manage other pages" msgstr "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:245 +#: src/Content/Nav.php:313 src/Module/Admin/Addons/Details.php:100 +#: src/Module/Admin/Themes/Details.php:85 src/Module/BaseSettings.php:168 +#: src/Module/Welcome.php:38 view/theme/frio/theme.php:233 msgid "Settings" msgstr "Nastavení" -#: src/Content/Nav.php:327 view/theme/frio/theme.php:245 +#: src/Content/Nav.php:313 view/theme/frio/theme.php:233 msgid "Account settings" msgstr "Nastavení účtu" -#: src/Content/Nav.php:329 view/theme/frio/theme.php:246 +#: src/Content/Nav.php:315 view/theme/frio/theme.php:234 msgid "Manage/edit friends and contacts" msgstr "Spravovat/upravit přátelé a kontakty" -#: src/Content/Nav.php:334 src/Module/BaseAdmin.php:119 +#: src/Content/Nav.php:320 src/Module/BaseAdmin.php:105 msgid "Admin" msgstr "Administrátor" -#: src/Content/Nav.php:334 +#: src/Content/Nav.php:320 msgid "Site setup and configuration" msgstr "Nastavení webu a konfigurace" -#: src/Content/Nav.php:335 src/Module/BaseModeration.php:128 -#: src/Module/Moderation/Blocklist/Contact.php:110 -#: src/Module/Moderation/Blocklist/Server/Add.php:121 -#: src/Module/Moderation/Blocklist/Server/Import.php:118 -#: src/Module/Moderation/Blocklist/Server/Index.php:95 -#: src/Module/Moderation/Item/Delete.php:61 -#: src/Module/Moderation/Reports.php:104 src/Module/Moderation/Summary.php:75 -#: src/Module/Moderation/Users/Active.php:133 -#: src/Module/Moderation/Users/Blocked.php:133 -#: src/Module/Moderation/Users/Deleted.php:80 -#: src/Module/Moderation/Users/Index.php:147 +#: src/Content/Nav.php:321 src/Module/BaseModeration.php:114 +#: src/Module/Moderation/Blocklist/Contact.php:96 +#: src/Module/Moderation/Blocklist/Server/Add.php:107 +#: src/Module/Moderation/Blocklist/Server/Import.php:102 +#: src/Module/Moderation/Blocklist/Server/Index.php:81 +#: src/Module/Moderation/Item/Delete.php:47 +#: src/Module/Moderation/Reports.php:96 src/Module/Moderation/Summary.php:61 +#: src/Module/Moderation/Users/Active.php:119 +#: src/Module/Moderation/Users/Blocked.php:119 +#: src/Module/Moderation/Users/Deleted.php:66 +#: src/Module/Moderation/Users/Index.php:133 msgid "Moderation" msgstr "" -#: src/Content/Nav.php:335 +#: src/Content/Nav.php:321 msgid "Content and user moderation" msgstr "" -#: src/Content/Nav.php:338 +#: src/Content/Nav.php:324 msgid "Navigation" msgstr "Navigace" -#: src/Content/Nav.php:338 +#: src/Content/Nav.php:324 msgid "Site map" msgstr "Mapa webu" -#: src/Content/Pager.php:216 +#: src/Content/Pager.php:202 msgid "first" msgstr "první" -#: src/Content/Pager.php:221 +#: src/Content/Pager.php:207 msgid "prev" msgstr "předchozí" -#: src/Content/Pager.php:276 +#: src/Content/Pager.php:262 msgid "next" msgstr "další" -#: src/Content/Pager.php:281 +#: src/Content/Pager.php:267 msgid "last" msgstr "poslední" -#: src/Content/Text/BBCode.php:702 src/Content/Text/BBCode.php:1878 -#: src/Content/Text/BBCode.php:1879 +#: src/Content/Text/BBCode.php:689 src/Content/Text/BBCode.php:1862 +#: src/Content/Text/BBCode.php:1863 msgid "Image/photo" msgstr "Obrázek/fotka" -#: src/Content/Text/BBCode.php:920 +#: src/Content/Text/BBCode.php:907 #, php-format msgid "%2$s %3$s" msgstr "" -#: src/Content/Text/BBCode.php:945 src/Model/Item.php:4012 -#: src/Model/Item.php:4018 src/Model/Item.php:4019 +#: src/Content/Text/BBCode.php:929 src/Model/Item.php:4028 +#: src/Model/Item.php:4034 src/Model/Item.php:4035 msgid "Link to source" msgstr "" -#: src/Content/Text/BBCode.php:1759 src/Content/Text/HTML.php:906 +#: src/Content/Text/BBCode.php:1743 src/Content/Text/HTML.php:892 msgid "Click to open/close" msgstr "Kliknutím otevřete/zavřete" -#: src/Content/Text/BBCode.php:1814 +#: src/Content/Text/BBCode.php:1798 msgid "$1 wrote:" msgstr "$1 napsal/a:" -#: src/Content/Text/BBCode.php:1888 src/Content/Text/BBCode.php:1889 +#: src/Content/Text/BBCode.php:1872 src/Content/Text/BBCode.php:1873 msgid "Encrypted content" msgstr "Šifrovaný obsah" -#: src/Content/Text/BBCode.php:2194 +#: src/Content/Text/BBCode.php:2205 msgid "Invalid source protocol" msgstr "Neplatný protokol zdroje" -#: src/Content/Text/BBCode.php:2213 +#: src/Content/Text/BBCode.php:2224 msgid "Invalid link protocol" msgstr "Neplatný protokol odkazu" -#: src/Content/Text/HTML.php:784 +#: src/Content/Text/HTML.php:770 msgid "Loading more entries..." msgstr "Načítám více záznamů..." -#: src/Content/Text/HTML.php:785 +#: src/Content/Text/HTML.php:771 msgid "The end" msgstr "Konec" -#: src/Content/Text/HTML.php:861 src/Content/Widget/VCard.php:127 -#: src/Model/Profile.php:477 src/Module/Contact/Profile.php:478 +#: src/Content/Text/HTML.php:847 src/Content/Widget/VCard.php:113 +#: src/Model/Profile.php:456 src/Module/Contact/Profile.php:478 msgid "Follow" msgstr "Sledovat" -#: src/Content/Widget.php:51 +#: src/Content/Widget.php:37 msgid "Add New Contact" msgstr "Přidat nový kontakt" -#: src/Content/Widget.php:52 +#: src/Content/Widget.php:38 msgid "Enter address or web location" msgstr "Zadejte adresu nebo umístění webu" -#: src/Content/Widget.php:53 +#: src/Content/Widget.php:39 msgid "Example: bob@example.com, http://example.com/barbara" msgstr "Příklad: jan@priklad.cz, http://priklad.cz/lucie" -#: src/Content/Widget.php:55 +#: src/Content/Widget.php:41 msgid "Connect" msgstr "Spojit se" -#: src/Content/Widget.php:72 +#: src/Content/Widget.php:58 #, php-format msgid "%d invitation available" msgid_plural "%d invitations available" @@ -2372,79 +2378,79 @@ msgstr[1] "%d pozvánky k dispozici" msgstr[2] "%d pozvánky k dispozici" msgstr[3] "%d pozvánek k dispozici" -#: src/Content/Widget.php:78 view/theme/vier/theme.php:193 +#: src/Content/Widget.php:64 view/theme/vier/theme.php:181 msgid "Find People" msgstr "Najít lidi" -#: src/Content/Widget.php:79 view/theme/vier/theme.php:194 +#: src/Content/Widget.php:65 view/theme/vier/theme.php:182 msgid "Enter name or interest" msgstr "Zadejte jméno nebo zájmy" -#: src/Content/Widget.php:81 view/theme/vier/theme.php:196 +#: src/Content/Widget.php:67 view/theme/vier/theme.php:184 msgid "Examples: Robert Morgenstein, Fishing" msgstr "Příklady: Josef Dvořák, rybaření" -#: src/Content/Widget.php:82 src/Module/Contact.php:460 -#: src/Module/Directory.php:96 view/theme/vier/theme.php:197 +#: src/Content/Widget.php:68 src/Module/Contact.php:441 +#: src/Module/Directory.php:83 view/theme/vier/theme.php:185 msgid "Find" msgstr "Najít" -#: src/Content/Widget.php:83 src/Module/Contact/Suggestions.php:73 -#: view/theme/vier/theme.php:198 +#: src/Content/Widget.php:69 src/Module/Contact/Suggestions.php:59 +#: view/theme/vier/theme.php:186 msgid "Friend Suggestions" msgstr "Návrhy přátel" -#: src/Content/Widget.php:84 view/theme/vier/theme.php:199 +#: src/Content/Widget.php:70 view/theme/vier/theme.php:187 msgid "Similar Interests" msgstr "Podobné zájmy" -#: src/Content/Widget.php:85 view/theme/vier/theme.php:200 +#: src/Content/Widget.php:71 view/theme/vier/theme.php:188 msgid "Random Profile" msgstr "Náhodný profil" -#: src/Content/Widget.php:86 view/theme/vier/theme.php:201 +#: src/Content/Widget.php:72 view/theme/vier/theme.php:189 msgid "Invite Friends" msgstr "Pozvat přátele" -#: src/Content/Widget.php:87 src/Module/Directory.php:88 -#: view/theme/vier/theme.php:202 +#: src/Content/Widget.php:73 src/Module/Directory.php:75 +#: view/theme/vier/theme.php:190 msgid "Global Directory" msgstr "Globální adresář" -#: src/Content/Widget.php:89 view/theme/vier/theme.php:204 +#: src/Content/Widget.php:75 view/theme/vier/theme.php:192 msgid "Local Directory" msgstr "Místní adresář" -#: src/Content/Widget.php:218 +#: src/Content/Widget.php:196 msgid "Everyone" msgstr "" -#: src/Content/Widget.php:243 src/Module/Contact.php:423 +#: src/Content/Widget.php:221 src/Module/Contact.php:404 msgid "No relationship" msgstr "" -#: src/Content/Widget.php:248 +#: src/Content/Widget.php:226 msgid "Relationships" msgstr "Vztahy" -#: src/Content/Widget.php:250 src/Module/Circle.php:294 -#: src/Module/Contact.php:344 +#: src/Content/Widget.php:228 src/Module/Circle.php:280 +#: src/Module/Contact.php:325 msgid "All Contacts" msgstr "Všechny kontakty" -#: src/Content/Widget.php:291 +#: src/Content/Widget.php:269 msgid "All Protocols" msgstr "Všechny protokoly" -#: src/Content/Widget.php:321 src/Content/Widget.php:352 +#: src/Content/Widget.php:299 src/Content/Widget.php:330 msgid "Everything" msgstr "Všechno" -#: src/Content/Widget.php:350 +#: src/Content/Widget.php:328 msgid "Categories" msgstr "Kategorie" -#: src/Content/Widget.php:407 +#: src/Content/Widget.php:385 #, php-format msgid "%d contact in common" msgid_plural "%d contacts in common" @@ -2453,47 +2459,47 @@ msgstr[1] "%d společné kontakty" msgstr[2] "%d společného kontaktu" msgstr[3] "%d společných kontaktů" -#: src/Content/Widget.php:515 +#: src/Content/Widget.php:493 msgid "On this date" msgstr "" -#: src/Content/Widget.php:535 +#: src/Content/Widget.php:513 msgid "Persons" msgstr "" -#: src/Content/Widget.php:536 +#: src/Content/Widget.php:514 msgid "Organisations" msgstr "" -#: src/Content/Widget.php:537 src/Model/Contact.php:1729 +#: src/Content/Widget.php:515 src/Model/Contact.php:1747 msgid "News" msgstr "Zprávy" -#: src/Content/Widget.php:539 +#: src/Content/Widget.php:517 msgid "Relays" msgstr "" -#: src/Content/Widget.php:546 src/Module/Moderation/BaseUsers.php:69 +#: src/Content/Widget.php:524 src/Module/Moderation/BaseUsers.php:56 msgid "All" msgstr "" -#: src/Content/Widget/CalendarExport.php:56 +#: src/Content/Widget/CalendarExport.php:42 msgid "Export" msgstr "Exportovat" -#: src/Content/Widget/CalendarExport.php:57 +#: src/Content/Widget/CalendarExport.php:43 msgid "Export calendar as ical" msgstr "Exportovat kalendář jako ical" -#: src/Content/Widget/CalendarExport.php:58 +#: src/Content/Widget/CalendarExport.php:44 msgid "Export calendar as csv" msgstr "Exportovat kalendář jako csv" -#: src/Content/Widget/ContactBlock.php:79 +#: src/Content/Widget/ContactBlock.php:65 msgid "No contacts" msgstr "Žádné kontakty" -#: src/Content/Widget/ContactBlock.php:110 +#: src/Content/Widget/ContactBlock.php:96 #, php-format msgid "%d Contact" msgid_plural "%d Contacts" @@ -2502,15 +2508,15 @@ msgstr[1] "%d kontakty" msgstr[2] "%d kontaktu" msgstr[3] "%d kontaktů" -#: src/Content/Widget/ContactBlock.php:127 +#: src/Content/Widget/ContactBlock.php:113 msgid "View Contacts" msgstr "Zobrazit kontakty" -#: src/Content/Widget/SavedSearches.php:47 +#: src/Content/Widget/SavedSearches.php:33 msgid "Remove term" msgstr "Odstranit termín" -#: src/Content/Widget/TrendingTags.php:53 +#: src/Content/Widget/TrendingTags.php:39 #, php-format msgid "Trending Tags (last %d hour)" msgid_plural "Trending Tags (last %d hours)" @@ -2519,138 +2525,138 @@ msgstr[1] "Populární štítky (poslední %d hodiny)" msgstr[2] "Populární štítky (posledních %d hodin)" msgstr[3] "Populární štítky (posledních %d hodin)" -#: src/Content/Widget/TrendingTags.php:54 +#: src/Content/Widget/TrendingTags.php:40 msgid "More Trending Tags" msgstr "Další populární štítky" -#: src/Content/Widget/VCard.php:105 src/Model/Contact.php:1196 -#: src/Model/Profile.php:462 +#: src/Content/Widget/VCard.php:91 src/Model/Contact.php:1212 +#: src/Model/Profile.php:441 msgid "Post to group" msgstr "" -#: src/Content/Widget/VCard.php:110 src/Model/Contact.php:1200 -#: src/Model/Profile.php:466 src/Module/Moderation/Item/Source.php:85 +#: src/Content/Widget/VCard.php:96 src/Model/Contact.php:1216 +#: src/Model/Profile.php:445 src/Module/Moderation/Item/Source.php:77 msgid "Mention" msgstr "" -#: src/Content/Widget/VCard.php:120 src/Model/Profile.php:381 -#: src/Module/Contact/Profile.php:414 src/Module/Profile/Profile.php:199 +#: src/Content/Widget/VCard.php:106 src/Model/Profile.php:360 +#: src/Module/Contact/Profile.php:414 src/Module/Profile/Profile.php:187 msgid "XMPP:" msgstr "XMPP:" -#: src/Content/Widget/VCard.php:121 src/Model/Profile.php:382 -#: src/Module/Contact/Profile.php:416 src/Module/Profile/Profile.php:203 +#: src/Content/Widget/VCard.php:107 src/Model/Profile.php:361 +#: src/Module/Contact/Profile.php:416 src/Module/Profile/Profile.php:191 msgid "Matrix:" msgstr "" -#: src/Content/Widget/VCard.php:122 src/Model/Event.php:82 -#: src/Model/Event.php:109 src/Model/Event.php:471 src/Model/Event.php:960 -#: src/Model/Profile.php:376 src/Module/Contact/Profile.php:412 -#: src/Module/Directory.php:147 src/Module/Notifications/Introductions.php:187 -#: src/Module/Profile/Profile.php:221 +#: src/Content/Widget/VCard.php:108 src/Model/Event.php:68 +#: src/Model/Event.php:95 src/Model/Event.php:457 src/Model/Event.php:946 +#: src/Model/Profile.php:355 src/Module/Contact/Profile.php:412 +#: src/Module/Directory.php:134 src/Module/Notifications/Introductions.php:179 +#: src/Module/Profile/Profile.php:209 msgid "Location:" msgstr "Poloha:" -#: src/Content/Widget/VCard.php:125 src/Model/Profile.php:490 -#: src/Module/Notifications/Introductions.php:201 +#: src/Content/Widget/VCard.php:111 src/Model/Profile.php:469 +#: src/Module/Notifications/Introductions.php:193 msgid "Network:" msgstr "Síť:" -#: src/Content/Widget/VCard.php:129 src/Model/Contact.php:1228 -#: src/Model/Contact.php:1240 src/Model/Profile.php:479 +#: src/Content/Widget/VCard.php:115 src/Model/Contact.php:1244 +#: src/Model/Contact.php:1256 src/Model/Profile.php:458 #: src/Module/Contact/Profile.php:470 msgid "Unfollow" msgstr "Přestat sledovat" -#: src/Content/Widget/VCard.php:135 src/Model/Contact.php:1198 -#: src/Model/Profile.php:464 +#: src/Content/Widget/VCard.php:121 src/Model/Contact.php:1214 +#: src/Model/Profile.php:443 msgid "View group" msgstr "" -#: src/Core/ACL.php:166 src/Module/Profile/Profile.php:269 +#: src/Core/ACL.php:152 src/Module/Profile/Profile.php:257 msgid "Yourself" msgstr "" -#: src/Core/ACL.php:202 src/Module/Privacy/PermissionTooltip.php:170 -#: src/Module/Privacy/PermissionTooltip.php:192 +#: src/Core/ACL.php:188 src/Module/Privacy/PermissionTooltip.php:156 +#: src/Module/Privacy/PermissionTooltip.php:178 msgid "Mutuals" msgstr "Vzájemní" -#: src/Core/ACL.php:294 +#: src/Core/ACL.php:280 msgid "Post to Email" msgstr "Poslat příspěvek na e-mail" -#: src/Core/ACL.php:321 src/Module/Privacy/PermissionTooltip.php:117 -#: src/Module/Privacy/PermissionTooltip.php:231 +#: src/Core/ACL.php:307 src/Module/Privacy/PermissionTooltip.php:103 +#: src/Module/Privacy/PermissionTooltip.php:217 msgid "Public" msgstr "" -#: src/Core/ACL.php:322 +#: src/Core/ACL.php:308 msgid "" "This content will be shown to all your followers and can be seen in the " "community pages and by anyone with its link." msgstr "" -#: src/Core/ACL.php:323 src/Module/Privacy/PermissionTooltip.php:119 +#: src/Core/ACL.php:309 src/Module/Privacy/PermissionTooltip.php:105 msgid "Limited/Private" msgstr "" -#: src/Core/ACL.php:324 +#: src/Core/ACL.php:310 msgid "" "This content will be shown only to the people in the first box, to the " "exception of the people mentioned in the second box. It won't appear " "anywhere public." msgstr "" -#: src/Core/ACL.php:324 +#: src/Core/ACL.php:310 msgid "" "Start typing the name of a contact or a circle to show a filtered list. You " "can also mention the special circles \"Followers\" and \"Mutuals\"." msgstr "" -#: src/Core/ACL.php:325 +#: src/Core/ACL.php:311 msgid "Show to:" msgstr "" -#: src/Core/ACL.php:326 +#: src/Core/ACL.php:312 msgid "Except to:" msgstr "" -#: src/Core/ACL.php:327 src/Module/Post/Edit.php:154 +#: src/Core/ACL.php:313 src/Module/Post/Edit.php:140 msgid "CC: email addresses" msgstr "Kopie: e-mailové adresy" -#: src/Core/ACL.php:328 src/Module/Post/Edit.php:160 +#: src/Core/ACL.php:314 src/Module/Post/Edit.php:146 msgid "Example: bob@example.com, mary@example.com" msgstr "Příklad: jan@priklad.cz, lucie@priklad.cz" -#: src/Core/ACL.php:329 +#: src/Core/ACL.php:315 msgid "Connectors" msgstr "Konektory" -#: src/Core/Installer.php:180 +#: src/Core/Installer.php:166 msgid "" "The database configuration file \"config/local.config.php\" could not be " "written. Please use the enclosed text to create a configuration file in your" " web server root." msgstr "Databázový konfigurační soubor „config/local.config.php“ nemohl být zapsán. Prosím, použijte přiložený text k vytvoření konfiguračního souboru v kořenovém adresáři vašeho webového serveru." -#: src/Core/Installer.php:197 +#: src/Core/Installer.php:183 msgid "" "You may need to import the file \"database.sql\" manually using phpmyadmin " "or mysql." msgstr "Nejspíše budete muset manuálně importovat soubor „database.sql“ pomocí phpMyAdmin či MySQL." -#: src/Core/Installer.php:198 src/Module/Install.php:207 -#: src/Module/Install.php:350 +#: src/Core/Installer.php:184 src/Module/Install.php:193 +#: src/Module/Install.php:336 msgid "Please see the file \"doc/INSTALL.md\"." msgstr "" -#: src/Core/Installer.php:259 +#: src/Core/Installer.php:245 msgid "Could not find a command line version of PHP in the web server PATH." msgstr "Nelze najít verzi PHP pro příkazový řádek v PATH webového serveru." -#: src/Core/Installer.php:260 +#: src/Core/Installer.php:246 msgid "" "If you don't have a command line version of PHP installed on your server, " "you will not be able to run the background processing. See 'Setup the worker'" msgstr "" -#: src/Core/Installer.php:265 +#: src/Core/Installer.php:251 msgid "PHP executable path" msgstr "Cesta ke spustitelnému souboru PHP" -#: src/Core/Installer.php:265 +#: src/Core/Installer.php:251 msgid "" "Enter full path to php executable. You can leave this blank to continue the " "installation." msgstr "Zadejte plnou cestu ke spustitelnému souboru PHP. Tento údaj můžete ponechat nevyplněný a pokračovat v instalaci." -#: src/Core/Installer.php:270 +#: src/Core/Installer.php:256 msgid "Command line PHP" msgstr "Příkazový řádek PHP" -#: src/Core/Installer.php:279 +#: src/Core/Installer.php:265 msgid "PHP executable is not the php cli binary (could be cgi-fgci version)" msgstr "PHP executable není php cli binary (může být verze cgi-fgci)" -#: src/Core/Installer.php:280 +#: src/Core/Installer.php:266 msgid "Found PHP version: " msgstr "Nalezena verze PHP:" -#: src/Core/Installer.php:282 +#: src/Core/Installer.php:268 msgid "PHP cli binary" msgstr "PHP cli binary" -#: src/Core/Installer.php:295 +#: src/Core/Installer.php:281 msgid "" "The command line version of PHP on your system does not have " "\"register_argc_argv\" enabled." msgstr "Verze PHP pro příkazový řádek na vašem systému nemá povoleno nastavení „register_argc_argv“." -#: src/Core/Installer.php:296 +#: src/Core/Installer.php:282 msgid "This is required for message delivery to work." msgstr "Toto je nutné pro fungování doručování zpráv." -#: src/Core/Installer.php:301 +#: src/Core/Installer.php:287 msgid "PHP register_argc_argv" msgstr "PHP register_argc_argv" -#: src/Core/Installer.php:333 +#: src/Core/Installer.php:319 msgid "" "Error: the \"openssl_pkey_new\" function on this system is not able to " "generate encryption keys" msgstr "Chyba: funkce „openssl_pkey_new“ na tomto systému není schopna generovat šifrovací klíče" -#: src/Core/Installer.php:334 +#: src/Core/Installer.php:320 msgid "" "If running under Windows, please see " "\"http://www.php.net/manual/en/openssl.installation.php\"." msgstr "Pokud systém běží na Windows, prosím přečtěte si „http://www.php.net/manual/en/openssl.installation.php“." -#: src/Core/Installer.php:337 +#: src/Core/Installer.php:323 msgid "Generate encryption keys" msgstr "Generovat šifrovací klíče" -#: src/Core/Installer.php:388 +#: src/Core/Installer.php:374 msgid "" "Error: Apache webserver mod-rewrite module is required but not installed." msgstr "Chyba: Modul mod_rewrite webového serveru Apache je vyadován, ale není nainstalován." -#: src/Core/Installer.php:392 +#: src/Core/Installer.php:378 msgid "Apache mod_rewrite module" msgstr "Modul Apache mod_rewrite" -#: src/Core/Installer.php:398 +#: src/Core/Installer.php:384 msgid "Error: PDO or MySQLi PHP module required but not installed." msgstr "Chyba: PHP modul PDO nebo MySQLi je vyžadován, ale není nainstalován." -#: src/Core/Installer.php:402 +#: src/Core/Installer.php:388 msgid "Error: The MySQL driver for PDO is not installed." msgstr "Chyba: Ovladač MySQL pro PDO není nainstalován" -#: src/Core/Installer.php:405 +#: src/Core/Installer.php:391 msgid "PDO or MySQLi PHP module" msgstr "PHP modul PDO nebo MySQLi" -#: src/Core/Installer.php:411 +#: src/Core/Installer.php:397 msgid "Error: The IntlChar module is not installed." msgstr "" -#: src/Core/Installer.php:414 +#: src/Core/Installer.php:400 msgid "IntlChar PHP module" msgstr "" -#: src/Core/Installer.php:422 +#: src/Core/Installer.php:408 msgid "Error, XML PHP module required but not installed." msgstr "Chyba: PHP modul XML je vyžadován, ale není nainstalován" -#: src/Core/Installer.php:426 +#: src/Core/Installer.php:412 msgid "XML PHP module" msgstr "PHP modul XML" -#: src/Core/Installer.php:429 +#: src/Core/Installer.php:415 msgid "libCurl PHP module" msgstr "PHP modul libCurl" -#: src/Core/Installer.php:430 +#: src/Core/Installer.php:416 msgid "Error: libCURL PHP module required but not installed." msgstr "Chyba: PHP modul libcurl je vyžadován, ale není nainstalován." -#: src/Core/Installer.php:436 +#: src/Core/Installer.php:422 msgid "GD graphics PHP module" msgstr "PHP modul GD graphics" -#: src/Core/Installer.php:437 +#: src/Core/Installer.php:423 msgid "" "Error: GD graphics PHP module with JPEG support required but not installed." msgstr "Chyba: PHP modul GD graphics je vyžadován, ale není nainstalován." -#: src/Core/Installer.php:443 +#: src/Core/Installer.php:429 msgid "OpenSSL PHP module" msgstr "PHP modul OpenSSL" -#: src/Core/Installer.php:444 +#: src/Core/Installer.php:430 msgid "Error: openssl PHP module required but not installed." msgstr "Chyba: PHP modul openssl je vyžadován, ale není nainstalován." -#: src/Core/Installer.php:450 +#: src/Core/Installer.php:436 msgid "mb_string PHP module" msgstr "PHP modul mb_string" -#: src/Core/Installer.php:451 +#: src/Core/Installer.php:437 msgid "Error: mb_string PHP module required but not installed." msgstr "Chyba: PHP modul mb_string je vyžadován, ale není nainstalován." -#: src/Core/Installer.php:457 +#: src/Core/Installer.php:443 msgid "iconv PHP module" msgstr "PHP modul iconv" -#: src/Core/Installer.php:458 +#: src/Core/Installer.php:444 msgid "Error: iconv PHP module required but not installed." msgstr "Chyba: PHP modul iconv je vyžadován, ale není nainstalován" -#: src/Core/Installer.php:464 +#: src/Core/Installer.php:450 msgid "POSIX PHP module" msgstr "PHP modul POSIX" -#: src/Core/Installer.php:465 +#: src/Core/Installer.php:451 msgid "Error: POSIX PHP module required but not installed." msgstr "Chyba: PHP modul POSIX je vyžadován, ale není nainstalován." -#: src/Core/Installer.php:471 +#: src/Core/Installer.php:457 msgid "Program execution functions" msgstr "" -#: src/Core/Installer.php:472 +#: src/Core/Installer.php:458 msgid "" "Error: Program execution functions (proc_open) required but not enabled." msgstr "" -#: src/Core/Installer.php:478 +#: src/Core/Installer.php:464 msgid "JSON PHP module" msgstr "PHP modul JSON" -#: src/Core/Installer.php:479 +#: src/Core/Installer.php:465 msgid "Error: JSON PHP module required but not installed." msgstr "Chyba: PHP modul JSON je vyžadován, ale není nainstalován" -#: src/Core/Installer.php:485 +#: src/Core/Installer.php:471 msgid "File Information PHP module" msgstr "PHP modul File Information" -#: src/Core/Installer.php:486 +#: src/Core/Installer.php:472 msgid "Error: File Information PHP module required but not installed." msgstr "Chyba: PHP modul File Information je vyžadován, ale není nainstalován." -#: src/Core/Installer.php:492 +#: src/Core/Installer.php:478 msgid "GNU Multiple Precision PHP module" msgstr "" -#: src/Core/Installer.php:493 +#: src/Core/Installer.php:479 msgid "Error: GNU Multiple Precision PHP module required but not installed." msgstr "" -#: src/Core/Installer.php:499 +#: src/Core/Installer.php:485 msgid "IDN Functions PHP module" msgstr "" -#: src/Core/Installer.php:500 +#: src/Core/Installer.php:486 msgid "Error: IDN Functions PHP module required but not installed." msgstr "" -#: src/Core/Installer.php:523 +#: src/Core/Installer.php:509 msgid "" "The web installer needs to be able to create a file called " "\"local.config.php\" in the \"config\" folder of your web server and it is " "unable to do so." msgstr "Webový instalátor musí být schopen vytvořit soubor s názvem „local.config.php“ v adresáři „config“ Vašeho webového serveru a není mu to umožněno. " -#: src/Core/Installer.php:524 +#: src/Core/Installer.php:510 msgid "" "This is most often a permission setting, as the web server may not be able " "to write files in your folder - even if you can." msgstr "Toto je nejčastěji nastavením oprávnění, kdy webový server nemusí být schopen zapisovat soubory do vašeho adresáře - i když vy můžete." -#: src/Core/Installer.php:525 +#: src/Core/Installer.php:511 msgid "" "At the end of this procedure, we will give you a text to save in a file " "named local.config.php in your Friendica \"config\" folder." msgstr "Na konci této procedury od nás obdržíte text k uložení v souboru pojmenovaném local.config.php v adresáři „config“ na Vaší instalaci Friendica." -#: src/Core/Installer.php:526 +#: src/Core/Installer.php:512 msgid "" "You can alternatively skip this procedure and perform a manual installation." " Please see the file \"doc/INSTALL.md\" for instructions." msgstr "" -#: src/Core/Installer.php:529 +#: src/Core/Installer.php:515 msgid "config/local.config.php is writable" msgstr "Soubor config/local.config.php je zapisovatelný" -#: src/Core/Installer.php:549 +#: src/Core/Installer.php:535 msgid "" "Friendica uses the Smarty3 template engine to render its web views. Smarty3 " "compiles templates to PHP to speed up rendering." msgstr "Friendica používá k zobrazení svých webových stránek šablonovací nástroj Smarty3. Smarty3 kompiluje šablony do PHP pro zrychlení vykreslování." -#: src/Core/Installer.php:550 +#: src/Core/Installer.php:536 msgid "" "In order to store these compiled templates, the web server needs to have " "write access to the directory view/smarty3/ under the Friendica top level " "folder." msgstr "Pro uložení kompilovaných šablon potřebuje webový server mít přístup k zápisu do adresáře view/smarty3/ pod kořenovým adresářem Friendica." -#: src/Core/Installer.php:551 +#: src/Core/Installer.php:537 msgid "" "Please ensure that the user that your web server runs as (e.g. www-data) has" " write access to this folder." msgstr "Prosím ujistěte se, že má uživatel webového serveru (jako například www-data) právo zápisu do tohoto adresáře" -#: src/Core/Installer.php:552 +#: src/Core/Installer.php:538 msgid "" "Note: as a security measure, you should give the web server write access to " "view/smarty3/ only--not the template files (.tpl) that it contains." msgstr "Poznámka: jako bezpečnostní opatření byste měl/a přidělit webovém serveru právo zápisu pouze do adresáře /view/smarty3/ -- a nikoliv už do souborů s šablonami (.tpl), které obsahuje." -#: src/Core/Installer.php:555 +#: src/Core/Installer.php:541 msgid "view/smarty3 is writable" msgstr "Adresář view/smarty3 je zapisovatelný" -#: src/Core/Installer.php:583 +#: src/Core/Installer.php:569 msgid "" "Url rewrite in .htaccess seems not working. Make sure you copied .htaccess-" "dist to .htaccess." msgstr "" -#: src/Core/Installer.php:584 +#: src/Core/Installer.php:570 msgid "" "In some circumstances (like running inside containers), you can skip this " "error." msgstr "" -#: src/Core/Installer.php:586 +#: src/Core/Installer.php:572 msgid "Error message from Curl when fetching" msgstr "Chybová zpráva od Curl při načítání" -#: src/Core/Installer.php:592 +#: src/Core/Installer.php:578 msgid "Url rewrite is working" msgstr "Url rewrite je funkční." -#: src/Core/Installer.php:621 +#: src/Core/Installer.php:607 msgid "" "The detection of TLS to secure the communication between the browser and the" " new Friendica server failed." msgstr "" -#: src/Core/Installer.php:622 +#: src/Core/Installer.php:608 msgid "" "It is highly encouraged to use Friendica only over a secure connection as " "sensitive information like passwords will be transmitted." msgstr "" -#: src/Core/Installer.php:623 +#: src/Core/Installer.php:609 msgid "Please ensure that the connection to the server is secure." msgstr "" -#: src/Core/Installer.php:624 +#: src/Core/Installer.php:610 msgid "No TLS detected" msgstr "" -#: src/Core/Installer.php:626 +#: src/Core/Installer.php:612 msgid "TLS detected" msgstr "" -#: src/Core/Installer.php:643 +#: src/Core/Installer.php:629 msgid "ImageMagick PHP extension is not installed" msgstr "PHP rozšíření ImageMagick není nainstalováno" -#: src/Core/Installer.php:645 +#: src/Core/Installer.php:631 msgid "ImageMagick PHP extension is installed" msgstr "PHP rozšíření ImageMagick je nainstalováno" -#: src/Core/Installer.php:666 +#: src/Core/Installer.php:652 msgid "Database already in use." msgstr "Databáze se již používá." -#: src/Core/Installer.php:671 +#: src/Core/Installer.php:657 msgid "Could not connect to database." msgstr "Nelze se připojit k databázi." -#: src/Core/L10n.php:444 src/Model/Item.php:2300 +#: src/Core/L10n.php:430 src/Model/Item.php:2315 msgid "Undetermined" msgstr "" -#: src/Core/L10n.php:451 +#: src/Core/L10n.php:437 #, php-format msgid "%s (%s)" msgstr "" -#: src/Core/L10n.php:499 src/Model/Event.php:430 -#: src/Module/Settings/Display.php:284 +#: src/Core/L10n.php:485 src/Model/Event.php:416 +#: src/Module/Settings/Display.php:270 msgid "Monday" msgstr "pondělí" -#: src/Core/L10n.php:499 src/Model/Event.php:431 -#: src/Module/Settings/Display.php:285 +#: src/Core/L10n.php:485 src/Model/Event.php:417 +#: src/Module/Settings/Display.php:271 msgid "Tuesday" msgstr "úterý" -#: src/Core/L10n.php:499 src/Model/Event.php:432 -#: src/Module/Settings/Display.php:286 +#: src/Core/L10n.php:485 src/Model/Event.php:418 +#: src/Module/Settings/Display.php:272 msgid "Wednesday" msgstr "středa" -#: src/Core/L10n.php:499 src/Model/Event.php:433 -#: src/Module/Settings/Display.php:287 +#: src/Core/L10n.php:485 src/Model/Event.php:419 +#: src/Module/Settings/Display.php:273 msgid "Thursday" msgstr "čtvrtek" -#: src/Core/L10n.php:499 src/Model/Event.php:434 -#: src/Module/Settings/Display.php:288 +#: src/Core/L10n.php:485 src/Model/Event.php:420 +#: src/Module/Settings/Display.php:274 msgid "Friday" msgstr "pátek" -#: src/Core/L10n.php:499 src/Model/Event.php:435 -#: src/Module/Settings/Display.php:289 +#: src/Core/L10n.php:485 src/Model/Event.php:421 +#: src/Module/Settings/Display.php:275 msgid "Saturday" msgstr "sobota" -#: src/Core/L10n.php:499 src/Model/Event.php:429 -#: src/Module/Settings/Display.php:283 +#: src/Core/L10n.php:485 src/Model/Event.php:415 +#: src/Module/Settings/Display.php:269 msgid "Sunday" msgstr "neděle" -#: src/Core/L10n.php:503 src/Model/Event.php:450 +#: src/Core/L10n.php:489 src/Model/Event.php:436 msgid "January" msgstr "leden" -#: src/Core/L10n.php:503 src/Model/Event.php:451 +#: src/Core/L10n.php:489 src/Model/Event.php:437 msgid "February" msgstr "únor" -#: src/Core/L10n.php:503 src/Model/Event.php:452 +#: src/Core/L10n.php:489 src/Model/Event.php:438 msgid "March" msgstr "březen" -#: src/Core/L10n.php:503 src/Model/Event.php:453 +#: src/Core/L10n.php:489 src/Model/Event.php:439 msgid "April" msgstr "duben" -#: src/Core/L10n.php:503 src/Core/L10n.php:522 src/Model/Event.php:441 +#: src/Core/L10n.php:489 src/Core/L10n.php:508 src/Model/Event.php:427 msgid "May" msgstr "květen" -#: src/Core/L10n.php:503 src/Model/Event.php:454 +#: src/Core/L10n.php:489 src/Model/Event.php:440 msgid "June" msgstr "červen" -#: src/Core/L10n.php:503 src/Model/Event.php:455 +#: src/Core/L10n.php:489 src/Model/Event.php:441 msgid "July" msgstr "červenec" -#: src/Core/L10n.php:503 src/Model/Event.php:456 +#: src/Core/L10n.php:489 src/Model/Event.php:442 msgid "August" msgstr "srpen" -#: src/Core/L10n.php:503 src/Model/Event.php:457 +#: src/Core/L10n.php:489 src/Model/Event.php:443 msgid "September" msgstr "září" -#: src/Core/L10n.php:503 src/Model/Event.php:458 +#: src/Core/L10n.php:489 src/Model/Event.php:444 msgid "October" msgstr "říjen" -#: src/Core/L10n.php:503 src/Model/Event.php:459 +#: src/Core/L10n.php:489 src/Model/Event.php:445 msgid "November" msgstr "listopad" -#: src/Core/L10n.php:503 src/Model/Event.php:460 +#: src/Core/L10n.php:489 src/Model/Event.php:446 msgid "December" msgstr "prosinec" -#: src/Core/L10n.php:518 src/Model/Event.php:422 +#: src/Core/L10n.php:504 src/Model/Event.php:408 msgid "Mon" msgstr "pon" -#: src/Core/L10n.php:518 src/Model/Event.php:423 +#: src/Core/L10n.php:504 src/Model/Event.php:409 msgid "Tue" msgstr "úte" -#: src/Core/L10n.php:518 src/Model/Event.php:424 +#: src/Core/L10n.php:504 src/Model/Event.php:410 msgid "Wed" msgstr "stř" -#: src/Core/L10n.php:518 src/Model/Event.php:425 +#: src/Core/L10n.php:504 src/Model/Event.php:411 msgid "Thu" msgstr "čtv" -#: src/Core/L10n.php:518 src/Model/Event.php:426 +#: src/Core/L10n.php:504 src/Model/Event.php:412 msgid "Fri" msgstr "pát" -#: src/Core/L10n.php:518 src/Model/Event.php:427 +#: src/Core/L10n.php:504 src/Model/Event.php:413 msgid "Sat" msgstr "sob" -#: src/Core/L10n.php:518 src/Model/Event.php:421 +#: src/Core/L10n.php:504 src/Model/Event.php:407 msgid "Sun" msgstr "ned" -#: src/Core/L10n.php:522 src/Model/Event.php:437 +#: src/Core/L10n.php:508 src/Model/Event.php:423 msgid "Jan" msgstr "led" -#: src/Core/L10n.php:522 src/Model/Event.php:438 +#: src/Core/L10n.php:508 src/Model/Event.php:424 msgid "Feb" msgstr "úno" -#: src/Core/L10n.php:522 src/Model/Event.php:439 +#: src/Core/L10n.php:508 src/Model/Event.php:425 msgid "Mar" msgstr "bře" -#: src/Core/L10n.php:522 src/Model/Event.php:440 +#: src/Core/L10n.php:508 src/Model/Event.php:426 msgid "Apr" msgstr "dub" -#: src/Core/L10n.php:522 src/Model/Event.php:442 +#: src/Core/L10n.php:508 src/Model/Event.php:428 msgid "Jun" msgstr "čvn" -#: src/Core/L10n.php:522 src/Model/Event.php:443 +#: src/Core/L10n.php:508 src/Model/Event.php:429 msgid "Jul" msgstr "čvc" -#: src/Core/L10n.php:522 src/Model/Event.php:444 +#: src/Core/L10n.php:508 src/Model/Event.php:430 msgid "Aug" msgstr "srp" -#: src/Core/L10n.php:522 +#: src/Core/L10n.php:508 msgid "Sep" msgstr "zář" -#: src/Core/L10n.php:522 src/Model/Event.php:446 +#: src/Core/L10n.php:508 src/Model/Event.php:432 msgid "Oct" msgstr "říj" -#: src/Core/L10n.php:522 src/Model/Event.php:447 +#: src/Core/L10n.php:508 src/Model/Event.php:433 msgid "Nov" msgstr "lis" -#: src/Core/L10n.php:522 src/Model/Event.php:448 +#: src/Core/L10n.php:508 src/Model/Event.php:434 msgid "Dec" msgstr "pro" -#: src/Core/Logger/Util/LoggerSettingsCheck.php:60 +#: src/Core/Logger/Util/LoggerSettingsCheck.php:46 #, php-format msgid "The logfile '%s' is not usable. No logging possible (error: '%s')" msgstr "" -#: src/Core/Logger/Util/LoggerSettingsCheck.php:85 +#: src/Core/Logger/Util/LoggerSettingsCheck.php:71 #, php-format msgid "" "The debug logfile '%s' is not usable. No logging possible (error: '%s')" msgstr "" -#: src/Core/Renderer.php:92 src/Core/Renderer.php:121 -#: src/Core/Renderer.php:150 src/Core/Renderer.php:184 -#: src/Render/FriendicaSmartyEngine.php:60 +#: src/Core/Renderer.php:78 src/Core/Renderer.php:107 +#: src/Core/Renderer.php:136 src/Core/Renderer.php:170 +#: src/Render/FriendicaSmartyEngine.php:46 msgid "" "Friendica can't display this page at the moment, please contact the " "administrator." msgstr "" -#: src/Core/Renderer.php:146 +#: src/Core/Renderer.php:132 msgid "template engine cannot be registered without a name." msgstr "" -#: src/Core/Renderer.php:180 +#: src/Core/Renderer.php:166 msgid "template engine is not registered!" msgstr "" -#: src/Core/Storage/Type/FilesystemConfig.php:78 +#: src/Core/Storage/Type/FilesystemConfig.php:64 msgid "Storage base path" msgstr "Cesta ke kořenové složce úložiště" -#: src/Core/Storage/Type/FilesystemConfig.php:80 +#: src/Core/Storage/Type/FilesystemConfig.php:66 msgid "" "Folder where uploaded files are saved. For maximum security, This should be " "a path outside web server folder tree" msgstr "Složka, do které jsou ukládány nahrané soubory. Pro maximální bezpečnost to musí být cesta mimo složku webového serveru" -#: src/Core/Storage/Type/FilesystemConfig.php:93 +#: src/Core/Storage/Type/FilesystemConfig.php:79 msgid "Enter a valid existing folder" msgstr "Zadejte platnou existující složku" -#: src/Core/Update.php:80 +#: src/Core/Update.php:66 #, php-format msgid "" "Updates from version %s are not supported. Please update at least to version" " 2021.01 and wait until the postupdate finished version 1383." msgstr "" -#: src/Core/Update.php:91 +#: src/Core/Update.php:77 #, php-format msgid "" "Updates from postupdate version %s are not supported. Please update at least" " to version 2021.01 and wait until the postupdate finished version 1383." msgstr "" -#: src/Core/Update.php:183 +#: src/Core/Update.php:169 #, php-format msgid "%s: executing pre update %d" msgstr "" -#: src/Core/Update.php:225 +#: src/Core/Update.php:211 #, php-format msgid "%s: executing post update %d" msgstr "" -#: src/Core/Update.php:299 +#: src/Core/Update.php:285 #, php-format msgid "Update %s failed. See error logs." msgstr "Aktualizace %s selhala. Zkontrolujte protokol chyb." -#: src/Core/Update.php:339 +#: src/Core/Update.php:325 #, php-format msgid "" "\n" @@ -3203,49 +3209,49 @@ msgid "" "\t\t\t\tfriendica developer if you can not help me on your own. My database might be invalid." msgstr "\n\t\t\t\tVývojáři Friendica nedávno vydali aktualizaci %s,\n\t\t\t\tale když jsem ji zkusil instalovat, něco se strašně pokazilo.\n\t\t\t\tToto se musí ihned opravit a nemůžu to udělat sám. Prosím, kontaktujte\n\t\t\t\tvývojáře Friendica, pokud to nedokážete sám. Moje databáze může být neplatná." -#: src/Core/Update.php:345 +#: src/Core/Update.php:331 #, php-format msgid "The error message is\\n[pre]%s[/pre]" msgstr "" -#: src/Core/Update.php:349 src/Core/Update.php:377 +#: src/Core/Update.php:335 src/Core/Update.php:363 msgid "[Friendica Notify] Database update" msgstr "[Friendica:Oznámení] Aktualizace databáze" -#: src/Core/Update.php:371 +#: src/Core/Update.php:357 #, php-format msgid "" "\n" "\t\t\t\tThe friendica database was successfully updated from %s to %s." msgstr "" -#: src/Database/DBStructure.php:57 +#: src/Database/DBStructure.php:43 #, php-format msgid "The database version had been set to %s." msgstr "" -#: src/Database/DBStructure.php:82 +#: src/Database/DBStructure.php:68 #, php-format msgid "" "The post update is at version %d, it has to be at %d to safely drop the " "tables." msgstr "" -#: src/Database/DBStructure.php:95 +#: src/Database/DBStructure.php:81 msgid "No unused tables found." msgstr "" -#: src/Database/DBStructure.php:100 +#: src/Database/DBStructure.php:86 msgid "" "These tables are not used for friendica and will be deleted when you execute" " \"dbstructure drop -e\":" msgstr "" -#: src/Database/DBStructure.php:137 +#: src/Database/DBStructure.php:123 msgid "There are no tables on MyISAM or InnoDB with the Antelope file format." msgstr "" -#: src/Database/DBStructure.php:161 +#: src/Database/DBStructure.php:147 #, php-format msgid "" "\n" @@ -3253,329 +3259,325 @@ msgid "" "%s\n" msgstr "\nPři aktualizaci databáze se vyskytla chyba %d:\n%s\n" -#: src/Database/DBStructure.php:164 +#: src/Database/DBStructure.php:150 msgid "Errors encountered performing database changes: " msgstr "Při vykonávání změn v databázi se vyskytly chyby: " -#: src/Database/DBStructure.php:232 +#: src/Database/DBStructure.php:218 msgid "Another database update is currently running." msgstr "" -#: src/Database/DBStructure.php:236 +#: src/Database/DBStructure.php:222 #, php-format msgid "%s: Database update" msgstr "%s: Aktualizace databáze" -#: src/Database/DBStructure.php:493 +#: src/Database/DBStructure.php:479 #, php-format msgid "%s: updating %s table." msgstr "%s: aktualizuji tabulku %s" -#: src/Factory/Api/Mastodon/Error.php:42 +#: src/Factory/Api/Mastodon/Error.php:28 msgid "Record not found" msgstr "" -#: src/Factory/Api/Mastodon/Error.php:49 +#: src/Factory/Api/Mastodon/Error.php:35 msgid "Unprocessable Entity" msgstr "" -#: src/Factory/Api/Mastodon/Error.php:56 +#: src/Factory/Api/Mastodon/Error.php:42 msgid "Unauthorized" msgstr "Neautorizováno" -#: src/Factory/Api/Mastodon/Error.php:62 +#: src/Factory/Api/Mastodon/Error.php:48 msgid "" "Token is not authorized with a valid user or is missing a required scope" msgstr "" -#: src/Factory/Api/Mastodon/Error.php:69 +#: src/Factory/Api/Mastodon/Error.php:55 msgid "Internal Server Error" msgstr "Vnitřní chyba serveru" -#: src/LegacyModule.php:63 +#: src/LegacyModule.php:49 #, php-format msgid "Legacy module file not found: %s" msgstr "Soubor legacy modulu nenalezen: %s" -#: src/Model/Circle.php:106 +#: src/Model/Circle.php:92 msgid "" "A deleted circle with this name was revived. Existing item permissions " "may apply to this circle and any future members. If this is" " not what you intended, please create another circle with a different name." msgstr "" -#: src/Model/Circle.php:544 +#: src/Model/Circle.php:530 msgid "Everybody" msgstr "Všichni" -#: src/Model/Circle.php:563 +#: src/Model/Circle.php:549 msgid "edit" msgstr "upravit" -#: src/Model/Circle.php:600 +#: src/Model/Circle.php:586 msgid "add" msgstr "přidat" -#: src/Model/Circle.php:605 +#: src/Model/Circle.php:591 msgid "Edit circle" msgstr "" -#: src/Model/Circle.php:606 src/Module/Circle.php:195 +#: src/Model/Circle.php:592 src/Module/Circle.php:181 msgid "Contacts not in any circle" msgstr "" -#: src/Model/Circle.php:608 +#: src/Model/Circle.php:594 msgid "Create a new circle" msgstr "" -#: src/Model/Circle.php:609 src/Module/Circle.php:180 -#: src/Module/Circle.php:203 src/Module/Circle.php:278 +#: src/Model/Circle.php:595 src/Module/Circle.php:166 +#: src/Module/Circle.php:189 src/Module/Circle.php:264 msgid "Circle Name: " msgstr "" -#: src/Model/Circle.php:610 +#: src/Model/Circle.php:596 msgid "Edit circles" msgstr "" -#: src/Model/Contact.php:1247 src/Module/Moderation/Users/Pending.php:102 -#: src/Module/Notifications/Introductions.php:132 -#: src/Module/Notifications/Introductions.php:204 +#: src/Model/Contact.php:1263 src/Module/Moderation/Users/Pending.php:88 +#: src/Module/Notifications/Introductions.php:124 +#: src/Module/Notifications/Introductions.php:196 msgid "Approve" msgstr "Schválit" -#: src/Model/Contact.php:1725 +#: src/Model/Contact.php:1743 msgid "Organisation" msgstr "Organizace" -#: src/Model/Contact.php:1733 +#: src/Model/Contact.php:1751 msgid "Group" msgstr "" -#: src/Model/Contact.php:1737 src/Module/Moderation/BaseUsers.php:131 +#: src/Model/Contact.php:1755 src/Module/Moderation/BaseUsers.php:120 msgid "Relay" msgstr "Přeposílací server" -#: src/Model/Contact.php:3046 +#: src/Model/Contact.php:3070 msgid "Disallowed profile URL." msgstr "Nepovolené URL profilu." -#: src/Model/Contact.php:3051 src/Module/Friendica.php:100 +#: src/Model/Contact.php:3075 src/Module/Friendica.php:86 msgid "Blocked domain" msgstr "Zablokovaná doména" -#: src/Model/Contact.php:3056 +#: src/Model/Contact.php:3080 msgid "Connect URL missing." msgstr "Chybí URL adresa pro připojení." -#: src/Model/Contact.php:3065 +#: src/Model/Contact.php:3089 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:3083 +#: src/Model/Contact.php:3107 #, php-format msgid "Expected network %s does not match actual network %s" msgstr "" -#: src/Model/Contact.php:3100 +#: src/Model/Contact.php:3124 msgid "This seems to be a relay account. They can't be followed by users." msgstr "" -#: src/Model/Contact.php:3107 +#: src/Model/Contact.php:3131 msgid "The profile address specified does not provide adequate information." msgstr "Uvedená adresa profilu neposkytuje dostatečné informace." -#: src/Model/Contact.php:3109 +#: src/Model/Contact.php:3133 msgid "No compatible communication protocols or feeds were discovered." msgstr "Nenalezen žádný kompatibilní komunikační protokol nebo kanál." -#: src/Model/Contact.php:3112 +#: src/Model/Contact.php:3136 msgid "An author or name was not found." msgstr "Autor nebo jméno nenalezeno" -#: src/Model/Contact.php:3115 +#: src/Model/Contact.php:3139 msgid "No browser URL could be matched to this address." msgstr "Této adrese neodpovídá žádné URL prohlížeče." -#: src/Model/Contact.php:3118 +#: src/Model/Contact.php:3142 msgid "" "Unable to match @-style Identity Address with a known protocol or email " "contact." msgstr "Není možné namapovat adresu identity ve stylu @ s žádným možným protokolem ani emailovým kontaktem." -#: src/Model/Contact.php:3119 +#: src/Model/Contact.php:3143 msgid "Use mailto: in front of address to force email check." msgstr "Použite mailo: před adresou k vynucení emailové kontroly." -#: src/Model/Contact.php:3125 -msgid "" -"The profile address specified belongs to a network which has been disabled " -"on this site." -msgstr "Zadaná adresa profilu patří do sítě, která byla na tomto serveru zakázána." - -#: src/Model/Contact.php:3130 +#: src/Model/Contact.php:3149 msgid "" "Limited profile. This person will be unable to receive direct/personal " "notifications from you." msgstr "Omezený profil. Tato osoba nebude schopna od vás přijímat přímá/osobní oznámení." -#: src/Model/Contact.php:3196 +#: src/Model/Contact.php:3208 msgid "Unable to retrieve contact information." msgstr "Nepodařilo se získat kontaktní informace." -#: src/Model/Event.php:54 +#: src/Model/Event.php:40 msgid "l F d, Y \\@ g:i A \\G\\M\\TP (e)" msgstr "" -#: src/Model/Event.php:75 src/Model/Event.php:92 src/Model/Event.php:469 -#: src/Model/Event.php:942 +#: src/Model/Event.php:61 src/Model/Event.php:78 src/Model/Event.php:455 +#: src/Model/Event.php:928 msgid "Starts:" msgstr "Začíná:" -#: src/Model/Event.php:78 src/Model/Event.php:98 src/Model/Event.php:470 -#: src/Model/Event.php:946 +#: src/Model/Event.php:64 src/Model/Event.php:84 src/Model/Event.php:456 +#: src/Model/Event.php:932 msgid "Finishes:" msgstr "Končí:" -#: src/Model/Event.php:419 +#: src/Model/Event.php:405 msgid "all-day" msgstr "celodenní" -#: src/Model/Event.php:445 +#: src/Model/Event.php:431 msgid "Sept" msgstr "září" -#: src/Model/Event.php:462 src/Module/Calendar/Show.php:128 -#: src/Util/Temporal.php:343 +#: src/Model/Event.php:448 src/Module/Calendar/Show.php:114 +#: src/Util/Temporal.php:329 msgid "today" msgstr "dnes" -#: src/Model/Event.php:463 src/Module/Calendar/Show.php:129 -#: src/Module/Settings/Display.php:294 src/Util/Temporal.php:353 +#: src/Model/Event.php:449 src/Module/Calendar/Show.php:115 +#: src/Module/Settings/Display.php:280 src/Util/Temporal.php:339 msgid "month" msgstr "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/Model/Event.php:450 src/Module/Calendar/Show.php:116 +#: src/Module/Settings/Display.php:281 src/Util/Temporal.php:340 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/Model/Event.php:451 src/Module/Calendar/Show.php:117 +#: src/Module/Settings/Display.php:282 src/Util/Temporal.php:341 msgid "day" msgstr "den" -#: src/Model/Event.php:467 +#: src/Model/Event.php:453 msgid "No events to display" msgstr "Žádné události k zobrazení" -#: src/Model/Event.php:516 src/Module/DFRN/Poll.php:47 src/Module/Feed.php:68 -#: src/Module/Update/Profile.php:56 +#: src/Model/Event.php:502 src/Module/Feed.php:56 +#: src/Module/Update/Profile.php:42 msgid "Access to this profile has been restricted." msgstr "Přístup na tento profil byl omezen." -#: src/Model/Event.php:558 src/Module/Calendar/Event/Show.php:67 +#: src/Model/Event.php:544 src/Module/Calendar/Event/Show.php:53 msgid "Event not found." msgstr "" -#: src/Model/Event.php:637 +#: src/Model/Event.php:623 msgid "l, F j" msgstr "l, j. F" -#: src/Model/Event.php:664 +#: src/Model/Event.php:650 msgid "Edit event" msgstr "Upravit událost" -#: src/Model/Event.php:665 +#: src/Model/Event.php:651 msgid "Duplicate event" msgstr "Duplikovat událost" -#: src/Model/Event.php:666 +#: src/Model/Event.php:652 msgid "Delete event" msgstr "Smazat událost" -#: src/Model/Event.php:896 src/Module/Debug/Localtime.php:38 +#: src/Model/Event.php:882 src/Module/Debug/Localtime.php:24 msgid "l F d, Y \\@ g:i A" msgstr "l d. F, Y v g:i A" -#: src/Model/Event.php:897 +#: src/Model/Event.php:883 msgid "D g:i A" msgstr "D g:i A" -#: src/Model/Event.php:898 +#: src/Model/Event.php:884 msgid "g:i A" msgstr "g:i A" -#: src/Model/Event.php:961 src/Model/Event.php:963 +#: src/Model/Event.php:947 src/Model/Event.php:949 msgid "Show map" msgstr "Zobrazit mapu" -#: src/Model/Event.php:962 +#: src/Model/Event.php:948 msgid "Hide map" msgstr "Skrýt mapu" -#: src/Model/Event.php:1055 +#: src/Model/Event.php:1041 #, php-format msgid "%s's birthday" msgstr "%s má narozeniny" -#: src/Model/Event.php:1056 +#: src/Model/Event.php:1042 #, php-format msgid "Happy Birthday %s" msgstr "Veselé narozeniny, %s" -#: src/Model/Item.php:2307 +#: src/Model/Item.php:2322 #, php-format msgid "%s (%s - %s): %s" msgstr "" -#: src/Model/Item.php:2309 +#: src/Model/Item.php:2324 #, php-format msgid "%s (%s): %s" msgstr "" -#: src/Model/Item.php:2312 +#: src/Model/Item.php:2327 #, php-format -msgid "Detected languages in this post:\\n%s" +msgid "" +"Detected languages in this post:\n" +"%s" msgstr "" -#: src/Model/Item.php:3260 +#: src/Model/Item.php:3276 msgid "activity" msgstr "aktivita" -#: src/Model/Item.php:3262 +#: src/Model/Item.php:3278 msgid "comment" msgstr "" -#: src/Model/Item.php:3265 src/Module/Post/Tag/Add.php:123 +#: src/Model/Item.php:3281 src/Module/Post/Tag/Add.php:109 msgid "post" msgstr "příspěvek" -#: src/Model/Item.php:3435 +#: src/Model/Item.php:3451 #, php-format msgid "%s is blocked" msgstr "" -#: src/Model/Item.php:3437 +#: src/Model/Item.php:3453 #, php-format msgid "%s is ignored" msgstr "" -#: src/Model/Item.php:3439 +#: src/Model/Item.php:3455 #, php-format msgid "Content from %s is collapsed" msgstr "" -#: src/Model/Item.php:3443 +#: src/Model/Item.php:3459 msgid "Sensitive content" msgstr "" -#: src/Model/Item.php:3912 +#: src/Model/Item.php:3928 msgid "bytes" msgstr "bytů" -#: src/Model/Item.php:3943 +#: src/Model/Item.php:3959 #, php-format msgid "%2$s (%3$d%%, %1$d vote)" msgid_plural "%2$s (%3$d%%, %1$d votes)" @@ -3584,7 +3586,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: src/Model/Item.php:3945 +#: src/Model/Item.php:3961 #, php-format msgid "%2$s (%1$d vote)" msgid_plural "%2$s (%1$d votes)" @@ -3593,7 +3595,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: src/Model/Item.php:3950 +#: src/Model/Item.php:3966 #, php-format msgid "%d voter. Poll end: %s" msgid_plural "%d voters. Poll end: %s" @@ -3602,7 +3604,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: src/Model/Item.php:3952 +#: src/Model/Item.php:3968 #, php-format msgid "%d voter." msgid_plural "%d voters." @@ -3611,241 +3613,241 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: src/Model/Item.php:3954 +#: src/Model/Item.php:3970 #, php-format msgid "Poll end: %s" msgstr "" -#: src/Model/Item.php:3995 src/Model/Item.php:3996 +#: src/Model/Item.php:4011 src/Model/Item.php:4012 msgid "View on separate page" msgstr "Zobrazit na separátní stránce" -#: src/Model/Mail.php:135 +#: src/Model/Mail.php:121 msgid "[no subject]" msgstr "[bez předmětu]" -#: src/Model/Photo.php:1198 src/Module/Media/Photo/Upload.php:168 +#: src/Model/Photo.php:1194 src/Module/Media/Photo/Upload.php:154 msgid "Wall Photos" msgstr "Fotky na zdi" -#: src/Model/Profile.php:364 src/Module/Profile/Profile.php:283 -#: src/Module/Profile/Profile.php:285 +#: src/Model/Profile.php:343 src/Module/Profile/Profile.php:271 +#: src/Module/Profile/Profile.php:273 msgid "Edit profile" msgstr "Upravit profil" -#: src/Model/Profile.php:366 +#: src/Model/Profile.php:345 msgid "Change profile photo" msgstr "Změnit profilovou fotku" -#: src/Model/Profile.php:379 src/Module/Directory.php:152 -#: src/Module/Profile/Profile.php:209 +#: src/Model/Profile.php:358 src/Module/Directory.php:139 +#: src/Module/Profile/Profile.php:197 msgid "Homepage:" msgstr "Domovská stránka:" -#: src/Model/Profile.php:380 src/Module/Contact/Profile.php:418 -#: src/Module/Notifications/Introductions.php:189 +#: src/Model/Profile.php:359 src/Module/Contact/Profile.php:418 +#: src/Module/Notifications/Introductions.php:181 msgid "About:" msgstr "O mně:" -#: src/Model/Profile.php:481 +#: src/Model/Profile.php:460 msgid "Atom feed" msgstr "Kanál Atom" -#: src/Model/Profile.php:488 +#: src/Model/Profile.php:467 msgid "This website has been verified to belong to the same person." msgstr "" -#: src/Model/Profile.php:539 +#: src/Model/Profile.php:518 msgid "F d" msgstr "d. F" -#: src/Model/Profile.php:603 src/Model/Profile.php:680 +#: src/Model/Profile.php:582 src/Model/Profile.php:663 msgid "[today]" msgstr "[dnes]" -#: src/Model/Profile.php:612 +#: src/Model/Profile.php:591 msgid "Birthday Reminders" msgstr "Připomínka narozenin" -#: src/Model/Profile.php:613 +#: src/Model/Profile.php:592 msgid "Birthdays this week:" msgstr "Narozeniny tento týden:" -#: src/Model/Profile.php:629 +#: src/Model/Profile.php:608 msgid "g A l F d" msgstr "g A, l d. F" -#: src/Model/Profile.php:667 +#: src/Model/Profile.php:650 msgid "[No description]" msgstr "[Žádný popis]" -#: src/Model/Profile.php:693 +#: src/Model/Profile.php:676 msgid "Event Reminders" msgstr "Připomenutí událostí" -#: src/Model/Profile.php:694 +#: src/Model/Profile.php:677 msgid "Upcoming events the next 7 days:" msgstr "Nadcházející události v příštích 7 dnech:" -#: src/Model/Profile.php:882 -#, php-format -msgid "OpenWebAuth: %1$s welcomes %2$s" -msgstr "OpenWebAuth: %1$s vítá uživatele %2$s" - -#: src/Model/Profile.php:1022 +#: src/Model/Profile.php:789 msgid "Hometown:" msgstr "Rodné město:" -#: src/Model/Profile.php:1023 +#: src/Model/Profile.php:790 msgid "Marital Status:" msgstr "" -#: src/Model/Profile.php:1024 +#: src/Model/Profile.php:791 msgid "With:" msgstr "" -#: src/Model/Profile.php:1025 +#: src/Model/Profile.php:792 msgid "Since:" msgstr "" -#: src/Model/Profile.php:1026 +#: src/Model/Profile.php:793 msgid "Sexual Preference:" msgstr "Sexuální orientace:" -#: src/Model/Profile.php:1027 +#: src/Model/Profile.php:794 msgid "Political Views:" msgstr "Politické přesvědčení:" -#: src/Model/Profile.php:1028 +#: src/Model/Profile.php:795 msgid "Religious Views:" msgstr "Náboženské přesvědčení:" -#: src/Model/Profile.php:1029 +#: src/Model/Profile.php:796 msgid "Likes:" msgstr "Líbí se:" -#: src/Model/Profile.php:1030 +#: src/Model/Profile.php:797 msgid "Dislikes:" msgstr "Nelibí se:" -#: src/Model/Profile.php:1031 +#: src/Model/Profile.php:798 msgid "Title/Description:" msgstr "Název / Popis:" -#: src/Model/Profile.php:1032 src/Module/Admin/Summary.php:197 -#: src/Module/Moderation/Report/Create.php:280 -#: src/Module/Moderation/Summary.php:76 +#: src/Model/Profile.php:799 src/Module/Admin/Summary.php:183 +#: src/Module/Moderation/Report/Create.php:266 +#: src/Module/Moderation/Summary.php:62 msgid "Summary" msgstr "Shrnutí" -#: src/Model/Profile.php:1033 +#: src/Model/Profile.php:800 msgid "Musical interests" msgstr "Hudební vkus" -#: src/Model/Profile.php:1034 +#: src/Model/Profile.php:801 msgid "Books, literature" msgstr "Knihy, literatura" -#: src/Model/Profile.php:1035 +#: src/Model/Profile.php:802 msgid "Television" msgstr "Televize" -#: src/Model/Profile.php:1036 +#: src/Model/Profile.php:803 msgid "Film/dance/culture/entertainment" msgstr "Film/tanec/kultura/zábava" -#: src/Model/Profile.php:1037 +#: src/Model/Profile.php:804 msgid "Hobbies/Interests" msgstr "Koníčky/zájmy" -#: src/Model/Profile.php:1038 +#: src/Model/Profile.php:805 msgid "Love/romance" msgstr "Láska/romantika" -#: src/Model/Profile.php:1039 +#: src/Model/Profile.php:806 msgid "Work/employment" msgstr "Práce/zaměstnání" -#: src/Model/Profile.php:1040 +#: src/Model/Profile.php:807 msgid "School/education" msgstr "Škola/vzdělání" -#: src/Model/Profile.php:1041 +#: src/Model/Profile.php:808 msgid "Contact information and Social Networks" msgstr "Kontaktní informace a sociální sítě" -#: src/Model/User.php:233 src/Model/User.php:1303 +#: src/Model/Profile.php:856 +#, php-format +msgid "Responsible account: %s" +msgstr "" + +#: src/Model/User.php:217 src/Model/User.php:1310 msgid "SERIOUS ERROR: Generation of security keys failed." msgstr "ZÁVAŽNÁ CHYBA: Generování bezpečnostních klíčů se nezdařilo." -#: src/Model/User.php:733 src/Model/User.php:766 +#: src/Model/User.php:740 src/Model/User.php:773 msgid "Login failed" msgstr "Přihlášení selhalo" -#: src/Model/User.php:798 +#: src/Model/User.php:805 msgid "Not enough information to authenticate" msgstr "Není dost informací pro autentikaci" -#: src/Model/User.php:923 +#: src/Model/User.php:930 msgid "Password can't be empty" msgstr "Heslo nemůže být prázdné" -#: src/Model/User.php:965 +#: src/Model/User.php:972 msgid "Empty passwords are not allowed." msgstr "Prázdná hesla nejsou povolena." -#: src/Model/User.php:969 +#: src/Model/User.php:976 msgid "" "The new password has been exposed in a public data dump, please choose " "another." msgstr "Nové heslo bylo zveřejněno ve veřejném výpisu dat, prosím zvolte si jiné." -#: src/Model/User.php:973 +#: src/Model/User.php:980 msgid "The password length is limited to 72 characters." msgstr "" -#: src/Model/User.php:977 +#: src/Model/User.php:984 msgid "The password can't contain white spaces nor accentuated letters" msgstr "" -#: src/Model/User.php:1186 +#: src/Model/User.php:1193 msgid "Passwords do not match. Password unchanged." msgstr "Hesla se neshodují. Heslo nebylo změněno." -#: src/Model/User.php:1193 +#: src/Model/User.php:1200 msgid "An invitation is required." msgstr "Je vyžadována pozvánka." -#: src/Model/User.php:1197 +#: src/Model/User.php:1204 msgid "Invitation could not be verified." msgstr "Pozvánka nemohla být ověřena." -#: src/Model/User.php:1205 +#: src/Model/User.php:1212 msgid "Invalid OpenID url" msgstr "Neplatný odkaz OpenID" -#: src/Model/User.php:1218 src/Security/Authentication.php:230 +#: src/Model/User.php:1225 src/Security/Authentication.php:214 msgid "" "We encountered a problem while logging in with the OpenID you provided. " "Please check the correct spelling of the ID." msgstr "Zaznamenali jsme problém s vaším přihlášením prostřednictvím Vámi zadaným OpenID. Prosím ověřte si, že jste ID zadali správně. " -#: src/Model/User.php:1218 src/Security/Authentication.php:230 +#: src/Model/User.php:1225 src/Security/Authentication.php:214 msgid "The error message was:" msgstr "Chybová zpráva byla:" -#: src/Model/User.php:1224 +#: src/Model/User.php:1231 msgid "Please enter the required information." msgstr "Zadejte prosím požadované informace." -#: src/Model/User.php:1238 +#: src/Model/User.php:1245 #, php-format msgid "" "system.username_min_length (%s) and system.username_max_length (%s) are " "excluding each other, swapping values." msgstr "system.username_min_length (%s) a system.username_max_length (%s) se vzájemně vylučují, čímž se vyměňují hodnoty." -#: src/Model/User.php:1245 +#: src/Model/User.php:1252 #, php-format msgid "Username should be at least %s character." msgid_plural "Username should be at least %s characters." @@ -3854,7 +3856,7 @@ msgstr[1] "Uživateleké jméno musí mít alespoň %s znaky." msgstr[2] "Uživateleké jméno musí mít alespoň %s znaku." msgstr[3] "Uživateleké jméno musí mít alespoň %s znaků." -#: src/Model/User.php:1249 +#: src/Model/User.php:1256 #, php-format msgid "Username should be at most %s character." msgid_plural "Username should be at most %s characters." @@ -3863,31 +3865,31 @@ msgstr[1] "Uživateleké jméno musí mít nanejvýš %s znaky." msgstr[2] "Uživateleké jméno musí mít nanejvýš %s znaku." msgstr[3] "Uživateleké jméno musí mít nanejvýš %s znaků." -#: src/Model/User.php:1257 +#: src/Model/User.php:1264 msgid "That doesn't appear to be your full (First Last) name." msgstr "Nezdá se, že by to bylo vaše celé jméno (křestní jméno a příjmení)." -#: src/Model/User.php:1262 +#: src/Model/User.php:1269 msgid "Your email domain is not among those allowed on this site." msgstr "Vaše e-mailová doména není na tomto serveru mezi povolenými." -#: src/Model/User.php:1266 +#: src/Model/User.php:1273 msgid "Not a valid email address." msgstr "Neplatná e-mailová adresa." -#: src/Model/User.php:1269 +#: src/Model/User.php:1276 msgid "The nickname was blocked from registration by the nodes admin." msgstr "Administrátor serveru zablokoval registraci této přezdívky." -#: src/Model/User.php:1273 src/Model/User.php:1279 +#: src/Model/User.php:1280 src/Model/User.php:1286 msgid "Cannot use that email." msgstr "Tento e-mail nelze použít." -#: src/Model/User.php:1285 +#: src/Model/User.php:1292 msgid "Your nickname can only contain a-z, 0-9 and _." msgstr "Uživatelské jméno může obsahovat pouze znaky a-z, 0-9 a _." -#: src/Model/User.php:1293 src/Model/User.php:1350 +#: src/Model/User.php:1300 src/Model/User.php:1350 msgid "Nickname is already registered. Please choose another." msgstr "Přezdívka je již registrována. Prosím vyberte jinou." @@ -3912,11 +3914,11 @@ msgid "" "An error occurred creating your default contact circle. Please try again." msgstr "" -#: src/Model/User.php:1422 +#: src/Model/User.php:1428 msgid "Profile Photos" msgstr "Profilové fotky" -#: src/Model/User.php:1604 +#: src/Model/User.php:1616 #, php-format msgid "" "\n" @@ -3924,7 +3926,7 @@ msgid "" "\t\t\tthe administrator of %2$s has set up an account for you." msgstr "" -#: src/Model/User.php:1607 +#: src/Model/User.php:1619 #, php-format msgid "" "\n" @@ -3955,12 +3957,12 @@ msgid "" "\t\tThank you and welcome to %4$s." msgstr "" -#: src/Model/User.php:1639 src/Model/User.php:1745 +#: src/Model/User.php:1651 src/Model/User.php:1757 #, php-format msgid "Registration details for %s" msgstr "Registrační údaje pro uživatele %s" -#: src/Model/User.php:1659 +#: src/Model/User.php:1671 #, php-format msgid "" "\n" @@ -3975,12 +3977,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:1678 +#: src/Model/User.php:1690 #, php-format msgid "Registration at %s" msgstr "Registrace na %s" -#: src/Model/User.php:1702 +#: src/Model/User.php:1714 #, php-format msgid "" "\n" @@ -3989,7 +3991,7 @@ msgid "" "\t\t\t" msgstr "" -#: src/Model/User.php:1710 +#: src/Model/User.php:1722 #, php-format msgid "" "\n" @@ -4020,93 +4022,91 @@ msgid "" "\t\t\tThank you and welcome to %2$s." msgstr "" -#: src/Model/User.php:1772 +#: src/Model/User.php:1784 msgid "" "User with delegates can't be removed, please remove delegate users first" msgstr "" -#: src/Module/Admin/Addons/Details.php:65 +#: src/Module/Admin/Addons/Details.php:51 msgid "Addon not found." msgstr "Doplněk nenalezen." -#: src/Module/Admin/Addons/Details.php:76 src/Module/Admin/Addons/Index.php:49 +#: src/Module/Admin/Addons/Details.php:62 src/Module/Admin/Addons/Index.php:41 #, php-format msgid "Addon %s disabled." msgstr "Doplněk %s zakázán." -#: src/Module/Admin/Addons/Details.php:79 src/Module/Admin/Addons/Index.php:51 +#: src/Module/Admin/Addons/Details.php:65 src/Module/Admin/Addons/Index.php:43 #, php-format msgid "Addon %s enabled." msgstr "Doplněk %s povolen." -#: src/Module/Admin/Addons/Details.php:88 -#: src/Module/Admin/Themes/Details.php:46 +#: src/Module/Admin/Addons/Details.php:74 +#: src/Module/Admin/Themes/Details.php:38 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/Addons/Details.php:77 +#: src/Module/Admin/Themes/Details.php:41 src/Module/Settings/Display.php:326 msgid "Enable" msgstr "Povolit" -#: src/Module/Admin/Addons/Details.php:111 -#: src/Module/Admin/Addons/Index.php:67 src/Module/Admin/Federation.php:220 -#: src/Module/Admin/Logs/Settings.php:88 src/Module/Admin/Logs/View.php:85 -#: src/Module/Admin/Queue.php:73 src/Module/Admin/Site.php:455 -#: 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 -#: src/Module/Moderation/Users/Pending.php:96 +#: src/Module/Admin/Addons/Details.php:97 src/Module/Admin/Addons/Index.php:59 +#: src/Module/Admin/Federation.php:206 src/Module/Admin/Logs/Settings.php:74 +#: src/Module/Admin/Logs/View.php:71 src/Module/Admin/Queue.php:59 +#: src/Module/Admin/Site.php:447 src/Module/Admin/Storage.php:124 +#: src/Module/Admin/Summary.php:182 src/Module/Admin/Themes/Details.php:82 +#: src/Module/Admin/Themes/Index.php:103 src/Module/Admin/Tos.php:63 +#: src/Module/Moderation/Users/Create.php:47 +#: src/Module/Moderation/Users/Pending.php:82 msgid "Administration" msgstr "Administrace" -#: src/Module/Admin/Addons/Details.php:112 -#: src/Module/Admin/Addons/Index.php:68 src/Module/BaseAdmin.php:92 -#: src/Module/BaseSettings.php:139 +#: src/Module/Admin/Addons/Details.php:98 src/Module/Admin/Addons/Index.php:60 +#: src/Module/BaseAdmin.php:78 src/Module/BaseSettings.php:125 msgid "Addons" msgstr "Doplňky" -#: src/Module/Admin/Addons/Details.php:113 -#: src/Module/Admin/Themes/Details.php:92 +#: src/Module/Admin/Addons/Details.php:99 +#: src/Module/Admin/Themes/Details.php:84 msgid "Toggle" msgstr "Přepnout" -#: src/Module/Admin/Addons/Details.php:120 -#: src/Module/Admin/Themes/Details.php:100 +#: src/Module/Admin/Addons/Details.php:106 +#: src/Module/Admin/Themes/Details.php:92 msgid "Author: " msgstr "Autor: " -#: src/Module/Admin/Addons/Details.php:121 -#: src/Module/Admin/Themes/Details.php:101 +#: src/Module/Admin/Addons/Details.php:107 +#: src/Module/Admin/Themes/Details.php:93 msgid "Maintainer: " msgstr "Správce: " -#: src/Module/Admin/Addons/Index.php:42 +#: src/Module/Admin/Addons/Index.php:34 msgid "Addons reloaded" msgstr "" -#: src/Module/Admin/Addons/Index.php:53 +#: src/Module/Admin/Addons/Index.php:45 #, php-format msgid "Addon %s failed to install." msgstr "Instalace doplňku %s selhala." -#: src/Module/Admin/Addons/Index.php:69 src/Module/Admin/Features.php:83 -#: src/Module/Admin/Logs/Settings.php:90 src/Module/Admin/Site.php:458 -#: src/Module/Admin/Themes/Index.php:113 src/Module/Admin/Tos.php:86 -#: src/Module/Settings/Account.php:558 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/Features.php:75 +#: src/Module/Admin/Addons/Index.php:61 src/Module/Admin/Features.php:69 +#: src/Module/Admin/Logs/Settings.php:76 src/Module/Admin/Site.php:450 +#: src/Module/Admin/Themes/Index.php:105 src/Module/Admin/Tos.php:72 +#: src/Module/Settings/Account.php:549 src/Module/Settings/Addons.php:64 +#: src/Module/Settings/Connectors.php:149 +#: src/Module/Settings/Connectors.php:235 +#: src/Module/Settings/Delegation.php:179 src/Module/Settings/Display.php:295 +#: src/Module/Settings/Features.php:61 msgid "Save Settings" msgstr "Uložit nastavení" -#: src/Module/Admin/Addons/Index.php:70 +#: src/Module/Admin/Addons/Index.php:62 msgid "Reload active addons" msgstr "Znovu načíst aktivní doplňky" -#: src/Module/Admin/Addons/Index.php:74 +#: src/Module/Admin/Addons/Index.php:66 #, php-format msgid "" "There are currently no addons available on your node. You can find the " @@ -4114,98 +4114,98 @@ msgid "" " the open addon registry at %2$s" msgstr "Aktuálně nejsou na Vašem serveru k dispozici žádné doplňky. Oficiální repozitář doplňků najdete na %1$s a další zajímavé doplňky můžete najít v otevřeném registru doplňků na %2$s" -#: src/Module/Admin/DBSync.php:51 +#: src/Module/Admin/DBSync.php:37 msgid "Update has been marked successful" msgstr "Aktualizace byla označena jako úspěšná." -#: src/Module/Admin/DBSync.php:59 +#: src/Module/Admin/DBSync.php:45 #, php-format msgid "Database structure update %s was successfully applied." msgstr "Aktualizace struktury databáze %s byla úspěšně aplikována." -#: src/Module/Admin/DBSync.php:61 +#: src/Module/Admin/DBSync.php:47 #, php-format msgid "Executing of database structure update %s failed with error: %s" msgstr "Provádění aktualizace databáze %s selhalo s chybou: %s" -#: src/Module/Admin/DBSync.php:76 +#: src/Module/Admin/DBSync.php:62 #, php-format msgid "Executing %s failed with error: %s" msgstr "Vykonávání %s selhalo s chybou: %s" -#: src/Module/Admin/DBSync.php:78 +#: src/Module/Admin/DBSync.php:64 #, php-format msgid "Update %s was successfully applied." msgstr "Aktualizace %s byla úspěšně aplikována." -#: src/Module/Admin/DBSync.php:81 +#: src/Module/Admin/DBSync.php:67 #, php-format msgid "Update %s did not return a status. Unknown if it succeeded." msgstr "Aktualizace %s nevrátila žádný stav. Není zřejmé, jestli byla úspěšná." -#: src/Module/Admin/DBSync.php:84 +#: src/Module/Admin/DBSync.php:70 #, php-format msgid "There was no additional update function %s that needed to be called." msgstr "Nebyla nalezena žádná další aktualizační funkce %s která by měla být volána." -#: src/Module/Admin/DBSync.php:105 +#: src/Module/Admin/DBSync.php:91 msgid "No failed updates." msgstr "Žádné neúspěšné aktualizace." -#: src/Module/Admin/DBSync.php:106 +#: src/Module/Admin/DBSync.php:92 msgid "Check database structure" msgstr "Ověřit strukturu databáze" -#: src/Module/Admin/DBSync.php:110 +#: src/Module/Admin/DBSync.php:96 msgid "Failed Updates" msgstr "Neúspěšné aktualizace" -#: src/Module/Admin/DBSync.php:111 +#: src/Module/Admin/DBSync.php:97 msgid "" "This does not include updates prior to 1139, which did not return a status." msgstr "To nezahrnuje aktualizace do verze 1139, které nevracejí žádný status." -#: src/Module/Admin/DBSync.php:112 +#: src/Module/Admin/DBSync.php:98 msgid "Mark success (if update was manually applied)" msgstr "Označit za úspěšné (pokud byla aktualizace aplikována manuálně)" -#: src/Module/Admin/DBSync.php:113 +#: src/Module/Admin/DBSync.php:99 msgid "Attempt to execute this update step automatically" msgstr "Pokusit se provést tuto aktualizaci automaticky." -#: src/Module/Admin/Features.php:67 -#: src/Module/Notifications/Introductions.php:144 -#: src/Module/OAuth/Acknowledge.php:55 src/Module/Register.php:132 -#: src/Module/Settings/TwoFactor/Trusted.php:129 +#: src/Module/Admin/Features.php:53 +#: src/Module/Notifications/Introductions.php:136 +#: src/Module/OAuth/Acknowledge.php:41 src/Module/Register.php:124 +#: src/Module/Settings/TwoFactor/Trusted.php:115 msgid "No" msgstr "Ne" -#: src/Module/Admin/Features.php:67 src/Module/Contact/Revoke.php:108 -#: src/Module/Notifications/Introductions.php:144 -#: src/Module/OAuth/Acknowledge.php:54 src/Module/Register.php:131 -#: src/Module/Settings/TwoFactor/Trusted.php:129 +#: src/Module/Admin/Features.php:53 src/Module/Contact/Revoke.php:91 +#: src/Module/Notifications/Introductions.php:136 +#: src/Module/OAuth/Acknowledge.php:40 src/Module/Register.php:123 +#: src/Module/Settings/TwoFactor/Trusted.php:115 msgid "Yes" msgstr "Ano" -#: src/Module/Admin/Features.php:67 +#: src/Module/Admin/Features.php:53 msgid "Locked" msgstr "" -#: src/Module/Admin/Features.php:81 +#: src/Module/Admin/Features.php:67 msgid "Manage Additional Features" msgstr "Spravovat další funkce" -#: src/Module/Admin/Federation.php:82 -#: src/Module/Moderation/Report/Create.php:191 -#: src/Module/Moderation/Report/Create.php:316 +#: src/Module/Admin/Federation.php:68 +#: src/Module/Moderation/Report/Create.php:177 +#: src/Module/Moderation/Report/Create.php:302 msgid "Other" msgstr "Jiné" -#: src/Module/Admin/Federation.php:160 src/Module/Admin/Federation.php:408 +#: src/Module/Admin/Federation.php:146 src/Module/Admin/Federation.php:394 msgid "unknown" msgstr "neznámé" -#: src/Module/Admin/Federation.php:193 +#: src/Module/Admin/Federation.php:179 #, php-format msgid "%2$s total system" msgid_plural "%2$s total systems" @@ -4214,7 +4214,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: src/Module/Admin/Federation.php:194 +#: src/Module/Admin/Federation.php:180 #, php-format msgid "%2$s active user last month" msgid_plural "%2$s active users last month" @@ -4223,7 +4223,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: src/Module/Admin/Federation.php:195 +#: src/Module/Admin/Federation.php:181 #, php-format msgid "%2$s active user last six months" msgid_plural "%2$s active users last six months" @@ -4232,7 +4232,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: src/Module/Admin/Federation.php:196 +#: src/Module/Admin/Federation.php:182 #, php-format msgid "%2$s registered user" msgid_plural "%2$s registered users" @@ -4241,7 +4241,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: src/Module/Admin/Federation.php:197 +#: src/Module/Admin/Federation.php:183 #, php-format msgid "%2$s locally created post or comment" msgid_plural "%2$s locally created posts and comments" @@ -4250,7 +4250,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: src/Module/Admin/Federation.php:200 +#: src/Module/Admin/Federation.php:186 #, php-format msgid "%2$s post per user" msgid_plural "%2$s posts per user" @@ -4259,7 +4259,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: src/Module/Admin/Federation.php:205 +#: src/Module/Admin/Federation.php:191 #, php-format msgid "%2$s user per system" msgid_plural "%2$s users per system" @@ -4268,18 +4268,18 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: src/Module/Admin/Federation.php:215 +#: src/Module/Admin/Federation.php:201 msgid "" "This page offers you some numbers to the known part of the federated social " "network your Friendica node is part of. These numbers are not complete but " "only reflect the part of the network your node is aware of." msgstr "Tato stránka vám nabízí pár čísel pro známou část federované sociální sítě, které je váš server Friendica součástí. Tato čísla nejsou kompletní, ale pouze odrážejí část sítě, které si je Váš server vědom." -#: src/Module/Admin/Federation.php:221 src/Module/BaseAdmin.php:87 +#: src/Module/Admin/Federation.php:207 src/Module/BaseAdmin.php:73 msgid "Federation Statistics" msgstr "Statistiky Federation" -#: src/Module/Admin/Federation.php:224 +#: src/Module/Admin/Federation.php:210 #, php-format msgid "" "Currently this node is aware of %2$s node (%3$s active users last month, " @@ -4294,58 +4294,58 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: src/Module/Admin/Logs/Settings.php:47 +#: src/Module/Admin/Logs/Settings.php:33 #, php-format msgid "The logfile '%s' is not writable. No logging possible" msgstr "Záznamový soubor „%s“ není zapisovatelný. Zaznamenávání není možno." -#: src/Module/Admin/Logs/Settings.php:80 +#: src/Module/Admin/Logs/Settings.php:66 msgid "PHP log currently enabled." msgstr "PHP záznamy jsou aktuálně povolené." -#: src/Module/Admin/Logs/Settings.php:82 +#: src/Module/Admin/Logs/Settings.php:68 msgid "PHP log currently disabled." msgstr "PHP záznamy jsou aktuálně zakázané." -#: src/Module/Admin/Logs/Settings.php:89 src/Module/BaseAdmin.php:102 -#: src/Module/BaseAdmin.php:103 +#: src/Module/Admin/Logs/Settings.php:75 src/Module/BaseAdmin.php:88 +#: src/Module/BaseAdmin.php:89 msgid "Logs" msgstr "Záznamy" -#: src/Module/Admin/Logs/Settings.php:91 +#: src/Module/Admin/Logs/Settings.php:77 msgid "Clear" msgstr "Vyčistit" -#: src/Module/Admin/Logs/Settings.php:94 +#: src/Module/Admin/Logs/Settings.php:80 msgid "Enable Debugging" msgstr "Povolit ladění" -#: src/Module/Admin/Logs/Settings.php:94 src/Module/Admin/Logs/Settings.php:95 -#: src/Module/Admin/Logs/Settings.php:96 src/Module/Admin/Site.php:478 -#: src/Module/Admin/Site.php:486 +#: src/Module/Admin/Logs/Settings.php:80 src/Module/Admin/Logs/Settings.php:81 +#: src/Module/Admin/Logs/Settings.php:82 src/Module/Admin/Site.php:470 +#: src/Module/Admin/Site.php:478 msgid "" "Read-only because it is set by an environment variable" msgstr "" -#: src/Module/Admin/Logs/Settings.php:95 +#: src/Module/Admin/Logs/Settings.php:81 msgid "Log file" msgstr "Soubor se záznamem" -#: src/Module/Admin/Logs/Settings.php:95 +#: src/Module/Admin/Logs/Settings.php:81 msgid "" "Must be writable by web server. Relative to your Friendica top-level " "directory." msgstr "Musí být zapisovatelný webovým serverem. Cesta relativní k vašemu kořenovému adresáři Friendica." -#: src/Module/Admin/Logs/Settings.php:96 +#: src/Module/Admin/Logs/Settings.php:82 msgid "Log level" msgstr "Úroveň auditu" -#: src/Module/Admin/Logs/Settings.php:98 +#: src/Module/Admin/Logs/Settings.php:84 msgid "PHP logging" msgstr "Záznamování PHP" -#: src/Module/Admin/Logs/Settings.php:99 +#: src/Module/Admin/Logs/Settings.php:85 msgid "" "To temporarily enable logging of PHP errors and warnings you can prepend the" " following to the index.php file of your installation. The filename set in " @@ -4354,402 +4354,407 @@ msgid "" "'display_errors' is to enable these options, set to '0' to disable them." msgstr "Pro dočasné umožnění zaznamenávání PHP chyb a varování, můžete přidat do souboru index.php na vaší instalaci následující: Název souboru nastavený v řádku „error_log“ je relativní ke kořenovému adresáři Friendica a webový server musí mít povolení na něj zapisovat. Možnost „1“ pro „log_errors“ a „display_errors“ tyto funkce povoluje, nastavením hodnoty na „0“ je zakážete. " -#: src/Module/Admin/Logs/View.php:72 +#: src/Module/Admin/Logs/View.php:58 #, php-format msgid "" "Error trying to open %1$s log file.
Check to see if " "file %1$s exist and is readable." msgstr "" -#: src/Module/Admin/Logs/View.php:81 +#: src/Module/Admin/Logs/View.php:67 #, php-format msgid "" "Couldn't open %1$s log file.
Check to see if file %1$s " "is readable." msgstr "" -#: src/Module/Admin/Logs/View.php:86 src/Module/BaseAdmin.php:104 +#: src/Module/Admin/Logs/View.php:72 src/Module/BaseAdmin.php:90 msgid "View Logs" msgstr "Zobrazit záznamy" -#: src/Module/Admin/Logs/View.php:89 +#: src/Module/Admin/Logs/View.php:75 msgid "Search in logs" msgstr "" -#: src/Module/Admin/Logs/View.php:90 -#: src/Module/Notifications/Notifications.php:140 +#: src/Module/Admin/Logs/View.php:76 +#: src/Module/Notifications/Notifications.php:132 msgid "Show all" msgstr "Zobrazit vše" -#: src/Module/Admin/Logs/View.php:91 +#: src/Module/Admin/Logs/View.php:77 msgid "Date" msgstr "" -#: src/Module/Admin/Logs/View.php:92 +#: src/Module/Admin/Logs/View.php:78 msgid "Level" msgstr "" -#: src/Module/Admin/Logs/View.php:93 +#: src/Module/Admin/Logs/View.php:79 msgid "Context" msgstr "" -#: src/Module/Admin/Logs/View.php:95 +#: src/Module/Admin/Logs/View.php:81 msgid "ALL" msgstr "" -#: src/Module/Admin/Logs/View.php:96 +#: src/Module/Admin/Logs/View.php:82 msgid "View details" msgstr "" -#: src/Module/Admin/Logs/View.php:97 +#: src/Module/Admin/Logs/View.php:83 msgid "Click to view details" msgstr "" -#: src/Module/Admin/Logs/View.php:98 src/Module/Calendar/Event/Form.php:207 +#: src/Module/Admin/Logs/View.php:84 src/Module/Calendar/Event/Form.php:193 msgid "Event details" msgstr "Detaily události" -#: src/Module/Admin/Logs/View.php:99 +#: src/Module/Admin/Logs/View.php:85 msgid "Data" msgstr "" -#: src/Module/Admin/Logs/View.php:100 -#: src/Module/Debug/ActivityPubConversion.php:57 +#: src/Module/Admin/Logs/View.php:86 +#: src/Module/Debug/ActivityPubConversion.php:49 msgid "Source" msgstr "" -#: src/Module/Admin/Logs/View.php:101 +#: src/Module/Admin/Logs/View.php:87 msgid "File" msgstr "" -#: src/Module/Admin/Logs/View.php:102 +#: src/Module/Admin/Logs/View.php:88 msgid "Line" msgstr "" -#: src/Module/Admin/Logs/View.php:103 +#: src/Module/Admin/Logs/View.php:89 msgid "Function" msgstr "" -#: src/Module/Admin/Logs/View.php:104 +#: src/Module/Admin/Logs/View.php:90 msgid "UID" msgstr "" -#: src/Module/Admin/Logs/View.php:105 +#: src/Module/Admin/Logs/View.php:91 msgid "Process ID" msgstr "" -#: src/Module/Admin/Logs/View.php:106 +#: src/Module/Admin/Logs/View.php:92 msgid "Close" msgstr "" -#: src/Module/Admin/Queue.php:50 +#: src/Module/Admin/Queue.php:36 msgid "Inspect Deferred Worker Queue" msgstr "Prozkoumat frontu odložených pracovníků" -#: src/Module/Admin/Queue.php:51 +#: src/Module/Admin/Queue.php:37 msgid "" "This page lists the deferred worker jobs. This are jobs that couldn't be " "executed at the first time." msgstr "Na této stránce jsou vypsány odložené úlohy pracovníků. To jsou úlohy, které nemohly být napoprvé provedeny." -#: src/Module/Admin/Queue.php:54 +#: src/Module/Admin/Queue.php:40 msgid "Inspect Worker Queue" msgstr "Prozkoumat frontu pro pracovníka" -#: src/Module/Admin/Queue.php:55 +#: src/Module/Admin/Queue.php:41 msgid "" "This page lists the currently queued worker jobs. These jobs are handled by " "the worker cronjob you've set up during install." msgstr "Na této stránce jsou vypsány aktuálně čekající úlohy pro pracovníka . Tyto úlohy vykonává úloha cron pracovníka, kterou jste nastavil/a při instalaci." -#: src/Module/Admin/Queue.php:76 +#: src/Module/Admin/Queue.php:62 msgid "ID" msgstr "Identifikátor" -#: src/Module/Admin/Queue.php:77 +#: src/Module/Admin/Queue.php:63 msgid "Command" msgstr "" -#: src/Module/Admin/Queue.php:78 +#: src/Module/Admin/Queue.php:64 msgid "Job Parameters" msgstr "Parametry úlohy" -#: src/Module/Admin/Queue.php:79 src/Module/Moderation/Reports.php:110 -#: src/Module/Settings/OAuth.php:74 +#: src/Module/Admin/Queue.php:65 src/Module/Moderation/Reports.php:102 +#: src/Module/Settings/OAuth.php:60 msgid "Created" msgstr "Vytvořeno" -#: src/Module/Admin/Queue.php:80 +#: src/Module/Admin/Queue.php:66 msgid "Next Try" msgstr "" -#: src/Module/Admin/Queue.php:81 +#: src/Module/Admin/Queue.php:67 msgid "Priority" msgstr "Priorita" -#: src/Module/Admin/Site.php:243 +#: src/Module/Admin/Site.php:230 +#, php-format +msgid "%s is no valid input for maximum media size" +msgstr "" + +#: src/Module/Admin/Site.php:235 #, 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:362 src/Module/Settings/Display.php:201 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:379 src/Module/Settings/Display.php:211 #, php-format msgid "%s - (Experimental)" msgstr "%s - (Experimentální)" -#: src/Module/Admin/Site.php:399 +#: src/Module/Admin/Site.php:391 msgid "No community page" msgstr "Žádná komunitní stránka" -#: src/Module/Admin/Site.php:400 +#: src/Module/Admin/Site.php:392 msgid "No community page for visitors" msgstr "" -#: src/Module/Admin/Site.php:401 +#: src/Module/Admin/Site.php:393 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:394 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:395 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:401 msgid "Multi user instance" msgstr "Víceuživatelská instance" -#: src/Module/Admin/Site.php:432 +#: src/Module/Admin/Site.php:424 msgid "Closed" msgstr "Uzavřeno" -#: src/Module/Admin/Site.php:433 +#: src/Module/Admin/Site.php:425 msgid "Requires approval" msgstr "Vyžaduje schválení" -#: src/Module/Admin/Site.php:434 +#: src/Module/Admin/Site.php:426 msgid "Open" msgstr "Otevřeno" -#: src/Module/Admin/Site.php:438 +#: src/Module/Admin/Site.php:430 msgid "Don't check" msgstr "Nekontrolovat" -#: src/Module/Admin/Site.php:439 +#: src/Module/Admin/Site.php:431 msgid "check the stable version" msgstr "kontrolovat stabilní verzi" -#: src/Module/Admin/Site.php:440 +#: src/Module/Admin/Site.php:432 msgid "check the development version" msgstr "kontrolovat vývojovou verzi" -#: src/Module/Admin/Site.php:444 +#: src/Module/Admin/Site.php:436 msgid "none" msgstr "" -#: src/Module/Admin/Site.php:445 +#: src/Module/Admin/Site.php:437 msgid "Local contacts" msgstr "" -#: src/Module/Admin/Site.php:446 +#: src/Module/Admin/Site.php:438 msgid "Interactors" msgstr "" -#: src/Module/Admin/Site.php:456 src/Module/BaseAdmin.php:90 +#: src/Module/Admin/Site.php:448 src/Module/BaseAdmin.php:76 msgid "Site" msgstr "Web" -#: src/Module/Admin/Site.php:457 +#: src/Module/Admin/Site.php:449 msgid "General Information" msgstr "" -#: src/Module/Admin/Site.php:459 +#: src/Module/Admin/Site.php:451 msgid "Republish users to directory" msgstr "Znovu publikovat uživatele do adresáře" -#: src/Module/Admin/Site.php:460 src/Module/Register.php:153 +#: src/Module/Admin/Site.php:452 src/Module/Register.php:145 msgid "Registration" msgstr "Registrace" -#: src/Module/Admin/Site.php:461 +#: src/Module/Admin/Site.php:453 msgid "File upload" msgstr "Nahrání souborů" -#: src/Module/Admin/Site.php:462 +#: src/Module/Admin/Site.php:454 msgid "Policies" msgstr "Politika" -#: src/Module/Admin/Site.php:463 src/Module/Calendar/Event/Form.php:252 -#: src/Module/Contact.php:546 src/Module/Profile/Profile.php:276 +#: src/Module/Admin/Site.php:455 src/Module/Calendar/Event/Form.php:238 +#: src/Module/Contact.php:528 src/Module/Profile/Profile.php:264 msgid "Advanced" msgstr "Pokročilé" -#: src/Module/Admin/Site.php:464 +#: src/Module/Admin/Site.php:456 msgid "Auto Discovered Contact Directory" msgstr "Adresář automaticky objevených kontaktů" -#: src/Module/Admin/Site.php:465 +#: src/Module/Admin/Site.php:457 msgid "Performance" msgstr "Výkon" -#: src/Module/Admin/Site.php:466 +#: src/Module/Admin/Site.php:458 msgid "Worker" msgstr "Pracovník (worker)" -#: src/Module/Admin/Site.php:467 +#: src/Module/Admin/Site.php:459 msgid "Message Relay" msgstr "Přeposílání zpráv" -#: src/Module/Admin/Site.php:468 +#: src/Module/Admin/Site.php:460 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:461 msgid "The system is not subscribed to any relays at the moment." msgstr "" -#: src/Module/Admin/Site.php:470 +#: src/Module/Admin/Site.php:462 msgid "The system is currently subscribed to the following relays:" msgstr "" -#: src/Module/Admin/Site.php:473 +#: src/Module/Admin/Site.php:465 msgid "Relocate Node" msgstr "" -#: src/Module/Admin/Site.php:474 +#: src/Module/Admin/Site.php:466 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:467 msgid "(Friendica directory)# bin/console relocate https://newdomain.com" msgstr "" -#: src/Module/Admin/Site.php:478 +#: src/Module/Admin/Site.php:470 msgid "Site name" msgstr "Název webu" -#: src/Module/Admin/Site.php:479 +#: src/Module/Admin/Site.php:471 msgid "Sender Email" msgstr "E-mail odesílatele" -#: src/Module/Admin/Site.php:479 +#: src/Module/Admin/Site.php:471 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:472 msgid "Name of the system actor" msgstr "" -#: src/Module/Admin/Site.php:480 +#: src/Module/Admin/Site.php:472 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:473 msgid "Banner/Logo" msgstr "Banner/logo" -#: src/Module/Admin/Site.php:482 +#: src/Module/Admin/Site.php:474 msgid "Email Banner/Logo" msgstr "" -#: src/Module/Admin/Site.php:483 +#: src/Module/Admin/Site.php:475 msgid "Shortcut icon" msgstr "Favikona" -#: src/Module/Admin/Site.php:483 +#: src/Module/Admin/Site.php:475 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:476 msgid "Touch icon" msgstr "Dotyková ikona" -#: src/Module/Admin/Site.php:484 +#: src/Module/Admin/Site.php:476 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:477 msgid "Additional Info" msgstr "Dodatečné informace" -#: src/Module/Admin/Site.php:485 +#: src/Module/Admin/Site.php:477 #, 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:478 msgid "System language" msgstr "Systémový jazyk" -#: src/Module/Admin/Site.php:487 +#: src/Module/Admin/Site.php:479 msgid "System theme" msgstr "Systémový motiv" -#: src/Module/Admin/Site.php:487 +#: src/Module/Admin/Site.php:479 #, 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:480 msgid "Mobile system theme" msgstr "Mobilní systémový motiv" -#: src/Module/Admin/Site.php:488 +#: src/Module/Admin/Site.php:480 msgid "Theme for mobile devices" msgstr "Motiv pro mobilní zařízení" -#: src/Module/Admin/Site.php:489 +#: src/Module/Admin/Site.php:481 msgid "Force SSL" msgstr "Vynutit SSL" -#: src/Module/Admin/Site.php:489 +#: src/Module/Admin/Site.php:481 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:482 msgid "Show help entry from navigation menu" msgstr "" -#: src/Module/Admin/Site.php:490 +#: src/Module/Admin/Site.php:482 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:483 msgid "Single user instance" msgstr "Jednouživatelská instance" -#: src/Module/Admin/Site.php:491 +#: src/Module/Admin/Site.php:483 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:485 msgid "Maximum image size" msgstr "Maximální velikost obrázků" -#: src/Module/Admin/Site.php:493 +#: src/Module/Admin/Site.php:485 #, 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" @@ -4757,35 +4762,47 @@ 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:489 msgid "Maximum image length" msgstr "Maximální velikost obrázků" -#: src/Module/Admin/Site.php:497 +#: src/Module/Admin/Site.php:489 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:490 msgid "JPEG image quality" msgstr "Kvalita obrázků JPEG" -#: src/Module/Admin/Site.php:498 +#: src/Module/Admin/Site.php:490 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:491 +msgid "Maximum media file size" +msgstr "" + +#: src/Module/Admin/Site.php:491 +#, php-format +msgid "" +"Maximum size in bytes of uploaded media files. Default is 0, which means no limits. You can put k, m, or g behind the desired value for KiB, MiB, GiB, respectively.\n" +"\t\t\t\t\t\t\t\t\t\t\t\t\tThe value of upload_max_filesize in your PHP.ini needs be set to at least the desired limit.\n" +"\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:496 msgid "Register policy" msgstr "Politika registrace" -#: src/Module/Admin/Site.php:501 +#: src/Module/Admin/Site.php:497 msgid "Maximum Users" msgstr "" -#: src/Module/Admin/Site.php:501 +#: src/Module/Admin/Site.php:497 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 " @@ -4793,167 +4810,167 @@ msgid "" "not when the policy is set to approval." msgstr "" -#: src/Module/Admin/Site.php:502 +#: src/Module/Admin/Site.php:498 msgid "Maximum Daily Registrations" msgstr "Maximální počet denních registrací" -#: src/Module/Admin/Site.php:502 +#: src/Module/Admin/Site.php:498 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:499 msgid "Register text" msgstr "Text při registraci" -#: src/Module/Admin/Site.php:503 +#: src/Module/Admin/Site.php:499 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:500 msgid "Forbidden Nicknames" msgstr "Zakázané přezdívky" -#: src/Module/Admin/Site.php:504 +#: src/Module/Admin/Site.php:500 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:501 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:501 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:502 msgid "Allowed friend domains" msgstr "Povolené domény přátel" -#: src/Module/Admin/Site.php:506 +#: src/Module/Admin/Site.php:502 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:503 msgid "Allowed email domains" msgstr "Povolené e-mailové domény" -#: src/Module/Admin/Site.php:507 +#: src/Module/Admin/Site.php:503 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:504 msgid "Disallowed email domains" msgstr "" -#: src/Module/Admin/Site.php:508 +#: src/Module/Admin/Site.php:504 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:509 +#: src/Module/Admin/Site.php:505 msgid "No OEmbed rich content" msgstr "Žádný obohacený obsah oEmbed" -#: src/Module/Admin/Site.php:509 +#: src/Module/Admin/Site.php:505 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:510 +#: src/Module/Admin/Site.php:506 msgid "Trusted third-party domains" msgstr "" -#: src/Module/Admin/Site.php:510 +#: src/Module/Admin/Site.php:506 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:511 +#: src/Module/Admin/Site.php:507 msgid "Block public" msgstr "Blokovat veřejný přístup" -#: src/Module/Admin/Site.php:511 +#: src/Module/Admin/Site.php:507 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:512 +#: src/Module/Admin/Site.php:508 msgid "Force publish" msgstr "Vynutit publikaci" -#: src/Module/Admin/Site.php:512 +#: src/Module/Admin/Site.php:508 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:512 +#: src/Module/Admin/Site.php:508 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:513 +#: src/Module/Admin/Site.php:509 msgid "Global directory URL" msgstr "Adresa URL globálního adresáře" -#: src/Module/Admin/Site.php:513 +#: src/Module/Admin/Site.php:509 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:514 +#: src/Module/Admin/Site.php:510 msgid "Private posts by default for new users" msgstr "Nastavit pro nové uživatele příspěvky jako soukromé" -#: src/Module/Admin/Site.php:514 +#: src/Module/Admin/Site.php:510 msgid "" "Set default post permissions for all new members to the default privacy " "circle rather than public." msgstr "" -#: src/Module/Admin/Site.php:515 +#: src/Module/Admin/Site.php:511 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:515 +#: src/Module/Admin/Site.php:511 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:516 +#: src/Module/Admin/Site.php:512 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:516 +#: src/Module/Admin/Site.php:512 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:517 +#: src/Module/Admin/Site.php:513 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:517 +#: src/Module/Admin/Site.php:513 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 " @@ -4961,11 +4978,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:518 +#: src/Module/Admin/Site.php:514 msgid "Explicit Content" msgstr "Explicitní obsah" -#: src/Module/Admin/Site.php:518 +#: src/Module/Admin/Site.php:514 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 " @@ -4974,329 +4991,319 @@ 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:519 +#: src/Module/Admin/Site.php:515 msgid "Only local search" msgstr "" -#: src/Module/Admin/Site.php:519 +#: src/Module/Admin/Site.php:515 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:516 msgid "Blocked tags for trending tags" msgstr "" -#: src/Module/Admin/Site.php:520 +#: src/Module/Admin/Site.php:516 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:517 msgid "Cache contact avatars" msgstr "" -#: src/Module/Admin/Site.php:521 +#: src/Module/Admin/Site.php:517 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:518 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:518 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:519 msgid "Allow Users to set up relay channels" msgstr "" -#: src/Module/Admin/Site.php:523 +#: src/Module/Admin/Site.php:519 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:520 msgid "Adjust the feed poll frequency" msgstr "" -#: src/Module/Admin/Site.php:524 +#: src/Module/Admin/Site.php:520 msgid "Automatically detect and set the best feed poll frequency." msgstr "" -#: src/Module/Admin/Site.php:525 +#: src/Module/Admin/Site.php:521 msgid "Minimum poll interval" msgstr "" -#: src/Module/Admin/Site.php:525 +#: src/Module/Admin/Site.php:521 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:522 msgid "Enable multiple registrations" msgstr "" -#: src/Module/Admin/Site.php:526 +#: src/Module/Admin/Site.php:522 msgid "Enable users to register additional accounts for use as pages." msgstr "" -#: src/Module/Admin/Site.php:527 +#: src/Module/Admin/Site.php:523 msgid "Enable OpenID" msgstr "" -#: src/Module/Admin/Site.php:527 +#: src/Module/Admin/Site.php:523 msgid "Enable OpenID support for registration and logins." msgstr "" -#: src/Module/Admin/Site.php:528 +#: src/Module/Admin/Site.php:524 msgid "Enable full name check" msgstr "" -#: src/Module/Admin/Site.php:528 +#: src/Module/Admin/Site.php:524 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:525 msgid "Email administrators on new registration" msgstr "" -#: src/Module/Admin/Site.php:529 +#: src/Module/Admin/Site.php:525 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:526 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:526 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:527 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:527 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:528 msgid "Posts per server on community page" msgstr "" -#: src/Module/Admin/Site.php:532 +#: src/Module/Admin/Site.php:528 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:530 msgid "Enable Mail support" msgstr "" -#: src/Module/Admin/Site.php:534 +#: src/Module/Admin/Site.php:530 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:531 msgid "" "Mail support can't be enabled because the PHP IMAP module is not installed." msgstr "" -#: src/Module/Admin/Site.php:536 -msgid "Enable OStatus support" -msgstr "" - -#: src/Module/Admin/Site.php:536 -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:533 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:534 msgid "Enable Diaspora support" msgstr "Zapnout podporu pro Diaspora" -#: src/Module/Admin/Site.php:539 +#: src/Module/Admin/Site.php:534 msgid "" "Enable built-in Diaspora network compatibility for communicating with " "diaspora servers." msgstr "" -#: src/Module/Admin/Site.php:540 +#: src/Module/Admin/Site.php:535 msgid "Verify SSL" msgstr "Ověřit SSL" -#: src/Module/Admin/Site.php:540 +#: src/Module/Admin/Site.php:535 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:536 msgid "Proxy user" msgstr "Proxy uživatel" -#: src/Module/Admin/Site.php:541 +#: src/Module/Admin/Site.php:536 msgid "User name for the proxy server." msgstr "" -#: src/Module/Admin/Site.php:542 +#: src/Module/Admin/Site.php:537 msgid "Proxy URL" msgstr "Proxy URL adresa" -#: src/Module/Admin/Site.php:542 +#: src/Module/Admin/Site.php:537 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:538 msgid "Network timeout" msgstr "Čas vypršení síťového spojení (timeout)" -#: src/Module/Admin/Site.php:543 +#: src/Module/Admin/Site.php:538 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:539 msgid "Maximum Load Average" msgstr "Maximální průměrné zatížení" -#: src/Module/Admin/Site.php:544 +#: src/Module/Admin/Site.php:539 #, 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:540 msgid "Minimal Memory" msgstr "Minimální paměť" -#: src/Module/Admin/Site.php:545 +#: src/Module/Admin/Site.php:540 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:541 msgid "Periodically optimize tables" msgstr "" -#: src/Module/Admin/Site.php:546 +#: src/Module/Admin/Site.php:541 msgid "Periodically optimize tables like the cache and the workerqueue" msgstr "" -#: src/Module/Admin/Site.php:548 +#: src/Module/Admin/Site.php:543 msgid "Discover followers/followings from contacts" msgstr "" -#: src/Module/Admin/Site.php:548 +#: src/Module/Admin/Site.php:543 msgid "" "If enabled, contacts are checked for their followers and following contacts." msgstr "" -#: src/Module/Admin/Site.php:549 +#: src/Module/Admin/Site.php:544 msgid "None - deactivated" msgstr "" -#: src/Module/Admin/Site.php:550 +#: src/Module/Admin/Site.php:545 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:546 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:548 msgid "Only update contacts/servers with local data" msgstr "" -#: src/Module/Admin/Site.php:553 +#: src/Module/Admin/Site.php:548 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:549 msgid "Synchronize the contacts with the directory server" msgstr "" -#: src/Module/Admin/Site.php:554 +#: src/Module/Admin/Site.php:549 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:551 msgid "Discover contacts from other servers" msgstr "Objevit kontakty z ostatních serverů" -#: src/Module/Admin/Site.php:556 +#: src/Module/Admin/Site.php:551 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:552 msgid "Days between requery" msgstr "Dny mezi dotazy" -#: src/Module/Admin/Site.php:557 +#: src/Module/Admin/Site.php:552 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:553 msgid "Search the local directory" msgstr "Hledat v místním adresáři" -#: src/Module/Admin/Site.php:558 +#: src/Module/Admin/Site.php:553 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:555 msgid "Publish server information" msgstr "Zveřejnit informace o serveru" -#: src/Module/Admin/Site.php:560 +#: src/Module/Admin/Site.php:555 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 " @@ -5304,50 +5311,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:557 msgid "Check upstream version" msgstr "Zkontrolovat upstreamovou verzi" -#: src/Module/Admin/Site.php:562 +#: src/Module/Admin/Site.php:557 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:558 msgid "Suppress Tags" msgstr "Potlačit štítky" -#: src/Module/Admin/Site.php:563 +#: src/Module/Admin/Site.php:558 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:559 msgid "Clean database" msgstr "Vyčistit databázi" -#: src/Module/Admin/Site.php:564 +#: src/Module/Admin/Site.php:559 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:560 msgid "Lifespan of remote items" msgstr "Životnost vzdálených položek" -#: src/Module/Admin/Site.php:565 +#: src/Module/Admin/Site.php:560 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:561 msgid "Lifespan of unclaimed items" msgstr "Životnost nevyžádaných položek" -#: src/Module/Admin/Site.php:566 +#: src/Module/Admin/Site.php:561 msgid "" "When the database cleanup is enabled, this defines the days after which " "unclaimed remote items (mostly content from the relay) will be deleted. " @@ -5355,175 +5362,184 @@ 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:562 msgid "Lifespan of raw conversation data" msgstr "Životnost hrubých dat konverzací" -#: src/Module/Admin/Site.php:567 +#: src/Module/Admin/Site.php:562 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í." +"The conversation data is used for ActivityPub, 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:563 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:563 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:564 msgid "Maximum numbers of comments per post on the display page" msgstr "" -#: src/Module/Admin/Site.php:569 +#: src/Module/Admin/Site.php:564 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:565 msgid "Items per page" msgstr "" -#: src/Module/Admin/Site.php:570 +#: src/Module/Admin/Site.php:565 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:566 msgid "Items per page for mobile devices" msgstr "" -#: src/Module/Admin/Site.php:571 +#: src/Module/Admin/Site.php:566 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:567 msgid "Temp path" msgstr "Cesta k dočasným souborům" -#: src/Module/Admin/Site.php:572 +#: src/Module/Admin/Site.php:567 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:568 msgid "Only search in tags" msgstr "Hledat pouze ve štítcích" -#: src/Module/Admin/Site.php:573 +#: src/Module/Admin/Site.php:568 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:569 +msgid "Limited search scope" +msgstr "" + +#: src/Module/Admin/Site.php:569 +msgid "" +"If enabled, searches will only be performed in the data used for the " +"channels and not in all posts." +msgstr "" + +#: src/Module/Admin/Site.php:570 msgid "Maximum age of items in the search table" msgstr "" -#: src/Module/Admin/Site.php:574 +#: src/Module/Admin/Site.php:570 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:571 msgid "Generate counts per contact circle when calculating network count" msgstr "" -#: src/Module/Admin/Site.php:575 +#: src/Module/Admin/Site.php:571 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:572 msgid "Process \"view\" activities" msgstr "" -#: src/Module/Admin/Site.php:576 +#: src/Module/Admin/Site.php:572 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:573 msgid "Days, after which a contact is archived" msgstr "" -#: src/Module/Admin/Site.php:577 +#: src/Module/Admin/Site.php:573 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:575 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:575 #, 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:576 msgid "Maximum load for workers" msgstr "" -#: src/Module/Admin/Site.php:580 +#: src/Module/Admin/Site.php:576 msgid "Maximum load that causes a cooldown before each worker function call." msgstr "" -#: src/Module/Admin/Site.php:581 +#: src/Module/Admin/Site.php:577 msgid "Enable fastlane" msgstr "Povolit fastlane" -#: src/Module/Admin/Site.php:581 +#: src/Module/Admin/Site.php:577 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:578 msgid "Decoupled receiver" msgstr "" -#: src/Module/Admin/Site.php:582 +#: src/Module/Admin/Site.php:578 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:579 msgid "Cron interval" msgstr "" -#: src/Module/Admin/Site.php:583 +#: src/Module/Admin/Site.php:579 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:580 msgid "Worker defer limit" msgstr "" -#: src/Module/Admin/Site.php:584 +#: src/Module/Admin/Site.php:580 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:581 msgid "Worker fetch limit" msgstr "" -#: src/Module/Admin/Site.php:585 +#: src/Module/Admin/Site.php:581 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" @@ -5531,214 +5547,214 @@ msgid "" "system." msgstr "" -#: src/Module/Admin/Site.php:587 +#: src/Module/Admin/Site.php:583 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:583 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:584 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:584 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:314 -#: src/Module/Settings/TwoFactor/Index.php:146 +#: src/Module/Admin/Site.php:584 src/Module/Contact/Profile.php:314 +#: src/Module/Settings/TwoFactor/Index.php:132 msgid "Disabled" msgstr "Zakázáno" -#: src/Module/Admin/Site.php:588 +#: src/Module/Admin/Site.php:584 msgid "all" msgstr "vše" -#: src/Module/Admin/Site.php:588 +#: src/Module/Admin/Site.php:584 msgid "tags" msgstr "štítky" -#: src/Module/Admin/Site.php:589 +#: src/Module/Admin/Site.php:585 msgid "Server tags" msgstr "Serverové štítky" -#: src/Module/Admin/Site.php:589 +#: src/Module/Admin/Site.php:585 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:586 msgid "Deny Server tags" msgstr "" -#: src/Module/Admin/Site.php:590 +#: src/Module/Admin/Site.php:586 msgid "Comma separated list of tags that are rejected." msgstr "" -#: src/Module/Admin/Site.php:591 +#: src/Module/Admin/Site.php:587 msgid "Maximum amount of tags" msgstr "" -#: src/Module/Admin/Site.php:591 +#: src/Module/Admin/Site.php:587 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:588 msgid "Allow user tags" msgstr "Povolit uživatelské štítky" -#: src/Module/Admin/Site.php:592 +#: src/Module/Admin/Site.php:588 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:589 msgid "Deny undetected languages" msgstr "" -#: src/Module/Admin/Site.php:593 +#: src/Module/Admin/Site.php:589 msgid "If enabled, posts with undetected languages will be rejected." msgstr "" -#: src/Module/Admin/Site.php:594 +#: src/Module/Admin/Site.php:590 msgid "Language Quality" msgstr "" -#: src/Module/Admin/Site.php:594 +#: src/Module/Admin/Site.php:590 msgid "The minimum language quality that is required to accept the post." msgstr "" -#: src/Module/Admin/Site.php:595 +#: src/Module/Admin/Site.php:591 msgid "Number of languages for the language detection" msgstr "" -#: src/Module/Admin/Site.php:595 +#: src/Module/Admin/Site.php:591 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:593 msgid "Maximum age of channel" msgstr "" -#: src/Module/Admin/Site.php:597 +#: src/Module/Admin/Site.php:593 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:594 msgid "Maximum number of channel posts" msgstr "" -#: src/Module/Admin/Site.php:598 +#: src/Module/Admin/Site.php:594 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:595 msgid "Interaction score days" msgstr "" -#: src/Module/Admin/Site.php:599 +#: src/Module/Admin/Site.php:595 msgid "Number of days that are used to calculate the interaction score." msgstr "" -#: src/Module/Admin/Site.php:600 +#: src/Module/Admin/Site.php:596 msgid "Maximum number of posts per author" msgstr "" -#: src/Module/Admin/Site.php:600 +#: src/Module/Admin/Site.php:596 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:597 msgid "Sharer interaction days" msgstr "" -#: src/Module/Admin/Site.php:601 +#: src/Module/Admin/Site.php:597 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:600 msgid "Start Relocation" msgstr "Začít přemístění" -#: src/Module/Admin/Storage.php:46 +#: src/Module/Admin/Storage.php:32 #, php-format msgid "Storage backend, %s is invalid." msgstr "" -#: src/Module/Admin/Storage.php:73 +#: src/Module/Admin/Storage.php:59 #, php-format msgid "Storage backend %s error: %s" msgstr "" -#: src/Module/Admin/Storage.php:84 src/Module/Admin/Storage.php:87 +#: src/Module/Admin/Storage.php:70 src/Module/Admin/Storage.php:73 msgid "Invalid storage backend setting value." msgstr "Neplatná hodnota nastavení backendu úložiště." -#: src/Module/Admin/Storage.php:139 +#: src/Module/Admin/Storage.php:125 msgid "Current Storage Backend" msgstr "" -#: src/Module/Admin/Storage.php:140 +#: src/Module/Admin/Storage.php:126 msgid "Storage Configuration" msgstr "" -#: src/Module/Admin/Storage.php:141 src/Module/BaseAdmin.php:91 +#: src/Module/Admin/Storage.php:127 src/Module/BaseAdmin.php:77 msgid "Storage" msgstr "" -#: src/Module/Admin/Storage.php:143 +#: src/Module/Admin/Storage.php:129 msgid "Save & Use storage backend" msgstr "" -#: src/Module/Admin/Storage.php:144 +#: src/Module/Admin/Storage.php:130 msgid "Use storage backend" msgstr "" -#: src/Module/Admin/Storage.php:145 +#: src/Module/Admin/Storage.php:131 msgid "Save & Reload" msgstr "" -#: src/Module/Admin/Storage.php:146 +#: src/Module/Admin/Storage.php:132 msgid "This backend doesn't have custom settings" msgstr "" -#: src/Module/Admin/Storage.php:148 +#: src/Module/Admin/Storage.php:134 msgid "" "Changing the current backend is prohibited because it is set by an " "environment variable" msgstr "" -#: src/Module/Admin/Storage.php:150 +#: src/Module/Admin/Storage.php:136 msgid "Database (legacy)" msgstr "Databáze (legacy)" -#: src/Module/Admin/Summary.php:55 +#: src/Module/Admin/Summary.php:41 #, php-format msgid "Template engine (%s) error: %s" msgstr "" -#: src/Module/Admin/Summary.php:59 +#: src/Module/Admin/Summary.php:45 #, php-format msgid "" "Your DB still runs with MyISAM tables. You should change the engine type to " @@ -5749,7 +5765,7 @@ msgid "" " an automatic conversion.
" msgstr "Vaše databáze stále běží s tabulkami MyISAM. Měl/a byste změnit typ datového úložiště na InnoDB. Protože Friendica bude v budoucnu používat pouze funkce pro InnoDB, měl/a byste to změnit! Zde naleznete návod, který by pro vás mohl být užitečný při konverzi úložišť. Můžete také použít příkaz php bin/console.php dbstructure toinnodb na Vaší instalaci Friendica pro automatickou konverzi.
" -#: src/Module/Admin/Summary.php:64 +#: src/Module/Admin/Summary.php:50 #, php-format msgid "" "Your DB still runs with InnoDB tables in the Antelope file format. You " @@ -5760,7 +5776,7 @@ msgid "" " installation for an automatic conversion.
" msgstr "" -#: src/Module/Admin/Summary.php:74 +#: src/Module/Admin/Summary.php:60 #, php-format msgid "" "Your table_definition_cache is too low (%d). This can lead to the database " @@ -5768,46 +5784,46 @@ msgid "" " to %d. See here for more information.
" msgstr "" -#: src/Module/Admin/Summary.php:85 +#: src/Module/Admin/Summary.php:71 #, php-format msgid "" "There is a new version of Friendica available for download. Your current " "version is %1$s, upstream version is %2$s" msgstr "Je dostupná ke stažení nová verze Friendica. Vaše aktuální verze je %1$s, upstreamová verze je %2$s" -#: src/Module/Admin/Summary.php:94 +#: src/Module/Admin/Summary.php:80 msgid "" "The database update failed. Please run \"php bin/console.php dbstructure " "update\" from the command line and have a look at the errors that might " "appear." msgstr "Aktualizace databáze selhala. Prosím, spusťte příkaz „php bin/console.php dbstructure update“ z příkazového řádku a podívejte se na chyby, které by se mohly vyskytnout." -#: src/Module/Admin/Summary.php:98 +#: src/Module/Admin/Summary.php:84 msgid "" "The last update failed. Please run \"php bin/console.php dbstructure " "update\" from the command line and have a look at the errors that might " "appear. (Some of the errors are possibly inside the logfile.)" msgstr "Polslední aktualizace selhala. Prosím spusťte příkaz „php bin/console.php dbstructure update“ z příkazového řádku a podívejte se na chyby, které se mohou stát. (Některé chyby mohou být v záznamvém souboru)" -#: src/Module/Admin/Summary.php:102 +#: src/Module/Admin/Summary.php:88 msgid "" "The system.url entry is missing. This is a low level setting and can lead to" " unexpected behavior. Please add a valid entry as soon as possible in the " "config file or per console command!" msgstr "" -#: src/Module/Admin/Summary.php:107 +#: src/Module/Admin/Summary.php:93 msgid "The worker was never executed. Please check your database structure!" msgstr "Pracovník nebyl nikdy spuštěn. Prosím zkontrolujte strukturu Vaší databáze!" -#: src/Module/Admin/Summary.php:109 +#: src/Module/Admin/Summary.php:95 #, php-format msgid "" "The last worker execution was on %s UTC. This is older than one hour. Please" " check your crontab settings." msgstr "Pracovník byl naposledy spuštěn v %s UTC. Toto je více než jedna hodina. Prosím zkontrolujte si nastavení crontab." -#: src/Module/Admin/Summary.php:114 +#: src/Module/Admin/Summary.php:100 #, php-format msgid "" "Friendica's configuration now is stored in config/local.config.php, please " @@ -5816,7 +5832,7 @@ msgid "" "help with the transition." msgstr "Konfigurace Friendica je nyní uložena v souboru config/local.config.php, prosím zkopírujte soubor config/local-sample.config.php a přesuňte svou konfiguraci ze souboru .htconfig.php. Pro pomoc při přechodu navštivte stránku Config v sekci nápovědy." -#: src/Module/Admin/Summary.php:118 +#: src/Module/Admin/Summary.php:104 #, php-format msgid "" "Friendica's configuration now is stored in config/local.config.php, please " @@ -5825,7 +5841,7 @@ msgid "" "page for help with the transition." msgstr "Konfigurace Friendica je nyní uložena v souboru config/local.config.php, prosím zkopírujte soubor config/local-sample.config.php a přesuňte svou konfiguraci ze souboru local.config.php. Pro pomoc při přechodu navštivte stránku Config v sekci nápovědy." -#: src/Module/Admin/Summary.php:124 +#: src/Module/Admin/Summary.php:110 #, php-format msgid "" "%s is not reachable on your system. This is a severe " @@ -5833,107 +5849,107 @@ msgid "" "href=\"%s\">the installation page for help." msgstr "%s není na Vašem systému dosažitelné. Tohle je závažná chyba konfigurace, která brání komunikaci mezi servery. Pro pomoc navštivte stránku instalace." -#: src/Module/Admin/Summary.php:148 +#: src/Module/Admin/Summary.php:134 #, php-format msgid "" "Friendica's system.basepath was updated from '%s' to '%s'. Please remove the" " system.basepath from your db to avoid differences." msgstr "system.basepath Friendica bylo aktualizováno z „%s“ na „%s“. Pro vyhnutí se rozdílům prosím odstraňte z vaší databáze system.basepath." -#: src/Module/Admin/Summary.php:156 +#: src/Module/Admin/Summary.php:142 #, php-format msgid "" "Friendica's current system.basepath '%s' is wrong and the config file '%s' " "isn't used." msgstr "Aktuální system.basepath Friendica „%s“ je špatné a konfigurační soubor „%s“ se nepoužívá." -#: src/Module/Admin/Summary.php:164 +#: src/Module/Admin/Summary.php:150 #, php-format msgid "" "Friendica's current system.basepath '%s' is not equal to the config file " "'%s'. Please fix your configuration." msgstr "Aktuální system.basepath „%s“ není rovno konfguračnímu souboru „%s“. Prosím opravte si svou konfiguraci." -#: src/Module/Admin/Summary.php:175 +#: src/Module/Admin/Summary.php:161 msgid "Message queues" msgstr "Fronty zpráv" -#: src/Module/Admin/Summary.php:181 +#: src/Module/Admin/Summary.php:167 msgid "Server Settings" msgstr "Nastavení serveru" -#: src/Module/Admin/Summary.php:199 +#: src/Module/Admin/Summary.php:185 msgid "Version" msgstr "Verze" -#: src/Module/Admin/Summary.php:203 +#: src/Module/Admin/Summary.php:189 msgid "Active addons" msgstr "Aktivní doplňky" -#: src/Module/Admin/Themes/Details.php:57 src/Module/Admin/Themes/Index.php:65 +#: src/Module/Admin/Themes/Details.php:49 src/Module/Admin/Themes/Index.php:57 #, php-format msgid "Theme %s disabled." msgstr "Motiv %s zakázán." -#: src/Module/Admin/Themes/Details.php:59 src/Module/Admin/Themes/Index.php:67 +#: src/Module/Admin/Themes/Details.php:51 src/Module/Admin/Themes/Index.php:59 #, php-format msgid "Theme %s successfully enabled." msgstr "Motiv %s úspěšně povolen." -#: src/Module/Admin/Themes/Details.php:61 src/Module/Admin/Themes/Index.php:69 +#: src/Module/Admin/Themes/Details.php:53 src/Module/Admin/Themes/Index.php:61 #, php-format msgid "Theme %s failed to install." msgstr "Instalace motivu %s selhala." -#: src/Module/Admin/Themes/Details.php:83 +#: src/Module/Admin/Themes/Details.php:75 msgid "Screenshot" msgstr "Snímek obrazovky" -#: src/Module/Admin/Themes/Details.php:91 -#: src/Module/Admin/Themes/Index.php:112 src/Module/BaseAdmin.php:93 +#: src/Module/Admin/Themes/Details.php:83 +#: src/Module/Admin/Themes/Index.php:104 src/Module/BaseAdmin.php:79 msgid "Themes" msgstr "Motivy" -#: src/Module/Admin/Themes/Embed.php:80 +#: src/Module/Admin/Themes/Embed.php:66 msgid "Unknown theme." msgstr "Neznámý motiv." -#: src/Module/Admin/Themes/Index.php:51 +#: src/Module/Admin/Themes/Index.php:43 msgid "Themes reloaded" msgstr "" -#: src/Module/Admin/Themes/Index.php:114 +#: src/Module/Admin/Themes/Index.php:106 msgid "Reload active themes" msgstr "Znovu načíst aktivní motivy" -#: src/Module/Admin/Themes/Index.php:118 +#: src/Module/Admin/Themes/Index.php:110 #, php-format msgid "No themes found on the system. They should be placed in %1$s" msgstr "V systému nebyly nalezeny žádné motivy. Měly by být uloženy v %1$s" -#: src/Module/Admin/Themes/Index.php:119 +#: src/Module/Admin/Themes/Index.php:111 msgid "[Experimental]" msgstr "[Experimentální]" -#: src/Module/Admin/Themes/Index.php:120 +#: src/Module/Admin/Themes/Index.php:112 msgid "[Unsupported]" msgstr "[Nepodporováno]" -#: src/Module/Admin/Tos.php:79 +#: src/Module/Admin/Tos.php:65 msgid "Display Terms of Service" msgstr "Zobrazit Podmínky používání" -#: src/Module/Admin/Tos.php:79 +#: src/Module/Admin/Tos.php:65 msgid "" "Enable the Terms of Service page. If this is enabled a link to the terms " "will be added to the registration form and the general information page." msgstr "Povolí stránku Podmínky používání. Pokud je toto povoleno, bude na formulář pro registrací a stránku s obecnými informacemi přidán odkaz k podmínkám." -#: src/Module/Admin/Tos.php:80 +#: src/Module/Admin/Tos.php:66 msgid "Display Privacy Statement" msgstr "Zobrazit Prohlášení o soukromí" -#: src/Module/Admin/Tos.php:80 +#: src/Module/Admin/Tos.php:66 #, php-format msgid "" "Show some informations regarding the needed information to operate the node " @@ -5941,160 +5957,160 @@ msgid "" "noreferrer\">EU-GDPR." msgstr "" -#: src/Module/Admin/Tos.php:81 +#: src/Module/Admin/Tos.php:67 msgid "Privacy Statement Preview" msgstr "Náhled Prohlášení o soukromí" -#: src/Module/Admin/Tos.php:83 +#: src/Module/Admin/Tos.php:69 msgid "The Terms of Service" msgstr "Podmínky používání" -#: src/Module/Admin/Tos.php:83 +#: src/Module/Admin/Tos.php:69 msgid "" "Enter the Terms of Service for your node here. You can use BBCode. Headers " "of sections should be [h2] and below." msgstr "Zde zadejte podmínky používání vašeho serveru. Můžete používat BBCode. Záhlaví sekcí by měly být označeny [h2] a níže." -#: src/Module/Admin/Tos.php:84 +#: src/Module/Admin/Tos.php:70 msgid "The rules" msgstr "" -#: src/Module/Admin/Tos.php:84 +#: src/Module/Admin/Tos.php:70 msgid "Enter your system rules here. Each line represents one rule." msgstr "" -#: src/Module/Api/ApiResponse.php:293 +#: src/Module/Api/ApiResponse.php:279 #, php-format msgid "API endpoint %s %s is not implemented but might be in the future." msgstr "" -#: src/Module/Api/Mastodon/Apps.php:73 +#: src/Module/Api/Mastodon/Apps.php:59 msgid "Missing parameters" msgstr "" -#: src/Module/Api/Mastodon/Statuses/Bookmark.php:50 +#: src/Module/Api/Mastodon/Statuses/Bookmark.php:36 msgid "Only starting posts can be bookmarked" msgstr "" -#: src/Module/Api/Mastodon/Statuses/Mute.php:51 +#: src/Module/Api/Mastodon/Statuses/Mute.php:37 msgid "Only starting posts can be muted" msgstr "" -#: src/Module/Api/Mastodon/Statuses/Reblog.php:58 +#: src/Module/Api/Mastodon/Statuses/Reblog.php:44 #, php-format msgid "Posts from %s can't be shared" msgstr "" -#: src/Module/Api/Mastodon/Statuses/Unbookmark.php:51 +#: src/Module/Api/Mastodon/Statuses/Unbookmark.php:37 msgid "Only starting posts can be unbookmarked" msgstr "" -#: src/Module/Api/Mastodon/Statuses/Unmute.php:51 +#: src/Module/Api/Mastodon/Statuses/Unmute.php:37 msgid "Only starting posts can be unmuted" msgstr "" -#: src/Module/Api/Mastodon/Statuses/Unreblog.php:64 +#: src/Module/Api/Mastodon/Statuses/Unreblog.php:50 #, php-format msgid "Posts from %s can't be unshared" msgstr "" -#: src/Module/Api/Twitter/ContactEndpoint.php:66 +#: src/Module/Api/Twitter/ContactEndpoint.php:52 msgid "Contact not found" msgstr "Kontakt nenalezen." -#: src/Module/Apps.php:62 +#: src/Module/Apps.php:48 msgid "No installed applications." msgstr "Žádné nainstalované aplikace." -#: src/Module/Apps.php:67 +#: src/Module/Apps.php:53 msgid "Applications" msgstr "Aplikace" -#: src/Module/Attach.php:49 src/Module/Attach.php:61 +#: src/Module/Attach.php:35 src/Module/Attach.php:47 msgid "Item was not found." msgstr "Položka nebyla nalezena." -#: src/Module/BaseAdmin.php:54 src/Module/BaseAdmin.php:58 -#: src/Module/BaseModeration.php:77 src/Module/BaseModeration.php:81 +#: src/Module/BaseAdmin.php:40 src/Module/BaseAdmin.php:44 +#: src/Module/BaseModeration.php:63 src/Module/BaseModeration.php:67 msgid "Please login to continue." msgstr "Pro pokračování se prosím přihlaste." -#: src/Module/BaseAdmin.php:63 +#: src/Module/BaseAdmin.php:49 msgid "You don't have access to administration pages." msgstr "" -#: src/Module/BaseAdmin.php:67 +#: src/Module/BaseAdmin.php:53 msgid "" "Submanaged account can't access the administration pages. Please log back in" " as the main account." msgstr "" -#: src/Module/BaseAdmin.php:86 src/Module/BaseModeration.php:109 +#: src/Module/BaseAdmin.php:72 src/Module/BaseModeration.php:95 msgid "Overview" msgstr "Přehled" -#: src/Module/BaseAdmin.php:89 src/Module/BaseModeration.php:112 +#: src/Module/BaseAdmin.php:75 src/Module/BaseModeration.php:98 msgid "Configuration" msgstr "Konfigurace" -#: src/Module/BaseAdmin.php:94 src/Module/BaseSettings.php:110 +#: src/Module/BaseAdmin.php:80 src/Module/BaseSettings.php:96 msgid "Additional features" msgstr "Dodatečné vlastnosti" -#: src/Module/BaseAdmin.php:97 +#: src/Module/BaseAdmin.php:83 msgid "Database" msgstr "Databáze" -#: src/Module/BaseAdmin.php:98 +#: src/Module/BaseAdmin.php:84 msgid "DB updates" msgstr "Aktualizace databáze" -#: src/Module/BaseAdmin.php:99 +#: src/Module/BaseAdmin.php:85 msgid "Inspect Deferred Workers" msgstr "Prozkoumat odložené pracovníky" -#: src/Module/BaseAdmin.php:100 +#: src/Module/BaseAdmin.php:86 msgid "Inspect worker Queue" msgstr "Prozkoumat frontu pro pracovníka" -#: src/Module/BaseAdmin.php:106 src/Module/BaseModeration.php:120 +#: src/Module/BaseAdmin.php:92 src/Module/BaseModeration.php:106 msgid "Diagnostics" msgstr "Diagnostika" -#: src/Module/BaseAdmin.php:107 +#: src/Module/BaseAdmin.php:93 msgid "PHP Info" msgstr "Info o PHP" -#: src/Module/BaseAdmin.php:108 +#: src/Module/BaseAdmin.php:94 msgid "probe address" msgstr "vyzkoušet adresu" -#: src/Module/BaseAdmin.php:109 +#: src/Module/BaseAdmin.php:95 msgid "check webfinger" msgstr "vyzkoušet webfinger" -#: src/Module/BaseAdmin.php:110 +#: src/Module/BaseAdmin.php:96 msgid "Babel" msgstr "Babel" -#: src/Module/BaseAdmin.php:111 src/Module/Debug/ActivityPubConversion.php:137 +#: src/Module/BaseAdmin.php:97 src/Module/Debug/ActivityPubConversion.php:129 msgid "ActivityPub Conversion" msgstr "" -#: src/Module/BaseAdmin.php:120 +#: src/Module/BaseAdmin.php:106 msgid "Addon Features" msgstr "Vlastnosti doplňků" -#: src/Module/BaseAdmin.php:121 src/Module/BaseModeration.php:129 +#: src/Module/BaseAdmin.php:107 src/Module/BaseModeration.php:115 msgid "User registrations waiting for confirmation" msgstr "Registrace uživatelů čekající na potvrzení" -#: src/Module/BaseApi.php:455 src/Module/BaseApi.php:471 -#: src/Module/BaseApi.php:487 +#: src/Module/BaseApi.php:441 src/Module/BaseApi.php:457 +#: src/Module/BaseApi.php:473 msgid "Too Many Requests" msgstr "" -#: src/Module/BaseApi.php:456 +#: src/Module/BaseApi.php:442 #, php-format msgid "Daily posting limit of %d post reached. The post was rejected." msgid_plural "Daily posting limit of %d posts reached. The post was rejected." @@ -6103,7 +6119,7 @@ msgstr[1] "Byl dosažen denní limit %d příspěvků. Příspěvek byl odmítnu msgstr[2] "Byl dosažen denní limit %d příspěvku. Příspěvek byl odmítnut." msgstr[3] "Byl dosažen denní limit %d příspěvků. Příspěvek byl odmítnut." -#: src/Module/BaseApi.php:472 +#: src/Module/BaseApi.php:458 #, php-format msgid "Weekly posting limit of %d post reached. The post was rejected." msgid_plural "" @@ -6113,7 +6129,7 @@ msgstr[1] "Byl dosažen týdenní limit %d příspěvků. Příspěvek byl odmí msgstr[2] "Byl dosažen týdenní limit %d příspěvku. Příspěvek byl odmítnut." msgstr[3] "Byl dosažen týdenní limit %d příspěvků. Příspěvek byl odmítnut." -#: src/Module/BaseApi.php:488 +#: src/Module/BaseApi.php:474 #, php-format msgid "Monthly posting limit of %d post reached. The post was rejected." msgid_plural "" @@ -6123,84 +6139,84 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: src/Module/BaseModeration.php:86 +#: src/Module/BaseModeration.php:72 msgid "You don't have access to moderation pages." msgstr "" -#: src/Module/BaseModeration.php:90 +#: src/Module/BaseModeration.php:76 msgid "" "Submanaged account can't access the moderation pages. Please log back in as " "the main account." msgstr "" -#: src/Module/BaseModeration.php:110 src/Module/Moderation/Reports.php:109 +#: src/Module/BaseModeration.php:96 src/Module/Moderation/Reports.php:101 msgid "Reports" msgstr "" -#: src/Module/BaseModeration.php:113 src/Module/Moderation/Users/Index.php:148 -#: src/Module/Moderation/Users/Index.php:158 +#: src/Module/BaseModeration.php:99 src/Module/Moderation/Users/Index.php:134 +#: src/Module/Moderation/Users/Index.php:144 msgid "Users" msgstr "Uživatelé" -#: src/Module/BaseModeration.php:115 +#: src/Module/BaseModeration.php:101 msgid "Tools" msgstr "Nástroje" -#: src/Module/BaseModeration.php:116 +#: src/Module/BaseModeration.php:102 msgid "Contact Blocklist" msgstr "Blokované kontakty" -#: src/Module/BaseModeration.php:117 +#: src/Module/BaseModeration.php:103 msgid "Server Blocklist" msgstr "Blokované servery" -#: src/Module/BaseModeration.php:118 src/Module/Moderation/Item/Delete.php:62 +#: src/Module/BaseModeration.php:104 src/Module/Moderation/Item/Delete.php:48 msgid "Delete Item" msgstr "Smazat položku" -#: src/Module/BaseModeration.php:121 src/Module/Moderation/Item/Source.php:76 +#: src/Module/BaseModeration.php:107 src/Module/Moderation/Item/Source.php:68 msgid "Item Source" msgstr "Zdroj položky" -#: src/Module/BaseProfile.php:52 src/Module/Contact.php:506 +#: src/Module/BaseProfile.php:38 src/Module/Contact.php:488 msgid "Profile Details" msgstr "Detaily profilu" -#: src/Module/BaseProfile.php:60 +#: src/Module/BaseProfile.php:46 msgid "Conversations started" msgstr "" -#: src/Module/BaseProfile.php:111 +#: src/Module/BaseProfile.php:97 msgid "Only You Can See This" msgstr "Toto můžete vidět jen vy" -#: src/Module/BaseProfile.php:116 src/Module/Profile/Schedule.php:81 +#: src/Module/BaseProfile.php:102 src/Module/Profile/Schedule.php:67 msgid "Scheduled Posts" msgstr "" -#: src/Module/BaseProfile.php:119 +#: src/Module/BaseProfile.php:105 msgid "Posts that are scheduled for publishing" msgstr "" -#: src/Module/BaseProfile.php:138 src/Module/BaseProfile.php:141 +#: src/Module/BaseProfile.php:124 src/Module/BaseProfile.php:127 msgid "Tips for New Members" msgstr "Tipy pro nové členy" -#: src/Module/BaseSearch.php:71 +#: src/Module/BaseSearch.php:57 #, php-format msgid "People Search - %s" msgstr "Vyhledávání lidí - %s" -#: src/Module/BaseSearch.php:75 +#: src/Module/BaseSearch.php:61 #, php-format msgid "Group Search - %s" msgstr "" -#: src/Module/BaseSearch.php:121 src/Module/Contact/MatchInterests.php:140 +#: src/Module/BaseSearch.php:107 src/Module/Contact/MatchInterests.php:136 msgid "No matches" msgstr "Žádné shody" -#: src/Module/BaseSearch.php:147 +#: src/Module/BaseSearch.php:133 #, php-format msgid "" "%d result was filtered out because your node blocks the domain it is " @@ -6215,267 +6231,267 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: src/Module/BaseSettings.php:78 +#: src/Module/BaseSettings.php:64 msgid "Account" msgstr "Účet" -#: src/Module/BaseSettings.php:85 src/Module/Security/TwoFactor/Verify.php:96 -#: src/Module/Settings/TwoFactor/Index.php:138 +#: src/Module/BaseSettings.php:71 src/Module/Security/TwoFactor/Verify.php:82 +#: src/Module/Settings/TwoFactor/Index.php:124 msgid "Two-factor authentication" msgstr "Dvoufázové ověřování" -#: src/Module/BaseSettings.php:118 +#: src/Module/BaseSettings.php:104 msgid "Display" msgstr "Zobrazení" -#: src/Module/BaseSettings.php:132 src/Module/Settings/Connectors.php:204 +#: src/Module/BaseSettings.php:118 src/Module/Settings/Connectors.php:195 msgid "Social Networks" msgstr "Sociální sítě" -#: src/Module/BaseSettings.php:146 src/Module/Settings/Delegation.php:194 +#: src/Module/BaseSettings.php:132 src/Module/Settings/Delegation.php:180 msgid "Manage Accounts" msgstr "" -#: src/Module/BaseSettings.php:153 +#: src/Module/BaseSettings.php:139 msgid "Connected apps" msgstr "Připojené aplikace" -#: src/Module/BaseSettings.php:160 +#: src/Module/BaseSettings.php:146 msgid "Remote servers" msgstr "" -#: src/Module/BaseSettings.php:167 src/Module/Settings/UserExport.php:98 +#: src/Module/BaseSettings.php:153 src/Module/Settings/UserExport.php:84 msgid "Export personal data" msgstr "Exportovat osobní údaje" -#: src/Module/BaseSettings.php:174 +#: src/Module/BaseSettings.php:160 msgid "Remove account" msgstr "Odstranit účet" -#: src/Module/Bookmarklet.php:54 +#: src/Module/Bookmarklet.php:40 msgid "This page is missing a url parameter." msgstr "Této stránce chybí parametr url." -#: src/Module/Bookmarklet.php:66 +#: src/Module/Bookmarklet.php:52 msgid "The post was created" msgstr "Příspěvek byl vytvořen" -#: src/Module/Calendar/Event/API.php:100 src/Module/Calendar/Event/API.php:135 -#: src/Module/Calendar/Event/Form.php:80 +#: src/Module/Calendar/Event/API.php:86 src/Module/Calendar/Event/API.php:121 +#: src/Module/Calendar/Event/Form.php:66 msgid "Invalid Request" msgstr "" -#: src/Module/Calendar/Event/API.php:109 +#: src/Module/Calendar/Event/API.php:95 msgid "Event id is missing." msgstr "" -#: src/Module/Calendar/Event/API.php:131 +#: src/Module/Calendar/Event/API.php:117 msgid "Failed to remove event" msgstr "Odstranění události selhalo" -#: src/Module/Calendar/Event/API.php:187 src/Module/Calendar/Event/API.php:189 +#: src/Module/Calendar/Event/API.php:173 src/Module/Calendar/Event/API.php:175 msgid "Event can not end before it has started." msgstr "Událost nemůže končit dříve, než začala." -#: src/Module/Calendar/Event/API.php:196 src/Module/Calendar/Event/API.php:198 +#: src/Module/Calendar/Event/API.php:182 src/Module/Calendar/Event/API.php:184 msgid "Event title and start time are required." msgstr "Název události a datum začátku jsou vyžadovány." -#: src/Module/Calendar/Event/Form.php:208 +#: src/Module/Calendar/Event/Form.php:194 msgid "Starting date and Title are required." msgstr "Počáteční datum a Název jsou vyžadovány." -#: src/Module/Calendar/Event/Form.php:209 -#: src/Module/Calendar/Event/Form.php:214 +#: src/Module/Calendar/Event/Form.php:195 +#: src/Module/Calendar/Event/Form.php:200 msgid "Event Starts:" msgstr "Událost začíná:" -#: src/Module/Calendar/Event/Form.php:209 -#: src/Module/Calendar/Event/Form.php:237 src/Module/Debug/Probe.php:59 -#: src/Module/Install.php:201 src/Module/Install.php:227 -#: src/Module/Install.php:232 src/Module/Install.php:246 -#: src/Module/Install.php:255 src/Module/Install.php:260 -#: src/Module/Install.php:266 src/Module/Install.php:271 -#: src/Module/Install.php:285 src/Module/Install.php:298 -#: src/Module/Install.php:325 -#: src/Module/Moderation/Blocklist/Server/Add.php:136 -#: src/Module/Moderation/Blocklist/Server/Add.php:138 -#: src/Module/Moderation/Blocklist/Server/Import.php:129 -#: src/Module/Moderation/Blocklist/Server/Index.php:86 -#: src/Module/Moderation/Blocklist/Server/Index.php:87 -#: src/Module/Moderation/Blocklist/Server/Index.php:115 -#: src/Module/Moderation/Blocklist/Server/Index.php:116 -#: src/Module/Moderation/Item/Delete.php:67 src/Module/Register.php:149 -#: src/Module/Security/TwoFactor/Verify.php:101 -#: src/Module/Settings/Channels.php:190 src/Module/Settings/Channels.php:211 -#: src/Module/Settings/TwoFactor/Index.php:161 -#: src/Module/Settings/TwoFactor/Verify.php:158 +#: src/Module/Calendar/Event/Form.php:195 +#: src/Module/Calendar/Event/Form.php:223 src/Module/Debug/Probe.php:45 +#: src/Module/Install.php:187 src/Module/Install.php:213 +#: src/Module/Install.php:218 src/Module/Install.php:232 +#: src/Module/Install.php:241 src/Module/Install.php:246 +#: src/Module/Install.php:252 src/Module/Install.php:257 +#: src/Module/Install.php:271 src/Module/Install.php:284 +#: src/Module/Install.php:311 +#: src/Module/Moderation/Blocklist/Server/Add.php:122 +#: src/Module/Moderation/Blocklist/Server/Add.php:124 +#: src/Module/Moderation/Blocklist/Server/Import.php:113 +#: src/Module/Moderation/Blocklist/Server/Index.php:72 +#: src/Module/Moderation/Blocklist/Server/Index.php:73 +#: src/Module/Moderation/Blocklist/Server/Index.php:101 +#: src/Module/Moderation/Blocklist/Server/Index.php:102 +#: src/Module/Moderation/Item/Delete.php:53 src/Module/Register.php:141 +#: src/Module/Security/TwoFactor/Verify.php:87 +#: src/Module/Settings/Channels.php:176 src/Module/Settings/Channels.php:197 +#: src/Module/Settings/TwoFactor/Index.php:147 +#: src/Module/Settings/TwoFactor/Verify.php:144 msgid "Required" msgstr "Vyžadováno" -#: src/Module/Calendar/Event/Form.php:223 -#: src/Module/Calendar/Event/Form.php:247 +#: src/Module/Calendar/Event/Form.php:209 +#: src/Module/Calendar/Event/Form.php:233 msgid "Finish date/time is not known or not relevant" msgstr "Datum/čas konce není zadán nebo není relevantní" -#: src/Module/Calendar/Event/Form.php:225 -#: src/Module/Calendar/Event/Form.php:230 +#: src/Module/Calendar/Event/Form.php:211 +#: src/Module/Calendar/Event/Form.php:216 msgid "Event Finishes:" msgstr "Akce končí:" -#: src/Module/Calendar/Event/Form.php:237 -#: src/Module/Calendar/Event/Form.php:243 +#: src/Module/Calendar/Event/Form.php:223 +#: src/Module/Calendar/Event/Form.php:229 msgid "Title (BBCode not allowed)" msgstr "" -#: src/Module/Calendar/Event/Form.php:239 +#: src/Module/Calendar/Event/Form.php:225 msgid "Description (BBCode allowed)" msgstr "" -#: src/Module/Calendar/Event/Form.php:241 +#: src/Module/Calendar/Event/Form.php:227 msgid "Location (BBCode not allowed)" msgstr "" -#: src/Module/Calendar/Event/Form.php:244 -#: src/Module/Calendar/Event/Form.php:245 +#: src/Module/Calendar/Event/Form.php:230 +#: src/Module/Calendar/Event/Form.php:231 msgid "Share this event" msgstr "Sdílet tuto událost" -#: src/Module/Calendar/Event/Form.php:251 src/Module/Profile/Profile.php:275 +#: src/Module/Calendar/Event/Form.php:237 src/Module/Profile/Profile.php:263 msgid "Basic" msgstr "Základní" -#: src/Module/Calendar/Export.php:94 +#: src/Module/Calendar/Export.php:80 msgid "This calendar format is not supported" msgstr "Tento formát kalendáře není podporován." -#: src/Module/Calendar/Export.php:96 +#: src/Module/Calendar/Export.php:82 msgid "No exportable data found" msgstr "Nenalezena žádná data pro export" -#: src/Module/Calendar/Export.php:113 +#: src/Module/Calendar/Export.php:99 msgid "calendar" msgstr "kalendář" -#: src/Module/Calendar/Show.php:124 +#: src/Module/Calendar/Show.php:110 msgid "Events" msgstr "Události" -#: src/Module/Calendar/Show.php:125 +#: src/Module/Calendar/Show.php:111 msgid "View" msgstr "Zobrazit" -#: src/Module/Calendar/Show.php:126 +#: src/Module/Calendar/Show.php:112 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:118 src/Module/Settings/Display.php:283 msgid "list" msgstr "seznam" -#: src/Module/Circle.php:57 +#: src/Module/Circle.php:43 msgid "Could not create circle." msgstr "" -#: src/Module/Circle.php:68 src/Module/Circle.php:216 -#: src/Module/Circle.php:240 +#: src/Module/Circle.php:54 src/Module/Circle.php:202 +#: src/Module/Circle.php:226 msgid "Circle not found." msgstr "" -#: src/Module/Circle.php:74 +#: src/Module/Circle.php:60 msgid "Circle name was not changed." msgstr "" -#: src/Module/Circle.php:92 +#: src/Module/Circle.php:78 msgid "Unknown circle." msgstr "" -#: src/Module/Circle.php:98 src/Module/Circle.php:107 -#: src/Module/Contact/Advanced.php:70 src/Module/Contact/Advanced.php:109 -#: src/Module/Contact/Contacts.php:71 src/Module/Contact/Conversations.php:86 -#: src/Module/Contact/Conversations.php:91 -#: src/Module/Contact/Conversations.php:96 src/Module/Contact/Media.php:61 -#: src/Module/Contact/Posts.php:78 src/Module/Contact/Posts.php:83 -#: src/Module/Contact/Posts.php:88 src/Module/Contact/Profile.php:159 -#: src/Module/Contact/Profile.php:164 src/Module/Contact/Profile.php:169 -#: src/Module/Contact/Redir.php:95 src/Module/Contact/Redir.php:141 -#: src/Module/FriendSuggest.php:71 src/Module/FriendSuggest.php:109 +#: src/Module/Circle.php:84 src/Module/Circle.php:93 +#: src/Module/Contact/Advanced.php:56 src/Module/Contact/Advanced.php:95 +#: src/Module/Contact/Contacts.php:57 src/Module/Contact/Conversations.php:72 +#: src/Module/Contact/Conversations.php:77 +#: src/Module/Contact/Conversations.php:82 src/Module/Contact/Media.php:47 +#: src/Module/Contact/Posts.php:64 src/Module/Contact/Posts.php:69 +#: src/Module/Contact/Posts.php:74 src/Module/Contact/Profile.php:145 +#: src/Module/Contact/Profile.php:150 src/Module/Contact/Profile.php:169 +#: src/Module/Contact/Redir.php:77 src/Module/Contact/Redir.php:131 +#: src/Module/FriendSuggest.php:57 src/Module/FriendSuggest.php:95 msgid "Contact not found." msgstr "Kontakt nenalezen." -#: src/Module/Circle.php:102 src/Module/Contact/Contacts.php:66 +#: src/Module/Circle.php:88 src/Module/Contact/Contacts.php:52 msgid "Invalid contact." msgstr "Neplatný kontakt." -#: src/Module/Circle.php:111 src/Module/Contact/Revoke.php:73 +#: src/Module/Circle.php:97 src/Module/Contact/Revoke.php:56 msgid "Contact is deleted." msgstr "Knotakt je smazán." -#: src/Module/Circle.php:117 +#: src/Module/Circle.php:103 msgid "Unable to add the contact to the circle." msgstr "" -#: src/Module/Circle.php:120 +#: src/Module/Circle.php:106 msgid "Contact successfully added to circle." msgstr "" -#: src/Module/Circle.php:124 +#: src/Module/Circle.php:110 msgid "Unable to remove the contact from the circle." msgstr "" -#: src/Module/Circle.php:127 +#: src/Module/Circle.php:113 msgid "Contact successfully removed from circle." msgstr "" -#: src/Module/Circle.php:131 +#: src/Module/Circle.php:117 msgid "Bad request." msgstr "Špatný požadavek." -#: src/Module/Circle.php:172 +#: src/Module/Circle.php:158 msgid "Save Circle" msgstr "" -#: src/Module/Circle.php:173 +#: src/Module/Circle.php:159 msgid "Filter" msgstr "Filtr" -#: src/Module/Circle.php:179 +#: src/Module/Circle.php:165 msgid "Create a circle of contacts/friends." msgstr "" -#: src/Module/Circle.php:221 +#: src/Module/Circle.php:207 msgid "Unable to remove circle." msgstr "" -#: src/Module/Circle.php:272 +#: src/Module/Circle.php:258 msgid "Delete Circle" msgstr "" -#: src/Module/Circle.php:282 +#: src/Module/Circle.php:268 msgid "Edit Circle Name" msgstr "" -#: src/Module/Circle.php:292 +#: src/Module/Circle.php:278 msgid "Members" msgstr "Členové" -#: src/Module/Circle.php:295 +#: src/Module/Circle.php:281 msgid "Circle is empty" msgstr "" -#: src/Module/Circle.php:311 +#: src/Module/Circle.php:297 msgid "Remove contact from circle" msgstr "" -#: src/Module/Circle.php:334 +#: src/Module/Circle.php:320 msgid "Click on a contact to add or remove." msgstr "Klikněte na kontakt pro přidání nebo odebrání" -#: src/Module/Circle.php:351 +#: src/Module/Circle.php:337 msgid "Add contact to circle" msgstr "" -#: src/Module/Contact.php:96 +#: src/Module/Contact.php:88 #, php-format msgid "%d contact edited." msgid_plural "%d contacts edited." @@ -6484,192 +6500,192 @@ msgstr[1] "%d kontakty upraveny" msgstr[2] "%d kontaktu upraveno" msgstr[3] "%d kontaktů upraveno" -#: src/Module/Contact.php:347 +#: src/Module/Contact.php:328 msgid "Show all contacts" msgstr "Zobrazit všechny kontakty" -#: src/Module/Contact.php:352 src/Module/Contact.php:431 -#: src/Module/Moderation/BaseUsers.php:85 +#: src/Module/Contact.php:333 src/Module/Contact.php:412 +#: src/Module/Moderation/BaseUsers.php:72 msgid "Pending" msgstr "Čekající" -#: src/Module/Contact.php:355 +#: src/Module/Contact.php:336 msgid "Only show pending contacts" msgstr "" -#: src/Module/Contact.php:360 src/Module/Contact.php:434 -#: src/Module/Moderation/BaseUsers.php:93 +#: src/Module/Contact.php:341 src/Module/Contact.php:415 +#: src/Module/Moderation/BaseUsers.php:80 msgid "Blocked" msgstr "Blokované" -#: src/Module/Contact.php:363 +#: src/Module/Contact.php:344 msgid "Only show blocked contacts" msgstr "Zobrazit pouze blokované kontakty" -#: src/Module/Contact.php:368 src/Module/Contact.php:440 -#: src/Module/Settings/Server/Index.php:107 src/Object/Post.php:399 +#: src/Module/Contact.php:349 src/Module/Contact.php:421 +#: src/Module/Settings/Server/Index.php:93 src/Object/Post.php:385 msgid "Ignored" msgstr "Ignorované" -#: src/Module/Contact.php:371 +#: src/Module/Contact.php:352 msgid "Only show ignored contacts" msgstr "Zobrazit pouze ignorované kontakty" -#: src/Module/Contact.php:376 src/Module/Contact.php:443 +#: src/Module/Contact.php:357 src/Module/Contact.php:424 msgid "Collapsed" msgstr "" -#: src/Module/Contact.php:379 +#: src/Module/Contact.php:360 msgid "Only show collapsed contacts" msgstr "" -#: src/Module/Contact.php:384 src/Module/Contact.php:446 +#: src/Module/Contact.php:365 src/Module/Contact.php:427 msgid "Archived" msgstr "Archivované" -#: src/Module/Contact.php:387 +#: src/Module/Contact.php:368 msgid "Only show archived contacts" msgstr "Zobrazit pouze archivované kontakty" -#: src/Module/Contact.php:392 src/Module/Contact.php:437 +#: src/Module/Contact.php:373 src/Module/Contact.php:418 msgid "Hidden" msgstr "Skryté" -#: src/Module/Contact.php:395 +#: src/Module/Contact.php:376 msgid "Only show hidden contacts" msgstr "Zobrazit pouze skryté kontakty" -#: src/Module/Contact.php:403 +#: src/Module/Contact.php:384 msgid "Organize your contact circles" msgstr "" -#: src/Module/Contact.php:458 +#: src/Module/Contact.php:439 msgid "Search your contacts" msgstr "Prohledat vaše kontakty" -#: src/Module/Contact.php:459 src/Module/Search/Index.php:207 +#: src/Module/Contact.php:440 src/Module/Search/Index.php:193 #, php-format msgid "Results for: %s" msgstr "Výsledky pro: %s" -#: src/Module/Contact.php:466 +#: src/Module/Contact.php:448 msgid "Update" msgstr "Aktualizace" -#: src/Module/Contact.php:467 src/Module/Contact/Profile.php:518 -#: src/Module/Moderation/Blocklist/Contact.php:117 -#: src/Module/Moderation/Users/Blocked.php:138 -#: src/Module/Moderation/Users/Index.php:154 +#: src/Module/Contact.php:449 src/Module/Contact/Profile.php:518 +#: src/Module/Moderation/Blocklist/Contact.php:103 +#: src/Module/Moderation/Users/Blocked.php:124 +#: src/Module/Moderation/Users/Index.php:140 msgid "Unblock" msgstr "Odblokovat" -#: src/Module/Contact.php:468 src/Module/Contact/Profile.php:526 +#: src/Module/Contact.php:450 src/Module/Contact/Profile.php:526 msgid "Unignore" msgstr "Přestat ignorovat" -#: src/Module/Contact.php:469 src/Module/Contact/Profile.php:534 +#: src/Module/Contact.php:451 src/Module/Contact/Profile.php:534 msgid "Uncollapse" msgstr "" -#: src/Module/Contact.php:471 +#: src/Module/Contact.php:453 msgid "Batch Actions" msgstr "Souhrnné akce" -#: src/Module/Contact.php:514 +#: src/Module/Contact.php:496 msgid "Conversations started by this contact" msgstr "Konverzace, které tento kontakt začal" -#: src/Module/Contact.php:519 +#: src/Module/Contact.php:501 msgid "Posts and Comments" msgstr "Příspěvky a komentáře" -#: src/Module/Contact.php:522 +#: src/Module/Contact.php:504 msgid "Individual Posts and Replies" msgstr "" -#: src/Module/Contact.php:530 +#: src/Module/Contact.php:512 msgid "Posts containing media objects" msgstr "" -#: src/Module/Contact.php:538 +#: src/Module/Contact.php:520 msgid "View all known contacts" msgstr "" -#: src/Module/Contact.php:549 +#: src/Module/Contact.php:531 msgid "Advanced Contact Settings" msgstr "Pokročilé nastavení kontaktu" -#: src/Module/Contact.php:585 +#: src/Module/Contact.php:567 msgid "Mutual Friendship" msgstr "Vzájemné přátelství" -#: src/Module/Contact.php:589 +#: src/Module/Contact.php:571 msgid "is a fan of yours" msgstr "je váš fanoušek" -#: src/Module/Contact.php:593 +#: src/Module/Contact.php:575 msgid "you are a fan of" msgstr "jste fanouškem" -#: src/Module/Contact.php:611 +#: src/Module/Contact.php:593 msgid "Pending outgoing contact request" msgstr "" -#: src/Module/Contact.php:613 +#: src/Module/Contact.php:595 msgid "Pending incoming contact request" msgstr "" -#: src/Module/Contact.php:626 src/Module/Contact/Profile.php:377 +#: src/Module/Contact.php:608 src/Module/Contact/Profile.php:377 #, php-format msgid "Visit %s's profile [%s]" msgstr "Navštivte profil uživatele %s [%s]" -#: src/Module/Contact/Advanced.php:99 +#: src/Module/Contact/Advanced.php:85 msgid "Contact update failed." msgstr "Aktualizace kontaktu selhala." -#: src/Module/Contact/Advanced.php:130 +#: src/Module/Contact/Advanced.php:116 msgid "Return to contact editor" msgstr "Zpět k editoru kontaktu" -#: src/Module/Contact/Advanced.php:134 -#: src/Module/Moderation/Blocklist/Contact.php:122 -#: src/Module/Moderation/Reports.php:110 -#: src/Module/Moderation/Users/Active.php:126 -#: src/Module/Moderation/Users/Blocked.php:126 -#: src/Module/Moderation/Users/Create.php:70 -#: src/Module/Moderation/Users/Deleted.php:83 -#: src/Module/Moderation/Users/Index.php:140 -#: src/Module/Moderation/Users/Index.php:160 -#: src/Module/Moderation/Users/Pending.php:99 src/Module/Settings/OAuth.php:72 +#: src/Module/Contact/Advanced.php:120 +#: src/Module/Moderation/Blocklist/Contact.php:108 +#: src/Module/Moderation/Reports.php:102 +#: src/Module/Moderation/Users/Active.php:112 +#: src/Module/Moderation/Users/Blocked.php:112 +#: src/Module/Moderation/Users/Create.php:56 +#: src/Module/Moderation/Users/Deleted.php:69 +#: src/Module/Moderation/Users/Index.php:126 +#: src/Module/Moderation/Users/Index.php:146 +#: src/Module/Moderation/Users/Pending.php:85 src/Module/Settings/OAuth.php:58 msgid "Name" msgstr "Jméno" -#: src/Module/Contact/Advanced.php:135 +#: src/Module/Contact/Advanced.php:121 msgid "Account Nickname" msgstr "Přezdívka účtu" -#: src/Module/Contact/Advanced.php:136 +#: src/Module/Contact/Advanced.php:122 msgid "Account URL" msgstr "URL adresa účtu" -#: src/Module/Contact/Advanced.php:137 +#: src/Module/Contact/Advanced.php:123 msgid "Poll/Feed URL" msgstr "URL adresa poll/feed" -#: src/Module/Contact/Advanced.php:138 +#: src/Module/Contact/Advanced.php:124 msgid "New photo from this URL" msgstr "Nová fotka z této URL adresy" -#: src/Module/Contact/Contacts.php:89 +#: src/Module/Contact/Contacts.php:75 msgid "No known contacts." msgstr "" -#: src/Module/Contact/Contacts.php:103 src/Module/Profile/Common.php:128 +#: src/Module/Contact/Contacts.php:89 src/Module/Profile/Common.php:114 msgid "No common contacts." msgstr "" -#: src/Module/Contact/Contacts.php:115 src/Module/Profile/Contacts.php:135 +#: src/Module/Contact/Contacts.php:101 src/Module/Profile/Contacts.php:121 #, php-format msgid "Follower (%s)" msgid_plural "Followers (%s)" @@ -6678,7 +6694,7 @@ msgstr[1] "Sledující (%s)" msgstr[2] "Sledující (%s)" msgstr[3] "Sledující (%s)" -#: src/Module/Contact/Contacts.php:119 src/Module/Profile/Contacts.php:138 +#: src/Module/Contact/Contacts.php:105 src/Module/Profile/Contacts.php:124 #, php-format msgid "Following (%s)" msgid_plural "Following (%s)" @@ -6687,7 +6703,7 @@ msgstr[1] "Sledovaní (%s)" msgstr[2] "Sledovaní (%s)" msgstr[3] "Sleduji (%s)" -#: src/Module/Contact/Contacts.php:123 src/Module/Profile/Contacts.php:141 +#: src/Module/Contact/Contacts.php:109 src/Module/Profile/Contacts.php:127 #, php-format msgid "Mutual friend (%s)" msgid_plural "Mutual friends (%s)" @@ -6696,12 +6712,12 @@ msgstr[1] "Vzájemní přátelé (%s)" msgstr[2] "Vzájemní přátelé (%s)" msgstr[3] "Vzájemní přátelé (%s)" -#: src/Module/Contact/Contacts.php:125 src/Module/Profile/Contacts.php:143 +#: src/Module/Contact/Contacts.php:111 src/Module/Profile/Contacts.php:129 #, php-format msgid "These contacts both follow and are followed by %s." msgstr "" -#: src/Module/Contact/Contacts.php:131 src/Module/Profile/Common.php:116 +#: src/Module/Contact/Contacts.php:117 src/Module/Profile/Common.php:102 #, php-format msgid "Common contact (%s)" msgid_plural "Common contacts (%s)" @@ -6710,14 +6726,14 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: src/Module/Contact/Contacts.php:133 src/Module/Profile/Common.php:118 +#: src/Module/Contact/Contacts.php:119 src/Module/Profile/Common.php:104 #, php-format msgid "" "Both %s and yourself have publicly interacted with these " "contacts (follow, comment or likes on public posts)." msgstr "" -#: src/Module/Contact/Contacts.php:139 src/Module/Profile/Contacts.php:149 +#: src/Module/Contact/Contacts.php:125 src/Module/Profile/Contacts.php:135 #, php-format msgid "Contact (%s)" msgid_plural "Contacts (%s)" @@ -6726,95 +6742,91 @@ msgstr[1] "Kontakty (%s)" msgstr[2] "Kontakty (%s)" msgstr[3] "Kontakty (%s)" -#: src/Module/Contact/Follow.php:70 src/Module/Contact/Redir.php:63 -#: src/Module/Contact/Redir.php:223 src/Module/Conversation/Community.php:166 -#: src/Module/Debug/ItemBody.php:38 src/Module/Diaspora/Receive.php:57 -#: src/Module/Item/Display.php:96 src/Module/Item/Feed.php:59 -#: src/Module/Item/Follow.php:41 src/Module/Item/Ignore.php:41 -#: src/Module/Item/Language.php:53 src/Module/Item/Pin.php:41 -#: src/Module/Item/Pin.php:56 src/Module/Item/Searchtext.php:53 -#: src/Module/Item/Star.php:42 src/Module/Update/Display.php:37 +#: src/Module/Contact/Follow.php:56 src/Module/Contact/Redir.php:45 +#: src/Module/Contact/Redir.php:206 src/Module/Conversation/Community.php:154 +#: src/Module/Debug/ItemBody.php:24 src/Module/Diaspora/Receive.php:45 +#: src/Module/Item/Display.php:82 src/Module/Item/Feed.php:45 +#: src/Module/Item/Follow.php:27 src/Module/Item/Ignore.php:27 +#: src/Module/Item/Language.php:39 src/Module/Item/Pin.php:27 +#: src/Module/Item/Pin.php:42 src/Module/Item/Searchtext.php:39 +#: src/Module/Item/Star.php:28 src/Module/Update/Display.php:23 msgid "Access denied." msgstr "Přístup odmítnut." -#: src/Module/Contact/Follow.php:105 src/Module/Contact/Unfollow.php:125 -#: src/Module/Profile/RemoteFollow.php:133 +#: src/Module/Contact/Follow.php:91 src/Module/Contact/Unfollow.php:111 +#: src/Module/Profile/RemoteFollow.php:119 msgid "Submit Request" msgstr "Odeslat požadavek" -#: src/Module/Contact/Follow.php:115 +#: src/Module/Contact/Follow.php:101 msgid "You already added this contact." msgstr "Již jste si tento kontakt přidal/a" -#: src/Module/Contact/Follow.php:130 +#: src/Module/Contact/Follow.php:116 msgid "The network type couldn't be detected. Contact can't be added." msgstr "Typ sítě nemohl být detekován. Kontakt nemůže být přidán." -#: src/Module/Contact/Follow.php:138 +#: src/Module/Contact/Follow.php:124 msgid "Diaspora support isn't enabled. Contact can't be added." msgstr "Podpora pro Diasporu není zapnuta. Kontakt nemůže být přidán." -#: src/Module/Contact/Follow.php:143 -msgid "OStatus support is disabled. Contact can't be added." -msgstr "Podpora pro OStatus je vypnnuta. Kontakt nemůže být přidán." - -#: src/Module/Contact/Follow.php:168 src/Module/Profile/RemoteFollow.php:132 +#: src/Module/Contact/Follow.php:149 src/Module/Profile/RemoteFollow.php:118 msgid "Please answer the following:" msgstr "Odpovězte, prosím, následující:" -#: src/Module/Contact/Follow.php:169 src/Module/Contact/Unfollow.php:123 +#: src/Module/Contact/Follow.php:150 src/Module/Contact/Unfollow.php:109 msgid "Your Identity Address:" msgstr "Vaše adresa identity:" -#: src/Module/Contact/Follow.php:170 src/Module/Contact/Profile.php:408 -#: src/Module/Contact/Unfollow.php:129 -#: src/Module/Moderation/Blocklist/Contact.php:131 -#: src/Module/Moderation/Reports.php:117 -#: src/Module/Notifications/Introductions.php:129 -#: src/Module/Notifications/Introductions.php:198 +#: src/Module/Contact/Follow.php:151 src/Module/Contact/Profile.php:408 +#: src/Module/Contact/Unfollow.php:115 +#: src/Module/Moderation/Blocklist/Contact.php:117 +#: src/Module/Moderation/Reports.php:109 +#: src/Module/Notifications/Introductions.php:121 +#: src/Module/Notifications/Introductions.php:190 msgid "Profile URL" msgstr "URL profilu" -#: src/Module/Contact/Follow.php:171 src/Module/Contact/Profile.php:420 -#: src/Module/Notifications/Introductions.php:191 -#: src/Module/Profile/Profile.php:234 +#: src/Module/Contact/Follow.php:152 src/Module/Contact/Profile.php:420 +#: src/Module/Notifications/Introductions.php:183 +#: src/Module/Profile/Profile.php:222 msgid "Tags:" msgstr "Štítky:" -#: src/Module/Contact/Follow.php:182 +#: src/Module/Contact/Follow.php:163 #, php-format msgid "%s knows you" msgstr "" -#: src/Module/Contact/Follow.php:183 +#: src/Module/Contact/Follow.php:164 msgid "Add a personal note:" msgstr "Přidejte osobní poznámku:" -#: src/Module/Contact/Follow.php:192 src/Module/Contact/Unfollow.php:138 +#: src/Module/Contact/Follow.php:173 src/Module/Contact/Unfollow.php:124 msgid "Posts and Replies" msgstr "" -#: src/Module/Contact/Follow.php:221 +#: src/Module/Contact/Follow.php:202 msgid "The contact could not be added." msgstr "Kontakt nemohl být přidán." -#: src/Module/Contact/MatchInterests.php:95 -#: src/Module/Media/Attachment/Upload.php:77 -#: src/Module/Media/Attachment/Upload.php:82 -#: src/Module/Media/Photo/Upload.php:81 src/Module/Media/Photo/Upload.php:86 -#: src/Module/Media/Photo/Upload.php:135 +#: src/Module/Contact/MatchInterests.php:81 +#: src/Module/Media/Attachment/Upload.php:63 +#: src/Module/Media/Attachment/Upload.php:68 +#: src/Module/Media/Photo/Upload.php:67 src/Module/Media/Photo/Upload.php:72 +#: src/Module/Media/Photo/Upload.php:121 msgid "Invalid request." msgstr "Neplatný požadavek." -#: src/Module/Contact/MatchInterests.php:102 +#: src/Module/Contact/MatchInterests.php:88 msgid "No keywords to match. Please add keywords to your profile." msgstr "" -#: src/Module/Contact/MatchInterests.php:145 +#: src/Module/Contact/MatchInterests.php:141 msgid "Profile Match" msgstr "Shoda profilu" -#: src/Module/Contact/Profile.php:145 +#: src/Module/Contact/Profile.php:131 msgid "Failed to update contact record." msgstr "Nepodařilo se aktualizovat kontakt." @@ -6952,7 +6964,7 @@ msgid "Block/Unblock contact" msgstr "Blokovat / Odblokovat kontakt" #: src/Module/Contact/Profile.php:379 -#: src/Module/Moderation/Report/Create.php:293 +#: src/Module/Moderation/Report/Create.php:279 msgid "Ignore contact" msgstr "Ignorovat kontakt" @@ -6997,7 +7009,7 @@ msgid "Manage remote servers" msgstr "" #: src/Module/Contact/Profile.php:400 -#: src/Module/Notifications/Introductions.php:192 +#: src/Module/Notifications/Introductions.php:184 msgid "Hide this contact from others" msgstr "Skrýt tento kontakt před ostatními" @@ -7025,12 +7037,12 @@ msgid "" msgstr "Seznam klíčových slov, které by neměly být převáděna na hashtagy, když je zvoleno „Načíst informace a klíčová slova“. Oddělujte čárkami" #: src/Module/Contact/Profile.php:421 -#: src/Module/Settings/TwoFactor/Index.php:160 +#: src/Module/Settings/TwoFactor/Index.php:146 msgid "Actions" msgstr "Akce" #: src/Module/Contact/Profile.php:423 -#: src/Module/Settings/TwoFactor/Index.php:140 view/theme/frio/theme.php:232 +#: src/Module/Settings/TwoFactor/Index.php:126 view/theme/frio/theme.php:220 msgid "Status" msgstr "Stav" @@ -7105,8 +7117,8 @@ msgstr "" #: src/Module/Contact/Profile.php:441 msgid "" -"If enabled, posts from this contact will only appear in channels, but not in" -" the network stream." +"If enabled, posts from this contact will only appear in channels and network" +" streams in circles, but not in the general network stream." msgstr "" #: src/Module/Contact/Profile.php:509 @@ -7125,7 +7137,7 @@ msgstr "Přepínat stav Ignorováno" msgid "Toggle Collapsed status" msgstr "" -#: src/Module/Contact/Profile.php:543 src/Module/Contact/Revoke.php:106 +#: src/Module/Contact/Profile.php:543 src/Module/Contact/Revoke.php:89 msgid "Revoke Follow" msgstr "" @@ -7133,134 +7145,130 @@ msgstr "" msgid "Revoke the follow from this contact" msgstr "" -#: src/Module/Contact/Redir.php:135 src/Module/Contact/Redir.php:187 +#: src/Module/Contact/Redir.php:125 msgid "Bad Request." msgstr "" -#: src/Module/Contact/Revoke.php:63 -msgid "Unknown contact." -msgstr "" - -#: src/Module/Contact/Revoke.php:77 +#: src/Module/Contact/Revoke.php:60 msgid "Contact is being deleted." msgstr "" -#: src/Module/Contact/Revoke.php:91 +#: src/Module/Contact/Revoke.php:74 msgid "Follow was successfully revoked." msgstr "" -#: src/Module/Contact/Revoke.php:107 +#: src/Module/Contact/Revoke.php:90 msgid "" "Do you really want to revoke this contact's follow? This cannot be undone " "and they will have to manually follow you back again." msgstr "" -#: src/Module/Contact/Suggestions.php:62 +#: src/Module/Contact/Suggestions.php:48 msgid "" "No suggestions available. If this is a new site, please try again in 24 " "hours." msgstr "Nejsou dostupné žádné návrhy. Pokud je toto nový server, zkuste to znovu za 24 hodin." -#: src/Module/Contact/Unfollow.php:98 src/Module/Contact/Unfollow.php:167 +#: src/Module/Contact/Unfollow.php:84 src/Module/Contact/Unfollow.php:153 msgid "You aren't following this contact." msgstr "Tento kontakt nesledujete." -#: src/Module/Contact/Unfollow.php:103 +#: src/Module/Contact/Unfollow.php:89 msgid "Unfollowing is currently not supported by your network." msgstr "Zrušení sledování není aktuálně na Vaši síti podporováno." -#: src/Module/Contact/Unfollow.php:121 +#: src/Module/Contact/Unfollow.php:107 msgid "Disconnect/Unfollow" msgstr "Odpojit se/Zrušit sledování" -#: src/Module/Contact/Unfollow.php:175 +#: src/Module/Contact/Unfollow.php:161 msgid "Contact was successfully unfollowed" msgstr "" -#: src/Module/Contact/Unfollow.php:178 +#: src/Module/Contact/Unfollow.php:164 msgid "Unable to unfollow this contact, please contact your administrator" msgstr "" -#: src/Module/Conversation/Channel.php:139 -#: src/Module/Conversation/Community.php:126 src/Module/Search/Index.php:152 -#: src/Module/Search/Index.php:194 +#: src/Module/Conversation/Channel.php:125 +#: src/Module/Conversation/Community.php:114 src/Module/Search/Index.php:138 +#: src/Module/Search/Index.php:180 msgid "No results." msgstr "Žádné výsledky." -#: src/Module/Conversation/Channel.php:177 +#: src/Module/Conversation/Channel.php:163 msgid "Channel not available." msgstr "" -#: src/Module/Conversation/Community.php:92 +#: src/Module/Conversation/Community.php:80 msgid "" "This community stream shows all public posts received by this node. They may" " not reflect the opinions of this node’s users." msgstr "Tento komunitní proud ukazuje všechny veřejné příspěvky, které tento server přijme. Nemusí odrážet názory uživatelů serveru." -#: src/Module/Conversation/Community.php:180 +#: src/Module/Conversation/Community.php:168 msgid "Community option not available." msgstr "Možnost komunity není dostupná." -#: src/Module/Conversation/Community.php:196 +#: src/Module/Conversation/Community.php:184 msgid "Not available." msgstr "Není k dispozici." -#: src/Module/Conversation/Network.php:214 +#: src/Module/Conversation/Network.php:202 msgid "No such circle" msgstr "" -#: src/Module/Conversation/Network.php:218 +#: src/Module/Conversation/Network.php:206 #, php-format msgid "Circle: %s" msgstr "" -#: src/Module/Conversation/Network.php:237 +#: src/Module/Conversation/Network.php:226 #, php-format msgid "Error %d (%s) while fetching the timeline." msgstr "" -#: src/Module/Conversation/Network.php:314 +#: src/Module/Conversation/Network.php:304 msgid "Network feed not available." msgstr "" -#: src/Module/Conversation/Timeline.php:203 +#: src/Module/Conversation/Timeline.php:190 msgid "Include" msgstr "" -#: src/Module/Conversation/Timeline.php:204 +#: src/Module/Conversation/Timeline.php:191 msgid "Hide" msgstr "" -#: src/Module/Credits.php:44 +#: src/Module/Credits.php:30 msgid "Credits" msgstr "Poděkování" -#: src/Module/Credits.php:45 +#: src/Module/Credits.php:31 msgid "" "Friendica is a community project, that would not be possible without the " "help of many people. Here is a list of those who have contributed to the " "code or the translation of Friendica. Thank you all!" msgstr "Friendica je komunitní projekt, který by nebyl možný bez pomoci mnoha lidí. Zde je seznam těch, kteří přispěli ke kódu nebo k překladu Friendica. Děkujeme všem!" -#: src/Module/Debug/ActivityPubConversion.php:53 +#: src/Module/Debug/ActivityPubConversion.php:45 msgid "Formatted" msgstr "" -#: src/Module/Debug/ActivityPubConversion.php:65 +#: src/Module/Debug/ActivityPubConversion.php:57 msgid "Activity" msgstr "" -#: src/Module/Debug/ActivityPubConversion.php:117 +#: src/Module/Debug/ActivityPubConversion.php:109 msgid "Object data" msgstr "" -#: src/Module/Debug/ActivityPubConversion.php:124 +#: src/Module/Debug/ActivityPubConversion.php:116 msgid "Result Item" msgstr "" -#: src/Module/Debug/ActivityPubConversion.php:129 -#: src/Module/Debug/Babel.php:294 src/Module/Moderation/Item/Source.php:87 -#: src/Module/Security/TwoFactor/Verify.php:98 +#: src/Module/Debug/ActivityPubConversion.php:121 +#: src/Module/Debug/Babel.php:286 src/Module/Moderation/Item/Source.php:79 +#: src/Module/Security/TwoFactor/Verify.php:84 msgid "Error" msgid_plural "Errors" msgstr[0] "Chyba" @@ -7268,506 +7276,506 @@ msgstr[1] "Chyby" msgstr[2] "Chyb" msgstr[3] "Chyb" -#: src/Module/Debug/ActivityPubConversion.php:138 +#: src/Module/Debug/ActivityPubConversion.php:130 msgid "Source activity" msgstr "" -#: src/Module/Debug/Babel.php:52 +#: src/Module/Debug/Babel.php:44 msgid "Source input" msgstr "Zdrojový vstup" -#: src/Module/Debug/Babel.php:58 +#: src/Module/Debug/Babel.php:50 msgid "BBCode::toPlaintext" msgstr "BBCode::toPlaintext" -#: src/Module/Debug/Babel.php:64 +#: src/Module/Debug/Babel.php:56 msgid "BBCode::convert (raw HTML)" msgstr "BBCode::convert (hrubé HTML)" -#: src/Module/Debug/Babel.php:69 +#: src/Module/Debug/Babel.php:61 msgid "BBCode::convert (hex)" msgstr "" -#: src/Module/Debug/Babel.php:74 +#: src/Module/Debug/Babel.php:66 msgid "BBCode::convert" msgstr "BBCode::convert" -#: src/Module/Debug/Babel.php:80 +#: src/Module/Debug/Babel.php:72 msgid "BBCode::convert => HTML::toBBCode" msgstr "BBCode::convert => HTML::toBBCode" -#: src/Module/Debug/Babel.php:86 +#: src/Module/Debug/Babel.php:78 msgid "BBCode::toMarkdown" msgstr "BBCode::toMarkdown" -#: src/Module/Debug/Babel.php:92 +#: src/Module/Debug/Babel.php:84 msgid "BBCode::toMarkdown => Markdown::convert (raw HTML)" msgstr "" -#: src/Module/Debug/Babel.php:96 +#: src/Module/Debug/Babel.php:88 msgid "BBCode::toMarkdown => Markdown::convert" msgstr "BBCode::toMarkdown => Markdown::convert" -#: src/Module/Debug/Babel.php:102 +#: src/Module/Debug/Babel.php:94 msgid "BBCode::toMarkdown => Markdown::toBBCode" msgstr "BBCode::toMarkdown => Markdown::toBBCode" -#: src/Module/Debug/Babel.php:108 +#: src/Module/Debug/Babel.php:100 msgid "BBCode::toMarkdown => Markdown::convert => HTML::toBBCode" msgstr "BBCode::toMarkdown => Markdown::convert => HTML::toBBCode" -#: src/Module/Debug/Babel.php:116 +#: src/Module/Debug/Babel.php:108 msgid "Item Body" msgstr "Tělo položky" -#: src/Module/Debug/Babel.php:120 +#: src/Module/Debug/Babel.php:112 msgid "Item Tags" msgstr "Štítky položky" -#: src/Module/Debug/Babel.php:126 +#: src/Module/Debug/Babel.php:118 msgid "PageInfo::appendToBody" msgstr "" -#: src/Module/Debug/Babel.php:131 +#: src/Module/Debug/Babel.php:123 msgid "PageInfo::appendToBody => BBCode::convert (raw HTML)" msgstr "" -#: src/Module/Debug/Babel.php:135 +#: src/Module/Debug/Babel.php:127 msgid "PageInfo::appendToBody => BBCode::convert" msgstr "" -#: src/Module/Debug/Babel.php:142 +#: src/Module/Debug/Babel.php:134 msgid "Source input (Diaspora format)" msgstr "Zdrojový vstup (formát Diaspora)" -#: src/Module/Debug/Babel.php:151 +#: src/Module/Debug/Babel.php:143 msgid "Source input (Markdown)" msgstr "" -#: src/Module/Debug/Babel.php:157 +#: src/Module/Debug/Babel.php:149 msgid "Markdown::convert (raw HTML)" msgstr "Markdown::convert (hrubé HTML)" -#: src/Module/Debug/Babel.php:162 +#: src/Module/Debug/Babel.php:154 msgid "Markdown::convert" msgstr "Markdown::convert" -#: src/Module/Debug/Babel.php:168 +#: src/Module/Debug/Babel.php:160 msgid "Markdown::toBBCode" msgstr "Markdown::toBBCode" -#: src/Module/Debug/Babel.php:175 +#: src/Module/Debug/Babel.php:167 msgid "Raw HTML input" msgstr "Hrubý HTML vstup" -#: src/Module/Debug/Babel.php:180 +#: src/Module/Debug/Babel.php:172 msgid "HTML Input" msgstr "HTML vstup" -#: src/Module/Debug/Babel.php:187 +#: src/Module/Debug/Babel.php:179 msgid "HTML Purified (raw)" msgstr "" -#: src/Module/Debug/Babel.php:192 +#: src/Module/Debug/Babel.php:184 msgid "HTML Purified (hex)" msgstr "" -#: src/Module/Debug/Babel.php:197 +#: src/Module/Debug/Babel.php:189 msgid "HTML Purified" msgstr "" -#: src/Module/Debug/Babel.php:203 +#: src/Module/Debug/Babel.php:195 msgid "HTML::toBBCode" msgstr "HTML::toBBCode" -#: src/Module/Debug/Babel.php:209 +#: src/Module/Debug/Babel.php:201 msgid "HTML::toBBCode => BBCode::convert" msgstr "HTML::toBBCode => BBCode::convert" -#: src/Module/Debug/Babel.php:214 +#: src/Module/Debug/Babel.php:206 msgid "HTML::toBBCode => BBCode::convert (raw HTML)" msgstr "HTML::toBBCode => BBCode::convert (hrubé HTML)" -#: src/Module/Debug/Babel.php:220 +#: src/Module/Debug/Babel.php:212 msgid "HTML::toBBCode => BBCode::toPlaintext" msgstr "HTML::toBBCode => BBCode::toPlaintext" -#: src/Module/Debug/Babel.php:226 +#: src/Module/Debug/Babel.php:218 msgid "HTML::toMarkdown" msgstr "HTML::toMarkdown" -#: src/Module/Debug/Babel.php:232 +#: src/Module/Debug/Babel.php:224 msgid "HTML::toPlaintext" msgstr "HTML::toPlaintext" -#: src/Module/Debug/Babel.php:238 +#: src/Module/Debug/Babel.php:230 msgid "HTML::toPlaintext (compact)" msgstr "HTML::toPlaintext (kompaktní)" -#: src/Module/Debug/Babel.php:256 +#: src/Module/Debug/Babel.php:248 msgid "Decoded post" msgstr "" -#: src/Module/Debug/Babel.php:277 +#: src/Module/Debug/Babel.php:269 msgid "Post array before expand entities" msgstr "" -#: src/Module/Debug/Babel.php:284 +#: src/Module/Debug/Babel.php:276 msgid "Post converted" msgstr "" -#: src/Module/Debug/Babel.php:289 +#: src/Module/Debug/Babel.php:281 msgid "Converted body" msgstr "" -#: src/Module/Debug/Babel.php:295 +#: src/Module/Debug/Babel.php:287 msgid "Twitter addon is absent from the addon/ folder." msgstr "" -#: src/Module/Debug/Babel.php:305 +#: src/Module/Debug/Babel.php:297 msgid "Babel Diagnostic" msgstr "" -#: src/Module/Debug/Babel.php:307 +#: src/Module/Debug/Babel.php:299 msgid "Source text" msgstr "Zdrojový text" -#: src/Module/Debug/Babel.php:308 +#: src/Module/Debug/Babel.php:300 msgid "BBCode" msgstr "BBCode" -#: src/Module/Debug/Babel.php:310 +#: src/Module/Debug/Babel.php:302 msgid "Markdown" msgstr "Markdown" -#: src/Module/Debug/Babel.php:311 +#: src/Module/Debug/Babel.php:303 msgid "HTML" msgstr "HTML" -#: src/Module/Debug/Babel.php:313 +#: src/Module/Debug/Babel.php:305 msgid "Twitter Source / Tweet URL (requires API key)" msgstr "" -#: src/Module/Debug/Feed.php:53 src/Module/Filer/SaveTag.php:47 -#: src/Module/Settings/Profile/Index.php:177 +#: src/Module/Debug/Feed.php:39 src/Module/Filer/SaveTag.php:33 +#: src/Module/Settings/Profile/Index.php:166 msgid "You must be logged in to use this module" msgstr "Pro používání tohoto modulu musíte být přihlášen/a" -#: src/Module/Debug/Feed.php:78 +#: src/Module/Debug/Feed.php:64 msgid "Source URL" msgstr "Zdrojová adresa URL" -#: src/Module/Debug/Localtime.php:49 +#: src/Module/Debug/Localtime.php:35 msgid "Time Conversion" msgstr "Časový převod" -#: src/Module/Debug/Localtime.php:50 +#: src/Module/Debug/Localtime.php:36 msgid "" "Friendica provides this service for sharing events with other networks and " "friends in unknown timezones." msgstr "Friendica poskytuje tuto službu ke sdílení událostí s ostatními sítěmi a přáteli v neznámých časových pásmech" -#: src/Module/Debug/Localtime.php:51 +#: src/Module/Debug/Localtime.php:37 #, php-format msgid "UTC time: %s" msgstr "UTC čas: %s" -#: src/Module/Debug/Localtime.php:54 +#: src/Module/Debug/Localtime.php:40 #, php-format msgid "Current timezone: %s" msgstr "Aktuální časové pásmo: %s" -#: src/Module/Debug/Localtime.php:58 +#: src/Module/Debug/Localtime.php:44 #, php-format msgid "Converted localtime: %s" msgstr "Převedený místní čas : %s" -#: src/Module/Debug/Localtime.php:62 +#: src/Module/Debug/Localtime.php:48 msgid "Please select your timezone:" msgstr "Prosím, vyberte své časové pásmo:" -#: src/Module/Debug/Probe.php:38 src/Module/Debug/WebFinger.php:37 +#: src/Module/Debug/Probe.php:24 src/Module/Debug/WebFinger.php:23 msgid "Only logged in users are permitted to perform a probing." msgstr "Pouze přihlášení uživatelé mohou zkoušet adresy." -#: src/Module/Debug/Probe.php:52 +#: src/Module/Debug/Probe.php:38 msgid "Probe Diagnostic" msgstr "" -#: src/Module/Debug/Probe.php:53 +#: src/Module/Debug/Probe.php:39 msgid "Output" msgstr "" -#: src/Module/Debug/Probe.php:56 +#: src/Module/Debug/Probe.php:42 msgid "Lookup address" msgstr "Najít adresu" -#: src/Module/Debug/WebFinger.php:50 +#: src/Module/Debug/WebFinger.php:36 msgid "Webfinger Diagnostic" msgstr "" -#: src/Module/Debug/WebFinger.php:52 +#: src/Module/Debug/WebFinger.php:38 msgid "Lookup address:" msgstr "" -#: src/Module/Directory.php:74 +#: src/Module/Directory.php:61 msgid "No entries (some entries may be hidden)." msgstr "Žádné záznamy (některé položky mohou být skryty)." -#: src/Module/Directory.php:90 +#: src/Module/Directory.php:77 msgid "Find on this site" msgstr "Najít na tomto webu" -#: src/Module/Directory.php:92 +#: src/Module/Directory.php:79 msgid "Results for:" msgstr "Výsledky pro:" -#: src/Module/Directory.php:94 +#: src/Module/Directory.php:81 msgid "Site Directory" msgstr "Adresář serveru" -#: src/Module/Filer/RemoveTag.php:105 +#: src/Module/Filer/RemoveTag.php:91 msgid "Item was not deleted" msgstr "" -#: src/Module/Filer/RemoveTag.php:115 +#: src/Module/Filer/RemoveTag.php:101 msgid "Item was not removed" msgstr "" -#: src/Module/Filer/SaveTag.php:73 +#: src/Module/Filer/SaveTag.php:59 msgid "- select -" msgstr "- vyberte -" -#: src/Module/FriendSuggest.php:82 +#: src/Module/FriendSuggest.php:68 msgid "Suggested contact not found." msgstr "Navrhovaný kontakt nenalezen." -#: src/Module/FriendSuggest.php:100 +#: src/Module/FriendSuggest.php:86 msgid "Friend suggestion sent." msgstr "Návrh přátelství odeslán. " -#: src/Module/FriendSuggest.php:137 +#: src/Module/FriendSuggest.php:123 msgid "Suggest Friends" msgstr "Navrhnout přátele" -#: src/Module/FriendSuggest.php:140 +#: src/Module/FriendSuggest.php:126 #, php-format msgid "Suggest a friend for %s" msgstr "Navrhnout přítele pro uživatele %s" -#: src/Module/Friendica.php:81 +#: src/Module/Friendica.php:67 msgid "Installed addons/apps:" msgstr "Nainstalované doplňky/aplikace:" -#: src/Module/Friendica.php:86 +#: src/Module/Friendica.php:72 msgid "No installed addons/apps" msgstr "Žádne nainstalované doplňky/aplikace" -#: src/Module/Friendica.php:91 +#: src/Module/Friendica.php:77 #, php-format msgid "Read about the Terms of Service of this node." msgstr "Přečtěte si o Podmínkách používání tohoto serveru." -#: src/Module/Friendica.php:98 +#: src/Module/Friendica.php:84 msgid "On this server the following remote servers are blocked." msgstr "Na tomto serveru jsou zablokovány následující vzdálené servery." -#: src/Module/Friendica.php:101 -#: src/Module/Moderation/Blocklist/Server/Index.php:87 -#: src/Module/Moderation/Blocklist/Server/Index.php:111 -#: src/Module/Settings/Channels.php:232 +#: src/Module/Friendica.php:87 +#: src/Module/Moderation/Blocklist/Server/Index.php:73 +#: src/Module/Moderation/Blocklist/Server/Index.php:97 +#: src/Module/Settings/Channels.php:218 msgid "Reason for the block" msgstr "Důvody pro zablokování" -#: src/Module/Friendica.php:103 +#: src/Module/Friendica.php:89 msgid "Download this list in CSV format" msgstr "" -#: src/Module/Friendica.php:117 +#: src/Module/Friendica.php:103 #, php-format msgid "" "This is Friendica, version %s that is running at the web location %s. The " "database version is %s, the post update version is %s." msgstr "Tohle je Friendica, verze %s, běžící na webové adrese %s. Verze databáze je %s, verze post update je %s." -#: src/Module/Friendica.php:122 +#: src/Module/Friendica.php:108 msgid "" "Please visit Friendi.ca to learn more " "about the Friendica project." msgstr "Pro více informací o projektu Friendica, prosím, navštivte stránku Friendi.ca" -#: src/Module/Friendica.php:123 +#: src/Module/Friendica.php:109 msgid "Bug reports and issues: please visit" msgstr "Pro hlášení chyb a námětů na změny prosím navštivte" -#: src/Module/Friendica.php:123 +#: src/Module/Friendica.php:109 msgid "the bugtracker at github" msgstr "sledování chyb na GitHubu" -#: src/Module/Friendica.php:124 +#: src/Module/Friendica.php:110 msgid "Suggestions, praise, etc. - please email \"info\" at \"friendi - dot - ca" msgstr "Návrhy, pochvaly atd. prosím posílejte na adresu „info“ zavináč „friendi“-tečka-„ca“" -#: src/Module/HCard.php:45 +#: src/Module/HCard.php:31 msgid "No profile" msgstr "Žádný profil" -#: src/Module/HTTPException/MethodNotAllowed.php:31 +#: src/Module/HTTPException/MethodNotAllowed.php:17 msgid "Method Not Allowed." msgstr "" -#: src/Module/Help.php:60 +#: src/Module/Help.php:46 msgid "Help:" msgstr "Nápověda:" -#: src/Module/Home.php:63 +#: src/Module/Home.php:52 #, php-format msgid "Welcome to %s" msgstr "Vítejte na %s" -#: src/Module/Install.php:189 +#: src/Module/Install.php:175 msgid "Friendica Communications Server - Setup" msgstr "Komunikační server Friendica - Nastavení" -#: src/Module/Install.php:200 +#: src/Module/Install.php:186 msgid "System check" msgstr "Zkouška systému" -#: src/Module/Install.php:202 src/Module/Install.php:247 -#: src/Module/Install.php:326 +#: src/Module/Install.php:188 src/Module/Install.php:233 +#: src/Module/Install.php:312 msgid "Requirement not satisfied" msgstr "" -#: src/Module/Install.php:203 +#: src/Module/Install.php:189 msgid "Optional requirement not satisfied" msgstr "" -#: src/Module/Install.php:204 +#: src/Module/Install.php:190 msgid "OK" msgstr "" -#: src/Module/Install.php:208 +#: src/Module/Install.php:194 msgid "Next" msgstr "Dále" -#: src/Module/Install.php:209 +#: src/Module/Install.php:195 msgid "Check again" msgstr "Vyzkoušet znovu" -#: src/Module/Install.php:222 +#: src/Module/Install.php:208 msgid "Base settings" msgstr "Základní nastavení" -#: src/Module/Install.php:224 +#: src/Module/Install.php:210 msgid "Base path to installation" msgstr "Základní cesta k instalaci" -#: src/Module/Install.php:226 +#: src/Module/Install.php:212 msgid "" "If the system cannot detect the correct path to your installation, enter the" " correct path here. This setting should only be set if you are using a " "restricted system and symbolic links to your webroot." msgstr "Pokud systém nemůže detekovat správnou cestu k Vaší instalaci, zde zadejte jinou cestu. Toto nastavení by mělo být nastaveno pouze, pokud používáte omezený systém a symbolické odkazy ke kořenové složce webu." -#: src/Module/Install.php:229 +#: src/Module/Install.php:215 msgid "The Friendica system URL" msgstr "" -#: src/Module/Install.php:231 +#: src/Module/Install.php:217 msgid "" "Overwrite this field in case the system URL determination isn't right, " "otherwise leave it as is." msgstr "" -#: src/Module/Install.php:242 +#: src/Module/Install.php:228 msgid "Database connection" msgstr "Databázové spojení" -#: src/Module/Install.php:243 +#: src/Module/Install.php:229 msgid "" "In order to install Friendica we need to know how to connect to your " "database." msgstr "Pro instalaci Friendica potřebujeme znát připojení k vaší databázi." -#: src/Module/Install.php:244 +#: src/Module/Install.php:230 msgid "" "Please contact your hosting provider or site administrator if you have " "questions about these settings." msgstr "Pokud máte otázky k následujícím nastavením, obraťte se na svého poskytovatele hostingu nebo administrátora serveru." -#: src/Module/Install.php:245 +#: src/Module/Install.php:231 msgid "" "The database you specify below should already exist. If it does not, please " "create it before continuing." msgstr "Databáze, kterou uvedete níže, by již měla existovat. Pokud to tak není, prosíme, vytvořte ji před pokračováním." -#: src/Module/Install.php:252 +#: src/Module/Install.php:238 msgid "Database Server Name" msgstr "Jméno databázového serveru" -#: src/Module/Install.php:257 +#: src/Module/Install.php:243 msgid "Database Login Name" msgstr "Přihlašovací jméno k databázi" -#: src/Module/Install.php:263 +#: src/Module/Install.php:249 msgid "Database Login Password" msgstr "Heslo k databázovému účtu " -#: src/Module/Install.php:265 +#: src/Module/Install.php:251 msgid "For security reasons the password must not be empty" msgstr "Z bezpečnostních důvodů nesmí být heslo prázdné." -#: src/Module/Install.php:268 +#: src/Module/Install.php:254 msgid "Database Name" msgstr "Jméno databáze" -#: src/Module/Install.php:272 src/Module/Install.php:300 +#: src/Module/Install.php:258 src/Module/Install.php:286 msgid "Please select a default timezone for your website" msgstr "Prosím, vyberte výchozí časové pásmo pro váš server" -#: src/Module/Install.php:287 +#: src/Module/Install.php:273 msgid "Site settings" msgstr "Nastavení webu" -#: src/Module/Install.php:295 +#: src/Module/Install.php:281 msgid "Site administrator email address" msgstr "E-mailová adresa administrátora webu" -#: src/Module/Install.php:297 +#: src/Module/Install.php:283 msgid "" "Your account email address must match this in order to use the web admin " "panel." msgstr "Vaše e-mailová adresa účtu se musí s touto shodovat, aby bylo možné využívat administrační panel ve webovém rozhraní." -#: src/Module/Install.php:304 +#: src/Module/Install.php:290 msgid "System Language:" msgstr "Systémový jazyk" -#: src/Module/Install.php:306 +#: src/Module/Install.php:292 msgid "" "Set the default language for your Friendica installation interface and to " "send emails." msgstr "Nastavte si výchozí jazyk pro vaše instalační rozhraní Friendica a pro odesílání e-mailů." -#: src/Module/Install.php:318 +#: src/Module/Install.php:304 msgid "Your Friendica site database has been installed." msgstr "Databáze vašeho serveru Friendica byla nainstalována." -#: src/Module/Install.php:328 +#: src/Module/Install.php:314 msgid "Installation finished" msgstr "Instalace dokončena" -#: src/Module/Install.php:348 +#: src/Module/Install.php:334 msgid "

What next

" msgstr "

Co dál

" -#: src/Module/Install.php:349 +#: src/Module/Install.php:335 msgid "" "IMPORTANT: You will need to [manually] setup a scheduled task for the " "worker." msgstr "DŮLEŽITÉ: Budete si muset [manuálně] nastavit naplánovaný úkol pro pracovníka." -#: src/Module/Install.php:352 +#: src/Module/Install.php:338 #, php-format msgid "" "Go to your new Friendica node registration page " @@ -7775,29 +7783,29 @@ msgid "" " administrator email. This will allow you to enter the site admin panel." msgstr "Přejděte k registrační stránce vašeho nového serveru Friendica a zaregistrujte se jako nový uživatel. Nezapomeňte použít stejný e-mail, který jste zadal/a jako administrátorský e-mail. To vám umožní navštívit panel pro administraci stránky." -#: src/Module/Invite.php:57 +#: src/Module/Invite.php:43 msgid "Total invitation limit exceeded." msgstr "Celkový limit pozvánek byl překročen" -#: src/Module/Invite.php:82 +#: src/Module/Invite.php:68 #, php-format msgid "%s : Not a valid email address." msgstr "%s : není platná e-mailová adresa." -#: src/Module/Invite.php:108 +#: src/Module/Invite.php:94 msgid "Please join us on Friendica" msgstr "Prosím přidejte se k nám na Friendica" -#: src/Module/Invite.php:117 +#: src/Module/Invite.php:103 msgid "Invitation limit exceeded. Please contact your site administrator." msgstr "Limit pozvánek byl překročen. Prosím kontaktujte administrátora vaší stránky." -#: src/Module/Invite.php:121 +#: src/Module/Invite.php:107 #, php-format msgid "%s : Message delivery failed." msgstr "%s : Doručení zprávy se nezdařilo." -#: src/Module/Invite.php:125 +#: src/Module/Invite.php:111 #, php-format msgid "%d message sent." msgid_plural "%d messages sent." @@ -7806,11 +7814,11 @@ msgstr[1] "%d zprávy odeslány." msgstr[2] "%d zprávy odesláno." msgstr[3] "%d zpráv odesláno." -#: src/Module/Invite.php:143 +#: src/Module/Invite.php:129 msgid "You have no more invitations available" msgstr "Nemáte k dispozici žádné další pozvánky" -#: src/Module/Invite.php:150 +#: src/Module/Invite.php:136 #, php-format msgid "" "Visit %s for a list of public sites that you can join. Friendica members on " @@ -7818,14 +7826,14 @@ msgid "" " other social networks." msgstr "Navštiv %s pro seznam veřejných serverů, na kterých se můžeš přidat. Členové Friendica na jiných serverech se mohou spojit mezi sebou, jakožto i se členy mnoha dalších sociálních sítí." -#: src/Module/Invite.php:152 +#: src/Module/Invite.php:138 #, php-format msgid "" "To accept this invitation, please visit and register at %s or any other " "public Friendica website." msgstr "K přijetí této pozvánky prosím navštivte a registrujte se na %s nebo na kterémkoliv jiném veřejném serveru Friendica." -#: src/Module/Invite.php:153 +#: src/Module/Invite.php:139 #, php-format msgid "" "Friendica sites all inter-connect to create a huge privacy-enhanced social " @@ -7834,236 +7842,236 @@ msgid "" "sites you can join." msgstr "Stránky Friendica jsou navzájem propojené a vytváří tak obrovský sociální web s dúrazem na soukromí, kterou vlastní a kontrojují její členové, Mohou se také připojit k mnoha tradičním socilním sítím. Navštivte %s pro seznam alternativních serverů Friendica, ke kterým se můžete přidat." -#: src/Module/Invite.php:157 +#: src/Module/Invite.php:143 msgid "" "Our apologies. This system is not currently configured to connect with other" " public sites or invite members." msgstr "Omlouváme se. Systém nyní není nastaven tak, aby se připojil k ostatním veřejným serverům nebo umožnil pozvat nové členy." -#: src/Module/Invite.php:160 +#: src/Module/Invite.php:146 msgid "" "Friendica sites all inter-connect to create a huge privacy-enhanced social " "web that is owned and controlled by its members. They can also connect with " "many traditional social networks." msgstr "Stránky Friendica jsou navzájem propojené a vytváří tak obrovský sociální web s dúrazem na soukromí, kterou vlastní a kontrolují její členové. Mohou se také připojit k mnoha tradičním sociálním sítím." -#: src/Module/Invite.php:159 +#: src/Module/Invite.php:145 #, php-format msgid "To accept this invitation, please visit and register at %s." msgstr "Pokud chcete tuto pozvánku přijmout, prosím navštivte %s a registrujte se tam." -#: src/Module/Invite.php:167 +#: src/Module/Invite.php:153 msgid "Send invitations" msgstr "Poslat pozvánky" -#: src/Module/Invite.php:168 +#: src/Module/Invite.php:154 msgid "Enter email addresses, one per line:" msgstr "Zadejte e-mailové adresy, jednu na řádek:" -#: src/Module/Invite.php:172 +#: src/Module/Invite.php:158 msgid "" "You are cordially invited to join me and other close friends on Friendica - " "and help us to create a better social web." msgstr "Jsi srdečně pozván/a se připojit ke mně a k mým blízkým přátelům na Friendica - a pomoci nám vytvořit lepší sociální web." -#: src/Module/Invite.php:174 +#: src/Module/Invite.php:160 msgid "You will need to supply this invitation code: $invite_code" msgstr "Budeš muset zadat tento pozvánkový kód: $invite_code" -#: src/Module/Invite.php:174 +#: src/Module/Invite.php:160 msgid "" "Once you have registered, please connect with me via my profile page at:" msgstr "Jakmile se zaregistruješ, prosím spoj se se mnou přes mou profilovu stránku na:" -#: src/Module/Invite.php:176 +#: src/Module/Invite.php:162 msgid "" "For more information about the Friendica project and why we feel it is " "important, please visit http://friendi.ca" msgstr "Pro více informací o projektu Friendica a proč si myslím, že je důležitý, prosím navštiv http://friendi.ca" -#: src/Module/Item/Compose.php:94 +#: src/Module/Item/Compose.php:80 msgid "Please enter a post body." msgstr "" -#: src/Module/Item/Compose.php:105 +#: src/Module/Item/Compose.php:91 msgid "This feature is only available with the frio theme." msgstr "" -#: src/Module/Item/Compose.php:129 +#: src/Module/Item/Compose.php:115 msgid "Compose new personal note" msgstr "Napsat novou osobní poznámku" -#: src/Module/Item/Compose.php:138 +#: src/Module/Item/Compose.php:124 msgid "Compose new post" msgstr "Napsat nový příspěvek" -#: src/Module/Item/Compose.php:194 +#: src/Module/Item/Compose.php:180 msgid "Visibility" msgstr "" -#: src/Module/Item/Compose.php:210 +#: src/Module/Item/Compose.php:196 msgid "Clear the location" msgstr "" -#: src/Module/Item/Compose.php:211 +#: src/Module/Item/Compose.php:197 msgid "Location services are unavailable on your device" msgstr "" -#: src/Module/Item/Compose.php:212 +#: src/Module/Item/Compose.php:198 msgid "" "Location services are disabled. Please check the website's permissions on " "your device" msgstr "" -#: src/Module/Item/Compose.php:218 +#: src/Module/Item/Compose.php:204 msgid "" "You can make this page always open when you use the New Post button in the " "Theme Customization settings." msgstr "" -#: src/Module/Item/Feed.php:86 +#: src/Module/Item/Feed.php:72 msgid "The feed for this item is unavailable." msgstr "Proud pro tuto položku je nedostupný." -#: src/Module/Item/Follow.php:51 +#: src/Module/Item/Follow.php:37 msgid "Unable to follow this item." msgstr "" -#: src/Module/Maintenance.php:48 src/Module/Maintenance.php:53 +#: src/Module/Maintenance.php:34 src/Module/Maintenance.php:39 msgid "System down for maintenance" msgstr "Systém vypnut z důvodů údržby" -#: src/Module/Maintenance.php:54 +#: src/Module/Maintenance.php:40 msgid "" "This Friendica node is currently in maintenance mode, either automatically " "because it is self-updating or manually by the node administrator. This " "condition should be temporary, please come back in a few minutes." msgstr "" -#: src/Module/Manifest.php:40 +#: src/Module/Manifest.php:26 msgid "A Decentralized Social Network" msgstr "" -#: src/Module/Media/Attachment/Browser.php:58 -#: src/Module/Media/Photo/Browser.php:59 +#: src/Module/Media/Attachment/Browser.php:44 +#: src/Module/Media/Photo/Browser.php:45 msgid "You need to be logged in to access this page." msgstr "" -#: src/Module/Media/Attachment/Browser.php:74 +#: src/Module/Media/Attachment/Browser.php:60 msgid "Files" msgstr "Soubory" -#: src/Module/Media/Attachment/Browser.php:79 -#: src/Module/Media/Photo/Browser.php:90 -#: src/Module/Settings/Profile/Photo/Index.php:127 +#: src/Module/Media/Attachment/Browser.php:65 +#: src/Module/Media/Photo/Browser.php:76 +#: src/Module/Settings/Profile/Photo/Index.php:113 msgid "Upload" msgstr "Nahrát" -#: src/Module/Media/Attachment/Upload.php:97 +#: src/Module/Media/Attachment/Upload.php:83 msgid "Sorry, maybe your upload is bigger than the PHP configuration allows" msgstr "Omlouváme se, možná je váš soubor větší než je povolené maximum dle nastavení PHP" -#: src/Module/Media/Attachment/Upload.php:97 +#: src/Module/Media/Attachment/Upload.php:83 msgid "Or - did you try to upload an empty file?" msgstr "Nebo - nenahrával/a jste prázdný soubor?" -#: src/Module/Media/Attachment/Upload.php:104 +#: src/Module/Media/Attachment/Upload.php:90 #, php-format msgid "File exceeds size limit of %s" msgstr "Velikost souboru přesáhla limit %s" -#: src/Module/Media/Attachment/Upload.php:114 +#: src/Module/Media/Attachment/Upload.php:100 msgid "File upload failed." msgstr "Nahrání souboru se nezdařilo." -#: src/Module/Media/Photo/Upload.php:150 src/Module/Media/Photo/Upload.php:151 -#: src/Module/Profile/Photos.php:215 -#: src/Module/Settings/Profile/Photo/Index.php:67 +#: src/Module/Media/Photo/Upload.php:136 src/Module/Media/Photo/Upload.php:137 +#: src/Module/Profile/Photos.php:201 +#: src/Module/Settings/Profile/Photo/Index.php:53 msgid "Unable to process image." msgstr "Obrázek není možné zprocesovat" -#: src/Module/Media/Photo/Upload.php:176 src/Module/Profile/Photos.php:235 -#: src/Module/Settings/Profile/Photo/Index.php:94 +#: src/Module/Media/Photo/Upload.php:162 src/Module/Profile/Photos.php:221 +#: src/Module/Settings/Profile/Photo/Index.php:80 msgid "Image upload failed." msgstr "Nahrání obrázku selhalo." -#: src/Module/Moderation/BaseUsers.php:72 +#: src/Module/Moderation/BaseUsers.php:59 msgid "List of all users" msgstr "" -#: src/Module/Moderation/BaseUsers.php:77 +#: src/Module/Moderation/BaseUsers.php:64 msgid "Active" msgstr "" -#: src/Module/Moderation/BaseUsers.php:80 +#: src/Module/Moderation/BaseUsers.php:67 msgid "List of active accounts" msgstr "" -#: src/Module/Moderation/BaseUsers.php:88 +#: src/Module/Moderation/BaseUsers.php:75 msgid "List of pending registrations" msgstr "" -#: src/Module/Moderation/BaseUsers.php:96 +#: src/Module/Moderation/BaseUsers.php:83 msgid "List of blocked users" msgstr "" -#: src/Module/Moderation/BaseUsers.php:101 +#: src/Module/Moderation/BaseUsers.php:88 msgid "Deleted" msgstr "" -#: src/Module/Moderation/BaseUsers.php:104 +#: src/Module/Moderation/BaseUsers.php:91 msgid "List of pending user deletions" msgstr "" -#: src/Module/Moderation/BaseUsers.php:119 src/Module/Settings/Account.php:482 +#: src/Module/Moderation/BaseUsers.php:108 src/Module/Settings/Account.php:473 msgid "Normal Account Page" msgstr "Normální stránka účtu" -#: src/Module/Moderation/BaseUsers.php:120 src/Module/Settings/Account.php:489 +#: src/Module/Moderation/BaseUsers.php:109 src/Module/Settings/Account.php:480 msgid "Soapbox Page" msgstr "Propagační stránka" -#: src/Module/Moderation/BaseUsers.php:121 src/Module/Settings/Account.php:496 +#: src/Module/Moderation/BaseUsers.php:110 src/Module/Settings/Account.php:487 msgid "Public Group" msgstr "" -#: src/Module/Moderation/BaseUsers.php:122 src/Module/Settings/Account.php:503 +#: src/Module/Moderation/BaseUsers.php:111 src/Module/Settings/Account.php:494 msgid "Public Group - Restricted" msgstr "" -#: src/Module/Moderation/BaseUsers.php:123 src/Module/Settings/Account.php:510 +#: src/Module/Moderation/BaseUsers.php:112 src/Module/Settings/Account.php:501 msgid "Automatic Friend Page" msgstr "Stránka s automatickými přátely" -#: src/Module/Moderation/BaseUsers.php:124 +#: src/Module/Moderation/BaseUsers.php:113 msgid "Private Group" msgstr "" -#: src/Module/Moderation/BaseUsers.php:127 -#: src/Module/Moderation/Summary.php:53 src/Module/Settings/Account.php:453 +#: src/Module/Moderation/BaseUsers.php:116 +#: src/Module/Moderation/Summary.php:39 src/Module/Settings/Account.php:444 msgid "Personal Page" msgstr "Osobní stránka" -#: src/Module/Moderation/BaseUsers.php:128 -#: src/Module/Moderation/Summary.php:54 src/Module/Settings/Account.php:460 +#: src/Module/Moderation/BaseUsers.php:117 +#: src/Module/Moderation/Summary.php:40 src/Module/Settings/Account.php:451 msgid "Organisation Page" msgstr "Stránka organizace" -#: src/Module/Moderation/BaseUsers.php:129 -#: src/Module/Moderation/Summary.php:55 src/Module/Settings/Account.php:467 +#: src/Module/Moderation/BaseUsers.php:118 +#: src/Module/Moderation/Summary.php:41 src/Module/Settings/Account.php:458 msgid "News Page" msgstr "Zpravodajská stránka" -#: src/Module/Moderation/BaseUsers.php:130 -#: src/Module/Moderation/Summary.php:56 src/Module/Settings/Account.php:474 +#: src/Module/Moderation/BaseUsers.php:119 +#: src/Module/Moderation/Summary.php:42 src/Module/Settings/Account.php:465 msgid "Community Group" msgstr "" -#: src/Module/Moderation/Blocklist/Contact.php:70 +#: src/Module/Moderation/Blocklist/Contact.php:56 msgid "You can't block a local contact, please block the user instead" msgstr "" -#: src/Module/Moderation/Blocklist/Contact.php:89 +#: src/Module/Moderation/Blocklist/Contact.php:75 #, php-format msgid "%s contact unblocked" msgid_plural "%s contacts unblocked" @@ -8072,54 +8080,54 @@ msgstr[1] "%s kontakty odblokovány" msgstr[2] "%s kontaktu odblokováno" msgstr[3] "%s kontaktů odblokováno" -#: src/Module/Moderation/Blocklist/Contact.php:111 +#: src/Module/Moderation/Blocklist/Contact.php:97 msgid "Remote Contact Blocklist" msgstr "Blokované vzdálené kontakty" -#: src/Module/Moderation/Blocklist/Contact.php:112 +#: src/Module/Moderation/Blocklist/Contact.php:98 msgid "" "This page allows you to prevent any message from a remote contact to reach " "your node." msgstr "Tato stránka vám umožňuje zabránit jakýmkoliv zprávám ze vzdáleného kontaktu, aby se k vašemu serveru dostaly." -#: src/Module/Moderation/Blocklist/Contact.php:113 +#: src/Module/Moderation/Blocklist/Contact.php:99 msgid "Block Remote Contact" msgstr "Zablokovat vzdálený kontakt" -#: src/Module/Moderation/Blocklist/Contact.php:114 -#: src/Module/Moderation/Users/Active.php:135 -#: src/Module/Moderation/Users/Blocked.php:135 -#: src/Module/Moderation/Users/Index.php:149 -#: src/Module/Moderation/Users/Pending.php:98 +#: src/Module/Moderation/Blocklist/Contact.php:100 +#: src/Module/Moderation/Users/Active.php:121 +#: src/Module/Moderation/Users/Blocked.php:121 +#: src/Module/Moderation/Users/Index.php:135 +#: src/Module/Moderation/Users/Pending.php:84 msgid "select all" msgstr "Vybrat vše" -#: src/Module/Moderation/Blocklist/Contact.php:115 +#: src/Module/Moderation/Blocklist/Contact.php:101 msgid "select none" msgstr "nevybrat žádný" -#: src/Module/Moderation/Blocklist/Contact.php:118 +#: src/Module/Moderation/Blocklist/Contact.php:104 msgid "No remote contact is blocked from this node." msgstr "Žádný vzdálený kontakt není na tomto serveru zablokován." -#: src/Module/Moderation/Blocklist/Contact.php:120 +#: src/Module/Moderation/Blocklist/Contact.php:106 msgid "Blocked Remote Contacts" msgstr "Zablokované vzdálené kontakty" -#: src/Module/Moderation/Blocklist/Contact.php:121 +#: src/Module/Moderation/Blocklist/Contact.php:107 msgid "Block New Remote Contact" msgstr "Zablokovat nový vzdálený kontakt" -#: src/Module/Moderation/Blocklist/Contact.php:122 -#: src/Module/Moderation/Reports.php:110 +#: src/Module/Moderation/Blocklist/Contact.php:108 +#: src/Module/Moderation/Reports.php:102 msgid "Photo" msgstr "Fotka" -#: src/Module/Moderation/Blocklist/Contact.php:122 +#: src/Module/Moderation/Blocklist/Contact.php:108 msgid "Reason" msgstr "Důvod" -#: src/Module/Moderation/Blocklist/Contact.php:128 +#: src/Module/Moderation/Blocklist/Contact.php:114 #, php-format msgid "%s total blocked contact" msgid_plural "%s total blocked contacts" @@ -8128,30 +8136,30 @@ msgstr[1] "Celkem %s zablokované kontakty" msgstr[2] "Celkem %s zablokovaného kontaktu" msgstr[3] "Celkem %s zablokovaných kontaktů" -#: src/Module/Moderation/Blocklist/Contact.php:131 +#: src/Module/Moderation/Blocklist/Contact.php:117 msgid "URL of the remote contact to block." msgstr "Adresa URL vzdáleného kontaktu k zablokování." -#: src/Module/Moderation/Blocklist/Contact.php:132 +#: src/Module/Moderation/Blocklist/Contact.php:118 msgid "Also purge contact" msgstr "" -#: src/Module/Moderation/Blocklist/Contact.php:132 +#: src/Module/Moderation/Blocklist/Contact.php:118 msgid "" "Removes all content related to this contact from the node. Keeps the contact" " record. This action cannot be undone." msgstr "" -#: src/Module/Moderation/Blocklist/Contact.php:133 -#: src/Module/Moderation/Blocklist/Server/Import.php:124 +#: src/Module/Moderation/Blocklist/Contact.php:119 +#: src/Module/Moderation/Blocklist/Server/Import.php:108 msgid "Block Reason" msgstr "Důvod blokace" -#: src/Module/Moderation/Blocklist/Server/Add.php:80 +#: src/Module/Moderation/Blocklist/Server/Add.php:66 msgid "Server domain pattern added to the blocklist." msgstr "" -#: src/Module/Moderation/Blocklist/Server/Add.php:88 +#: src/Module/Moderation/Blocklist/Server/Add.php:74 #, php-format msgid "%s server scheduled to be purged." msgid_plural "%s servers scheduled to be purged." @@ -8160,17 +8168,17 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: src/Module/Moderation/Blocklist/Server/Add.php:120 -#: src/Module/Moderation/Blocklist/Server/Import.php:117 +#: src/Module/Moderation/Blocklist/Server/Add.php:106 +#: src/Module/Moderation/Blocklist/Server/Import.php:101 msgid "← Return to the list" msgstr "" -#: src/Module/Moderation/Blocklist/Server/Add.php:122 +#: src/Module/Moderation/Blocklist/Server/Add.php:108 msgid "Block A New Server Domain Pattern" msgstr "" -#: src/Module/Moderation/Blocklist/Server/Add.php:123 -#: src/Module/Moderation/Blocklist/Server/Index.php:99 +#: src/Module/Moderation/Blocklist/Server/Add.php:109 +#: src/Module/Moderation/Blocklist/Server/Index.php:85 msgid "" "

The server domain pattern syntax is case-insensitive shell wildcard, comprising the following special characters:

\n" "
    \n" @@ -8179,30 +8187,30 @@ msgid "" "
" msgstr "" -#: src/Module/Moderation/Blocklist/Server/Add.php:128 -#: src/Module/Moderation/Blocklist/Server/Index.php:107 +#: src/Module/Moderation/Blocklist/Server/Add.php:114 +#: src/Module/Moderation/Blocklist/Server/Index.php:93 msgid "Check pattern" msgstr "" -#: src/Module/Moderation/Blocklist/Server/Add.php:129 +#: src/Module/Moderation/Blocklist/Server/Add.php:115 msgid "Matching known servers" msgstr "" -#: src/Module/Moderation/Blocklist/Server/Add.php:130 -#: src/Module/Settings/Server/Action.php:76 -#: src/Module/Settings/Server/Index.php:106 +#: src/Module/Moderation/Blocklist/Server/Add.php:116 +#: src/Module/Settings/Server/Action.php:62 +#: src/Module/Settings/Server/Index.php:92 msgid "Server Name" msgstr "" -#: src/Module/Moderation/Blocklist/Server/Add.php:131 +#: src/Module/Moderation/Blocklist/Server/Add.php:117 msgid "Server Domain" msgstr "" -#: src/Module/Moderation/Blocklist/Server/Add.php:132 +#: src/Module/Moderation/Blocklist/Server/Add.php:118 msgid "Known Contacts" msgstr "" -#: src/Module/Moderation/Blocklist/Server/Add.php:133 +#: src/Module/Moderation/Blocklist/Server/Add.php:119 #, php-format msgid "%d known server" msgid_plural "%d known servers" @@ -8211,27 +8219,27 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: src/Module/Moderation/Blocklist/Server/Add.php:134 +#: src/Module/Moderation/Blocklist/Server/Add.php:120 msgid "Add pattern to the blocklist" msgstr "" -#: src/Module/Moderation/Blocklist/Server/Add.php:136 -#: src/Module/Moderation/Blocklist/Server/Index.php:116 +#: src/Module/Moderation/Blocklist/Server/Add.php:122 +#: src/Module/Moderation/Blocklist/Server/Index.php:102 msgid "Server Domain Pattern" msgstr "" -#: src/Module/Moderation/Blocklist/Server/Add.php:136 -#: src/Module/Moderation/Blocklist/Server/Index.php:116 +#: src/Module/Moderation/Blocklist/Server/Add.php:122 +#: src/Module/Moderation/Blocklist/Server/Index.php:102 msgid "" "The domain pattern of the new server to add to the blocklist. Do not include" " the protocol." msgstr "" -#: src/Module/Moderation/Blocklist/Server/Add.php:137 +#: src/Module/Moderation/Blocklist/Server/Add.php:123 msgid "Purge server" msgstr "" -#: src/Module/Moderation/Blocklist/Server/Add.php:137 +#: src/Module/Moderation/Blocklist/Server/Add.php:123 msgid "" "Also purges all the locally stored content authored by the known contacts " "registered on that server. Keeps the contacts and the server records. This " @@ -8245,26 +8253,26 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: src/Module/Moderation/Blocklist/Server/Add.php:138 +#: src/Module/Moderation/Blocklist/Server/Add.php:124 msgid "Block reason" msgstr "Důvod zablokování" -#: src/Module/Moderation/Blocklist/Server/Add.php:138 +#: src/Module/Moderation/Blocklist/Server/Add.php:124 msgid "" "The reason why you blocked this server domain pattern. This reason will be " "shown publicly in the server information page." msgstr "" -#: src/Module/Moderation/Blocklist/Server/Import.php:74 -#: src/Module/Moderation/Blocklist/Server/Import.php:83 +#: src/Module/Moderation/Blocklist/Server/Import.php:60 +#: src/Module/Moderation/Blocklist/Server/Import.php:67 msgid "Error importing pattern file" msgstr "" -#: src/Module/Moderation/Blocklist/Server/Import.php:89 +#: src/Module/Moderation/Blocklist/Server/Import.php:74 msgid "Local blocklist replaced with the provided file." msgstr "" -#: src/Module/Moderation/Blocklist/Server/Import.php:93 +#: src/Module/Moderation/Blocklist/Server/Import.php:78 #, php-format msgid "%d pattern was added to the local blocklist." msgid_plural "%d patterns were added to the local blocklist." @@ -8273,42 +8281,42 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: src/Module/Moderation/Blocklist/Server/Import.php:95 +#: src/Module/Moderation/Blocklist/Server/Import.php:80 msgid "No pattern was added to the local blocklist." msgstr "" -#: src/Module/Moderation/Blocklist/Server/Import.php:119 +#: src/Module/Moderation/Blocklist/Server/Import.php:103 msgid "Import a Server Domain Pattern Blocklist" msgstr "" -#: src/Module/Moderation/Blocklist/Server/Import.php:120 +#: src/Module/Moderation/Blocklist/Server/Import.php:104 msgid "" "

This file can be downloaded from the /friendica path of any " "Friendica server.

" msgstr "" -#: src/Module/Moderation/Blocklist/Server/Import.php:121 -#: src/Module/Moderation/Blocklist/Server/Index.php:106 +#: src/Module/Moderation/Blocklist/Server/Import.php:105 +#: src/Module/Moderation/Blocklist/Server/Index.php:92 msgid "Upload file" msgstr "" -#: src/Module/Moderation/Blocklist/Server/Import.php:122 +#: src/Module/Moderation/Blocklist/Server/Import.php:106 msgid "Patterns to import" msgstr "" -#: src/Module/Moderation/Blocklist/Server/Import.php:123 +#: src/Module/Moderation/Blocklist/Server/Import.php:107 msgid "Domain Pattern" msgstr "" -#: src/Module/Moderation/Blocklist/Server/Import.php:125 +#: src/Module/Moderation/Blocklist/Server/Import.php:109 msgid "Import Mode" msgstr "" -#: src/Module/Moderation/Blocklist/Server/Import.php:126 +#: src/Module/Moderation/Blocklist/Server/Import.php:110 msgid "Import Patterns" msgstr "" -#: src/Module/Moderation/Blocklist/Server/Import.php:127 +#: src/Module/Moderation/Blocklist/Server/Import.php:111 #, php-format msgid "%d total pattern" msgid_plural "%d total patterns" @@ -8317,233 +8325,233 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: src/Module/Moderation/Blocklist/Server/Import.php:129 -#: src/Module/Moderation/Blocklist/Server/Index.php:115 +#: src/Module/Moderation/Blocklist/Server/Import.php:113 +#: src/Module/Moderation/Blocklist/Server/Index.php:101 msgid "Server domain pattern blocklist CSV file" msgstr "" -#: src/Module/Moderation/Blocklist/Server/Import.php:130 +#: src/Module/Moderation/Blocklist/Server/Import.php:114 msgid "Append" msgstr "" -#: src/Module/Moderation/Blocklist/Server/Import.php:130 +#: src/Module/Moderation/Blocklist/Server/Import.php:114 msgid "" "Imports patterns from the file that weren't already existing in the current " "blocklist." msgstr "" -#: src/Module/Moderation/Blocklist/Server/Import.php:131 +#: src/Module/Moderation/Blocklist/Server/Import.php:115 msgid "Replace" msgstr "" -#: src/Module/Moderation/Blocklist/Server/Import.php:131 +#: src/Module/Moderation/Blocklist/Server/Import.php:115 msgid "Replaces the current blocklist by the imported patterns." msgstr "" -#: src/Module/Moderation/Blocklist/Server/Index.php:86 -#: src/Module/Moderation/Blocklist/Server/Index.php:110 -#: src/Module/Settings/Channels.php:231 +#: src/Module/Moderation/Blocklist/Server/Index.php:72 +#: src/Module/Moderation/Blocklist/Server/Index.php:96 +#: src/Module/Settings/Channels.php:217 msgid "Blocked server domain pattern" msgstr "" -#: src/Module/Moderation/Blocklist/Server/Index.php:88 +#: src/Module/Moderation/Blocklist/Server/Index.php:74 msgid "Delete server domain pattern" msgstr "" -#: src/Module/Moderation/Blocklist/Server/Index.php:88 +#: src/Module/Moderation/Blocklist/Server/Index.php:74 msgid "Check to delete this entry from the blocklist" msgstr "Zaškrtnutím odstraníte tuto položku z blokovacího seznamu" -#: src/Module/Moderation/Blocklist/Server/Index.php:96 +#: src/Module/Moderation/Blocklist/Server/Index.php:82 msgid "Server Domain Pattern Blocklist" msgstr "" -#: src/Module/Moderation/Blocklist/Server/Index.php:97 +#: src/Module/Moderation/Blocklist/Server/Index.php:83 msgid "" "This page can be used to define a blocklist of server domain patterns from " "the federated network that are not allowed to interact with your node. For " "each domain pattern you should also provide the reason why you block it." msgstr "" -#: src/Module/Moderation/Blocklist/Server/Index.php:98 +#: src/Module/Moderation/Blocklist/Server/Index.php:84 msgid "" "The list of blocked server domain patterns will be made publically available" " on the /friendica page so that your users and " "people investigating communication problems can find the reason easily." msgstr "" -#: src/Module/Moderation/Blocklist/Server/Index.php:104 +#: src/Module/Moderation/Blocklist/Server/Index.php:90 msgid "Import server domain pattern blocklist" msgstr "" -#: src/Module/Moderation/Blocklist/Server/Index.php:105 +#: src/Module/Moderation/Blocklist/Server/Index.php:91 msgid "Add new entry to the blocklist" msgstr "" -#: src/Module/Moderation/Blocklist/Server/Index.php:108 +#: src/Module/Moderation/Blocklist/Server/Index.php:94 msgid "Save changes to the blocklist" msgstr "Uložit změny do blokovacího seznamu" -#: src/Module/Moderation/Blocklist/Server/Index.php:109 +#: src/Module/Moderation/Blocklist/Server/Index.php:95 msgid "Current Entries in the Blocklist" msgstr "Aktuální položky v bokovacím seznamu" -#: src/Module/Moderation/Blocklist/Server/Index.php:112 +#: src/Module/Moderation/Blocklist/Server/Index.php:98 msgid "Delete entry from the blocklist" msgstr "" -#: src/Module/Moderation/Blocklist/Server/Index.php:113 +#: src/Module/Moderation/Blocklist/Server/Index.php:99 msgid "Delete entry from the blocklist?" msgstr "" -#: src/Module/Moderation/Item/Delete.php:50 +#: src/Module/Moderation/Item/Delete.php:36 msgid "Item marked for deletion." msgstr "Položka označená ke smazání" -#: src/Module/Moderation/Item/Delete.php:63 +#: src/Module/Moderation/Item/Delete.php:49 msgid "Delete this Item" msgstr "Smazat tuto položku" -#: src/Module/Moderation/Item/Delete.php:64 +#: src/Module/Moderation/Item/Delete.php:50 msgid "" "On this page you can delete an item from your node. If the item is a top " "level posting, the entire thread will be deleted." msgstr "Na této stránce můžete smazat položku z vašeho serveru. Pokud je položkou příspěvek nejvyššího stupně, bude smazáno celé vlákno." -#: src/Module/Moderation/Item/Delete.php:65 +#: src/Module/Moderation/Item/Delete.php:51 msgid "" "You need to know the GUID of the item. You can find it e.g. by looking at " "the display URL. The last part of http://example.com/display/123456 is the " "GUID, here 123456." msgstr "Budete muset znát číslo GUID položky. Můžete jej najít např. v adrese URL. Poslední část adresy http://priklad.cz/display/123456 je GUID, v tomto případě 123456" -#: src/Module/Moderation/Item/Delete.php:67 +#: src/Module/Moderation/Item/Delete.php:53 msgid "GUID" msgstr "GUID" -#: src/Module/Moderation/Item/Delete.php:67 +#: src/Module/Moderation/Item/Delete.php:53 msgid "The GUID of the item you want to delete." msgstr "Číslo GUID položky, kterou chcete smazat" -#: src/Module/Moderation/Item/Source.php:77 +#: src/Module/Moderation/Item/Source.php:69 msgid "Item Id" msgstr "" -#: src/Module/Moderation/Item/Source.php:78 +#: src/Module/Moderation/Item/Source.php:70 msgid "Item URI" msgstr "" -#: src/Module/Moderation/Item/Source.php:80 +#: src/Module/Moderation/Item/Source.php:72 msgid "Terms" msgstr "" -#: src/Module/Moderation/Item/Source.php:81 +#: src/Module/Moderation/Item/Source.php:73 msgid "Tag" msgstr "" -#: src/Module/Moderation/Item/Source.php:82 -#: src/Module/Moderation/Users/Active.php:126 -#: src/Module/Moderation/Users/Blocked.php:126 -#: src/Module/Moderation/Users/Index.php:140 +#: src/Module/Moderation/Item/Source.php:74 +#: src/Module/Moderation/Users/Active.php:112 +#: src/Module/Moderation/Users/Blocked.php:112 +#: src/Module/Moderation/Users/Index.php:126 msgid "Type" msgstr "Typ" -#: src/Module/Moderation/Item/Source.php:83 +#: src/Module/Moderation/Item/Source.php:75 msgid "Term" msgstr "" -#: src/Module/Moderation/Item/Source.php:84 +#: src/Module/Moderation/Item/Source.php:76 msgid "URL" msgstr "" -#: src/Module/Moderation/Item/Source.php:86 +#: src/Module/Moderation/Item/Source.php:78 msgid "Implicit Mention" msgstr "" -#: src/Module/Moderation/Item/Source.php:88 +#: src/Module/Moderation/Item/Source.php:80 msgid "Item not found" msgstr "Položka nenalezena" -#: src/Module/Moderation/Item/Source.php:89 +#: src/Module/Moderation/Item/Source.php:81 msgid "No source recorded" msgstr "" -#: src/Module/Moderation/Item/Source.php:90 +#: src/Module/Moderation/Item/Source.php:82 msgid "" "Please make sure the debug.store_source config key is set in " "config/local.config.php for future items to have sources." msgstr "" -#: src/Module/Moderation/Item/Source.php:92 +#: src/Module/Moderation/Item/Source.php:84 msgid "Item Guid" msgstr "Číslo GUID položky" -#: src/Module/Moderation/Report/Create.php:95 +#: src/Module/Moderation/Report/Create.php:81 msgid "Contact not found or their server is already blocked on this node." msgstr "" -#: src/Module/Moderation/Report/Create.php:136 +#: src/Module/Moderation/Report/Create.php:122 msgid "Please login to access this page." msgstr "" -#: src/Module/Moderation/Report/Create.php:165 -#: src/Module/Moderation/Report/Create.php:180 -#: src/Module/Moderation/Report/Create.php:208 -#: src/Module/Moderation/Report/Create.php:260 -#: src/Module/Moderation/Report/Create.php:279 +#: src/Module/Moderation/Report/Create.php:151 +#: src/Module/Moderation/Report/Create.php:166 +#: src/Module/Moderation/Report/Create.php:194 +#: src/Module/Moderation/Report/Create.php:246 +#: src/Module/Moderation/Report/Create.php:265 msgid "Create Moderation Report" msgstr "" -#: src/Module/Moderation/Report/Create.php:166 +#: src/Module/Moderation/Report/Create.php:152 msgid "Pick Contact" msgstr "" -#: src/Module/Moderation/Report/Create.php:167 +#: src/Module/Moderation/Report/Create.php:153 msgid "" "Please enter below the contact address or profile URL you would like to " "create a moderation report about." msgstr "" -#: src/Module/Moderation/Report/Create.php:171 +#: src/Module/Moderation/Report/Create.php:157 msgid "Contact address/URL" msgstr "" -#: src/Module/Moderation/Report/Create.php:181 +#: src/Module/Moderation/Report/Create.php:167 msgid "Pick Category" msgstr "" -#: src/Module/Moderation/Report/Create.php:182 +#: src/Module/Moderation/Report/Create.php:168 msgid "Please pick below the category of your report." msgstr "" -#: src/Module/Moderation/Report/Create.php:186 -#: src/Module/Moderation/Report/Create.php:311 +#: src/Module/Moderation/Report/Create.php:172 +#: src/Module/Moderation/Report/Create.php:297 msgid "Spam" msgstr "" -#: src/Module/Moderation/Report/Create.php:186 +#: src/Module/Moderation/Report/Create.php:172 msgid "" "This contact is publishing many repeated/overly long posts/replies or " "advertising their product/websites in otherwise irrelevant conversations." msgstr "" -#: src/Module/Moderation/Report/Create.php:187 -#: src/Module/Moderation/Report/Create.php:312 +#: src/Module/Moderation/Report/Create.php:173 +#: src/Module/Moderation/Report/Create.php:298 msgid "Illegal Content" msgstr "" -#: src/Module/Moderation/Report/Create.php:187 +#: src/Module/Moderation/Report/Create.php:173 msgid "" "This contact is publishing content that is considered illegal in this node's" " hosting juridiction." msgstr "" -#: src/Module/Moderation/Report/Create.php:188 -#: src/Module/Moderation/Report/Create.php:313 +#: src/Module/Moderation/Report/Create.php:174 +#: src/Module/Moderation/Report/Create.php:299 msgid "Community Safety" msgstr "" -#: src/Module/Moderation/Report/Create.php:188 +#: src/Module/Moderation/Report/Create.php:174 msgid "" "This contact aggravated you or other people, by being provocative or " "insensitive, intentionally or not. This includes disclosing people's private" @@ -8551,12 +8559,12 @@ msgid "" "replies." msgstr "" -#: src/Module/Moderation/Report/Create.php:189 -#: src/Module/Moderation/Report/Create.php:314 +#: src/Module/Moderation/Report/Create.php:175 +#: src/Module/Moderation/Report/Create.php:300 msgid "Unwanted Content/Behavior" msgstr "" -#: src/Module/Moderation/Report/Create.php:189 +#: src/Module/Moderation/Report/Create.php:175 msgid "" "This contact has repeatedly published content irrelevant to the node's theme" " or is openly criticizing the node's administration/moderation without " @@ -8564,89 +8572,89 @@ msgid "" "nitpicking on a sensitive topic." msgstr "" -#: src/Module/Moderation/Report/Create.php:190 -#: src/Module/Moderation/Report/Create.php:315 +#: src/Module/Moderation/Report/Create.php:176 +#: src/Module/Moderation/Report/Create.php:301 msgid "Rules Violation" msgstr "" -#: src/Module/Moderation/Report/Create.php:190 +#: src/Module/Moderation/Report/Create.php:176 msgid "" "This contact violated one or more rules of this node. You will be able to " "pick which one(s) in the next step." msgstr "" -#: src/Module/Moderation/Report/Create.php:191 +#: src/Module/Moderation/Report/Create.php:177 msgid "" "Please elaborate below why you submitted this report. The more details you " "provide, the better your report can be handled." msgstr "" -#: src/Module/Moderation/Report/Create.php:193 +#: src/Module/Moderation/Report/Create.php:179 msgid "Additional Information" msgstr "" -#: src/Module/Moderation/Report/Create.php:193 +#: src/Module/Moderation/Report/Create.php:179 msgid "" "Please provide any additional information relevant to this particular " "report. You will be able to attach posts by this contact in the next step, " "but any context is welcome." msgstr "" -#: src/Module/Moderation/Report/Create.php:209 +#: src/Module/Moderation/Report/Create.php:195 msgid "Pick Rules" msgstr "" -#: src/Module/Moderation/Report/Create.php:210 +#: src/Module/Moderation/Report/Create.php:196 msgid "Please pick below the node rules you believe this contact violated." msgstr "" -#: src/Module/Moderation/Report/Create.php:261 +#: src/Module/Moderation/Report/Create.php:247 msgid "Pick Posts" msgstr "" -#: src/Module/Moderation/Report/Create.php:262 +#: src/Module/Moderation/Report/Create.php:248 msgid "Please optionally pick posts to attach to your report." msgstr "" -#: src/Module/Moderation/Report/Create.php:281 +#: src/Module/Moderation/Report/Create.php:267 msgid "Submit Report" msgstr "" -#: src/Module/Moderation/Report/Create.php:282 +#: src/Module/Moderation/Report/Create.php:268 msgid "Further Action" msgstr "" -#: src/Module/Moderation/Report/Create.php:283 +#: src/Module/Moderation/Report/Create.php:269 msgid "" "You can also perform one of the following action on the contact you " "reported:" msgstr "" -#: src/Module/Moderation/Report/Create.php:291 +#: src/Module/Moderation/Report/Create.php:277 msgid "Nothing" msgstr "" -#: src/Module/Moderation/Report/Create.php:292 +#: src/Module/Moderation/Report/Create.php:278 msgid "Collapse contact" msgstr "" -#: src/Module/Moderation/Report/Create.php:292 +#: src/Module/Moderation/Report/Create.php:278 msgid "" "Their posts and replies will keep appearing in your Network page but their " "content will be collapsed by default." msgstr "" -#: src/Module/Moderation/Report/Create.php:293 +#: src/Module/Moderation/Report/Create.php:279 msgid "" "Their posts won't appear in your Network page anymore, but their replies can" " appear in forum threads. They still can follow you." msgstr "" -#: src/Module/Moderation/Report/Create.php:294 +#: src/Module/Moderation/Report/Create.php:280 msgid "Block contact" msgstr "" -#: src/Module/Moderation/Report/Create.php:294 +#: src/Module/Moderation/Report/Create.php:280 msgid "" "Their posts won't appear in your Network page anymore, but their replies can" " appear in forum threads, with their content collapsed by default. They " @@ -8654,51 +8662,51 @@ msgid "" "means." msgstr "" -#: src/Module/Moderation/Report/Create.php:297 +#: src/Module/Moderation/Report/Create.php:283 msgid "Forward report" msgstr "" -#: src/Module/Moderation/Report/Create.php:297 +#: src/Module/Moderation/Report/Create.php:283 msgid "Would you ike to forward this report to the remote server?" msgstr "" -#: src/Module/Moderation/Report/Create.php:330 +#: src/Module/Moderation/Report/Create.php:316 msgid "1. Pick a contact" msgstr "" -#: src/Module/Moderation/Report/Create.php:331 +#: src/Module/Moderation/Report/Create.php:317 msgid "2. Pick a category" msgstr "" -#: src/Module/Moderation/Report/Create.php:332 +#: src/Module/Moderation/Report/Create.php:318 msgid "2a. Pick rules" msgstr "" -#: src/Module/Moderation/Report/Create.php:333 +#: src/Module/Moderation/Report/Create.php:319 msgid "2b. Add comment" msgstr "" -#: src/Module/Moderation/Report/Create.php:334 +#: src/Module/Moderation/Report/Create.php:320 msgid "3. Pick posts" msgstr "" -#: src/Module/Moderation/Reports.php:105 +#: src/Module/Moderation/Reports.php:97 msgid "List of reports" msgstr "" -#: src/Module/Moderation/Reports.php:106 +#: src/Module/Moderation/Reports.php:98 msgid "This page display reports created by our or remote users." msgstr "" -#: src/Module/Moderation/Reports.php:107 +#: src/Module/Moderation/Reports.php:99 msgid "No report exists at this node." msgstr "" -#: src/Module/Moderation/Reports.php:110 +#: src/Module/Moderation/Reports.php:102 msgid "Category" msgstr "" -#: src/Module/Moderation/Reports.php:114 +#: src/Module/Moderation/Reports.php:106 #, php-format msgid "%s total report" msgid_plural "%s total reports" @@ -8707,24 +8715,24 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: src/Module/Moderation/Reports.php:117 +#: src/Module/Moderation/Reports.php:109 msgid "URL of the reported contact." msgstr "" -#: src/Module/Moderation/Summary.php:57 src/Module/Settings/Account.php:431 +#: src/Module/Moderation/Summary.php:43 src/Module/Settings/Account.php:422 msgid "Channel Relay" msgstr "" -#: src/Module/Moderation/Summary.php:77 +#: src/Module/Moderation/Summary.php:63 msgid "Registered users" msgstr "Registrovaní uživatelé" -#: src/Module/Moderation/Summary.php:79 +#: src/Module/Moderation/Summary.php:65 msgid "Pending registrations" msgstr "Čekající registrace" -#: src/Module/Moderation/Users/Active.php:43 -#: src/Module/Moderation/Users/Index.php:43 +#: src/Module/Moderation/Users/Active.php:29 +#: src/Module/Moderation/Users/Index.php:29 #, php-format msgid "%s user blocked" msgid_plural "%s users blocked" @@ -8733,18 +8741,18 @@ msgstr[1] "%s uživatelé blokování" msgstr[2] "%s uživatele blokováno" msgstr[3] "%s uživatelů blokováno" -#: src/Module/Moderation/Users/Active.php:51 -#: src/Module/Moderation/Users/Active.php:85 -#: src/Module/Moderation/Users/Blocked.php:51 -#: src/Module/Moderation/Users/Blocked.php:85 -#: src/Module/Moderation/Users/Index.php:58 -#: src/Module/Moderation/Users/Index.php:92 +#: src/Module/Moderation/Users/Active.php:37 +#: src/Module/Moderation/Users/Active.php:71 +#: src/Module/Moderation/Users/Blocked.php:37 +#: src/Module/Moderation/Users/Blocked.php:71 +#: src/Module/Moderation/Users/Index.php:44 +#: src/Module/Moderation/Users/Index.php:78 msgid "You can't remove yourself" msgstr "Nemůžete odstranit sebe sama" -#: src/Module/Moderation/Users/Active.php:55 -#: src/Module/Moderation/Users/Blocked.php:55 -#: src/Module/Moderation/Users/Index.php:62 +#: src/Module/Moderation/Users/Active.php:41 +#: src/Module/Moderation/Users/Blocked.php:41 +#: src/Module/Moderation/Users/Index.php:48 #, php-format msgid "%s user deleted" msgid_plural "%s users deleted" @@ -8753,88 +8761,88 @@ msgstr[1] "%s uživatelů smazáno" msgstr[2] "%s uživatele smazáno" msgstr[3] "%s uživatelů smazáno" -#: src/Module/Moderation/Users/Active.php:83 -#: src/Module/Moderation/Users/Blocked.php:83 -#: src/Module/Moderation/Users/Index.php:90 +#: src/Module/Moderation/Users/Active.php:69 +#: src/Module/Moderation/Users/Blocked.php:69 +#: src/Module/Moderation/Users/Index.php:76 #, php-format msgid "User \"%s\" deleted" msgstr "Uživatel „%s“ smazán" -#: src/Module/Moderation/Users/Active.php:93 -#: src/Module/Moderation/Users/Index.php:100 +#: src/Module/Moderation/Users/Active.php:79 +#: src/Module/Moderation/Users/Index.php:86 #, php-format msgid "User \"%s\" blocked" msgstr "Uživatel „%s“ zablokován" -#: src/Module/Moderation/Users/Active.php:126 -#: src/Module/Moderation/Users/Blocked.php:126 -#: src/Module/Moderation/Users/Deleted.php:83 -#: src/Module/Moderation/Users/Index.php:140 -#: src/Module/Moderation/Users/Index.php:160 +#: src/Module/Moderation/Users/Active.php:112 +#: src/Module/Moderation/Users/Blocked.php:112 +#: src/Module/Moderation/Users/Deleted.php:69 +#: src/Module/Moderation/Users/Index.php:126 +#: src/Module/Moderation/Users/Index.php:146 msgid "Register date" msgstr "Datum registrace" -#: src/Module/Moderation/Users/Active.php:126 -#: src/Module/Moderation/Users/Blocked.php:126 -#: src/Module/Moderation/Users/Deleted.php:83 -#: src/Module/Moderation/Users/Index.php:140 -#: src/Module/Moderation/Users/Index.php:160 +#: src/Module/Moderation/Users/Active.php:112 +#: src/Module/Moderation/Users/Blocked.php:112 +#: src/Module/Moderation/Users/Deleted.php:69 +#: src/Module/Moderation/Users/Index.php:126 +#: src/Module/Moderation/Users/Index.php:146 msgid "Last login" msgstr "Datum posledního přihlášení" -#: src/Module/Moderation/Users/Active.php:126 -#: src/Module/Moderation/Users/Blocked.php:126 -#: src/Module/Moderation/Users/Deleted.php:83 -#: src/Module/Moderation/Users/Index.php:140 -#: src/Module/Moderation/Users/Index.php:160 +#: src/Module/Moderation/Users/Active.php:112 +#: src/Module/Moderation/Users/Blocked.php:112 +#: src/Module/Moderation/Users/Deleted.php:69 +#: src/Module/Moderation/Users/Index.php:126 +#: src/Module/Moderation/Users/Index.php:146 msgid "Last public item" msgstr "" -#: src/Module/Moderation/Users/Active.php:134 +#: src/Module/Moderation/Users/Active.php:120 msgid "Active Accounts" msgstr "" -#: src/Module/Moderation/Users/Active.php:138 -#: src/Module/Moderation/Users/Blocked.php:137 -#: src/Module/Moderation/Users/Index.php:153 +#: src/Module/Moderation/Users/Active.php:124 +#: src/Module/Moderation/Users/Blocked.php:123 +#: src/Module/Moderation/Users/Index.php:139 msgid "User blocked" msgstr "Uživatel zablokován" -#: src/Module/Moderation/Users/Active.php:139 -#: src/Module/Moderation/Users/Blocked.php:139 -#: src/Module/Moderation/Users/Index.php:155 +#: src/Module/Moderation/Users/Active.php:125 +#: src/Module/Moderation/Users/Blocked.php:125 +#: src/Module/Moderation/Users/Index.php:141 msgid "Site admin" msgstr "Administrátor webu" -#: src/Module/Moderation/Users/Active.php:140 -#: src/Module/Moderation/Users/Blocked.php:140 -#: src/Module/Moderation/Users/Index.php:156 +#: src/Module/Moderation/Users/Active.php:126 +#: src/Module/Moderation/Users/Blocked.php:126 +#: src/Module/Moderation/Users/Index.php:142 msgid "Account expired" msgstr "Účtu vypršela platnost" -#: src/Module/Moderation/Users/Active.php:141 -#: src/Module/Moderation/Users/Index.php:159 +#: src/Module/Moderation/Users/Active.php:127 +#: src/Module/Moderation/Users/Index.php:145 msgid "Create a new user" msgstr "" -#: src/Module/Moderation/Users/Active.php:147 -#: src/Module/Moderation/Users/Blocked.php:146 -#: src/Module/Moderation/Users/Index.php:165 +#: src/Module/Moderation/Users/Active.php:133 +#: src/Module/Moderation/Users/Blocked.php:132 +#: src/Module/Moderation/Users/Index.php:151 msgid "" "Selected users will be deleted!\\n\\nEverything these users had posted on " "this site will be permanently deleted!\\n\\nAre you sure?" msgstr "Vybraní uživatelé budou smazáni!\\n\\n Vše, co tito uživatelé na těchto stránkách vytvořili, bude trvale odstraněno!\\n\\nOpravdu chcete pokračovat?" -#: src/Module/Moderation/Users/Active.php:148 -#: src/Module/Moderation/Users/Blocked.php:147 -#: src/Module/Moderation/Users/Index.php:166 +#: src/Module/Moderation/Users/Active.php:134 +#: src/Module/Moderation/Users/Blocked.php:133 +#: src/Module/Moderation/Users/Index.php:152 msgid "" "The user {0} will be deleted!\\n\\nEverything this user has posted on this " "site will be permanently deleted!\\n\\nAre you sure?" msgstr "Uživatel {0} bude smazán!\\n\\n Vše, co tento uživatel na těchto stránkách vytvořil, bude trvale odstraněno!\\n\\n Opravdu chcete pokračovat?" -#: src/Module/Moderation/Users/Blocked.php:43 -#: src/Module/Moderation/Users/Index.php:50 +#: src/Module/Moderation/Users/Blocked.php:29 +#: src/Module/Moderation/Users/Index.php:36 #, php-format msgid "%s user unblocked" msgid_plural "%s users unblocked" @@ -8843,54 +8851,54 @@ msgstr[1] "%s uživatelé odblokováni" msgstr[2] "%s uživatele odblokováno" msgstr[3] "%s uživatelů odblokováno" -#: src/Module/Moderation/Users/Blocked.php:92 -#: src/Module/Moderation/Users/Index.php:106 +#: src/Module/Moderation/Users/Blocked.php:78 +#: src/Module/Moderation/Users/Index.php:92 #, php-format msgid "User \"%s\" unblocked" msgstr "Uživatel „%s“ odblokován" -#: src/Module/Moderation/Users/Blocked.php:134 +#: src/Module/Moderation/Users/Blocked.php:120 msgid "Blocked Users" msgstr "" -#: src/Module/Moderation/Users/Create.php:62 +#: src/Module/Moderation/Users/Create.php:48 msgid "New User" msgstr "Nový uživatel" -#: src/Module/Moderation/Users/Create.php:63 +#: src/Module/Moderation/Users/Create.php:49 msgid "Add User" msgstr "Přidat uživatele" -#: src/Module/Moderation/Users/Create.php:70 +#: src/Module/Moderation/Users/Create.php:56 msgid "Name of the new user." msgstr "Jméno nového uživatele." -#: src/Module/Moderation/Users/Create.php:71 +#: src/Module/Moderation/Users/Create.php:57 msgid "Nickname" msgstr "Přezdívka" -#: src/Module/Moderation/Users/Create.php:71 +#: src/Module/Moderation/Users/Create.php:57 msgid "Nickname of the new user." msgstr "Přezdívka nového uživatele." -#: src/Module/Moderation/Users/Create.php:72 +#: src/Module/Moderation/Users/Create.php:58 msgid "Email address of the new user." msgstr "Emailová adresa nového uživatele." -#: src/Module/Moderation/Users/Deleted.php:81 +#: src/Module/Moderation/Users/Deleted.php:67 msgid "Users awaiting permanent deletion" msgstr "" -#: src/Module/Moderation/Users/Deleted.php:83 -#: src/Module/Moderation/Users/Index.php:160 +#: src/Module/Moderation/Users/Deleted.php:69 +#: src/Module/Moderation/Users/Index.php:146 msgid "Permanent deletion" msgstr "Trvalé smazání" -#: src/Module/Moderation/Users/Index.php:150 +#: src/Module/Moderation/Users/Index.php:136 msgid "User waiting for permanent deletion" msgstr "Uživatel čekající na trvalé smazání" -#: src/Module/Moderation/Users/Pending.php:44 +#: src/Module/Moderation/Users/Pending.php:30 #, php-format msgid "%s user approved" msgid_plural "%s users approved" @@ -8899,7 +8907,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: src/Module/Moderation/Users/Pending.php:51 +#: src/Module/Moderation/Users/Pending.php:37 #, php-format msgid "%s registration revoked" msgid_plural "%s registrations revoked" @@ -8908,420 +8916,406 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: src/Module/Moderation/Users/Pending.php:76 +#: src/Module/Moderation/Users/Pending.php:62 msgid "Account approved." msgstr "Účet schválen." -#: src/Module/Moderation/Users/Pending.php:82 +#: src/Module/Moderation/Users/Pending.php:68 msgid "Registration revoked" msgstr "" -#: src/Module/Moderation/Users/Pending.php:97 +#: src/Module/Moderation/Users/Pending.php:83 msgid "User registrations awaiting review" msgstr "" -#: src/Module/Moderation/Users/Pending.php:99 +#: src/Module/Moderation/Users/Pending.php:85 msgid "Request date" msgstr "Datum požadavku" -#: src/Module/Moderation/Users/Pending.php:100 +#: src/Module/Moderation/Users/Pending.php:86 msgid "No registrations." msgstr "Žádné registrace." -#: src/Module/Moderation/Users/Pending.php:101 +#: src/Module/Moderation/Users/Pending.php:87 msgid "Note from the user" msgstr "Poznámka od uživatele" -#: src/Module/Moderation/Users/Pending.php:103 +#: src/Module/Moderation/Users/Pending.php:89 msgid "Deny" msgstr "Odmítnout" -#: src/Module/Notifications/Introductions.php:99 +#: src/Module/Notifications/Introductions.php:91 msgid "Show Ignored Requests" msgstr "Zobrazit ignorované požadavky" -#: src/Module/Notifications/Introductions.php:99 +#: src/Module/Notifications/Introductions.php:91 msgid "Hide Ignored Requests" msgstr "Skrýt ignorované požadavky" -#: src/Module/Notifications/Introductions.php:115 -#: src/Module/Notifications/Introductions.php:178 +#: src/Module/Notifications/Introductions.php:107 +#: src/Module/Notifications/Introductions.php:170 msgid "Notification type:" msgstr "Typ oznámení:" -#: src/Module/Notifications/Introductions.php:118 +#: src/Module/Notifications/Introductions.php:110 msgid "Suggested by:" msgstr "Navrhl/a:" -#: src/Module/Notifications/Introductions.php:143 +#: src/Module/Notifications/Introductions.php:135 msgid "Claims to be known to you: " msgstr "Vaši údajní známí: " -#: src/Module/Notifications/Introductions.php:152 +#: src/Module/Notifications/Introductions.php:144 msgid "Shall your connection be bidirectional or not?" msgstr "Má vaše spojení být obousměrné, nebo ne?" -#: src/Module/Notifications/Introductions.php:153 +#: src/Module/Notifications/Introductions.php:145 #, php-format msgid "" "Accepting %s as a friend allows %s to subscribe to your posts, and you will " "also receive updates from them in your news feed." msgstr "Přijetí uživatele %s jako přítele dovolí uživateli %s odebírat Vaše příspěvky a Vy budete také přijímat aktualizace od něj ve Vašem kanále." -#: src/Module/Notifications/Introductions.php:154 +#: src/Module/Notifications/Introductions.php:146 #, php-format msgid "" "Accepting %s as a subscriber allows them to subscribe to your posts, but you" " will not receive updates from them in your news feed." msgstr "Přijetí uživatele %s jako odběratele mu dovolí odebírat Vaše příspěvky, ale nebudete od něj přijímat aktualizace ve Vašem kanále." -#: src/Module/Notifications/Introductions.php:156 +#: src/Module/Notifications/Introductions.php:148 msgid "Friend" msgstr "Přítel" -#: src/Module/Notifications/Introductions.php:157 +#: src/Module/Notifications/Introductions.php:149 msgid "Subscriber" msgstr "Odběratel" -#: src/Module/Notifications/Introductions.php:216 +#: src/Module/Notifications/Introductions.php:208 msgid "No introductions." msgstr "Žádné představení." -#: src/Module/Notifications/Introductions.php:217 -#: src/Module/Notifications/Notifications.php:135 +#: src/Module/Notifications/Introductions.php:209 +#: src/Module/Notifications/Notifications.php:127 #, php-format msgid "No more %s notifications." msgstr "Žádná další %s oznámení" -#: src/Module/Notifications/Notification.php:135 +#: src/Module/Notifications/Notification.php:121 msgid "You must be logged in to show this page." msgstr "" -#: src/Module/Notifications/Notifications.php:66 +#: src/Module/Notifications/Notifications.php:52 msgid "Network Notifications" msgstr "Síťová oznámení" -#: src/Module/Notifications/Notifications.php:72 +#: src/Module/Notifications/Notifications.php:58 msgid "System Notifications" msgstr "Systémová oznámení" -#: src/Module/Notifications/Notifications.php:78 +#: src/Module/Notifications/Notifications.php:64 msgid "Personal Notifications" msgstr "Osobní oznámení" -#: src/Module/Notifications/Notifications.php:84 +#: src/Module/Notifications/Notifications.php:70 msgid "Home Notifications" msgstr "Oznámení na domovské stránce" -#: src/Module/Notifications/Notifications.php:140 +#: src/Module/Notifications/Notifications.php:132 msgid "Show unread" msgstr "Zobrazit nepřečtené" -#: src/Module/Notifications/Ping.php:220 +#: src/Module/Notifications/Ping.php:206 msgid "{0} requested registration" msgstr "{0} požaduje registraci" -#: src/Module/Notifications/Ping.php:229 +#: src/Module/Notifications/Ping.php:215 #, php-format msgid "{0} and %d others requested registration" msgstr "" -#: src/Module/OAuth/Acknowledge.php:51 +#: src/Module/OAuth/Acknowledge.php:37 msgid "Authorize application connection" msgstr "Povolit připojení aplikacím" -#: src/Module/OAuth/Acknowledge.php:53 +#: src/Module/OAuth/Acknowledge.php:39 msgid "" "Do you want to authorize this application to access your posts and contacts," " and/or create new posts for you?" msgstr "Chcete umožnit této aplikaci přístup k vašim příspěvkům a kontaktům a/nebo k vytváření Vašich nových příspěvků?" -#: src/Module/OAuth/Authorize.php:54 +#: src/Module/OAuth/Authorize.php:40 msgid "Unsupported or missing response type" msgstr "" -#: src/Module/OAuth/Authorize.php:59 src/Module/OAuth/Token.php:75 +#: src/Module/OAuth/Authorize.php:45 src/Module/OAuth/Token.php:61 msgid "Incomplete request data" msgstr "" -#: src/Module/OAuth/Authorize.php:106 +#: src/Module/OAuth/Authorize.php:92 #, php-format msgid "" "Please copy the following authentication code into your application and " "close this window: %s" msgstr "" -#: src/Module/OAuth/Token.php:80 +#: src/Module/OAuth/Token.php:66 msgid "Invalid data or unknown client" msgstr "" -#: src/Module/OAuth/Token.php:105 +#: src/Module/OAuth/Token.php:91 msgid "Unsupported or missing grant type" msgstr "" -#: src/Module/OStatus/Repair.php:83 -msgid "Resubscribing to OStatus contacts" -msgstr "Znovu Vás registruji ke kontaktům OStatus" - -#: src/Module/OStatus/Repair.php:84 src/Module/OStatus/Subscribe.php:160 -msgid "Keep this window open until done." -msgstr "Toto okno nechte otevřené až do konce." - -#: src/Module/OStatus/Repair.php:85 -msgid "✔ Done" -msgstr "" - -#: src/Module/OStatus/Repair.php:86 -msgid "No OStatus contacts to resubscribe to." -msgstr "" - -#: src/Module/OStatus/Subscribe.php:72 +#: src/Module/OStatus/Subscribe.php:58 msgid "Subscribing to contacts" msgstr "" -#: src/Module/OStatus/Subscribe.php:81 +#: src/Module/OStatus/Subscribe.php:67 msgid "No contact provided." msgstr "Nebyl poskytnut žádný kontakt." -#: src/Module/OStatus/Subscribe.php:87 +#: src/Module/OStatus/Subscribe.php:73 msgid "Couldn't fetch information for contact." msgstr "Nelze načíst informace pro kontakt." -#: src/Module/OStatus/Subscribe.php:98 +#: src/Module/OStatus/Subscribe.php:84 msgid "Couldn't fetch friends for contact." msgstr "Nelze načíst přátele pro kontakt." -#: src/Module/OStatus/Subscribe.php:104 src/Module/OStatus/Subscribe.php:115 +#: src/Module/OStatus/Subscribe.php:90 src/Module/OStatus/Subscribe.php:101 msgid "Couldn't fetch following contacts." msgstr "" -#: src/Module/OStatus/Subscribe.php:110 +#: src/Module/OStatus/Subscribe.php:96 msgid "Couldn't fetch remote profile." msgstr "" -#: src/Module/OStatus/Subscribe.php:120 +#: src/Module/OStatus/Subscribe.php:106 msgid "Unsupported network" msgstr "" -#: src/Module/OStatus/Subscribe.php:136 +#: src/Module/OStatus/Subscribe.php:122 msgid "Done" msgstr "Hotovo" -#: src/Module/OStatus/Subscribe.php:150 +#: src/Module/OStatus/Subscribe.php:136 msgid "success" msgstr "úspěch" -#: src/Module/OStatus/Subscribe.php:152 +#: src/Module/OStatus/Subscribe.php:138 msgid "failed" msgstr "selhalo" -#: src/Module/OStatus/Subscribe.php:155 +#: src/Module/OStatus/Subscribe.php:141 msgid "ignored" msgstr "ignorován" -#: src/Module/Photo.php:124 +#: src/Module/OStatus/Subscribe.php:146 +msgid "Keep this window open until done." +msgstr "Toto okno nechte otevřené až do konce." + +#: src/Module/Photo.php:108 msgid "The Photo is not available." msgstr "" -#: src/Module/Photo.php:149 +#: src/Module/Photo.php:133 #, php-format msgid "The Photo with id %s is not available." msgstr "" -#: src/Module/Photo.php:190 +#: src/Module/Photo.php:174 #, php-format msgid "Invalid external resource with url %s." msgstr "" -#: src/Module/Photo.php:192 +#: src/Module/Photo.php:176 #, php-format msgid "Invalid photo with id %s." msgstr "Neplatná fotka s ID %s." -#: src/Module/Post/Edit.php:82 src/Module/Post/Edit.php:96 +#: src/Module/Post/Edit.php:68 src/Module/Post/Edit.php:82 msgid "Post not found." msgstr "" -#: src/Module/Post/Edit.php:102 +#: src/Module/Post/Edit.php:88 msgid "Edit post" msgstr "Upravit příspěvek" -#: src/Module/Post/Edit.php:136 +#: src/Module/Post/Edit.php:122 msgid "web link" msgstr "webový odkaz" -#: src/Module/Post/Edit.php:137 +#: src/Module/Post/Edit.php:123 msgid "Insert video link" msgstr "Vložit odkaz na video" -#: src/Module/Post/Edit.php:138 +#: src/Module/Post/Edit.php:124 msgid "video link" msgstr "odkaz na video" -#: src/Module/Post/Edit.php:139 +#: src/Module/Post/Edit.php:125 msgid "Insert audio link" msgstr "Vložit odkaz na audio" -#: src/Module/Post/Edit.php:140 +#: src/Module/Post/Edit.php:126 msgid "audio link" msgstr "odkaz na audio" -#: src/Module/Post/Tag/Remove.php:106 +#: src/Module/Post/Tag/Remove.php:92 msgid "Remove Item Tag" msgstr "Odebrat štítek položky" -#: src/Module/Post/Tag/Remove.php:107 +#: src/Module/Post/Tag/Remove.php:93 msgid "Select a tag to remove: " msgstr "Vyberte štítek k odebrání: " -#: src/Module/Post/Tag/Remove.php:108 -#: src/Module/Settings/TwoFactor/Trusted.php:147 +#: src/Module/Post/Tag/Remove.php:94 +#: src/Module/Settings/TwoFactor/Trusted.php:133 msgid "Remove" msgstr "Odstranit" -#: src/Module/Privacy/PermissionTooltip.php:71 +#: src/Module/Privacy/PermissionTooltip.php:57 #, php-format msgid "Wrong type \"%s\", expected one of: %s" msgstr "" -#: src/Module/Privacy/PermissionTooltip.php:101 +#: src/Module/Privacy/PermissionTooltip.php:87 msgid "Model not found" msgstr "" -#: src/Module/Privacy/PermissionTooltip.php:118 +#: src/Module/Privacy/PermissionTooltip.php:104 msgid "Unlisted" msgstr "" -#: src/Module/Privacy/PermissionTooltip.php:124 +#: src/Module/Privacy/PermissionTooltip.php:110 msgid "Remote privacy information not available." msgstr "Vzdálené informace o soukromí nejsou k dispozici." -#: src/Module/Privacy/PermissionTooltip.php:131 +#: src/Module/Privacy/PermissionTooltip.php:117 msgid "Visible to:" msgstr "Viditelné pro:" -#: src/Module/Privacy/PermissionTooltip.php:133 +#: src/Module/Privacy/PermissionTooltip.php:119 msgid "CC:" msgstr "" -#: src/Module/Privacy/PermissionTooltip.php:134 +#: src/Module/Privacy/PermissionTooltip.php:120 msgid "BCC:" msgstr "" -#: src/Module/Privacy/PermissionTooltip.php:135 +#: src/Module/Privacy/PermissionTooltip.php:121 msgid "Audience:" msgstr "" -#: src/Module/Privacy/PermissionTooltip.php:136 +#: src/Module/Privacy/PermissionTooltip.php:122 msgid "Attributed To:" msgstr "" -#: src/Module/Privacy/PermissionTooltip.php:234 +#: src/Module/Privacy/PermissionTooltip.php:220 #, php-format msgid "Collection (%s)" msgstr "" -#: src/Module/Privacy/PermissionTooltip.php:238 +#: src/Module/Privacy/PermissionTooltip.php:224 #, php-format msgid "Followers (%s)" msgstr "Sledující (%s)" -#: src/Module/Privacy/PermissionTooltip.php:255 +#: src/Module/Privacy/PermissionTooltip.php:241 #, php-format msgid "%d more" msgstr "" -#: src/Module/Profile/Contacts.php:159 +#: src/Module/Profile/Contacts.php:145 msgid "No contacts." msgstr "Žá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:1095 -#: src/Protocol/OStatus.php:1011 -#, 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:1099 src/Protocol/OStatus.php:1016 +#: src/Module/Profile/Conversations.php:92 src/Module/Profile/Profile.php:339 +#: src/Protocol/Feed.php:1097 #, 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:1102 src/Protocol/OStatus.php:1020 +#: src/Module/Profile/Conversations.php:93 src/Module/Profile/Profile.php:340 +#: src/Protocol/Feed.php:1100 #, 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:192 -#: src/Module/Settings/Profile/Photo/Index.php:58 +#: src/Module/Profile/Conversations.php:94 src/Module/Profile/Profile.php:341 +#: src/Protocol/Feed.php:1093 +#, php-format +msgid "%s's timeline" +msgstr "Časová osa uživatele %s" + +#: src/Module/Profile/Photos.php:150 src/Module/Profile/Photos.php:153 +#: src/Module/Profile/Photos.php:178 +#: src/Module/Settings/Profile/Photo/Index.php:44 #, php-format msgid "Image exceeds size limit of %s" msgstr "Velikost obrázku překročila limit %s" -#: src/Module/Profile/Photos.php:170 +#: src/Module/Profile/Photos.php:156 msgid "Image upload didn't complete, please try again" msgstr "Nahrávání obrázku nebylo dokončeno, zkuste to prosím znovu" -#: src/Module/Profile/Photos.php:173 +#: src/Module/Profile/Photos.php:159 msgid "Image file is missing" msgstr "Chybí soubor obrázku" -#: src/Module/Profile/Photos.php:178 +#: src/Module/Profile/Photos.php:164 msgid "" "Server can't accept new file upload at this time, please contact your " "administrator" msgstr "Server v tuto chvíli nemůže akceptovat nové nahrané soubory, prosím kontaktujte vašeho administrátora" -#: src/Module/Profile/Photos.php:200 +#: src/Module/Profile/Photos.php:186 msgid "Image file is empty." msgstr "Soubor obrázku je prázdný." -#: src/Module/Profile/Photos.php:352 +#: src/Module/Profile/Photos.php:338 msgid "View Album" msgstr "Zobrazit album" -#: src/Module/Profile/Profile.php:112 src/Module/Profile/Restricted.php:50 +#: src/Module/Profile/Profile.php:100 src/Module/Profile/Restricted.php:36 msgid "Profile not found." msgstr "Profil nenalezen." -#: src/Module/Profile/Profile.php:158 +#: src/Module/Profile/Profile.php:146 #, php-format msgid "" "You're currently viewing your profile as %s Cancel" msgstr "" -#: src/Module/Profile/Profile.php:167 +#: src/Module/Profile/Profile.php:155 msgid "Full Name:" msgstr "Celé jméno:" -#: src/Module/Profile/Profile.php:172 +#: src/Module/Profile/Profile.php:160 msgid "Member since:" msgstr "Členem od:" -#: src/Module/Profile/Profile.php:178 +#: src/Module/Profile/Profile.php:166 msgid "j F, Y" msgstr "j F, Y" -#: src/Module/Profile/Profile.php:179 +#: src/Module/Profile/Profile.php:167 msgid "j F" msgstr "j F" -#: src/Module/Profile/Profile.php:187 src/Util/Temporal.php:168 +#: src/Module/Profile/Profile.php:175 src/Util/Temporal.php:154 msgid "Birthday:" msgstr "Narozeniny:" -#: src/Module/Profile/Profile.php:190 -#: src/Module/Settings/Profile/Index.php:291 src/Util/Temporal.php:170 +#: src/Module/Profile/Profile.php:178 +#: src/Module/Settings/Profile/Index.php:282 src/Util/Temporal.php:156 msgid "Age: " msgstr "Věk: " -#: src/Module/Profile/Profile.php:190 -#: src/Module/Settings/Profile/Index.php:291 src/Util/Temporal.php:170 +#: src/Module/Profile/Profile.php:178 +#: src/Module/Settings/Profile/Index.php:282 src/Util/Temporal.php:156 #, php-format msgid "%d year old" msgid_plural "%d years old" @@ -9330,46 +9324,46 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: src/Module/Profile/Profile.php:195 -#: src/Module/Settings/Profile/Index.php:284 +#: src/Module/Profile/Profile.php:183 +#: src/Module/Settings/Profile/Index.php:275 msgid "Description:" msgstr "Popis:" -#: src/Module/Profile/Profile.php:261 +#: src/Module/Profile/Profile.php:249 msgid "Groups:" msgstr "" -#: src/Module/Profile/Profile.php:273 +#: src/Module/Profile/Profile.php:261 msgid "View profile as:" msgstr "" -#: src/Module/Profile/Profile.php:290 +#: src/Module/Profile/Profile.php:278 msgid "View as" msgstr "" -#: src/Module/Profile/RemoteFollow.php:82 +#: src/Module/Profile/RemoteFollow.php:68 msgid "Profile unavailable." msgstr "Profil není k dispozici." -#: src/Module/Profile/RemoteFollow.php:88 +#: src/Module/Profile/RemoteFollow.php:74 msgid "Invalid locator" msgstr "Neplatný odkaz" -#: src/Module/Profile/RemoteFollow.php:95 +#: src/Module/Profile/RemoteFollow.php:81 msgid "The provided profile link doesn't seem to be valid" msgstr "" -#: src/Module/Profile/RemoteFollow.php:100 +#: src/Module/Profile/RemoteFollow.php:86 msgid "" "Remote subscription can't be done for your network. Please subscribe " "directly on your system." msgstr "Vzdálený odběr nemůže být na vaší síti proveden. Prosím, přihlaste se k odběru přímo na vašem systému." -#: src/Module/Profile/RemoteFollow.php:128 +#: src/Module/Profile/RemoteFollow.php:114 msgid "Friend/Connection Request" msgstr "Požadavek o přátelství/spojení" -#: src/Module/Profile/RemoteFollow.php:129 +#: src/Module/Profile/RemoteFollow.php:115 #, php-format msgid "" "Enter your Webfinger address (user@domain.tld) or profile URL here. If this " @@ -9377,579 +9371,579 @@ msgid "" " or %s directly on your system." msgstr "" -#: src/Module/Profile/RemoteFollow.php:130 +#: src/Module/Profile/RemoteFollow.php:116 #, php-format msgid "" "If you are not yet a member of the free social web, follow " "this link to find a public Friendica node and join us today." msgstr "" -#: src/Module/Profile/RemoteFollow.php:131 +#: src/Module/Profile/RemoteFollow.php:117 msgid "Your Webfinger address or profile URL:" msgstr "" -#: src/Module/Profile/Restricted.php:59 +#: src/Module/Profile/Restricted.php:45 msgid "Restricted profile" msgstr "" -#: src/Module/Profile/Restricted.php:60 +#: src/Module/Profile/Restricted.php:46 msgid "" "This profile has been restricted which prevents access to their public " "content from anonymous visitors." msgstr "" -#: src/Module/Profile/Schedule.php:83 +#: src/Module/Profile/Schedule.php:69 msgid "Scheduled" msgstr "" -#: src/Module/Profile/Schedule.php:84 +#: src/Module/Profile/Schedule.php:70 msgid "Content" msgstr "" -#: src/Module/Profile/Schedule.php:85 +#: src/Module/Profile/Schedule.php:71 msgid "Remove post" msgstr "" -#: src/Module/Register.php:85 +#: src/Module/Register.php:77 msgid "Only parent users can create additional accounts." msgstr "" -#: src/Module/Register.php:100 src/Module/User/Import.php:112 +#: src/Module/Register.php:92 src/Module/User/Import.php:98 msgid "" "This site has exceeded the number of allowed daily account registrations. " "Please try again tomorrow." msgstr "Došlo k překročení maximálního povoleného počtu registrací za den na tomto serveru. Zkuste to zítra znovu." -#: src/Module/Register.php:117 +#: src/Module/Register.php:109 msgid "" "You may (optionally) fill in this form via OpenID by supplying your OpenID " "and clicking \"Register\"." msgstr "Tento formulář můžete (volitelně) vyplnit s pomocí OpenID tím, že vyplníte své OpenID a kliknete na tlačítko „Zaregistrovat“." -#: src/Module/Register.php:118 +#: src/Module/Register.php:110 msgid "" "If you are not familiar with OpenID, please leave that field blank and fill " "in the rest of the items." msgstr "Pokud nepoužíváte OpenID, nechte prosím toto pole prázdné a vyplňte zbylé položky." -#: src/Module/Register.php:119 +#: src/Module/Register.php:111 msgid "Your OpenID (optional): " msgstr "Vaše OpenID (nepovinné): " -#: src/Module/Register.php:128 +#: src/Module/Register.php:120 msgid "Include your profile in member directory?" msgstr "Chcete zahrnout váš profil v adresáři členů?" -#: src/Module/Register.php:149 +#: src/Module/Register.php:141 msgid "Note for the admin" msgstr "Poznámka pro administrátora" -#: src/Module/Register.php:149 +#: src/Module/Register.php:141 msgid "Leave a message for the admin, why you want to join this node" msgstr "Zanechejte administrátorovi zprávu, proč se k tomuto serveru chcete připojit" -#: src/Module/Register.php:150 +#: src/Module/Register.php:142 msgid "Membership on this site is by invitation only." msgstr "Členství na tomto webu je pouze na pozvání." -#: src/Module/Register.php:151 +#: src/Module/Register.php:143 msgid "Your invitation code: " msgstr "Váš kód pozvánky: " -#: src/Module/Register.php:159 +#: src/Module/Register.php:151 msgid "Your Display Name (as you would like it to be displayed on this system" msgstr "" -#: src/Module/Register.php:160 +#: src/Module/Register.php:152 msgid "" "Your Email Address: (Initial information will be send there, so this has to " "be an existing address.)" msgstr "Vaše e-mailová adresa: (Budou sem poslány počáteční informace, musí to proto být existující adresa.)" -#: src/Module/Register.php:161 +#: src/Module/Register.php:153 msgid "Please repeat your e-mail address:" msgstr "" -#: src/Module/Register.php:163 src/Module/Security/PasswordTooLong.php:100 -#: src/Module/Settings/Account.php:564 +#: src/Module/Register.php:155 src/Module/Security/PasswordTooLong.php:86 +#: src/Module/Settings/Account.php:555 msgid "New Password:" msgstr "Nové heslo:" -#: src/Module/Register.php:163 +#: src/Module/Register.php:155 msgid "Leave empty for an auto generated password." msgstr "Ponechte prázdné pro automatické vygenerovaní hesla." -#: src/Module/Register.php:164 src/Module/Security/PasswordTooLong.php:101 -#: src/Module/Settings/Account.php:565 +#: src/Module/Register.php:156 src/Module/Security/PasswordTooLong.php:87 +#: src/Module/Settings/Account.php:556 msgid "Confirm:" msgstr "Potvrďte:" -#: src/Module/Register.php:165 +#: src/Module/Register.php:157 #, php-format msgid "" "Choose a profile nickname. This must begin with a text character. Your " "profile address on this site will then be \"nickname@%s\"." msgstr "Vyberte si přezdívku pro váš profil. Musí začínat textovým znakem. Vaše profilová adresa na této stránce bude mít tvar „přezdívka@%s“." -#: src/Module/Register.php:166 +#: src/Module/Register.php:158 msgid "Choose a nickname: " msgstr "Vyberte přezdívku:" -#: src/Module/Register.php:174 src/Module/User/Import.php:118 +#: src/Module/Register.php:166 src/Module/User/Import.php:104 msgid "Import" msgstr "Import" -#: src/Module/Register.php:175 +#: src/Module/Register.php:167 msgid "Import your profile to this friendica instance" msgstr "Importovat váš profil do této instance Friendica" -#: src/Module/Register.php:182 +#: src/Module/Register.php:174 msgid "Note: This node explicitly contains adult content" msgstr "Poznámka: Tento server explicitně obsahuje obsah pro dospělé" -#: src/Module/Register.php:184 src/Module/Settings/Delegation.php:181 +#: src/Module/Register.php:176 src/Module/Settings/Delegation.php:167 msgid "Parent Password:" msgstr "Rodičovské heslo:" -#: src/Module/Register.php:184 src/Module/Settings/Delegation.php:181 +#: src/Module/Register.php:176 src/Module/Settings/Delegation.php:167 msgid "" "Please enter the password of the parent account to legitimize your request." msgstr "Prosím vložte heslo rodičovského účtu k legitimizaci vašeho požadavku." -#: src/Module/Register.php:213 +#: src/Module/Register.php:205 msgid "Password doesn't match." msgstr "" -#: src/Module/Register.php:219 +#: src/Module/Register.php:211 msgid "Please enter your password." msgstr "" -#: src/Module/Register.php:261 +#: src/Module/Register.php:253 msgid "You have entered too much information." msgstr "" -#: src/Module/Register.php:284 +#: src/Module/Register.php:276 msgid "Please enter the identical mail address in the second field." msgstr "" -#: src/Module/Register.php:292 +#: src/Module/Register.php:284 msgid "Nickname cannot start with a digit." msgstr "" -#: src/Module/Register.php:294 +#: src/Module/Register.php:286 msgid "Nickname can only contain US-ASCII characters." msgstr "" -#: src/Module/Register.php:323 +#: src/Module/Register.php:315 msgid "The additional account was created." msgstr "" -#: src/Module/Register.php:348 +#: src/Module/Register.php:340 msgid "" "Registration successful. Please check your email for further instructions." msgstr "Registrace byla úspěšná. Zkontrolujte prosím svůj e-mail pro další instrukce." -#: src/Module/Register.php:355 +#: src/Module/Register.php:347 #, php-format msgid "" "Failed to send email message. Here your accout details:
login: %s
" "password: %s

You can change your password after login." msgstr "Nepovedlo se odeslat e-mailovou zprávu. Zde jsou detaily vašeho účtu:
přihlašovací jméno: %s
heslo: %s

Své heslo si můžete změnit po přihlášení." -#: src/Module/Register.php:361 +#: src/Module/Register.php:353 msgid "Registration successful." msgstr "Registrace byla úspěšná." -#: src/Module/Register.php:370 src/Module/Register.php:377 -#: src/Module/Register.php:387 +#: src/Module/Register.php:362 src/Module/Register.php:369 +#: src/Module/Register.php:379 msgid "Your registration can not be processed." msgstr "Vaši registraci nelze zpracovat." -#: src/Module/Register.php:376 +#: src/Module/Register.php:368 msgid "You have to leave a request note for the admin." msgstr "" -#: src/Module/Register.php:386 +#: src/Module/Register.php:378 msgid "An internal error occured." msgstr "" -#: src/Module/Register.php:408 +#: src/Module/Register.php:400 msgid "Your registration is pending approval by the site owner." msgstr "Vaše registrace čeká na schválení vlastníkem serveru." -#: src/Module/Search/Acl.php:73 +#: src/Module/Search/Acl.php:64 msgid "You must be logged in to use this module." msgstr "" -#: src/Module/Search/Index.php:69 +#: src/Module/Search/Index.php:55 msgid "Only logged in users are permitted to perform a search." msgstr "Pouze přihlášení uživatelé mohou prohledávat tento server." -#: src/Module/Search/Index.php:89 +#: src/Module/Search/Index.php:75 msgid "Only one search per minute is permitted for not logged in users." msgstr "Nepřihlášení uživatelé mohou vyhledávat pouze jednou za minutu." -#: src/Module/Search/Index.php:205 +#: src/Module/Search/Index.php:191 #, php-format msgid "Items tagged with: %s" msgstr "Položky označené štítkem: %s" -#: src/Module/Search/Saved.php:59 +#: src/Module/Search/Saved.php:49 msgid "Search term was not saved." msgstr "" -#: src/Module/Search/Saved.php:62 +#: src/Module/Search/Saved.php:52 msgid "Search term already saved." msgstr "" -#: src/Module/Search/Saved.php:68 +#: src/Module/Search/Saved.php:58 msgid "Search term was not removed." msgstr "" -#: src/Module/Security/Login.php:123 +#: src/Module/Security/Login.php:113 msgid "Create a New Account" msgstr "Vytvořit nový účet" -#: src/Module/Security/Login.php:142 +#: src/Module/Security/Login.php:132 msgid "Your OpenID: " msgstr "" -#: src/Module/Security/Login.php:145 +#: src/Module/Security/Login.php:135 msgid "" "Please enter your username and password to add the OpenID to your existing " "account." msgstr "" -#: src/Module/Security/Login.php:147 +#: src/Module/Security/Login.php:137 msgid "Or login using OpenID: " msgstr "Nebo se přihlaste pomocí OpenID: " -#: src/Module/Security/Login.php:161 +#: src/Module/Security/Login.php:151 msgid "Password: " msgstr "Heslo: " -#: src/Module/Security/Login.php:162 +#: src/Module/Security/Login.php:152 msgid "Remember me" msgstr "Pamatovat si mě" -#: src/Module/Security/Login.php:171 +#: src/Module/Security/Login.php:161 msgid "Forgot your password?" msgstr "Zapomněl/a jste heslo?" -#: src/Module/Security/Login.php:174 +#: src/Module/Security/Login.php:164 msgid "Website Terms of Service" msgstr "Podmínky používání stránky" -#: src/Module/Security/Login.php:175 +#: src/Module/Security/Login.php:165 msgid "terms of service" msgstr "podmínky používání" -#: src/Module/Security/Login.php:177 +#: src/Module/Security/Login.php:167 msgid "Website Privacy Policy" msgstr "Zásady soukromí serveru" -#: src/Module/Security/Login.php:178 +#: src/Module/Security/Login.php:168 msgid "privacy policy" msgstr "zásady soukromí" -#: src/Module/Security/Logout.php:84 -#: src/Module/Security/TwoFactor/SignOut.php:78 -#: src/Module/Security/TwoFactor/SignOut.php:86 -#: src/Module/Security/TwoFactor/SignOut.php:108 -#: src/Module/Security/TwoFactor/SignOut.php:115 +#: src/Module/Security/Logout.php:75 +#: src/Module/Security/TwoFactor/SignOut.php:64 +#: src/Module/Security/TwoFactor/SignOut.php:72 +#: src/Module/Security/TwoFactor/SignOut.php:94 +#: src/Module/Security/TwoFactor/SignOut.php:101 msgid "Logged out." msgstr "Odhlášen." -#: src/Module/Security/OpenID.php:54 +#: src/Module/Security/OpenID.php:40 msgid "OpenID protocol error. No ID returned" msgstr "" -#: src/Module/Security/OpenID.php:90 +#: src/Module/Security/OpenID.php:76 msgid "" "Account not found. Please login to your existing account to add the OpenID " "to it." msgstr "" -#: src/Module/Security/OpenID.php:92 +#: src/Module/Security/OpenID.php:78 msgid "" "Account not found. Please register a new account or login to your existing " "account to add the OpenID to it." msgstr "" -#: src/Module/Security/PasswordTooLong.php:57 -#: src/Module/Settings/Account.php:67 +#: src/Module/Security/PasswordTooLong.php:43 +#: src/Module/Settings/Account.php:53 msgid "Passwords do not match." msgstr "Hasla se neshodují." -#: src/Module/Security/PasswordTooLong.php:64 +#: src/Module/Security/PasswordTooLong.php:50 msgid "Password does not need changing." msgstr "" -#: src/Module/Security/PasswordTooLong.php:77 -#: src/Module/Settings/Account.php:81 +#: src/Module/Security/PasswordTooLong.php:63 +#: src/Module/Settings/Account.php:67 msgid "Password unchanged." msgstr "Heslo nezměněno." -#: src/Module/Security/PasswordTooLong.php:91 +#: src/Module/Security/PasswordTooLong.php:77 msgid "Password Too Long" msgstr "" -#: src/Module/Security/PasswordTooLong.php:92 +#: src/Module/Security/PasswordTooLong.php:78 msgid "" "Since version 2022.09, we've realized that any password longer than 72 " "characters is truncated during hashing. To prevent any confusion about this " "behavior, please update your password to be fewer or equal to 72 characters." msgstr "" -#: src/Module/Security/PasswordTooLong.php:93 +#: src/Module/Security/PasswordTooLong.php:79 msgid "Update Password" msgstr "" -#: src/Module/Security/PasswordTooLong.php:99 -#: src/Module/Settings/Account.php:566 +#: src/Module/Security/PasswordTooLong.php:85 +#: src/Module/Settings/Account.php:557 msgid "Current Password:" msgstr "Stávající heslo:" -#: src/Module/Security/PasswordTooLong.php:99 -#: src/Module/Settings/Account.php:566 +#: src/Module/Security/PasswordTooLong.php:85 +#: src/Module/Settings/Account.php:557 msgid "Your current password to confirm the changes" msgstr "Vaše stávající heslo k potvrzení změn" -#: src/Module/Security/PasswordTooLong.php:100 -#: src/Module/Settings/Account.php:550 +#: src/Module/Security/PasswordTooLong.php:86 +#: src/Module/Settings/Account.php:541 msgid "" "Allowed characters are a-z, A-Z, 0-9 and special characters except white " "spaces and accentuated letters." msgstr "" -#: src/Module/Security/PasswordTooLong.php:100 -#: src/Module/Settings/Account.php:551 +#: src/Module/Security/PasswordTooLong.php:86 +#: src/Module/Settings/Account.php:542 msgid "Password length is limited to 72 characters." msgstr "" -#: src/Module/Security/TwoFactor/Recovery.php:74 +#: src/Module/Security/TwoFactor/Recovery.php:60 #, php-format msgid "Remaining recovery codes: %d" msgstr "Zbývající záložní kódy: %d" -#: src/Module/Security/TwoFactor/Recovery.php:80 -#: src/Module/Security/TwoFactor/Verify.php:77 -#: src/Module/Settings/TwoFactor/Verify.php:98 +#: src/Module/Security/TwoFactor/Recovery.php:66 +#: src/Module/Security/TwoFactor/Verify.php:63 +#: src/Module/Settings/TwoFactor/Verify.php:84 msgid "Invalid code, please retry." msgstr "Neplatný kód, prosím zkuste to znovu." -#: src/Module/Security/TwoFactor/Recovery.php:99 +#: src/Module/Security/TwoFactor/Recovery.php:85 msgid "Two-factor recovery" msgstr "Dvoufázové záložní kódy" -#: src/Module/Security/TwoFactor/Recovery.php:100 +#: src/Module/Security/TwoFactor/Recovery.php:86 msgid "" "

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

" msgstr "

Pokud jste ztratil/a přístup k vašemu mobilnímu zařízení , můžete zadat jeden z vašich jednorázových záložních kódů.

" -#: src/Module/Security/TwoFactor/Recovery.php:101 +#: src/Module/Security/TwoFactor/Recovery.php:87 #, php-format msgid "Don’t have your phone? Enter a two-factor recovery code" msgstr "Nemáte svůj mobil? Zadejte dvoufázový záložní kód" -#: src/Module/Security/TwoFactor/Recovery.php:102 +#: src/Module/Security/TwoFactor/Recovery.php:88 msgid "Please enter a recovery code" msgstr "Prosím zadejte záložní kód" -#: src/Module/Security/TwoFactor/Recovery.php:103 +#: src/Module/Security/TwoFactor/Recovery.php:89 msgid "Submit recovery code and complete login" msgstr "Odeslat záložní kód a dokončit přihlášení" -#: src/Module/Security/TwoFactor/SignOut.php:122 +#: src/Module/Security/TwoFactor/SignOut.php:108 msgid "Sign out of this browser?" msgstr "" -#: src/Module/Security/TwoFactor/SignOut.php:123 +#: src/Module/Security/TwoFactor/SignOut.php:109 msgid "" "

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

" msgstr "" -#: src/Module/Security/TwoFactor/SignOut.php:124 +#: src/Module/Security/TwoFactor/SignOut.php:110 msgid "Sign out" msgstr "" -#: src/Module/Security/TwoFactor/SignOut.php:126 +#: src/Module/Security/TwoFactor/SignOut.php:112 msgid "Trust and sign out" msgstr "" -#: src/Module/Security/TwoFactor/Trust.php:96 +#: src/Module/Security/TwoFactor/Trust.php:82 msgid "Couldn't save browser to Cookie." msgstr "" -#: src/Module/Security/TwoFactor/Trust.php:141 +#: src/Module/Security/TwoFactor/Trust.php:127 msgid "Trust this browser?" msgstr "" -#: src/Module/Security/TwoFactor/Trust.php:142 +#: src/Module/Security/TwoFactor/Trust.php:128 msgid "" "

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

" msgstr "" -#: src/Module/Security/TwoFactor/Trust.php:143 +#: src/Module/Security/TwoFactor/Trust.php:129 msgid "Not now" msgstr "" -#: src/Module/Security/TwoFactor/Trust.php:144 +#: src/Module/Security/TwoFactor/Trust.php:130 msgid "Don't trust" msgstr "" -#: src/Module/Security/TwoFactor/Trust.php:145 +#: src/Module/Security/TwoFactor/Trust.php:131 msgid "Trust" msgstr "" -#: src/Module/Security/TwoFactor/Verify.php:97 +#: src/Module/Security/TwoFactor/Verify.php:83 msgid "" "

Open the two-factor authentication app on your device to get an " "authentication code and verify your identity.

" msgstr "

Otevřete na vašem zařízení aplikaci pro dvoufázové ověřování, získejte autentizační kód a ověřte svou identitu.

" -#: src/Module/Security/TwoFactor/Verify.php:100 +#: src/Module/Security/TwoFactor/Verify.php:86 #, php-format msgid "" "If you do not have access to your authentication code you can use a two-factor recovery code." msgstr "" -#: src/Module/Security/TwoFactor/Verify.php:101 -#: src/Module/Settings/TwoFactor/Verify.php:158 +#: src/Module/Security/TwoFactor/Verify.php:87 +#: src/Module/Settings/TwoFactor/Verify.php:144 msgid "Please enter a code from your authentication app" msgstr "Prosím zadejte kód z vaší autentizační aplikace" -#: src/Module/Security/TwoFactor/Verify.php:102 +#: src/Module/Security/TwoFactor/Verify.php:88 msgid "Verify code and complete login" msgstr "Ověřit kód a dokončit přihlášení" -#: src/Module/Settings/Account.php:96 +#: src/Module/Settings/Account.php:82 msgid "Please use a shorter name." msgstr "" -#: src/Module/Settings/Account.php:99 +#: src/Module/Settings/Account.php:85 msgid "Name too short." msgstr "" -#: src/Module/Settings/Account.php:108 +#: src/Module/Settings/Account.php:94 msgid "Wrong Password." msgstr "" -#: src/Module/Settings/Account.php:113 +#: src/Module/Settings/Account.php:99 msgid "Invalid email." msgstr "Neplatný e-mail." -#: src/Module/Settings/Account.php:117 +#: src/Module/Settings/Account.php:103 msgid "Cannot change to that email." msgstr "Nelze změnit na tento e-mail." -#: src/Module/Settings/Account.php:146 src/Module/Settings/Account.php:195 -#: src/Module/Settings/Account.php:216 src/Module/Settings/Account.php:300 -#: src/Module/Settings/Account.php:329 +#: src/Module/Settings/Account.php:132 src/Module/Settings/Account.php:181 +#: src/Module/Settings/Account.php:202 src/Module/Settings/Account.php:286 +#: src/Module/Settings/Account.php:315 msgid "Settings were not updated." msgstr "" -#: src/Module/Settings/Account.php:342 +#: src/Module/Settings/Account.php:333 msgid "Contact CSV file upload error" msgstr "" -#: src/Module/Settings/Account.php:361 +#: src/Module/Settings/Account.php:352 msgid "Importing Contacts done" msgstr "" -#: src/Module/Settings/Account.php:374 +#: src/Module/Settings/Account.php:365 msgid "Relocate message has been send to your contacts" msgstr "Správa o změně umístění byla odeslána vašim kontaktům" -#: src/Module/Settings/Account.php:391 +#: src/Module/Settings/Account.php:382 msgid "Unable to find your profile. Please contact your admin." msgstr "Nelze najít Váš účet. Prosím kontaktujte vašeho administrátora." -#: src/Module/Settings/Account.php:433 +#: src/Module/Settings/Account.php:424 msgid "" "Account for a service that automatically shares content based on user " "defined channels." msgstr "" -#: src/Module/Settings/Account.php:443 +#: src/Module/Settings/Account.php:434 msgid "Personal Page Subtypes" msgstr "Podtypy osobních stránek" -#: src/Module/Settings/Account.php:444 +#: src/Module/Settings/Account.php:435 msgid "Community Group Subtypes" msgstr "" -#: src/Module/Settings/Account.php:455 +#: src/Module/Settings/Account.php:446 msgid "Account for a personal profile." msgstr "Účet pro osobní profil." -#: src/Module/Settings/Account.php:462 +#: src/Module/Settings/Account.php:453 msgid "" "Account for an organisation that automatically approves contact requests as " "\"Followers\"." msgstr "Účet pro organizaci, který automaticky potvrzuje požadavky o přidání kontaktu jako „Sledující“." -#: src/Module/Settings/Account.php:469 +#: src/Module/Settings/Account.php:460 msgid "" "Account for a news reflector that automatically approves contact requests as" " \"Followers\"." msgstr "Účet pro zpravodaje, který automaticky potvrzuje požadavky o přidání kontaktu jako „Sledující“." -#: src/Module/Settings/Account.php:476 +#: src/Module/Settings/Account.php:467 msgid "Account for community discussions." msgstr "Účet pro komunitní diskuze." -#: src/Module/Settings/Account.php:484 +#: src/Module/Settings/Account.php:475 msgid "" "Account for a regular personal profile that requires manual approval of " "\"Friends\" and \"Followers\"." msgstr "Účet pro běžný osobní profil, který vyžaduje manuální potvrzení „Přátel“ a „Sledujících“." -#: src/Module/Settings/Account.php:491 +#: src/Module/Settings/Account.php:482 msgid "" "Account for a public profile that automatically approves contact requests as" " \"Followers\"." msgstr "Účet pro veřejný profil, který automaticky potvrzuje požadavky o přidání kontaktu jako „Sledující“." -#: src/Module/Settings/Account.php:498 +#: src/Module/Settings/Account.php:489 msgid "Automatically approves all contact requests." msgstr "Automaticky potvrzuje všechny žádosti o přidání kontaktu." -#: src/Module/Settings/Account.php:505 +#: src/Module/Settings/Account.php:496 msgid "Contact requests have to be manually approved." msgstr "" -#: src/Module/Settings/Account.php:512 +#: src/Module/Settings/Account.php:503 msgid "" "Account for a popular profile that automatically approves contact requests " "as \"Friends\"." msgstr "Účet pro populární profil, který automaticky potvrzuje požadavky o přidání kontaktu jako „Přátele“." -#: src/Module/Settings/Account.php:517 +#: src/Module/Settings/Account.php:508 msgid "Private Group [Experimental]" msgstr "" -#: src/Module/Settings/Account.php:519 +#: src/Module/Settings/Account.php:510 msgid "Requires manual approval of contact requests." msgstr "Vyžaduje manuální potvrzení požadavků o přidání kontaktu." -#: src/Module/Settings/Account.php:528 +#: src/Module/Settings/Account.php:519 msgid "OpenID:" msgstr "OpenID:" -#: src/Module/Settings/Account.php:528 +#: src/Module/Settings/Account.php:519 msgid "(Optional) Allow this OpenID to login to this account." msgstr "(Volitelné) Povolit tomuto OpenID přihlášení k tomuto účtu." -#: src/Module/Settings/Account.php:536 +#: src/Module/Settings/Account.php:527 msgid "Publish your profile in your local site directory?" msgstr "" -#: src/Module/Settings/Account.php:536 +#: src/Module/Settings/Account.php:527 #, php-format msgid "" "Your profile will be published in this node's local " @@ -9957,94 +9951,94 @@ msgid "" " system settings." msgstr "Váš profil bude publikován v místním adresáři tohoto serveru. Vaše detaily o profilu mohou být veřejně viditelné v závislosti na systémových nastaveních." -#: src/Module/Settings/Account.php:542 +#: src/Module/Settings/Account.php:533 #, php-format msgid "" "Your profile will also be published in the global friendica directories " "(e.g. %s)." msgstr "" -#: src/Module/Settings/Account.php:555 +#: src/Module/Settings/Account.php:546 msgid "Account Settings" msgstr "Nastavení účtu" -#: src/Module/Settings/Account.php:556 +#: src/Module/Settings/Account.php:547 #, php-format msgid "Your Identity Address is '%s' or '%s'." msgstr "Vaše adresa identity je „%s“ nebo „%s“." -#: src/Module/Settings/Account.php:563 +#: src/Module/Settings/Account.php:554 msgid "Password Settings" msgstr "Nastavení hesla" -#: src/Module/Settings/Account.php:565 +#: src/Module/Settings/Account.php:556 msgid "Leave password fields blank unless changing" msgstr "Pokud nechcete změnit heslo, položku hesla nevyplňujte" -#: src/Module/Settings/Account.php:567 +#: src/Module/Settings/Account.php:558 msgid "Password:" msgstr "Heslo: " -#: src/Module/Settings/Account.php:567 +#: src/Module/Settings/Account.php:558 msgid "Your current password to confirm the changes of the email address" msgstr "" -#: src/Module/Settings/Account.php:570 +#: src/Module/Settings/Account.php:561 msgid "Delete OpenID URL" msgstr "" -#: src/Module/Settings/Account.php:572 +#: src/Module/Settings/Account.php:563 msgid "Basic Settings" msgstr "Základní nastavení" -#: src/Module/Settings/Account.php:573 -#: src/Module/Settings/Profile/Index.php:283 +#: src/Module/Settings/Account.php:564 +#: src/Module/Settings/Profile/Index.php:274 msgid "Display name:" msgstr "" -#: src/Module/Settings/Account.php:574 +#: src/Module/Settings/Account.php:565 msgid "Email Address:" msgstr "E-mailová adresa:" -#: src/Module/Settings/Account.php:575 +#: src/Module/Settings/Account.php:566 msgid "Your Timezone:" msgstr "Vaše časové pásmo:" -#: src/Module/Settings/Account.php:576 +#: src/Module/Settings/Account.php:567 msgid "Your Language:" msgstr "Váš jazyk:" -#: src/Module/Settings/Account.php:576 +#: src/Module/Settings/Account.php:567 msgid "" "Set the language we use to show you friendica interface and to send you " "emails" msgstr "Nastavte jazyk, který máme používat pro rozhraní Friendica a pro posílání e-mailů" -#: src/Module/Settings/Account.php:577 +#: src/Module/Settings/Account.php:568 msgid "Default Post Location:" msgstr "Výchozí poloha příspěvků:" -#: src/Module/Settings/Account.php:578 +#: src/Module/Settings/Account.php:569 msgid "Use Browser Location:" msgstr "Používat polohu dle prohlížeče:" -#: src/Module/Settings/Account.php:580 +#: src/Module/Settings/Account.php:571 msgid "Security and Privacy Settings" msgstr "Nastavení zabezpečení a soukromí" -#: src/Module/Settings/Account.php:582 +#: src/Module/Settings/Account.php:573 msgid "Maximum Friend Requests/Day:" msgstr "Maximální počet požadavků o přátelství za den:" -#: src/Module/Settings/Account.php:582 +#: src/Module/Settings/Account.php:573 msgid "(to prevent spam abuse)" msgstr "(ay se zabránilo spamu)" -#: src/Module/Settings/Account.php:584 +#: src/Module/Settings/Account.php:575 msgid "Allow your profile to be searchable globally?" msgstr "" -#: src/Module/Settings/Account.php:584 +#: src/Module/Settings/Account.php:575 msgid "" "Activate this setting if you want others to easily find and follow you. Your" " profile will be searchable on remote systems. This setting also determines " @@ -10052,43 +10046,43 @@ msgid "" "indexed or not." msgstr "" -#: src/Module/Settings/Account.php:585 +#: src/Module/Settings/Account.php:576 msgid "Hide your contact/friend list from viewers of your profile?" msgstr "" -#: src/Module/Settings/Account.php:585 +#: src/Module/Settings/Account.php:576 msgid "" "A list of your contacts is displayed on your profile page. Activate this " "option to disable the display of your contact list." msgstr "" -#: src/Module/Settings/Account.php:586 +#: src/Module/Settings/Account.php:577 msgid "Hide your public content from anonymous viewers" msgstr "" -#: src/Module/Settings/Account.php:586 +#: src/Module/Settings/Account.php:577 msgid "" "Anonymous visitors will only see your basic profile details. Your public " "posts and replies will still be freely accessible on the remote servers of " "your followers and through relays." msgstr "" -#: src/Module/Settings/Account.php:587 +#: src/Module/Settings/Account.php:578 msgid "Make public posts unlisted" msgstr "" -#: src/Module/Settings/Account.php:587 +#: src/Module/Settings/Account.php:578 msgid "" "Your public posts will not appear on the community pages or in search " "results, nor be sent to relay servers. However they can still appear on " "public feeds on remote servers." msgstr "" -#: src/Module/Settings/Account.php:588 +#: src/Module/Settings/Account.php:579 msgid "Make all posted pictures accessible" msgstr "" -#: src/Module/Settings/Account.php:588 +#: src/Module/Settings/Account.php:579 msgid "" "This option makes every posted picture accessible via the direct link. This " "is a workaround for the problem that most other networks can't handle " @@ -10096,352 +10090,352 @@ msgid "" "public on your photo albums though." msgstr "" -#: src/Module/Settings/Account.php:589 +#: src/Module/Settings/Account.php:580 msgid "Allow friends to post to your profile page?" msgstr "Povolit přátelům umisťování příspěvků na vaši profilovou stránku?" -#: src/Module/Settings/Account.php:589 +#: src/Module/Settings/Account.php:580 msgid "" "Your contacts may write posts on your profile wall. These posts will be " "distributed to your contacts" msgstr "Vaše kontakty mohou psát příspěvky na vaši profilovou zeď. Tyto příspěvky budou přeposílány vašim kontaktům." -#: src/Module/Settings/Account.php:590 +#: src/Module/Settings/Account.php:581 msgid "Allow friends to tag your posts?" msgstr "Povolit přátelům označovat vaše příspěvky?" -#: src/Module/Settings/Account.php:590 +#: src/Module/Settings/Account.php:581 msgid "Your contacts can add additional tags to your posts." msgstr "Vaše kontakty mohou přidávat k vašim příspěvkům dodatečné štítky." -#: src/Module/Settings/Account.php:591 +#: src/Module/Settings/Account.php:582 msgid "Default privacy circle for new contacts" msgstr "" -#: src/Module/Settings/Account.php:592 +#: src/Module/Settings/Account.php:583 msgid "Default privacy circle for new group contacts" msgstr "" -#: src/Module/Settings/Account.php:593 +#: src/Module/Settings/Account.php:584 msgid "Default Post Permissions" msgstr "Výchozí oprávnění pro příspěvek" -#: src/Module/Settings/Account.php:597 +#: src/Module/Settings/Account.php:588 msgid "Expiration settings" msgstr "" -#: src/Module/Settings/Account.php:598 +#: src/Module/Settings/Account.php:589 msgid "Automatically expire posts after this many days:" msgstr "Automaticky expirovat příspěvky po zadaném počtu dní:" -#: src/Module/Settings/Account.php:598 +#: src/Module/Settings/Account.php:589 msgid "If empty, posts will not expire. Expired posts will be deleted" msgstr "Pokud je prázdné, příspěvky nebudou nikdy expirovat. Expirované příspěvky budou vymazány" -#: src/Module/Settings/Account.php:599 +#: src/Module/Settings/Account.php:590 msgid "Expire posts" msgstr "" -#: src/Module/Settings/Account.php:599 +#: src/Module/Settings/Account.php:590 msgid "When activated, posts and comments will be expired." msgstr "" -#: src/Module/Settings/Account.php:600 +#: src/Module/Settings/Account.php:591 msgid "Expire personal notes" msgstr "" -#: src/Module/Settings/Account.php:600 +#: src/Module/Settings/Account.php:591 msgid "" "When activated, the personal notes on your profile page will be expired." msgstr "" -#: src/Module/Settings/Account.php:601 +#: src/Module/Settings/Account.php:592 msgid "Expire starred posts" msgstr "" -#: src/Module/Settings/Account.php:601 +#: src/Module/Settings/Account.php:592 msgid "" "Starring posts keeps them from being expired. That behaviour is overwritten " "by this setting." msgstr "" -#: src/Module/Settings/Account.php:602 +#: src/Module/Settings/Account.php:593 msgid "Only expire posts by others" msgstr "" -#: src/Module/Settings/Account.php:602 +#: src/Module/Settings/Account.php:593 msgid "" "When activated, your own posts never expire. Then the settings above are " "only valid for posts you received." msgstr "" -#: src/Module/Settings/Account.php:605 +#: src/Module/Settings/Account.php:596 msgid "Notification Settings" msgstr "Nastavení oznámení" -#: src/Module/Settings/Account.php:606 +#: src/Module/Settings/Account.php:597 msgid "Send a notification email when:" msgstr "Poslat oznámení e-mailem, když:" -#: src/Module/Settings/Account.php:607 +#: src/Module/Settings/Account.php:598 msgid "You receive an introduction" msgstr "obdržíte představení" -#: src/Module/Settings/Account.php:608 +#: src/Module/Settings/Account.php:599 msgid "Your introductions are confirmed" msgstr "jsou vaše představení potvrzena" -#: src/Module/Settings/Account.php:609 +#: src/Module/Settings/Account.php:600 msgid "Someone writes on your profile wall" msgstr "vám někdo napíše na vaši profilovou stránku" -#: src/Module/Settings/Account.php:610 +#: src/Module/Settings/Account.php:601 msgid "Someone writes a followup comment" msgstr "Vám někdo napíše následný komentář" -#: src/Module/Settings/Account.php:611 +#: src/Module/Settings/Account.php:602 msgid "You receive a private message" msgstr "obdržíte soukromou zprávu" -#: src/Module/Settings/Account.php:612 +#: src/Module/Settings/Account.php:603 msgid "You receive a friend suggestion" msgstr "obdržíte návrh přátelství" -#: src/Module/Settings/Account.php:613 +#: src/Module/Settings/Account.php:604 msgid "You are tagged in a post" msgstr "jste označen v příspěvku" -#: src/Module/Settings/Account.php:615 +#: src/Module/Settings/Account.php:606 msgid "Create a desktop notification when:" msgstr "" -#: src/Module/Settings/Account.php:616 +#: src/Module/Settings/Account.php:607 msgid "Someone tagged you" msgstr "" -#: src/Module/Settings/Account.php:617 +#: src/Module/Settings/Account.php:608 msgid "Someone directly commented on your post" msgstr "" -#: src/Module/Settings/Account.php:618 +#: src/Module/Settings/Account.php:609 msgid "Someone liked your content" msgstr "" -#: src/Module/Settings/Account.php:618 src/Module/Settings/Account.php:619 +#: src/Module/Settings/Account.php:609 src/Module/Settings/Account.php:610 msgid "Can only be enabled, when the direct comment notification is enabled." msgstr "" -#: src/Module/Settings/Account.php:619 +#: src/Module/Settings/Account.php:610 msgid "Someone shared your content" msgstr "" -#: src/Module/Settings/Account.php:620 +#: src/Module/Settings/Account.php:611 msgid "Someone commented in your thread" msgstr "" -#: src/Module/Settings/Account.php:621 +#: src/Module/Settings/Account.php:612 msgid "Someone commented in a thread where you commented" msgstr "" -#: src/Module/Settings/Account.php:622 +#: src/Module/Settings/Account.php:613 msgid "Someone commented in a thread where you interacted" msgstr "" -#: src/Module/Settings/Account.php:624 +#: src/Module/Settings/Account.php:615 msgid "Activate desktop notifications" msgstr "Aktivovat desktopová oznámení" -#: src/Module/Settings/Account.php:624 +#: src/Module/Settings/Account.php:615 msgid "Show desktop popup on new notifications" msgstr "Zobrazit desktopové zprávy při nových oznámeních." -#: src/Module/Settings/Account.php:628 +#: src/Module/Settings/Account.php:619 msgid "Text-only notification emails" msgstr "Pouze textové oznamovací e-maily" -#: src/Module/Settings/Account.php:630 +#: src/Module/Settings/Account.php:621 msgid "Send text only notification emails, without the html part" msgstr "Posílat pouze textové oznamovací e-maily, bez HTML části." -#: src/Module/Settings/Account.php:634 +#: src/Module/Settings/Account.php:625 msgid "Show detailled notifications" msgstr "Zobrazit detailní oznámení" -#: src/Module/Settings/Account.php:636 +#: src/Module/Settings/Account.php:627 msgid "" "Per default, notifications are condensed to a single notification per item. " "When enabled every notification is displayed." msgstr "Ve výchozím nastavení jsou oznámení zhuštěné na jediné oznámení pro každou položku. Pokud je toto povolené, budou zobrazována všechna oznámení." -#: src/Module/Settings/Account.php:640 +#: src/Module/Settings/Account.php:631 msgid "Show notifications of ignored contacts" msgstr "" -#: src/Module/Settings/Account.php:642 +#: src/Module/Settings/Account.php:633 msgid "" "You don't see posts from ignored contacts. But you still see their comments." " This setting controls if you want to still receive regular notifications " "that are caused by ignored contacts or not." msgstr "" -#: src/Module/Settings/Account.php:645 +#: src/Module/Settings/Account.php:636 msgid "Advanced Account/Page Type Settings" msgstr "Pokročilé nastavení účtu/stránky" -#: src/Module/Settings/Account.php:646 +#: src/Module/Settings/Account.php:637 msgid "Change the behaviour of this account for special situations" msgstr "Změnit chování tohoto účtu ve speciálních situacích" -#: src/Module/Settings/Account.php:649 +#: src/Module/Settings/Account.php:640 msgid "Import Contacts" msgstr "" -#: src/Module/Settings/Account.php:650 +#: src/Module/Settings/Account.php:641 msgid "" "Upload a CSV file that contains the handle of your followed accounts in the " "first column you exported from the old account." msgstr "" -#: src/Module/Settings/Account.php:651 +#: src/Module/Settings/Account.php:642 msgid "Upload File" msgstr "" -#: src/Module/Settings/Account.php:654 +#: src/Module/Settings/Account.php:645 msgid "Relocate" msgstr "Přemístit" -#: src/Module/Settings/Account.php:655 +#: src/Module/Settings/Account.php:646 msgid "" "If you have moved this profile from another server, and some of your " "contacts don't receive your updates, try pushing this button." msgstr "Pokud jste přemístil/a tento profil z jiného serveru a nějaký z vašich kontaktů nedostává vaše aktualizace, zkuste stisknout toto tlačítko." -#: src/Module/Settings/Account.php:656 +#: src/Module/Settings/Account.php:647 msgid "Resend relocate message to contacts" msgstr "Znovu odeslat správu o přemístění Vašim kontaktům" -#: src/Module/Settings/Addons.php:86 +#: src/Module/Settings/Addons.php:72 msgid "Addon Settings" msgstr "Nastavení doplňků" -#: src/Module/Settings/Addons.php:87 +#: src/Module/Settings/Addons.php:73 msgid "No Addon settings configured" msgstr "Žádná nastavení doplňků nenakonfigurována" -#: src/Module/Settings/Channels.php:148 +#: src/Module/Settings/Channels.php:134 msgid "" "This page can be used to define the channels that will automatically be " "reshared by your account." msgstr "" -#: src/Module/Settings/Channels.php:153 +#: src/Module/Settings/Channels.php:139 msgid "This page can be used to define your own channels." msgstr "" -#: src/Module/Settings/Channels.php:182 +#: src/Module/Settings/Channels.php:168 msgid "Publish" msgstr "" -#: src/Module/Settings/Channels.php:182 +#: src/Module/Settings/Channels.php:168 msgid "" "When selected, the channel results are reshared. This only works for public " "ActivityPub posts from the public timeline or the user defined circles." msgstr "" -#: src/Module/Settings/Channels.php:190 src/Module/Settings/Channels.php:211 -#: src/Module/Settings/Display.php:338 +#: src/Module/Settings/Channels.php:176 src/Module/Settings/Channels.php:197 +#: src/Module/Settings/Display.php:324 msgid "Label" msgstr "" -#: src/Module/Settings/Channels.php:191 src/Module/Settings/Channels.php:212 -#: src/Module/Settings/Display.php:339 -#: src/Module/Settings/TwoFactor/AppSpecific.php:137 +#: src/Module/Settings/Channels.php:177 src/Module/Settings/Channels.php:198 +#: src/Module/Settings/Display.php:325 +#: src/Module/Settings/TwoFactor/AppSpecific.php:123 msgid "Description" msgstr "" -#: src/Module/Settings/Channels.php:192 src/Module/Settings/Channels.php:213 +#: src/Module/Settings/Channels.php:178 src/Module/Settings/Channels.php:199 msgid "Access Key" msgstr "" -#: src/Module/Settings/Channels.php:193 src/Module/Settings/Channels.php:214 +#: src/Module/Settings/Channels.php:179 src/Module/Settings/Channels.php:200 msgid "Circle/Channel" msgstr "" -#: src/Module/Settings/Channels.php:194 src/Module/Settings/Channels.php:215 +#: src/Module/Settings/Channels.php:180 src/Module/Settings/Channels.php:201 msgid "Include Tags" msgstr "" -#: src/Module/Settings/Channels.php:195 src/Module/Settings/Channels.php:216 +#: src/Module/Settings/Channels.php:181 src/Module/Settings/Channels.php:202 msgid "Exclude Tags" msgstr "" -#: src/Module/Settings/Channels.php:196 src/Module/Settings/Channels.php:217 +#: src/Module/Settings/Channels.php:182 src/Module/Settings/Channels.php:203 msgid "Minimum Size" msgstr "" -#: src/Module/Settings/Channels.php:197 src/Module/Settings/Channels.php:218 +#: src/Module/Settings/Channels.php:183 src/Module/Settings/Channels.php:204 msgid "Maximum Size" msgstr "" -#: src/Module/Settings/Channels.php:198 src/Module/Settings/Channels.php:219 +#: src/Module/Settings/Channels.php:184 src/Module/Settings/Channels.php:205 msgid "Full Text Search" msgstr "" -#: src/Module/Settings/Channels.php:202 src/Module/Settings/Channels.php:223 +#: src/Module/Settings/Channels.php:188 src/Module/Settings/Channels.php:209 msgid "Select all languages that you want to see in this channel." msgstr "" -#: src/Module/Settings/Channels.php:204 +#: src/Module/Settings/Channels.php:190 msgid "Delete channel" msgstr "" -#: src/Module/Settings/Channels.php:204 +#: src/Module/Settings/Channels.php:190 msgid "Check to delete this entry from the channel list" msgstr "" -#: src/Module/Settings/Channels.php:211 +#: src/Module/Settings/Channels.php:197 msgid "Short name for the channel. It is displayed on the channels widget." msgstr "" -#: src/Module/Settings/Channels.php:212 +#: src/Module/Settings/Channels.php:198 msgid "This should describe the content of the channel in a few word." msgstr "" -#: src/Module/Settings/Channels.php:213 +#: src/Module/Settings/Channels.php:199 msgid "" "When you want to access this channel via an access key, you can define it " "here. Pay attention to not use an already used one." msgstr "" -#: src/Module/Settings/Channels.php:214 +#: src/Module/Settings/Channels.php:200 msgid "Select a circle or channel, that your channel should be based on." msgstr "" -#: src/Module/Settings/Channels.php:215 +#: src/Module/Settings/Channels.php:201 msgid "" "Comma separated list of tags. A post will be used when it contains any of " "the listed tags." msgstr "" -#: src/Module/Settings/Channels.php:216 +#: src/Module/Settings/Channels.php:202 msgid "" "Comma separated list of tags. If a post contain any of these tags, then it " "will not be part of nthis channel." msgstr "" -#: src/Module/Settings/Channels.php:217 +#: src/Module/Settings/Channels.php:203 msgid "" "Minimum post size. Leave empty for no minimum size. The size is calculated " "without links, attached posts, mentions or hashtags." msgstr "" -#: src/Module/Settings/Channels.php:218 +#: src/Module/Settings/Channels.php:204 msgid "" "Maximum post size. Leave empty for no maximum size. The size is calculated " "without links, attached posts, mentions or hashtags." msgstr "" -#: src/Module/Settings/Channels.php:219 +#: src/Module/Settings/Channels.php:205 #, php-format msgid "" "Search terms for the body, supports the \"boolean mode\" operators from " @@ -10449,576 +10443,589 @@ msgid "" "keywords: %s" msgstr "" -#: src/Module/Settings/Channels.php:220 +#: src/Module/Settings/Channels.php:206 msgid "Check to display images in the channel." msgstr "" -#: src/Module/Settings/Channels.php:221 +#: src/Module/Settings/Channels.php:207 msgid "Check to display videos in the channel." msgstr "" -#: src/Module/Settings/Channels.php:222 +#: src/Module/Settings/Channels.php:208 msgid "Check to display audio in the channel." msgstr "" -#: src/Module/Settings/Channels.php:227 +#: src/Module/Settings/Channels.php:213 msgid "Add new entry to the channel list" msgstr "" -#: src/Module/Settings/Channels.php:228 +#: src/Module/Settings/Channels.php:214 msgid "Add" msgstr "Přidat" -#: src/Module/Settings/Channels.php:230 +#: src/Module/Settings/Channels.php:216 msgid "Current Entries in the channel list" msgstr "" -#: src/Module/Settings/Channels.php:233 +#: src/Module/Settings/Channels.php:219 msgid "Delete entry from the channel list" msgstr "" -#: src/Module/Settings/Channels.php:234 +#: src/Module/Settings/Channels.php:220 msgid "Delete entry from the channel list?" msgstr "" -#: src/Module/Settings/Connectors.php:120 +#: src/Module/Settings/Connectors.php:108 msgid "Failed to connect with email account using the settings provided." msgstr "Nepodařilo se připojit k e-mailovému účtu pomocí dodaného nastavení." -#: src/Module/Settings/Connectors.php:166 -#: src/Module/Settings/Connectors.php:167 +#: src/Module/Settings/Connectors.php:155 +#: src/Module/Settings/Connectors.php:156 msgid "Diaspora (Socialhome, Hubzilla)" msgstr "Diaspora (Socialhome, Hubzilla)" -#: src/Module/Settings/Connectors.php:166 -#: src/Module/Settings/Connectors.php:170 +#: src/Module/Settings/Connectors.php:155 #, php-format msgid "Built-in support for %s connectivity is enabled" msgstr "" -#: src/Module/Settings/Connectors.php:167 -#: src/Module/Settings/Connectors.php:169 +#: src/Module/Settings/Connectors.php:156 #, php-format msgid "Built-in support for %s connectivity is disabled" msgstr "" -#: src/Module/Settings/Connectors.php:169 -#: src/Module/Settings/Connectors.php:170 -msgid "OStatus (GNU Social)" -msgstr "" - -#: src/Module/Settings/Connectors.php:182 +#: src/Module/Settings/Connectors.php:167 msgid "Email access is disabled on this site." msgstr "Přístup k e-mailu je na tomto serveru zakázán." -#: src/Module/Settings/Connectors.php:197 -#: src/Module/Settings/Connectors.php:244 +#: src/Module/Settings/Connectors.php:182 +#: src/Module/Settings/Connectors.php:233 msgid "None" msgstr "Žádné" -#: src/Module/Settings/Connectors.php:209 +#: src/Module/Settings/Connectors.php:186 +msgid "Default (Mastodon will display the title and a link to the post)" +msgstr "" + +#: src/Module/Settings/Connectors.php:187 +msgid "" +"Use the summary (Mastodon and some others will treat it as content warning)" +msgstr "" + +#: src/Module/Settings/Connectors.php:188 +msgid "Embed the title in the body" +msgstr "" + +#: src/Module/Settings/Connectors.php:199 msgid "General Social Media Settings" msgstr "Obecná nastavení sociálních sítí" -#: src/Module/Settings/Connectors.php:212 +#: src/Module/Settings/Connectors.php:202 msgid "Followed content scope" msgstr "" -#: src/Module/Settings/Connectors.php:214 +#: src/Module/Settings/Connectors.php:204 msgid "" "By default, conversations in which your follows participated but didn't " "start will be shown in your timeline. You can turn this behavior off, or " "expand it to the conversations in which your follows liked a post." msgstr "" -#: src/Module/Settings/Connectors.php:216 +#: src/Module/Settings/Connectors.php:206 msgid "Only conversations my follows started" msgstr "" -#: src/Module/Settings/Connectors.php:217 +#: src/Module/Settings/Connectors.php:207 msgid "Conversations my follows started or commented on (default)" msgstr "" -#: src/Module/Settings/Connectors.php:218 +#: src/Module/Settings/Connectors.php:208 msgid "Any conversation my follows interacted with, including likes" msgstr "" -#: src/Module/Settings/Connectors.php:221 +#: src/Module/Settings/Connectors.php:211 msgid "Collapse sensitive posts" msgstr "" -#: src/Module/Settings/Connectors.php:221 +#: src/Module/Settings/Connectors.php:211 msgid "" "If a post is marked as \"sensitive\", it will be displayed in a collapsed " "state, if this option is enabled." msgstr "" -#: src/Module/Settings/Connectors.php:222 +#: src/Module/Settings/Connectors.php:212 msgid "Enable intelligent shortening" msgstr "" -#: src/Module/Settings/Connectors.php:222 +#: src/Module/Settings/Connectors.php:212 msgid "" "Normally the system tries to find the best link to add to shortened posts. " "If disabled, every shortened post will always point to the original " "friendica post." msgstr "" -#: src/Module/Settings/Connectors.php:223 +#: src/Module/Settings/Connectors.php:213 msgid "Enable simple text shortening" msgstr "" -#: src/Module/Settings/Connectors.php:223 +#: src/Module/Settings/Connectors.php:213 msgid "" "Normally the system shortens posts at the next line feed. If this option is " "enabled then the system will shorten the text at the maximum character " "limit." msgstr "" -#: src/Module/Settings/Connectors.php:224 +#: src/Module/Settings/Connectors.php:214 msgid "Attach the link title" msgstr "" -#: src/Module/Settings/Connectors.php:224 +#: src/Module/Settings/Connectors.php:214 msgid "" "When activated, the title of the attached link will be added as a title on " "posts to Diaspora. This is mostly helpful with \"remote-self\" contacts that" " share feed content." msgstr "" -#: src/Module/Settings/Connectors.php:225 +#: src/Module/Settings/Connectors.php:215 msgid "API: Use spoiler field as title" msgstr "" -#: src/Module/Settings/Connectors.php:225 +#: src/Module/Settings/Connectors.php:215 msgid "" "When activated, the \"spoiler_text\" field in the API will be used for the " "title on standalone posts. When deactivated it will be used for spoiler " "text. For comments it will always be used for spoiler text." msgstr "" -#: src/Module/Settings/Connectors.php:226 +#: src/Module/Settings/Connectors.php:216 msgid "API: Automatically links at the end of the post as attached posts" msgstr "" -#: src/Module/Settings/Connectors.php:226 +#: src/Module/Settings/Connectors.php:216 msgid "" "When activated, added links at the end of the post react the same way as " "added links in the web interface." msgstr "" -#: src/Module/Settings/Connectors.php:227 +#: src/Module/Settings/Connectors.php:217 +msgid "Article Mode" +msgstr "" + +#: src/Module/Settings/Connectors.php:217 +msgid "" +"Controls how posts with titles are transmitted. Mastodon and its forks don't" +" display the content of these posts if the post is created in the correct " +"(default) way." +msgstr "" + +#: src/Module/Settings/Connectors.php:218 msgid "Your legacy ActivityPub/GNU Social account" msgstr "" -#: src/Module/Settings/Connectors.php:227 +#: src/Module/Settings/Connectors.php:218 msgid "" "If you enter your old account name from an ActivityPub based system or your " "GNU Social/Statusnet account name here (in the format user@domain.tld), your" " contacts will be added automatically. The field will be emptied when done." msgstr "" -#: src/Module/Settings/Connectors.php:229 -msgid "Repair OStatus subscriptions" -msgstr "Opravit odběry z OStatus" - -#: src/Module/Settings/Connectors.php:233 +#: src/Module/Settings/Connectors.php:222 msgid "Email/Mailbox Setup" msgstr "Nastavení e-mailu" -#: src/Module/Settings/Connectors.php:234 +#: src/Module/Settings/Connectors.php:223 msgid "" "If you wish to communicate with email contacts using this service " "(optional), please specify how to connect to your mailbox." msgstr "Pokud chcete komunikovat pomocí této služby s vašimi kontakty z e-mailu (volitelné), uveďte, jak se připojit k Vaší e-mailové schránce." -#: src/Module/Settings/Connectors.php:235 +#: src/Module/Settings/Connectors.php:224 msgid "Last successful email check:" msgstr "Poslední úspěšná kontrola e-mailu:" -#: src/Module/Settings/Connectors.php:237 +#: src/Module/Settings/Connectors.php:226 msgid "IMAP server name:" msgstr "Jméno IMAP serveru:" -#: src/Module/Settings/Connectors.php:238 +#: src/Module/Settings/Connectors.php:227 msgid "IMAP port:" msgstr "IMAP port:" -#: src/Module/Settings/Connectors.php:239 +#: src/Module/Settings/Connectors.php:228 msgid "Security:" msgstr "Zabezpečení:" -#: src/Module/Settings/Connectors.php:240 +#: src/Module/Settings/Connectors.php:229 msgid "Email login name:" msgstr "Přihlašovací jméno k e-mailu:" -#: src/Module/Settings/Connectors.php:241 +#: src/Module/Settings/Connectors.php:230 msgid "Email password:" msgstr "Heslo k e-mailu:" -#: src/Module/Settings/Connectors.php:242 +#: src/Module/Settings/Connectors.php:231 msgid "Reply-to address:" msgstr "Odpovědět na adresu:" -#: src/Module/Settings/Connectors.php:243 +#: src/Module/Settings/Connectors.php:232 msgid "Send public posts to all email contacts:" msgstr "Poslat veřejné příspěvky na všechny e-mailové kontakty:" -#: src/Module/Settings/Connectors.php:244 +#: src/Module/Settings/Connectors.php:233 msgid "Action after import:" msgstr "Akce po importu:" -#: src/Module/Settings/Connectors.php:244 +#: src/Module/Settings/Connectors.php:233 msgid "Move to folder" msgstr "Přesunout do složky" -#: src/Module/Settings/Connectors.php:245 +#: src/Module/Settings/Connectors.php:234 msgid "Move to folder:" msgstr "Přesunout do složky:" -#: src/Module/Settings/Delegation.php:73 +#: src/Module/Settings/Delegation.php:59 msgid "Delegation successfully granted." msgstr "" -#: src/Module/Settings/Delegation.php:75 +#: src/Module/Settings/Delegation.php:61 msgid "Parent user not found, unavailable or password doesn't match." msgstr "" -#: src/Module/Settings/Delegation.php:79 +#: src/Module/Settings/Delegation.php:65 msgid "Delegation successfully revoked." msgstr "" -#: src/Module/Settings/Delegation.php:98 -#: src/Module/Settings/Delegation.php:120 +#: src/Module/Settings/Delegation.php:84 +#: src/Module/Settings/Delegation.php:106 msgid "" "Delegated administrators can view but not change delegation permissions." msgstr "" -#: src/Module/Settings/Delegation.php:112 +#: src/Module/Settings/Delegation.php:98 msgid "Delegate user not found." msgstr "" -#: src/Module/Settings/Delegation.php:169 +#: src/Module/Settings/Delegation.php:155 msgid "No parent user" msgstr "Žádný rodičovský uživatel" -#: src/Module/Settings/Delegation.php:180 -#: src/Module/Settings/Delegation.php:191 +#: src/Module/Settings/Delegation.php:166 +#: src/Module/Settings/Delegation.php:177 msgid "Parent User" msgstr "Rodičovský uživatel" -#: src/Module/Settings/Delegation.php:188 +#: src/Module/Settings/Delegation.php:174 msgid "Additional Accounts" msgstr "" -#: src/Module/Settings/Delegation.php:189 +#: src/Module/Settings/Delegation.php:175 msgid "" "Register additional accounts that are automatically connected to your " "existing account so you can manage them from this account." msgstr "" -#: src/Module/Settings/Delegation.php:190 +#: src/Module/Settings/Delegation.php:176 msgid "Register an additional account" msgstr "" -#: src/Module/Settings/Delegation.php:192 +#: src/Module/Settings/Delegation.php:178 msgid "" "Parent users have total control about this account, including the account " "settings. Please double check whom you give this access." msgstr "Rodičovští uživatelé mají naprostou kontrolu nad tímto účtem, včetně nastavení účtu. Prosím překontrolujte, komu tento přístup dáváte." -#: src/Module/Settings/Delegation.php:195 +#: src/Module/Settings/Delegation.php:181 msgid "Delegates" msgstr "Delegáti" -#: src/Module/Settings/Delegation.php:196 +#: src/Module/Settings/Delegation.php:182 msgid "" "Delegates are able to manage all aspects of this account/page except for " "basic account settings. Please do not delegate your personal account to " "anybody that you do not trust completely." msgstr "Delegáti jsou schopni řídit všechny aspekty tohoto účtu/stránky, kromě základních nastavení účtu. Prosím, nedelegujte svůj osobní účet nikomu, komu zcela nedůvěřujete." -#: src/Module/Settings/Delegation.php:197 +#: src/Module/Settings/Delegation.php:183 msgid "Existing Page Delegates" msgstr "Stávající delegáti stránky " -#: src/Module/Settings/Delegation.php:198 +#: src/Module/Settings/Delegation.php:184 msgid "Potential Delegates" msgstr "Potenciální delegáti" -#: src/Module/Settings/Delegation.php:199 +#: src/Module/Settings/Delegation.php:185 msgid "No entries." msgstr "Žádné záznamy." -#: src/Module/Settings/Display.php:183 +#: src/Module/Settings/Display.php:169 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:209 #, php-format msgid "%s - (Unsupported)" msgstr "%s - (Nepodporováno)" -#: src/Module/Settings/Display.php:260 +#: src/Module/Settings/Display.php:246 msgid "No preview" msgstr "" -#: src/Module/Settings/Display.php:261 +#: src/Module/Settings/Display.php:247 msgid "No image" msgstr "" -#: src/Module/Settings/Display.php:262 +#: src/Module/Settings/Display.php:248 msgid "Small Image" msgstr "" -#: src/Module/Settings/Display.php:263 +#: src/Module/Settings/Display.php:249 msgid "Large Image" msgstr "" -#: src/Module/Settings/Display.php:308 +#: src/Module/Settings/Display.php:294 msgid "Display Settings" msgstr "Nastavení zobrazení" -#: src/Module/Settings/Display.php:310 +#: src/Module/Settings/Display.php:296 msgid "General Theme Settings" msgstr "Obecná nastavení motivu" -#: src/Module/Settings/Display.php:311 +#: src/Module/Settings/Display.php:297 msgid "Custom Theme Settings" msgstr "Vlastní nastavení motivu" -#: src/Module/Settings/Display.php:312 +#: src/Module/Settings/Display.php:298 msgid "Content Settings" msgstr "Nastavení obsahu" -#: src/Module/Settings/Display.php:313 view/theme/duepuntozero/config.php:86 -#: view/theme/frio/config.php:151 view/theme/quattro/config.php:88 -#: view/theme/vier/config.php:136 +#: src/Module/Settings/Display.php:299 view/theme/duepuntozero/config.php:74 +#: view/theme/frio/config.php:139 view/theme/quattro/config.php:76 +#: view/theme/vier/config.php:124 msgid "Theme settings" msgstr "Nastavení motivu" -#: src/Module/Settings/Display.php:314 +#: src/Module/Settings/Display.php:300 msgid "Timelines" msgstr "" -#: src/Module/Settings/Display.php:321 +#: src/Module/Settings/Display.php:307 msgid "Display Theme:" msgstr "Motiv zobrazení:" -#: src/Module/Settings/Display.php:322 +#: src/Module/Settings/Display.php:308 msgid "Mobile Theme:" msgstr "Mobilní motiv:" -#: src/Module/Settings/Display.php:325 +#: src/Module/Settings/Display.php:311 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:311 src/Module/Settings/Display.php:312 msgid "Maximum of 100 items" msgstr "Maximum 100 položek" -#: src/Module/Settings/Display.php:326 +#: src/Module/Settings/Display.php:312 msgid "Number of items to display per page when viewed from mobile device:" msgstr "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:313 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:313 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:314 msgid "Display emoticons" msgstr "" -#: src/Module/Settings/Display.php:328 +#: src/Module/Settings/Display.php:314 msgid "When enabled, emoticons are replaced with matching symbols." msgstr "" -#: src/Module/Settings/Display.php:329 +#: src/Module/Settings/Display.php:315 msgid "Infinite scroll" msgstr "Nekonečné posouvání" -#: src/Module/Settings/Display.php:329 +#: src/Module/Settings/Display.php:315 msgid "Automatic fetch new items when reaching the page end." msgstr "" -#: src/Module/Settings/Display.php:330 +#: src/Module/Settings/Display.php:316 msgid "Enable Smart Threading" msgstr "" -#: src/Module/Settings/Display.php:330 +#: src/Module/Settings/Display.php:316 msgid "Enable the automatic suppression of extraneous thread indentation." msgstr "" -#: src/Module/Settings/Display.php:331 +#: src/Module/Settings/Display.php:317 msgid "Display the Dislike feature" msgstr "" -#: src/Module/Settings/Display.php:331 +#: src/Module/Settings/Display.php:317 msgid "" "Display the Dislike button and dislike reactions on posts and comments." msgstr "" -#: src/Module/Settings/Display.php:332 +#: src/Module/Settings/Display.php:318 msgid "Display the resharer" msgstr "" -#: src/Module/Settings/Display.php:332 +#: src/Module/Settings/Display.php:318 msgid "Display the first resharer as icon and text on a reshared item." msgstr "" -#: src/Module/Settings/Display.php:333 +#: src/Module/Settings/Display.php:319 msgid "Stay local" msgstr "" -#: src/Module/Settings/Display.php:333 +#: src/Module/Settings/Display.php:319 msgid "Don't go to a remote system when following a contact link." msgstr "" -#: src/Module/Settings/Display.php:334 +#: src/Module/Settings/Display.php:320 msgid "Show the post deletion checkbox" msgstr "" -#: src/Module/Settings/Display.php:334 +#: src/Module/Settings/Display.php:320 msgid "Display the checkbox for the post deletion on the network page." msgstr "" -#: src/Module/Settings/Display.php:335 +#: src/Module/Settings/Display.php:321 msgid "DIsplay the event list" msgstr "" -#: src/Module/Settings/Display.php:335 +#: src/Module/Settings/Display.php:321 msgid "Display the birthday reminder and event list on the network page." msgstr "" -#: src/Module/Settings/Display.php:336 +#: src/Module/Settings/Display.php:322 msgid "Link preview mode" msgstr "" -#: src/Module/Settings/Display.php:336 +#: src/Module/Settings/Display.php:322 msgid "Appearance of the link preview that is added to each post with a link." msgstr "" -#: src/Module/Settings/Display.php:341 +#: src/Module/Settings/Display.php:327 msgid "Bookmark" msgstr "" -#: src/Module/Settings/Display.php:343 +#: src/Module/Settings/Display.php:329 msgid "" "Enable timelines that you want to see in the channels widget. Bookmark " "timelines that you want to see in the top menu." msgstr "" -#: src/Module/Settings/Display.php:345 +#: src/Module/Settings/Display.php:331 msgid "Channel languages:" msgstr "" -#: src/Module/Settings/Display.php:345 +#: src/Module/Settings/Display.php:331 msgid "Select all languages that you want to see in your channels." msgstr "" -#: src/Module/Settings/Display.php:347 +#: src/Module/Settings/Display.php:333 msgid "Beginning of week:" msgstr "Začátek týdne:" -#: src/Module/Settings/Display.php:348 +#: src/Module/Settings/Display.php:334 msgid "Default calendar view:" msgstr "" -#: src/Module/Settings/Features.php:73 +#: src/Module/Settings/Features.php:59 msgid "Additional Features" msgstr "Dodatečné vlastnosti" -#: src/Module/Settings/OAuth.php:71 +#: src/Module/Settings/OAuth.php:57 msgid "Connected Apps" msgstr "Připojené aplikace" -#: src/Module/Settings/OAuth.php:75 +#: src/Module/Settings/OAuth.php:61 msgid "Remove authorization" msgstr "Odstranit oprávnění" -#: src/Module/Settings/Profile/Index.php:116 +#: src/Module/Settings/Profile/Index.php:102 msgid "Display Name is required." msgstr "" -#: src/Module/Settings/Profile/Index.php:167 +#: src/Module/Settings/Profile/Index.php:156 msgid "Profile couldn't be updated." msgstr "" -#: src/Module/Settings/Profile/Index.php:205 -#: src/Module/Settings/Profile/Index.php:226 +#: src/Module/Settings/Profile/Index.php:196 +#: src/Module/Settings/Profile/Index.php:217 msgid "Label:" msgstr "" -#: src/Module/Settings/Profile/Index.php:206 -#: src/Module/Settings/Profile/Index.php:227 +#: src/Module/Settings/Profile/Index.php:197 +#: src/Module/Settings/Profile/Index.php:218 msgid "Value:" msgstr "" -#: src/Module/Settings/Profile/Index.php:217 -#: src/Module/Settings/Profile/Index.php:238 +#: src/Module/Settings/Profile/Index.php:208 +#: src/Module/Settings/Profile/Index.php:229 msgid "Field Permissions" msgstr "" -#: src/Module/Settings/Profile/Index.php:218 -#: src/Module/Settings/Profile/Index.php:239 +#: src/Module/Settings/Profile/Index.php:209 +#: src/Module/Settings/Profile/Index.php:230 msgid "(click to open/close)" msgstr "(klikněte pro otevření/zavření)" -#: src/Module/Settings/Profile/Index.php:224 +#: src/Module/Settings/Profile/Index.php:215 msgid "Add a new profile field" msgstr "" -#: src/Module/Settings/Profile/Index.php:247 +#: src/Module/Settings/Profile/Index.php:238 msgid "" "The homepage is verified. A rel=\"me\" link back to your Friendica profile " "page was found on the homepage." msgstr "" -#: src/Module/Settings/Profile/Index.php:249 +#: src/Module/Settings/Profile/Index.php:240 #, php-format msgid "" "To verify your homepage, add a rel=\"me\" link to it, pointing to your " "profile URL (%s)." msgstr "" -#: src/Module/Settings/Profile/Index.php:255 +#: src/Module/Settings/Profile/Index.php:246 msgid "Profile Actions" msgstr "Akce profilu" -#: src/Module/Settings/Profile/Index.php:256 +#: src/Module/Settings/Profile/Index.php:247 msgid "Edit Profile Details" msgstr "Upravit podrobnosti profilu " -#: src/Module/Settings/Profile/Index.php:258 +#: src/Module/Settings/Profile/Index.php:249 msgid "Change Profile Photo" msgstr "Změnit profilovou fotku" -#: src/Module/Settings/Profile/Index.php:261 +#: src/Module/Settings/Profile/Index.php:252 msgid "Profile picture" msgstr "Profilový obrázek" -#: src/Module/Settings/Profile/Index.php:262 +#: src/Module/Settings/Profile/Index.php:253 msgid "Location" msgstr "Poloha" -#: src/Module/Settings/Profile/Index.php:263 src/Util/Temporal.php:97 -#: src/Util/Temporal.php:99 +#: src/Module/Settings/Profile/Index.php:254 src/Util/Temporal.php:83 +#: src/Util/Temporal.php:85 msgid "Miscellaneous" msgstr "Různé" -#: src/Module/Settings/Profile/Index.php:264 +#: src/Module/Settings/Profile/Index.php:255 msgid "Custom Profile Fields" msgstr "" -#: src/Module/Settings/Profile/Index.php:265 src/Module/Welcome.php:58 +#: src/Module/Settings/Profile/Index.php:256 src/Module/Welcome.php:44 msgid "Upload Profile Photo" msgstr "Nahrát profilovou fotku" -#: src/Module/Settings/Profile/Index.php:266 +#: src/Module/Settings/Profile/Index.php:257 #, php-format msgid "" "

Custom fields appear on your profile page.

\n" @@ -11028,396 +11035,396 @@ msgid "" "\t\t\t\t

Non-public fields can only be seen by the selected Friendica contacts or the Friendica contacts in the selected circles.

" msgstr "" -#: src/Module/Settings/Profile/Index.php:286 +#: src/Module/Settings/Profile/Index.php:277 msgid "Street Address:" msgstr "Ulice:" -#: src/Module/Settings/Profile/Index.php:287 +#: src/Module/Settings/Profile/Index.php:278 msgid "Locality/City:" msgstr "Poloha/město:" -#: src/Module/Settings/Profile/Index.php:288 +#: src/Module/Settings/Profile/Index.php:279 msgid "Region/State:" msgstr "Region / stát:" -#: src/Module/Settings/Profile/Index.php:289 +#: src/Module/Settings/Profile/Index.php:280 msgid "Postal/Zip Code:" msgstr "PSČ:" -#: src/Module/Settings/Profile/Index.php:290 +#: src/Module/Settings/Profile/Index.php:281 msgid "Country:" msgstr "Země:" -#: src/Module/Settings/Profile/Index.php:292 +#: src/Module/Settings/Profile/Index.php:283 msgid "XMPP (Jabber) address:" msgstr "Adresa XMPP (Jabber):" -#: src/Module/Settings/Profile/Index.php:292 +#: src/Module/Settings/Profile/Index.php:283 msgid "" "The XMPP address will be published so that people can follow you there." msgstr "" -#: src/Module/Settings/Profile/Index.php:293 +#: src/Module/Settings/Profile/Index.php:284 msgid "Matrix (Element) address:" msgstr "" -#: src/Module/Settings/Profile/Index.php:293 +#: src/Module/Settings/Profile/Index.php:284 msgid "" "The Matrix address will be published so that people can follow you there." msgstr "" -#: src/Module/Settings/Profile/Index.php:294 +#: src/Module/Settings/Profile/Index.php:285 msgid "Homepage URL:" msgstr "Odkaz na domovskou stránku:" -#: src/Module/Settings/Profile/Index.php:295 +#: src/Module/Settings/Profile/Index.php:286 msgid "Public Keywords:" msgstr "Veřejná klíčová slova:" -#: src/Module/Settings/Profile/Index.php:295 +#: src/Module/Settings/Profile/Index.php:286 msgid "(Used for suggesting potential friends, can be seen by others)" msgstr "(Používá se pro doporučování potenciálních přátel, může být viděno ostatními)" -#: src/Module/Settings/Profile/Index.php:296 +#: src/Module/Settings/Profile/Index.php:287 msgid "Private Keywords:" msgstr "Soukromá klíčová slova:" -#: src/Module/Settings/Profile/Index.php:296 +#: src/Module/Settings/Profile/Index.php:287 msgid "(Used for searching profiles, never shown to others)" msgstr "(Používá se pro vyhledávání profilů, není nikdy zobrazeno ostatním)" -#: src/Module/Settings/Profile/Photo/Crop.php:107 -#: src/Module/Settings/Profile/Photo/Crop.php:125 -#: src/Module/Settings/Profile/Photo/Crop.php:143 -#: src/Module/Settings/Profile/Photo/Index.php:100 +#: src/Module/Settings/Profile/Photo/Crop.php:93 +#: src/Module/Settings/Profile/Photo/Crop.php:111 +#: src/Module/Settings/Profile/Photo/Crop.php:129 +#: src/Module/Settings/Profile/Photo/Index.php:86 #, php-format msgid "Image size reduction [%s] failed." msgstr "Nepodařilo se snížit velikost obrázku [%s]." -#: src/Module/Settings/Profile/Photo/Crop.php:150 +#: src/Module/Settings/Profile/Photo/Crop.php:136 msgid "" "Shift-reload the page or clear browser cache if the new photo does not " "display immediately." msgstr "Znovu načtěte stránku (Shift+F5) nebo vymažte cache prohlížeče, pokud se nová fotka nezobrazí okamžitě." -#: src/Module/Settings/Profile/Photo/Crop.php:155 +#: src/Module/Settings/Profile/Photo/Crop.php:141 msgid "Unable to process image" msgstr "Obrázek nelze zpracovat " -#: src/Module/Settings/Profile/Photo/Crop.php:174 +#: src/Module/Settings/Profile/Photo/Crop.php:160 msgid "Photo not found." msgstr "" -#: src/Module/Settings/Profile/Photo/Crop.php:196 +#: src/Module/Settings/Profile/Photo/Crop.php:182 msgid "Profile picture successfully updated." msgstr "" -#: src/Module/Settings/Profile/Photo/Crop.php:222 -#: src/Module/Settings/Profile/Photo/Crop.php:226 +#: src/Module/Settings/Profile/Photo/Crop.php:208 +#: src/Module/Settings/Profile/Photo/Crop.php:212 msgid "Crop Image" msgstr "Oříznout obrázek" -#: src/Module/Settings/Profile/Photo/Crop.php:223 +#: src/Module/Settings/Profile/Photo/Crop.php:209 msgid "Please adjust the image cropping for optimum viewing." msgstr "Prosím, ořízněte tento obrázek pro optimální zobrazení." -#: src/Module/Settings/Profile/Photo/Crop.php:225 +#: src/Module/Settings/Profile/Photo/Crop.php:211 msgid "Use Image As Is" msgstr "" -#: src/Module/Settings/Profile/Photo/Index.php:46 +#: src/Module/Settings/Profile/Photo/Index.php:32 msgid "Missing uploaded image." msgstr "" -#: src/Module/Settings/Profile/Photo/Index.php:123 +#: src/Module/Settings/Profile/Photo/Index.php:109 msgid "Profile Picture Settings" msgstr "" -#: src/Module/Settings/Profile/Photo/Index.php:124 +#: src/Module/Settings/Profile/Photo/Index.php:110 msgid "Current Profile Picture" msgstr "" -#: src/Module/Settings/Profile/Photo/Index.php:125 +#: src/Module/Settings/Profile/Photo/Index.php:111 msgid "Upload Profile Picture" msgstr "" -#: src/Module/Settings/Profile/Photo/Index.php:126 +#: src/Module/Settings/Profile/Photo/Index.php:112 msgid "Upload Picture:" msgstr "" -#: src/Module/Settings/Profile/Photo/Index.php:131 +#: src/Module/Settings/Profile/Photo/Index.php:117 msgid "or" msgstr "nebo" -#: src/Module/Settings/Profile/Photo/Index.php:133 +#: src/Module/Settings/Profile/Photo/Index.php:119 msgid "skip this step" msgstr "tento krok přeskočte" -#: src/Module/Settings/Profile/Photo/Index.php:135 +#: src/Module/Settings/Profile/Photo/Index.php:121 msgid "select a photo from your photo albums" msgstr "si vyberte fotku z vašich fotoalb" -#: src/Module/Settings/RemoveMe.php:76 +#: src/Module/Settings/RemoveMe.php:62 msgid "" "There was a validation error, please make sure you're logged in with the " "account you want to remove and try again." msgstr "" -#: src/Module/Settings/RemoveMe.php:76 +#: src/Module/Settings/RemoveMe.php:62 msgid "If this error persists, please contact your administrator." msgstr "" -#: src/Module/Settings/RemoveMe.php:90 -#: src/Navigation/Notifications/Repository/Notify.php:471 -#: src/Navigation/Notifications/Repository/Notify.php:492 +#: src/Module/Settings/RemoveMe.php:76 +#: src/Navigation/Notifications/Repository/Notify.php:457 +#: src/Navigation/Notifications/Repository/Notify.php:478 msgid "[Friendica System Notify]" msgstr "[Systémové oznámení Friendica]" -#: src/Module/Settings/RemoveMe.php:90 +#: src/Module/Settings/RemoveMe.php:76 msgid "User deleted their account" msgstr "Uživatel si smazal účet" -#: src/Module/Settings/RemoveMe.php:91 +#: src/Module/Settings/RemoveMe.php:77 msgid "" "On your Friendica node an user deleted their account. Please ensure that " "their data is removed from the backups." msgstr "Uživatel na vašem serveru Friendica smazal svůj účet. Prosím ujistěte se, ře jsou jeho data odstraněna ze záloh dat." -#: src/Module/Settings/RemoveMe.php:92 +#: src/Module/Settings/RemoveMe.php:78 #, php-format msgid "The user id is %d" msgstr "Uživatelské ID je %d" -#: src/Module/Settings/RemoveMe.php:105 +#: src/Module/Settings/RemoveMe.php:91 msgid "Your account has been successfully removed. Bye bye!" msgstr "" -#: src/Module/Settings/RemoveMe.php:130 +#: src/Module/Settings/RemoveMe.php:116 msgid "Remove My Account" msgstr "Odstranit můj účet" -#: src/Module/Settings/RemoveMe.php:131 +#: src/Module/Settings/RemoveMe.php:117 msgid "" "This will completely remove your account. Once this has been done it is not " "recoverable." msgstr "Tímto bude kompletně odstraněn váš účet. Jakmile bude účet odstraněn, nebude už možné ho obnovit." -#: src/Module/Settings/RemoveMe.php:136 +#: src/Module/Settings/RemoveMe.php:122 msgid "Please enter your password for verification:" msgstr "Prosím, zadejte své heslo pro ověření:" -#: src/Module/Settings/Server/Action.php:60 +#: src/Module/Settings/Server/Action.php:46 msgid "Do you want to ignore this server?" msgstr "" -#: src/Module/Settings/Server/Action.php:64 +#: src/Module/Settings/Server/Action.php:50 msgid "Do you want to unignore this server?" msgstr "" -#: src/Module/Settings/Server/Action.php:74 -#: src/Module/Settings/Server/Index.php:104 +#: src/Module/Settings/Server/Action.php:60 +#: src/Module/Settings/Server/Index.php:90 msgid "Remote server settings" msgstr "" -#: src/Module/Settings/Server/Action.php:77 +#: src/Module/Settings/Server/Action.php:63 msgid "Server URL" msgstr "" -#: src/Module/Settings/Server/Index.php:78 +#: src/Module/Settings/Server/Index.php:64 msgid "Settings saved" msgstr "" -#: src/Module/Settings/Server/Index.php:105 +#: src/Module/Settings/Server/Index.php:91 msgid "" "Here you can find all the remote servers you have taken individual " "moderation actions against. For a list of servers your node has blocked, " "please check out the Information page." msgstr "" -#: src/Module/Settings/Server/Index.php:110 +#: src/Module/Settings/Server/Index.php:96 msgid "Delete all your settings for the remote server" msgstr "" -#: src/Module/Settings/Server/Index.php:111 +#: src/Module/Settings/Server/Index.php:97 msgid "Save changes" msgstr "" -#: src/Module/Settings/TwoFactor/AppSpecific.php:69 -#: src/Module/Settings/TwoFactor/Recovery.php:67 -#: src/Module/Settings/TwoFactor/Trusted.php:70 -#: src/Module/Settings/TwoFactor/Verify.php:72 +#: src/Module/Settings/TwoFactor/AppSpecific.php:55 +#: src/Module/Settings/TwoFactor/Recovery.php:53 +#: src/Module/Settings/TwoFactor/Trusted.php:56 +#: src/Module/Settings/TwoFactor/Verify.php:58 msgid "Please enter your password to access this page." msgstr "Pro přístup k této stránce prosím zadejte své heslo." -#: src/Module/Settings/TwoFactor/AppSpecific.php:87 +#: src/Module/Settings/TwoFactor/AppSpecific.php:73 msgid "App-specific password generation failed: The description is empty." msgstr "" -#: src/Module/Settings/TwoFactor/AppSpecific.php:90 +#: src/Module/Settings/TwoFactor/AppSpecific.php:76 msgid "" "App-specific password generation failed: This description already exists." msgstr "" -#: src/Module/Settings/TwoFactor/AppSpecific.php:94 +#: src/Module/Settings/TwoFactor/AppSpecific.php:80 msgid "New app-specific password generated." msgstr "" -#: src/Module/Settings/TwoFactor/AppSpecific.php:100 +#: src/Module/Settings/TwoFactor/AppSpecific.php:86 msgid "App-specific passwords successfully revoked." msgstr "" -#: src/Module/Settings/TwoFactor/AppSpecific.php:110 +#: src/Module/Settings/TwoFactor/AppSpecific.php:96 msgid "App-specific password successfully revoked." msgstr "" -#: src/Module/Settings/TwoFactor/AppSpecific.php:131 +#: src/Module/Settings/TwoFactor/AppSpecific.php:117 msgid "Two-factor app-specific passwords" msgstr "" -#: src/Module/Settings/TwoFactor/AppSpecific.php:133 +#: src/Module/Settings/TwoFactor/AppSpecific.php:119 msgid "" "

App-specific passwords are randomly generated passwords used instead your" " regular password to authenticate your account on third-party applications " "that don't support two-factor authentication.

" msgstr "" -#: src/Module/Settings/TwoFactor/AppSpecific.php:134 +#: src/Module/Settings/TwoFactor/AppSpecific.php:120 msgid "" "Make sure to copy your new app-specific password now. You won’t be able to " "see it again!" msgstr "" -#: src/Module/Settings/TwoFactor/AppSpecific.php:138 +#: src/Module/Settings/TwoFactor/AppSpecific.php:124 msgid "Last Used" msgstr "" -#: src/Module/Settings/TwoFactor/AppSpecific.php:139 +#: src/Module/Settings/TwoFactor/AppSpecific.php:125 msgid "Revoke" msgstr "" -#: src/Module/Settings/TwoFactor/AppSpecific.php:140 +#: src/Module/Settings/TwoFactor/AppSpecific.php:126 msgid "Revoke All" msgstr "" -#: src/Module/Settings/TwoFactor/AppSpecific.php:143 +#: src/Module/Settings/TwoFactor/AppSpecific.php:129 msgid "" "When you generate a new app-specific password, you must use it right away, " "it will be shown to you once after you generate it." msgstr "" -#: src/Module/Settings/TwoFactor/AppSpecific.php:144 +#: src/Module/Settings/TwoFactor/AppSpecific.php:130 msgid "Generate new app-specific password" msgstr "" -#: src/Module/Settings/TwoFactor/AppSpecific.php:145 +#: src/Module/Settings/TwoFactor/AppSpecific.php:131 msgid "Friendiqa on my Fairphone 2..." msgstr "Friendiqa na mém Fairphone 2..." -#: src/Module/Settings/TwoFactor/AppSpecific.php:146 +#: src/Module/Settings/TwoFactor/AppSpecific.php:132 msgid "Generate" msgstr "" -#: src/Module/Settings/TwoFactor/Index.php:88 +#: src/Module/Settings/TwoFactor/Index.php:74 msgid "Two-factor authentication successfully disabled." msgstr "Dvoufázové ověřování úspěšně zakázáno." -#: src/Module/Settings/TwoFactor/Index.php:141 +#: src/Module/Settings/TwoFactor/Index.php:127 msgid "" "

Use an application on a mobile device to get two-factor authentication " "codes when prompted on login.

" msgstr "

Pomocí aplikace na mobilním zařízení získejte při přihlášení kódy pro dvoufázové ověřování.

" -#: src/Module/Settings/TwoFactor/Index.php:145 +#: src/Module/Settings/TwoFactor/Index.php:131 msgid "Authenticator app" msgstr "Autentizační aplikace" -#: src/Module/Settings/TwoFactor/Index.php:146 +#: src/Module/Settings/TwoFactor/Index.php:132 msgid "Configured" msgstr "Nakonfigurováno" -#: src/Module/Settings/TwoFactor/Index.php:146 +#: src/Module/Settings/TwoFactor/Index.php:132 msgid "Not Configured" msgstr "Nenakonfigurováno" -#: src/Module/Settings/TwoFactor/Index.php:147 +#: src/Module/Settings/TwoFactor/Index.php:133 msgid "

You haven't finished configuring your authenticator app.

" msgstr "

Nedokončil/a jste konfiguraci vaší autentizační aplikace.

" -#: src/Module/Settings/TwoFactor/Index.php:148 +#: src/Module/Settings/TwoFactor/Index.php:134 msgid "

Your authenticator app is correctly configured.

" msgstr "

Vaše autentizační aplikace je správně nakonfigurována.

" -#: src/Module/Settings/TwoFactor/Index.php:150 +#: src/Module/Settings/TwoFactor/Index.php:136 msgid "Recovery codes" msgstr "Záložní kódy" -#: src/Module/Settings/TwoFactor/Index.php:151 +#: src/Module/Settings/TwoFactor/Index.php:137 msgid "Remaining valid codes" msgstr "Zbývající platné kódy" -#: src/Module/Settings/TwoFactor/Index.php:153 +#: src/Module/Settings/TwoFactor/Index.php:139 msgid "" "

These one-use codes can replace an authenticator app code in case you " "have lost access to it.

" msgstr "

Tyto jednorázové kódy mohou nahradit kód autentizační aplikace, pokud k ní ztratíte přístup.

" -#: src/Module/Settings/TwoFactor/Index.php:155 +#: src/Module/Settings/TwoFactor/Index.php:141 msgid "App-specific passwords" msgstr "" -#: src/Module/Settings/TwoFactor/Index.php:156 +#: src/Module/Settings/TwoFactor/Index.php:142 msgid "Generated app-specific passwords" msgstr "" -#: src/Module/Settings/TwoFactor/Index.php:158 +#: src/Module/Settings/TwoFactor/Index.php:144 msgid "" "

These randomly generated passwords allow you to authenticate on apps not " "supporting two-factor authentication.

" msgstr "" -#: src/Module/Settings/TwoFactor/Index.php:161 +#: src/Module/Settings/TwoFactor/Index.php:147 msgid "Current password:" msgstr "Aktuální heslo:" -#: src/Module/Settings/TwoFactor/Index.php:161 +#: src/Module/Settings/TwoFactor/Index.php:147 msgid "" "You need to provide your current password to change two-factor " "authentication settings." msgstr "Pro změnu nastavení dvoufázového ověřování musíte poskytnout vaše aktuální heslo." -#: src/Module/Settings/TwoFactor/Index.php:162 +#: src/Module/Settings/TwoFactor/Index.php:148 msgid "Enable two-factor authentication" msgstr "Povolit dvoufázové ověřování" -#: src/Module/Settings/TwoFactor/Index.php:163 +#: src/Module/Settings/TwoFactor/Index.php:149 msgid "Disable two-factor authentication" msgstr "Zakázat dvoufázové ověřování" -#: src/Module/Settings/TwoFactor/Index.php:164 +#: src/Module/Settings/TwoFactor/Index.php:150 msgid "Show recovery codes" msgstr "Zobrazit záložní kódy" -#: src/Module/Settings/TwoFactor/Index.php:165 +#: src/Module/Settings/TwoFactor/Index.php:151 msgid "Manage app-specific passwords" msgstr "" -#: src/Module/Settings/TwoFactor/Index.php:166 +#: src/Module/Settings/TwoFactor/Index.php:152 msgid "Manage trusted browsers" msgstr "" -#: src/Module/Settings/TwoFactor/Index.php:167 +#: src/Module/Settings/TwoFactor/Index.php:153 msgid "Finish app configuration" msgstr "Dokončit konfiguraci aplikace" -#: src/Module/Settings/TwoFactor/Recovery.php:83 +#: src/Module/Settings/TwoFactor/Recovery.php:69 msgid "New recovery codes successfully generated." msgstr "Nové záložní kódy byly úspěšně vygenerovány." -#: src/Module/Settings/TwoFactor/Recovery.php:109 +#: src/Module/Settings/TwoFactor/Recovery.php:95 msgid "Two-factor recovery codes" msgstr "Dvoufázové záložní kódy" -#: src/Module/Settings/TwoFactor/Recovery.php:111 +#: src/Module/Settings/TwoFactor/Recovery.php:97 msgid "" "

Recovery codes can be used to access your account in the event you lose " "access to your device and cannot receive two-factor authentication " @@ -11426,68 +11433,68 @@ msgid "" "account.

" msgstr "

Záložní kódy mohou být použity pro přístup k vašemu účtu, pokud ztratíte přístup k vašemu zařízení a nemůžete obdržet dvoufázové autentizační kódy.

Uložte je na bezpečné místo! Pokud zratíte vaše zařízení a nemáte Záložní kódy, ztratíte přístup ke svému účtu.

" -#: src/Module/Settings/TwoFactor/Recovery.php:113 +#: src/Module/Settings/TwoFactor/Recovery.php:99 msgid "" "When you generate new recovery codes, you must copy the new codes. Your old " "codes won’t work anymore." msgstr "Když vygenerujete nové záložní kódy, musíte si zkopírovat nové kódy. Vaše staré kódy již nebudou fungovat." -#: src/Module/Settings/TwoFactor/Recovery.php:114 +#: src/Module/Settings/TwoFactor/Recovery.php:100 msgid "Generate new recovery codes" msgstr "Vygenerovat nové záložní kódy" -#: src/Module/Settings/TwoFactor/Recovery.php:116 +#: src/Module/Settings/TwoFactor/Recovery.php:102 msgid "Next: Verification" msgstr "Další: Ověření" -#: src/Module/Settings/TwoFactor/Trusted.php:87 +#: src/Module/Settings/TwoFactor/Trusted.php:73 msgid "Trusted browsers successfully removed." msgstr "" -#: src/Module/Settings/TwoFactor/Trusted.php:97 +#: src/Module/Settings/TwoFactor/Trusted.php:83 msgid "Trusted browser successfully removed." msgstr "" -#: src/Module/Settings/TwoFactor/Trusted.php:139 +#: src/Module/Settings/TwoFactor/Trusted.php:125 msgid "Two-factor Trusted Browsers" msgstr "" -#: src/Module/Settings/TwoFactor/Trusted.php:140 +#: src/Module/Settings/TwoFactor/Trusted.php:126 msgid "" "Trusted browsers are individual browsers you chose to skip two-factor " "authentication to access Friendica. Please use this feature sparingly, as it" " can negate the benefit of two-factor authentication." msgstr "" -#: src/Module/Settings/TwoFactor/Trusted.php:141 +#: src/Module/Settings/TwoFactor/Trusted.php:127 msgid "Device" msgstr "" -#: src/Module/Settings/TwoFactor/Trusted.php:142 +#: src/Module/Settings/TwoFactor/Trusted.php:128 msgid "OS" msgstr "" -#: src/Module/Settings/TwoFactor/Trusted.php:144 +#: src/Module/Settings/TwoFactor/Trusted.php:130 msgid "Trusted" msgstr "" -#: src/Module/Settings/TwoFactor/Trusted.php:145 +#: src/Module/Settings/TwoFactor/Trusted.php:131 msgid "Created At" msgstr "" -#: src/Module/Settings/TwoFactor/Trusted.php:146 +#: src/Module/Settings/TwoFactor/Trusted.php:132 msgid "Last Use" msgstr "" -#: src/Module/Settings/TwoFactor/Trusted.php:148 +#: src/Module/Settings/TwoFactor/Trusted.php:134 msgid "Remove All" msgstr "" -#: src/Module/Settings/TwoFactor/Verify.php:94 +#: src/Module/Settings/TwoFactor/Verify.php:80 msgid "Two-factor authentication successfully activated." msgstr "Dvoufázové ověření úspěšně aktivováno." -#: src/Module/Settings/TwoFactor/Verify.php:128 +#: src/Module/Settings/TwoFactor/Verify.php:114 #, php-format msgid "" "

Or you can submit the authentication settings manually:

\n" @@ -11507,105 +11514,105 @@ msgid "" "" msgstr "

Nebo můžete zadat autentizační nastavení manuálně:

\n
\n\t
Vydavatel
\n\t
%s
\n\t
Jméno účtu
\n\t
%s
\n\t
Tajný klíč
\n\t
%s
\n\t
Typ
\n\t
Založený na čase
\n\t
Počet číslic
\n\t
6
\n\t
Hashovací algoritmus
\n\t
SHA-1
\n
" -#: src/Module/Settings/TwoFactor/Verify.php:148 +#: src/Module/Settings/TwoFactor/Verify.php:134 msgid "Two-factor code verification" msgstr "Ověření dvoufázového kódu" -#: src/Module/Settings/TwoFactor/Verify.php:150 +#: src/Module/Settings/TwoFactor/Verify.php:136 msgid "" "

Please scan this QR Code with your authenticator app and submit the " "provided code.

" msgstr "

Prosím naskenujte tento QR kód vaší autentizační aplikací a zadejte poskytnutý kód.

" -#: src/Module/Settings/TwoFactor/Verify.php:152 +#: src/Module/Settings/TwoFactor/Verify.php:138 #, php-format msgid "" "

Or you can open the following URL in your mobile device:

%s

" msgstr "" -#: src/Module/Settings/TwoFactor/Verify.php:159 +#: src/Module/Settings/TwoFactor/Verify.php:145 msgid "Verify code and enable two-factor authentication" msgstr "Ověřit kód a povolit dvoufázové ověřování" -#: src/Module/Settings/UserExport.php:90 +#: src/Module/Settings/UserExport.php:76 msgid "Export account" msgstr "Exportovat účet" -#: src/Module/Settings/UserExport.php:90 +#: src/Module/Settings/UserExport.php:76 msgid "" "Export your account info and contacts. Use this to make a backup of your " "account and/or to move it to another server." msgstr "Exportujte svůj účet a své kontakty. Použijte tuto funkci pro vytvoření zálohy svého účtu a/nebo k přesunu na jiný server." -#: src/Module/Settings/UserExport.php:91 +#: src/Module/Settings/UserExport.php:77 msgid "Export all" msgstr "Exportovat vše" -#: src/Module/Settings/UserExport.php:91 +#: src/Module/Settings/UserExport.php:77 msgid "" "Export your account info, contacts and all your items as json. Could be a " "very big file, and could take a lot of time. Use this to make a full backup " "of your account (photos are not exported)" msgstr "" -#: src/Module/Settings/UserExport.php:92 +#: src/Module/Settings/UserExport.php:78 msgid "Export Contacts to CSV" msgstr "" -#: src/Module/Settings/UserExport.php:92 +#: src/Module/Settings/UserExport.php:78 msgid "" "Export the list of the accounts you are following as CSV file. Compatible to" " e.g. Mastodon." msgstr "" -#: src/Module/Special/DisplayNotFound.php:35 +#: src/Module/Special/DisplayNotFound.php:21 msgid "The top-level post isn't visible." msgstr "" -#: src/Module/Special/DisplayNotFound.php:36 +#: src/Module/Special/DisplayNotFound.php:22 msgid "The top-level post was deleted." msgstr "" -#: src/Module/Special/DisplayNotFound.php:37 +#: src/Module/Special/DisplayNotFound.php:23 msgid "" "This node has blocked the top-level author or the author of the shared post." msgstr "" -#: src/Module/Special/DisplayNotFound.php:38 +#: src/Module/Special/DisplayNotFound.php:24 msgid "" "You have ignored or blocked the top-level author or the author of the shared" " post." msgstr "" -#: src/Module/Special/DisplayNotFound.php:39 +#: src/Module/Special/DisplayNotFound.php:25 msgid "" "You have ignored the top-level author's server or the shared post author's " "server." msgstr "" -#: src/Module/Special/DisplayNotFound.php:45 +#: src/Module/Special/DisplayNotFound.php:31 msgid "Conversation Not Found" msgstr "" -#: src/Module/Special/DisplayNotFound.php:46 +#: src/Module/Special/DisplayNotFound.php:32 msgid "Unfortunately, the requested conversation isn't available to you." msgstr "" -#: src/Module/Special/DisplayNotFound.php:47 +#: src/Module/Special/DisplayNotFound.php:33 msgid "Possible reasons include:" msgstr "" -#: src/Module/Special/HTTPException.php:78 +#: src/Module/Special/HTTPException.php:64 msgid "Stack trace:" msgstr "" -#: src/Module/Special/HTTPException.php:83 +#: src/Module/Special/HTTPException.php:69 #, php-format msgid "Exception thrown in %s:%d" msgstr "" -#: src/Module/Tos.php:58 src/Module/Tos.php:107 +#: src/Module/Tos.php:44 src/Module/Tos.php:93 msgid "" "At the time of registration, and for providing communications between the " "user account and their contacts, the user has to provide a display name (pen" @@ -11618,14 +11625,14 @@ msgid "" "settings, it is not necessary for communication." msgstr "Ve chvíli registrace, a pro poskytování komunikace mezi uživatelským účtem a jeho kontakty, musí uživatel poskytnout zobrazované jméno (pseudonym), uživatelské jméno (přezdívku) a funkční e-mailovou adresu. Jména budou dostupná na profilové stránce účtu pro kteréhokoliv návštěvníka, i kdyby ostatní detaily nebyly zobrazeny. E-mailová adresa bude použita pouze pro zasílání oznámení o interakcích, nebude ale viditelně zobrazována. Zápis účtu do adresáře účtů serveru nebo globálního adresáře účtů je nepovinný a může být ovládán v nastavení uživatele, není potřebný pro komunikaci." -#: src/Module/Tos.php:59 src/Module/Tos.php:108 +#: src/Module/Tos.php:45 src/Module/Tos.php:94 msgid "" "This data is required for communication and is passed on to the nodes of the" " communication partners and is stored there. Users can enter additional " "private data that may be transmitted to the communication partners accounts." msgstr "Tato data jsou vyžadována ke komunikaci a jsou předávána serverům komunikačních partnerů a jsou tam ukládána. Uživatelé mohou zadávat dodatečná soukromá data, která mohou být odeslána na účty komunikačních partnerů." -#: src/Module/Tos.php:60 src/Module/Tos.php:109 +#: src/Module/Tos.php:46 src/Module/Tos.php:95 #, php-format msgid "" "At any point in time a logged in user can export their account data from the" @@ -11636,98 +11643,98 @@ msgid "" "from the nodes of the communication partners." msgstr "" -#: src/Module/Tos.php:63 src/Module/Tos.php:106 +#: src/Module/Tos.php:49 src/Module/Tos.php:92 msgid "Privacy Statement" msgstr "Prohlášení o soukromí" -#: src/Module/Tos.php:103 +#: src/Module/Tos.php:89 msgid "Rules" msgstr "" -#: src/Module/Update/Display.php:45 +#: src/Module/Update/Display.php:31 msgid "Parameter uri_id is missing." msgstr "" -#: src/Module/Update/Display.php:55 +#: src/Module/Update/Display.php:41 msgid "The requested item doesn't exist or has been deleted." msgstr "Požadovaná položka neexistuje nebo byla smazána." -#: src/Module/User/Delegation.php:146 +#: src/Module/User/Delegation.php:132 #, php-format msgid "You are now logged in as %s" msgstr "" -#: src/Module/User/Delegation.php:185 +#: src/Module/User/Delegation.php:171 msgid "Switch between your accounts" msgstr "" -#: src/Module/User/Delegation.php:186 +#: src/Module/User/Delegation.php:172 msgid "Manage your accounts" msgstr "" -#: src/Module/User/Delegation.php:187 +#: src/Module/User/Delegation.php:173 msgid "" "Toggle between different identities or community/group pages which share " "your account details or which you have been granted \"manage\" permissions" msgstr "Přepínání mezi různými identitami nebo komunitními/skupinovými stránkami, které sdílí vaše detaily účtu, nebo kterým jste přidělil/a oprávnění nastavovat přístupová práva." -#: src/Module/User/Delegation.php:188 +#: src/Module/User/Delegation.php:174 msgid "Select an identity to manage: " msgstr "Vyberte identitu ke spravování: " -#: src/Module/User/Import.php:104 +#: src/Module/User/Import.php:90 msgid "User imports on closed servers can only be done by an administrator." msgstr "Importy uživatelů na uzavřených serverech může provést pouze administrátor." -#: src/Module/User/Import.php:120 +#: src/Module/User/Import.php:106 msgid "Move account" msgstr "Přesunout účet" -#: src/Module/User/Import.php:121 +#: src/Module/User/Import.php:107 msgid "You can import an account from another Friendica server." msgstr "Můžete importovat účet z jiného serveru Friendica." -#: src/Module/User/Import.php:122 +#: src/Module/User/Import.php:108 msgid "" "You need to export your account from the old server and upload it here. We " "will recreate your old account here with all your contacts. We will try also" " to inform your friends that you moved here." msgstr "Musíte exportovat svůj účet na starém serveru a nahrát ho zde. My následně vytvoříme Váš původní účet zde včetně všech kontaktů. Zároveň se pokusíme informovat všechny Vaše přátele, že jste se sem přestěhoval/a." -#: src/Module/User/Import.php:123 +#: src/Module/User/Import.php:109 msgid "" "This feature is experimental. We can't import contacts from the OStatus " "network (GNU Social/Statusnet) or from Diaspora" msgstr "Tato vlastnost je experimentální. Nemůžeme importovat kontakty za sítě OStatus (GNU social/StatusNet) nebo z Diaspory" -#: src/Module/User/Import.php:124 +#: src/Module/User/Import.php:110 msgid "Account file" msgstr "Soubor s účtem" -#: src/Module/User/Import.php:124 +#: src/Module/User/Import.php:110 msgid "" "To export your account, go to \"Settings->Export your personal data\" and " "select \"Export account\"" msgstr "K exportu Vašeho účtu jděte na „Nastavení->Exportovat osobní údaje“ a zvolte „Exportovat účet“" -#: src/Module/User/Import.php:218 +#: src/Module/User/Import.php:204 msgid "Error decoding account file" msgstr "Chyba dekódování uživatelského účtu" -#: src/Module/User/Import.php:223 +#: src/Module/User/Import.php:209 msgid "Error! No version data in file! This is not a Friendica account file?" msgstr "Chyba! V souboru nejsou data o verzi! Je to opravdu soubor s účtem Friendica?" -#: src/Module/User/Import.php:231 +#: src/Module/User/Import.php:217 #, php-format msgid "User '%s' already exists on this server!" msgstr "Uživatel „%s“ již na tomto serveru existuje!" -#: src/Module/User/Import.php:268 +#: src/Module/User/Import.php:254 msgid "User creation error" msgstr "Chyba při vytváření uživatele" -#: src/Module/User/Import.php:317 +#: src/Module/User/Import.php:303 #, php-format msgid "%d contact not imported" msgid_plural "%d contacts not imported" @@ -11736,23 +11743,23 @@ msgstr[1] "%d kontakty nenaimportovány" msgstr[2] "%d kontaktu nenaimportováno" msgstr[3] "%d kontaktů nenaimportováno" -#: src/Module/User/Import.php:366 +#: src/Module/User/Import.php:352 msgid "User profile creation error" msgstr "Chyba vytváření uživatelského profilu" -#: src/Module/User/Import.php:417 +#: src/Module/User/Import.php:403 msgid "Done. You can now login with your username and password" msgstr "Hotovo. Nyní se můžete přihlásit se svým uživatelským jménem a heslem" -#: src/Module/Welcome.php:44 +#: src/Module/Welcome.php:30 msgid "Welcome to Friendica" msgstr "Vítejte na Friendica" -#: src/Module/Welcome.php:45 +#: src/Module/Welcome.php:31 msgid "New Member Checklist" msgstr "Seznam doporučení pro nového člena" -#: src/Module/Welcome.php:46 +#: src/Module/Welcome.php:32 msgid "" "We would like to offer some tips and links to help make your experience " "enjoyable. Click any item to visit the relevant page. A link to this page " @@ -11760,33 +11767,33 @@ msgid "" "registration and then will quietly disappear." msgstr "Rádi bychom vám nabídli několik tipů a odkazů, abychom vám zpříjemnili zážitek. Kliknutím na jakoukoliv položku zobrazíte relevantní stránku. Odkaz na tuto stránku bude viditelný z vaší domovské stránky po dobu dvou týdnů od vaší první registrace a poté tiše zmizí." -#: src/Module/Welcome.php:48 +#: src/Module/Welcome.php:34 msgid "Getting Started" msgstr "Začínáme" -#: src/Module/Welcome.php:49 +#: src/Module/Welcome.php:35 msgid "Friendica Walk-Through" msgstr "Prohlídka Friendica " -#: src/Module/Welcome.php:50 +#: src/Module/Welcome.php:36 msgid "" "On your Quick Start page - find a brief introduction to your " "profile and network tabs, make some new connections, and find some groups to" " join." msgstr "Na vaší stránce Rychlý začátek najděte stručný úvod k vašemu profilu a síťovým záložkám, spojte se s novými kontakty a najděte skupiny, ke kterým se můžete připojit." -#: src/Module/Welcome.php:53 +#: src/Module/Welcome.php:39 msgid "Go to Your Settings" msgstr "Navštivte své nastavení" -#: src/Module/Welcome.php:54 +#: src/Module/Welcome.php:40 msgid "" "On your Settings page - change your initial password. Also make a " "note of your Identity Address. This looks just like an email address - and " "will be useful in making friends on the free social web." msgstr "Na vaší stránce Nastavení si změňte vaše první heslo. Věnujte také svou pozornost vaší adrese identity. Vypadá jako e-mailová adresa a bude vám užitečná pro navazování přátelství na svobodném sociálním webu." -#: src/Module/Welcome.php:55 +#: src/Module/Welcome.php:41 msgid "" "Review the other settings, particularly the privacy settings. An unpublished" " directory listing is like having an unlisted phone number. In general, you " @@ -11794,77 +11801,77 @@ msgid "" "potential friends know exactly how to find you." msgstr "Prohlédněte si další nastavení, a to zejména nastavení soukromí. Nezveřejnění svého účtu v adresáři je jako mít nezveřejněné telefonní číslo. Obecně platí, že je lepší mít svůj účet zveřejněný - ledaže by všichni vaši přátelé a potenciální přátelé přesně věděli, jak vás najít." -#: src/Module/Welcome.php:59 +#: src/Module/Welcome.php:45 msgid "" "Upload a profile photo if you have not done so already. Studies have shown " "that people with real photos of themselves are ten times more likely to make" " friends than people who do not." msgstr "Nahrajte si svou profilovou fotku, pokud jste tak již neučinil/a. Studie ukázaly, že lidé se skutečnými fotkami mají desetkrát častěji přátele než lidé, kteří nemají." -#: src/Module/Welcome.php:60 +#: src/Module/Welcome.php:46 msgid "Edit Your Profile" msgstr "Upravte si svůj profil" -#: src/Module/Welcome.php:61 +#: src/Module/Welcome.php:47 msgid "" "Edit your default profile to your liking. Review the " "settings for hiding your list of friends and hiding the profile from unknown" " visitors." msgstr "Upravte si výchozí profil podle vašich představ. Prověřte nastavení pro skrytí vašeho seznamu přátel a skrytí profilu před neznámými návštěvníky." -#: src/Module/Welcome.php:62 +#: src/Module/Welcome.php:48 msgid "Profile Keywords" msgstr "Profilová klíčová slova" -#: src/Module/Welcome.php:63 +#: src/Module/Welcome.php:49 msgid "" "Set some public keywords for your profile which describe your interests. We " "may be able to find other people with similar interests and suggest " "friendships." msgstr "" -#: src/Module/Welcome.php:65 +#: src/Module/Welcome.php:51 msgid "Connecting" msgstr "Připojuji se" -#: src/Module/Welcome.php:67 +#: src/Module/Welcome.php:53 msgid "Importing Emails" msgstr "Importuji e-maily" -#: src/Module/Welcome.php:68 +#: src/Module/Welcome.php:54 msgid "" "Enter your email access information on your Connector Settings page if you " "wish to import and interact with friends or mailing lists from your email " "INBOX" msgstr "Pokud chcete importovat své přátele nebo mailové skupiny z INBOX vašeho e-mailu a komunikovat s nimi, zadejte na vaší stránce Nastavení kontektoru své přístupové údaje do svého e-mailového účtu" -#: src/Module/Welcome.php:69 +#: src/Module/Welcome.php:55 msgid "Go to Your Contacts Page" msgstr "Navštivte vaši stránku Kontakty" -#: src/Module/Welcome.php:70 +#: src/Module/Welcome.php:56 msgid "" "Your Contacts page is your gateway to managing friendships and connecting " "with friends on other networks. Typically you enter their address or site " "URL in the Add New Contact dialog." msgstr "Vaše stránka Kontakty je vaše brána k nastavování přátelství a propojení s přáteli z dalších sítí. Typicky zadáte jejich emailovou adresu nebo URL adresu jejich serveru prostřednictvím dialogu Přidat nový kontakt." -#: src/Module/Welcome.php:71 +#: src/Module/Welcome.php:57 msgid "Go to Your Site's Directory" msgstr "Navštivte adresář vaší stránky" -#: src/Module/Welcome.php:72 +#: src/Module/Welcome.php:58 msgid "" "The Directory page lets you find other people in this network or other " "federated sites. Look for a Connect or Follow link on " "their profile page. Provide your own Identity Address if requested." msgstr "Stránka Adresář vám pomůže najít další lidi na tomto serveru nebo v jiných propojených serverech. Najděte na jejich stránce odkaz Spojit se nebo Sledovat. Uveďte svou vlastní adresu identity, je-li požadována." -#: src/Module/Welcome.php:73 +#: src/Module/Welcome.php:59 msgid "Finding New People" msgstr "Nalezení nových lidí" -#: src/Module/Welcome.php:74 +#: src/Module/Welcome.php:60 msgid "" "On the side panel of the Contacts page are several tools to find new " "friends. We can match people by interest, look up people by name or " @@ -11873,412 +11880,408 @@ msgid "" "hours." msgstr "Na bočním panelu stránky s kontakty je několik nástrojů k nalezení nových přátel. Porovnáme lidi dle zájmů, najdeme lidi podle jména nebo zájmu a poskytneme Vám návrhy založené na přátelství v síti přátel. Na zcela novém serveru se návrhy přátelství nabínou obvykle během 24 hodin." -#: src/Module/Welcome.php:77 +#: src/Module/Welcome.php:63 msgid "Add Your Contacts To Circle" msgstr "" -#: src/Module/Welcome.php:78 +#: src/Module/Welcome.php:64 msgid "" "Once you have made some friends, organize them into private conversation " "circles from the sidebar of your Contacts page and then you can interact " "with each circle privately on your Network page." msgstr "" -#: src/Module/Welcome.php:80 +#: src/Module/Welcome.php:66 msgid "Why Aren't My Posts Public?" msgstr "Proč nejsou mé příspěvky veřejné?" -#: src/Module/Welcome.php:81 +#: src/Module/Welcome.php:67 msgid "" "Friendica respects your privacy. By default, your posts will only show up to" " people you've added as friends. For more information, see the help section " "from the link above." msgstr "Friendica respektuje vaše soukromí. Ve výchozím stavu jsou vaše příspěvky viditelné pouze lidem, které označíte jako vaše přátelé. Více informací naleznete v nápovědě na výše uvedeném odkazu" -#: src/Module/Welcome.php:83 +#: src/Module/Welcome.php:69 msgid "Getting Help" msgstr "Získání nápovědy" -#: src/Module/Welcome.php:84 +#: src/Module/Welcome.php:70 msgid "Go to the Help Section" msgstr "Navštivte sekci nápovědy" -#: src/Module/Welcome.php:85 +#: src/Module/Welcome.php:71 msgid "" "Our help pages may be consulted for detail on other program" " features and resources." msgstr "Na stránkách Nápověda naleznete nejen další podrobnosti o všech funkcích Friendika ale také další zdroje informací." -#: src/Navigation/Notifications/Factory/FormattedNavNotification.php:161 +#: src/Navigation/Notifications/Factory/FormattedNavNotification.php:147 msgid "{0} wants to follow you" msgstr "" -#: src/Navigation/Notifications/Factory/FormattedNavNotification.php:163 +#: src/Navigation/Notifications/Factory/FormattedNavNotification.php:149 msgid "{0} has started following you" msgstr "" -#: src/Navigation/Notifications/Factory/FormattedNotify.php:96 +#: src/Navigation/Notifications/Factory/FormattedNotify.php:82 #, php-format msgid "%s liked %s's post" msgstr "Uživateli %s se líbí příspěvek uživatele %s" -#: src/Navigation/Notifications/Factory/FormattedNotify.php:108 +#: src/Navigation/Notifications/Factory/FormattedNotify.php:94 #, php-format msgid "%s disliked %s's post" msgstr "Uživateli %s se nelíbí příspěvek uživatele %s" -#: src/Navigation/Notifications/Factory/FormattedNotify.php:120 +#: src/Navigation/Notifications/Factory/FormattedNotify.php:106 #, php-format msgid "%s is attending %s's event" msgstr "%s se zúčastní události %s" -#: src/Navigation/Notifications/Factory/FormattedNotify.php:132 +#: src/Navigation/Notifications/Factory/FormattedNotify.php:118 #, php-format msgid "%s is not attending %s's event" msgstr "%s se nezúčastní události %s" -#: src/Navigation/Notifications/Factory/FormattedNotify.php:144 +#: src/Navigation/Notifications/Factory/FormattedNotify.php:130 #, php-format msgid "%s may attending %s's event" msgstr "" -#: src/Navigation/Notifications/Factory/FormattedNotify.php:174 +#: src/Navigation/Notifications/Factory/FormattedNotify.php:160 #, php-format msgid "%s is now friends with %s" msgstr "%s se nyní přátelí s uživatelem %s" -#: src/Navigation/Notifications/Factory/FormattedNotify.php:341 -#: src/Navigation/Notifications/Factory/FormattedNotify.php:379 +#: src/Navigation/Notifications/Factory/FormattedNotify.php:327 +#: src/Navigation/Notifications/Factory/FormattedNotify.php:365 #, php-format msgid "%s commented on %s's post" msgstr "%s okomentoval/a příspěvek uživatele %s" -#: src/Navigation/Notifications/Factory/FormattedNotify.php:378 +#: src/Navigation/Notifications/Factory/FormattedNotify.php:364 #, php-format msgid "%s created a new post" msgstr "%s vytvořil nový příspěvek" -#: src/Navigation/Notifications/Factory/Introduction.php:132 +#: src/Navigation/Notifications/Factory/Introduction.php:118 msgid "Friend Suggestion" msgstr "Návrh přátelství" -#: src/Navigation/Notifications/Factory/Introduction.php:158 +#: src/Navigation/Notifications/Factory/Introduction.php:144 msgid "Friend/Connect Request" msgstr "Požadavek o přátelství/spojení" -#: src/Navigation/Notifications/Factory/Introduction.php:158 -msgid "New Follower" -msgstr "Nový sledující" - -#: src/Navigation/Notifications/Factory/Notification.php:134 +#: src/Navigation/Notifications/Factory/Notification.php:120 #, php-format msgid "%1$s wants to follow you" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:136 +#: src/Navigation/Notifications/Factory/Notification.php:122 #, php-format msgid "%1$s has started following you" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:208 +#: src/Navigation/Notifications/Factory/Notification.php:194 #, php-format msgid "%1$s liked your comment on %2$s" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:211 +#: src/Navigation/Notifications/Factory/Notification.php:197 #, php-format msgid "%1$s liked your post %2$s" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:218 +#: src/Navigation/Notifications/Factory/Notification.php:204 #, php-format msgid "%1$s disliked your comment on %2$s" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:221 +#: src/Navigation/Notifications/Factory/Notification.php:207 #, php-format msgid "%1$s disliked your post %2$s" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:228 +#: src/Navigation/Notifications/Factory/Notification.php:214 #, php-format msgid "%1$s shared your comment %2$s" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:231 -#: src/Navigation/Notifications/Factory/Notification.php:316 +#: src/Navigation/Notifications/Factory/Notification.php:217 +#: src/Navigation/Notifications/Factory/Notification.php:302 #, php-format msgid "%1$s shared your post %2$s" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:235 -#: src/Navigation/Notifications/Factory/Notification.php:305 +#: src/Navigation/Notifications/Factory/Notification.php:221 +#: src/Navigation/Notifications/Factory/Notification.php:291 #, php-format msgid "%1$s shared the post %2$s from %3$s" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:237 -#: src/Navigation/Notifications/Factory/Notification.php:307 +#: src/Navigation/Notifications/Factory/Notification.php:223 +#: src/Navigation/Notifications/Factory/Notification.php:293 #, php-format msgid "%1$s shared a post from %3$s" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:239 -#: src/Navigation/Notifications/Factory/Notification.php:309 +#: src/Navigation/Notifications/Factory/Notification.php:225 +#: src/Navigation/Notifications/Factory/Notification.php:295 #, php-format msgid "%1$s shared the post %2$s" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:241 -#: src/Navigation/Notifications/Factory/Notification.php:311 +#: src/Navigation/Notifications/Factory/Notification.php:227 +#: src/Navigation/Notifications/Factory/Notification.php:297 #, php-format msgid "%1$s shared a post" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:249 +#: src/Navigation/Notifications/Factory/Notification.php:235 #, php-format msgid "%1$s wants to attend your event %2$s" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:256 +#: src/Navigation/Notifications/Factory/Notification.php:242 #, php-format msgid "%1$s does not want to attend your event %2$s" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:263 +#: src/Navigation/Notifications/Factory/Notification.php:249 #, php-format msgid "%1$s maybe wants to attend your event %2$s" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:270 +#: src/Navigation/Notifications/Factory/Notification.php:256 #, php-format msgid "%1$s tagged you on %2$s" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:274 +#: src/Navigation/Notifications/Factory/Notification.php:260 #, php-format msgid "%1$s replied to you on %2$s" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:278 +#: src/Navigation/Notifications/Factory/Notification.php:264 #, php-format msgid "%1$s commented in your thread %2$s" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:282 +#: src/Navigation/Notifications/Factory/Notification.php:268 #, php-format msgid "%1$s commented on your comment %2$s" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:289 +#: src/Navigation/Notifications/Factory/Notification.php:275 #, php-format msgid "%1$s commented in their thread %2$s" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:291 +#: src/Navigation/Notifications/Factory/Notification.php:277 #, php-format msgid "%1$s commented in their thread" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:293 +#: src/Navigation/Notifications/Factory/Notification.php:279 #, php-format msgid "%1$s commented in the thread %2$s from %3$s" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:295 +#: src/Navigation/Notifications/Factory/Notification.php:281 #, php-format msgid "%1$s commented in the thread from %3$s" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:300 +#: src/Navigation/Notifications/Factory/Notification.php:286 #, php-format msgid "%1$s commented on your thread %2$s" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:225 -#: src/Navigation/Notifications/Repository/Notify.php:754 +#: src/Navigation/Notifications/Repository/Notify.php:211 +#: src/Navigation/Notifications/Repository/Notify.php:740 msgid "[Friendica:Notify]" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:293 +#: src/Navigation/Notifications/Repository/Notify.php:279 #, php-format msgid "%s New mail received at %s" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:295 +#: src/Navigation/Notifications/Repository/Notify.php:281 #, php-format msgid "%1$s sent you a new private message at %2$s." msgstr "%1$s vám poslal/a novou soukromou zprávu na %2$s." -#: src/Navigation/Notifications/Repository/Notify.php:296 +#: src/Navigation/Notifications/Repository/Notify.php:282 msgid "a private message" msgstr "soukromou zprávu" -#: src/Navigation/Notifications/Repository/Notify.php:296 +#: src/Navigation/Notifications/Repository/Notify.php:282 #, php-format msgid "%1$s sent you %2$s." msgstr "%1$s vám poslal/a %2$s." -#: src/Navigation/Notifications/Repository/Notify.php:298 +#: src/Navigation/Notifications/Repository/Notify.php:284 #, php-format msgid "Please visit %s to view and/or reply to your private messages." msgstr "Pro zobrazení vašich soukromých zpráv a možnost na ně odpovědět prosím navštivte %s." -#: src/Navigation/Notifications/Repository/Notify.php:328 +#: src/Navigation/Notifications/Repository/Notify.php:314 #, php-format msgid "%1$s commented on %2$s's %3$s %4$s" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:333 +#: src/Navigation/Notifications/Repository/Notify.php:319 #, php-format msgid "%1$s commented on your %2$s %3$s" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:337 +#: src/Navigation/Notifications/Repository/Notify.php:323 #, php-format msgid "%1$s commented on their %2$s %3$s" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:341 -#: src/Navigation/Notifications/Repository/Notify.php:788 +#: src/Navigation/Notifications/Repository/Notify.php:327 +#: src/Navigation/Notifications/Repository/Notify.php:774 #, php-format msgid "%1$s Comment to conversation #%2$d by %3$s" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:343 +#: src/Navigation/Notifications/Repository/Notify.php:329 #, php-format msgid "%s commented on an item/conversation you have been following." msgstr "%s okomentoval/a vámi sledovanou položku/konverzaci." -#: src/Navigation/Notifications/Repository/Notify.php:347 -#: src/Navigation/Notifications/Repository/Notify.php:362 -#: src/Navigation/Notifications/Repository/Notify.php:814 +#: src/Navigation/Notifications/Repository/Notify.php:333 +#: src/Navigation/Notifications/Repository/Notify.php:348 +#: src/Navigation/Notifications/Repository/Notify.php:800 #, php-format msgid "Please visit %s to view and/or reply to the conversation." msgstr "Prosím navštivte %s pro zobrazení konverzace a možnosti odpovědět." -#: src/Navigation/Notifications/Repository/Notify.php:354 +#: src/Navigation/Notifications/Repository/Notify.php:340 #, php-format msgid "%s %s posted to your profile wall" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:356 +#: src/Navigation/Notifications/Repository/Notify.php:342 #, php-format msgid "%1$s posted to your profile wall at %2$s" msgstr "%1$s přidal/a příspěvek na vaši profilovou zeď na %2$s" -#: src/Navigation/Notifications/Repository/Notify.php:357 +#: src/Navigation/Notifications/Repository/Notify.php:343 #, php-format msgid "%1$s posted to [url=%2$s]your wall[/url]" msgstr "%1$s přidal/a příspěvek na [url=%2$s]vaši zeď[/url]" -#: src/Navigation/Notifications/Repository/Notify.php:370 +#: src/Navigation/Notifications/Repository/Notify.php:356 #, php-format msgid "%s Introduction received" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:372 +#: src/Navigation/Notifications/Repository/Notify.php:358 #, php-format msgid "You've received an introduction from '%1$s' at %2$s" msgstr "Obdržel/a jste představení od uživatele „%1$s“ na %2$s" -#: src/Navigation/Notifications/Repository/Notify.php:373 +#: src/Navigation/Notifications/Repository/Notify.php:359 #, php-format msgid "You've received [url=%1$s]an introduction[/url] from %2$s." msgstr "Obdržel/a jste [url=%1$s]představení[/url] od uživatele %2$s." -#: src/Navigation/Notifications/Repository/Notify.php:378 -#: src/Navigation/Notifications/Repository/Notify.php:424 +#: src/Navigation/Notifications/Repository/Notify.php:364 +#: src/Navigation/Notifications/Repository/Notify.php:410 #, php-format msgid "You may visit their profile at %s" msgstr "Můžete navštívit jeho/její profil na %s" -#: src/Navigation/Notifications/Repository/Notify.php:380 +#: src/Navigation/Notifications/Repository/Notify.php:366 #, php-format msgid "Please visit %s to approve or reject the introduction." msgstr "Prosím navštivte %s pro schválení či zamítnutí představení." -#: src/Navigation/Notifications/Repository/Notify.php:387 +#: src/Navigation/Notifications/Repository/Notify.php:373 #, php-format msgid "%s A new person is sharing with you" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:389 -#: src/Navigation/Notifications/Repository/Notify.php:390 +#: src/Navigation/Notifications/Repository/Notify.php:375 +#: src/Navigation/Notifications/Repository/Notify.php:376 #, php-format msgid "%1$s is sharing with you at %2$s" msgstr "Uživatel %1$s s vámi sdílí na %2$s" -#: src/Navigation/Notifications/Repository/Notify.php:397 +#: src/Navigation/Notifications/Repository/Notify.php:383 #, php-format msgid "%s You have a new follower" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:399 -#: src/Navigation/Notifications/Repository/Notify.php:400 +#: src/Navigation/Notifications/Repository/Notify.php:385 +#: src/Navigation/Notifications/Repository/Notify.php:386 #, php-format msgid "You have a new follower at %2$s : %1$s" msgstr "Máte nového sledujícího na %2$s: %1$s" -#: src/Navigation/Notifications/Repository/Notify.php:413 +#: src/Navigation/Notifications/Repository/Notify.php:399 #, php-format msgid "%s Friend suggestion received" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:415 +#: src/Navigation/Notifications/Repository/Notify.php:401 #, php-format msgid "You've received a friend suggestion from '%1$s' at %2$s" msgstr "Obdržel/a jste návrh přátelství od uživatele „%1$s“ na %2$s" -#: src/Navigation/Notifications/Repository/Notify.php:416 +#: src/Navigation/Notifications/Repository/Notify.php:402 #, php-format msgid "" "You've received [url=%1$s]a friend suggestion[/url] for %2$s from %3$s." msgstr "Obdržel/a jste [url=%1$s]návrh přátelství[/url] s uživatelem %2$s od uživatele %3$s." -#: src/Navigation/Notifications/Repository/Notify.php:422 +#: src/Navigation/Notifications/Repository/Notify.php:408 msgid "Name:" msgstr "Jméno:" -#: src/Navigation/Notifications/Repository/Notify.php:423 +#: src/Navigation/Notifications/Repository/Notify.php:409 msgid "Photo:" msgstr "Fotka:" -#: src/Navigation/Notifications/Repository/Notify.php:426 +#: src/Navigation/Notifications/Repository/Notify.php:412 #, php-format msgid "Please visit %s to approve or reject the suggestion." msgstr "Prosím navštivte %s pro schválení či zamítnutí návrhu." -#: src/Navigation/Notifications/Repository/Notify.php:434 -#: src/Navigation/Notifications/Repository/Notify.php:449 +#: src/Navigation/Notifications/Repository/Notify.php:420 +#: src/Navigation/Notifications/Repository/Notify.php:435 #, php-format msgid "%s Connection accepted" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:436 -#: src/Navigation/Notifications/Repository/Notify.php:451 +#: src/Navigation/Notifications/Repository/Notify.php:422 +#: src/Navigation/Notifications/Repository/Notify.php:437 #, php-format msgid "'%1$s' has accepted your connection request at %2$s" msgstr "„%1$s“ přijal/a váš požadavek o spojení na %2$s" -#: src/Navigation/Notifications/Repository/Notify.php:437 -#: src/Navigation/Notifications/Repository/Notify.php:452 +#: src/Navigation/Notifications/Repository/Notify.php:423 +#: src/Navigation/Notifications/Repository/Notify.php:438 #, php-format msgid "%2$s has accepted your [url=%1$s]connection request[/url]." msgstr "%2$s přijal/a váš [url=%1$s]požadavek o spojení[/url]." -#: src/Navigation/Notifications/Repository/Notify.php:442 +#: src/Navigation/Notifications/Repository/Notify.php:428 msgid "" "You are now mutual friends and may exchange status updates, photos, and " "email without restriction." msgstr "Jste nyní vzájemní přátelé a můžete si vyměňovat stavové zprávy, fotky a e-maily bez omezení." -#: src/Navigation/Notifications/Repository/Notify.php:444 +#: src/Navigation/Notifications/Repository/Notify.php:430 #, php-format msgid "Please visit %s if you wish to make any changes to this relationship." msgstr "Pokud chcete provést změny s tímto vztahem, prosím navštivte %s." -#: src/Navigation/Notifications/Repository/Notify.php:457 +#: src/Navigation/Notifications/Repository/Notify.php:443 #, php-format msgid "" "'%1$s' has chosen to accept you a fan, which restricts some forms of " @@ -12287,34 +12290,34 @@ msgid "" "automatically." msgstr "„%1$s“ se rozhodl/a vás přijmout jako fanouška, což omezuje některé formy komunikace - například soukoromé zprávy a některé interakce s profily. Pokud je toto stránka celebrity či komunity, byla tato nastavení aplikována automaticky." -#: src/Navigation/Notifications/Repository/Notify.php:459 +#: src/Navigation/Notifications/Repository/Notify.php:445 #, php-format msgid "" "'%1$s' may choose to extend this into a two-way or more permissive " "relationship in the future." msgstr "„%1$s“ se může rozhodnout tento vztah v budoucnosti rozšířit do oboustranného či jiného liberálnějšího vztahu." -#: src/Navigation/Notifications/Repository/Notify.php:461 +#: src/Navigation/Notifications/Repository/Notify.php:447 #, php-format msgid "Please visit %s if you wish to make any changes to this relationship." msgstr "Prosím navštivte %s pokud chcete změnit tento vztah." -#: src/Navigation/Notifications/Repository/Notify.php:471 +#: src/Navigation/Notifications/Repository/Notify.php:457 msgid "registration request" msgstr "požadavek o registraci" -#: src/Navigation/Notifications/Repository/Notify.php:473 +#: src/Navigation/Notifications/Repository/Notify.php:459 #, php-format msgid "You've received a registration request from '%1$s' at %2$s" msgstr "Obdržel/a jste požadavek o registraci od uživatele „%1$s“ na %2$s" -#: src/Navigation/Notifications/Repository/Notify.php:474 +#: src/Navigation/Notifications/Repository/Notify.php:460 #, php-format msgid "You've received a [url=%1$s]registration request[/url] from %2$s." msgstr "Obdržel/a jste [url=%1$s]požadavek o registraci[/url] od uživatele %2$s." -#: src/Navigation/Notifications/Repository/Notify.php:479 -#: src/Navigation/Notifications/Repository/Notify.php:500 +#: src/Navigation/Notifications/Repository/Notify.php:465 +#: src/Navigation/Notifications/Repository/Notify.php:486 #, php-format msgid "" "Display Name:\t%s\n" @@ -12322,288 +12325,288 @@ msgid "" "Login Name:\t%s (%s)" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:485 +#: src/Navigation/Notifications/Repository/Notify.php:471 #, php-format msgid "Please visit %s to approve or reject the request." msgstr "Prosím navštivte %s k odsouhlasení nebo k zamítnutí požadavku." -#: src/Navigation/Notifications/Repository/Notify.php:492 +#: src/Navigation/Notifications/Repository/Notify.php:478 msgid "new registration" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:494 +#: src/Navigation/Notifications/Repository/Notify.php:480 #, php-format msgid "You've received a new registration from '%1$s' at %2$s" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:495 +#: src/Navigation/Notifications/Repository/Notify.php:481 #, php-format msgid "You've received a [url=%1$s]new registration[/url] from %2$s." msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:506 +#: src/Navigation/Notifications/Repository/Notify.php:492 #, php-format msgid "Please visit %s to have a look at the new registration." msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:782 +#: src/Navigation/Notifications/Repository/Notify.php:768 #, php-format msgid "%s %s tagged you" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:785 +#: src/Navigation/Notifications/Repository/Notify.php:771 #, php-format msgid "%s %s shared a new post" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:793 +#: src/Navigation/Notifications/Repository/Notify.php:779 #, php-format msgid "%1$s %2$s liked your post #%3$d" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:796 +#: src/Navigation/Notifications/Repository/Notify.php:782 #, php-format msgid "%1$s %2$s liked your comment on #%3$d" msgstr "" -#: src/Object/EMail/ItemCCEMail.php:42 +#: src/Object/EMail/ItemCCEMail.php:28 #, php-format msgid "" "This message was sent to you by %s, a member of the Friendica social " "network." msgstr "Tuto zprávu vám poslal/a %s, člen sociální sítě Friendica." -#: src/Object/EMail/ItemCCEMail.php:44 +#: src/Object/EMail/ItemCCEMail.php:30 #, php-format msgid "You may visit them online at %s" msgstr "Můžete jej/ji navštívit online na adrese %s" -#: src/Object/EMail/ItemCCEMail.php:45 +#: src/Object/EMail/ItemCCEMail.php:31 msgid "" "Please contact the sender by replying to this post if you do not wish to " "receive these messages." msgstr "Pokud nechcete dostávat tyto zprávy, kontaktujte prosím odesílatele odpovědí na tuto zprávu." -#: src/Object/EMail/ItemCCEMail.php:49 +#: src/Object/EMail/ItemCCEMail.php:35 #, php-format msgid "%s posted an update." msgstr "%s poslal/a aktualizaci." -#: src/Object/Post.php:138 +#: src/Object/Post.php:124 msgid "Private Message" msgstr "Soukromá zpráva" -#: src/Object/Post.php:142 +#: src/Object/Post.php:128 msgid "Public Message" msgstr "" -#: src/Object/Post.php:146 +#: src/Object/Post.php:132 msgid "Unlisted Message" msgstr "" -#: src/Object/Post.php:182 +#: src/Object/Post.php:168 msgid "This entry was edited" msgstr "Tato položka byla upravena" -#: src/Object/Post.php:210 +#: src/Object/Post.php:196 msgid "Connector Message" msgstr "" -#: src/Object/Post.php:239 src/Object/Post.php:241 +#: src/Object/Post.php:225 src/Object/Post.php:227 msgid "Edit" msgstr "Upravit" -#: src/Object/Post.php:275 +#: src/Object/Post.php:261 msgid "Delete globally" msgstr "Smazat globálně" -#: src/Object/Post.php:275 +#: src/Object/Post.php:261 msgid "Remove locally" msgstr "Odstranit lokálně" -#: src/Object/Post.php:282 +#: src/Object/Post.php:268 #, php-format msgid "Block %s" msgstr "" -#: src/Object/Post.php:287 +#: src/Object/Post.php:273 #, php-format msgid "Ignore %s" msgstr "" -#: src/Object/Post.php:292 +#: src/Object/Post.php:278 #, php-format msgid "Collapse %s" msgstr "" -#: src/Object/Post.php:296 +#: src/Object/Post.php:282 msgid "Report post" msgstr "" -#: src/Object/Post.php:307 +#: src/Object/Post.php:293 msgid "Save to folder" msgstr "" -#: src/Object/Post.php:347 +#: src/Object/Post.php:333 msgid "I will attend" msgstr "zúčastním se" -#: src/Object/Post.php:347 +#: src/Object/Post.php:333 msgid "I will not attend" msgstr "nezúčastním se" -#: src/Object/Post.php:347 +#: src/Object/Post.php:333 msgid "I might attend" msgstr "mohl bych se zúčastnit" -#: src/Object/Post.php:394 +#: src/Object/Post.php:380 msgid "Ignore thread" msgstr "" -#: src/Object/Post.php:395 +#: src/Object/Post.php:381 msgid "Unignore thread" msgstr "" -#: src/Object/Post.php:396 +#: src/Object/Post.php:382 msgid "Toggle ignore status" msgstr "" -#: src/Object/Post.php:406 +#: src/Object/Post.php:392 msgid "Add star" msgstr "" -#: src/Object/Post.php:407 +#: src/Object/Post.php:393 msgid "Remove star" msgstr "" -#: src/Object/Post.php:408 +#: src/Object/Post.php:394 msgid "Toggle star status" msgstr "" -#: src/Object/Post.php:419 +#: src/Object/Post.php:405 msgid "Pin" msgstr "" -#: src/Object/Post.php:420 +#: src/Object/Post.php:406 msgid "Unpin" msgstr "" -#: src/Object/Post.php:421 +#: src/Object/Post.php:407 msgid "Toggle pin status" msgstr "" -#: src/Object/Post.php:424 +#: src/Object/Post.php:410 msgid "Pinned" msgstr "" -#: src/Object/Post.php:429 +#: src/Object/Post.php:415 msgid "Add tag" msgstr "" -#: src/Object/Post.php:444 +#: src/Object/Post.php:430 msgid "Quote share this" msgstr "" -#: src/Object/Post.php:444 +#: src/Object/Post.php:430 msgid "Quote Share" msgstr "" -#: src/Object/Post.php:447 +#: src/Object/Post.php:433 msgid "Reshare this" msgstr "" -#: src/Object/Post.php:447 +#: src/Object/Post.php:433 msgid "Reshare" msgstr "" -#: src/Object/Post.php:448 +#: src/Object/Post.php:434 msgid "Cancel your Reshare" msgstr "" -#: src/Object/Post.php:448 +#: src/Object/Post.php:434 msgid "Unshare" msgstr "" -#: src/Object/Post.php:492 +#: src/Object/Post.php:478 #, php-format msgid "%s (Received %s)" msgstr "" -#: src/Object/Post.php:498 +#: src/Object/Post.php:484 msgid "Comment this item on your system" msgstr "" -#: src/Object/Post.php:498 +#: src/Object/Post.php:484 msgid "Remote comment" msgstr "" -#: src/Object/Post.php:520 +#: src/Object/Post.php:506 msgid "Share via ..." msgstr "" -#: src/Object/Post.php:520 +#: src/Object/Post.php:506 msgid "Share via external services" msgstr "" -#: src/Object/Post.php:527 +#: src/Object/Post.php:513 msgid "Unknown parent" msgstr "" -#: src/Object/Post.php:531 +#: src/Object/Post.php:517 #, php-format msgid "in reply to %s" msgstr "" -#: src/Object/Post.php:533 +#: src/Object/Post.php:519 msgid "Parent is probably private or not federated." msgstr "" -#: src/Object/Post.php:557 +#: src/Object/Post.php:543 msgid "to" msgstr "na" -#: src/Object/Post.php:558 +#: src/Object/Post.php:544 msgid "via" msgstr "přes" -#: src/Object/Post.php:559 +#: src/Object/Post.php:545 msgid "Wall-to-Wall" msgstr "Ze zdi na zeď" -#: src/Object/Post.php:560 +#: src/Object/Post.php:546 msgid "via Wall-To-Wall:" msgstr "ze zdi na zeď" -#: src/Object/Post.php:613 +#: src/Object/Post.php:599 #, php-format msgid "Reply to %s" msgstr "Odpovědět uživateli %s" -#: src/Object/Post.php:616 +#: src/Object/Post.php:602 msgid "More" msgstr "" -#: src/Object/Post.php:635 +#: src/Object/Post.php:621 msgid "Notifier task is pending" msgstr "Úloha pro notifiera čeká" -#: src/Object/Post.php:636 +#: src/Object/Post.php:622 msgid "Delivery to remote servers is pending" msgstr "Doručení vzdáleným serverům čeká" -#: src/Object/Post.php:637 +#: src/Object/Post.php:623 msgid "Delivery to remote servers is underway" msgstr "Doručení vzdáleným serverům je v plném proudu" -#: src/Object/Post.php:638 +#: src/Object/Post.php:624 msgid "Delivery to remote servers is mostly done" msgstr "Doručení vzdáleným serverům je téměř hotovo" -#: src/Object/Post.php:639 +#: src/Object/Post.php:625 msgid "Delivery to remote servers is done" msgstr "Doručení vzdáleným serverům je hotovo" -#: src/Object/Post.php:661 +#: src/Object/Post.php:647 #, php-format msgid "%d comment" msgid_plural "%d comments" @@ -12612,480 +12615,467 @@ msgstr[1] "%d komentáře" msgstr[2] "%d komentáře" msgstr[3] "%d komentářů" -#: src/Object/Post.php:662 +#: src/Object/Post.php:648 msgid "Show more" msgstr "Zobrazit více" -#: src/Object/Post.php:663 +#: src/Object/Post.php:649 msgid "Show fewer" msgstr "Zobrazit méně" -#: src/Object/Post.php:700 +#: src/Object/Post.php:686 #, php-format msgid "Reshared by: %s" msgstr "" -#: src/Object/Post.php:705 +#: src/Object/Post.php:691 #, php-format msgid "Viewed by: %s" msgstr "" -#: src/Object/Post.php:710 +#: src/Object/Post.php:696 #, php-format msgid "Read by: %s" msgstr "" -#: src/Object/Post.php:715 +#: src/Object/Post.php:701 #, php-format msgid "Liked by: %s" msgstr "" -#: src/Object/Post.php:720 +#: src/Object/Post.php:706 #, php-format msgid "Disliked by: %s" msgstr "" -#: src/Object/Post.php:725 +#: src/Object/Post.php:711 #, php-format msgid "Attended by: %s" msgstr "" -#: src/Object/Post.php:730 +#: src/Object/Post.php:716 #, php-format msgid "Maybe attended by: %s" msgstr "" -#: src/Object/Post.php:735 +#: src/Object/Post.php:721 #, php-format msgid "Not attended by: %s" msgstr "" -#: src/Object/Post.php:740 +#: src/Object/Post.php:726 #, php-format msgid "Commented by: %s" msgstr "" -#: src/Object/Post.php:745 +#: src/Object/Post.php:731 #, php-format msgid "Reacted with %s by: %s" msgstr "" -#: src/Object/Post.php:768 +#: src/Object/Post.php:754 #, php-format msgid "Quote shared by: %s" msgstr "" -#: src/Protocol/ActivityPub/Receiver.php:568 +#: src/Protocol/ActivityPub/Receiver.php:557 msgid "Chat" msgstr "" -#: src/Protocol/Delivery.php:544 +#: src/Protocol/Delivery.php:530 msgid "(no subject)" msgstr "" -#: src/Protocol/OStatus.php:1392 -#, php-format -msgid "%s is now following %s." -msgstr "%s nyní sleduje %s." - -#: src/Protocol/OStatus.php:1393 -msgid "following" -msgstr "sleduji" - -#: src/Protocol/OStatus.php:1396 -#, php-format -msgid "%s stopped following %s." -msgstr "%s přestal/a sledovat uživatele %s." - -#: src/Protocol/OStatus.php:1397 -msgid "stopped following" -msgstr "přestal/a sledovat" - -#: src/Render/FriendicaSmartyEngine.php:56 +#: src/Render/FriendicaSmartyEngine.php:42 #, php-format msgid "The folder %s must be writable by webserver." msgstr "" -#: src/Security/Authentication.php:216 +#: src/Security/Authentication.php:200 msgid "Login failed." msgstr "Přihlášení se nezdařilo." -#: src/Security/Authentication.php:261 +#: src/Security/Authentication.php:245 msgid "Login failed. Please check your credentials." msgstr "" -#: src/Security/Authentication.php:375 +#: src/Security/Authentication.php:359 #, php-format msgid "Welcome %s" msgstr "Vítejte, %s" -#: src/Security/Authentication.php:376 +#: src/Security/Authentication.php:360 msgid "Please upload a profile photo." msgstr "Prosím nahrajte profilovou fotku." -#: src/Util/EMailer/MailBuilder.php:260 +#: src/Security/OpenWebAuth.php:149 +#, php-format +msgid "OpenWebAuth: %1$s welcomes %2$s" +msgstr "OpenWebAuth: %1$s vítá uživatele %2$s" + +#: src/Util/EMailer/MailBuilder.php:246 msgid "Friendica Notification" msgstr "" -#: src/Util/EMailer/NotifyMailBuilder.php:78 -#: src/Util/EMailer/SystemMailBuilder.php:54 +#: src/Util/EMailer/NotifyMailBuilder.php:64 +#: src/Util/EMailer/SystemMailBuilder.php:40 #, php-format msgid "%1$s, %2$s Administrator" msgstr "" -#: src/Util/EMailer/NotifyMailBuilder.php:80 -#: src/Util/EMailer/SystemMailBuilder.php:56 +#: src/Util/EMailer/NotifyMailBuilder.php:66 +#: src/Util/EMailer/SystemMailBuilder.php:42 #, php-format msgid "%s Administrator" msgstr "" -#: src/Util/EMailer/NotifyMailBuilder.php:193 -#: src/Util/EMailer/NotifyMailBuilder.php:217 -#: src/Util/EMailer/SystemMailBuilder.php:101 -#: src/Util/EMailer/SystemMailBuilder.php:118 +#: src/Util/EMailer/NotifyMailBuilder.php:179 +#: src/Util/EMailer/NotifyMailBuilder.php:203 +#: src/Util/EMailer/SystemMailBuilder.php:87 +#: src/Util/EMailer/SystemMailBuilder.php:104 msgid "thanks" msgstr "" -#: src/Util/Temporal.php:172 +#: src/Util/Temporal.php:158 msgid "YYYY-MM-DD or MM-DD" msgstr "" -#: src/Util/Temporal.php:280 +#: src/Util/Temporal.php:266 #, php-format msgid "Time zone: %s Change in Settings" msgstr "" -#: src/Util/Temporal.php:320 src/Util/Temporal.php:329 +#: src/Util/Temporal.php:306 src/Util/Temporal.php:315 msgid "never" msgstr "" -#: src/Util/Temporal.php:343 +#: src/Util/Temporal.php:329 msgid "less than a second ago" msgstr "" -#: src/Util/Temporal.php:352 +#: src/Util/Temporal.php:338 msgid "year" msgstr "" -#: src/Util/Temporal.php:352 +#: src/Util/Temporal.php:338 msgid "years" msgstr "" -#: src/Util/Temporal.php:353 +#: src/Util/Temporal.php:339 msgid "months" msgstr "" -#: src/Util/Temporal.php:354 +#: src/Util/Temporal.php:340 msgid "weeks" msgstr "" -#: src/Util/Temporal.php:355 +#: src/Util/Temporal.php:341 msgid "days" msgstr "" -#: src/Util/Temporal.php:356 +#: src/Util/Temporal.php:342 msgid "hour" msgstr "" -#: src/Util/Temporal.php:356 +#: src/Util/Temporal.php:342 msgid "hours" msgstr "" -#: src/Util/Temporal.php:357 +#: src/Util/Temporal.php:343 msgid "minute" msgstr "" -#: src/Util/Temporal.php:357 +#: src/Util/Temporal.php:343 msgid "minutes" msgstr "" -#: src/Util/Temporal.php:358 +#: src/Util/Temporal.php:344 msgid "second" msgstr "" -#: src/Util/Temporal.php:358 +#: src/Util/Temporal.php:344 msgid "seconds" msgstr "" -#: src/Util/Temporal.php:367 +#: src/Util/Temporal.php:353 #, php-format msgid "in %1$d %2$s" msgstr "" -#: src/Util/Temporal.php:370 +#: src/Util/Temporal.php:356 #, php-format msgid "%1$d %2$s ago" msgstr "" -#: src/Worker/PushSubscription.php:110 +#: src/Worker/PushSubscription.php:96 msgid "Notification from Friendica" msgstr "" -#: src/Worker/PushSubscription.php:111 +#: src/Worker/PushSubscription.php:97 msgid "Empty Post" msgstr "" -#: view/theme/duepuntozero/config.php:68 +#: view/theme/duepuntozero/config.php:56 msgid "default" msgstr "" -#: view/theme/duepuntozero/config.php:69 +#: view/theme/duepuntozero/config.php:57 msgid "greenzero" msgstr "" -#: view/theme/duepuntozero/config.php:70 +#: view/theme/duepuntozero/config.php:58 msgid "purplezero" msgstr "" -#: view/theme/duepuntozero/config.php:71 +#: view/theme/duepuntozero/config.php:59 msgid "easterbunny" msgstr "" -#: view/theme/duepuntozero/config.php:72 +#: view/theme/duepuntozero/config.php:60 msgid "darkzero" msgstr "" -#: view/theme/duepuntozero/config.php:73 +#: view/theme/duepuntozero/config.php:61 msgid "comix" msgstr "" -#: view/theme/duepuntozero/config.php:74 +#: view/theme/duepuntozero/config.php:62 msgid "slackr" msgstr "" -#: view/theme/duepuntozero/config.php:87 +#: view/theme/duepuntozero/config.php:75 msgid "Variations" msgstr "" -#: view/theme/frio/config.php:146 +#: view/theme/frio/config.php:134 msgid "Note" msgstr "" -#: view/theme/frio/config.php:146 +#: view/theme/frio/config.php:134 msgid "Check image permissions if all users are allowed to see the image" msgstr "" -#: view/theme/frio/config.php:152 +#: view/theme/frio/config.php:140 msgid "Appearance" msgstr "" -#: view/theme/frio/config.php:153 +#: view/theme/frio/config.php:141 msgid "Accent color" msgstr "" -#: view/theme/frio/config.php:153 +#: view/theme/frio/config.php:141 msgid "Blue" msgstr "" -#: view/theme/frio/config.php:153 +#: view/theme/frio/config.php:141 msgid "Red" msgstr "" -#: view/theme/frio/config.php:153 +#: view/theme/frio/config.php:141 msgid "Purple" msgstr "" -#: view/theme/frio/config.php:153 +#: view/theme/frio/config.php:141 msgid "Green" msgstr "" -#: view/theme/frio/config.php:153 +#: view/theme/frio/config.php:141 msgid "Pink" msgstr "" -#: view/theme/frio/config.php:154 +#: view/theme/frio/config.php:142 msgid "Copy or paste schemestring" msgstr "" -#: view/theme/frio/config.php:154 +#: view/theme/frio/config.php:142 msgid "" "You can copy this string to share your theme with others. Pasting here " "applies the schemestring" msgstr "" -#: view/theme/frio/config.php:155 +#: view/theme/frio/config.php:143 msgid "Navigation bar background color" msgstr "" -#: view/theme/frio/config.php:156 +#: view/theme/frio/config.php:144 msgid "Navigation bar icon color " msgstr "" -#: view/theme/frio/config.php:157 +#: view/theme/frio/config.php:145 msgid "Link color" msgstr "" -#: view/theme/frio/config.php:158 +#: view/theme/frio/config.php:146 msgid "Set the background color" msgstr "" -#: view/theme/frio/config.php:159 +#: view/theme/frio/config.php:147 msgid "Content background opacity" msgstr "" -#: view/theme/frio/config.php:160 +#: view/theme/frio/config.php:148 msgid "Set the background image" msgstr "" -#: view/theme/frio/config.php:161 +#: view/theme/frio/config.php:149 msgid "Background image style" msgstr "" -#: view/theme/frio/config.php:164 +#: view/theme/frio/config.php:152 msgid "Always open Compose page" msgstr "" -#: view/theme/frio/config.php:164 +#: view/theme/frio/config.php:152 msgid "" "The New Post button always open the 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:168 +#: view/theme/frio/config.php:156 msgid "Login page background image" msgstr "" -#: view/theme/frio/config.php:172 +#: view/theme/frio/config.php:160 msgid "Login page background color" msgstr "" -#: view/theme/frio/config.php:172 +#: view/theme/frio/config.php:160 msgid "Leave background image and color empty for theme defaults" msgstr "" -#: view/theme/frio/php/Image.php:39 +#: view/theme/frio/php/Image.php:27 msgid "Top Banner" msgstr "" -#: view/theme/frio/php/Image.php:39 +#: view/theme/frio/php/Image.php:27 msgid "" "Resize image to the width of the screen and show background color below on " "long pages." msgstr "" -#: view/theme/frio/php/Image.php:40 +#: view/theme/frio/php/Image.php:28 msgid "Full screen" msgstr "" -#: view/theme/frio/php/Image.php:40 +#: view/theme/frio/php/Image.php:28 msgid "" "Resize image to fill entire screen, clipping either the right or the bottom." msgstr "" -#: view/theme/frio/php/Image.php:41 +#: view/theme/frio/php/Image.php:29 msgid "Single row mosaic" msgstr "" -#: view/theme/frio/php/Image.php:41 +#: view/theme/frio/php/Image.php:29 msgid "" "Resize image to repeat it on a single row, either vertical or horizontal." msgstr "" -#: view/theme/frio/php/Image.php:42 +#: view/theme/frio/php/Image.php:30 msgid "Mosaic" msgstr "" -#: view/theme/frio/php/Image.php:42 +#: view/theme/frio/php/Image.php:30 msgid "Repeat image to fill the screen." msgstr "" -#: view/theme/frio/php/default.php:82 view/theme/frio/php/standard.php:40 +#: view/theme/frio/php/default.php:70 view/theme/frio/php/standard.php:28 msgid "Skip to main content" msgstr "" -#: view/theme/frio/php/default.php:153 view/theme/frio/php/standard.php:75 +#: view/theme/frio/php/default.php:141 view/theme/frio/php/standard.php:63 msgid "Back to top" msgstr "" -#: view/theme/frio/php/scheme.php:105 +#: view/theme/frio/php/scheme.php:93 msgid "Light" msgstr "" -#: view/theme/frio/php/scheme.php:106 +#: view/theme/frio/php/scheme.php:94 msgid "Dark" msgstr "" -#: view/theme/frio/php/scheme.php:107 +#: view/theme/frio/php/scheme.php:95 msgid "Black" msgstr "" -#: view/theme/frio/php/scheme.php:118 +#: view/theme/frio/php/scheme.php:106 msgid "Custom" msgstr "" -#: view/theme/frio/theme.php:214 +#: view/theme/frio/theme.php:202 msgid "Guest" msgstr "" -#: view/theme/frio/theme.php:217 +#: view/theme/frio/theme.php:205 msgid "Visitor" msgstr "" -#: view/theme/quattro/config.php:89 +#: view/theme/quattro/config.php:77 msgid "Alignment" msgstr "" -#: view/theme/quattro/config.php:89 +#: view/theme/quattro/config.php:77 msgid "Left" msgstr "" -#: view/theme/quattro/config.php:89 +#: view/theme/quattro/config.php:77 msgid "Center" msgstr "" -#: view/theme/quattro/config.php:90 +#: view/theme/quattro/config.php:78 msgid "Color scheme" msgstr "" -#: view/theme/quattro/config.php:91 +#: view/theme/quattro/config.php:79 msgid "Posts font size" msgstr "" -#: view/theme/quattro/config.php:92 +#: view/theme/quattro/config.php:80 msgid "Textareas font size" msgstr "" -#: view/theme/vier/config.php:91 +#: view/theme/vier/config.php:79 msgid "Comma separated list of helper groups" msgstr "" -#: view/theme/vier/config.php:131 +#: view/theme/vier/config.php:119 msgid "don't show" msgstr "" -#: view/theme/vier/config.php:131 +#: view/theme/vier/config.php:119 msgid "show" msgstr "" -#: view/theme/vier/config.php:137 +#: view/theme/vier/config.php:125 msgid "Set style" msgstr "" -#: view/theme/vier/config.php:138 +#: view/theme/vier/config.php:126 msgid "Community Pages" msgstr "" -#: view/theme/vier/config.php:139 view/theme/vier/theme.php:148 +#: view/theme/vier/config.php:127 view/theme/vier/theme.php:136 msgid "Community Profiles" msgstr "" -#: view/theme/vier/config.php:140 +#: view/theme/vier/config.php:128 msgid "Help or @NewHere ?" msgstr "" -#: view/theme/vier/config.php:141 view/theme/vier/theme.php:319 +#: view/theme/vier/config.php:129 view/theme/vier/theme.php:307 msgid "Connect Services" msgstr "" -#: view/theme/vier/config.php:142 +#: view/theme/vier/config.php:130 msgid "Find Friends" msgstr "" -#: view/theme/vier/config.php:143 view/theme/vier/theme.php:175 +#: view/theme/vier/config.php:131 view/theme/vier/theme.php:163 msgid "Last users" msgstr "" -#: view/theme/vier/theme.php:234 +#: view/theme/vier/theme.php:222 msgid "Quick Start" msgstr "" diff --git a/view/lang/cs/strings.php b/view/lang/cs/strings.php index 741dbf3bd3..e33686c236 100644 --- a/view/lang/cs/strings.php +++ b/view/lang/cs/strings.php @@ -573,7 +573,6 @@ $a->strings['An author or name was not found.'] = 'Autor nebo jméno nenalezeno' $a->strings['No browser URL could be matched to this address.'] = 'Této adrese neodpovídá žádné URL prohlížeče.'; $a->strings['Unable to match @-style Identity Address with a known protocol or email contact.'] = 'Není možné namapovat adresu identity ve stylu @ s žádným možným protokolem ani emailovým kontaktem.'; $a->strings['Use mailto: in front of address to force email check.'] = 'Použite mailo: před adresou k vynucení emailové kontroly.'; -$a->strings['The profile address specified belongs to a network which has been disabled on this site.'] = 'Zadaná adresa profilu patří do sítě, která byla na tomto serveru zakázána.'; $a->strings['Limited profile. This person will be unable to receive direct/personal notifications from you.'] = 'Omezený profil. Tato osoba nebude schopna od vás přijímat přímá/osobní oznámení.'; $a->strings['Unable to retrieve contact information.'] = 'Nepodařilo se získat kontaktní informace.'; $a->strings['Starts:'] = 'Začíná:'; @@ -616,7 +615,6 @@ $a->strings['g A l F d'] = 'g A, l d. F'; $a->strings['[No description]'] = '[Žádný popis]'; $a->strings['Event Reminders'] = 'Připomenutí událostí'; $a->strings['Upcoming events the next 7 days:'] = 'Nadcházející události v příštích 7 dnech:'; -$a->strings['OpenWebAuth: %1$s welcomes %2$s'] = 'OpenWebAuth: %1$s vítá uživatele %2$s'; $a->strings['Hometown:'] = 'Rodné město:'; $a->strings['Sexual Preference:'] = 'Sexuální orientace:'; $a->strings['Political Views:'] = 'Politické přesvědčení:'; @@ -860,7 +858,6 @@ $a->strings['When the database cleanup is enabled, this defines the days after w $a->strings['Lifespan of unclaimed items'] = 'Životnost nevyžádaných položek'; $a->strings['When the database cleanup is enabled, this defines the days after which unclaimed remote items (mostly content from the relay) will be deleted. Default value is 90 days. Defaults to the general lifespan value of remote items if set to 0.'] = '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.'; $a->strings['Lifespan of raw conversation data'] = 'Životnost hrubých dat konverzací'; -$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.'] = '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í.'; $a->strings['Maximum numbers of comments per post'] = 'Maximální počet komentářů k příspěvku'; $a->strings['How much comments should be shown for each post? Default value is 100.'] = 'Kolik komentářů by mělo být zobrazeno k každému příspěvku? Výchozí hodnotou je 100.'; $a->strings['Temp path'] = 'Cesta k dočasným souborům'; @@ -1057,7 +1054,6 @@ $a->strings['Submit Request'] = 'Odeslat požadavek'; $a->strings['You already added this contact.'] = 'Již jste si tento kontakt přidal/a'; $a->strings['The network type couldn\'t be detected. Contact can\'t be added.'] = 'Typ sítě nemohl být detekován. Kontakt nemůže být přidán.'; $a->strings['Diaspora support isn\'t enabled. Contact can\'t be added.'] = 'Podpora pro Diasporu není zapnuta. Kontakt nemůže být přidán.'; -$a->strings['OStatus support is disabled. Contact can\'t be added.'] = 'Podpora pro OStatus je vypnnuta. Kontakt nemůže být přidán.'; $a->strings['Please answer the following:'] = 'Odpovězte, prosím, následující:'; $a->strings['Your Identity Address:'] = 'Vaše adresa identity:'; $a->strings['Profile URL'] = 'URL profilu'; @@ -1361,8 +1357,6 @@ $a->strings['Show unread'] = 'Zobrazit nepřečtené'; $a->strings['{0} requested registration'] = '{0} požaduje registraci'; $a->strings['Authorize application connection'] = 'Povolit připojení aplikacím'; $a->strings['Do you want to authorize this application to access your posts and contacts, and/or create new posts for you?'] = 'Chcete umožnit této aplikaci přístup k vašim příspěvkům a kontaktům a/nebo k vytváření Vašich nových příspěvků?'; -$a->strings['Resubscribing to OStatus contacts'] = 'Znovu Vás registruji ke kontaktům OStatus'; -$a->strings['Keep this window open until done.'] = 'Toto okno nechte otevřené až do konce.'; $a->strings['No contact provided.'] = 'Nebyl poskytnut žádný kontakt.'; $a->strings['Couldn\'t fetch information for contact.'] = 'Nelze načíst informace pro kontakt.'; $a->strings['Couldn\'t fetch friends for contact.'] = 'Nelze načíst přátele pro kontakt.'; @@ -1370,6 +1364,7 @@ $a->strings['Done'] = 'Hotovo'; $a->strings['success'] = 'úspěch'; $a->strings['failed'] = 'selhalo'; $a->strings['ignored'] = 'ignorován'; +$a->strings['Keep this window open until done.'] = 'Toto okno nechte otevřené až do konce.'; $a->strings['Invalid photo with id %s.'] = 'Neplatná fotka s ID %s.'; $a->strings['Edit post'] = 'Upravit příspěvek'; $a->strings['web link'] = 'webový odkaz'; @@ -1384,9 +1379,9 @@ $a->strings['Remote privacy information not available.'] = 'Vzdálené informace $a->strings['Visible to:'] = 'Viditelné pro:'; $a->strings['Followers (%s)'] = 'Sledující (%s)'; $a->strings['No contacts.'] = 'Žádné kontakty.'; -$a->strings['%s\'s timeline'] = 'Časová osa uživatele %s'; $a->strings['%s\'s posts'] = 'Příspěvky uživatele %s'; $a->strings['%s\'s comments'] = 'Komentáře uživatele %s'; +$a->strings['%s\'s timeline'] = 'Časová osa uživatele %s'; $a->strings['Image exceeds size limit of %s'] = 'Velikost obrázku překročila limit %s'; $a->strings['Image upload didn\'t complete, please try again'] = 'Nahrávání obrázku nebylo dokončeno, zkuste to prosím znovu'; $a->strings['Image file is missing'] = 'Chybí soubor obrázku'; @@ -1524,7 +1519,6 @@ $a->strings['Diaspora (Socialhome, Hubzilla)'] = 'Diaspora (Socialhome, Hubzilla $a->strings['Email access is disabled on this site.'] = 'Přístup k e-mailu je na tomto serveru zakázán.'; $a->strings['None'] = 'Žádné'; $a->strings['General Social Media Settings'] = 'Obecná nastavení sociálních sítí'; -$a->strings['Repair OStatus subscriptions'] = 'Opravit odběry z OStatus'; $a->strings['Email/Mailbox Setup'] = 'Nastavení e-mailu'; $a->strings['If you wish to communicate with email contacts using this service (optional), please specify how to connect to your mailbox.'] = 'Pokud chcete komunikovat pomocí této služby s vašimi kontakty z e-mailu (volitelné), uveďte, jak se připojit k Vaší e-mailové schránce.'; $a->strings['Last successful email check:'] = 'Poslední úspěšná kontrola e-mailu:'; @@ -1720,7 +1714,6 @@ $a->strings['%s commented on %s\'s post'] = '%s okomentoval/a příspěvek uživ $a->strings['%s created a new post'] = '%s vytvořil nový příspěvek'; $a->strings['Friend Suggestion'] = 'Návrh přátelství'; $a->strings['Friend/Connect Request'] = 'Požadavek o přátelství/spojení'; -$a->strings['New Follower'] = 'Nový sledující'; $a->strings['%1$s sent you a new private message at %2$s.'] = '%1$s vám poslal/a novou soukromou zprávu na %2$s.'; $a->strings['a private message'] = 'soukromou zprávu'; $a->strings['%1$s sent you %2$s.'] = '%1$s vám poslal/a %2$s.'; @@ -1781,10 +1774,7 @@ $a->strings['%d comment'] = [ ]; $a->strings['Show more'] = 'Zobrazit více'; $a->strings['Show fewer'] = 'Zobrazit méně'; -$a->strings['%s is now following %s.'] = '%s nyní sleduje %s.'; -$a->strings['following'] = 'sleduji'; -$a->strings['%s stopped following %s.'] = '%s přestal/a sledovat uživatele %s.'; -$a->strings['stopped following'] = 'přestal/a sledovat'; $a->strings['Login failed.'] = 'Přihlášení se nezdařilo.'; $a->strings['Welcome %s'] = 'Vítejte, %s'; $a->strings['Please upload a profile photo.'] = 'Prosím nahrajte profilovou fotku.'; +$a->strings['OpenWebAuth: %1$s welcomes %2$s'] = 'OpenWebAuth: %1$s vítá uživatele %2$s'; diff --git a/view/lang/de/messages.po b/view/lang/de/messages.po index ec43a39abf..805fc69c30 100644 --- a/view/lang/de/messages.po +++ b/view/lang/de/messages.po @@ -1,8 +1,7 @@ # FRIENDICA Distributed Social Network -# SPDX-FileCopyrightText: Copyright (C) 2010-2024, the Friendica project -# -# SPDX-License-Identifier: AGPL-3.0-or-later -# +# Copyright (C) 2010-2024, the Friendica project +# This file is distributed under the same license as the Friendica package. +# # Translators: # Andreas H., 2015 # Andreas H., 2015-2018 @@ -58,7 +57,7 @@ msgid "" msgstr "" "Project-Id-Version: friendica\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-08-11 06:43+0000\n" +"POT-Creation-Date: 2024-10-07 20:46+0000\n" "PO-Revision-Date: 2011-05-05 10:19+0000\n" "Last-Translator: Tobias Diekershoff , 2016-2024\n" "Language-Team: German (http://app.transifex.com/Friendica/friendica/language/de/)\n" @@ -68,77 +67,77 @@ msgstr "" "Language: de\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: mod/item.php:101 mod/item.php:104 mod/item.php:171 mod/item.php:174 +#: mod/item.php:89 mod/item.php:92 mod/item.php:159 mod/item.php:162 msgid "Unable to locate original post." msgstr "Konnte den Originalbeitrag nicht finden." -#: mod/item.php:139 +#: mod/item.php:127 msgid "Post updated." msgstr "Beitrag aktualisiert." -#: mod/item.php:204 mod/item.php:208 +#: mod/item.php:192 mod/item.php:196 msgid "Item wasn't stored." msgstr "Eintrag wurde nicht gespeichert" -#: mod/item.php:218 +#: mod/item.php:206 msgid "Item couldn't be fetched." msgstr "Eintrag konnte nicht geholt werden." -#: mod/item.php:262 mod/item.php:266 +#: mod/item.php:250 mod/item.php:254 msgid "Empty post discarded." msgstr "Leerer Beitrag wurde verworfen." -#: mod/item.php:437 src/Module/Admin/Themes/Details.php:45 -#: src/Module/Admin/Themes/Index.php:65 src/Module/Debug/ItemBody.php:42 -#: src/Module/Debug/ItemBody.php:57 src/Module/Item/Feed.php:80 +#: mod/item.php:425 src/Module/Admin/Themes/Details.php:31 +#: src/Module/Admin/Themes/Index.php:51 src/Module/Debug/ItemBody.php:28 +#: src/Module/Debug/ItemBody.php:43 src/Module/Item/Feed.php:66 msgid "Item not found." msgstr "Beitrag nicht gefunden." -#: mod/item.php:461 mod/message.php:66 mod/message.php:112 mod/notes.php:45 -#: mod/photos.php:147 mod/photos.php:663 src/Model/Event.php:520 -#: src/Module/Attach.php:55 src/Module/BaseApi.php:103 -#: src/Module/BaseNotifications.php:98 src/Module/BaseSettings.php:50 -#: src/Module/Calendar/Event/API.php:88 src/Module/Calendar/Event/Form.php:84 -#: src/Module/Calendar/Export.php:82 src/Module/Calendar/Show.php:82 -#: src/Module/Circle.php:41 src/Module/Circle.php:84 -#: src/Module/Contact/Advanced.php:60 src/Module/Contact/Follow.php:87 -#: src/Module/Contact/Follow.php:160 src/Module/Contact/MatchInterests.php:87 -#: src/Module/Contact/Suggestions.php:54 src/Module/Contact/Unfollow.php:66 -#: src/Module/Contact/Unfollow.php:80 src/Module/Contact/Unfollow.php:112 -#: src/Module/FollowConfirm.php:38 src/Module/FriendSuggest.php:57 -#: src/Module/Invite.php:42 src/Module/Invite.php:131 -#: src/Module/Notifications/Notification.php:76 -#: src/Module/Notifications/Notification.php:107 -#: src/Module/OStatus/Repair.php:60 src/Module/OStatus/Subscribe.php:68 -#: src/Module/Post/Edit.php:76 src/Module/Profile/Common.php:75 -#: src/Module/Profile/Contacts.php:78 src/Module/Profile/Photos.php:92 -#: src/Module/Profile/Schedule.php:39 src/Module/Profile/Schedule.php:56 -#: src/Module/Register.php:84 src/Module/Register.php:97 -#: src/Module/Register.php:213 src/Module/Register.php:252 -#: src/Module/Search/Directory.php:37 src/Module/Settings/Account.php:50 -#: src/Module/Settings/Account.php:391 src/Module/Settings/Channels.php:66 -#: src/Module/Settings/Channels.php:141 src/Module/Settings/Delegation.php:90 -#: src/Module/Settings/Display.php:90 src/Module/Settings/Display.php:197 -#: src/Module/Settings/Profile/Photo/Crop.php:165 -#: src/Module/Settings/Profile/Photo/Index.php:110 -#: src/Module/Settings/RemoveMe.php:119 src/Module/Settings/UserExport.php:78 -#: src/Module/Settings/UserExport.php:114 -#: src/Module/Settings/UserExport.php:213 -#: src/Module/Settings/UserExport.php:233 -#: src/Module/Settings/UserExport.php:298 src/Module/User/Delegation.php:154 -#: src/Module/User/Import.php:85 src/Module/User/Import.php:92 +#: mod/item.php:449 mod/message.php:54 mod/message.php:100 mod/notes.php:33 +#: mod/photos.php:135 mod/photos.php:627 src/Model/Event.php:506 +#: src/Module/Attach.php:41 src/Module/BaseApi.php:89 +#: src/Module/BaseNotifications.php:84 src/Module/BaseSettings.php:36 +#: src/Module/Calendar/Event/API.php:74 src/Module/Calendar/Event/Form.php:70 +#: src/Module/Calendar/Export.php:68 src/Module/Calendar/Show.php:68 +#: src/Module/Circle.php:27 src/Module/Circle.php:70 +#: src/Module/Contact/Advanced.php:46 src/Module/Contact/Follow.php:73 +#: src/Module/Contact/Follow.php:141 src/Module/Contact/MatchInterests.php:73 +#: src/Module/Contact/Suggestions.php:40 src/Module/Contact/Unfollow.php:52 +#: src/Module/Contact/Unfollow.php:66 src/Module/Contact/Unfollow.php:98 +#: src/Module/FollowConfirm.php:24 src/Module/FriendSuggest.php:43 +#: src/Module/Invite.php:28 src/Module/Invite.php:117 +#: src/Module/Notifications/Notification.php:62 +#: src/Module/Notifications/Notification.php:93 +#: src/Module/OStatus/Subscribe.php:54 src/Module/Post/Edit.php:62 +#: src/Module/Profile/Common.php:61 src/Module/Profile/Contacts.php:64 +#: src/Module/Profile/Photos.php:78 src/Module/Profile/Schedule.php:25 +#: src/Module/Profile/Schedule.php:42 src/Module/Register.php:70 +#: src/Module/Register.php:83 src/Module/Register.php:199 +#: src/Module/Register.php:238 src/Module/Search/Directory.php:23 +#: src/Module/Settings/Account.php:36 src/Module/Settings/Account.php:377 +#: src/Module/Settings/Channels.php:52 src/Module/Settings/Channels.php:127 +#: src/Module/Settings/Delegation.php:76 src/Module/Settings/Display.php:76 +#: src/Module/Settings/Display.php:183 +#: src/Module/Settings/Profile/Photo/Crop.php:151 +#: src/Module/Settings/Profile/Photo/Index.php:96 +#: src/Module/Settings/RemoveMe.php:105 src/Module/Settings/UserExport.php:64 +#: src/Module/Settings/UserExport.php:100 +#: src/Module/Settings/UserExport.php:199 +#: src/Module/Settings/UserExport.php:219 +#: src/Module/Settings/UserExport.php:284 src/Module/User/Delegation.php:140 +#: src/Module/User/Import.php:71 src/Module/User/Import.php:78 msgid "Permission denied." msgstr "Zugriff verweigert." -#: mod/lostpass.php:40 +#: mod/lostpass.php:28 msgid "No valid account found." msgstr "Kein gültiges Konto gefunden." -#: mod/lostpass.php:52 +#: mod/lostpass.php:40 msgid "Password reset request issued. Check your email." msgstr "Zurücksetzen des Passworts eingeleitet. Bitte überprüfe Deine E-Mail." -#: mod/lostpass.php:58 +#: mod/lostpass.php:46 #, php-format msgid "" "\n" @@ -154,7 +153,7 @@ msgid "" "\t\tissued this request." msgstr "\nHallo %1$s,\n\nAuf \"%2$s\" ist eine Anfrage auf das Zurücksetzen deines Passworts gestellt\nworden. Um diese Anfrage zu verifizieren, folge bitte dem unten stehenden\nLink oder kopiere und füge ihn in die Adressleiste deines Browsers ein.\n\nSolltest du die Anfrage NICHT gestellt haben, ignoriere und/oder lösche diese\nE-Mail bitte.\n\nDein Passwort wird nicht geändert, solange wir nicht verifiziert haben, dass\ndu diese Änderung angefragt hast." -#: mod/lostpass.php:69 +#: mod/lostpass.php:57 #, php-format msgid "" "\n" @@ -171,70 +170,70 @@ msgid "" "\t\tLogin Name:\t%3$s" msgstr "\nUm deine Identität zu verifizieren, folge bitte diesem Link:\n\n%1$s\n\nDu wirst eine weitere E-Mail mit deinem neuen Passwort erhalten. Sobald du dich\nangemeldet hast, kannst du dein Passwort in den Einstellungen ändern.\n\nDie Anmeldedetails sind die folgenden:\n\nAdresse der Seite:\t%2$s\nBenutzername:\t%3$s" -#: mod/lostpass.php:84 +#: mod/lostpass.php:72 #, php-format msgid "Password reset requested at %s" msgstr "Anfrage zum Zurücksetzen des Passworts auf %s erhalten" -#: mod/lostpass.php:100 +#: mod/lostpass.php:88 msgid "" "Request could not be verified. (You may have previously submitted it.) " "Password reset failed." msgstr "Anfrage konnte nicht verifiziert werden. (Eventuell hast du bereits eine ähnliche Anfrage gestellt.) Zurücksetzen des Passworts gescheitert." -#: mod/lostpass.php:113 +#: mod/lostpass.php:101 msgid "Request has expired, please make a new one." msgstr "Die Anfrage ist abgelaufen. Bitte stelle eine erneute." -#: mod/lostpass.php:128 +#: mod/lostpass.php:116 msgid "Forgot your Password?" msgstr "Hast du dein Passwort vergessen?" -#: mod/lostpass.php:129 +#: mod/lostpass.php:117 msgid "" "Enter your email address and submit to have your password reset. Then check " "your email for further instructions." msgstr "Gib Deine E-Mail-Adresse an und fordere ein neues Passwort an. Es werden dir dann weitere Informationen per Mail zugesendet." -#: mod/lostpass.php:130 src/Module/Security/Login.php:164 +#: mod/lostpass.php:118 src/Module/Security/Login.php:150 msgid "Nickname or Email: " msgstr "Spitzname oder E-Mail:" -#: mod/lostpass.php:131 +#: mod/lostpass.php:119 msgid "Reset" msgstr "Zurücksetzen" -#: mod/lostpass.php:146 src/Module/Security/Login.php:176 +#: mod/lostpass.php:134 src/Module/Security/Login.php:162 msgid "Password Reset" msgstr "Passwort zurücksetzen" -#: mod/lostpass.php:147 +#: mod/lostpass.php:135 msgid "Your password has been reset as requested." msgstr "Dein Passwort wurde wie gewünscht zurückgesetzt." -#: mod/lostpass.php:148 +#: mod/lostpass.php:136 msgid "Your new password is" msgstr "Dein neues Passwort lautet" -#: mod/lostpass.php:149 +#: mod/lostpass.php:137 msgid "Save or copy your new password - and then" msgstr "Speichere oder kopiere dein neues Passwort - und dann" -#: mod/lostpass.php:150 +#: mod/lostpass.php:138 msgid "click here to login" msgstr "hier klicken, um dich anzumelden" -#: mod/lostpass.php:151 +#: mod/lostpass.php:139 msgid "" "Your password may be changed from the Settings page after " "successful login." msgstr "Du kannst das Passwort in den Einstellungen ändern, sobald du dich erfolgreich angemeldet hast." -#: mod/lostpass.php:155 +#: mod/lostpass.php:143 msgid "Your password has been reset." msgstr "Dein Passwort wurde zurückgesetzt." -#: mod/lostpass.php:158 +#: mod/lostpass.php:146 #, php-format msgid "" "\n" @@ -245,7 +244,7 @@ msgid "" "\t\t" msgstr "\nHallo %1$s,\n\nDein Passwort wurde wie gewünscht geändert. Bitte bewahre diese Informationen gut auf (oder ändere dein Passwort in eines, das du dir leicht merken kannst)." -#: mod/lostpass.php:164 +#: mod/lostpass.php:152 #, php-format msgid "" "\n" @@ -259,2415 +258,2415 @@ msgid "" "\t\t" msgstr "\nDie Anmeldedaten sind die folgenden:\n\nAdresse der Seite: %1$s\nLogin Name: %2$s\nPasswort: %3$s\n\nDas Passwort kann und sollte in den Kontoeinstellungen nach der Anmeldung geändert werden." -#: mod/lostpass.php:176 +#: mod/lostpass.php:164 #, php-format msgid "Your password has been changed at %s" msgstr "Auf %s wurde dein Passwort geändert" -#: mod/message.php:45 mod/message.php:127 src/Content/Nav.php:321 +#: mod/message.php:33 mod/message.php:115 src/Content/Nav.php:307 msgid "New Message" msgstr "Neue Nachricht" -#: mod/message.php:81 +#: mod/message.php:69 msgid "No recipient selected." msgstr "Kein Empfänger gewählt." -#: mod/message.php:86 +#: mod/message.php:74 msgid "Unable to locate contact information." msgstr "Konnte die Kontaktinformationen nicht finden." -#: mod/message.php:90 +#: mod/message.php:78 msgid "Message could not be sent." msgstr "Nachricht konnte nicht gesendet werden." -#: mod/message.php:94 +#: mod/message.php:82 msgid "Message collection failure." msgstr "Konnte Nachrichten nicht abrufen." -#: mod/message.php:121 src/Module/Notifications/Introductions.php:141 -#: src/Module/Notifications/Introductions.php:176 -#: src/Module/Notifications/Notification.php:85 +#: mod/message.php:109 src/Module/Notifications/Introductions.php:127 +#: src/Module/Notifications/Introductions.php:162 +#: src/Module/Notifications/Notification.php:71 msgid "Discard" msgstr "Verwerfen" -#: mod/message.php:134 src/Content/Nav.php:318 view/theme/frio/theme.php:244 +#: mod/message.php:122 src/Content/Nav.php:304 view/theme/frio/theme.php:232 msgid "Messages" msgstr "Nachrichten" -#: mod/message.php:147 +#: mod/message.php:135 msgid "Conversation not found." msgstr "Unterhaltung nicht gefunden." -#: mod/message.php:152 +#: mod/message.php:140 msgid "Message was not deleted." msgstr "Nachricht wurde nicht gelöscht" -#: mod/message.php:167 +#: mod/message.php:155 msgid "Conversation was not removed." msgstr "Unterhaltung wurde nicht entfernt" -#: mod/message.php:180 mod/message.php:285 +#: mod/message.php:168 mod/message.php:273 msgid "Please enter a link URL:" msgstr "Bitte gib die URL des Links ein:" -#: mod/message.php:189 +#: mod/message.php:177 msgid "Send Private Message" msgstr "Private Nachricht senden" -#: mod/message.php:190 mod/message.php:345 -#: src/Module/Privacy/PermissionTooltip.php:132 +#: mod/message.php:178 mod/message.php:333 +#: src/Module/Privacy/PermissionTooltip.php:118 msgid "To:" msgstr "An:" -#: mod/message.php:191 mod/message.php:346 +#: mod/message.php:179 mod/message.php:334 msgid "Subject:" msgstr "Betreff:" -#: mod/message.php:195 mod/message.php:349 src/Module/Invite.php:171 +#: mod/message.php:183 mod/message.php:337 src/Module/Invite.php:157 msgid "Your message:" msgstr "Deine Nachricht:" -#: mod/message.php:198 mod/message.php:353 src/Content/Conversation.php:369 -#: src/Module/Post/Edit.php:131 +#: mod/message.php:186 mod/message.php:341 src/Content/Conversation.php:355 +#: src/Module/Post/Edit.php:117 msgid "Upload photo" msgstr "Foto hochladen" -#: mod/message.php:199 mod/message.php:354 src/Module/Post/Edit.php:135 +#: mod/message.php:187 mod/message.php:342 src/Module/Post/Edit.php:121 msgid "Insert web link" msgstr "Einen Link einfügen" -#: mod/message.php:200 mod/message.php:356 mod/photos.php:1291 -#: src/Content/Conversation.php:400 src/Content/Conversation.php:1576 -#: src/Module/Item/Compose.php:213 src/Module/Post/Edit.php:145 -#: src/Object/Post.php:618 +#: mod/message.php:188 mod/message.php:344 mod/photos.php:1255 +#: src/Content/Conversation.php:386 src/Content/Conversation.php:1562 +#: src/Module/Item/Compose.php:199 src/Module/Post/Edit.php:131 +#: src/Object/Post.php:604 msgid "Please wait" msgstr "Bitte warten" -#: mod/message.php:201 mod/message.php:355 mod/photos.php:694 -#: mod/photos.php:814 mod/photos.php:1091 mod/photos.php:1132 -#: mod/photos.php:1188 mod/photos.php:1268 -#: src/Module/Calendar/Event/Form.php:250 src/Module/Contact/Advanced.php:132 -#: src/Module/Contact/Profile.php:384 -#: src/Module/Debug/ActivityPubConversion.php:146 -#: src/Module/Debug/Babel.php:321 src/Module/Debug/Localtime.php:64 -#: src/Module/Debug/Probe.php:54 src/Module/Debug/WebFinger.php:51 -#: src/Module/FriendSuggest.php:145 src/Module/Install.php:234 -#: src/Module/Install.php:274 src/Module/Install.php:309 -#: src/Module/Invite.php:178 src/Module/Item/Compose.php:196 -#: src/Module/Moderation/Item/Source.php:85 -#: src/Module/Moderation/Report/Create.php:168 -#: src/Module/Moderation/Report/Create.php:183 -#: src/Module/Moderation/Report/Create.php:211 -#: src/Module/Moderation/Report/Create.php:263 -#: src/Module/Profile/Profile.php:276 -#: src/Module/Settings/Profile/Index.php:262 -#: src/Module/Settings/Server/Action.php:79 src/Module/User/Delegation.php:189 -#: src/Object/Post.php:1159 view/theme/duepuntozero/config.php:85 -#: view/theme/frio/config.php:150 view/theme/quattro/config.php:87 -#: view/theme/vier/config.php:135 +#: mod/message.php:189 mod/message.php:343 mod/photos.php:658 +#: mod/photos.php:778 mod/photos.php:1055 mod/photos.php:1096 +#: mod/photos.php:1152 mod/photos.php:1232 +#: src/Module/Calendar/Event/Form.php:236 src/Module/Contact/Advanced.php:118 +#: src/Module/Contact/Profile.php:370 +#: src/Module/Debug/ActivityPubConversion.php:132 +#: src/Module/Debug/Babel.php:307 src/Module/Debug/Localtime.php:50 +#: src/Module/Debug/Probe.php:40 src/Module/Debug/WebFinger.php:37 +#: src/Module/FriendSuggest.php:131 src/Module/Install.php:220 +#: src/Module/Install.php:260 src/Module/Install.php:295 +#: src/Module/Invite.php:164 src/Module/Item/Compose.php:182 +#: src/Module/Moderation/Item/Source.php:71 +#: src/Module/Moderation/Report/Create.php:154 +#: src/Module/Moderation/Report/Create.php:169 +#: src/Module/Moderation/Report/Create.php:197 +#: src/Module/Moderation/Report/Create.php:249 +#: src/Module/Profile/Profile.php:262 +#: src/Module/Settings/Profile/Index.php:248 +#: src/Module/Settings/Server/Action.php:65 src/Module/User/Delegation.php:175 +#: src/Object/Post.php:1145 view/theme/duepuntozero/config.php:73 +#: view/theme/frio/config.php:138 view/theme/quattro/config.php:75 +#: view/theme/vier/config.php:123 msgid "Submit" msgstr "Senden" -#: mod/message.php:222 +#: mod/message.php:210 msgid "No messages." msgstr "Keine Nachrichten." -#: mod/message.php:278 +#: mod/message.php:266 msgid "Message not available." msgstr "Nachricht nicht verfügbar." -#: mod/message.php:322 +#: mod/message.php:310 msgid "Delete message" msgstr "Nachricht löschen" -#: mod/message.php:324 mod/message.php:453 +#: mod/message.php:312 mod/message.php:441 msgid "D, d M Y - g:i A" msgstr "D, d. M Y - H:i" -#: mod/message.php:339 mod/message.php:450 +#: mod/message.php:327 mod/message.php:438 msgid "Delete conversation" msgstr "Unterhaltung löschen" -#: mod/message.php:341 +#: mod/message.php:329 msgid "" "No secure communications available. You may be able to " "respond from the sender's profile page." msgstr "Sichere Kommunikation ist nicht verfügbar. Eventuell kannst du auf der Profilseite des Absenders antworten." -#: mod/message.php:344 +#: mod/message.php:332 msgid "Send Reply" msgstr "Antwort senden" -#: mod/message.php:424 +#: mod/message.php:412 #, php-format msgid "Unknown sender - %s" msgstr "Unbekannter Absender - %s" -#: mod/message.php:426 +#: mod/message.php:414 #, php-format msgid "You and %s" msgstr "Du und %s" -#: mod/message.php:428 +#: mod/message.php:416 #, php-format msgid "%s and You" msgstr "%s und du" -#: mod/message.php:456 +#: mod/message.php:444 #, php-format msgid "%d message" msgid_plural "%d messages" msgstr[0] "%d Nachricht" msgstr[1] "%d Nachrichten" -#: mod/notes.php:52 src/Module/BaseProfile.php:108 +#: mod/notes.php:40 src/Module/BaseProfile.php:94 msgid "Personal Notes" msgstr "Persönliche Notizen" -#: mod/notes.php:56 +#: mod/notes.php:44 msgid "Personal notes are visible only by yourself." msgstr "Persönliche Notizen sind nur für dich sichtbar." -#: mod/notes.php:57 src/Content/Text/HTML.php:861 -#: src/Module/Admin/Storage.php:142 src/Module/Filer/SaveTag.php:74 -#: src/Module/Post/Edit.php:129 src/Module/Settings/Channels.php:229 +#: mod/notes.php:45 src/Content/Text/HTML.php:847 +#: src/Module/Admin/Storage.php:128 src/Module/Filer/SaveTag.php:60 +#: src/Module/Post/Edit.php:115 src/Module/Settings/Channels.php:215 msgid "Save" msgstr "Speichern" -#: mod/photos.php:66 mod/photos.php:129 mod/photos.php:573 -#: src/Model/Event.php:512 src/Model/Profile.php:227 -#: src/Module/Calendar/Export.php:74 src/Module/Calendar/Show.php:74 -#: src/Module/DFRN/Poll.php:43 src/Module/Feed.php:66 src/Module/HCard.php:51 -#: src/Module/Profile/Common.php:62 src/Module/Profile/Common.php:71 -#: src/Module/Profile/Contacts.php:64 src/Module/Profile/Contacts.php:72 -#: src/Module/Profile/Conversations.php:91 src/Module/Profile/Media.php:56 -#: src/Module/Profile/Photos.php:83 src/Module/Profile/RemoteFollow.php:71 -#: src/Module/Register.php:274 +#: mod/photos.php:54 mod/photos.php:117 mod/photos.php:537 +#: src/Model/Event.php:498 src/Model/Profile.php:213 +#: src/Module/Calendar/Export.php:60 src/Module/Calendar/Show.php:60 +#: src/Module/Feed.php:52 src/Module/HCard.php:37 +#: src/Module/Profile/Common.php:48 src/Module/Profile/Common.php:57 +#: src/Module/Profile/Contacts.php:50 src/Module/Profile/Contacts.php:58 +#: src/Module/Profile/Conversations.php:77 src/Module/Profile/Media.php:42 +#: src/Module/Profile/Photos.php:69 src/Module/Profile/RemoteFollow.php:57 +#: src/Module/Register.php:260 msgid "User not found." msgstr "Benutzer nicht gefunden." -#: mod/photos.php:103 src/Module/BaseProfile.php:68 -#: src/Module/Profile/Photos.php:375 +#: mod/photos.php:91 src/Module/BaseProfile.php:54 +#: src/Module/Profile/Photos.php:361 msgid "Photo Albums" msgstr "Fotoalben" -#: mod/photos.php:104 src/Module/Profile/Photos.php:376 -#: src/Module/Profile/Photos.php:396 +#: mod/photos.php:92 src/Module/Profile/Photos.php:362 +#: src/Module/Profile/Photos.php:382 msgid "Recent Photos" msgstr "Neueste Fotos" -#: mod/photos.php:106 mod/photos.php:862 src/Module/Profile/Photos.php:378 -#: src/Module/Profile/Photos.php:398 +#: mod/photos.php:94 mod/photos.php:826 src/Module/Profile/Photos.php:364 +#: src/Module/Profile/Photos.php:384 msgid "Upload New Photos" msgstr "Neue Fotos hochladen" -#: mod/photos.php:118 src/Module/BaseSettings.php:72 -#: src/Module/Profile/Photos.php:359 +#: mod/photos.php:106 src/Module/BaseSettings.php:58 +#: src/Module/Profile/Photos.php:345 msgid "everybody" msgstr "jeder" -#: mod/photos.php:154 +#: mod/photos.php:142 msgid "Contact information unavailable" msgstr "Kontaktinformationen nicht verfügbar" -#: mod/photos.php:183 +#: mod/photos.php:171 msgid "Album not found." msgstr "Album nicht gefunden." -#: mod/photos.php:239 +#: mod/photos.php:227 msgid "Album successfully deleted" msgstr "Album wurde erfolgreich gelöscht." -#: mod/photos.php:241 +#: mod/photos.php:229 msgid "Album was empty." msgstr "Album ist leer." -#: mod/photos.php:272 +#: mod/photos.php:260 msgid "Failed to delete the photo." msgstr "Das Foto konnte nicht gelöscht werden." -#: mod/photos.php:540 +#: mod/photos.php:504 msgid "a photo" msgstr "einem Foto" -#: mod/photos.php:540 +#: mod/photos.php:504 #, 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:577 src/Module/Conversation/Community.php:160 -#: src/Module/Directory.php:49 src/Module/Profile/Photos.php:293 -#: src/Module/Search/Index.php:65 +#: mod/photos.php:541 src/Module/Conversation/Community.php:148 +#: src/Module/Directory.php:35 src/Module/Profile/Photos.php:279 +#: src/Module/Search/Index.php:51 msgid "Public access denied." msgstr "Öffentlicher Zugriff verweigert." -#: mod/photos.php:582 +#: mod/photos.php:546 msgid "No photos selected" msgstr "Keine Bilder ausgewählt" -#: mod/photos.php:710 +#: mod/photos.php:674 #, php-format msgid "The maximum accepted image size is %s" msgstr "Die maximale erlaubte Größe von Bildern beträgt %s" -#: mod/photos.php:717 +#: mod/photos.php:681 msgid "Upload Photos" msgstr "Bilder hochladen" -#: mod/photos.php:721 mod/photos.php:810 +#: mod/photos.php:685 mod/photos.php:774 msgid "New album name: " msgstr "Name des neuen Albums: " -#: mod/photos.php:722 +#: mod/photos.php:686 msgid "or select existing album:" msgstr "oder wähle ein bestehendes Album:" -#: mod/photos.php:723 +#: mod/photos.php:687 msgid "Do not show a status post for this upload" msgstr "Keine Status-Mitteilung für diesen Beitrag anzeigen" -#: mod/photos.php:726 mod/photos.php:1087 src/Content/Conversation.php:402 -#: src/Module/Calendar/Event/Form.php:253 src/Module/Post/Edit.php:183 +#: mod/photos.php:690 mod/photos.php:1051 src/Content/Conversation.php:388 +#: src/Module/Calendar/Event/Form.php:239 src/Module/Post/Edit.php:169 msgid "Permissions" msgstr "Berechtigungen" -#: mod/photos.php:791 +#: mod/photos.php:755 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:792 mod/photos.php:815 +#: mod/photos.php:756 mod/photos.php:779 msgid "Delete Album" msgstr "Album löschen" -#: mod/photos.php:793 mod/photos.php:893 src/Content/Conversation.php:417 -#: src/Module/Contact/Follow.php:173 src/Module/Contact/Revoke.php:106 -#: src/Module/Contact/Unfollow.php:126 -#: src/Module/Media/Attachment/Browser.php:77 -#: src/Module/Media/Photo/Browser.php:88 src/Module/Post/Edit.php:167 -#: src/Module/Post/Tag/Remove.php:109 src/Module/Profile/RemoteFollow.php:134 -#: src/Module/Security/TwoFactor/SignOut.php:125 +#: mod/photos.php:757 mod/photos.php:857 src/Content/Conversation.php:403 +#: src/Module/Contact/Follow.php:154 src/Module/Contact/Revoke.php:92 +#: src/Module/Contact/Unfollow.php:112 +#: src/Module/Media/Attachment/Browser.php:63 +#: src/Module/Media/Photo/Browser.php:74 src/Module/Post/Edit.php:153 +#: src/Module/Post/Tag/Remove.php:95 src/Module/Profile/RemoteFollow.php:120 +#: src/Module/Security/TwoFactor/SignOut.php:111 msgid "Cancel" msgstr "Abbrechen" -#: mod/photos.php:819 +#: mod/photos.php:783 msgid "Edit Album" msgstr "Album bearbeiten" -#: mod/photos.php:820 +#: mod/photos.php:784 msgid "Drop Album" msgstr "Album löschen" -#: mod/photos.php:824 +#: mod/photos.php:788 msgid "Show Newest First" msgstr "Zeige neueste zuerst" -#: mod/photos.php:826 +#: mod/photos.php:790 msgid "Show Oldest First" msgstr "Zeige älteste zuerst" -#: mod/photos.php:847 src/Module/Profile/Photos.php:346 +#: mod/photos.php:811 src/Module/Profile/Photos.php:332 msgid "View Photo" msgstr "Foto betrachten" -#: mod/photos.php:879 +#: mod/photos.php:843 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:881 +#: mod/photos.php:845 msgid "Photo not available" msgstr "Foto nicht verfügbar" -#: mod/photos.php:891 +#: mod/photos.php:855 msgid "Do you really want to delete this photo?" msgstr "Möchtest du wirklich dieses Foto löschen?" -#: mod/photos.php:892 mod/photos.php:1092 +#: mod/photos.php:856 mod/photos.php:1056 msgid "Delete Photo" msgstr "Foto löschen" -#: mod/photos.php:990 +#: mod/photos.php:954 msgid "View photo" msgstr "Fotos ansehen" -#: mod/photos.php:992 +#: mod/photos.php:956 msgid "Edit photo" msgstr "Foto bearbeiten" -#: mod/photos.php:993 +#: mod/photos.php:957 msgid "Delete photo" msgstr "Foto löschen" -#: mod/photos.php:994 +#: mod/photos.php:958 msgid "Use as profile photo" msgstr "Als Profilbild verwenden" -#: mod/photos.php:1001 +#: mod/photos.php:965 msgid "Private Photo" msgstr "Privates Foto" -#: mod/photos.php:1007 +#: mod/photos.php:971 msgid "View Full Size" msgstr "Betrachte Originalgröße" -#: mod/photos.php:1060 +#: mod/photos.php:1024 msgid "Tags: " msgstr "Tags: " -#: mod/photos.php:1063 +#: mod/photos.php:1027 msgid "[Select tags to remove]" msgstr "[Zu entfernende Tags auswählen]" -#: mod/photos.php:1078 +#: mod/photos.php:1042 msgid "New album name" msgstr "Name des neuen Albums" -#: mod/photos.php:1079 +#: mod/photos.php:1043 msgid "Caption" msgstr "Bildunterschrift" -#: mod/photos.php:1080 +#: mod/photos.php:1044 msgid "Add a Tag" msgstr "Tag hinzufügen" -#: mod/photos.php:1080 +#: mod/photos.php:1044 msgid "" "Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping" msgstr "Beispiel: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping" -#: mod/photos.php:1081 +#: mod/photos.php:1045 msgid "Do not rotate" msgstr "Nicht rotieren" -#: mod/photos.php:1082 +#: mod/photos.php:1046 msgid "Rotate CW (right)" msgstr "Drehen US (rechts)" -#: mod/photos.php:1083 +#: mod/photos.php:1047 msgid "Rotate CCW (left)" msgstr "Drehen EUS (links)" -#: mod/photos.php:1129 mod/photos.php:1185 mod/photos.php:1265 -#: src/Module/Contact.php:625 src/Module/Item/Compose.php:195 -#: src/Object/Post.php:1156 +#: mod/photos.php:1093 mod/photos.php:1149 mod/photos.php:1229 +#: src/Module/Contact.php:600 src/Module/Item/Compose.php:181 +#: src/Object/Post.php:1142 msgid "This is you" msgstr "Das bist du" -#: mod/photos.php:1131 mod/photos.php:1187 mod/photos.php:1267 -#: src/Module/Moderation/Reports.php:116 src/Object/Post.php:612 -#: src/Object/Post.php:1158 +#: mod/photos.php:1095 mod/photos.php:1151 mod/photos.php:1231 +#: src/Module/Moderation/Reports.php:102 src/Object/Post.php:598 +#: src/Object/Post.php:1144 msgid "Comment" msgstr "Kommentar" -#: mod/photos.php:1133 mod/photos.php:1189 mod/photos.php:1269 -#: src/Content/Conversation.php:414 src/Module/Calendar/Event/Form.php:248 -#: src/Module/Item/Compose.php:208 src/Module/Post/Edit.php:165 -#: src/Object/Post.php:1172 +#: mod/photos.php:1097 mod/photos.php:1153 mod/photos.php:1233 +#: src/Content/Conversation.php:400 src/Module/Calendar/Event/Form.php:234 +#: src/Module/Item/Compose.php:194 src/Module/Post/Edit.php:151 +#: src/Object/Post.php:1158 msgid "Preview" msgstr "Vorschau" -#: mod/photos.php:1134 src/Content/Conversation.php:368 -#: src/Module/Post/Edit.php:130 src/Object/Post.php:1160 +#: mod/photos.php:1098 src/Content/Conversation.php:354 +#: src/Module/Post/Edit.php:116 src/Object/Post.php:1146 msgid "Loading..." msgstr "lädt..." -#: mod/photos.php:1226 src/Content/Conversation.php:1498 -#: src/Object/Post.php:274 +#: mod/photos.php:1190 src/Content/Conversation.php:1484 +#: src/Object/Post.php:260 msgid "Select" msgstr "Auswählen" -#: mod/photos.php:1227 src/Content/Conversation.php:1499 -#: src/Module/Moderation/Users/Active.php:136 -#: src/Module/Moderation/Users/Blocked.php:136 -#: src/Module/Moderation/Users/Index.php:151 -#: src/Module/Settings/Connectors.php:254 -#: src/Module/Settings/Server/Index.php:109 +#: mod/photos.php:1191 src/Content/Conversation.php:1485 +#: src/Module/Moderation/Users/Active.php:122 +#: src/Module/Moderation/Users/Blocked.php:122 +#: src/Module/Moderation/Users/Index.php:137 +#: src/Module/Settings/Connectors.php:233 +#: src/Module/Settings/Server/Index.php:95 msgid "Delete" msgstr "Löschen" -#: mod/photos.php:1288 src/Object/Post.php:440 +#: mod/photos.php:1252 src/Object/Post.php:426 msgid "Like" msgstr "Mag ich" -#: mod/photos.php:1289 src/Object/Post.php:440 +#: mod/photos.php:1253 src/Object/Post.php:426 msgid "I like this (toggle)" msgstr "Ich mag das (toggle)" -#: mod/photos.php:1290 src/Object/Post.php:441 +#: mod/photos.php:1254 src/Object/Post.php:427 msgid "Dislike" msgstr "Mag ich nicht" -#: mod/photos.php:1292 src/Object/Post.php:441 +#: mod/photos.php:1256 src/Object/Post.php:427 msgid "I don't like this (toggle)" msgstr "Ich mag das nicht (toggle)" -#: mod/photos.php:1314 +#: mod/photos.php:1278 msgid "Map" msgstr "Karte" -#: src/App.php:446 +#: src/App.php:432 msgid "No system theme config value set." msgstr "Es wurde kein Konfigurationswert für das systemweite Theme gesetzt." -#: src/App.php:554 +#: src/App.php:540 msgid "Apologies but the website is unavailable at the moment." msgstr "Entschuldigung, aber die Webseite ist derzeit nicht erreichbar." -#: src/App/Page.php:250 +#: src/App/Page.php:236 msgid "Delete this item?" msgstr "Diesen Beitrag löschen?" -#: src/App/Page.php:251 +#: src/App/Page.php:237 msgid "" "Block this author? They won't be able to follow you nor see your public " "posts, and you won't be able to see their posts and their notifications." msgstr "Soll dieser Autor geblockt werden? Sie werden nicht in der Lage sein, dir zu folgen oder deine öffentlichen Beiträge zu sehen. Außerdem wirst du nicht in der Lage sein ihre Beiträge und Benachrichtigungen zu lesen." -#: src/App/Page.php:252 +#: src/App/Page.php:238 msgid "" "Ignore this author? You won't be able to see their posts and their " "notifications." msgstr "Diesen Autor ignorieren? Du wirst seine Beiträge und Benachrichtigungen nicht mehr sehen können." -#: src/App/Page.php:253 +#: src/App/Page.php:239 msgid "Collapse this author's posts?" msgstr "Beiträge dieses Autors zusammenklappen?" -#: src/App/Page.php:254 +#: src/App/Page.php:240 msgid "Ignore this author's server?" msgstr "Den Server dieses Autors ignorieren?" -#: src/App/Page.php:255 src/Module/Settings/Server/Action.php:61 -#: src/Module/Settings/Server/Index.php:108 +#: src/App/Page.php:241 src/Module/Settings/Server/Action.php:47 +#: src/Module/Settings/Server/Index.php:94 msgid "" "You won't see any content from this server including reshares in your " "Network page, the community pages and individual conversations." msgstr "Du wirst keine Inhalte von dieser Instanz sehen, auch nicht das erneute Teilen auf Ihrer Netzwerkseite, den Gemeinschaftsseiten und einzelnen Unterhaltungen." -#: src/App/Page.php:257 +#: src/App/Page.php:243 msgid "Like not successful" msgstr "Das \"Mag ich\" war nicht erfolgreich" -#: src/App/Page.php:258 +#: src/App/Page.php:244 msgid "Dislike not successful" msgstr "Das \"Mag ich nicht\" war nicht erfolgreich" -#: src/App/Page.php:259 +#: src/App/Page.php:245 msgid "Sharing not successful" msgstr "Das Teilen war nicht erfolgreich" -#: src/App/Page.php:260 +#: src/App/Page.php:246 msgid "Attendance unsuccessful" msgstr "Die Teilnahme war nicht erfolgreich" -#: src/App/Page.php:261 +#: src/App/Page.php:247 msgid "Backend error" msgstr "Fehler im Backend" -#: src/App/Page.php:262 +#: src/App/Page.php:248 msgid "Network error" msgstr "Netzwerkfehler" -#: src/App/Page.php:265 +#: src/App/Page.php:251 msgid "Drop files here to upload" msgstr "Ziehe Dateien hierher, um sie hochzuladen" -#: src/App/Page.php:266 +#: src/App/Page.php:252 msgid "Your browser does not support drag and drop file uploads." msgstr "Dein Browser unterstützt das Hochladen von Dateien per Drag & Drop nicht." -#: src/App/Page.php:267 +#: src/App/Page.php:253 msgid "" "Please use the fallback form below to upload your files like in the olden " "days." msgstr "Bitte verwende das unten stehende Formular, um Ihre Dateien wie früher hochzuladen." -#: src/App/Page.php:268 +#: src/App/Page.php:254 msgid "File is too big ({{filesize}}MiB). Max filesize: {{maxFilesize}}MiB." msgstr "Datei ist zu groß ({{filesize}}MiB). Maximale Dateigröße: {{maxFilesize}}MiB." -#: src/App/Page.php:269 +#: src/App/Page.php:255 msgid "You can't upload files of this type." msgstr "Du kannst keine Dateien dieses Typs hochladen." -#: src/App/Page.php:270 +#: src/App/Page.php:256 msgid "Server responded with {{statusCode}} code." msgstr "Der Server antwortete mit Status-Code {{statusCode}} " -#: src/App/Page.php:271 +#: src/App/Page.php:257 msgid "Cancel upload" msgstr "Hochladen abbrechen" -#: src/App/Page.php:272 +#: src/App/Page.php:258 msgid "Upload canceled." msgstr "Hochladen abgebrochen" -#: src/App/Page.php:273 +#: src/App/Page.php:259 msgid "Are you sure you want to cancel this upload?" msgstr "Bist du sicher, dass du diesen Upload abbrechen möchten?" -#: src/App/Page.php:274 +#: src/App/Page.php:260 msgid "Remove file" msgstr "Datei entfernen" -#: src/App/Page.php:275 +#: src/App/Page.php:261 msgid "You can't upload any more files." msgstr "Du kannst keine weiteren Dateien hochladen." -#: src/App/Page.php:353 +#: src/App/Page.php:339 msgid "toggle mobile" msgstr "mobile Ansicht umschalten" -#: src/App/Router.php:309 +#: src/App/Router.php:295 #, php-format msgid "Method not allowed for this module. Allowed method(s): %s" msgstr "Diese Methode ist in diesem Modul nicht erlaubt. Erlaubte Methoden sind: %s" -#: src/App/Router.php:311 src/Module/HTTPException/PageNotFound.php:49 -#: src/Module/Stats.php:63 +#: src/App/Router.php:297 src/Module/HTTPException/PageNotFound.php:35 +#: src/Module/Stats.php:49 msgid "Page not found." msgstr "Seite nicht gefunden." -#: src/App/Router.php:323 +#: src/App/Router.php:309 msgid "You must be logged in to use addons. " msgstr "Du musst angemeldet sein, um Addons benutzen zu können." -#: src/BaseModule.php:407 +#: src/BaseModule.php:393 msgid "" "The form security token was not correct. This probably happened because the " "form has been opened for too long (>3 hours) before submitting it." msgstr "Das Sicherheitsmerkmal war nicht korrekt. Das passiert meistens, wenn das Formular vor dem Absenden zu lange geöffnet war (länger als 3 Stunden)." -#: src/BaseModule.php:434 +#: src/BaseModule.php:420 msgid "All contacts" msgstr "Alle Kontakte" -#: src/BaseModule.php:439 src/Content/Conversation/Factory/Channel.php:46 -#: src/Content/Widget.php:240 src/Core/ACL.php:195 src/Module/Contact.php:420 -#: src/Module/Privacy/PermissionTooltip.php:164 -#: src/Module/Privacy/PermissionTooltip.php:186 -#: src/Module/Settings/Channels.php:160 +#: src/BaseModule.php:425 src/Content/Conversation/Factory/Channel.php:32 +#: src/Content/Widget.php:218 src/Core/ACL.php:181 src/Module/Contact.php:395 +#: src/Module/Privacy/PermissionTooltip.php:150 +#: src/Module/Privacy/PermissionTooltip.php:172 +#: src/Module/Settings/Channels.php:146 msgid "Followers" msgstr "Folgende" -#: src/BaseModule.php:444 src/Content/Widget.php:241 -#: src/Module/Contact.php:423 src/Module/Settings/Channels.php:159 +#: src/BaseModule.php:430 src/Content/Widget.php:219 +#: src/Module/Contact.php:398 src/Module/Settings/Channels.php:145 msgid "Following" msgstr "Gefolgte" -#: src/BaseModule.php:449 src/Content/Widget.php:242 -#: src/Module/Contact.php:426 +#: src/BaseModule.php:435 src/Content/Widget.php:220 +#: src/Module/Contact.php:401 msgid "Mutual friends" msgstr "Gegenseitige Freundschaft" -#: src/BaseModule.php:457 +#: src/BaseModule.php:443 msgid "Common" msgstr "Gemeinsam" -#: src/Console/Addon.php:175 src/Console/Addon.php:199 +#: src/Console/Addon.php:161 src/Console/Addon.php:185 msgid "Addon not found" msgstr "Addon nicht gefunden" -#: src/Console/Addon.php:179 +#: src/Console/Addon.php:165 msgid "Addon already enabled" msgstr "Addon bereits aktiviert" -#: src/Console/Addon.php:203 +#: src/Console/Addon.php:189 msgid "Addon already disabled" msgstr "Addon bereits deaktiviert" -#: src/Console/ArchiveContact.php:106 +#: src/Console/ArchiveContact.php:92 #, php-format msgid "Could not find any unarchived contact entry for this URL (%s)" msgstr "Für die URL (%s) konnte kein nicht-archivierter Kontakt gefunden werden" -#: src/Console/ArchiveContact.php:109 +#: src/Console/ArchiveContact.php:95 msgid "The contact entries have been archived" msgstr "Die Kontakteinträge wurden archiviert." -#: src/Console/ClearAvatarCache.php:87 +#: src/Console/ClearAvatarCache.php:73 msgid "" "The avatar cache needs to be disabled in local.config.php to use this " "command." msgstr "" -#: src/Console/GlobalCommunityBlock.php:96 -#: src/Module/Moderation/Blocklist/Contact.php:65 +#: src/Console/GlobalCommunityBlock.php:82 +#: src/Module/Moderation/Blocklist/Contact.php:51 #, php-format msgid "Could not find any contact entry for this URL (%s)" msgstr "Für die URL (%s) konnte kein Kontakt gefunden werden" -#: src/Console/GlobalCommunityBlock.php:101 -#: src/Module/Moderation/Blocklist/Contact.php:82 +#: src/Console/GlobalCommunityBlock.php:87 +#: src/Module/Moderation/Blocklist/Contact.php:68 msgid "The contact has been blocked from the node" msgstr "Der Kontakt wurde von diesem Knoten geblockt" -#: src/Console/MergeContacts.php:75 +#: src/Console/MergeContacts.php:61 #, php-format msgid "%d %s, %d duplicates." msgstr "%d %s, Duplikat %d." -#: src/Console/MergeContacts.php:78 +#: src/Console/MergeContacts.php:64 #, php-format msgid "uri-id is empty for contact %s." msgstr "URI-ID ist leer für den Kontakt %s." -#: src/Console/MergeContacts.php:91 +#: src/Console/MergeContacts.php:77 #, php-format msgid "No valid first contact found for uri-id %d." msgstr "Kein gültiger erster Kontakt für die url-id %d gefunden." -#: src/Console/MergeContacts.php:102 +#: src/Console/MergeContacts.php:88 #, php-format msgid "Wrong duplicate found for uri-id %d in %d (url: %s != %s)." msgstr "Falsches Dublikat für die URI-ID %d in %d gefunden (URI: %s != %s)." -#: src/Console/MergeContacts.php:106 +#: src/Console/MergeContacts.php:92 #, php-format msgid "Wrong duplicate found for uri-id %d in %d (nurl: %s != %s)." msgstr "Falsches Dublikat für die URI-ID %d in %d (nurl: %s != %s)." -#: src/Console/MergeContacts.php:142 +#: src/Console/MergeContacts.php:128 #, php-format msgid "Deletion of id %d failed" msgstr "Löschung der ID %d fehlgeschlagen" -#: src/Console/MergeContacts.php:144 +#: src/Console/MergeContacts.php:130 #, php-format msgid "Deletion of id %d was successful" msgstr "Löschug der ID %d war erfolgreich" -#: src/Console/MergeContacts.php:150 +#: src/Console/MergeContacts.php:136 #, php-format msgid "Updating \"%s\" in \"%s\" from %d to %d" msgstr "Aktualisieren \"%s\" nach \"%s\" von %d nach %d" -#: src/Console/MergeContacts.php:152 +#: src/Console/MergeContacts.php:138 msgid " - found" msgstr "- gefunden" -#: src/Console/MergeContacts.php:159 +#: src/Console/MergeContacts.php:145 msgid " - failed" msgstr "- fehlgeschlagen" -#: src/Console/MergeContacts.php:161 +#: src/Console/MergeContacts.php:147 msgid " - success" msgstr "- Erfolg" -#: src/Console/MergeContacts.php:165 +#: src/Console/MergeContacts.php:151 msgid " - deleted" msgstr "- gelöscht" -#: src/Console/MergeContacts.php:168 +#: src/Console/MergeContacts.php:154 msgid " - done" msgstr "- erledigt" -#: src/Console/MoveToAvatarCache.php:91 +#: src/Console/MoveToAvatarCache.php:77 msgid "The avatar cache needs to be enabled to use this command." msgstr "Der Zwischenspeicher für Kontaktprofilbilder muss aktiviert sein, um diesen Befehl nutzen zu können." -#: src/Console/MoveToAvatarCache.php:109 +#: src/Console/MoveToAvatarCache.php:95 #, php-format msgid "no resource in photo %s" msgstr "keine Ressource im Foto %s" -#: src/Console/MoveToAvatarCache.php:137 +#: src/Console/MoveToAvatarCache.php:123 #, php-format msgid "no photo with id %s" msgstr "es existiert kein Foto mit der ID %s" -#: src/Console/MoveToAvatarCache.php:146 +#: src/Console/MoveToAvatarCache.php:132 #, php-format msgid "no image data for photo with id %s" msgstr "es gibt eine Bilddaten für das Foto mit der ID %s" -#: src/Console/MoveToAvatarCache.php:155 +#: src/Console/MoveToAvatarCache.php:141 #, php-format msgid "invalid image for id %s" msgstr "ungültiges Bild für die ID %s" -#: src/Console/MoveToAvatarCache.php:168 +#: src/Console/MoveToAvatarCache.php:154 #, php-format msgid "Quit on invalid photo %s" msgstr "Abbruch bei ungültigem Foto %s" -#: src/Console/PostUpdate.php:87 +#: src/Console/PostUpdate.php:73 #, php-format msgid "Post update version number has been set to %s." msgstr "Die Post-Update-Versionsnummer wurde auf %s gesetzt." -#: src/Console/PostUpdate.php:95 +#: src/Console/PostUpdate.php:81 msgid "Check for pending update actions." msgstr "Überprüfe ausstehende Update-Aktionen" -#: src/Console/PostUpdate.php:97 +#: src/Console/PostUpdate.php:83 msgid "Done." msgstr "Erledigt." -#: src/Console/PostUpdate.php:99 +#: src/Console/PostUpdate.php:85 msgid "Execute pending post updates." msgstr "Ausstehende Post-Updates ausführen" -#: src/Console/PostUpdate.php:105 +#: src/Console/PostUpdate.php:91 msgid "All pending post updates are done." msgstr "Alle ausstehenden Post-Updates wurden ausgeführt." -#: src/Console/User.php:158 src/Console/User.php:246 +#: src/Console/User.php:144 src/Console/User.php:232 msgid "Enter user nickname: " msgstr "Spitzname angeben:" -#: src/Console/User.php:182 src/Model/User.php:847 -#: src/Module/Api/Twitter/ContactEndpoint.php:74 -#: src/Module/Moderation/Users/Active.php:71 -#: src/Module/Moderation/Users/Blocked.php:71 -#: src/Module/Moderation/Users/Index.php:78 -#: src/Module/Moderation/Users/Pending.php:67 +#: src/Console/User.php:168 src/Model/User.php:831 +#: src/Module/Api/Twitter/ContactEndpoint.php:60 +#: src/Module/Moderation/Users/Active.php:57 +#: src/Module/Moderation/Users/Blocked.php:57 +#: src/Module/Moderation/Users/Index.php:64 +#: src/Module/Moderation/Users/Pending.php:53 msgid "User not found" msgstr "Nutzer nicht gefunden" -#: src/Console/User.php:202 +#: src/Console/User.php:188 msgid "Enter new password: " msgstr "Neues Passwort eingeben:" -#: src/Console/User.php:210 src/Module/Security/PasswordTooLong.php:69 -#: src/Module/Settings/Account.php:75 +#: src/Console/User.php:196 src/Module/Security/PasswordTooLong.php:55 +#: src/Module/Settings/Account.php:61 msgid "Password update failed. Please try again." msgstr "Aktualisierung des Passworts gescheitert, bitte versuche es noch einmal." -#: src/Console/User.php:213 src/Module/Security/PasswordTooLong.php:72 -#: src/Module/Settings/Account.php:78 +#: src/Console/User.php:199 src/Module/Security/PasswordTooLong.php:58 +#: src/Module/Settings/Account.php:64 msgid "Password changed." msgstr "Passwort geändert." -#: src/Console/User.php:238 +#: src/Console/User.php:224 msgid "Enter user name: " msgstr "Nutzername angeben" -#: src/Console/User.php:254 +#: src/Console/User.php:240 msgid "Enter user email address: " msgstr "E-Mail Adresse angeben:" -#: src/Console/User.php:262 +#: src/Console/User.php:248 msgid "Enter a language (optional): " msgstr "Sprache angeben (optional):" -#: src/Console/User.php:267 +#: src/Console/User.php:253 msgid "Enter URL of an image to use as avatar (optional): " msgstr "Gib die URL eines Bildes ein, das als Avatar verwendet werden soll (optional):" -#: src/Console/User.php:292 +#: src/Console/User.php:278 msgid "User is not pending." msgstr "Benutzer wartet nicht." -#: src/Console/User.php:324 +#: src/Console/User.php:310 msgid "User has already been marked for deletion." msgstr "User wurde bereits zum Löschen ausgewählt" -#: src/Console/User.php:329 +#: src/Console/User.php:315 #, php-format msgid "Type \"yes\" to delete %s" msgstr "\"yes\" eingeben um %s zu löschen" -#: src/Console/User.php:331 +#: src/Console/User.php:317 msgid "Deletion aborted." msgstr "Löschvorgang abgebrochen." -#: src/Console/User.php:456 +#: src/Console/User.php:442 msgid "Enter category: " msgstr "Kategorie eingeben" -#: src/Console/User.php:466 +#: src/Console/User.php:452 msgid "Enter key: " msgstr "Schlüssel eingeben" -#: src/Console/User.php:500 +#: src/Console/User.php:486 msgid "Enter value: " msgstr "Wert eingeben" -#: src/Content/BoundariesPager.php:116 src/Content/Pager.php:171 +#: src/Content/BoundariesPager.php:102 src/Content/Pager.php:157 msgid "newer" msgstr "neuer" -#: src/Content/BoundariesPager.php:124 src/Content/Pager.php:176 +#: src/Content/BoundariesPager.php:110 src/Content/Pager.php:162 msgid "older" msgstr "älter" -#: src/Content/ContactSelector.php:51 +#: src/Content/ContactSelector.php:37 msgid "Frequently" msgstr "immer wieder" -#: src/Content/ContactSelector.php:52 +#: src/Content/ContactSelector.php:38 msgid "Hourly" msgstr "Stündlich" -#: src/Content/ContactSelector.php:53 +#: src/Content/ContactSelector.php:39 msgid "Twice daily" msgstr "Zweimal täglich" -#: src/Content/ContactSelector.php:54 +#: src/Content/ContactSelector.php:40 msgid "Daily" msgstr "Täglich" -#: src/Content/ContactSelector.php:55 +#: src/Content/ContactSelector.php:41 msgid "Weekly" msgstr "Wöchentlich" -#: src/Content/ContactSelector.php:56 +#: src/Content/ContactSelector.php:42 msgid "Monthly" msgstr "Monatlich" -#: src/Content/ContactSelector.php:126 +#: src/Content/ContactSelector.php:112 msgid "DFRN" msgstr "DFRN" -#: src/Content/ContactSelector.php:127 +#: src/Content/ContactSelector.php:113 msgid "OStatus" msgstr "OStatus" -#: src/Content/ContactSelector.php:128 +#: src/Content/ContactSelector.php:114 msgid "RSS/Atom" msgstr "RSS/Atom" -#: src/Content/ContactSelector.php:129 -#: src/Module/Moderation/Users/Active.php:126 -#: src/Module/Moderation/Users/Blocked.php:126 -#: src/Module/Moderation/Users/Create.php:72 -#: src/Module/Moderation/Users/Deleted.php:83 -#: src/Module/Moderation/Users/Index.php:140 -#: src/Module/Moderation/Users/Index.php:160 -#: src/Module/Moderation/Users/Pending.php:99 +#: src/Content/ContactSelector.php:115 +#: src/Module/Moderation/Users/Active.php:112 +#: src/Module/Moderation/Users/Blocked.php:112 +#: src/Module/Moderation/Users/Create.php:58 +#: src/Module/Moderation/Users/Deleted.php:69 +#: src/Module/Moderation/Users/Index.php:126 +#: src/Module/Moderation/Users/Index.php:146 +#: src/Module/Moderation/Users/Pending.php:85 msgid "Email" msgstr "E-Mail" -#: src/Content/ContactSelector.php:130 src/Module/Debug/Babel.php:315 +#: src/Content/ContactSelector.php:116 src/Module/Debug/Babel.php:301 msgid "Diaspora" msgstr "Diaspora" -#: src/Content/ContactSelector.php:131 +#: src/Content/ContactSelector.php:117 msgid "Zot!" msgstr "Zott" -#: src/Content/ContactSelector.php:132 +#: src/Content/ContactSelector.php:118 msgid "LinkedIn" msgstr "LinkedIn" -#: src/Content/ContactSelector.php:133 +#: src/Content/ContactSelector.php:119 msgid "XMPP/IM" msgstr "XMPP/Chat" -#: src/Content/ContactSelector.php:134 +#: src/Content/ContactSelector.php:120 msgid "MySpace" msgstr "MySpace" -#: src/Content/ContactSelector.php:135 +#: src/Content/ContactSelector.php:121 msgid "Google+" msgstr "Google+" -#: src/Content/ContactSelector.php:136 +#: src/Content/ContactSelector.php:122 msgid "pump.io" msgstr "pump.io" -#: src/Content/ContactSelector.php:137 +#: src/Content/ContactSelector.php:123 msgid "Twitter" msgstr "Twitter" -#: src/Content/ContactSelector.php:138 +#: src/Content/ContactSelector.php:124 msgid "Discourse" msgstr "Discourse" -#: src/Content/ContactSelector.php:139 +#: src/Content/ContactSelector.php:125 msgid "Diaspora Connector" msgstr "Diaspora Connector" -#: src/Content/ContactSelector.php:140 +#: src/Content/ContactSelector.php:126 msgid "GNU Social Connector" msgstr "GNU Social Connector" -#: src/Content/ContactSelector.php:141 +#: src/Content/ContactSelector.php:127 msgid "ActivityPub" msgstr "ActivityPub" -#: src/Content/ContactSelector.php:142 +#: src/Content/ContactSelector.php:128 msgid "pnut" msgstr "pnut" -#: src/Content/ContactSelector.php:143 +#: src/Content/ContactSelector.php:129 msgid "Tumblr" msgstr "Tumblr" -#: src/Content/ContactSelector.php:144 +#: src/Content/ContactSelector.php:130 msgid "Bluesky" msgstr "Bluesky" -#: src/Content/ContactSelector.php:180 +#: src/Content/ContactSelector.php:166 #, php-format msgid "%s (via %s)" msgstr "%s (via %s)" -#: src/Content/Conversation.php:226 +#: src/Content/Conversation.php:212 msgid "and" msgstr "und" -#: src/Content/Conversation.php:229 +#: src/Content/Conversation.php:215 #, php-format msgid "and %d other people" msgstr "und %dandere" -#: src/Content/Conversation.php:235 +#: src/Content/Conversation.php:221 #, php-format msgid "%2$s likes this." msgid_plural "%2$s like this." msgstr[0] "%2$s mag das." msgstr[1] "%2$s mögen das." -#: src/Content/Conversation.php:237 +#: src/Content/Conversation.php:223 #, php-format msgid "%2$s doesn't like this." msgid_plural "%2$s don't like this." msgstr[0] "%2$s mag das nicht." msgstr[1] "%2$s mögen das nicht." -#: src/Content/Conversation.php:239 +#: src/Content/Conversation.php:225 #, php-format msgid "%2$s attends." msgid_plural "%2$s attend." msgstr[0] "%2$s nimmt teil." msgstr[1] "%2$s nehmen teil." -#: src/Content/Conversation.php:241 +#: src/Content/Conversation.php:227 #, php-format msgid "%2$s doesn't attend." msgid_plural "%2$s don't attend." msgstr[0] "%2$s nimmt nicht teil." msgstr[1] "%2$s nehmen nicht teil." -#: src/Content/Conversation.php:243 +#: src/Content/Conversation.php:229 #, php-format msgid "%2$s attends maybe." msgid_plural "%2$s attend maybe." msgstr[0] "%2$s nimmt eventuell teil." msgstr[1] "%2$s nehmen eventuell teil." -#: src/Content/Conversation.php:245 +#: src/Content/Conversation.php:231 #, php-format msgid "%2$s reshared this." msgid_plural "%2$s reshared this." msgstr[0] "%2$s hat dies geteilt." msgstr[1] "%2$s haben dies geteilt." -#: src/Content/Conversation.php:276 +#: src/Content/Conversation.php:262 #, php-format msgid " likes this" msgid_plural " like this" msgstr[0] " mag das" msgstr[1] " mögen das" -#: src/Content/Conversation.php:279 +#: src/Content/Conversation.php:265 #, php-format msgid " doesn't like this" msgid_plural " don't like this" msgstr[0] " mag das nicht" msgstr[1] " mögen das nicht" -#: src/Content/Conversation.php:282 +#: src/Content/Conversation.php:268 #, php-format msgid " attends" msgid_plural " attend" msgstr[0] " besucht" msgstr[1] " besuchen" -#: src/Content/Conversation.php:285 +#: src/Content/Conversation.php:271 #, php-format msgid " doesn't attend" msgid_plural " don't attend" msgstr[0] " besucht nicht" msgstr[1] " besuchen nicht" -#: src/Content/Conversation.php:288 +#: src/Content/Conversation.php:274 #, php-format msgid " attends maybe" msgid_plural " attend maybe" msgstr[0] " besucht vielleicht" msgstr[1] " besuchen vielleicht" -#: src/Content/Conversation.php:291 +#: src/Content/Conversation.php:277 #, php-format msgid " reshared this" msgid_plural " reshared this" msgstr[0] " teilte dies erneut" msgstr[1] " teilten dies erneut" -#: src/Content/Conversation.php:337 +#: src/Content/Conversation.php:323 msgid "Visible to everybody" msgstr "Für jedermann sichtbar" -#: src/Content/Conversation.php:338 src/Module/Item/Compose.php:207 -#: src/Object/Post.php:1171 +#: src/Content/Conversation.php:324 src/Module/Item/Compose.php:193 +#: src/Object/Post.php:1157 msgid "Please enter a image/video/audio/webpage URL:" msgstr "Bitte gib eine Bild/Video/Audio/Webseiten-URL ein:" -#: src/Content/Conversation.php:339 +#: src/Content/Conversation.php:325 msgid "Tag term:" msgstr "Tag:" -#: src/Content/Conversation.php:340 src/Module/Filer/SaveTag.php:73 +#: src/Content/Conversation.php:326 src/Module/Filer/SaveTag.php:59 msgid "Save to Folder:" msgstr "In diesem Ordner speichern:" -#: src/Content/Conversation.php:341 +#: src/Content/Conversation.php:327 msgid "Where are you right now?" msgstr "Wo hältst du dich jetzt gerade auf?" -#: src/Content/Conversation.php:342 +#: src/Content/Conversation.php:328 msgid "Delete item(s)?" msgstr "Einträge löschen?" -#: src/Content/Conversation.php:354 src/Module/Item/Compose.php:182 +#: src/Content/Conversation.php:340 src/Module/Item/Compose.php:168 msgid "Created at" msgstr "Erstellt am" -#: src/Content/Conversation.php:364 +#: src/Content/Conversation.php:350 msgid "New Post" msgstr "Neuer Beitrag" -#: src/Content/Conversation.php:367 +#: src/Content/Conversation.php:353 msgid "Share" msgstr "Teilen" -#: src/Content/Conversation.php:370 src/Module/Post/Edit.php:132 +#: src/Content/Conversation.php:356 src/Module/Post/Edit.php:118 msgid "upload photo" msgstr "Bild hochladen" -#: src/Content/Conversation.php:371 src/Module/Post/Edit.php:133 +#: src/Content/Conversation.php:357 src/Module/Post/Edit.php:119 msgid "Attach file" msgstr "Datei anhängen" -#: src/Content/Conversation.php:372 src/Module/Post/Edit.php:134 +#: src/Content/Conversation.php:358 src/Module/Post/Edit.php:120 msgid "attach file" msgstr "Datei anhängen" -#: src/Content/Conversation.php:373 src/Module/Item/Compose.php:197 -#: src/Module/Post/Edit.php:171 src/Object/Post.php:1161 +#: src/Content/Conversation.php:359 src/Module/Item/Compose.php:183 +#: src/Module/Post/Edit.php:157 src/Object/Post.php:1147 msgid "Bold" msgstr "Fett" -#: src/Content/Conversation.php:374 src/Module/Item/Compose.php:198 -#: src/Module/Post/Edit.php:172 src/Object/Post.php:1162 +#: src/Content/Conversation.php:360 src/Module/Item/Compose.php:184 +#: src/Module/Post/Edit.php:158 src/Object/Post.php:1148 msgid "Italic" msgstr "Kursiv" -#: src/Content/Conversation.php:375 src/Module/Item/Compose.php:199 -#: src/Module/Post/Edit.php:173 src/Object/Post.php:1163 +#: src/Content/Conversation.php:361 src/Module/Item/Compose.php:185 +#: src/Module/Post/Edit.php:159 src/Object/Post.php:1149 msgid "Underline" msgstr "Unterstrichen" -#: src/Content/Conversation.php:376 src/Module/Item/Compose.php:200 -#: src/Module/Post/Edit.php:174 src/Object/Post.php:1165 +#: src/Content/Conversation.php:362 src/Module/Item/Compose.php:186 +#: src/Module/Post/Edit.php:160 src/Object/Post.php:1151 msgid "Quote" msgstr "Zitat" -#: src/Content/Conversation.php:377 src/Module/Item/Compose.php:201 -#: src/Module/Post/Edit.php:175 src/Object/Post.php:1166 +#: src/Content/Conversation.php:363 src/Module/Item/Compose.php:187 +#: src/Module/Post/Edit.php:161 src/Object/Post.php:1152 msgid "Add emojis" msgstr "Emojis hinzufügen" -#: src/Content/Conversation.php:378 src/Module/Item/Compose.php:202 -#: src/Object/Post.php:1164 +#: src/Content/Conversation.php:364 src/Module/Item/Compose.php:188 +#: src/Object/Post.php:1150 msgid "Content Warning" msgstr "Inhaltswarnung" -#: src/Content/Conversation.php:379 src/Module/Item/Compose.php:203 -#: src/Module/Post/Edit.php:176 src/Object/Post.php:1167 +#: src/Content/Conversation.php:365 src/Module/Item/Compose.php:189 +#: src/Module/Post/Edit.php:162 src/Object/Post.php:1153 msgid "Code" msgstr "Code" -#: src/Content/Conversation.php:380 src/Module/Item/Compose.php:204 -#: src/Object/Post.php:1168 +#: src/Content/Conversation.php:366 src/Module/Item/Compose.php:190 +#: src/Object/Post.php:1154 msgid "Image" msgstr "Bild" -#: src/Content/Conversation.php:381 src/Module/Item/Compose.php:205 -#: src/Module/Post/Edit.php:177 src/Object/Post.php:1169 +#: src/Content/Conversation.php:367 src/Module/Item/Compose.php:191 +#: src/Module/Post/Edit.php:163 src/Object/Post.php:1155 msgid "Link" msgstr "Link" -#: src/Content/Conversation.php:382 src/Module/Item/Compose.php:206 -#: src/Module/Post/Edit.php:178 src/Object/Post.php:1170 +#: src/Content/Conversation.php:368 src/Module/Item/Compose.php:192 +#: src/Module/Post/Edit.php:164 src/Object/Post.php:1156 msgid "Link or Media" msgstr "Link oder Mediendatei" -#: src/Content/Conversation.php:383 +#: src/Content/Conversation.php:369 msgid "Video" msgstr "Video" -#: src/Content/Conversation.php:384 src/Module/Item/Compose.php:209 -#: src/Module/Post/Edit.php:141 +#: src/Content/Conversation.php:370 src/Module/Item/Compose.php:195 +#: src/Module/Post/Edit.php:127 msgid "Set your location" msgstr "Deinen Standort festlegen" -#: src/Content/Conversation.php:385 src/Module/Post/Edit.php:142 +#: src/Content/Conversation.php:371 src/Module/Post/Edit.php:128 msgid "set location" msgstr "Ort setzen" -#: src/Content/Conversation.php:386 src/Module/Post/Edit.php:143 +#: src/Content/Conversation.php:372 src/Module/Post/Edit.php:129 msgid "Clear browser location" msgstr "Browser-Standort leeren" -#: src/Content/Conversation.php:387 src/Module/Post/Edit.php:144 +#: src/Content/Conversation.php:373 src/Module/Post/Edit.php:130 msgid "clear location" msgstr "Ort löschen" -#: src/Content/Conversation.php:389 src/Module/Item/Compose.php:214 -#: src/Module/Post/Edit.php:157 +#: src/Content/Conversation.php:375 src/Module/Item/Compose.php:200 +#: src/Module/Post/Edit.php:143 msgid "Set title" msgstr "Titel setzen" -#: src/Content/Conversation.php:391 src/Module/Item/Compose.php:215 -#: src/Module/Post/Edit.php:159 +#: src/Content/Conversation.php:377 src/Module/Item/Compose.php:201 +#: src/Module/Post/Edit.php:145 msgid "Categories (comma-separated list)" msgstr "Kategorien (kommasepariert)" -#: src/Content/Conversation.php:396 src/Module/Item/Compose.php:231 +#: src/Content/Conversation.php:382 src/Module/Item/Compose.php:217 msgid "Scheduled at" msgstr "Geplant für" -#: src/Content/Conversation.php:401 src/Module/Post/Edit.php:146 +#: src/Content/Conversation.php:387 src/Module/Post/Edit.php:132 msgid "Permission settings" msgstr "Berechtigungseinstellungen" -#: src/Content/Conversation.php:410 src/Module/Post/Edit.php:155 +#: src/Content/Conversation.php:396 src/Module/Post/Edit.php:141 msgid "Public post" msgstr "Öffentlicher Beitrag" -#: src/Content/Conversation.php:424 src/Content/Widget/VCard.php:131 -#: src/Model/Profile.php:476 src/Module/Admin/Logs/View.php:94 -#: src/Module/Post/Edit.php:181 +#: src/Content/Conversation.php:410 src/Content/Widget/VCard.php:117 +#: src/Model/Profile.php:462 src/Module/Admin/Logs/View.php:80 +#: src/Module/Post/Edit.php:167 msgid "Message" msgstr "Nachricht" -#: src/Content/Conversation.php:425 src/Module/Post/Edit.php:182 -#: src/Module/Settings/TwoFactor/Trusted.php:143 +#: src/Content/Conversation.php:411 src/Module/Post/Edit.php:168 +#: src/Module/Settings/TwoFactor/Trusted.php:129 msgid "Browser" msgstr "Browser" -#: src/Content/Conversation.php:427 src/Module/Post/Edit.php:185 +#: src/Content/Conversation.php:413 src/Module/Post/Edit.php:171 msgid "Open Compose page" msgstr "Composer Seite öffnen" -#: src/Content/Conversation.php:594 +#: src/Content/Conversation.php:580 msgid "remove" msgstr "löschen" -#: src/Content/Conversation.php:598 +#: src/Content/Conversation.php:584 msgid "Delete Selected Items" msgstr "Lösche die markierten Beiträge" -#: src/Content/Conversation.php:726 src/Content/Conversation.php:729 -#: src/Content/Conversation.php:732 src/Content/Conversation.php:735 -#: src/Content/Conversation.php:738 +#: src/Content/Conversation.php:712 src/Content/Conversation.php:715 +#: src/Content/Conversation.php:718 src/Content/Conversation.php:721 +#: src/Content/Conversation.php:724 #, php-format msgid "You had been addressed (%s)." msgstr "Du wurdest angeschrieben (%s)." -#: src/Content/Conversation.php:741 +#: src/Content/Conversation.php:727 #, php-format msgid "You are following %s." msgstr "Du folgst %s." -#: src/Content/Conversation.php:746 +#: src/Content/Conversation.php:732 #, php-format msgid "You subscribed to %s." msgstr "Du hast %s abonniert." -#: src/Content/Conversation.php:748 +#: src/Content/Conversation.php:734 msgid "You subscribed to one or more tags in this post." msgstr "Du folgst einem oder mehreren Hashtags dieses Beitrags." -#: src/Content/Conversation.php:768 +#: src/Content/Conversation.php:754 #, php-format msgid "%s reshared this." msgstr "%s hat dies geteilt" -#: src/Content/Conversation.php:770 +#: src/Content/Conversation.php:756 msgid "Reshared" msgstr "Geteilt" -#: src/Content/Conversation.php:770 +#: src/Content/Conversation.php:756 #, php-format msgid "Reshared by %s <%s>" msgstr "Geteilt von %s <%s>" -#: src/Content/Conversation.php:773 +#: src/Content/Conversation.php:759 #, php-format msgid "%s is participating in this thread." msgstr "%s ist an der Unterhaltung beteiligt." -#: src/Content/Conversation.php:776 +#: src/Content/Conversation.php:762 msgid "Stored for general reasons" msgstr "Aus allgemeinen Gründen aufbewahrt" -#: src/Content/Conversation.php:779 +#: src/Content/Conversation.php:765 msgid "Global post" msgstr "Globaler Beitrag" -#: src/Content/Conversation.php:782 +#: src/Content/Conversation.php:768 msgid "Sent via an relay server" msgstr "Über einen Relay-Server gesendet" -#: src/Content/Conversation.php:782 +#: src/Content/Conversation.php:768 #, php-format msgid "Sent via the relay server %s <%s>" msgstr "Über den Relay-Server %s <%s> gesendet" -#: src/Content/Conversation.php:785 +#: src/Content/Conversation.php:771 msgid "Fetched" msgstr "Abgerufen" -#: src/Content/Conversation.php:785 +#: src/Content/Conversation.php:771 #, php-format msgid "Fetched because of %s <%s>" msgstr "Wegen %s <%s> abgerufen" -#: src/Content/Conversation.php:788 +#: src/Content/Conversation.php:774 msgid "Stored because of a child post to complete this thread." msgstr "Gespeichert wegen eines untergeordneten Beitrags zur Vervollständigung dieses Themas." -#: src/Content/Conversation.php:791 +#: src/Content/Conversation.php:777 msgid "Local delivery" msgstr "Lokale Zustellung" -#: src/Content/Conversation.php:794 +#: src/Content/Conversation.php:780 msgid "Stored because of your activity (like, comment, star, ...)" msgstr "Gespeichert aufgrund Ihrer Aktivität (Like, Kommentar, Stern, ...)" -#: src/Content/Conversation.php:797 +#: src/Content/Conversation.php:783 msgid "Distributed" msgstr "Verteilt" -#: src/Content/Conversation.php:800 +#: src/Content/Conversation.php:786 msgid "Pushed to us" msgstr "Zu uns gepusht" -#: src/Content/Conversation.php:1518 src/Object/Post.php:261 +#: src/Content/Conversation.php:1504 src/Object/Post.php:247 msgid "Pinned item" msgstr "Angehefteter Beitrag" -#: src/Content/Conversation.php:1535 src/Object/Post.php:555 -#: src/Object/Post.php:556 +#: src/Content/Conversation.php:1521 src/Object/Post.php:541 +#: src/Object/Post.php:542 #, php-format msgid "View %s's profile @ %s" msgstr "Das Profil von %s auf %s betrachten." -#: src/Content/Conversation.php:1549 src/Object/Post.php:543 +#: src/Content/Conversation.php:1535 src/Object/Post.php:529 msgid "Categories:" msgstr "Kategorien:" -#: src/Content/Conversation.php:1550 src/Object/Post.php:544 +#: src/Content/Conversation.php:1536 src/Object/Post.php:530 msgid "Filed under:" msgstr "Abgelegt unter:" -#: src/Content/Conversation.php:1558 src/Object/Post.php:570 +#: src/Content/Conversation.php:1544 src/Object/Post.php:556 #, php-format msgid "%s from %s" msgstr "%s von %s" -#: src/Content/Conversation.php:1574 +#: src/Content/Conversation.php:1560 msgid "View in context" msgstr "Im Zusammenhang betrachten" -#: src/Content/Conversation/Factory/Channel.php:42 +#: src/Content/Conversation/Factory/Channel.php:28 msgid "For you" msgstr "Für Dich" -#: src/Content/Conversation/Factory/Channel.php:42 +#: src/Content/Conversation/Factory/Channel.php:28 msgid "Posts from contacts you interact with and who interact with you" msgstr "Beiträge von Kontakten, mit denen du interagierst und die mit dir interagieren" -#: src/Content/Conversation/Factory/Channel.php:43 +#: src/Content/Conversation/Factory/Channel.php:29 msgid "Discover" msgstr "Entdecken" -#: src/Content/Conversation/Factory/Channel.php:43 +#: src/Content/Conversation/Factory/Channel.php:29 msgid "Posts from accounts that you don't follow, but that you might like." msgstr "Beiträge von Konten, denen du nicht folgst, aber die dir gefallen könnten." -#: src/Content/Conversation/Factory/Channel.php:44 +#: src/Content/Conversation/Factory/Channel.php:30 msgid "What's Hot" msgstr "Angesagt" -#: src/Content/Conversation/Factory/Channel.php:44 +#: src/Content/Conversation/Factory/Channel.php:30 msgid "Posts with a lot of interactions" msgstr "Beiträge mit vielen Interaktionen" -#: src/Content/Conversation/Factory/Channel.php:45 +#: src/Content/Conversation/Factory/Channel.php:31 #, php-format msgid "Posts in %s" msgstr "Beiträge in %s" -#: src/Content/Conversation/Factory/Channel.php:46 +#: src/Content/Conversation/Factory/Channel.php:32 msgid "Posts from your followers that you don't follow" msgstr "Beiträge von deinen Followern, denen du nicht folgst" -#: src/Content/Conversation/Factory/Channel.php:47 +#: src/Content/Conversation/Factory/Channel.php:33 msgid "Sharers of sharers" msgstr "Geteilt von teilenden " -#: src/Content/Conversation/Factory/Channel.php:47 +#: src/Content/Conversation/Factory/Channel.php:33 msgid "Posts from accounts that are followed by accounts that you follow" msgstr "Beiträge von Accounts, welche von von Accounts gefolgt werden, denen du folgst " -#: src/Content/Conversation/Factory/Channel.php:48 +#: src/Content/Conversation/Factory/Channel.php:34 msgid "Quiet sharers" msgstr "Ruhige teilende" -#: src/Content/Conversation/Factory/Channel.php:48 +#: src/Content/Conversation/Factory/Channel.php:34 msgid "Posts from accounts that you follow but who don't post very often" msgstr "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:199 src/Module/Settings/Channels.php:220 +#: src/Content/Conversation/Factory/Channel.php:35 +#: src/Module/Settings/Channels.php:185 src/Module/Settings/Channels.php:206 msgid "Images" msgstr "Bilder" -#: src/Content/Conversation/Factory/Channel.php:49 +#: src/Content/Conversation/Factory/Channel.php:35 msgid "Posts with images" msgstr "Beiträge mit Bildern" -#: src/Content/Conversation/Factory/Channel.php:50 -#: src/Module/Settings/Channels.php:201 src/Module/Settings/Channels.php:222 +#: src/Content/Conversation/Factory/Channel.php:36 +#: src/Module/Settings/Channels.php:187 src/Module/Settings/Channels.php:208 msgid "Audio" msgstr "Audio" -#: src/Content/Conversation/Factory/Channel.php:50 +#: src/Content/Conversation/Factory/Channel.php:36 msgid "Posts with audio" msgstr "Beiträge mit Audio" -#: src/Content/Conversation/Factory/Channel.php:51 -#: src/Module/Settings/Channels.php:200 src/Module/Settings/Channels.php:221 +#: src/Content/Conversation/Factory/Channel.php:37 +#: src/Module/Settings/Channels.php:186 src/Module/Settings/Channels.php:207 msgid "Videos" msgstr "Videos" -#: src/Content/Conversation/Factory/Channel.php:51 +#: src/Content/Conversation/Factory/Channel.php:37 msgid "Posts with videos" msgstr "Beiträge mit Videos" -#: src/Content/Conversation/Factory/Community.php:43 +#: src/Content/Conversation/Factory/Community.php:29 msgid "Local Community" msgstr "Lokale Gemeinschaft" -#: src/Content/Conversation/Factory/Community.php:43 +#: src/Content/Conversation/Factory/Community.php:29 msgid "Posts from local users on this server" msgstr "Beiträge von Nutzern dieses Servers" -#: src/Content/Conversation/Factory/Community.php:47 -#: src/Module/Settings/Channels.php:150 src/Module/Settings/Channels.php:155 +#: src/Content/Conversation/Factory/Community.php:33 +#: src/Module/Settings/Channels.php:136 src/Module/Settings/Channels.php:141 msgid "Global Community" msgstr "Globale Gemeinschaft" -#: src/Content/Conversation/Factory/Community.php:47 +#: src/Content/Conversation/Factory/Community.php:33 msgid "Posts from users of the whole federated network" msgstr "Beiträge von Nutzern des gesamten föderalen Netzwerks" -#: src/Content/Conversation/Factory/Network.php:38 -#: src/Module/Settings/Channels.php:156 +#: src/Content/Conversation/Factory/Network.php:24 +#: src/Module/Settings/Channels.php:142 msgid "Latest Activity" msgstr "Neu - Aktivität" -#: src/Content/Conversation/Factory/Network.php:38 +#: src/Content/Conversation/Factory/Network.php:24 msgid "Sort by latest activity" msgstr "Sortiere nach neueste Aktivität" -#: src/Content/Conversation/Factory/Network.php:39 -#: src/Module/Settings/Channels.php:157 +#: src/Content/Conversation/Factory/Network.php:25 +#: src/Module/Settings/Channels.php:143 msgid "Latest Posts" msgstr "Neu - Empfangen" -#: src/Content/Conversation/Factory/Network.php:39 +#: src/Content/Conversation/Factory/Network.php:25 msgid "Sort by post received date" msgstr "Nach Empfangsdatum der Beiträge sortiert" -#: src/Content/Conversation/Factory/Network.php:40 -#: src/Module/Settings/Channels.php:158 +#: src/Content/Conversation/Factory/Network.php:26 +#: src/Module/Settings/Channels.php:144 msgid "Latest Creation" msgstr "Neu - Erstellung" -#: src/Content/Conversation/Factory/Network.php:40 +#: src/Content/Conversation/Factory/Network.php:26 msgid "Sort by post creation date" msgstr "Sortiert nach dem Erstellungsdatum" -#: src/Content/Conversation/Factory/Network.php:41 -#: src/Module/Settings/Profile/Index.php:265 +#: src/Content/Conversation/Factory/Network.php:27 +#: src/Module/Settings/Profile/Index.php:251 msgid "Personal" msgstr "Persönlich" -#: src/Content/Conversation/Factory/Network.php:41 +#: src/Content/Conversation/Factory/Network.php:27 msgid "Posts that mention or involve you" msgstr "Beiträge, in denen es um dich geht" -#: src/Content/Conversation/Factory/Network.php:42 src/Object/Post.php:411 +#: src/Content/Conversation/Factory/Network.php:28 src/Object/Post.php:397 msgid "Starred" msgstr "Markierte" -#: src/Content/Conversation/Factory/Network.php:42 +#: src/Content/Conversation/Factory/Network.php:28 msgid "Favourite Posts" msgstr "Favorisierte Beiträge" -#: src/Content/Feature.php:107 +#: src/Content/Feature.php:93 msgid "General Features" msgstr "Allgemeine Features" -#: src/Content/Feature.php:109 +#: src/Content/Feature.php:95 msgid "Photo Location" msgstr "Aufnahmeort" -#: src/Content/Feature.php:109 +#: src/Content/Feature.php:95 msgid "" "Photo metadata is normally stripped. This extracts the location (if present)" " prior to stripping metadata and links it to a map." msgstr "Die Foto-Metadaten werden ausgelesen. Dadurch kann der Aufnahmeort (wenn vorhanden) in einer Karte angezeigt werden." -#: src/Content/Feature.php:110 +#: src/Content/Feature.php:96 msgid "Display the community in the navigation" msgstr "Gemeinschaftsseiten in Navigation anzeigen" -#: src/Content/Feature.php:110 +#: src/Content/Feature.php:96 msgid "" "If enabled, the community can be accessed via the navigation menu. " "Independent from this setting, the community timelines can always be " "accessed via the channels." msgstr "Soll die Gemeinschaftsseite im Navigationsmenü verlinkt sein? Unabhängig von dieser Einstellung kann immer über Kanäle auf die Gemeinschaftszeitleiste zugegriffen werden." -#: src/Content/Feature.php:115 +#: src/Content/Feature.php:101 msgid "Post Composition Features" msgstr "Beitragserstellung-Features" -#: src/Content/Feature.php:116 +#: src/Content/Feature.php:102 msgid "Explicit Mentions" msgstr "Explizite Erwähnungen" -#: src/Content/Feature.php:116 +#: src/Content/Feature.php:102 msgid "" "Add explicit mentions to comment box for manual control over who gets " "mentioned in replies." msgstr "Füge Erwähnungen zum Kommentarfeld hinzu, um manuell über die explizite Erwähnung von Gesprächsteilnehmern zu entscheiden." -#: src/Content/Feature.php:117 +#: src/Content/Feature.php:103 msgid "Add an abstract from ActivityPub content warnings" msgstr "Abstract aus Inhaltswarnungen von ActivityPub zu Beiträgen hinzufügen" -#: src/Content/Feature.php:117 +#: src/Content/Feature.php:103 msgid "" "Add an abstract when commenting on ActivityPub posts with a content warning." " Abstracts are displayed as content warning on systems like Mastodon or " "Pleroma." msgstr "Wenn ActivityPub Beiträge kommentiert werden, die mit einer Inhaltswarnung versehen sind, wird mit dieser Option automatisch ein identischer Abstract angefügt. Systeme wie Mastodon oder Pleroma verwenden diesen als Inhaltswarnung." -#: src/Content/Feature.php:122 +#: src/Content/Feature.php:108 msgid "Post/Comment Tools" msgstr "Werkzeuge für Beiträge und Kommentare" -#: src/Content/Feature.php:123 +#: src/Content/Feature.php:109 msgid "Post Categories" msgstr "Beitragskategorien" -#: src/Content/Feature.php:123 +#: src/Content/Feature.php:109 msgid "Add categories to your posts" msgstr "Eigene Beiträge mit Kategorien versehen" -#: src/Content/Feature.php:128 +#: src/Content/Feature.php:114 msgid "Network Widgets" msgstr "Netzwerk Widges" -#: src/Content/Feature.php:129 src/Content/Widget.php:216 -#: src/Model/Circle.php:601 src/Module/Contact.php:406 -#: src/Module/Welcome.php:76 +#: src/Content/Feature.php:115 src/Content/Widget.php:194 +#: src/Model/Circle.php:587 src/Module/Contact.php:381 +#: src/Module/Welcome.php:62 msgid "Circles" msgstr "Circles" -#: src/Content/Feature.php:129 +#: src/Content/Feature.php:115 msgid "" "Display posts that have been created by accounts of the selected circle." msgstr "Beiträge anzeigen, die von Konten des ausgewählten Circles erstellt wurden." -#: src/Content/Feature.php:130 src/Content/GroupManager.php:147 -#: src/Content/Nav.php:278 src/Content/Text/HTML.php:882 -#: src/Content/Widget.php:538 src/Model/User.php:1413 +#: src/Content/Feature.php:116 src/Content/GroupManager.php:133 +#: src/Content/Nav.php:264 src/Content/Text/HTML.php:868 +#: src/Content/Widget.php:516 src/Model/User.php:1390 msgid "Groups" msgstr "Gruppen" -#: src/Content/Feature.php:130 +#: src/Content/Feature.php:116 msgid "Display posts that have been distributed by the selected group." msgstr "Anzeige der Beiträge, die von der ausgewählten Gruppe verteilt wurden." -#: src/Content/Feature.php:131 src/Content/Widget.php:507 +#: src/Content/Feature.php:117 src/Content/Widget.php:485 msgid "Archives" msgstr "Archiv" -#: src/Content/Feature.php:131 +#: src/Content/Feature.php:117 msgid "Display an archive where posts can be selected by month and year." msgstr "Anzeige eines Archivs, in dem die Beiträge nach Monat und Jahr ausgewählt werden können." -#: src/Content/Feature.php:132 src/Content/Widget.php:289 +#: src/Content/Feature.php:118 src/Content/Widget.php:267 msgid "Protocols" msgstr "Protokolle" -#: src/Content/Feature.php:132 +#: src/Content/Feature.php:118 msgid "Display posts with the selected protocols." msgstr "Beiträge mit den ausgewählten Protokollen anzeigen." -#: src/Content/Feature.php:133 src/Content/Widget.php:544 -#: src/Module/Settings/Account.php:447 +#: src/Content/Feature.php:119 src/Content/Widget.php:522 +#: src/Module/Settings/Account.php:433 msgid "Account Types" msgstr "Kontenarten" -#: src/Content/Feature.php:133 +#: src/Content/Feature.php:119 msgid "Display posts done by accounts with the selected account type." msgstr "Anzeige der Beiträge, die von Konten mit dem ausgewählten Kontotyp erstellt wurden." -#: src/Content/Feature.php:134 src/Content/Widget.php:593 -#: src/Module/Admin/Site.php:474 src/Module/BaseSettings.php:125 -#: src/Module/Settings/Channels.php:225 src/Module/Settings/Display.php:315 +#: src/Content/Feature.php:120 src/Content/Widget.php:571 +#: src/Module/Admin/Site.php:464 src/Module/BaseSettings.php:111 +#: src/Module/Settings/Channels.php:211 src/Module/Settings/Display.php:301 msgid "Channels" msgstr "Kanäle" -#: src/Content/Feature.php:134 +#: src/Content/Feature.php:120 msgid "Display posts in the system channels and user defined channels." msgstr "Anzeige von Beiträgen in den Systemkanälen und benutzerdefinierten Kanälen." -#: src/Content/Feature.php:135 src/Content/Widget/SavedSearches.php:60 +#: src/Content/Feature.php:121 src/Content/Widget/SavedSearches.php:46 msgid "Saved Searches" msgstr "Gespeicherte Suchen" -#: src/Content/Feature.php:135 +#: src/Content/Feature.php:121 msgid "Display posts that contain subscribed hashtags." msgstr "Weitergeleitete Beiträge anzeigen, wenn abonnierte Hashtags enthalten sind." -#: src/Content/Feature.php:136 src/Content/Widget.php:319 +#: src/Content/Feature.php:122 src/Content/Widget.php:297 msgid "Saved Folders" msgstr "Gespeicherte Ordner" -#: src/Content/Feature.php:136 +#: src/Content/Feature.php:122 msgid "Display a list of folders in which posts are stored." msgstr "Ordnerliste anzeigen in denen Beiträge gespeichert sind." -#: src/Content/Feature.php:137 src/Module/Conversation/Timeline.php:200 +#: src/Content/Feature.php:123 src/Module/Conversation/Timeline.php:186 msgid "Own Contacts" msgstr "Eigene Kontakte" -#: src/Content/Feature.php:137 +#: src/Content/Feature.php:123 msgid "" "Include or exclude posts from subscribed accounts. This widget is not " "visible on all channels." msgstr "Beiträge von abonnierten Konten einschließen oder ausschließen. Dieses Widget ist nicht auf allen Kanälen sichtbar." -#: src/Content/Feature.php:138 +#: src/Content/Feature.php:124 msgid "Trending Tags" msgstr "Trending Tags" -#: src/Content/Feature.php:138 +#: src/Content/Feature.php:124 msgid "Display a list of the most popular tags in recent public posts." msgstr "Zeigt eine Liste der beliebtesten Tags in den letzten öffentlichen Beiträgen an." -#: src/Content/Feature.php:143 +#: src/Content/Feature.php:129 msgid "Advanced Profile Settings" msgstr "Erweiterte Profil-Einstellungen" -#: src/Content/Feature.php:144 +#: src/Content/Feature.php:130 msgid "Tag Cloud" msgstr "Schlagwortwolke" -#: src/Content/Feature.php:144 +#: src/Content/Feature.php:130 msgid "Provide a personal tag cloud on your profile page" msgstr "Wortwolke aus den von dir verwendeten Schlagwörtern im Profil anzeigen" -#: src/Content/Feature.php:145 +#: src/Content/Feature.php:131 msgid "Display Membership Date" msgstr "Mitgliedschaftsdatum anzeigen" -#: src/Content/Feature.php:145 +#: src/Content/Feature.php:131 msgid "Display membership date in profile" msgstr "Das Datum der Registrierung deines Accounts im Profil anzeigen" -#: src/Content/Feature.php:150 +#: src/Content/Feature.php:136 msgid "Advanced Calendar Settings" msgstr "Erweiterte Kalender Einstellungen" -#: src/Content/Feature.php:151 +#: src/Content/Feature.php:137 msgid "Allow anonymous access to your calendar" msgstr "Erlaube anonymen Zugriff auf deinen Kalender" -#: src/Content/Feature.php:151 +#: src/Content/Feature.php:137 msgid "" "Allows anonymous visitors to consult your calendar and your public events. " "Contact birthday events are private to you." msgstr "Anonyme Besucher können deinen Kalender öffnen und dort deine öffentliche Ereignisse einsehen. Geburtstage deiner Kontakte sind nicht öffentlich." -#: src/Content/GroupManager.php:149 +#: src/Content/GroupManager.php:135 msgid "External link to group" msgstr "Externer Link zur Gruppe" -#: src/Content/GroupManager.php:153 src/Content/Widget.php:513 +#: src/Content/GroupManager.php:139 src/Content/Widget.php:491 msgid "show less" msgstr "weniger anzeigen" -#: src/Content/GroupManager.php:154 src/Content/Widget.php:411 -#: src/Content/Widget.php:514 +#: src/Content/GroupManager.php:140 src/Content/Widget.php:389 +#: src/Content/Widget.php:492 msgid "show more" msgstr "mehr anzeigen" -#: src/Content/GroupManager.php:155 +#: src/Content/GroupManager.php:141 msgid "Create new group" msgstr "Neue Gruppe erstellen" -#: src/Content/Item.php:331 src/Model/Item.php:3304 +#: src/Content/Item.php:317 src/Model/Item.php:3272 msgid "event" msgstr "Veranstaltung" -#: src/Content/Item.php:334 src/Content/Item.php:344 +#: src/Content/Item.php:320 src/Content/Item.php:330 msgid "status" msgstr "Status" -#: src/Content/Item.php:340 src/Model/Item.php:3306 -#: src/Module/Post/Tag/Add.php:123 +#: src/Content/Item.php:326 src/Model/Item.php:3274 +#: src/Module/Post/Tag/Add.php:109 msgid "photo" msgstr "Foto" -#: src/Content/Item.php:354 src/Module/Post/Tag/Add.php:141 +#: src/Content/Item.php:340 src/Module/Post/Tag/Add.php:127 #, php-format msgid "%1$s tagged %2$s's %3$s with %4$s" msgstr "%1$s hat %2$ss %3$s mit %4$s getaggt" -#: src/Content/Item.php:428 view/theme/frio/theme.php:265 +#: src/Content/Item.php:414 view/theme/frio/theme.php:253 msgid "Follow Thread" msgstr "Folge der Unterhaltung" -#: src/Content/Item.php:429 src/Model/Contact.php:1256 +#: src/Content/Item.php:415 src/Model/Contact.php:1249 msgid "View Status" msgstr "Status anschauen" -#: src/Content/Item.php:430 src/Content/Item.php:453 -#: src/Model/Contact.php:1191 src/Model/Contact.php:1247 -#: src/Model/Contact.php:1257 src/Module/Directory.php:158 -#: src/Module/Settings/Profile/Index.php:264 +#: src/Content/Item.php:416 src/Content/Item.php:439 +#: src/Model/Contact.php:1184 src/Model/Contact.php:1240 +#: src/Model/Contact.php:1250 src/Module/Directory.php:144 +#: src/Module/Settings/Profile/Index.php:250 msgid "View Profile" msgstr "Profil anschauen" -#: src/Content/Item.php:431 src/Model/Contact.php:1258 +#: src/Content/Item.php:417 src/Model/Contact.php:1251 msgid "View Photos" msgstr "Bilder anschauen" -#: src/Content/Item.php:432 src/Model/Contact.php:1225 -#: src/Model/Profile.php:461 +#: src/Content/Item.php:418 src/Model/Contact.php:1218 +#: src/Model/Profile.php:447 msgid "Network Posts" msgstr "Netzwerkbeiträge" -#: src/Content/Item.php:433 src/Model/Contact.php:1249 -#: src/Model/Contact.php:1260 +#: src/Content/Item.php:419 src/Model/Contact.php:1242 +#: src/Model/Contact.php:1253 msgid "View Contact" msgstr "Kontakt anzeigen" -#: src/Content/Item.php:434 src/Model/Contact.php:1261 +#: src/Content/Item.php:420 src/Model/Contact.php:1254 msgid "Send PM" msgstr "Private Nachricht senden" -#: src/Content/Item.php:435 src/Module/Contact.php:474 -#: src/Module/Contact/Profile.php:532 -#: src/Module/Moderation/Blocklist/Contact.php:116 -#: src/Module/Moderation/Users/Active.php:137 -#: src/Module/Moderation/Users/Index.php:152 +#: src/Content/Item.php:421 src/Module/Contact.php:449 +#: src/Module/Contact/Profile.php:518 +#: src/Module/Moderation/Blocklist/Contact.php:102 +#: src/Module/Moderation/Users/Active.php:123 +#: src/Module/Moderation/Users/Index.php:138 msgid "Block" msgstr "Sperren" -#: src/Content/Item.php:436 src/Module/Contact.php:475 -#: src/Module/Contact/Profile.php:540 -#: src/Module/Notifications/Introductions.php:140 -#: src/Module/Notifications/Introductions.php:212 -#: src/Module/Notifications/Notification.php:89 +#: src/Content/Item.php:422 src/Module/Contact.php:450 +#: src/Module/Contact/Profile.php:526 +#: src/Module/Notifications/Introductions.php:126 +#: src/Module/Notifications/Introductions.php:198 +#: src/Module/Notifications/Notification.php:75 msgid "Ignore" msgstr "Ignorieren" -#: src/Content/Item.php:437 src/Module/Contact.php:476 -#: src/Module/Contact/Profile.php:548 +#: src/Content/Item.php:423 src/Module/Contact.php:451 +#: src/Module/Contact/Profile.php:534 msgid "Collapse" msgstr "Zuklappen" -#: src/Content/Item.php:438 src/Object/Post.php:302 +#: src/Content/Item.php:424 src/Object/Post.php:288 #, php-format msgid "Ignore %s server" msgstr "Ignoriere %s Server" -#: src/Content/Item.php:442 src/Module/Settings/Channels.php:202 -#: src/Module/Settings/Channels.php:223 src/Object/Post.php:516 +#: src/Content/Item.php:428 src/Module/Settings/Channels.php:188 +#: src/Module/Settings/Channels.php:209 src/Object/Post.php:502 msgid "Languages" msgstr "Sprachen" -#: src/Content/Item.php:445 src/Object/Post.php:596 +#: src/Content/Item.php:431 src/Object/Post.php:582 msgid "Search Text" msgstr "Suchtext" -#: src/Content/Item.php:450 src/Content/Widget.php:80 -#: src/Model/Contact.php:1250 src/Model/Contact.php:1262 -#: src/Module/Contact/Follow.php:167 view/theme/vier/theme.php:195 +#: src/Content/Item.php:436 src/Content/Widget.php:66 +#: src/Model/Contact.php:1243 src/Model/Contact.php:1255 +#: src/Module/Contact/Follow.php:148 view/theme/vier/theme.php:183 msgid "Connect/Follow" msgstr "Verbinden/Folgen" -#: src/Content/Item.php:884 +#: src/Content/Item.php:870 msgid "Unable to fetch user." msgstr "Benutzer kann nicht abgerufen werden." -#: src/Content/Nav.php:121 +#: src/Content/Nav.php:107 msgid "Nothing new here" msgstr "Keine Neuigkeiten" -#: src/Content/Nav.php:125 src/Module/Special/HTTPException.php:77 +#: src/Content/Nav.php:111 src/Module/Special/HTTPException.php:63 msgid "Go back" msgstr "Geh zurück" -#: src/Content/Nav.php:126 +#: src/Content/Nav.php:112 msgid "Clear notifications" msgstr "Bereinige Benachrichtigungen" -#: src/Content/Nav.php:127 src/Content/Text/HTML.php:869 +#: src/Content/Nav.php:113 src/Content/Text/HTML.php:855 msgid "@name, !group, #tags, content" msgstr "@name, !gruppe, #tags, content" -#: src/Content/Nav.php:222 src/Module/Security/Login.php:161 +#: src/Content/Nav.php:208 src/Module/Security/Login.php:147 msgid "Logout" msgstr "Abmelden" -#: src/Content/Nav.php:222 +#: src/Content/Nav.php:208 msgid "End this session" msgstr "Diese Sitzung beenden" -#: src/Content/Nav.php:224 src/Module/Bookmarklet.php:44 -#: src/Module/Security/Login.php:162 +#: src/Content/Nav.php:210 src/Module/Bookmarklet.php:30 +#: src/Module/Security/Login.php:148 msgid "Login" msgstr "Anmeldung" -#: src/Content/Nav.php:224 +#: src/Content/Nav.php:210 msgid "Sign in" msgstr "Anmelden" -#: src/Content/Nav.php:229 src/Module/BaseProfile.php:57 -#: src/Module/Contact.php:518 +#: src/Content/Nav.php:215 src/Module/BaseProfile.php:43 +#: src/Module/Contact.php:493 msgid "Conversations" msgstr "Unterhaltungen" -#: src/Content/Nav.php:229 +#: src/Content/Nav.php:215 msgid "Conversations you started" 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:510 -#: src/Module/Contact/Profile.php:439 src/Module/Profile/Profile.php:270 -#: src/Module/Welcome.php:57 view/theme/frio/theme.php:233 +#: src/Content/Nav.php:216 src/Module/BaseProfile.php:35 +#: src/Module/BaseSettings.php:84 src/Module/Contact.php:485 +#: src/Module/Contact/Profile.php:425 src/Module/Profile/Profile.php:256 +#: src/Module/Welcome.php:43 view/theme/frio/theme.php:221 msgid "Profile" msgstr "Profil" -#: src/Content/Nav.php:230 view/theme/frio/theme.php:233 +#: src/Content/Nav.php:216 view/theme/frio/theme.php:221 msgid "Your profile page" msgstr "Deine Profilseite" -#: src/Content/Nav.php:231 src/Module/BaseProfile.php:65 -#: src/Module/Media/Photo/Browser.php:74 view/theme/frio/theme.php:237 +#: src/Content/Nav.php:217 src/Module/BaseProfile.php:51 +#: src/Module/Media/Photo/Browser.php:60 view/theme/frio/theme.php:225 msgid "Photos" msgstr "Bilder" -#: src/Content/Nav.php:231 view/theme/frio/theme.php:237 +#: src/Content/Nav.php:217 view/theme/frio/theme.php:225 msgid "Your photos" msgstr "Deine Fotos" -#: src/Content/Nav.php:232 src/Module/BaseProfile.php:73 -#: src/Module/BaseProfile.php:76 src/Module/Contact.php:534 -#: view/theme/frio/theme.php:238 +#: src/Content/Nav.php:218 src/Module/BaseProfile.php:59 +#: src/Module/BaseProfile.php:62 src/Module/Contact.php:509 +#: view/theme/frio/theme.php:226 msgid "Media" msgstr "Medien" -#: src/Content/Nav.php:232 view/theme/frio/theme.php:238 +#: src/Content/Nav.php:218 view/theme/frio/theme.php:226 msgid "Your postings with media" msgstr "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:239 -#: view/theme/frio/theme.php:243 +#: src/Content/Nav.php:219 src/Content/Nav.php:279 +#: src/Module/BaseProfile.php:71 src/Module/BaseProfile.php:74 +#: src/Module/BaseProfile.php:82 src/Module/BaseProfile.php:85 +#: src/Module/Settings/Display.php:302 view/theme/frio/theme.php:227 +#: view/theme/frio/theme.php:231 msgid "Calendar" msgstr "Kalender" -#: src/Content/Nav.php:233 view/theme/frio/theme.php:239 +#: src/Content/Nav.php:219 view/theme/frio/theme.php:227 msgid "Your calendar" msgstr "Dein Kalender" -#: src/Content/Nav.php:234 +#: src/Content/Nav.php:220 msgid "Personal notes" msgstr "Persönliche Notizen" -#: src/Content/Nav.php:234 +#: src/Content/Nav.php:220 msgid "Your personal notes" msgstr "Deine persönlichen Notizen" -#: src/Content/Nav.php:251 src/Content/Nav.php:308 +#: src/Content/Nav.php:237 src/Content/Nav.php:294 msgid "Home" msgstr "Pinnwand" -#: src/Content/Nav.php:251 src/Module/Settings/OAuth.php:73 +#: src/Content/Nav.php:237 src/Module/Settings/OAuth.php:59 msgid "Home Page" msgstr "Homepage" -#: src/Content/Nav.php:255 src/Module/Register.php:175 -#: src/Module/Security/Login.php:128 +#: src/Content/Nav.php:241 src/Module/Register.php:161 +#: src/Module/Security/Login.php:114 msgid "Register" msgstr "Registrieren" -#: src/Content/Nav.php:255 +#: src/Content/Nav.php:241 msgid "Create an account" msgstr "Nutzerkonto erstellen" -#: src/Content/Nav.php:261 src/Module/Help.php:67 -#: src/Module/Settings/TwoFactor/AppSpecific.php:132 -#: src/Module/Settings/TwoFactor/Index.php:139 -#: src/Module/Settings/TwoFactor/Recovery.php:110 -#: src/Module/Settings/TwoFactor/Verify.php:149 view/theme/vier/theme.php:240 +#: src/Content/Nav.php:247 src/Module/Help.php:53 +#: src/Module/Settings/TwoFactor/AppSpecific.php:118 +#: src/Module/Settings/TwoFactor/Index.php:125 +#: src/Module/Settings/TwoFactor/Recovery.php:96 +#: src/Module/Settings/TwoFactor/Verify.php:135 view/theme/vier/theme.php:228 msgid "Help" msgstr "Hilfe" -#: src/Content/Nav.php:261 +#: src/Content/Nav.php:247 msgid "Help and documentation" msgstr "Hilfe und Dokumentation" -#: src/Content/Nav.php:265 +#: src/Content/Nav.php:251 msgid "Apps" msgstr "Apps" -#: src/Content/Nav.php:265 +#: src/Content/Nav.php:251 msgid "Addon applications, utilities, games" msgstr "Zusätzliche Anwendungen, Dienstprogramme, Spiele" -#: src/Content/Nav.php:269 src/Content/Text/HTML.php:867 -#: src/Module/Admin/Logs/View.php:88 src/Module/Search/Index.php:112 +#: src/Content/Nav.php:255 src/Content/Text/HTML.php:853 +#: src/Module/Admin/Logs/View.php:74 src/Module/Search/Index.php:98 msgid "Search" msgstr "Suche" -#: src/Content/Nav.php:269 +#: src/Content/Nav.php:255 msgid "Search site content" msgstr "Inhalt der Seite durchsuchen" -#: src/Content/Nav.php:272 src/Content/Text/HTML.php:876 +#: src/Content/Nav.php:258 src/Content/Text/HTML.php:862 msgid "Full Text" msgstr "Volltext" -#: src/Content/Nav.php:273 src/Content/Text/HTML.php:877 -#: src/Content/Widget/TagCloud.php:68 +#: src/Content/Nav.php:259 src/Content/Text/HTML.php:863 +#: src/Content/Widget/TagCloud.php:54 msgid "Tags" msgstr "Tags" -#: src/Content/Nav.php:274 src/Content/Nav.php:329 -#: src/Content/Text/HTML.php:878 src/Module/BaseProfile.php:127 -#: src/Module/BaseProfile.php:130 src/Module/Contact.php:432 -#: src/Module/Contact.php:542 view/theme/frio/theme.php:246 +#: src/Content/Nav.php:260 src/Content/Nav.php:315 +#: src/Content/Text/HTML.php:864 src/Module/BaseProfile.php:113 +#: src/Module/BaseProfile.php:116 src/Module/Contact.php:407 +#: src/Module/Contact.php:517 view/theme/frio/theme.php:234 msgid "Contacts" msgstr "Kontakte" -#: src/Content/Nav.php:289 +#: src/Content/Nav.php:275 msgid "Community" msgstr "Gemeinschaft" -#: src/Content/Nav.php:289 +#: src/Content/Nav.php:275 msgid "Conversations on this and other servers" msgstr "Unterhaltungen auf diesem und anderen Servern" -#: src/Content/Nav.php:296 +#: src/Content/Nav.php:282 msgid "Directory" msgstr "Verzeichnis" -#: src/Content/Nav.php:296 +#: src/Content/Nav.php:282 msgid "People directory" msgstr "Nutzerverzeichnis" -#: src/Content/Nav.php:298 src/Module/BaseAdmin.php:85 -#: src/Module/BaseModeration.php:108 +#: src/Content/Nav.php:284 src/Module/BaseAdmin.php:71 +#: src/Module/BaseModeration.php:94 msgid "Information" msgstr "Information" -#: src/Content/Nav.php:298 +#: src/Content/Nav.php:284 msgid "Information about this friendica instance" msgstr "Informationen zu dieser Friendica-Instanz" -#: src/Content/Nav.php:301 src/Module/Admin/Tos.php:78 -#: src/Module/BaseAdmin.php:95 src/Module/Register.php:183 -#: src/Module/Tos.php:101 +#: src/Content/Nav.php:287 src/Module/Admin/Tos.php:64 +#: src/Module/BaseAdmin.php:81 src/Module/Register.php:169 +#: src/Module/Tos.php:87 msgid "Terms of Service" msgstr "Nutzungsbedingungen" -#: src/Content/Nav.php:301 +#: src/Content/Nav.php:287 msgid "Terms of Service of this Friendica instance" msgstr "Die Nutzungsbedingungen dieser Friendica-Instanz" -#: src/Content/Nav.php:306 view/theme/frio/theme.php:242 +#: src/Content/Nav.php:292 view/theme/frio/theme.php:230 msgid "Network" msgstr "Netzwerk" -#: src/Content/Nav.php:306 view/theme/frio/theme.php:242 +#: src/Content/Nav.php:292 view/theme/frio/theme.php:230 msgid "Conversations from your friends" msgstr "Unterhaltungen Deiner Kontakte" -#: src/Content/Nav.php:308 view/theme/frio/theme.php:232 +#: src/Content/Nav.php:294 view/theme/frio/theme.php:220 msgid "Your posts and conversations" msgstr "Deine Beiträge und Unterhaltungen" -#: src/Content/Nav.php:312 +#: src/Content/Nav.php:298 msgid "Introductions" msgstr "Kontaktanfragen" -#: src/Content/Nav.php:312 +#: src/Content/Nav.php:298 msgid "Friend Requests" msgstr "Kontaktanfragen" -#: src/Content/Nav.php:313 src/Module/BaseNotifications.php:149 -#: src/Module/Notifications/Introductions.php:75 +#: src/Content/Nav.php:299 src/Module/BaseNotifications.php:135 +#: src/Module/Notifications/Introductions.php:61 msgid "Notifications" msgstr "Benachrichtigungen" -#: src/Content/Nav.php:314 +#: src/Content/Nav.php:300 msgid "See all notifications" msgstr "Alle Benachrichtigungen anzeigen" -#: src/Content/Nav.php:315 src/Module/Settings/Connectors.php:254 +#: src/Content/Nav.php:301 src/Module/Settings/Connectors.php:233 msgid "Mark as seen" msgstr "Als gelesen markieren" -#: src/Content/Nav.php:315 +#: src/Content/Nav.php:301 msgid "Mark all system notifications as seen" msgstr "Markiere alle Systembenachrichtigungen als gelesen" -#: src/Content/Nav.php:318 view/theme/frio/theme.php:244 +#: src/Content/Nav.php:304 view/theme/frio/theme.php:232 msgid "Private mail" msgstr "Private E-Mail" -#: src/Content/Nav.php:319 +#: src/Content/Nav.php:305 msgid "Inbox" msgstr "Eingang" -#: src/Content/Nav.php:320 +#: src/Content/Nav.php:306 msgid "Outbox" msgstr "Ausgang" -#: src/Content/Nav.php:324 +#: src/Content/Nav.php:310 msgid "Accounts" msgstr "Nutzerkonten" -#: src/Content/Nav.php:324 +#: src/Content/Nav.php:310 msgid "Manage other pages" msgstr "Andere Seiten verwalten" -#: src/Content/Nav.php:327 src/Module/Admin/Addons/Details.php:114 -#: src/Module/Admin/Themes/Details.php:99 src/Module/BaseSettings.php:182 -#: src/Module/Welcome.php:52 view/theme/frio/theme.php:245 +#: src/Content/Nav.php:313 src/Module/Admin/Addons/Details.php:100 +#: src/Module/Admin/Themes/Details.php:85 src/Module/BaseSettings.php:168 +#: src/Module/Welcome.php:38 view/theme/frio/theme.php:233 msgid "Settings" msgstr "Einstellungen" -#: src/Content/Nav.php:327 view/theme/frio/theme.php:245 +#: src/Content/Nav.php:313 view/theme/frio/theme.php:233 msgid "Account settings" msgstr "Kontoeinstellungen" -#: src/Content/Nav.php:329 view/theme/frio/theme.php:246 +#: src/Content/Nav.php:315 view/theme/frio/theme.php:234 msgid "Manage/edit friends and contacts" msgstr "Freunde und Kontakte verwalten/bearbeiten" -#: src/Content/Nav.php:334 src/Module/BaseAdmin.php:119 +#: src/Content/Nav.php:320 src/Module/BaseAdmin.php:105 msgid "Admin" msgstr "Administration" -#: src/Content/Nav.php:334 +#: src/Content/Nav.php:320 msgid "Site setup and configuration" msgstr "Einstellungen der Seite und Konfiguration" -#: src/Content/Nav.php:335 src/Module/BaseModeration.php:128 -#: src/Module/Moderation/Blocklist/Contact.php:110 -#: src/Module/Moderation/Blocklist/Server/Add.php:121 -#: src/Module/Moderation/Blocklist/Server/Import.php:118 -#: src/Module/Moderation/Blocklist/Server/Index.php:95 -#: src/Module/Moderation/Item/Delete.php:61 -#: src/Module/Moderation/Reports.php:110 src/Module/Moderation/Summary.php:75 -#: src/Module/Moderation/Users/Active.php:133 -#: src/Module/Moderation/Users/Blocked.php:133 -#: src/Module/Moderation/Users/Deleted.php:80 -#: src/Module/Moderation/Users/Index.php:147 +#: src/Content/Nav.php:321 src/Module/BaseModeration.php:114 +#: src/Module/Moderation/Blocklist/Contact.php:96 +#: src/Module/Moderation/Blocklist/Server/Add.php:107 +#: src/Module/Moderation/Blocklist/Server/Import.php:102 +#: src/Module/Moderation/Blocklist/Server/Index.php:81 +#: src/Module/Moderation/Item/Delete.php:47 +#: src/Module/Moderation/Reports.php:96 src/Module/Moderation/Summary.php:61 +#: src/Module/Moderation/Users/Active.php:119 +#: src/Module/Moderation/Users/Blocked.php:119 +#: src/Module/Moderation/Users/Deleted.php:66 +#: src/Module/Moderation/Users/Index.php:133 msgid "Moderation" msgstr "Moderation" -#: src/Content/Nav.php:335 +#: src/Content/Nav.php:321 msgid "Content and user moderation" msgstr "Moderation von Nutzern und Inhalten" -#: src/Content/Nav.php:338 +#: src/Content/Nav.php:324 msgid "Navigation" msgstr "Navigation" -#: src/Content/Nav.php:338 +#: src/Content/Nav.php:324 msgid "Site map" msgstr "Sitemap" -#: src/Content/Pager.php:216 +#: src/Content/Pager.php:202 msgid "first" msgstr "erste" -#: src/Content/Pager.php:221 +#: src/Content/Pager.php:207 msgid "prev" msgstr "vorige" -#: src/Content/Pager.php:276 +#: src/Content/Pager.php:262 msgid "next" msgstr "nächste" -#: src/Content/Pager.php:281 +#: src/Content/Pager.php:267 msgid "last" msgstr "letzte" -#: src/Content/Text/BBCode.php:704 src/Content/Text/BBCode.php:1880 -#: src/Content/Text/BBCode.php:1881 +#: src/Content/Text/BBCode.php:689 src/Content/Text/BBCode.php:1862 +#: src/Content/Text/BBCode.php:1863 msgid "Image/photo" msgstr "Bild/Foto" -#: src/Content/Text/BBCode.php:922 +#: src/Content/Text/BBCode.php:907 #, php-format msgid "%2$s %3$s" msgstr "%2$s%3$s" -#: src/Content/Text/BBCode.php:947 src/Model/Item.php:4060 -#: src/Model/Item.php:4066 src/Model/Item.php:4067 +#: src/Content/Text/BBCode.php:929 src/Model/Item.php:4028 +#: src/Model/Item.php:4034 src/Model/Item.php:4035 msgid "Link to source" msgstr "Link zum Originalbeitrag" -#: src/Content/Text/BBCode.php:1761 src/Content/Text/HTML.php:906 +#: src/Content/Text/BBCode.php:1743 src/Content/Text/HTML.php:892 msgid "Click to open/close" msgstr "Zum Öffnen/Schließen klicken" -#: src/Content/Text/BBCode.php:1816 +#: src/Content/Text/BBCode.php:1798 msgid "$1 wrote:" msgstr "$1 hat geschrieben:" -#: src/Content/Text/BBCode.php:1890 src/Content/Text/BBCode.php:1891 +#: src/Content/Text/BBCode.php:1872 src/Content/Text/BBCode.php:1873 msgid "Encrypted content" msgstr "Verschlüsselter Inhalt" -#: src/Content/Text/BBCode.php:2223 +#: src/Content/Text/BBCode.php:2205 msgid "Invalid source protocol" msgstr "Ungültiges Quell-Protokoll" -#: src/Content/Text/BBCode.php:2242 +#: src/Content/Text/BBCode.php:2224 msgid "Invalid link protocol" msgstr "Ungültiges Link-Protokoll" -#: src/Content/Text/HTML.php:784 +#: src/Content/Text/HTML.php:770 msgid "Loading more entries..." msgstr "lade weitere Einträge..." -#: src/Content/Text/HTML.php:785 +#: src/Content/Text/HTML.php:771 msgid "The end" msgstr "Das Ende" -#: src/Content/Text/HTML.php:861 src/Content/Widget/VCard.php:127 -#: src/Model/Profile.php:470 src/Module/Contact/Profile.php:492 +#: src/Content/Text/HTML.php:847 src/Content/Widget/VCard.php:113 +#: src/Model/Profile.php:456 src/Module/Contact/Profile.php:478 msgid "Follow" msgstr "Folge" -#: src/Content/Widget.php:51 +#: src/Content/Widget.php:37 msgid "Add New Contact" msgstr "Neuen Kontakt hinzufügen" -#: src/Content/Widget.php:52 +#: src/Content/Widget.php:38 msgid "Enter address or web location" msgstr "Adresse oder Web-Link eingeben" -#: src/Content/Widget.php:53 +#: src/Content/Widget.php:39 msgid "Example: bob@example.com, http://example.com/barbara" msgstr "Beispiel: bob@example.com, http://example.com/barbara" -#: src/Content/Widget.php:55 +#: src/Content/Widget.php:41 msgid "Connect" msgstr "Verbinden" -#: src/Content/Widget.php:72 +#: src/Content/Widget.php:58 #, php-format msgid "%d invitation available" msgid_plural "%d invitations available" msgstr[0] "%d Einladung verfügbar" msgstr[1] "%d Einladungen verfügbar" -#: src/Content/Widget.php:78 view/theme/vier/theme.php:193 +#: src/Content/Widget.php:64 view/theme/vier/theme.php:181 msgid "Find People" msgstr "Leute finden" -#: src/Content/Widget.php:79 view/theme/vier/theme.php:194 +#: src/Content/Widget.php:65 view/theme/vier/theme.php:182 msgid "Enter name or interest" msgstr "Name oder Interessen eingeben" -#: src/Content/Widget.php:81 view/theme/vier/theme.php:196 +#: src/Content/Widget.php:67 view/theme/vier/theme.php:184 msgid "Examples: Robert Morgenstein, Fishing" msgstr "Beispiel: Robert Morgenstein, Angeln" -#: src/Content/Widget.php:82 src/Module/Contact.php:466 -#: src/Module/Directory.php:97 view/theme/vier/theme.php:197 +#: src/Content/Widget.php:68 src/Module/Contact.php:441 +#: src/Module/Directory.php:83 view/theme/vier/theme.php:185 msgid "Find" msgstr "Finde" -#: src/Content/Widget.php:83 src/Module/Contact/Suggestions.php:73 -#: view/theme/vier/theme.php:198 +#: src/Content/Widget.php:69 src/Module/Contact/Suggestions.php:59 +#: view/theme/vier/theme.php:186 msgid "Friend Suggestions" msgstr "Kontaktvorschläge" -#: src/Content/Widget.php:84 view/theme/vier/theme.php:199 +#: src/Content/Widget.php:70 view/theme/vier/theme.php:187 msgid "Similar Interests" msgstr "Ähnliche Interessen" -#: src/Content/Widget.php:85 view/theme/vier/theme.php:200 +#: src/Content/Widget.php:71 view/theme/vier/theme.php:188 msgid "Random Profile" msgstr "Zufälliges Profil" -#: src/Content/Widget.php:86 view/theme/vier/theme.php:201 +#: src/Content/Widget.php:72 view/theme/vier/theme.php:189 msgid "Invite Friends" msgstr "Freunde einladen" -#: src/Content/Widget.php:87 src/Module/Directory.php:89 -#: view/theme/vier/theme.php:202 +#: src/Content/Widget.php:73 src/Module/Directory.php:75 +#: view/theme/vier/theme.php:190 msgid "Global Directory" msgstr "Weltweites Verzeichnis" -#: src/Content/Widget.php:89 view/theme/vier/theme.php:204 +#: src/Content/Widget.php:75 view/theme/vier/theme.php:192 msgid "Local Directory" msgstr "Lokales Verzeichnis" -#: src/Content/Widget.php:218 +#: src/Content/Widget.php:196 msgid "Everyone" msgstr "Jeder" -#: src/Content/Widget.php:243 src/Module/Contact.php:429 +#: src/Content/Widget.php:221 src/Module/Contact.php:404 msgid "No relationship" msgstr "Keine Beziehung" -#: src/Content/Widget.php:248 +#: src/Content/Widget.php:226 msgid "Relationships" msgstr "Beziehungen" -#: src/Content/Widget.php:250 src/Module/Circle.php:294 -#: src/Module/Contact.php:350 +#: src/Content/Widget.php:228 src/Module/Circle.php:280 +#: src/Module/Contact.php:325 msgid "All Contacts" msgstr "Alle Kontakte" -#: src/Content/Widget.php:291 +#: src/Content/Widget.php:269 msgid "All Protocols" msgstr "Alle Protokolle" -#: src/Content/Widget.php:321 src/Content/Widget.php:352 +#: src/Content/Widget.php:299 src/Content/Widget.php:330 msgid "Everything" msgstr "Alles" -#: src/Content/Widget.php:350 +#: src/Content/Widget.php:328 msgid "Categories" msgstr "Kategorien" -#: src/Content/Widget.php:407 +#: src/Content/Widget.php:385 #, 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:515 +#: src/Content/Widget.php:493 msgid "On this date" msgstr "An diesem Datum" -#: src/Content/Widget.php:535 +#: src/Content/Widget.php:513 msgid "Persons" msgstr "Personen" -#: src/Content/Widget.php:536 +#: src/Content/Widget.php:514 msgid "Organisations" msgstr "Organisationen" -#: src/Content/Widget.php:537 src/Model/Contact.php:1754 +#: src/Content/Widget.php:515 src/Model/Contact.php:1747 msgid "News" msgstr "Nachrichten" -#: src/Content/Widget.php:539 +#: src/Content/Widget.php:517 msgid "Relays" msgstr "Relais" -#: src/Content/Widget.php:546 src/Module/Moderation/BaseUsers.php:69 +#: src/Content/Widget.php:524 src/Module/Moderation/BaseUsers.php:56 msgid "All" msgstr "Alle" -#: src/Content/Widget/CalendarExport.php:56 +#: src/Content/Widget/CalendarExport.php:42 msgid "Export" msgstr "Exportieren" -#: src/Content/Widget/CalendarExport.php:57 +#: src/Content/Widget/CalendarExport.php:43 msgid "Export calendar as ical" msgstr "Kalender als ical exportieren" -#: src/Content/Widget/CalendarExport.php:58 +#: src/Content/Widget/CalendarExport.php:44 msgid "Export calendar as csv" msgstr "Kalender als csv exportieren" -#: src/Content/Widget/ContactBlock.php:79 +#: src/Content/Widget/ContactBlock.php:65 msgid "No contacts" msgstr "Keine Kontakte" -#: src/Content/Widget/ContactBlock.php:110 +#: src/Content/Widget/ContactBlock.php:96 #, php-format msgid "%d Contact" msgid_plural "%d Contacts" msgstr[0] "%d Kontakt" msgstr[1] "%d Kontakte" -#: src/Content/Widget/ContactBlock.php:127 +#: src/Content/Widget/ContactBlock.php:113 msgid "View Contacts" msgstr "Kontakte anzeigen" -#: src/Content/Widget/SavedSearches.php:47 +#: src/Content/Widget/SavedSearches.php:33 msgid "Remove term" msgstr "Begriff entfernen" -#: src/Content/Widget/TrendingTags.php:53 +#: src/Content/Widget/TrendingTags.php:39 #, php-format msgid "Trending Tags (last %d hour)" msgid_plural "Trending Tags (last %d hours)" msgstr[0] "Trending Tags (%d Stunde)" msgstr[1] "Trending Tags (%d Stunden)" -#: src/Content/Widget/TrendingTags.php:54 +#: src/Content/Widget/TrendingTags.php:40 msgid "More Trending Tags" msgstr "mehr Trending Tags" -#: src/Content/Widget/VCard.php:105 src/Model/Contact.php:1219 -#: src/Model/Profile.php:455 +#: src/Content/Widget/VCard.php:91 src/Model/Contact.php:1212 +#: src/Model/Profile.php:441 msgid "Post to group" msgstr "Beitrag an Gruppe" -#: src/Content/Widget/VCard.php:110 src/Model/Contact.php:1223 -#: src/Model/Profile.php:459 src/Module/Moderation/Item/Source.php:91 +#: src/Content/Widget/VCard.php:96 src/Model/Contact.php:1216 +#: src/Model/Profile.php:445 src/Module/Moderation/Item/Source.php:77 msgid "Mention" msgstr "Mention" -#: src/Content/Widget/VCard.php:120 src/Model/Profile.php:374 -#: src/Module/Contact/Profile.php:428 src/Module/Profile/Profile.php:201 +#: src/Content/Widget/VCard.php:106 src/Model/Profile.php:360 +#: src/Module/Contact/Profile.php:414 src/Module/Profile/Profile.php:187 msgid "XMPP:" msgstr "XMPP:" -#: src/Content/Widget/VCard.php:121 src/Model/Profile.php:375 -#: src/Module/Contact/Profile.php:430 src/Module/Profile/Profile.php:205 +#: src/Content/Widget/VCard.php:107 src/Model/Profile.php:361 +#: src/Module/Contact/Profile.php:416 src/Module/Profile/Profile.php:191 msgid "Matrix:" msgstr "Matrix:" -#: src/Content/Widget/VCard.php:122 src/Model/Event.php:82 -#: src/Model/Event.php:109 src/Model/Event.php:471 src/Model/Event.php:960 -#: src/Model/Profile.php:369 src/Module/Contact/Profile.php:426 -#: src/Module/Directory.php:148 src/Module/Notifications/Introductions.php:193 -#: src/Module/Profile/Profile.php:223 +#: src/Content/Widget/VCard.php:108 src/Model/Event.php:68 +#: src/Model/Event.php:95 src/Model/Event.php:457 src/Model/Event.php:946 +#: src/Model/Profile.php:355 src/Module/Contact/Profile.php:412 +#: src/Module/Directory.php:134 src/Module/Notifications/Introductions.php:179 +#: src/Module/Profile/Profile.php:209 msgid "Location:" msgstr "Ort:" -#: src/Content/Widget/VCard.php:125 src/Model/Profile.php:483 -#: src/Module/Notifications/Introductions.php:207 +#: src/Content/Widget/VCard.php:111 src/Model/Profile.php:469 +#: src/Module/Notifications/Introductions.php:193 msgid "Network:" msgstr "Netzwerk:" -#: src/Content/Widget/VCard.php:129 src/Model/Contact.php:1251 -#: src/Model/Contact.php:1263 src/Model/Profile.php:472 -#: src/Module/Contact/Profile.php:484 +#: src/Content/Widget/VCard.php:115 src/Model/Contact.php:1244 +#: src/Model/Contact.php:1256 src/Model/Profile.php:458 +#: src/Module/Contact/Profile.php:470 msgid "Unfollow" msgstr "Entfolgen" -#: src/Content/Widget/VCard.php:135 src/Model/Contact.php:1221 -#: src/Model/Profile.php:457 +#: src/Content/Widget/VCard.php:121 src/Model/Contact.php:1214 +#: src/Model/Profile.php:443 msgid "View group" msgstr "Gruppe betrachten" -#: src/Core/ACL.php:166 src/Module/Profile/Profile.php:271 +#: src/Core/ACL.php:152 src/Module/Profile/Profile.php:257 msgid "Yourself" msgstr "Du selbst" -#: src/Core/ACL.php:202 src/Module/Privacy/PermissionTooltip.php:170 -#: src/Module/Privacy/PermissionTooltip.php:192 +#: src/Core/ACL.php:188 src/Module/Privacy/PermissionTooltip.php:156 +#: src/Module/Privacy/PermissionTooltip.php:178 msgid "Mutuals" msgstr "Beidseitige Freundschaft" -#: src/Core/ACL.php:294 +#: src/Core/ACL.php:280 msgid "Post to Email" msgstr "An E-Mail senden" -#: src/Core/ACL.php:321 src/Module/Privacy/PermissionTooltip.php:117 -#: src/Module/Privacy/PermissionTooltip.php:231 +#: src/Core/ACL.php:307 src/Module/Privacy/PermissionTooltip.php:103 +#: src/Module/Privacy/PermissionTooltip.php:217 msgid "Public" msgstr "Öffentlich" -#: src/Core/ACL.php:322 +#: src/Core/ACL.php:308 msgid "" "This content will be shown to all your followers and can be seen in the " "community pages and by anyone with its link." msgstr "Dieser Inhalt wird all deine Abonenten sowie auf der Gemeinschaftsseite angezeigt. Außerdem kann ihn jeder sehen, der den Link kennt." -#: src/Core/ACL.php:323 src/Module/Privacy/PermissionTooltip.php:119 +#: src/Core/ACL.php:309 src/Module/Privacy/PermissionTooltip.php:105 msgid "Limited/Private" msgstr "Begrenzt/Privat" -#: src/Core/ACL.php:324 +#: src/Core/ACL.php:310 msgid "" "This content will be shown only to the people in the first box, to the " "exception of the people mentioned in the second box. It won't appear " "anywhere public." msgstr "Dieser Inhalt wird außschließlich den Kontakten gezeigt, die du in der ersten Box ausgewählt hast, mit den Ausnahmen derer die du in der zweiten Box auflistest. Er wird nicht öffentlich zugänglich sein." -#: src/Core/ACL.php:324 +#: src/Core/ACL.php:310 msgid "" "Start typing the name of a contact or a circle to show a filtered list. You " "can also mention the special circles \"Followers\" and \"Mutuals\"." msgstr "Gebe den Namen eines Kontakts oder eines Circles ein, um eine gefilterte Liste anzuzeigen. Du kannst auch die speziellen Kreise \"Folgende\" und \"beidseitige Freundschaft\" erwähnen." -#: src/Core/ACL.php:325 +#: src/Core/ACL.php:311 msgid "Show to:" msgstr "Sichtbar für:" -#: src/Core/ACL.php:326 +#: src/Core/ACL.php:312 msgid "Except to:" msgstr "Ausgenommen:" -#: src/Core/ACL.php:327 src/Module/Post/Edit.php:154 +#: src/Core/ACL.php:313 src/Module/Post/Edit.php:140 msgid "CC: email addresses" msgstr "Cc: E-Mail-Addressen" -#: src/Core/ACL.php:328 src/Module/Post/Edit.php:160 +#: src/Core/ACL.php:314 src/Module/Post/Edit.php:146 msgid "Example: bob@example.com, mary@example.com" msgstr "Z.B.: bob@example.com, mary@example.com" -#: src/Core/ACL.php:329 +#: src/Core/ACL.php:315 msgid "Connectors" msgstr "Connectoren" -#: src/Core/Installer.php:180 +#: src/Core/Installer.php:166 msgid "" "The database configuration file \"config/local.config.php\" could not be " "written. Please use the enclosed text to create a configuration file in your" " web server root." msgstr "Die Datenbankkonfigurationsdatei \"config/local.config.php\" konnte nicht erstellt werden. Um eine Konfigurationsdatei in Ihrem Webserver-Verzeichnis zu erstellen, gehe wie folgt vor." -#: src/Core/Installer.php:197 +#: src/Core/Installer.php:183 msgid "" "You may need to import the file \"database.sql\" manually using phpmyadmin " "or mysql." msgstr "Möglicherweise musst du die Datei \"database.sql\" manuell mit phpmyadmin oder mysql importieren." -#: src/Core/Installer.php:198 src/Module/Install.php:207 -#: src/Module/Install.php:350 +#: src/Core/Installer.php:184 src/Module/Install.php:193 +#: src/Module/Install.php:336 msgid "Please see the file \"doc/INSTALL.md\"." msgstr "Lies bitte die \"doc/INSTALL.md\"." -#: src/Core/Installer.php:259 +#: src/Core/Installer.php:245 msgid "Could not find a command line version of PHP in the web server PATH." msgstr "Konnte keine Kommandozeilenversion von PHP im PATH des Servers finden." -#: src/Core/Installer.php:260 +#: src/Core/Installer.php:246 msgid "" "If you don't have a command line version of PHP installed on your server, " "you will not be able to run the background processing. See 'Setup the worker'" msgstr "Wenn auf deinem Server keine Kommandozeilenversion von PHP installiert ist, kannst du den Hintergrundprozess nicht einrichten. Hier findest du alternative Möglichkeiten'für das Worker-Setup'" -#: src/Core/Installer.php:265 +#: src/Core/Installer.php:251 msgid "PHP executable path" msgstr "Pfad zu PHP" -#: src/Core/Installer.php:265 +#: src/Core/Installer.php:251 msgid "" "Enter full path to php executable. You can leave this blank to continue the " "installation." msgstr "Gib den kompletten Pfad zur ausführbaren Datei von PHP an. Du kannst dieses Feld auch frei lassen und mit der Installation fortfahren." -#: src/Core/Installer.php:270 +#: src/Core/Installer.php:256 msgid "Command line PHP" msgstr "Kommandozeilen-PHP" -#: src/Core/Installer.php:279 +#: src/Core/Installer.php:265 msgid "PHP executable is not the php cli binary (could be cgi-fgci version)" msgstr "Die ausführbare Datei von PHP stimmt nicht mit der PHP cli Version überein (es könnte sich um die cgi-fgci Version handeln)" -#: src/Core/Installer.php:280 +#: src/Core/Installer.php:266 msgid "Found PHP version: " msgstr "Gefundene PHP Version:" -#: src/Core/Installer.php:282 +#: src/Core/Installer.php:268 msgid "PHP cli binary" msgstr "PHP CLI Binary" -#: src/Core/Installer.php:295 +#: src/Core/Installer.php:281 msgid "" "The command line version of PHP on your system does not have " "\"register_argc_argv\" enabled." msgstr "Die Kommandozeilenversion von PHP auf Deinem System hat \"register_argc_argv\" nicht aktiviert." -#: src/Core/Installer.php:296 +#: src/Core/Installer.php:282 msgid "This is required for message delivery to work." msgstr "Dies wird für die Auslieferung von Nachrichten benötigt." -#: src/Core/Installer.php:301 +#: src/Core/Installer.php:287 msgid "PHP register_argc_argv" msgstr "PHP register_argc_argv" -#: src/Core/Installer.php:333 +#: src/Core/Installer.php:319 msgid "" "Error: the \"openssl_pkey_new\" function on this system is not able to " "generate encryption keys" msgstr "Fehler: Die Funktion \"openssl_pkey_new\" auf diesem System ist nicht in der Lage, Verschlüsselungsschlüssel zu erzeugen" -#: src/Core/Installer.php:334 +#: src/Core/Installer.php:320 msgid "" "If running under Windows, please see " "\"http://www.php.net/manual/en/openssl.installation.php\"." msgstr "Wenn der Server unter Windows läuft, schau dir bitte \"http://www.php.net/manual/en/openssl.installation.php\" an." -#: src/Core/Installer.php:337 +#: src/Core/Installer.php:323 msgid "Generate encryption keys" msgstr "Schlüssel erzeugen" -#: src/Core/Installer.php:388 +#: src/Core/Installer.php:374 msgid "" "Error: Apache webserver mod-rewrite module is required but not installed." msgstr "Fehler: Das Apache-Modul mod-rewrite wird benötigt, es ist allerdings nicht installiert." -#: src/Core/Installer.php:392 +#: src/Core/Installer.php:378 msgid "Apache mod_rewrite module" msgstr "Apache mod_rewrite module" -#: src/Core/Installer.php:398 +#: src/Core/Installer.php:384 msgid "Error: PDO or MySQLi PHP module required but not installed." msgstr "Fehler: PDO oder MySQLi PHP Modul erforderlich, aber nicht installiert." -#: src/Core/Installer.php:402 +#: src/Core/Installer.php:388 msgid "Error: The MySQL driver for PDO is not installed." msgstr "Fehler: der MySQL Treiber für PDO ist nicht installiert" -#: src/Core/Installer.php:405 +#: src/Core/Installer.php:391 msgid "PDO or MySQLi PHP module" msgstr "PDO oder MySQLi PHP Modul" -#: src/Core/Installer.php:411 +#: src/Core/Installer.php:397 msgid "Error: The IntlChar module is not installed." msgstr "Fehler: Das IntlChar-Modul von PHP ist nicht installiert." -#: src/Core/Installer.php:414 +#: src/Core/Installer.php:400 msgid "IntlChar PHP module" msgstr "PHP: IntlChar-Modul" -#: src/Core/Installer.php:422 +#: src/Core/Installer.php:408 msgid "Error, XML PHP module required but not installed." msgstr "Fehler: XML PHP Modul erforderlich aber nicht installiert." -#: src/Core/Installer.php:426 +#: src/Core/Installer.php:412 msgid "XML PHP module" msgstr "XML PHP Modul" -#: src/Core/Installer.php:429 +#: src/Core/Installer.php:415 msgid "libCurl PHP module" msgstr "PHP: libCurl-Modul" -#: src/Core/Installer.php:430 +#: src/Core/Installer.php:416 msgid "Error: libCURL PHP module required but not installed." msgstr "Fehler: Das libCURL PHP Modul wird benötigt, ist aber nicht installiert." -#: src/Core/Installer.php:436 +#: src/Core/Installer.php:422 msgid "GD graphics PHP module" msgstr "PHP: GD-Grafikmodul" -#: src/Core/Installer.php:437 +#: src/Core/Installer.php:423 msgid "" "Error: GD graphics PHP module with JPEG support required but not installed." msgstr "Fehler: Das GD-Graphikmodul für PHP mit JPEG-Unterstützung ist nicht installiert." -#: src/Core/Installer.php:443 +#: src/Core/Installer.php:429 msgid "OpenSSL PHP module" msgstr "PHP: OpenSSL-Modul" -#: src/Core/Installer.php:444 +#: src/Core/Installer.php:430 msgid "Error: openssl PHP module required but not installed." msgstr "Fehler: Das openssl-Modul von PHP ist nicht installiert." -#: src/Core/Installer.php:450 +#: src/Core/Installer.php:436 msgid "mb_string PHP module" msgstr "PHP: mb_string-Modul" -#: src/Core/Installer.php:451 +#: src/Core/Installer.php:437 msgid "Error: mb_string PHP module required but not installed." msgstr "Fehler: mb_string PHP Module wird benötigt, ist aber nicht installiert." -#: src/Core/Installer.php:457 +#: src/Core/Installer.php:443 msgid "iconv PHP module" msgstr "PHP iconv Modul" -#: src/Core/Installer.php:458 +#: src/Core/Installer.php:444 msgid "Error: iconv PHP module required but not installed." msgstr "Fehler: Das iconv-Modul von PHP ist nicht installiert." -#: src/Core/Installer.php:464 +#: src/Core/Installer.php:450 msgid "POSIX PHP module" msgstr "PHP POSIX Modul" -#: src/Core/Installer.php:465 +#: src/Core/Installer.php:451 msgid "Error: POSIX PHP module required but not installed." msgstr "Fehler POSIX PHP Modul erforderlich, aber nicht installiert." -#: src/Core/Installer.php:471 +#: src/Core/Installer.php:457 msgid "Program execution functions" msgstr "Funktionen zur Programmausführung" -#: src/Core/Installer.php:472 +#: src/Core/Installer.php:458 msgid "" "Error: Program execution functions (proc_open) required but not enabled." msgstr "Fehler: Die Funktionen zur Ausführung von Programmen (proc_open) müssen aktiviert sein." -#: src/Core/Installer.php:478 +#: src/Core/Installer.php:464 msgid "JSON PHP module" msgstr "PHP JSON Modul" -#: src/Core/Installer.php:479 +#: src/Core/Installer.php:465 msgid "Error: JSON PHP module required but not installed." msgstr "Fehler: Das JSON PHP Modul wird benötigt, ist aber nicht installiert." -#: src/Core/Installer.php:485 +#: src/Core/Installer.php:471 msgid "File Information PHP module" msgstr "PHP Datei Informations-Modul" -#: src/Core/Installer.php:486 +#: src/Core/Installer.php:472 msgid "Error: File Information PHP module required but not installed." msgstr "Fehler: Das Datei Informations PHP Modul ist nicht installiert." -#: src/Core/Installer.php:492 +#: src/Core/Installer.php:478 msgid "GNU Multiple Precision PHP module" msgstr "GNU Multiple Precision PHP Modul" -#: src/Core/Installer.php:493 +#: src/Core/Installer.php:479 msgid "Error: GNU Multiple Precision PHP module required but not installed." msgstr "Fehler: GNU Multiple Precision PHP Modul wird benötigt, ist aber nicht installiert." -#: src/Core/Installer.php:499 +#: src/Core/Installer.php:485 msgid "IDN Functions PHP module" msgstr "PHP Modul: IDN Functions" -#: src/Core/Installer.php:500 +#: src/Core/Installer.php:486 msgid "Error: IDN Functions PHP module required but not installed." msgstr "Fehler: Das PHP Modul IDN Functions wird benötigt ist aber nicht installiert." -#: src/Core/Installer.php:523 +#: src/Core/Installer.php:509 msgid "" "The web installer needs to be able to create a file called " "\"local.config.php\" in the \"config\" folder of your web server and it is " "unable to do so." msgstr "Das Installationsprogramm muss in der Lage sein, eine Datei namens \"local.config.php\" im Ordner \"config\" Ihres Webservers zu erstellen, ist aber nicht in der Lage dazu." -#: src/Core/Installer.php:524 +#: src/Core/Installer.php:510 msgid "" "This is most often a permission setting, as the web server may not be able " "to write files in your folder - even if you can." msgstr "In den meisten Fällen ist dies ein Problem mit den Schreibrechten. Der Webserver könnte keine Schreiberlaubnis haben, selbst wenn du sie hast." -#: src/Core/Installer.php:525 +#: src/Core/Installer.php:511 msgid "" "At the end of this procedure, we will give you a text to save in a file " "named local.config.php in your Friendica \"config\" folder." msgstr "Am Ende dieser Prozedur bekommst du einen Text, der in der local.config.php im Friendica \"config\" Ordner gespeichert werden muss." -#: src/Core/Installer.php:526 +#: src/Core/Installer.php:512 msgid "" "You can alternatively skip this procedure and perform a manual installation." " Please see the file \"doc/INSTALL.md\" for instructions." msgstr "Alternativ kannst du diesen Schritt aber auch überspringen und die Installation manuell durchführen. Eine Anleitung dazu (Englisch) findest du in der Datei \"doc/INSTALL.md\"." -#: src/Core/Installer.php:529 +#: src/Core/Installer.php:515 msgid "config/local.config.php is writable" msgstr "config/local.config.php ist schreibbar" -#: src/Core/Installer.php:549 +#: src/Core/Installer.php:535 msgid "" "Friendica uses the Smarty3 template engine to render its web views. Smarty3 " "compiles templates to PHP to speed up rendering." msgstr "Friendica nutzt die Smarty3-Template-Engine, um die Webansichten zu rendern. Smarty3 kompiliert Templates zu PHP, um das Rendern zu beschleunigen." -#: src/Core/Installer.php:550 +#: src/Core/Installer.php:536 msgid "" "In order to store these compiled templates, the web server needs to have " "write access to the directory view/smarty3/ under the Friendica top level " "folder." msgstr "Um diese kompilierten Templates zu speichern, benötigt der Webserver Schreibrechte zum Verzeichnis view/smarty3/ im obersten Ordner von Friendica." -#: src/Core/Installer.php:551 +#: src/Core/Installer.php:537 msgid "" "Please ensure that the user that your web server runs as (e.g. www-data) has" " write access to this folder." msgstr "Bitte stelle sicher, dass der Nutzer, unter dem der Webserver läuft (z.B. www-data), Schreibrechte zu diesem Verzeichnis hat." -#: src/Core/Installer.php:552 +#: src/Core/Installer.php:538 msgid "" "Note: as a security measure, you should give the web server write access to " "view/smarty3/ only--not the template files (.tpl) that it contains." msgstr "Hinweis: aus Sicherheitsgründen solltest du dem Webserver nur Schreibrechte für view/smarty3/ geben -- Nicht für die darin enthaltenen Template-Dateien (.tpl)." -#: src/Core/Installer.php:555 +#: src/Core/Installer.php:541 msgid "view/smarty3 is writable" msgstr "view/smarty3 ist schreibbar" -#: src/Core/Installer.php:583 +#: src/Core/Installer.php:569 msgid "" "Url rewrite in .htaccess seems not working. Make sure you copied .htaccess-" "dist to .htaccess." msgstr "Umschreiben der URLs in der .htaccess funktioniert nicht. Vergewissere dich, dass du .htaccess-dist nach.htaccess kopiert hast." -#: src/Core/Installer.php:584 +#: src/Core/Installer.php:570 msgid "" "In some circumstances (like running inside containers), you can skip this " "error." msgstr "Unter bestimmten Umständen (z.B. Installationen in Containern) kannst du diesen Fehler übergehen." -#: src/Core/Installer.php:586 +#: src/Core/Installer.php:572 msgid "Error message from Curl when fetching" msgstr "Fehlermeldung von Curl während des Ladens" -#: src/Core/Installer.php:592 +#: src/Core/Installer.php:578 msgid "Url rewrite is working" msgstr "URL rewrite funktioniert" -#: src/Core/Installer.php:621 +#: src/Core/Installer.php:607 msgid "" "The detection of TLS to secure the communication between the browser and the" " new Friendica server failed." msgstr "Die Erkennung von TLS, um die Kommunikation zwischen dem Browser und dem neuen Friendica-Server zu sichern, scheiterte." -#: src/Core/Installer.php:622 +#: src/Core/Installer.php:608 msgid "" "It is highly encouraged to use Friendica only over a secure connection as " "sensitive information like passwords will be transmitted." msgstr "Friendica sollte nur über eine sichere Verbindung verwendet werden da sensible Informationen wie Passwörter übertragen werden." -#: src/Core/Installer.php:623 +#: src/Core/Installer.php:609 msgid "Please ensure that the connection to the server is secure." msgstr "Bitte vergewissere dich, dass die Verbindung zum Server sicher ist." -#: src/Core/Installer.php:624 +#: src/Core/Installer.php:610 msgid "No TLS detected" msgstr "Kein TLS gefunden" -#: src/Core/Installer.php:626 +#: src/Core/Installer.php:612 msgid "TLS detected" msgstr "TLS gefunden" -#: src/Core/Installer.php:643 +#: src/Core/Installer.php:629 msgid "ImageMagick PHP extension is not installed" msgstr "ImageMagicx PHP Erweiterung ist nicht installiert." -#: src/Core/Installer.php:645 +#: src/Core/Installer.php:631 msgid "ImageMagick PHP extension is installed" msgstr "ImageMagick PHP Erweiterung ist installiert" -#: src/Core/Installer.php:666 +#: src/Core/Installer.php:652 msgid "Database already in use." msgstr "Die Datenbank wird bereits verwendet." -#: src/Core/Installer.php:671 +#: src/Core/Installer.php:657 msgid "Could not connect to database." msgstr "Verbindung zur Datenbank gescheitert." -#: src/Core/L10n.php:444 src/Model/Item.php:2348 +#: src/Core/L10n.php:430 src/Model/Item.php:2315 msgid "Undetermined" msgstr "Unspezifiziert" -#: src/Core/L10n.php:451 +#: src/Core/L10n.php:437 #, php-format msgid "%s (%s)" msgstr "%s (%s)" -#: src/Core/L10n.php:499 src/Model/Event.php:430 -#: src/Module/Settings/Display.php:284 +#: src/Core/L10n.php:485 src/Model/Event.php:416 +#: src/Module/Settings/Display.php:270 msgid "Monday" msgstr "Montag" -#: src/Core/L10n.php:499 src/Model/Event.php:431 -#: src/Module/Settings/Display.php:285 +#: src/Core/L10n.php:485 src/Model/Event.php:417 +#: src/Module/Settings/Display.php:271 msgid "Tuesday" msgstr "Dienstag" -#: src/Core/L10n.php:499 src/Model/Event.php:432 -#: src/Module/Settings/Display.php:286 +#: src/Core/L10n.php:485 src/Model/Event.php:418 +#: src/Module/Settings/Display.php:272 msgid "Wednesday" msgstr "Mittwoch" -#: src/Core/L10n.php:499 src/Model/Event.php:433 -#: src/Module/Settings/Display.php:287 +#: src/Core/L10n.php:485 src/Model/Event.php:419 +#: src/Module/Settings/Display.php:273 msgid "Thursday" msgstr "Donnerstag" -#: src/Core/L10n.php:499 src/Model/Event.php:434 -#: src/Module/Settings/Display.php:288 +#: src/Core/L10n.php:485 src/Model/Event.php:420 +#: src/Module/Settings/Display.php:274 msgid "Friday" msgstr "Freitag" -#: src/Core/L10n.php:499 src/Model/Event.php:435 -#: src/Module/Settings/Display.php:289 +#: src/Core/L10n.php:485 src/Model/Event.php:421 +#: src/Module/Settings/Display.php:275 msgid "Saturday" msgstr "Samstag" -#: src/Core/L10n.php:499 src/Model/Event.php:429 -#: src/Module/Settings/Display.php:283 +#: src/Core/L10n.php:485 src/Model/Event.php:415 +#: src/Module/Settings/Display.php:269 msgid "Sunday" msgstr "Sonntag" -#: src/Core/L10n.php:503 src/Model/Event.php:450 +#: src/Core/L10n.php:489 src/Model/Event.php:436 msgid "January" msgstr "Januar" -#: src/Core/L10n.php:503 src/Model/Event.php:451 +#: src/Core/L10n.php:489 src/Model/Event.php:437 msgid "February" msgstr "Februar" -#: src/Core/L10n.php:503 src/Model/Event.php:452 +#: src/Core/L10n.php:489 src/Model/Event.php:438 msgid "March" msgstr "März" -#: src/Core/L10n.php:503 src/Model/Event.php:453 +#: src/Core/L10n.php:489 src/Model/Event.php:439 msgid "April" msgstr "April" -#: src/Core/L10n.php:503 src/Core/L10n.php:522 src/Model/Event.php:441 +#: src/Core/L10n.php:489 src/Core/L10n.php:508 src/Model/Event.php:427 msgid "May" msgstr "Mai" -#: src/Core/L10n.php:503 src/Model/Event.php:454 +#: src/Core/L10n.php:489 src/Model/Event.php:440 msgid "June" msgstr "Juni" -#: src/Core/L10n.php:503 src/Model/Event.php:455 +#: src/Core/L10n.php:489 src/Model/Event.php:441 msgid "July" msgstr "Juli" -#: src/Core/L10n.php:503 src/Model/Event.php:456 +#: src/Core/L10n.php:489 src/Model/Event.php:442 msgid "August" msgstr "August" -#: src/Core/L10n.php:503 src/Model/Event.php:457 +#: src/Core/L10n.php:489 src/Model/Event.php:443 msgid "September" msgstr "September" -#: src/Core/L10n.php:503 src/Model/Event.php:458 +#: src/Core/L10n.php:489 src/Model/Event.php:444 msgid "October" msgstr "Oktober" -#: src/Core/L10n.php:503 src/Model/Event.php:459 +#: src/Core/L10n.php:489 src/Model/Event.php:445 msgid "November" msgstr "November" -#: src/Core/L10n.php:503 src/Model/Event.php:460 +#: src/Core/L10n.php:489 src/Model/Event.php:446 msgid "December" msgstr "Dezember" -#: src/Core/L10n.php:518 src/Model/Event.php:422 +#: src/Core/L10n.php:504 src/Model/Event.php:408 msgid "Mon" msgstr "Mo" -#: src/Core/L10n.php:518 src/Model/Event.php:423 +#: src/Core/L10n.php:504 src/Model/Event.php:409 msgid "Tue" msgstr "Di" -#: src/Core/L10n.php:518 src/Model/Event.php:424 +#: src/Core/L10n.php:504 src/Model/Event.php:410 msgid "Wed" msgstr "Mi" -#: src/Core/L10n.php:518 src/Model/Event.php:425 +#: src/Core/L10n.php:504 src/Model/Event.php:411 msgid "Thu" msgstr "Do" -#: src/Core/L10n.php:518 src/Model/Event.php:426 +#: src/Core/L10n.php:504 src/Model/Event.php:412 msgid "Fri" msgstr "Fr" -#: src/Core/L10n.php:518 src/Model/Event.php:427 +#: src/Core/L10n.php:504 src/Model/Event.php:413 msgid "Sat" msgstr "Sa" -#: src/Core/L10n.php:518 src/Model/Event.php:421 +#: src/Core/L10n.php:504 src/Model/Event.php:407 msgid "Sun" msgstr "So" -#: src/Core/L10n.php:522 src/Model/Event.php:437 +#: src/Core/L10n.php:508 src/Model/Event.php:423 msgid "Jan" msgstr "Jan" -#: src/Core/L10n.php:522 src/Model/Event.php:438 +#: src/Core/L10n.php:508 src/Model/Event.php:424 msgid "Feb" msgstr "Feb" -#: src/Core/L10n.php:522 src/Model/Event.php:439 +#: src/Core/L10n.php:508 src/Model/Event.php:425 msgid "Mar" msgstr "März" -#: src/Core/L10n.php:522 src/Model/Event.php:440 +#: src/Core/L10n.php:508 src/Model/Event.php:426 msgid "Apr" msgstr "Apr" -#: src/Core/L10n.php:522 src/Model/Event.php:442 +#: src/Core/L10n.php:508 src/Model/Event.php:428 msgid "Jun" msgstr "Jun" -#: src/Core/L10n.php:522 src/Model/Event.php:443 +#: src/Core/L10n.php:508 src/Model/Event.php:429 msgid "Jul" msgstr "Juli" -#: src/Core/L10n.php:522 src/Model/Event.php:444 +#: src/Core/L10n.php:508 src/Model/Event.php:430 msgid "Aug" msgstr "Aug" -#: src/Core/L10n.php:522 +#: src/Core/L10n.php:508 msgid "Sep" msgstr "Sep" -#: src/Core/L10n.php:522 src/Model/Event.php:446 +#: src/Core/L10n.php:508 src/Model/Event.php:432 msgid "Oct" msgstr "Okt" -#: src/Core/L10n.php:522 src/Model/Event.php:447 +#: src/Core/L10n.php:508 src/Model/Event.php:433 msgid "Nov" msgstr "Nov" -#: src/Core/L10n.php:522 src/Model/Event.php:448 +#: src/Core/L10n.php:508 src/Model/Event.php:434 msgid "Dec" msgstr "Dez" -#: src/Core/Logger/Util/LoggerSettingsCheck.php:60 +#: src/Core/Logger/Util/LoggerSettingsCheck.php:46 #, php-format msgid "The logfile '%s' is not usable. No logging possible (error: '%s')" msgstr "Die Logdatei '%s' ist nicht beschreibbar. Derzeit ist keine Aufzeichnung möglich (Fehler: '%s')" -#: src/Core/Logger/Util/LoggerSettingsCheck.php:85 +#: src/Core/Logger/Util/LoggerSettingsCheck.php:71 #, php-format msgid "" "The debug logfile '%s' is not usable. No logging possible (error: '%s')" msgstr "Die Logdatei '%s' ist nicht beschreibbar. Derzeit ist keine Aufzeichnung möglich (Fehler: '%s')" -#: src/Core/Renderer.php:92 src/Core/Renderer.php:121 -#: src/Core/Renderer.php:150 src/Core/Renderer.php:184 -#: src/Render/FriendicaSmartyEngine.php:60 +#: src/Core/Renderer.php:78 src/Core/Renderer.php:107 +#: src/Core/Renderer.php:136 src/Core/Renderer.php:170 +#: src/Render/FriendicaSmartyEngine.php:46 msgid "" "Friendica can't display this page at the moment, please contact the " "administrator." msgstr "Friendica kann die Seite im Moment nicht darstellen. Bitte kontaktiere das Administratoren Team." -#: src/Core/Renderer.php:146 +#: src/Core/Renderer.php:132 msgid "template engine cannot be registered without a name." msgstr "Die Template Engine kann nicht ohne einen Namen registriert werden." -#: src/Core/Renderer.php:180 +#: src/Core/Renderer.php:166 msgid "template engine is not registered!" msgstr "Template Engine wurde nicht registriert!" -#: src/Core/Storage/Type/FilesystemConfig.php:78 +#: src/Core/Storage/Type/FilesystemConfig.php:64 msgid "Storage base path" msgstr "Dateipfad zum Speicher" -#: src/Core/Storage/Type/FilesystemConfig.php:80 +#: src/Core/Storage/Type/FilesystemConfig.php:66 msgid "" "Folder where uploaded files are saved. For maximum security, This should be " "a path outside web server folder tree" msgstr "Verzeichnis, in das Dateien hochgeladen werden. Für maximale Sicherheit sollte dies ein Pfad außerhalb der Webserver-Verzeichnisstruktur sein" -#: src/Core/Storage/Type/FilesystemConfig.php:93 +#: src/Core/Storage/Type/FilesystemConfig.php:79 msgid "Enter a valid existing folder" msgstr "Gib einen gültigen, existierenden Ordner ein" -#: src/Core/Update.php:80 +#: src/Core/Update.php:66 #, php-format msgid "" "Updates from version %s are not supported. Please update at least to version" " 2021.01 and wait until the postupdate finished version 1383." msgstr "Aktualisierungen von der Version %s werden nicht unterstützt. Bitte aktualisiere vorher auf die Version 2021.01 von Friendica und warte bis das Postupdate auf die Version 1383 abgeschlossen ist." -#: src/Core/Update.php:91 +#: src/Core/Update.php:77 #, php-format msgid "" "Updates from postupdate version %s are not supported. Please update at least" " to version 2021.01 and wait until the postupdate finished version 1383." msgstr "Aktualisierungen von der Postupdate Version %s werden nicht unterstützt. Bitte aktualisiere zunächst auf die Friendica Version 2021.01 und warte bis das Postupdate 1383 abgeschlossen ist." -#: src/Core/Update.php:183 +#: src/Core/Update.php:169 #, php-format msgid "%s: executing pre update %d" msgstr "%s: Pre-Update %d wird ausgeführt" -#: src/Core/Update.php:225 +#: src/Core/Update.php:211 #, php-format msgid "%s: executing post update %d" msgstr "%s: Post-Update %d wird ausgeführt" -#: src/Core/Update.php:299 +#: src/Core/Update.php:285 #, php-format msgid "Update %s failed. See error logs." msgstr "Update %s fehlgeschlagen. Bitte Fehlerprotokoll überprüfen." -#: src/Core/Update.php:339 +#: src/Core/Update.php:325 #, php-format msgid "" "\n" @@ -3220,49 +3219,49 @@ msgid "" "\t\t\t\tfriendica developer if you can not help me on your own. My database might be invalid." msgstr "\nDie Friendica-Entwickler haben vor kurzem das Update %s veröffentlicht, aber bei der Installation ging etwas schrecklich schief.\n\nDas Problem sollte so schnell wie möglich gelöst werden, aber ich schaffe es nicht alleine. Bitte kontaktiere einen Friendica-Entwickler, falls du mir nicht alleine helfen kannst. Meine Datenbank könnte ungültig sein." -#: src/Core/Update.php:345 +#: src/Core/Update.php:331 #, php-format msgid "The error message is\\n[pre]%s[/pre]" msgstr "Die Fehlermeldung lautet [pre]%s[/pre]" -#: src/Core/Update.php:349 src/Core/Update.php:377 +#: src/Core/Update.php:335 src/Core/Update.php:363 msgid "[Friendica Notify] Database update" msgstr "[Friendica-Benachrichtigung]: Datenbank Update" -#: src/Core/Update.php:371 +#: src/Core/Update.php:357 #, php-format msgid "" "\n" "\t\t\t\tThe friendica database was successfully updated from %s to %s." msgstr "\n\t\t\t\tDie Friendica Datenbank wurde erfolgreich von %s auf %s aktualisiert." -#: src/Database/DBStructure.php:57 +#: src/Database/DBStructure.php:43 #, php-format msgid "The database version had been set to %s." msgstr "Die Datenbank Version wurde auf %s gesetzt." -#: src/Database/DBStructure.php:82 +#: src/Database/DBStructure.php:68 #, php-format msgid "" "The post update is at version %d, it has to be at %d to safely drop the " "tables." msgstr "Das post-update ist auf der Version %d. Damit die Tabellen sicher entfernt werden können muss es die Version %d haben." -#: src/Database/DBStructure.php:95 +#: src/Database/DBStructure.php:81 msgid "No unused tables found." msgstr "Keine Tabellen gefunden die nicht verwendet werden." -#: src/Database/DBStructure.php:100 +#: src/Database/DBStructure.php:86 msgid "" "These tables are not used for friendica and will be deleted when you execute" " \"dbstructure drop -e\":" msgstr "Diese Tabellen werden nicht von Friendica verwendet. Sie werden gelöscht, wenn du \"dbstructure drop -e\" ausführst." -#: src/Database/DBStructure.php:137 +#: src/Database/DBStructure.php:123 msgid "There are no tables on MyISAM or InnoDB with the Antelope file format." msgstr "Es gibt keine MyISAM oder InnoDB Tabellem mit dem Antelope Dateiformat." -#: src/Database/DBStructure.php:161 +#: src/Database/DBStructure.php:147 #, php-format msgid "" "\n" @@ -3270,658 +3269,654 @@ msgid "" "%s\n" msgstr "\nFehler %d beim Update der Datenbank aufgetreten\n%s\n" -#: src/Database/DBStructure.php:164 +#: src/Database/DBStructure.php:150 msgid "Errors encountered performing database changes: " msgstr "Fehler beim Ändern der Datenbank aufgetreten" -#: src/Database/DBStructure.php:232 +#: src/Database/DBStructure.php:218 msgid "Another database update is currently running." msgstr "Es läuft bereits ein anderes Datenbank Update" -#: src/Database/DBStructure.php:236 +#: src/Database/DBStructure.php:222 #, php-format msgid "%s: Database update" msgstr "%s: Datenbank Aktualisierung" -#: src/Database/DBStructure.php:493 +#: src/Database/DBStructure.php:479 #, php-format msgid "%s: updating %s table." msgstr "%s: aktualisiere Tabelle %s" -#: src/Factory/Api/Mastodon/Error.php:42 +#: src/Factory/Api/Mastodon/Error.php:28 msgid "Record not found" msgstr "Eintrag nicht gefunden" -#: src/Factory/Api/Mastodon/Error.php:49 +#: src/Factory/Api/Mastodon/Error.php:35 msgid "Unprocessable Entity" msgstr "Entität konnte nicht verarbeitet werden" -#: src/Factory/Api/Mastodon/Error.php:56 +#: src/Factory/Api/Mastodon/Error.php:42 msgid "Unauthorized" msgstr "Nicht autorisiert" -#: src/Factory/Api/Mastodon/Error.php:62 +#: src/Factory/Api/Mastodon/Error.php:48 msgid "" "Token is not authorized with a valid user or is missing a required scope" msgstr "Token ist nicht durch einen gültigen Benutzer autorisiert oder es fehlt ein erforderlicher Geltungsbereich" -#: src/Factory/Api/Mastodon/Error.php:69 +#: src/Factory/Api/Mastodon/Error.php:55 msgid "Internal Server Error" msgstr "Interner Serverfehler" -#: src/LegacyModule.php:63 +#: src/LegacyModule.php:49 #, php-format msgid "Legacy module file not found: %s" msgstr "Legacy-Moduldatei nicht gefunden: %s" -#: src/Model/Circle.php:106 +#: src/Model/Circle.php:92 msgid "" "A deleted circle with this name was revived. Existing item permissions " "may apply to this circle and any future members. If this is" " not what you intended, please create another circle with a different name." msgstr "Ein gelöschter Circle mit diesem Namen wurde wiederhergestellt. Bestehende Objektberechtigungen können für diesen Circle und alle zukünftigen Mitglieder gelten. Wenn dies nicht das ist, was du beabsichtigst, erstelle bitte einen neuen Circle mit einem anderen Namen." -#: src/Model/Circle.php:544 +#: src/Model/Circle.php:530 msgid "Everybody" msgstr "Alle Kontakte" -#: src/Model/Circle.php:563 +#: src/Model/Circle.php:549 msgid "edit" msgstr "bearbeiten" -#: src/Model/Circle.php:600 +#: src/Model/Circle.php:586 msgid "add" msgstr "hinzufügen" -#: src/Model/Circle.php:605 +#: src/Model/Circle.php:591 msgid "Edit circle" msgstr "Circle ändern" -#: src/Model/Circle.php:606 src/Module/Circle.php:195 +#: src/Model/Circle.php:592 src/Module/Circle.php:181 msgid "Contacts not in any circle" msgstr "Kontakte, die keinem Circle zugeordnet sind" -#: src/Model/Circle.php:608 +#: src/Model/Circle.php:594 msgid "Create a new circle" msgstr "Erstelle neuen Circle" -#: src/Model/Circle.php:609 src/Module/Circle.php:180 -#: src/Module/Circle.php:203 src/Module/Circle.php:278 +#: src/Model/Circle.php:595 src/Module/Circle.php:166 +#: src/Module/Circle.php:189 src/Module/Circle.php:264 msgid "Circle Name: " msgstr "Circle Name: " -#: src/Model/Circle.php:610 +#: src/Model/Circle.php:596 msgid "Edit circles" msgstr "Circles bearbeiten" -#: src/Model/Contact.php:1270 src/Module/Moderation/Users/Pending.php:102 -#: src/Module/Notifications/Introductions.php:138 -#: src/Module/Notifications/Introductions.php:210 +#: src/Model/Contact.php:1263 src/Module/Moderation/Users/Pending.php:88 +#: src/Module/Notifications/Introductions.php:124 +#: src/Module/Notifications/Introductions.php:196 msgid "Approve" msgstr "Genehmigen" -#: src/Model/Contact.php:1750 +#: src/Model/Contact.php:1743 msgid "Organisation" msgstr "Organisation" -#: src/Model/Contact.php:1758 +#: src/Model/Contact.php:1751 msgid "Group" msgstr "Gruppe" -#: src/Model/Contact.php:1762 src/Module/Moderation/BaseUsers.php:131 +#: src/Model/Contact.php:1755 src/Module/Moderation/BaseUsers.php:120 msgid "Relay" msgstr "Relais" -#: src/Model/Contact.php:3084 +#: src/Model/Contact.php:3070 msgid "Disallowed profile URL." msgstr "Nicht erlaubte Profil-URL." -#: src/Model/Contact.php:3089 src/Module/Friendica.php:100 +#: src/Model/Contact.php:3075 src/Module/Friendica.php:86 msgid "Blocked domain" msgstr "Blockierte Domain" -#: src/Model/Contact.php:3094 +#: src/Model/Contact.php:3080 msgid "Connect URL missing." msgstr "Connect-URL fehlt" -#: src/Model/Contact.php:3103 +#: src/Model/Contact.php:3089 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:3121 +#: src/Model/Contact.php:3107 #, 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:3138 +#: src/Model/Contact.php:3124 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:3145 +#: src/Model/Contact.php:3131 msgid "The profile address specified does not provide adequate information." msgstr "Die angegebene Profiladresse liefert unzureichende Informationen." -#: src/Model/Contact.php:3147 +#: src/Model/Contact.php:3133 msgid "No compatible communication protocols or feeds were discovered." msgstr "Es wurden keine kompatiblen Kommunikationsprotokolle oder Feeds gefunden." -#: src/Model/Contact.php:3150 +#: src/Model/Contact.php:3136 msgid "An author or name was not found." msgstr "Es wurde kein Autor oder Name gefunden." -#: src/Model/Contact.php:3153 +#: src/Model/Contact.php:3139 msgid "No browser URL could be matched to this address." msgstr "Zu dieser Adresse konnte keine passende Browser-URL gefunden werden." -#: src/Model/Contact.php:3156 +#: src/Model/Contact.php:3142 msgid "" "Unable to match @-style Identity Address with a known protocol or email " "contact." msgstr "Konnte die @-Adresse mit keinem der bekannten Protokolle oder Email-Kontakte abgleichen." -#: src/Model/Contact.php:3157 +#: src/Model/Contact.php:3143 msgid "Use mailto: in front of address to force email check." msgstr "Verwende mailto: vor der E-Mail-Adresse, um eine Überprüfung der E-Mail-Adresse zu erzwingen." -#: src/Model/Contact.php:3163 -msgid "" -"The profile address specified belongs to a network which has been disabled " -"on this site." -msgstr "Die Adresse dieses Profils gehört zu einem Netzwerk, mit dem die Kommunikation auf dieser Seite ausgeschaltet wurde." - -#: src/Model/Contact.php:3168 +#: src/Model/Contact.php:3149 msgid "" "Limited profile. This person will be unable to receive direct/personal " "notifications from you." msgstr "Eingeschränktes Profil. Diese Person wird keine direkten/privaten Nachrichten von dir erhalten können." -#: src/Model/Contact.php:3234 +#: src/Model/Contact.php:3208 msgid "Unable to retrieve contact information." msgstr "Konnte die Kontaktinformationen nicht empfangen." -#: src/Model/Event.php:54 +#: src/Model/Event.php:40 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:942 +#: src/Model/Event.php:61 src/Model/Event.php:78 src/Model/Event.php:455 +#: src/Model/Event.php:928 msgid "Starts:" msgstr "Beginnt:" -#: src/Model/Event.php:78 src/Model/Event.php:98 src/Model/Event.php:470 -#: src/Model/Event.php:946 +#: src/Model/Event.php:64 src/Model/Event.php:84 src/Model/Event.php:456 +#: src/Model/Event.php:932 msgid "Finishes:" msgstr "Endet:" -#: src/Model/Event.php:419 +#: src/Model/Event.php:405 msgid "all-day" msgstr "ganztägig" -#: src/Model/Event.php:445 +#: src/Model/Event.php:431 msgid "Sept" msgstr "Sep" -#: src/Model/Event.php:462 src/Module/Calendar/Show.php:128 -#: src/Util/Temporal.php:343 +#: src/Model/Event.php:448 src/Module/Calendar/Show.php:114 +#: src/Util/Temporal.php:329 msgid "today" msgstr "Heute" -#: src/Model/Event.php:463 src/Module/Calendar/Show.php:129 -#: src/Module/Settings/Display.php:294 src/Util/Temporal.php:353 +#: src/Model/Event.php:449 src/Module/Calendar/Show.php:115 +#: src/Module/Settings/Display.php:280 src/Util/Temporal.php:339 msgid "month" msgstr "Monat" -#: src/Model/Event.php:464 src/Module/Calendar/Show.php:130 -#: src/Module/Settings/Display.php:295 src/Util/Temporal.php:354 +#: src/Model/Event.php:450 src/Module/Calendar/Show.php:116 +#: src/Module/Settings/Display.php:281 src/Util/Temporal.php:340 msgid "week" msgstr "Woche" -#: src/Model/Event.php:465 src/Module/Calendar/Show.php:131 -#: src/Module/Settings/Display.php:296 src/Util/Temporal.php:355 +#: src/Model/Event.php:451 src/Module/Calendar/Show.php:117 +#: src/Module/Settings/Display.php:282 src/Util/Temporal.php:341 msgid "day" msgstr "Tag" -#: src/Model/Event.php:467 +#: src/Model/Event.php:453 msgid "No events to display" msgstr "Keine Veranstaltung zum Anzeigen" -#: src/Model/Event.php:516 src/Module/DFRN/Poll.php:47 src/Module/Feed.php:70 -#: src/Module/Update/Profile.php:56 +#: src/Model/Event.php:502 src/Module/Feed.php:56 +#: src/Module/Update/Profile.php:42 msgid "Access to this profile has been restricted." msgstr "Der Zugriff zu diesem Profil wurde eingeschränkt." -#: src/Model/Event.php:558 src/Module/Calendar/Event/Show.php:67 +#: src/Model/Event.php:544 src/Module/Calendar/Event/Show.php:53 msgid "Event not found." msgstr "Veranstaltung nicht gefunden." -#: src/Model/Event.php:637 +#: src/Model/Event.php:623 msgid "l, F j" msgstr "l, F j" -#: src/Model/Event.php:664 +#: src/Model/Event.php:650 msgid "Edit event" msgstr "Veranstaltung bearbeiten" -#: src/Model/Event.php:665 +#: src/Model/Event.php:651 msgid "Duplicate event" msgstr "Veranstaltung kopieren" -#: src/Model/Event.php:666 +#: src/Model/Event.php:652 msgid "Delete event" msgstr "Veranstaltung löschen" -#: src/Model/Event.php:896 src/Module/Debug/Localtime.php:38 +#: src/Model/Event.php:882 src/Module/Debug/Localtime.php:24 msgid "l F d, Y \\@ g:i A" msgstr "l, d. F Y\\, H:i" -#: src/Model/Event.php:897 +#: src/Model/Event.php:883 msgid "D g:i A" msgstr "D H:i" -#: src/Model/Event.php:898 +#: src/Model/Event.php:884 msgid "g:i A" msgstr "H:i" -#: src/Model/Event.php:961 src/Model/Event.php:963 +#: src/Model/Event.php:947 src/Model/Event.php:949 msgid "Show map" msgstr "Karte anzeigen" -#: src/Model/Event.php:962 +#: src/Model/Event.php:948 msgid "Hide map" msgstr "Karte verbergen" -#: src/Model/Event.php:1055 +#: src/Model/Event.php:1041 #, php-format msgid "%s's birthday" msgstr "%ss Geburtstag" -#: src/Model/Event.php:1056 +#: src/Model/Event.php:1042 #, php-format msgid "Happy Birthday %s" msgstr "Herzlichen Glückwunsch, %s" -#: src/Model/Item.php:2355 +#: src/Model/Item.php:2322 #, php-format msgid "%s (%s - %s): %s" msgstr "%s (%s - %s): %s" -#: src/Model/Item.php:2357 +#: src/Model/Item.php:2324 #, php-format msgid "%s (%s): %s" msgstr "%s (%s): %s" -#: src/Model/Item.php:2360 +#: src/Model/Item.php:2327 #, php-format -msgid "Detected languages in this post:\\n%s" -msgstr "Erkannte Sprachen in diesem Beitrag:\\n%s" +msgid "" +"Detected languages in this post:\n" +"%s" +msgstr "" -#: src/Model/Item.php:3308 +#: src/Model/Item.php:3276 msgid "activity" msgstr "Aktivität" -#: src/Model/Item.php:3310 +#: src/Model/Item.php:3278 msgid "comment" msgstr "Kommentar" -#: src/Model/Item.php:3313 src/Module/Post/Tag/Add.php:123 +#: src/Model/Item.php:3281 src/Module/Post/Tag/Add.php:109 msgid "post" msgstr "Beitrag" -#: src/Model/Item.php:3483 +#: src/Model/Item.php:3451 #, php-format msgid "%s is blocked" msgstr "%s ist blockiert" -#: src/Model/Item.php:3485 +#: src/Model/Item.php:3453 #, php-format msgid "%s is ignored" msgstr "%s ist ignoriert" -#: src/Model/Item.php:3487 +#: src/Model/Item.php:3455 #, php-format msgid "Content from %s is collapsed" msgstr "Inhalt vom %s ist zugeklappt" -#: src/Model/Item.php:3491 +#: src/Model/Item.php:3459 msgid "Sensitive content" msgstr "Sensitiver Inhalt" -#: src/Model/Item.php:3960 +#: src/Model/Item.php:3928 msgid "bytes" msgstr "Byte" -#: src/Model/Item.php:3991 +#: src/Model/Item.php:3959 #, 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:3993 +#: src/Model/Item.php:3961 #, 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:3998 +#: src/Model/Item.php:3966 #, 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:4000 +#: src/Model/Item.php:3968 #, php-format msgid "%d voter." msgid_plural "%d voters." msgstr[0] "%d Stimme." msgstr[1] "%d Stimmen." -#: src/Model/Item.php:4002 +#: src/Model/Item.php:3970 #, php-format msgid "Poll end: %s" msgstr "Abstimmung endet: %s" -#: src/Model/Item.php:4043 src/Model/Item.php:4044 +#: src/Model/Item.php:4011 src/Model/Item.php:4012 msgid "View on separate page" msgstr "Auf separater Seite ansehen" -#: src/Model/Mail.php:135 +#: src/Model/Mail.php:121 msgid "[no subject]" msgstr "[kein Betreff]" -#: src/Model/Photo.php:1198 src/Module/Media/Photo/Upload.php:168 +#: src/Model/Photo.php:1194 src/Module/Media/Photo/Upload.php:154 msgid "Wall Photos" msgstr "Pinnwand-Bilder" -#: src/Model/Profile.php:357 src/Module/Profile/Profile.php:285 -#: src/Module/Profile/Profile.php:287 +#: src/Model/Profile.php:343 src/Module/Profile/Profile.php:271 +#: src/Module/Profile/Profile.php:273 msgid "Edit profile" msgstr "Profil bearbeiten" -#: src/Model/Profile.php:359 +#: src/Model/Profile.php:345 msgid "Change profile photo" msgstr "Profilbild ändern" -#: src/Model/Profile.php:372 src/Module/Directory.php:153 -#: src/Module/Profile/Profile.php:211 +#: src/Model/Profile.php:358 src/Module/Directory.php:139 +#: src/Module/Profile/Profile.php:197 msgid "Homepage:" msgstr "Homepage:" -#: src/Model/Profile.php:373 src/Module/Contact/Profile.php:432 -#: src/Module/Notifications/Introductions.php:195 +#: src/Model/Profile.php:359 src/Module/Contact/Profile.php:418 +#: src/Module/Notifications/Introductions.php:181 msgid "About:" msgstr "Über:" -#: src/Model/Profile.php:474 +#: src/Model/Profile.php:460 msgid "Atom feed" msgstr "Atom-Feed" -#: src/Model/Profile.php:481 +#: src/Model/Profile.php:467 msgid "This website has been verified to belong to the same person." msgstr "Die Webseite wurde verifiziert und gehört der gleichen Person." -#: src/Model/Profile.php:532 +#: src/Model/Profile.php:518 msgid "F d" msgstr "d. F" -#: src/Model/Profile.php:596 src/Model/Profile.php:677 +#: src/Model/Profile.php:582 src/Model/Profile.php:663 msgid "[today]" msgstr "[heute]" -#: src/Model/Profile.php:605 +#: src/Model/Profile.php:591 msgid "Birthday Reminders" msgstr "Geburtstagserinnerungen" -#: src/Model/Profile.php:606 +#: src/Model/Profile.php:592 msgid "Birthdays this week:" msgstr "Geburtstage diese Woche:" -#: src/Model/Profile.php:622 +#: src/Model/Profile.php:608 msgid "g A l F d" msgstr "l, d. F G \\U\\h\\r" -#: src/Model/Profile.php:664 +#: src/Model/Profile.php:650 msgid "[No description]" msgstr "[keine Beschreibung]" -#: src/Model/Profile.php:690 +#: src/Model/Profile.php:676 msgid "Event Reminders" msgstr "Veranstaltungserinnerungen" -#: src/Model/Profile.php:691 +#: src/Model/Profile.php:677 msgid "Upcoming events the next 7 days:" msgstr "Veranstaltungen der nächsten 7 Tage:" -#: src/Model/Profile.php:803 +#: src/Model/Profile.php:789 msgid "Hometown:" msgstr "Heimatort:" -#: src/Model/Profile.php:804 +#: src/Model/Profile.php:790 msgid "Marital Status:" msgstr "Familienstand:" -#: src/Model/Profile.php:805 +#: src/Model/Profile.php:791 msgid "With:" msgstr "Mit:" -#: src/Model/Profile.php:806 +#: src/Model/Profile.php:792 msgid "Since:" msgstr "Seit:" -#: src/Model/Profile.php:807 +#: src/Model/Profile.php:793 msgid "Sexual Preference:" msgstr "Sexuelle Vorlieben:" -#: src/Model/Profile.php:808 +#: src/Model/Profile.php:794 msgid "Political Views:" msgstr "Politische Ansichten:" -#: src/Model/Profile.php:809 +#: src/Model/Profile.php:795 msgid "Religious Views:" msgstr "Religiöse Ansichten:" -#: src/Model/Profile.php:810 +#: src/Model/Profile.php:796 msgid "Likes:" msgstr "Likes:" -#: src/Model/Profile.php:811 +#: src/Model/Profile.php:797 msgid "Dislikes:" msgstr "Dislikes:" -#: src/Model/Profile.php:812 +#: src/Model/Profile.php:798 msgid "Title/Description:" msgstr "Titel/Beschreibung:" -#: src/Model/Profile.php:813 src/Module/Admin/Summary.php:197 -#: src/Module/Moderation/Report/Create.php:280 -#: src/Module/Moderation/Summary.php:76 +#: src/Model/Profile.php:799 src/Module/Admin/Summary.php:183 +#: src/Module/Moderation/Report/Create.php:266 +#: src/Module/Moderation/Summary.php:62 msgid "Summary" msgstr "Zusammenfassung" -#: src/Model/Profile.php:814 +#: src/Model/Profile.php:800 msgid "Musical interests" msgstr "Musikalische Interessen" -#: src/Model/Profile.php:815 +#: src/Model/Profile.php:801 msgid "Books, literature" msgstr "Bücher, Literatur" -#: src/Model/Profile.php:816 +#: src/Model/Profile.php:802 msgid "Television" msgstr "Fernsehen" -#: src/Model/Profile.php:817 +#: src/Model/Profile.php:803 msgid "Film/dance/culture/entertainment" msgstr "Filme/Tänze/Kultur/Unterhaltung" -#: src/Model/Profile.php:818 +#: src/Model/Profile.php:804 msgid "Hobbies/Interests" msgstr "Hobbies/Interessen" -#: src/Model/Profile.php:819 +#: src/Model/Profile.php:805 msgid "Love/romance" msgstr "Liebe/Romantik" -#: src/Model/Profile.php:820 +#: src/Model/Profile.php:806 msgid "Work/employment" msgstr "Arbeit/Anstellung" -#: src/Model/Profile.php:821 +#: src/Model/Profile.php:807 msgid "School/education" msgstr "Schule/Ausbildung" -#: src/Model/Profile.php:822 +#: src/Model/Profile.php:808 msgid "Contact information and Social Networks" msgstr "Kontaktinformationen und Soziale Netzwerke" -#: src/Model/Profile.php:870 +#: src/Model/Profile.php:856 #, php-format msgid "Responsible account: %s" msgstr "Verantwortlicher Account: %s" -#: src/Model/User.php:233 src/Model/User.php:1326 +#: src/Model/User.php:217 src/Model/User.php:1310 msgid "SERIOUS ERROR: Generation of security keys failed." msgstr "FATALER FEHLER: Sicherheitsschlüssel konnten nicht erzeugt werden." -#: src/Model/User.php:756 src/Model/User.php:789 +#: src/Model/User.php:740 src/Model/User.php:773 msgid "Login failed" msgstr "Anmeldung fehlgeschlagen" -#: src/Model/User.php:821 +#: src/Model/User.php:805 msgid "Not enough information to authenticate" msgstr "Nicht genügend Informationen für die Authentifizierung" -#: src/Model/User.php:946 +#: src/Model/User.php:930 msgid "Password can't be empty" msgstr "Das Passwort kann nicht leer sein" -#: src/Model/User.php:988 +#: src/Model/User.php:972 msgid "Empty passwords are not allowed." msgstr "Leere Passwörter sind nicht erlaubt." -#: src/Model/User.php:992 +#: src/Model/User.php:976 msgid "" "The new password has been exposed in a public data dump, please choose " "another." msgstr "Das neue Passwort wurde in einem öffentlichen Daten-Dump veröffentlicht. Bitte verwende ein anderes Passwort." -#: src/Model/User.php:996 +#: src/Model/User.php:980 msgid "The password length is limited to 72 characters." msgstr "Die Länge des Passworts ist auf 72 Zeichen begrenzt." -#: src/Model/User.php:1000 +#: src/Model/User.php:984 msgid "The password can't contain white spaces nor accentuated letters" msgstr "Das Passwort kann weder Leerzeichen noch akzentuierte Zeichen beinhalten." -#: src/Model/User.php:1209 +#: src/Model/User.php:1193 msgid "Passwords do not match. Password unchanged." msgstr "Die Passwörter stimmen nicht überein. Das Passwort bleibt unverändert." -#: src/Model/User.php:1216 +#: src/Model/User.php:1200 msgid "An invitation is required." msgstr "Du benötigst eine Einladung." -#: src/Model/User.php:1220 +#: src/Model/User.php:1204 msgid "Invitation could not be verified." msgstr "Die Einladung konnte nicht überprüft werden." -#: src/Model/User.php:1228 +#: src/Model/User.php:1212 msgid "Invalid OpenID url" msgstr "Ungültige OpenID URL" -#: src/Model/User.php:1241 src/Security/Authentication.php:228 +#: src/Model/User.php:1225 src/Security/Authentication.php:214 msgid "" "We encountered a problem while logging in with the OpenID you provided. " "Please check the correct spelling of the ID." msgstr "Beim Versuch, dich mit der von dir angegebenen OpenID anzumelden, trat ein Problem auf. Bitte überprüfe, dass du die OpenID richtig geschrieben hast." -#: src/Model/User.php:1241 src/Security/Authentication.php:228 +#: src/Model/User.php:1225 src/Security/Authentication.php:214 msgid "The error message was:" msgstr "Die Fehlermeldung lautete:" -#: src/Model/User.php:1247 +#: src/Model/User.php:1231 msgid "Please enter the required information." msgstr "Bitte trage die erforderlichen Informationen ein." -#: src/Model/User.php:1261 +#: src/Model/User.php:1245 #, php-format msgid "" "system.username_min_length (%s) and system.username_max_length (%s) are " "excluding each other, swapping values." msgstr "system.username_min_length (%s) and system.username_max_length (%s) schließen sich gegenseitig aus, tausche Werte aus." -#: src/Model/User.php:1268 +#: src/Model/User.php:1252 #, php-format msgid "Username should be at least %s character." msgid_plural "Username should be at least %s characters." msgstr[0] "Der Benutzername sollte aus mindestens %s Zeichen bestehen." msgstr[1] "Der Benutzername sollte aus mindestens %s Zeichen bestehen." -#: src/Model/User.php:1272 +#: src/Model/User.php:1256 #, php-format msgid "Username should be at most %s character." msgid_plural "Username should be at most %s characters." msgstr[0] "Der Benutzername sollte aus maximal %s Zeichen bestehen." msgstr[1] "Der Benutzername sollte aus maximal %s Zeichen bestehen." -#: src/Model/User.php:1280 +#: src/Model/User.php:1264 msgid "That doesn't appear to be your full (First Last) name." msgstr "Das scheint nicht dein kompletter Name (Vor- und Nachname) zu sein." -#: src/Model/User.php:1285 +#: src/Model/User.php:1269 msgid "Your email domain is not among those allowed on this site." msgstr "Die Domain Deiner E-Mail-Adresse ist auf dieser Seite nicht erlaubt." -#: src/Model/User.php:1289 +#: src/Model/User.php:1273 msgid "Not a valid email address." msgstr "Keine gültige E-Mail-Adresse." -#: src/Model/User.php:1292 +#: src/Model/User.php:1276 msgid "The nickname was blocked from registration by the nodes admin." msgstr "Der Admin des Knotens hat den Spitznamen für die Registrierung gesperrt." -#: src/Model/User.php:1296 src/Model/User.php:1302 +#: src/Model/User.php:1280 src/Model/User.php:1286 msgid "Cannot use that email." msgstr "Konnte diese E-Mail-Adresse nicht verwenden." -#: src/Model/User.php:1308 +#: src/Model/User.php:1292 msgid "Your nickname can only contain a-z, 0-9 and _." msgstr "Dein Spitzname darf nur aus Buchstaben und Zahlen (\"a-z\",\"0-9\" und \"_\") bestehen." -#: src/Model/User.php:1316 src/Model/User.php:1373 +#: src/Model/User.php:1300 src/Model/User.php:1350 msgid "Nickname is already registered. Please choose another." msgstr "Dieser Spitzname ist bereits vergeben. Bitte wähle einen anderen." -#: src/Model/User.php:1360 src/Model/User.php:1364 +#: src/Model/User.php:1337 src/Model/User.php:1341 msgid "An error occurred during registration. Please try again." msgstr "Während der Anmeldung ist ein Fehler aufgetreten. Bitte versuche es noch einmal." -#: src/Model/User.php:1387 +#: src/Model/User.php:1364 msgid "An error occurred creating your default profile. Please try again." msgstr "Bei der Erstellung des Standardprofils ist ein Fehler aufgetreten. Bitte versuche es noch einmal." -#: src/Model/User.php:1394 +#: src/Model/User.php:1371 msgid "An error occurred creating your self contact. Please try again." msgstr "Bei der Erstellung deines self-Kontakts ist ein Fehler aufgetreten. Bitte versuche es erneut." -#: src/Model/User.php:1399 +#: src/Model/User.php:1376 msgid "Friends" msgstr "Kontakte" -#: src/Model/User.php:1403 +#: src/Model/User.php:1380 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:1445 +#: src/Model/User.php:1428 msgid "Profile Photos" msgstr "Profilbilder" -#: src/Model/User.php:1633 +#: src/Model/User.php:1616 #, php-format msgid "" "\n" @@ -3929,7 +3924,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:1636 +#: src/Model/User.php:1619 #, php-format msgid "" "\n" @@ -3960,12 +3955,12 @@ msgid "" "\t\tThank you and welcome to %4$s." 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:1668 src/Model/User.php:1774 +#: src/Model/User.php:1651 src/Model/User.php:1757 #, php-format msgid "Registration details for %s" msgstr "Details der Registration von %s" -#: src/Model/User.php:1688 +#: src/Model/User.php:1671 #, php-format msgid "" "\n" @@ -3980,12 +3975,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:1707 +#: src/Model/User.php:1690 #, php-format msgid "Registration at %s" msgstr "Registrierung als %s" -#: src/Model/User.php:1731 +#: src/Model/User.php:1714 #, php-format msgid "" "\n" @@ -3994,7 +3989,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:1739 +#: src/Model/User.php:1722 #, php-format msgid "" "\n" @@ -4025,93 +4020,91 @@ 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:1801 +#: src/Model/User.php:1784 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" -#: src/Module/Admin/Addons/Details.php:65 +#: src/Module/Admin/Addons/Details.php:51 msgid "Addon not found." msgstr "Addon nicht gefunden." -#: src/Module/Admin/Addons/Details.php:76 src/Module/Admin/Addons/Index.php:55 +#: src/Module/Admin/Addons/Details.php:62 src/Module/Admin/Addons/Index.php:41 #, php-format msgid "Addon %s disabled." msgstr "Addon %s ausgeschaltet." -#: src/Module/Admin/Addons/Details.php:79 src/Module/Admin/Addons/Index.php:57 +#: src/Module/Admin/Addons/Details.php:65 src/Module/Admin/Addons/Index.php:43 #, php-format msgid "Addon %s enabled." msgstr "Addon %s aktiviert." -#: src/Module/Admin/Addons/Details.php:88 -#: src/Module/Admin/Themes/Details.php:52 +#: src/Module/Admin/Addons/Details.php:74 +#: src/Module/Admin/Themes/Details.php:38 msgid "Disable" msgstr "Ausschalten" -#: src/Module/Admin/Addons/Details.php:91 -#: src/Module/Admin/Themes/Details.php:55 src/Module/Settings/Display.php:340 +#: src/Module/Admin/Addons/Details.php:77 +#: src/Module/Admin/Themes/Details.php:41 src/Module/Settings/Display.php:326 msgid "Enable" msgstr "Einschalten" -#: src/Module/Admin/Addons/Details.php:111 -#: src/Module/Admin/Addons/Index.php:73 src/Module/Admin/Federation.php:220 -#: src/Module/Admin/Logs/Settings.php:88 src/Module/Admin/Logs/View.php:85 -#: src/Module/Admin/Queue.php:73 src/Module/Admin/Site.php:457 -#: src/Module/Admin/Storage.php:138 src/Module/Admin/Summary.php:196 -#: src/Module/Admin/Themes/Details.php:96 -#: src/Module/Admin/Themes/Index.php:117 src/Module/Admin/Tos.php:77 -#: src/Module/Moderation/Users/Create.php:61 -#: src/Module/Moderation/Users/Pending.php:96 +#: src/Module/Admin/Addons/Details.php:97 src/Module/Admin/Addons/Index.php:59 +#: src/Module/Admin/Federation.php:206 src/Module/Admin/Logs/Settings.php:74 +#: src/Module/Admin/Logs/View.php:71 src/Module/Admin/Queue.php:59 +#: src/Module/Admin/Site.php:447 src/Module/Admin/Storage.php:124 +#: src/Module/Admin/Summary.php:182 src/Module/Admin/Themes/Details.php:82 +#: src/Module/Admin/Themes/Index.php:103 src/Module/Admin/Tos.php:63 +#: src/Module/Moderation/Users/Create.php:47 +#: src/Module/Moderation/Users/Pending.php:82 msgid "Administration" msgstr "Administration" -#: src/Module/Admin/Addons/Details.php:112 -#: src/Module/Admin/Addons/Index.php:74 src/Module/BaseAdmin.php:92 -#: src/Module/BaseSettings.php:139 +#: src/Module/Admin/Addons/Details.php:98 src/Module/Admin/Addons/Index.php:60 +#: src/Module/BaseAdmin.php:78 src/Module/BaseSettings.php:125 msgid "Addons" msgstr "Addons" -#: src/Module/Admin/Addons/Details.php:113 -#: src/Module/Admin/Themes/Details.php:98 +#: src/Module/Admin/Addons/Details.php:99 +#: src/Module/Admin/Themes/Details.php:84 msgid "Toggle" msgstr "Umschalten" -#: src/Module/Admin/Addons/Details.php:120 -#: src/Module/Admin/Themes/Details.php:106 +#: src/Module/Admin/Addons/Details.php:106 +#: src/Module/Admin/Themes/Details.php:92 msgid "Author: " msgstr "Autor:" -#: src/Module/Admin/Addons/Details.php:121 -#: src/Module/Admin/Themes/Details.php:107 +#: src/Module/Admin/Addons/Details.php:107 +#: src/Module/Admin/Themes/Details.php:93 msgid "Maintainer: " msgstr "Betreuer:" -#: src/Module/Admin/Addons/Index.php:48 +#: src/Module/Admin/Addons/Index.php:34 msgid "Addons reloaded" msgstr "Addons neu geladen" -#: src/Module/Admin/Addons/Index.php:59 +#: src/Module/Admin/Addons/Index.php:45 #, php-format msgid "Addon %s failed to install." msgstr "Addon %s konnte nicht installiert werden" -#: src/Module/Admin/Addons/Index.php:75 src/Module/Admin/Features.php:83 -#: src/Module/Admin/Logs/Settings.php:90 src/Module/Admin/Site.php:460 -#: src/Module/Admin/Themes/Index.php:119 src/Module/Admin/Tos.php:86 -#: src/Module/Settings/Account.php:563 src/Module/Settings/Addons.php:78 -#: src/Module/Settings/Connectors.php:163 -#: src/Module/Settings/Connectors.php:256 -#: src/Module/Settings/Delegation.php:193 src/Module/Settings/Display.php:309 -#: src/Module/Settings/Features.php:75 +#: src/Module/Admin/Addons/Index.php:61 src/Module/Admin/Features.php:69 +#: src/Module/Admin/Logs/Settings.php:76 src/Module/Admin/Site.php:450 +#: src/Module/Admin/Themes/Index.php:105 src/Module/Admin/Tos.php:72 +#: src/Module/Settings/Account.php:549 src/Module/Settings/Addons.php:64 +#: src/Module/Settings/Connectors.php:149 +#: src/Module/Settings/Connectors.php:235 +#: src/Module/Settings/Delegation.php:179 src/Module/Settings/Display.php:295 +#: src/Module/Settings/Features.php:61 msgid "Save Settings" msgstr "Einstellungen speichern" -#: src/Module/Admin/Addons/Index.php:76 +#: src/Module/Admin/Addons/Index.php:62 msgid "Reload active addons" msgstr "Aktivierte Addons neu laden" -#: src/Module/Admin/Addons/Index.php:80 +#: src/Module/Admin/Addons/Index.php:66 #, php-format msgid "" "There are currently no addons available on your node. You can find the " @@ -4119,158 +4112,158 @@ msgid "" " the open addon registry at %2$s" msgstr "Es sind derzeit keine Addons auf diesem Knoten verfügbar. Du findest das offizielle Addon-Repository unter %1$s und weitere eventuell interessante Addons im offenen Addon-Verzeichnis auf %2$s." -#: src/Module/Admin/DBSync.php:51 +#: src/Module/Admin/DBSync.php:37 msgid "Update has been marked successful" msgstr "Update wurde als erfolgreich markiert" -#: src/Module/Admin/DBSync.php:59 +#: src/Module/Admin/DBSync.php:45 #, php-format msgid "Database structure update %s was successfully applied." msgstr "Das Update %s der Struktur der Datenbank wurde erfolgreich angewandt." -#: src/Module/Admin/DBSync.php:61 +#: src/Module/Admin/DBSync.php:47 #, php-format msgid "Executing of database structure update %s failed with error: %s" msgstr "Das Update %s der Struktur der Datenbank schlug mit folgender Fehlermeldung fehl: %s" -#: src/Module/Admin/DBSync.php:76 +#: src/Module/Admin/DBSync.php:62 #, php-format msgid "Executing %s failed with error: %s" msgstr "Die Ausführung von %s schlug fehl. Fehlermeldung: %s" -#: src/Module/Admin/DBSync.php:78 +#: src/Module/Admin/DBSync.php:64 #, php-format msgid "Update %s was successfully applied." msgstr "Update %s war erfolgreich." -#: src/Module/Admin/DBSync.php:81 +#: src/Module/Admin/DBSync.php:67 #, php-format msgid "Update %s did not return a status. Unknown if it succeeded." msgstr "Update %s hat keinen Status zurückgegeben. Unbekannter Status." -#: src/Module/Admin/DBSync.php:84 +#: src/Module/Admin/DBSync.php:70 #, php-format msgid "There was no additional update function %s that needed to be called." msgstr "Es gab keine weitere Update-Funktion, die von %s ausgeführt werden musste." -#: src/Module/Admin/DBSync.php:105 +#: src/Module/Admin/DBSync.php:91 msgid "No failed updates." msgstr "Keine fehlgeschlagenen Updates." -#: src/Module/Admin/DBSync.php:106 +#: src/Module/Admin/DBSync.php:92 msgid "Check database structure" msgstr "Datenbankstruktur überprüfen" -#: src/Module/Admin/DBSync.php:110 +#: src/Module/Admin/DBSync.php:96 msgid "Failed Updates" msgstr "Fehlgeschlagene Updates" -#: src/Module/Admin/DBSync.php:111 +#: src/Module/Admin/DBSync.php:97 msgid "" "This does not include updates prior to 1139, which did not return a status." msgstr "Ohne Updates vor 1139, da diese keinen Status zurückgegeben haben." -#: src/Module/Admin/DBSync.php:112 +#: src/Module/Admin/DBSync.php:98 msgid "Mark success (if update was manually applied)" msgstr "Als erfolgreich markieren (falls das Update manuell installiert wurde)" -#: src/Module/Admin/DBSync.php:113 +#: src/Module/Admin/DBSync.php:99 msgid "Attempt to execute this update step automatically" msgstr "Versuchen, diesen Schritt automatisch auszuführen" -#: src/Module/Admin/Features.php:67 -#: src/Module/Notifications/Introductions.php:150 -#: src/Module/OAuth/Acknowledge.php:55 src/Module/Register.php:138 -#: src/Module/Settings/TwoFactor/Trusted.php:129 +#: src/Module/Admin/Features.php:53 +#: src/Module/Notifications/Introductions.php:136 +#: src/Module/OAuth/Acknowledge.php:41 src/Module/Register.php:124 +#: src/Module/Settings/TwoFactor/Trusted.php:115 msgid "No" msgstr "Nein" -#: src/Module/Admin/Features.php:67 src/Module/Contact/Revoke.php:105 -#: src/Module/Notifications/Introductions.php:150 -#: src/Module/OAuth/Acknowledge.php:54 src/Module/Register.php:137 -#: src/Module/Settings/TwoFactor/Trusted.php:129 +#: src/Module/Admin/Features.php:53 src/Module/Contact/Revoke.php:91 +#: src/Module/Notifications/Introductions.php:136 +#: src/Module/OAuth/Acknowledge.php:40 src/Module/Register.php:123 +#: src/Module/Settings/TwoFactor/Trusted.php:115 msgid "Yes" msgstr "Ja" -#: src/Module/Admin/Features.php:67 +#: src/Module/Admin/Features.php:53 msgid "Locked" msgstr "Abgeschlossen" -#: src/Module/Admin/Features.php:81 +#: src/Module/Admin/Features.php:67 msgid "Manage Additional Features" msgstr "Zusätzliche Features Verwalten" -#: src/Module/Admin/Federation.php:82 -#: src/Module/Moderation/Report/Create.php:191 -#: src/Module/Moderation/Report/Create.php:316 +#: src/Module/Admin/Federation.php:68 +#: src/Module/Moderation/Report/Create.php:177 +#: src/Module/Moderation/Report/Create.php:302 msgid "Other" msgstr "Andere" -#: src/Module/Admin/Federation.php:160 src/Module/Admin/Federation.php:408 +#: src/Module/Admin/Federation.php:146 src/Module/Admin/Federation.php:394 msgid "unknown" msgstr "Unbekannt" -#: src/Module/Admin/Federation.php:193 +#: src/Module/Admin/Federation.php:179 #, php-format msgid "%2$s total system" msgid_plural "%2$s total systems" msgstr[0] "%2$sServer gesamt" msgstr[1] "%2$s Server gesamt" -#: src/Module/Admin/Federation.php:194 +#: src/Module/Admin/Federation.php:180 #, php-format msgid "%2$s active user last month" msgid_plural "%2$s active users last month" msgstr[0] "%2$s aktiver Nutzer im letzten Monat" msgstr[1] "%2$s aktive Nutzer im letzten Monat" -#: src/Module/Admin/Federation.php:195 +#: src/Module/Admin/Federation.php:181 #, php-format msgid "%2$s active user last six months" msgid_plural "%2$s active users last six months" msgstr[0] "%2$s aktive Nutzer im letzten halben Jahr" msgstr[1] "%2$s aktive Nutzer im letzten halben Jahr" -#: src/Module/Admin/Federation.php:196 +#: src/Module/Admin/Federation.php:182 #, php-format msgid "%2$s registered user" msgid_plural "%2$s registered users" msgstr[0] "%2$sregistrierter Nutzer" msgstr[1] "%2$s registrierte Nutzer" -#: src/Module/Admin/Federation.php:197 +#: src/Module/Admin/Federation.php:183 #, php-format msgid "%2$s locally created post or comment" msgid_plural "%2$s locally created posts and comments" msgstr[0] "%2$slokal erstellter Beitrag oder Kommentar" msgstr[1] "%2$slokal erstellte Beiträge und Kommentare" -#: src/Module/Admin/Federation.php:200 +#: src/Module/Admin/Federation.php:186 #, php-format msgid "%2$s post per user" msgid_plural "%2$s posts per user" msgstr[0] "%2$sBeitrag pro Nutzer" msgstr[1] "%2$sBeiträge pro Nutzer" -#: src/Module/Admin/Federation.php:205 +#: src/Module/Admin/Federation.php:191 #, php-format msgid "%2$s user per system" msgid_plural "%2$s users per system" msgstr[0] "%2$sNutzer pro System" msgstr[1] "%2$sNutzer pro System" -#: src/Module/Admin/Federation.php:215 +#: src/Module/Admin/Federation.php:201 msgid "" "This page offers you some numbers to the known part of the federated social " "network your Friendica node is part of. These numbers are not complete but " "only reflect the part of the network your node is aware of." msgstr "Diese Seite präsentiert einige Zahlen zu dem bekannten Teil des föderalen sozialen Netzwerks, von dem deine Friendica Installation ein Teil ist. Diese Zahlen sind nicht absolut und reflektieren nur den Teil des Netzwerks, den dein Knoten kennt." -#: src/Module/Admin/Federation.php:221 src/Module/BaseAdmin.php:87 +#: src/Module/Admin/Federation.php:207 src/Module/BaseAdmin.php:73 msgid "Federation Statistics" msgstr "Föderation Statistik" -#: src/Module/Admin/Federation.php:224 +#: src/Module/Admin/Federation.php:210 #, php-format msgid "" "Currently this node is aware of %2$s node (%3$s active users last month, " @@ -4283,58 +4276,58 @@ msgid_plural "" msgstr[0] "Derzeit kennt dieser Knoten %2$s andere Knoten (mit %3$s aktiven Nutzern im letzten Monat, %4$s aktiven Nutzern im letzten halben Jahr, %5$s registrierten Nutzern insgesamt) von den folgenden Plattformen:" msgstr[1] "Derzeit kennt dieser Knoten %2$s andere Knoten (mit %3$s aktiven Nutzern im letzten Monat, %4$s aktiven Nutzern im letzten halben Jahr, %5$s registrierten Nutzern insgesamt) von den folgenden Plattformen:" -#: src/Module/Admin/Logs/Settings.php:47 +#: src/Module/Admin/Logs/Settings.php:33 #, php-format msgid "The logfile '%s' is not writable. No logging possible" msgstr "Die Logdatei '%s' ist nicht beschreibbar. Derzeit ist keine Aufzeichnung möglich." -#: src/Module/Admin/Logs/Settings.php:80 +#: src/Module/Admin/Logs/Settings.php:66 msgid "PHP log currently enabled." msgstr "PHP Protokollierung ist derzeit aktiviert." -#: src/Module/Admin/Logs/Settings.php:82 +#: src/Module/Admin/Logs/Settings.php:68 msgid "PHP log currently disabled." msgstr "PHP Protokollierung ist derzeit nicht aktiviert." -#: src/Module/Admin/Logs/Settings.php:89 src/Module/BaseAdmin.php:102 -#: src/Module/BaseAdmin.php:103 +#: src/Module/Admin/Logs/Settings.php:75 src/Module/BaseAdmin.php:88 +#: src/Module/BaseAdmin.php:89 msgid "Logs" msgstr "Protokolle" -#: src/Module/Admin/Logs/Settings.php:91 +#: src/Module/Admin/Logs/Settings.php:77 msgid "Clear" msgstr "löschen" -#: src/Module/Admin/Logs/Settings.php:94 +#: src/Module/Admin/Logs/Settings.php:80 msgid "Enable Debugging" msgstr "Protokoll führen" -#: src/Module/Admin/Logs/Settings.php:94 src/Module/Admin/Logs/Settings.php:95 -#: src/Module/Admin/Logs/Settings.php:96 src/Module/Admin/Site.php:480 -#: src/Module/Admin/Site.php:488 +#: src/Module/Admin/Logs/Settings.php:80 src/Module/Admin/Logs/Settings.php:81 +#: src/Module/Admin/Logs/Settings.php:82 src/Module/Admin/Site.php:470 +#: src/Module/Admin/Site.php:478 msgid "" "Read-only because it is set by an environment variable" msgstr "Schreibgeschützt, weil es durch eine Umgebungsvariable festgelegt ist" -#: src/Module/Admin/Logs/Settings.php:95 +#: src/Module/Admin/Logs/Settings.php:81 msgid "Log file" msgstr "Protokolldatei" -#: src/Module/Admin/Logs/Settings.php:95 +#: src/Module/Admin/Logs/Settings.php:81 msgid "" "Must be writable by web server. Relative to your Friendica top-level " "directory." msgstr "Webserver muss Schreibrechte besitzen. Abhängig vom Friendica-Installationsverzeichnis." -#: src/Module/Admin/Logs/Settings.php:96 +#: src/Module/Admin/Logs/Settings.php:82 msgid "Log level" msgstr "Protokoll-Level" -#: src/Module/Admin/Logs/Settings.php:98 +#: src/Module/Admin/Logs/Settings.php:84 msgid "PHP logging" msgstr "PHP Protokollieren" -#: src/Module/Admin/Logs/Settings.php:99 +#: src/Module/Admin/Logs/Settings.php:85 msgid "" "To temporarily enable logging of PHP errors and warnings you can prepend the" " following to the index.php file of your installation. The filename set in " @@ -4343,402 +4336,407 @@ msgid "" "'display_errors' is to enable these options, set to '0' to disable them." msgstr "Um die Protokollierung von PHP-Fehlern und Warnungen vorübergehend zu aktivieren, kannst du der Datei index.php deiner Installation Folgendes voranstellen. Der in der Datei 'error_log' angegebene Dateiname ist relativ zum obersten Verzeichnis von Friendica und muss vom Webserver beschreibbar sein. Die Option '1' für 'log_errors' und 'display_errors' aktiviert diese Optionen, ersetze die '1' durch eine '0', um sie zu deaktivieren." -#: src/Module/Admin/Logs/View.php:72 +#: src/Module/Admin/Logs/View.php:58 #, php-format msgid "" "Error trying to open %1$s log file.
Check to see if " "file %1$s exist and is readable." msgstr "Fehler beim Öffnen der Logdatei %1$s.
Bitte überprüfe ob die Datei %1$s existiert und gelesen werden kann." -#: src/Module/Admin/Logs/View.php:81 +#: src/Module/Admin/Logs/View.php:67 #, php-format msgid "" "Couldn't open %1$s log file.
Check to see if file %1$s " "is readable." msgstr "Konnte die Logdatei %1$s nicht öffnen.
Bitte stelle sicher, dass die Datei %1$s lesbar ist." -#: src/Module/Admin/Logs/View.php:86 src/Module/BaseAdmin.php:104 +#: src/Module/Admin/Logs/View.php:72 src/Module/BaseAdmin.php:90 msgid "View Logs" msgstr "Protokolle anzeigen" -#: src/Module/Admin/Logs/View.php:89 +#: src/Module/Admin/Logs/View.php:75 msgid "Search in logs" msgstr "Logs durchsuchen" -#: src/Module/Admin/Logs/View.php:90 -#: src/Module/Notifications/Notifications.php:146 +#: src/Module/Admin/Logs/View.php:76 +#: src/Module/Notifications/Notifications.php:132 msgid "Show all" msgstr "Alle anzeigen" -#: src/Module/Admin/Logs/View.php:91 +#: src/Module/Admin/Logs/View.php:77 msgid "Date" msgstr "Datum" -#: src/Module/Admin/Logs/View.php:92 +#: src/Module/Admin/Logs/View.php:78 msgid "Level" msgstr "Level" -#: src/Module/Admin/Logs/View.php:93 +#: src/Module/Admin/Logs/View.php:79 msgid "Context" msgstr "Zusammenhang" -#: src/Module/Admin/Logs/View.php:95 +#: src/Module/Admin/Logs/View.php:81 msgid "ALL" msgstr "ALLE" -#: src/Module/Admin/Logs/View.php:96 +#: src/Module/Admin/Logs/View.php:82 msgid "View details" msgstr "Details anzeigen" -#: src/Module/Admin/Logs/View.php:97 +#: src/Module/Admin/Logs/View.php:83 msgid "Click to view details" msgstr "Anklicken zum Anzeigen der Details" -#: src/Module/Admin/Logs/View.php:98 src/Module/Calendar/Event/Form.php:207 +#: src/Module/Admin/Logs/View.php:84 src/Module/Calendar/Event/Form.php:193 msgid "Event details" msgstr "Ereignisdetails" -#: src/Module/Admin/Logs/View.php:99 +#: src/Module/Admin/Logs/View.php:85 msgid "Data" msgstr "Daten" -#: src/Module/Admin/Logs/View.php:100 -#: src/Module/Debug/ActivityPubConversion.php:63 +#: src/Module/Admin/Logs/View.php:86 +#: src/Module/Debug/ActivityPubConversion.php:49 msgid "Source" msgstr "Quelle" -#: src/Module/Admin/Logs/View.php:101 +#: src/Module/Admin/Logs/View.php:87 msgid "File" msgstr "Datei" -#: src/Module/Admin/Logs/View.php:102 +#: src/Module/Admin/Logs/View.php:88 msgid "Line" msgstr "Zeile" -#: src/Module/Admin/Logs/View.php:103 +#: src/Module/Admin/Logs/View.php:89 msgid "Function" msgstr "Funktion" -#: src/Module/Admin/Logs/View.php:104 +#: src/Module/Admin/Logs/View.php:90 msgid "UID" msgstr "UID" -#: src/Module/Admin/Logs/View.php:105 +#: src/Module/Admin/Logs/View.php:91 msgid "Process ID" msgstr "Prozess ID" -#: src/Module/Admin/Logs/View.php:106 +#: src/Module/Admin/Logs/View.php:92 msgid "Close" msgstr "Schließen" -#: src/Module/Admin/Queue.php:50 +#: src/Module/Admin/Queue.php:36 msgid "Inspect Deferred Worker Queue" msgstr "Verzögerte Worker-Warteschlange inspizieren" -#: src/Module/Admin/Queue.php:51 +#: src/Module/Admin/Queue.php:37 msgid "" "This page lists the deferred worker jobs. This are jobs that couldn't be " "executed at the first time." msgstr "Auf dieser Seite werden die aufgeschobenen Worker-Jobs aufgelistet. Dies sind Jobs, die beim ersten Mal nicht ausgeführt werden konnten." -#: src/Module/Admin/Queue.php:54 +#: src/Module/Admin/Queue.php:40 msgid "Inspect Worker Queue" msgstr "Worker-Warteschlange inspizieren" -#: src/Module/Admin/Queue.php:55 +#: src/Module/Admin/Queue.php:41 msgid "" "This page lists the currently queued worker jobs. These jobs are handled by " "the worker cronjob you've set up during install." msgstr "Auf dieser Seite werden die derzeit in der Warteschlange befindlichen Worker-Jobs aufgelistet. Diese Jobs werden vom Cronjob verarbeitet, den du während der Installation eingerichtet hast." -#: src/Module/Admin/Queue.php:76 +#: src/Module/Admin/Queue.php:62 msgid "ID" msgstr "ID" -#: src/Module/Admin/Queue.php:77 +#: src/Module/Admin/Queue.php:63 msgid "Command" msgstr "Befehl" -#: src/Module/Admin/Queue.php:78 +#: src/Module/Admin/Queue.php:64 msgid "Job Parameters" msgstr "Parameter der Aufgabe" -#: src/Module/Admin/Queue.php:79 src/Module/Moderation/Reports.php:116 -#: src/Module/Settings/OAuth.php:74 +#: src/Module/Admin/Queue.php:65 src/Module/Moderation/Reports.php:102 +#: src/Module/Settings/OAuth.php:60 msgid "Created" msgstr "Erstellt" -#: src/Module/Admin/Queue.php:80 +#: src/Module/Admin/Queue.php:66 msgid "Next Try" msgstr "Nächster Versuch" -#: src/Module/Admin/Queue.php:81 +#: src/Module/Admin/Queue.php:67 msgid "Priority" msgstr "Priorität" -#: src/Module/Admin/Site.php:244 +#: src/Module/Admin/Site.php:230 +#, php-format +msgid "%s is no valid input for maximum media size" +msgstr "" + +#: src/Module/Admin/Site.php:235 #, 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:372 src/Module/Settings/Display.php:215 +#: src/Module/Admin/Site.php:362 src/Module/Settings/Display.php:201 msgid "No special theme for mobile devices" msgstr "Kein spezielles Theme für mobile Geräte verwenden." -#: src/Module/Admin/Site.php:389 src/Module/Settings/Display.php:225 +#: src/Module/Admin/Site.php:379 src/Module/Settings/Display.php:211 #, php-format msgid "%s - (Experimental)" msgstr "%s - (Experimentell)" -#: src/Module/Admin/Site.php:401 +#: src/Module/Admin/Site.php:391 msgid "No community page" msgstr "Keine Gemeinschaftsseite" -#: src/Module/Admin/Site.php:402 +#: src/Module/Admin/Site.php:392 msgid "No community page for visitors" msgstr "Keine Gemeinschaftsseite für Besucher" -#: src/Module/Admin/Site.php:403 +#: src/Module/Admin/Site.php:393 msgid "Public postings from users of this site" msgstr "Öffentliche Beiträge von NutzerInnen dieser Seite" -#: src/Module/Admin/Site.php:404 +#: src/Module/Admin/Site.php:394 msgid "Public postings from the federated network" msgstr "Öffentliche Beiträge aus dem föderalen Netzwerk" -#: src/Module/Admin/Site.php:405 +#: src/Module/Admin/Site.php:395 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:411 +#: src/Module/Admin/Site.php:401 msgid "Multi user instance" msgstr "Mehrbenutzer-Instanz" -#: src/Module/Admin/Site.php:434 +#: src/Module/Admin/Site.php:424 msgid "Closed" msgstr "Geschlossen" -#: src/Module/Admin/Site.php:435 +#: src/Module/Admin/Site.php:425 msgid "Requires approval" msgstr "Bedarf der Zustimmung" -#: src/Module/Admin/Site.php:436 +#: src/Module/Admin/Site.php:426 msgid "Open" msgstr "Offen" -#: src/Module/Admin/Site.php:440 +#: src/Module/Admin/Site.php:430 msgid "Don't check" msgstr "Nicht überprüfen" -#: src/Module/Admin/Site.php:441 +#: src/Module/Admin/Site.php:431 msgid "check the stable version" msgstr "überprüfe die stabile Version" -#: src/Module/Admin/Site.php:442 +#: src/Module/Admin/Site.php:432 msgid "check the development version" msgstr "überprüfe die Entwicklungsversion" -#: src/Module/Admin/Site.php:446 +#: src/Module/Admin/Site.php:436 msgid "none" msgstr "keine" -#: src/Module/Admin/Site.php:447 +#: src/Module/Admin/Site.php:437 msgid "Local contacts" msgstr "Lokale Kontakte" -#: src/Module/Admin/Site.php:448 +#: src/Module/Admin/Site.php:438 msgid "Interactors" msgstr "Interaktionen" -#: src/Module/Admin/Site.php:458 src/Module/BaseAdmin.php:90 +#: src/Module/Admin/Site.php:448 src/Module/BaseAdmin.php:76 msgid "Site" msgstr "Seite" -#: src/Module/Admin/Site.php:459 +#: src/Module/Admin/Site.php:449 msgid "General Information" msgstr "Allgemeine Informationen" -#: src/Module/Admin/Site.php:461 +#: src/Module/Admin/Site.php:451 msgid "Republish users to directory" msgstr "Nutzer erneut im globalen Verzeichnis veröffentlichen." -#: src/Module/Admin/Site.php:462 src/Module/Register.php:159 +#: src/Module/Admin/Site.php:452 src/Module/Register.php:145 msgid "Registration" msgstr "Registrierung" -#: src/Module/Admin/Site.php:463 +#: src/Module/Admin/Site.php:453 msgid "File upload" msgstr "Datei hochladen" -#: src/Module/Admin/Site.php:464 +#: src/Module/Admin/Site.php:454 msgid "Policies" msgstr "Regeln" -#: src/Module/Admin/Site.php:465 src/Module/Calendar/Event/Form.php:252 -#: src/Module/Contact.php:553 src/Module/Profile/Profile.php:278 +#: src/Module/Admin/Site.php:455 src/Module/Calendar/Event/Form.php:238 +#: src/Module/Contact.php:528 src/Module/Profile/Profile.php:264 msgid "Advanced" msgstr "Erweitert" -#: src/Module/Admin/Site.php:466 +#: src/Module/Admin/Site.php:456 msgid "Auto Discovered Contact Directory" msgstr "Automatisch ein Kontaktverzeichnis erstellen" -#: src/Module/Admin/Site.php:467 +#: src/Module/Admin/Site.php:457 msgid "Performance" msgstr "Performance" -#: src/Module/Admin/Site.php:468 +#: src/Module/Admin/Site.php:458 msgid "Worker" msgstr "Worker" -#: src/Module/Admin/Site.php:469 +#: src/Module/Admin/Site.php:459 msgid "Message Relay" msgstr "Nachrichten-Relais" -#: src/Module/Admin/Site.php:470 +#: src/Module/Admin/Site.php:460 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:471 +#: src/Module/Admin/Site.php:461 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:472 +#: src/Module/Admin/Site.php:462 msgid "The system is currently subscribed to the following relays:" msgstr "Das System hat derzeit Abonnements bei folgenden Releays:" -#: src/Module/Admin/Site.php:475 +#: src/Module/Admin/Site.php:465 msgid "Relocate Node" msgstr "Knoten umziehen" -#: src/Module/Admin/Site.php:476 +#: src/Module/Admin/Site.php:466 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:477 +#: src/Module/Admin/Site.php:467 msgid "(Friendica directory)# bin/console relocate https://newdomain.com" msgstr "(Friendica Verzeichnis)# bin/console relocate https://newdomain.com" -#: src/Module/Admin/Site.php:480 +#: src/Module/Admin/Site.php:470 msgid "Site name" msgstr "Seitenname" -#: src/Module/Admin/Site.php:481 +#: src/Module/Admin/Site.php:471 msgid "Sender Email" msgstr "Absender für Emails" -#: src/Module/Admin/Site.php:481 +#: src/Module/Admin/Site.php:471 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:482 +#: src/Module/Admin/Site.php:472 msgid "Name of the system actor" msgstr "Name des System-Actors" -#: src/Module/Admin/Site.php:482 +#: src/Module/Admin/Site.php:472 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:483 +#: src/Module/Admin/Site.php:473 msgid "Banner/Logo" msgstr "Banner/Logo" -#: src/Module/Admin/Site.php:484 +#: src/Module/Admin/Site.php:474 msgid "Email Banner/Logo" msgstr "E-Mail Banner / Logo" -#: src/Module/Admin/Site.php:485 +#: src/Module/Admin/Site.php:475 msgid "Shortcut icon" msgstr "Shortcut Icon" -#: src/Module/Admin/Site.php:485 +#: src/Module/Admin/Site.php:475 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:486 +#: src/Module/Admin/Site.php:476 msgid "Touch icon" msgstr "Touch Icon" -#: src/Module/Admin/Site.php:486 +#: src/Module/Admin/Site.php:476 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:487 +#: src/Module/Admin/Site.php:477 msgid "Additional Info" msgstr "Zusätzliche Informationen" -#: src/Module/Admin/Site.php:487 +#: src/Module/Admin/Site.php:477 #, 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:488 +#: src/Module/Admin/Site.php:478 msgid "System language" msgstr "Systemsprache" -#: src/Module/Admin/Site.php:489 +#: src/Module/Admin/Site.php:479 msgid "System theme" msgstr "Systemweites Theme" -#: src/Module/Admin/Site.php:489 +#: src/Module/Admin/Site.php:479 #, 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:490 +#: src/Module/Admin/Site.php:480 msgid "Mobile system theme" msgstr "Systemweites mobiles Theme" -#: src/Module/Admin/Site.php:490 +#: src/Module/Admin/Site.php:480 msgid "Theme for mobile devices" msgstr "Theme für mobile Geräte" -#: src/Module/Admin/Site.php:491 +#: src/Module/Admin/Site.php:481 msgid "Force SSL" msgstr "Erzwinge SSL" -#: src/Module/Admin/Site.php:491 +#: src/Module/Admin/Site.php:481 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:492 +#: src/Module/Admin/Site.php:482 msgid "Show help entry from navigation menu" msgstr "Zeige den Hilfe-Eintrag im Navigationsmenü an" -#: src/Module/Admin/Site.php:492 +#: src/Module/Admin/Site.php:482 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:493 +#: src/Module/Admin/Site.php:483 msgid "Single user instance" msgstr "Ein-Nutzer Instanz" -#: src/Module/Admin/Site.php:493 +#: src/Module/Admin/Site.php:483 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:495 +#: src/Module/Admin/Site.php:485 msgid "Maximum image size" msgstr "Maximale Bildgröße" -#: src/Module/Admin/Site.php:495 +#: src/Module/Admin/Site.php:485 #, 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" @@ -4746,35 +4744,47 @@ 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:499 +#: src/Module/Admin/Site.php:489 msgid "Maximum image length" msgstr "Maximale Bildlänge" -#: src/Module/Admin/Site.php:499 +#: src/Module/Admin/Site.php:489 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:500 +#: src/Module/Admin/Site.php:490 msgid "JPEG image quality" msgstr "Qualität des JPEG Bildes" -#: src/Module/Admin/Site.php:500 +#: src/Module/Admin/Site.php:490 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:502 +#: src/Module/Admin/Site.php:491 +msgid "Maximum media file size" +msgstr "" + +#: src/Module/Admin/Site.php:491 +#, php-format +msgid "" +"Maximum size in bytes of uploaded media files. Default is 0, which means no limits. You can put k, m, or g behind the desired value for KiB, MiB, GiB, respectively.\n" +"\t\t\t\t\t\t\t\t\t\t\t\t\tThe value of upload_max_filesize in your PHP.ini needs be set to at least the desired limit.\n" +"\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:496 msgid "Register policy" msgstr "Registrierungsmethode" -#: src/Module/Admin/Site.php:503 +#: src/Module/Admin/Site.php:497 msgid "Maximum Users" msgstr "Maximale Benutzeranzahl" -#: src/Module/Admin/Site.php:503 +#: src/Module/Admin/Site.php:497 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 " @@ -4782,167 +4792,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:504 +#: src/Module/Admin/Site.php:498 msgid "Maximum Daily Registrations" msgstr "Maximum täglicher Registrierungen" -#: src/Module/Admin/Site.php:504 +#: src/Module/Admin/Site.php:498 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:505 +#: src/Module/Admin/Site.php:499 msgid "Register text" msgstr "Registrierungstext" -#: src/Module/Admin/Site.php:505 +#: src/Module/Admin/Site.php:499 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:506 +#: src/Module/Admin/Site.php:500 msgid "Forbidden Nicknames" msgstr "Verbotene Spitznamen" -#: src/Module/Admin/Site.php:506 +#: src/Module/Admin/Site.php:500 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:507 +#: src/Module/Admin/Site.php:501 msgid "Accounts abandoned after x days" msgstr "Nutzerkonten gelten nach x Tagen als unbenutzt" -#: src/Module/Admin/Site.php:507 +#: src/Module/Admin/Site.php:501 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:508 +#: src/Module/Admin/Site.php:502 msgid "Allowed friend domains" msgstr "Erlaubte Domains für Kontakte" -#: src/Module/Admin/Site.php:508 +#: src/Module/Admin/Site.php:502 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:509 +#: src/Module/Admin/Site.php:503 msgid "Allowed email domains" msgstr "Erlaubte Domains für E-Mails" -#: src/Module/Admin/Site.php:509 +#: src/Module/Admin/Site.php:503 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:510 +#: src/Module/Admin/Site.php:504 msgid "Disallowed email domains" msgstr "Nicht erlaubte Domains für E-Mails" -#: src/Module/Admin/Site.php:510 +#: src/Module/Admin/Site.php:504 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 +#: src/Module/Admin/Site.php:505 msgid "No OEmbed rich content" msgstr "OEmbed nicht verwenden" -#: src/Module/Admin/Site.php:511 +#: src/Module/Admin/Site.php:505 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:512 +#: src/Module/Admin/Site.php:506 msgid "Trusted third-party domains" msgstr "Vertrauenswürdige Drittanbieter-Domains" -#: src/Module/Admin/Site.php:512 +#: src/Module/Admin/Site.php:506 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:513 +#: src/Module/Admin/Site.php:507 msgid "Block public" msgstr "Öffentlichen Zugriff blockieren" -#: src/Module/Admin/Site.php:513 +#: src/Module/Admin/Site.php:507 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:514 +#: src/Module/Admin/Site.php:508 msgid "Force publish" msgstr "Erzwinge Veröffentlichung" -#: src/Module/Admin/Site.php:514 +#: src/Module/Admin/Site.php:508 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:514 +#: src/Module/Admin/Site.php:508 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:515 +#: src/Module/Admin/Site.php:509 msgid "Global directory URL" msgstr "URL des weltweiten Verzeichnisses" -#: src/Module/Admin/Site.php:515 +#: src/Module/Admin/Site.php:509 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:516 +#: src/Module/Admin/Site.php:510 msgid "Private posts by default for new users" msgstr "Private Beiträge als Standard für neue Nutzer" -#: src/Module/Admin/Site.php:516 +#: src/Module/Admin/Site.php:510 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:517 +#: src/Module/Admin/Site.php:511 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:517 +#: src/Module/Admin/Site.php:511 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:518 +#: src/Module/Admin/Site.php:512 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:518 +#: src/Module/Admin/Site.php:512 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:519 +#: src/Module/Admin/Site.php:513 msgid "Don't embed private images in posts" msgstr "Private Bilder nicht in Beiträgen einbetten." -#: src/Module/Admin/Site.php:519 +#: src/Module/Admin/Site.php:513 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 " @@ -4950,11 +4960,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:520 +#: src/Module/Admin/Site.php:514 msgid "Explicit Content" msgstr "Sensibler Inhalt" -#: src/Module/Admin/Site.php:520 +#: src/Module/Admin/Site.php:514 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 " @@ -4963,329 +4973,319 @@ 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:521 +#: src/Module/Admin/Site.php:515 msgid "Only local search" msgstr "Nur lokale Suche" -#: src/Module/Admin/Site.php:521 +#: src/Module/Admin/Site.php:515 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:522 +#: src/Module/Admin/Site.php:516 msgid "Blocked tags for trending tags" msgstr "Blockierte Tags für Trend-Tags" -#: src/Module/Admin/Site.php:522 +#: src/Module/Admin/Site.php:516 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:523 +#: src/Module/Admin/Site.php:517 msgid "Cache contact avatars" msgstr "Kontaktprofilbilder zwischenspeichern" -#: src/Module/Admin/Site.php:523 +#: src/Module/Admin/Site.php:517 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:524 +#: src/Module/Admin/Site.php:518 msgid "Allow Users to set remote_self" msgstr "Nutzern erlauben, das remote_self Flag zu setzen" -#: src/Module/Admin/Site.php:524 +#: src/Module/Admin/Site.php:518 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:525 +#: src/Module/Admin/Site.php:519 msgid "Allow Users to set up relay channels" msgstr "Benutzern erlauben Relaiskanäle einzurichten" -#: src/Module/Admin/Site.php:525 +#: src/Module/Admin/Site.php:519 msgid "" "If enabled, it is possible to create relay users that are used to reshare " "content based on user defined channels." 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:526 +#: src/Module/Admin/Site.php:520 msgid "Adjust the feed poll frequency" msgstr "Einstellen der Abrufhäufigkeit" -#: src/Module/Admin/Site.php:526 +#: src/Module/Admin/Site.php:520 msgid "Automatically detect and set the best feed poll frequency." msgstr "Automatisches Erkennen und Einstellen der besten Abrufhäufigkeit." -#: src/Module/Admin/Site.php:527 +#: src/Module/Admin/Site.php:521 msgid "Minimum poll interval" msgstr "Minimales Abfrageintervall" -#: src/Module/Admin/Site.php:527 +#: src/Module/Admin/Site.php:521 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:528 +#: src/Module/Admin/Site.php:522 msgid "Enable multiple registrations" msgstr "Erlaube Mehrfachregistrierung" -#: src/Module/Admin/Site.php:528 +#: src/Module/Admin/Site.php:522 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:529 +#: src/Module/Admin/Site.php:523 msgid "Enable OpenID" msgstr "OpenID aktivieren" -#: src/Module/Admin/Site.php:529 +#: src/Module/Admin/Site.php:523 msgid "Enable OpenID support for registration and logins." msgstr "OpenID Unterstützung bei der Registrierung und dem Login aktivieren." -#: src/Module/Admin/Site.php:530 +#: src/Module/Admin/Site.php:524 msgid "Enable full name check" msgstr "Namen auf Vollständigkeit überprüfen" -#: src/Module/Admin/Site.php:530 +#: src/Module/Admin/Site.php:524 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:531 +#: src/Module/Admin/Site.php:525 msgid "Email administrators on new registration" msgstr "Email den Administratoren bei neuen Registrierungen" -#: src/Module/Admin/Site.php:531 +#: src/Module/Admin/Site.php:525 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:532 +#: src/Module/Admin/Site.php:526 msgid "Community pages for visitors" msgstr "Für Besucher verfügbare Gemeinschaftsseite" -#: src/Module/Admin/Site.php:532 +#: src/Module/Admin/Site.php:526 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:533 +#: src/Module/Admin/Site.php:527 msgid "Posts per user on community page" msgstr "Anzahl der Beiträge pro Benutzer auf der Gemeinschaftsseite" -#: src/Module/Admin/Site.php:533 +#: src/Module/Admin/Site.php:527 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:534 +#: src/Module/Admin/Site.php:528 msgid "Posts per server on community page" msgstr "Beiträge pro Server auf der Gemeinschaftsseite" -#: src/Module/Admin/Site.php:534 +#: src/Module/Admin/Site.php:528 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:536 +#: src/Module/Admin/Site.php:530 msgid "Enable Mail support" msgstr "E-Mail Unterstützung aktivieren" -#: src/Module/Admin/Site.php:536 +#: src/Module/Admin/Site.php:530 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:537 +#: src/Module/Admin/Site.php:531 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:538 -msgid "Enable OStatus support" -msgstr "OStatus Unterstützung aktivieren" - -#: src/Module/Admin/Site.php:538 -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:540 +#: src/Module/Admin/Site.php:533 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:541 +#: src/Module/Admin/Site.php:534 msgid "Enable Diaspora support" msgstr "Diaspora-Unterstützung aktivieren" -#: src/Module/Admin/Site.php:541 +#: src/Module/Admin/Site.php:534 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:542 +#: src/Module/Admin/Site.php:535 msgid "Verify SSL" msgstr "SSL Überprüfen" -#: src/Module/Admin/Site.php:542 +#: src/Module/Admin/Site.php:535 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:543 +#: src/Module/Admin/Site.php:536 msgid "Proxy user" msgstr "Proxy-Nutzer" -#: src/Module/Admin/Site.php:543 +#: src/Module/Admin/Site.php:536 msgid "User name for the proxy server." msgstr "Nutzername für den Proxy-Server" -#: src/Module/Admin/Site.php:544 +#: src/Module/Admin/Site.php:537 msgid "Proxy URL" msgstr "Proxy-URL" -#: src/Module/Admin/Site.php:544 +#: src/Module/Admin/Site.php:537 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:545 +#: src/Module/Admin/Site.php:538 msgid "Network timeout" msgstr "Netzwerk-Wartezeit" -#: src/Module/Admin/Site.php:545 +#: src/Module/Admin/Site.php:538 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:546 +#: src/Module/Admin/Site.php:539 msgid "Maximum Load Average" msgstr "Maximum Load Average" -#: src/Module/Admin/Site.php:546 +#: src/Module/Admin/Site.php:539 #, 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:547 +#: src/Module/Admin/Site.php:540 msgid "Minimal Memory" msgstr "Minimaler Speicher" -#: src/Module/Admin/Site.php:547 +#: src/Module/Admin/Site.php:540 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:548 +#: src/Module/Admin/Site.php:541 msgid "Periodically optimize tables" msgstr "Optimiere die Tabellen regelmäßig" -#: src/Module/Admin/Site.php:548 +#: src/Module/Admin/Site.php:541 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:550 +#: src/Module/Admin/Site.php:543 msgid "Discover followers/followings from contacts" msgstr "Endecke folgende und gefolgte Kontakte von Kontakten" -#: src/Module/Admin/Site.php:550 +#: src/Module/Admin/Site.php:543 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:551 +#: src/Module/Admin/Site.php:544 msgid "None - deactivated" msgstr "Keine - deaktiviert" -#: src/Module/Admin/Site.php:552 +#: src/Module/Admin/Site.php:545 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:553 +#: src/Module/Admin/Site.php:546 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:555 +#: src/Module/Admin/Site.php:548 msgid "Only update contacts/servers with local data" msgstr "Nur Kontakte/Server mit lokalen Daten aktualisieren" -#: src/Module/Admin/Site.php:555 +#: src/Module/Admin/Site.php:548 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:556 +#: src/Module/Admin/Site.php:549 msgid "Synchronize the contacts with the directory server" msgstr "Gleiche die Kontakte mit dem Directory-Server ab" -#: src/Module/Admin/Site.php:556 +#: src/Module/Admin/Site.php:549 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:558 +#: src/Module/Admin/Site.php:551 msgid "Discover contacts from other servers" msgstr "Neue Kontakte auf anderen Servern entdecken" -#: src/Module/Admin/Site.php:558 +#: src/Module/Admin/Site.php:551 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:559 +#: src/Module/Admin/Site.php:552 msgid "Days between requery" msgstr "Tage zwischen erneuten Abfragen" -#: src/Module/Admin/Site.php:559 +#: src/Module/Admin/Site.php:552 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:560 +#: src/Module/Admin/Site.php:553 msgid "Search the local directory" msgstr "Lokales Verzeichnis durchsuchen" -#: src/Module/Admin/Site.php:560 +#: src/Module/Admin/Site.php:553 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:562 +#: src/Module/Admin/Site.php:555 msgid "Publish server information" msgstr "Server-Informationen veröffentlichen" -#: src/Module/Admin/Site.php:562 +#: src/Module/Admin/Site.php:555 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 " @@ -5293,50 +5293,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:564 +#: src/Module/Admin/Site.php:557 msgid "Check upstream version" msgstr "Suche nach Updates" -#: src/Module/Admin/Site.php:564 +#: src/Module/Admin/Site.php:557 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:565 +#: src/Module/Admin/Site.php:558 msgid "Suppress Tags" msgstr "Tags unterdrücken" -#: src/Module/Admin/Site.php:565 +#: src/Module/Admin/Site.php:558 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:566 +#: src/Module/Admin/Site.php:559 msgid "Clean database" msgstr "Datenbank aufräumen" -#: src/Module/Admin/Site.php:566 +#: src/Module/Admin/Site.php:559 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:567 +#: src/Module/Admin/Site.php:560 msgid "Lifespan of remote items" msgstr "Lebensdauer von Beiträgen anderer Knoten" -#: src/Module/Admin/Site.php:567 +#: src/Module/Admin/Site.php:560 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:568 +#: src/Module/Admin/Site.php:561 msgid "Lifespan of unclaimed items" msgstr "Lebensdauer nicht angeforderter Beiträge" -#: src/Module/Admin/Site.php:568 +#: src/Module/Admin/Site.php:561 msgid "" "When the database cleanup is enabled, this defines the days after which " "unclaimed remote items (mostly content from the relay) will be deleted. " @@ -5344,185 +5344,184 @@ 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:569 +#: src/Module/Admin/Site.php:562 msgid "Lifespan of raw conversation data" msgstr "Lebensdauer der Beiträge" -#: src/Module/Admin/Site.php:569 +#: src/Module/Admin/Site.php:562 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." +"The conversation data is used for ActivityPub, 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:570 +#: src/Module/Admin/Site.php:563 msgid "Maximum numbers of comments per post" msgstr "Maximale Anzahl von Kommentaren pro Beitrag" -#: src/Module/Admin/Site.php:570 +#: src/Module/Admin/Site.php:563 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:571 +#: src/Module/Admin/Site.php:564 msgid "Maximum numbers of comments per post on the display page" msgstr "Maximale Anzahl von Kommentaren in der Einzelansicht" -#: src/Module/Admin/Site.php:571 +#: src/Module/Admin/Site.php:564 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:572 +#: src/Module/Admin/Site.php:565 msgid "Items per page" msgstr "Beiträge pro Seite" -#: src/Module/Admin/Site.php:572 +#: src/Module/Admin/Site.php:565 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:573 +#: src/Module/Admin/Site.php:566 msgid "Items per page for mobile devices" msgstr "Beiträge pro Seite für mobile Endgeräte" -#: src/Module/Admin/Site.php:573 +#: src/Module/Admin/Site.php:566 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:574 +#: src/Module/Admin/Site.php:567 msgid "Temp path" msgstr "Temp-Pfad" -#: src/Module/Admin/Site.php:574 +#: src/Module/Admin/Site.php:567 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:575 +#: src/Module/Admin/Site.php:568 msgid "Only search in tags" msgstr "Nur in Tags suchen" -#: src/Module/Admin/Site.php:575 +#: src/Module/Admin/Site.php:568 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:576 +#: src/Module/Admin/Site.php:569 msgid "Limited search scope" msgstr "Suchfeld begrenzen" -#: src/Module/Admin/Site.php:576 +#: src/Module/Admin/Site.php:569 msgid "" "If enabled, searches will only be performed in the data used for the " "channels and not in all posts." msgstr "Ist dies aktiviert, werden bei Suchen nur die Daten der Kanäle durchsucht anstatt alle Beiträge zu durchsuchen." -#: src/Module/Admin/Site.php:577 +#: src/Module/Admin/Site.php:570 msgid "Maximum age of items in the search table" msgstr "Maximales Alter der Elemente in der Suchtabelle" -#: src/Module/Admin/Site.php:577 +#: src/Module/Admin/Site.php:570 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 "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:578 +#: src/Module/Admin/Site.php:571 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:578 +#: src/Module/Admin/Site.php:571 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:579 +#: src/Module/Admin/Site.php:572 msgid "Process \"view\" activities" msgstr "\"view\"-Aktivitäten verarbeiten" -#: src/Module/Admin/Site.php:579 +#: src/Module/Admin/Site.php:572 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:580 +#: src/Module/Admin/Site.php:573 msgid "Days, after which a contact is archived" msgstr "Anzahl der Tage, nach denen ein Kontakt archiviert wird" -#: src/Module/Admin/Site.php:580 +#: src/Module/Admin/Site.php:573 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:582 +#: src/Module/Admin/Site.php:575 msgid "Maximum number of parallel workers" msgstr "Maximale Anzahl parallel laufender Worker" -#: src/Module/Admin/Site.php:582 +#: src/Module/Admin/Site.php:575 #, 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:583 +#: src/Module/Admin/Site.php:576 msgid "Maximum load for workers" msgstr "Maximale Last für Worker" -#: src/Module/Admin/Site.php:583 +#: src/Module/Admin/Site.php:576 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:584 +#: src/Module/Admin/Site.php:577 msgid "Enable fastlane" msgstr "Aktiviere Fastlane" -#: src/Module/Admin/Site.php:584 +#: src/Module/Admin/Site.php:577 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:585 +#: src/Module/Admin/Site.php:578 msgid "Decoupled receiver" msgstr "Entkoppelter Empfänger" -#: src/Module/Admin/Site.php:585 +#: src/Module/Admin/Site.php:578 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:586 +#: src/Module/Admin/Site.php:579 msgid "Cron interval" msgstr "Cron Intervall" -#: src/Module/Admin/Site.php:586 +#: src/Module/Admin/Site.php:579 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:587 +#: src/Module/Admin/Site.php:580 msgid "Worker defer limit" msgstr "Worker-Verzögerungsgrenze" -#: src/Module/Admin/Site.php:587 +#: src/Module/Admin/Site.php:580 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:588 +#: src/Module/Admin/Site.php:581 msgid "Worker fetch limit" msgstr "Worker Abrufbegrenzung" -#: src/Module/Admin/Site.php:588 +#: src/Module/Admin/Site.php:581 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" @@ -5530,214 +5529,214 @@ 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:590 +#: src/Module/Admin/Site.php:583 msgid "Direct relay transfer" msgstr "Direkte Relais-Übertragung" -#: src/Module/Admin/Site.php:590 +#: src/Module/Admin/Site.php:583 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:591 +#: src/Module/Admin/Site.php:584 msgid "Relay scope" msgstr "Geltungsbereich des Relais" -#: src/Module/Admin/Site.php:591 +#: src/Module/Admin/Site.php:584 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:591 src/Module/Contact/Profile.php:328 -#: src/Module/Settings/TwoFactor/Index.php:146 +#: src/Module/Admin/Site.php:584 src/Module/Contact/Profile.php:314 +#: src/Module/Settings/TwoFactor/Index.php:132 msgid "Disabled" msgstr "Deaktiviert" -#: src/Module/Admin/Site.php:591 +#: src/Module/Admin/Site.php:584 msgid "all" msgstr "Alle" -#: src/Module/Admin/Site.php:591 +#: src/Module/Admin/Site.php:584 msgid "tags" msgstr "Schlagwörter" -#: src/Module/Admin/Site.php:592 +#: src/Module/Admin/Site.php:585 msgid "Server tags" msgstr "Server-Schlagworte" -#: src/Module/Admin/Site.php:592 +#: src/Module/Admin/Site.php:585 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:593 +#: src/Module/Admin/Site.php:586 msgid "Deny Server tags" msgstr "Server Tags ablehnen" -#: src/Module/Admin/Site.php:593 +#: src/Module/Admin/Site.php:586 msgid "Comma separated list of tags that are rejected." msgstr "Durch Kommas getrennte Liste der Tags, die abgelehnt werden" -#: src/Module/Admin/Site.php:594 +#: src/Module/Admin/Site.php:587 msgid "Maximum amount of tags" msgstr "Maximale Anzahl an Tags" -#: src/Module/Admin/Site.php:594 +#: src/Module/Admin/Site.php:587 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 "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:595 +#: src/Module/Admin/Site.php:588 msgid "Allow user tags" msgstr "Verwende Schlagworte der Nutzer" -#: src/Module/Admin/Site.php:595 +#: src/Module/Admin/Site.php:588 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:596 +#: src/Module/Admin/Site.php:589 msgid "Deny undetected languages" msgstr "Nicht erkannte Sprachen ablehnen" -#: src/Module/Admin/Site.php:596 +#: src/Module/Admin/Site.php:589 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:597 +#: src/Module/Admin/Site.php:590 msgid "Language Quality" msgstr "Sprachqualität" -#: src/Module/Admin/Site.php:597 +#: src/Module/Admin/Site.php:590 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:598 +#: src/Module/Admin/Site.php:591 msgid "Number of languages for the language detection" msgstr "Anzahl der Sprachen für die Spracherkennung" -#: src/Module/Admin/Site.php:598 +#: src/Module/Admin/Site.php:591 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:600 +#: src/Module/Admin/Site.php:593 msgid "Maximum age of channel" msgstr "Maximales Alter des Kanals" -#: src/Module/Admin/Site.php:600 +#: src/Module/Admin/Site.php:593 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:601 +#: src/Module/Admin/Site.php:594 msgid "Maximum number of channel posts" msgstr "Maximale Anzahl von Kanalbeiträgen" -#: src/Module/Admin/Site.php:601 +#: src/Module/Admin/Site.php:594 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:602 +#: src/Module/Admin/Site.php:595 msgid "Interaction score days" msgstr "Interaktionsscore Tage" -#: src/Module/Admin/Site.php:602 +#: src/Module/Admin/Site.php:595 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:603 +#: src/Module/Admin/Site.php:596 msgid "Maximum number of posts per author" msgstr "Maximale Anzahl von Beiträgen pro Autor" -#: src/Module/Admin/Site.php:603 +#: src/Module/Admin/Site.php:596 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:604 +#: src/Module/Admin/Site.php:597 msgid "Sharer interaction days" msgstr "Interaktionstage für teilende" -#: src/Module/Admin/Site.php:604 +#: src/Module/Admin/Site.php:597 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:607 +#: src/Module/Admin/Site.php:600 msgid "Start Relocation" msgstr "Umsiedlung starten" -#: src/Module/Admin/Storage.php:46 +#: src/Module/Admin/Storage.php:32 #, php-format msgid "Storage backend, %s is invalid." msgstr "Speicher-Backend, %s ist ungültig." -#: src/Module/Admin/Storage.php:73 +#: src/Module/Admin/Storage.php:59 #, php-format msgid "Storage backend %s error: %s" msgstr "Speicher-Backend %s Fehler %s" -#: src/Module/Admin/Storage.php:84 src/Module/Admin/Storage.php:87 +#: src/Module/Admin/Storage.php:70 src/Module/Admin/Storage.php:73 msgid "Invalid storage backend setting value." msgstr "Ungültige Einstellung für das Datenspeicher-Backend" -#: src/Module/Admin/Storage.php:139 +#: src/Module/Admin/Storage.php:125 msgid "Current Storage Backend" msgstr "Aktuelles Speicher-Backend" -#: src/Module/Admin/Storage.php:140 +#: src/Module/Admin/Storage.php:126 msgid "Storage Configuration" msgstr "Speicher Konfiguration" -#: src/Module/Admin/Storage.php:141 src/Module/BaseAdmin.php:91 +#: src/Module/Admin/Storage.php:127 src/Module/BaseAdmin.php:77 msgid "Storage" msgstr "Speicher" -#: src/Module/Admin/Storage.php:143 +#: src/Module/Admin/Storage.php:129 msgid "Save & Use storage backend" msgstr "Speichern & Dieses Speicher-Backend verwenden" -#: src/Module/Admin/Storage.php:144 +#: src/Module/Admin/Storage.php:130 msgid "Use storage backend" msgstr "Dieses Speicher-Backend verwenden" -#: src/Module/Admin/Storage.php:145 +#: src/Module/Admin/Storage.php:131 msgid "Save & Reload" msgstr "Speichern & Neu Laden" -#: src/Module/Admin/Storage.php:146 +#: src/Module/Admin/Storage.php:132 msgid "This backend doesn't have custom settings" msgstr "Dieses Backend hat keine zusätzlichen Einstellungen" -#: src/Module/Admin/Storage.php:148 +#: src/Module/Admin/Storage.php:134 msgid "" "Changing the current backend is prohibited because it is set by an " "environment variable" msgstr "Das Ändern des aktuellen Backends ist nicht möglich, da es durch eine Umgebungsvariable festgelegt ist" -#: src/Module/Admin/Storage.php:150 +#: src/Module/Admin/Storage.php:136 msgid "Database (legacy)" msgstr "Datenbank (legacy)" -#: src/Module/Admin/Summary.php:55 +#: src/Module/Admin/Summary.php:41 #, php-format msgid "Template engine (%s) error: %s" msgstr "Template engine (%s) Fehler: %s" -#: src/Module/Admin/Summary.php:59 +#: src/Module/Admin/Summary.php:45 #, php-format msgid "" "Your DB still runs with MyISAM tables. You should change the engine type to " @@ -5748,7 +5747,7 @@ msgid "" " an automatic conversion.
" msgstr "Deine DB verwendet derzeit noch MyISAM Tabellen. Du solltest die Datenbank Engine auf InnoDB umstellen, da Friendica in Zukunft InnoDB-Features verwenden wird. Eine Anleitung zur Umstellung der Datenbank kannst du hier finden. Du kannst außerdem mit dem Befehl php bin/console.php dbstructure toinnodb auf der Kommandozeile die Umstellung automatisch vornehmen lassen." -#: src/Module/Admin/Summary.php:64 +#: src/Module/Admin/Summary.php:50 #, php-format msgid "" "Your DB still runs with InnoDB tables in the Antelope file format. You " @@ -5759,7 +5758,7 @@ msgid "" " installation for an automatic conversion.
" msgstr "Deine DB verwendet derzeit noch InnoDB Tabellen im Antelope Dateiformat. Du solltest diese auf das Barracuda Format ändern. Friendica verwendet einige Features, die nicht vom Antelope Format unterstützt werden. Hier findest du eine Anleitung für die Umstellung. Alternativ kannst du auch den Befehl php bin/console.php dbstructure toinnodb In der Kommandozeile deiner Friendica Instanz verwenden um die Formate automatisch anzupassen.
" -#: src/Module/Admin/Summary.php:74 +#: src/Module/Admin/Summary.php:60 #, php-format msgid "" "Your table_definition_cache is too low (%d). This can lead to the database " @@ -5767,46 +5766,46 @@ msgid "" " to %d. See here for more information.
" msgstr "Der Wert table_definition_cache ist zu niedrig (%d). Dadurch können Datenbank Fehler \"Prepared statement needs to be re-prepared\" hervor gerufen werden. Bitte setze den Wert auf mindestens %d. Weiterführende Informationen findest du hier." -#: src/Module/Admin/Summary.php:85 +#: src/Module/Admin/Summary.php:71 #, php-format msgid "" "There is a new version of Friendica available for download. Your current " "version is %1$s, upstream version is %2$s" msgstr "Es gibt eine neue Version von Friendica. Du verwendest derzeit die Version %1$s, die aktuelle Version ist %2$s." -#: src/Module/Admin/Summary.php:94 +#: src/Module/Admin/Summary.php:80 msgid "" "The database update failed. Please run \"php bin/console.php dbstructure " "update\" from the command line and have a look at the errors that might " "appear." msgstr "Das Update der Datenbank ist fehlgeschlagen. Bitte führe 'php bin/console.php dbstructure update' in der Kommandozeile aus und achte auf eventuell auftretende Fehlermeldungen." -#: src/Module/Admin/Summary.php:98 +#: src/Module/Admin/Summary.php:84 msgid "" "The last update failed. Please run \"php bin/console.php dbstructure " "update\" from the command line and have a look at the errors that might " "appear. (Some of the errors are possibly inside the logfile.)" msgstr "Das letzte Update ist fehlgeschlagen. Bitte führe \"php bin/console.php dbstructure update\" auf der Kommandozeile aus und werfe einen Blick auf eventuell auftretende Fehler. (Zusätzliche Informationen zu Fehlern könnten in den Logdateien stehen.)" -#: src/Module/Admin/Summary.php:102 +#: src/Module/Admin/Summary.php:88 msgid "" "The system.url entry is missing. This is a low level setting and can lead to" " unexpected behavior. Please add a valid entry as soon as possible in the " "config file or per console command!" msgstr "Der Eintrag system.url fehlt. Dies ist eine Einstellung auf niedriger Ebene und kann zu unerwartetem Verhalten führen. Bitt füge so bald wie möglich einen gültigen Eintrag in der Konfigurationsdatei oder per Konsolenbefehl hinzu!" -#: src/Module/Admin/Summary.php:107 +#: src/Module/Admin/Summary.php:93 msgid "The worker was never executed. Please check your database structure!" msgstr "Der Hintergrundprozess (worker) wurde noch nie gestartet. Bitte überprüfe deine Datenbankstruktur." -#: src/Module/Admin/Summary.php:109 +#: src/Module/Admin/Summary.php:95 #, php-format msgid "" "The last worker execution was on %s UTC. This is older than one hour. Please" " check your crontab settings." msgstr "Der Hintergrundprozess (worker) wurde zuletzt um %s UTC ausgeführt. Das war vor mehr als einer Stunde. Bitte überprüfe deine crontab-Einstellungen." -#: src/Module/Admin/Summary.php:114 +#: src/Module/Admin/Summary.php:100 #, php-format msgid "" "Friendica's configuration now is stored in config/local.config.php, please " @@ -5815,7 +5814,7 @@ msgid "" "help with the transition." msgstr "Die Konfiguration von Friendica befindet sich ab jetzt in der 'config/local.config.php' Datei. Kopiere bitte die Datei 'config/local-sample.config.php' nach 'config/local.config.php' und setze die Konfigurationvariablen so wie in der alten .htconfig.php. Wie die Übertragung der Werte aussehen muss, kannst du der Konfiguration Hilfeseite entnehmen." -#: src/Module/Admin/Summary.php:118 +#: src/Module/Admin/Summary.php:104 #, php-format msgid "" "Friendica's configuration now is stored in config/local.config.php, please " @@ -5824,7 +5823,7 @@ msgid "" "page for help with the transition." msgstr "Die Konfiguration von Friendica befindet sich ab jetzt in der 'config/local.config.php' Datei. Kopiere bitte die Datei 'config/local-sample.config.php' nach 'config/local.config.php' und setze die Konfigurationvariablen so wie in der alten config/local.ini.php. Wie die Übertragung der Werte aussehen muss, kannst du der Konfiguration Hilfeseite entnehmen." -#: src/Module/Admin/Summary.php:124 +#: src/Module/Admin/Summary.php:110 #, php-format msgid "" "%s is not reachable on your system. This is a severe " @@ -5832,107 +5831,107 @@ msgid "" "href=\"%s\">the installation page for help." msgstr "%s konnte von deinem System nicht aufgerufen werden. Dies deutet auf ein schwerwiegendes Problem deiner Konfiguration hin. Bitte konsultiere die Installations-Dokumentation zum Beheben des Problems." -#: src/Module/Admin/Summary.php:148 +#: src/Module/Admin/Summary.php:134 #, php-format msgid "" "Friendica's system.basepath was updated from '%s' to '%s'. Please remove the" " system.basepath from your db to avoid differences." msgstr "Friendica's system.basepath wurde aktualisiert '%s' von '%s'. Bitte entferne system.basepath aus der Datenbank um Unterschiede zu vermeiden." -#: src/Module/Admin/Summary.php:156 +#: src/Module/Admin/Summary.php:142 #, php-format msgid "" "Friendica's current system.basepath '%s' is wrong and the config file '%s' " "isn't used." msgstr "Friendica's aktueller system.basepath '%s' ist verkehrt und die config file '%s' wird nicht benutzt." -#: src/Module/Admin/Summary.php:164 +#: src/Module/Admin/Summary.php:150 #, php-format msgid "" "Friendica's current system.basepath '%s' is not equal to the config file " "'%s'. Please fix your configuration." msgstr "Friendica's aktueller system.basepath '%s' ist nicht gleich wie die config file '%s'. Bitte korrigiere deine Konfiguration." -#: src/Module/Admin/Summary.php:175 +#: src/Module/Admin/Summary.php:161 msgid "Message queues" msgstr "Nachrichten-Warteschlangen" -#: src/Module/Admin/Summary.php:181 +#: src/Module/Admin/Summary.php:167 msgid "Server Settings" msgstr "Servereinstellungen" -#: src/Module/Admin/Summary.php:199 +#: src/Module/Admin/Summary.php:185 msgid "Version" msgstr "Version" -#: src/Module/Admin/Summary.php:203 +#: src/Module/Admin/Summary.php:189 msgid "Active addons" msgstr "Aktivierte Addons" -#: src/Module/Admin/Themes/Details.php:63 src/Module/Admin/Themes/Index.php:71 +#: src/Module/Admin/Themes/Details.php:49 src/Module/Admin/Themes/Index.php:57 #, php-format msgid "Theme %s disabled." msgstr "Theme %s deaktiviert." -#: src/Module/Admin/Themes/Details.php:65 src/Module/Admin/Themes/Index.php:73 +#: src/Module/Admin/Themes/Details.php:51 src/Module/Admin/Themes/Index.php:59 #, php-format msgid "Theme %s successfully enabled." msgstr "Theme %s erfolgreich aktiviert." -#: src/Module/Admin/Themes/Details.php:67 src/Module/Admin/Themes/Index.php:75 +#: src/Module/Admin/Themes/Details.php:53 src/Module/Admin/Themes/Index.php:61 #, php-format msgid "Theme %s failed to install." msgstr "Theme %s konnte nicht aktiviert werden." -#: src/Module/Admin/Themes/Details.php:89 +#: src/Module/Admin/Themes/Details.php:75 msgid "Screenshot" msgstr "Bildschirmfoto" -#: src/Module/Admin/Themes/Details.php:97 -#: src/Module/Admin/Themes/Index.php:118 src/Module/BaseAdmin.php:93 +#: src/Module/Admin/Themes/Details.php:83 +#: src/Module/Admin/Themes/Index.php:104 src/Module/BaseAdmin.php:79 msgid "Themes" msgstr "Themen" -#: src/Module/Admin/Themes/Embed.php:80 +#: src/Module/Admin/Themes/Embed.php:66 msgid "Unknown theme." msgstr "Unbekanntes Theme" -#: src/Module/Admin/Themes/Index.php:57 +#: src/Module/Admin/Themes/Index.php:43 msgid "Themes reloaded" msgstr "Themes wurden neu geladen" -#: src/Module/Admin/Themes/Index.php:120 +#: src/Module/Admin/Themes/Index.php:106 msgid "Reload active themes" msgstr "Aktives Theme neu laden" -#: src/Module/Admin/Themes/Index.php:124 +#: src/Module/Admin/Themes/Index.php:110 #, php-format msgid "No themes found on the system. They should be placed in %1$s" msgstr "Es wurden keine Themes auf dem System gefunden. Diese sollten in %1$s platziert werden." -#: src/Module/Admin/Themes/Index.php:125 +#: src/Module/Admin/Themes/Index.php:111 msgid "[Experimental]" msgstr "[Experimentell]" -#: src/Module/Admin/Themes/Index.php:126 +#: src/Module/Admin/Themes/Index.php:112 msgid "[Unsupported]" msgstr "[Nicht unterstützt]" -#: src/Module/Admin/Tos.php:79 +#: src/Module/Admin/Tos.php:65 msgid "Display Terms of Service" msgstr "Nutzungsbedingungen anzeigen" -#: src/Module/Admin/Tos.php:79 +#: src/Module/Admin/Tos.php:65 msgid "" "Enable the Terms of Service page. If this is enabled a link to the terms " "will be added to the registration form and the general information page." msgstr "Aktiviert die Seite für die Nutzungsbedingungen. Ist dies der Fall, werden sie auch von der Registrierungsseite und der allgemeinen Informationsseite verlinkt." -#: src/Module/Admin/Tos.php:80 +#: src/Module/Admin/Tos.php:66 msgid "Display Privacy Statement" msgstr "Datenschutzerklärung anzeigen" -#: src/Module/Admin/Tos.php:80 +#: src/Module/Admin/Tos.php:66 #, php-format msgid "" "Show some informations regarding the needed information to operate the node " @@ -5940,167 +5939,167 @@ msgid "" "noreferrer\">EU-GDPR." msgstr "Zeige Informationen über die zum Betrieb der Seite notwendigen, personenbezogenen Daten an, wie es z.B. die EU.-DSGVO verlangt." -#: src/Module/Admin/Tos.php:81 +#: src/Module/Admin/Tos.php:67 msgid "Privacy Statement Preview" msgstr "Vorschau: Datenschutzerklärung" -#: src/Module/Admin/Tos.php:83 +#: src/Module/Admin/Tos.php:69 msgid "The Terms of Service" msgstr "Die Nutzungsbedingungen" -#: src/Module/Admin/Tos.php:83 +#: src/Module/Admin/Tos.php:69 msgid "" "Enter the Terms of Service for your node here. You can use BBCode. Headers " "of sections should be [h2] and below." msgstr "Füge hier die Nutzungsbedingungen deines Knotens ein. Du kannst BBCode zur Formatierung verwenden. Überschriften sollten [h2] oder darunter sein." -#: src/Module/Admin/Tos.php:84 +#: src/Module/Admin/Tos.php:70 msgid "The rules" msgstr "Die Regeln" -#: src/Module/Admin/Tos.php:84 +#: src/Module/Admin/Tos.php:70 msgid "Enter your system rules here. Each line represents one rule." msgstr "Gib die Regeln deines Server hier ein. Jede Zeile steht für eine Regel." -#: src/Module/Api/ApiResponse.php:293 +#: src/Module/Api/ApiResponse.php:279 #, php-format msgid "API endpoint %s %s is not implemented but might be in the future." msgstr "API Endpunkt %s %s ist noch nicht implementiert, vielleicht in der Zukunft." -#: src/Module/Api/Mastodon/Apps.php:73 +#: src/Module/Api/Mastodon/Apps.php:59 msgid "Missing parameters" msgstr "Fehlende Parameter" -#: src/Module/Api/Mastodon/Statuses/Bookmark.php:50 +#: src/Module/Api/Mastodon/Statuses/Bookmark.php:36 msgid "Only starting posts can be bookmarked" msgstr "Lesezeichen können nur für den ersten Beitrag einer Unterhaltung angelegt werden" -#: src/Module/Api/Mastodon/Statuses/Mute.php:51 +#: src/Module/Api/Mastodon/Statuses/Mute.php:37 msgid "Only starting posts can be muted" msgstr "Nur die ersten Beiträge von Unterhaltungen können stumm geschaltet werden" -#: src/Module/Api/Mastodon/Statuses/Reblog.php:58 +#: src/Module/Api/Mastodon/Statuses/Reblog.php:44 #, php-format msgid "Posts from %s can't be shared" msgstr "Beiträge von %s können nicht geteilt werden" -#: src/Module/Api/Mastodon/Statuses/Unbookmark.php:51 +#: src/Module/Api/Mastodon/Statuses/Unbookmark.php:37 msgid "Only starting posts can be unbookmarked" msgstr "Lesezeichen können nur für die ersten Beiträge einer Unterhaltung entfernt werden" -#: src/Module/Api/Mastodon/Statuses/Unmute.php:51 +#: src/Module/Api/Mastodon/Statuses/Unmute.php:37 msgid "Only starting posts can be unmuted" msgstr "Nur die ersten Beiträge einer Unterhaltung können wieder auf laut gestellt werden" -#: src/Module/Api/Mastodon/Statuses/Unreblog.php:64 +#: src/Module/Api/Mastodon/Statuses/Unreblog.php:50 #, php-format msgid "Posts from %s can't be unshared" msgstr "Beiträge von %s können nicht ungeteilt werden" -#: src/Module/Api/Twitter/ContactEndpoint.php:66 +#: src/Module/Api/Twitter/ContactEndpoint.php:52 msgid "Contact not found" msgstr "Kontakt nicht gefunden" -#: src/Module/Apps.php:62 +#: src/Module/Apps.php:48 msgid "No installed applications." msgstr "Keine Applikationen installiert." -#: src/Module/Apps.php:67 +#: src/Module/Apps.php:53 msgid "Applications" msgstr "Anwendungen" -#: src/Module/Attach.php:49 src/Module/Attach.php:61 +#: src/Module/Attach.php:35 src/Module/Attach.php:47 msgid "Item was not found." msgstr "Beitrag konnte nicht gefunden werden." -#: src/Module/BaseAdmin.php:54 src/Module/BaseAdmin.php:58 -#: src/Module/BaseModeration.php:77 src/Module/BaseModeration.php:81 +#: src/Module/BaseAdmin.php:40 src/Module/BaseAdmin.php:44 +#: src/Module/BaseModeration.php:63 src/Module/BaseModeration.php:67 msgid "Please login to continue." msgstr "Bitte melde dich an, um fortzufahren." -#: src/Module/BaseAdmin.php:63 +#: src/Module/BaseAdmin.php:49 msgid "You don't have access to administration pages." msgstr "Du hast keinen Zugriff auf die Administrationsseiten." -#: src/Module/BaseAdmin.php:67 +#: src/Module/BaseAdmin.php:53 msgid "" "Submanaged account can't access the administration pages. Please log back in" " as the main account." msgstr "Verwaltete Benutzerkonten haben keinen Zugriff auf die Administrationsseiten. Bitte wechsle wieder zurück auf das Administrator Konto." -#: src/Module/BaseAdmin.php:86 src/Module/BaseModeration.php:109 +#: src/Module/BaseAdmin.php:72 src/Module/BaseModeration.php:95 msgid "Overview" msgstr "Übersicht" -#: src/Module/BaseAdmin.php:89 src/Module/BaseModeration.php:112 +#: src/Module/BaseAdmin.php:75 src/Module/BaseModeration.php:98 msgid "Configuration" msgstr "Konfiguration" -#: src/Module/BaseAdmin.php:94 src/Module/BaseSettings.php:110 +#: src/Module/BaseAdmin.php:80 src/Module/BaseSettings.php:96 msgid "Additional features" msgstr "Zusätzliche Features" -#: src/Module/BaseAdmin.php:97 +#: src/Module/BaseAdmin.php:83 msgid "Database" msgstr "Datenbank" -#: src/Module/BaseAdmin.php:98 +#: src/Module/BaseAdmin.php:84 msgid "DB updates" msgstr "DB Updates" -#: src/Module/BaseAdmin.php:99 +#: src/Module/BaseAdmin.php:85 msgid "Inspect Deferred Workers" msgstr "Verzögerte Worker inspizieren" -#: src/Module/BaseAdmin.php:100 +#: src/Module/BaseAdmin.php:86 msgid "Inspect worker Queue" msgstr "Worker Warteschlange inspizieren" -#: src/Module/BaseAdmin.php:106 src/Module/BaseModeration.php:120 +#: src/Module/BaseAdmin.php:92 src/Module/BaseModeration.php:106 msgid "Diagnostics" msgstr "Diagnostik" -#: src/Module/BaseAdmin.php:107 +#: src/Module/BaseAdmin.php:93 msgid "PHP Info" msgstr "PHP-Info" -#: src/Module/BaseAdmin.php:108 +#: src/Module/BaseAdmin.php:94 msgid "probe address" msgstr "Adresse untersuchen" -#: src/Module/BaseAdmin.php:109 +#: src/Module/BaseAdmin.php:95 msgid "check webfinger" msgstr "Webfinger überprüfen" -#: src/Module/BaseAdmin.php:110 +#: src/Module/BaseAdmin.php:96 msgid "Babel" msgstr "Babel" -#: src/Module/BaseAdmin.php:111 src/Module/Debug/ActivityPubConversion.php:143 +#: src/Module/BaseAdmin.php:97 src/Module/Debug/ActivityPubConversion.php:129 msgid "ActivityPub Conversion" msgstr "Umwandlung nach ActivityPub" -#: src/Module/BaseAdmin.php:120 +#: src/Module/BaseAdmin.php:106 msgid "Addon Features" msgstr "Addon Features" -#: src/Module/BaseAdmin.php:121 src/Module/BaseModeration.php:129 +#: src/Module/BaseAdmin.php:107 src/Module/BaseModeration.php:115 msgid "User registrations waiting for confirmation" msgstr "Nutzeranmeldungen, die auf Bestätigung warten" -#: src/Module/BaseApi.php:455 src/Module/BaseApi.php:471 -#: src/Module/BaseApi.php:487 +#: src/Module/BaseApi.php:441 src/Module/BaseApi.php:457 +#: src/Module/BaseApi.php:473 msgid "Too Many Requests" msgstr "Zu viele Abfragen" -#: src/Module/BaseApi.php:456 +#: src/Module/BaseApi.php:442 #, php-format msgid "Daily posting limit of %d post reached. The post was rejected." msgid_plural "Daily posting limit of %d posts reached. The post was rejected." msgstr[0] "Das tägliche Limit von %d Beitrag wurde erreicht. Die Nachricht wurde verworfen." msgstr[1] "Das tägliche Limit von %d Beiträgen wurde erreicht. Der Beitrag wurde verworfen." -#: src/Module/BaseApi.php:472 +#: src/Module/BaseApi.php:458 #, php-format msgid "Weekly posting limit of %d post reached. The post was rejected." msgid_plural "" @@ -6108,7 +6107,7 @@ msgid_plural "" msgstr[0] "Das wöchentliche Limit von %d Beitrag wurde erreicht. Die Nachricht wurde verworfen." msgstr[1] "Das wöchentliche Limit von %d Beiträgen wurde erreicht. Der Beitrag wurde verworfen." -#: src/Module/BaseApi.php:488 +#: src/Module/BaseApi.php:474 #, php-format msgid "Monthly posting limit of %d post reached. The post was rejected." msgid_plural "" @@ -6116,84 +6115,84 @@ msgid_plural "" msgstr[0] "Das monatliche Limit von %d Beitrag wurde erreicht. Der Beitrag wurde verworfen." msgstr[1] "Das monatliche Limit von %d Beiträgen wurde erreicht. Der Beitrag wurde verworfen." -#: src/Module/BaseModeration.php:86 +#: src/Module/BaseModeration.php:72 msgid "You don't have access to moderation pages." msgstr "Du hast keinen Zugriff zu den Moderationsseiten." -#: src/Module/BaseModeration.php:90 +#: src/Module/BaseModeration.php:76 msgid "" "Submanaged account can't access the moderation pages. Please log back in as " "the main account." msgstr "Das verwaltete Konto kann nicht auf die Moderationsseiten zugreifen. Bitte melde dich wieder mit dem Hauptkonto an." -#: src/Module/BaseModeration.php:110 src/Module/Moderation/Reports.php:115 +#: src/Module/BaseModeration.php:96 src/Module/Moderation/Reports.php:101 msgid "Reports" msgstr "Reports" -#: src/Module/BaseModeration.php:113 src/Module/Moderation/Users/Index.php:148 -#: src/Module/Moderation/Users/Index.php:158 +#: src/Module/BaseModeration.php:99 src/Module/Moderation/Users/Index.php:134 +#: src/Module/Moderation/Users/Index.php:144 msgid "Users" msgstr "Nutzer" -#: src/Module/BaseModeration.php:115 +#: src/Module/BaseModeration.php:101 msgid "Tools" msgstr "Werkzeuge" -#: src/Module/BaseModeration.php:116 +#: src/Module/BaseModeration.php:102 msgid "Contact Blocklist" msgstr "Kontakt Blockliste" -#: src/Module/BaseModeration.php:117 +#: src/Module/BaseModeration.php:103 msgid "Server Blocklist" msgstr "Server Blockliste" -#: src/Module/BaseModeration.php:118 src/Module/Moderation/Item/Delete.php:62 +#: src/Module/BaseModeration.php:104 src/Module/Moderation/Item/Delete.php:48 msgid "Delete Item" msgstr "Eintrag löschen" -#: src/Module/BaseModeration.php:121 src/Module/Moderation/Item/Source.php:82 +#: src/Module/BaseModeration.php:107 src/Module/Moderation/Item/Source.php:68 msgid "Item Source" msgstr "Beitrags Quelle" -#: src/Module/BaseProfile.php:52 src/Module/Contact.php:513 +#: src/Module/BaseProfile.php:38 src/Module/Contact.php:488 msgid "Profile Details" msgstr "Profildetails" -#: src/Module/BaseProfile.php:60 +#: src/Module/BaseProfile.php:46 msgid "Conversations started" msgstr "Begonnene Unterhaltungen" -#: src/Module/BaseProfile.php:111 +#: src/Module/BaseProfile.php:97 msgid "Only You Can See This" msgstr "Nur du kannst das sehen" -#: src/Module/BaseProfile.php:116 src/Module/Profile/Schedule.php:81 +#: src/Module/BaseProfile.php:102 src/Module/Profile/Schedule.php:67 msgid "Scheduled Posts" msgstr "Geplante Beiträge" -#: src/Module/BaseProfile.php:119 +#: src/Module/BaseProfile.php:105 msgid "Posts that are scheduled for publishing" msgstr "Beiträge die für einen späteren Zeitpunkt für die Veröffentlichung geplant sind" -#: src/Module/BaseProfile.php:138 src/Module/BaseProfile.php:141 +#: src/Module/BaseProfile.php:124 src/Module/BaseProfile.php:127 msgid "Tips for New Members" msgstr "Tipps für neue Nutzer" -#: src/Module/BaseSearch.php:71 +#: src/Module/BaseSearch.php:57 #, php-format msgid "People Search - %s" msgstr "Personensuche - %s" -#: src/Module/BaseSearch.php:75 +#: src/Module/BaseSearch.php:61 #, php-format msgid "Group Search - %s" msgstr "Gruppensuche - %s" -#: src/Module/BaseSearch.php:121 src/Module/Contact/MatchInterests.php:140 +#: src/Module/BaseSearch.php:107 src/Module/Contact/MatchInterests.php:136 msgid "No matches" msgstr "Keine Übereinstimmungen" -#: src/Module/BaseSearch.php:147 +#: src/Module/BaseSearch.php:133 #, php-format msgid "" "%d result was filtered out because your node blocks the domain it is " @@ -6206,832 +6205,828 @@ msgid_plural "" msgstr[0] "%d Ergebnis wurde herausgefiltert, weil Ihr Knoten die Domäne blockiert, auf der das Ergebnis registriert ist. Sie können die Liste aller Domänen, die Ihr Knoten derzeit blockiert, auf der Info-Seite einsehen." msgstr[1] "%d Ergebnisse wurden herausgefiltert, weil Ihr Knoten die Domäne blockiert, auf der die Ergebnisse registriert sind. Du kannst die Liste aller Domänen, die Ihr Knoten derzeit blockiert, auf derInfo-Seite einsehen." -#: src/Module/BaseSettings.php:78 +#: src/Module/BaseSettings.php:64 msgid "Account" msgstr "Nutzerkonto" -#: src/Module/BaseSettings.php:85 src/Module/Security/TwoFactor/Verify.php:96 -#: src/Module/Settings/TwoFactor/Index.php:138 +#: src/Module/BaseSettings.php:71 src/Module/Security/TwoFactor/Verify.php:82 +#: src/Module/Settings/TwoFactor/Index.php:124 msgid "Two-factor authentication" msgstr "Zwei-Faktor Authentifizierung" -#: src/Module/BaseSettings.php:118 +#: src/Module/BaseSettings.php:104 msgid "Display" msgstr "Anzeige" -#: src/Module/BaseSettings.php:132 src/Module/Settings/Connectors.php:213 +#: src/Module/BaseSettings.php:118 src/Module/Settings/Connectors.php:195 msgid "Social Networks" msgstr "Soziale Netzwerke" -#: src/Module/BaseSettings.php:146 src/Module/Settings/Delegation.php:194 +#: src/Module/BaseSettings.php:132 src/Module/Settings/Delegation.php:180 msgid "Manage Accounts" msgstr "Accounts Verwalten" -#: src/Module/BaseSettings.php:153 +#: src/Module/BaseSettings.php:139 msgid "Connected apps" msgstr "Verbundene Programme" -#: src/Module/BaseSettings.php:160 +#: src/Module/BaseSettings.php:146 msgid "Remote servers" msgstr "Remote Instanzen" -#: src/Module/BaseSettings.php:167 src/Module/Settings/UserExport.php:98 +#: src/Module/BaseSettings.php:153 src/Module/Settings/UserExport.php:84 msgid "Export personal data" msgstr "Persönliche Daten exportieren" -#: src/Module/BaseSettings.php:174 +#: src/Module/BaseSettings.php:160 msgid "Remove account" msgstr "Konto löschen" -#: src/Module/Bookmarklet.php:54 +#: src/Module/Bookmarklet.php:40 msgid "This page is missing a url parameter." msgstr "Der Seite fehlt ein URL Parameter." -#: src/Module/Bookmarklet.php:66 +#: src/Module/Bookmarklet.php:52 msgid "The post was created" msgstr "Der Beitrag wurde angelegt" -#: src/Module/Calendar/Event/API.php:100 src/Module/Calendar/Event/API.php:135 -#: src/Module/Calendar/Event/Form.php:80 +#: src/Module/Calendar/Event/API.php:86 src/Module/Calendar/Event/API.php:121 +#: src/Module/Calendar/Event/Form.php:66 msgid "Invalid Request" msgstr "Ungültige Anfrage" -#: src/Module/Calendar/Event/API.php:109 +#: src/Module/Calendar/Event/API.php:95 msgid "Event id is missing." msgstr "Die Veranstaltung fehlt." -#: src/Module/Calendar/Event/API.php:131 +#: src/Module/Calendar/Event/API.php:117 msgid "Failed to remove event" msgstr "Entfernen der Veranstaltung fehlgeschlagen" -#: src/Module/Calendar/Event/API.php:187 src/Module/Calendar/Event/API.php:189 +#: src/Module/Calendar/Event/API.php:173 src/Module/Calendar/Event/API.php:175 msgid "Event can not end before it has started." msgstr "Die Veranstaltung kann nicht enden, bevor sie beginnt." -#: src/Module/Calendar/Event/API.php:196 src/Module/Calendar/Event/API.php:198 +#: src/Module/Calendar/Event/API.php:182 src/Module/Calendar/Event/API.php:184 msgid "Event title and start time are required." msgstr "Der Veranstaltungstitel und die Anfangszeit müssen angegeben werden." -#: src/Module/Calendar/Event/Form.php:208 +#: src/Module/Calendar/Event/Form.php:194 msgid "Starting date and Title are required." msgstr "Anfangszeitpunkt und Titel werden benötigt" -#: src/Module/Calendar/Event/Form.php:209 -#: src/Module/Calendar/Event/Form.php:214 +#: src/Module/Calendar/Event/Form.php:195 +#: src/Module/Calendar/Event/Form.php:200 msgid "Event Starts:" msgstr "Veranstaltungsbeginn:" -#: src/Module/Calendar/Event/Form.php:209 -#: src/Module/Calendar/Event/Form.php:237 src/Module/Debug/Probe.php:59 -#: src/Module/Install.php:201 src/Module/Install.php:227 -#: src/Module/Install.php:232 src/Module/Install.php:246 -#: src/Module/Install.php:255 src/Module/Install.php:260 -#: src/Module/Install.php:266 src/Module/Install.php:271 -#: src/Module/Install.php:285 src/Module/Install.php:298 -#: src/Module/Install.php:325 -#: src/Module/Moderation/Blocklist/Server/Add.php:136 -#: src/Module/Moderation/Blocklist/Server/Add.php:138 -#: src/Module/Moderation/Blocklist/Server/Import.php:129 -#: src/Module/Moderation/Blocklist/Server/Index.php:86 -#: src/Module/Moderation/Blocklist/Server/Index.php:87 -#: src/Module/Moderation/Blocklist/Server/Index.php:115 -#: src/Module/Moderation/Blocklist/Server/Index.php:116 -#: src/Module/Moderation/Item/Delete.php:67 src/Module/Register.php:155 -#: src/Module/Security/TwoFactor/Verify.php:101 -#: src/Module/Settings/Channels.php:190 src/Module/Settings/Channels.php:211 -#: src/Module/Settings/TwoFactor/Index.php:161 -#: src/Module/Settings/TwoFactor/Verify.php:158 +#: src/Module/Calendar/Event/Form.php:195 +#: src/Module/Calendar/Event/Form.php:223 src/Module/Debug/Probe.php:45 +#: src/Module/Install.php:187 src/Module/Install.php:213 +#: src/Module/Install.php:218 src/Module/Install.php:232 +#: src/Module/Install.php:241 src/Module/Install.php:246 +#: src/Module/Install.php:252 src/Module/Install.php:257 +#: src/Module/Install.php:271 src/Module/Install.php:284 +#: src/Module/Install.php:311 +#: src/Module/Moderation/Blocklist/Server/Add.php:122 +#: src/Module/Moderation/Blocklist/Server/Add.php:124 +#: src/Module/Moderation/Blocklist/Server/Import.php:113 +#: src/Module/Moderation/Blocklist/Server/Index.php:72 +#: src/Module/Moderation/Blocklist/Server/Index.php:73 +#: src/Module/Moderation/Blocklist/Server/Index.php:101 +#: src/Module/Moderation/Blocklist/Server/Index.php:102 +#: src/Module/Moderation/Item/Delete.php:53 src/Module/Register.php:141 +#: src/Module/Security/TwoFactor/Verify.php:87 +#: src/Module/Settings/Channels.php:176 src/Module/Settings/Channels.php:197 +#: src/Module/Settings/TwoFactor/Index.php:147 +#: src/Module/Settings/TwoFactor/Verify.php:144 msgid "Required" msgstr "Benötigt" -#: src/Module/Calendar/Event/Form.php:223 -#: src/Module/Calendar/Event/Form.php:247 +#: src/Module/Calendar/Event/Form.php:209 +#: src/Module/Calendar/Event/Form.php:233 msgid "Finish date/time is not known or not relevant" msgstr "Enddatum/-zeit ist nicht bekannt oder nicht relevant" -#: src/Module/Calendar/Event/Form.php:225 -#: src/Module/Calendar/Event/Form.php:230 +#: src/Module/Calendar/Event/Form.php:211 +#: src/Module/Calendar/Event/Form.php:216 msgid "Event Finishes:" msgstr "Veranstaltungsende:" -#: src/Module/Calendar/Event/Form.php:237 -#: src/Module/Calendar/Event/Form.php:243 +#: src/Module/Calendar/Event/Form.php:223 +#: src/Module/Calendar/Event/Form.php:229 msgid "Title (BBCode not allowed)" msgstr "Titel (BBCode nicht erlaubt)" -#: src/Module/Calendar/Event/Form.php:239 +#: src/Module/Calendar/Event/Form.php:225 msgid "Description (BBCode allowed)" msgstr "Beschreibung (BBCode erlaubt)" -#: src/Module/Calendar/Event/Form.php:241 +#: src/Module/Calendar/Event/Form.php:227 msgid "Location (BBCode not allowed)" msgstr "Ort (BBCode nicht erlaubt)" -#: src/Module/Calendar/Event/Form.php:244 -#: src/Module/Calendar/Event/Form.php:245 +#: src/Module/Calendar/Event/Form.php:230 +#: src/Module/Calendar/Event/Form.php:231 msgid "Share this event" msgstr "Veranstaltung teilen" -#: src/Module/Calendar/Event/Form.php:251 src/Module/Profile/Profile.php:277 +#: src/Module/Calendar/Event/Form.php:237 src/Module/Profile/Profile.php:263 msgid "Basic" msgstr "Allgemein" -#: src/Module/Calendar/Export.php:94 +#: src/Module/Calendar/Export.php:80 msgid "This calendar format is not supported" msgstr "Dieses Kalenderformat wird nicht unterstützt." -#: src/Module/Calendar/Export.php:96 +#: src/Module/Calendar/Export.php:82 msgid "No exportable data found" msgstr "Keine exportierbaren Daten gefunden" -#: src/Module/Calendar/Export.php:113 +#: src/Module/Calendar/Export.php:99 msgid "calendar" msgstr "Kalender" -#: src/Module/Calendar/Show.php:124 +#: src/Module/Calendar/Show.php:110 msgid "Events" msgstr "Veranstaltungen" -#: src/Module/Calendar/Show.php:125 +#: src/Module/Calendar/Show.php:111 msgid "View" msgstr "Ansehen" -#: src/Module/Calendar/Show.php:126 +#: src/Module/Calendar/Show.php:112 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:118 src/Module/Settings/Display.php:283 msgid "list" msgstr "Liste" -#: src/Module/Circle.php:57 +#: src/Module/Circle.php:43 msgid "Could not create circle." msgstr "Der Circle konnte nicht erstellt werden." -#: src/Module/Circle.php:68 src/Module/Circle.php:216 -#: src/Module/Circle.php:240 +#: src/Module/Circle.php:54 src/Module/Circle.php:202 +#: src/Module/Circle.php:226 msgid "Circle not found." msgstr "Circle nicht gefunden." -#: src/Module/Circle.php:74 +#: src/Module/Circle.php:60 msgid "Circle name was not changed." msgstr "Der Name des Circles wurde nicht geändert." -#: src/Module/Circle.php:92 +#: src/Module/Circle.php:78 msgid "Unknown circle." msgstr "Unbekannter Circle." -#: src/Module/Circle.php:98 src/Module/Circle.php:107 -#: src/Module/Contact/Advanced.php:70 src/Module/Contact/Advanced.php:109 -#: src/Module/Contact/Contacts.php:71 src/Module/Contact/Conversations.php:86 -#: src/Module/Contact/Conversations.php:91 -#: src/Module/Contact/Conversations.php:96 src/Module/Contact/Media.php:61 -#: src/Module/Contact/Posts.php:78 src/Module/Contact/Posts.php:83 -#: src/Module/Contact/Posts.php:88 src/Module/Contact/Profile.php:159 -#: src/Module/Contact/Profile.php:164 src/Module/Contact/Profile.php:183 -#: src/Module/Contact/Redir.php:91 src/Module/Contact/Redir.php:145 -#: src/Module/FriendSuggest.php:71 src/Module/FriendSuggest.php:109 +#: src/Module/Circle.php:84 src/Module/Circle.php:93 +#: src/Module/Contact/Advanced.php:56 src/Module/Contact/Advanced.php:95 +#: src/Module/Contact/Contacts.php:57 src/Module/Contact/Conversations.php:72 +#: src/Module/Contact/Conversations.php:77 +#: src/Module/Contact/Conversations.php:82 src/Module/Contact/Media.php:47 +#: src/Module/Contact/Posts.php:64 src/Module/Contact/Posts.php:69 +#: src/Module/Contact/Posts.php:74 src/Module/Contact/Profile.php:145 +#: src/Module/Contact/Profile.php:150 src/Module/Contact/Profile.php:169 +#: src/Module/Contact/Redir.php:77 src/Module/Contact/Redir.php:131 +#: src/Module/FriendSuggest.php:57 src/Module/FriendSuggest.php:95 msgid "Contact not found." msgstr "Kontakt nicht gefunden." -#: src/Module/Circle.php:102 src/Module/Contact/Contacts.php:66 +#: src/Module/Circle.php:88 src/Module/Contact/Contacts.php:52 msgid "Invalid contact." msgstr "Ungültiger Kontakt." -#: src/Module/Circle.php:111 src/Module/Contact/Revoke.php:70 +#: src/Module/Circle.php:97 src/Module/Contact/Revoke.php:56 msgid "Contact is deleted." msgstr "Kontakt wurde gelöscht" -#: src/Module/Circle.php:117 +#: src/Module/Circle.php:103 msgid "Unable to add the contact to the circle." msgstr "Es ist nicht möglich, den Kontakt zum Circle hinzuzufügen." -#: src/Module/Circle.php:120 +#: src/Module/Circle.php:106 msgid "Contact successfully added to circle." msgstr "Der Kontakt wurde erfolgreich dem Circle hinzugefügt." -#: src/Module/Circle.php:124 +#: src/Module/Circle.php:110 msgid "Unable to remove the contact from the circle." msgstr "Es ist nicht möglich, den Kontakt aus dem Circle zu entfernen." -#: src/Module/Circle.php:127 +#: src/Module/Circle.php:113 msgid "Contact successfully removed from circle." msgstr "Kontakt erfolgreich aus dem Circle entfernt." -#: src/Module/Circle.php:131 +#: src/Module/Circle.php:117 msgid "Bad request." msgstr "Ungültige Anfrage." -#: src/Module/Circle.php:172 +#: src/Module/Circle.php:158 msgid "Save Circle" msgstr "Circle speichern" -#: src/Module/Circle.php:173 +#: src/Module/Circle.php:159 msgid "Filter" msgstr "Filter" -#: src/Module/Circle.php:179 +#: src/Module/Circle.php:165 msgid "Create a circle of contacts/friends." msgstr "Erstelle einen Circle aus Kontakten/Freunden" -#: src/Module/Circle.php:221 +#: src/Module/Circle.php:207 msgid "Unable to remove circle." msgstr "Der Circle kann nicht entfernt werden." -#: src/Module/Circle.php:272 +#: src/Module/Circle.php:258 msgid "Delete Circle" msgstr "Circle löschen" -#: src/Module/Circle.php:282 +#: src/Module/Circle.php:268 msgid "Edit Circle Name" msgstr "Name des Circles ändern" -#: src/Module/Circle.php:292 +#: src/Module/Circle.php:278 msgid "Members" msgstr "Mitglieder" -#: src/Module/Circle.php:295 +#: src/Module/Circle.php:281 msgid "Circle is empty" msgstr "Dieser Circle ist leer" -#: src/Module/Circle.php:311 +#: src/Module/Circle.php:297 msgid "Remove contact from circle" msgstr "Kontakt aus Circle entfernen" -#: src/Module/Circle.php:334 +#: src/Module/Circle.php:320 msgid "Click on a contact to add or remove." msgstr "Klicke einen Kontakt an, um ihn hinzuzufügen oder zu entfernen" -#: src/Module/Circle.php:351 +#: src/Module/Circle.php:337 msgid "Add contact to circle" msgstr "Kontakt zu Circle hinzufügen" -#: src/Module/Contact.php:102 +#: src/Module/Contact.php:88 #, php-format msgid "%d contact edited." msgid_plural "%d contacts edited." msgstr[0] "%d Kontakt bearbeitet." msgstr[1] "%d Kontakte bearbeitet." -#: src/Module/Contact.php:353 +#: src/Module/Contact.php:328 msgid "Show all contacts" msgstr "Alle Kontakte anzeigen" -#: src/Module/Contact.php:358 src/Module/Contact.php:437 -#: src/Module/Moderation/BaseUsers.php:85 +#: src/Module/Contact.php:333 src/Module/Contact.php:412 +#: src/Module/Moderation/BaseUsers.php:72 msgid "Pending" msgstr "Ausstehend" -#: src/Module/Contact.php:361 +#: src/Module/Contact.php:336 msgid "Only show pending contacts" msgstr "Zeige nur noch ausstehende Kontakte." -#: src/Module/Contact.php:366 src/Module/Contact.php:440 -#: src/Module/Moderation/BaseUsers.php:93 +#: src/Module/Contact.php:341 src/Module/Contact.php:415 +#: src/Module/Moderation/BaseUsers.php:80 msgid "Blocked" msgstr "Geblockt" -#: src/Module/Contact.php:369 +#: src/Module/Contact.php:344 msgid "Only show blocked contacts" msgstr "Nur blockierte Kontakte anzeigen" -#: src/Module/Contact.php:374 src/Module/Contact.php:446 -#: src/Module/Settings/Server/Index.php:107 src/Object/Post.php:399 +#: src/Module/Contact.php:349 src/Module/Contact.php:421 +#: src/Module/Settings/Server/Index.php:93 src/Object/Post.php:385 msgid "Ignored" msgstr "Ignoriert" -#: src/Module/Contact.php:377 +#: src/Module/Contact.php:352 msgid "Only show ignored contacts" msgstr "Nur ignorierte Kontakte anzeigen" -#: src/Module/Contact.php:382 src/Module/Contact.php:449 +#: src/Module/Contact.php:357 src/Module/Contact.php:424 msgid "Collapsed" msgstr "Zugeklappt" -#: src/Module/Contact.php:385 +#: src/Module/Contact.php:360 msgid "Only show collapsed contacts" msgstr "Zeige nur zugeklappte Kontakte" -#: src/Module/Contact.php:390 src/Module/Contact.php:452 +#: src/Module/Contact.php:365 src/Module/Contact.php:427 msgid "Archived" msgstr "Archiviert" -#: src/Module/Contact.php:393 +#: src/Module/Contact.php:368 msgid "Only show archived contacts" msgstr "Nur archivierte Kontakte anzeigen" -#: src/Module/Contact.php:398 src/Module/Contact.php:443 +#: src/Module/Contact.php:373 src/Module/Contact.php:418 msgid "Hidden" msgstr "Verborgen" -#: src/Module/Contact.php:401 +#: src/Module/Contact.php:376 msgid "Only show hidden contacts" msgstr "Nur verborgene Kontakte anzeigen" -#: src/Module/Contact.php:409 +#: src/Module/Contact.php:384 msgid "Organize your contact circles" msgstr "Verwalte Deine Circles" -#: src/Module/Contact.php:464 +#: src/Module/Contact.php:439 msgid "Search your contacts" msgstr "Suche in deinen Kontakten" -#: src/Module/Contact.php:465 src/Module/Search/Index.php:207 +#: src/Module/Contact.php:440 src/Module/Search/Index.php:193 #, php-format msgid "Results for: %s" msgstr "Ergebnisse für: %s" -#: src/Module/Contact.php:473 +#: src/Module/Contact.php:448 msgid "Update" msgstr "Aktualisierungen" -#: src/Module/Contact.php:474 src/Module/Contact/Profile.php:532 -#: src/Module/Moderation/Blocklist/Contact.php:117 -#: src/Module/Moderation/Users/Blocked.php:138 -#: src/Module/Moderation/Users/Index.php:154 +#: src/Module/Contact.php:449 src/Module/Contact/Profile.php:518 +#: src/Module/Moderation/Blocklist/Contact.php:103 +#: src/Module/Moderation/Users/Blocked.php:124 +#: src/Module/Moderation/Users/Index.php:140 msgid "Unblock" msgstr "Entsperren" -#: src/Module/Contact.php:475 src/Module/Contact/Profile.php:540 +#: src/Module/Contact.php:450 src/Module/Contact/Profile.php:526 msgid "Unignore" msgstr "Ignorieren aufheben" -#: src/Module/Contact.php:476 src/Module/Contact/Profile.php:548 +#: src/Module/Contact.php:451 src/Module/Contact/Profile.php:534 msgid "Uncollapse" msgstr "Aufklappen" -#: src/Module/Contact.php:478 +#: src/Module/Contact.php:453 msgid "Batch Actions" msgstr "Stapelverarbeitung" -#: src/Module/Contact.php:521 +#: src/Module/Contact.php:496 msgid "Conversations started by this contact" msgstr "Unterhaltungen, die von diesem Kontakt begonnen wurden" -#: src/Module/Contact.php:526 +#: src/Module/Contact.php:501 msgid "Posts and Comments" msgstr "Statusnachrichten und Kommentare" -#: src/Module/Contact.php:529 +#: src/Module/Contact.php:504 msgid "Individual Posts and Replies" msgstr "Individuelle Beiträge und Antworten" -#: src/Module/Contact.php:537 +#: src/Module/Contact.php:512 msgid "Posts containing media objects" msgstr "Beiträge die Medien Objekte beinhalten" -#: src/Module/Contact.php:545 +#: src/Module/Contact.php:520 msgid "View all known contacts" msgstr "Alle bekannten Kontakte anzeigen" -#: src/Module/Contact.php:556 +#: src/Module/Contact.php:531 msgid "Advanced Contact Settings" msgstr "Fortgeschrittene Kontakteinstellungen" -#: src/Module/Contact.php:592 +#: src/Module/Contact.php:567 msgid "Mutual Friendship" msgstr "Beidseitige Freundschaft" -#: src/Module/Contact.php:596 +#: src/Module/Contact.php:571 msgid "is a fan of yours" msgstr "ist ein Fan von dir" -#: src/Module/Contact.php:600 +#: src/Module/Contact.php:575 msgid "you are a fan of" msgstr "Du bist Fan von" -#: src/Module/Contact.php:618 +#: src/Module/Contact.php:593 msgid "Pending outgoing contact request" msgstr "Ausstehende ausgehende Kontaktanfrage" -#: src/Module/Contact.php:620 +#: src/Module/Contact.php:595 msgid "Pending incoming contact request" msgstr "Ausstehende eingehende Kontaktanfrage" -#: src/Module/Contact.php:633 src/Module/Contact/Profile.php:391 +#: src/Module/Contact.php:608 src/Module/Contact/Profile.php:377 #, php-format msgid "Visit %s's profile [%s]" msgstr "Besuche %ss Profil [%s]" -#: src/Module/Contact/Advanced.php:99 +#: src/Module/Contact/Advanced.php:85 msgid "Contact update failed." msgstr "Konnte den Kontakt nicht aktualisieren." -#: src/Module/Contact/Advanced.php:130 +#: src/Module/Contact/Advanced.php:116 msgid "Return to contact editor" msgstr "Zurück zum Kontakteditor" -#: src/Module/Contact/Advanced.php:134 -#: src/Module/Moderation/Blocklist/Contact.php:122 -#: src/Module/Moderation/Reports.php:116 -#: src/Module/Moderation/Users/Active.php:126 -#: src/Module/Moderation/Users/Blocked.php:126 -#: src/Module/Moderation/Users/Create.php:70 -#: src/Module/Moderation/Users/Deleted.php:83 -#: src/Module/Moderation/Users/Index.php:140 -#: src/Module/Moderation/Users/Index.php:160 -#: src/Module/Moderation/Users/Pending.php:99 src/Module/Settings/OAuth.php:72 +#: src/Module/Contact/Advanced.php:120 +#: src/Module/Moderation/Blocklist/Contact.php:108 +#: src/Module/Moderation/Reports.php:102 +#: src/Module/Moderation/Users/Active.php:112 +#: src/Module/Moderation/Users/Blocked.php:112 +#: src/Module/Moderation/Users/Create.php:56 +#: src/Module/Moderation/Users/Deleted.php:69 +#: src/Module/Moderation/Users/Index.php:126 +#: src/Module/Moderation/Users/Index.php:146 +#: src/Module/Moderation/Users/Pending.php:85 src/Module/Settings/OAuth.php:58 msgid "Name" msgstr "Name" -#: src/Module/Contact/Advanced.php:135 +#: src/Module/Contact/Advanced.php:121 msgid "Account Nickname" msgstr "Konto-Spitzname" -#: src/Module/Contact/Advanced.php:136 +#: src/Module/Contact/Advanced.php:122 msgid "Account URL" msgstr "Konto-URL" -#: src/Module/Contact/Advanced.php:137 +#: src/Module/Contact/Advanced.php:123 msgid "Poll/Feed URL" msgstr "Pull/Feed-URL" -#: src/Module/Contact/Advanced.php:138 +#: src/Module/Contact/Advanced.php:124 msgid "New photo from this URL" msgstr "Neues Foto von dieser URL" -#: src/Module/Contact/Contacts.php:89 +#: src/Module/Contact/Contacts.php:75 msgid "No known contacts." msgstr "Keine bekannten Kontakte." -#: src/Module/Contact/Contacts.php:103 src/Module/Profile/Common.php:128 +#: src/Module/Contact/Contacts.php:89 src/Module/Profile/Common.php:114 msgid "No common contacts." msgstr "Keine gemeinsamen Kontakte." -#: src/Module/Contact/Contacts.php:115 src/Module/Profile/Contacts.php:135 +#: src/Module/Contact/Contacts.php:101 src/Module/Profile/Contacts.php:121 #, php-format msgid "Follower (%s)" msgid_plural "Followers (%s)" msgstr[0] "Folgende (%s)" msgstr[1] "Folgende (%s)" -#: src/Module/Contact/Contacts.php:119 src/Module/Profile/Contacts.php:138 +#: src/Module/Contact/Contacts.php:105 src/Module/Profile/Contacts.php:124 #, php-format msgid "Following (%s)" msgid_plural "Following (%s)" msgstr[0] "Gefolgte (%s)" msgstr[1] "Gefolgte (%s)" -#: src/Module/Contact/Contacts.php:123 src/Module/Profile/Contacts.php:141 +#: src/Module/Contact/Contacts.php:109 src/Module/Profile/Contacts.php:127 #, php-format msgid "Mutual friend (%s)" msgid_plural "Mutual friends (%s)" msgstr[0] "Beidseitige Freundschafte (%s)" msgstr[1] "Beidseitige Freundschaften (%s)" -#: src/Module/Contact/Contacts.php:125 src/Module/Profile/Contacts.php:143 +#: src/Module/Contact/Contacts.php:111 src/Module/Profile/Contacts.php:129 #, php-format msgid "These contacts both follow and are followed by %s." msgstr "Diese Kontakte sind sowohl Folgende als auch Gefolgte von %s." -#: src/Module/Contact/Contacts.php:131 src/Module/Profile/Common.php:116 +#: src/Module/Contact/Contacts.php:117 src/Module/Profile/Common.php:102 #, php-format msgid "Common contact (%s)" msgid_plural "Common contacts (%s)" msgstr[0] "Gemeinsamer Kontakt (%s)" msgstr[1] "Gemeinsame Kontakte (%s)" -#: src/Module/Contact/Contacts.php:133 src/Module/Profile/Common.php:118 +#: src/Module/Contact/Contacts.php:119 src/Module/Profile/Common.php:104 #, php-format msgid "" "Both %s and yourself have publicly interacted with these " "contacts (follow, comment or likes on public posts)." msgstr "Du und %s haben mit diesen Kontakten öffentlich interagiert (Folgen, Kommentare und Likes in öffentlichen Beiträgen)" -#: src/Module/Contact/Contacts.php:139 src/Module/Profile/Contacts.php:149 +#: src/Module/Contact/Contacts.php:125 src/Module/Profile/Contacts.php:135 #, php-format msgid "Contact (%s)" msgid_plural "Contacts (%s)" msgstr[0] "Kontakt (%s)" msgstr[1] "Kontakte (%s)" -#: src/Module/Contact/Follow.php:70 src/Module/Contact/Redir.php:59 -#: src/Module/Contact/Redir.php:220 src/Module/Conversation/Community.php:166 -#: src/Module/Debug/ItemBody.php:38 src/Module/Diaspora/Receive.php:59 -#: src/Module/Item/Display.php:96 src/Module/Item/Feed.php:59 -#: src/Module/Item/Follow.php:41 src/Module/Item/Ignore.php:41 -#: src/Module/Item/Language.php:53 src/Module/Item/Pin.php:41 -#: src/Module/Item/Pin.php:56 src/Module/Item/Searchtext.php:53 -#: src/Module/Item/Star.php:42 src/Module/Update/Display.php:37 +#: src/Module/Contact/Follow.php:56 src/Module/Contact/Redir.php:45 +#: src/Module/Contact/Redir.php:206 src/Module/Conversation/Community.php:154 +#: src/Module/Debug/ItemBody.php:24 src/Module/Diaspora/Receive.php:45 +#: src/Module/Item/Display.php:82 src/Module/Item/Feed.php:45 +#: src/Module/Item/Follow.php:27 src/Module/Item/Ignore.php:27 +#: src/Module/Item/Language.php:39 src/Module/Item/Pin.php:27 +#: src/Module/Item/Pin.php:42 src/Module/Item/Searchtext.php:39 +#: src/Module/Item/Star.php:28 src/Module/Update/Display.php:23 msgid "Access denied." msgstr "Zugriff verweigert." -#: src/Module/Contact/Follow.php:105 src/Module/Contact/Unfollow.php:125 -#: src/Module/Profile/RemoteFollow.php:133 +#: src/Module/Contact/Follow.php:91 src/Module/Contact/Unfollow.php:111 +#: src/Module/Profile/RemoteFollow.php:119 msgid "Submit Request" msgstr "Anfrage abschicken" -#: src/Module/Contact/Follow.php:115 +#: src/Module/Contact/Follow.php:101 msgid "You already added this contact." msgstr "Du hast den Kontakt bereits hinzugefügt." -#: src/Module/Contact/Follow.php:130 +#: src/Module/Contact/Follow.php:116 msgid "The network type couldn't be detected. Contact can't be added." msgstr "Der Netzwerktyp wurde nicht erkannt. Der Kontakt kann nicht hinzugefügt werden." -#: src/Module/Contact/Follow.php:138 +#: src/Module/Contact/Follow.php:124 msgid "Diaspora support isn't enabled. Contact can't be added." msgstr "Diaspora-Unterstützung ist nicht aktiviert. Der Kontakt kann nicht zugefügt werden." -#: src/Module/Contact/Follow.php:143 -msgid "OStatus support is disabled. Contact can't be added." -msgstr "OStatus-Unterstützung ist nicht aktiviert. Der Kontakt kann nicht zugefügt werden." - -#: src/Module/Contact/Follow.php:168 src/Module/Profile/RemoteFollow.php:132 +#: src/Module/Contact/Follow.php:149 src/Module/Profile/RemoteFollow.php:118 msgid "Please answer the following:" msgstr "Bitte beantworte folgendes:" -#: src/Module/Contact/Follow.php:169 src/Module/Contact/Unfollow.php:123 +#: src/Module/Contact/Follow.php:150 src/Module/Contact/Unfollow.php:109 msgid "Your Identity Address:" msgstr "Adresse Deines Profils:" -#: src/Module/Contact/Follow.php:170 src/Module/Contact/Profile.php:422 -#: src/Module/Contact/Unfollow.php:129 -#: src/Module/Moderation/Blocklist/Contact.php:131 -#: src/Module/Moderation/Reports.php:123 -#: src/Module/Notifications/Introductions.php:135 -#: src/Module/Notifications/Introductions.php:204 +#: src/Module/Contact/Follow.php:151 src/Module/Contact/Profile.php:408 +#: src/Module/Contact/Unfollow.php:115 +#: src/Module/Moderation/Blocklist/Contact.php:117 +#: src/Module/Moderation/Reports.php:109 +#: src/Module/Notifications/Introductions.php:121 +#: src/Module/Notifications/Introductions.php:190 msgid "Profile URL" msgstr "Profil URL" -#: src/Module/Contact/Follow.php:171 src/Module/Contact/Profile.php:434 -#: src/Module/Notifications/Introductions.php:197 -#: src/Module/Profile/Profile.php:236 +#: src/Module/Contact/Follow.php:152 src/Module/Contact/Profile.php:420 +#: src/Module/Notifications/Introductions.php:183 +#: src/Module/Profile/Profile.php:222 msgid "Tags:" msgstr "Tags:" -#: src/Module/Contact/Follow.php:182 +#: src/Module/Contact/Follow.php:163 #, php-format msgid "%s knows you" msgstr "%skennt dich" -#: src/Module/Contact/Follow.php:183 +#: src/Module/Contact/Follow.php:164 msgid "Add a personal note:" msgstr "Eine persönliche Notiz beifügen:" -#: src/Module/Contact/Follow.php:192 src/Module/Contact/Unfollow.php:138 +#: src/Module/Contact/Follow.php:173 src/Module/Contact/Unfollow.php:124 msgid "Posts and Replies" msgstr "Beiträge und Antworten" -#: src/Module/Contact/Follow.php:221 +#: src/Module/Contact/Follow.php:202 msgid "The contact could not be added." msgstr "Der Kontakt konnte nicht hinzugefügt werden." -#: src/Module/Contact/MatchInterests.php:95 -#: src/Module/Media/Attachment/Upload.php:77 -#: src/Module/Media/Attachment/Upload.php:82 -#: src/Module/Media/Photo/Upload.php:81 src/Module/Media/Photo/Upload.php:86 -#: src/Module/Media/Photo/Upload.php:135 +#: src/Module/Contact/MatchInterests.php:81 +#: src/Module/Media/Attachment/Upload.php:63 +#: src/Module/Media/Attachment/Upload.php:68 +#: src/Module/Media/Photo/Upload.php:67 src/Module/Media/Photo/Upload.php:72 +#: src/Module/Media/Photo/Upload.php:121 msgid "Invalid request." msgstr "Ungültige Anfrage" -#: src/Module/Contact/MatchInterests.php:102 +#: src/Module/Contact/MatchInterests.php:88 msgid "No keywords to match. Please add keywords to your profile." msgstr "Keine Schlüsselwörter zum Abgleichen gefunden. Bitte füge einige Schlüsselwörter zu deinem Profil hinzu." -#: src/Module/Contact/MatchInterests.php:145 +#: src/Module/Contact/MatchInterests.php:141 msgid "Profile Match" msgstr "Profilübereinstimmungen" -#: src/Module/Contact/Profile.php:145 +#: src/Module/Contact/Profile.php:131 msgid "Failed to update contact record." msgstr "Aktualisierung der Kontaktdaten fehlgeschlagen." -#: src/Module/Contact/Profile.php:209 +#: src/Module/Contact/Profile.php:195 msgid "Contact has been unblocked" msgstr "Kontakt wurde wieder freigegeben" -#: src/Module/Contact/Profile.php:213 +#: src/Module/Contact/Profile.php:199 msgid "Contact has been blocked" msgstr "Kontakt wurde blockiert" -#: src/Module/Contact/Profile.php:225 +#: src/Module/Contact/Profile.php:211 msgid "Contact has been unignored" msgstr "Kontakt wird nicht mehr ignoriert" -#: src/Module/Contact/Profile.php:229 +#: src/Module/Contact/Profile.php:215 msgid "Contact has been ignored" msgstr "Kontakt wurde ignoriert" -#: src/Module/Contact/Profile.php:241 +#: src/Module/Contact/Profile.php:227 msgid "Contact has been uncollapsed" msgstr "Kontakt wurde aufgeklappt" -#: src/Module/Contact/Profile.php:245 +#: src/Module/Contact/Profile.php:231 msgid "Contact has been collapsed" msgstr "Kontakt wurde zugeklappt" -#: src/Module/Contact/Profile.php:273 +#: src/Module/Contact/Profile.php:259 #, php-format msgid "You are mutual friends with %s" msgstr "Du hast mit %s eine beidseitige Freundschaft" -#: src/Module/Contact/Profile.php:274 +#: src/Module/Contact/Profile.php:260 #, php-format msgid "You are sharing with %s" msgstr "Du teilst mit %s" -#: src/Module/Contact/Profile.php:275 +#: src/Module/Contact/Profile.php:261 #, php-format msgid "%s is sharing with you" msgstr "%s teilt mit dir" -#: src/Module/Contact/Profile.php:291 +#: src/Module/Contact/Profile.php:277 msgid "Private communications are not available for this contact." msgstr "Private Kommunikation ist für diesen Kontakt nicht verfügbar." -#: src/Module/Contact/Profile.php:301 +#: src/Module/Contact/Profile.php:287 msgid "This contact is on a server you ignored." msgstr "Dieser Kontakt befindet sich auf einem Server, den du ignoriert hast." -#: src/Module/Contact/Profile.php:304 +#: src/Module/Contact/Profile.php:290 msgid "Never" msgstr "Niemals" -#: src/Module/Contact/Profile.php:307 +#: src/Module/Contact/Profile.php:293 msgid "(Update was not successful)" msgstr "(Aktualisierung war nicht erfolgreich)" -#: src/Module/Contact/Profile.php:307 +#: src/Module/Contact/Profile.php:293 msgid "(Update was successful)" msgstr "(Aktualisierung war erfolgreich)" -#: src/Module/Contact/Profile.php:309 src/Module/Contact/Profile.php:503 +#: src/Module/Contact/Profile.php:295 src/Module/Contact/Profile.php:489 msgid "Suggest friends" msgstr "Kontakte vorschlagen" -#: src/Module/Contact/Profile.php:313 +#: src/Module/Contact/Profile.php:299 #, php-format msgid "Network type: %s" msgstr "Netzwerktyp: %s" -#: src/Module/Contact/Profile.php:318 +#: src/Module/Contact/Profile.php:304 msgid "Communications lost with this contact!" msgstr "Verbindungen mit diesem Kontakt verloren!" -#: src/Module/Contact/Profile.php:324 +#: src/Module/Contact/Profile.php:310 msgid "Fetch further information for feeds" msgstr "Weitere Informationen zu Feeds holen" -#: src/Module/Contact/Profile.php:326 +#: src/Module/Contact/Profile.php:312 msgid "" "Fetch information like preview pictures, title and teaser from the feed " "item. You can activate this if the feed doesn't contain much text. Keywords " "are taken from the meta header in the feed item and are posted as hash tags." msgstr "Zusätzliche Informationen wie Vorschaubilder, Titel und Zusammenfassungen vom Feed-Eintrag laden. Du kannst diese Option aktivieren, wenn der Feed nicht allzu viel Text beinhaltet. Schlagwörter werden aus den Meta-Informationen des Feed-Headers bezogen und als Hash-Tags verwendet." -#: src/Module/Contact/Profile.php:329 +#: src/Module/Contact/Profile.php:315 msgid "Fetch information" msgstr "Beziehe Information" -#: src/Module/Contact/Profile.php:330 +#: src/Module/Contact/Profile.php:316 msgid "Fetch keywords" msgstr "Schlüsselwörter abrufen" -#: src/Module/Contact/Profile.php:331 +#: src/Module/Contact/Profile.php:317 msgid "Fetch information and keywords" msgstr "Beziehe Information und Schlüsselworte" -#: src/Module/Contact/Profile.php:341 src/Module/Contact/Profile.php:346 -#: src/Module/Contact/Profile.php:351 src/Module/Contact/Profile.php:357 +#: src/Module/Contact/Profile.php:327 src/Module/Contact/Profile.php:332 +#: src/Module/Contact/Profile.php:337 src/Module/Contact/Profile.php:343 msgid "No mirroring" msgstr "Kein Spiegeln" -#: src/Module/Contact/Profile.php:342 src/Module/Contact/Profile.php:352 -#: src/Module/Contact/Profile.php:358 +#: src/Module/Contact/Profile.php:328 src/Module/Contact/Profile.php:338 +#: src/Module/Contact/Profile.php:344 msgid "Mirror as my own posting" msgstr "Spiegeln als meine eigenen Beiträge" -#: src/Module/Contact/Profile.php:347 src/Module/Contact/Profile.php:353 +#: src/Module/Contact/Profile.php:333 src/Module/Contact/Profile.php:339 msgid "Native reshare" msgstr "Natives Teilen" -#: src/Module/Contact/Profile.php:373 +#: src/Module/Contact/Profile.php:359 msgid "Contact Information / Notes" msgstr "Kontakt-Informationen / -Notizen" -#: src/Module/Contact/Profile.php:374 +#: src/Module/Contact/Profile.php:360 msgid "Contact Settings" msgstr "Kontakteinstellungen" -#: src/Module/Contact/Profile.php:382 +#: src/Module/Contact/Profile.php:368 msgid "Contact" msgstr "Kontakt" -#: src/Module/Contact/Profile.php:386 +#: src/Module/Contact/Profile.php:372 msgid "Their personal note" msgstr "Die persönliche Mitteilung" -#: src/Module/Contact/Profile.php:388 +#: src/Module/Contact/Profile.php:374 msgid "Edit contact notes" msgstr "Notizen zum Kontakt bearbeiten" -#: src/Module/Contact/Profile.php:392 +#: src/Module/Contact/Profile.php:378 msgid "Block/Unblock contact" msgstr "Kontakt blockieren/freischalten" -#: src/Module/Contact/Profile.php:393 -#: src/Module/Moderation/Report/Create.php:293 +#: src/Module/Contact/Profile.php:379 +#: src/Module/Moderation/Report/Create.php:279 msgid "Ignore contact" msgstr "Ignoriere den Kontakt" -#: src/Module/Contact/Profile.php:394 +#: src/Module/Contact/Profile.php:380 msgid "View conversations" msgstr "Unterhaltungen anzeigen" -#: src/Module/Contact/Profile.php:399 +#: src/Module/Contact/Profile.php:385 msgid "Last update:" msgstr "Letzte Aktualisierung: " -#: src/Module/Contact/Profile.php:401 +#: src/Module/Contact/Profile.php:387 msgid "Update public posts" msgstr "Öffentliche Beiträge aktualisieren" -#: src/Module/Contact/Profile.php:403 src/Module/Contact/Profile.php:513 +#: src/Module/Contact/Profile.php:389 src/Module/Contact/Profile.php:499 msgid "Update now" msgstr "Jetzt aktualisieren" -#: src/Module/Contact/Profile.php:405 +#: src/Module/Contact/Profile.php:391 msgid "Awaiting connection acknowledge" msgstr "Bedarf der Bestätigung des Kontakts" -#: src/Module/Contact/Profile.php:406 +#: src/Module/Contact/Profile.php:392 msgid "Currently blocked" msgstr "Derzeit geblockt" -#: src/Module/Contact/Profile.php:407 +#: src/Module/Contact/Profile.php:393 msgid "Currently ignored" msgstr "Derzeit ignoriert" -#: src/Module/Contact/Profile.php:408 +#: src/Module/Contact/Profile.php:394 msgid "Currently collapsed" msgstr "Derzeit zugeklappt" -#: src/Module/Contact/Profile.php:409 +#: src/Module/Contact/Profile.php:395 msgid "Currently archived" msgstr "Momentan archiviert" -#: src/Module/Contact/Profile.php:412 +#: src/Module/Contact/Profile.php:398 msgid "Manage remote servers" msgstr "Verwaltung entfernter Instanzen" -#: src/Module/Contact/Profile.php:414 -#: src/Module/Notifications/Introductions.php:198 +#: src/Module/Contact/Profile.php:400 +#: src/Module/Notifications/Introductions.php:184 msgid "Hide this contact from others" msgstr "Verbirg diesen Kontakt vor Anderen" -#: src/Module/Contact/Profile.php:414 +#: src/Module/Contact/Profile.php:400 msgid "" "Replies/likes to your public posts may still be visible" msgstr "Antworten/Likes auf deine öffentlichen Beiträge könnten weiterhin sichtbar sein" -#: src/Module/Contact/Profile.php:415 +#: src/Module/Contact/Profile.php:401 msgid "Notification for new posts" msgstr "Benachrichtigung bei neuen Beiträgen" -#: src/Module/Contact/Profile.php:415 +#: src/Module/Contact/Profile.php:401 msgid "Send a notification of every new post of this contact" msgstr "Sende eine Benachrichtigung, wann immer dieser Kontakt einen neuen Beitrag schreibt." -#: src/Module/Contact/Profile.php:417 +#: src/Module/Contact/Profile.php:403 msgid "Keyword Deny List" msgstr "Liste der gesperrten Schlüsselwörter" -#: src/Module/Contact/Profile.php:417 +#: src/Module/Contact/Profile.php:403 msgid "" "Comma separated list of keywords that should not be converted to hashtags, " "when \"Fetch information and keywords\" is selected" msgstr "Komma-Separierte Liste mit Schlüsselworten, die nicht in Hashtags konvertiert werden, wenn \"Beziehe Information und Schlüsselworte\" aktiviert wurde" -#: src/Module/Contact/Profile.php:435 -#: src/Module/Settings/TwoFactor/Index.php:160 +#: src/Module/Contact/Profile.php:421 +#: src/Module/Settings/TwoFactor/Index.php:146 msgid "Actions" msgstr "Aktionen" -#: src/Module/Contact/Profile.php:437 -#: src/Module/Settings/TwoFactor/Index.php:140 view/theme/frio/theme.php:232 +#: src/Module/Contact/Profile.php:423 +#: src/Module/Settings/TwoFactor/Index.php:126 view/theme/frio/theme.php:220 msgid "Status" msgstr "Status" -#: src/Module/Contact/Profile.php:443 +#: src/Module/Contact/Profile.php:429 msgid "Mirror postings from this contact" msgstr "Spiegle Beiträge dieses Kontakts" -#: src/Module/Contact/Profile.php:445 +#: src/Module/Contact/Profile.php:431 msgid "" "Mark this contact as remote_self, this will cause friendica to repost new " "entries from this contact." msgstr "Markiere diesen Kontakt als remote_self (entferntes Konto), dies veranlasst Friendica, alle Top-Level Beiträge dieses Kontakts an all Deine Kontakte zu senden (spiegeln)." -#: src/Module/Contact/Profile.php:448 +#: src/Module/Contact/Profile.php:434 msgid "Channel Settings" msgstr "Kanal Einstellungen" -#: src/Module/Contact/Profile.php:449 +#: src/Module/Contact/Profile.php:435 msgid "Frequency of this contact in relevant channels" msgstr "Häufigkeit dieses Kontakts in relevanten Kanälen" -#: src/Module/Contact/Profile.php:450 +#: src/Module/Contact/Profile.php:436 msgid "" "Depending on the type of the channel not all posts from this contact are " "displayed. By default, posts need to have a minimum amount of interactions " @@ -7041,706 +7036,706 @@ msgid "" "block or hide the contact completely." msgstr "Je nach Art des Kanals werden nicht alle Beiträge dieses Kontakts angezeigt. Standardmäßig müssen Beiträge eine Mindestanzahl an Interaktionen (Kommentare, Gefällt mir Angaben) aufweisen, um in Ihren Kanälen angezeigt zu werden. Andererseits kann es Kontakte geben, die den Kanal überfluten, so dass du vielleicht nur einige ihrer Beiträge sehen möchtest. Oder du willst deren Inhalte überhaupt nicht sehen, aber du willst den Kontakt nicht komplett blockieren oder ausblenden." -#: src/Module/Contact/Profile.php:451 +#: src/Module/Contact/Profile.php:437 msgid "Default frequency" msgstr "Standardhäufigkeit" -#: src/Module/Contact/Profile.php:451 +#: src/Module/Contact/Profile.php:437 msgid "" "Posts by this contact are displayed in the \"for you\" channel if you " "interact often with this contact or if a post reached some level of " "interaction." msgstr "Beiträge dieses Kontakts werden im \"Für Dich\"-Kanal angezeigt, wenn du häufig mit diesem Kontakt interagieren oder wenn ein Beitrag ein gewisses Maß an Interaktion erreicht hat." -#: src/Module/Contact/Profile.php:452 +#: src/Module/Contact/Profile.php:438 msgid "Display all posts of this contact" msgstr "Alle Beiträge dieses Kontakts anzeigen" -#: src/Module/Contact/Profile.php:452 +#: src/Module/Contact/Profile.php:438 msgid "All posts from this contact will appear on the \"for you\" channel" msgstr "Alle Beiträge dieses Kontakts werden auf dem Kanal \"Für Dich\" erscheinen" -#: src/Module/Contact/Profile.php:453 +#: src/Module/Contact/Profile.php:439 msgid "Display only few posts" msgstr "Zeige nur einige Beiträge an" -#: src/Module/Contact/Profile.php:453 +#: src/Module/Contact/Profile.php:439 msgid "" "When a contact creates a lot of posts in a short period, this setting " "reduces the number of displayed posts in every channel." msgstr "Wenn ein Kontakt viele Beiträge in einem kurzen Zeitraum erstellt, reduziert diese Einstellung die Anzahl der angezeigten Beiträge in jedem Kanal." -#: src/Module/Contact/Profile.php:454 +#: src/Module/Contact/Profile.php:440 msgid "Never display posts" msgstr "Zeige keine Beiträge an" -#: src/Module/Contact/Profile.php:454 +#: src/Module/Contact/Profile.php:440 msgid "Posts from this contact will never be displayed in any channel" msgstr "Beiträge von diesem Kontakt werden in keinem Kanal angezeigt" -#: src/Module/Contact/Profile.php:455 +#: src/Module/Contact/Profile.php:441 msgid "Channel Only" msgstr "Ausschließlich Kanäle" -#: src/Module/Contact/Profile.php:455 +#: src/Module/Contact/Profile.php:441 msgid "" "If enabled, posts from this contact will only appear in channels and network" " streams in circles, but not in the general network stream." msgstr "Ist dies aktiviert, werden Beiträge dieses Kontakt nur in Kanälen und Circles angezeigt werden, aber nicht im allgemeinen Netzwerk Stream." -#: src/Module/Contact/Profile.php:523 +#: src/Module/Contact/Profile.php:509 msgid "Refetch contact data" msgstr "Kontaktdaten neu laden" -#: src/Module/Contact/Profile.php:534 +#: src/Module/Contact/Profile.php:520 msgid "Toggle Blocked status" msgstr "Geblockt-Status ein-/ausschalten" -#: src/Module/Contact/Profile.php:542 +#: src/Module/Contact/Profile.php:528 msgid "Toggle Ignored status" msgstr "Ignoriert-Status ein-/ausschalten" -#: src/Module/Contact/Profile.php:550 +#: src/Module/Contact/Profile.php:536 msgid "Toggle Collapsed status" msgstr "Status auf \"Zusammengeklappt\" umschalten" -#: src/Module/Contact/Profile.php:557 src/Module/Contact/Revoke.php:103 +#: src/Module/Contact/Profile.php:543 src/Module/Contact/Revoke.php:89 msgid "Revoke Follow" msgstr "Folgen widerrufen" -#: src/Module/Contact/Profile.php:559 +#: src/Module/Contact/Profile.php:545 msgid "Revoke the follow from this contact" msgstr "Widerruft das Folgen dieses Kontaktes" -#: src/Module/Contact/Redir.php:139 +#: src/Module/Contact/Redir.php:125 msgid "Bad Request." msgstr "Ungültige Anfrage." -#: src/Module/Contact/Revoke.php:74 +#: src/Module/Contact/Revoke.php:60 msgid "Contact is being deleted." msgstr "Kontakt wurde gelöscht." -#: src/Module/Contact/Revoke.php:88 +#: src/Module/Contact/Revoke.php:74 msgid "Follow was successfully revoked." msgstr "Folgen wurde erfolgreich widerrufen." -#: src/Module/Contact/Revoke.php:104 +#: src/Module/Contact/Revoke.php:90 msgid "" "Do you really want to revoke this contact's follow? This cannot be undone " "and they will have to manually follow you back again." msgstr "Willst du das Folgen dieses Kontakt wirklich widerrufen? Dies kann nicht rückgängig gemacht werden und der Kontakt muss Ihnen manuell wieder folgen." -#: src/Module/Contact/Suggestions.php:62 +#: src/Module/Contact/Suggestions.php:48 msgid "" "No suggestions available. If this is a new site, please try again in 24 " "hours." msgstr "Keine Vorschläge verfügbar. Falls der Server frisch aufgesetzt wurde, versuche es bitte in 24 Stunden noch einmal." -#: src/Module/Contact/Unfollow.php:98 src/Module/Contact/Unfollow.php:167 +#: src/Module/Contact/Unfollow.php:84 src/Module/Contact/Unfollow.php:153 msgid "You aren't following this contact." msgstr "Du folgst diesem Kontakt." -#: src/Module/Contact/Unfollow.php:103 +#: src/Module/Contact/Unfollow.php:89 msgid "Unfollowing is currently not supported by your network." msgstr "Bei diesem Netzwerk wird das Entfolgen derzeit nicht unterstützt." -#: src/Module/Contact/Unfollow.php:121 +#: src/Module/Contact/Unfollow.php:107 msgid "Disconnect/Unfollow" msgstr "Verbindung lösen/Nicht mehr folgen" -#: src/Module/Contact/Unfollow.php:175 +#: src/Module/Contact/Unfollow.php:161 msgid "Contact was successfully unfollowed" msgstr "Kontakt wurde erfolgreich entfolgt." -#: src/Module/Contact/Unfollow.php:178 +#: src/Module/Contact/Unfollow.php:164 msgid "Unable to unfollow this contact, please contact your administrator" msgstr "Konnte dem Kontakt nicht entfolgen. Bitte kontaktiere deinen Administrator." -#: src/Module/Conversation/Channel.php:139 -#: src/Module/Conversation/Community.php:126 src/Module/Search/Index.php:152 -#: src/Module/Search/Index.php:194 +#: src/Module/Conversation/Channel.php:125 +#: src/Module/Conversation/Community.php:114 src/Module/Search/Index.php:138 +#: src/Module/Search/Index.php:180 msgid "No results." msgstr "Keine Ergebnisse." -#: src/Module/Conversation/Channel.php:177 +#: src/Module/Conversation/Channel.php:163 msgid "Channel not available." msgstr "Channel nicht verüfgbar" -#: src/Module/Conversation/Community.php:92 +#: src/Module/Conversation/Community.php:80 msgid "" "This community stream shows all public posts received by this node. They may" " not reflect the opinions of this node’s users." msgstr "Diese Gemeinschaftsseite zeigt alle öffentlichen Beiträge, die auf diesem Knoten eingegangen sind. Der Inhalt entspricht nicht zwingend der Meinung der Nutzer dieses Servers." -#: src/Module/Conversation/Community.php:180 +#: src/Module/Conversation/Community.php:168 msgid "Community option not available." msgstr "Optionen für die Gemeinschaftsseite nicht verfügbar." -#: src/Module/Conversation/Community.php:196 +#: src/Module/Conversation/Community.php:184 msgid "Not available." msgstr "Nicht verfügbar." -#: src/Module/Conversation/Network.php:216 +#: src/Module/Conversation/Network.php:202 msgid "No such circle" msgstr "Circle ist nicht vorhanden" -#: src/Module/Conversation/Network.php:220 +#: src/Module/Conversation/Network.php:206 #, php-format msgid "Circle: %s" msgstr "Circle: %s" -#: src/Module/Conversation/Network.php:239 +#: src/Module/Conversation/Network.php:226 #, php-format msgid "Error %d (%s) while fetching the timeline." msgstr "Fehler %d (%s) beim Abruf der Timeline." -#: src/Module/Conversation/Network.php:316 +#: src/Module/Conversation/Network.php:304 msgid "Network feed not available." msgstr "Netzwerkfeed nicht verfügbar." -#: src/Module/Conversation/Timeline.php:204 +#: src/Module/Conversation/Timeline.php:190 msgid "Include" msgstr "Einschließen" -#: src/Module/Conversation/Timeline.php:205 +#: src/Module/Conversation/Timeline.php:191 msgid "Hide" msgstr "Verbergen" -#: src/Module/Credits.php:44 +#: src/Module/Credits.php:30 msgid "Credits" msgstr "Credits" -#: src/Module/Credits.php:45 +#: src/Module/Credits.php:31 msgid "" "Friendica is a community project, that would not be possible without the " "help of many people. Here is a list of those who have contributed to the " "code or the translation of Friendica. Thank you all!" msgstr "Friendica ist ein Gemeinschaftsprojekt, das nicht ohne die Hilfe vieler Personen möglich wäre. Hier ist eine Aufzählung der Personen, die zum Code oder der Übersetzung beigetragen haben. Dank an alle !" -#: src/Module/Debug/ActivityPubConversion.php:59 +#: src/Module/Debug/ActivityPubConversion.php:45 msgid "Formatted" msgstr "Formatiert" -#: src/Module/Debug/ActivityPubConversion.php:71 +#: src/Module/Debug/ActivityPubConversion.php:57 msgid "Activity" msgstr "Aktivität" -#: src/Module/Debug/ActivityPubConversion.php:123 +#: src/Module/Debug/ActivityPubConversion.php:109 msgid "Object data" msgstr "Objekt Daten" -#: src/Module/Debug/ActivityPubConversion.php:130 +#: src/Module/Debug/ActivityPubConversion.php:116 msgid "Result Item" msgstr "Resultierender Eintrag" -#: src/Module/Debug/ActivityPubConversion.php:135 -#: src/Module/Debug/Babel.php:300 src/Module/Moderation/Item/Source.php:93 -#: src/Module/Security/TwoFactor/Verify.php:98 +#: src/Module/Debug/ActivityPubConversion.php:121 +#: src/Module/Debug/Babel.php:286 src/Module/Moderation/Item/Source.php:79 +#: src/Module/Security/TwoFactor/Verify.php:84 msgid "Error" msgid_plural "Errors" msgstr[0] "Fehler" msgstr[1] "Fehler" -#: src/Module/Debug/ActivityPubConversion.php:144 +#: src/Module/Debug/ActivityPubConversion.php:130 msgid "Source activity" msgstr "Quelle der Aktivität" -#: src/Module/Debug/Babel.php:58 +#: src/Module/Debug/Babel.php:44 msgid "Source input" msgstr "Originaltext:" -#: src/Module/Debug/Babel.php:64 +#: src/Module/Debug/Babel.php:50 msgid "BBCode::toPlaintext" msgstr "BBCode::toPlaintext" -#: src/Module/Debug/Babel.php:70 +#: src/Module/Debug/Babel.php:56 msgid "BBCode::convert (raw HTML)" msgstr "BBCode::convert (pures HTML)" -#: src/Module/Debug/Babel.php:75 +#: src/Module/Debug/Babel.php:61 msgid "BBCode::convert (hex)" msgstr "BBCode::convert (hex)" -#: src/Module/Debug/Babel.php:80 +#: src/Module/Debug/Babel.php:66 msgid "BBCode::convert" msgstr "BBCode::convert" -#: src/Module/Debug/Babel.php:86 +#: src/Module/Debug/Babel.php:72 msgid "BBCode::convert => HTML::toBBCode" msgstr "BBCode::convert => HTML::toBBCode" -#: src/Module/Debug/Babel.php:92 +#: src/Module/Debug/Babel.php:78 msgid "BBCode::toMarkdown" msgstr "BBCode::toMarkdown" -#: src/Module/Debug/Babel.php:98 +#: src/Module/Debug/Babel.php:84 msgid "BBCode::toMarkdown => Markdown::convert (raw HTML)" msgstr "BBCode::toMarkdown => Markdown::convert (rohes HTML)" -#: src/Module/Debug/Babel.php:102 +#: src/Module/Debug/Babel.php:88 msgid "BBCode::toMarkdown => Markdown::convert" msgstr "BBCode::toMarkdown => Markdown::convert" -#: src/Module/Debug/Babel.php:108 +#: src/Module/Debug/Babel.php:94 msgid "BBCode::toMarkdown => Markdown::toBBCode" msgstr "BBCode::toMarkdown => Markdown::toBBCode" -#: src/Module/Debug/Babel.php:114 +#: src/Module/Debug/Babel.php:100 msgid "BBCode::toMarkdown => Markdown::convert => HTML::toBBCode" msgstr "BBCode::toMarkdown => Markdown::convert => HTML::toBBCode" -#: src/Module/Debug/Babel.php:122 +#: src/Module/Debug/Babel.php:108 msgid "Item Body" msgstr "Beitragskörper" -#: src/Module/Debug/Babel.php:126 +#: src/Module/Debug/Babel.php:112 msgid "Item Tags" msgstr "Tags des Beitrags" -#: src/Module/Debug/Babel.php:132 +#: src/Module/Debug/Babel.php:118 msgid "PageInfo::appendToBody" msgstr "PageInfo::appendToBody" -#: src/Module/Debug/Babel.php:137 +#: src/Module/Debug/Babel.php:123 msgid "PageInfo::appendToBody => BBCode::convert (raw HTML)" msgstr "PageInfo::appendToBody => BBCode::convert (pures HTML)" -#: src/Module/Debug/Babel.php:141 +#: src/Module/Debug/Babel.php:127 msgid "PageInfo::appendToBody => BBCode::convert" msgstr "PageInfo::appendToBody => BBCode::convert" -#: src/Module/Debug/Babel.php:148 +#: src/Module/Debug/Babel.php:134 msgid "Source input (Diaspora format)" msgstr "Originaltext (Diaspora Format): " -#: src/Module/Debug/Babel.php:157 +#: src/Module/Debug/Babel.php:143 msgid "Source input (Markdown)" msgstr "Originaltext (Markdown)" -#: src/Module/Debug/Babel.php:163 +#: src/Module/Debug/Babel.php:149 msgid "Markdown::convert (raw HTML)" msgstr "Markdown::convert (pures HTML)" -#: src/Module/Debug/Babel.php:168 +#: src/Module/Debug/Babel.php:154 msgid "Markdown::convert" msgstr "Markdown::convert" -#: src/Module/Debug/Babel.php:174 +#: src/Module/Debug/Babel.php:160 msgid "Markdown::toBBCode" msgstr "Markdown::toBBCode" -#: src/Module/Debug/Babel.php:181 +#: src/Module/Debug/Babel.php:167 msgid "Raw HTML input" msgstr "Reine HTML Eingabe" -#: src/Module/Debug/Babel.php:186 +#: src/Module/Debug/Babel.php:172 msgid "HTML Input" msgstr "HTML Eingabe" -#: src/Module/Debug/Babel.php:193 +#: src/Module/Debug/Babel.php:179 msgid "HTML Purified (raw)" msgstr "HTML Purified (raw)" -#: src/Module/Debug/Babel.php:198 +#: src/Module/Debug/Babel.php:184 msgid "HTML Purified (hex)" msgstr "HTML Purified (hex)" -#: src/Module/Debug/Babel.php:203 +#: src/Module/Debug/Babel.php:189 msgid "HTML Purified" msgstr "HTML Purified" -#: src/Module/Debug/Babel.php:209 +#: src/Module/Debug/Babel.php:195 msgid "HTML::toBBCode" msgstr "HTML::toBBCode" -#: src/Module/Debug/Babel.php:215 +#: src/Module/Debug/Babel.php:201 msgid "HTML::toBBCode => BBCode::convert" msgstr "HTML::toBBCode => BBCode::convert" -#: src/Module/Debug/Babel.php:220 +#: src/Module/Debug/Babel.php:206 msgid "HTML::toBBCode => BBCode::convert (raw HTML)" msgstr "HTML::toBBCode => BBCode::convert (pures HTML)" -#: src/Module/Debug/Babel.php:226 +#: src/Module/Debug/Babel.php:212 msgid "HTML::toBBCode => BBCode::toPlaintext" msgstr "HTML::toBBCode => BBCode::toPlaintext" -#: src/Module/Debug/Babel.php:232 +#: src/Module/Debug/Babel.php:218 msgid "HTML::toMarkdown" msgstr "HTML::toMarkdown" -#: src/Module/Debug/Babel.php:238 +#: src/Module/Debug/Babel.php:224 msgid "HTML::toPlaintext" msgstr "HTML::toPlaintext" -#: src/Module/Debug/Babel.php:244 +#: src/Module/Debug/Babel.php:230 msgid "HTML::toPlaintext (compact)" msgstr "HTML::toPlaintext (kompakt)" -#: src/Module/Debug/Babel.php:262 +#: src/Module/Debug/Babel.php:248 msgid "Decoded post" msgstr "Dekodierter Beitrag" -#: src/Module/Debug/Babel.php:283 +#: src/Module/Debug/Babel.php:269 msgid "Post array before expand entities" msgstr "Beiträgs Array bevor die Entitäten erweitert wurden." -#: src/Module/Debug/Babel.php:290 +#: src/Module/Debug/Babel.php:276 msgid "Post converted" msgstr "Konvertierter Beitrag" -#: src/Module/Debug/Babel.php:295 +#: src/Module/Debug/Babel.php:281 msgid "Converted body" msgstr "Konvertierter Beitragskörper" -#: src/Module/Debug/Babel.php:301 +#: src/Module/Debug/Babel.php:287 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:311 +#: src/Module/Debug/Babel.php:297 msgid "Babel Diagnostic" msgstr "Babel Diagnostik" -#: src/Module/Debug/Babel.php:313 +#: src/Module/Debug/Babel.php:299 msgid "Source text" msgstr "Quelltext" -#: src/Module/Debug/Babel.php:314 +#: src/Module/Debug/Babel.php:300 msgid "BBCode" msgstr "BBCode" -#: src/Module/Debug/Babel.php:316 +#: src/Module/Debug/Babel.php:302 msgid "Markdown" msgstr "Markdown" -#: src/Module/Debug/Babel.php:317 +#: src/Module/Debug/Babel.php:303 msgid "HTML" msgstr "HTML" -#: src/Module/Debug/Babel.php:319 +#: src/Module/Debug/Babel.php:305 msgid "Twitter Source / Tweet URL (requires API key)" msgstr "Twitter Quelle / Tweet URL (benötigt API Schlüssel)" -#: src/Module/Debug/Feed.php:53 src/Module/Filer/SaveTag.php:47 -#: src/Module/Settings/Profile/Index.php:180 +#: src/Module/Debug/Feed.php:39 src/Module/Filer/SaveTag.php:33 +#: src/Module/Settings/Profile/Index.php:166 msgid "You must be logged in to use this module" msgstr "Du musst eingeloggt sein, um dieses Modul benutzen zu können." -#: src/Module/Debug/Feed.php:78 +#: src/Module/Debug/Feed.php:64 msgid "Source URL" msgstr "URL der Quelle" -#: src/Module/Debug/Localtime.php:49 +#: src/Module/Debug/Localtime.php:35 msgid "Time Conversion" msgstr "Zeitumrechnung" -#: src/Module/Debug/Localtime.php:50 +#: src/Module/Debug/Localtime.php:36 msgid "" "Friendica provides this service for sharing events with other networks and " "friends in unknown timezones." msgstr "Friendica bietet diese Funktion an, um das Teilen von Events mit Kontakten zu vereinfachen, deren Zeitzone nicht ermittelt werden kann." -#: src/Module/Debug/Localtime.php:51 +#: src/Module/Debug/Localtime.php:37 #, php-format msgid "UTC time: %s" msgstr "UTC Zeit: %s" -#: src/Module/Debug/Localtime.php:54 +#: src/Module/Debug/Localtime.php:40 #, php-format msgid "Current timezone: %s" msgstr "Aktuelle Zeitzone: %s" -#: src/Module/Debug/Localtime.php:58 +#: src/Module/Debug/Localtime.php:44 #, php-format msgid "Converted localtime: %s" msgstr "Umgerechnete lokale Zeit: %s" -#: src/Module/Debug/Localtime.php:62 +#: src/Module/Debug/Localtime.php:48 msgid "Please select your timezone:" msgstr "Bitte wähle Deine Zeitzone:" -#: src/Module/Debug/Probe.php:38 src/Module/Debug/WebFinger.php:37 +#: src/Module/Debug/Probe.php:24 src/Module/Debug/WebFinger.php:23 msgid "Only logged in users are permitted to perform a probing." msgstr "Nur eingeloggten Benutzern ist das Untersuchen von Adressen gestattet." -#: src/Module/Debug/Probe.php:52 +#: src/Module/Debug/Probe.php:38 msgid "Probe Diagnostic" msgstr "Probe Diagnostik" -#: src/Module/Debug/Probe.php:53 +#: src/Module/Debug/Probe.php:39 msgid "Output" msgstr "Ergebnis" -#: src/Module/Debug/Probe.php:56 +#: src/Module/Debug/Probe.php:42 msgid "Lookup address" msgstr "Adresse nachschlagen" -#: src/Module/Debug/WebFinger.php:50 +#: src/Module/Debug/WebFinger.php:36 msgid "Webfinger Diagnostic" msgstr "Webfinger Diagnostik" -#: src/Module/Debug/WebFinger.php:52 +#: src/Module/Debug/WebFinger.php:38 msgid "Lookup address:" msgstr "Adresse nachschlagen:" -#: src/Module/Directory.php:75 +#: src/Module/Directory.php:61 msgid "No entries (some entries may be hidden)." msgstr "Keine Einträge (einige Einträge könnten versteckt sein)." -#: src/Module/Directory.php:91 +#: src/Module/Directory.php:77 msgid "Find on this site" msgstr "Auf diesem Server suchen" -#: src/Module/Directory.php:93 +#: src/Module/Directory.php:79 msgid "Results for:" msgstr "Ergebnisse für:" -#: src/Module/Directory.php:95 +#: src/Module/Directory.php:81 msgid "Site Directory" msgstr "Verzeichnis" -#: src/Module/Filer/RemoveTag.php:105 +#: src/Module/Filer/RemoveTag.php:91 msgid "Item was not deleted" msgstr "Item wurde nicht gelöscht" -#: src/Module/Filer/RemoveTag.php:115 +#: src/Module/Filer/RemoveTag.php:101 msgid "Item was not removed" msgstr "Item wurde nicht entfernt" -#: src/Module/Filer/SaveTag.php:73 +#: src/Module/Filer/SaveTag.php:59 msgid "- select -" msgstr "- auswählen -" -#: src/Module/FriendSuggest.php:82 +#: src/Module/FriendSuggest.php:68 msgid "Suggested contact not found." msgstr "Vorgeschlagener Kontakt wurde nicht gefunden." -#: src/Module/FriendSuggest.php:100 +#: src/Module/FriendSuggest.php:86 msgid "Friend suggestion sent." msgstr "Kontaktvorschlag gesendet." -#: src/Module/FriendSuggest.php:137 +#: src/Module/FriendSuggest.php:123 msgid "Suggest Friends" msgstr "Kontakte vorschlagen" -#: src/Module/FriendSuggest.php:140 +#: src/Module/FriendSuggest.php:126 #, php-format msgid "Suggest a friend for %s" msgstr "Schlage %s einen Kontakt vor" -#: src/Module/Friendica.php:81 +#: src/Module/Friendica.php:67 msgid "Installed addons/apps:" msgstr "Installierte Apps und Addons" -#: src/Module/Friendica.php:86 +#: src/Module/Friendica.php:72 msgid "No installed addons/apps" msgstr "Es sind keine Addons oder Apps installiert" -#: src/Module/Friendica.php:91 +#: src/Module/Friendica.php:77 #, php-format msgid "Read about the Terms of Service of this node." msgstr "Erfahre mehr über die Nutzungsbedingungen dieses Knotens." -#: src/Module/Friendica.php:98 +#: src/Module/Friendica.php:84 msgid "On this server the following remote servers are blocked." msgstr "Auf diesem Server werden die folgenden, entfernten Server blockiert." -#: src/Module/Friendica.php:101 -#: src/Module/Moderation/Blocklist/Server/Index.php:87 -#: src/Module/Moderation/Blocklist/Server/Index.php:111 -#: src/Module/Settings/Channels.php:232 +#: src/Module/Friendica.php:87 +#: src/Module/Moderation/Blocklist/Server/Index.php:73 +#: src/Module/Moderation/Blocklist/Server/Index.php:97 +#: src/Module/Settings/Channels.php:218 msgid "Reason for the block" msgstr "Begründung für die Blockierung" -#: src/Module/Friendica.php:103 +#: src/Module/Friendica.php:89 msgid "Download this list in CSV format" msgstr "Liste im CSV-Format herunterladen" -#: src/Module/Friendica.php:117 +#: src/Module/Friendica.php:103 #, php-format msgid "" "This is Friendica, version %s that is running at the web location %s. The " "database version is %s, the post update version is %s." msgstr "Diese Friendica-Instanz verwendet die Version %s, sie ist unter der folgenden Adresse im Web zu finden %s. Die Datenbankversion ist %s und die Post-Update-Version %s." -#: src/Module/Friendica.php:122 +#: src/Module/Friendica.php:108 msgid "" "Please visit Friendi.ca to learn more " "about the Friendica project." msgstr "Bitte besuche Friendi.ca, um mehr über das Friendica-Projekt zu erfahren." -#: src/Module/Friendica.php:123 +#: src/Module/Friendica.php:109 msgid "Bug reports and issues: please visit" msgstr "Probleme oder Fehler gefunden? Bitte besuche" -#: src/Module/Friendica.php:123 +#: src/Module/Friendica.php:109 msgid "the bugtracker at github" msgstr "den Bugtracker auf github" -#: src/Module/Friendica.php:124 +#: src/Module/Friendica.php:110 msgid "Suggestions, praise, etc. - please email \"info\" at \"friendi - dot - ca" msgstr "Vorschläge, Lob usw.: E-Mail an \"Info\" at \"Friendi - dot ca\"" -#: src/Module/HCard.php:45 +#: src/Module/HCard.php:31 msgid "No profile" msgstr "Kein Profil" -#: src/Module/HTTPException/MethodNotAllowed.php:31 +#: src/Module/HTTPException/MethodNotAllowed.php:17 msgid "Method Not Allowed." msgstr "Methode nicht erlaubt." -#: src/Module/Help.php:60 +#: src/Module/Help.php:46 msgid "Help:" msgstr "Hilfe:" -#: src/Module/Home.php:66 +#: src/Module/Home.php:52 #, php-format msgid "Welcome to %s" msgstr "Willkommen zu %s" -#: src/Module/Install.php:189 +#: src/Module/Install.php:175 msgid "Friendica Communications Server - Setup" msgstr "Friendica Komunikationsserver - Installation" -#: src/Module/Install.php:200 +#: src/Module/Install.php:186 msgid "System check" msgstr "Systemtest" -#: src/Module/Install.php:202 src/Module/Install.php:247 -#: src/Module/Install.php:326 +#: src/Module/Install.php:188 src/Module/Install.php:233 +#: src/Module/Install.php:312 msgid "Requirement not satisfied" msgstr "Anforderung ist nicht erfüllt" -#: src/Module/Install.php:203 +#: src/Module/Install.php:189 msgid "Optional requirement not satisfied" msgstr "Optionale Anforderung ist nicht erfüllt" -#: src/Module/Install.php:204 +#: src/Module/Install.php:190 msgid "OK" msgstr "Ok" -#: src/Module/Install.php:208 +#: src/Module/Install.php:194 msgid "Next" msgstr "Nächste" -#: src/Module/Install.php:209 +#: src/Module/Install.php:195 msgid "Check again" msgstr "Noch einmal testen" -#: src/Module/Install.php:222 +#: src/Module/Install.php:208 msgid "Base settings" msgstr "Grundeinstellungen" -#: src/Module/Install.php:224 +#: src/Module/Install.php:210 msgid "Base path to installation" msgstr "Basis-Pfad zur Installation" -#: src/Module/Install.php:226 +#: src/Module/Install.php:212 msgid "" "If the system cannot detect the correct path to your installation, enter the" " correct path here. This setting should only be set if you are using a " "restricted system and symbolic links to your webroot." msgstr "Falls das System nicht den korrekten Pfad zu deiner Installation gefunden hat, gib den richtigen Pfad bitte hier ein. Du solltest hier den Pfad nur auf einem eingeschränkten System angeben müssen, bei dem du mit symbolischen Links auf dein Webverzeichnis verweist." -#: src/Module/Install.php:229 +#: src/Module/Install.php:215 msgid "The Friendica system URL" msgstr "Die Friendica System URL" -#: src/Module/Install.php:231 +#: src/Module/Install.php:217 msgid "" "Overwrite this field in case the system URL determination isn't right, " "otherwise leave it as is." msgstr "Überschreibe dieses Feld, falls die System-URL-Erkennung nicht korrekt ist, ansonsten lasse es unverändert." -#: src/Module/Install.php:242 +#: src/Module/Install.php:228 msgid "Database connection" msgstr "Datenbankverbindung" -#: src/Module/Install.php:243 +#: src/Module/Install.php:229 msgid "" "In order to install Friendica we need to know how to connect to your " "database." msgstr "Um Friendica installieren zu können, müssen wir wissen, wie wir mit Deiner Datenbank Kontakt aufnehmen können." -#: src/Module/Install.php:244 +#: src/Module/Install.php:230 msgid "" "Please contact your hosting provider or site administrator if you have " "questions about these settings." msgstr "Bitte kontaktiere den Hosting-Provider oder den Administrator der Seite, falls du Fragen zu diesen Einstellungen haben solltest." -#: src/Module/Install.php:245 +#: src/Module/Install.php:231 msgid "" "The database you specify below should already exist. If it does not, please " "create it before continuing." msgstr "Die Datenbank, die du unten angibst, sollte bereits existieren. Ist dies noch nicht der Fall, erzeuge sie bitte, bevor du mit der Installation fortfährst." -#: src/Module/Install.php:252 +#: src/Module/Install.php:238 msgid "Database Server Name" msgstr "Datenbank-Server" -#: src/Module/Install.php:257 +#: src/Module/Install.php:243 msgid "Database Login Name" msgstr "Datenbank-Nutzer" -#: src/Module/Install.php:263 +#: src/Module/Install.php:249 msgid "Database Login Password" msgstr "Datenbank-Passwort" -#: src/Module/Install.php:265 +#: src/Module/Install.php:251 msgid "For security reasons the password must not be empty" msgstr "Aus Sicherheitsgründen darf das Passwort nicht leer sein." -#: src/Module/Install.php:268 +#: src/Module/Install.php:254 msgid "Database Name" msgstr "Datenbank-Name" -#: src/Module/Install.php:272 src/Module/Install.php:300 +#: src/Module/Install.php:258 src/Module/Install.php:286 msgid "Please select a default timezone for your website" msgstr "Bitte wähle die Standardzeitzone Deiner Webseite" -#: src/Module/Install.php:287 +#: src/Module/Install.php:273 msgid "Site settings" msgstr "Server-Einstellungen" -#: src/Module/Install.php:295 +#: src/Module/Install.php:281 msgid "Site administrator email address" msgstr "E-Mail-Adresse des Administrators" -#: src/Module/Install.php:297 +#: src/Module/Install.php:283 msgid "" "Your account email address must match this in order to use the web admin " "panel." msgstr "Die E-Mail-Adresse, die in Deinem Friendica-Account eingetragen ist, muss mit dieser Adresse übereinstimmen, damit du das Admin-Panel benutzen kannst." -#: src/Module/Install.php:304 +#: src/Module/Install.php:290 msgid "System Language:" msgstr "Systemsprache:" -#: src/Module/Install.php:306 +#: src/Module/Install.php:292 msgid "" "Set the default language for your Friendica installation interface and to " "send emails." msgstr "Wähle die Standardsprache für deine Friendica-Installations-Oberfläche und den E-Mail-Versand" -#: src/Module/Install.php:318 +#: src/Module/Install.php:304 msgid "Your Friendica site database has been installed." msgstr "Die Datenbank Deiner Friendica-Seite wurde installiert." -#: src/Module/Install.php:328 +#: src/Module/Install.php:314 msgid "Installation finished" msgstr "Installation abgeschlossen" -#: src/Module/Install.php:348 +#: src/Module/Install.php:334 msgid "

What next

" msgstr "

Wie geht es weiter?

" -#: src/Module/Install.php:349 +#: src/Module/Install.php:335 msgid "" "IMPORTANT: You will need to [manually] setup a scheduled task for the " "worker." msgstr "Wichtig: du musst [manuell] einen Cronjob (o.ä.) für den Worker einrichten." -#: src/Module/Install.php:352 +#: src/Module/Install.php:338 #, php-format msgid "" "Go to your new Friendica node registration page " @@ -7748,40 +7743,40 @@ msgid "" " administrator email. This will allow you to enter the site admin panel." msgstr "Du solltest nun die Seite zur Nutzerregistrierung deiner neuen Friendica Instanz besuchen und einen neuen Nutzer einrichten. Bitte denke daran, dieselbe E-Mail Adresse anzugeben, die du auch als Administrator-E-Mail angegeben hast, damit du das Admin-Panel verwenden kannst." -#: src/Module/Invite.php:57 +#: src/Module/Invite.php:43 msgid "Total invitation limit exceeded." msgstr "Limit für Einladungen erreicht." -#: src/Module/Invite.php:82 +#: src/Module/Invite.php:68 #, php-format msgid "%s : Not a valid email address." msgstr "%s: Keine gültige Email Adresse." -#: src/Module/Invite.php:108 +#: src/Module/Invite.php:94 msgid "Please join us on Friendica" msgstr "Ich lade dich zu unserem sozialen Netzwerk Friendica ein" -#: src/Module/Invite.php:117 +#: src/Module/Invite.php:103 msgid "Invitation limit exceeded. Please contact your site administrator." msgstr "Limit für Einladungen erreicht. Bitte kontaktiere des Administrator der Seite." -#: src/Module/Invite.php:121 +#: src/Module/Invite.php:107 #, php-format msgid "%s : Message delivery failed." msgstr "%s: Zustellung der Nachricht fehlgeschlagen." -#: src/Module/Invite.php:125 +#: src/Module/Invite.php:111 #, php-format msgid "%d message sent." msgid_plural "%d messages sent." msgstr[0] "%d Nachricht gesendet." msgstr[1] "%d Nachrichten gesendet." -#: src/Module/Invite.php:143 +#: src/Module/Invite.php:129 msgid "You have no more invitations available" msgstr "Du hast keine weiteren Einladungen" -#: src/Module/Invite.php:150 +#: src/Module/Invite.php:136 #, php-format msgid "" "Visit %s for a list of public sites that you can join. Friendica members on " @@ -7789,14 +7784,14 @@ msgid "" " other social networks." msgstr "Besuche %s für eine Liste der öffentlichen Server, denen du beitreten kannst. Friendica-Mitglieder unterschiedlicher Server können sich sowohl alle miteinander verbinden, als auch mit Mitgliedern anderer sozialer Netzwerke." -#: src/Module/Invite.php:152 +#: src/Module/Invite.php:138 #, php-format msgid "" "To accept this invitation, please visit and register at %s or any other " "public Friendica website." msgstr "Um diese Kontaktanfrage zu akzeptieren, besuche und registriere dich bitte bei %s oder einer anderen öffentlichen Friendica-Website." -#: src/Module/Invite.php:153 +#: src/Module/Invite.php:139 #, php-format msgid "" "Friendica sites all inter-connect to create a huge privacy-enhanced social " @@ -7805,337 +7800,337 @@ msgid "" "sites you can join." msgstr "Friendica Server verbinden sich alle untereinander, um ein großes, datenschutzorientiertes Soziales Netzwerk zu bilden, das von seinen Mitgliedern betrieben und kontrolliert wird. Du kannst dich auch mit vielen üblichen Sozialen Netzwerken verbinden. Besuche %s für eine Liste alternativer Friendica-Server, denen du beitreten kannst." -#: src/Module/Invite.php:157 +#: src/Module/Invite.php:143 msgid "" "Our apologies. This system is not currently configured to connect with other" " public sites or invite members." msgstr "Es tut uns leid. Dieses System ist zurzeit nicht dafür konfiguriert, sich mit anderen öffentlichen Seiten zu verbinden oder Mitglieder einzuladen." -#: src/Module/Invite.php:160 +#: src/Module/Invite.php:146 msgid "" "Friendica sites all inter-connect to create a huge privacy-enhanced social " "web that is owned and controlled by its members. They can also connect with " "many traditional social networks." msgstr "Friendica Server verbinden sich alle untereinander, um ein großes, datenschutzorientiertes Soziales Netzwerk zu bilden, das von seinen Mitgliedern betrieben und kontrolliert wird. Du kannst dich auch mit vielen üblichen Sozialen Netzwerken verbinden." -#: src/Module/Invite.php:159 +#: src/Module/Invite.php:145 #, php-format msgid "To accept this invitation, please visit and register at %s." msgstr "Um diese Kontaktanfrage zu akzeptieren, besuche und registriere dich bitte bei %s." -#: src/Module/Invite.php:167 +#: src/Module/Invite.php:153 msgid "Send invitations" msgstr "Einladungen senden" -#: src/Module/Invite.php:168 +#: src/Module/Invite.php:154 msgid "Enter email addresses, one per line:" msgstr "E-Mail-Adressen eingeben, eine pro Zeile:" -#: src/Module/Invite.php:172 +#: src/Module/Invite.php:158 msgid "" "You are cordially invited to join me and other close friends on Friendica - " "and help us to create a better social web." msgstr "Du bist herzlich dazu eingeladen, dich mir und anderen guten Freunden auf Friendica anzuschließen - und ein besseres, soziales Netz aufzubauen." -#: src/Module/Invite.php:174 +#: src/Module/Invite.php:160 msgid "You will need to supply this invitation code: $invite_code" msgstr "Du benötigst den folgenden Einladungscode: $invite_code" -#: src/Module/Invite.php:174 +#: src/Module/Invite.php:160 msgid "" "Once you have registered, please connect with me via my profile page at:" msgstr "Sobald du registriert bist, kontaktiere mich bitte auf meiner Profilseite:" -#: src/Module/Invite.php:176 +#: src/Module/Invite.php:162 msgid "" "For more information about the Friendica project and why we feel it is " "important, please visit http://friendi.ca" msgstr "Für weitere Informationen über das Friendica-Projekt und warum wir es für ein wichtiges Projekt halten, besuche bitte http://friendi.ca." -#: src/Module/Item/Compose.php:94 +#: src/Module/Item/Compose.php:80 msgid "Please enter a post body." msgstr "Bitte gibt den Text des Beitrags an" -#: src/Module/Item/Compose.php:105 +#: src/Module/Item/Compose.php:91 msgid "This feature is only available with the frio theme." msgstr "Diese Seite kann ausschließlich mit dem Frio Theme verwendet werden." -#: src/Module/Item/Compose.php:129 +#: src/Module/Item/Compose.php:115 msgid "Compose new personal note" msgstr "Neue persönliche Notiz verfassen" -#: src/Module/Item/Compose.php:138 +#: src/Module/Item/Compose.php:124 msgid "Compose new post" msgstr "Neuen Beitrag verfassen" -#: src/Module/Item/Compose.php:194 +#: src/Module/Item/Compose.php:180 msgid "Visibility" msgstr "Sichtbarkeit" -#: src/Module/Item/Compose.php:210 +#: src/Module/Item/Compose.php:196 msgid "Clear the location" msgstr "Ort löschen" -#: src/Module/Item/Compose.php:211 +#: src/Module/Item/Compose.php:197 msgid "Location services are unavailable on your device" msgstr "Ortungsdienste sind auf Ihrem Gerät nicht verfügbar" -#: src/Module/Item/Compose.php:212 +#: src/Module/Item/Compose.php:198 msgid "" "Location services are disabled. Please check the website's permissions on " "your device" msgstr "Ortungsdienste sind deaktiviert. Bitte überprüfe die Berechtigungen der Website auf deinem Gerät" -#: src/Module/Item/Compose.php:218 +#: src/Module/Item/Compose.php:204 msgid "" "You can make this page always open when you use the New Post button in the " "Theme Customization settings." msgstr "Wenn du magst, kannst du unter den Benutzerdefinierte Theme-Einstellungen einstellen, dass diese Seite immer geöffnet wird, wenn du den \"Neuer Beitrag\" Button verwendest." -#: src/Module/Item/Feed.php:86 +#: src/Module/Item/Feed.php:72 msgid "The feed for this item is unavailable." msgstr "Der Feed für diesen Beitrag ist nicht verfügbar." -#: src/Module/Item/Follow.php:51 +#: src/Module/Item/Follow.php:37 msgid "Unable to follow this item." msgstr "Konnte dem Beitrag nicht folgen." -#: src/Module/Maintenance.php:48 src/Module/Maintenance.php:53 +#: src/Module/Maintenance.php:34 src/Module/Maintenance.php:39 msgid "System down for maintenance" msgstr "System zur Wartung abgeschaltet" -#: src/Module/Maintenance.php:54 +#: src/Module/Maintenance.php:40 msgid "" "This Friendica node is currently in maintenance mode, either automatically " "because it is self-updating or manually by the node administrator. This " "condition should be temporary, please come back in a few minutes." msgstr "Diese Friendica Instanz befindet sich derzeit im Wartungsmodus, entweder aufgrund von automatischen Updateprozessen oder weil die Administratoren der Instanz den Wartungsmodus aktiviert haben. Dies sollte ein vorübergehender Zustand sein. Bitte versuche es in ein paar Minuten erneut." -#: src/Module/Manifest.php:40 +#: src/Module/Manifest.php:26 msgid "A Decentralized Social Network" msgstr "Ein dezentrales Soziales Netzwerk" -#: src/Module/Media/Attachment/Browser.php:58 -#: src/Module/Media/Photo/Browser.php:59 +#: src/Module/Media/Attachment/Browser.php:44 +#: src/Module/Media/Photo/Browser.php:45 msgid "You need to be logged in to access this page." msgstr "Du musst angemeldet sein, um auf diese Seite zuzugreifen. " -#: src/Module/Media/Attachment/Browser.php:74 +#: src/Module/Media/Attachment/Browser.php:60 msgid "Files" msgstr "Dateien" -#: src/Module/Media/Attachment/Browser.php:79 -#: src/Module/Media/Photo/Browser.php:90 -#: src/Module/Settings/Profile/Photo/Index.php:127 +#: src/Module/Media/Attachment/Browser.php:65 +#: src/Module/Media/Photo/Browser.php:76 +#: src/Module/Settings/Profile/Photo/Index.php:113 msgid "Upload" msgstr "Hochladen" -#: src/Module/Media/Attachment/Upload.php:97 +#: src/Module/Media/Attachment/Upload.php:83 msgid "Sorry, maybe your upload is bigger than the PHP configuration allows" msgstr "Entschuldige, die Datei scheint größer zu sein, als es die PHP-Konfiguration erlaubt." -#: src/Module/Media/Attachment/Upload.php:97 +#: src/Module/Media/Attachment/Upload.php:83 msgid "Or - did you try to upload an empty file?" msgstr "Oder - hast du versucht, eine leere Datei hochzuladen?" -#: src/Module/Media/Attachment/Upload.php:104 +#: src/Module/Media/Attachment/Upload.php:90 #, php-format msgid "File exceeds size limit of %s" msgstr "Die Datei ist größer als das erlaubte Limit von %s" -#: src/Module/Media/Attachment/Upload.php:114 +#: src/Module/Media/Attachment/Upload.php:100 msgid "File upload failed." msgstr "Hochladen der Datei fehlgeschlagen." -#: src/Module/Media/Photo/Upload.php:150 src/Module/Media/Photo/Upload.php:151 -#: src/Module/Profile/Photos.php:215 -#: src/Module/Settings/Profile/Photo/Index.php:67 +#: src/Module/Media/Photo/Upload.php:136 src/Module/Media/Photo/Upload.php:137 +#: src/Module/Profile/Photos.php:201 +#: src/Module/Settings/Profile/Photo/Index.php:53 msgid "Unable to process image." msgstr "Konnte das Bild nicht bearbeiten." -#: src/Module/Media/Photo/Upload.php:176 src/Module/Profile/Photos.php:235 -#: src/Module/Settings/Profile/Photo/Index.php:94 +#: src/Module/Media/Photo/Upload.php:162 src/Module/Profile/Photos.php:221 +#: src/Module/Settings/Profile/Photo/Index.php:80 msgid "Image upload failed." msgstr "Hochladen des Bildes gescheitert." -#: src/Module/Moderation/BaseUsers.php:72 +#: src/Module/Moderation/BaseUsers.php:59 msgid "List of all users" msgstr "Liste aller Benutzerkonten" -#: src/Module/Moderation/BaseUsers.php:77 +#: src/Module/Moderation/BaseUsers.php:64 msgid "Active" msgstr "Aktive" -#: src/Module/Moderation/BaseUsers.php:80 +#: src/Module/Moderation/BaseUsers.php:67 msgid "List of active accounts" msgstr "Liste der aktiven Benutzerkonten" -#: src/Module/Moderation/BaseUsers.php:88 +#: src/Module/Moderation/BaseUsers.php:75 msgid "List of pending registrations" msgstr "Liste der anstehenden Benutzerkonten" -#: src/Module/Moderation/BaseUsers.php:96 +#: src/Module/Moderation/BaseUsers.php:83 msgid "List of blocked users" msgstr "Liste der geblockten Benutzer" -#: src/Module/Moderation/BaseUsers.php:101 +#: src/Module/Moderation/BaseUsers.php:88 msgid "Deleted" msgstr "Gelöscht" -#: src/Module/Moderation/BaseUsers.php:104 +#: src/Module/Moderation/BaseUsers.php:91 msgid "List of pending user deletions" msgstr "Liste der auf Löschung wartenden Benutzer" -#: src/Module/Moderation/BaseUsers.php:119 src/Module/Settings/Account.php:487 +#: src/Module/Moderation/BaseUsers.php:108 src/Module/Settings/Account.php:473 msgid "Normal Account Page" msgstr "Normales Konto" -#: src/Module/Moderation/BaseUsers.php:120 src/Module/Settings/Account.php:494 +#: src/Module/Moderation/BaseUsers.php:109 src/Module/Settings/Account.php:480 msgid "Soapbox Page" msgstr "Marktschreier-Konto" -#: src/Module/Moderation/BaseUsers.php:121 src/Module/Settings/Account.php:501 +#: src/Module/Moderation/BaseUsers.php:110 src/Module/Settings/Account.php:487 msgid "Public Group" msgstr "Öffentliche Gruppe" -#: src/Module/Moderation/BaseUsers.php:122 src/Module/Settings/Account.php:508 +#: src/Module/Moderation/BaseUsers.php:111 src/Module/Settings/Account.php:494 msgid "Public Group - Restricted" msgstr "Öffentliche Gruppe - Beschränkt" -#: src/Module/Moderation/BaseUsers.php:123 src/Module/Settings/Account.php:515 +#: src/Module/Moderation/BaseUsers.php:112 src/Module/Settings/Account.php:501 msgid "Automatic Friend Page" msgstr "Automatische Freunde-Seite" -#: src/Module/Moderation/BaseUsers.php:124 +#: src/Module/Moderation/BaseUsers.php:113 msgid "Private Group" msgstr "Private Gruppe" -#: src/Module/Moderation/BaseUsers.php:127 -#: src/Module/Moderation/Summary.php:53 src/Module/Settings/Account.php:458 +#: src/Module/Moderation/BaseUsers.php:116 +#: src/Module/Moderation/Summary.php:39 src/Module/Settings/Account.php:444 msgid "Personal Page" msgstr "Persönliche Seite" -#: src/Module/Moderation/BaseUsers.php:128 -#: src/Module/Moderation/Summary.php:54 src/Module/Settings/Account.php:465 +#: src/Module/Moderation/BaseUsers.php:117 +#: src/Module/Moderation/Summary.php:40 src/Module/Settings/Account.php:451 msgid "Organisation Page" msgstr "Organisationsseite" -#: src/Module/Moderation/BaseUsers.php:129 -#: src/Module/Moderation/Summary.php:55 src/Module/Settings/Account.php:472 +#: src/Module/Moderation/BaseUsers.php:118 +#: src/Module/Moderation/Summary.php:41 src/Module/Settings/Account.php:458 msgid "News Page" msgstr "Nachrichtenseite" -#: src/Module/Moderation/BaseUsers.php:130 -#: src/Module/Moderation/Summary.php:56 src/Module/Settings/Account.php:479 +#: src/Module/Moderation/BaseUsers.php:119 +#: src/Module/Moderation/Summary.php:42 src/Module/Settings/Account.php:465 msgid "Community Group" msgstr "Gemeinschaftsgruppe" -#: src/Module/Moderation/Blocklist/Contact.php:70 +#: src/Module/Moderation/Blocklist/Contact.php:56 msgid "You can't block a local contact, please block the user instead" msgstr "Lokale Kontakte können nicht geblockt werden. Bitte blocke den Nutzer stattdessen." -#: src/Module/Moderation/Blocklist/Contact.php:89 +#: src/Module/Moderation/Blocklist/Contact.php:75 #, php-format msgid "%s contact unblocked" msgid_plural "%s contacts unblocked" msgstr[0] "%sKontakt wieder freigegeben" msgstr[1] "%s Kontakte wieder freigegeben" -#: src/Module/Moderation/Blocklist/Contact.php:111 +#: src/Module/Moderation/Blocklist/Contact.php:97 msgid "Remote Contact Blocklist" msgstr "Blockliste entfernter Kontakte" -#: src/Module/Moderation/Blocklist/Contact.php:112 +#: src/Module/Moderation/Blocklist/Contact.php:98 msgid "" "This page allows you to prevent any message from a remote contact to reach " "your node." msgstr "Auf dieser Seite kannst du Accounts von anderen Knoten blockieren und damit verhindern, dass ihre Beiträge von deinem Knoten angenommen werden." -#: src/Module/Moderation/Blocklist/Contact.php:113 +#: src/Module/Moderation/Blocklist/Contact.php:99 msgid "Block Remote Contact" msgstr "Blockiere entfernten Kontakt" -#: src/Module/Moderation/Blocklist/Contact.php:114 -#: src/Module/Moderation/Users/Active.php:135 -#: src/Module/Moderation/Users/Blocked.php:135 -#: src/Module/Moderation/Users/Index.php:149 -#: src/Module/Moderation/Users/Pending.php:98 +#: src/Module/Moderation/Blocklist/Contact.php:100 +#: src/Module/Moderation/Users/Active.php:121 +#: src/Module/Moderation/Users/Blocked.php:121 +#: src/Module/Moderation/Users/Index.php:135 +#: src/Module/Moderation/Users/Pending.php:84 msgid "select all" msgstr "Alle auswählen" -#: src/Module/Moderation/Blocklist/Contact.php:115 +#: src/Module/Moderation/Blocklist/Contact.php:101 msgid "select none" msgstr "Auswahl aufheben" -#: src/Module/Moderation/Blocklist/Contact.php:118 +#: src/Module/Moderation/Blocklist/Contact.php:104 msgid "No remote contact is blocked from this node." msgstr "Derzeit werden keine Kontakte auf diesem Knoten blockiert." -#: src/Module/Moderation/Blocklist/Contact.php:120 +#: src/Module/Moderation/Blocklist/Contact.php:106 msgid "Blocked Remote Contacts" msgstr "Blockierte Kontakte von anderen Knoten" -#: src/Module/Moderation/Blocklist/Contact.php:121 +#: src/Module/Moderation/Blocklist/Contact.php:107 msgid "Block New Remote Contact" msgstr "Blockieren von weiteren Kontakten" -#: src/Module/Moderation/Blocklist/Contact.php:122 -#: src/Module/Moderation/Reports.php:116 +#: src/Module/Moderation/Blocklist/Contact.php:108 +#: src/Module/Moderation/Reports.php:102 msgid "Photo" msgstr "Foto:" -#: src/Module/Moderation/Blocklist/Contact.php:122 +#: src/Module/Moderation/Blocklist/Contact.php:108 msgid "Reason" msgstr "Grund" -#: src/Module/Moderation/Blocklist/Contact.php:128 +#: src/Module/Moderation/Blocklist/Contact.php:114 #, php-format msgid "%s total blocked contact" msgid_plural "%s total blocked contacts" msgstr[0] "Insgesamt %s blockierter Kontakt" msgstr[1] "Insgesamt %s blockierte Kontakte" -#: src/Module/Moderation/Blocklist/Contact.php:131 +#: src/Module/Moderation/Blocklist/Contact.php:117 msgid "URL of the remote contact to block." msgstr "Die URL des entfernten Kontakts, der blockiert werden soll." -#: src/Module/Moderation/Blocklist/Contact.php:132 +#: src/Module/Moderation/Blocklist/Contact.php:118 msgid "Also purge contact" msgstr "Kontakt auch löschen" -#: src/Module/Moderation/Blocklist/Contact.php:132 +#: src/Module/Moderation/Blocklist/Contact.php:118 msgid "" "Removes all content related to this contact from the node. Keeps the contact" " record. This action cannot be undone." msgstr "Entfernt alle Inhalte von diesem Knoten, die in Verbindung zu dem Kontakt stehen. Der Kontakt-Eintrag bleibt erhalten. Dieser Vorgang kann nicht rückgängig gemacht werden." -#: src/Module/Moderation/Blocklist/Contact.php:133 -#: src/Module/Moderation/Blocklist/Server/Import.php:124 +#: src/Module/Moderation/Blocklist/Contact.php:119 +#: src/Module/Moderation/Blocklist/Server/Import.php:108 msgid "Block Reason" msgstr "Sperrgrund" -#: src/Module/Moderation/Blocklist/Server/Add.php:80 +#: src/Module/Moderation/Blocklist/Server/Add.php:66 msgid "Server domain pattern added to the blocklist." msgstr "Server Domain Muster zur Blockliste hinzugefügt" -#: src/Module/Moderation/Blocklist/Server/Add.php:88 +#: src/Module/Moderation/Blocklist/Server/Add.php:74 #, php-format msgid "%s server scheduled to be purged." msgid_plural "%s servers scheduled to be purged." msgstr[0] "%s Server für die Löschung eingeplant." msgstr[1] "%s Server für die Löschung eingeplant." -#: src/Module/Moderation/Blocklist/Server/Add.php:120 -#: src/Module/Moderation/Blocklist/Server/Import.php:117 +#: src/Module/Moderation/Blocklist/Server/Add.php:106 +#: src/Module/Moderation/Blocklist/Server/Import.php:101 msgid "← Return to the list" msgstr "← zurück zur Liste" -#: src/Module/Moderation/Blocklist/Server/Add.php:122 +#: src/Module/Moderation/Blocklist/Server/Add.php:108 msgid "Block A New Server Domain Pattern" msgstr "Neues Domainmuster blockieren" -#: src/Module/Moderation/Blocklist/Server/Add.php:123 -#: src/Module/Moderation/Blocklist/Server/Index.php:99 +#: src/Module/Moderation/Blocklist/Server/Add.php:109 +#: src/Module/Moderation/Blocklist/Server/Index.php:85 msgid "" "

The server domain pattern syntax is case-insensitive shell wildcard, comprising the following special characters:

\n" "
    \n" @@ -8144,57 +8139,57 @@ msgid "" "
" msgstr "

Die Syntax für das Domainmuster ist unabhängig von der Groß-/Kleinschreibung. Shell Willdcards bestehen aus den folgenden Zeichen:

\n
    \n
  • *: Eine beliebige Anzahl von Zeichen
  • \n
  • ?: Ein einzelnes Zeichen
  • \n
" -#: src/Module/Moderation/Blocklist/Server/Add.php:128 -#: src/Module/Moderation/Blocklist/Server/Index.php:107 +#: src/Module/Moderation/Blocklist/Server/Add.php:114 +#: src/Module/Moderation/Blocklist/Server/Index.php:93 msgid "Check pattern" msgstr "Muster überprüfen" -#: src/Module/Moderation/Blocklist/Server/Add.php:129 +#: src/Module/Moderation/Blocklist/Server/Add.php:115 msgid "Matching known servers" msgstr "Passende bekannte Server" -#: src/Module/Moderation/Blocklist/Server/Add.php:130 -#: src/Module/Settings/Server/Action.php:76 -#: src/Module/Settings/Server/Index.php:106 +#: src/Module/Moderation/Blocklist/Server/Add.php:116 +#: src/Module/Settings/Server/Action.php:62 +#: src/Module/Settings/Server/Index.php:92 msgid "Server Name" msgstr "Server Name" -#: src/Module/Moderation/Blocklist/Server/Add.php:131 +#: src/Module/Moderation/Blocklist/Server/Add.php:117 msgid "Server Domain" msgstr "Server Domain" -#: src/Module/Moderation/Blocklist/Server/Add.php:132 +#: src/Module/Moderation/Blocklist/Server/Add.php:118 msgid "Known Contacts" msgstr "Bekannte Kontakte" -#: src/Module/Moderation/Blocklist/Server/Add.php:133 +#: src/Module/Moderation/Blocklist/Server/Add.php:119 #, php-format msgid "%d known server" msgid_plural "%d known servers" msgstr[0] "%d bekannter Server" msgstr[1] "%d bekannte Server" -#: src/Module/Moderation/Blocklist/Server/Add.php:134 +#: src/Module/Moderation/Blocklist/Server/Add.php:120 msgid "Add pattern to the blocklist" msgstr "Muster zur Blockliste hinzufügen" -#: src/Module/Moderation/Blocklist/Server/Add.php:136 -#: src/Module/Moderation/Blocklist/Server/Index.php:116 +#: src/Module/Moderation/Blocklist/Server/Add.php:122 +#: src/Module/Moderation/Blocklist/Server/Index.php:102 msgid "Server Domain Pattern" msgstr "Server Domain Muster" -#: src/Module/Moderation/Blocklist/Server/Add.php:136 -#: src/Module/Moderation/Blocklist/Server/Index.php:116 +#: src/Module/Moderation/Blocklist/Server/Add.php:122 +#: src/Module/Moderation/Blocklist/Server/Index.php:102 msgid "" "The domain pattern of the new server to add to the blocklist. Do not include" " the protocol." msgstr "Das Muster zur Erkennung der Domain, das zur Blockliste hinzugefügt werden soll. Das Protokoll nicht mir angeben." -#: src/Module/Moderation/Blocklist/Server/Add.php:137 +#: src/Module/Moderation/Blocklist/Server/Add.php:123 msgid "Purge server" msgstr "Server entfernen" -#: src/Module/Moderation/Blocklist/Server/Add.php:137 +#: src/Module/Moderation/Blocklist/Server/Add.php:123 msgid "" "Also purges all the locally stored content authored by the known contacts " "registered on that server. Keeps the contacts and the server records. This " @@ -8206,301 +8201,301 @@ msgid_plural "" msgstr[0] "Sollen die Inhalte der bekannten Kontakte die auf diesem Server registriert sind, auch lokal gelöscht werden. Die Kontakt- und Server-Einträge verbleiben in der Datenbank deines Servers. Diese Aktion kann nicht rückgängig gemacht werden." msgstr[1] "Sollen die Inhalte der bekannten Kontakte die auf diesen Servern registriert sind, auch lokal gelöscht werden. Die Kontakt- und Server-Einträge verbleiben in der Datenbank deines Servers. Diese Aktion kann nicht rückgängig gemacht werden." -#: src/Module/Moderation/Blocklist/Server/Add.php:138 +#: src/Module/Moderation/Blocklist/Server/Add.php:124 msgid "Block reason" msgstr "Begründung der Blockierung" -#: src/Module/Moderation/Blocklist/Server/Add.php:138 +#: src/Module/Moderation/Blocklist/Server/Add.php:124 msgid "" "The reason why you blocked this server domain pattern. This reason will be " "shown publicly in the server information page." msgstr "Warum werden Server die diesem Domainmuster entsprechen geblockt? Die Begründung wird öffentlich auf der Server-Informationsseite sichtbar sein." -#: src/Module/Moderation/Blocklist/Server/Import.php:74 -#: src/Module/Moderation/Blocklist/Server/Import.php:83 +#: src/Module/Moderation/Blocklist/Server/Import.php:60 +#: src/Module/Moderation/Blocklist/Server/Import.php:67 msgid "Error importing pattern file" msgstr "Fehler beim Import der Muster Datei" -#: src/Module/Moderation/Blocklist/Server/Import.php:89 +#: src/Module/Moderation/Blocklist/Server/Import.php:74 msgid "Local blocklist replaced with the provided file." msgstr "Lokale Blockliste wurde durch die bereitgestellte Datei ersetzt." -#: src/Module/Moderation/Blocklist/Server/Import.php:93 +#: src/Module/Moderation/Blocklist/Server/Import.php:78 #, php-format msgid "%d pattern was added to the local blocklist." msgid_plural "%d patterns were added to the local blocklist." msgstr[0] "%d Muster wurde zur lokalen Blockliste hinzugefügt." msgstr[1] "%d Muster wurden zur lokalen Blockliste hinzugefügt." -#: src/Module/Moderation/Blocklist/Server/Import.php:95 +#: src/Module/Moderation/Blocklist/Server/Import.php:80 msgid "No pattern was added to the local blocklist." msgstr "Kein Muster wurde zur lokalen Blockliste hinzugefügt." -#: src/Module/Moderation/Blocklist/Server/Import.php:119 +#: src/Module/Moderation/Blocklist/Server/Import.php:103 msgid "Import a Server Domain Pattern Blocklist" msgstr "Server Domain Muster Blockliste importieren" -#: src/Module/Moderation/Blocklist/Server/Import.php:120 +#: src/Module/Moderation/Blocklist/Server/Import.php:104 msgid "" "

This file can be downloaded from the /friendica path of any " "Friendica server.

" msgstr "

Diese Datei kann vom /friendica Pfad auf jedem Friendica Server heruntergeladen werden.

" -#: src/Module/Moderation/Blocklist/Server/Import.php:121 -#: src/Module/Moderation/Blocklist/Server/Index.php:106 +#: src/Module/Moderation/Blocklist/Server/Import.php:105 +#: src/Module/Moderation/Blocklist/Server/Index.php:92 msgid "Upload file" msgstr "Datei hochladen" -#: src/Module/Moderation/Blocklist/Server/Import.php:122 +#: src/Module/Moderation/Blocklist/Server/Import.php:106 msgid "Patterns to import" msgstr "Zu importierende Muster" -#: src/Module/Moderation/Blocklist/Server/Import.php:123 +#: src/Module/Moderation/Blocklist/Server/Import.php:107 msgid "Domain Pattern" msgstr "Domain Muster" -#: src/Module/Moderation/Blocklist/Server/Import.php:125 +#: src/Module/Moderation/Blocklist/Server/Import.php:109 msgid "Import Mode" msgstr "Importmodus" -#: src/Module/Moderation/Blocklist/Server/Import.php:126 +#: src/Module/Moderation/Blocklist/Server/Import.php:110 msgid "Import Patterns" msgstr "Muster importieren" -#: src/Module/Moderation/Blocklist/Server/Import.php:127 +#: src/Module/Moderation/Blocklist/Server/Import.php:111 #, php-format msgid "%d total pattern" msgid_plural "%d total patterns" msgstr[0] "%dMuster gesamt" msgstr[1] "%dMuster gesamt" -#: src/Module/Moderation/Blocklist/Server/Import.php:129 -#: src/Module/Moderation/Blocklist/Server/Index.php:115 +#: src/Module/Moderation/Blocklist/Server/Import.php:113 +#: src/Module/Moderation/Blocklist/Server/Index.php:101 msgid "Server domain pattern blocklist CSV file" msgstr "Server Domain Muster Blockliste CSV-Datei" -#: src/Module/Moderation/Blocklist/Server/Import.php:130 +#: src/Module/Moderation/Blocklist/Server/Import.php:114 msgid "Append" msgstr "Anhängen" -#: src/Module/Moderation/Blocklist/Server/Import.php:130 +#: src/Module/Moderation/Blocklist/Server/Import.php:114 msgid "" "Imports patterns from the file that weren't already existing in the current " "blocklist." msgstr "Importiert Muster aus der Datei, die nicht bereits in der aktuellen Blockliste vorhanden waren." -#: src/Module/Moderation/Blocklist/Server/Import.php:131 +#: src/Module/Moderation/Blocklist/Server/Import.php:115 msgid "Replace" msgstr "Ersetzen" -#: src/Module/Moderation/Blocklist/Server/Import.php:131 +#: src/Module/Moderation/Blocklist/Server/Import.php:115 msgid "Replaces the current blocklist by the imported patterns." msgstr "Ersetzt die aktuelle Blockliste durch die importierten Muster." -#: src/Module/Moderation/Blocklist/Server/Index.php:86 -#: src/Module/Moderation/Blocklist/Server/Index.php:110 -#: src/Module/Settings/Channels.php:231 +#: src/Module/Moderation/Blocklist/Server/Index.php:72 +#: src/Module/Moderation/Blocklist/Server/Index.php:96 +#: src/Module/Settings/Channels.php:217 msgid "Blocked server domain pattern" msgstr "Blockierte Server Domain Muster" -#: src/Module/Moderation/Blocklist/Server/Index.php:88 +#: src/Module/Moderation/Blocklist/Server/Index.php:74 msgid "Delete server domain pattern" msgstr "Server Domain Muster löschen" -#: src/Module/Moderation/Blocklist/Server/Index.php:88 +#: src/Module/Moderation/Blocklist/Server/Index.php:74 msgid "Check to delete this entry from the blocklist" msgstr "Markieren, um diesen Eintrag von der Blocklist zu entfernen" -#: src/Module/Moderation/Blocklist/Server/Index.php:96 +#: src/Module/Moderation/Blocklist/Server/Index.php:82 msgid "Server Domain Pattern Blocklist" msgstr "Server Domain Muster Blockliste" -#: src/Module/Moderation/Blocklist/Server/Index.php:97 +#: src/Module/Moderation/Blocklist/Server/Index.php:83 msgid "" "This page can be used to define a blocklist of server domain patterns from " "the federated network that are not allowed to interact with your node. For " "each domain pattern you should also provide the reason why you block it." msgstr "Auf dieser Seite kannst du Muster definieren mit denen Server Domains aus dem föderierten Netzwerk daran gehindert werden mit deiner Instanz zu interagieren. Es ist ratsam für jedes Muster anzugeben, warum du es zur Blockliste hinzugefügt hast." -#: src/Module/Moderation/Blocklist/Server/Index.php:98 +#: src/Module/Moderation/Blocklist/Server/Index.php:84 msgid "" "The list of blocked server domain patterns will be made publically available" " on the /friendica page so that your users and " "people investigating communication problems can find the reason easily." msgstr "Die Liste der blockierten Domain Muster wird auf der Seite /friendica öffentlich einsehbar gemacht, damit deine Nutzer und Personen, die Kommunikationsprobleme erkunden, die Ursachen einfach finden können." -#: src/Module/Moderation/Blocklist/Server/Index.php:104 +#: src/Module/Moderation/Blocklist/Server/Index.php:90 msgid "Import server domain pattern blocklist" msgstr "Server Domain Muster Blockliste importieren" -#: src/Module/Moderation/Blocklist/Server/Index.php:105 +#: src/Module/Moderation/Blocklist/Server/Index.php:91 msgid "Add new entry to the blocklist" msgstr "Neuen Eintrag in die Blockliste" -#: src/Module/Moderation/Blocklist/Server/Index.php:108 +#: src/Module/Moderation/Blocklist/Server/Index.php:94 msgid "Save changes to the blocklist" msgstr "Änderungen der Blockliste speichern" -#: src/Module/Moderation/Blocklist/Server/Index.php:109 +#: src/Module/Moderation/Blocklist/Server/Index.php:95 msgid "Current Entries in the Blocklist" msgstr "Aktuelle Einträge der Blockliste" -#: src/Module/Moderation/Blocklist/Server/Index.php:112 +#: src/Module/Moderation/Blocklist/Server/Index.php:98 msgid "Delete entry from the blocklist" msgstr "Eintrag von der Blockliste entfernen" -#: src/Module/Moderation/Blocklist/Server/Index.php:113 +#: src/Module/Moderation/Blocklist/Server/Index.php:99 msgid "Delete entry from the blocklist?" msgstr "Eintrag von der Blockliste entfernen?" -#: src/Module/Moderation/Item/Delete.php:50 +#: src/Module/Moderation/Item/Delete.php:36 msgid "Item marked for deletion." msgstr "Eintrag wurden zur Löschung markiert" -#: src/Module/Moderation/Item/Delete.php:63 +#: src/Module/Moderation/Item/Delete.php:49 msgid "Delete this Item" msgstr "Diesen Eintrag löschen" -#: src/Module/Moderation/Item/Delete.php:64 +#: src/Module/Moderation/Item/Delete.php:50 msgid "" "On this page you can delete an item from your node. If the item is a top " "level posting, the entire thread will be deleted." msgstr "Auf dieser Seite kannst du Einträge von deinem Knoten löschen. Wenn der Eintrag der Anfang einer Diskussion ist, wird der gesamte Diskussionsverlauf gelöscht." -#: src/Module/Moderation/Item/Delete.php:65 +#: src/Module/Moderation/Item/Delete.php:51 msgid "" "You need to know the GUID of the item. You can find it e.g. by looking at " "the display URL. The last part of http://example.com/display/123456 is the " "GUID, here 123456." msgstr "Zur Löschung musst du die GUID des Eintrags kennen. Diese findest du z.B. durch die /display URL des Eintrags. Der letzte Teil der URL ist die GUID. Lautet die URL beispielsweise http://example.com/display/123456, ist die GUID 123456." -#: src/Module/Moderation/Item/Delete.php:67 +#: src/Module/Moderation/Item/Delete.php:53 msgid "GUID" msgstr "GUID" -#: src/Module/Moderation/Item/Delete.php:67 +#: src/Module/Moderation/Item/Delete.php:53 msgid "The GUID of the item you want to delete." msgstr "Die GUID des zu löschenden Eintrags" -#: src/Module/Moderation/Item/Source.php:83 +#: src/Module/Moderation/Item/Source.php:69 msgid "Item Id" msgstr "Item Id" -#: src/Module/Moderation/Item/Source.php:84 +#: src/Module/Moderation/Item/Source.php:70 msgid "Item URI" msgstr "Item URI" -#: src/Module/Moderation/Item/Source.php:86 +#: src/Module/Moderation/Item/Source.php:72 msgid "Terms" msgstr "Terms" -#: src/Module/Moderation/Item/Source.php:87 +#: src/Module/Moderation/Item/Source.php:73 msgid "Tag" msgstr "Tag" -#: src/Module/Moderation/Item/Source.php:88 -#: src/Module/Moderation/Users/Active.php:126 -#: src/Module/Moderation/Users/Blocked.php:126 -#: src/Module/Moderation/Users/Index.php:140 +#: src/Module/Moderation/Item/Source.php:74 +#: src/Module/Moderation/Users/Active.php:112 +#: src/Module/Moderation/Users/Blocked.php:112 +#: src/Module/Moderation/Users/Index.php:126 msgid "Type" msgstr "Typ" -#: src/Module/Moderation/Item/Source.php:89 +#: src/Module/Moderation/Item/Source.php:75 msgid "Term" msgstr "Term" -#: src/Module/Moderation/Item/Source.php:90 +#: src/Module/Moderation/Item/Source.php:76 msgid "URL" msgstr "URL" -#: src/Module/Moderation/Item/Source.php:92 +#: src/Module/Moderation/Item/Source.php:78 msgid "Implicit Mention" msgstr "Implicit Mention" -#: src/Module/Moderation/Item/Source.php:94 +#: src/Module/Moderation/Item/Source.php:80 msgid "Item not found" msgstr "Beitrag nicht gefunden" -#: src/Module/Moderation/Item/Source.php:95 +#: src/Module/Moderation/Item/Source.php:81 msgid "No source recorded" msgstr "Keine Quelle aufgezeichnet" -#: src/Module/Moderation/Item/Source.php:96 +#: src/Module/Moderation/Item/Source.php:82 msgid "" "Please make sure the debug.store_source config key is set in " "config/local.config.php for future items to have sources." msgstr "Bitte stelle sicher, dass der Config-Schlüssel debug.store_source in der config/local.config.php gesetzt ist um in Zukunft Quellen zu haben." -#: src/Module/Moderation/Item/Source.php:98 +#: src/Module/Moderation/Item/Source.php:84 msgid "Item Guid" msgstr "Beitrags-Guid" -#: src/Module/Moderation/Report/Create.php:95 +#: src/Module/Moderation/Report/Create.php:81 msgid "Contact not found or their server is already blocked on this node." msgstr "Kontakt nicht gefunden oder seine Instanz ist bereits auf dieser Instanz blockiert." -#: src/Module/Moderation/Report/Create.php:136 +#: src/Module/Moderation/Report/Create.php:122 msgid "Please login to access this page." msgstr "Bitte melde dich an, um auf diese Seite zuzugreifen." -#: src/Module/Moderation/Report/Create.php:165 -#: src/Module/Moderation/Report/Create.php:180 -#: src/Module/Moderation/Report/Create.php:208 -#: src/Module/Moderation/Report/Create.php:260 -#: src/Module/Moderation/Report/Create.php:279 +#: src/Module/Moderation/Report/Create.php:151 +#: src/Module/Moderation/Report/Create.php:166 +#: src/Module/Moderation/Report/Create.php:194 +#: src/Module/Moderation/Report/Create.php:246 +#: src/Module/Moderation/Report/Create.php:265 msgid "Create Moderation Report" msgstr "Moderationsbericht erstellen" -#: src/Module/Moderation/Report/Create.php:166 +#: src/Module/Moderation/Report/Create.php:152 msgid "Pick Contact" msgstr "Kontakt wählen" -#: src/Module/Moderation/Report/Create.php:167 +#: src/Module/Moderation/Report/Create.php:153 msgid "" "Please enter below the contact address or profile URL you would like to " "create a moderation report about." msgstr "Bitte gib unten die Kontaktadresse oder Profil-URL ein, über die du einen Moderationsbericht erstellen möchten." -#: src/Module/Moderation/Report/Create.php:171 +#: src/Module/Moderation/Report/Create.php:157 msgid "Contact address/URL" msgstr "Kontaktadresse/URL" -#: src/Module/Moderation/Report/Create.php:181 +#: src/Module/Moderation/Report/Create.php:167 msgid "Pick Category" msgstr "Kategorie auswählen" -#: src/Module/Moderation/Report/Create.php:182 +#: src/Module/Moderation/Report/Create.php:168 msgid "Please pick below the category of your report." msgstr "Bitte wähle unten die Kategorie für deinen Bericht." -#: src/Module/Moderation/Report/Create.php:186 -#: src/Module/Moderation/Report/Create.php:311 +#: src/Module/Moderation/Report/Create.php:172 +#: src/Module/Moderation/Report/Create.php:297 msgid "Spam" msgstr "Spam" -#: src/Module/Moderation/Report/Create.php:186 +#: src/Module/Moderation/Report/Create.php:172 msgid "" "This contact is publishing many repeated/overly long posts/replies or " "advertising their product/websites in otherwise irrelevant conversations." msgstr "Dieser Kontakt veröffentlicht viele wiederholte/überlange Beiträge/Antworten oder wirbt für sein Produkt/seine Website in ansonsten belanglosen Gesprächen." -#: src/Module/Moderation/Report/Create.php:187 -#: src/Module/Moderation/Report/Create.php:312 +#: src/Module/Moderation/Report/Create.php:173 +#: src/Module/Moderation/Report/Create.php:298 msgid "Illegal Content" msgstr "Illegaler Inhalt" -#: src/Module/Moderation/Report/Create.php:187 +#: src/Module/Moderation/Report/Create.php:173 msgid "" "This contact is publishing content that is considered illegal in this node's" " hosting juridiction." msgstr "Dieser Kontakt veröffentlicht Inhalte, die in dem Land, in dem diese Instanz gehostet wird, als illegal gelten." -#: src/Module/Moderation/Report/Create.php:188 -#: src/Module/Moderation/Report/Create.php:313 +#: src/Module/Moderation/Report/Create.php:174 +#: src/Module/Moderation/Report/Create.php:299 msgid "Community Safety" msgstr "Sicherheit in der Gemeinschaft" -#: src/Module/Moderation/Report/Create.php:188 +#: src/Module/Moderation/Report/Create.php:174 msgid "" "This contact aggravated you or other people, by being provocative or " "insensitive, intentionally or not. This includes disclosing people's private" @@ -8508,12 +8503,12 @@ msgid "" "replies." msgstr "Dieser Kontakt hat dich oder andere Personen verärgert, indem er absichtlich oder unabsichtlich provokativ oder unsensibel war. Dazu gehören die Offenlegung privater Informationen (Doxxing), das Posten von Drohungen oder anstößigen Bildern in Beiträgen oder Antworten." -#: src/Module/Moderation/Report/Create.php:189 -#: src/Module/Moderation/Report/Create.php:314 +#: src/Module/Moderation/Report/Create.php:175 +#: src/Module/Moderation/Report/Create.php:300 msgid "Unwanted Content/Behavior" msgstr "Unerwünschte Inhalte/Verhaltensweisen" -#: src/Module/Moderation/Report/Create.php:189 +#: src/Module/Moderation/Report/Create.php:175 msgid "" "This contact has repeatedly published content irrelevant to the node's theme" " or is openly criticizing the node's administration/moderation without " @@ -8521,89 +8516,89 @@ msgid "" "nitpicking on a sensitive topic." msgstr "Dieser Kontakt hat wiederholt Inhalte veröffentlicht, die für das Thema der Instanz irrelevant sind, oder er kritisiert offen die Verwaltung/Moderation der Instanz, ohne sich direkt mit den betreffenden Personen auseinanderzusetzen, oder er ist wiederholt erbsenzählerisch bei einem heiklen Thema." -#: src/Module/Moderation/Report/Create.php:190 -#: src/Module/Moderation/Report/Create.php:315 +#: src/Module/Moderation/Report/Create.php:176 +#: src/Module/Moderation/Report/Create.php:301 msgid "Rules Violation" msgstr "Verstoß gegen die Regeln" -#: src/Module/Moderation/Report/Create.php:190 +#: src/Module/Moderation/Report/Create.php:176 msgid "" "This contact violated one or more rules of this node. You will be able to " "pick which one(s) in the next step." msgstr "Dieser Kontakt hat gegen eine oder mehrere Regeln dieser Instanz verstoßen. Du kannst im nächsten Schritt auswählen, welche." -#: src/Module/Moderation/Report/Create.php:191 +#: src/Module/Moderation/Report/Create.php:177 msgid "" "Please elaborate below why you submitted this report. The more details you " "provide, the better your report can be handled." msgstr "Bitte gib im Folgenden an, warum du diese Meldung eingereicht hast. Je mehr Details du angibst, desto besser kann Ihre Meldung bearbeitet werden." -#: src/Module/Moderation/Report/Create.php:193 +#: src/Module/Moderation/Report/Create.php:179 msgid "Additional Information" msgstr "Zusätzliche Informationen" -#: src/Module/Moderation/Report/Create.php:193 +#: src/Module/Moderation/Report/Create.php:179 msgid "" "Please provide any additional information relevant to this particular " "report. You will be able to attach posts by this contact in the next step, " "but any context is welcome." msgstr "Bitte gib alle zusätzlichen Informationen an, die für diesen Bericht relevant sind. Du kannst im nächsten Schritt Beiträge dieser Kontaktperson anhängen, aber jeder Kontext ist willkommen." -#: src/Module/Moderation/Report/Create.php:209 +#: src/Module/Moderation/Report/Create.php:195 msgid "Pick Rules" msgstr "Regeln auswählen" -#: src/Module/Moderation/Report/Create.php:210 +#: src/Module/Moderation/Report/Create.php:196 msgid "Please pick below the node rules you believe this contact violated." msgstr "Bitte wähle unten die Instanzregeln aus, gegen die dieser Kontakt deiner Meinung nach verstoßen hat." -#: src/Module/Moderation/Report/Create.php:261 +#: src/Module/Moderation/Report/Create.php:247 msgid "Pick Posts" msgstr "Beiträge auswählen" -#: src/Module/Moderation/Report/Create.php:262 +#: src/Module/Moderation/Report/Create.php:248 msgid "Please optionally pick posts to attach to your report." msgstr "Bitte wähle optional Beiträge aus, die du an diesen Bericht anhängen möchtest." -#: src/Module/Moderation/Report/Create.php:281 +#: src/Module/Moderation/Report/Create.php:267 msgid "Submit Report" msgstr "Bericht senden" -#: src/Module/Moderation/Report/Create.php:282 +#: src/Module/Moderation/Report/Create.php:268 msgid "Further Action" msgstr "Weiteres Vorgehen" -#: src/Module/Moderation/Report/Create.php:283 +#: src/Module/Moderation/Report/Create.php:269 msgid "" "You can also perform one of the following action on the contact you " "reported:" msgstr "Du kannst auch eine der folgenden Aktionen für den gemeldeten Kontakt durchführen:" -#: src/Module/Moderation/Report/Create.php:291 +#: src/Module/Moderation/Report/Create.php:277 msgid "Nothing" msgstr "Nichts" -#: src/Module/Moderation/Report/Create.php:292 +#: src/Module/Moderation/Report/Create.php:278 msgid "Collapse contact" msgstr "Kontakt verbergen" -#: src/Module/Moderation/Report/Create.php:292 +#: src/Module/Moderation/Report/Create.php:278 msgid "" "Their posts and replies will keep appearing in your Network page but their " "content will be collapsed by default." msgstr "Ihre Beiträge und Antworten werden weiterhin auf Ihrer Netzwerkseite angezeigt, aber ihr Inhalt wird standardmäßig ausgeblendet." -#: src/Module/Moderation/Report/Create.php:293 +#: src/Module/Moderation/Report/Create.php:279 msgid "" "Their posts won't appear in your Network page anymore, but their replies can" " appear in forum threads. They still can follow you." msgstr "Ihre Beiträge werden nicht mehr auf deiner Netzwerkseite angezeigt, aber ihre Antworten können in Forenbeiträgen erscheinen. Sie können dir immer noch folgen." -#: src/Module/Moderation/Report/Create.php:294 +#: src/Module/Moderation/Report/Create.php:280 msgid "Block contact" msgstr "Kontakt blockieren" -#: src/Module/Moderation/Report/Create.php:294 +#: src/Module/Moderation/Report/Create.php:280 msgid "" "Their posts won't appear in your Network page anymore, but their replies can" " appear in forum threads, with their content collapsed by default. They " @@ -8611,708 +8606,694 @@ msgid "" "means." msgstr "Ihre Beiträge erscheinen nicht mehr auf deiner Netzwerkseite, aber ihre Antworten können in Forumsthemen erscheinen, wobei ihr Inhalt standardmäßig eingeklappt ist. Sie können dir nicht folgen, haben aber auf anderem Wege weiterhin Zugang zu deinen öffentlichen Beiträgen." -#: src/Module/Moderation/Report/Create.php:297 +#: src/Module/Moderation/Report/Create.php:283 msgid "Forward report" msgstr "Bericht weiterleiten" -#: src/Module/Moderation/Report/Create.php:297 +#: src/Module/Moderation/Report/Create.php:283 msgid "Would you ike to forward this report to the remote server?" msgstr "Möchtest du diesen Bericht an den Entfernten-Server weiterleiten?" -#: src/Module/Moderation/Report/Create.php:330 +#: src/Module/Moderation/Report/Create.php:316 msgid "1. Pick a contact" msgstr "1. Wähle einen Kontakt" -#: src/Module/Moderation/Report/Create.php:331 +#: src/Module/Moderation/Report/Create.php:317 msgid "2. Pick a category" msgstr "2. Wähle eine Kategorie" -#: src/Module/Moderation/Report/Create.php:332 +#: src/Module/Moderation/Report/Create.php:318 msgid "2a. Pick rules" msgstr "2a. Regeln wählen" -#: src/Module/Moderation/Report/Create.php:333 +#: src/Module/Moderation/Report/Create.php:319 msgid "2b. Add comment" msgstr "2b. Kommentar hinzufügen" -#: src/Module/Moderation/Report/Create.php:334 +#: src/Module/Moderation/Report/Create.php:320 msgid "3. Pick posts" msgstr "3. Beiträge auswählen" -#: src/Module/Moderation/Reports.php:111 +#: src/Module/Moderation/Reports.php:97 msgid "List of reports" msgstr "Liste der Reports" -#: src/Module/Moderation/Reports.php:112 +#: src/Module/Moderation/Reports.php:98 msgid "This page display reports created by our or remote users." msgstr "Auf dieser Seite werden Reports angezeigt, die von unseren oder entfernten Benutzern erstellt wurden." -#: src/Module/Moderation/Reports.php:113 +#: src/Module/Moderation/Reports.php:99 msgid "No report exists at this node." msgstr "Auf dieser Instanz ist kein Report vorhanden." -#: src/Module/Moderation/Reports.php:116 +#: src/Module/Moderation/Reports.php:102 msgid "Category" msgstr "Kategorie" -#: src/Module/Moderation/Reports.php:120 +#: src/Module/Moderation/Reports.php:106 #, php-format msgid "%s total report" msgid_plural "%s total reports" msgstr[0] "%s Report" msgstr[1] "%s Reports insgesamt" -#: src/Module/Moderation/Reports.php:123 +#: src/Module/Moderation/Reports.php:109 msgid "URL of the reported contact." msgstr "URL des gemeldeten Kontakts." -#: src/Module/Moderation/Summary.php:57 src/Module/Settings/Account.php:436 +#: src/Module/Moderation/Summary.php:43 src/Module/Settings/Account.php:422 msgid "Channel Relay" msgstr "Kanalrelais" -#: src/Module/Moderation/Summary.php:77 +#: src/Module/Moderation/Summary.php:63 msgid "Registered users" msgstr "Registrierte Personen" -#: src/Module/Moderation/Summary.php:79 +#: src/Module/Moderation/Summary.php:65 msgid "Pending registrations" msgstr "Anstehende Anmeldungen" -#: src/Module/Moderation/Users/Active.php:43 -#: src/Module/Moderation/Users/Index.php:43 +#: src/Module/Moderation/Users/Active.php:29 +#: src/Module/Moderation/Users/Index.php:29 #, php-format msgid "%s user blocked" msgid_plural "%s users blocked" msgstr[0] "%s Nutzer blockiert" msgstr[1] "%s Nutzer blockiert" -#: src/Module/Moderation/Users/Active.php:51 -#: src/Module/Moderation/Users/Active.php:85 -#: src/Module/Moderation/Users/Blocked.php:51 -#: src/Module/Moderation/Users/Blocked.php:85 -#: src/Module/Moderation/Users/Index.php:58 -#: src/Module/Moderation/Users/Index.php:92 +#: src/Module/Moderation/Users/Active.php:37 +#: src/Module/Moderation/Users/Active.php:71 +#: src/Module/Moderation/Users/Blocked.php:37 +#: src/Module/Moderation/Users/Blocked.php:71 +#: src/Module/Moderation/Users/Index.php:44 +#: src/Module/Moderation/Users/Index.php:78 msgid "You can't remove yourself" msgstr "Du kannst dich nicht selbst löschen!" -#: src/Module/Moderation/Users/Active.php:55 -#: src/Module/Moderation/Users/Blocked.php:55 -#: src/Module/Moderation/Users/Index.php:62 +#: src/Module/Moderation/Users/Active.php:41 +#: src/Module/Moderation/Users/Blocked.php:41 +#: src/Module/Moderation/Users/Index.php:48 #, php-format msgid "%s user deleted" msgid_plural "%s users deleted" msgstr[0] "%s Nutzer gelöscht" msgstr[1] "%s Nutzer gelöscht" -#: src/Module/Moderation/Users/Active.php:83 -#: src/Module/Moderation/Users/Blocked.php:83 -#: src/Module/Moderation/Users/Index.php:90 +#: src/Module/Moderation/Users/Active.php:69 +#: src/Module/Moderation/Users/Blocked.php:69 +#: src/Module/Moderation/Users/Index.php:76 #, php-format msgid "User \"%s\" deleted" msgstr "Nutzer \"%s\" gelöscht" -#: src/Module/Moderation/Users/Active.php:93 -#: src/Module/Moderation/Users/Index.php:100 +#: src/Module/Moderation/Users/Active.php:79 +#: src/Module/Moderation/Users/Index.php:86 #, php-format msgid "User \"%s\" blocked" msgstr "Nutzer \"%s\" blockiert" -#: src/Module/Moderation/Users/Active.php:126 -#: src/Module/Moderation/Users/Blocked.php:126 -#: src/Module/Moderation/Users/Deleted.php:83 -#: src/Module/Moderation/Users/Index.php:140 -#: src/Module/Moderation/Users/Index.php:160 +#: src/Module/Moderation/Users/Active.php:112 +#: src/Module/Moderation/Users/Blocked.php:112 +#: src/Module/Moderation/Users/Deleted.php:69 +#: src/Module/Moderation/Users/Index.php:126 +#: src/Module/Moderation/Users/Index.php:146 msgid "Register date" msgstr "Anmeldedatum" -#: src/Module/Moderation/Users/Active.php:126 -#: src/Module/Moderation/Users/Blocked.php:126 -#: src/Module/Moderation/Users/Deleted.php:83 -#: src/Module/Moderation/Users/Index.php:140 -#: src/Module/Moderation/Users/Index.php:160 +#: src/Module/Moderation/Users/Active.php:112 +#: src/Module/Moderation/Users/Blocked.php:112 +#: src/Module/Moderation/Users/Deleted.php:69 +#: src/Module/Moderation/Users/Index.php:126 +#: src/Module/Moderation/Users/Index.php:146 msgid "Last login" msgstr "Letzte Anmeldung" -#: src/Module/Moderation/Users/Active.php:126 -#: src/Module/Moderation/Users/Blocked.php:126 -#: src/Module/Moderation/Users/Deleted.php:83 -#: src/Module/Moderation/Users/Index.php:140 -#: src/Module/Moderation/Users/Index.php:160 +#: src/Module/Moderation/Users/Active.php:112 +#: src/Module/Moderation/Users/Blocked.php:112 +#: src/Module/Moderation/Users/Deleted.php:69 +#: src/Module/Moderation/Users/Index.php:126 +#: src/Module/Moderation/Users/Index.php:146 msgid "Last public item" msgstr "Letzter öffentliche Beitrag" -#: src/Module/Moderation/Users/Active.php:134 +#: src/Module/Moderation/Users/Active.php:120 msgid "Active Accounts" msgstr "Aktive Benutzerkonten" -#: src/Module/Moderation/Users/Active.php:138 -#: src/Module/Moderation/Users/Blocked.php:137 -#: src/Module/Moderation/Users/Index.php:153 +#: src/Module/Moderation/Users/Active.php:124 +#: src/Module/Moderation/Users/Blocked.php:123 +#: src/Module/Moderation/Users/Index.php:139 msgid "User blocked" msgstr "Nutzer blockiert." -#: src/Module/Moderation/Users/Active.php:139 -#: src/Module/Moderation/Users/Blocked.php:139 -#: src/Module/Moderation/Users/Index.php:155 +#: src/Module/Moderation/Users/Active.php:125 +#: src/Module/Moderation/Users/Blocked.php:125 +#: src/Module/Moderation/Users/Index.php:141 msgid "Site admin" msgstr "Seitenadministrator" -#: src/Module/Moderation/Users/Active.php:140 -#: src/Module/Moderation/Users/Blocked.php:140 -#: src/Module/Moderation/Users/Index.php:156 +#: src/Module/Moderation/Users/Active.php:126 +#: src/Module/Moderation/Users/Blocked.php:126 +#: src/Module/Moderation/Users/Index.php:142 msgid "Account expired" msgstr "Account ist abgelaufen" -#: src/Module/Moderation/Users/Active.php:141 -#: src/Module/Moderation/Users/Index.php:159 +#: src/Module/Moderation/Users/Active.php:127 +#: src/Module/Moderation/Users/Index.php:145 msgid "Create a new user" msgstr "Neues Benutzerkonto anlegen" -#: src/Module/Moderation/Users/Active.php:147 -#: src/Module/Moderation/Users/Blocked.php:146 -#: src/Module/Moderation/Users/Index.php:165 +#: src/Module/Moderation/Users/Active.php:133 +#: src/Module/Moderation/Users/Blocked.php:132 +#: src/Module/Moderation/Users/Index.php:151 msgid "" "Selected users will be deleted!\\n\\nEverything these users had posted on " "this site will be permanently deleted!\\n\\nAre you sure?" msgstr "Die markierten Nutzer werden gelöscht!\\n\\nAlle Beiträge, die diese Nutzer auf dieser Seite veröffentlicht haben, werden permanent gelöscht!\\n\\nBist du sicher?" -#: src/Module/Moderation/Users/Active.php:148 -#: src/Module/Moderation/Users/Blocked.php:147 -#: src/Module/Moderation/Users/Index.php:166 +#: src/Module/Moderation/Users/Active.php:134 +#: src/Module/Moderation/Users/Blocked.php:133 +#: src/Module/Moderation/Users/Index.php:152 msgid "" "The user {0} will be deleted!\\n\\nEverything this user has posted on this " "site will be permanently deleted!\\n\\nAre you sure?" msgstr "Der Nutzer {0} wird gelöscht!\\n\\nAlles, was dieser Nutzer auf dieser Seite veröffentlicht hat, wird permanent gelöscht!\\n\\nBist du sicher?" -#: src/Module/Moderation/Users/Blocked.php:43 -#: src/Module/Moderation/Users/Index.php:50 +#: src/Module/Moderation/Users/Blocked.php:29 +#: src/Module/Moderation/Users/Index.php:36 #, php-format msgid "%s user unblocked" msgid_plural "%s users unblocked" msgstr[0] "%s Nutzer freigeschaltet" msgstr[1] "%s Nutzer freigeschaltet" -#: src/Module/Moderation/Users/Blocked.php:92 -#: src/Module/Moderation/Users/Index.php:106 +#: src/Module/Moderation/Users/Blocked.php:78 +#: src/Module/Moderation/Users/Index.php:92 #, php-format msgid "User \"%s\" unblocked" msgstr "Nutzer \"%s\" frei geschaltet" -#: src/Module/Moderation/Users/Blocked.php:134 +#: src/Module/Moderation/Users/Blocked.php:120 msgid "Blocked Users" msgstr "Blockierte Benutzer" -#: src/Module/Moderation/Users/Create.php:62 +#: src/Module/Moderation/Users/Create.php:48 msgid "New User" msgstr "Neuer Nutzer" -#: src/Module/Moderation/Users/Create.php:63 +#: src/Module/Moderation/Users/Create.php:49 msgid "Add User" msgstr "Nutzer hinzufügen" -#: src/Module/Moderation/Users/Create.php:70 +#: src/Module/Moderation/Users/Create.php:56 msgid "Name of the new user." msgstr "Name des neuen Nutzers" -#: src/Module/Moderation/Users/Create.php:71 +#: src/Module/Moderation/Users/Create.php:57 msgid "Nickname" msgstr "Spitzname" -#: src/Module/Moderation/Users/Create.php:71 +#: src/Module/Moderation/Users/Create.php:57 msgid "Nickname of the new user." msgstr "Spitznamen für den neuen Nutzer" -#: src/Module/Moderation/Users/Create.php:72 +#: src/Module/Moderation/Users/Create.php:58 msgid "Email address of the new user." msgstr "Email Adresse des neuen Nutzers" -#: src/Module/Moderation/Users/Deleted.php:81 +#: src/Module/Moderation/Users/Deleted.php:67 msgid "Users awaiting permanent deletion" msgstr "Nutzer wartet auf permanente Löschung" -#: src/Module/Moderation/Users/Deleted.php:83 -#: src/Module/Moderation/Users/Index.php:160 +#: src/Module/Moderation/Users/Deleted.php:69 +#: src/Module/Moderation/Users/Index.php:146 msgid "Permanent deletion" msgstr "Permanent löschen" -#: src/Module/Moderation/Users/Index.php:150 +#: src/Module/Moderation/Users/Index.php:136 msgid "User waiting for permanent deletion" msgstr "Nutzer wartet auf permanente Löschung" -#: src/Module/Moderation/Users/Pending.php:44 +#: src/Module/Moderation/Users/Pending.php:30 #, php-format msgid "%s user approved" msgid_plural "%s users approved" msgstr[0] "%sNutzer zugelassen" msgstr[1] "%sNutzer zugelassen" -#: src/Module/Moderation/Users/Pending.php:51 +#: src/Module/Moderation/Users/Pending.php:37 #, php-format msgid "%s registration revoked" msgid_plural "%s registrations revoked" msgstr[0] "%sRegistration zurückgezogen" msgstr[1] "%sRegistrierungen zurückgezogen" -#: src/Module/Moderation/Users/Pending.php:76 +#: src/Module/Moderation/Users/Pending.php:62 msgid "Account approved." msgstr "Konto freigegeben." -#: src/Module/Moderation/Users/Pending.php:82 +#: src/Module/Moderation/Users/Pending.php:68 msgid "Registration revoked" msgstr "Registrierung zurückgezogen" -#: src/Module/Moderation/Users/Pending.php:97 +#: src/Module/Moderation/Users/Pending.php:83 msgid "User registrations awaiting review" msgstr "Neuanmeldungen, die auf Deine Bestätigung warten" -#: src/Module/Moderation/Users/Pending.php:99 +#: src/Module/Moderation/Users/Pending.php:85 msgid "Request date" msgstr "Anfragedatum" -#: src/Module/Moderation/Users/Pending.php:100 +#: src/Module/Moderation/Users/Pending.php:86 msgid "No registrations." msgstr "Keine Neuanmeldungen." -#: src/Module/Moderation/Users/Pending.php:101 +#: src/Module/Moderation/Users/Pending.php:87 msgid "Note from the user" msgstr "Hinweis vom Nutzer" -#: src/Module/Moderation/Users/Pending.php:103 +#: src/Module/Moderation/Users/Pending.php:89 msgid "Deny" msgstr "Verwehren" -#: src/Module/Notifications/Introductions.php:105 +#: src/Module/Notifications/Introductions.php:91 msgid "Show Ignored Requests" msgstr "Zeige ignorierte Anfragen" -#: src/Module/Notifications/Introductions.php:105 +#: src/Module/Notifications/Introductions.php:91 msgid "Hide Ignored Requests" msgstr "Verberge ignorierte Anfragen" -#: src/Module/Notifications/Introductions.php:121 -#: src/Module/Notifications/Introductions.php:184 +#: src/Module/Notifications/Introductions.php:107 +#: src/Module/Notifications/Introductions.php:170 msgid "Notification type:" msgstr "Art der Benachrichtigung:" -#: src/Module/Notifications/Introductions.php:124 +#: src/Module/Notifications/Introductions.php:110 msgid "Suggested by:" msgstr "Vorgeschlagen von:" -#: src/Module/Notifications/Introductions.php:149 +#: src/Module/Notifications/Introductions.php:135 msgid "Claims to be known to you: " msgstr "Behauptet, dich zu kennen: " -#: src/Module/Notifications/Introductions.php:158 +#: src/Module/Notifications/Introductions.php:144 msgid "Shall your connection be bidirectional or not?" msgstr "Soll die Verbindung beidseitig sein oder nicht?" -#: src/Module/Notifications/Introductions.php:159 +#: src/Module/Notifications/Introductions.php:145 #, php-format msgid "" "Accepting %s as a friend allows %s to subscribe to your posts, and you will " "also receive updates from them in your news feed." msgstr "Akzeptierst du %s als Kontakt, erlaubst du damit das Lesen deiner Beiträge und abonnierst selbst auch die Beiträge von %s." -#: src/Module/Notifications/Introductions.php:160 +#: src/Module/Notifications/Introductions.php:146 #, php-format msgid "" "Accepting %s as a subscriber allows them to subscribe to your posts, but you" " will not receive updates from them in your news feed." msgstr "Wenn du %s als Abonnent akzeptierst, erlaubst du damit das Lesen deiner Beiträge, wirst aber selbst die Beiträge der anderen Seite nicht erhalten." -#: src/Module/Notifications/Introductions.php:162 +#: src/Module/Notifications/Introductions.php:148 msgid "Friend" msgstr "Kontakt" -#: src/Module/Notifications/Introductions.php:163 +#: src/Module/Notifications/Introductions.php:149 msgid "Subscriber" msgstr "Abonnent" -#: src/Module/Notifications/Introductions.php:222 +#: src/Module/Notifications/Introductions.php:208 msgid "No introductions." msgstr "Keine Kontaktanfragen." -#: src/Module/Notifications/Introductions.php:223 -#: src/Module/Notifications/Notifications.php:141 +#: src/Module/Notifications/Introductions.php:209 +#: src/Module/Notifications/Notifications.php:127 #, php-format msgid "No more %s notifications." msgstr "Keine weiteren %s-Benachrichtigungen" -#: src/Module/Notifications/Notification.php:135 +#: src/Module/Notifications/Notification.php:121 msgid "You must be logged in to show this page." msgstr "Du musst eingeloggt sein damit diese Seite angezeigt werden kann." -#: src/Module/Notifications/Notifications.php:66 +#: src/Module/Notifications/Notifications.php:52 msgid "Network Notifications" msgstr "Netzwerkbenachrichtigungen" -#: src/Module/Notifications/Notifications.php:72 +#: src/Module/Notifications/Notifications.php:58 msgid "System Notifications" msgstr "Systembenachrichtigungen" -#: src/Module/Notifications/Notifications.php:78 +#: src/Module/Notifications/Notifications.php:64 msgid "Personal Notifications" msgstr "Persönliche Benachrichtigungen" -#: src/Module/Notifications/Notifications.php:84 +#: src/Module/Notifications/Notifications.php:70 msgid "Home Notifications" msgstr "Pinnwandbenachrichtigungen" -#: src/Module/Notifications/Notifications.php:146 +#: src/Module/Notifications/Notifications.php:132 msgid "Show unread" msgstr "Ungelesene anzeigen" -#: src/Module/Notifications/Ping.php:220 +#: src/Module/Notifications/Ping.php:206 msgid "{0} requested registration" msgstr "{0} möchte sich registrieren" -#: src/Module/Notifications/Ping.php:229 +#: src/Module/Notifications/Ping.php:215 #, php-format msgid "{0} and %d others requested registration" msgstr "{0} und %d weitere möchten sich registrieren" -#: src/Module/OAuth/Acknowledge.php:51 +#: src/Module/OAuth/Acknowledge.php:37 msgid "Authorize application connection" msgstr "Verbindung der Applikation autorisieren" -#: src/Module/OAuth/Acknowledge.php:53 +#: src/Module/OAuth/Acknowledge.php:39 msgid "" "Do you want to authorize this application to access your posts and contacts," " and/or create new posts for you?" msgstr "Möchtest du dieser Anwendung den Zugriff auf Deine Beiträge und Kontakte sowie das Erstellen neuer Beiträge in Deinem Namen gestatten?" -#: src/Module/OAuth/Authorize.php:54 +#: src/Module/OAuth/Authorize.php:40 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:75 +#: src/Module/OAuth/Authorize.php:45 src/Module/OAuth/Token.php:61 msgid "Incomplete request data" msgstr "Daten der Anfrage sind nicht vollständig" -#: src/Module/OAuth/Authorize.php:106 +#: src/Module/OAuth/Authorize.php:92 #, php-format msgid "" "Please copy the following authentication code into your application and " "close this window: %s" msgstr "Bitte kopiere den folgenden Authentifizierungscode in deine App und schließe dieses Fenster: %s" -#: src/Module/OAuth/Token.php:80 +#: src/Module/OAuth/Token.php:66 msgid "Invalid data or unknown client" msgstr "Ungültige Daten oder unbekannter Client" -#: src/Module/OAuth/Token.php:105 +#: src/Module/OAuth/Token.php:91 msgid "Unsupported or missing grant type" msgstr "Der Grant-Typ fehlt oder wird nicht unterstützt" -#: src/Module/OStatus/Repair.php:83 -msgid "Resubscribing to OStatus contacts" -msgstr "Erneuern der OStatus-Abonements" - -#: src/Module/OStatus/Repair.php:84 src/Module/OStatus/Subscribe.php:160 -msgid "Keep this window open until done." -msgstr "Lasse dieses Fenster offen, bis der Vorgang abgeschlossen ist." - -#: src/Module/OStatus/Repair.php:85 -msgid "✔ Done" -msgstr "✔ Erledigt" - -#: src/Module/OStatus/Repair.php:86 -msgid "No OStatus contacts to resubscribe to." -msgstr "Keine OStatus Kontakte zum Neufolgen vorhanden." - -#: src/Module/OStatus/Subscribe.php:72 +#: src/Module/OStatus/Subscribe.php:58 msgid "Subscribing to contacts" msgstr "Kontakten folgen" -#: src/Module/OStatus/Subscribe.php:81 +#: src/Module/OStatus/Subscribe.php:67 msgid "No contact provided." msgstr "Keine Kontakte gefunden." -#: src/Module/OStatus/Subscribe.php:87 +#: src/Module/OStatus/Subscribe.php:73 msgid "Couldn't fetch information for contact." msgstr "Konnte die Kontaktinformationen nicht einholen." -#: src/Module/OStatus/Subscribe.php:98 +#: src/Module/OStatus/Subscribe.php:84 msgid "Couldn't fetch friends for contact." msgstr "Konnte die Kontaktliste des Kontakts nicht abfragen." -#: src/Module/OStatus/Subscribe.php:104 src/Module/OStatus/Subscribe.php:115 +#: src/Module/OStatus/Subscribe.php:90 src/Module/OStatus/Subscribe.php:101 msgid "Couldn't fetch following contacts." msgstr "Konnte Liste der gefolgten Kontakte nicht einholen." -#: src/Module/OStatus/Subscribe.php:110 +#: src/Module/OStatus/Subscribe.php:96 msgid "Couldn't fetch remote profile." msgstr "Konnte das entfernte Profil nicht laden." -#: src/Module/OStatus/Subscribe.php:120 +#: src/Module/OStatus/Subscribe.php:106 msgid "Unsupported network" msgstr "Netzwerk wird nicht unterstützt" -#: src/Module/OStatus/Subscribe.php:136 +#: src/Module/OStatus/Subscribe.php:122 msgid "Done" msgstr "Erledigt" -#: src/Module/OStatus/Subscribe.php:150 +#: src/Module/OStatus/Subscribe.php:136 msgid "success" msgstr "Erfolg" -#: src/Module/OStatus/Subscribe.php:152 +#: src/Module/OStatus/Subscribe.php:138 msgid "failed" msgstr "Fehlgeschlagen" -#: src/Module/OStatus/Subscribe.php:155 +#: src/Module/OStatus/Subscribe.php:141 msgid "ignored" msgstr "Ignoriert" -#: src/Module/Photo.php:122 +#: src/Module/OStatus/Subscribe.php:146 +msgid "Keep this window open until done." +msgstr "Lasse dieses Fenster offen, bis der Vorgang abgeschlossen ist." + +#: src/Module/Photo.php:108 msgid "The Photo is not available." msgstr "Das Foto ist nicht verfügbar." -#: src/Module/Photo.php:147 +#: src/Module/Photo.php:133 #, 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:188 +#: src/Module/Photo.php:174 #, php-format msgid "Invalid external resource with url %s." msgstr "Ungültige externe Ressource mit der URL %s" -#: src/Module/Photo.php:190 +#: src/Module/Photo.php:176 #, php-format msgid "Invalid photo with id %s." msgstr "Fehlerhaftes Foto mit der ID %s." -#: src/Module/Post/Edit.php:82 src/Module/Post/Edit.php:96 +#: src/Module/Post/Edit.php:68 src/Module/Post/Edit.php:82 msgid "Post not found." msgstr "Beitrag nicht gefunden." -#: src/Module/Post/Edit.php:102 +#: src/Module/Post/Edit.php:88 msgid "Edit post" msgstr "Beitrag bearbeiten" -#: src/Module/Post/Edit.php:136 +#: src/Module/Post/Edit.php:122 msgid "web link" msgstr "Weblink" -#: src/Module/Post/Edit.php:137 +#: src/Module/Post/Edit.php:123 msgid "Insert video link" msgstr "Video-Adresse einfügen" -#: src/Module/Post/Edit.php:138 +#: src/Module/Post/Edit.php:124 msgid "video link" msgstr "Video-Link" -#: src/Module/Post/Edit.php:139 +#: src/Module/Post/Edit.php:125 msgid "Insert audio link" msgstr "Audio-Adresse einfügen" -#: src/Module/Post/Edit.php:140 +#: src/Module/Post/Edit.php:126 msgid "audio link" msgstr "Audio-Link" -#: src/Module/Post/Tag/Remove.php:106 +#: src/Module/Post/Tag/Remove.php:92 msgid "Remove Item Tag" msgstr "Gegenstands-Tag entfernen" -#: src/Module/Post/Tag/Remove.php:107 +#: src/Module/Post/Tag/Remove.php:93 msgid "Select a tag to remove: " msgstr "Wähle ein Tag zum Entfernen aus: " -#: src/Module/Post/Tag/Remove.php:108 -#: src/Module/Settings/TwoFactor/Trusted.php:147 +#: src/Module/Post/Tag/Remove.php:94 +#: src/Module/Settings/TwoFactor/Trusted.php:133 msgid "Remove" msgstr "Entfernen" -#: src/Module/Privacy/PermissionTooltip.php:71 +#: src/Module/Privacy/PermissionTooltip.php:57 #, php-format msgid "Wrong type \"%s\", expected one of: %s" msgstr "Falscher Typ \"%s\", hatte einen der Folgenden erwartet: %s" -#: src/Module/Privacy/PermissionTooltip.php:101 +#: src/Module/Privacy/PermissionTooltip.php:87 msgid "Model not found" msgstr "Model nicht gefunden" -#: src/Module/Privacy/PermissionTooltip.php:118 +#: src/Module/Privacy/PermissionTooltip.php:104 msgid "Unlisted" msgstr "Ungelistet" -#: src/Module/Privacy/PermissionTooltip.php:124 +#: src/Module/Privacy/PermissionTooltip.php:110 msgid "Remote privacy information not available." msgstr "Entfernte Privatsphäreneinstellungen nicht verfügbar." -#: src/Module/Privacy/PermissionTooltip.php:131 +#: src/Module/Privacy/PermissionTooltip.php:117 msgid "Visible to:" msgstr "Sichtbar für:" -#: src/Module/Privacy/PermissionTooltip.php:133 +#: src/Module/Privacy/PermissionTooltip.php:119 msgid "CC:" msgstr "CC:" -#: src/Module/Privacy/PermissionTooltip.php:134 +#: src/Module/Privacy/PermissionTooltip.php:120 msgid "BCC:" msgstr "BCC:" -#: src/Module/Privacy/PermissionTooltip.php:135 +#: src/Module/Privacy/PermissionTooltip.php:121 msgid "Audience:" msgstr "Publikum:" -#: src/Module/Privacy/PermissionTooltip.php:136 +#: src/Module/Privacy/PermissionTooltip.php:122 msgid "Attributed To:" msgstr "Zuzuschreiben:" -#: src/Module/Privacy/PermissionTooltip.php:234 +#: src/Module/Privacy/PermissionTooltip.php:220 #, php-format msgid "Collection (%s)" msgstr "Sammlung (%s)" -#: src/Module/Privacy/PermissionTooltip.php:238 +#: src/Module/Privacy/PermissionTooltip.php:224 #, php-format msgid "Followers (%s)" msgstr "Folgende (%s)" -#: src/Module/Privacy/PermissionTooltip.php:255 +#: src/Module/Privacy/PermissionTooltip.php:241 #, php-format msgid "%d more" msgstr "%d weitere" -#: src/Module/Profile/Contacts.php:159 +#: src/Module/Profile/Contacts.php:145 msgid "No contacts." msgstr "Keine Kontakte." -#: src/Module/Profile/Conversations.php:106 -#: src/Module/Profile/Conversations.php:109 src/Module/Profile/Profile.php:353 -#: src/Module/Profile/Profile.php:356 src/Protocol/Feed.php:1114 -#: src/Protocol/OStatus.php:1011 -#, php-format -msgid "%s's timeline" -msgstr "Timeline von %s" - -#: src/Module/Profile/Conversations.php:107 src/Module/Profile/Profile.php:354 -#: src/Protocol/Feed.php:1118 src/Protocol/OStatus.php:1016 +#: src/Module/Profile/Conversations.php:92 src/Module/Profile/Profile.php:339 +#: src/Protocol/Feed.php:1097 #, php-format msgid "%s's posts" msgstr "Beiträge von %s" -#: src/Module/Profile/Conversations.php:108 src/Module/Profile/Profile.php:355 -#: src/Protocol/Feed.php:1121 src/Protocol/OStatus.php:1020 +#: src/Module/Profile/Conversations.php:93 src/Module/Profile/Profile.php:340 +#: src/Protocol/Feed.php:1100 #, 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:192 -#: src/Module/Settings/Profile/Photo/Index.php:58 +#: src/Module/Profile/Conversations.php:94 src/Module/Profile/Profile.php:341 +#: src/Protocol/Feed.php:1093 +#, php-format +msgid "%s's timeline" +msgstr "Timeline von %s" + +#: src/Module/Profile/Photos.php:150 src/Module/Profile/Photos.php:153 +#: src/Module/Profile/Photos.php:178 +#: src/Module/Settings/Profile/Photo/Index.php:44 #, php-format msgid "Image exceeds size limit of %s" msgstr "Bildgröße überschreitet das Limit von %s" -#: src/Module/Profile/Photos.php:170 +#: src/Module/Profile/Photos.php:156 msgid "Image upload didn't complete, please try again" msgstr "Der Upload des Bildes war nicht vollständig. Bitte versuche es erneut." -#: src/Module/Profile/Photos.php:173 +#: src/Module/Profile/Photos.php:159 msgid "Image file is missing" msgstr "Bilddatei konnte nicht gefunden werden." -#: src/Module/Profile/Photos.php:178 +#: src/Module/Profile/Photos.php:164 msgid "" "Server can't accept new file upload at this time, please contact your " "administrator" msgstr "Der Server kann derzeit keine neuen Datei-Uploads akzeptieren. Bitte kontaktiere deinen Administrator." -#: src/Module/Profile/Photos.php:200 +#: src/Module/Profile/Photos.php:186 msgid "Image file is empty." msgstr "Bilddatei ist leer." -#: src/Module/Profile/Photos.php:352 +#: src/Module/Profile/Photos.php:338 msgid "View Album" msgstr "Album betrachten" -#: src/Module/Profile/Profile.php:114 src/Module/Profile/Restricted.php:50 +#: src/Module/Profile/Profile.php:100 src/Module/Profile/Restricted.php:36 msgid "Profile not found." msgstr "Profil nicht gefunden." -#: src/Module/Profile/Profile.php:160 +#: src/Module/Profile/Profile.php:146 #, php-format msgid "" "You're currently viewing your profile as %s Cancel" msgstr "Du betrachtest dein Profil gerade als %s Abbrechen" -#: src/Module/Profile/Profile.php:169 +#: src/Module/Profile/Profile.php:155 msgid "Full Name:" msgstr "Kompletter Name:" -#: src/Module/Profile/Profile.php:174 +#: src/Module/Profile/Profile.php:160 msgid "Member since:" msgstr "Mitglied seit:" -#: src/Module/Profile/Profile.php:180 +#: src/Module/Profile/Profile.php:166 msgid "j F, Y" msgstr "j F, Y" -#: src/Module/Profile/Profile.php:181 +#: src/Module/Profile/Profile.php:167 msgid "j F" msgstr "j F" -#: src/Module/Profile/Profile.php:189 src/Util/Temporal.php:168 +#: src/Module/Profile/Profile.php:175 src/Util/Temporal.php:154 msgid "Birthday:" msgstr "Geburtstag:" -#: src/Module/Profile/Profile.php:192 -#: src/Module/Settings/Profile/Index.php:296 src/Util/Temporal.php:170 +#: src/Module/Profile/Profile.php:178 +#: src/Module/Settings/Profile/Index.php:282 src/Util/Temporal.php:156 msgid "Age: " msgstr "Alter: " -#: src/Module/Profile/Profile.php:192 -#: src/Module/Settings/Profile/Index.php:296 src/Util/Temporal.php:170 +#: src/Module/Profile/Profile.php:178 +#: src/Module/Settings/Profile/Index.php:282 src/Util/Temporal.php:156 #, php-format msgid "%d year old" msgid_plural "%d years old" msgstr[0] "%d Jahr alt" msgstr[1] "%d Jahre alt" -#: src/Module/Profile/Profile.php:197 -#: src/Module/Settings/Profile/Index.php:289 +#: src/Module/Profile/Profile.php:183 +#: src/Module/Settings/Profile/Index.php:275 msgid "Description:" msgstr "Beschreibung" -#: src/Module/Profile/Profile.php:263 +#: src/Module/Profile/Profile.php:249 msgid "Groups:" msgstr "Gruppen:" -#: src/Module/Profile/Profile.php:275 +#: src/Module/Profile/Profile.php:261 msgid "View profile as:" msgstr "Das Profil aus der Sicht von jemandem anderen betrachten:" -#: src/Module/Profile/Profile.php:292 +#: src/Module/Profile/Profile.php:278 msgid "View as" msgstr "Betrachten als" -#: src/Module/Profile/RemoteFollow.php:82 +#: src/Module/Profile/RemoteFollow.php:68 msgid "Profile unavailable." msgstr "Profil nicht verfügbar." -#: src/Module/Profile/RemoteFollow.php:88 +#: src/Module/Profile/RemoteFollow.php:74 msgid "Invalid locator" msgstr "Ungültiger Locator" -#: src/Module/Profile/RemoteFollow.php:95 +#: src/Module/Profile/RemoteFollow.php:81 msgid "The provided profile link doesn't seem to be valid" msgstr "Der angegebene Profil-Link scheint nicht gültig zu sein." -#: src/Module/Profile/RemoteFollow.php:100 +#: src/Module/Profile/RemoteFollow.php:86 msgid "" "Remote subscription can't be done for your network. Please subscribe " "directly on your system." msgstr "Entferntes Abon­nie­ren kann für dein Netzwerk nicht durchgeführt werden. Bitte nutze direkt die Abonnieren-Funktion deines Systems. " -#: src/Module/Profile/RemoteFollow.php:128 +#: src/Module/Profile/RemoteFollow.php:114 msgid "Friend/Connection Request" msgstr "Kontaktanfrage" -#: src/Module/Profile/RemoteFollow.php:129 +#: src/Module/Profile/RemoteFollow.php:115 #, php-format msgid "" "Enter your Webfinger address (user@domain.tld) or profile URL here. If this " @@ -9320,579 +9301,579 @@ msgid "" " or %s directly on your system." msgstr "Gib entweder deine Webfinger- (user@domain.tld) oder die Profil-Adresse an. Wenn dies von deinem System nicht unterstützt wird, folge bitte %s oder %s direkt von deinem System. " -#: src/Module/Profile/RemoteFollow.php:130 +#: src/Module/Profile/RemoteFollow.php:116 #, php-format msgid "" "If you are not yet a member of the free social web, follow " "this link to find a public Friendica node and join us today." msgstr "Solltest du das freie Soziale Netzwerk noch nicht benutzen, kannst du diesem Link folgen um eine öffentliche Friendica Instanz zu finden um noch heute dem Netzwerk beizutreten." -#: src/Module/Profile/RemoteFollow.php:131 +#: src/Module/Profile/RemoteFollow.php:117 msgid "Your Webfinger address or profile URL:" msgstr "Deine Webfinger Adresse oder Profil-URL" -#: src/Module/Profile/Restricted.php:59 +#: src/Module/Profile/Restricted.php:45 msgid "Restricted profile" msgstr "Eingeschränktes Profil" -#: src/Module/Profile/Restricted.php:60 +#: src/Module/Profile/Restricted.php:46 msgid "" "This profile has been restricted which prevents access to their public " "content from anonymous visitors." msgstr "Das Profil wurde eingeschränkt, dies verhindert den Zugriff auf öffentliche Beiträge durch anonyme Besucher des Profils." -#: src/Module/Profile/Schedule.php:83 +#: src/Module/Profile/Schedule.php:69 msgid "Scheduled" msgstr "Zeitplan" -#: src/Module/Profile/Schedule.php:84 +#: src/Module/Profile/Schedule.php:70 msgid "Content" msgstr "Inhalt" -#: src/Module/Profile/Schedule.php:85 +#: src/Module/Profile/Schedule.php:71 msgid "Remove post" msgstr "Beitrag entfernen" -#: src/Module/Register.php:91 +#: src/Module/Register.php:77 msgid "Only parent users can create additional accounts." msgstr "Zusätzliche Nutzerkonten können nur von Verwaltern angelegt werden." -#: src/Module/Register.php:106 src/Module/User/Import.php:112 +#: src/Module/Register.php:92 src/Module/User/Import.php:98 msgid "" "This site has exceeded the number of allowed daily account registrations. " "Please try again tomorrow." msgstr "Die maximale Anzahl täglicher Registrierungen auf dieser Seite wurde überschritten. Bitte versuche es morgen noch einmal." -#: src/Module/Register.php:123 +#: src/Module/Register.php:109 msgid "" "You may (optionally) fill in this form via OpenID by supplying your OpenID " "and clicking \"Register\"." msgstr "Du kannst dieses Formular auch (optional) mit deiner OpenID ausfüllen, indem du deine OpenID angibst und 'Registrieren' klickst." -#: src/Module/Register.php:124 +#: src/Module/Register.php:110 msgid "" "If you are not familiar with OpenID, please leave that field blank and fill " "in the rest of the items." msgstr "Wenn du nicht mit OpenID vertraut bist, lass dieses Feld bitte leer und fülle die restlichen Felder aus." -#: src/Module/Register.php:125 +#: src/Module/Register.php:111 msgid "Your OpenID (optional): " msgstr "Deine OpenID (optional): " -#: src/Module/Register.php:134 +#: src/Module/Register.php:120 msgid "Include your profile in member directory?" msgstr "Soll dein Profil im Nutzerverzeichnis angezeigt werden?" -#: src/Module/Register.php:155 +#: src/Module/Register.php:141 msgid "Note for the admin" msgstr "Hinweis für den Admin" -#: src/Module/Register.php:155 +#: src/Module/Register.php:141 msgid "Leave a message for the admin, why you want to join this node" msgstr "Hinterlasse eine Nachricht an den Admin, warum du einen Account auf dieser Instanz haben möchtest." -#: src/Module/Register.php:156 +#: src/Module/Register.php:142 msgid "Membership on this site is by invitation only." msgstr "Mitgliedschaft auf dieser Seite ist nur nach vorheriger Einladung möglich." -#: src/Module/Register.php:157 +#: src/Module/Register.php:143 msgid "Your invitation code: " msgstr "Dein Ein­la­dungs­code" -#: src/Module/Register.php:165 +#: src/Module/Register.php:151 msgid "Your Display Name (as you would like it to be displayed on this system" msgstr "Ihr Anzeigename (wie er auf dieser Instanz angezeigt werden soll)" -#: src/Module/Register.php:166 +#: src/Module/Register.php:152 msgid "" "Your Email Address: (Initial information will be send there, so this has to " "be an existing address.)" msgstr "Deine E-Mail Adresse (Informationen zur Registrierung werden an diese Adresse gesendet, darum muss sie existieren.)" -#: src/Module/Register.php:167 +#: src/Module/Register.php:153 msgid "Please repeat your e-mail address:" msgstr "Bitte wiederhole deine E-Mail Adresse" -#: src/Module/Register.php:169 src/Module/Security/PasswordTooLong.php:100 -#: src/Module/Settings/Account.php:569 +#: src/Module/Register.php:155 src/Module/Security/PasswordTooLong.php:86 +#: src/Module/Settings/Account.php:555 msgid "New Password:" msgstr "Neues Passwort:" -#: src/Module/Register.php:169 +#: src/Module/Register.php:155 msgid "Leave empty for an auto generated password." msgstr "Leer lassen, um das Passwort automatisch zu generieren." -#: src/Module/Register.php:170 src/Module/Security/PasswordTooLong.php:101 -#: src/Module/Settings/Account.php:570 +#: src/Module/Register.php:156 src/Module/Security/PasswordTooLong.php:87 +#: src/Module/Settings/Account.php:556 msgid "Confirm:" msgstr "Bestätigen:" -#: src/Module/Register.php:171 +#: src/Module/Register.php:157 #, php-format msgid "" "Choose a profile nickname. This must begin with a text character. Your " "profile address on this site will then be \"nickname@%s\"." msgstr "Wähle einen Spitznamen für dein Profil. Dieser muss mit einem Buchstaben beginnen. Die Adresse deines Profils auf dieser Seite wird 'spitzname@%s' sein." -#: src/Module/Register.php:172 +#: src/Module/Register.php:158 msgid "Choose a nickname: " msgstr "Spitznamen wählen: " -#: src/Module/Register.php:180 src/Module/User/Import.php:118 +#: src/Module/Register.php:166 src/Module/User/Import.php:104 msgid "Import" msgstr "Import" -#: src/Module/Register.php:181 +#: src/Module/Register.php:167 msgid "Import your profile to this friendica instance" msgstr "Importiere dein Profil auf diese Friendica-Instanz" -#: src/Module/Register.php:188 +#: src/Module/Register.php:174 msgid "Note: This node explicitly contains adult content" msgstr "Hinweis: Dieser Knoten enthält explizit Inhalte für Erwachsene" -#: src/Module/Register.php:190 src/Module/Settings/Delegation.php:181 +#: src/Module/Register.php:176 src/Module/Settings/Delegation.php:167 msgid "Parent Password:" msgstr "Passwort des Verwalters" -#: src/Module/Register.php:190 src/Module/Settings/Delegation.php:181 +#: src/Module/Register.php:176 src/Module/Settings/Delegation.php:167 msgid "" "Please enter the password of the parent account to legitimize your request." msgstr "Bitte gib das Passwort des Verwalters ein, um deine Anfrage zu bestätigen." -#: src/Module/Register.php:219 +#: src/Module/Register.php:205 msgid "Password doesn't match." msgstr "Das Passwort stimmt nicht." -#: src/Module/Register.php:225 +#: src/Module/Register.php:211 msgid "Please enter your password." msgstr "Bitte gib dein Passwort an." -#: src/Module/Register.php:267 +#: src/Module/Register.php:253 msgid "You have entered too much information." msgstr "Du hast zu viele Informationen eingegeben." -#: src/Module/Register.php:290 +#: src/Module/Register.php:276 msgid "Please enter the identical mail address in the second field." msgstr "Bitte gib die gleiche E-Mail Adresse noch einmal an." -#: src/Module/Register.php:298 +#: src/Module/Register.php:284 msgid "Nickname cannot start with a digit." msgstr "Der Spitzname darf nicht mit einer Zahl beginnen." -#: src/Module/Register.php:300 +#: src/Module/Register.php:286 msgid "Nickname can only contain US-ASCII characters." msgstr "Spitzname darf nur US-ASCII-Zeichen enthalten." -#: src/Module/Register.php:329 +#: src/Module/Register.php:315 msgid "The additional account was created." msgstr "Das zusätzliche Nutzerkonto wurde angelegt." -#: src/Module/Register.php:354 +#: src/Module/Register.php:340 msgid "" "Registration successful. Please check your email for further instructions." msgstr "Registrierung erfolgreich. Eine E-Mail mit weiteren Anweisungen wurde an dich gesendet." -#: src/Module/Register.php:361 +#: src/Module/Register.php:347 #, php-format msgid "" "Failed to send email message. Here your accout details:
login: %s
" "password: %s

You can change your password after login." msgstr "Versenden der E-Mail fehlgeschlagen. Hier sind Deine Account-Details:\n\nLogin: %s\nPasswort: %s\n\nDu kannst das Passwort nach dem Anmelden ändern." -#: src/Module/Register.php:367 +#: src/Module/Register.php:353 msgid "Registration successful." msgstr "Registrierung erfolgreich." -#: src/Module/Register.php:376 src/Module/Register.php:383 -#: src/Module/Register.php:393 +#: src/Module/Register.php:362 src/Module/Register.php:369 +#: src/Module/Register.php:379 msgid "Your registration can not be processed." msgstr "Deine Registrierung konnte nicht verarbeitet werden." -#: src/Module/Register.php:382 +#: src/Module/Register.php:368 msgid "You have to leave a request note for the admin." msgstr "Du musst eine Nachricht für den Administrator als Begründung deiner Anfrage hinterlegen." -#: src/Module/Register.php:392 +#: src/Module/Register.php:378 msgid "An internal error occured." msgstr "Ein interner Fehler ist aufgetreten. " -#: src/Module/Register.php:414 +#: src/Module/Register.php:400 msgid "Your registration is pending approval by the site owner." msgstr "Deine Registrierung muss noch vom Betreiber der Seite freigegeben werden." -#: src/Module/Search/Acl.php:78 +#: src/Module/Search/Acl.php:64 msgid "You must be logged in to use this module." msgstr "Du musst eingeloggt sein, um dieses Modul benutzen zu können." -#: src/Module/Search/Index.php:69 +#: src/Module/Search/Index.php:55 msgid "Only logged in users are permitted to perform a search." msgstr "Nur eingeloggten Benutzern ist das Suchen gestattet." -#: src/Module/Search/Index.php:89 +#: src/Module/Search/Index.php:75 msgid "Only one search per minute is permitted for not logged in users." msgstr "Es ist nur eine Suchanfrage pro Minute für nicht eingeloggte Benutzer gestattet." -#: src/Module/Search/Index.php:205 +#: src/Module/Search/Index.php:191 #, php-format msgid "Items tagged with: %s" msgstr "Beiträge, die mit %s getaggt sind" -#: src/Module/Search/Saved.php:63 +#: src/Module/Search/Saved.php:49 msgid "Search term was not saved." msgstr "Der Suchbegriff wurde nicht gespeichert." -#: src/Module/Search/Saved.php:66 +#: src/Module/Search/Saved.php:52 msgid "Search term already saved." msgstr "Suche ist bereits gespeichert." -#: src/Module/Search/Saved.php:72 +#: src/Module/Search/Saved.php:58 msgid "Search term was not removed." msgstr "Der Suchbegriff wurde nicht entfernt." -#: src/Module/Security/Login.php:127 +#: src/Module/Security/Login.php:113 msgid "Create a New Account" msgstr "Neues Konto erstellen" -#: src/Module/Security/Login.php:146 +#: src/Module/Security/Login.php:132 msgid "Your OpenID: " msgstr "Deine OpenID:" -#: src/Module/Security/Login.php:149 +#: src/Module/Security/Login.php:135 msgid "" "Please enter your username and password to add the OpenID to your existing " "account." msgstr "Bitte gib seinen Nutzernamen und das Passwort ein um die OpenID zu deinem bestehenden Nutzerkonto hinzufügen zu können." -#: src/Module/Security/Login.php:151 +#: src/Module/Security/Login.php:137 msgid "Or login using OpenID: " msgstr "Oder melde dich mit deiner OpenID an: " -#: src/Module/Security/Login.php:165 +#: src/Module/Security/Login.php:151 msgid "Password: " msgstr "Passwort: " -#: src/Module/Security/Login.php:166 +#: src/Module/Security/Login.php:152 msgid "Remember me" msgstr "Anmeldedaten merken" -#: src/Module/Security/Login.php:175 +#: src/Module/Security/Login.php:161 msgid "Forgot your password?" msgstr "Passwort vergessen?" -#: src/Module/Security/Login.php:178 +#: src/Module/Security/Login.php:164 msgid "Website Terms of Service" msgstr "Website-Nutzungsbedingungen" -#: src/Module/Security/Login.php:179 +#: src/Module/Security/Login.php:165 msgid "terms of service" msgstr "Nutzungsbedingungen" -#: src/Module/Security/Login.php:181 +#: src/Module/Security/Login.php:167 msgid "Website Privacy Policy" msgstr "Website-Datenschutzerklärung" -#: src/Module/Security/Login.php:182 +#: src/Module/Security/Login.php:168 msgid "privacy policy" msgstr "Datenschutzerklärung" -#: src/Module/Security/Logout.php:89 -#: src/Module/Security/TwoFactor/SignOut.php:78 -#: src/Module/Security/TwoFactor/SignOut.php:86 -#: src/Module/Security/TwoFactor/SignOut.php:108 -#: src/Module/Security/TwoFactor/SignOut.php:115 +#: src/Module/Security/Logout.php:75 +#: src/Module/Security/TwoFactor/SignOut.php:64 +#: src/Module/Security/TwoFactor/SignOut.php:72 +#: src/Module/Security/TwoFactor/SignOut.php:94 +#: src/Module/Security/TwoFactor/SignOut.php:101 msgid "Logged out." msgstr "Abgemeldet." -#: src/Module/Security/OpenID.php:54 +#: src/Module/Security/OpenID.php:40 msgid "OpenID protocol error. No ID returned" msgstr "OpenID Protokollfehler. Keine ID zurückgegeben." -#: src/Module/Security/OpenID.php:90 +#: src/Module/Security/OpenID.php:76 msgid "" "Account not found. Please login to your existing account to add the OpenID " "to it." msgstr "Nutzerkonto nicht gefunden. Bitte melde dich an und füge die OpenID zu deinem Konto hinzu." -#: src/Module/Security/OpenID.php:92 +#: src/Module/Security/OpenID.php:78 msgid "" "Account not found. Please register a new account or login to your existing " "account to add the OpenID to it." msgstr "Nutzerkonto nicht gefunden. Bitte registriere ein neues Konto oder melde dich mit einem existierendem Konto an um diene OpenID hinzuzufügen." -#: src/Module/Security/PasswordTooLong.php:57 -#: src/Module/Settings/Account.php:67 +#: src/Module/Security/PasswordTooLong.php:43 +#: src/Module/Settings/Account.php:53 msgid "Passwords do not match." msgstr "Die Passwörter stimmen nicht überein." -#: src/Module/Security/PasswordTooLong.php:64 +#: src/Module/Security/PasswordTooLong.php:50 msgid "Password does not need changing." msgstr "Passwort muss nicht geändert werden." -#: src/Module/Security/PasswordTooLong.php:77 -#: src/Module/Settings/Account.php:81 +#: src/Module/Security/PasswordTooLong.php:63 +#: src/Module/Settings/Account.php:67 msgid "Password unchanged." msgstr "Passwort unverändert." -#: src/Module/Security/PasswordTooLong.php:91 +#: src/Module/Security/PasswordTooLong.php:77 msgid "Password Too Long" msgstr "Passwort ist zu lang" -#: src/Module/Security/PasswordTooLong.php:92 +#: src/Module/Security/PasswordTooLong.php:78 msgid "" "Since version 2022.09, we've realized that any password longer than 72 " "characters is truncated during hashing. To prevent any confusion about this " "behavior, please update your password to be fewer or equal to 72 characters." msgstr "Mit der Version 2022.09 haben wir festgestellt, dass jedes Passwort, das länger als 72 Zeichen ist, beim Hashing abgeschnitten wird. Um Verwirrung über dieses Verhalten zu vermeiden, aktualisiere dein Passwort bitte so, dass es höchstens 72 Zeichen hat." -#: src/Module/Security/PasswordTooLong.php:93 +#: src/Module/Security/PasswordTooLong.php:79 msgid "Update Password" msgstr "Passwort aktualisieren" -#: src/Module/Security/PasswordTooLong.php:99 -#: src/Module/Settings/Account.php:571 +#: src/Module/Security/PasswordTooLong.php:85 +#: src/Module/Settings/Account.php:557 msgid "Current Password:" msgstr "Aktuelles Passwort:" -#: src/Module/Security/PasswordTooLong.php:99 -#: src/Module/Settings/Account.php:571 +#: src/Module/Security/PasswordTooLong.php:85 +#: src/Module/Settings/Account.php:557 msgid "Your current password to confirm the changes" msgstr "Dein aktuelles Passwort um die Änderungen zu bestätigen" -#: src/Module/Security/PasswordTooLong.php:100 -#: src/Module/Settings/Account.php:555 +#: src/Module/Security/PasswordTooLong.php:86 +#: src/Module/Settings/Account.php:541 msgid "" "Allowed characters are a-z, A-Z, 0-9 and special characters except white " "spaces and accentuated letters." msgstr "Erlaube Zeichen sind a-z, A-Z, 0-9 und Sonderzeichen, abgesehen von Leerzeichen und akzentuierten Buchstaben." -#: src/Module/Security/PasswordTooLong.php:100 -#: src/Module/Settings/Account.php:556 +#: src/Module/Security/PasswordTooLong.php:86 +#: src/Module/Settings/Account.php:542 msgid "Password length is limited to 72 characters." msgstr "Die Länge des Passworts ist auf 72 Zeichen begrenzt." -#: src/Module/Security/TwoFactor/Recovery.php:74 +#: src/Module/Security/TwoFactor/Recovery.php:60 #, php-format msgid "Remaining recovery codes: %d" msgstr "Verbleibende Wiederherstellungscodes: %d" -#: src/Module/Security/TwoFactor/Recovery.php:80 -#: src/Module/Security/TwoFactor/Verify.php:77 -#: src/Module/Settings/TwoFactor/Verify.php:98 +#: src/Module/Security/TwoFactor/Recovery.php:66 +#: src/Module/Security/TwoFactor/Verify.php:63 +#: src/Module/Settings/TwoFactor/Verify.php:84 msgid "Invalid code, please retry." msgstr "Ungültiger Code, bitte erneut versuchen." -#: src/Module/Security/TwoFactor/Recovery.php:99 +#: src/Module/Security/TwoFactor/Recovery.php:85 msgid "Two-factor recovery" msgstr "Zwei-Faktor-Wiederherstellung" -#: src/Module/Security/TwoFactor/Recovery.php:100 +#: src/Module/Security/TwoFactor/Recovery.php:86 msgid "" "

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

" msgstr "Du kannst einen deiner einmaligen Wiederherstellungscodes eingeben, falls du den Zugriff auf dein Mobilgerät verloren hast.

" -#: src/Module/Security/TwoFactor/Recovery.php:101 +#: src/Module/Security/TwoFactor/Recovery.php:87 #, php-format msgid "Don’t have your phone? Enter a two-factor recovery code" msgstr "Hast du dein Handy nicht? Gib einen Zwei-Faktor-Wiederherstellungscode ein" -#: src/Module/Security/TwoFactor/Recovery.php:102 +#: src/Module/Security/TwoFactor/Recovery.php:88 msgid "Please enter a recovery code" msgstr "Bitte gib einen Wiederherstellungscode ein" -#: src/Module/Security/TwoFactor/Recovery.php:103 +#: src/Module/Security/TwoFactor/Recovery.php:89 msgid "Submit recovery code and complete login" msgstr "Sende den Wiederherstellungscode und schließe die Anmeldung ab" -#: src/Module/Security/TwoFactor/SignOut.php:122 +#: src/Module/Security/TwoFactor/SignOut.php:108 msgid "Sign out of this browser?" msgstr "Von diesem Browser abmelden?" -#: src/Module/Security/TwoFactor/SignOut.php:123 +#: src/Module/Security/TwoFactor/SignOut.php:109 msgid "" "

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

" msgstr "

Wenn du diesem Browser vertraust, wirst du bei zukünftigen Anmeldungen nicht nach dem Verifikationscode gefragt.

" -#: src/Module/Security/TwoFactor/SignOut.php:124 +#: src/Module/Security/TwoFactor/SignOut.php:110 msgid "Sign out" msgstr "Abmelden" -#: src/Module/Security/TwoFactor/SignOut.php:126 +#: src/Module/Security/TwoFactor/SignOut.php:112 msgid "Trust and sign out" msgstr "Vertrauen und Abmelden" -#: src/Module/Security/TwoFactor/Trust.php:96 +#: src/Module/Security/TwoFactor/Trust.php:82 msgid "Couldn't save browser to Cookie." msgstr "Konnte keine Cookies speichern." -#: src/Module/Security/TwoFactor/Trust.php:141 +#: src/Module/Security/TwoFactor/Trust.php:127 msgid "Trust this browser?" msgstr "Vertraust du diesen Browser?" -#: src/Module/Security/TwoFactor/Trust.php:142 +#: src/Module/Security/TwoFactor/Trust.php:128 msgid "" "

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

" msgstr "

Wenn du diesem Browser vertraust, wirst du bei zukünftigen Anmeldungen nicht nach dem Verifikationscode gefragt.

" -#: src/Module/Security/TwoFactor/Trust.php:143 +#: src/Module/Security/TwoFactor/Trust.php:129 msgid "Not now" msgstr "Nicht jetzt" -#: src/Module/Security/TwoFactor/Trust.php:144 +#: src/Module/Security/TwoFactor/Trust.php:130 msgid "Don't trust" msgstr "Nicht vertrauen" -#: src/Module/Security/TwoFactor/Trust.php:145 +#: src/Module/Security/TwoFactor/Trust.php:131 msgid "Trust" msgstr "Vertrauen" -#: src/Module/Security/TwoFactor/Verify.php:97 +#: src/Module/Security/TwoFactor/Verify.php:83 msgid "" "

Open the two-factor authentication app on your device to get an " "authentication code and verify your identity.

" msgstr "

Öffne die Zwei-Faktor-Authentifizierungs-App auf deinem Gerät, um einen Authentifizierungscode abzurufen und deine Identität zu überprüfen.

" -#: src/Module/Security/TwoFactor/Verify.php:100 +#: src/Module/Security/TwoFactor/Verify.php:86 #, php-format msgid "" "If you do not have access to your authentication code you can use a two-factor recovery code." msgstr "Wenn du keinen Zugriff auf deinen Authentifikationscode hast, kannst du einen Zwei-Faktor Wiederherstellungsschlüssel verwenden." -#: src/Module/Security/TwoFactor/Verify.php:101 -#: src/Module/Settings/TwoFactor/Verify.php:158 +#: src/Module/Security/TwoFactor/Verify.php:87 +#: src/Module/Settings/TwoFactor/Verify.php:144 msgid "Please enter a code from your authentication app" msgstr "Bitte gebe einen Code aus Ihrer Authentifizierungs-App ein" -#: src/Module/Security/TwoFactor/Verify.php:102 +#: src/Module/Security/TwoFactor/Verify.php:88 msgid "Verify code and complete login" msgstr "Code überprüfen und Anmeldung abschließen" -#: src/Module/Settings/Account.php:96 +#: src/Module/Settings/Account.php:82 msgid "Please use a shorter name." msgstr "Bitte verwende einen kürzeren Namen." -#: src/Module/Settings/Account.php:99 +#: src/Module/Settings/Account.php:85 msgid "Name too short." msgstr "Der Name ist zu kurz." -#: src/Module/Settings/Account.php:108 +#: src/Module/Settings/Account.php:94 msgid "Wrong Password." msgstr "Falsches Passwort" -#: src/Module/Settings/Account.php:113 +#: src/Module/Settings/Account.php:99 msgid "Invalid email." msgstr "Ungültige E-Mail-Adresse." -#: src/Module/Settings/Account.php:117 +#: src/Module/Settings/Account.php:103 msgid "Cannot change to that email." msgstr "Ändern der E-Mail nicht möglich. " -#: src/Module/Settings/Account.php:146 src/Module/Settings/Account.php:195 -#: src/Module/Settings/Account.php:216 src/Module/Settings/Account.php:300 -#: src/Module/Settings/Account.php:329 +#: src/Module/Settings/Account.php:132 src/Module/Settings/Account.php:181 +#: src/Module/Settings/Account.php:202 src/Module/Settings/Account.php:286 +#: src/Module/Settings/Account.php:315 msgid "Settings were not updated." msgstr "Einstellungen nicht aktualisiert" -#: src/Module/Settings/Account.php:347 +#: src/Module/Settings/Account.php:333 msgid "Contact CSV file upload error" msgstr "Fehler beim Hochladen der Kontakt CSV Datei" -#: src/Module/Settings/Account.php:366 +#: src/Module/Settings/Account.php:352 msgid "Importing Contacts done" msgstr "Kontakte wurden importiert." -#: src/Module/Settings/Account.php:379 +#: src/Module/Settings/Account.php:365 msgid "Relocate message has been send to your contacts" msgstr "Die Umzugsbenachrichtigung wurde an Deine Kontakte versendet." -#: src/Module/Settings/Account.php:396 +#: src/Module/Settings/Account.php:382 msgid "Unable to find your profile. Please contact your admin." msgstr "Konnte dein Profil nicht finden. Bitte kontaktiere den Admin." -#: src/Module/Settings/Account.php:438 +#: src/Module/Settings/Account.php:424 msgid "" "Account for a service that automatically shares content based on user " "defined channels." msgstr "Konto für einen Dienst, der automatisch Inhalte basierend auf vom Benutzer definierten Kanälen teilt." -#: src/Module/Settings/Account.php:448 +#: src/Module/Settings/Account.php:434 msgid "Personal Page Subtypes" msgstr "Unterarten der persönlichen Seite" -#: src/Module/Settings/Account.php:449 +#: src/Module/Settings/Account.php:435 msgid "Community Group Subtypes" msgstr "Unterarten der Gemeinschaftsgruppen" -#: src/Module/Settings/Account.php:460 +#: src/Module/Settings/Account.php:446 msgid "Account for a personal profile." msgstr "Konto für ein persönliches Profil." -#: src/Module/Settings/Account.php:467 +#: src/Module/Settings/Account.php:453 msgid "" "Account for an organisation that automatically approves contact requests as " "\"Followers\"." msgstr "Konto für eine Organisation, das Kontaktanfragen automatisch als \"Follower\" annimmt." -#: src/Module/Settings/Account.php:474 +#: src/Module/Settings/Account.php:460 msgid "" "Account for a news reflector that automatically approves contact requests as" " \"Followers\"." msgstr "Konto für einen Feedspiegel, das Kontaktanfragen automatisch als \"Follower\" annimmt." -#: src/Module/Settings/Account.php:481 +#: src/Module/Settings/Account.php:467 msgid "Account for community discussions." msgstr "Konto für Diskussionsforen. " -#: src/Module/Settings/Account.php:489 +#: src/Module/Settings/Account.php:475 msgid "" "Account for a regular personal profile that requires manual approval of " "\"Friends\" and \"Followers\"." msgstr "Konto für ein normales, persönliches Profil. Kontaktanfragen müssen manuell als \"Friend\" oder \"Follower\" bestätigt werden." -#: src/Module/Settings/Account.php:496 +#: src/Module/Settings/Account.php:482 msgid "" "Account for a public profile that automatically approves contact requests as" " \"Followers\"." msgstr "Konto für ein öffentliches Profil, das Kontaktanfragen automatisch als \"Follower\" annimmt." -#: src/Module/Settings/Account.php:503 +#: src/Module/Settings/Account.php:489 msgid "Automatically approves all contact requests." msgstr "Bestätigt alle Kontaktanfragen automatisch." -#: src/Module/Settings/Account.php:510 +#: src/Module/Settings/Account.php:496 msgid "Contact requests have to be manually approved." msgstr "Kontaktanfragen müssen manuell akzeptiert werden." -#: src/Module/Settings/Account.php:517 +#: src/Module/Settings/Account.php:503 msgid "" "Account for a popular profile that automatically approves contact requests " "as \"Friends\"." msgstr "Konto für ein gefragtes Profil, das Kontaktanfragen automatisch als \"Friend\" annimmt." -#: src/Module/Settings/Account.php:522 +#: src/Module/Settings/Account.php:508 msgid "Private Group [Experimental]" msgstr "Private Gruppe [experimentell]" -#: src/Module/Settings/Account.php:524 +#: src/Module/Settings/Account.php:510 msgid "Requires manual approval of contact requests." msgstr "Kontaktanfragen müssen manuell bestätigt werden." -#: src/Module/Settings/Account.php:533 +#: src/Module/Settings/Account.php:519 msgid "OpenID:" msgstr "OpenID:" -#: src/Module/Settings/Account.php:533 +#: src/Module/Settings/Account.php:519 msgid "(Optional) Allow this OpenID to login to this account." msgstr "(Optional) Erlaube die Anmeldung für dieses Konto mit dieser OpenID." -#: src/Module/Settings/Account.php:541 +#: src/Module/Settings/Account.php:527 msgid "Publish your profile in your local site directory?" msgstr "Darf dein Profil im lokalen Verzeichnis dieses Servers veröffentlicht werden?" -#: src/Module/Settings/Account.php:541 +#: src/Module/Settings/Account.php:527 #, php-format msgid "" "Your profile will be published in this node's local " @@ -9900,94 +9881,94 @@ msgid "" " system settings." msgstr "Dein Profil wird im lokalen Verzeichnis dieses Knotens veröffentlicht. Je nach Systemeinstellungen kann es öffentlich auffindbar sein." -#: src/Module/Settings/Account.php:547 +#: src/Module/Settings/Account.php:533 #, php-format msgid "" "Your profile will also be published in the global friendica directories " "(e.g. %s)." msgstr "Dein Profil wird auch in den globalen Friendica Verzeichnissen (z.B. %s) veröffentlicht werden." -#: src/Module/Settings/Account.php:560 +#: src/Module/Settings/Account.php:546 msgid "Account Settings" msgstr "Kontoeinstellungen" -#: src/Module/Settings/Account.php:561 +#: src/Module/Settings/Account.php:547 #, php-format msgid "Your Identity Address is '%s' or '%s'." msgstr "Die Adresse deines Profils lautet '%s' oder '%s'." -#: src/Module/Settings/Account.php:568 +#: src/Module/Settings/Account.php:554 msgid "Password Settings" msgstr "Passwort-Einstellungen" -#: src/Module/Settings/Account.php:570 +#: src/Module/Settings/Account.php:556 msgid "Leave password fields blank unless changing" msgstr "Lass die Passwort-Felder leer, außer du willst das Passwort ändern" -#: src/Module/Settings/Account.php:572 +#: src/Module/Settings/Account.php:558 msgid "Password:" msgstr "Passwort:" -#: src/Module/Settings/Account.php:572 +#: src/Module/Settings/Account.php:558 msgid "Your current password to confirm the changes of the email address" msgstr "Dein aktuelles Passwort um die Änderungen deiner E-Mail Adresse zu bestätigen" -#: src/Module/Settings/Account.php:575 +#: src/Module/Settings/Account.php:561 msgid "Delete OpenID URL" msgstr "OpenID URL löschen" -#: src/Module/Settings/Account.php:577 +#: src/Module/Settings/Account.php:563 msgid "Basic Settings" msgstr "Grundeinstellungen" -#: src/Module/Settings/Account.php:578 -#: src/Module/Settings/Profile/Index.php:288 +#: src/Module/Settings/Account.php:564 +#: src/Module/Settings/Profile/Index.php:274 msgid "Display name:" msgstr "Anzeigename:" -#: src/Module/Settings/Account.php:579 +#: src/Module/Settings/Account.php:565 msgid "Email Address:" msgstr "E-Mail-Adresse:" -#: src/Module/Settings/Account.php:580 +#: src/Module/Settings/Account.php:566 msgid "Your Timezone:" msgstr "Deine Zeitzone:" -#: src/Module/Settings/Account.php:581 +#: src/Module/Settings/Account.php:567 msgid "Your Language:" msgstr "Deine Sprache:" -#: src/Module/Settings/Account.php:581 +#: src/Module/Settings/Account.php:567 msgid "" "Set the language we use to show you friendica interface and to send you " "emails" msgstr "Wähle die Sprache, in der wir dir die Friendica-Oberfläche präsentieren sollen und dir E-Mail schicken" -#: src/Module/Settings/Account.php:582 +#: src/Module/Settings/Account.php:568 msgid "Default Post Location:" msgstr "Standardstandort:" -#: src/Module/Settings/Account.php:583 +#: src/Module/Settings/Account.php:569 msgid "Use Browser Location:" msgstr "Standort des Browsers verwenden:" -#: src/Module/Settings/Account.php:585 +#: src/Module/Settings/Account.php:571 msgid "Security and Privacy Settings" msgstr "Sicherheits- und Privatsphäre-Einstellungen" -#: src/Module/Settings/Account.php:587 +#: src/Module/Settings/Account.php:573 msgid "Maximum Friend Requests/Day:" msgstr "Maximale Anzahl von Kontaktanfragen/Tag:" -#: src/Module/Settings/Account.php:587 +#: src/Module/Settings/Account.php:573 msgid "(to prevent spam abuse)" msgstr "(um SPAM zu vermeiden)" -#: src/Module/Settings/Account.php:589 +#: src/Module/Settings/Account.php:575 msgid "Allow your profile to be searchable globally?" msgstr "Darf dein Profil bei Suchanfragen gefunden werden?" -#: src/Module/Settings/Account.php:589 +#: src/Module/Settings/Account.php:575 msgid "" "Activate this setting if you want others to easily find and follow you. Your" " profile will be searchable on remote systems. This setting also determines " @@ -9995,43 +9976,43 @@ msgid "" "indexed or not." msgstr "Aktiviere diese Einstellung, wenn du von anderen einfach gefunden und gefolgt werden möchtest. Dein Profil wird dann auf anderen Systemen leicht durchsuchbar. Außerdem regelt diese Einstellung ob Friendica Suchmaschinen mitteilen soll, ob dein Profil indiziert werden soll oder nicht." -#: src/Module/Settings/Account.php:590 +#: src/Module/Settings/Account.php:576 msgid "Hide your contact/friend list from viewers of your profile?" msgstr "Liste der Kontakte vor Betrachtern des Profil verbergen?" -#: src/Module/Settings/Account.php:590 +#: src/Module/Settings/Account.php:576 msgid "" "A list of your contacts is displayed on your profile page. Activate this " "option to disable the display of your contact list." msgstr "Auf deiner Profilseite wird eine Liste deiner Kontakte angezeigt. Aktiviere diese Option wenn du das nicht möchtest." -#: src/Module/Settings/Account.php:591 +#: src/Module/Settings/Account.php:577 msgid "Hide your public content from anonymous viewers" msgstr "Verbirg die öffentliche Inhalte vor anonymen Besuchern" -#: src/Module/Settings/Account.php:591 +#: src/Module/Settings/Account.php:577 msgid "" "Anonymous visitors will only see your basic profile details. Your public " "posts and replies will still be freely accessible on the remote servers of " "your followers and through relays." msgstr "Anonyme Besucher deines Profils werden nur grundlegende Informationen angezeigt bekommen. Deine öffentlichen Beiträge und Kommentare werden weiterhin frei zugänglich auf den Servern deiner Kontakte und über Relays sein." -#: src/Module/Settings/Account.php:592 +#: src/Module/Settings/Account.php:578 msgid "Make public posts unlisted" msgstr "Öffentliche Beiträge nicht listen" -#: src/Module/Settings/Account.php:592 +#: src/Module/Settings/Account.php:578 msgid "" "Your public posts will not appear on the community pages or in search " "results, nor be sent to relay servers. However they can still appear on " "public feeds on remote servers." msgstr "Deine öffentlichen Beiträge werden nicht auf der Gemeinschaftsseite oder in den Suchergebnissen erscheinen, außerdem werden sie nicht an Relay-Server geschickt. Sie werden aber weiterhin in allen öffentlichen Feeds, auch auf entfernten Servern, erscheinen." -#: src/Module/Settings/Account.php:593 +#: src/Module/Settings/Account.php:579 msgid "Make all posted pictures accessible" msgstr "Alle geposteten Bilder zugreifbar machen" -#: src/Module/Settings/Account.php:593 +#: src/Module/Settings/Account.php:579 msgid "" "This option makes every posted picture accessible via the direct link. This " "is a workaround for the problem that most other networks can't handle " @@ -10039,352 +10020,352 @@ msgid "" "public on your photo albums though." msgstr "Diese Option macht jedes veröffentlichte Bild über den direkten Link zugänglich. Dies ist eine Problemumgehung für das Problem, dass die meisten anderen Netzwerke keine Berechtigungen für Bilder verarbeiten können. Nicht öffentliche Bilder sind in Ihren Fotoalben jedoch immer noch nicht für die Öffentlichkeit sichtbar." -#: src/Module/Settings/Account.php:594 +#: src/Module/Settings/Account.php:580 msgid "Allow friends to post to your profile page?" msgstr "Dürfen deine Kontakte auf deine Pinnwand schreiben?" -#: src/Module/Settings/Account.php:594 +#: src/Module/Settings/Account.php:580 msgid "" "Your contacts may write posts on your profile wall. These posts will be " "distributed to your contacts" msgstr "Deine Kontakte können Beiträge auf deiner Pinnwand hinterlassen. Diese werden an deine Kontakte verteilt." -#: src/Module/Settings/Account.php:595 +#: src/Module/Settings/Account.php:581 msgid "Allow friends to tag your posts?" msgstr "Dürfen deine Kontakte deine Beiträge mit Schlagwörtern versehen?" -#: src/Module/Settings/Account.php:595 +#: src/Module/Settings/Account.php:581 msgid "Your contacts can add additional tags to your posts." msgstr "Deine Kontakte dürfen deine Beiträge mit zusätzlichen Schlagworten versehen." -#: src/Module/Settings/Account.php:596 +#: src/Module/Settings/Account.php:582 msgid "Default privacy circle for new contacts" msgstr "Voreingestellter Circle für neue Kontakte" -#: src/Module/Settings/Account.php:597 +#: src/Module/Settings/Account.php:583 msgid "Default privacy circle for new group contacts" msgstr "Voreingestellter Circle für neue Gruppenkontakte" -#: src/Module/Settings/Account.php:598 +#: src/Module/Settings/Account.php:584 msgid "Default Post Permissions" msgstr "Standard-Zugriffsrechte für Beiträge" -#: src/Module/Settings/Account.php:602 +#: src/Module/Settings/Account.php:588 msgid "Expiration settings" msgstr "Verfalls-Einstellungen" -#: src/Module/Settings/Account.php:603 +#: src/Module/Settings/Account.php:589 msgid "Automatically expire posts after this many days:" msgstr "Beiträge verfallen automatisch nach dieser Anzahl von Tagen:" -#: src/Module/Settings/Account.php:603 +#: src/Module/Settings/Account.php:589 msgid "If empty, posts will not expire. Expired posts will be deleted" msgstr "Wenn leer, verfallen Beiträge nie automatisch. Verfallene Beiträge werden gelöscht." -#: src/Module/Settings/Account.php:604 +#: src/Module/Settings/Account.php:590 msgid "Expire posts" msgstr "Beiträge verfallen lassen" -#: src/Module/Settings/Account.php:604 +#: src/Module/Settings/Account.php:590 msgid "When activated, posts and comments will be expired." msgstr "Ist dies aktiviert, werden Beiträge und Kommentare verfallen." -#: src/Module/Settings/Account.php:605 +#: src/Module/Settings/Account.php:591 msgid "Expire personal notes" msgstr "Persönliche Notizen verfallen lassen" -#: src/Module/Settings/Account.php:605 +#: src/Module/Settings/Account.php:591 msgid "" "When activated, the personal notes on your profile page will be expired." msgstr "Ist dies aktiviert, werden persönliche Notizen auf deiner Pinnwand verfallen." -#: src/Module/Settings/Account.php:606 +#: src/Module/Settings/Account.php:592 msgid "Expire starred posts" msgstr "Markierte Beiträge verfallen lassen" -#: src/Module/Settings/Account.php:606 +#: src/Module/Settings/Account.php:592 msgid "" "Starring posts keeps them from being expired. That behaviour is overwritten " "by this setting." msgstr "Markierte Beiträge verfallen eigentlich nicht. Mit dieser Option kannst du sie verfallen lassen." -#: src/Module/Settings/Account.php:607 +#: src/Module/Settings/Account.php:593 msgid "Only expire posts by others" msgstr "Nur Beiträge anderer verfallen lassen." -#: src/Module/Settings/Account.php:607 +#: src/Module/Settings/Account.php:593 msgid "" "When activated, your own posts never expire. Then the settings above are " "only valid for posts you received." msgstr "Wenn aktiviert werden deine eigenen Beiträge niemals verfallen. Die obigen Einstellungen betreffen dann ausschließlich die Beiträge von anderen Accounts." -#: src/Module/Settings/Account.php:610 +#: src/Module/Settings/Account.php:596 msgid "Notification Settings" msgstr "Benachrichtigungseinstellungen" -#: src/Module/Settings/Account.php:611 +#: src/Module/Settings/Account.php:597 msgid "Send a notification email when:" msgstr "Benachrichtigungs-E-Mail senden, wenn:" -#: src/Module/Settings/Account.php:612 +#: src/Module/Settings/Account.php:598 msgid "You receive an introduction" msgstr "– du eine Kontaktanfrage erhältst" -#: src/Module/Settings/Account.php:613 +#: src/Module/Settings/Account.php:599 msgid "Your introductions are confirmed" msgstr "– eine Deiner Kontaktanfragen akzeptiert wurde" -#: src/Module/Settings/Account.php:614 +#: src/Module/Settings/Account.php:600 msgid "Someone writes on your profile wall" msgstr "– jemand etwas auf Deine Pinnwand schreibt" -#: src/Module/Settings/Account.php:615 +#: src/Module/Settings/Account.php:601 msgid "Someone writes a followup comment" msgstr "– jemand auch einen Kommentar verfasst" -#: src/Module/Settings/Account.php:616 +#: src/Module/Settings/Account.php:602 msgid "You receive a private message" msgstr "– du eine private Nachricht erhältst" -#: src/Module/Settings/Account.php:617 +#: src/Module/Settings/Account.php:603 msgid "You receive a friend suggestion" msgstr "– du eine Empfehlung erhältst" -#: src/Module/Settings/Account.php:618 +#: src/Module/Settings/Account.php:604 msgid "You are tagged in a post" msgstr "– du in einem Beitrag erwähnt wirst" -#: src/Module/Settings/Account.php:620 +#: src/Module/Settings/Account.php:606 msgid "Create a desktop notification when:" msgstr "Benachrichtigungen anzeigen wenn:" -#: src/Module/Settings/Account.php:621 +#: src/Module/Settings/Account.php:607 msgid "Someone tagged you" msgstr "Dich jemand erwähnt" -#: src/Module/Settings/Account.php:622 +#: src/Module/Settings/Account.php:608 msgid "Someone directly commented on your post" msgstr "Jemand einen Beitrag von dir kommentiert hat" -#: src/Module/Settings/Account.php:623 +#: src/Module/Settings/Account.php:609 msgid "Someone liked your content" msgstr "Einer deiner Beiträge gemocht wurde" -#: src/Module/Settings/Account.php:623 src/Module/Settings/Account.php:624 +#: src/Module/Settings/Account.php:609 src/Module/Settings/Account.php:610 msgid "Can only be enabled, when the direct comment notification is enabled." msgstr "Kann nur aktiviert werden, wenn die \"Jemand einen Beitrag von dir kommentiert hat  \" Option eingeschaltet ist." -#: src/Module/Settings/Account.php:624 +#: src/Module/Settings/Account.php:610 msgid "Someone shared your content" msgstr "Einer deiner Beiträge geteilt wurde" -#: src/Module/Settings/Account.php:625 +#: src/Module/Settings/Account.php:611 msgid "Someone commented in your thread" msgstr "Jemand hat in deiner Unterhaltung kommentiert" -#: src/Module/Settings/Account.php:626 +#: src/Module/Settings/Account.php:612 msgid "Someone commented in a thread where you commented" msgstr "Jemand in einer Unterhaltung kommentiert hat, in der du auch kommentiert hast" -#: src/Module/Settings/Account.php:627 +#: src/Module/Settings/Account.php:613 msgid "Someone commented in a thread where you interacted" msgstr "Jemand kommentierte in einer Unterhaltung mit der du interagiert hast" -#: src/Module/Settings/Account.php:629 +#: src/Module/Settings/Account.php:615 msgid "Activate desktop notifications" msgstr "Desktop-Benachrichtigungen einschalten" -#: src/Module/Settings/Account.php:629 +#: src/Module/Settings/Account.php:615 msgid "Show desktop popup on new notifications" msgstr "Desktop-Benachrichtigungen einschalten" -#: src/Module/Settings/Account.php:633 +#: src/Module/Settings/Account.php:619 msgid "Text-only notification emails" msgstr "Benachrichtigungs-E-Mail als Rein-Text." -#: src/Module/Settings/Account.php:635 +#: src/Module/Settings/Account.php:621 msgid "Send text only notification emails, without the html part" msgstr "Sende Benachrichtigungs-E-Mail als Rein-Text - ohne HTML-Teil" -#: src/Module/Settings/Account.php:639 +#: src/Module/Settings/Account.php:625 msgid "Show detailled notifications" msgstr "Detaillierte Benachrichtigungen anzeigen" -#: src/Module/Settings/Account.php:641 +#: src/Module/Settings/Account.php:627 msgid "" "Per default, notifications are condensed to a single notification per item. " "When enabled every notification is displayed." msgstr "Normalerweise werden alle Benachrichtigungen zu einem Thema in einer einzigen Benachrichtigung zusammengefasst. Wenn diese Option aktiviert ist, wird jede Benachrichtigung einzeln angezeigt." -#: src/Module/Settings/Account.php:645 +#: src/Module/Settings/Account.php:631 msgid "Show notifications of ignored contacts" msgstr "Zeige Benachrichtigungen von ignorierten Kontakten" -#: src/Module/Settings/Account.php:647 +#: src/Module/Settings/Account.php:633 msgid "" "You don't see posts from ignored contacts. But you still see their comments." " This setting controls if you want to still receive regular notifications " "that are caused by ignored contacts or not." msgstr "Beiträge von ignorierten Kontakten werden dir nicht angezeigt. Aber du siehst immer noch ihre Kommentare. Diese Einstellung legt fest, ob du dazu weiterhin Benachrichtigungen erhalten willst oder ob diese einfach verworfen werden sollen." -#: src/Module/Settings/Account.php:650 +#: src/Module/Settings/Account.php:636 msgid "Advanced Account/Page Type Settings" msgstr "Erweiterte Konto-/Seitentyp-Einstellungen" -#: src/Module/Settings/Account.php:651 +#: src/Module/Settings/Account.php:637 msgid "Change the behaviour of this account for special situations" msgstr "Verhalten dieses Kontos in bestimmten Situationen:" -#: src/Module/Settings/Account.php:654 +#: src/Module/Settings/Account.php:640 msgid "Import Contacts" msgstr "Kontakte Importieren" -#: src/Module/Settings/Account.php:655 +#: src/Module/Settings/Account.php:641 msgid "" "Upload a CSV file that contains the handle of your followed accounts in the " "first column you exported from the old account." msgstr "Lade eine CSV Datei hoch, die das Handle der Kontakte deines alten Nutzerkontos in der ersten Spalte enthält." -#: src/Module/Settings/Account.php:656 +#: src/Module/Settings/Account.php:642 msgid "Upload File" msgstr "Datei hochladen" -#: src/Module/Settings/Account.php:659 +#: src/Module/Settings/Account.php:645 msgid "Relocate" msgstr "Umziehen" -#: src/Module/Settings/Account.php:660 +#: src/Module/Settings/Account.php:646 msgid "" "If you have moved this profile from another server, and some of your " "contacts don't receive your updates, try pushing this button." msgstr "Wenn du dein Profil von einem anderen Server umgezogen hast und einige deiner Kontakte deine Beiträge nicht erhalten, verwende diesen Button." -#: src/Module/Settings/Account.php:661 +#: src/Module/Settings/Account.php:647 msgid "Resend relocate message to contacts" msgstr "Umzugsbenachrichtigung erneut an Kontakte senden" -#: src/Module/Settings/Addons.php:86 +#: src/Module/Settings/Addons.php:72 msgid "Addon Settings" msgstr "Addon Einstellungen" -#: src/Module/Settings/Addons.php:87 +#: src/Module/Settings/Addons.php:73 msgid "No Addon settings configured" msgstr "Keine Addon-Einstellungen konfiguriert" -#: src/Module/Settings/Channels.php:148 +#: src/Module/Settings/Channels.php:134 msgid "" "This page can be used to define the channels that will automatically be " "reshared by your account." msgstr "Diese Seite kann verwendet werden, um die Kanäle zu definieren, die automatisch von Deinem Konto geteilt werden." -#: src/Module/Settings/Channels.php:153 +#: src/Module/Settings/Channels.php:139 msgid "This page can be used to define your own channels." msgstr "Auf dieser Seite kannst du deine eigenen Kanäle definieren." -#: src/Module/Settings/Channels.php:182 +#: src/Module/Settings/Channels.php:168 msgid "Publish" msgstr "Veröffentlichen" -#: src/Module/Settings/Channels.php:182 +#: src/Module/Settings/Channels.php:168 msgid "" "When selected, the channel results are reshared. This only works for public " "ActivityPub posts from the public timeline or the user defined circles." msgstr "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:190 src/Module/Settings/Channels.php:211 -#: src/Module/Settings/Display.php:338 +#: src/Module/Settings/Channels.php:176 src/Module/Settings/Channels.php:197 +#: src/Module/Settings/Display.php:324 msgid "Label" msgstr "Bezeichnung" -#: src/Module/Settings/Channels.php:191 src/Module/Settings/Channels.php:212 -#: src/Module/Settings/Display.php:339 -#: src/Module/Settings/TwoFactor/AppSpecific.php:137 +#: src/Module/Settings/Channels.php:177 src/Module/Settings/Channels.php:198 +#: src/Module/Settings/Display.php:325 +#: src/Module/Settings/TwoFactor/AppSpecific.php:123 msgid "Description" msgstr "Beschreibung" -#: src/Module/Settings/Channels.php:192 src/Module/Settings/Channels.php:213 +#: src/Module/Settings/Channels.php:178 src/Module/Settings/Channels.php:199 msgid "Access Key" msgstr "Zugriffsschlüssel" -#: src/Module/Settings/Channels.php:193 src/Module/Settings/Channels.php:214 +#: src/Module/Settings/Channels.php:179 src/Module/Settings/Channels.php:200 msgid "Circle/Channel" msgstr "Circle/Kanal" -#: src/Module/Settings/Channels.php:194 src/Module/Settings/Channels.php:215 +#: src/Module/Settings/Channels.php:180 src/Module/Settings/Channels.php:201 msgid "Include Tags" msgstr "Tags einschließen" -#: src/Module/Settings/Channels.php:195 src/Module/Settings/Channels.php:216 +#: src/Module/Settings/Channels.php:181 src/Module/Settings/Channels.php:202 msgid "Exclude Tags" msgstr "Tags ausschließen" -#: src/Module/Settings/Channels.php:196 src/Module/Settings/Channels.php:217 +#: src/Module/Settings/Channels.php:182 src/Module/Settings/Channels.php:203 msgid "Minimum Size" msgstr "Mindestgröße" -#: src/Module/Settings/Channels.php:197 src/Module/Settings/Channels.php:218 +#: src/Module/Settings/Channels.php:183 src/Module/Settings/Channels.php:204 msgid "Maximum Size" msgstr "Maximale Größe" -#: src/Module/Settings/Channels.php:198 src/Module/Settings/Channels.php:219 +#: src/Module/Settings/Channels.php:184 src/Module/Settings/Channels.php:205 msgid "Full Text Search" msgstr "Volltextsuche" -#: src/Module/Settings/Channels.php:202 src/Module/Settings/Channels.php:223 +#: src/Module/Settings/Channels.php:188 src/Module/Settings/Channels.php:209 msgid "Select all languages that you want to see in this channel." msgstr "Wähle alle Sprachen aus, die du in diesem Kanal sehen willst." -#: src/Module/Settings/Channels.php:204 +#: src/Module/Settings/Channels.php:190 msgid "Delete channel" msgstr "Lösche Kanal" -#: src/Module/Settings/Channels.php:204 +#: src/Module/Settings/Channels.php:190 msgid "Check to delete this entry from the channel list" msgstr "Haken setzen, um diesen Eintrag aus der Kanalliste zu löschen" -#: src/Module/Settings/Channels.php:211 +#: src/Module/Settings/Channels.php:197 msgid "Short name for the channel. It is displayed on the channels widget." msgstr "Kurzname für den Kanal. Er wird im Widget für die Kanäle angezeigt." -#: src/Module/Settings/Channels.php:212 +#: src/Module/Settings/Channels.php:198 msgid "This should describe the content of the channel in a few word." msgstr "Dies sollte den Inhalt des Kanals in wenigen Worten beschreiben." -#: src/Module/Settings/Channels.php:213 +#: src/Module/Settings/Channels.php:199 msgid "" "When you want to access this channel via an access key, you can define it " "here. Pay attention to not use an already used one." msgstr "Wenn du auf diesen Kanal über einen Zugangsschlüssel zugreifen willst, kannst du ihn hier festlegen. Achte darauf, dass du nicht einen bereits verwendeten Schlüssel benutzt." -#: src/Module/Settings/Channels.php:214 +#: src/Module/Settings/Channels.php:200 msgid "Select a circle or channel, that your channel should be based on." msgstr "Wähle einen Circle oder Kanal, auf dem Ihr Kanal basieren soll." -#: src/Module/Settings/Channels.php:215 +#: src/Module/Settings/Channels.php:201 msgid "" "Comma separated list of tags. A post will be used when it contains any of " "the listed tags." msgstr "Durch Kommata getrennte Liste von Tags. Ein Beitrag wird verwendet, wenn er eines der aufgeführten Tags enthält." -#: src/Module/Settings/Channels.php:216 +#: src/Module/Settings/Channels.php:202 msgid "" "Comma separated list of tags. If a post contain any of these tags, then it " "will not be part of nthis channel." msgstr "Durch Kommata getrennte Liste von Tags. Wenn ein Beitrag eines dieser Tags enthält, wird er nicht Teil dieses Kanals sein." -#: src/Module/Settings/Channels.php:217 +#: src/Module/Settings/Channels.php:203 msgid "" "Minimum post size. Leave empty for no minimum size. The size is calculated " "without links, attached posts, mentions or hashtags." msgstr "Mindestbeitragsgröße. Lass dieses Feld leer um die Mindestgröße nicht anzugeben. Die Größe wird ohne Links, angehängte Beiträge, Erwähnungen oder Hashtags berechnet." -#: src/Module/Settings/Channels.php:218 +#: src/Module/Settings/Channels.php:204 msgid "" "Maximum post size. Leave empty for no maximum size. The size is calculated " "without links, attached posts, mentions or hashtags." msgstr "Maximalbeitragsgröße. Lass dieses Feld leer um die Maximalgröße nicht anzugeben. Die Größe wird ohne Links, angehängte Beiträge, Erwähnungen oder Hashtags berechnet." -#: src/Module/Settings/Channels.php:219 +#: src/Module/Settings/Channels.php:205 #, php-format msgid "" "Search terms for the body, supports the \"boolean mode\" operators from " @@ -10392,600 +10373,589 @@ msgid "" "keywords: %s" msgstr "Suchbegriffe für den Body, unterstützt die \"boolean mode\"-Operatoren von MariaDB. In der Hilfe findest du eine vollständige Liste der Operatoren und zusätzliche Schlüsselwörter: %s" -#: src/Module/Settings/Channels.php:220 +#: src/Module/Settings/Channels.php:206 msgid "Check to display images in the channel." msgstr "Aktiviere diese Option, um Bilder im Kanal anzuzeigen." -#: src/Module/Settings/Channels.php:221 +#: src/Module/Settings/Channels.php:207 msgid "Check to display videos in the channel." msgstr "Aktiviere diese Option, um Videos im Kanal anzuzeigen." -#: src/Module/Settings/Channels.php:222 +#: src/Module/Settings/Channels.php:208 msgid "Check to display audio in the channel." msgstr "Aktiviere diese Option, um Audio im Kanal anzuzeigen." -#: src/Module/Settings/Channels.php:227 +#: src/Module/Settings/Channels.php:213 msgid "Add new entry to the channel list" msgstr "Neuen Eintrag zur Kanalliste hinzufügen" -#: src/Module/Settings/Channels.php:228 +#: src/Module/Settings/Channels.php:214 msgid "Add" msgstr "Hinzufügen" -#: src/Module/Settings/Channels.php:230 +#: src/Module/Settings/Channels.php:216 msgid "Current Entries in the channel list" msgstr "Aktuelle Einträge in der Kanalliste" -#: src/Module/Settings/Channels.php:233 +#: src/Module/Settings/Channels.php:219 msgid "Delete entry from the channel list" msgstr "Eintrag aus der Kanalliste löschen" -#: src/Module/Settings/Channels.php:234 +#: src/Module/Settings/Channels.php:220 msgid "Delete entry from the channel list?" msgstr "Eintrag aus der Kanalliste löschen?" -#: src/Module/Settings/Connectors.php:122 +#: src/Module/Settings/Connectors.php:108 msgid "Failed to connect with email account using the settings provided." msgstr "Verbindung zum E-Mail-Konto mit den angegebenen Einstellungen nicht möglich." -#: src/Module/Settings/Connectors.php:169 -#: src/Module/Settings/Connectors.php:170 +#: src/Module/Settings/Connectors.php:155 +#: src/Module/Settings/Connectors.php:156 msgid "Diaspora (Socialhome, Hubzilla)" msgstr "Diaspora (Socialhome, Hubzilla)" -#: src/Module/Settings/Connectors.php:169 -#: src/Module/Settings/Connectors.php:173 +#: src/Module/Settings/Connectors.php:155 #, php-format msgid "Built-in support for %s connectivity is enabled" msgstr "Eingebaute Unterstützung für die Verbindung zu %s ist aktiviert." -#: src/Module/Settings/Connectors.php:170 -#: src/Module/Settings/Connectors.php:172 +#: src/Module/Settings/Connectors.php:156 #, php-format msgid "Built-in support for %s connectivity is disabled" msgstr "Eingebaute Unterstützung für die Verbindung zu %s ist nicht aktiviert." -#: src/Module/Settings/Connectors.php:172 -#: src/Module/Settings/Connectors.php:173 -msgid "OStatus (GNU Social)" -msgstr "OStatus (GNU Social)" - -#: src/Module/Settings/Connectors.php:185 +#: src/Module/Settings/Connectors.php:167 msgid "Email access is disabled on this site." msgstr "Zugriff auf E-Mails für diese Seite deaktiviert." -#: src/Module/Settings/Connectors.php:200 -#: src/Module/Settings/Connectors.php:254 +#: src/Module/Settings/Connectors.php:182 +#: src/Module/Settings/Connectors.php:233 msgid "None" msgstr "Keine" -#: src/Module/Settings/Connectors.php:204 +#: src/Module/Settings/Connectors.php:186 msgid "Default (Mastodon will display the title and a link to the post)" msgstr "Grundeinstellung (Mastodon zweigt den Titel und einen Link auf den Beitrag)" -#: src/Module/Settings/Connectors.php:205 +#: src/Module/Settings/Connectors.php:187 msgid "" "Use the summary (Mastodon and some others will treat it as content warning)" msgstr "Verwende die Zusammenfassung (sie wird auf Mastodon und anderen als Inhaltswarnung behandelt)" -#: src/Module/Settings/Connectors.php:206 +#: src/Module/Settings/Connectors.php:188 msgid "Embed the title in the body" msgstr "Titel in Nachrichtenkörper einbetten" -#: src/Module/Settings/Connectors.php:218 +#: src/Module/Settings/Connectors.php:199 msgid "General Social Media Settings" msgstr "Allgemeine Einstellungen zu Sozialen Medien" -#: src/Module/Settings/Connectors.php:221 +#: src/Module/Settings/Connectors.php:202 msgid "Followed content scope" msgstr "Umfang zu folgender Inhalte" -#: src/Module/Settings/Connectors.php:223 +#: src/Module/Settings/Connectors.php:204 msgid "" "By default, conversations in which your follows participated but didn't " "start will be shown in your timeline. You can turn this behavior off, or " "expand it to the conversations in which your follows liked a post." msgstr "Normalerweise werden Unterhaltungen an denen deine Kontakte beteiligt sind, sie aber nicht begonnen haben, in deiner Timeline angezeigt. Mit dieser Einstellung kann dieses Vorgehen kontrolliert werden. Es kann entweder dahin erweitert werden, dass auch Unterhaltungen angezeigt werden in denen deine Kontakte einen Kommentar mögen, oder komplett ausgeschaltet werden, so dass nur noch die Unterhaltungen angezeigt werden, die von deinen Kontakten gestartet wurden." -#: src/Module/Settings/Connectors.php:225 +#: src/Module/Settings/Connectors.php:206 msgid "Only conversations my follows started" msgstr "Nur Unterhaltungen, die meine Kontakte gestartet haben" -#: src/Module/Settings/Connectors.php:226 +#: src/Module/Settings/Connectors.php:207 msgid "Conversations my follows started or commented on (default)" msgstr "Unterhaltungen an denen meine Kontakte beteiligt sind (Grundeinstellung)" -#: src/Module/Settings/Connectors.php:227 +#: src/Module/Settings/Connectors.php:208 msgid "Any conversation my follows interacted with, including likes" msgstr "Unterhaltungen mit denen meine Kontakte interagiert haben, inklusive likes" -#: src/Module/Settings/Connectors.php:230 +#: src/Module/Settings/Connectors.php:211 msgid "Collapse sensitive posts" msgstr "\"Sensible\" Inhalte einklappen" -#: src/Module/Settings/Connectors.php:230 +#: src/Module/Settings/Connectors.php:211 msgid "" "If a post is marked as \"sensitive\", it will be displayed in a collapsed " "state, if this option is enabled." msgstr "Wenn ein Beitrag als \"sensibel\" gekennzeichnet ist, wird er eingeklappt angezeigt, wenn diese Option aktiviert ist." -#: src/Module/Settings/Connectors.php:231 +#: src/Module/Settings/Connectors.php:212 msgid "Enable intelligent shortening" msgstr "Intelligentes kürzen einschalten" -#: src/Module/Settings/Connectors.php:231 +#: src/Module/Settings/Connectors.php:212 msgid "" "Normally the system tries to find the best link to add to shortened posts. " "If disabled, every shortened post will always point to the original " "friendica post." msgstr "Normalerweise versucht das System, den besten Link zu finden, um ihn zum gekürzten Postings hinzuzufügen. Wird diese Option ausgewählt, wird stets ein Link auf die originale Friendica-Nachricht beigefügt." -#: src/Module/Settings/Connectors.php:232 +#: src/Module/Settings/Connectors.php:213 msgid "Enable simple text shortening" msgstr "Einfache Textkürzung aktivieren" -#: src/Module/Settings/Connectors.php:232 +#: src/Module/Settings/Connectors.php:213 msgid "" "Normally the system shortens posts at the next line feed. If this option is " "enabled then the system will shorten the text at the maximum character " "limit." msgstr "Normalerweise kürzt das System Beiträge bei Zeilenumbrüchen. Ist diese Option aktiv, wird das System die Kürzung beim Erreichen der maximalen Zeichenzahl vornehmen." -#: src/Module/Settings/Connectors.php:233 +#: src/Module/Settings/Connectors.php:214 msgid "Attach the link title" msgstr "Link Titel hinzufügen" -#: src/Module/Settings/Connectors.php:233 +#: src/Module/Settings/Connectors.php:214 msgid "" "When activated, the title of the attached link will be added as a title on " "posts to Diaspora. This is mostly helpful with \"remote-self\" contacts that" " share feed content." msgstr "Ist dies aktiviert, wird der Titel von angehangenen Links bei Beiträgen nach Diaspora* angefügt. Dies ist vorallem bei Entfernten Konten nützlich die Beiträge von Feeds weiterleiten." -#: src/Module/Settings/Connectors.php:234 +#: src/Module/Settings/Connectors.php:215 msgid "API: Use spoiler field as title" msgstr "API: Verwende den Spoiler Text als Titel" -#: src/Module/Settings/Connectors.php:234 +#: src/Module/Settings/Connectors.php:215 msgid "" "When activated, the \"spoiler_text\" field in the API will be used for the " "title on standalone posts. When deactivated it will be used for spoiler " "text. For comments it will always be used for spoiler text." msgstr "Ist dies aktiviert, wird das \"spoiler_text\" der API als Titel von neuen Beiträgen verwendet. Ist es deaktiviert wird der Text als Spoiler-Text verwendet. Bei Kommentaren wird der Inhalt immer als Spoiler-Text verwendet." -#: src/Module/Settings/Connectors.php:235 +#: src/Module/Settings/Connectors.php:216 msgid "API: Automatically links at the end of the post as attached posts" msgstr "API: Automatische Links am Ende des Beitrags als angehängte Beiträge" -#: src/Module/Settings/Connectors.php:235 +#: src/Module/Settings/Connectors.php:216 msgid "" "When activated, added links at the end of the post react the same way as " "added links in the web interface." msgstr "Wenn dies aktiviert ist, reagieren hinzugefügte Links am Ende des Beitrags genauso wie hinzugefügte Links in der Weboberfläche." -#: src/Module/Settings/Connectors.php:236 +#: src/Module/Settings/Connectors.php:217 msgid "Article Mode" msgstr "Artikel Modus" -#: src/Module/Settings/Connectors.php:236 +#: src/Module/Settings/Connectors.php:217 msgid "" "Controls how posts with titles are transmitted. Mastodon and its forks don't" " display the content of these posts if the post is created in the correct " "(default) way." msgstr "Kontrolliert wie Beiträge mit Titeln übermittel werden. Mastodon und dessen Forks stellen den Inhalt dieser Beiträge nicht dar, wenn sie an sich korrekt in den Grundeinstellungen übertragen werden." -#: src/Module/Settings/Connectors.php:237 +#: src/Module/Settings/Connectors.php:218 msgid "Your legacy ActivityPub/GNU Social account" msgstr "Dein alter ActivityPub/GNU Social-Account" -#: src/Module/Settings/Connectors.php:237 +#: src/Module/Settings/Connectors.php:218 msgid "" "If you enter your old account name from an ActivityPub based system or your " "GNU Social/Statusnet account name here (in the format user@domain.tld), your" " contacts will be added automatically. The field will be emptied when done." msgstr "Wenn du deinen alten ActivityPub oder GNU Social/Statusnet-Account-Namen hier angibst (Format name@domain.tld), werden deine Kontakte automatisch hinzugefügt. Dieses Feld wird geleert, wenn die Kontakte hinzugefügt wurden." -#: src/Module/Settings/Connectors.php:239 -msgid "Repair OStatus subscriptions" -msgstr "OStatus-Abonnements reparieren" - -#: src/Module/Settings/Connectors.php:243 +#: src/Module/Settings/Connectors.php:222 msgid "Email/Mailbox Setup" msgstr "E-Mail/Postfach-Einstellungen" -#: src/Module/Settings/Connectors.php:244 +#: src/Module/Settings/Connectors.php:223 msgid "" "If you wish to communicate with email contacts using this service " "(optional), please specify how to connect to your mailbox." msgstr "Wenn du mit E-Mail-Kontakten über diesen Service kommunizieren möchtest (optional), gib bitte die Einstellungen für dein Postfach an." -#: src/Module/Settings/Connectors.php:245 +#: src/Module/Settings/Connectors.php:224 msgid "Last successful email check:" msgstr "Letzter erfolgreicher E-Mail-Check" -#: src/Module/Settings/Connectors.php:247 +#: src/Module/Settings/Connectors.php:226 msgid "IMAP server name:" msgstr "IMAP-Server-Name:" -#: src/Module/Settings/Connectors.php:248 +#: src/Module/Settings/Connectors.php:227 msgid "IMAP port:" msgstr "IMAP-Port:" -#: src/Module/Settings/Connectors.php:249 +#: src/Module/Settings/Connectors.php:228 msgid "Security:" msgstr "Sicherheit:" -#: src/Module/Settings/Connectors.php:250 +#: src/Module/Settings/Connectors.php:229 msgid "Email login name:" msgstr "E-Mail-Login-Name:" -#: src/Module/Settings/Connectors.php:251 +#: src/Module/Settings/Connectors.php:230 msgid "Email password:" msgstr "E-Mail-Passwort:" -#: src/Module/Settings/Connectors.php:252 +#: src/Module/Settings/Connectors.php:231 msgid "Reply-to address:" msgstr "Reply-to Adresse:" -#: src/Module/Settings/Connectors.php:253 +#: src/Module/Settings/Connectors.php:232 msgid "Send public posts to all email contacts:" msgstr "Sende öffentliche Beiträge an alle E-Mail-Kontakte:" -#: src/Module/Settings/Connectors.php:254 +#: src/Module/Settings/Connectors.php:233 msgid "Action after import:" msgstr "Aktion nach Import:" -#: src/Module/Settings/Connectors.php:254 +#: src/Module/Settings/Connectors.php:233 msgid "Move to folder" msgstr "In einen Ordner verschieben" -#: src/Module/Settings/Connectors.php:255 +#: src/Module/Settings/Connectors.php:234 msgid "Move to folder:" msgstr "In diesen Ordner verschieben:" -#: src/Module/Settings/Delegation.php:73 +#: src/Module/Settings/Delegation.php:59 msgid "Delegation successfully granted." msgstr "Delegierung erfolgreich eingerichtet." -#: src/Module/Settings/Delegation.php:75 +#: src/Module/Settings/Delegation.php:61 msgid "Parent user not found, unavailable or password doesn't match." msgstr "Der angegebene Nutzer konnte nicht gefunden werden, ist nicht verfügbar oder das angegebene Passwort ist nicht richtig." -#: src/Module/Settings/Delegation.php:79 +#: src/Module/Settings/Delegation.php:65 msgid "Delegation successfully revoked." msgstr "Delegation erfolgreich aufgehoben." -#: src/Module/Settings/Delegation.php:98 -#: src/Module/Settings/Delegation.php:120 +#: src/Module/Settings/Delegation.php:84 +#: src/Module/Settings/Delegation.php:106 msgid "" "Delegated administrators can view but not change delegation permissions." msgstr "Verwalter können die Berechtigungen der Delegationen einsehen, sie aber nicht ändern." -#: src/Module/Settings/Delegation.php:112 +#: src/Module/Settings/Delegation.php:98 msgid "Delegate user not found." msgstr "Delegierter Nutzer nicht gefunden" -#: src/Module/Settings/Delegation.php:169 +#: src/Module/Settings/Delegation.php:155 msgid "No parent user" msgstr "Kein Verwalter" -#: src/Module/Settings/Delegation.php:180 -#: src/Module/Settings/Delegation.php:191 +#: src/Module/Settings/Delegation.php:166 +#: src/Module/Settings/Delegation.php:177 msgid "Parent User" msgstr "Verwalter" -#: src/Module/Settings/Delegation.php:188 +#: src/Module/Settings/Delegation.php:174 msgid "Additional Accounts" msgstr "Zusätzliche Accounts" -#: src/Module/Settings/Delegation.php:189 +#: src/Module/Settings/Delegation.php:175 msgid "" "Register additional accounts that are automatically connected to your " "existing account so you can manage them from this account." msgstr "Zusätzliche Accounts registrieren, die automatisch mit deinem bestehenden Account verknüpft werden, damit du sie anschließend verwalten kannst." -#: src/Module/Settings/Delegation.php:190 +#: src/Module/Settings/Delegation.php:176 msgid "Register an additional account" msgstr "Einen zusätzlichen Account registrieren" -#: src/Module/Settings/Delegation.php:192 +#: src/Module/Settings/Delegation.php:178 msgid "" "Parent users have total control about this account, including the account " "settings. Please double check whom you give this access." msgstr "Verwalter haben Zugriff auf alle Funktionen dieses Benutzerkontos und können dessen Einstellungen ändern." -#: src/Module/Settings/Delegation.php:195 +#: src/Module/Settings/Delegation.php:181 msgid "Delegates" msgstr "Bevollmächtigte" -#: src/Module/Settings/Delegation.php:196 +#: src/Module/Settings/Delegation.php:182 msgid "" "Delegates are able to manage all aspects of this account/page except for " "basic account settings. Please do not delegate your personal account to " "anybody that you do not trust completely." msgstr "Bevollmächtigte sind in der Lage, alle Aspekte dieses Kontos/dieser Seite zu verwalten, abgesehen von den Grundeinstellungen des Kontos. Bitte gib niemandem eine Bevollmächtigung für Deinen privaten Account, dem du nicht absolut vertraust!" -#: src/Module/Settings/Delegation.php:197 +#: src/Module/Settings/Delegation.php:183 msgid "Existing Page Delegates" msgstr "Vorhandene Bevollmächtigte für die Seite" -#: src/Module/Settings/Delegation.php:198 +#: src/Module/Settings/Delegation.php:184 msgid "Potential Delegates" msgstr "Potentielle Bevollmächtigte" -#: src/Module/Settings/Delegation.php:199 +#: src/Module/Settings/Delegation.php:185 msgid "No entries." msgstr "Keine Einträge." -#: src/Module/Settings/Display.php:183 +#: src/Module/Settings/Display.php:169 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:209 #, php-format msgid "%s - (Unsupported)" msgstr "%s - (Nicht unterstützt)" -#: src/Module/Settings/Display.php:260 +#: src/Module/Settings/Display.php:246 msgid "No preview" msgstr "Keine Vorschau" -#: src/Module/Settings/Display.php:261 +#: src/Module/Settings/Display.php:247 msgid "No image" msgstr "Kein Bild" -#: src/Module/Settings/Display.php:262 +#: src/Module/Settings/Display.php:248 msgid "Small Image" msgstr "Kleines Bild" -#: src/Module/Settings/Display.php:263 +#: src/Module/Settings/Display.php:249 msgid "Large Image" msgstr "Große Bilder" -#: src/Module/Settings/Display.php:308 +#: src/Module/Settings/Display.php:294 msgid "Display Settings" msgstr "Anzeige-Einstellungen" -#: src/Module/Settings/Display.php:310 +#: src/Module/Settings/Display.php:296 msgid "General Theme Settings" msgstr "Allgemeine Theme-Einstellungen" -#: src/Module/Settings/Display.php:311 +#: src/Module/Settings/Display.php:297 msgid "Custom Theme Settings" msgstr "Benutzerdefinierte Theme-Einstellungen" -#: src/Module/Settings/Display.php:312 +#: src/Module/Settings/Display.php:298 msgid "Content Settings" msgstr "Einstellungen zum Inhalt" -#: src/Module/Settings/Display.php:313 view/theme/duepuntozero/config.php:86 -#: view/theme/frio/config.php:151 view/theme/quattro/config.php:88 -#: view/theme/vier/config.php:136 +#: src/Module/Settings/Display.php:299 view/theme/duepuntozero/config.php:74 +#: view/theme/frio/config.php:139 view/theme/quattro/config.php:76 +#: view/theme/vier/config.php:124 msgid "Theme settings" msgstr "Theme-Einstellungen" -#: src/Module/Settings/Display.php:314 +#: src/Module/Settings/Display.php:300 msgid "Timelines" msgstr "Timelines" -#: src/Module/Settings/Display.php:321 +#: src/Module/Settings/Display.php:307 msgid "Display Theme:" msgstr "Theme:" -#: src/Module/Settings/Display.php:322 +#: src/Module/Settings/Display.php:308 msgid "Mobile Theme:" msgstr "Mobiles Theme" -#: src/Module/Settings/Display.php:325 +#: src/Module/Settings/Display.php:311 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:311 src/Module/Settings/Display.php:312 msgid "Maximum of 100 items" msgstr "Maximal 100 Beiträge" -#: src/Module/Settings/Display.php:326 +#: src/Module/Settings/Display.php:312 msgid "Number of items to display per page when viewed from mobile device:" msgstr "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:313 msgid "Update browser every xx seconds" msgstr "Browser alle xx Sekunden aktualisieren" -#: src/Module/Settings/Display.php:327 +#: src/Module/Settings/Display.php:313 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:314 msgid "Display emoticons" msgstr "Zeige Emoticons" -#: src/Module/Settings/Display.php:328 +#: src/Module/Settings/Display.php:314 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:315 msgid "Infinite scroll" msgstr "Endloses Scrollen" -#: src/Module/Settings/Display.php:329 +#: src/Module/Settings/Display.php:315 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:316 msgid "Enable Smart Threading" msgstr "Intelligentes Threading aktivieren" -#: src/Module/Settings/Display.php:330 +#: src/Module/Settings/Display.php:316 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:317 msgid "Display the Dislike feature" msgstr "Das \"Nicht-mögen\" Feature anzeigen" -#: src/Module/Settings/Display.php:331 +#: src/Module/Settings/Display.php:317 msgid "" "Display the Dislike button and dislike reactions on posts and comments." msgstr "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:318 msgid "Display the resharer" msgstr "Teilenden anzeigen" -#: src/Module/Settings/Display.php:332 +#: src/Module/Settings/Display.php:318 msgid "Display the first resharer as icon and text on a reshared item." msgstr "Zeige das Profilbild des ersten Kontakts von dem ein Beitrag geteilt wurde." -#: src/Module/Settings/Display.php:333 +#: src/Module/Settings/Display.php:319 msgid "Stay local" msgstr "Bleib lokal" -#: src/Module/Settings/Display.php:333 +#: src/Module/Settings/Display.php:319 msgid "Don't go to a remote system when following a contact link." msgstr "Gehe nicht zu einem Remote-System, wenn einem Kontaktlink gefolgt wird" -#: src/Module/Settings/Display.php:334 +#: src/Module/Settings/Display.php:320 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:320 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:321 msgid "DIsplay the event list" msgstr "Anzeige der der anstehenden Ereignisse" -#: src/Module/Settings/Display.php:335 +#: src/Module/Settings/Display.php:321 msgid "Display the birthday reminder and event list on the network page." msgstr "Zeigt die Geburtstagserinnerungen und die anstehenden Veranstaltungen auf der Netzwerkseite an." -#: src/Module/Settings/Display.php:336 +#: src/Module/Settings/Display.php:322 msgid "Link preview mode" msgstr "Vorschau Modus für Links" -#: src/Module/Settings/Display.php:336 +#: src/Module/Settings/Display.php:322 msgid "Appearance of the link preview that is added to each post with a link." msgstr "Aussehen der Linkvorschau, die zu jedem Beitrag mit einem Link hinzugefügt wird." -#: src/Module/Settings/Display.php:341 +#: src/Module/Settings/Display.php:327 msgid "Bookmark" msgstr "Lesezeichen" -#: src/Module/Settings/Display.php:343 +#: src/Module/Settings/Display.php:329 msgid "" "Enable timelines that you want to see in the channels widget. Bookmark " "timelines that you want to see in the top menu." msgstr "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:331 msgid "Channel languages:" msgstr "Channel Sprachen:" -#: src/Module/Settings/Display.php:345 +#: src/Module/Settings/Display.php:331 msgid "Select all languages that you want to see in your channels." msgstr "Wähle alle Sprachen aus, die du in deinen Kanälen sehen willst." -#: src/Module/Settings/Display.php:347 +#: src/Module/Settings/Display.php:333 msgid "Beginning of week:" msgstr "Wochenbeginn:" -#: src/Module/Settings/Display.php:348 +#: src/Module/Settings/Display.php:334 msgid "Default calendar view:" msgstr "Standard-Kalenderansicht:" -#: src/Module/Settings/Features.php:73 +#: src/Module/Settings/Features.php:59 msgid "Additional Features" msgstr "Zusätzliche Features" -#: src/Module/Settings/OAuth.php:71 +#: src/Module/Settings/OAuth.php:57 msgid "Connected Apps" msgstr "Verbundene Programme" -#: src/Module/Settings/OAuth.php:75 +#: src/Module/Settings/OAuth.php:61 msgid "Remove authorization" msgstr "Autorisierung entziehen" -#: src/Module/Settings/Profile/Index.php:116 +#: src/Module/Settings/Profile/Index.php:102 msgid "Display Name is required." msgstr "Der Anzeigename ist erforderlich." -#: src/Module/Settings/Profile/Index.php:170 +#: src/Module/Settings/Profile/Index.php:156 msgid "Profile couldn't be updated." msgstr "Das Profil konnte nicht aktualisiert werden." -#: src/Module/Settings/Profile/Index.php:210 -#: src/Module/Settings/Profile/Index.php:231 +#: src/Module/Settings/Profile/Index.php:196 +#: src/Module/Settings/Profile/Index.php:217 msgid "Label:" msgstr "Bezeichnung:" -#: src/Module/Settings/Profile/Index.php:211 -#: src/Module/Settings/Profile/Index.php:232 +#: src/Module/Settings/Profile/Index.php:197 +#: src/Module/Settings/Profile/Index.php:218 msgid "Value:" msgstr "Wert:" -#: src/Module/Settings/Profile/Index.php:222 -#: src/Module/Settings/Profile/Index.php:243 +#: src/Module/Settings/Profile/Index.php:208 +#: src/Module/Settings/Profile/Index.php:229 msgid "Field Permissions" msgstr "Berechtigungen des Felds" -#: src/Module/Settings/Profile/Index.php:223 -#: src/Module/Settings/Profile/Index.php:244 +#: src/Module/Settings/Profile/Index.php:209 +#: src/Module/Settings/Profile/Index.php:230 msgid "(click to open/close)" msgstr "(klicke zum Öffnen/Schließen)" -#: src/Module/Settings/Profile/Index.php:229 +#: src/Module/Settings/Profile/Index.php:215 msgid "Add a new profile field" msgstr "Neues Profilfeld hinzufügen" -#: src/Module/Settings/Profile/Index.php:252 +#: src/Module/Settings/Profile/Index.php:238 msgid "" "The homepage is verified. A rel=\"me\" link back to your Friendica profile " "page was found on the homepage." msgstr "Die Homepage ist verifiziert. Ein rel=\"me\" Link zurück auf dein Friendica Profil wurde gefunden." -#: src/Module/Settings/Profile/Index.php:254 +#: src/Module/Settings/Profile/Index.php:240 #, php-format msgid "" "To verify your homepage, add a rel=\"me\" link to it, pointing to your " "profile URL (%s)." msgstr "Um deine Homepage zu verifizieren, füge einen rel=\"me\" Link auf der Seite hinzu, der auf dein Profil mit der URL (%s) verweist." -#: src/Module/Settings/Profile/Index.php:260 +#: src/Module/Settings/Profile/Index.php:246 msgid "Profile Actions" msgstr "Profilaktionen" -#: src/Module/Settings/Profile/Index.php:261 +#: src/Module/Settings/Profile/Index.php:247 msgid "Edit Profile Details" msgstr "Profil bearbeiten" -#: src/Module/Settings/Profile/Index.php:263 +#: src/Module/Settings/Profile/Index.php:249 msgid "Change Profile Photo" msgstr "Profilbild ändern" -#: src/Module/Settings/Profile/Index.php:266 +#: src/Module/Settings/Profile/Index.php:252 msgid "Profile picture" msgstr "Profilbild" -#: src/Module/Settings/Profile/Index.php:267 +#: src/Module/Settings/Profile/Index.php:253 msgid "Location" msgstr "Wohnort" -#: src/Module/Settings/Profile/Index.php:268 src/Util/Temporal.php:97 -#: src/Util/Temporal.php:99 +#: src/Module/Settings/Profile/Index.php:254 src/Util/Temporal.php:83 +#: src/Util/Temporal.php:85 msgid "Miscellaneous" msgstr "Verschiedenes" -#: src/Module/Settings/Profile/Index.php:269 +#: src/Module/Settings/Profile/Index.php:255 msgid "Custom Profile Fields" msgstr "Benutzerdefinierte Profilfelder" -#: src/Module/Settings/Profile/Index.php:270 src/Module/Welcome.php:58 +#: src/Module/Settings/Profile/Index.php:256 src/Module/Welcome.php:44 msgid "Upload Profile Photo" msgstr "Profilbild hochladen" -#: src/Module/Settings/Profile/Index.php:271 +#: src/Module/Settings/Profile/Index.php:257 #, php-format msgid "" "

Custom fields appear on your profile page.

\n" @@ -10995,396 +10965,396 @@ msgid "" "\t\t\t\t

Non-public fields can only be seen by the selected Friendica contacts or the Friendica contacts in the selected circles.

" msgstr "

Die benutzerdefinierten Felder erscheinen auf deiner Profil-Seite

.\n\n

BBCode kann verwendet werden

\n

Die Reihenfolge der Felder kann durch Ziehen des Feld-Titels mit der Maus angepasst werden.

\n

Wird die Bezeichnung des Felds geleert, wird das Feld beim Speichern aus dem Profil entfernt.

\n

Nicht öffentliche Felder können nur von den ausgewählten Friendica Circles gesehen werden.

" -#: src/Module/Settings/Profile/Index.php:291 +#: src/Module/Settings/Profile/Index.php:277 msgid "Street Address:" msgstr "Adresse:" -#: src/Module/Settings/Profile/Index.php:292 +#: src/Module/Settings/Profile/Index.php:278 msgid "Locality/City:" msgstr "Wohnort:" -#: src/Module/Settings/Profile/Index.php:293 +#: src/Module/Settings/Profile/Index.php:279 msgid "Region/State:" msgstr "Region/Bundesstaat:" -#: src/Module/Settings/Profile/Index.php:294 +#: src/Module/Settings/Profile/Index.php:280 msgid "Postal/Zip Code:" msgstr "Postleitzahl:" -#: src/Module/Settings/Profile/Index.php:295 +#: src/Module/Settings/Profile/Index.php:281 msgid "Country:" msgstr "Land:" -#: src/Module/Settings/Profile/Index.php:297 +#: src/Module/Settings/Profile/Index.php:283 msgid "XMPP (Jabber) address:" msgstr "XMPP (Jabber) Adresse" -#: src/Module/Settings/Profile/Index.php:297 +#: src/Module/Settings/Profile/Index.php:283 msgid "" "The XMPP address will be published so that people can follow you there." msgstr "Die XMPP Adresse wird veröffentlicht, damit man dort mit dir kommunizieren kann." -#: src/Module/Settings/Profile/Index.php:298 +#: src/Module/Settings/Profile/Index.php:284 msgid "Matrix (Element) address:" msgstr "Matrix (Element) Adresse:" -#: src/Module/Settings/Profile/Index.php:298 +#: src/Module/Settings/Profile/Index.php:284 msgid "" "The Matrix address will be published so that people can follow you there." msgstr "Die Matrix Adresse wird veröffentlicht, damit man dort mit dir kommunizieren kann." -#: src/Module/Settings/Profile/Index.php:299 +#: src/Module/Settings/Profile/Index.php:285 msgid "Homepage URL:" msgstr "Adresse der Homepage:" -#: src/Module/Settings/Profile/Index.php:300 +#: src/Module/Settings/Profile/Index.php:286 msgid "Public Keywords:" msgstr "Öffentliche Schlüsselwörter:" -#: src/Module/Settings/Profile/Index.php:300 +#: src/Module/Settings/Profile/Index.php:286 msgid "(Used for suggesting potential friends, can be seen by others)" msgstr "(Wird verwendet, um potentielle Kontakte zu finden, kann von Kontakten eingesehen werden)" -#: src/Module/Settings/Profile/Index.php:301 +#: src/Module/Settings/Profile/Index.php:287 msgid "Private Keywords:" msgstr "Private Schlüsselwörter:" -#: src/Module/Settings/Profile/Index.php:301 +#: src/Module/Settings/Profile/Index.php:287 msgid "(Used for searching profiles, never shown to others)" 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:100 +#: src/Module/Settings/Profile/Photo/Crop.php:93 +#: src/Module/Settings/Profile/Photo/Crop.php:111 +#: src/Module/Settings/Profile/Photo/Crop.php:129 +#: src/Module/Settings/Profile/Photo/Index.php:86 #, php-format msgid "Image size reduction [%s] failed." msgstr "Verkleinern der Bildgröße von [%s] scheiterte." -#: src/Module/Settings/Profile/Photo/Crop.php:150 +#: src/Module/Settings/Profile/Photo/Crop.php:136 msgid "" "Shift-reload the page or clear browser cache if the new photo does not " "display immediately." msgstr "Drücke Umschalt+Neu Laden oder leere den Browser-Cache, falls das neue Foto nicht gleich angezeigt wird." -#: src/Module/Settings/Profile/Photo/Crop.php:155 +#: src/Module/Settings/Profile/Photo/Crop.php:141 msgid "Unable to process image" msgstr "Bild konnte nicht verarbeitet werden" -#: src/Module/Settings/Profile/Photo/Crop.php:174 +#: src/Module/Settings/Profile/Photo/Crop.php:160 msgid "Photo not found." msgstr "Foto nicht gefunden" -#: src/Module/Settings/Profile/Photo/Crop.php:196 +#: src/Module/Settings/Profile/Photo/Crop.php:182 msgid "Profile picture successfully updated." msgstr "Profilbild erfolgreich aktualisiert." -#: src/Module/Settings/Profile/Photo/Crop.php:222 -#: src/Module/Settings/Profile/Photo/Crop.php:226 +#: src/Module/Settings/Profile/Photo/Crop.php:208 +#: src/Module/Settings/Profile/Photo/Crop.php:212 msgid "Crop Image" msgstr "Bild zurechtschneiden" -#: src/Module/Settings/Profile/Photo/Crop.php:223 +#: src/Module/Settings/Profile/Photo/Crop.php:209 msgid "Please adjust the image cropping for optimum viewing." msgstr "Passe bitte den Bildausschnitt an, damit das Bild optimal dargestellt werden kann." -#: src/Module/Settings/Profile/Photo/Crop.php:225 +#: src/Module/Settings/Profile/Photo/Crop.php:211 msgid "Use Image As Is" msgstr "Bild wie es ist verwenden" -#: src/Module/Settings/Profile/Photo/Index.php:46 +#: src/Module/Settings/Profile/Photo/Index.php:32 msgid "Missing uploaded image." msgstr "Hochgeladenes Bild nicht gefunden." -#: src/Module/Settings/Profile/Photo/Index.php:123 +#: src/Module/Settings/Profile/Photo/Index.php:109 msgid "Profile Picture Settings" msgstr "Einstellungen zum Profilbild" -#: src/Module/Settings/Profile/Photo/Index.php:124 +#: src/Module/Settings/Profile/Photo/Index.php:110 msgid "Current Profile Picture" msgstr "Aktuelles Profilbild" -#: src/Module/Settings/Profile/Photo/Index.php:125 +#: src/Module/Settings/Profile/Photo/Index.php:111 msgid "Upload Profile Picture" msgstr "Profilbild aktualisieren" -#: src/Module/Settings/Profile/Photo/Index.php:126 +#: src/Module/Settings/Profile/Photo/Index.php:112 msgid "Upload Picture:" msgstr "Bild hochladen" -#: src/Module/Settings/Profile/Photo/Index.php:131 +#: src/Module/Settings/Profile/Photo/Index.php:117 msgid "or" msgstr "oder" -#: src/Module/Settings/Profile/Photo/Index.php:133 +#: src/Module/Settings/Profile/Photo/Index.php:119 msgid "skip this step" msgstr "diesen Schritt überspringen" -#: src/Module/Settings/Profile/Photo/Index.php:135 +#: src/Module/Settings/Profile/Photo/Index.php:121 msgid "select a photo from your photo albums" msgstr "wähle ein Foto aus deinen Fotoalben" -#: src/Module/Settings/RemoveMe.php:76 +#: src/Module/Settings/RemoveMe.php:62 msgid "" "There was a validation error, please make sure you're logged in with the " "account you want to remove and try again." msgstr "Es gab einen Überprüfungsfehler. Bitte vergewisser dich, dass du mit dem Konto, das du entfernen möchtest angemeldet bist, und versuche es erneut." -#: src/Module/Settings/RemoveMe.php:76 +#: src/Module/Settings/RemoveMe.php:62 msgid "If this error persists, please contact your administrator." msgstr "Wenn dieser Fehler weiterhin besteht, wende dich bitte an den Administrator deiner Instanz." -#: src/Module/Settings/RemoveMe.php:90 -#: src/Navigation/Notifications/Repository/Notify.php:471 -#: src/Navigation/Notifications/Repository/Notify.php:492 +#: src/Module/Settings/RemoveMe.php:76 +#: src/Navigation/Notifications/Repository/Notify.php:457 +#: src/Navigation/Notifications/Repository/Notify.php:478 msgid "[Friendica System Notify]" msgstr "[Friendica-Systembenachrichtigung]" -#: src/Module/Settings/RemoveMe.php:90 +#: src/Module/Settings/RemoveMe.php:76 msgid "User deleted their account" msgstr "Gelöschter Nutzeraccount" -#: src/Module/Settings/RemoveMe.php:91 +#: src/Module/Settings/RemoveMe.php:77 msgid "" "On your Friendica node an user deleted their account. Please ensure that " "their data is removed from the backups." msgstr "Ein Nutzer deiner Friendica-Instanz hat seinen Account gelöscht. Bitte stelle sicher, dass dessen Daten aus deinen Backups entfernt werden." -#: src/Module/Settings/RemoveMe.php:92 +#: src/Module/Settings/RemoveMe.php:78 #, php-format msgid "The user id is %d" msgstr "Die ID des Users lautet %d" -#: src/Module/Settings/RemoveMe.php:105 +#: src/Module/Settings/RemoveMe.php:91 msgid "Your account has been successfully removed. Bye bye!" msgstr "Ihr Konto wurde erfolgreich gelöscht. Auf Wiedersehen!" -#: src/Module/Settings/RemoveMe.php:130 +#: src/Module/Settings/RemoveMe.php:116 msgid "Remove My Account" msgstr "Konto löschen" -#: src/Module/Settings/RemoveMe.php:131 +#: src/Module/Settings/RemoveMe.php:117 msgid "" "This will completely remove your account. Once this has been done it is not " "recoverable." msgstr "Dein Konto wird endgültig gelöscht. Es gibt keine Möglichkeit, es wiederherzustellen." -#: src/Module/Settings/RemoveMe.php:136 +#: src/Module/Settings/RemoveMe.php:122 msgid "Please enter your password for verification:" msgstr "Bitte gib dein Passwort zur Verifikation ein:" -#: src/Module/Settings/Server/Action.php:60 +#: src/Module/Settings/Server/Action.php:46 msgid "Do you want to ignore this server?" msgstr "Möchtest du diese Instanz ignorieren?" -#: src/Module/Settings/Server/Action.php:64 +#: src/Module/Settings/Server/Action.php:50 msgid "Do you want to unignore this server?" msgstr "Möchtest du diese Instanz nicht mehr ignorieren?" -#: src/Module/Settings/Server/Action.php:74 -#: src/Module/Settings/Server/Index.php:104 +#: src/Module/Settings/Server/Action.php:60 +#: src/Module/Settings/Server/Index.php:90 msgid "Remote server settings" msgstr "Einstellungen der Remote-Instanz" -#: src/Module/Settings/Server/Action.php:77 +#: src/Module/Settings/Server/Action.php:63 msgid "Server URL" msgstr "Server URL" -#: src/Module/Settings/Server/Index.php:78 +#: src/Module/Settings/Server/Index.php:64 msgid "Settings saved" msgstr "Einstellungen gespeichert" -#: src/Module/Settings/Server/Index.php:105 +#: src/Module/Settings/Server/Index.php:91 msgid "" "Here you can find all the remote servers you have taken individual " "moderation actions against. For a list of servers your node has blocked, " "please check out the Information page." msgstr "Hier findest du alle Entfernten-Server, gegen die du individuelle Moderationsmaßnahmen ergriffen hast. Eine Liste der Server, die deine Instanz blockiert hat, findest du auf der Informationseite ." -#: src/Module/Settings/Server/Index.php:110 +#: src/Module/Settings/Server/Index.php:96 msgid "Delete all your settings for the remote server" msgstr "Lösche alle deine Einstellungen für die Entfernte-Instanz" -#: src/Module/Settings/Server/Index.php:111 +#: src/Module/Settings/Server/Index.php:97 msgid "Save changes" msgstr "Einstellungen speichern" -#: src/Module/Settings/TwoFactor/AppSpecific.php:69 -#: src/Module/Settings/TwoFactor/Recovery.php:67 -#: src/Module/Settings/TwoFactor/Trusted.php:70 -#: src/Module/Settings/TwoFactor/Verify.php:72 +#: src/Module/Settings/TwoFactor/AppSpecific.php:55 +#: src/Module/Settings/TwoFactor/Recovery.php:53 +#: src/Module/Settings/TwoFactor/Trusted.php:56 +#: src/Module/Settings/TwoFactor/Verify.php:58 msgid "Please enter your password to access this page." msgstr "Bitte gib dein Passwort ein, um auf diese Seite zuzugreifen." -#: src/Module/Settings/TwoFactor/AppSpecific.php:87 +#: src/Module/Settings/TwoFactor/AppSpecific.php:73 msgid "App-specific password generation failed: The description is empty." msgstr "Die Erzeugung des App spezifischen Passworts ist fehlgeschlagen. Die Beschreibung ist leer." -#: src/Module/Settings/TwoFactor/AppSpecific.php:90 +#: src/Module/Settings/TwoFactor/AppSpecific.php:76 msgid "" "App-specific password generation failed: This description already exists." msgstr "Die Erzeugung des App spezifischen Passworts ist fehlgeschlagen. Die Beschreibung existiert bereits." -#: src/Module/Settings/TwoFactor/AppSpecific.php:94 +#: src/Module/Settings/TwoFactor/AppSpecific.php:80 msgid "New app-specific password generated." msgstr "Neues App spezifisches Passwort erzeugt." -#: src/Module/Settings/TwoFactor/AppSpecific.php:100 +#: src/Module/Settings/TwoFactor/AppSpecific.php:86 msgid "App-specific passwords successfully revoked." msgstr "App spezifische Passwörter erfolgreich widerrufen." -#: src/Module/Settings/TwoFactor/AppSpecific.php:110 +#: src/Module/Settings/TwoFactor/AppSpecific.php:96 msgid "App-specific password successfully revoked." msgstr "App spezifisches Passwort erfolgreich widerrufen." -#: src/Module/Settings/TwoFactor/AppSpecific.php:131 +#: src/Module/Settings/TwoFactor/AppSpecific.php:117 msgid "Two-factor app-specific passwords" msgstr "Zwei-Faktor App spezifische Passwörter." -#: src/Module/Settings/TwoFactor/AppSpecific.php:133 +#: src/Module/Settings/TwoFactor/AppSpecific.php:119 msgid "" "

App-specific passwords are randomly generated passwords used instead your" " regular password to authenticate your account on third-party applications " "that don't support two-factor authentication.

" msgstr "

App spezifische Passwörter sind zufällig generierte Passwörter die anstelle des regulären Passworts zur Anmeldung mit Client Anwendungen verwendet werden, wenn diese Anwendungen die Zwei-Faktor-Authentifizierung nicht unterstützen.

" -#: src/Module/Settings/TwoFactor/AppSpecific.php:134 +#: src/Module/Settings/TwoFactor/AppSpecific.php:120 msgid "" "Make sure to copy your new app-specific password now. You won’t be able to " "see it again!" msgstr "Das neue App spezifische Passwort muss jetzt übertragen werden. Später wirst du es nicht mehr einsehen können!" -#: src/Module/Settings/TwoFactor/AppSpecific.php:138 +#: src/Module/Settings/TwoFactor/AppSpecific.php:124 msgid "Last Used" msgstr "Zuletzt verwendet" -#: src/Module/Settings/TwoFactor/AppSpecific.php:139 +#: src/Module/Settings/TwoFactor/AppSpecific.php:125 msgid "Revoke" msgstr "Widerrufen" -#: src/Module/Settings/TwoFactor/AppSpecific.php:140 +#: src/Module/Settings/TwoFactor/AppSpecific.php:126 msgid "Revoke All" msgstr "Alle widerrufen" -#: src/Module/Settings/TwoFactor/AppSpecific.php:143 +#: src/Module/Settings/TwoFactor/AppSpecific.php:129 msgid "" "When you generate a new app-specific password, you must use it right away, " "it will be shown to you once after you generate it." msgstr "Wenn du eine neues App spezifisches Passwort erstellst, musst du es sofort verwenden. Es wird dir nur ein einziges Mal nach der Erstellung angezeigt." -#: src/Module/Settings/TwoFactor/AppSpecific.php:144 +#: src/Module/Settings/TwoFactor/AppSpecific.php:130 msgid "Generate new app-specific password" msgstr "Neues App spezifisches Passwort erstellen" -#: src/Module/Settings/TwoFactor/AppSpecific.php:145 +#: src/Module/Settings/TwoFactor/AppSpecific.php:131 msgid "Friendiqa on my Fairphone 2..." msgstr "Friendiqa auf meinem Fairphone 2" -#: src/Module/Settings/TwoFactor/AppSpecific.php:146 +#: src/Module/Settings/TwoFactor/AppSpecific.php:132 msgid "Generate" msgstr "Erstellen" -#: src/Module/Settings/TwoFactor/Index.php:88 +#: src/Module/Settings/TwoFactor/Index.php:74 msgid "Two-factor authentication successfully disabled." msgstr "Zwei-Faktor Authentifizierung erfolgreich deaktiviert." -#: src/Module/Settings/TwoFactor/Index.php:141 +#: src/Module/Settings/TwoFactor/Index.php:127 msgid "" "

Use an application on a mobile device to get two-factor authentication " "codes when prompted on login.

" msgstr "

Benutze eine App auf deinem Smartphone um einen Zwei-Faktor Identifikationscode zu bekommen wenn beim Anmelden das verlangt wird.

" -#: src/Module/Settings/TwoFactor/Index.php:145 +#: src/Module/Settings/TwoFactor/Index.php:131 msgid "Authenticator app" msgstr "Zwei-Faktor Authentifizierungsapp" -#: src/Module/Settings/TwoFactor/Index.php:146 +#: src/Module/Settings/TwoFactor/Index.php:132 msgid "Configured" msgstr "Konfiguriert" -#: src/Module/Settings/TwoFactor/Index.php:146 +#: src/Module/Settings/TwoFactor/Index.php:132 msgid "Not Configured" msgstr "Nicht konfiguriert" -#: src/Module/Settings/TwoFactor/Index.php:147 +#: src/Module/Settings/TwoFactor/Index.php:133 msgid "

You haven't finished configuring your authenticator app.

" msgstr "

Die Konfiguration deiner Zwei-Faktor Authentifizierungsapp ist nicht abgeschlossen.

" -#: src/Module/Settings/TwoFactor/Index.php:148 +#: src/Module/Settings/TwoFactor/Index.php:134 msgid "

Your authenticator app is correctly configured.

" msgstr "

Deine Zwei-Faktor Authentifizierungsapp ist korrekt konfiguriert.

" -#: src/Module/Settings/TwoFactor/Index.php:150 +#: src/Module/Settings/TwoFactor/Index.php:136 msgid "Recovery codes" msgstr "Wiederherstellungsschlüssel" -#: src/Module/Settings/TwoFactor/Index.php:151 +#: src/Module/Settings/TwoFactor/Index.php:137 msgid "Remaining valid codes" msgstr "Verbleibende Wiederherstellungsschlüssel" -#: src/Module/Settings/TwoFactor/Index.php:153 +#: src/Module/Settings/TwoFactor/Index.php:139 msgid "" "

These one-use codes can replace an authenticator app code in case you " "have lost access to it.

" msgstr "

Diese Einmalcodes können einen Authentifikator-App-Code ersetzen, falls du den Zugriff darauf verloren hast.

" -#: src/Module/Settings/TwoFactor/Index.php:155 +#: src/Module/Settings/TwoFactor/Index.php:141 msgid "App-specific passwords" msgstr "App spezifische Passwörter" -#: src/Module/Settings/TwoFactor/Index.php:156 +#: src/Module/Settings/TwoFactor/Index.php:142 msgid "Generated app-specific passwords" msgstr "App spezifische Passwörter erstellen" -#: src/Module/Settings/TwoFactor/Index.php:158 +#: src/Module/Settings/TwoFactor/Index.php:144 msgid "" "

These randomly generated passwords allow you to authenticate on apps not " "supporting two-factor authentication.

" msgstr "

Diese zufällig erzeugten Passwörter erlauben es dir dich mit Apps anzumelden, die keine Zwei-Faktor-Authentifizierung unterstützen.

" -#: src/Module/Settings/TwoFactor/Index.php:161 +#: src/Module/Settings/TwoFactor/Index.php:147 msgid "Current password:" msgstr "Aktuelles Passwort:" -#: src/Module/Settings/TwoFactor/Index.php:161 +#: src/Module/Settings/TwoFactor/Index.php:147 msgid "" "You need to provide your current password to change two-factor " "authentication settings." msgstr "Du musst dein aktuelles Passwort eingeben um die Einstellungen der Zwei-Faktor-Authentifizierung zu ändern" -#: src/Module/Settings/TwoFactor/Index.php:162 +#: src/Module/Settings/TwoFactor/Index.php:148 msgid "Enable two-factor authentication" msgstr "Aktiviere die Zwei-Faktor-Authentifizierung" -#: src/Module/Settings/TwoFactor/Index.php:163 +#: src/Module/Settings/TwoFactor/Index.php:149 msgid "Disable two-factor authentication" msgstr "Deaktiviere die Zwei-Faktor-Authentifizierung" -#: src/Module/Settings/TwoFactor/Index.php:164 +#: src/Module/Settings/TwoFactor/Index.php:150 msgid "Show recovery codes" msgstr "Wiederherstellungscodes anzeigen" -#: src/Module/Settings/TwoFactor/Index.php:165 +#: src/Module/Settings/TwoFactor/Index.php:151 msgid "Manage app-specific passwords" msgstr "App spezifische Passwörter verwalten" -#: src/Module/Settings/TwoFactor/Index.php:166 +#: src/Module/Settings/TwoFactor/Index.php:152 msgid "Manage trusted browsers" msgstr "Vertrauenswürdige Browser verwalten" -#: src/Module/Settings/TwoFactor/Index.php:167 +#: src/Module/Settings/TwoFactor/Index.php:153 msgid "Finish app configuration" msgstr "Beende die App-Konfiguration" -#: src/Module/Settings/TwoFactor/Recovery.php:83 +#: src/Module/Settings/TwoFactor/Recovery.php:69 msgid "New recovery codes successfully generated." msgstr "Neue Wiederherstellungscodes erfolgreich generiert." -#: src/Module/Settings/TwoFactor/Recovery.php:109 +#: src/Module/Settings/TwoFactor/Recovery.php:95 msgid "Two-factor recovery codes" msgstr "Zwei-Faktor-Wiederherstellungscodes" -#: src/Module/Settings/TwoFactor/Recovery.php:111 +#: src/Module/Settings/TwoFactor/Recovery.php:97 msgid "" "

Recovery codes can be used to access your account in the event you lose " "access to your device and cannot receive two-factor authentication " @@ -11393,68 +11363,68 @@ msgid "" "account.

" msgstr "

Wiederherstellungscodes können verwendet werden, um auf dein Konto zuzugreifen, falls du den Zugriff auf dein Gerät verlieren und keine Zwei-Faktor-Authentifizierungscodes erhalten kannst.

Bewahre diese an einem sicheren Ort auf! Wenn du dein Gerät verlierst und nicht über die Wiederherstellungscodes verfügst, verlierst du den Zugriff auf dein Konto.

" -#: src/Module/Settings/TwoFactor/Recovery.php:113 +#: src/Module/Settings/TwoFactor/Recovery.php:99 msgid "" "When you generate new recovery codes, you must copy the new codes. Your old " "codes won’t work anymore." msgstr "Wenn du neue Wiederherstellungscodes generierst, mußt du die neuen Codes kopieren. Deine alten Codes funktionieren nicht mehr." -#: src/Module/Settings/TwoFactor/Recovery.php:114 +#: src/Module/Settings/TwoFactor/Recovery.php:100 msgid "Generate new recovery codes" msgstr "Generiere neue Wiederherstellungscodes" -#: src/Module/Settings/TwoFactor/Recovery.php:116 +#: src/Module/Settings/TwoFactor/Recovery.php:102 msgid "Next: Verification" msgstr "Weiter: Überprüfung" -#: src/Module/Settings/TwoFactor/Trusted.php:87 +#: src/Module/Settings/TwoFactor/Trusted.php:73 msgid "Trusted browsers successfully removed." msgstr "Die vertrauenswürdigen Browser wurden erfolgreich entfernt." -#: src/Module/Settings/TwoFactor/Trusted.php:97 +#: src/Module/Settings/TwoFactor/Trusted.php:83 msgid "Trusted browser successfully removed." msgstr "Der vertrauenswürdige Browser erfolgreich entfernt." -#: src/Module/Settings/TwoFactor/Trusted.php:139 +#: src/Module/Settings/TwoFactor/Trusted.php:125 msgid "Two-factor Trusted Browsers" msgstr "Zwei-Faktor vertrauenswürdige Browser" -#: src/Module/Settings/TwoFactor/Trusted.php:140 +#: src/Module/Settings/TwoFactor/Trusted.php:126 msgid "" "Trusted browsers are individual browsers you chose to skip two-factor " "authentication to access Friendica. Please use this feature sparingly, as it" " can negate the benefit of two-factor authentication." msgstr "Vertrauenswürdige Browser sind spezielle Browser für die du entscheidest, dass die Zwei-Faktor Authentifikation übersprungen werden soll. Bitte verwende diese Option sparsam, da sie die Vorteile der 2FA aufhebt." -#: src/Module/Settings/TwoFactor/Trusted.php:141 +#: src/Module/Settings/TwoFactor/Trusted.php:127 msgid "Device" msgstr "Gerät" -#: src/Module/Settings/TwoFactor/Trusted.php:142 +#: src/Module/Settings/TwoFactor/Trusted.php:128 msgid "OS" msgstr "OS" -#: src/Module/Settings/TwoFactor/Trusted.php:144 +#: src/Module/Settings/TwoFactor/Trusted.php:130 msgid "Trusted" msgstr "Vertrauenswürdig" -#: src/Module/Settings/TwoFactor/Trusted.php:145 +#: src/Module/Settings/TwoFactor/Trusted.php:131 msgid "Created At" msgstr "Erstellt am" -#: src/Module/Settings/TwoFactor/Trusted.php:146 +#: src/Module/Settings/TwoFactor/Trusted.php:132 msgid "Last Use" msgstr "Zuletzt verwendet" -#: src/Module/Settings/TwoFactor/Trusted.php:148 +#: src/Module/Settings/TwoFactor/Trusted.php:134 msgid "Remove All" msgstr "Alle entfernen" -#: src/Module/Settings/TwoFactor/Verify.php:94 +#: src/Module/Settings/TwoFactor/Verify.php:80 msgid "Two-factor authentication successfully activated." msgstr "Zwei-Faktor-Authentifizierung erfolgreich aktiviert." -#: src/Module/Settings/TwoFactor/Verify.php:128 +#: src/Module/Settings/TwoFactor/Verify.php:114 #, php-format msgid "" "

Or you can submit the authentication settings manually:

\n" @@ -11474,105 +11444,105 @@ msgid "" "" msgstr "

Oder du kannst die Authentifizierungseinstellungen manuell übermitteln:

\n
\n\tVerursacher\n\t
%s
\n\t
Kontoname
\n\t
%s
\n\t
Geheimer Schlüssel
\n\t
%s
\n\t
Typ
\n\t
Zeitbasiert
\n\t
Anzahl an Ziffern
\n\t
6
\n\t
Hashing-Algorithmus
\n\t
SHA-1
\n
" -#: src/Module/Settings/TwoFactor/Verify.php:148 +#: src/Module/Settings/TwoFactor/Verify.php:134 msgid "Two-factor code verification" msgstr "Überprüfung des Zwei-Faktor-Codes" -#: src/Module/Settings/TwoFactor/Verify.php:150 +#: src/Module/Settings/TwoFactor/Verify.php:136 msgid "" "

Please scan this QR Code with your authenticator app and submit the " "provided code.

" msgstr "

Bitte scanne diesen QR-Code mit deiner Authentifikator-App und übermittele den bereitgestellten Code.

" -#: src/Module/Settings/TwoFactor/Verify.php:152 +#: src/Module/Settings/TwoFactor/Verify.php:138 #, php-format msgid "" "

Or you can open the following URL in your mobile device:

%s

" msgstr "

Oder du kannst die folgende URL in deinem Mobilgerät öffnen:

%s

" -#: src/Module/Settings/TwoFactor/Verify.php:159 +#: src/Module/Settings/TwoFactor/Verify.php:145 msgid "Verify code and enable two-factor authentication" msgstr "Überprüfe den Code und aktiviere die Zwei-Faktor-Authentifizierung" -#: src/Module/Settings/UserExport.php:90 +#: src/Module/Settings/UserExport.php:76 msgid "Export account" msgstr "Account exportieren" -#: src/Module/Settings/UserExport.php:90 +#: src/Module/Settings/UserExport.php:76 msgid "" "Export your account info and contacts. Use this to make a backup of your " "account and/or to move it to another server." msgstr "Exportiere Deine Account-Informationen und Kontakte. Verwende dies, um ein Backup Deines Accounts anzulegen und/oder damit auf einen anderen Server umzuziehen." -#: src/Module/Settings/UserExport.php:91 +#: src/Module/Settings/UserExport.php:77 msgid "Export all" msgstr "Alles exportieren" -#: src/Module/Settings/UserExport.php:91 +#: src/Module/Settings/UserExport.php:77 msgid "" "Export your account info, contacts and all your items as json. Could be a " "very big file, and could take a lot of time. Use this to make a full backup " "of your account (photos are not exported)" msgstr "Exportiere deine Account Informationen, Kontakte und alle Einträge als JSON Datei. Dies könnte eine sehr große Datei werden und dementsprechend viel Zeit benötigen. Verwende dies um ein komplettes Backup deines Accounts anzulegen (Photos werden nicht exportiert)." -#: src/Module/Settings/UserExport.php:92 +#: src/Module/Settings/UserExport.php:78 msgid "Export Contacts to CSV" msgstr "Kontakte nach CSV exportieren" -#: src/Module/Settings/UserExport.php:92 +#: src/Module/Settings/UserExport.php:78 msgid "" "Export the list of the accounts you are following as CSV file. Compatible to" " e.g. Mastodon." msgstr "Exportiert die Liste der Nutzerkonten denen du folgst in eine CSV Datei. Das Format ist z.B. zu Mastodon kompatibel." -#: src/Module/Special/DisplayNotFound.php:35 +#: src/Module/Special/DisplayNotFound.php:21 msgid "The top-level post isn't visible." msgstr "Der Beitrag der obersten Ebene ist nicht sichtbar." -#: src/Module/Special/DisplayNotFound.php:36 +#: src/Module/Special/DisplayNotFound.php:22 msgid "The top-level post was deleted." msgstr "Der Beitrag auf der obersten Ebene wurde gelöscht." -#: src/Module/Special/DisplayNotFound.php:37 +#: src/Module/Special/DisplayNotFound.php:23 msgid "" "This node has blocked the top-level author or the author of the shared post." msgstr "Diese Instanz hat den Top-Level-Autor oder den Autor des freigegebenen Beitrags gesperrt." -#: src/Module/Special/DisplayNotFound.php:38 +#: src/Module/Special/DisplayNotFound.php:24 msgid "" "You have ignored or blocked the top-level author or the author of the shared" " post." msgstr "Du hast den Autor der obersten Ebene oder den Autor des freigegebenen Beitrags ignoriert oder blockiert." -#: src/Module/Special/DisplayNotFound.php:39 +#: src/Module/Special/DisplayNotFound.php:25 msgid "" "You have ignored the top-level author's server or the shared post author's " "server." msgstr "Du hast die Instanz des übergeordneten Autors oder die Instanz des Autors des freigegebenen Beitrags ignoriert." -#: src/Module/Special/DisplayNotFound.php:45 +#: src/Module/Special/DisplayNotFound.php:31 msgid "Conversation Not Found" msgstr "Konversation nicht gefunden" -#: src/Module/Special/DisplayNotFound.php:46 +#: src/Module/Special/DisplayNotFound.php:32 msgid "Unfortunately, the requested conversation isn't available to you." msgstr "Leider ist die gewünschte Konversation für dich nicht verfügbar." -#: src/Module/Special/DisplayNotFound.php:47 +#: src/Module/Special/DisplayNotFound.php:33 msgid "Possible reasons include:" msgstr "Mögliche Gründe sind:" -#: src/Module/Special/HTTPException.php:78 +#: src/Module/Special/HTTPException.php:64 msgid "Stack trace:" msgstr "Stack trace:" -#: src/Module/Special/HTTPException.php:83 +#: src/Module/Special/HTTPException.php:69 #, php-format msgid "Exception thrown in %s:%d" msgstr "Exception thrown in %s:%d" -#: src/Module/Tos.php:58 src/Module/Tos.php:107 +#: src/Module/Tos.php:44 src/Module/Tos.php:93 msgid "" "At the time of registration, and for providing communications between the " "user account and their contacts, the user has to provide a display name (pen" @@ -11585,14 +11555,14 @@ msgid "" "settings, it is not necessary for communication." msgstr "Zum Zwecke der Registrierung und um die Kommunikation zwischen dem Nutzer und seinen Kontakten zu gewährleisten, muß der Nutzer einen Namen (auch Pseudonym) und einen Nutzernamen (Spitzname) sowie eine funktionierende E-Mail-Adresse angeben. Der Name ist auf der Profilseite für alle Nutzer sichtbar, auch wenn die Profildetails nicht angezeigt werden.\nDie E-Mail-Adresse wird nur zur Benachrichtigung des Nutzers verwendet, sie wird nirgends angezeigt. Die Anzeige des Nutzerkontos im Server-Verzeichnis bzw. dem weltweiten Verzeichnis erfolgt gemäß den Einstellungen des Nutzers, sie ist zur Kommunikation nicht zwingend notwendig." -#: src/Module/Tos.php:59 src/Module/Tos.php:108 +#: src/Module/Tos.php:45 src/Module/Tos.php:94 msgid "" "This data is required for communication and is passed on to the nodes of the" " communication partners and is stored there. Users can enter additional " "private data that may be transmitted to the communication partners accounts." msgstr "Diese Daten sind für die Kommunikation notwendig und werden an die Knoten der Kommunikationspartner übermittelt und dort gespeichert. Nutzer können weitere, private Angaben machen, die ebenfalls an die verwendeten Server der Kommunikationspartner übermittelt werden können." -#: src/Module/Tos.php:60 src/Module/Tos.php:109 +#: src/Module/Tos.php:46 src/Module/Tos.php:95 #, php-format msgid "" "At any point in time a logged in user can export their account data from the" @@ -11603,121 +11573,121 @@ msgid "" "from the nodes of the communication partners." msgstr "Angemeldete Nutzer können ihre Nutzerdaten jederzeit von den Kontoeinstellungen aus exportieren. Wenn ein Nutzer wünscht das Nutzerkonto zu löschen, so ist dies jederzeit unter %1$s/settings/removeme möglich. Die Löschung des Nutzerkontos ist permanent. Die Löschung der Daten wird auch von den Knoten der Kommunikationspartner angefordert." -#: src/Module/Tos.php:63 src/Module/Tos.php:106 +#: src/Module/Tos.php:49 src/Module/Tos.php:92 msgid "Privacy Statement" msgstr "Datenschutzerklärung" -#: src/Module/Tos.php:103 +#: src/Module/Tos.php:89 msgid "Rules" msgstr "Regeln" -#: src/Module/Update/Display.php:45 +#: src/Module/Update/Display.php:31 msgid "Parameter uri_id is missing." msgstr "Der Parameter uri_id fehlt." -#: src/Module/Update/Display.php:55 +#: src/Module/Update/Display.php:41 msgid "The requested item doesn't exist or has been deleted." msgstr "Der angeforderte Beitrag existiert nicht oder wurde gelöscht." -#: src/Module/User/Delegation.php:146 +#: src/Module/User/Delegation.php:132 #, php-format msgid "You are now logged in as %s" msgstr "Du bist jetzt als %s angemeldet" -#: src/Module/User/Delegation.php:185 +#: src/Module/User/Delegation.php:171 msgid "Switch between your accounts" msgstr "Wechsle deine Konten" -#: src/Module/User/Delegation.php:186 +#: src/Module/User/Delegation.php:172 msgid "Manage your accounts" msgstr "Verwalte deine Konten" -#: src/Module/User/Delegation.php:187 +#: src/Module/User/Delegation.php:173 msgid "" "Toggle between different identities or community/group pages which share " "your account details or which you have been granted \"manage\" permissions" msgstr "Zwischen verschiedenen Identitäten oder Gemeinschafts-/Gruppenseiten wechseln, die deine Kontoinformationen teilen oder zu denen du „Verwalten“-Befugnisse bekommen hast." -#: src/Module/User/Delegation.php:188 +#: src/Module/User/Delegation.php:174 msgid "Select an identity to manage: " msgstr "Wähle eine Identität zum Verwalten aus: " -#: src/Module/User/Import.php:104 +#: src/Module/User/Import.php:90 msgid "User imports on closed servers can only be done by an administrator." msgstr "Auf geschlossenen Servern können ausschließlich die Administratoren Benutzerkonten importieren." -#: src/Module/User/Import.php:120 +#: src/Module/User/Import.php:106 msgid "Move account" msgstr "Account umziehen" -#: src/Module/User/Import.php:121 +#: src/Module/User/Import.php:107 msgid "You can import an account from another Friendica server." msgstr "Du kannst einen Account von einem anderen Friendica Server importieren." -#: src/Module/User/Import.php:122 +#: src/Module/User/Import.php:108 msgid "" "You need to export your account from the old server and upload it here. We " "will recreate your old account here with all your contacts. We will try also" " to inform your friends that you moved here." msgstr "Du musst deinen Account vom alten Server exportieren und hier hochladen. Wir stellen deinen alten Account mit all deinen Kontakten wieder her. Wir werden auch versuchen, deine Kontakte darüber zu informieren, dass du hierher umgezogen bist." -#: src/Module/User/Import.php:123 +#: src/Module/User/Import.php:109 msgid "" "This feature is experimental. We can't import contacts from the OStatus " "network (GNU Social/Statusnet) or from Diaspora" msgstr "Dieses Feature ist experimentell. Wir können keine Kontakte vom OStatus-Netzwerk (GNU Social/Statusnet) oder von Diaspora importieren" -#: src/Module/User/Import.php:124 +#: src/Module/User/Import.php:110 msgid "Account file" msgstr "Account-Datei" -#: src/Module/User/Import.php:124 +#: src/Module/User/Import.php:110 msgid "" "To export your account, go to \"Settings->Export your personal data\" and " "select \"Export account\"" msgstr "Um Deinen Account zu exportieren, rufe \"Einstellungen -> Persönliche Daten exportieren\" auf und wähle \"Account exportieren\"" -#: src/Module/User/Import.php:218 +#: src/Module/User/Import.php:204 msgid "Error decoding account file" msgstr "Fehler beim Verarbeiten der Account-Datei" -#: src/Module/User/Import.php:223 +#: src/Module/User/Import.php:209 msgid "Error! No version data in file! This is not a Friendica account file?" msgstr "Fehler! Keine Versionsdaten in der Datei! Ist das wirklich eine Friendica-Account-Datei?" -#: src/Module/User/Import.php:231 +#: src/Module/User/Import.php:217 #, php-format msgid "User '%s' already exists on this server!" msgstr "Nutzer '%s' existiert bereits auf diesem Server!" -#: src/Module/User/Import.php:268 +#: src/Module/User/Import.php:254 msgid "User creation error" msgstr "Fehler beim Anlegen des Nutzer-Accounts aufgetreten" -#: src/Module/User/Import.php:317 +#: src/Module/User/Import.php:303 #, php-format msgid "%d contact not imported" msgid_plural "%d contacts not imported" msgstr[0] "%d Kontakt nicht importiert" msgstr[1] "%d Kontakte nicht importiert" -#: src/Module/User/Import.php:366 +#: src/Module/User/Import.php:352 msgid "User profile creation error" msgstr "Fehler beim Anlegen des Nutzer-Profils" -#: src/Module/User/Import.php:417 +#: src/Module/User/Import.php:403 msgid "Done. You can now login with your username and password" msgstr "Erledigt. Du kannst dich jetzt mit deinem Nutzernamen und Passwort anmelden" -#: src/Module/Welcome.php:44 +#: src/Module/Welcome.php:30 msgid "Welcome to Friendica" msgstr "Willkommen bei Friendica" -#: src/Module/Welcome.php:45 +#: src/Module/Welcome.php:31 msgid "New Member Checklist" msgstr "Checkliste für neue Mitglieder" -#: src/Module/Welcome.php:46 +#: src/Module/Welcome.php:32 msgid "" "We would like to offer some tips and links to help make your experience " "enjoyable. Click any item to visit the relevant page. A link to this page " @@ -11725,33 +11695,33 @@ msgid "" "registration and then will quietly disappear." msgstr "Wir möchten dir einige Tipps und Links anbieten, die dir helfen könnten, den Einstieg angenehmer zu machen. Klicke auf ein Element, um die entsprechende Seite zu besuchen. Ein Link zu dieser Seite hier bleibt für dich an deiner Pinnwand für zwei Wochen nach dem Registrierungsdatum sichtbar und wird dann verschwinden." -#: src/Module/Welcome.php:48 +#: src/Module/Welcome.php:34 msgid "Getting Started" msgstr "Einstieg" -#: src/Module/Welcome.php:49 +#: src/Module/Welcome.php:35 msgid "Friendica Walk-Through" msgstr "Friendica Rundgang" -#: src/Module/Welcome.php:50 +#: src/Module/Welcome.php:36 msgid "" "On your Quick Start page - find a brief introduction to your " "profile and network tabs, make some new connections, and find some groups to" " join." msgstr "Auf der Quick Start-Seite findest du eine kurze Einleitung in die einzelnen Funktionen deines Profils und die Netzwerk-Reiter, wo du interessante Foren findest und neue Kontakte knüpfst." -#: src/Module/Welcome.php:53 +#: src/Module/Welcome.php:39 msgid "Go to Your Settings" msgstr "Gehe zu deinen Einstellungen" -#: src/Module/Welcome.php:54 +#: src/Module/Welcome.php:40 msgid "" "On your Settings page - change your initial password. Also make a " "note of your Identity Address. This looks just like an email address - and " "will be useful in making friends on the free social web." msgstr "Ändere bitte unter Einstellungen dein Passwort. Außerdem merke dir deine Identifikationsadresse. Diese sieht aus wie eine E-Mail-Adresse und wird benötigt, um Kontakte mit anderen im Friendica Netzwerk zu knüpfen.." -#: src/Module/Welcome.php:55 +#: src/Module/Welcome.php:41 msgid "" "Review the other settings, particularly the privacy settings. An unpublished" " directory listing is like having an unlisted phone number. In general, you " @@ -11759,77 +11729,77 @@ msgid "" "potential friends know exactly how to find you." msgstr "Überprüfe die restlichen Einstellungen, insbesondere die Einstellungen zur Privatsphäre. Wenn du dein Profil nicht veröffentlichst, ist das, als wenn du deine Telefonnummer nicht ins Telefonbuch einträgst. Im Allgemeinen solltest du es veröffentlichen - außer all deine Kontakte und potentiellen Kontakte wissen genau, wie sie dich finden können." -#: src/Module/Welcome.php:59 +#: src/Module/Welcome.php:45 msgid "" "Upload a profile photo if you have not done so already. Studies have shown " "that people with real photos of themselves are ten times more likely to make" " friends than people who do not." msgstr "Lade ein Profilbild hoch, falls du es noch nicht getan hast. Studien haben gezeigt, dass es zehnmal wahrscheinlicher ist, neue Kontakte zu finden, wenn du ein Bild von dir selbst verwendest, als wenn du dies nicht tust." -#: src/Module/Welcome.php:60 +#: src/Module/Welcome.php:46 msgid "Edit Your Profile" msgstr "Editiere dein Profil" -#: src/Module/Welcome.php:61 +#: src/Module/Welcome.php:47 msgid "" "Edit your default profile to your liking. Review the " "settings for hiding your list of friends and hiding the profile from unknown" " visitors." msgstr "Editiere dein Standard-Profil nach deinen Vorlieben. Überprüfe die Einstellungen zum Verbergen deiner Kontaktliste vor unbekannten Betrachtern des Profils." -#: src/Module/Welcome.php:62 +#: src/Module/Welcome.php:48 msgid "Profile Keywords" msgstr "Profil-Schlüsselbegriffe" -#: src/Module/Welcome.php:63 +#: src/Module/Welcome.php:49 msgid "" "Set some public keywords for your profile which describe your interests. We " "may be able to find other people with similar interests and suggest " "friendships." msgstr "Trage ein paar öffentliche Stichwörter in dein Profil ein, die deine Interessen beschreiben. Eventuell sind wir in der Lage Leute zu finden, die deine Interessen teilen und können dir dann Kontakte vorschlagen." -#: src/Module/Welcome.php:65 +#: src/Module/Welcome.php:51 msgid "Connecting" msgstr "Verbindungen knüpfen" -#: src/Module/Welcome.php:67 +#: src/Module/Welcome.php:53 msgid "Importing Emails" msgstr "Emails Importieren" -#: src/Module/Welcome.php:68 +#: src/Module/Welcome.php:54 msgid "" "Enter your email access information on your Connector Settings page if you " "wish to import and interact with friends or mailing lists from your email " "INBOX" msgstr "Gib deine E-Mail-Zugangsinformationen auf der Connector-Einstellungsseite ein, falls du E-Mails aus Deinem Posteingang importieren und mit Kontakten und Mailinglisten interagieren willst." -#: src/Module/Welcome.php:69 +#: src/Module/Welcome.php:55 msgid "Go to Your Contacts Page" msgstr "Gehe zu deiner Kontakt-Seite" -#: src/Module/Welcome.php:70 +#: src/Module/Welcome.php:56 msgid "" "Your Contacts page is your gateway to managing friendships and connecting " "with friends on other networks. Typically you enter their address or site " "URL in the Add New Contact dialog." msgstr "Die Kontakte-Seite ist die Einstiegsseite, von der aus du Kontakte verwalten und dich mit Personen in anderen Netzwerken verbinden kannst. Normalerweise gibst du dazu einfach ihre Adresse oder die URL der Seite im Kasten Neuen Kontakt hinzufügen ein." -#: src/Module/Welcome.php:71 +#: src/Module/Welcome.php:57 msgid "Go to Your Site's Directory" msgstr "Gehe zum Verzeichnis Deiner Friendica-Instanz" -#: src/Module/Welcome.php:72 +#: src/Module/Welcome.php:58 msgid "" "The Directory page lets you find other people in this network or other " "federated sites. Look for a Connect or Follow link on " "their profile page. Provide your own Identity Address if requested." msgstr "Über die Verzeichnisseite kannst du andere Personen auf diesem Server oder anderen, verknüpften Seiten finden. Halte nach einem Verbinden- oder Folgen-Link auf deren Profilseiten Ausschau und gib deine eigene Profiladresse an, falls du danach gefragt wirst." -#: src/Module/Welcome.php:73 +#: src/Module/Welcome.php:59 msgid "Finding New People" msgstr "Neue Leute kennenlernen" -#: src/Module/Welcome.php:74 +#: src/Module/Welcome.php:60 msgid "" "On the side panel of the Contacts page are several tools to find new " "friends. We can match people by interest, look up people by name or " @@ -11838,412 +11808,408 @@ msgid "" "hours." msgstr "Im seitlichen Bedienfeld der Kontakteseite gibt es diverse Werkzeuge, um neue Personen zu finden. Wir können Menschen mit den gleichen Interessen finden, anhand von Namen oder Interessen suchen oder aber aufgrund vorhandener Kontakte neue Leute vorschlagen.\nAuf einer brandneuen - soeben erstellten - Seite starten die Kontaktvorschläge innerhalb von 24 Stunden." -#: src/Module/Welcome.php:77 +#: src/Module/Welcome.php:63 msgid "Add Your Contacts To Circle" msgstr "Kontakte zum Circle hinzufügen" -#: src/Module/Welcome.php:78 +#: src/Module/Welcome.php:64 msgid "" "Once you have made some friends, organize them into private conversation " "circles from the sidebar of your Contacts page and then you can interact " "with each circle privately on your Network page." msgstr "Sobald du einige Freunde gefunden hast, kannst du diese in der Seitenleiste deiner Kontaktseite in private Circles einteilen und dann mit jedem Circle auf deiner Netzwerkseite privat interagieren." -#: src/Module/Welcome.php:80 +#: src/Module/Welcome.php:66 msgid "Why Aren't My Posts Public?" msgstr "Warum sind meine Beiträge nicht öffentlich?" -#: src/Module/Welcome.php:81 +#: src/Module/Welcome.php:67 msgid "" "Friendica respects your privacy. By default, your posts will only show up to" " people you've added as friends. For more information, see the help section " "from the link above." msgstr "Friendica respektiert Deine Privatsphäre. Mit der Grundeinstellung werden Deine Beiträge ausschließlich Deinen Kontakten angezeigt. Für weitere Informationen diesbezüglich lies dir bitte den entsprechenden Abschnitt in der Hilfe unter dem obigen Link durch." -#: src/Module/Welcome.php:83 +#: src/Module/Welcome.php:69 msgid "Getting Help" msgstr "Hilfe bekommen" -#: src/Module/Welcome.php:84 +#: src/Module/Welcome.php:70 msgid "Go to the Help Section" msgstr "Zum Hilfe Abschnitt gehen" -#: src/Module/Welcome.php:85 +#: src/Module/Welcome.php:71 msgid "" "Our help pages may be consulted for detail on other program" " features and resources." msgstr "Unsere Hilfe-Seiten können herangezogen werden, um weitere Einzelheiten zu anderen Programm-Features zu erhalten." -#: src/Navigation/Notifications/Factory/FormattedNavNotification.php:161 +#: src/Navigation/Notifications/Factory/FormattedNavNotification.php:147 msgid "{0} wants to follow you" msgstr "{0} möchte dir folgen" -#: src/Navigation/Notifications/Factory/FormattedNavNotification.php:163 +#: src/Navigation/Notifications/Factory/FormattedNavNotification.php:149 msgid "{0} has started following you" msgstr "{0} folgt dir jetzt" -#: src/Navigation/Notifications/Factory/FormattedNotify.php:96 +#: src/Navigation/Notifications/Factory/FormattedNotify.php:82 #, php-format msgid "%s liked %s's post" msgstr "%s mag %ss Beitrag" -#: src/Navigation/Notifications/Factory/FormattedNotify.php:108 +#: src/Navigation/Notifications/Factory/FormattedNotify.php:94 #, php-format msgid "%s disliked %s's post" msgstr "%s mag %ss Beitrag nicht" -#: src/Navigation/Notifications/Factory/FormattedNotify.php:120 +#: src/Navigation/Notifications/Factory/FormattedNotify.php:106 #, php-format msgid "%s is attending %s's event" msgstr "%s nimmt an %s's Event teil" -#: src/Navigation/Notifications/Factory/FormattedNotify.php:132 +#: src/Navigation/Notifications/Factory/FormattedNotify.php:118 #, php-format msgid "%s is not attending %s's event" msgstr "%s nimmt nicht an %s's Event teil" -#: src/Navigation/Notifications/Factory/FormattedNotify.php:144 +#: src/Navigation/Notifications/Factory/FormattedNotify.php:130 #, php-format msgid "%s may attending %s's event" msgstr "%s nimmt eventuell an %s's Veranstaltung teil" -#: src/Navigation/Notifications/Factory/FormattedNotify.php:174 +#: src/Navigation/Notifications/Factory/FormattedNotify.php:160 #, php-format msgid "%s is now friends with %s" msgstr "%s ist jetzt mit %s befreundet" -#: src/Navigation/Notifications/Factory/FormattedNotify.php:341 -#: src/Navigation/Notifications/Factory/FormattedNotify.php:379 +#: src/Navigation/Notifications/Factory/FormattedNotify.php:327 +#: src/Navigation/Notifications/Factory/FormattedNotify.php:365 #, php-format msgid "%s commented on %s's post" msgstr "%s hat %ss Beitrag kommentiert" -#: src/Navigation/Notifications/Factory/FormattedNotify.php:378 +#: src/Navigation/Notifications/Factory/FormattedNotify.php:364 #, php-format msgid "%s created a new post" msgstr "%s hat einen neuen Beitrag erstellt" -#: src/Navigation/Notifications/Factory/Introduction.php:132 +#: src/Navigation/Notifications/Factory/Introduction.php:118 msgid "Friend Suggestion" msgstr "Kontaktvorschlag" -#: src/Navigation/Notifications/Factory/Introduction.php:158 +#: src/Navigation/Notifications/Factory/Introduction.php:144 msgid "Friend/Connect Request" msgstr "Kontakt-/Freundschaftsanfrage" -#: src/Navigation/Notifications/Factory/Introduction.php:158 -msgid "New Follower" -msgstr "Neuer Bewunderer" - -#: src/Navigation/Notifications/Factory/Notification.php:134 +#: src/Navigation/Notifications/Factory/Notification.php:120 #, php-format msgid "%1$s wants to follow you" msgstr "%1$s möchte dir folgen" -#: src/Navigation/Notifications/Factory/Notification.php:136 +#: src/Navigation/Notifications/Factory/Notification.php:122 #, php-format msgid "%1$s has started following you" msgstr "%1$s hat angefangen dir zu folgen" -#: src/Navigation/Notifications/Factory/Notification.php:208 +#: src/Navigation/Notifications/Factory/Notification.php:194 #, php-format msgid "%1$s liked your comment on %2$s" msgstr "%1$s mag deinen Kommentar %2$s" -#: src/Navigation/Notifications/Factory/Notification.php:211 +#: src/Navigation/Notifications/Factory/Notification.php:197 #, php-format msgid "%1$s liked your post %2$s" msgstr "%1$s mag deinen Beitrag %2$s" -#: src/Navigation/Notifications/Factory/Notification.php:218 +#: src/Navigation/Notifications/Factory/Notification.php:204 #, php-format msgid "%1$s disliked your comment on %2$s" msgstr "%1$s mag deinen Kommentar %2$s nicht" -#: src/Navigation/Notifications/Factory/Notification.php:221 +#: src/Navigation/Notifications/Factory/Notification.php:207 #, php-format msgid "%1$s disliked your post %2$s" msgstr "%1$s mag deinen Beitrag %2$s nicht" -#: src/Navigation/Notifications/Factory/Notification.php:228 +#: src/Navigation/Notifications/Factory/Notification.php:214 #, php-format msgid "%1$s shared your comment %2$s" msgstr "%1$s hat deinen Kommentar %2$s geteilt" -#: src/Navigation/Notifications/Factory/Notification.php:231 -#: src/Navigation/Notifications/Factory/Notification.php:316 +#: src/Navigation/Notifications/Factory/Notification.php:217 +#: src/Navigation/Notifications/Factory/Notification.php:302 #, php-format msgid "%1$s shared your post %2$s" msgstr "%1$s hat deinen Beitrag %2$s geteilt" -#: src/Navigation/Notifications/Factory/Notification.php:235 -#: src/Navigation/Notifications/Factory/Notification.php:305 +#: src/Navigation/Notifications/Factory/Notification.php:221 +#: src/Navigation/Notifications/Factory/Notification.php:291 #, php-format msgid "%1$s shared the post %2$s from %3$s" msgstr "%1$s hat den Beitrag %2$s von %3$s geteilt" -#: src/Navigation/Notifications/Factory/Notification.php:237 -#: src/Navigation/Notifications/Factory/Notification.php:307 +#: src/Navigation/Notifications/Factory/Notification.php:223 +#: src/Navigation/Notifications/Factory/Notification.php:293 #, php-format msgid "%1$s shared a post from %3$s" msgstr "%1$s hat einen Beitrag von %3$s geteilt" -#: src/Navigation/Notifications/Factory/Notification.php:239 -#: src/Navigation/Notifications/Factory/Notification.php:309 +#: src/Navigation/Notifications/Factory/Notification.php:225 +#: src/Navigation/Notifications/Factory/Notification.php:295 #, php-format msgid "%1$s shared the post %2$s" msgstr "%1$s hat den Beitrag %2$s geteilt" -#: src/Navigation/Notifications/Factory/Notification.php:241 -#: src/Navigation/Notifications/Factory/Notification.php:311 +#: src/Navigation/Notifications/Factory/Notification.php:227 +#: src/Navigation/Notifications/Factory/Notification.php:297 #, php-format msgid "%1$s shared a post" msgstr "%1$s hat einen Beitrag geteilt" -#: src/Navigation/Notifications/Factory/Notification.php:249 +#: src/Navigation/Notifications/Factory/Notification.php:235 #, php-format msgid "%1$s wants to attend your event %2$s" msgstr "%1$s möchte an deiner Veranstaltung %2$s teilnehmen" -#: src/Navigation/Notifications/Factory/Notification.php:256 +#: src/Navigation/Notifications/Factory/Notification.php:242 #, php-format msgid "%1$s does not want to attend your event %2$s" msgstr "%1$s möchte nicht an deiner Veranstaltung %2$s teilnehmen" -#: src/Navigation/Notifications/Factory/Notification.php:263 +#: src/Navigation/Notifications/Factory/Notification.php:249 #, php-format msgid "%1$s maybe wants to attend your event %2$s" msgstr "%1$s nimmt eventuell an deiner Veranstaltung %2$s teil" -#: src/Navigation/Notifications/Factory/Notification.php:270 +#: src/Navigation/Notifications/Factory/Notification.php:256 #, php-format msgid "%1$s tagged you on %2$s" msgstr "%1$s erwähnte dich auf %2$s" -#: src/Navigation/Notifications/Factory/Notification.php:274 +#: src/Navigation/Notifications/Factory/Notification.php:260 #, php-format msgid "%1$s replied to you on %2$s" msgstr "%1$s hat dir auf %2$s geantwortet" -#: src/Navigation/Notifications/Factory/Notification.php:278 +#: src/Navigation/Notifications/Factory/Notification.php:264 #, php-format msgid "%1$s commented in your thread %2$s" msgstr "%1$s hat deine Unterhaltung %2$s kommentiert" -#: src/Navigation/Notifications/Factory/Notification.php:282 +#: src/Navigation/Notifications/Factory/Notification.php:268 #, php-format msgid "%1$s commented on your comment %2$s" msgstr "%1$s hat deinen Kommentar %2$s kommentiert" -#: src/Navigation/Notifications/Factory/Notification.php:289 +#: src/Navigation/Notifications/Factory/Notification.php:275 #, php-format msgid "%1$s commented in their thread %2$s" msgstr "%1$s hat in der eigenen Unterhaltung %2$s kommentiert" -#: src/Navigation/Notifications/Factory/Notification.php:291 +#: src/Navigation/Notifications/Factory/Notification.php:277 #, php-format msgid "%1$s commented in their thread" msgstr "%1$s kommentierte in der eigenen Unterhaltung" -#: src/Navigation/Notifications/Factory/Notification.php:293 +#: src/Navigation/Notifications/Factory/Notification.php:279 #, php-format msgid "%1$s commented in the thread %2$s from %3$s" msgstr "%1$s hat in der Unterhaltung %2$s von %3$s kommentiert" -#: src/Navigation/Notifications/Factory/Notification.php:295 +#: src/Navigation/Notifications/Factory/Notification.php:281 #, php-format msgid "%1$s commented in the thread from %3$s" msgstr "%1$s hat in der Unterhaltung von %3$s kommentiert" -#: src/Navigation/Notifications/Factory/Notification.php:300 +#: src/Navigation/Notifications/Factory/Notification.php:286 #, php-format msgid "%1$s commented on your thread %2$s" msgstr "%1$s hat in deiner Unterhaltung %2$s kommentiert" -#: src/Navigation/Notifications/Repository/Notify.php:225 -#: src/Navigation/Notifications/Repository/Notify.php:754 +#: src/Navigation/Notifications/Repository/Notify.php:211 +#: src/Navigation/Notifications/Repository/Notify.php:740 msgid "[Friendica:Notify]" msgstr "[Friendica Meldung]" -#: src/Navigation/Notifications/Repository/Notify.php:293 +#: src/Navigation/Notifications/Repository/Notify.php:279 #, php-format msgid "%s New mail received at %s" msgstr "%sNeue Nachricht auf %s empfangen" -#: src/Navigation/Notifications/Repository/Notify.php:295 +#: src/Navigation/Notifications/Repository/Notify.php:281 #, php-format msgid "%1$s sent you a new private message at %2$s." msgstr "%1$s hat dir eine neue, private Nachricht auf %2$s geschickt." -#: src/Navigation/Notifications/Repository/Notify.php:296 +#: src/Navigation/Notifications/Repository/Notify.php:282 msgid "a private message" msgstr "eine private Nachricht" -#: src/Navigation/Notifications/Repository/Notify.php:296 +#: src/Navigation/Notifications/Repository/Notify.php:282 #, php-format msgid "%1$s sent you %2$s." msgstr "%1$s schickte dir %2$s." -#: src/Navigation/Notifications/Repository/Notify.php:298 +#: src/Navigation/Notifications/Repository/Notify.php:284 #, php-format msgid "Please visit %s to view and/or reply to your private messages." msgstr "Bitte besuche %s, um Deine privaten Nachrichten anzusehen und/oder zu beantworten." -#: src/Navigation/Notifications/Repository/Notify.php:328 +#: src/Navigation/Notifications/Repository/Notify.php:314 #, php-format msgid "%1$s commented on %2$s's %3$s %4$s" msgstr "%1$s kommentierte %2$s's %3$s%4$s" -#: src/Navigation/Notifications/Repository/Notify.php:333 +#: src/Navigation/Notifications/Repository/Notify.php:319 #, php-format msgid "%1$s commented on your %2$s %3$s" msgstr "%1$s kommentierte auf (%2$s) %3$s" -#: src/Navigation/Notifications/Repository/Notify.php:337 +#: src/Navigation/Notifications/Repository/Notify.php:323 #, php-format msgid "%1$s commented on their %2$s %3$s" msgstr "%1$s hat den eigenen %2$s %3$s kommentiert" -#: src/Navigation/Notifications/Repository/Notify.php:341 -#: src/Navigation/Notifications/Repository/Notify.php:788 +#: src/Navigation/Notifications/Repository/Notify.php:327 +#: src/Navigation/Notifications/Repository/Notify.php:774 #, php-format msgid "%1$s Comment to conversation #%2$d by %3$s" msgstr "%1$sKommentar von %3$s auf Unterhaltung %2$d" -#: src/Navigation/Notifications/Repository/Notify.php:343 +#: src/Navigation/Notifications/Repository/Notify.php:329 #, php-format msgid "%s commented on an item/conversation you have been following." msgstr "%s hat einen Beitrag kommentiert, dem du folgst." -#: src/Navigation/Notifications/Repository/Notify.php:347 -#: src/Navigation/Notifications/Repository/Notify.php:362 -#: src/Navigation/Notifications/Repository/Notify.php:814 +#: src/Navigation/Notifications/Repository/Notify.php:333 +#: src/Navigation/Notifications/Repository/Notify.php:348 +#: src/Navigation/Notifications/Repository/Notify.php:800 #, php-format msgid "Please visit %s to view and/or reply to the conversation." msgstr "Bitte besuche %s, um die Konversation anzusehen und/oder zu kommentieren." -#: src/Navigation/Notifications/Repository/Notify.php:354 +#: src/Navigation/Notifications/Repository/Notify.php:340 #, php-format msgid "%s %s posted to your profile wall" msgstr "%s%s hat auf deine Pinnwand gepostet" -#: src/Navigation/Notifications/Repository/Notify.php:356 +#: src/Navigation/Notifications/Repository/Notify.php:342 #, php-format msgid "%1$s posted to your profile wall at %2$s" msgstr "%1$s schrieb um %2$s auf Deine Pinnwand" -#: src/Navigation/Notifications/Repository/Notify.php:357 +#: src/Navigation/Notifications/Repository/Notify.php:343 #, php-format msgid "%1$s posted to [url=%2$s]your wall[/url]" msgstr "%1$s hat etwas auf [url=%2$s]Deiner Pinnwand[/url] gepostet" -#: src/Navigation/Notifications/Repository/Notify.php:370 +#: src/Navigation/Notifications/Repository/Notify.php:356 #, php-format msgid "%s Introduction received" msgstr "%sVorstellung erhalten" -#: src/Navigation/Notifications/Repository/Notify.php:372 +#: src/Navigation/Notifications/Repository/Notify.php:358 #, php-format msgid "You've received an introduction from '%1$s' at %2$s" msgstr "Du hast eine Kontaktanfrage von '%1$s' auf %2$s erhalten" -#: src/Navigation/Notifications/Repository/Notify.php:373 +#: src/Navigation/Notifications/Repository/Notify.php:359 #, php-format msgid "You've received [url=%1$s]an introduction[/url] from %2$s." msgstr "Du hast eine [url=%1$s]Kontaktanfrage[/url] von %2$s erhalten." -#: src/Navigation/Notifications/Repository/Notify.php:378 -#: src/Navigation/Notifications/Repository/Notify.php:424 +#: src/Navigation/Notifications/Repository/Notify.php:364 +#: src/Navigation/Notifications/Repository/Notify.php:410 #, php-format msgid "You may visit their profile at %s" msgstr "Hier kannst du das Profil betrachten: %s" -#: src/Navigation/Notifications/Repository/Notify.php:380 +#: src/Navigation/Notifications/Repository/Notify.php:366 #, php-format msgid "Please visit %s to approve or reject the introduction." msgstr "Bitte besuche %s, um die Kontaktanfrage anzunehmen oder abzulehnen." -#: src/Navigation/Notifications/Repository/Notify.php:387 +#: src/Navigation/Notifications/Repository/Notify.php:373 #, php-format msgid "%s A new person is sharing with you" msgstr "%sEine neue Person teilt nun mit dir" -#: src/Navigation/Notifications/Repository/Notify.php:389 -#: src/Navigation/Notifications/Repository/Notify.php:390 +#: src/Navigation/Notifications/Repository/Notify.php:375 +#: src/Navigation/Notifications/Repository/Notify.php:376 #, php-format msgid "%1$s is sharing with you at %2$s" msgstr "%1$s teilt mit dir auf %2$s" -#: src/Navigation/Notifications/Repository/Notify.php:397 +#: src/Navigation/Notifications/Repository/Notify.php:383 #, php-format msgid "%s You have a new follower" msgstr "%sDu hast einen neuen Kontakt" -#: src/Navigation/Notifications/Repository/Notify.php:399 -#: src/Navigation/Notifications/Repository/Notify.php:400 +#: src/Navigation/Notifications/Repository/Notify.php:385 +#: src/Navigation/Notifications/Repository/Notify.php:386 #, php-format msgid "You have a new follower at %2$s : %1$s" msgstr "Du hast einen neuen Kontakt auf %2$s: %1$s" -#: src/Navigation/Notifications/Repository/Notify.php:413 +#: src/Navigation/Notifications/Repository/Notify.php:399 #, php-format msgid "%s Friend suggestion received" msgstr "%sKontaktvorschlag erhalten" -#: src/Navigation/Notifications/Repository/Notify.php:415 +#: src/Navigation/Notifications/Repository/Notify.php:401 #, php-format msgid "You've received a friend suggestion from '%1$s' at %2$s" msgstr "Du hast einen Kontakt-Vorschlag von '%1$s' auf %2$s erhalten" -#: src/Navigation/Notifications/Repository/Notify.php:416 +#: src/Navigation/Notifications/Repository/Notify.php:402 #, php-format msgid "" "You've received [url=%1$s]a friend suggestion[/url] for %2$s from %3$s." msgstr "Du hast einen [url=%1$s]Kontakt-Vorschlag[/url] %2$s von %3$s erhalten." -#: src/Navigation/Notifications/Repository/Notify.php:422 +#: src/Navigation/Notifications/Repository/Notify.php:408 msgid "Name:" msgstr "Name:" -#: src/Navigation/Notifications/Repository/Notify.php:423 +#: src/Navigation/Notifications/Repository/Notify.php:409 msgid "Photo:" msgstr "Foto:" -#: src/Navigation/Notifications/Repository/Notify.php:426 +#: src/Navigation/Notifications/Repository/Notify.php:412 #, php-format msgid "Please visit %s to approve or reject the suggestion." msgstr "Bitte besuche %s, um den Vorschlag zu akzeptieren oder abzulehnen." -#: src/Navigation/Notifications/Repository/Notify.php:434 -#: src/Navigation/Notifications/Repository/Notify.php:449 +#: src/Navigation/Notifications/Repository/Notify.php:420 +#: src/Navigation/Notifications/Repository/Notify.php:435 #, php-format msgid "%s Connection accepted" msgstr "%sKontaktanfrage bestätigt" -#: src/Navigation/Notifications/Repository/Notify.php:436 -#: src/Navigation/Notifications/Repository/Notify.php:451 +#: src/Navigation/Notifications/Repository/Notify.php:422 +#: src/Navigation/Notifications/Repository/Notify.php:437 #, php-format msgid "'%1$s' has accepted your connection request at %2$s" msgstr "'%1$s' hat Deine Kontaktanfrage auf %2$s bestätigt" -#: src/Navigation/Notifications/Repository/Notify.php:437 -#: src/Navigation/Notifications/Repository/Notify.php:452 +#: src/Navigation/Notifications/Repository/Notify.php:423 +#: src/Navigation/Notifications/Repository/Notify.php:438 #, php-format msgid "%2$s has accepted your [url=%1$s]connection request[/url]." msgstr "%2$s hat Deine [url=%1$s]Kontaktanfrage[/url] akzeptiert." -#: src/Navigation/Notifications/Repository/Notify.php:442 +#: src/Navigation/Notifications/Repository/Notify.php:428 msgid "" "You are now mutual friends and may exchange status updates, photos, and " "email without restriction." msgstr "Ihr seid nun beidseitige Kontakte und könnt Statusmitteilungen, Bilder und E-Mails ohne Einschränkungen austauschen." -#: src/Navigation/Notifications/Repository/Notify.php:444 +#: src/Navigation/Notifications/Repository/Notify.php:430 #, php-format msgid "Please visit %s if you wish to make any changes to this relationship." msgstr "Bitte besuche %s, wenn du Änderungen an eurer Beziehung vornehmen willst." -#: src/Navigation/Notifications/Repository/Notify.php:457 +#: src/Navigation/Notifications/Repository/Notify.php:443 #, php-format msgid "" "'%1$s' has chosen to accept you a fan, which restricts some forms of " @@ -12252,34 +12218,34 @@ msgid "" "automatically." msgstr "'%1$s' hat sich entschieden dich als Fan zu akzeptieren, dies schränkt einige Kommunikationswege - wie private Nachrichten und einige Interaktionsmöglichkeiten auf der Profilseite - ein. Wenn dies eine Berühmtheiten- oder Gemeinschaftsseite ist, werden diese Einstellungen automatisch vorgenommen." -#: src/Navigation/Notifications/Repository/Notify.php:459 +#: src/Navigation/Notifications/Repository/Notify.php:445 #, php-format msgid "" "'%1$s' may choose to extend this into a two-way or more permissive " "relationship in the future." msgstr "'%1$s' kann den Kontaktstatus zu einem späteren Zeitpunkt erweitern und diese Einschränkungen aufheben. " -#: src/Navigation/Notifications/Repository/Notify.php:461 +#: src/Navigation/Notifications/Repository/Notify.php:447 #, php-format msgid "Please visit %s if you wish to make any changes to this relationship." msgstr "Bitte besuche %s, wenn du Änderungen an eurer Beziehung vornehmen willst." -#: src/Navigation/Notifications/Repository/Notify.php:471 +#: src/Navigation/Notifications/Repository/Notify.php:457 msgid "registration request" msgstr "Registrierungsanfrage" -#: src/Navigation/Notifications/Repository/Notify.php:473 +#: src/Navigation/Notifications/Repository/Notify.php:459 #, php-format msgid "You've received a registration request from '%1$s' at %2$s" msgstr "Du hast eine Registrierungsanfrage von %2$s auf '%1$s' erhalten" -#: src/Navigation/Notifications/Repository/Notify.php:474 +#: src/Navigation/Notifications/Repository/Notify.php:460 #, php-format msgid "You've received a [url=%1$s]registration request[/url] from %2$s." msgstr "Du hast eine [url=%1$s]Registrierungsanfrage[/url] von %2$s erhalten." -#: src/Navigation/Notifications/Repository/Notify.php:479 -#: src/Navigation/Notifications/Repository/Notify.php:500 +#: src/Navigation/Notifications/Repository/Notify.php:465 +#: src/Navigation/Notifications/Repository/Notify.php:486 #, php-format msgid "" "Display Name:\t%s\n" @@ -12287,773 +12253,755 @@ msgid "" "Login Name:\t%s (%s)" msgstr "Anzeigename: %s\nURL der Seite: %s\nLogin Name: %s(%s)" -#: src/Navigation/Notifications/Repository/Notify.php:485 +#: src/Navigation/Notifications/Repository/Notify.php:471 #, php-format msgid "Please visit %s to approve or reject the request." msgstr "Bitte besuche %s, um die Anfrage zu bearbeiten." -#: src/Navigation/Notifications/Repository/Notify.php:492 +#: src/Navigation/Notifications/Repository/Notify.php:478 msgid "new registration" msgstr "Neue Registrierung" -#: src/Navigation/Notifications/Repository/Notify.php:494 +#: src/Navigation/Notifications/Repository/Notify.php:480 #, php-format msgid "You've received a new registration from '%1$s' at %2$s" msgstr "Du hast eine neue Registrierung von %1$s auf %2$s erhalten." -#: src/Navigation/Notifications/Repository/Notify.php:495 +#: src/Navigation/Notifications/Repository/Notify.php:481 #, php-format msgid "You've received a [url=%1$s]new registration[/url] from %2$s." msgstr "Du hast eine [url=%1$s]neue Registrierung[/url] von %2$s erhalten." -#: src/Navigation/Notifications/Repository/Notify.php:506 +#: src/Navigation/Notifications/Repository/Notify.php:492 #, php-format msgid "Please visit %s to have a look at the new registration." msgstr "Bitte rufe %s auf, um dir die Registrierung zu sichten." -#: src/Navigation/Notifications/Repository/Notify.php:782 +#: src/Navigation/Notifications/Repository/Notify.php:768 #, php-format msgid "%s %s tagged you" msgstr "%s %s hat dich erwähnt" -#: src/Navigation/Notifications/Repository/Notify.php:785 +#: src/Navigation/Notifications/Repository/Notify.php:771 #, php-format msgid "%s %s shared a new post" msgstr "%s%shat einen Beitrag geteilt" -#: src/Navigation/Notifications/Repository/Notify.php:793 +#: src/Navigation/Notifications/Repository/Notify.php:779 #, php-format msgid "%1$s %2$s liked your post #%3$d" msgstr "%1$s%2$s mag deinen Beitrag #%3$d" -#: src/Navigation/Notifications/Repository/Notify.php:796 +#: src/Navigation/Notifications/Repository/Notify.php:782 #, php-format msgid "%1$s %2$s liked your comment on #%3$d" msgstr "%1$s%2$s mag deinen Kommentar zu #%3$d" -#: src/Object/EMail/ItemCCEMail.php:42 +#: src/Object/EMail/ItemCCEMail.php:28 #, php-format msgid "" "This message was sent to you by %s, a member of the Friendica social " "network." msgstr "Diese Nachricht wurde dir von %s geschickt, einem Mitglied des Sozialen Netzwerks Friendica." -#: src/Object/EMail/ItemCCEMail.php:44 +#: src/Object/EMail/ItemCCEMail.php:30 #, php-format msgid "You may visit them online at %s" msgstr "Du kannst sie online unter %s besuchen" -#: src/Object/EMail/ItemCCEMail.php:45 +#: src/Object/EMail/ItemCCEMail.php:31 msgid "" "Please contact the sender by replying to this post if you do not wish to " "receive these messages." msgstr "Falls du diese Beiträge nicht erhalten möchtest, kontaktiere bitte den Autor, indem du auf diese Nachricht antwortest." -#: src/Object/EMail/ItemCCEMail.php:49 +#: src/Object/EMail/ItemCCEMail.php:35 #, php-format msgid "%s posted an update." msgstr "%s hat ein Update veröffentlicht." -#: src/Object/Post.php:138 +#: src/Object/Post.php:124 msgid "Private Message" msgstr "Private Nachricht" -#: src/Object/Post.php:142 +#: src/Object/Post.php:128 msgid "Public Message" msgstr "Öffentlicher Beitrag" -#: src/Object/Post.php:146 +#: src/Object/Post.php:132 msgid "Unlisted Message" msgstr "Nicht gelisteter Beitrag" -#: src/Object/Post.php:182 +#: src/Object/Post.php:168 msgid "This entry was edited" msgstr "Dieser Beitrag wurde bearbeitet." -#: src/Object/Post.php:210 +#: src/Object/Post.php:196 msgid "Connector Message" msgstr "Connector Nachricht" -#: src/Object/Post.php:239 src/Object/Post.php:241 +#: src/Object/Post.php:225 src/Object/Post.php:227 msgid "Edit" msgstr "Bearbeiten" -#: src/Object/Post.php:275 +#: src/Object/Post.php:261 msgid "Delete globally" msgstr "Global löschen" -#: src/Object/Post.php:275 +#: src/Object/Post.php:261 msgid "Remove locally" msgstr "Lokal entfernen" -#: src/Object/Post.php:282 +#: src/Object/Post.php:268 #, php-format msgid "Block %s" msgstr "Blockiere %s" -#: src/Object/Post.php:287 +#: src/Object/Post.php:273 #, php-format msgid "Ignore %s" msgstr "Ignoriere %s" -#: src/Object/Post.php:292 +#: src/Object/Post.php:278 #, php-format msgid "Collapse %s" msgstr "Verberge %s" -#: src/Object/Post.php:296 +#: src/Object/Post.php:282 msgid "Report post" msgstr "Beitrag melden" -#: src/Object/Post.php:307 +#: src/Object/Post.php:293 msgid "Save to folder" msgstr "In Ordner speichern" -#: src/Object/Post.php:347 +#: src/Object/Post.php:333 msgid "I will attend" msgstr "Ich werde teilnehmen" -#: src/Object/Post.php:347 +#: src/Object/Post.php:333 msgid "I will not attend" msgstr "Ich werde nicht teilnehmen" -#: src/Object/Post.php:347 +#: src/Object/Post.php:333 msgid "I might attend" msgstr "Ich werde eventuell teilnehmen" -#: src/Object/Post.php:394 +#: src/Object/Post.php:380 msgid "Ignore thread" msgstr "Thread ignorieren" -#: src/Object/Post.php:395 +#: src/Object/Post.php:381 msgid "Unignore thread" msgstr "Thread nicht mehr ignorieren" -#: src/Object/Post.php:396 +#: src/Object/Post.php:382 msgid "Toggle ignore status" msgstr "Ignoriert-Status ein-/ausschalten" -#: src/Object/Post.php:406 +#: src/Object/Post.php:392 msgid "Add star" msgstr "Markieren" -#: src/Object/Post.php:407 +#: src/Object/Post.php:393 msgid "Remove star" msgstr "Markierung entfernen" -#: src/Object/Post.php:408 +#: src/Object/Post.php:394 msgid "Toggle star status" msgstr "Markierung umschalten" -#: src/Object/Post.php:419 +#: src/Object/Post.php:405 msgid "Pin" msgstr "Anheften" -#: src/Object/Post.php:420 +#: src/Object/Post.php:406 msgid "Unpin" msgstr "Losmachen" -#: src/Object/Post.php:421 +#: src/Object/Post.php:407 msgid "Toggle pin status" msgstr "Angeheftet Status ändern" -#: src/Object/Post.php:424 +#: src/Object/Post.php:410 msgid "Pinned" msgstr "Angeheftet" -#: src/Object/Post.php:429 +#: src/Object/Post.php:415 msgid "Add tag" msgstr "Tag hinzufügen" -#: src/Object/Post.php:444 +#: src/Object/Post.php:430 msgid "Quote share this" msgstr "Teile und zitiere dies" -#: src/Object/Post.php:444 +#: src/Object/Post.php:430 msgid "Quote Share" msgstr "Zitat teilen" -#: src/Object/Post.php:447 +#: src/Object/Post.php:433 msgid "Reshare this" msgstr "Teile dies" -#: src/Object/Post.php:447 +#: src/Object/Post.php:433 msgid "Reshare" msgstr "Teilen" -#: src/Object/Post.php:448 +#: src/Object/Post.php:434 msgid "Cancel your Reshare" msgstr "Teilen aufheben" -#: src/Object/Post.php:448 +#: src/Object/Post.php:434 msgid "Unshare" msgstr "Nicht mehr teilen" -#: src/Object/Post.php:492 +#: src/Object/Post.php:478 #, php-format msgid "%s (Received %s)" msgstr "%s (Empfangen %s)" -#: src/Object/Post.php:498 +#: src/Object/Post.php:484 msgid "Comment this item on your system" msgstr "Kommentiere diesen Beitrag von deinem System aus" -#: src/Object/Post.php:498 +#: src/Object/Post.php:484 msgid "Remote comment" msgstr "Entfernter Kommentar" -#: src/Object/Post.php:520 +#: src/Object/Post.php:506 msgid "Share via ..." msgstr "Teile mit..." -#: src/Object/Post.php:520 +#: src/Object/Post.php:506 msgid "Share via external services" msgstr "Teile mit einem externen Dienst" -#: src/Object/Post.php:527 +#: src/Object/Post.php:513 msgid "Unknown parent" msgstr "Unbekannter Ursprungsbeitrag" -#: src/Object/Post.php:531 +#: src/Object/Post.php:517 #, php-format msgid "in reply to %s" msgstr "Als Antwort auf %s" -#: src/Object/Post.php:533 +#: src/Object/Post.php:519 msgid "Parent is probably private or not federated." msgstr "Der Urspungsbeitrag ist wahrscheinlich privat oder nicht föderiert." -#: src/Object/Post.php:557 +#: src/Object/Post.php:543 msgid "to" msgstr "zu" -#: src/Object/Post.php:558 +#: src/Object/Post.php:544 msgid "via" msgstr "via" -#: src/Object/Post.php:559 +#: src/Object/Post.php:545 msgid "Wall-to-Wall" msgstr "Wall-to-Wall" -#: src/Object/Post.php:560 +#: src/Object/Post.php:546 msgid "via Wall-To-Wall:" msgstr "via Wall-To-Wall:" -#: src/Object/Post.php:613 +#: src/Object/Post.php:599 #, php-format msgid "Reply to %s" msgstr "Antworte %s" -#: src/Object/Post.php:616 +#: src/Object/Post.php:602 msgid "More" msgstr "Mehr" -#: src/Object/Post.php:635 +#: src/Object/Post.php:621 msgid "Notifier task is pending" msgstr "Die Benachrichtigungsaufgabe ist ausstehend" -#: src/Object/Post.php:636 +#: src/Object/Post.php:622 msgid "Delivery to remote servers is pending" msgstr "Die Auslieferung an Remote-Server steht noch aus" -#: src/Object/Post.php:637 +#: src/Object/Post.php:623 msgid "Delivery to remote servers is underway" msgstr "Die Auslieferung an Remote-Server ist unterwegs" -#: src/Object/Post.php:638 +#: src/Object/Post.php:624 msgid "Delivery to remote servers is mostly done" msgstr "Die Zustellung an Remote-Server ist fast erledigt" -#: src/Object/Post.php:639 +#: src/Object/Post.php:625 msgid "Delivery to remote servers is done" msgstr "Die Zustellung an die Remote-Server ist erledigt" -#: src/Object/Post.php:661 +#: src/Object/Post.php:647 #, php-format msgid "%d comment" msgid_plural "%d comments" msgstr[0] "%d Kommentar" msgstr[1] "%d Kommentare" -#: src/Object/Post.php:662 +#: src/Object/Post.php:648 msgid "Show more" msgstr "Zeige mehr" -#: src/Object/Post.php:663 +#: src/Object/Post.php:649 msgid "Show fewer" msgstr "Zeige weniger" -#: src/Object/Post.php:700 +#: src/Object/Post.php:686 #, php-format msgid "Reshared by: %s" msgstr "Geteilt von: %s" -#: src/Object/Post.php:705 +#: src/Object/Post.php:691 #, php-format msgid "Viewed by: %s" msgstr "Gesehen von: %s" -#: src/Object/Post.php:710 +#: src/Object/Post.php:696 #, php-format msgid "Read by: %s" msgstr "Gelesen von: %s" -#: src/Object/Post.php:715 +#: src/Object/Post.php:701 #, php-format msgid "Liked by: %s" msgstr "Diese Menschen mögen das: %s" -#: src/Object/Post.php:720 +#: src/Object/Post.php:706 #, php-format msgid "Disliked by: %s" msgstr "Unbeliebt bei: %s" -#: src/Object/Post.php:725 +#: src/Object/Post.php:711 #, php-format msgid "Attended by: %s" msgstr "Besucht von: %s" -#: src/Object/Post.php:730 +#: src/Object/Post.php:716 #, php-format msgid "Maybe attended by: %s" msgstr "Vielleicht besucht von: %s" -#: src/Object/Post.php:735 +#: src/Object/Post.php:721 #, php-format msgid "Not attended by: %s" msgstr "Nicht besucht von: %s" -#: src/Object/Post.php:740 +#: src/Object/Post.php:726 #, php-format msgid "Commented by: %s" msgstr "Kommentiert von: %s" -#: src/Object/Post.php:745 +#: src/Object/Post.php:731 #, php-format msgid "Reacted with %s by: %s" msgstr "Reagierte mit %s von: %s" -#: src/Object/Post.php:768 +#: src/Object/Post.php:754 #, php-format msgid "Quote shared by: %s" msgstr "Zitat geteilt von: %s" -#: src/Protocol/ActivityPub/Receiver.php:571 +#: src/Protocol/ActivityPub/Receiver.php:557 msgid "Chat" msgstr "Chat" -#: src/Protocol/Delivery.php:544 +#: src/Protocol/Delivery.php:530 msgid "(no subject)" msgstr "(kein Betreff)" -#: src/Protocol/OStatus.php:1392 -#, php-format -msgid "%s is now following %s." -msgstr "%s folgt nun %s" - -#: src/Protocol/OStatus.php:1393 -msgid "following" -msgstr "folgen" - -#: src/Protocol/OStatus.php:1396 -#, php-format -msgid "%s stopped following %s." -msgstr "%s hat aufgehört %s, zu folgen" - -#: src/Protocol/OStatus.php:1397 -msgid "stopped following" -msgstr "wird nicht mehr gefolgt" - -#: src/Render/FriendicaSmartyEngine.php:56 +#: src/Render/FriendicaSmartyEngine.php:42 #, php-format msgid "The folder %s must be writable by webserver." msgstr "Das Verzeichnis %s muss für den Web-Server beschreibbar sein." -#: src/Security/Authentication.php:214 +#: src/Security/Authentication.php:200 msgid "Login failed." msgstr "Anmeldung fehlgeschlagen." -#: src/Security/Authentication.php:259 +#: src/Security/Authentication.php:245 msgid "Login failed. Please check your credentials." msgstr "Anmeldung fehlgeschlagen. Bitte überprüfe deine Angaben." -#: src/Security/Authentication.php:373 +#: src/Security/Authentication.php:359 #, php-format msgid "Welcome %s" msgstr "Willkommen %s" -#: src/Security/Authentication.php:374 +#: src/Security/Authentication.php:360 msgid "Please upload a profile photo." msgstr "Bitte lade ein Profilbild hoch." -#: src/Security/OpenWebAuth.php:163 +#: src/Security/OpenWebAuth.php:149 #, php-format msgid "OpenWebAuth: %1$s welcomes %2$s" msgstr "OpenWebAuth: %1$s heißt %2$s herzlich willkommen" -#: src/Util/EMailer/MailBuilder.php:260 +#: src/Util/EMailer/MailBuilder.php:246 msgid "Friendica Notification" msgstr "Friendica-Benachrichtigung" -#: src/Util/EMailer/NotifyMailBuilder.php:78 -#: src/Util/EMailer/SystemMailBuilder.php:54 +#: src/Util/EMailer/NotifyMailBuilder.php:64 +#: src/Util/EMailer/SystemMailBuilder.php:40 #, php-format msgid "%1$s, %2$s Administrator" msgstr "%1$s, %2$s Administrator" -#: src/Util/EMailer/NotifyMailBuilder.php:80 -#: src/Util/EMailer/SystemMailBuilder.php:56 +#: src/Util/EMailer/NotifyMailBuilder.php:66 +#: src/Util/EMailer/SystemMailBuilder.php:42 #, php-format msgid "%s Administrator" msgstr "der Administrator von %s" -#: src/Util/EMailer/NotifyMailBuilder.php:193 -#: src/Util/EMailer/NotifyMailBuilder.php:217 -#: src/Util/EMailer/SystemMailBuilder.php:101 -#: src/Util/EMailer/SystemMailBuilder.php:118 +#: src/Util/EMailer/NotifyMailBuilder.php:179 +#: src/Util/EMailer/NotifyMailBuilder.php:203 +#: src/Util/EMailer/SystemMailBuilder.php:87 +#: src/Util/EMailer/SystemMailBuilder.php:104 msgid "thanks" msgstr "danke" -#: src/Util/Temporal.php:172 +#: src/Util/Temporal.php:158 msgid "YYYY-MM-DD or MM-DD" msgstr "YYYY-MM-DD oder MM-DD" -#: src/Util/Temporal.php:280 +#: src/Util/Temporal.php:266 #, php-format msgid "Time zone: %s Change in Settings" msgstr "Zeitzone: %s Änderbar in den Einstellungen" -#: src/Util/Temporal.php:320 src/Util/Temporal.php:329 +#: src/Util/Temporal.php:306 src/Util/Temporal.php:315 msgid "never" msgstr "nie" -#: src/Util/Temporal.php:343 +#: src/Util/Temporal.php:329 msgid "less than a second ago" msgstr "vor weniger als einer Sekunde" -#: src/Util/Temporal.php:352 +#: src/Util/Temporal.php:338 msgid "year" msgstr "Jahr" -#: src/Util/Temporal.php:352 +#: src/Util/Temporal.php:338 msgid "years" msgstr "Jahre" -#: src/Util/Temporal.php:353 +#: src/Util/Temporal.php:339 msgid "months" msgstr "Monate" -#: src/Util/Temporal.php:354 +#: src/Util/Temporal.php:340 msgid "weeks" msgstr "Wochen" -#: src/Util/Temporal.php:355 +#: src/Util/Temporal.php:341 msgid "days" msgstr "Tage" -#: src/Util/Temporal.php:356 +#: src/Util/Temporal.php:342 msgid "hour" msgstr "Stunde" -#: src/Util/Temporal.php:356 +#: src/Util/Temporal.php:342 msgid "hours" msgstr "Stunden" -#: src/Util/Temporal.php:357 +#: src/Util/Temporal.php:343 msgid "minute" msgstr "Minute" -#: src/Util/Temporal.php:357 +#: src/Util/Temporal.php:343 msgid "minutes" msgstr "Minuten" -#: src/Util/Temporal.php:358 +#: src/Util/Temporal.php:344 msgid "second" msgstr "Sekunde" -#: src/Util/Temporal.php:358 +#: src/Util/Temporal.php:344 msgid "seconds" msgstr "Sekunden" -#: src/Util/Temporal.php:367 +#: src/Util/Temporal.php:353 #, php-format msgid "in %1$d %2$s" msgstr "in %1$d %2$s" -#: src/Util/Temporal.php:370 +#: src/Util/Temporal.php:356 #, php-format msgid "%1$d %2$s ago" msgstr "%1$d %2$s her" -#: src/Worker/PushSubscription.php:110 +#: src/Worker/PushSubscription.php:96 msgid "Notification from Friendica" msgstr "Benachrichtigung von Friendica" -#: src/Worker/PushSubscription.php:111 +#: src/Worker/PushSubscription.php:97 msgid "Empty Post" msgstr "Leerer Beitrag" -#: view/theme/duepuntozero/config.php:68 +#: view/theme/duepuntozero/config.php:56 msgid "default" msgstr "Standard" -#: view/theme/duepuntozero/config.php:69 +#: view/theme/duepuntozero/config.php:57 msgid "greenzero" msgstr "greenzero" -#: view/theme/duepuntozero/config.php:70 +#: view/theme/duepuntozero/config.php:58 msgid "purplezero" msgstr "purplezero" -#: view/theme/duepuntozero/config.php:71 +#: view/theme/duepuntozero/config.php:59 msgid "easterbunny" msgstr "easterbunny" -#: view/theme/duepuntozero/config.php:72 +#: view/theme/duepuntozero/config.php:60 msgid "darkzero" msgstr "darkzero" -#: view/theme/duepuntozero/config.php:73 +#: view/theme/duepuntozero/config.php:61 msgid "comix" msgstr "comix" -#: view/theme/duepuntozero/config.php:74 +#: view/theme/duepuntozero/config.php:62 msgid "slackr" msgstr "slackr" -#: view/theme/duepuntozero/config.php:87 +#: view/theme/duepuntozero/config.php:75 msgid "Variations" msgstr "Variationen" -#: view/theme/frio/config.php:146 +#: view/theme/frio/config.php:134 msgid "Note" msgstr "Hinweis" -#: view/theme/frio/config.php:146 +#: view/theme/frio/config.php:134 msgid "Check image permissions if all users are allowed to see the image" msgstr "Überprüfe, dass alle Benutzer die Berechtigung haben dieses Bild anzusehen" -#: view/theme/frio/config.php:152 +#: view/theme/frio/config.php:140 msgid "Appearance" msgstr "Erscheinungsbild" -#: view/theme/frio/config.php:153 +#: view/theme/frio/config.php:141 msgid "Accent color" msgstr "Akzentfarbe" -#: view/theme/frio/config.php:153 +#: view/theme/frio/config.php:141 msgid "Blue" msgstr "Blau" -#: view/theme/frio/config.php:153 +#: view/theme/frio/config.php:141 msgid "Red" msgstr "Rot" -#: view/theme/frio/config.php:153 +#: view/theme/frio/config.php:141 msgid "Purple" msgstr "Violett" -#: view/theme/frio/config.php:153 +#: view/theme/frio/config.php:141 msgid "Green" msgstr "Grün" -#: view/theme/frio/config.php:153 +#: view/theme/frio/config.php:141 msgid "Pink" msgstr "Rosa" -#: view/theme/frio/config.php:154 +#: view/theme/frio/config.php:142 msgid "Copy or paste schemestring" msgstr "Farbschema kopieren oder einfügen" -#: view/theme/frio/config.php:154 +#: view/theme/frio/config.php:142 msgid "" "You can copy this string to share your theme with others. Pasting here " "applies the schemestring" msgstr "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:155 +#: view/theme/frio/config.php:143 msgid "Navigation bar background color" msgstr "Hintergrundfarbe der Navigationsleiste" -#: view/theme/frio/config.php:156 +#: view/theme/frio/config.php:144 msgid "Navigation bar icon color " msgstr "Icon Farbe in der Navigationsleiste" -#: view/theme/frio/config.php:157 +#: view/theme/frio/config.php:145 msgid "Link color" msgstr "Linkfarbe" -#: view/theme/frio/config.php:158 +#: view/theme/frio/config.php:146 msgid "Set the background color" msgstr "Hintergrundfarbe festlegen" -#: view/theme/frio/config.php:159 +#: view/theme/frio/config.php:147 msgid "Content background opacity" msgstr "Opazität des Hintergrunds von Beiträgen" -#: view/theme/frio/config.php:160 +#: view/theme/frio/config.php:148 msgid "Set the background image" msgstr "Hintergrundbild festlegen" -#: view/theme/frio/config.php:161 +#: view/theme/frio/config.php:149 msgid "Background image style" msgstr "Stil des Hintergrundbildes" -#: view/theme/frio/config.php:164 +#: view/theme/frio/config.php:152 msgid "Always open Compose page" msgstr "Immer die Composer Seite öffnen" -#: view/theme/frio/config.php:164 +#: view/theme/frio/config.php:152 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:168 +#: view/theme/frio/config.php:156 msgid "Login page background image" msgstr "Hintergrundbild der Login-Seite" -#: view/theme/frio/config.php:172 +#: view/theme/frio/config.php:160 msgid "Login page background color" msgstr "Hintergrundfarbe der Login-Seite" -#: view/theme/frio/config.php:172 +#: view/theme/frio/config.php:160 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." -#: view/theme/frio/php/Image.php:39 +#: view/theme/frio/php/Image.php:27 msgid "Top Banner" msgstr "Top Banner" -#: view/theme/frio/php/Image.php:39 +#: view/theme/frio/php/Image.php:27 msgid "" "Resize image to the width of the screen and show background color below on " "long pages." msgstr "Skaliere das Hintergrundbild so, dass es die Breite der Seite einnimmt, und fülle den Rest der Seite mit der Hintergrundfarbe bei langen Seiten." -#: view/theme/frio/php/Image.php:40 +#: view/theme/frio/php/Image.php:28 msgid "Full screen" msgstr "Vollbildmodus" -#: view/theme/frio/php/Image.php:40 +#: view/theme/frio/php/Image.php:28 msgid "" "Resize image to fill entire screen, clipping either the right or the bottom." msgstr "Skaliere das Bild so, dass es den gesamten Bildschirm füllt. Hierfür wird entweder die Breite oder die Höhe des Bildes automatisch abgeschnitten." -#: view/theme/frio/php/Image.php:41 +#: view/theme/frio/php/Image.php:29 msgid "Single row mosaic" msgstr "Mosaik in einer Zeile" -#: view/theme/frio/php/Image.php:41 +#: view/theme/frio/php/Image.php:29 msgid "" "Resize image to repeat it on a single row, either vertical or horizontal." msgstr "Skaliere das Bild so, dass es in einer einzelnen Reihe, entweder horizontal oder vertikal, wiederholt wird." -#: view/theme/frio/php/Image.php:42 +#: view/theme/frio/php/Image.php:30 msgid "Mosaic" msgstr "Mosaik" -#: view/theme/frio/php/Image.php:42 +#: view/theme/frio/php/Image.php:30 msgid "Repeat image to fill the screen." msgstr "Wiederhole das Bild, um den Bildschirm zu füllen." -#: view/theme/frio/php/default.php:82 view/theme/frio/php/standard.php:40 +#: view/theme/frio/php/default.php:70 view/theme/frio/php/standard.php:28 msgid "Skip to main content" msgstr "Zum Inhalt der Seite gehen" -#: view/theme/frio/php/default.php:153 view/theme/frio/php/standard.php:75 +#: view/theme/frio/php/default.php:141 view/theme/frio/php/standard.php:63 msgid "Back to top" msgstr "Zurück nach Oben" -#: view/theme/frio/php/scheme.php:105 +#: view/theme/frio/php/scheme.php:93 msgid "Light" msgstr "Hell" -#: view/theme/frio/php/scheme.php:106 +#: view/theme/frio/php/scheme.php:94 msgid "Dark" msgstr "Dunkel" -#: view/theme/frio/php/scheme.php:107 +#: view/theme/frio/php/scheme.php:95 msgid "Black" msgstr "Schwarz" -#: view/theme/frio/php/scheme.php:118 +#: view/theme/frio/php/scheme.php:106 msgid "Custom" msgstr "Benutzerdefiniert" -#: view/theme/frio/theme.php:214 +#: view/theme/frio/theme.php:202 msgid "Guest" msgstr "Gast" -#: view/theme/frio/theme.php:217 +#: view/theme/frio/theme.php:205 msgid "Visitor" msgstr "Besucher" -#: view/theme/quattro/config.php:89 +#: view/theme/quattro/config.php:77 msgid "Alignment" msgstr "Ausrichtung" -#: view/theme/quattro/config.php:89 +#: view/theme/quattro/config.php:77 msgid "Left" msgstr "Links" -#: view/theme/quattro/config.php:89 +#: view/theme/quattro/config.php:77 msgid "Center" msgstr "Mitte" -#: view/theme/quattro/config.php:90 +#: view/theme/quattro/config.php:78 msgid "Color scheme" msgstr "Farbschema" -#: view/theme/quattro/config.php:91 +#: view/theme/quattro/config.php:79 msgid "Posts font size" msgstr "Schriftgröße in Beiträgen" -#: view/theme/quattro/config.php:92 +#: view/theme/quattro/config.php:80 msgid "Textareas font size" msgstr "Schriftgröße in Eingabefeldern" -#: view/theme/vier/config.php:91 +#: view/theme/vier/config.php:79 msgid "Comma separated list of helper groups" msgstr "Komma-separierte Liste der Helfer-Gruppen" -#: view/theme/vier/config.php:131 +#: view/theme/vier/config.php:119 msgid "don't show" msgstr "nicht zeigen" -#: view/theme/vier/config.php:131 +#: view/theme/vier/config.php:119 msgid "show" msgstr "zeigen" -#: view/theme/vier/config.php:137 +#: view/theme/vier/config.php:125 msgid "Set style" msgstr "Stil auswählen" -#: view/theme/vier/config.php:138 +#: view/theme/vier/config.php:126 msgid "Community Pages" msgstr "Gemeinschaftsseiten" -#: view/theme/vier/config.php:139 view/theme/vier/theme.php:148 +#: view/theme/vier/config.php:127 view/theme/vier/theme.php:136 msgid "Community Profiles" msgstr "Gemeinschaftsprofile" -#: view/theme/vier/config.php:140 +#: view/theme/vier/config.php:128 msgid "Help or @NewHere ?" msgstr "Hilfe oder @NewHere" -#: view/theme/vier/config.php:141 view/theme/vier/theme.php:319 +#: view/theme/vier/config.php:129 view/theme/vier/theme.php:307 msgid "Connect Services" msgstr "Verbinde Dienste" -#: view/theme/vier/config.php:142 +#: view/theme/vier/config.php:130 msgid "Find Friends" msgstr "Kontakte finden" -#: view/theme/vier/config.php:143 view/theme/vier/theme.php:175 +#: view/theme/vier/config.php:131 view/theme/vier/theme.php:163 msgid "Last users" msgstr "Letzte Nutzer" -#: view/theme/vier/theme.php:234 +#: view/theme/vier/theme.php:222 msgid "Quick Start" msgstr "Schnell-Start" diff --git a/view/lang/de/strings.php b/view/lang/de/strings.php index ecc129d850..2bfe2d62ef 100644 --- a/view/lang/de/strings.php +++ b/view/lang/de/strings.php @@ -845,7 +845,6 @@ $a->strings['An author or name was not found.'] = 'Es wurde kein Autor oder Name $a->strings['No browser URL could be matched to this address.'] = 'Zu dieser Adresse konnte keine passende Browser-URL gefunden werden.'; $a->strings['Unable to match @-style Identity Address with a known protocol or email contact.'] = 'Konnte die @-Adresse mit keinem der bekannten Protokolle oder Email-Kontakte abgleichen.'; $a->strings['Use mailto: in front of address to force email check.'] = 'Verwende mailto: vor der E-Mail-Adresse, um eine Überprüfung der E-Mail-Adresse zu erzwingen.'; -$a->strings['The profile address specified belongs to a network which has been disabled on this site.'] = 'Die Adresse dieses Profils gehört zu einem Netzwerk, mit dem die Kommunikation auf dieser Seite ausgeschaltet wurde.'; $a->strings['Limited profile. This person will be unable to receive direct/personal notifications from you.'] = 'Eingeschränktes Profil. Diese Person wird keine direkten/privaten Nachrichten von dir erhalten können.'; $a->strings['Unable to retrieve contact information.'] = 'Konnte die Kontaktinformationen nicht empfangen.'; $a->strings['l F d, Y \@ g:i A \G\M\TP (e)'] = 'l F d, Y \@ g:i A \G\M\TP (e)'; @@ -873,7 +872,6 @@ $a->strings['%s\'s birthday'] = '%ss Geburtstag'; $a->strings['Happy Birthday %s'] = 'Herzlichen Glückwunsch, %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'] = 'Erkannte Sprachen in diesem Beitrag:\n%s'; $a->strings['activity'] = 'Aktivität'; $a->strings['comment'] = 'Kommentar'; $a->strings['post'] = 'Beitrag'; @@ -1359,8 +1357,6 @@ $a->strings['The maximum number of posts per server on the global community page $a->strings['Enable Mail support'] = 'E-Mail Unterstützung aktivieren'; $a->strings['Enable built-in mail support to poll IMAP folders and to reply via mail.'] = 'Aktiviert die Unterstützung IMAP Ordner abzurufen und ermöglicht es auch auf E-Mails zu antworten.'; $a->strings['Mail support can\'t be enabled because the PHP IMAP module is not installed.'] = 'E-Mail Unterstützung kann nicht aktiviert werden, da das PHP IMAP Modul nicht installiert ist.'; -$a->strings['Enable OStatus support'] = 'OStatus Unterstützung aktivieren'; -$a->strings['Enable built-in OStatus (StatusNet, GNU Social etc.) compatibility. All communications in OStatus are public.'] = 'Aktiviere die OStatus (StatusNet, GNU Social usw.) Unterstützung. Die Kommunikation über das OStatus Protokoll ist grundsätzlich öffentlich.'; $a->strings['Diaspora support can\'t be enabled because Friendica was installed into a sub directory.'] = 'Diaspora Unterstützung kann nicht aktiviert werden, da Friendica in ein Unterverzeichnis installiert ist.'; $a->strings['Enable Diaspora support'] = 'Diaspora-Unterstützung aktivieren'; $a->strings['Enable built-in Diaspora network compatibility for communicating with diaspora servers.'] = 'Aktiviere die Unterstützung des Diaspora Protokolls zur Kommunikation mit Diaspora Servern.'; @@ -1406,7 +1402,6 @@ $a->strings['When the database cleanup is enabled, this defines the days after w $a->strings['Lifespan of unclaimed items'] = 'Lebensdauer nicht angeforderter Beiträge'; $a->strings['When the database cleanup is enabled, this defines the days after which unclaimed remote items (mostly content from the relay) will be deleted. Default value is 90 days. Defaults to the general lifespan value of remote items if set to 0.'] = '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.'; $a->strings['Lifespan of raw conversation data'] = 'Lebensdauer der Beiträge'; -$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.'] = '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.'; $a->strings['Maximum numbers of comments per post'] = 'Maximale Anzahl von Kommentaren pro Beitrag'; $a->strings['How much comments should be shown for each post? Default value is 100.'] = 'Wie viele Kommentare sollen pro Beitrag angezeigt werden? Standardwert sind 100.'; $a->strings['Maximum numbers of comments per post on the display page'] = 'Maximale Anzahl von Kommentaren in der Einzelansicht'; @@ -1721,7 +1716,6 @@ $a->strings['Submit Request'] = 'Anfrage abschicken'; $a->strings['You already added this contact.'] = 'Du hast den Kontakt bereits hinzugefügt.'; $a->strings['The network type couldn\'t be detected. Contact can\'t be added.'] = 'Der Netzwerktyp wurde nicht erkannt. Der Kontakt kann nicht hinzugefügt werden.'; $a->strings['Diaspora support isn\'t enabled. Contact can\'t be added.'] = 'Diaspora-Unterstützung ist nicht aktiviert. Der Kontakt kann nicht zugefügt werden.'; -$a->strings['OStatus support is disabled. Contact can\'t be added.'] = 'OStatus-Unterstützung ist nicht aktiviert. Der Kontakt kann nicht zugefügt werden.'; $a->strings['Please answer the following:'] = 'Bitte beantworte folgendes:'; $a->strings['Your Identity Address:'] = 'Adresse Deines Profils:'; $a->strings['Profile URL'] = 'Profil URL'; @@ -2257,10 +2251,6 @@ $a->strings['Incomplete request data'] = 'Daten der Anfrage sind nicht vollstän $a->strings['Please copy the following authentication code into your application and close this window: %s'] = 'Bitte kopiere den folgenden Authentifizierungscode in deine App und schließe dieses Fenster: %s'; $a->strings['Invalid data or unknown client'] = 'Ungültige Daten oder unbekannter Client'; $a->strings['Unsupported or missing grant type'] = 'Der Grant-Typ fehlt oder wird nicht unterstützt'; -$a->strings['Resubscribing to OStatus contacts'] = 'Erneuern der OStatus-Abonements'; -$a->strings['Keep this window open until done.'] = 'Lasse dieses Fenster offen, bis der Vorgang abgeschlossen ist.'; -$a->strings['✔ Done'] = '✔ Erledigt'; -$a->strings['No OStatus contacts to resubscribe to.'] = 'Keine OStatus Kontakte zum Neufolgen vorhanden.'; $a->strings['Subscribing to contacts'] = 'Kontakten folgen'; $a->strings['No contact provided.'] = 'Keine Kontakte gefunden.'; $a->strings['Couldn\'t fetch information for contact.'] = 'Konnte die Kontaktinformationen nicht einholen.'; @@ -2272,6 +2262,7 @@ $a->strings['Done'] = 'Erledigt'; $a->strings['success'] = 'Erfolg'; $a->strings['failed'] = 'Fehlgeschlagen'; $a->strings['ignored'] = 'Ignoriert'; +$a->strings['Keep this window open until done.'] = 'Lasse dieses Fenster offen, bis der Vorgang abgeschlossen ist.'; $a->strings['The Photo is not available.'] = 'Das Foto ist nicht verfügbar.'; $a->strings['The Photo with id %s is not available.'] = 'Das Bild mit ID %s ist nicht verfügbar.'; $a->strings['Invalid external resource with url %s.'] = 'Ungültige externe Ressource mit der URL %s'; @@ -2299,9 +2290,9 @@ $a->strings['Collection (%s)'] = 'Sammlung (%s)'; $a->strings['Followers (%s)'] = 'Folgende (%s)'; $a->strings['%d more'] = '%d weitere'; $a->strings['No contacts.'] = 'Keine Kontakte.'; -$a->strings['%s\'s timeline'] = 'Timeline von %s'; $a->strings['%s\'s posts'] = 'Beiträge von %s'; $a->strings['%s\'s comments'] = 'Kommentare von %s'; +$a->strings['%s\'s timeline'] = 'Timeline von %s'; $a->strings['Image exceeds size limit of %s'] = 'Bildgröße überschreitet das Limit von %s'; $a->strings['Image upload didn\'t complete, please try again'] = 'Der Upload des Bildes war nicht vollständig. Bitte versuche es erneut.'; $a->strings['Image file is missing'] = 'Bilddatei konnte nicht gefunden werden.'; @@ -2580,7 +2571,6 @@ $a->strings['Failed to connect with email account using the settings provided.'] $a->strings['Diaspora (Socialhome, Hubzilla)'] = 'Diaspora (Socialhome, Hubzilla)'; $a->strings['Built-in support for %s connectivity is enabled'] = 'Eingebaute Unterstützung für die Verbindung zu %s ist aktiviert.'; $a->strings['Built-in support for %s connectivity is disabled'] = 'Eingebaute Unterstützung für die Verbindung zu %s ist nicht aktiviert.'; -$a->strings['OStatus (GNU Social)'] = 'OStatus (GNU Social)'; $a->strings['Email access is disabled on this site.'] = 'Zugriff auf E-Mails für diese Seite deaktiviert.'; $a->strings['None'] = 'Keine'; $a->strings['Default (Mastodon will display the title and a link to the post)'] = 'Grundeinstellung (Mastodon zweigt den Titel und einen Link auf den Beitrag)'; @@ -2608,7 +2598,6 @@ $a->strings['Article Mode'] = 'Artikel Modus'; $a->strings['Controls how posts with titles are transmitted. Mastodon and its forks don\'t display the content of these posts if the post is created in the correct (default) way.'] = 'Kontrolliert wie Beiträge mit Titeln übermittel werden. Mastodon und dessen Forks stellen den Inhalt dieser Beiträge nicht dar, wenn sie an sich korrekt in den Grundeinstellungen übertragen werden.'; $a->strings['Your legacy ActivityPub/GNU Social account'] = 'Dein alter ActivityPub/GNU Social-Account'; $a->strings['If you enter your old account name from an ActivityPub based system or your GNU Social/Statusnet account name here (in the format user@domain.tld), your contacts will be added automatically. The field will be emptied when done.'] = 'Wenn du deinen alten ActivityPub oder GNU Social/Statusnet-Account-Namen hier angibst (Format name@domain.tld), werden deine Kontakte automatisch hinzugefügt. Dieses Feld wird geleert, wenn die Kontakte hinzugefügt wurden.'; -$a->strings['Repair OStatus subscriptions'] = 'OStatus-Abonnements reparieren'; $a->strings['Email/Mailbox Setup'] = 'E-Mail/Postfach-Einstellungen'; $a->strings['If you wish to communicate with email contacts using this service (optional), please specify how to connect to your mailbox.'] = 'Wenn du mit E-Mail-Kontakten über diesen Service kommunizieren möchtest (optional), gib bitte die Einstellungen für dein Postfach an.'; $a->strings['Last successful email check:'] = 'Letzter erfolgreicher E-Mail-Check'; @@ -2935,7 +2924,6 @@ $a->strings['%s commented on %s\'s post'] = '%s hat %ss Beitrag kommentiert'; $a->strings['%s created a new post'] = '%s hat einen neuen Beitrag erstellt'; $a->strings['Friend Suggestion'] = 'Kontaktvorschlag'; $a->strings['Friend/Connect Request'] = 'Kontakt-/Freundschaftsanfrage'; -$a->strings['New Follower'] = 'Neuer Bewunderer'; $a->strings['%1$s wants to follow you'] = '%1$s möchte dir folgen'; $a->strings['%1$s has started following you'] = '%1$s hat angefangen dir zu folgen'; $a->strings['%1$s liked your comment on %2$s'] = '%1$s mag deinen Kommentar %2$s'; @@ -3090,10 +3078,6 @@ $a->strings['Reacted with %s by: %s'] = 'Reagierte mit %s von: %s'; $a->strings['Quote shared by: %s'] = 'Zitat geteilt von: %s'; $a->strings['Chat'] = 'Chat'; $a->strings['(no subject)'] = '(kein Betreff)'; -$a->strings['%s is now following %s.'] = '%s folgt nun %s'; -$a->strings['following'] = 'folgen'; -$a->strings['%s stopped following %s.'] = '%s hat aufgehört %s, zu folgen'; -$a->strings['stopped following'] = 'wird nicht mehr gefolgt'; $a->strings['The folder %s must be writable by webserver.'] = 'Das Verzeichnis %s muss für den Web-Server beschreibbar sein.'; $a->strings['Login failed.'] = 'Anmeldung fehlgeschlagen.'; $a->strings['Login failed. Please check your credentials.'] = 'Anmeldung fehlgeschlagen. Bitte überprüfe deine Angaben.'; diff --git a/view/lang/eo/messages.po b/view/lang/eo/messages.po index a6cb04b1c6..e8b0742f73 100644 --- a/view/lang/eo/messages.po +++ b/view/lang/eo/messages.po @@ -1,8 +1,7 @@ # FRIENDICA Distributed Social Network -# SPDX-FileCopyrightText: Copyright (C) 2010-2024, the Friendica project -# -# SPDX-License-Identifier: AGPL-3.0-or-later -# +# Copyright (C) 2010-2024, the Friendica project +# This file is distributed under the same license as the Friendica package. +# # Translators: # Diego Souza , 2012 # Martin Schmitt , 2012 @@ -12,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: friendica\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-03-01 08:51-0500\n" +"POT-Creation-Date: 2024-10-07 20:46+0000\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" @@ -22,77 +21,77 @@ msgstr "" "Language: eo\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: mod/item.php:100 mod/item.php:103 mod/item.php:170 mod/item.php:173 +#: mod/item.php:89 mod/item.php:92 mod/item.php:159 mod/item.php:162 msgid "Unable to locate original post." msgstr "Ne eblas trovi originalan afiŝon." -#: mod/item.php:138 +#: mod/item.php:127 msgid "Post updated." msgstr "" -#: mod/item.php:203 mod/item.php:207 +#: mod/item.php:192 mod/item.php:196 msgid "Item wasn't stored." msgstr "" -#: mod/item.php:217 +#: mod/item.php:206 msgid "Item couldn't be fetched." msgstr "" -#: mod/item.php:259 mod/item.php:263 +#: mod/item.php:250 mod/item.php:254 msgid "Empty post discarded." msgstr "Forviŝis malplenan afiŝon." -#: 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 +#: mod/item.php:425 src/Module/Admin/Themes/Details.php:31 +#: src/Module/Admin/Themes/Index.php:51 src/Module/Debug/ItemBody.php:28 +#: src/Module/Debug/ItemBody.php:43 src/Module/Item/Feed.php:66 msgid "Item not found." msgstr "Elemento ne estas trovita." -#: 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 -#: src/Module/Calendar/Export.php:82 src/Module/Calendar/Show.php:82 -#: src/Module/Circle.php:41 src/Module/Circle.php:84 -#: src/Module/Contact/Advanced.php:60 src/Module/Contact/Follow.php:87 -#: src/Module/Contact/Follow.php:160 src/Module/Contact/MatchInterests.php:86 -#: src/Module/Contact/Suggestions.php:54 src/Module/Contact/Unfollow.php:66 -#: src/Module/Contact/Unfollow.php:80 src/Module/Contact/Unfollow.php:112 -#: src/Module/FollowConfirm.php:38 src/Module/FriendSuggest.php:57 -#: src/Module/Invite.php:42 src/Module/Invite.php:131 -#: src/Module/Notifications/Notification.php:76 -#: src/Module/Notifications/Notification.php:107 -#: src/Module/OStatus/Repair.php:60 src/Module/OStatus/Subscribe.php:66 -#: src/Module/Post/Edit.php:76 src/Module/Profile/Common.php:75 -#: src/Module/Profile/Contacts.php:78 src/Module/Profile/Photos.php:92 -#: src/Module/Profile/Schedule.php:39 src/Module/Profile/Schedule.php:56 -#: src/Module/Register.php:77 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: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:199 -#: src/Module/Settings/Profile/Photo/Crop.php:165 -#: src/Module/Settings/Profile/Photo/Index.php:110 -#: src/Module/Settings/RemoveMe.php:119 src/Module/Settings/UserExport.php:78 -#: src/Module/Settings/UserExport.php:114 -#: src/Module/Settings/UserExport.php:213 -#: src/Module/Settings/UserExport.php:233 -#: src/Module/Settings/UserExport.php:298 src/Module/User/Delegation.php:154 -#: src/Module/User/Import.php:84 src/Module/User/Import.php:91 +#: mod/item.php:449 mod/message.php:54 mod/message.php:100 mod/notes.php:33 +#: mod/photos.php:135 mod/photos.php:627 src/Model/Event.php:506 +#: src/Module/Attach.php:41 src/Module/BaseApi.php:89 +#: src/Module/BaseNotifications.php:84 src/Module/BaseSettings.php:36 +#: src/Module/Calendar/Event/API.php:74 src/Module/Calendar/Event/Form.php:70 +#: src/Module/Calendar/Export.php:68 src/Module/Calendar/Show.php:68 +#: src/Module/Circle.php:27 src/Module/Circle.php:70 +#: src/Module/Contact/Advanced.php:46 src/Module/Contact/Follow.php:73 +#: src/Module/Contact/Follow.php:141 src/Module/Contact/MatchInterests.php:73 +#: src/Module/Contact/Suggestions.php:40 src/Module/Contact/Unfollow.php:52 +#: src/Module/Contact/Unfollow.php:66 src/Module/Contact/Unfollow.php:98 +#: src/Module/FollowConfirm.php:24 src/Module/FriendSuggest.php:43 +#: src/Module/Invite.php:28 src/Module/Invite.php:117 +#: src/Module/Notifications/Notification.php:62 +#: src/Module/Notifications/Notification.php:93 +#: src/Module/OStatus/Subscribe.php:54 src/Module/Post/Edit.php:62 +#: src/Module/Profile/Common.php:61 src/Module/Profile/Contacts.php:64 +#: src/Module/Profile/Photos.php:78 src/Module/Profile/Schedule.php:25 +#: src/Module/Profile/Schedule.php:42 src/Module/Register.php:70 +#: src/Module/Register.php:83 src/Module/Register.php:199 +#: src/Module/Register.php:238 src/Module/Search/Directory.php:23 +#: src/Module/Settings/Account.php:36 src/Module/Settings/Account.php:377 +#: src/Module/Settings/Channels.php:52 src/Module/Settings/Channels.php:127 +#: src/Module/Settings/Delegation.php:76 src/Module/Settings/Display.php:76 +#: src/Module/Settings/Display.php:183 +#: src/Module/Settings/Profile/Photo/Crop.php:151 +#: src/Module/Settings/Profile/Photo/Index.php:96 +#: src/Module/Settings/RemoveMe.php:105 src/Module/Settings/UserExport.php:64 +#: src/Module/Settings/UserExport.php:100 +#: src/Module/Settings/UserExport.php:199 +#: src/Module/Settings/UserExport.php:219 +#: src/Module/Settings/UserExport.php:284 src/Module/User/Delegation.php:140 +#: src/Module/User/Import.php:71 src/Module/User/Import.php:78 msgid "Permission denied." msgstr "Malpermesita." -#: mod/lostpass.php:40 +#: mod/lostpass.php:28 msgid "No valid account found." msgstr "Ne trovis validan konton." -#: mod/lostpass.php:52 +#: mod/lostpass.php:40 msgid "Password reset request issued. Check your email." msgstr "Eldonis riparadon de pasvorto. Legu vian retpoŝton." -#: mod/lostpass.php:58 +#: mod/lostpass.php:46 #, php-format msgid "" "\n" @@ -108,7 +107,7 @@ msgid "" "\t\tissued this request." msgstr "" -#: mod/lostpass.php:69 +#: mod/lostpass.php:57 #, php-format msgid "" "\n" @@ -125,70 +124,70 @@ msgid "" "\t\tLogin Name:\t%3$s" msgstr "" -#: mod/lostpass.php:84 +#: mod/lostpass.php:72 #, php-format msgid "Password reset requested at %s" msgstr "Pasvorta riparado petita je %s" -#: mod/lostpass.php:100 +#: mod/lostpass.php:88 msgid "" "Request could not be verified. (You may have previously submitted it.) " "Password reset failed." msgstr "Ne povis konfirmi la peton. (Eble vi sendis ĝin antaŭ.) Pasvorta riparado malsukcesis." -#: mod/lostpass.php:113 +#: mod/lostpass.php:101 msgid "Request has expired, please make a new one." msgstr "" -#: mod/lostpass.php:128 +#: mod/lostpass.php:116 msgid "Forgot your Password?" msgstr "Ĉu vi forgesis vian pasvorton?" -#: mod/lostpass.php:129 +#: mod/lostpass.php:117 msgid "" "Enter your email address and submit to have your password reset. Then check " "your email for further instructions." msgstr "Entajpu vian retpoŝtadreson kaj sendu por pasvorta riparado. Poste, bonvolu legi vian retpoŝton por trovi pliajn instrukciojn." -#: mod/lostpass.php:130 src/Module/Security/Login.php:160 +#: mod/lostpass.php:118 src/Module/Security/Login.php:150 msgid "Nickname or Email: " msgstr "Salutnomo aŭ retpoŝtadreso: " -#: mod/lostpass.php:131 +#: mod/lostpass.php:119 msgid "Reset" msgstr "Repari" -#: mod/lostpass.php:146 src/Module/Security/Login.php:172 +#: mod/lostpass.php:134 src/Module/Security/Login.php:162 msgid "Password Reset" msgstr "Pasvorta riparado" -#: mod/lostpass.php:147 +#: mod/lostpass.php:135 msgid "Your password has been reset as requested." msgstr "Via pasvorto estis riparita laŭ via peto." -#: mod/lostpass.php:148 +#: mod/lostpass.php:136 msgid "Your new password is" msgstr "Via nova pasvorto estas" -#: mod/lostpass.php:149 +#: mod/lostpass.php:137 msgid "Save or copy your new password - and then" msgstr "Memorigi vian novan pasvorton - kaj poste" -#: mod/lostpass.php:150 +#: mod/lostpass.php:138 msgid "click here to login" msgstr "klaku ĉi tie por ensaluti" -#: mod/lostpass.php:151 +#: mod/lostpass.php:139 msgid "" "Your password may be changed from the Settings page after " "successful login." msgstr "Vi povas ŝangi vian pasvorton sur la paĝo agordoj kiam vi sukcese ensalutis." -#: mod/lostpass.php:155 +#: mod/lostpass.php:143 msgid "Your password has been reset." msgstr "" -#: mod/lostpass.php:158 +#: mod/lostpass.php:146 #, php-format msgid "" "\n" @@ -199,7 +198,7 @@ msgid "" "\t\t" msgstr "" -#: mod/lostpass.php:164 +#: mod/lostpass.php:152 #, php-format msgid "" "\n" @@ -213,2361 +212,2415 @@ msgid "" "\t\t" msgstr "" -#: mod/lostpass.php:176 +#: mod/lostpass.php:164 #, php-format msgid "Your password has been changed at %s" msgstr "" -#: mod/message.php:46 mod/message.php:128 src/Content/Nav.php:321 +#: mod/message.php:33 mod/message.php:115 src/Content/Nav.php:307 msgid "New Message" msgstr "Nova Mesaĝo" -#: mod/message.php:82 +#: mod/message.php:69 msgid "No recipient selected." msgstr "Neniom da ricevontoj." -#: mod/message.php:87 +#: mod/message.php:74 msgid "Unable to locate contact information." msgstr "Ne eblas trovi kontaktajn informojn." -#: mod/message.php:91 +#: mod/message.php:78 msgid "Message could not be sent." msgstr "Ne povas sendi la mesaĝon." -#: mod/message.php:95 +#: mod/message.php:82 msgid "Message collection failure." msgstr "Malsukcese provis kolekti mesaĝojn." -#: mod/message.php:122 src/Module/Notifications/Introductions.php:135 -#: src/Module/Notifications/Introductions.php:170 -#: src/Module/Notifications/Notification.php:85 +#: mod/message.php:109 src/Module/Notifications/Introductions.php:127 +#: src/Module/Notifications/Introductions.php:162 +#: src/Module/Notifications/Notification.php:71 msgid "Discard" msgstr "Forviŝi" -#: mod/message.php:135 src/Content/Nav.php:318 view/theme/frio/theme.php:244 +#: mod/message.php:122 src/Content/Nav.php:304 view/theme/frio/theme.php:232 msgid "Messages" msgstr "Mesaĝoj" -#: mod/message.php:148 +#: mod/message.php:135 msgid "Conversation not found." msgstr "" -#: mod/message.php:153 +#: mod/message.php:140 msgid "Message was not deleted." msgstr "" -#: mod/message.php:168 +#: mod/message.php:155 msgid "Conversation was not removed." msgstr "" -#: mod/message.php:181 mod/message.php:286 +#: mod/message.php:168 mod/message.php:273 msgid "Please enter a link URL:" msgstr "Bonvolu entajpu adreson de ligilo:" -#: mod/message.php:190 +#: mod/message.php:177 msgid "Send Private Message" msgstr "Sendi Privatan Mesaĝon" -#: mod/message.php:191 mod/message.php:346 +#: mod/message.php:178 mod/message.php:333 +#: src/Module/Privacy/PermissionTooltip.php:118 msgid "To:" msgstr "Al:" -#: mod/message.php:192 mod/message.php:347 +#: mod/message.php:179 mod/message.php:334 msgid "Subject:" msgstr "Temo:" -#: mod/message.php:196 mod/message.php:350 src/Module/Invite.php:171 +#: mod/message.php:183 mod/message.php:337 src/Module/Invite.php:157 msgid "Your message:" msgstr "Via mesaĝo:" -#: mod/message.php:199 mod/message.php:354 src/Content/Conversation.php:370 -#: src/Module/Post/Edit.php:131 +#: mod/message.php:186 mod/message.php:341 src/Content/Conversation.php:355 +#: src/Module/Post/Edit.php:117 msgid "Upload photo" msgstr "Alŝuti bildon" -#: mod/message.php:200 mod/message.php:355 src/Module/Post/Edit.php:135 +#: mod/message.php:187 mod/message.php:342 src/Module/Post/Edit.php:121 msgid "Insert web link" msgstr "Enmeti retan adreson" -#: 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 +#: mod/message.php:188 mod/message.php:344 mod/photos.php:1255 +#: src/Content/Conversation.php:386 src/Content/Conversation.php:1562 +#: src/Module/Item/Compose.php:199 src/Module/Post/Edit.php:131 +#: src/Object/Post.php:604 msgid "Please wait" msgstr "Bonvolu atendi" -#: 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: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 -#: src/Module/Invite.php:178 src/Module/Item/Compose.php:189 -#: src/Module/Moderation/Item/Source.php:79 -#: src/Module/Moderation/Report/Create.php:168 -#: src/Module/Moderation/Report/Create.php:183 -#: src/Module/Moderation/Report/Create.php:211 -#: src/Module/Moderation/Report/Create.php:263 -#: src/Module/Profile/Profile.php: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:150 view/theme/quattro/config.php:87 -#: view/theme/vier/config.php:135 +#: mod/message.php:189 mod/message.php:343 mod/photos.php:658 +#: mod/photos.php:778 mod/photos.php:1055 mod/photos.php:1096 +#: mod/photos.php:1152 mod/photos.php:1232 +#: src/Module/Calendar/Event/Form.php:236 src/Module/Contact/Advanced.php:118 +#: src/Module/Contact/Profile.php:370 +#: src/Module/Debug/ActivityPubConversion.php:132 +#: src/Module/Debug/Babel.php:307 src/Module/Debug/Localtime.php:50 +#: src/Module/Debug/Probe.php:40 src/Module/Debug/WebFinger.php:37 +#: src/Module/FriendSuggest.php:131 src/Module/Install.php:220 +#: src/Module/Install.php:260 src/Module/Install.php:295 +#: src/Module/Invite.php:164 src/Module/Item/Compose.php:182 +#: src/Module/Moderation/Item/Source.php:71 +#: src/Module/Moderation/Report/Create.php:154 +#: src/Module/Moderation/Report/Create.php:169 +#: src/Module/Moderation/Report/Create.php:197 +#: src/Module/Moderation/Report/Create.php:249 +#: src/Module/Profile/Profile.php:262 +#: src/Module/Settings/Profile/Index.php:248 +#: src/Module/Settings/Server/Action.php:65 src/Module/User/Delegation.php:175 +#: src/Object/Post.php:1145 view/theme/duepuntozero/config.php:73 +#: view/theme/frio/config.php:138 view/theme/quattro/config.php:75 +#: view/theme/vier/config.php:123 msgid "Submit" msgstr "Sendi" -#: mod/message.php:223 +#: mod/message.php:210 msgid "No messages." msgstr "Neniom da mesaĝoj." -#: mod/message.php:279 +#: mod/message.php:266 msgid "Message not available." msgstr "Mesaĝo nedisponebla." -#: mod/message.php:323 +#: mod/message.php:310 msgid "Delete message" msgstr "Forviŝu mesaĝon" -#: mod/message.php:325 mod/message.php:456 +#: mod/message.php:312 mod/message.php:441 msgid "D, d M Y - g:i A" msgstr "D, d M Y - g:i A" -#: mod/message.php:340 mod/message.php:453 +#: mod/message.php:327 mod/message.php:438 msgid "Delete conversation" msgstr "Forviŝi dialogon" -#: mod/message.php:342 +#: mod/message.php:329 msgid "" "No secure communications available. You may be able to " "respond from the sender's profile page." msgstr "Sekura komunikado ne disponeblas. Vi eble povus respondi sur la profilpaĝo de la sendanto." -#: mod/message.php:345 +#: mod/message.php:332 msgid "Send Reply" msgstr "Respondi" -#: mod/message.php:427 +#: mod/message.php:412 #, php-format msgid "Unknown sender - %s" msgstr "Nekonata sendanto - %s" -#: mod/message.php:429 +#: mod/message.php:414 #, php-format msgid "You and %s" msgstr "Vi kaj %s" -#: mod/message.php:431 +#: mod/message.php:416 #, php-format msgid "%s and You" msgstr "%s kaj vi" -#: mod/message.php:459 +#: mod/message.php:444 #, php-format msgid "%d message" msgid_plural "%d messages" msgstr[0] "%d mesaĝo" msgstr[1] "%d mesaĝoj" -#: mod/notes.php:52 src/Module/BaseProfile.php:108 +#: mod/notes.php:40 src/Module/BaseProfile.php:94 msgid "Personal Notes" msgstr "Personaj Notoj" -#: mod/notes.php:56 +#: mod/notes.php:44 msgid "Personal notes are visible only by yourself." msgstr "" -#: mod/notes.php:57 src/Content/Text/HTML.php:860 -#: src/Module/Admin/Storage.php:142 src/Module/Filer/SaveTag.php:74 -#: src/Module/Post/Edit.php:129 src/Module/Settings/Channels.php:223 +#: mod/notes.php:45 src/Content/Text/HTML.php:847 +#: src/Module/Admin/Storage.php:128 src/Module/Filer/SaveTag.php:60 +#: src/Module/Post/Edit.php:115 src/Module/Settings/Channels.php:215 msgid "Save" msgstr "Konservi" -#: 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 -#: src/Module/Profile/Common.php:62 src/Module/Profile/Common.php:71 -#: src/Module/Profile/Contacts.php:64 src/Module/Profile/Contacts.php:72 -#: src/Module/Profile/Conversations.php:91 src/Module/Profile/Media.php:56 -#: src/Module/Profile/Photos.php:83 src/Module/Profile/RemoteFollow.php:71 -#: src/Module/Register.php:267 +#: mod/photos.php:54 mod/photos.php:117 mod/photos.php:537 +#: src/Model/Event.php:498 src/Model/Profile.php:213 +#: src/Module/Calendar/Export.php:60 src/Module/Calendar/Show.php:60 +#: src/Module/Feed.php:52 src/Module/HCard.php:37 +#: src/Module/Profile/Common.php:48 src/Module/Profile/Common.php:57 +#: src/Module/Profile/Contacts.php:50 src/Module/Profile/Contacts.php:58 +#: src/Module/Profile/Conversations.php:77 src/Module/Profile/Media.php:42 +#: src/Module/Profile/Photos.php:69 src/Module/Profile/RemoteFollow.php:57 +#: src/Module/Register.php:260 msgid "User not found." msgstr "" -#: mod/photos.php:106 src/Module/BaseProfile.php:68 -#: src/Module/Profile/Photos.php:375 +#: mod/photos.php:91 src/Module/BaseProfile.php:54 +#: src/Module/Profile/Photos.php:361 msgid "Photo Albums" msgstr "Bildalbumoj" -#: mod/photos.php:107 src/Module/Profile/Photos.php:376 -#: src/Module/Profile/Photos.php:396 +#: mod/photos.php:92 src/Module/Profile/Photos.php:362 +#: src/Module/Profile/Photos.php:382 msgid "Recent Photos" msgstr "̂Ĵusaj bildoj" -#: mod/photos.php:109 mod/photos.php:868 src/Module/Profile/Photos.php:378 -#: src/Module/Profile/Photos.php:398 +#: mod/photos.php:94 mod/photos.php:826 src/Module/Profile/Photos.php:364 +#: src/Module/Profile/Photos.php:384 msgid "Upload New Photos" msgstr "Alŝuti novajn bildojn" -#: mod/photos.php:121 src/Module/BaseSettings.php:72 -#: src/Module/Profile/Photos.php:359 +#: mod/photos.php:106 src/Module/BaseSettings.php:58 +#: src/Module/Profile/Photos.php:345 msgid "everybody" msgstr "ĉiuj" -#: mod/photos.php:157 +#: mod/photos.php:142 msgid "Contact information unavailable" msgstr "Kontaktoj informoj ne disponeblas" -#: mod/photos.php:186 +#: mod/photos.php:171 msgid "Album not found." msgstr "Albumo ne trovita." -#: mod/photos.php:242 +#: mod/photos.php:227 msgid "Album successfully deleted" msgstr "" -#: mod/photos.php:244 +#: mod/photos.php:229 msgid "Album was empty." msgstr "" -#: mod/photos.php:275 +#: mod/photos.php:260 msgid "Failed to delete the photo." msgstr "" -#: mod/photos.php:543 +#: mod/photos.php:504 msgid "a photo" msgstr "" -#: mod/photos.php:543 +#: mod/photos.php:504 #, php-format msgid "%1$s was tagged in %2$s by %3$s" msgstr "" -#: 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 +#: mod/photos.php:541 src/Module/Conversation/Community.php:148 +#: src/Module/Directory.php:35 src/Module/Profile/Photos.php:279 +#: src/Module/Search/Index.php:51 msgid "Public access denied." msgstr "Publika atingo ne permesita." -#: mod/photos.php:585 +#: mod/photos.php:546 msgid "No photos selected" msgstr "Neniu bildoj elektita" -#: mod/photos.php:717 +#: mod/photos.php:674 #, php-format msgid "The maximum accepted image size is %s" msgstr "" -#: mod/photos.php:724 +#: mod/photos.php:681 msgid "Upload Photos" msgstr "Alŝuti bildojn" -#: mod/photos.php:728 mod/photos.php:816 +#: mod/photos.php:685 mod/photos.php:774 msgid "New album name: " msgstr "Nomo por nova albumo:" -#: mod/photos.php:729 +#: mod/photos.php:686 msgid "or select existing album:" msgstr "" -#: mod/photos.php:730 +#: mod/photos.php:687 msgid "Do not show a status post for this upload" msgstr "Ne kreu statan afiŝon por tio alŝuto." -#: 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 +#: mod/photos.php:690 mod/photos.php:1051 src/Content/Conversation.php:388 +#: src/Module/Calendar/Event/Form.php:239 src/Module/Post/Edit.php:169 msgid "Permissions" msgstr "Permesoj" -#: mod/photos.php:797 +#: mod/photos.php:755 msgid "Do you really want to delete this photo album and all its photos?" msgstr "" -#: mod/photos.php:798 mod/photos.php:821 +#: mod/photos.php:756 mod/photos.php:779 msgid "Delete Album" msgstr "Forviŝi albumon" -#: 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 -#: src/Module/Media/Photo/Browser.php:88 src/Module/Post/Edit.php:167 -#: src/Module/Post/Tag/Remove.php:109 src/Module/Profile/RemoteFollow.php:134 -#: src/Module/Security/TwoFactor/SignOut.php:125 +#: mod/photos.php:757 mod/photos.php:857 src/Content/Conversation.php:403 +#: src/Module/Contact/Follow.php:154 src/Module/Contact/Revoke.php:92 +#: src/Module/Contact/Unfollow.php:112 +#: src/Module/Media/Attachment/Browser.php:63 +#: src/Module/Media/Photo/Browser.php:74 src/Module/Post/Edit.php:153 +#: src/Module/Post/Tag/Remove.php:95 src/Module/Profile/RemoteFollow.php:120 +#: src/Module/Security/TwoFactor/SignOut.php:111 msgid "Cancel" msgstr "Nuligi" -#: mod/photos.php:825 +#: mod/photos.php:783 msgid "Edit Album" msgstr "Redakti albumon" -#: mod/photos.php:826 +#: mod/photos.php:784 msgid "Drop Album" msgstr "" -#: mod/photos.php:830 +#: mod/photos.php:788 msgid "Show Newest First" msgstr "" -#: mod/photos.php:832 +#: mod/photos.php:790 msgid "Show Oldest First" msgstr "" -#: mod/photos.php:853 src/Module/Profile/Photos.php:346 +#: mod/photos.php:811 src/Module/Profile/Photos.php:332 msgid "View Photo" msgstr "Vidi bildon" -#: mod/photos.php:885 +#: mod/photos.php:843 msgid "Permission denied. Access to this item may be restricted." msgstr "Malpermesita. Atingo al tio elemento eble estas limigita." -#: mod/photos.php:887 +#: mod/photos.php:845 msgid "Photo not available" msgstr "La bildo ne disponeblas" -#: mod/photos.php:897 +#: mod/photos.php:855 msgid "Do you really want to delete this photo?" msgstr "" -#: mod/photos.php:898 mod/photos.php:1098 +#: mod/photos.php:856 mod/photos.php:1056 msgid "Delete Photo" msgstr "Forviŝi bildon" -#: mod/photos.php:996 +#: mod/photos.php:954 msgid "View photo" msgstr "Vidi bildon" -#: mod/photos.php:998 +#: mod/photos.php:956 msgid "Edit photo" msgstr "Redakti bildon" -#: mod/photos.php:999 +#: mod/photos.php:957 msgid "Delete photo" msgstr "" -#: mod/photos.php:1000 +#: mod/photos.php:958 msgid "Use as profile photo" msgstr "Uzi kiel profilbildo" -#: mod/photos.php:1007 +#: mod/photos.php:965 msgid "Private Photo" msgstr "" -#: mod/photos.php:1013 +#: mod/photos.php:971 msgid "View Full Size" msgstr "Vidi plengrande " -#: mod/photos.php:1066 +#: mod/photos.php:1024 msgid "Tags: " msgstr "Markoj:" -#: mod/photos.php:1069 +#: mod/photos.php:1027 msgid "[Select tags to remove]" msgstr "" -#: mod/photos.php:1084 +#: mod/photos.php:1042 msgid "New album name" msgstr "Nova nomo de albumo" -#: mod/photos.php:1085 +#: mod/photos.php:1043 msgid "Caption" msgstr "Apudskribo" -#: mod/photos.php:1086 +#: mod/photos.php:1044 msgid "Add a Tag" msgstr "Aldoni markon" -#: mod/photos.php:1086 +#: mod/photos.php:1044 msgid "" "Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping" msgstr "Ekzemple: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping" -#: mod/photos.php:1087 +#: mod/photos.php:1045 msgid "Do not rotate" msgstr "" -#: mod/photos.php:1088 +#: mod/photos.php:1046 msgid "Rotate CW (right)" msgstr "Turni horloĝdirekte (dekstren)" -#: mod/photos.php:1089 +#: mod/photos.php:1047 msgid "Rotate CCW (left)" msgstr "Turni kontraŭhorloĝdirekte (maldekstren)" -#: 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 +#: mod/photos.php:1093 mod/photos.php:1149 mod/photos.php:1229 +#: src/Module/Contact.php:600 src/Module/Item/Compose.php:181 +#: src/Object/Post.php:1142 msgid "This is you" msgstr "Tiu estas vi" -#: 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 +#: mod/photos.php:1095 mod/photos.php:1151 mod/photos.php:1231 +#: src/Module/Moderation/Reports.php:102 src/Object/Post.php:598 +#: src/Object/Post.php:1144 msgid "Comment" msgstr "Komenti" -#: 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 +#: mod/photos.php:1097 mod/photos.php:1153 mod/photos.php:1233 +#: src/Content/Conversation.php:400 src/Module/Calendar/Event/Form.php:234 +#: src/Module/Item/Compose.php:194 src/Module/Post/Edit.php:151 +#: src/Object/Post.php:1158 msgid "Preview" msgstr "Antaŭrigardi" -#: mod/photos.php:1140 src/Content/Conversation.php:369 -#: src/Module/Post/Edit.php:130 src/Object/Post.php:1155 +#: mod/photos.php:1098 src/Content/Conversation.php:354 +#: src/Module/Post/Edit.php:116 src/Object/Post.php:1146 msgid "Loading..." msgstr "" -#: mod/photos.php:1232 src/Content/Conversation.php:1501 -#: src/Object/Post.php:261 +#: mod/photos.php:1190 src/Content/Conversation.php:1484 +#: src/Object/Post.php:260 msgid "Select" msgstr "Elekti" -#: 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 -#: src/Module/Settings/Connectors.php:244 -#: src/Module/Settings/Server/Index.php:109 +#: mod/photos.php:1191 src/Content/Conversation.php:1485 +#: src/Module/Moderation/Users/Active.php:122 +#: src/Module/Moderation/Users/Blocked.php:122 +#: src/Module/Moderation/Users/Index.php:137 +#: src/Module/Settings/Connectors.php:233 +#: src/Module/Settings/Server/Index.php:95 msgid "Delete" msgstr "Forviŝi" -#: mod/photos.php:1294 src/Object/Post.php:426 +#: mod/photos.php:1252 src/Object/Post.php:426 msgid "Like" msgstr "" -#: mod/photos.php:1295 src/Object/Post.php:426 +#: mod/photos.php:1253 src/Object/Post.php:426 msgid "I like this (toggle)" msgstr "Mi ŝatas tion (ŝalti)" -#: mod/photos.php:1296 src/Object/Post.php:427 +#: mod/photos.php:1254 src/Object/Post.php:427 msgid "Dislike" msgstr "" -#: mod/photos.php:1298 src/Object/Post.php:427 +#: mod/photos.php:1256 src/Object/Post.php:427 msgid "I don't like this (toggle)" msgstr "Mi malŝatas tion(ŝalti)" -#: mod/photos.php:1320 +#: mod/photos.php:1278 msgid "Map" msgstr "" -#: src/App.php:473 +#: src/App.php:432 msgid "No system theme config value set." msgstr "" -#: src/App.php:581 +#: src/App.php:540 msgid "Apologies but the website is unavailable at the moment." msgstr "" -#: src/App/Page.php:249 +#: src/App/Page.php:236 msgid "Delete this item?" msgstr "Forviŝi ĉi tiun elementon?" -#: src/App/Page.php:250 +#: src/App/Page.php:237 msgid "" "Block this author? They won't be able to follow you nor see your public " "posts, and you won't be able to see their posts and their notifications." msgstr "" -#: src/App/Page.php:251 +#: src/App/Page.php:238 msgid "" "Ignore this author? You won't be able to see their posts and their " "notifications." msgstr "" -#: src/App/Page.php:252 +#: src/App/Page.php:239 msgid "Collapse this author's posts?" msgstr "" -#: src/App/Page.php:253 +#: src/App/Page.php:240 msgid "Ignore this author's server?" msgstr "" -#: src/App/Page.php:254 src/Module/Settings/Server/Action.php:61 -#: src/Module/Settings/Server/Index.php:108 +#: src/App/Page.php:241 src/Module/Settings/Server/Action.php:47 +#: src/Module/Settings/Server/Index.php:94 msgid "" "You won't see any content from this server including reshares in your " "Network page, the community pages and individual conversations." msgstr "" -#: src/App/Page.php:256 +#: src/App/Page.php:243 msgid "Like not successful" msgstr "" -#: src/App/Page.php:257 +#: src/App/Page.php:244 msgid "Dislike not successful" msgstr "" -#: src/App/Page.php:258 +#: src/App/Page.php:245 msgid "Sharing not successful" msgstr "" -#: src/App/Page.php:259 +#: src/App/Page.php:246 msgid "Attendance unsuccessful" msgstr "" -#: src/App/Page.php:260 +#: src/App/Page.php:247 msgid "Backend error" msgstr "" -#: src/App/Page.php:261 +#: src/App/Page.php:248 msgid "Network error" msgstr "" -#: src/App/Page.php:264 +#: src/App/Page.php:251 msgid "Drop files here to upload" msgstr "" -#: src/App/Page.php:265 +#: src/App/Page.php:252 msgid "Your browser does not support drag and drop file uploads." msgstr "" -#: src/App/Page.php:266 +#: src/App/Page.php:253 msgid "" "Please use the fallback form below to upload your files like in the olden " "days." msgstr "" -#: src/App/Page.php:267 +#: src/App/Page.php:254 msgid "File is too big ({{filesize}}MiB). Max filesize: {{maxFilesize}}MiB." msgstr "" -#: src/App/Page.php:268 +#: src/App/Page.php:255 msgid "You can't upload files of this type." msgstr "" -#: src/App/Page.php:269 +#: src/App/Page.php:256 msgid "Server responded with {{statusCode}} code." msgstr "" -#: src/App/Page.php:270 +#: src/App/Page.php:257 msgid "Cancel upload" msgstr "" -#: src/App/Page.php:271 +#: src/App/Page.php:258 msgid "Upload canceled." msgstr "" -#: src/App/Page.php:272 +#: src/App/Page.php:259 msgid "Are you sure you want to cancel this upload?" msgstr "" -#: src/App/Page.php:273 +#: src/App/Page.php:260 msgid "Remove file" msgstr "" -#: src/App/Page.php:274 +#: src/App/Page.php:261 msgid "You can't upload any more files." msgstr "" -#: src/App/Page.php:352 +#: src/App/Page.php:339 msgid "toggle mobile" msgstr "" -#: src/App/Router.php:309 +#: src/App/Router.php:295 #, php-format msgid "Method not allowed for this module. Allowed method(s): %s" msgstr "" -#: src/App/Router.php:311 src/Module/HTTPException/PageNotFound.php:49 +#: src/App/Router.php:297 src/Module/HTTPException/PageNotFound.php:35 +#: src/Module/Stats.php:49 msgid "Page not found." msgstr "Paĝo ne trovita" -#: src/App/Router.php:323 +#: src/App/Router.php:309 msgid "You must be logged in to use addons. " msgstr "" -#: src/BaseModule.php:407 +#: src/BaseModule.php:393 msgid "" "The form security token was not correct. This probably happened because the " "form has been opened for too long (>3 hours) before submitting it." msgstr "La sekuriga ĵetono de la formo estis malĝusta. Tio verŝajne okazis ĉar la formo estis malfermita dum tro longa tempo (>3 horoj) antaŭ la sendado." -#: src/BaseModule.php:434 +#: src/BaseModule.php:420 msgid "All contacts" msgstr "" -#: src/BaseModule.php:439 src/Content/Conversation/Factory/Channel.php:46 -#: src/Content/Widget.php:240 src/Core/ACL.php:195 src/Module/Contact.php:414 -#: src/Module/PermissionTooltip.php:141 src/Module/PermissionTooltip.php:163 -#: src/Module/Settings/Channels.php:154 +#: src/BaseModule.php:425 src/Content/Conversation/Factory/Channel.php:32 +#: src/Content/Widget.php:218 src/Core/ACL.php:181 src/Module/Contact.php:395 +#: src/Module/Privacy/PermissionTooltip.php:150 +#: src/Module/Privacy/PermissionTooltip.php:172 +#: src/Module/Settings/Channels.php:146 msgid "Followers" msgstr "" -#: src/BaseModule.php:444 src/Content/Widget.php:241 -#: src/Module/Contact.php:417 src/Module/Settings/Channels.php:153 +#: src/BaseModule.php:430 src/Content/Widget.php:219 +#: src/Module/Contact.php:398 src/Module/Settings/Channels.php:145 msgid "Following" msgstr "" -#: src/BaseModule.php:449 src/Content/Widget.php:242 -#: src/Module/Contact.php:420 +#: src/BaseModule.php:435 src/Content/Widget.php:220 +#: src/Module/Contact.php:401 msgid "Mutual friends" msgstr "" -#: src/BaseModule.php:457 +#: src/BaseModule.php:443 msgid "Common" msgstr "" -#: src/Console/Addon.php:175 src/Console/Addon.php:199 +#: src/Console/Addon.php:161 src/Console/Addon.php:185 msgid "Addon not found" msgstr "" -#: src/Console/Addon.php:179 +#: src/Console/Addon.php:165 msgid "Addon already enabled" msgstr "" -#: src/Console/Addon.php:203 +#: src/Console/Addon.php:189 msgid "Addon already disabled" msgstr "" -#: src/Console/ArchiveContact.php:106 +#: src/Console/ArchiveContact.php:92 #, php-format msgid "Could not find any unarchived contact entry for this URL (%s)" msgstr "" -#: src/Console/ArchiveContact.php:109 +#: src/Console/ArchiveContact.php:95 msgid "The contact entries have been archived" msgstr "" -#: src/Console/GlobalCommunityBlock.php:96 -#: src/Module/Moderation/Blocklist/Contact.php:65 +#: src/Console/ClearAvatarCache.php:73 +msgid "" +"The avatar cache needs to be disabled in local.config.php to use this " +"command." +msgstr "" + +#: src/Console/GlobalCommunityBlock.php:82 +#: src/Module/Moderation/Blocklist/Contact.php:51 #, php-format msgid "Could not find any contact entry for this URL (%s)" msgstr "" -#: src/Console/GlobalCommunityBlock.php:101 -#: src/Module/Moderation/Blocklist/Contact.php:82 +#: src/Console/GlobalCommunityBlock.php:87 +#: src/Module/Moderation/Blocklist/Contact.php:68 msgid "The contact has been blocked from the node" msgstr "" -#: src/Console/MergeContacts.php:75 +#: src/Console/MergeContacts.php:61 #, php-format msgid "%d %s, %d duplicates." msgstr "" -#: src/Console/MergeContacts.php:78 +#: src/Console/MergeContacts.php:64 #, php-format msgid "uri-id is empty for contact %s." msgstr "" -#: src/Console/MergeContacts.php:91 +#: src/Console/MergeContacts.php:77 #, php-format msgid "No valid first contact found for uri-id %d." msgstr "" -#: src/Console/MergeContacts.php:102 +#: src/Console/MergeContacts.php:88 #, php-format msgid "Wrong duplicate found for uri-id %d in %d (url: %s != %s)." msgstr "" -#: src/Console/MergeContacts.php:106 +#: src/Console/MergeContacts.php:92 #, php-format msgid "Wrong duplicate found for uri-id %d in %d (nurl: %s != %s)." msgstr "" -#: src/Console/MergeContacts.php:142 +#: src/Console/MergeContacts.php:128 #, php-format msgid "Deletion of id %d failed" msgstr "" -#: src/Console/MergeContacts.php:144 +#: src/Console/MergeContacts.php:130 #, php-format msgid "Deletion of id %d was successful" msgstr "" -#: src/Console/MergeContacts.php:150 +#: src/Console/MergeContacts.php:136 #, php-format msgid "Updating \"%s\" in \"%s\" from %d to %d" msgstr "" -#: src/Console/MergeContacts.php:152 +#: src/Console/MergeContacts.php:138 msgid " - found" msgstr "" -#: src/Console/MergeContacts.php:159 +#: src/Console/MergeContacts.php:145 msgid " - failed" msgstr "" -#: src/Console/MergeContacts.php:161 +#: src/Console/MergeContacts.php:147 msgid " - success" msgstr "" -#: src/Console/MergeContacts.php:165 +#: src/Console/MergeContacts.php:151 msgid " - deleted" msgstr "" -#: src/Console/MergeContacts.php:168 +#: src/Console/MergeContacts.php:154 msgid " - done" msgstr "" -#: src/Console/MoveToAvatarCache.php:91 +#: src/Console/MoveToAvatarCache.php:77 msgid "The avatar cache needs to be enabled to use this command." msgstr "" -#: src/Console/MoveToAvatarCache.php:109 +#: src/Console/MoveToAvatarCache.php:95 #, php-format msgid "no resource in photo %s" msgstr "" -#: src/Console/MoveToAvatarCache.php:137 +#: src/Console/MoveToAvatarCache.php:123 #, php-format msgid "no photo with id %s" msgstr "" -#: src/Console/MoveToAvatarCache.php:146 +#: src/Console/MoveToAvatarCache.php:132 #, php-format msgid "no image data for photo with id %s" msgstr "" -#: src/Console/MoveToAvatarCache.php:155 +#: src/Console/MoveToAvatarCache.php:141 #, php-format msgid "invalid image for id %s" msgstr "" -#: src/Console/MoveToAvatarCache.php:168 +#: src/Console/MoveToAvatarCache.php:154 #, php-format msgid "Quit on invalid photo %s" msgstr "" -#: src/Console/PostUpdate.php:87 +#: src/Console/PostUpdate.php:73 #, php-format msgid "Post update version number has been set to %s." msgstr "" -#: src/Console/PostUpdate.php:95 +#: src/Console/PostUpdate.php:81 msgid "Check for pending update actions." msgstr "" -#: src/Console/PostUpdate.php:97 +#: src/Console/PostUpdate.php:83 msgid "Done." msgstr "" -#: src/Console/PostUpdate.php:99 +#: src/Console/PostUpdate.php:85 msgid "Execute pending post updates." msgstr "" -#: src/Console/PostUpdate.php:105 +#: src/Console/PostUpdate.php:91 msgid "All pending post updates are done." msgstr "" -#: src/Console/User.php:158 src/Console/User.php:246 +#: src/Console/User.php:144 src/Console/User.php:232 msgid "Enter user nickname: " msgstr "" -#: src/Console/User.php:182 src/Model/User.php:819 -#: src/Module/Api/Twitter/ContactEndpoint.php:74 -#: src/Module/Moderation/Users/Active.php:71 -#: src/Module/Moderation/Users/Blocked.php:71 -#: src/Module/Moderation/Users/Index.php:78 -#: src/Module/Moderation/Users/Pending.php:67 +#: src/Console/User.php:168 src/Model/User.php:831 +#: src/Module/Api/Twitter/ContactEndpoint.php:60 +#: src/Module/Moderation/Users/Active.php:57 +#: src/Module/Moderation/Users/Blocked.php:57 +#: src/Module/Moderation/Users/Index.php:64 +#: src/Module/Moderation/Users/Pending.php:53 msgid "User not found" msgstr "" -#: src/Console/User.php:202 +#: src/Console/User.php:188 msgid "Enter new password: " msgstr "" -#: src/Console/User.php:210 src/Module/Security/PasswordTooLong.php:69 -#: src/Module/Settings/Account.php:75 +#: src/Console/User.php:196 src/Module/Security/PasswordTooLong.php:55 +#: src/Module/Settings/Account.php:61 msgid "Password update failed. Please try again." msgstr "Ĝisdatigo de pasvorto malsukcesis. Bonvolu provi refoje." -#: src/Console/User.php:213 src/Module/Security/PasswordTooLong.php:72 -#: src/Module/Settings/Account.php:78 +#: src/Console/User.php:199 src/Module/Security/PasswordTooLong.php:58 +#: src/Module/Settings/Account.php:64 msgid "Password changed." msgstr "Pasvorto ŝanĝita." -#: src/Console/User.php:238 +#: src/Console/User.php:224 msgid "Enter user name: " msgstr "" -#: src/Console/User.php:254 +#: src/Console/User.php:240 msgid "Enter user email address: " msgstr "" -#: src/Console/User.php:262 +#: src/Console/User.php:248 msgid "Enter a language (optional): " msgstr "" -#: src/Console/User.php:267 +#: src/Console/User.php:253 msgid "Enter URL of an image to use as avatar (optional): " msgstr "" -#: src/Console/User.php:292 +#: src/Console/User.php:278 msgid "User is not pending." msgstr "" -#: src/Console/User.php:324 +#: src/Console/User.php:310 msgid "User has already been marked for deletion." msgstr "" -#: src/Console/User.php:329 +#: src/Console/User.php:315 #, php-format msgid "Type \"yes\" to delete %s" msgstr "" -#: src/Console/User.php:331 +#: src/Console/User.php:317 msgid "Deletion aborted." msgstr "" -#: src/Console/User.php:456 +#: src/Console/User.php:442 msgid "Enter category: " msgstr "" -#: src/Console/User.php:466 +#: src/Console/User.php:452 msgid "Enter key: " msgstr "" -#: src/Console/User.php:500 +#: src/Console/User.php:486 msgid "Enter value: " msgstr "" -#: src/Content/BoundariesPager.php:116 src/Content/Pager.php:171 +#: src/Content/BoundariesPager.php:102 src/Content/Pager.php:157 msgid "newer" msgstr "pli nova" -#: src/Content/BoundariesPager.php:124 src/Content/Pager.php:176 +#: src/Content/BoundariesPager.php:110 src/Content/Pager.php:162 msgid "older" msgstr "pli malnova" -#: src/Content/ContactSelector.php:51 +#: src/Content/ContactSelector.php:37 msgid "Frequently" msgstr "" -#: src/Content/ContactSelector.php:52 +#: src/Content/ContactSelector.php:38 msgid "Hourly" msgstr "" -#: src/Content/ContactSelector.php:53 +#: src/Content/ContactSelector.php:39 msgid "Twice daily" msgstr "" -#: src/Content/ContactSelector.php:54 +#: src/Content/ContactSelector.php:40 msgid "Daily" msgstr "" -#: src/Content/ContactSelector.php:55 +#: src/Content/ContactSelector.php:41 msgid "Weekly" msgstr "" -#: src/Content/ContactSelector.php:56 +#: src/Content/ContactSelector.php:42 msgid "Monthly" msgstr "" -#: src/Content/ContactSelector.php:126 +#: src/Content/ContactSelector.php:112 msgid "DFRN" msgstr "" -#: src/Content/ContactSelector.php:127 +#: src/Content/ContactSelector.php:113 msgid "OStatus" msgstr "" -#: src/Content/ContactSelector.php:128 +#: src/Content/ContactSelector.php:114 msgid "RSS/Atom" msgstr "" -#: src/Content/ContactSelector.php:129 -#: src/Module/Moderation/Users/Active.php:126 -#: src/Module/Moderation/Users/Blocked.php:126 -#: src/Module/Moderation/Users/Create.php:72 -#: src/Module/Moderation/Users/Deleted.php:83 -#: src/Module/Moderation/Users/Index.php:140 -#: src/Module/Moderation/Users/Index.php:160 -#: src/Module/Moderation/Users/Pending.php:99 +#: src/Content/ContactSelector.php:115 +#: src/Module/Moderation/Users/Active.php:112 +#: src/Module/Moderation/Users/Blocked.php:112 +#: src/Module/Moderation/Users/Create.php:58 +#: src/Module/Moderation/Users/Deleted.php:69 +#: src/Module/Moderation/Users/Index.php:126 +#: src/Module/Moderation/Users/Index.php:146 +#: src/Module/Moderation/Users/Pending.php:85 msgid "Email" msgstr "Retpoŝto" -#: src/Content/ContactSelector.php:130 src/Module/Debug/Babel.php:309 +#: src/Content/ContactSelector.php:116 src/Module/Debug/Babel.php:301 msgid "Diaspora" msgstr "Diaspora" -#: src/Content/ContactSelector.php:131 +#: src/Content/ContactSelector.php:117 msgid "Zot!" msgstr "" -#: src/Content/ContactSelector.php:132 +#: src/Content/ContactSelector.php:118 msgid "LinkedIn" msgstr "" -#: src/Content/ContactSelector.php:133 +#: src/Content/ContactSelector.php:119 msgid "XMPP/IM" msgstr "" -#: src/Content/ContactSelector.php:134 +#: src/Content/ContactSelector.php:120 msgid "MySpace" msgstr "" -#: src/Content/ContactSelector.php:135 +#: src/Content/ContactSelector.php:121 msgid "Google+" msgstr "" -#: src/Content/ContactSelector.php:136 +#: src/Content/ContactSelector.php:122 msgid "pump.io" msgstr "" -#: src/Content/ContactSelector.php:137 +#: src/Content/ContactSelector.php:123 msgid "Twitter" msgstr "" -#: src/Content/ContactSelector.php:138 +#: src/Content/ContactSelector.php:124 msgid "Discourse" msgstr "" -#: src/Content/ContactSelector.php:139 +#: src/Content/ContactSelector.php:125 msgid "Diaspora Connector" msgstr "" -#: src/Content/ContactSelector.php:140 +#: src/Content/ContactSelector.php:126 msgid "GNU Social Connector" msgstr "" -#: src/Content/ContactSelector.php:141 +#: src/Content/ContactSelector.php:127 msgid "ActivityPub" msgstr "" -#: src/Content/ContactSelector.php:142 +#: src/Content/ContactSelector.php:128 msgid "pnut" msgstr "" -#: src/Content/ContactSelector.php:143 +#: src/Content/ContactSelector.php:129 msgid "Tumblr" msgstr "" -#: src/Content/ContactSelector.php:144 +#: src/Content/ContactSelector.php:130 msgid "Bluesky" msgstr "" -#: src/Content/ContactSelector.php:180 +#: src/Content/ContactSelector.php:166 #, php-format msgid "%s (via %s)" msgstr "" -#: src/Content/Conversation.php:226 +#: src/Content/Conversation.php:212 msgid "and" msgstr "kaj" -#: src/Content/Conversation.php:229 +#: src/Content/Conversation.php:215 #, php-format msgid "and %d other people" msgstr "" -#: src/Content/Conversation.php:235 +#: src/Content/Conversation.php:221 #, php-format msgid "%2$s likes this." msgid_plural "%2$s like this." msgstr[0] "" msgstr[1] "" -#: src/Content/Conversation.php:237 +#: src/Content/Conversation.php:223 #, php-format msgid "%2$s doesn't like this." msgid_plural "%2$s don't like this." msgstr[0] "" msgstr[1] "" -#: src/Content/Conversation.php:239 +#: src/Content/Conversation.php:225 #, php-format msgid "%2$s attends." msgid_plural "%2$s attend." msgstr[0] "" msgstr[1] "" -#: src/Content/Conversation.php:241 +#: src/Content/Conversation.php:227 #, php-format msgid "%2$s doesn't attend." msgid_plural "%2$s don't attend." msgstr[0] "" msgstr[1] "" -#: src/Content/Conversation.php:243 +#: src/Content/Conversation.php:229 #, php-format msgid "%2$s attends maybe." msgid_plural "%2$s attend maybe." msgstr[0] "" msgstr[1] "" -#: src/Content/Conversation.php:245 +#: src/Content/Conversation.php:231 #, php-format msgid "%2$s reshared this." msgid_plural "%2$s reshared this." msgstr[0] "" msgstr[1] "" -#: src/Content/Conversation.php:276 +#: src/Content/Conversation.php:262 #, php-format msgid " likes this" msgid_plural " like this" msgstr[0] "" msgstr[1] "" -#: src/Content/Conversation.php:279 +#: src/Content/Conversation.php:265 #, php-format msgid " doesn't like this" msgid_plural " don't like this" msgstr[0] "" msgstr[1] "" -#: src/Content/Conversation.php:282 +#: src/Content/Conversation.php:268 #, php-format msgid " attends" msgid_plural " attend" msgstr[0] "" msgstr[1] "" -#: src/Content/Conversation.php:285 +#: src/Content/Conversation.php:271 #, php-format msgid " doesn't attend" msgid_plural " don't attend" msgstr[0] "" msgstr[1] "" -#: src/Content/Conversation.php:288 +#: src/Content/Conversation.php:274 #, php-format msgid " attends maybe" msgid_plural " attend maybe" msgstr[0] "" msgstr[1] "" -#: src/Content/Conversation.php:291 +#: src/Content/Conversation.php:277 #, php-format msgid " reshared this" msgid_plural " reshared this" msgstr[0] "" msgstr[1] "" -#: src/Content/Conversation.php:338 +#: src/Content/Conversation.php:323 msgid "Visible to everybody" msgstr "Videbla al ĉiuj" -#: src/Content/Conversation.php:339 src/Module/Item/Compose.php:200 -#: src/Object/Post.php:1166 +#: src/Content/Conversation.php:324 src/Module/Item/Compose.php:193 +#: src/Object/Post.php:1157 msgid "Please enter a image/video/audio/webpage URL:" msgstr "" -#: src/Content/Conversation.php:340 +#: src/Content/Conversation.php:325 msgid "Tag term:" msgstr "Markfrazo:" -#: src/Content/Conversation.php:341 src/Module/Filer/SaveTag.php:73 +#: src/Content/Conversation.php:326 src/Module/Filer/SaveTag.php:59 msgid "Save to Folder:" msgstr "Konservi en Dosierujo:" -#: src/Content/Conversation.php:342 +#: src/Content/Conversation.php:327 msgid "Where are you right now?" msgstr "Kie vi estas nun?" -#: src/Content/Conversation.php:343 +#: src/Content/Conversation.php:328 msgid "Delete item(s)?" msgstr "" -#: src/Content/Conversation.php:355 src/Module/Item/Compose.php:175 +#: src/Content/Conversation.php:340 src/Module/Item/Compose.php:168 msgid "Created at" msgstr "" -#: src/Content/Conversation.php:365 +#: src/Content/Conversation.php:350 msgid "New Post" msgstr "" -#: src/Content/Conversation.php:368 +#: src/Content/Conversation.php:353 msgid "Share" msgstr "Kunhavigi" -#: src/Content/Conversation.php:371 src/Module/Post/Edit.php:132 +#: src/Content/Conversation.php:356 src/Module/Post/Edit.php:118 msgid "upload photo" msgstr "alŝuti bildon" -#: src/Content/Conversation.php:372 src/Module/Post/Edit.php:133 +#: src/Content/Conversation.php:357 src/Module/Post/Edit.php:119 msgid "Attach file" msgstr "Kunligi dosieron" -#: src/Content/Conversation.php:373 src/Module/Post/Edit.php:134 +#: src/Content/Conversation.php:358 src/Module/Post/Edit.php:120 msgid "attach file" msgstr "kunsendi dosieron" -#: src/Content/Conversation.php:374 src/Module/Item/Compose.php:190 -#: src/Module/Post/Edit.php:171 src/Object/Post.php:1156 +#: src/Content/Conversation.php:359 src/Module/Item/Compose.php:183 +#: src/Module/Post/Edit.php:157 src/Object/Post.php:1147 msgid "Bold" msgstr "Grasa" -#: src/Content/Conversation.php:375 src/Module/Item/Compose.php:191 -#: src/Module/Post/Edit.php:172 src/Object/Post.php:1157 +#: src/Content/Conversation.php:360 src/Module/Item/Compose.php:184 +#: src/Module/Post/Edit.php:158 src/Object/Post.php:1148 msgid "Italic" msgstr "Kursiva" -#: src/Content/Conversation.php:376 src/Module/Item/Compose.php:192 -#: src/Module/Post/Edit.php:173 src/Object/Post.php:1158 +#: src/Content/Conversation.php:361 src/Module/Item/Compose.php:185 +#: src/Module/Post/Edit.php:159 src/Object/Post.php:1149 msgid "Underline" msgstr "Substreki" -#: src/Content/Conversation.php:377 src/Module/Item/Compose.php:193 -#: src/Module/Post/Edit.php:174 src/Object/Post.php:1160 +#: src/Content/Conversation.php:362 src/Module/Item/Compose.php:186 +#: src/Module/Post/Edit.php:160 src/Object/Post.php:1151 msgid "Quote" msgstr "Citaĵo" -#: src/Content/Conversation.php:378 src/Module/Item/Compose.php:194 -#: src/Module/Post/Edit.php:175 src/Object/Post.php:1161 +#: src/Content/Conversation.php:363 src/Module/Item/Compose.php:187 +#: src/Module/Post/Edit.php:161 src/Object/Post.php:1152 msgid "Add emojis" msgstr "" -#: src/Content/Conversation.php:379 src/Module/Item/Compose.php:195 -#: src/Object/Post.php:1159 +#: src/Content/Conversation.php:364 src/Module/Item/Compose.php:188 +#: src/Object/Post.php:1150 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:1162 +#: src/Content/Conversation.php:365 src/Module/Item/Compose.php:189 +#: src/Module/Post/Edit.php:162 src/Object/Post.php:1153 msgid "Code" msgstr "Kodo" -#: src/Content/Conversation.php:381 src/Module/Item/Compose.php:197 -#: src/Object/Post.php:1163 +#: src/Content/Conversation.php:366 src/Module/Item/Compose.php:190 +#: src/Object/Post.php:1154 msgid "Image" msgstr "Bildo" -#: src/Content/Conversation.php:382 src/Module/Item/Compose.php:198 -#: src/Module/Post/Edit.php:177 src/Object/Post.php:1164 +#: src/Content/Conversation.php:367 src/Module/Item/Compose.php:191 +#: src/Module/Post/Edit.php:163 src/Object/Post.php:1155 msgid "Link" msgstr "Ligilo" -#: src/Content/Conversation.php:383 src/Module/Item/Compose.php:199 -#: src/Module/Post/Edit.php:178 src/Object/Post.php:1165 +#: src/Content/Conversation.php:368 src/Module/Item/Compose.php:192 +#: src/Module/Post/Edit.php:164 src/Object/Post.php:1156 msgid "Link or Media" msgstr "" -#: src/Content/Conversation.php:384 +#: src/Content/Conversation.php:369 msgid "Video" msgstr "" -#: src/Content/Conversation.php:385 src/Module/Item/Compose.php:202 -#: src/Module/Post/Edit.php:141 +#: src/Content/Conversation.php:370 src/Module/Item/Compose.php:195 +#: src/Module/Post/Edit.php:127 msgid "Set your location" msgstr "Agordi vian lokon" -#: src/Content/Conversation.php:386 src/Module/Post/Edit.php:142 +#: src/Content/Conversation.php:371 src/Module/Post/Edit.php:128 msgid "set location" msgstr "agordi lokon" -#: src/Content/Conversation.php:387 src/Module/Post/Edit.php:143 +#: src/Content/Conversation.php:372 src/Module/Post/Edit.php:129 msgid "Clear browser location" msgstr "Forviŝu retesplorilan lokon" -#: src/Content/Conversation.php:388 src/Module/Post/Edit.php:144 +#: src/Content/Conversation.php:373 src/Module/Post/Edit.php:130 msgid "clear location" msgstr "forviŝi lokon" -#: src/Content/Conversation.php:390 src/Module/Item/Compose.php:207 -#: src/Module/Post/Edit.php:157 +#: src/Content/Conversation.php:375 src/Module/Item/Compose.php:200 +#: src/Module/Post/Edit.php:143 msgid "Set title" msgstr "Redakti titolon" -#: src/Content/Conversation.php:392 src/Module/Item/Compose.php:208 -#: src/Module/Post/Edit.php:159 +#: src/Content/Conversation.php:377 src/Module/Item/Compose.php:201 +#: src/Module/Post/Edit.php:145 msgid "Categories (comma-separated list)" msgstr "Kategorioj (disigita per komo)" -#: src/Content/Conversation.php:397 src/Module/Item/Compose.php:224 +#: src/Content/Conversation.php:382 src/Module/Item/Compose.php:217 msgid "Scheduled at" msgstr "" -#: src/Content/Conversation.php:402 src/Module/Post/Edit.php:146 +#: src/Content/Conversation.php:387 src/Module/Post/Edit.php:132 msgid "Permission settings" msgstr "Permesagordoj" -#: src/Content/Conversation.php:412 src/Module/Post/Edit.php:155 +#: src/Content/Conversation.php:396 src/Module/Post/Edit.php:141 msgid "Public post" msgstr "Publika afiŝo" -#: src/Content/Conversation.php:426 src/Content/Widget/VCard.php:130 -#: src/Model/Profile.php:483 src/Module/Admin/Logs/View.php:92 -#: src/Module/Post/Edit.php:181 +#: src/Content/Conversation.php:410 src/Content/Widget/VCard.php:117 +#: src/Model/Profile.php:462 src/Module/Admin/Logs/View.php:80 +#: src/Module/Post/Edit.php:167 msgid "Message" msgstr "Mesaĝo" -#: src/Content/Conversation.php:427 src/Module/Post/Edit.php:182 -#: src/Module/Settings/TwoFactor/Trusted.php:143 +#: src/Content/Conversation.php:411 src/Module/Post/Edit.php:168 +#: src/Module/Settings/TwoFactor/Trusted.php:129 msgid "Browser" msgstr "" -#: src/Content/Conversation.php:429 src/Module/Post/Edit.php:185 +#: src/Content/Conversation.php:413 src/Module/Post/Edit.php:171 msgid "Open Compose page" msgstr "" -#: src/Content/Conversation.php:597 +#: src/Content/Conversation.php:580 msgid "remove" msgstr "forviŝi" -#: src/Content/Conversation.php:601 +#: src/Content/Conversation.php:584 msgid "Delete Selected Items" msgstr "Forviŝi Elektitajn Elementojn" -#: 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 +#: src/Content/Conversation.php:712 src/Content/Conversation.php:715 +#: src/Content/Conversation.php:718 src/Content/Conversation.php:721 +#: src/Content/Conversation.php:724 #, php-format msgid "You had been addressed (%s)." msgstr "" -#: src/Content/Conversation.php:744 +#: src/Content/Conversation.php:727 #, php-format msgid "You are following %s." msgstr "" -#: src/Content/Conversation.php:749 +#: src/Content/Conversation.php:732 #, php-format msgid "You subscribed to %s." msgstr "" -#: src/Content/Conversation.php:751 +#: src/Content/Conversation.php:734 msgid "You subscribed to one or more tags in this post." msgstr "" -#: src/Content/Conversation.php:771 +#: src/Content/Conversation.php:754 #, php-format msgid "%s reshared this." msgstr "" -#: src/Content/Conversation.php:773 +#: src/Content/Conversation.php:756 msgid "Reshared" msgstr "" -#: src/Content/Conversation.php:773 +#: src/Content/Conversation.php:756 #, php-format msgid "Reshared by %s <%s>" msgstr "" -#: src/Content/Conversation.php:776 +#: src/Content/Conversation.php:759 #, php-format msgid "%s is participating in this thread." msgstr "" -#: src/Content/Conversation.php:779 +#: src/Content/Conversation.php:762 msgid "Stored for general reasons" msgstr "" -#: src/Content/Conversation.php:782 +#: src/Content/Conversation.php:765 msgid "Global post" msgstr "" -#: src/Content/Conversation.php:785 +#: src/Content/Conversation.php:768 msgid "Sent via an relay server" msgstr "" -#: src/Content/Conversation.php:785 +#: src/Content/Conversation.php:768 #, php-format msgid "Sent via the relay server %s <%s>" msgstr "" -#: src/Content/Conversation.php:788 +#: src/Content/Conversation.php:771 msgid "Fetched" msgstr "" -#: src/Content/Conversation.php:788 +#: src/Content/Conversation.php:771 #, php-format msgid "Fetched because of %s <%s>" msgstr "" -#: src/Content/Conversation.php:791 +#: src/Content/Conversation.php:774 msgid "Stored because of a child post to complete this thread." msgstr "" -#: src/Content/Conversation.php:794 +#: src/Content/Conversation.php:777 msgid "Local delivery" msgstr "" -#: src/Content/Conversation.php:797 +#: src/Content/Conversation.php:780 msgid "Stored because of your activity (like, comment, star, ...)" msgstr "" -#: src/Content/Conversation.php:800 +#: src/Content/Conversation.php:783 msgid "Distributed" msgstr "" -#: src/Content/Conversation.php:803 +#: src/Content/Conversation.php:786 msgid "Pushed to us" msgstr "" -#: src/Content/Conversation.php:1529 src/Object/Post.php:248 +#: src/Content/Conversation.php:1504 src/Object/Post.php:247 msgid "Pinned item" msgstr "" -#: src/Content/Conversation.php:1546 src/Object/Post.php:548 -#: src/Object/Post.php:549 +#: src/Content/Conversation.php:1521 src/Object/Post.php:541 +#: src/Object/Post.php:542 #, php-format msgid "View %s's profile @ %s" msgstr "Vidi la profilon de %s ĉe %s" -#: src/Content/Conversation.php:1559 src/Object/Post.php:536 +#: src/Content/Conversation.php:1535 src/Object/Post.php:529 msgid "Categories:" msgstr "" -#: src/Content/Conversation.php:1560 src/Object/Post.php:537 +#: src/Content/Conversation.php:1536 src/Object/Post.php:530 msgid "Filed under:" msgstr "" -#: src/Content/Conversation.php:1568 src/Object/Post.php:562 +#: src/Content/Conversation.php:1544 src/Object/Post.php:556 #, php-format msgid "%s from %s" msgstr "%s de %s" -#: src/Content/Conversation.php:1584 +#: src/Content/Conversation.php:1560 msgid "View in context" msgstr "Vidi kun kunteksto" -#: src/Content/Conversation/Factory/Channel.php:42 +#: src/Content/Conversation/Factory/Channel.php:28 msgid "For you" msgstr "" -#: src/Content/Conversation/Factory/Channel.php:42 +#: src/Content/Conversation/Factory/Channel.php:28 msgid "Posts from contacts you interact with and who interact with you" msgstr "" -#: src/Content/Conversation/Factory/Channel.php:43 +#: src/Content/Conversation/Factory/Channel.php:29 msgid "Discover" msgstr "" -#: src/Content/Conversation/Factory/Channel.php:43 +#: src/Content/Conversation/Factory/Channel.php:29 msgid "Posts from accounts that you don't follow, but that you might like." msgstr "" -#: src/Content/Conversation/Factory/Channel.php:44 +#: src/Content/Conversation/Factory/Channel.php:30 msgid "What's Hot" msgstr "" -#: src/Content/Conversation/Factory/Channel.php:44 +#: src/Content/Conversation/Factory/Channel.php:30 msgid "Posts with a lot of interactions" msgstr "" -#: src/Content/Conversation/Factory/Channel.php:45 +#: src/Content/Conversation/Factory/Channel.php:31 #, php-format msgid "Posts in %s" msgstr "" -#: src/Content/Conversation/Factory/Channel.php:46 +#: src/Content/Conversation/Factory/Channel.php:32 msgid "Posts from your followers that you don't follow" msgstr "" -#: src/Content/Conversation/Factory/Channel.php:47 +#: src/Content/Conversation/Factory/Channel.php:33 msgid "Sharers of sharers" msgstr "" -#: src/Content/Conversation/Factory/Channel.php:47 +#: src/Content/Conversation/Factory/Channel.php:33 msgid "Posts from accounts that are followed by accounts that you follow" msgstr "" -#: src/Content/Conversation/Factory/Channel.php:48 +#: src/Content/Conversation/Factory/Channel.php:34 msgid "Quiet sharers" msgstr "" -#: src/Content/Conversation/Factory/Channel.php:48 +#: src/Content/Conversation/Factory/Channel.php:34 msgid "Posts from accounts that you follow but who don't post very often" msgstr "" -#: src/Content/Conversation/Factory/Channel.php:49 -#: src/Module/Settings/Channels.php:193 src/Module/Settings/Channels.php:214 +#: src/Content/Conversation/Factory/Channel.php:35 +#: src/Module/Settings/Channels.php:185 src/Module/Settings/Channels.php:206 msgid "Images" msgstr "" -#: src/Content/Conversation/Factory/Channel.php:49 +#: src/Content/Conversation/Factory/Channel.php:35 msgid "Posts with images" msgstr "" -#: src/Content/Conversation/Factory/Channel.php:50 -#: src/Module/Settings/Channels.php:195 src/Module/Settings/Channels.php:216 +#: src/Content/Conversation/Factory/Channel.php:36 +#: src/Module/Settings/Channels.php:187 src/Module/Settings/Channels.php:208 msgid "Audio" msgstr "" -#: src/Content/Conversation/Factory/Channel.php:50 +#: src/Content/Conversation/Factory/Channel.php:36 msgid "Posts with audio" msgstr "" -#: src/Content/Conversation/Factory/Channel.php:51 -#: src/Module/Settings/Channels.php:194 src/Module/Settings/Channels.php:215 +#: src/Content/Conversation/Factory/Channel.php:37 +#: src/Module/Settings/Channels.php:186 src/Module/Settings/Channels.php:207 msgid "Videos" msgstr "" -#: src/Content/Conversation/Factory/Channel.php:51 +#: src/Content/Conversation/Factory/Channel.php:37 msgid "Posts with videos" msgstr "" -#: src/Content/Conversation/Factory/Community.php:43 +#: src/Content/Conversation/Factory/Community.php:29 msgid "Local Community" msgstr "" -#: src/Content/Conversation/Factory/Community.php:43 +#: src/Content/Conversation/Factory/Community.php:29 msgid "Posts from local users on this server" msgstr "" -#: src/Content/Conversation/Factory/Community.php:47 -#: src/Module/Settings/Channels.php:144 src/Module/Settings/Channels.php:149 +#: src/Content/Conversation/Factory/Community.php:33 +#: src/Module/Settings/Channels.php:136 src/Module/Settings/Channels.php:141 msgid "Global Community" msgstr "" -#: src/Content/Conversation/Factory/Community.php:47 +#: src/Content/Conversation/Factory/Community.php:33 msgid "Posts from users of the whole federated network" msgstr "" -#: src/Content/Conversation/Factory/Network.php:38 -#: src/Module/Settings/Channels.php:150 +#: src/Content/Conversation/Factory/Network.php:24 +#: src/Module/Settings/Channels.php:142 msgid "Latest Activity" msgstr "" -#: src/Content/Conversation/Factory/Network.php:38 +#: src/Content/Conversation/Factory/Network.php:24 msgid "Sort by latest activity" msgstr "" -#: src/Content/Conversation/Factory/Network.php:39 -#: src/Module/Settings/Channels.php:151 +#: src/Content/Conversation/Factory/Network.php:25 +#: src/Module/Settings/Channels.php:143 msgid "Latest Posts" msgstr "" -#: src/Content/Conversation/Factory/Network.php:39 +#: src/Content/Conversation/Factory/Network.php:25 msgid "Sort by post received date" msgstr "" -#: src/Content/Conversation/Factory/Network.php:40 -#: src/Module/Settings/Channels.php:152 +#: src/Content/Conversation/Factory/Network.php:26 +#: src/Module/Settings/Channels.php:144 msgid "Latest Creation" msgstr "" -#: src/Content/Conversation/Factory/Network.php:40 +#: src/Content/Conversation/Factory/Network.php:26 msgid "Sort by post creation date" msgstr "" -#: src/Content/Conversation/Factory/Network.php:41 -#: src/Module/Settings/Profile/Index.php:260 +#: src/Content/Conversation/Factory/Network.php:27 +#: src/Module/Settings/Profile/Index.php:251 msgid "Personal" msgstr "Propra" -#: src/Content/Conversation/Factory/Network.php:41 +#: src/Content/Conversation/Factory/Network.php:27 msgid "Posts that mention or involve you" msgstr "Afiŝoj menciantaj vin aŭ pri vi" -#: src/Content/Conversation/Factory/Network.php:42 src/Object/Post.php:398 +#: src/Content/Conversation/Factory/Network.php:28 src/Object/Post.php:397 msgid "Starred" msgstr "Steligita" -#: src/Content/Conversation/Factory/Network.php:42 +#: src/Content/Conversation/Factory/Network.php:28 msgid "Favourite Posts" msgstr "Favorigitaj Afiŝoj" -#: src/Content/Feature.php:96 +#: src/Content/Feature.php:93 msgid "General Features" msgstr "" -#: src/Content/Feature.php:98 +#: src/Content/Feature.php:95 msgid "Photo Location" msgstr "" -#: src/Content/Feature.php:98 +#: src/Content/Feature.php:95 msgid "" "Photo metadata is normally stripped. This extracts the location (if present)" " prior to stripping metadata and links it to a map." msgstr "" -#: src/Content/Feature.php:99 -msgid "Trending Tags" +#: src/Content/Feature.php:96 +msgid "Display the community in the navigation" msgstr "" -#: src/Content/Feature.php:99 +#: src/Content/Feature.php:96 msgid "" -"Show a community page widget with a list of the most popular tags in recent " -"public posts." +"If enabled, the community can be accessed via the navigation menu. " +"Independent from this setting, the community timelines can always be " +"accessed via the channels." msgstr "" -#: src/Content/Feature.php:104 +#: src/Content/Feature.php:101 msgid "Post Composition Features" msgstr "" -#: src/Content/Feature.php:105 -msgid "Auto-mention Groups" -msgstr "" - -#: src/Content/Feature.php:105 -msgid "" -"Add/remove mention when a group page is selected/deselected in ACL window." -msgstr "" - -#: src/Content/Feature.php:106 +#: src/Content/Feature.php:102 msgid "Explicit Mentions" msgstr "" -#: src/Content/Feature.php:106 +#: src/Content/Feature.php:102 msgid "" "Add explicit mentions to comment box for manual control over who gets " "mentioned in replies." msgstr "" -#: src/Content/Feature.php:107 +#: src/Content/Feature.php:103 msgid "Add an abstract from ActivityPub content warnings" msgstr "" -#: src/Content/Feature.php:107 +#: src/Content/Feature.php:103 msgid "" "Add an abstract when commenting on ActivityPub posts with a content warning." " Abstracts are displayed as content warning on systems like Mastodon or " "Pleroma." msgstr "" -#: src/Content/Feature.php:112 +#: src/Content/Feature.php:108 msgid "Post/Comment Tools" msgstr "" -#: src/Content/Feature.php:113 +#: src/Content/Feature.php:109 msgid "Post Categories" msgstr "" -#: src/Content/Feature.php:113 +#: src/Content/Feature.php:109 msgid "Add categories to your posts" msgstr "" +#: src/Content/Feature.php:114 +msgid "Network Widgets" +msgstr "" + +#: src/Content/Feature.php:115 src/Content/Widget.php:194 +#: src/Model/Circle.php:587 src/Module/Contact.php:381 +#: src/Module/Welcome.php:62 +msgid "Circles" +msgstr "" + +#: src/Content/Feature.php:115 +msgid "" +"Display posts that have been created by accounts of the selected circle." +msgstr "" + +#: src/Content/Feature.php:116 src/Content/GroupManager.php:133 +#: src/Content/Nav.php:264 src/Content/Text/HTML.php:868 +#: src/Content/Widget.php:516 src/Model/User.php:1390 +msgid "Groups" +msgstr "" + +#: src/Content/Feature.php:116 +msgid "Display posts that have been distributed by the selected group." +msgstr "" + +#: src/Content/Feature.php:117 src/Content/Widget.php:485 +msgid "Archives" +msgstr "Arkivoj" + +#: src/Content/Feature.php:117 +msgid "Display an archive where posts can be selected by month and year." +msgstr "" + +#: src/Content/Feature.php:118 src/Content/Widget.php:267 +msgid "Protocols" +msgstr "" + #: src/Content/Feature.php:118 +msgid "Display posts with the selected protocols." +msgstr "" + +#: src/Content/Feature.php:119 src/Content/Widget.php:522 +#: src/Module/Settings/Account.php:433 +msgid "Account Types" +msgstr "" + +#: src/Content/Feature.php:119 +msgid "Display posts done by accounts with the selected account type." +msgstr "" + +#: src/Content/Feature.php:120 src/Content/Widget.php:571 +#: src/Module/Admin/Site.php:464 src/Module/BaseSettings.php:111 +#: src/Module/Settings/Channels.php:211 src/Module/Settings/Display.php:301 +msgid "Channels" +msgstr "" + +#: src/Content/Feature.php:120 +msgid "Display posts in the system channels and user defined channels." +msgstr "" + +#: src/Content/Feature.php:121 src/Content/Widget/SavedSearches.php:46 +msgid "Saved Searches" +msgstr "Konservitaj Serĉadoj" + +#: src/Content/Feature.php:121 +msgid "Display posts that contain subscribed hashtags." +msgstr "" + +#: src/Content/Feature.php:122 src/Content/Widget.php:297 +msgid "Saved Folders" +msgstr "Konservitaj Dosierujoj" + +#: src/Content/Feature.php:122 +msgid "Display a list of folders in which posts are stored." +msgstr "" + +#: src/Content/Feature.php:123 src/Module/Conversation/Timeline.php:186 +msgid "Own Contacts" +msgstr "" + +#: src/Content/Feature.php:123 +msgid "" +"Include or exclude posts from subscribed accounts. This widget is not " +"visible on all channels." +msgstr "" + +#: src/Content/Feature.php:124 +msgid "Trending Tags" +msgstr "" + +#: src/Content/Feature.php:124 +msgid "Display a list of the most popular tags in recent public posts." +msgstr "" + +#: src/Content/Feature.php:129 msgid "Advanced Profile Settings" msgstr "" -#: src/Content/Feature.php:119 -msgid "List Groups" -msgstr "" - -#: src/Content/Feature.php:119 -msgid "Show visitors public groups at the Advanced Profile Page" -msgstr "" - -#: src/Content/Feature.php:120 +#: src/Content/Feature.php:130 msgid "Tag Cloud" msgstr "" -#: src/Content/Feature.php:120 +#: src/Content/Feature.php:130 msgid "Provide a personal tag cloud on your profile page" msgstr "" -#: src/Content/Feature.php:121 +#: src/Content/Feature.php:131 msgid "Display Membership Date" msgstr "" -#: src/Content/Feature.php:121 +#: src/Content/Feature.php:131 msgid "Display membership date in profile" msgstr "" -#: src/Content/Feature.php:126 +#: src/Content/Feature.php:136 msgid "Advanced Calendar Settings" msgstr "" -#: src/Content/Feature.php:127 +#: src/Content/Feature.php:137 msgid "Allow anonymous access to your calendar" msgstr "" -#: src/Content/Feature.php:127 +#: src/Content/Feature.php:137 msgid "" "Allows anonymous visitors to consult your calendar and your public events. " "Contact birthday events are private to you." msgstr "" -#: src/Content/GroupManager.php:147 src/Content/Nav.php:278 -#: src/Content/Text/HTML.php:881 src/Content/Widget.php:538 -#: src/Model/User.php:1381 -msgid "Groups" -msgstr "" - -#: src/Content/GroupManager.php:149 +#: src/Content/GroupManager.php:135 msgid "External link to group" msgstr "" -#: src/Content/GroupManager.php:153 src/Content/Widget.php:513 +#: src/Content/GroupManager.php:139 src/Content/Widget.php:491 msgid "show less" msgstr "" -#: src/Content/GroupManager.php:154 src/Content/Widget.php:411 -#: src/Content/Widget.php:514 +#: src/Content/GroupManager.php:140 src/Content/Widget.php:389 +#: src/Content/Widget.php:492 msgid "show more" msgstr "montri pli" -#: src/Content/GroupManager.php:155 +#: src/Content/GroupManager.php:141 msgid "Create new group" msgstr "" -#: src/Content/Item.php:332 src/Model/Item.php:3254 +#: src/Content/Item.php:317 src/Model/Item.php:3272 msgid "event" msgstr "okazo" -#: src/Content/Item.php:335 src/Content/Item.php:345 +#: src/Content/Item.php:320 src/Content/Item.php:330 msgid "status" msgstr "staton" -#: src/Content/Item.php:341 src/Model/Item.php:3256 -#: src/Module/Post/Tag/Add.php:123 +#: src/Content/Item.php:326 src/Model/Item.php:3274 +#: src/Module/Post/Tag/Add.php:109 msgid "photo" msgstr "bildo" -#: src/Content/Item.php:355 src/Module/Post/Tag/Add.php:141 +#: src/Content/Item.php:340 src/Module/Post/Tag/Add.php:127 #, php-format msgid "%1$s tagged %2$s's %3$s with %4$s" msgstr "%1$s markis la %3$s de %2$s kun %4$s" -#: src/Content/Item.php:429 view/theme/frio/theme.php:265 +#: src/Content/Item.php:414 view/theme/frio/theme.php:253 msgid "Follow Thread" msgstr "" -#: src/Content/Item.php:430 src/Model/Contact.php:1243 +#: src/Content/Item.php:415 src/Model/Contact.php:1249 msgid "View Status" msgstr "Vidi Staton" -#: src/Content/Item.php:431 src/Content/Item.php:452 -#: 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 +#: src/Content/Item.php:416 src/Content/Item.php:439 +#: src/Model/Contact.php:1184 src/Model/Contact.php:1240 +#: src/Model/Contact.php:1250 src/Module/Directory.php:144 +#: src/Module/Settings/Profile/Index.php:250 msgid "View Profile" msgstr "Vidi Profilon" -#: src/Content/Item.php:432 src/Model/Contact.php:1245 +#: src/Content/Item.php:417 src/Model/Contact.php:1251 msgid "View Photos" msgstr "Vidi Bildojn" -#: src/Content/Item.php:433 src/Model/Contact.php:1212 -#: src/Model/Profile.php:468 +#: src/Content/Item.php:418 src/Model/Contact.php:1218 +#: src/Model/Profile.php:447 msgid "Network Posts" msgstr "Enretaj Afiŝoj" -#: src/Content/Item.php:434 src/Model/Contact.php:1236 -#: src/Model/Contact.php:1247 +#: src/Content/Item.php:419 src/Model/Contact.php:1242 +#: src/Model/Contact.php:1253 msgid "View Contact" msgstr "" -#: src/Content/Item.php:435 src/Model/Contact.php:1248 +#: src/Content/Item.php:420 src/Model/Contact.php:1254 msgid "Send PM" msgstr "Sendi PM" -#: src/Content/Item.php:436 src/Module/Contact.php:467 -#: src/Module/Contact/Profile.php:511 -#: src/Module/Moderation/Blocklist/Contact.php:116 -#: src/Module/Moderation/Users/Active.php:137 -#: src/Module/Moderation/Users/Index.php:152 +#: src/Content/Item.php:421 src/Module/Contact.php:449 +#: src/Module/Contact/Profile.php:518 +#: src/Module/Moderation/Blocklist/Contact.php:102 +#: src/Module/Moderation/Users/Active.php:123 +#: src/Module/Moderation/Users/Index.php:138 msgid "Block" msgstr "Bloki" -#: src/Content/Item.php:437 src/Module/Contact.php:468 -#: src/Module/Contact/Profile.php:519 -#: src/Module/Notifications/Introductions.php:134 -#: src/Module/Notifications/Introductions.php:206 -#: src/Module/Notifications/Notification.php:89 +#: src/Content/Item.php:422 src/Module/Contact.php:450 +#: src/Module/Contact/Profile.php:526 +#: src/Module/Notifications/Introductions.php:126 +#: src/Module/Notifications/Introductions.php:198 +#: src/Module/Notifications/Notification.php:75 msgid "Ignore" msgstr "Ignori" -#: src/Content/Item.php:438 src/Module/Contact.php:469 -#: src/Module/Contact/Profile.php:527 +#: src/Content/Item.php:423 src/Module/Contact.php:451 +#: src/Module/Contact/Profile.php:534 msgid "Collapse" msgstr "" -#: src/Content/Item.php:439 src/Object/Post.php:289 +#: src/Content/Item.php:424 src/Object/Post.php:288 #, php-format msgid "Ignore %s server" msgstr "" -#: src/Content/Item.php:443 src/Module/Settings/Channels.php:196 -#: src/Module/Settings/Channels.php:217 src/Object/Post.php:509 +#: src/Content/Item.php:428 src/Module/Settings/Channels.php:188 +#: src/Module/Settings/Channels.php:209 src/Object/Post.php:502 msgid "Languages" msgstr "" -#: src/Content/Item.php:449 src/Content/Widget.php:80 -#: src/Model/Contact.php:1237 src/Model/Contact.php:1249 -#: src/Module/Contact/Follow.php:167 view/theme/vier/theme.php:195 +#: src/Content/Item.php:431 src/Object/Post.php:582 +msgid "Search Text" +msgstr "" + +#: src/Content/Item.php:436 src/Content/Widget.php:66 +#: src/Model/Contact.php:1243 src/Model/Contact.php:1255 +#: src/Module/Contact/Follow.php:148 view/theme/vier/theme.php:183 msgid "Connect/Follow" msgstr "Konekti/Aboni" -#: src/Content/Item.php:883 +#: src/Content/Item.php:870 msgid "Unable to fetch user." msgstr "" -#: src/Content/Nav.php:121 +#: src/Content/Nav.php:107 msgid "Nothing new here" msgstr "Estas neniu nova ĉi tie" -#: src/Content/Nav.php:125 src/Module/Special/HTTPException.php:77 +#: src/Content/Nav.php:111 src/Module/Special/HTTPException.php:63 msgid "Go back" msgstr "" -#: src/Content/Nav.php:126 +#: src/Content/Nav.php:112 msgid "Clear notifications" msgstr "Forigi atentigojn" -#: src/Content/Nav.php:127 src/Content/Text/HTML.php:868 +#: src/Content/Nav.php:113 src/Content/Text/HTML.php:855 msgid "@name, !group, #tags, content" msgstr "" -#: src/Content/Nav.php:222 src/Module/Security/Login.php:157 +#: src/Content/Nav.php:208 src/Module/Security/Login.php:147 msgid "Logout" msgstr "Elsaluti" -#: src/Content/Nav.php:222 +#: src/Content/Nav.php:208 msgid "End this session" msgstr "Fini ĉi-tiun seancon" -#: src/Content/Nav.php:224 src/Module/Bookmarklet.php:44 -#: src/Module/Security/Login.php:158 +#: src/Content/Nav.php:210 src/Module/Bookmarklet.php:30 +#: src/Module/Security/Login.php:148 msgid "Login" msgstr "Ensaluti" -#: src/Content/Nav.php:224 +#: src/Content/Nav.php:210 msgid "Sign in" msgstr "Ensaluti" -#: src/Content/Nav.php:229 src/Module/BaseProfile.php:57 -#: src/Module/Contact.php:511 +#: src/Content/Nav.php:215 src/Module/BaseProfile.php:43 +#: src/Module/Contact.php:493 msgid "Conversations" msgstr "" -#: src/Content/Nav.php:229 +#: src/Content/Nav.php:215 msgid "Conversations you started" msgstr "" -#: src/Content/Nav.php:230 src/Module/BaseProfile.php:49 -#: src/Module/BaseSettings.php:98 src/Module/Contact.php:503 -#: src/Module/Contact/Profile.php:419 src/Module/Profile/Profile.php:268 -#: src/Module/Welcome.php:57 view/theme/frio/theme.php:233 +#: src/Content/Nav.php:216 src/Module/BaseProfile.php:35 +#: src/Module/BaseSettings.php:84 src/Module/Contact.php:485 +#: src/Module/Contact/Profile.php:425 src/Module/Profile/Profile.php:256 +#: src/Module/Welcome.php:43 view/theme/frio/theme.php:221 msgid "Profile" msgstr "Profilo" -#: src/Content/Nav.php:230 view/theme/frio/theme.php:233 +#: src/Content/Nav.php:216 view/theme/frio/theme.php:221 msgid "Your profile page" msgstr "Via profilo" -#: src/Content/Nav.php:231 src/Module/BaseProfile.php:65 -#: src/Module/Media/Photo/Browser.php:74 view/theme/frio/theme.php:237 +#: src/Content/Nav.php:217 src/Module/BaseProfile.php:51 +#: src/Module/Media/Photo/Browser.php:60 view/theme/frio/theme.php:225 msgid "Photos" msgstr "Bildoj" -#: src/Content/Nav.php:231 view/theme/frio/theme.php:237 +#: src/Content/Nav.php:217 view/theme/frio/theme.php:225 msgid "Your photos" msgstr "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:238 +#: src/Content/Nav.php:218 src/Module/BaseProfile.php:59 +#: src/Module/BaseProfile.php:62 src/Module/Contact.php:509 +#: view/theme/frio/theme.php:226 msgid "Media" msgstr "" -#: src/Content/Nav.php:232 view/theme/frio/theme.php:238 +#: src/Content/Nav.php:218 view/theme/frio/theme.php:226 msgid "Your postings with media" msgstr "" -#: src/Content/Nav.php:233 src/Content/Nav.php:293 -#: src/Module/BaseProfile.php:85 src/Module/BaseProfile.php:88 -#: src/Module/BaseProfile.php:96 src/Module/BaseProfile.php:99 -#: src/Module/Settings/Display.php:319 view/theme/frio/theme.php:239 -#: view/theme/frio/theme.php:243 +#: src/Content/Nav.php:219 src/Content/Nav.php:279 +#: src/Module/BaseProfile.php:71 src/Module/BaseProfile.php:74 +#: src/Module/BaseProfile.php:82 src/Module/BaseProfile.php:85 +#: src/Module/Settings/Display.php:302 view/theme/frio/theme.php:227 +#: view/theme/frio/theme.php:231 msgid "Calendar" msgstr "" -#: src/Content/Nav.php:233 view/theme/frio/theme.php:239 +#: src/Content/Nav.php:219 view/theme/frio/theme.php:227 msgid "Your calendar" msgstr "" -#: src/Content/Nav.php:234 +#: src/Content/Nav.php:220 msgid "Personal notes" msgstr "Personaj notoj" -#: src/Content/Nav.php:234 +#: src/Content/Nav.php:220 msgid "Your personal notes" msgstr "Viaj propraj notoj" -#: src/Content/Nav.php:251 src/Content/Nav.php:308 +#: src/Content/Nav.php:237 src/Content/Nav.php:294 msgid "Home" msgstr "Hejmo" -#: src/Content/Nav.php:251 src/Module/Settings/OAuth.php:73 +#: src/Content/Nav.php:237 src/Module/Settings/OAuth.php:59 msgid "Home Page" msgstr "Hejmpaĝo" -#: src/Content/Nav.php:255 src/Module/Register.php:168 -#: src/Module/Security/Login.php:124 +#: src/Content/Nav.php:241 src/Module/Register.php:161 +#: src/Module/Security/Login.php:114 msgid "Register" msgstr "Registri" -#: src/Content/Nav.php:255 +#: src/Content/Nav.php:241 msgid "Create an account" msgstr "Krei konton" -#: src/Content/Nav.php:261 src/Module/Help.php:67 -#: src/Module/Settings/TwoFactor/AppSpecific.php:132 -#: src/Module/Settings/TwoFactor/Index.php:139 -#: src/Module/Settings/TwoFactor/Recovery.php:110 -#: src/Module/Settings/TwoFactor/Verify.php:149 view/theme/vier/theme.php:240 +#: src/Content/Nav.php:247 src/Module/Help.php:53 +#: src/Module/Settings/TwoFactor/AppSpecific.php:118 +#: src/Module/Settings/TwoFactor/Index.php:125 +#: src/Module/Settings/TwoFactor/Recovery.php:96 +#: src/Module/Settings/TwoFactor/Verify.php:135 view/theme/vier/theme.php:228 msgid "Help" msgstr "Helpo" -#: src/Content/Nav.php:261 +#: src/Content/Nav.php:247 msgid "Help and documentation" msgstr "Helpo kaj dokumentado" -#: src/Content/Nav.php:265 +#: src/Content/Nav.php:251 msgid "Apps" msgstr "Programoj" -#: src/Content/Nav.php:265 +#: src/Content/Nav.php:251 msgid "Addon applications, utilities, games" msgstr "Kromprogramoj, utilaĵoj, ludiloj" -#: src/Content/Nav.php:269 src/Content/Text/HTML.php:866 -#: src/Module/Admin/Logs/View.php:86 src/Module/Search/Index.php:112 +#: src/Content/Nav.php:255 src/Content/Text/HTML.php:853 +#: src/Module/Admin/Logs/View.php:74 src/Module/Search/Index.php:98 msgid "Search" msgstr "Serĉi" -#: src/Content/Nav.php:269 +#: src/Content/Nav.php:255 msgid "Search site content" msgstr "Serĉu la retejon" -#: src/Content/Nav.php:272 src/Content/Text/HTML.php:875 +#: src/Content/Nav.php:258 src/Content/Text/HTML.php:862 msgid "Full Text" msgstr "Plena Teksto" -#: src/Content/Nav.php:273 src/Content/Text/HTML.php:876 -#: src/Content/Widget/TagCloud.php:68 +#: src/Content/Nav.php:259 src/Content/Text/HTML.php:863 +#: src/Content/Widget/TagCloud.php:54 msgid "Tags" msgstr "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:246 +#: src/Content/Nav.php:260 src/Content/Nav.php:315 +#: src/Content/Text/HTML.php:864 src/Module/BaseProfile.php:113 +#: src/Module/BaseProfile.php:116 src/Module/Contact.php:407 +#: src/Module/Contact.php:517 view/theme/frio/theme.php:234 msgid "Contacts" msgstr "Kontaktoj" -#: src/Content/Nav.php:289 +#: src/Content/Nav.php:275 msgid "Community" msgstr "Komunumo" -#: src/Content/Nav.php:289 +#: src/Content/Nav.php:275 msgid "Conversations on this and other servers" msgstr "" -#: src/Content/Nav.php:296 +#: src/Content/Nav.php:282 msgid "Directory" msgstr "Katalogo" -#: src/Content/Nav.php:296 +#: src/Content/Nav.php:282 msgid "People directory" msgstr "Katalogo de homoj" -#: src/Content/Nav.php:298 src/Module/BaseAdmin.php:85 -#: src/Module/BaseModeration.php:108 +#: src/Content/Nav.php:284 src/Module/BaseAdmin.php:71 +#: src/Module/BaseModeration.php:94 msgid "Information" msgstr "Informo" -#: src/Content/Nav.php:298 +#: src/Content/Nav.php:284 msgid "Information about this friendica instance" msgstr "Informo pri tiu ĉi Friendica nodo" -#: src/Content/Nav.php:301 src/Module/Admin/Tos.php:78 -#: src/Module/BaseAdmin.php:95 src/Module/Register.php:176 -#: src/Module/Tos.php:101 +#: src/Content/Nav.php:287 src/Module/Admin/Tos.php:64 +#: src/Module/BaseAdmin.php:81 src/Module/Register.php:169 +#: src/Module/Tos.php:87 msgid "Terms of Service" msgstr "" -#: src/Content/Nav.php:301 +#: src/Content/Nav.php:287 msgid "Terms of Service of this Friendica instance" msgstr "" -#: src/Content/Nav.php:306 view/theme/frio/theme.php:242 +#: src/Content/Nav.php:292 view/theme/frio/theme.php:230 msgid "Network" msgstr "Reto" -#: src/Content/Nav.php:306 view/theme/frio/theme.php:242 +#: src/Content/Nav.php:292 view/theme/frio/theme.php:230 msgid "Conversations from your friends" msgstr "Konversacioj de viaj amikoj" -#: src/Content/Nav.php:308 view/theme/frio/theme.php:232 +#: src/Content/Nav.php:294 view/theme/frio/theme.php:220 msgid "Your posts and conversations" msgstr "Viaj afiŝoj kaj komunikadoj" -#: src/Content/Nav.php:312 +#: src/Content/Nav.php:298 msgid "Introductions" msgstr "Prezentoj" -#: src/Content/Nav.php:312 +#: src/Content/Nav.php:298 msgid "Friend Requests" msgstr "Kontaktpetoj" -#: src/Content/Nav.php:313 src/Module/BaseNotifications.php:149 -#: src/Module/Notifications/Introductions.php:75 +#: src/Content/Nav.php:299 src/Module/BaseNotifications.php:135 +#: src/Module/Notifications/Introductions.php:61 msgid "Notifications" msgstr "Atentigoj" -#: src/Content/Nav.php:314 +#: src/Content/Nav.php:300 msgid "See all notifications" msgstr "Vidu ĉiujn atentigojn" -#: src/Content/Nav.php:315 src/Module/Settings/Connectors.php:244 +#: src/Content/Nav.php:301 src/Module/Settings/Connectors.php:233 msgid "Mark as seen" msgstr "Marki kiel legita" -#: src/Content/Nav.php:315 +#: src/Content/Nav.php:301 msgid "Mark all system notifications as seen" msgstr "" -#: src/Content/Nav.php:318 view/theme/frio/theme.php:244 +#: src/Content/Nav.php:304 view/theme/frio/theme.php:232 msgid "Private mail" msgstr "Privata poŝto" -#: src/Content/Nav.php:319 +#: src/Content/Nav.php:305 msgid "Inbox" msgstr "Enirkesto" -#: src/Content/Nav.php:320 +#: src/Content/Nav.php:306 msgid "Outbox" msgstr "Elirkesto" -#: src/Content/Nav.php:324 +#: src/Content/Nav.php:310 msgid "Accounts" msgstr "" -#: src/Content/Nav.php:324 +#: src/Content/Nav.php:310 msgid "Manage other pages" msgstr "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:245 +#: src/Content/Nav.php:313 src/Module/Admin/Addons/Details.php:100 +#: src/Module/Admin/Themes/Details.php:85 src/Module/BaseSettings.php:168 +#: src/Module/Welcome.php:38 view/theme/frio/theme.php:233 msgid "Settings" msgstr "Agordoj" -#: src/Content/Nav.php:327 view/theme/frio/theme.php:245 +#: src/Content/Nav.php:313 view/theme/frio/theme.php:233 msgid "Account settings" msgstr "Konto" -#: src/Content/Nav.php:329 view/theme/frio/theme.php:246 +#: src/Content/Nav.php:315 view/theme/frio/theme.php:234 msgid "Manage/edit friends and contacts" msgstr "Administri/redakti amikojn kaj kontaktojn" -#: src/Content/Nav.php:334 src/Module/BaseAdmin.php:119 +#: src/Content/Nav.php:320 src/Module/BaseAdmin.php:105 msgid "Admin" msgstr "Administrado" -#: src/Content/Nav.php:334 +#: src/Content/Nav.php:320 msgid "Site setup and configuration" msgstr "Agordoj pri la retejo" -#: src/Content/Nav.php:335 src/Module/BaseModeration.php:128 -#: src/Module/Moderation/Blocklist/Contact.php:110 -#: src/Module/Moderation/Blocklist/Server/Add.php:121 -#: src/Module/Moderation/Blocklist/Server/Import.php:118 -#: src/Module/Moderation/Blocklist/Server/Index.php:95 -#: src/Module/Moderation/Item/Delete.php:61 -#: src/Module/Moderation/Reports.php:89 src/Module/Moderation/Summary.php:75 -#: src/Module/Moderation/Users/Active.php:133 -#: src/Module/Moderation/Users/Blocked.php:133 -#: src/Module/Moderation/Users/Deleted.php:80 -#: src/Module/Moderation/Users/Index.php:147 +#: src/Content/Nav.php:321 src/Module/BaseModeration.php:114 +#: src/Module/Moderation/Blocklist/Contact.php:96 +#: src/Module/Moderation/Blocklist/Server/Add.php:107 +#: src/Module/Moderation/Blocklist/Server/Import.php:102 +#: src/Module/Moderation/Blocklist/Server/Index.php:81 +#: src/Module/Moderation/Item/Delete.php:47 +#: src/Module/Moderation/Reports.php:96 src/Module/Moderation/Summary.php:61 +#: src/Module/Moderation/Users/Active.php:119 +#: src/Module/Moderation/Users/Blocked.php:119 +#: src/Module/Moderation/Users/Deleted.php:66 +#: src/Module/Moderation/Users/Index.php:133 msgid "Moderation" msgstr "" -#: src/Content/Nav.php:335 +#: src/Content/Nav.php:321 msgid "Content and user moderation" msgstr "" -#: src/Content/Nav.php:338 +#: src/Content/Nav.php:324 msgid "Navigation" msgstr "" -#: src/Content/Nav.php:338 +#: src/Content/Nav.php:324 msgid "Site map" msgstr "Reteja mapo" -#: src/Content/Pager.php:216 +#: src/Content/Pager.php:202 msgid "first" msgstr "unua" -#: src/Content/Pager.php:221 +#: src/Content/Pager.php:207 msgid "prev" msgstr "antaŭa" -#: src/Content/Pager.php:276 +#: src/Content/Pager.php:262 msgid "next" msgstr "sekvanta" -#: src/Content/Pager.php:281 +#: src/Content/Pager.php:267 msgid "last" msgstr "lasta" -#: src/Content/Text/BBCode.php:767 src/Content/Text/BBCode.php:1728 -#: src/Content/Text/BBCode.php:1729 +#: src/Content/Text/BBCode.php:689 src/Content/Text/BBCode.php:1862 +#: src/Content/Text/BBCode.php:1863 msgid "Image/photo" msgstr "Bildo" -#: src/Content/Text/BBCode.php:985 +#: src/Content/Text/BBCode.php:907 #, php-format msgid "%2$s %3$s" msgstr "" -#: src/Content/Text/BBCode.php:1010 src/Model/Item.php:3999 -#: src/Model/Item.php:4005 src/Model/Item.php:4006 +#: src/Content/Text/BBCode.php:929 src/Model/Item.php:4028 +#: src/Model/Item.php:4034 src/Model/Item.php:4035 msgid "Link to source" msgstr "" -#: src/Content/Text/BBCode.php:1635 src/Content/Text/HTML.php:905 +#: src/Content/Text/BBCode.php:1743 src/Content/Text/HTML.php:892 msgid "Click to open/close" msgstr "Klaku por malfermi/fermi" -#: src/Content/Text/BBCode.php:1668 +#: src/Content/Text/BBCode.php:1798 msgid "$1 wrote:" msgstr "$1 skribis:" -#: src/Content/Text/BBCode.php:1733 src/Content/Text/BBCode.php:1734 +#: src/Content/Text/BBCode.php:1872 src/Content/Text/BBCode.php:1873 msgid "Encrypted content" msgstr "" -#: src/Content/Text/BBCode.php:1997 +#: src/Content/Text/BBCode.php:2205 msgid "Invalid source protocol" msgstr "" -#: src/Content/Text/BBCode.php:2016 +#: src/Content/Text/BBCode.php:2224 msgid "Invalid link protocol" msgstr "" -#: src/Content/Text/HTML.php:783 +#: src/Content/Text/HTML.php:770 msgid "Loading more entries..." msgstr "" -#: src/Content/Text/HTML.php:784 +#: src/Content/Text/HTML.php:771 msgid "The end" msgstr "" -#: src/Content/Text/HTML.php:860 src/Content/Widget/VCard.php:126 -#: src/Model/Profile.php:477 src/Module/Contact/Profile.php:471 +#: src/Content/Text/HTML.php:847 src/Content/Widget/VCard.php:113 +#: src/Model/Profile.php:456 src/Module/Contact/Profile.php:478 msgid "Follow" msgstr "" -#: src/Content/Widget.php:51 +#: src/Content/Widget.php:37 msgid "Add New Contact" msgstr "Aldonu Novan Kontakton" -#: src/Content/Widget.php:52 +#: src/Content/Widget.php:38 msgid "Enter address or web location" msgstr "Entajpu adreson aŭ retlokon" -#: src/Content/Widget.php:53 +#: src/Content/Widget.php:39 msgid "Example: bob@example.com, http://example.com/barbara" msgstr "Ekzemple: bob@example.com, http://example.com/barbara" -#: src/Content/Widget.php:55 +#: src/Content/Widget.php:41 msgid "Connect" msgstr "Konekti" -#: src/Content/Widget.php:72 +#: src/Content/Widget.php:58 #, php-format msgid "%d invitation available" msgid_plural "%d invitations available" msgstr[0] "Disponeblas %d invito" msgstr[1] "Disponeblas %d invitoj" -#: src/Content/Widget.php:78 view/theme/vier/theme.php:193 +#: src/Content/Widget.php:64 view/theme/vier/theme.php:181 msgid "Find People" msgstr "Trovi Homojn" -#: src/Content/Widget.php:79 view/theme/vier/theme.php:194 +#: src/Content/Widget.php:65 view/theme/vier/theme.php:182 msgid "Enter name or interest" msgstr "Entajpu nomon aŭ intereson" -#: src/Content/Widget.php:81 view/theme/vier/theme.php:196 +#: src/Content/Widget.php:67 view/theme/vier/theme.php:184 msgid "Examples: Robert Morgenstein, Fishing" msgstr "Ekzemple: Robert Morgenstein, Fishing" -#: src/Content/Widget.php:82 src/Module/Contact.php:460 -#: src/Module/Directory.php:96 view/theme/vier/theme.php:197 +#: src/Content/Widget.php:68 src/Module/Contact.php:441 +#: src/Module/Directory.php:83 view/theme/vier/theme.php:185 msgid "Find" msgstr "Trovi" -#: src/Content/Widget.php:83 src/Module/Contact/Suggestions.php:73 -#: view/theme/vier/theme.php:198 +#: src/Content/Widget.php:69 src/Module/Contact/Suggestions.php:59 +#: view/theme/vier/theme.php:186 msgid "Friend Suggestions" msgstr "Amikosugestoj" -#: src/Content/Widget.php:84 view/theme/vier/theme.php:199 +#: src/Content/Widget.php:70 view/theme/vier/theme.php:187 msgid "Similar Interests" msgstr "Similaj Interesoj" -#: src/Content/Widget.php:85 view/theme/vier/theme.php:200 +#: src/Content/Widget.php:71 view/theme/vier/theme.php:188 msgid "Random Profile" msgstr "Hazarda Profilo" -#: src/Content/Widget.php:86 view/theme/vier/theme.php:201 +#: src/Content/Widget.php:72 view/theme/vier/theme.php:189 msgid "Invite Friends" msgstr "Inviti amikojn" -#: src/Content/Widget.php:87 src/Module/Directory.php:88 -#: view/theme/vier/theme.php:202 +#: src/Content/Widget.php:73 src/Module/Directory.php:75 +#: view/theme/vier/theme.php:190 msgid "Global Directory" msgstr "Tutmonda Katalogo" -#: src/Content/Widget.php:89 view/theme/vier/theme.php:204 +#: src/Content/Widget.php:75 view/theme/vier/theme.php:192 msgid "Local Directory" msgstr "Loka Katalogo" -#: 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:218 +#: src/Content/Widget.php:196 msgid "Everyone" msgstr "" -#: src/Content/Widget.php:243 src/Module/Contact.php:423 +#: src/Content/Widget.php:221 src/Module/Contact.php:404 msgid "No relationship" msgstr "" -#: src/Content/Widget.php:248 +#: src/Content/Widget.php:226 msgid "Relationships" msgstr "" -#: src/Content/Widget.php:250 src/Module/Circle.php:292 -#: src/Module/Contact.php:344 +#: src/Content/Widget.php:228 src/Module/Circle.php:280 +#: src/Module/Contact.php:325 msgid "All Contacts" msgstr "Ĉiuj Kontaktoj" -#: src/Content/Widget.php:289 -msgid "Protocols" -msgstr "" - -#: src/Content/Widget.php:291 +#: src/Content/Widget.php:269 msgid "All Protocols" msgstr "" -#: src/Content/Widget.php:319 -msgid "Saved Folders" -msgstr "Konservitaj Dosierujoj" - -#: src/Content/Widget.php:321 src/Content/Widget.php:352 +#: src/Content/Widget.php:299 src/Content/Widget.php:330 msgid "Everything" msgstr "Ĉio" -#: src/Content/Widget.php:350 +#: src/Content/Widget.php:328 msgid "Categories" msgstr "Kategorioj" -#: src/Content/Widget.php:407 +#: src/Content/Widget.php:385 #, 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:507 -msgid "Archives" -msgstr "Arkivoj" - -#: src/Content/Widget.php:515 +#: src/Content/Widget.php:493 msgid "On this date" msgstr "" -#: src/Content/Widget.php:535 +#: src/Content/Widget.php:513 msgid "Persons" msgstr "" -#: src/Content/Widget.php:536 +#: src/Content/Widget.php:514 msgid "Organisations" msgstr "" -#: src/Content/Widget.php:537 src/Model/Contact.php:1739 +#: src/Content/Widget.php:515 src/Model/Contact.php:1747 msgid "News" msgstr "" -#: src/Content/Widget.php:539 +#: src/Content/Widget.php:517 msgid "Relays" msgstr "" -#: src/Content/Widget.php:544 src/Module/Settings/Account.php:442 -msgid "Account Types" -msgstr "" - -#: src/Content/Widget.php:546 src/Module/Moderation/BaseUsers.php:69 +#: src/Content/Widget.php:524 src/Module/Moderation/BaseUsers.php:56 msgid "All" msgstr "" -#: 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:318 -msgid "Channels" -msgstr "" - -#: src/Content/Widget/CalendarExport.php:56 +#: src/Content/Widget/CalendarExport.php:42 msgid "Export" msgstr "" -#: src/Content/Widget/CalendarExport.php:57 +#: src/Content/Widget/CalendarExport.php:43 msgid "Export calendar as ical" msgstr "" -#: src/Content/Widget/CalendarExport.php:58 +#: src/Content/Widget/CalendarExport.php:44 msgid "Export calendar as csv" msgstr "" -#: src/Content/Widget/ContactBlock.php:79 +#: src/Content/Widget/ContactBlock.php:65 msgid "No contacts" msgstr "Neniu kontaktoj" -#: src/Content/Widget/ContactBlock.php:110 +#: src/Content/Widget/ContactBlock.php:96 #, php-format msgid "%d Contact" msgid_plural "%d Contacts" msgstr[0] "%d Kontakto" msgstr[1] "%d Kontaktoj" -#: src/Content/Widget/ContactBlock.php:127 +#: src/Content/Widget/ContactBlock.php:113 msgid "View Contacts" msgstr "Vidi Kontaktojn" -#: src/Content/Widget/SavedSearches.php:47 +#: src/Content/Widget/SavedSearches.php:33 msgid "Remove term" msgstr "Forviŝu terminon" -#: src/Content/Widget/SavedSearches.php:60 -msgid "Saved Searches" -msgstr "Konservitaj Serĉadoj" - -#: src/Content/Widget/TrendingTags.php:52 +#: src/Content/Widget/TrendingTags.php:39 #, php-format msgid "Trending Tags (last %d hour)" msgid_plural "Trending Tags (last %d hours)" msgstr[0] "" msgstr[1] "" -#: src/Content/Widget/TrendingTags.php:53 +#: src/Content/Widget/TrendingTags.php:40 msgid "More Trending Tags" msgstr "" -#: src/Content/Widget/VCard.php:104 src/Model/Contact.php:1205 -#: src/Model/Profile.php:461 +#: src/Content/Widget/VCard.php:91 src/Model/Contact.php:1212 +#: src/Model/Profile.php:441 msgid "Post to group" msgstr "" -#: src/Content/Widget/VCard.php:109 src/Model/Contact.php:1210 -#: src/Model/Profile.php:466 src/Module/Moderation/Item/Source.php:85 +#: src/Content/Widget/VCard.php:96 src/Model/Contact.php:1216 +#: src/Model/Profile.php:445 src/Module/Moderation/Item/Source.php:77 msgid "Mention" msgstr "" -#: src/Content/Widget/VCard.php:119 src/Model/Profile.php:380 -#: src/Module/Contact/Profile.php:408 src/Module/Profile/Profile.php:199 +#: src/Content/Widget/VCard.php:106 src/Model/Profile.php:360 +#: src/Module/Contact/Profile.php:414 src/Module/Profile/Profile.php:187 msgid "XMPP:" msgstr "" -#: src/Content/Widget/VCard.php:120 src/Model/Profile.php:381 -#: src/Module/Contact/Profile.php:410 src/Module/Profile/Profile.php:203 +#: src/Content/Widget/VCard.php:107 src/Model/Profile.php:361 +#: src/Module/Contact/Profile.php:416 src/Module/Profile/Profile.php:191 msgid "Matrix:" msgstr "" -#: src/Content/Widget/VCard.php:121 src/Model/Event.php:82 -#: 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 +#: src/Content/Widget/VCard.php:108 src/Model/Event.php:68 +#: src/Model/Event.php:95 src/Model/Event.php:457 src/Model/Event.php:946 +#: src/Model/Profile.php:355 src/Module/Contact/Profile.php:412 +#: src/Module/Directory.php:134 src/Module/Notifications/Introductions.php:179 +#: src/Module/Profile/Profile.php:209 msgid "Location:" msgstr "Loko:" -#: src/Content/Widget/VCard.php:124 src/Model/Profile.php:490 -#: src/Module/Notifications/Introductions.php:201 +#: src/Content/Widget/VCard.php:111 src/Model/Profile.php:469 +#: src/Module/Notifications/Introductions.php:193 msgid "Network:" msgstr "" -#: src/Content/Widget/VCard.php:128 src/Model/Contact.php:1238 -#: src/Model/Contact.php:1250 src/Model/Profile.php:479 -#: src/Module/Contact/Profile.php:463 +#: src/Content/Widget/VCard.php:115 src/Model/Contact.php:1244 +#: src/Model/Contact.php:1256 src/Model/Profile.php:458 +#: src/Module/Contact/Profile.php:470 msgid "Unfollow" msgstr "" -#: src/Content/Widget/VCard.php:134 src/Model/Contact.php:1207 -#: src/Model/Profile.php:463 +#: src/Content/Widget/VCard.php:121 src/Model/Contact.php:1214 +#: src/Model/Profile.php:443 msgid "View group" msgstr "" -#: src/Core/ACL.php:166 src/Module/Profile/Profile.php:269 +#: src/Core/ACL.php:152 src/Module/Profile/Profile.php:257 msgid "Yourself" msgstr "" -#: src/Core/ACL.php:202 src/Module/PermissionTooltip.php:147 -#: src/Module/PermissionTooltip.php:169 +#: src/Core/ACL.php:188 src/Module/Privacy/PermissionTooltip.php:156 +#: src/Module/Privacy/PermissionTooltip.php:178 msgid "Mutuals" msgstr "" -#: src/Core/ACL.php:294 +#: src/Core/ACL.php:280 msgid "Post to Email" msgstr "Sendi per retpoŝto" -#: src/Core/ACL.php:321 src/Module/PermissionTooltip.php:90 -#: src/Module/PermissionTooltip.php:211 +#: src/Core/ACL.php:307 src/Module/Privacy/PermissionTooltip.php:103 +#: src/Module/Privacy/PermissionTooltip.php:217 msgid "Public" msgstr "" -#: src/Core/ACL.php:322 +#: src/Core/ACL.php:308 msgid "" "This content will be shown to all your followers and can be seen in the " "community pages and by anyone with its link." msgstr "" -#: src/Core/ACL.php:323 src/Module/PermissionTooltip.php:98 +#: src/Core/ACL.php:309 src/Module/Privacy/PermissionTooltip.php:105 msgid "Limited/Private" msgstr "" -#: src/Core/ACL.php:324 +#: src/Core/ACL.php:310 msgid "" "This content will be shown only to the people in the first box, to the " "exception of the people mentioned in the second box. It won't appear " "anywhere public." msgstr "" -#: src/Core/ACL.php:324 +#: src/Core/ACL.php:310 msgid "" "Start typing the name of a contact or a circle to show a filtered list. You " "can also mention the special circles \"Followers\" and \"Mutuals\"." msgstr "" -#: src/Core/ACL.php:325 +#: src/Core/ACL.php:311 msgid "Show to:" msgstr "" -#: src/Core/ACL.php:326 +#: src/Core/ACL.php:312 msgid "Except to:" msgstr "" -#: src/Core/ACL.php:327 src/Module/Post/Edit.php:154 +#: src/Core/ACL.php:313 src/Module/Post/Edit.php:140 msgid "CC: email addresses" msgstr "CC: retpoŝtadresojn" -#: src/Core/ACL.php:328 src/Module/Post/Edit.php:160 +#: src/Core/ACL.php:314 src/Module/Post/Edit.php:146 msgid "Example: bob@example.com, mary@example.com" msgstr "Ekzemple: bob@example.com, mary@example.com" -#: src/Core/ACL.php:329 +#: src/Core/ACL.php:315 msgid "Connectors" msgstr "" -#: src/Core/Installer.php:180 +#: src/Core/Installer.php:166 msgid "" "The database configuration file \"config/local.config.php\" could not be " "written. Please use the enclosed text to create a configuration file in your" " web server root." msgstr "" -#: src/Core/Installer.php:197 +#: src/Core/Installer.php:183 msgid "" "You may need to import the file \"database.sql\" manually using phpmyadmin " "or mysql." msgstr "Vi bezonas mane importi la dosieron \"database.sql\" per phpmyadmin aŭ mysql." -#: src/Core/Installer.php:198 src/Module/Install.php:207 -#: src/Module/Install.php:350 +#: src/Core/Installer.php:184 src/Module/Install.php:193 +#: src/Module/Install.php:336 msgid "Please see the file \"doc/INSTALL.md\"." msgstr "" -#: src/Core/Installer.php:259 +#: src/Core/Installer.php:245 msgid "Could not find a command line version of PHP in the web server PATH." msgstr "Komanda linia versio de PHP ne trovita en PATH de la retservilo." -#: src/Core/Installer.php:260 +#: src/Core/Installer.php:246 msgid "" "If you don't have a command line version of PHP installed on your server, " "you will not be able to run the background processing. See 'Setup the worker'" msgstr "" -#: src/Core/Installer.php:265 +#: src/Core/Installer.php:251 msgid "PHP executable path" msgstr "Vojo de la komanda linia versio de PHP" -#: src/Core/Installer.php:265 +#: src/Core/Installer.php:251 msgid "" "Enter full path to php executable. You can leave this blank to continue the " "installation." msgstr "Entajpu la plenan vojon al la php komandodosiero. Vi eblas lasi tion malplena por pluigi la instalado." -#: src/Core/Installer.php:270 +#: src/Core/Installer.php:256 msgid "Command line PHP" msgstr "komanda linia versio de PHP" -#: src/Core/Installer.php:279 +#: src/Core/Installer.php:265 msgid "PHP executable is not the php cli binary (could be cgi-fgci version)" msgstr "" -#: src/Core/Installer.php:280 +#: src/Core/Installer.php:266 msgid "Found PHP version: " msgstr "" -#: src/Core/Installer.php:282 +#: src/Core/Installer.php:268 msgid "PHP cli binary" msgstr "" -#: src/Core/Installer.php:295 +#: src/Core/Installer.php:281 msgid "" "The command line version of PHP on your system does not have " "\"register_argc_argv\" enabled." msgstr "En via komanda linia versio de PHP je via sistemo, \"register_argc_argv\" ne estas aktivita." -#: src/Core/Installer.php:296 +#: src/Core/Installer.php:282 msgid "This is required for message delivery to work." msgstr "Tio estas bezonata por la livero de mesaĝoj." -#: src/Core/Installer.php:301 +#: src/Core/Installer.php:287 msgid "PHP register_argc_argv" msgstr "PHP register_argc_argv" -#: src/Core/Installer.php:333 +#: src/Core/Installer.php:319 msgid "" "Error: the \"openssl_pkey_new\" function on this system is not able to " "generate encryption keys" msgstr "Eraro: La funkcio \"openssl_pkey_new\" je tia sistemo ne eblas generi ĉifroŝlosilojn." -#: src/Core/Installer.php:334 +#: src/Core/Installer.php:320 msgid "" "If running under Windows, please see " "\"http://www.php.net/manual/en/openssl.installation.php\"." msgstr "Se la operaciumo sistemo estas Windows, bonvolu legi: http://www.php.net/manual/en/openssl.installation.php" -#: src/Core/Installer.php:337 +#: src/Core/Installer.php:323 msgid "Generate encryption keys" msgstr "Generi ĉifroŝlosilojn" -#: src/Core/Installer.php:388 +#: src/Core/Installer.php:374 msgid "" "Error: Apache webserver mod-rewrite module is required but not installed." msgstr "Eraro: La modulo mod_rewrite en la Apache retservilo estas bezonata sed ne instalita." -#: src/Core/Installer.php:392 +#: src/Core/Installer.php:378 msgid "Apache mod_rewrite module" msgstr "Apache mod_rewrite modulo" -#: src/Core/Installer.php:398 +#: src/Core/Installer.php:384 msgid "Error: PDO or MySQLi PHP module required but not installed." msgstr "" -#: src/Core/Installer.php:402 +#: src/Core/Installer.php:388 msgid "Error: The MySQL driver for PDO is not installed." msgstr "" -#: src/Core/Installer.php:405 +#: src/Core/Installer.php:391 msgid "PDO or MySQLi PHP module" msgstr "" -#: src/Core/Installer.php:411 +#: src/Core/Installer.php:397 msgid "Error: The IntlChar module is not installed." msgstr "" -#: src/Core/Installer.php:414 +#: src/Core/Installer.php:400 msgid "IntlChar PHP module" msgstr "" -#: src/Core/Installer.php:422 +#: src/Core/Installer.php:408 msgid "Error, XML PHP module required but not installed." msgstr "" -#: src/Core/Installer.php:426 +#: src/Core/Installer.php:412 msgid "XML PHP module" msgstr "" -#: src/Core/Installer.php:429 +#: src/Core/Installer.php:415 msgid "libCurl PHP module" msgstr "PHP modulo libCurl" -#: src/Core/Installer.php:430 +#: src/Core/Installer.php:416 msgid "Error: libCURL PHP module required but not installed." msgstr "Eraro: La modulo libCURL en PHP estas bezonata sed ne instalita." -#: src/Core/Installer.php:436 +#: src/Core/Installer.php:422 msgid "GD graphics PHP module" msgstr "PHP modulo GD" -#: src/Core/Installer.php:437 +#: src/Core/Installer.php:423 msgid "" "Error: GD graphics PHP module with JPEG support required but not installed." msgstr "Eraro: La modulo GD en PHP kun subteno por JPEG estas bezonata sed ne instalita." -#: src/Core/Installer.php:443 +#: src/Core/Installer.php:429 msgid "OpenSSL PHP module" msgstr "PHP modulo OpenSSL" -#: src/Core/Installer.php:444 +#: src/Core/Installer.php:430 msgid "Error: openssl PHP module required but not installed." msgstr "Eraro: La modulo OpenSSL en PHP estas bezonata sed ne instalita." -#: src/Core/Installer.php:450 +#: src/Core/Installer.php:436 msgid "mb_string PHP module" msgstr "PHP modulo mb_string" -#: src/Core/Installer.php:451 +#: src/Core/Installer.php:437 msgid "Error: mb_string PHP module required but not installed." msgstr "Eraro: La modulo mb_string en PHP estas bezonata sed ne instalita." -#: src/Core/Installer.php:457 +#: src/Core/Installer.php:443 msgid "iconv PHP module" msgstr "" -#: src/Core/Installer.php:458 +#: src/Core/Installer.php:444 msgid "Error: iconv PHP module required but not installed." msgstr "" -#: src/Core/Installer.php:464 +#: src/Core/Installer.php:450 msgid "POSIX PHP module" msgstr "" -#: src/Core/Installer.php:465 +#: src/Core/Installer.php:451 msgid "Error: POSIX PHP module required but not installed." msgstr "" -#: src/Core/Installer.php:471 +#: src/Core/Installer.php:457 msgid "Program execution functions" msgstr "" -#: src/Core/Installer.php:472 +#: src/Core/Installer.php:458 msgid "" "Error: Program execution functions (proc_open) required but not enabled." msgstr "" -#: src/Core/Installer.php:478 +#: src/Core/Installer.php:464 msgid "JSON PHP module" msgstr "" -#: src/Core/Installer.php:479 +#: src/Core/Installer.php:465 msgid "Error: JSON PHP module required but not installed." msgstr "" -#: src/Core/Installer.php:485 +#: src/Core/Installer.php:471 msgid "File Information PHP module" msgstr "" -#: src/Core/Installer.php:486 +#: src/Core/Installer.php:472 msgid "Error: File Information PHP module required but not installed." msgstr "" -#: src/Core/Installer.php:492 +#: src/Core/Installer.php:478 msgid "GNU Multiple Precision PHP module" msgstr "" -#: src/Core/Installer.php:493 +#: src/Core/Installer.php:479 msgid "Error: GNU Multiple Precision PHP module required but not installed." msgstr "" -#: src/Core/Installer.php:516 +#: src/Core/Installer.php:485 +msgid "IDN Functions PHP module" +msgstr "" + +#: src/Core/Installer.php:486 +msgid "Error: IDN Functions PHP module required but not installed." +msgstr "" + +#: src/Core/Installer.php:509 msgid "" "The web installer needs to be able to create a file called " "\"local.config.php\" in the \"config\" folder of your web server and it is " "unable to do so." msgstr "" -#: src/Core/Installer.php:517 +#: src/Core/Installer.php:510 msgid "" "This is most often a permission setting, as the web server may not be able " "to write files in your folder - even if you can." msgstr "Tio ĉi plej ofte estas agordo rilate al permesoj, ĉar la servilo eble ne povas skribi en via dosierujo, eĉ se vi mem povas skribi." -#: src/Core/Installer.php:518 +#: src/Core/Installer.php:511 msgid "" "At the end of this procedure, we will give you a text to save in a file " "named local.config.php in your Friendica \"config\" folder." msgstr "" -#: src/Core/Installer.php:519 +#: src/Core/Installer.php:512 msgid "" "You can alternatively skip this procedure and perform a manual installation." " Please see the file \"doc/INSTALL.md\" for instructions." msgstr "" -#: src/Core/Installer.php:522 +#: src/Core/Installer.php:515 msgid "config/local.config.php is writable" msgstr "" -#: src/Core/Installer.php:542 +#: src/Core/Installer.php:535 msgid "" "Friendica uses the Smarty3 template engine to render its web views. Smarty3 " "compiles templates to PHP to speed up rendering." msgstr "" -#: src/Core/Installer.php:543 +#: src/Core/Installer.php:536 msgid "" "In order to store these compiled templates, the web server needs to have " "write access to the directory view/smarty3/ under the Friendica top level " "folder." msgstr "" -#: src/Core/Installer.php:544 +#: src/Core/Installer.php:537 msgid "" "Please ensure that the user that your web server runs as (e.g. www-data) has" " write access to this folder." msgstr "" -#: src/Core/Installer.php:545 +#: src/Core/Installer.php:538 msgid "" "Note: as a security measure, you should give the web server write access to " "view/smarty3/ only--not the template files (.tpl) that it contains." msgstr "" -#: src/Core/Installer.php:548 +#: src/Core/Installer.php:541 msgid "view/smarty3 is writable" msgstr "" -#: src/Core/Installer.php:576 +#: src/Core/Installer.php:569 msgid "" "Url rewrite in .htaccess seems not working. Make sure you copied .htaccess-" "dist to .htaccess." msgstr "" -#: src/Core/Installer.php:577 +#: src/Core/Installer.php:570 msgid "" "In some circumstances (like running inside containers), you can skip this " "error." msgstr "" -#: src/Core/Installer.php:579 +#: src/Core/Installer.php:572 msgid "Error message from Curl when fetching" msgstr "" -#: src/Core/Installer.php:585 +#: src/Core/Installer.php:578 msgid "Url rewrite is working" msgstr "URL rewrite funkcias." -#: src/Core/Installer.php:614 +#: src/Core/Installer.php:607 msgid "" "The detection of TLS to secure the communication between the browser and the" " new Friendica server failed." msgstr "" -#: src/Core/Installer.php:615 +#: src/Core/Installer.php:608 msgid "" "It is highly encouraged to use Friendica only over a secure connection as " "sensitive information like passwords will be transmitted." msgstr "" -#: src/Core/Installer.php:616 +#: src/Core/Installer.php:609 msgid "Please ensure that the connection to the server is secure." msgstr "" -#: src/Core/Installer.php:617 +#: src/Core/Installer.php:610 msgid "No TLS detected" msgstr "" -#: src/Core/Installer.php:619 +#: src/Core/Installer.php:612 msgid "TLS detected" msgstr "" -#: src/Core/Installer.php:636 +#: src/Core/Installer.php:629 msgid "ImageMagick PHP extension is not installed" msgstr "" -#: src/Core/Installer.php:638 +#: src/Core/Installer.php:631 msgid "ImageMagick PHP extension is installed" msgstr "" -#: src/Core/Installer.php:659 +#: src/Core/Installer.php:652 msgid "Database already in use." msgstr "" -#: src/Core/Installer.php:664 +#: src/Core/Installer.php:657 msgid "Could not connect to database." msgstr "Ne eblas konekti la datumbazon." -#: src/Core/L10n.php:444 src/Model/Item.php:2298 +#: src/Core/L10n.php:430 src/Model/Item.php:2315 msgid "Undetermined" msgstr "" -#: src/Core/L10n.php:451 +#: src/Core/L10n.php:437 #, php-format msgid "%s (%s)" msgstr "" -#: src/Core/L10n.php:499 src/Model/Event.php:430 -#: src/Module/Settings/Display.php:287 +#: src/Core/L10n.php:485 src/Model/Event.php:416 +#: src/Module/Settings/Display.php:270 msgid "Monday" msgstr "Lundo" -#: src/Core/L10n.php:499 src/Model/Event.php:431 -#: src/Module/Settings/Display.php:288 +#: src/Core/L10n.php:485 src/Model/Event.php:417 +#: src/Module/Settings/Display.php:271 msgid "Tuesday" msgstr "Mardo" -#: src/Core/L10n.php:499 src/Model/Event.php:432 -#: src/Module/Settings/Display.php:289 +#: src/Core/L10n.php:485 src/Model/Event.php:418 +#: src/Module/Settings/Display.php:272 msgid "Wednesday" msgstr "Merkredo" -#: src/Core/L10n.php:499 src/Model/Event.php:433 -#: src/Module/Settings/Display.php:290 +#: src/Core/L10n.php:485 src/Model/Event.php:419 +#: src/Module/Settings/Display.php:273 msgid "Thursday" msgstr "Ĵaŭdo" -#: src/Core/L10n.php:499 src/Model/Event.php:434 -#: src/Module/Settings/Display.php:291 +#: src/Core/L10n.php:485 src/Model/Event.php:420 +#: src/Module/Settings/Display.php:274 msgid "Friday" msgstr "Vendredo" -#: src/Core/L10n.php:499 src/Model/Event.php:435 -#: src/Module/Settings/Display.php:292 +#: src/Core/L10n.php:485 src/Model/Event.php:421 +#: src/Module/Settings/Display.php:275 msgid "Saturday" msgstr "Sabato" -#: src/Core/L10n.php:499 src/Model/Event.php:429 -#: src/Module/Settings/Display.php:286 +#: src/Core/L10n.php:485 src/Model/Event.php:415 +#: src/Module/Settings/Display.php:269 msgid "Sunday" msgstr "Dimanĉo" -#: src/Core/L10n.php:503 src/Model/Event.php:450 +#: src/Core/L10n.php:489 src/Model/Event.php:436 msgid "January" msgstr "Januaro" -#: src/Core/L10n.php:503 src/Model/Event.php:451 +#: src/Core/L10n.php:489 src/Model/Event.php:437 msgid "February" msgstr "Februaro" -#: src/Core/L10n.php:503 src/Model/Event.php:452 +#: src/Core/L10n.php:489 src/Model/Event.php:438 msgid "March" msgstr "Marto" -#: src/Core/L10n.php:503 src/Model/Event.php:453 +#: src/Core/L10n.php:489 src/Model/Event.php:439 msgid "April" msgstr "Aprilo" -#: src/Core/L10n.php:503 src/Core/L10n.php:522 src/Model/Event.php:441 +#: src/Core/L10n.php:489 src/Core/L10n.php:508 src/Model/Event.php:427 msgid "May" msgstr "Majo" -#: src/Core/L10n.php:503 src/Model/Event.php:454 +#: src/Core/L10n.php:489 src/Model/Event.php:440 msgid "June" msgstr "Junio" -#: src/Core/L10n.php:503 src/Model/Event.php:455 +#: src/Core/L10n.php:489 src/Model/Event.php:441 msgid "July" msgstr "Julio" -#: src/Core/L10n.php:503 src/Model/Event.php:456 +#: src/Core/L10n.php:489 src/Model/Event.php:442 msgid "August" msgstr "Aŭgusto" -#: src/Core/L10n.php:503 src/Model/Event.php:457 +#: src/Core/L10n.php:489 src/Model/Event.php:443 msgid "September" msgstr "Septembro" -#: src/Core/L10n.php:503 src/Model/Event.php:458 +#: src/Core/L10n.php:489 src/Model/Event.php:444 msgid "October" msgstr "Oktobro" -#: src/Core/L10n.php:503 src/Model/Event.php:459 +#: src/Core/L10n.php:489 src/Model/Event.php:445 msgid "November" msgstr "Novembro" -#: src/Core/L10n.php:503 src/Model/Event.php:460 +#: src/Core/L10n.php:489 src/Model/Event.php:446 msgid "December" msgstr "Decembro" -#: src/Core/L10n.php:518 src/Model/Event.php:422 +#: src/Core/L10n.php:504 src/Model/Event.php:408 msgid "Mon" msgstr "" -#: src/Core/L10n.php:518 src/Model/Event.php:423 +#: src/Core/L10n.php:504 src/Model/Event.php:409 msgid "Tue" msgstr "" -#: src/Core/L10n.php:518 src/Model/Event.php:424 +#: src/Core/L10n.php:504 src/Model/Event.php:410 msgid "Wed" msgstr "" -#: src/Core/L10n.php:518 src/Model/Event.php:425 +#: src/Core/L10n.php:504 src/Model/Event.php:411 msgid "Thu" msgstr "" -#: src/Core/L10n.php:518 src/Model/Event.php:426 +#: src/Core/L10n.php:504 src/Model/Event.php:412 msgid "Fri" msgstr "" -#: src/Core/L10n.php:518 src/Model/Event.php:427 +#: src/Core/L10n.php:504 src/Model/Event.php:413 msgid "Sat" msgstr "" -#: src/Core/L10n.php:518 src/Model/Event.php:421 +#: src/Core/L10n.php:504 src/Model/Event.php:407 msgid "Sun" msgstr "" -#: src/Core/L10n.php:522 src/Model/Event.php:437 +#: src/Core/L10n.php:508 src/Model/Event.php:423 msgid "Jan" msgstr "" -#: src/Core/L10n.php:522 src/Model/Event.php:438 +#: src/Core/L10n.php:508 src/Model/Event.php:424 msgid "Feb" msgstr "" -#: src/Core/L10n.php:522 src/Model/Event.php:439 +#: src/Core/L10n.php:508 src/Model/Event.php:425 msgid "Mar" msgstr "" -#: src/Core/L10n.php:522 src/Model/Event.php:440 +#: src/Core/L10n.php:508 src/Model/Event.php:426 msgid "Apr" msgstr "" -#: src/Core/L10n.php:522 src/Model/Event.php:442 +#: src/Core/L10n.php:508 src/Model/Event.php:428 msgid "Jun" msgstr "" -#: src/Core/L10n.php:522 src/Model/Event.php:443 +#: src/Core/L10n.php:508 src/Model/Event.php:429 msgid "Jul" msgstr "" -#: src/Core/L10n.php:522 src/Model/Event.php:444 +#: src/Core/L10n.php:508 src/Model/Event.php:430 msgid "Aug" msgstr "" -#: src/Core/L10n.php:522 +#: src/Core/L10n.php:508 msgid "Sep" msgstr "" -#: src/Core/L10n.php:522 src/Model/Event.php:446 +#: src/Core/L10n.php:508 src/Model/Event.php:432 msgid "Oct" msgstr "" -#: src/Core/L10n.php:522 src/Model/Event.php:447 +#: src/Core/L10n.php:508 src/Model/Event.php:433 msgid "Nov" msgstr "" -#: src/Core/L10n.php:522 src/Model/Event.php:448 +#: src/Core/L10n.php:508 src/Model/Event.php:434 msgid "Dec" msgstr "" -#: src/Core/Logger/Util/LoggerSettingsCheck.php:60 +#: src/Core/Logger/Util/LoggerSettingsCheck.php:46 #, php-format msgid "The logfile '%s' is not usable. No logging possible (error: '%s')" msgstr "" -#: src/Core/Logger/Util/LoggerSettingsCheck.php:85 +#: src/Core/Logger/Util/LoggerSettingsCheck.php:71 #, php-format msgid "" "The debug logfile '%s' is not usable. No logging possible (error: '%s')" msgstr "" -#: src/Core/Renderer.php:89 src/Core/Renderer.php:118 -#: src/Core/Renderer.php:147 src/Core/Renderer.php:181 -#: src/Render/FriendicaSmartyEngine.php:60 +#: src/Core/Renderer.php:78 src/Core/Renderer.php:107 +#: src/Core/Renderer.php:136 src/Core/Renderer.php:170 +#: src/Render/FriendicaSmartyEngine.php:46 msgid "" "Friendica can't display this page at the moment, please contact the " "administrator." msgstr "" -#: src/Core/Renderer.php:143 +#: src/Core/Renderer.php:132 msgid "template engine cannot be registered without a name." msgstr "" -#: src/Core/Renderer.php:177 +#: src/Core/Renderer.php:166 msgid "template engine is not registered!" msgstr "" -#: src/Core/Storage/Type/FilesystemConfig.php:78 +#: src/Core/Storage/Type/FilesystemConfig.php:64 msgid "Storage base path" msgstr "" -#: src/Core/Storage/Type/FilesystemConfig.php:80 +#: src/Core/Storage/Type/FilesystemConfig.php:66 msgid "" "Folder where uploaded files are saved. For maximum security, This should be " "a path outside web server folder tree" msgstr "" -#: src/Core/Storage/Type/FilesystemConfig.php:93 +#: src/Core/Storage/Type/FilesystemConfig.php:79 msgid "Enter a valid existing folder" msgstr "" -#: src/Core/Update.php:80 +#: src/Core/Update.php:66 #, php-format msgid "" "Updates from version %s are not supported. Please update at least to version" " 2021.01 and wait until the postupdate finished version 1383." msgstr "" -#: src/Core/Update.php:91 +#: src/Core/Update.php:77 #, php-format msgid "" "Updates from postupdate version %s are not supported. Please update at least" " to version 2021.01 and wait until the postupdate finished version 1383." msgstr "" -#: src/Core/Update.php:183 +#: src/Core/Update.php:169 #, php-format msgid "%s: executing pre update %d" msgstr "" -#: src/Core/Update.php:225 +#: src/Core/Update.php:211 #, php-format msgid "%s: executing post update %d" msgstr "" -#: src/Core/Update.php:299 +#: src/Core/Update.php:285 #, php-format msgid "Update %s failed. See error logs." msgstr "Malsukcesis ĝisdatigi %s. Vidu la protokolojn." -#: src/Core/Update.php:339 +#: src/Core/Update.php:325 #, php-format msgid "" "\n" @@ -3112,49 +3173,49 @@ msgid "" "\t\t\t\tfriendica developer if you can not help me on your own. My database might be invalid." msgstr "" -#: src/Core/Update.php:345 +#: src/Core/Update.php:331 #, php-format msgid "The error message is\\n[pre]%s[/pre]" msgstr "" -#: src/Core/Update.php:349 src/Core/Update.php:377 +#: src/Core/Update.php:335 src/Core/Update.php:363 msgid "[Friendica Notify] Database update" msgstr "" -#: src/Core/Update.php:371 +#: src/Core/Update.php:357 #, php-format msgid "" "\n" "\t\t\t\tThe friendica database was successfully updated from %s to %s." msgstr "" -#: src/Database/DBStructure.php:57 +#: src/Database/DBStructure.php:43 #, php-format msgid "The database version had been set to %s." msgstr "" -#: src/Database/DBStructure.php:82 +#: src/Database/DBStructure.php:68 #, php-format msgid "" "The post update is at version %d, it has to be at %d to safely drop the " "tables." msgstr "" -#: src/Database/DBStructure.php:95 +#: src/Database/DBStructure.php:81 msgid "No unused tables found." msgstr "" -#: src/Database/DBStructure.php:100 +#: src/Database/DBStructure.php:86 msgid "" "These tables are not used for friendica and will be deleted when you execute" " \"dbstructure drop -e\":" msgstr "" -#: src/Database/DBStructure.php:137 +#: src/Database/DBStructure.php:123 msgid "There are no tables on MyISAM or InnoDB with the Antelope file format." msgstr "" -#: src/Database/DBStructure.php:161 +#: src/Database/DBStructure.php:147 #, php-format msgid "" "\n" @@ -3162,659 +3223,654 @@ msgid "" "%s\n" msgstr "" -#: src/Database/DBStructure.php:164 +#: src/Database/DBStructure.php:150 msgid "Errors encountered performing database changes: " msgstr "" -#: src/Database/DBStructure.php:232 +#: src/Database/DBStructure.php:218 msgid "Another database update is currently running." msgstr "" -#: src/Database/DBStructure.php:236 +#: src/Database/DBStructure.php:222 #, php-format msgid "%s: Database update" msgstr "" -#: src/Database/DBStructure.php:493 +#: src/Database/DBStructure.php:479 #, php-format msgid "%s: updating %s table." msgstr "" -#: src/Factory/Api/Mastodon/Error.php:42 +#: src/Factory/Api/Mastodon/Error.php:28 msgid "Record not found" msgstr "" -#: src/Factory/Api/Mastodon/Error.php:49 +#: src/Factory/Api/Mastodon/Error.php:35 msgid "Unprocessable Entity" msgstr "" -#: src/Factory/Api/Mastodon/Error.php:56 +#: src/Factory/Api/Mastodon/Error.php:42 msgid "Unauthorized" msgstr "" -#: src/Factory/Api/Mastodon/Error.php:62 +#: src/Factory/Api/Mastodon/Error.php:48 msgid "" "Token is not authorized with a valid user or is missing a required scope" msgstr "" -#: src/Factory/Api/Mastodon/Error.php:69 +#: src/Factory/Api/Mastodon/Error.php:55 msgid "Internal Server Error" msgstr "" -#: src/LegacyModule.php:63 +#: src/LegacyModule.php:49 #, php-format msgid "Legacy module file not found: %s" msgstr "" -#: src/Model/Circle.php:106 +#: src/Model/Circle.php:92 msgid "" "A deleted circle with this name was revived. Existing item permissions " "may apply to this circle and any future members. If this is" " not what you intended, please create another circle with a different name." msgstr "" -#: src/Model/Circle.php:544 +#: src/Model/Circle.php:530 msgid "Everybody" msgstr "Ĉiuj" -#: src/Model/Circle.php:563 +#: src/Model/Circle.php:549 msgid "edit" msgstr "redakti" -#: src/Model/Circle.php:600 +#: src/Model/Circle.php:586 msgid "add" msgstr "aldoni" -#: src/Model/Circle.php:605 +#: src/Model/Circle.php:591 msgid "Edit circle" msgstr "" -#: src/Model/Circle.php:606 src/Module/Circle.php:193 +#: src/Model/Circle.php:592 src/Module/Circle.php:181 msgid "Contacts not in any circle" msgstr "" -#: src/Model/Circle.php:608 +#: src/Model/Circle.php:594 msgid "Create a new circle" msgstr "" -#: src/Model/Circle.php:609 src/Module/Circle.php:178 -#: src/Module/Circle.php:201 src/Module/Circle.php:276 +#: src/Model/Circle.php:595 src/Module/Circle.php:166 +#: src/Module/Circle.php:189 src/Module/Circle.php:264 msgid "Circle Name: " msgstr "" -#: src/Model/Circle.php:610 +#: src/Model/Circle.php:596 msgid "Edit circles" msgstr "" -#: src/Model/Contact.php:1257 src/Module/Moderation/Users/Pending.php:102 -#: src/Module/Notifications/Introductions.php:132 -#: src/Module/Notifications/Introductions.php:204 +#: src/Model/Contact.php:1263 src/Module/Moderation/Users/Pending.php:88 +#: src/Module/Notifications/Introductions.php:124 +#: src/Module/Notifications/Introductions.php:196 msgid "Approve" msgstr "Aprobi" -#: src/Model/Contact.php:1735 +#: src/Model/Contact.php:1743 msgid "Organisation" msgstr "" -#: src/Model/Contact.php:1743 +#: src/Model/Contact.php:1751 msgid "Group" msgstr "" -#: src/Model/Contact.php:1747 src/Module/Moderation/BaseUsers.php:130 +#: src/Model/Contact.php:1755 src/Module/Moderation/BaseUsers.php:120 msgid "Relay" msgstr "" -#: src/Model/Contact.php:3050 +#: src/Model/Contact.php:3070 msgid "Disallowed profile URL." msgstr "Malpermesita adreso de profilo." -#: src/Model/Contact.php:3055 src/Module/Friendica.php:101 +#: src/Model/Contact.php:3075 src/Module/Friendica.php:86 msgid "Blocked domain" msgstr "" -#: src/Model/Contact.php:3060 +#: src/Model/Contact.php:3080 msgid "Connect URL missing." msgstr "Ne ekzistas URL adreso por konekti." -#: src/Model/Contact.php:3069 +#: src/Model/Contact.php:3089 msgid "" "The contact could not be added. Please check the relevant network " "credentials in your Settings -> Social Networks page." msgstr "" -#: src/Model/Contact.php:3087 +#: src/Model/Contact.php:3107 #, php-format msgid "Expected network %s does not match actual network %s" msgstr "" -#: src/Model/Contact.php:3104 +#: src/Model/Contact.php:3124 msgid "This seems to be a relay account. They can't be followed by users." msgstr "" -#: src/Model/Contact.php:3111 +#: src/Model/Contact.php:3131 msgid "The profile address specified does not provide adequate information." msgstr "La specifita profiladreso ne enhavas sufiĉe da informoj." -#: src/Model/Contact.php:3113 +#: src/Model/Contact.php:3133 msgid "No compatible communication protocols or feeds were discovered." msgstr "Ne malkovris kongruajn protokolojn por komunikado aŭ fluojn." -#: src/Model/Contact.php:3116 +#: src/Model/Contact.php:3136 msgid "An author or name was not found." msgstr "Ne trovis aŭtoron aŭ nomon." -#: src/Model/Contact.php:3119 +#: src/Model/Contact.php:3139 msgid "No browser URL could be matched to this address." msgstr "Neniu retuma URL adreso kongruas al la adreso." -#: src/Model/Contact.php:3122 +#: src/Model/Contact.php:3142 msgid "" "Unable to match @-style Identity Address with a known protocol or email " "contact." msgstr "Ne eblas kongrui @-stilan identecon adreson al iu konata protokolo au retpoŝtadreso." -#: src/Model/Contact.php:3123 +#: src/Model/Contact.php:3143 msgid "Use mailto: in front of address to force email check." msgstr "Uzu mailto: antaŭ la adreso por devigi la testadon per retpoŝto." -#: src/Model/Contact.php:3129 -msgid "" -"The profile address specified belongs to a network which has been disabled " -"on this site." -msgstr "Tiu profila adreso apartenas al retejo kiu estas maŝaltita je ĉi tiu retejo." - -#: src/Model/Contact.php:3134 +#: src/Model/Contact.php:3149 msgid "" "Limited profile. This person will be unable to receive direct/personal " "notifications from you." msgstr "Profilo limigata. Ĉi persono ne eblos ricevi rektajn/personajn atentigojn de vi. " -#: src/Model/Contact.php:3200 +#: src/Model/Contact.php:3208 msgid "Unable to retrieve contact information." msgstr "Ne eblas ricevi kontaktinformojn." -#: src/Model/Event.php:54 +#: src/Model/Event.php:40 msgid "l F d, Y \\@ g:i A \\G\\M\\TP (e)" msgstr "" -#: src/Model/Event.php:75 src/Model/Event.php:92 src/Model/Event.php:469 -#: src/Model/Event.php:942 +#: src/Model/Event.php:61 src/Model/Event.php:78 src/Model/Event.php:455 +#: src/Model/Event.php:928 msgid "Starts:" msgstr "Ekas:" -#: src/Model/Event.php:78 src/Model/Event.php:98 src/Model/Event.php:470 -#: src/Model/Event.php:946 +#: src/Model/Event.php:64 src/Model/Event.php:84 src/Model/Event.php:456 +#: src/Model/Event.php:932 msgid "Finishes:" msgstr "Finas:" -#: src/Model/Event.php:419 +#: src/Model/Event.php:405 msgid "all-day" msgstr "" -#: src/Model/Event.php:445 +#: src/Model/Event.php:431 msgid "Sept" msgstr "" -#: src/Model/Event.php:462 src/Module/Calendar/Show.php:128 -#: src/Util/Temporal.php:343 +#: src/Model/Event.php:448 src/Module/Calendar/Show.php:114 +#: src/Util/Temporal.php:329 msgid "today" msgstr "" -#: src/Model/Event.php:463 src/Module/Calendar/Show.php:129 -#: src/Module/Settings/Display.php:297 src/Util/Temporal.php:353 +#: src/Model/Event.php:449 src/Module/Calendar/Show.php:115 +#: src/Module/Settings/Display.php:280 src/Util/Temporal.php:339 msgid "month" msgstr "monato" -#: src/Model/Event.php:464 src/Module/Calendar/Show.php:130 -#: src/Module/Settings/Display.php:298 src/Util/Temporal.php:354 +#: src/Model/Event.php:450 src/Module/Calendar/Show.php:116 +#: src/Module/Settings/Display.php:281 src/Util/Temporal.php:340 msgid "week" msgstr "semajno" -#: src/Model/Event.php:465 src/Module/Calendar/Show.php:131 -#: src/Module/Settings/Display.php:299 src/Util/Temporal.php:355 +#: src/Model/Event.php:451 src/Module/Calendar/Show.php:117 +#: src/Module/Settings/Display.php:282 src/Util/Temporal.php:341 msgid "day" msgstr "tago" -#: src/Model/Event.php:467 +#: src/Model/Event.php:453 msgid "No events to display" msgstr "" -#: src/Model/Event.php:516 src/Module/DFRN/Poll.php:47 src/Module/Feed.php:69 -#: src/Module/Update/Profile.php:56 +#: src/Model/Event.php:502 src/Module/Feed.php:56 +#: src/Module/Update/Profile.php:42 msgid "Access to this profile has been restricted." msgstr "Atingo al ĉi tio profilo estas limitigita" -#: src/Model/Event.php:558 src/Module/Calendar/Event/Show.php:67 +#: src/Model/Event.php:544 src/Module/Calendar/Event/Show.php:53 msgid "Event not found." msgstr "" -#: src/Model/Event.php:637 +#: src/Model/Event.php:623 msgid "l, F j" msgstr "l, F j" -#: src/Model/Event.php:664 +#: src/Model/Event.php:650 msgid "Edit event" msgstr "Redakti okazon" -#: src/Model/Event.php:665 +#: src/Model/Event.php:651 msgid "Duplicate event" msgstr "" -#: src/Model/Event.php:666 +#: src/Model/Event.php:652 msgid "Delete event" msgstr "" -#: src/Model/Event.php:896 src/Module/Debug/Localtime.php:38 +#: src/Model/Event.php:882 src/Module/Debug/Localtime.php:24 msgid "l F d, Y \\@ g:i A" msgstr "l F d, Y \\@ g:i A" -#: src/Model/Event.php:897 +#: src/Model/Event.php:883 msgid "D g:i A" msgstr "" -#: src/Model/Event.php:898 +#: src/Model/Event.php:884 msgid "g:i A" msgstr "" -#: src/Model/Event.php:961 src/Model/Event.php:963 +#: src/Model/Event.php:947 src/Model/Event.php:949 msgid "Show map" msgstr "" -#: src/Model/Event.php:962 +#: src/Model/Event.php:948 msgid "Hide map" msgstr "" -#: src/Model/Event.php:1055 +#: src/Model/Event.php:1041 #, php-format msgid "%s's birthday" msgstr "Naskiĝtago de %s" -#: src/Model/Event.php:1056 +#: src/Model/Event.php:1042 #, php-format msgid "Happy Birthday %s" msgstr "Feliĉan Naskiĝtagon al %s" -#: src/Model/Item.php:2305 +#: src/Model/Item.php:2322 #, php-format msgid "%s (%s - %s): %s" msgstr "" -#: src/Model/Item.php:2307 +#: src/Model/Item.php:2324 #, php-format msgid "%s (%s): %s" msgstr "" -#: src/Model/Item.php:2310 +#: src/Model/Item.php:2327 #, php-format -msgid "Detected languages in this post:\\n%s" +msgid "" +"Detected languages in this post:\n" +"%s" msgstr "" -#: src/Model/Item.php:3258 +#: src/Model/Item.php:3276 msgid "activity" msgstr "aktiveco" -#: src/Model/Item.php:3260 +#: src/Model/Item.php:3278 msgid "comment" msgstr "" -#: src/Model/Item.php:3263 src/Module/Post/Tag/Add.php:123 +#: src/Model/Item.php:3281 src/Module/Post/Tag/Add.php:109 msgid "post" msgstr "afiŝo" -#: src/Model/Item.php:3434 +#: src/Model/Item.php:3451 #, php-format msgid "%s is blocked" msgstr "" -#: src/Model/Item.php:3436 +#: src/Model/Item.php:3453 #, php-format msgid "%s is ignored" msgstr "" -#: src/Model/Item.php:3438 +#: src/Model/Item.php:3455 #, php-format msgid "Content from %s is collapsed" msgstr "" -#: src/Model/Item.php:3442 -#, php-format -msgid "Content warning: %s" +#: src/Model/Item.php:3459 +msgid "Sensitive content" msgstr "" -#: src/Model/Item.php:3906 +#: src/Model/Item.php:3928 msgid "bytes" msgstr "bajtoj" -#: src/Model/Item.php:3937 +#: src/Model/Item.php:3959 #, 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:3939 +#: src/Model/Item.php:3961 #, php-format msgid "%2$s (%1$d vote)" msgid_plural "%2$s (%1$d votes)" msgstr[0] "" msgstr[1] "" -#: src/Model/Item.php:3944 +#: src/Model/Item.php:3966 #, php-format msgid "%d voter. Poll end: %s" msgid_plural "%d voters. Poll end: %s" msgstr[0] "" msgstr[1] "" -#: src/Model/Item.php:3946 +#: src/Model/Item.php:3968 #, php-format msgid "%d voter." msgid_plural "%d voters." msgstr[0] "" msgstr[1] "" -#: src/Model/Item.php:3948 +#: src/Model/Item.php:3970 #, php-format msgid "Poll end: %s" msgstr "" -#: src/Model/Item.php:3982 src/Model/Item.php:3983 +#: src/Model/Item.php:4011 src/Model/Item.php:4012 msgid "View on separate page" msgstr "" -#: src/Model/Mail.php:135 +#: src/Model/Mail.php:121 msgid "[no subject]" msgstr "[neniu temo]" -#: src/Model/Photo.php:1187 src/Module/Media/Photo/Upload.php:168 +#: src/Model/Photo.php:1194 src/Module/Media/Photo/Upload.php:154 msgid "Wall Photos" msgstr "Muraj Bildoj" -#: src/Model/Profile.php:363 src/Module/Profile/Profile.php:283 -#: src/Module/Profile/Profile.php:285 +#: src/Model/Profile.php:343 src/Module/Profile/Profile.php:271 +#: src/Module/Profile/Profile.php:273 msgid "Edit profile" msgstr "Redakti profilon" -#: src/Model/Profile.php:365 +#: src/Model/Profile.php:345 msgid "Change profile photo" msgstr "Ŝanĝi profilbildon" -#: src/Model/Profile.php:378 src/Module/Directory.php:152 -#: src/Module/Profile/Profile.php:209 +#: src/Model/Profile.php:358 src/Module/Directory.php:139 +#: src/Module/Profile/Profile.php:197 msgid "Homepage:" msgstr "Hejmpaĝo:" -#: src/Model/Profile.php:379 src/Module/Contact/Profile.php:412 -#: src/Module/Notifications/Introductions.php:189 +#: src/Model/Profile.php:359 src/Module/Contact/Profile.php:418 +#: src/Module/Notifications/Introductions.php:181 msgid "About:" msgstr "Pri:" -#: src/Model/Profile.php:481 +#: src/Model/Profile.php:460 msgid "Atom feed" msgstr "" -#: src/Model/Profile.php:488 +#: src/Model/Profile.php:467 msgid "This website has been verified to belong to the same person." msgstr "" -#: src/Model/Profile.php:539 +#: src/Model/Profile.php:518 msgid "F d" msgstr "F d" -#: src/Model/Profile.php:603 src/Model/Profile.php:680 +#: src/Model/Profile.php:582 src/Model/Profile.php:663 msgid "[today]" msgstr "[hodiaŭ]" -#: src/Model/Profile.php:612 +#: src/Model/Profile.php:591 msgid "Birthday Reminders" msgstr "Memorigilo pri naskiĝtagoj" -#: src/Model/Profile.php:613 +#: src/Model/Profile.php:592 msgid "Birthdays this week:" msgstr "Naskiĝtagoj ĉi-semajne:" -#: src/Model/Profile.php:629 +#: src/Model/Profile.php:608 msgid "g A l F d" msgstr "\\j\\e \\l\\a G\\a \\h\\o\\r\\o, l F d" -#: src/Model/Profile.php:667 +#: src/Model/Profile.php:650 msgid "[No description]" msgstr "[Neniu priskribo]" -#: src/Model/Profile.php:693 +#: src/Model/Profile.php:676 msgid "Event Reminders" msgstr "Memorigilo pri Okazoj" -#: src/Model/Profile.php:694 +#: src/Model/Profile.php:677 msgid "Upcoming events the next 7 days:" msgstr "" -#: src/Model/Profile.php:893 -#, php-format -msgid "OpenWebAuth: %1$s welcomes %2$s" -msgstr "" - -#: src/Model/Profile.php:1033 +#: src/Model/Profile.php:789 msgid "Hometown:" msgstr "Hejmurbo:" -#: src/Model/Profile.php:1034 +#: src/Model/Profile.php:790 msgid "Marital Status:" msgstr "" -#: src/Model/Profile.php:1035 +#: src/Model/Profile.php:791 msgid "With:" msgstr "" -#: src/Model/Profile.php:1036 +#: src/Model/Profile.php:792 msgid "Since:" msgstr "" -#: src/Model/Profile.php:1037 +#: src/Model/Profile.php:793 msgid "Sexual Preference:" msgstr "Seksa Prefero:" -#: src/Model/Profile.php:1038 +#: src/Model/Profile.php:794 msgid "Political Views:" msgstr "Politikaj Opinioj:" -#: src/Model/Profile.php:1039 +#: src/Model/Profile.php:795 msgid "Religious Views:" msgstr "Religiaj Opinioj:" -#: src/Model/Profile.php:1040 +#: src/Model/Profile.php:796 msgid "Likes:" msgstr "Ŝatoj:" -#: src/Model/Profile.php:1041 +#: src/Model/Profile.php:797 msgid "Dislikes:" msgstr "Malŝatoj:" -#: src/Model/Profile.php:1042 +#: src/Model/Profile.php:798 msgid "Title/Description:" msgstr "Titolo/Priskribo:" -#: src/Model/Profile.php:1043 src/Module/Admin/Summary.php:197 -#: src/Module/Moderation/Report/Create.php:280 -#: src/Module/Moderation/Summary.php:76 +#: src/Model/Profile.php:799 src/Module/Admin/Summary.php:183 +#: src/Module/Moderation/Report/Create.php:266 +#: src/Module/Moderation/Summary.php:62 msgid "Summary" msgstr "Resumo" -#: src/Model/Profile.php:1044 +#: src/Model/Profile.php:800 msgid "Musical interests" msgstr "Muzikaj interesoj" -#: src/Model/Profile.php:1045 +#: src/Model/Profile.php:801 msgid "Books, literature" msgstr "Libroj, literaturo" -#: src/Model/Profile.php:1046 +#: src/Model/Profile.php:802 msgid "Television" msgstr "Televido" -#: src/Model/Profile.php:1047 +#: src/Model/Profile.php:803 msgid "Film/dance/culture/entertainment" msgstr "Filmoj/dancoj/arto/amuzaĵoj" -#: src/Model/Profile.php:1048 +#: src/Model/Profile.php:804 msgid "Hobbies/Interests" msgstr "Ŝatokupoj/Interesoj" -#: src/Model/Profile.php:1049 +#: src/Model/Profile.php:805 msgid "Love/romance" msgstr "Amo/romanco" -#: src/Model/Profile.php:1050 +#: src/Model/Profile.php:806 msgid "Work/employment" msgstr "Laboro" -#: src/Model/Profile.php:1051 +#: src/Model/Profile.php:807 msgid "School/education" msgstr "Lernejo/eduko" -#: src/Model/Profile.php:1052 +#: src/Model/Profile.php:808 msgid "Contact information and Social Networks" msgstr "Kontaktaj informoj kaj Interkonaj Retejoj" -#: src/Model/User.php:228 src/Model/User.php:1294 +#: src/Model/Profile.php:856 +#, php-format +msgid "Responsible account: %s" +msgstr "" + +#: src/Model/User.php:217 src/Model/User.php:1310 msgid "SERIOUS ERROR: Generation of security keys failed." msgstr "GRAVA ERARO: La generacio de sekurecaj ĉifroŝlosiloj malsukcesis." -#: src/Model/User.php:728 src/Model/User.php:761 +#: src/Model/User.php:740 src/Model/User.php:773 msgid "Login failed" msgstr "" -#: src/Model/User.php:793 +#: src/Model/User.php:805 msgid "Not enough information to authenticate" msgstr "" -#: src/Model/User.php:914 +#: src/Model/User.php:930 msgid "Password can't be empty" msgstr "" -#: src/Model/User.php:956 +#: src/Model/User.php:972 msgid "Empty passwords are not allowed." msgstr "" -#: src/Model/User.php:960 +#: src/Model/User.php:976 msgid "" "The new password has been exposed in a public data dump, please choose " "another." msgstr "" -#: src/Model/User.php:964 +#: src/Model/User.php:980 msgid "The password length is limited to 72 characters." msgstr "" -#: src/Model/User.php:968 +#: src/Model/User.php:984 msgid "The password can't contain white spaces nor accentuated letters" msgstr "" -#: src/Model/User.php:1177 +#: src/Model/User.php:1193 msgid "Passwords do not match. Password unchanged." msgstr "La pasvortoj ne estas egala. Pasvorto ne ŝanĝita." -#: src/Model/User.php:1184 +#: src/Model/User.php:1200 msgid "An invitation is required." msgstr "Invio bezonata." -#: src/Model/User.php:1188 +#: src/Model/User.php:1204 msgid "Invitation could not be verified." msgstr "Ne povis kontroli la inviton." -#: src/Model/User.php:1196 +#: src/Model/User.php:1212 msgid "Invalid OpenID url" msgstr "Nevalida OpenID adreso" -#: src/Model/User.php:1209 src/Security/Authentication.php:241 +#: src/Model/User.php:1225 src/Security/Authentication.php:214 msgid "" "We encountered a problem while logging in with the OpenID you provided. " "Please check the correct spelling of the ID." msgstr "Okazis problemo ensalutinta kun via OpenID. Bonvolu kontroli la ID." -#: src/Model/User.php:1209 src/Security/Authentication.php:241 +#: src/Model/User.php:1225 src/Security/Authentication.php:214 msgid "The error message was:" msgstr "La erarmesaĝo estis:" -#: src/Model/User.php:1215 +#: src/Model/User.php:1231 msgid "Please enter the required information." msgstr "Bonvolu entajpi la bezonatajn informojn." -#: src/Model/User.php:1229 +#: src/Model/User.php:1245 #, 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:1236 +#: src/Model/User.php:1252 #, 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:1240 +#: src/Model/User.php:1256 #, 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:1248 +#: src/Model/User.php:1264 msgid "That doesn't appear to be your full (First Last) name." msgstr "Tio ŝajne ne estas via plena (persona, familia) nomo." -#: src/Model/User.php:1253 +#: src/Model/User.php:1269 msgid "Your email domain is not among those allowed on this site." msgstr "Via retpoŝtodomajno ne estas permesita ĉi tie." -#: src/Model/User.php:1257 +#: src/Model/User.php:1273 msgid "Not a valid email address." msgstr "Nevalida retpoŝtadreso." -#: src/Model/User.php:1260 +#: src/Model/User.php:1276 msgid "The nickname was blocked from registration by the nodes admin." msgstr "" -#: src/Model/User.php:1264 src/Model/User.php:1270 +#: src/Model/User.php:1280 src/Model/User.php:1286 msgid "Cannot use that email." msgstr "Neuzebla retpoŝtadreso." -#: src/Model/User.php:1276 +#: src/Model/User.php:1292 msgid "Your nickname can only contain a-z, 0-9 and _." msgstr "" -#: src/Model/User.php:1284 src/Model/User.php:1341 +#: src/Model/User.php:1300 src/Model/User.php:1350 msgid "Nickname is already registered. Please choose another." msgstr "Tio kaŝnomo jam estas registrita. Bonvolu elekti alian." -#: src/Model/User.php:1328 src/Model/User.php:1332 +#: src/Model/User.php:1337 src/Model/User.php:1341 msgid "An error occurred during registration. Please try again." msgstr "Eraro okazis dum registrado. Bonvolu provi denove." -#: src/Model/User.php:1355 +#: src/Model/User.php:1364 msgid "An error occurred creating your default profile. Please try again." msgstr "Eraro okazi dum kreado de via defaŭlta profilo. Bonvolu provi denove." -#: src/Model/User.php:1362 +#: src/Model/User.php:1371 msgid "An error occurred creating your self contact. Please try again." msgstr "" -#: src/Model/User.php:1367 +#: src/Model/User.php:1376 msgid "Friends" msgstr "Amikoj" -#: src/Model/User.php:1371 +#: src/Model/User.php:1380 msgid "" "An error occurred creating your default contact circle. Please try again." msgstr "" -#: src/Model/User.php:1413 +#: src/Model/User.php:1428 msgid "Profile Photos" msgstr "Profilbildoj" -#: src/Model/User.php:1595 +#: src/Model/User.php:1616 #, php-format msgid "" "\n" @@ -3822,7 +3878,7 @@ msgid "" "\t\t\tthe administrator of %2$s has set up an account for you." msgstr "" -#: src/Model/User.php:1598 +#: src/Model/User.php:1619 #, php-format msgid "" "\n" @@ -3853,12 +3909,12 @@ msgid "" "\t\tThank you and welcome to %4$s." msgstr "" -#: src/Model/User.php:1630 src/Model/User.php:1736 +#: src/Model/User.php:1651 src/Model/User.php:1757 #, php-format msgid "Registration details for %s" msgstr "Detaloj de la registrado por %s" -#: src/Model/User.php:1650 +#: src/Model/User.php:1671 #, php-format msgid "" "\n" @@ -3873,12 +3929,12 @@ msgid "" "\t\t" msgstr "" -#: src/Model/User.php:1669 +#: src/Model/User.php:1690 #, php-format msgid "Registration at %s" msgstr "" -#: src/Model/User.php:1693 +#: src/Model/User.php:1714 #, php-format msgid "" "\n" @@ -3887,7 +3943,7 @@ msgid "" "\t\t\t" msgstr "" -#: src/Model/User.php:1701 +#: src/Model/User.php:1722 #, php-format msgid "" "\n" @@ -3918,93 +3974,91 @@ msgid "" "\t\t\tThank you and welcome to %2$s." msgstr "" -#: src/Model/User.php:1763 +#: src/Model/User.php:1784 msgid "" "User with delegates can't be removed, please remove delegate users first" msgstr "" -#: src/Module/Admin/Addons/Details.php:65 +#: src/Module/Admin/Addons/Details.php:51 msgid "Addon not found." msgstr "" -#: src/Module/Admin/Addons/Details.php:76 src/Module/Admin/Addons/Index.php:49 +#: src/Module/Admin/Addons/Details.php:62 src/Module/Admin/Addons/Index.php:41 #, php-format msgid "Addon %s disabled." msgstr "" -#: src/Module/Admin/Addons/Details.php:79 src/Module/Admin/Addons/Index.php:51 +#: src/Module/Admin/Addons/Details.php:65 src/Module/Admin/Addons/Index.php:43 #, php-format msgid "Addon %s enabled." msgstr "" -#: src/Module/Admin/Addons/Details.php:88 -#: src/Module/Admin/Themes/Details.php:46 +#: src/Module/Admin/Addons/Details.php:74 +#: src/Module/Admin/Themes/Details.php:38 msgid "Disable" msgstr "Malŝalti" -#: src/Module/Admin/Addons/Details.php:91 -#: src/Module/Admin/Themes/Details.php:49 src/Module/Settings/Display.php:344 +#: src/Module/Admin/Addons/Details.php:77 +#: src/Module/Admin/Themes/Details.php:41 src/Module/Settings/Display.php:326 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: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 -#: src/Module/Moderation/Users/Create.php:61 -#: src/Module/Moderation/Users/Pending.php:96 +#: src/Module/Admin/Addons/Details.php:97 src/Module/Admin/Addons/Index.php:59 +#: src/Module/Admin/Federation.php:206 src/Module/Admin/Logs/Settings.php:74 +#: src/Module/Admin/Logs/View.php:71 src/Module/Admin/Queue.php:59 +#: src/Module/Admin/Site.php:447 src/Module/Admin/Storage.php:124 +#: src/Module/Admin/Summary.php:182 src/Module/Admin/Themes/Details.php:82 +#: src/Module/Admin/Themes/Index.php:103 src/Module/Admin/Tos.php:63 +#: src/Module/Moderation/Users/Create.php:47 +#: src/Module/Moderation/Users/Pending.php:82 msgid "Administration" msgstr "Administrado" -#: src/Module/Admin/Addons/Details.php:112 -#: src/Module/Admin/Addons/Index.php:68 src/Module/BaseAdmin.php:92 -#: src/Module/BaseSettings.php:139 +#: src/Module/Admin/Addons/Details.php:98 src/Module/Admin/Addons/Index.php:60 +#: src/Module/BaseAdmin.php:78 src/Module/BaseSettings.php:125 msgid "Addons" msgstr "" -#: src/Module/Admin/Addons/Details.php:113 -#: src/Module/Admin/Themes/Details.php:92 +#: src/Module/Admin/Addons/Details.php:99 +#: src/Module/Admin/Themes/Details.php:84 msgid "Toggle" msgstr "Ŝalti/Malŝalti" -#: src/Module/Admin/Addons/Details.php:120 -#: src/Module/Admin/Themes/Details.php:100 +#: src/Module/Admin/Addons/Details.php:106 +#: src/Module/Admin/Themes/Details.php:92 msgid "Author: " msgstr "Aŭtoro: " -#: src/Module/Admin/Addons/Details.php:121 -#: src/Module/Admin/Themes/Details.php:101 +#: src/Module/Admin/Addons/Details.php:107 +#: src/Module/Admin/Themes/Details.php:93 msgid "Maintainer: " msgstr "Prizorganto: " -#: src/Module/Admin/Addons/Index.php:42 +#: src/Module/Admin/Addons/Index.php:34 msgid "Addons reloaded" msgstr "" -#: src/Module/Admin/Addons/Index.php:53 +#: src/Module/Admin/Addons/Index.php:45 #, php-format 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: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:312 -#: src/Module/Settings/Features.php:76 +#: src/Module/Admin/Addons/Index.php:61 src/Module/Admin/Features.php:69 +#: src/Module/Admin/Logs/Settings.php:76 src/Module/Admin/Site.php:450 +#: src/Module/Admin/Themes/Index.php:105 src/Module/Admin/Tos.php:72 +#: src/Module/Settings/Account.php:549 src/Module/Settings/Addons.php:64 +#: src/Module/Settings/Connectors.php:149 +#: src/Module/Settings/Connectors.php:235 +#: src/Module/Settings/Delegation.php:179 src/Module/Settings/Display.php:295 +#: src/Module/Settings/Features.php:61 msgid "Save Settings" msgstr "" -#: src/Module/Admin/Addons/Index.php:70 +#: src/Module/Admin/Addons/Index.php:62 msgid "Reload active addons" msgstr "" -#: src/Module/Admin/Addons/Index.php:74 +#: src/Module/Admin/Addons/Index.php:66 #, php-format msgid "" "There are currently no addons available on your node. You can find the " @@ -4012,145 +4066,158 @@ msgid "" " the open addon registry at %2$s" msgstr "" -#: src/Module/Admin/DBSync.php:51 +#: src/Module/Admin/DBSync.php:37 msgid "Update has been marked successful" msgstr "Ĝisdatigo estas markita sukcesa" -#: src/Module/Admin/DBSync.php:59 +#: src/Module/Admin/DBSync.php:45 #, php-format msgid "Database structure update %s was successfully applied." msgstr "" -#: src/Module/Admin/DBSync.php:61 +#: src/Module/Admin/DBSync.php:47 #, php-format msgid "Executing of database structure update %s failed with error: %s" msgstr "" -#: src/Module/Admin/DBSync.php:76 +#: src/Module/Admin/DBSync.php:62 #, php-format msgid "Executing %s failed with error: %s" msgstr "" -#: src/Module/Admin/DBSync.php:78 +#: src/Module/Admin/DBSync.php:64 #, php-format msgid "Update %s was successfully applied." msgstr "Sukcese aplikis la ĝisdatigo %s." -#: src/Module/Admin/DBSync.php:81 +#: src/Module/Admin/DBSync.php:67 #, php-format msgid "Update %s did not return a status. Unknown if it succeeded." msgstr "Ĝisdatigo %s ne liveris elirstaton. " -#: src/Module/Admin/DBSync.php:84 +#: src/Module/Admin/DBSync.php:70 #, php-format msgid "There was no additional update function %s that needed to be called." msgstr "" -#: src/Module/Admin/DBSync.php:105 +#: src/Module/Admin/DBSync.php:91 msgid "No failed updates." msgstr "Neniom da malsukcesaj ĝisdatigoj." -#: src/Module/Admin/DBSync.php:106 +#: src/Module/Admin/DBSync.php:92 msgid "Check database structure" msgstr "" -#: src/Module/Admin/DBSync.php:110 +#: src/Module/Admin/DBSync.php:96 msgid "Failed Updates" msgstr "Malsukcesaj Ĝisdatigoj" -#: src/Module/Admin/DBSync.php:111 +#: src/Module/Admin/DBSync.php:97 msgid "" "This does not include updates prior to 1139, which did not return a status." msgstr "Ne inkluzivas ĝisdatigojn antaŭ 1139, kiuj ne liveris elirstaton." -#: src/Module/Admin/DBSync.php:112 +#: src/Module/Admin/DBSync.php:98 msgid "Mark success (if update was manually applied)" msgstr "Marki sukcesa (se la ĝisdatigo estas instalita mane)" -#: src/Module/Admin/DBSync.php:113 +#: src/Module/Admin/DBSync.php:99 msgid "Attempt to execute this update step automatically" msgstr "Provi automate plenumi ĉi tian paŝon de la ĝisdatigo." -#: src/Module/Admin/Features.php:76 -#, php-format -msgid "Lock feature %s" +#: src/Module/Admin/Features.php:53 +#: src/Module/Notifications/Introductions.php:136 +#: src/Module/OAuth/Acknowledge.php:41 src/Module/Register.php:124 +#: src/Module/Settings/TwoFactor/Trusted.php:115 +msgid "No" +msgstr "Ne" + +#: src/Module/Admin/Features.php:53 src/Module/Contact/Revoke.php:91 +#: src/Module/Notifications/Introductions.php:136 +#: src/Module/OAuth/Acknowledge.php:40 src/Module/Register.php:123 +#: src/Module/Settings/TwoFactor/Trusted.php:115 +msgid "Yes" +msgstr "Jes" + +#: src/Module/Admin/Features.php:53 +msgid "Locked" msgstr "" -#: src/Module/Admin/Features.php:84 +#: src/Module/Admin/Features.php:67 msgid "Manage Additional Features" msgstr "" -#: src/Module/Admin/Federation.php:80 -#: src/Module/Moderation/Report/Create.php:191 -#: src/Module/Moderation/Report/Create.php:316 +#: src/Module/Admin/Federation.php:68 +#: src/Module/Moderation/Report/Create.php:177 +#: src/Module/Moderation/Report/Create.php:302 msgid "Other" msgstr "Alia" -#: src/Module/Admin/Federation.php:158 src/Module/Admin/Federation.php:407 +#: src/Module/Admin/Federation.php:146 src/Module/Admin/Federation.php:394 msgid "unknown" msgstr "" -#: src/Module/Admin/Federation.php:191 +#: src/Module/Admin/Federation.php:179 #, php-format msgid "%2$s total system" msgid_plural "%2$s total systems" msgstr[0] "" msgstr[1] "" -#: src/Module/Admin/Federation.php:192 +#: src/Module/Admin/Federation.php:180 #, php-format msgid "%2$s active user last month" msgid_plural "%2$s active users last month" msgstr[0] "" msgstr[1] "" -#: src/Module/Admin/Federation.php:193 +#: src/Module/Admin/Federation.php:181 #, php-format msgid "%2$s active user last six months" msgid_plural "%2$s active users last six months" msgstr[0] "" msgstr[1] "" -#: src/Module/Admin/Federation.php:194 +#: src/Module/Admin/Federation.php:182 #, php-format msgid "%2$s registered user" msgid_plural "%2$s registered users" msgstr[0] "" msgstr[1] "" -#: src/Module/Admin/Federation.php:195 +#: src/Module/Admin/Federation.php:183 #, php-format msgid "%2$s locally created post or comment" msgid_plural "%2$s locally created posts and comments" msgstr[0] "" msgstr[1] "" -#: src/Module/Admin/Federation.php:198 +#: src/Module/Admin/Federation.php:186 #, php-format msgid "%2$s post per user" msgid_plural "%2$s posts per user" msgstr[0] "" msgstr[1] "" -#: src/Module/Admin/Federation.php:203 +#: src/Module/Admin/Federation.php:191 #, php-format msgid "%2$s user per system" msgid_plural "%2$s users per system" msgstr[0] "" msgstr[1] "" -#: src/Module/Admin/Federation.php:213 +#: src/Module/Admin/Federation.php:201 msgid "" "This page offers you some numbers to the known part of the federated social " "network your Friendica node is part of. These numbers are not complete but " "only reflect the part of the network your node is aware of." msgstr "" -#: src/Module/Admin/Federation.php:219 src/Module/BaseAdmin.php:87 +#: src/Module/Admin/Federation.php:207 src/Module/BaseAdmin.php:73 msgid "Federation Statistics" msgstr "" -#: src/Module/Admin/Federation.php:223 +#: src/Module/Admin/Federation.php:210 #, php-format msgid "" "Currently this node is aware of %2$s node (%3$s active users last month, " @@ -4163,58 +4230,58 @@ msgid_plural "" msgstr[0] "" msgstr[1] "" -#: src/Module/Admin/Logs/Settings.php:47 +#: src/Module/Admin/Logs/Settings.php:33 #, php-format msgid "The logfile '%s' is not writable. No logging possible" msgstr "" -#: src/Module/Admin/Logs/Settings.php:77 +#: src/Module/Admin/Logs/Settings.php:66 msgid "PHP log currently enabled." msgstr "" -#: src/Module/Admin/Logs/Settings.php:79 +#: src/Module/Admin/Logs/Settings.php:68 msgid "PHP log currently disabled." msgstr "" -#: src/Module/Admin/Logs/Settings.php:86 src/Module/BaseAdmin.php:102 -#: src/Module/BaseAdmin.php:103 +#: src/Module/Admin/Logs/Settings.php:75 src/Module/BaseAdmin.php:88 +#: src/Module/BaseAdmin.php:89 msgid "Logs" msgstr "Protokoloj" -#: src/Module/Admin/Logs/Settings.php:88 +#: src/Module/Admin/Logs/Settings.php:77 msgid "Clear" msgstr "Forviŝi" -#: src/Module/Admin/Logs/Settings.php:91 +#: src/Module/Admin/Logs/Settings.php:80 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:480 -#: src/Module/Admin/Site.php:488 +#: src/Module/Admin/Logs/Settings.php:80 src/Module/Admin/Logs/Settings.php:81 +#: src/Module/Admin/Logs/Settings.php:82 src/Module/Admin/Site.php:470 +#: src/Module/Admin/Site.php:478 msgid "" "Read-only because it is set by an environment variable" msgstr "" -#: src/Module/Admin/Logs/Settings.php:92 +#: src/Module/Admin/Logs/Settings.php:81 msgid "Log file" msgstr "Protokolo" -#: src/Module/Admin/Logs/Settings.php:92 +#: src/Module/Admin/Logs/Settings.php:81 msgid "" "Must be writable by web server. Relative to your Friendica top-level " "directory." msgstr "Devas esti skribebla de la retservilo. Relativa al via plej supra Friendica dosierujo." -#: src/Module/Admin/Logs/Settings.php:93 +#: src/Module/Admin/Logs/Settings.php:82 msgid "Log level" msgstr "Protokolnivelo" -#: src/Module/Admin/Logs/Settings.php:95 +#: src/Module/Admin/Logs/Settings.php:84 msgid "PHP logging" msgstr "" -#: src/Module/Admin/Logs/Settings.php:96 +#: src/Module/Admin/Logs/Settings.php:85 msgid "" "To temporarily enable logging of PHP errors and warnings you can prepend the" " following to the index.php file of your installation. The filename set in " @@ -4223,398 +4290,407 @@ msgid "" "'display_errors' is to enable these options, set to '0' to disable them." msgstr "" -#: src/Module/Admin/Logs/View.php:70 +#: src/Module/Admin/Logs/View.php:58 #, php-format msgid "" "Error trying to open %1$s log file.
Check to see if " "file %1$s exist and is readable." msgstr "" -#: src/Module/Admin/Logs/View.php:79 +#: src/Module/Admin/Logs/View.php:67 #, php-format msgid "" "Couldn't open %1$s log file.
Check to see if file %1$s " "is readable." msgstr "" -#: src/Module/Admin/Logs/View.php:84 src/Module/BaseAdmin.php:104 +#: src/Module/Admin/Logs/View.php:72 src/Module/BaseAdmin.php:90 msgid "View Logs" msgstr "" -#: src/Module/Admin/Logs/View.php:87 +#: src/Module/Admin/Logs/View.php:75 msgid "Search in logs" msgstr "" -#: src/Module/Admin/Logs/View.php:88 -#: src/Module/Notifications/Notifications.php:140 +#: src/Module/Admin/Logs/View.php:76 +#: src/Module/Notifications/Notifications.php:132 msgid "Show all" msgstr "" -#: src/Module/Admin/Logs/View.php:89 +#: src/Module/Admin/Logs/View.php:77 msgid "Date" msgstr "" -#: src/Module/Admin/Logs/View.php:90 +#: src/Module/Admin/Logs/View.php:78 msgid "Level" msgstr "" -#: src/Module/Admin/Logs/View.php:91 +#: src/Module/Admin/Logs/View.php:79 msgid "Context" msgstr "" -#: src/Module/Admin/Logs/View.php:93 +#: src/Module/Admin/Logs/View.php:81 msgid "ALL" msgstr "" -#: src/Module/Admin/Logs/View.php:94 +#: src/Module/Admin/Logs/View.php:82 msgid "View details" msgstr "" -#: src/Module/Admin/Logs/View.php:95 +#: src/Module/Admin/Logs/View.php:83 msgid "Click to view details" msgstr "" -#: src/Module/Admin/Logs/View.php:96 src/Module/Calendar/Event/Form.php:207 +#: src/Module/Admin/Logs/View.php:84 src/Module/Calendar/Event/Form.php:193 msgid "Event details" msgstr "Detaloj de okazo" -#: src/Module/Admin/Logs/View.php:97 +#: src/Module/Admin/Logs/View.php:85 msgid "Data" msgstr "" -#: src/Module/Admin/Logs/View.php:98 -#: src/Module/Debug/ActivityPubConversion.php:57 +#: src/Module/Admin/Logs/View.php:86 +#: src/Module/Debug/ActivityPubConversion.php:49 msgid "Source" msgstr "" -#: src/Module/Admin/Logs/View.php:99 +#: src/Module/Admin/Logs/View.php:87 msgid "File" msgstr "" -#: src/Module/Admin/Logs/View.php:100 +#: src/Module/Admin/Logs/View.php:88 msgid "Line" msgstr "" -#: src/Module/Admin/Logs/View.php:101 +#: src/Module/Admin/Logs/View.php:89 msgid "Function" msgstr "" -#: src/Module/Admin/Logs/View.php:102 +#: src/Module/Admin/Logs/View.php:90 msgid "UID" msgstr "" -#: src/Module/Admin/Logs/View.php:103 +#: src/Module/Admin/Logs/View.php:91 msgid "Process ID" msgstr "" -#: src/Module/Admin/Logs/View.php:104 +#: src/Module/Admin/Logs/View.php:92 msgid "Close" msgstr "" -#: src/Module/Admin/Queue.php:50 +#: src/Module/Admin/Queue.php:36 msgid "Inspect Deferred Worker Queue" msgstr "" -#: src/Module/Admin/Queue.php:51 +#: src/Module/Admin/Queue.php:37 msgid "" "This page lists the deferred worker jobs. This are jobs that couldn't be " "executed at the first time." msgstr "" -#: src/Module/Admin/Queue.php:54 +#: src/Module/Admin/Queue.php:40 msgid "Inspect Worker Queue" msgstr "" -#: src/Module/Admin/Queue.php:55 +#: src/Module/Admin/Queue.php:41 msgid "" "This page lists the currently queued worker jobs. These jobs are handled by " "the worker cronjob you've set up during install." msgstr "" -#: src/Module/Admin/Queue.php:75 +#: src/Module/Admin/Queue.php:62 msgid "ID" msgstr "" -#: src/Module/Admin/Queue.php:76 +#: src/Module/Admin/Queue.php:63 msgid "Command" msgstr "" -#: src/Module/Admin/Queue.php:77 +#: src/Module/Admin/Queue.php:64 msgid "Job Parameters" msgstr "" -#: src/Module/Admin/Queue.php:78 src/Module/Moderation/Reports.php:95 -#: src/Module/Settings/OAuth.php:74 +#: src/Module/Admin/Queue.php:65 src/Module/Moderation/Reports.php:102 +#: src/Module/Settings/OAuth.php:60 msgid "Created" msgstr "" -#: src/Module/Admin/Queue.php:79 +#: src/Module/Admin/Queue.php:66 +msgid "Next Try" +msgstr "" + +#: src/Module/Admin/Queue.php:67 msgid "Priority" msgstr "" -#: src/Module/Admin/Site.php:244 +#: src/Module/Admin/Site.php:230 +#, php-format +msgid "%s is no valid input for maximum media size" +msgstr "" + +#: src/Module/Admin/Site.php:235 #, php-format msgid "%s is no valid input for maximum image size" msgstr "" -#: src/Module/Admin/Site.php:372 src/Module/Settings/Display.php:217 +#: src/Module/Admin/Site.php:362 src/Module/Settings/Display.php:201 msgid "No special theme for mobile devices" msgstr "" -#: src/Module/Admin/Site.php:389 src/Module/Settings/Display.php:227 +#: src/Module/Admin/Site.php:379 src/Module/Settings/Display.php:211 #, php-format msgid "%s - (Experimental)" msgstr "" -#: src/Module/Admin/Site.php:401 +#: src/Module/Admin/Site.php:391 msgid "No community page" msgstr "" -#: src/Module/Admin/Site.php:402 +#: src/Module/Admin/Site.php:392 msgid "No community page for visitors" msgstr "" -#: src/Module/Admin/Site.php:403 +#: src/Module/Admin/Site.php:393 msgid "Public postings from users of this site" msgstr "" -#: src/Module/Admin/Site.php:404 +#: src/Module/Admin/Site.php:394 msgid "Public postings from the federated network" msgstr "" -#: src/Module/Admin/Site.php:405 +#: src/Module/Admin/Site.php:395 msgid "Public postings from local users and the federated network" msgstr "" -#: src/Module/Admin/Site.php:411 +#: src/Module/Admin/Site.php:401 msgid "Multi user instance" msgstr "" -#: src/Module/Admin/Site.php:434 +#: src/Module/Admin/Site.php:424 msgid "Closed" msgstr "Ferma" -#: src/Module/Admin/Site.php:435 +#: src/Module/Admin/Site.php:425 msgid "Requires approval" msgstr "Bezonas aprobon" -#: src/Module/Admin/Site.php:436 +#: src/Module/Admin/Site.php:426 msgid "Open" msgstr "Malferma" -#: src/Module/Admin/Site.php:440 +#: src/Module/Admin/Site.php:430 msgid "Don't check" msgstr "" -#: src/Module/Admin/Site.php:441 +#: src/Module/Admin/Site.php:431 msgid "check the stable version" msgstr "" -#: src/Module/Admin/Site.php:442 +#: src/Module/Admin/Site.php:432 msgid "check the development version" msgstr "" -#: src/Module/Admin/Site.php:446 +#: src/Module/Admin/Site.php:436 msgid "none" msgstr "" -#: src/Module/Admin/Site.php:447 +#: src/Module/Admin/Site.php:437 msgid "Local contacts" msgstr "" -#: src/Module/Admin/Site.php:448 +#: src/Module/Admin/Site.php:438 msgid "Interactors" msgstr "" -#: src/Module/Admin/Site.php:458 src/Module/BaseAdmin.php:90 +#: src/Module/Admin/Site.php:448 src/Module/BaseAdmin.php:76 msgid "Site" msgstr "Retejo" -#: src/Module/Admin/Site.php:459 +#: src/Module/Admin/Site.php:449 msgid "General Information" msgstr "" -#: src/Module/Admin/Site.php:461 +#: src/Module/Admin/Site.php:451 msgid "Republish users to directory" msgstr "" -#: src/Module/Admin/Site.php:462 src/Module/Register.php:152 +#: src/Module/Admin/Site.php:452 src/Module/Register.php:145 msgid "Registration" msgstr "Registrado" -#: src/Module/Admin/Site.php:463 +#: src/Module/Admin/Site.php:453 msgid "File upload" msgstr "Alŝuto" -#: src/Module/Admin/Site.php:464 +#: src/Module/Admin/Site.php:454 msgid "Policies" msgstr "Politiko" -#: src/Module/Admin/Site.php:465 src/Module/Calendar/Event/Form.php:252 -#: src/Module/Contact.php:546 src/Module/Profile/Profile.php:276 +#: src/Module/Admin/Site.php:455 src/Module/Calendar/Event/Form.php:238 +#: src/Module/Contact.php:528 src/Module/Profile/Profile.php:264 msgid "Advanced" msgstr "Altnivela" -#: src/Module/Admin/Site.php:466 +#: src/Module/Admin/Site.php:456 msgid "Auto Discovered Contact Directory" msgstr "" -#: src/Module/Admin/Site.php:467 +#: src/Module/Admin/Site.php:457 msgid "Performance" msgstr "" -#: src/Module/Admin/Site.php:468 +#: src/Module/Admin/Site.php:458 msgid "Worker" msgstr "" -#: src/Module/Admin/Site.php:469 +#: src/Module/Admin/Site.php:459 msgid "Message Relay" msgstr "" -#: src/Module/Admin/Site.php:470 +#: src/Module/Admin/Site.php:460 msgid "" "Use the command \"console relay\" in the command line to add or remove " "relays." msgstr "" -#: src/Module/Admin/Site.php:471 +#: src/Module/Admin/Site.php:461 msgid "The system is not subscribed to any relays at the moment." msgstr "" -#: src/Module/Admin/Site.php:472 +#: src/Module/Admin/Site.php:462 msgid "The system is currently subscribed to the following relays:" msgstr "" -#: src/Module/Admin/Site.php:475 +#: src/Module/Admin/Site.php:465 msgid "Relocate Node" msgstr "" -#: src/Module/Admin/Site.php:476 +#: src/Module/Admin/Site.php:466 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:477 +#: src/Module/Admin/Site.php:467 msgid "(Friendica directory)# bin/console relocate https://newdomain.com" msgstr "" -#: src/Module/Admin/Site.php:480 +#: src/Module/Admin/Site.php:470 msgid "Site name" msgstr "Nomo de retejo" -#: src/Module/Admin/Site.php:481 +#: src/Module/Admin/Site.php:471 msgid "Sender Email" msgstr "" -#: src/Module/Admin/Site.php:481 +#: src/Module/Admin/Site.php:471 msgid "" "The email address your server shall use to send notification emails from." msgstr "" -#: src/Module/Admin/Site.php:482 +#: src/Module/Admin/Site.php:472 msgid "Name of the system actor" msgstr "" -#: src/Module/Admin/Site.php:482 +#: src/Module/Admin/Site.php:472 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:483 +#: src/Module/Admin/Site.php:473 msgid "Banner/Logo" msgstr "Emblemo" -#: src/Module/Admin/Site.php:484 +#: src/Module/Admin/Site.php:474 msgid "Email Banner/Logo" msgstr "" -#: src/Module/Admin/Site.php:485 +#: src/Module/Admin/Site.php:475 msgid "Shortcut icon" msgstr "" -#: src/Module/Admin/Site.php:485 +#: src/Module/Admin/Site.php:475 msgid "Link to an icon that will be used for browsers." msgstr "" -#: src/Module/Admin/Site.php:486 +#: src/Module/Admin/Site.php:476 msgid "Touch icon" msgstr "" -#: src/Module/Admin/Site.php:486 +#: src/Module/Admin/Site.php:476 msgid "Link to an icon that will be used for tablets and mobiles." msgstr "" -#: src/Module/Admin/Site.php:487 +#: src/Module/Admin/Site.php:477 msgid "Additional Info" msgstr "" -#: src/Module/Admin/Site.php:487 +#: src/Module/Admin/Site.php:477 #, 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:488 +#: src/Module/Admin/Site.php:478 msgid "System language" msgstr "Sistema lingvo" -#: src/Module/Admin/Site.php:489 +#: src/Module/Admin/Site.php:479 msgid "System theme" msgstr "Sistema etoso" -#: src/Module/Admin/Site.php:489 +#: src/Module/Admin/Site.php:479 #, php-format msgid "" "Default system theme - may be over-ridden by user profiles - Change default theme settings" msgstr "" -#: src/Module/Admin/Site.php:490 +#: src/Module/Admin/Site.php:480 msgid "Mobile system theme" msgstr "" -#: src/Module/Admin/Site.php:490 +#: src/Module/Admin/Site.php:480 msgid "Theme for mobile devices" msgstr "" -#: src/Module/Admin/Site.php:491 +#: src/Module/Admin/Site.php:481 msgid "Force SSL" msgstr "" -#: src/Module/Admin/Site.php:491 +#: src/Module/Admin/Site.php:481 msgid "" "Force all Non-SSL requests to SSL - Attention: on some systems it could lead" " to endless loops." msgstr "" -#: src/Module/Admin/Site.php:492 +#: src/Module/Admin/Site.php:482 msgid "Show help entry from navigation menu" msgstr "" -#: src/Module/Admin/Site.php:492 +#: src/Module/Admin/Site.php:482 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:493 +#: src/Module/Admin/Site.php:483 msgid "Single user instance" msgstr "" -#: src/Module/Admin/Site.php:493 +#: src/Module/Admin/Site.php:483 msgid "Make this instance multi-user or single-user for the named user" msgstr "" -#: src/Module/Admin/Site.php:495 +#: src/Module/Admin/Site.php:485 msgid "Maximum image size" msgstr "Maksimuma bildgrando" -#: src/Module/Admin/Site.php:495 +#: src/Module/Admin/Site.php:485 #, 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" @@ -4622,35 +4698,47 @@ 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:499 +#: src/Module/Admin/Site.php:489 msgid "Maximum image length" msgstr "" -#: src/Module/Admin/Site.php:499 +#: src/Module/Admin/Site.php:489 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:500 +#: src/Module/Admin/Site.php:490 msgid "JPEG image quality" msgstr "" -#: src/Module/Admin/Site.php:500 +#: src/Module/Admin/Site.php:490 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:502 +#: src/Module/Admin/Site.php:491 +msgid "Maximum media file size" +msgstr "" + +#: src/Module/Admin/Site.php:491 +#, php-format +msgid "" +"Maximum size in bytes of uploaded media files. Default is 0, which means no limits. You can put k, m, or g behind the desired value for KiB, MiB, GiB, respectively.\n" +"\t\t\t\t\t\t\t\t\t\t\t\t\tThe value of upload_max_filesize in your PHP.ini needs be set to at least the desired limit.\n" +"\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:496 msgid "Register policy" msgstr "Interkonsento pri registrado" -#: src/Module/Admin/Site.php:503 +#: src/Module/Admin/Site.php:497 msgid "Maximum Users" msgstr "" -#: src/Module/Admin/Site.php:503 +#: src/Module/Admin/Site.php:497 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 " @@ -4658,167 +4746,167 @@ msgid "" "not when the policy is set to approval." msgstr "" -#: src/Module/Admin/Site.php:504 +#: src/Module/Admin/Site.php:498 msgid "Maximum Daily Registrations" msgstr "" -#: src/Module/Admin/Site.php:504 +#: src/Module/Admin/Site.php:498 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:505 +#: src/Module/Admin/Site.php:499 msgid "Register text" msgstr "Interkonsento teksto" -#: src/Module/Admin/Site.php:505 +#: src/Module/Admin/Site.php:499 msgid "" "Will be displayed prominently on the registration page. You can use BBCode " "here." msgstr "" -#: src/Module/Admin/Site.php:506 +#: src/Module/Admin/Site.php:500 msgid "Forbidden Nicknames" msgstr "" -#: src/Module/Admin/Site.php:506 +#: src/Module/Admin/Site.php:500 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:507 +#: src/Module/Admin/Site.php:501 msgid "Accounts abandoned after x days" msgstr "Kontoj forlasitaj post x tagoj" -#: src/Module/Admin/Site.php:507 +#: src/Module/Admin/Site.php:501 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:508 +#: src/Module/Admin/Site.php:502 msgid "Allowed friend domains" msgstr "Permesitaj amikaj domainoj" -#: src/Module/Admin/Site.php:508 +#: src/Module/Admin/Site.php:502 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:509 +#: src/Module/Admin/Site.php:503 msgid "Allowed email domains" msgstr "Permesitaj retpoŝtaj domajnoj" -#: src/Module/Admin/Site.php:509 +#: src/Module/Admin/Site.php:503 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:510 +#: src/Module/Admin/Site.php:504 msgid "Disallowed email domains" msgstr "" -#: src/Module/Admin/Site.php:510 +#: src/Module/Admin/Site.php:504 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 +#: src/Module/Admin/Site.php:505 msgid "No OEmbed rich content" msgstr "" -#: src/Module/Admin/Site.php:511 +#: src/Module/Admin/Site.php:505 msgid "" "Don't show the rich content (e.g. embedded PDF), except from the domains " "listed below." msgstr "" -#: src/Module/Admin/Site.php:512 +#: src/Module/Admin/Site.php:506 msgid "Trusted third-party domains" msgstr "" -#: src/Module/Admin/Site.php:512 +#: src/Module/Admin/Site.php:506 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:513 +#: src/Module/Admin/Site.php:507 msgid "Block public" msgstr "Bloki publike" -#: src/Module/Admin/Site.php:513 +#: src/Module/Admin/Site.php:507 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:514 +#: src/Module/Admin/Site.php:508 msgid "Force publish" msgstr "Devigi publikigon" -#: src/Module/Admin/Site.php:514 +#: src/Module/Admin/Site.php:508 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:514 +#: src/Module/Admin/Site.php:508 msgid "Enabling this may violate privacy laws like the GDPR" msgstr "" -#: src/Module/Admin/Site.php:515 +#: src/Module/Admin/Site.php:509 msgid "Global directory URL" msgstr "" -#: src/Module/Admin/Site.php:515 +#: src/Module/Admin/Site.php:509 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:516 +#: src/Module/Admin/Site.php:510 msgid "Private posts by default for new users" msgstr "" -#: src/Module/Admin/Site.php:516 +#: src/Module/Admin/Site.php:510 msgid "" "Set default post permissions for all new members to the default privacy " "circle rather than public." msgstr "" -#: src/Module/Admin/Site.php:517 +#: src/Module/Admin/Site.php:511 msgid "Don't include post content in email notifications" msgstr "" -#: src/Module/Admin/Site.php:517 +#: src/Module/Admin/Site.php:511 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:518 +#: src/Module/Admin/Site.php:512 msgid "Disallow public access to addons listed in the apps menu." msgstr "" -#: src/Module/Admin/Site.php:518 +#: src/Module/Admin/Site.php:512 msgid "" "Checking this box will restrict addons listed in the apps menu to members " "only." msgstr "" -#: src/Module/Admin/Site.php:519 +#: src/Module/Admin/Site.php:513 msgid "Don't embed private images in posts" msgstr "" -#: src/Module/Admin/Site.php:519 +#: src/Module/Admin/Site.php:513 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 " @@ -4826,11 +4914,11 @@ msgid "" "while." msgstr "" -#: src/Module/Admin/Site.php:520 +#: src/Module/Admin/Site.php:514 msgid "Explicit Content" msgstr "" -#: src/Module/Admin/Site.php:520 +#: src/Module/Admin/Site.php:514 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 " @@ -4839,339 +4927,319 @@ msgid "" "will be shown at the user registration page." msgstr "" -#: src/Module/Admin/Site.php:521 -msgid "Proxify external content" -msgstr "" - -#: 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:522 +#: src/Module/Admin/Site.php:515 msgid "Only local search" msgstr "" -#: src/Module/Admin/Site.php:522 +#: src/Module/Admin/Site.php:515 msgid "" "Blocks search for users who are not logged in to prevent crawlers from " "blocking your system." msgstr "" -#: src/Module/Admin/Site.php:523 +#: src/Module/Admin/Site.php:516 msgid "Blocked tags for trending tags" msgstr "" -#: src/Module/Admin/Site.php:523 +#: src/Module/Admin/Site.php:516 msgid "" "Comma separated list of hashtags that shouldn't be displayed in the trending" " tags." msgstr "" -#: src/Module/Admin/Site.php:524 +#: src/Module/Admin/Site.php:517 msgid "Cache contact avatars" msgstr "" -#: src/Module/Admin/Site.php:524 +#: src/Module/Admin/Site.php:517 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:525 +#: src/Module/Admin/Site.php:518 msgid "Allow Users to set remote_self" msgstr "" -#: src/Module/Admin/Site.php:525 +#: src/Module/Admin/Site.php:518 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:526 +#: src/Module/Admin/Site.php:519 msgid "Allow Users to set up relay channels" msgstr "" -#: src/Module/Admin/Site.php:526 +#: src/Module/Admin/Site.php:519 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:527 +#: src/Module/Admin/Site.php:520 msgid "Adjust the feed poll frequency" msgstr "" -#: src/Module/Admin/Site.php:527 +#: src/Module/Admin/Site.php:520 msgid "Automatically detect and set the best feed poll frequency." msgstr "" -#: src/Module/Admin/Site.php:528 +#: src/Module/Admin/Site.php:521 msgid "Minimum poll interval" msgstr "" -#: src/Module/Admin/Site.php:528 +#: src/Module/Admin/Site.php:521 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:529 +#: src/Module/Admin/Site.php:522 msgid "Enable multiple registrations" msgstr "" -#: src/Module/Admin/Site.php:529 +#: src/Module/Admin/Site.php:522 msgid "Enable users to register additional accounts for use as pages." msgstr "" -#: src/Module/Admin/Site.php:530 +#: src/Module/Admin/Site.php:523 msgid "Enable OpenID" msgstr "" -#: src/Module/Admin/Site.php:530 +#: src/Module/Admin/Site.php:523 msgid "Enable OpenID support for registration and logins." msgstr "" -#: src/Module/Admin/Site.php:531 +#: src/Module/Admin/Site.php:524 msgid "Enable full name check" msgstr "" -#: src/Module/Admin/Site.php:531 +#: src/Module/Admin/Site.php:524 msgid "" "Prevents users from registering with a display name with fewer than two " "parts separated by spaces." msgstr "" -#: src/Module/Admin/Site.php:532 +#: src/Module/Admin/Site.php:525 msgid "Email administrators on new registration" msgstr "" -#: src/Module/Admin/Site.php:532 +#: src/Module/Admin/Site.php:525 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:533 +#: src/Module/Admin/Site.php:526 msgid "Community pages for visitors" msgstr "" -#: src/Module/Admin/Site.php:533 +#: src/Module/Admin/Site.php:526 msgid "" "Which community pages should be available for visitors. Local users always " "see both pages." msgstr "" -#: src/Module/Admin/Site.php:534 +#: src/Module/Admin/Site.php:527 msgid "Posts per user on community page" msgstr "" -#: src/Module/Admin/Site.php:534 +#: src/Module/Admin/Site.php:527 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:535 +#: src/Module/Admin/Site.php:528 msgid "Posts per server on community page" msgstr "" -#: src/Module/Admin/Site.php:535 +#: src/Module/Admin/Site.php:528 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:537 +#: src/Module/Admin/Site.php:530 msgid "Enable Mail support" msgstr "" -#: src/Module/Admin/Site.php:537 +#: src/Module/Admin/Site.php:530 msgid "" "Enable built-in mail support to poll IMAP folders and to reply via mail." msgstr "" -#: src/Module/Admin/Site.php:538 +#: src/Module/Admin/Site.php:531 msgid "" "Mail support can't be enabled because the PHP IMAP module is not installed." msgstr "" -#: src/Module/Admin/Site.php:539 -msgid "Enable OStatus support" -msgstr "" - -#: 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:541 +#: src/Module/Admin/Site.php:533 msgid "" "Diaspora support can't be enabled because Friendica was installed into a sub" " directory." msgstr "" -#: src/Module/Admin/Site.php:542 +#: src/Module/Admin/Site.php:534 msgid "Enable Diaspora support" msgstr "Ŝalti subtenon por Diaspora" -#: src/Module/Admin/Site.php:542 +#: src/Module/Admin/Site.php:534 msgid "" "Enable built-in Diaspora network compatibility for communicating with " "diaspora servers." msgstr "" -#: src/Module/Admin/Site.php:543 +#: src/Module/Admin/Site.php:535 msgid "Verify SSL" msgstr "Kontroli SSL" -#: src/Module/Admin/Site.php:543 +#: src/Module/Admin/Site.php:535 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:544 +#: src/Module/Admin/Site.php:536 msgid "Proxy user" msgstr "Uzantnomo por retperanto" -#: src/Module/Admin/Site.php:544 +#: src/Module/Admin/Site.php:536 msgid "User name for the proxy server." msgstr "" -#: src/Module/Admin/Site.php:545 +#: src/Module/Admin/Site.php:537 msgid "Proxy URL" msgstr "URL adreso de retperanto" -#: src/Module/Admin/Site.php:545 +#: src/Module/Admin/Site.php:537 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:546 +#: src/Module/Admin/Site.php:538 msgid "Network timeout" msgstr "Reta tempolimo" -#: src/Module/Admin/Site.php:546 +#: src/Module/Admin/Site.php:538 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:547 +#: src/Module/Admin/Site.php:539 msgid "Maximum Load Average" msgstr "Maksimuma Meza Sistemŝargo" -#: src/Module/Admin/Site.php:547 +#: src/Module/Admin/Site.php:539 #, php-format msgid "" "Maximum system load before delivery and poll processes are deferred - " "default %d." msgstr "" -#: src/Module/Admin/Site.php:548 +#: src/Module/Admin/Site.php:540 msgid "Minimal Memory" msgstr "" -#: src/Module/Admin/Site.php:548 +#: src/Module/Admin/Site.php:540 msgid "" "Minimal free memory in MB for the worker. Needs access to /proc/meminfo - " "default 0 (deactivated)." msgstr "" -#: src/Module/Admin/Site.php:549 +#: src/Module/Admin/Site.php:541 msgid "Periodically optimize tables" msgstr "" -#: src/Module/Admin/Site.php:549 +#: src/Module/Admin/Site.php:541 msgid "Periodically optimize tables like the cache and the workerqueue" msgstr "" -#: src/Module/Admin/Site.php:551 +#: src/Module/Admin/Site.php:543 msgid "Discover followers/followings from contacts" msgstr "" -#: src/Module/Admin/Site.php:551 +#: src/Module/Admin/Site.php:543 msgid "" "If enabled, contacts are checked for their followers and following contacts." msgstr "" -#: src/Module/Admin/Site.php:552 +#: src/Module/Admin/Site.php:544 msgid "None - deactivated" msgstr "" -#: src/Module/Admin/Site.php:553 +#: src/Module/Admin/Site.php:545 msgid "" "Local contacts - contacts of our local contacts are discovered for their " "followers/followings." msgstr "" -#: src/Module/Admin/Site.php:554 +#: src/Module/Admin/Site.php:546 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:556 +#: src/Module/Admin/Site.php:548 msgid "Only update contacts/servers with local data" msgstr "" -#: src/Module/Admin/Site.php:556 +#: src/Module/Admin/Site.php:548 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:557 +#: src/Module/Admin/Site.php:549 msgid "Synchronize the contacts with the directory server" msgstr "" -#: src/Module/Admin/Site.php:557 +#: src/Module/Admin/Site.php:549 msgid "" "if enabled, the system will check periodically for new contacts on the " "defined directory server." msgstr "" -#: src/Module/Admin/Site.php:559 +#: src/Module/Admin/Site.php:551 msgid "Discover contacts from other servers" msgstr "" -#: src/Module/Admin/Site.php:559 +#: src/Module/Admin/Site.php:551 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:560 +#: src/Module/Admin/Site.php:552 msgid "Days between requery" msgstr "" -#: src/Module/Admin/Site.php:560 +#: src/Module/Admin/Site.php:552 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:561 +#: src/Module/Admin/Site.php:553 msgid "Search the local directory" msgstr "" -#: src/Module/Admin/Site.php:561 +#: src/Module/Admin/Site.php:553 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:563 +#: src/Module/Admin/Site.php:555 msgid "Publish server information" msgstr "" -#: src/Module/Admin/Site.php:563 +#: src/Module/Admin/Site.php:555 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 " @@ -5179,50 +5247,50 @@ msgid "" " href=\"http://the-federation.info/\">the-federation.info for details." msgstr "" -#: src/Module/Admin/Site.php:565 +#: src/Module/Admin/Site.php:557 msgid "Check upstream version" msgstr "" -#: src/Module/Admin/Site.php:565 +#: src/Module/Admin/Site.php:557 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:566 +#: src/Module/Admin/Site.php:558 msgid "Suppress Tags" msgstr "" -#: src/Module/Admin/Site.php:566 +#: src/Module/Admin/Site.php:558 msgid "Suppress showing a list of hashtags at the end of the posting." msgstr "" -#: src/Module/Admin/Site.php:567 +#: src/Module/Admin/Site.php:559 msgid "Clean database" msgstr "" -#: src/Module/Admin/Site.php:567 +#: src/Module/Admin/Site.php:559 msgid "" "Remove old remote items, orphaned database records and old content from some" " other helper tables." msgstr "" -#: src/Module/Admin/Site.php:568 +#: src/Module/Admin/Site.php:560 msgid "Lifespan of remote items" msgstr "" -#: src/Module/Admin/Site.php:568 +#: src/Module/Admin/Site.php:560 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:569 +#: src/Module/Admin/Site.php:561 msgid "Lifespan of unclaimed items" msgstr "" -#: src/Module/Admin/Site.php:569 +#: src/Module/Admin/Site.php:561 msgid "" "When the database cleanup is enabled, this defines the days after which " "unclaimed remote items (mostly content from the relay) will be deleted. " @@ -5230,175 +5298,184 @@ msgid "" "items if set to 0." msgstr "" -#: src/Module/Admin/Site.php:570 +#: src/Module/Admin/Site.php:562 msgid "Lifespan of raw conversation data" msgstr "" -#: src/Module/Admin/Site.php:570 +#: src/Module/Admin/Site.php:562 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." +"The conversation data is used for ActivityPub, 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:571 +#: src/Module/Admin/Site.php:563 msgid "Maximum numbers of comments per post" msgstr "" -#: src/Module/Admin/Site.php:571 +#: src/Module/Admin/Site.php:563 msgid "How much comments should be shown for each post? Default value is 100." msgstr "" -#: src/Module/Admin/Site.php:572 +#: src/Module/Admin/Site.php:564 msgid "Maximum numbers of comments per post on the display page" msgstr "" -#: src/Module/Admin/Site.php:572 +#: src/Module/Admin/Site.php:564 msgid "" "How many comments should be shown on the single view for each post? Default " "value is 1000." msgstr "" -#: src/Module/Admin/Site.php:573 +#: src/Module/Admin/Site.php:565 msgid "Items per page" msgstr "" -#: src/Module/Admin/Site.php:573 +#: src/Module/Admin/Site.php:565 msgid "" "Number of items per page in stream pages (network, community, " "profile/contact statuses, search)." msgstr "" -#: src/Module/Admin/Site.php:574 +#: src/Module/Admin/Site.php:566 msgid "Items per page for mobile devices" msgstr "" -#: src/Module/Admin/Site.php:574 +#: src/Module/Admin/Site.php:566 msgid "" "Number of items per page in stream pages (network, community, " "profile/contact statuses, search) for mobile devices." msgstr "" -#: src/Module/Admin/Site.php:575 +#: src/Module/Admin/Site.php:567 msgid "Temp path" msgstr "" -#: src/Module/Admin/Site.php:575 +#: src/Module/Admin/Site.php:567 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:576 +#: src/Module/Admin/Site.php:568 msgid "Only search in tags" msgstr "" -#: src/Module/Admin/Site.php:576 +#: src/Module/Admin/Site.php:568 msgid "On large systems the text search can slow down the system extremely." msgstr "" -#: src/Module/Admin/Site.php:577 +#: src/Module/Admin/Site.php:569 +msgid "Limited search scope" +msgstr "" + +#: src/Module/Admin/Site.php:569 +msgid "" +"If enabled, searches will only be performed in the data used for the " +"channels and not in all posts." +msgstr "" + +#: src/Module/Admin/Site.php:570 msgid "Maximum age of items in the search table" msgstr "" -#: src/Module/Admin/Site.php:577 +#: src/Module/Admin/Site.php:570 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:578 +#: src/Module/Admin/Site.php:571 msgid "Generate counts per contact circle when calculating network count" msgstr "" -#: src/Module/Admin/Site.php:578 +#: src/Module/Admin/Site.php:571 msgid "" "On systems with users that heavily use contact circles the query can be very" " expensive." msgstr "" -#: src/Module/Admin/Site.php:579 +#: src/Module/Admin/Site.php:572 msgid "Process \"view\" activities" msgstr "" -#: src/Module/Admin/Site.php:579 +#: src/Module/Admin/Site.php:572 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:580 +#: src/Module/Admin/Site.php:573 msgid "Days, after which a contact is archived" msgstr "" -#: src/Module/Admin/Site.php:580 +#: src/Module/Admin/Site.php:573 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:582 +#: src/Module/Admin/Site.php:575 msgid "Maximum number of parallel workers" msgstr "" -#: src/Module/Admin/Site.php:582 +#: src/Module/Admin/Site.php:575 #, 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:583 +#: src/Module/Admin/Site.php:576 msgid "Maximum load for workers" msgstr "" -#: src/Module/Admin/Site.php:583 +#: src/Module/Admin/Site.php:576 msgid "Maximum load that causes a cooldown before each worker function call." msgstr "" -#: src/Module/Admin/Site.php:584 +#: src/Module/Admin/Site.php:577 msgid "Enable fastlane" msgstr "" -#: src/Module/Admin/Site.php:584 +#: src/Module/Admin/Site.php:577 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:585 +#: src/Module/Admin/Site.php:578 msgid "Decoupled receiver" msgstr "" -#: src/Module/Admin/Site.php:585 +#: src/Module/Admin/Site.php:578 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:586 +#: src/Module/Admin/Site.php:579 msgid "Cron interval" msgstr "" -#: src/Module/Admin/Site.php:586 +#: src/Module/Admin/Site.php:579 msgid "Minimal period in minutes between two calls of the \"Cron\" worker job." msgstr "" -#: src/Module/Admin/Site.php:587 +#: src/Module/Admin/Site.php:580 msgid "Worker defer limit" msgstr "" -#: src/Module/Admin/Site.php:587 +#: src/Module/Admin/Site.php:580 msgid "" "Per default the systems tries delivering for 15 times before dropping it." msgstr "" -#: src/Module/Admin/Site.php:588 +#: src/Module/Admin/Site.php:581 msgid "Worker fetch limit" msgstr "" -#: src/Module/Admin/Site.php:588 +#: src/Module/Admin/Site.php:581 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" @@ -5406,214 +5483,214 @@ msgid "" "system." msgstr "" -#: src/Module/Admin/Site.php:590 +#: src/Module/Admin/Site.php:583 msgid "Direct relay transfer" msgstr "" -#: src/Module/Admin/Site.php:590 +#: src/Module/Admin/Site.php:583 msgid "" "Enables the direct transfer to other servers without using the relay servers" msgstr "" -#: src/Module/Admin/Site.php:591 +#: src/Module/Admin/Site.php:584 msgid "Relay scope" msgstr "" -#: src/Module/Admin/Site.php:591 +#: src/Module/Admin/Site.php:584 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:591 src/Module/Contact/Profile.php:309 -#: src/Module/Settings/TwoFactor/Index.php:146 +#: src/Module/Admin/Site.php:584 src/Module/Contact/Profile.php:314 +#: src/Module/Settings/TwoFactor/Index.php:132 msgid "Disabled" msgstr "" -#: src/Module/Admin/Site.php:591 +#: src/Module/Admin/Site.php:584 msgid "all" msgstr "" -#: src/Module/Admin/Site.php:591 +#: src/Module/Admin/Site.php:584 msgid "tags" msgstr "" -#: src/Module/Admin/Site.php:592 +#: src/Module/Admin/Site.php:585 msgid "Server tags" msgstr "" -#: src/Module/Admin/Site.php:592 +#: src/Module/Admin/Site.php:585 msgid "Comma separated list of tags for the \"tags\" subscription." msgstr "" -#: src/Module/Admin/Site.php:593 +#: src/Module/Admin/Site.php:586 msgid "Deny Server tags" msgstr "" -#: src/Module/Admin/Site.php:593 +#: src/Module/Admin/Site.php:586 msgid "Comma separated list of tags that are rejected." msgstr "" -#: src/Module/Admin/Site.php:594 +#: src/Module/Admin/Site.php:587 msgid "Maximum amount of tags" msgstr "" -#: src/Module/Admin/Site.php:594 +#: src/Module/Admin/Site.php:587 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:595 +#: src/Module/Admin/Site.php:588 msgid "Allow user tags" msgstr "" -#: src/Module/Admin/Site.php:595 +#: src/Module/Admin/Site.php:588 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:596 +#: src/Module/Admin/Site.php:589 msgid "Deny undetected languages" msgstr "" -#: src/Module/Admin/Site.php:596 +#: src/Module/Admin/Site.php:589 msgid "If enabled, posts with undetected languages will be rejected." msgstr "" -#: src/Module/Admin/Site.php:597 +#: src/Module/Admin/Site.php:590 msgid "Language Quality" msgstr "" -#: src/Module/Admin/Site.php:597 +#: src/Module/Admin/Site.php:590 msgid "The minimum language quality that is required to accept the post." msgstr "" -#: src/Module/Admin/Site.php:598 +#: src/Module/Admin/Site.php:591 msgid "Number of languages for the language detection" msgstr "" -#: src/Module/Admin/Site.php:598 +#: src/Module/Admin/Site.php:591 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:600 +#: src/Module/Admin/Site.php:593 msgid "Maximum age of channel" msgstr "" -#: src/Module/Admin/Site.php:600 +#: src/Module/Admin/Site.php:593 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:601 +#: src/Module/Admin/Site.php:594 msgid "Maximum number of channel posts" msgstr "" -#: src/Module/Admin/Site.php:601 +#: src/Module/Admin/Site.php:594 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:602 +#: src/Module/Admin/Site.php:595 msgid "Interaction score days" msgstr "" -#: src/Module/Admin/Site.php:602 +#: src/Module/Admin/Site.php:595 msgid "Number of days that are used to calculate the interaction score." msgstr "" -#: src/Module/Admin/Site.php:603 +#: src/Module/Admin/Site.php:596 msgid "Maximum number of posts per author" msgstr "" -#: src/Module/Admin/Site.php:603 +#: src/Module/Admin/Site.php:596 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:604 +#: src/Module/Admin/Site.php:597 msgid "Sharer interaction days" msgstr "" -#: src/Module/Admin/Site.php:604 +#: src/Module/Admin/Site.php:597 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:607 +#: src/Module/Admin/Site.php:600 msgid "Start Relocation" msgstr "" -#: src/Module/Admin/Storage.php:46 +#: src/Module/Admin/Storage.php:32 #, php-format msgid "Storage backend, %s is invalid." msgstr "" -#: src/Module/Admin/Storage.php:73 +#: src/Module/Admin/Storage.php:59 #, php-format msgid "Storage backend %s error: %s" msgstr "" -#: src/Module/Admin/Storage.php:84 src/Module/Admin/Storage.php:87 +#: src/Module/Admin/Storage.php:70 src/Module/Admin/Storage.php:73 msgid "Invalid storage backend setting value." msgstr "" -#: src/Module/Admin/Storage.php:139 +#: src/Module/Admin/Storage.php:125 msgid "Current Storage Backend" msgstr "" -#: src/Module/Admin/Storage.php:140 +#: src/Module/Admin/Storage.php:126 msgid "Storage Configuration" msgstr "" -#: src/Module/Admin/Storage.php:141 src/Module/BaseAdmin.php:91 +#: src/Module/Admin/Storage.php:127 src/Module/BaseAdmin.php:77 msgid "Storage" msgstr "" -#: src/Module/Admin/Storage.php:143 +#: src/Module/Admin/Storage.php:129 msgid "Save & Use storage backend" msgstr "" -#: src/Module/Admin/Storage.php:144 +#: src/Module/Admin/Storage.php:130 msgid "Use storage backend" msgstr "" -#: src/Module/Admin/Storage.php:145 +#: src/Module/Admin/Storage.php:131 msgid "Save & Reload" msgstr "" -#: src/Module/Admin/Storage.php:146 +#: src/Module/Admin/Storage.php:132 msgid "This backend doesn't have custom settings" msgstr "" -#: src/Module/Admin/Storage.php:148 +#: src/Module/Admin/Storage.php:134 msgid "" "Changing the current backend is prohibited because it is set by an " "environment variable" msgstr "" -#: src/Module/Admin/Storage.php:150 +#: src/Module/Admin/Storage.php:136 msgid "Database (legacy)" msgstr "" -#: src/Module/Admin/Summary.php:55 +#: src/Module/Admin/Summary.php:41 #, php-format msgid "Template engine (%s) error: %s" msgstr "" -#: src/Module/Admin/Summary.php:59 +#: src/Module/Admin/Summary.php:45 #, php-format msgid "" "Your DB still runs with MyISAM tables. You should change the engine type to " @@ -5624,7 +5701,7 @@ msgid "" " an automatic conversion.
" msgstr "" -#: src/Module/Admin/Summary.php:64 +#: src/Module/Admin/Summary.php:50 #, php-format msgid "" "Your DB still runs with InnoDB tables in the Antelope file format. You " @@ -5635,7 +5712,7 @@ msgid "" " installation for an automatic conversion.
" msgstr "" -#: src/Module/Admin/Summary.php:74 +#: src/Module/Admin/Summary.php:60 #, php-format msgid "" "Your table_definition_cache is too low (%d). This can lead to the database " @@ -5643,46 +5720,46 @@ msgid "" " to %d. See here for more information.
" msgstr "" -#: src/Module/Admin/Summary.php:85 +#: src/Module/Admin/Summary.php:71 #, php-format msgid "" "There is a new version of Friendica available for download. Your current " "version is %1$s, upstream version is %2$s" msgstr "" -#: src/Module/Admin/Summary.php:94 +#: src/Module/Admin/Summary.php:80 msgid "" "The database update failed. Please run \"php bin/console.php dbstructure " "update\" from the command line and have a look at the errors that might " "appear." msgstr "" -#: src/Module/Admin/Summary.php:98 +#: src/Module/Admin/Summary.php:84 msgid "" "The last update failed. Please run \"php bin/console.php dbstructure " "update\" from the command line and have a look at the errors that might " "appear. (Some of the errors are possibly inside the logfile.)" msgstr "" -#: src/Module/Admin/Summary.php:102 +#: src/Module/Admin/Summary.php:88 msgid "" "The system.url entry is missing. This is a low level setting and can lead to" " unexpected behavior. Please add a valid entry as soon as possible in the " "config file or per console command!" msgstr "" -#: src/Module/Admin/Summary.php:107 +#: src/Module/Admin/Summary.php:93 msgid "The worker was never executed. Please check your database structure!" msgstr "" -#: src/Module/Admin/Summary.php:109 +#: src/Module/Admin/Summary.php:95 #, php-format msgid "" "The last worker execution was on %s UTC. This is older than one hour. Please" " check your crontab settings." msgstr "" -#: src/Module/Admin/Summary.php:114 +#: src/Module/Admin/Summary.php:100 #, php-format msgid "" "Friendica's configuration now is stored in config/local.config.php, please " @@ -5691,7 +5768,7 @@ msgid "" "help with the transition." msgstr "" -#: src/Module/Admin/Summary.php:118 +#: src/Module/Admin/Summary.php:104 #, php-format msgid "" "Friendica's configuration now is stored in config/local.config.php, please " @@ -5700,7 +5777,7 @@ msgid "" "page for help with the transition." msgstr "" -#: src/Module/Admin/Summary.php:124 +#: src/Module/Admin/Summary.php:110 #, php-format msgid "" "%s is not reachable on your system. This is a severe " @@ -5708,107 +5785,107 @@ msgid "" "href=\"%s\">the installation page for help." msgstr "" -#: src/Module/Admin/Summary.php:148 +#: src/Module/Admin/Summary.php:134 #, php-format msgid "" "Friendica's system.basepath was updated from '%s' to '%s'. Please remove the" " system.basepath from your db to avoid differences." msgstr "" -#: src/Module/Admin/Summary.php:156 +#: src/Module/Admin/Summary.php:142 #, php-format msgid "" "Friendica's current system.basepath '%s' is wrong and the config file '%s' " "isn't used." msgstr "" -#: src/Module/Admin/Summary.php:164 +#: src/Module/Admin/Summary.php:150 #, php-format msgid "" "Friendica's current system.basepath '%s' is not equal to the config file " "'%s'. Please fix your configuration." msgstr "" -#: src/Module/Admin/Summary.php:175 +#: src/Module/Admin/Summary.php:161 msgid "Message queues" msgstr "Mesaĝvicoj" -#: src/Module/Admin/Summary.php:181 +#: src/Module/Admin/Summary.php:167 msgid "Server Settings" msgstr "" -#: src/Module/Admin/Summary.php:199 +#: src/Module/Admin/Summary.php:185 msgid "Version" msgstr "Versio" -#: src/Module/Admin/Summary.php:203 +#: src/Module/Admin/Summary.php:189 msgid "Active addons" msgstr "" -#: src/Module/Admin/Themes/Details.php:57 src/Module/Admin/Themes/Index.php:65 +#: src/Module/Admin/Themes/Details.php:49 src/Module/Admin/Themes/Index.php:57 #, php-format msgid "Theme %s disabled." msgstr "" -#: src/Module/Admin/Themes/Details.php:59 src/Module/Admin/Themes/Index.php:67 +#: src/Module/Admin/Themes/Details.php:51 src/Module/Admin/Themes/Index.php:59 #, php-format msgid "Theme %s successfully enabled." msgstr "" -#: src/Module/Admin/Themes/Details.php:61 src/Module/Admin/Themes/Index.php:69 +#: src/Module/Admin/Themes/Details.php:53 src/Module/Admin/Themes/Index.php:61 #, php-format msgid "Theme %s failed to install." msgstr "" -#: src/Module/Admin/Themes/Details.php:83 +#: src/Module/Admin/Themes/Details.php:75 msgid "Screenshot" msgstr "Ekrankopio" -#: src/Module/Admin/Themes/Details.php:91 -#: src/Module/Admin/Themes/Index.php:112 src/Module/BaseAdmin.php:93 +#: src/Module/Admin/Themes/Details.php:83 +#: src/Module/Admin/Themes/Index.php:104 src/Module/BaseAdmin.php:79 msgid "Themes" msgstr "Etosoj" -#: src/Module/Admin/Themes/Embed.php:80 +#: src/Module/Admin/Themes/Embed.php:66 msgid "Unknown theme." msgstr "" -#: src/Module/Admin/Themes/Index.php:51 +#: src/Module/Admin/Themes/Index.php:43 msgid "Themes reloaded" msgstr "" -#: src/Module/Admin/Themes/Index.php:114 +#: src/Module/Admin/Themes/Index.php:106 msgid "Reload active themes" msgstr "" -#: src/Module/Admin/Themes/Index.php:118 +#: src/Module/Admin/Themes/Index.php:110 #, php-format msgid "No themes found on the system. They should be placed in %1$s" msgstr "" -#: src/Module/Admin/Themes/Index.php:119 +#: src/Module/Admin/Themes/Index.php:111 msgid "[Experimental]" msgstr "[Eksperimenta]" -#: src/Module/Admin/Themes/Index.php:120 +#: src/Module/Admin/Themes/Index.php:112 msgid "[Unsupported]" msgstr "[Nesubtenata]" -#: src/Module/Admin/Tos.php:79 +#: src/Module/Admin/Tos.php:65 msgid "Display Terms of Service" msgstr "" -#: src/Module/Admin/Tos.php:79 +#: src/Module/Admin/Tos.php:65 msgid "" "Enable the Terms of Service page. If this is enabled a link to the terms " "will be added to the registration form and the general information page." msgstr "" -#: src/Module/Admin/Tos.php:80 +#: src/Module/Admin/Tos.php:66 msgid "Display Privacy Statement" msgstr "" -#: src/Module/Admin/Tos.php:80 +#: src/Module/Admin/Tos.php:66 #, php-format msgid "" "Show some informations regarding the needed information to operate the node " @@ -5816,167 +5893,167 @@ msgid "" "noreferrer\">EU-GDPR." msgstr "" -#: src/Module/Admin/Tos.php:81 +#: src/Module/Admin/Tos.php:67 msgid "Privacy Statement Preview" msgstr "" -#: src/Module/Admin/Tos.php:83 +#: src/Module/Admin/Tos.php:69 msgid "The Terms of Service" msgstr "" -#: src/Module/Admin/Tos.php:83 +#: src/Module/Admin/Tos.php:69 msgid "" "Enter the Terms of Service for your node here. You can use BBCode. Headers " "of sections should be [h2] and below." msgstr "" -#: src/Module/Admin/Tos.php:84 +#: src/Module/Admin/Tos.php:70 msgid "The rules" msgstr "" -#: src/Module/Admin/Tos.php:84 +#: src/Module/Admin/Tos.php:70 msgid "Enter your system rules here. Each line represents one rule." msgstr "" -#: src/Module/Api/ApiResponse.php:293 +#: src/Module/Api/ApiResponse.php:279 #, php-format msgid "API endpoint %s %s is not implemented but might be in the future." msgstr "" -#: src/Module/Api/Mastodon/Apps.php:73 +#: src/Module/Api/Mastodon/Apps.php:59 msgid "Missing parameters" msgstr "" -#: src/Module/Api/Mastodon/Statuses/Bookmark.php:51 +#: src/Module/Api/Mastodon/Statuses/Bookmark.php:36 msgid "Only starting posts can be bookmarked" msgstr "" -#: src/Module/Api/Mastodon/Statuses/Mute.php:51 +#: src/Module/Api/Mastodon/Statuses/Mute.php:37 msgid "Only starting posts can be muted" msgstr "" -#: src/Module/Api/Mastodon/Statuses/Reblog.php:58 +#: src/Module/Api/Mastodon/Statuses/Reblog.php:44 #, php-format msgid "Posts from %s can't be shared" msgstr "" -#: src/Module/Api/Mastodon/Statuses/Unbookmark.php:51 +#: src/Module/Api/Mastodon/Statuses/Unbookmark.php:37 msgid "Only starting posts can be unbookmarked" msgstr "" -#: src/Module/Api/Mastodon/Statuses/Unmute.php:51 +#: src/Module/Api/Mastodon/Statuses/Unmute.php:37 msgid "Only starting posts can be unmuted" msgstr "" -#: src/Module/Api/Mastodon/Statuses/Unreblog.php:64 +#: src/Module/Api/Mastodon/Statuses/Unreblog.php:50 #, php-format msgid "Posts from %s can't be unshared" msgstr "" -#: src/Module/Api/Twitter/ContactEndpoint.php:66 +#: src/Module/Api/Twitter/ContactEndpoint.php:52 msgid "Contact not found" msgstr "" -#: src/Module/Apps.php:62 +#: src/Module/Apps.php:48 msgid "No installed applications." msgstr "Neniom da instalitaj programoj." -#: src/Module/Apps.php:67 +#: src/Module/Apps.php:53 msgid "Applications" msgstr "Programoj" -#: src/Module/Attach.php:49 src/Module/Attach.php:61 +#: src/Module/Attach.php:35 src/Module/Attach.php:47 msgid "Item was not found." msgstr "Elemento ne trovita." -#: src/Module/BaseAdmin.php:54 src/Module/BaseAdmin.php:58 -#: src/Module/BaseModeration.php:77 src/Module/BaseModeration.php:81 +#: src/Module/BaseAdmin.php:40 src/Module/BaseAdmin.php:44 +#: src/Module/BaseModeration.php:63 src/Module/BaseModeration.php:67 msgid "Please login to continue." msgstr "Bonvolu ensaluti por pluigi." -#: src/Module/BaseAdmin.php:63 +#: src/Module/BaseAdmin.php:49 msgid "You don't have access to administration pages." msgstr "" -#: src/Module/BaseAdmin.php:67 +#: src/Module/BaseAdmin.php:53 msgid "" "Submanaged account can't access the administration pages. Please log back in" " as the main account." msgstr "" -#: src/Module/BaseAdmin.php:86 src/Module/BaseModeration.php:109 +#: src/Module/BaseAdmin.php:72 src/Module/BaseModeration.php:95 msgid "Overview" msgstr "" -#: src/Module/BaseAdmin.php:89 src/Module/BaseModeration.php:112 +#: src/Module/BaseAdmin.php:75 src/Module/BaseModeration.php:98 msgid "Configuration" msgstr "" -#: src/Module/BaseAdmin.php:94 src/Module/BaseSettings.php:110 +#: src/Module/BaseAdmin.php:80 src/Module/BaseSettings.php:96 msgid "Additional features" msgstr "" -#: src/Module/BaseAdmin.php:97 +#: src/Module/BaseAdmin.php:83 msgid "Database" msgstr "" -#: src/Module/BaseAdmin.php:98 +#: src/Module/BaseAdmin.php:84 msgid "DB updates" msgstr "DB ĝisdatigoj" -#: src/Module/BaseAdmin.php:99 +#: src/Module/BaseAdmin.php:85 msgid "Inspect Deferred Workers" msgstr "" -#: src/Module/BaseAdmin.php:100 +#: src/Module/BaseAdmin.php:86 msgid "Inspect worker Queue" msgstr "" -#: src/Module/BaseAdmin.php:106 src/Module/BaseModeration.php:120 +#: src/Module/BaseAdmin.php:92 src/Module/BaseModeration.php:106 msgid "Diagnostics" msgstr "" -#: src/Module/BaseAdmin.php:107 +#: src/Module/BaseAdmin.php:93 msgid "PHP Info" msgstr "" -#: src/Module/BaseAdmin.php:108 +#: src/Module/BaseAdmin.php:94 msgid "probe address" msgstr "" -#: src/Module/BaseAdmin.php:109 +#: src/Module/BaseAdmin.php:95 msgid "check webfinger" msgstr "" -#: src/Module/BaseAdmin.php:110 +#: src/Module/BaseAdmin.php:96 msgid "Babel" msgstr "" -#: src/Module/BaseAdmin.php:111 src/Module/Debug/ActivityPubConversion.php:137 +#: src/Module/BaseAdmin.php:97 src/Module/Debug/ActivityPubConversion.php:129 msgid "ActivityPub Conversion" msgstr "" -#: src/Module/BaseAdmin.php:120 +#: src/Module/BaseAdmin.php:106 msgid "Addon Features" msgstr "" -#: src/Module/BaseAdmin.php:121 src/Module/BaseModeration.php:129 +#: src/Module/BaseAdmin.php:107 src/Module/BaseModeration.php:115 msgid "User registrations waiting for confirmation" msgstr "Uzantaj registradoj atendante konfirmon" -#: src/Module/BaseApi.php:455 src/Module/BaseApi.php:471 -#: src/Module/BaseApi.php:487 +#: src/Module/BaseApi.php:441 src/Module/BaseApi.php:457 +#: src/Module/BaseApi.php:473 msgid "Too Many Requests" msgstr "" -#: src/Module/BaseApi.php:456 +#: src/Module/BaseApi.php:442 #, php-format msgid "Daily posting limit of %d post reached. The post was rejected." msgid_plural "Daily posting limit of %d posts reached. The post was rejected." msgstr[0] "" msgstr[1] "" -#: src/Module/BaseApi.php:472 +#: src/Module/BaseApi.php:458 #, php-format msgid "Weekly posting limit of %d post reached. The post was rejected." msgid_plural "" @@ -5984,7 +6061,7 @@ msgid_plural "" msgstr[0] "" msgstr[1] "" -#: src/Module/BaseApi.php:488 +#: src/Module/BaseApi.php:474 #, php-format msgid "Monthly posting limit of %d post reached. The post was rejected." msgid_plural "" @@ -5992,84 +6069,84 @@ msgid_plural "" msgstr[0] "" msgstr[1] "" -#: src/Module/BaseModeration.php:86 +#: src/Module/BaseModeration.php:72 msgid "You don't have access to moderation pages." msgstr "" -#: src/Module/BaseModeration.php:90 +#: src/Module/BaseModeration.php:76 msgid "" "Submanaged account can't access the moderation pages. Please log back in as " "the main account." msgstr "" -#: src/Module/BaseModeration.php:110 src/Module/Moderation/Reports.php:94 +#: src/Module/BaseModeration.php:96 src/Module/Moderation/Reports.php:101 msgid "Reports" msgstr "" -#: src/Module/BaseModeration.php:113 src/Module/Moderation/Users/Index.php:148 -#: src/Module/Moderation/Users/Index.php:158 +#: src/Module/BaseModeration.php:99 src/Module/Moderation/Users/Index.php:134 +#: src/Module/Moderation/Users/Index.php:144 msgid "Users" msgstr "Uzantoj" -#: src/Module/BaseModeration.php:115 +#: src/Module/BaseModeration.php:101 msgid "Tools" msgstr "" -#: src/Module/BaseModeration.php:116 +#: src/Module/BaseModeration.php:102 msgid "Contact Blocklist" msgstr "" -#: src/Module/BaseModeration.php:117 +#: src/Module/BaseModeration.php:103 msgid "Server Blocklist" msgstr "" -#: src/Module/BaseModeration.php:118 src/Module/Moderation/Item/Delete.php:62 +#: src/Module/BaseModeration.php:104 src/Module/Moderation/Item/Delete.php:48 msgid "Delete Item" msgstr "" -#: src/Module/BaseModeration.php:121 src/Module/Moderation/Item/Source.php:76 +#: src/Module/BaseModeration.php:107 src/Module/Moderation/Item/Source.php:68 msgid "Item Source" msgstr "" -#: src/Module/BaseProfile.php:52 src/Module/Contact.php:506 +#: src/Module/BaseProfile.php:38 src/Module/Contact.php:488 msgid "Profile Details" msgstr "Profildetaloj" -#: src/Module/BaseProfile.php:60 +#: src/Module/BaseProfile.php:46 msgid "Conversations started" msgstr "" -#: src/Module/BaseProfile.php:111 +#: src/Module/BaseProfile.php:97 msgid "Only You Can See This" msgstr "Nur Vi Povas Vidi Tiun" -#: src/Module/BaseProfile.php:116 src/Module/Profile/Schedule.php:81 +#: src/Module/BaseProfile.php:102 src/Module/Profile/Schedule.php:67 msgid "Scheduled Posts" msgstr "" -#: src/Module/BaseProfile.php:119 +#: src/Module/BaseProfile.php:105 msgid "Posts that are scheduled for publishing" msgstr "" -#: src/Module/BaseProfile.php:138 src/Module/BaseProfile.php:141 +#: src/Module/BaseProfile.php:124 src/Module/BaseProfile.php:127 msgid "Tips for New Members" msgstr "Konsilo por novaj membroj" -#: src/Module/BaseSearch.php:71 +#: src/Module/BaseSearch.php:57 #, php-format msgid "People Search - %s" msgstr "" -#: src/Module/BaseSearch.php:75 +#: src/Module/BaseSearch.php:61 #, php-format msgid "Group Search - %s" msgstr "" -#: src/Module/BaseSearch.php:121 src/Module/Contact/MatchInterests.php:139 +#: src/Module/BaseSearch.php:107 src/Module/Contact/MatchInterests.php:136 msgid "No matches" msgstr "Nenio estas trovita" -#: src/Module/BaseSearch.php:147 +#: src/Module/BaseSearch.php:133 #, php-format msgid "" "%d result was filtered out because your node blocks the domain it is " @@ -6082,831 +6159,828 @@ msgid_plural "" msgstr[0] "" msgstr[1] "" -#: src/Module/BaseSettings.php:78 +#: src/Module/BaseSettings.php:64 msgid "Account" msgstr "Konto" -#: src/Module/BaseSettings.php:85 src/Module/Security/TwoFactor/Verify.php:96 -#: src/Module/Settings/TwoFactor/Index.php:138 +#: src/Module/BaseSettings.php:71 src/Module/Security/TwoFactor/Verify.php:82 +#: src/Module/Settings/TwoFactor/Index.php:124 msgid "Two-factor authentication" msgstr "" -#: src/Module/BaseSettings.php:118 +#: src/Module/BaseSettings.php:104 msgid "Display" msgstr "" -#: src/Module/BaseSettings.php:132 src/Module/Settings/Connectors.php:204 +#: src/Module/BaseSettings.php:118 src/Module/Settings/Connectors.php:195 msgid "Social Networks" msgstr "" -#: src/Module/BaseSettings.php:146 src/Module/Settings/Delegation.php:194 +#: src/Module/BaseSettings.php:132 src/Module/Settings/Delegation.php:180 msgid "Manage Accounts" msgstr "" -#: src/Module/BaseSettings.php:153 +#: src/Module/BaseSettings.php:139 msgid "Connected apps" msgstr "Konektitaj programoj" -#: src/Module/BaseSettings.php:160 +#: src/Module/BaseSettings.php:146 msgid "Remote servers" msgstr "" -#: src/Module/BaseSettings.php:167 src/Module/Settings/UserExport.php:98 +#: src/Module/BaseSettings.php:153 src/Module/Settings/UserExport.php:84 msgid "Export personal data" msgstr "Eksporto" -#: src/Module/BaseSettings.php:174 +#: src/Module/BaseSettings.php:160 msgid "Remove account" msgstr "Forigi konton" -#: src/Module/Bookmarklet.php:54 +#: src/Module/Bookmarklet.php:40 msgid "This page is missing a url parameter." msgstr "" -#: src/Module/Bookmarklet.php:66 +#: src/Module/Bookmarklet.php:52 msgid "The post was created" msgstr "" -#: src/Module/Calendar/Event/API.php:100 src/Module/Calendar/Event/API.php:135 -#: src/Module/Calendar/Event/Form.php:80 +#: src/Module/Calendar/Event/API.php:86 src/Module/Calendar/Event/API.php:121 +#: src/Module/Calendar/Event/Form.php:66 msgid "Invalid Request" msgstr "" -#: src/Module/Calendar/Event/API.php:109 +#: src/Module/Calendar/Event/API.php:95 msgid "Event id is missing." msgstr "" -#: src/Module/Calendar/Event/API.php:131 +#: src/Module/Calendar/Event/API.php:117 msgid "Failed to remove event" msgstr "" -#: src/Module/Calendar/Event/API.php:187 src/Module/Calendar/Event/API.php:189 +#: src/Module/Calendar/Event/API.php:173 src/Module/Calendar/Event/API.php:175 msgid "Event can not end before it has started." msgstr "" -#: src/Module/Calendar/Event/API.php:196 src/Module/Calendar/Event/API.php:198 +#: src/Module/Calendar/Event/API.php:182 src/Module/Calendar/Event/API.php:184 msgid "Event title and start time are required." msgstr "Titolo kaj starttempo estas bezonataj por la okazo." -#: src/Module/Calendar/Event/Form.php:208 +#: src/Module/Calendar/Event/Form.php:194 msgid "Starting date and Title are required." msgstr "" -#: src/Module/Calendar/Event/Form.php:209 -#: src/Module/Calendar/Event/Form.php:214 +#: src/Module/Calendar/Event/Form.php:195 +#: src/Module/Calendar/Event/Form.php:200 msgid "Event Starts:" msgstr "Okazo startas:" -#: src/Module/Calendar/Event/Form.php:209 -#: src/Module/Calendar/Event/Form.php:237 src/Module/Debug/Probe.php:59 -#: src/Module/Install.php:201 src/Module/Install.php:227 -#: src/Module/Install.php:232 src/Module/Install.php:246 -#: src/Module/Install.php:255 src/Module/Install.php:260 -#: src/Module/Install.php:266 src/Module/Install.php:271 -#: src/Module/Install.php:285 src/Module/Install.php:298 -#: src/Module/Install.php:325 -#: src/Module/Moderation/Blocklist/Server/Add.php:136 -#: src/Module/Moderation/Blocklist/Server/Add.php:138 -#: src/Module/Moderation/Blocklist/Server/Import.php:129 -#: src/Module/Moderation/Blocklist/Server/Index.php:86 -#: src/Module/Moderation/Blocklist/Server/Index.php:87 -#: src/Module/Moderation/Blocklist/Server/Index.php:115 -#: src/Module/Moderation/Blocklist/Server/Index.php:116 -#: src/Module/Moderation/Item/Delete.php:67 src/Module/Register.php:148 -#: src/Module/Security/TwoFactor/Verify.php:101 -#: src/Module/Settings/Channels.php:184 src/Module/Settings/Channels.php:205 -#: src/Module/Settings/TwoFactor/Index.php:161 -#: src/Module/Settings/TwoFactor/Verify.php:158 +#: src/Module/Calendar/Event/Form.php:195 +#: src/Module/Calendar/Event/Form.php:223 src/Module/Debug/Probe.php:45 +#: src/Module/Install.php:187 src/Module/Install.php:213 +#: src/Module/Install.php:218 src/Module/Install.php:232 +#: src/Module/Install.php:241 src/Module/Install.php:246 +#: src/Module/Install.php:252 src/Module/Install.php:257 +#: src/Module/Install.php:271 src/Module/Install.php:284 +#: src/Module/Install.php:311 +#: src/Module/Moderation/Blocklist/Server/Add.php:122 +#: src/Module/Moderation/Blocklist/Server/Add.php:124 +#: src/Module/Moderation/Blocklist/Server/Import.php:113 +#: src/Module/Moderation/Blocklist/Server/Index.php:72 +#: src/Module/Moderation/Blocklist/Server/Index.php:73 +#: src/Module/Moderation/Blocklist/Server/Index.php:101 +#: src/Module/Moderation/Blocklist/Server/Index.php:102 +#: src/Module/Moderation/Item/Delete.php:53 src/Module/Register.php:141 +#: src/Module/Security/TwoFactor/Verify.php:87 +#: src/Module/Settings/Channels.php:176 src/Module/Settings/Channels.php:197 +#: src/Module/Settings/TwoFactor/Index.php:147 +#: src/Module/Settings/TwoFactor/Verify.php:144 msgid "Required" msgstr "Bezonata" -#: src/Module/Calendar/Event/Form.php:223 -#: src/Module/Calendar/Event/Form.php:247 +#: src/Module/Calendar/Event/Form.php:209 +#: src/Module/Calendar/Event/Form.php:233 msgid "Finish date/time is not known or not relevant" msgstr "Fina dato/tempo ne estas konata aŭ ne bezonata" -#: src/Module/Calendar/Event/Form.php:225 -#: src/Module/Calendar/Event/Form.php:230 +#: src/Module/Calendar/Event/Form.php:211 +#: src/Module/Calendar/Event/Form.php:216 msgid "Event Finishes:" msgstr "Okazo finas:" -#: src/Module/Calendar/Event/Form.php:237 -#: src/Module/Calendar/Event/Form.php:243 +#: src/Module/Calendar/Event/Form.php:223 +#: src/Module/Calendar/Event/Form.php:229 msgid "Title (BBCode not allowed)" msgstr "" -#: src/Module/Calendar/Event/Form.php:239 +#: src/Module/Calendar/Event/Form.php:225 msgid "Description (BBCode allowed)" msgstr "" -#: src/Module/Calendar/Event/Form.php:241 +#: src/Module/Calendar/Event/Form.php:227 msgid "Location (BBCode not allowed)" msgstr "" -#: src/Module/Calendar/Event/Form.php:244 -#: src/Module/Calendar/Event/Form.php:245 +#: src/Module/Calendar/Event/Form.php:230 +#: src/Module/Calendar/Event/Form.php:231 msgid "Share this event" msgstr "Kunhavigi la okazon" -#: src/Module/Calendar/Event/Form.php:251 src/Module/Profile/Profile.php:275 +#: src/Module/Calendar/Event/Form.php:237 src/Module/Profile/Profile.php:263 msgid "Basic" msgstr "" -#: src/Module/Calendar/Export.php:94 +#: src/Module/Calendar/Export.php:80 msgid "This calendar format is not supported" msgstr "" -#: src/Module/Calendar/Export.php:96 +#: src/Module/Calendar/Export.php:82 msgid "No exportable data found" msgstr "" -#: src/Module/Calendar/Export.php:113 +#: src/Module/Calendar/Export.php:99 msgid "calendar" msgstr "" -#: src/Module/Calendar/Show.php:124 +#: src/Module/Calendar/Show.php:110 msgid "Events" msgstr "Okazoj" -#: src/Module/Calendar/Show.php:125 +#: src/Module/Calendar/Show.php:111 msgid "View" msgstr "" -#: src/Module/Calendar/Show.php:126 +#: src/Module/Calendar/Show.php:112 msgid "Create New Event" msgstr "Krei novan okazon" -#: src/Module/Calendar/Show.php:132 src/Module/Settings/Display.php:300 +#: src/Module/Calendar/Show.php:118 src/Module/Settings/Display.php:283 msgid "list" msgstr "" -#: src/Module/Circle.php:57 +#: src/Module/Circle.php:43 msgid "Could not create circle." msgstr "" -#: src/Module/Circle.php:68 src/Module/Circle.php:214 -#: src/Module/Circle.php:238 +#: src/Module/Circle.php:54 src/Module/Circle.php:202 +#: src/Module/Circle.php:226 msgid "Circle not found." msgstr "" -#: src/Module/Circle.php:74 +#: src/Module/Circle.php:60 msgid "Circle name was not changed." msgstr "" -#: src/Module/Circle.php:92 +#: src/Module/Circle.php:78 msgid "Unknown circle." msgstr "" -#: src/Module/Circle.php:98 src/Module/Circle.php:107 -#: src/Module/Contact/Advanced.php:70 src/Module/Contact/Advanced.php:109 -#: src/Module/Contact/Contacts.php:71 src/Module/Contact/Conversations.php:86 -#: src/Module/Contact/Conversations.php:91 -#: src/Module/Contact/Conversations.php:96 src/Module/Contact/Media.php:61 -#: src/Module/Contact/Posts.php:78 src/Module/Contact/Posts.php:83 -#: src/Module/Contact/Posts.php:88 src/Module/Contact/Profile.php:154 -#: src/Module/Contact/Profile.php:159 src/Module/Contact/Profile.php:164 -#: src/Module/Contact/Redir.php:94 src/Module/Contact/Redir.php:140 -#: src/Module/FriendSuggest.php:71 src/Module/FriendSuggest.php:109 +#: src/Module/Circle.php:84 src/Module/Circle.php:93 +#: src/Module/Contact/Advanced.php:56 src/Module/Contact/Advanced.php:95 +#: src/Module/Contact/Contacts.php:57 src/Module/Contact/Conversations.php:72 +#: src/Module/Contact/Conversations.php:77 +#: src/Module/Contact/Conversations.php:82 src/Module/Contact/Media.php:47 +#: src/Module/Contact/Posts.php:64 src/Module/Contact/Posts.php:69 +#: src/Module/Contact/Posts.php:74 src/Module/Contact/Profile.php:145 +#: src/Module/Contact/Profile.php:150 src/Module/Contact/Profile.php:169 +#: src/Module/Contact/Redir.php:77 src/Module/Contact/Redir.php:131 +#: src/Module/FriendSuggest.php:57 src/Module/FriendSuggest.php:95 msgid "Contact not found." msgstr "Kontakto ne trovita." -#: src/Module/Circle.php:102 src/Module/Contact/Contacts.php:66 +#: src/Module/Circle.php:88 src/Module/Contact/Contacts.php:52 msgid "Invalid contact." msgstr "Nevalida kontakto." -#: src/Module/Circle.php:111 src/Module/Contact/Revoke.php:73 +#: src/Module/Circle.php:97 src/Module/Contact/Revoke.php:56 msgid "Contact is deleted." msgstr "" -#: src/Module/Circle.php:117 +#: src/Module/Circle.php:103 msgid "Unable to add the contact to the circle." msgstr "" -#: src/Module/Circle.php:120 +#: src/Module/Circle.php:106 msgid "Contact successfully added to circle." msgstr "" -#: src/Module/Circle.php:124 +#: src/Module/Circle.php:110 msgid "Unable to remove the contact from the circle." msgstr "" -#: src/Module/Circle.php:127 +#: src/Module/Circle.php:113 msgid "Contact successfully removed from circle." msgstr "" -#: src/Module/Circle.php:131 +#: src/Module/Circle.php:117 msgid "Bad request." msgstr "" -#: src/Module/Circle.php:170 +#: src/Module/Circle.php:158 msgid "Save Circle" msgstr "" -#: src/Module/Circle.php:171 +#: src/Module/Circle.php:159 msgid "Filter" msgstr "" -#: src/Module/Circle.php:177 +#: src/Module/Circle.php:165 msgid "Create a circle of contacts/friends." msgstr "" -#: src/Module/Circle.php:219 +#: src/Module/Circle.php:207 msgid "Unable to remove circle." msgstr "" -#: src/Module/Circle.php:270 +#: src/Module/Circle.php:258 msgid "Delete Circle" msgstr "" -#: src/Module/Circle.php:280 +#: src/Module/Circle.php:268 msgid "Edit Circle Name" msgstr "" -#: src/Module/Circle.php:290 +#: src/Module/Circle.php:278 msgid "Members" msgstr "Anoj" -#: src/Module/Circle.php:293 +#: src/Module/Circle.php:281 msgid "Circle is empty" msgstr "" -#: src/Module/Circle.php:306 +#: src/Module/Circle.php:297 msgid "Remove contact from circle" msgstr "" -#: src/Module/Circle.php:329 +#: src/Module/Circle.php:320 msgid "Click on a contact to add or remove." msgstr "Klaku kontakton por aldoni aŭ forviŝi." -#: src/Module/Circle.php:343 +#: src/Module/Circle.php:337 msgid "Add contact to circle" msgstr "" -#: src/Module/Contact.php:96 +#: src/Module/Contact.php:88 #, php-format msgid "%d contact edited." msgid_plural "%d contacts edited." msgstr[0] "" msgstr[1] "" -#: src/Module/Contact.php:347 +#: src/Module/Contact.php:328 msgid "Show all contacts" msgstr "Montri ĉiujn kontaktojn" -#: src/Module/Contact.php:352 src/Module/Contact.php:431 -#: src/Module/Moderation/BaseUsers.php:85 +#: src/Module/Contact.php:333 src/Module/Contact.php:412 +#: src/Module/Moderation/BaseUsers.php:72 msgid "Pending" msgstr "" -#: src/Module/Contact.php:355 +#: src/Module/Contact.php:336 msgid "Only show pending contacts" msgstr "" -#: src/Module/Contact.php:360 src/Module/Contact.php:434 -#: src/Module/Moderation/BaseUsers.php:93 +#: src/Module/Contact.php:341 src/Module/Contact.php:415 +#: src/Module/Moderation/BaseUsers.php:80 msgid "Blocked" msgstr "Blokita" -#: src/Module/Contact.php:363 +#: src/Module/Contact.php:344 msgid "Only show blocked contacts" msgstr "Nur montri blokitajn kontaktojn" -#: src/Module/Contact.php:368 src/Module/Contact.php:440 -#: src/Module/Settings/Server/Index.php:107 src/Object/Post.php:386 +#: src/Module/Contact.php:349 src/Module/Contact.php:421 +#: src/Module/Settings/Server/Index.php:93 src/Object/Post.php:385 msgid "Ignored" msgstr "Ignorita" -#: src/Module/Contact.php:371 +#: src/Module/Contact.php:352 msgid "Only show ignored contacts" msgstr "Nur montri ignoritajn kontaktojn" -#: src/Module/Contact.php:376 src/Module/Contact.php:443 +#: src/Module/Contact.php:357 src/Module/Contact.php:424 msgid "Collapsed" msgstr "" -#: src/Module/Contact.php:379 +#: src/Module/Contact.php:360 msgid "Only show collapsed contacts" msgstr "" -#: src/Module/Contact.php:384 src/Module/Contact.php:446 +#: src/Module/Contact.php:365 src/Module/Contact.php:427 msgid "Archived" msgstr "Enarkivigita" -#: src/Module/Contact.php:387 +#: src/Module/Contact.php:368 msgid "Only show archived contacts" msgstr "Nur montri enarkivigitajn kontaktojn" -#: src/Module/Contact.php:392 src/Module/Contact.php:437 +#: src/Module/Contact.php:373 src/Module/Contact.php:418 msgid "Hidden" msgstr "Kaŝita" -#: src/Module/Contact.php:395 +#: src/Module/Contact.php:376 msgid "Only show hidden contacts" msgstr "Nur montri kaŝitajn kontaktojn" -#: src/Module/Contact.php:403 +#: src/Module/Contact.php:384 msgid "Organize your contact circles" msgstr "" -#: src/Module/Contact.php:458 +#: src/Module/Contact.php:439 msgid "Search your contacts" msgstr "Serĉi viajn kontaktojn" -#: src/Module/Contact.php:459 src/Module/Search/Index.php:207 +#: src/Module/Contact.php:440 src/Module/Search/Index.php:193 #, php-format msgid "Results for: %s" msgstr "" -#: src/Module/Contact.php:466 +#: src/Module/Contact.php:448 msgid "Update" msgstr "Ĝisdatigi" -#: src/Module/Contact.php:467 src/Module/Contact/Profile.php:511 -#: src/Module/Moderation/Blocklist/Contact.php:117 -#: src/Module/Moderation/Users/Blocked.php:138 -#: src/Module/Moderation/Users/Index.php:154 +#: src/Module/Contact.php:449 src/Module/Contact/Profile.php:518 +#: src/Module/Moderation/Blocklist/Contact.php:103 +#: src/Module/Moderation/Users/Blocked.php:124 +#: src/Module/Moderation/Users/Index.php:140 msgid "Unblock" msgstr "Malbloki" -#: src/Module/Contact.php:468 src/Module/Contact/Profile.php:519 +#: src/Module/Contact.php:450 src/Module/Contact/Profile.php:526 msgid "Unignore" msgstr "Malignori" -#: src/Module/Contact.php:469 src/Module/Contact/Profile.php:527 +#: src/Module/Contact.php:451 src/Module/Contact/Profile.php:534 msgid "Uncollapse" msgstr "" -#: src/Module/Contact.php:471 +#: src/Module/Contact.php:453 msgid "Batch Actions" msgstr "" -#: src/Module/Contact.php:514 +#: src/Module/Contact.php:496 msgid "Conversations started by this contact" msgstr "" -#: src/Module/Contact.php:519 +#: src/Module/Contact.php:501 msgid "Posts and Comments" msgstr "" -#: src/Module/Contact.php:522 +#: src/Module/Contact.php:504 msgid "Individual Posts and Replies" msgstr "" -#: src/Module/Contact.php:530 +#: src/Module/Contact.php:512 msgid "Posts containing media objects" msgstr "" -#: src/Module/Contact.php:538 +#: src/Module/Contact.php:520 msgid "View all known contacts" msgstr "" -#: src/Module/Contact.php:549 +#: src/Module/Contact.php:531 msgid "Advanced Contact Settings" msgstr "Specialaj Kontaktagordoj" -#: src/Module/Contact.php:585 +#: src/Module/Contact.php:567 msgid "Mutual Friendship" msgstr "Reciproka amikeco" -#: src/Module/Contact.php:589 +#: src/Module/Contact.php:571 msgid "is a fan of yours" msgstr "estas admiranto de vi" -#: src/Module/Contact.php:593 +#: src/Module/Contact.php:575 msgid "you are a fan of" msgstr "vi estas admiranto de" -#: src/Module/Contact.php:611 +#: src/Module/Contact.php:593 msgid "Pending outgoing contact request" msgstr "" -#: src/Module/Contact.php:613 +#: src/Module/Contact.php:595 msgid "Pending incoming contact request" msgstr "" -#: src/Module/Contact.php:626 src/Module/Contact/Profile.php:371 +#: src/Module/Contact.php:608 src/Module/Contact/Profile.php:377 #, php-format msgid "Visit %s's profile [%s]" msgstr "Viziti la profilon de %s [%s]" -#: src/Module/Contact/Advanced.php:99 +#: src/Module/Contact/Advanced.php:85 msgid "Contact update failed." msgstr "Ĝisdatigo de kontakto malsukcesis." -#: src/Module/Contact/Advanced.php:130 +#: src/Module/Contact/Advanced.php:116 msgid "Return to contact editor" msgstr "Reen al kontakta redaktilo" -#: src/Module/Contact/Advanced.php:134 -#: src/Module/Moderation/Blocklist/Contact.php:122 -#: src/Module/Moderation/Reports.php:95 -#: src/Module/Moderation/Users/Active.php:126 -#: src/Module/Moderation/Users/Blocked.php:126 -#: src/Module/Moderation/Users/Create.php:70 -#: src/Module/Moderation/Users/Deleted.php:83 -#: src/Module/Moderation/Users/Index.php:140 -#: src/Module/Moderation/Users/Index.php:160 -#: src/Module/Moderation/Users/Pending.php:99 src/Module/Settings/OAuth.php:72 +#: src/Module/Contact/Advanced.php:120 +#: src/Module/Moderation/Blocklist/Contact.php:108 +#: src/Module/Moderation/Reports.php:102 +#: src/Module/Moderation/Users/Active.php:112 +#: src/Module/Moderation/Users/Blocked.php:112 +#: src/Module/Moderation/Users/Create.php:56 +#: src/Module/Moderation/Users/Deleted.php:69 +#: src/Module/Moderation/Users/Index.php:126 +#: src/Module/Moderation/Users/Index.php:146 +#: src/Module/Moderation/Users/Pending.php:85 src/Module/Settings/OAuth.php:58 msgid "Name" msgstr "Nomo" -#: src/Module/Contact/Advanced.php:135 +#: src/Module/Contact/Advanced.php:121 msgid "Account Nickname" msgstr "Kaŝnomo de la konto" -#: src/Module/Contact/Advanced.php:136 +#: src/Module/Contact/Advanced.php:122 msgid "Account URL" msgstr "Adreso de la konto" -#: src/Module/Contact/Advanced.php:137 +#: src/Module/Contact/Advanced.php:123 msgid "Poll/Feed URL" msgstr "Adreso de fluo" -#: src/Module/Contact/Advanced.php:138 +#: src/Module/Contact/Advanced.php:124 msgid "New photo from this URL" msgstr "Nova bildo el tiu adreso" -#: src/Module/Contact/Contacts.php:89 +#: src/Module/Contact/Contacts.php:75 msgid "No known contacts." msgstr "" -#: src/Module/Contact/Contacts.php:103 src/Module/Profile/Common.php:128 +#: src/Module/Contact/Contacts.php:89 src/Module/Profile/Common.php:114 msgid "No common contacts." msgstr "" -#: src/Module/Contact/Contacts.php:115 src/Module/Profile/Contacts.php:135 +#: src/Module/Contact/Contacts.php:101 src/Module/Profile/Contacts.php:121 #, php-format msgid "Follower (%s)" msgid_plural "Followers (%s)" msgstr[0] "" msgstr[1] "" -#: src/Module/Contact/Contacts.php:119 src/Module/Profile/Contacts.php:138 +#: src/Module/Contact/Contacts.php:105 src/Module/Profile/Contacts.php:124 #, php-format msgid "Following (%s)" msgid_plural "Following (%s)" msgstr[0] "" msgstr[1] "" -#: src/Module/Contact/Contacts.php:123 src/Module/Profile/Contacts.php:141 +#: src/Module/Contact/Contacts.php:109 src/Module/Profile/Contacts.php:127 #, php-format msgid "Mutual friend (%s)" msgid_plural "Mutual friends (%s)" msgstr[0] "" msgstr[1] "" -#: src/Module/Contact/Contacts.php:125 src/Module/Profile/Contacts.php:143 +#: src/Module/Contact/Contacts.php:111 src/Module/Profile/Contacts.php:129 #, php-format msgid "These contacts both follow and are followed by %s." msgstr "" -#: src/Module/Contact/Contacts.php:131 src/Module/Profile/Common.php:116 +#: src/Module/Contact/Contacts.php:117 src/Module/Profile/Common.php:102 #, php-format msgid "Common contact (%s)" msgid_plural "Common contacts (%s)" msgstr[0] "" msgstr[1] "" -#: src/Module/Contact/Contacts.php:133 src/Module/Profile/Common.php:118 +#: src/Module/Contact/Contacts.php:119 src/Module/Profile/Common.php:104 #, php-format msgid "" "Both %s and yourself have publicly interacted with these " "contacts (follow, comment or likes on public posts)." msgstr "" -#: src/Module/Contact/Contacts.php:139 src/Module/Profile/Contacts.php:149 +#: src/Module/Contact/Contacts.php:125 src/Module/Profile/Contacts.php:135 #, php-format msgid "Contact (%s)" msgid_plural "Contacts (%s)" msgstr[0] "" msgstr[1] "" -#: src/Module/Contact/Follow.php:70 src/Module/Contact/Redir.php:62 -#: src/Module/Contact/Redir.php:222 src/Module/Conversation/Community.php:166 -#: src/Module/Debug/ItemBody.php:38 src/Module/Diaspora/Receive.php:57 -#: src/Module/Item/Display.php:96 src/Module/Item/Feed.php:59 -#: src/Module/Item/Follow.php:41 src/Module/Item/Ignore.php:41 -#: src/Module/Item/Pin.php:41 src/Module/Item/Pin.php:56 -#: src/Module/Item/Star.php:42 src/Module/Update/Display.php:37 +#: src/Module/Contact/Follow.php:56 src/Module/Contact/Redir.php:45 +#: src/Module/Contact/Redir.php:206 src/Module/Conversation/Community.php:154 +#: src/Module/Debug/ItemBody.php:24 src/Module/Diaspora/Receive.php:45 +#: src/Module/Item/Display.php:82 src/Module/Item/Feed.php:45 +#: src/Module/Item/Follow.php:27 src/Module/Item/Ignore.php:27 +#: src/Module/Item/Language.php:39 src/Module/Item/Pin.php:27 +#: src/Module/Item/Pin.php:42 src/Module/Item/Searchtext.php:39 +#: src/Module/Item/Star.php:28 src/Module/Update/Display.php:23 msgid "Access denied." msgstr "Atingo nepermesita." -#: src/Module/Contact/Follow.php:105 src/Module/Contact/Unfollow.php:125 -#: src/Module/Profile/RemoteFollow.php:133 +#: src/Module/Contact/Follow.php:91 src/Module/Contact/Unfollow.php:111 +#: src/Module/Profile/RemoteFollow.php:119 msgid "Submit Request" msgstr "Sendi peton" -#: src/Module/Contact/Follow.php:115 +#: src/Module/Contact/Follow.php:101 msgid "You already added this contact." msgstr "" -#: src/Module/Contact/Follow.php:130 +#: src/Module/Contact/Follow.php:116 msgid "The network type couldn't be detected. Contact can't be added." msgstr "" -#: src/Module/Contact/Follow.php:138 +#: src/Module/Contact/Follow.php:124 msgid "Diaspora support isn't enabled. Contact can't be added." msgstr "" -#: src/Module/Contact/Follow.php:143 -msgid "OStatus support is disabled. Contact can't be added." -msgstr "" - -#: src/Module/Contact/Follow.php:168 src/Module/Profile/RemoteFollow.php:132 +#: src/Module/Contact/Follow.php:149 src/Module/Profile/RemoteFollow.php:118 msgid "Please answer the following:" msgstr "Bonvolu respondi:" -#: src/Module/Contact/Follow.php:169 src/Module/Contact/Unfollow.php:123 +#: src/Module/Contact/Follow.php:150 src/Module/Contact/Unfollow.php:109 msgid "Your Identity Address:" msgstr "Via identeca adreso:" -#: src/Module/Contact/Follow.php:170 src/Module/Contact/Profile.php:402 -#: src/Module/Contact/Unfollow.php:129 -#: src/Module/Moderation/Blocklist/Contact.php:133 -#: src/Module/Moderation/Reports.php:104 -#: src/Module/Notifications/Introductions.php:129 -#: src/Module/Notifications/Introductions.php:198 +#: src/Module/Contact/Follow.php:151 src/Module/Contact/Profile.php:408 +#: src/Module/Contact/Unfollow.php:115 +#: src/Module/Moderation/Blocklist/Contact.php:117 +#: src/Module/Moderation/Reports.php:109 +#: src/Module/Notifications/Introductions.php:121 +#: src/Module/Notifications/Introductions.php:190 msgid "Profile URL" msgstr "" -#: src/Module/Contact/Follow.php:171 src/Module/Contact/Profile.php:414 -#: src/Module/Notifications/Introductions.php:191 -#: src/Module/Profile/Profile.php:234 +#: src/Module/Contact/Follow.php:152 src/Module/Contact/Profile.php:420 +#: src/Module/Notifications/Introductions.php:183 +#: src/Module/Profile/Profile.php:222 msgid "Tags:" msgstr "Markoj:" -#: src/Module/Contact/Follow.php:182 +#: src/Module/Contact/Follow.php:163 #, php-format msgid "%s knows you" msgstr "" -#: src/Module/Contact/Follow.php:183 +#: src/Module/Contact/Follow.php:164 msgid "Add a personal note:" msgstr "Aldoni personan noton:" -#: src/Module/Contact/Follow.php:192 src/Module/Contact/Unfollow.php:138 +#: src/Module/Contact/Follow.php:173 src/Module/Contact/Unfollow.php:124 msgid "Posts and Replies" msgstr "" -#: src/Module/Contact/Follow.php:221 +#: src/Module/Contact/Follow.php:202 msgid "The contact could not be added." msgstr "" -#: src/Module/Contact/MatchInterests.php:94 -#: src/Module/Media/Attachment/Upload.php:77 -#: src/Module/Media/Attachment/Upload.php:82 -#: src/Module/Media/Photo/Upload.php:81 src/Module/Media/Photo/Upload.php:86 -#: src/Module/Media/Photo/Upload.php:135 +#: src/Module/Contact/MatchInterests.php:81 +#: src/Module/Media/Attachment/Upload.php:63 +#: src/Module/Media/Attachment/Upload.php:68 +#: src/Module/Media/Photo/Upload.php:67 src/Module/Media/Photo/Upload.php:72 +#: src/Module/Media/Photo/Upload.php:121 msgid "Invalid request." msgstr "" -#: src/Module/Contact/MatchInterests.php:101 +#: src/Module/Contact/MatchInterests.php:88 msgid "No keywords to match. Please add keywords to your profile." msgstr "" -#: src/Module/Contact/MatchInterests.php:144 +#: src/Module/Contact/MatchInterests.php:141 msgid "Profile Match" msgstr "Kongrua profilo" -#: src/Module/Contact/Profile.php:140 +#: src/Module/Contact/Profile.php:131 msgid "Failed to update contact record." msgstr "Ĝisdatigo de via kontaktrikordo malsukcesis." -#: src/Module/Contact/Profile.php:190 +#: src/Module/Contact/Profile.php:195 msgid "Contact has been unblocked" msgstr "Kontakto estas malblokita." -#: src/Module/Contact/Profile.php:194 +#: src/Module/Contact/Profile.php:199 msgid "Contact has been blocked" msgstr "Kontakto estas blokita." -#: src/Module/Contact/Profile.php:206 +#: src/Module/Contact/Profile.php:211 msgid "Contact has been unignored" msgstr "Kontakto estas malignorita." -#: src/Module/Contact/Profile.php:210 +#: src/Module/Contact/Profile.php:215 msgid "Contact has been ignored" msgstr "Kontakto estas ignorita." -#: src/Module/Contact/Profile.php:222 +#: src/Module/Contact/Profile.php:227 msgid "Contact has been uncollapsed" msgstr "" -#: src/Module/Contact/Profile.php:226 +#: src/Module/Contact/Profile.php:231 msgid "Contact has been collapsed" msgstr "" -#: src/Module/Contact/Profile.php:254 +#: src/Module/Contact/Profile.php:259 #, php-format msgid "You are mutual friends with %s" msgstr "Vi estas reciproka amiko de %s" -#: src/Module/Contact/Profile.php:255 +#: src/Module/Contact/Profile.php:260 #, php-format msgid "You are sharing with %s" msgstr "Vi kunhavigas kun %s" -#: src/Module/Contact/Profile.php:256 +#: src/Module/Contact/Profile.php:261 #, php-format msgid "%s is sharing with you" msgstr "%s kunhavigas kun vi" -#: src/Module/Contact/Profile.php:272 +#: src/Module/Contact/Profile.php:277 msgid "Private communications are not available for this contact." msgstr "Privataj komunikadoj ne disponeblas por ĉi tiu kontakto." -#: src/Module/Contact/Profile.php:282 +#: src/Module/Contact/Profile.php:287 msgid "This contact is on a server you ignored." msgstr "" -#: src/Module/Contact/Profile.php:285 +#: src/Module/Contact/Profile.php:290 msgid "Never" msgstr "Neniam" -#: src/Module/Contact/Profile.php:288 +#: src/Module/Contact/Profile.php:293 msgid "(Update was not successful)" msgstr "(Ĝisdatigo malsukcesis.)" -#: src/Module/Contact/Profile.php:288 +#: src/Module/Contact/Profile.php:293 msgid "(Update was successful)" msgstr "(Ĝisdatigo sukcesis.)" -#: src/Module/Contact/Profile.php:290 src/Module/Contact/Profile.php:482 +#: src/Module/Contact/Profile.php:295 src/Module/Contact/Profile.php:489 msgid "Suggest friends" msgstr "Sugesti amikojn" -#: src/Module/Contact/Profile.php:294 +#: src/Module/Contact/Profile.php:299 #, php-format msgid "Network type: %s" msgstr "Reta tipo: %s" -#: src/Module/Contact/Profile.php:299 +#: src/Module/Contact/Profile.php:304 msgid "Communications lost with this contact!" msgstr "Mi perdis la kommunikadon kun tiu kontakto!" -#: src/Module/Contact/Profile.php:305 +#: src/Module/Contact/Profile.php:310 msgid "Fetch further information for feeds" msgstr "" -#: src/Module/Contact/Profile.php:307 +#: src/Module/Contact/Profile.php:312 msgid "" "Fetch information like preview pictures, title and teaser from the feed " "item. You can activate this if the feed doesn't contain much text. Keywords " "are taken from the meta header in the feed item and are posted as hash tags." msgstr "" -#: src/Module/Contact/Profile.php:310 +#: src/Module/Contact/Profile.php:315 msgid "Fetch information" msgstr "" -#: src/Module/Contact/Profile.php:311 +#: src/Module/Contact/Profile.php:316 msgid "Fetch keywords" msgstr "" -#: src/Module/Contact/Profile.php:312 +#: src/Module/Contact/Profile.php:317 msgid "Fetch information and keywords" msgstr "" -#: src/Module/Contact/Profile.php:322 src/Module/Contact/Profile.php:327 -#: src/Module/Contact/Profile.php:332 src/Module/Contact/Profile.php:338 +#: src/Module/Contact/Profile.php:327 src/Module/Contact/Profile.php:332 +#: src/Module/Contact/Profile.php:337 src/Module/Contact/Profile.php:343 msgid "No mirroring" msgstr "" -#: src/Module/Contact/Profile.php:323 src/Module/Contact/Profile.php:333 -#: src/Module/Contact/Profile.php:339 +#: src/Module/Contact/Profile.php:328 src/Module/Contact/Profile.php:338 +#: src/Module/Contact/Profile.php:344 msgid "Mirror as my own posting" msgstr "" -#: src/Module/Contact/Profile.php:328 src/Module/Contact/Profile.php:334 +#: src/Module/Contact/Profile.php:333 src/Module/Contact/Profile.php:339 msgid "Native reshare" msgstr "" -#: src/Module/Contact/Profile.php:353 +#: src/Module/Contact/Profile.php:359 msgid "Contact Information / Notes" msgstr "Kontaktaj informoj / Notoj" -#: src/Module/Contact/Profile.php:354 +#: src/Module/Contact/Profile.php:360 msgid "Contact Settings" msgstr "" -#: src/Module/Contact/Profile.php:362 +#: src/Module/Contact/Profile.php:368 msgid "Contact" msgstr "" -#: src/Module/Contact/Profile.php:366 +#: src/Module/Contact/Profile.php:372 msgid "Their personal note" msgstr "" -#: src/Module/Contact/Profile.php:368 +#: src/Module/Contact/Profile.php:374 msgid "Edit contact notes" msgstr "Redakti kontaktnotojn" -#: src/Module/Contact/Profile.php:372 +#: src/Module/Contact/Profile.php:378 msgid "Block/Unblock contact" msgstr "Bloki/Malbloki kontakton" -#: src/Module/Contact/Profile.php:373 -#: src/Module/Moderation/Report/Create.php:293 +#: src/Module/Contact/Profile.php:379 +#: src/Module/Moderation/Report/Create.php:279 msgid "Ignore contact" msgstr "Ignori kontakton" -#: src/Module/Contact/Profile.php:374 +#: src/Module/Contact/Profile.php:380 msgid "View conversations" msgstr "Vidi konversaciojn" -#: src/Module/Contact/Profile.php:379 +#: src/Module/Contact/Profile.php:385 msgid "Last update:" msgstr "Plej ĵusa ĝisdatigo:" -#: src/Module/Contact/Profile.php:381 +#: src/Module/Contact/Profile.php:387 msgid "Update public posts" msgstr "Ĝisdatigi publikajn afiŝojn" -#: src/Module/Contact/Profile.php:383 src/Module/Contact/Profile.php:492 +#: src/Module/Contact/Profile.php:389 src/Module/Contact/Profile.php:499 msgid "Update now" msgstr "Ĝisdatigi nun" -#: src/Module/Contact/Profile.php:385 +#: src/Module/Contact/Profile.php:391 msgid "Awaiting connection acknowledge" msgstr "" -#: src/Module/Contact/Profile.php:386 +#: src/Module/Contact/Profile.php:392 msgid "Currently blocked" msgstr "Nuntempe blokata" -#: src/Module/Contact/Profile.php:387 +#: src/Module/Contact/Profile.php:393 msgid "Currently ignored" msgstr "Nuntempe ignorata" -#: src/Module/Contact/Profile.php:388 +#: src/Module/Contact/Profile.php:394 msgid "Currently collapsed" msgstr "" -#: src/Module/Contact/Profile.php:389 +#: src/Module/Contact/Profile.php:395 msgid "Currently archived" msgstr "Nuntempe enarkivigita" -#: src/Module/Contact/Profile.php:392 +#: src/Module/Contact/Profile.php:398 msgid "Manage remote servers" msgstr "" -#: src/Module/Contact/Profile.php:394 -#: src/Module/Notifications/Introductions.php:192 +#: src/Module/Contact/Profile.php:400 +#: src/Module/Notifications/Introductions.php:184 msgid "Hide this contact from others" msgstr "Kaŝi ĉi tiun kontakton al aliaj" -#: src/Module/Contact/Profile.php:394 +#: src/Module/Contact/Profile.php:400 msgid "" "Replies/likes to your public posts may still be visible" msgstr "Rispondoj/ŝataĵo al viaj publikaj afiŝoj eble plu estos videbla" -#: src/Module/Contact/Profile.php:395 +#: src/Module/Contact/Profile.php:401 msgid "Notification for new posts" msgstr "" -#: src/Module/Contact/Profile.php:395 +#: src/Module/Contact/Profile.php:401 msgid "Send a notification of every new post of this contact" msgstr "" -#: src/Module/Contact/Profile.php:397 +#: src/Module/Contact/Profile.php:403 msgid "Keyword Deny List" msgstr "" -#: src/Module/Contact/Profile.php:397 +#: src/Module/Contact/Profile.php:403 msgid "" "Comma separated list of keywords that should not be converted to hashtags, " "when \"Fetch information and keywords\" is selected" msgstr "" -#: src/Module/Contact/Profile.php:415 -#: src/Module/Settings/TwoFactor/Index.php:160 +#: src/Module/Contact/Profile.php:421 +#: src/Module/Settings/TwoFactor/Index.php:146 msgid "Actions" msgstr "" -#: src/Module/Contact/Profile.php:417 -#: src/Module/Settings/TwoFactor/Index.php:140 view/theme/frio/theme.php:232 +#: src/Module/Contact/Profile.php:423 +#: src/Module/Settings/TwoFactor/Index.php:126 view/theme/frio/theme.php:220 msgid "Status" msgstr "Stato" -#: src/Module/Contact/Profile.php:423 +#: src/Module/Contact/Profile.php:429 msgid "Mirror postings from this contact" msgstr "" -#: src/Module/Contact/Profile.php:425 +#: src/Module/Contact/Profile.php:431 msgid "" "Mark this contact as remote_self, this will cause friendica to repost new " "entries from this contact." msgstr "" -#: src/Module/Contact/Profile.php:428 +#: src/Module/Contact/Profile.php:434 msgid "Channel Settings" msgstr "" -#: src/Module/Contact/Profile.php:429 +#: src/Module/Contact/Profile.php:435 msgid "Frequency of this contact in relevant channels" msgstr "" -#: src/Module/Contact/Profile.php:430 +#: src/Module/Contact/Profile.php:436 msgid "" "Depending on the type of the channel not all posts from this contact are " "displayed. By default, posts need to have a minimum amount of interactions " @@ -6916,711 +6990,706 @@ msgid "" "block or hide the contact completely." msgstr "" -#: src/Module/Contact/Profile.php:431 +#: src/Module/Contact/Profile.php:437 msgid "Default frequency" msgstr "" -#: src/Module/Contact/Profile.php:431 +#: src/Module/Contact/Profile.php:437 msgid "" "Posts by this contact are displayed in the \"for you\" channel if you " "interact often with this contact or if a post reached some level of " "interaction." msgstr "" -#: src/Module/Contact/Profile.php:432 +#: src/Module/Contact/Profile.php:438 msgid "Display all posts of this contact" msgstr "" -#: src/Module/Contact/Profile.php:432 +#: src/Module/Contact/Profile.php:438 msgid "All posts from this contact will appear on the \"for you\" channel" msgstr "" -#: src/Module/Contact/Profile.php:433 +#: src/Module/Contact/Profile.php:439 msgid "Display only few posts" msgstr "" -#: src/Module/Contact/Profile.php:433 +#: src/Module/Contact/Profile.php:439 msgid "" "When a contact creates a lot of posts in a short period, this setting " "reduces the number of displayed posts in every channel." msgstr "" -#: src/Module/Contact/Profile.php:434 +#: src/Module/Contact/Profile.php:440 msgid "Never display posts" msgstr "" -#: src/Module/Contact/Profile.php:434 +#: src/Module/Contact/Profile.php:440 msgid "Posts from this contact will never be displayed in any channel" msgstr "" -#: src/Module/Contact/Profile.php:502 +#: src/Module/Contact/Profile.php:441 +msgid "Channel Only" +msgstr "" + +#: src/Module/Contact/Profile.php:441 +msgid "" +"If enabled, posts from this contact will only appear in channels and network" +" streams in circles, but not in the general network stream." +msgstr "" + +#: src/Module/Contact/Profile.php:509 msgid "Refetch contact data" msgstr "" -#: src/Module/Contact/Profile.php:513 +#: src/Module/Contact/Profile.php:520 msgid "Toggle Blocked status" msgstr "Ŝalti/malŝalti Blokitan staton" -#: src/Module/Contact/Profile.php:521 +#: src/Module/Contact/Profile.php:528 msgid "Toggle Ignored status" msgstr "Ŝalti/malŝalti Ignoritan staton" -#: src/Module/Contact/Profile.php:529 +#: src/Module/Contact/Profile.php:536 msgid "Toggle Collapsed status" msgstr "" -#: src/Module/Contact/Profile.php:536 src/Module/Contact/Revoke.php:106 +#: src/Module/Contact/Profile.php:543 src/Module/Contact/Revoke.php:89 msgid "Revoke Follow" msgstr "" -#: src/Module/Contact/Profile.php:538 +#: src/Module/Contact/Profile.php:545 msgid "Revoke the follow from this contact" msgstr "" -#: src/Module/Contact/Redir.php:134 src/Module/Contact/Redir.php:186 +#: src/Module/Contact/Redir.php:125 msgid "Bad Request." msgstr "" -#: src/Module/Contact/Revoke.php:63 -msgid "Unknown contact." -msgstr "" - -#: src/Module/Contact/Revoke.php:77 +#: src/Module/Contact/Revoke.php:60 msgid "Contact is being deleted." msgstr "" -#: src/Module/Contact/Revoke.php:91 +#: src/Module/Contact/Revoke.php:74 msgid "Follow was successfully revoked." msgstr "" -#: src/Module/Contact/Revoke.php:107 +#: src/Module/Contact/Revoke.php:90 msgid "" "Do you really want to revoke this contact's follow? This cannot be undone " "and they will have to manually follow you back again." msgstr "" -#: src/Module/Contact/Revoke.php:108 -#: src/Module/Notifications/Introductions.php:144 -#: src/Module/OAuth/Acknowledge.php:54 src/Module/Register.php:130 -#: src/Module/Settings/TwoFactor/Trusted.php:129 -msgid "Yes" -msgstr "Jes" - -#: src/Module/Contact/Suggestions.php:62 +#: src/Module/Contact/Suggestions.php:48 msgid "" "No suggestions available. If this is a new site, please try again in 24 " "hours." msgstr "Neniu sugestoj disponeblas. Se ĉi tiu estas nova retejo, bonvolu reprovi post 24 horoj." -#: src/Module/Contact/Unfollow.php:98 src/Module/Contact/Unfollow.php:167 +#: src/Module/Contact/Unfollow.php:84 src/Module/Contact/Unfollow.php:153 msgid "You aren't following this contact." msgstr "" -#: src/Module/Contact/Unfollow.php:103 +#: src/Module/Contact/Unfollow.php:89 msgid "Unfollowing is currently not supported by your network." msgstr "" -#: src/Module/Contact/Unfollow.php:121 +#: src/Module/Contact/Unfollow.php:107 msgid "Disconnect/Unfollow" msgstr "" -#: src/Module/Contact/Unfollow.php:175 +#: src/Module/Contact/Unfollow.php:161 msgid "Contact was successfully unfollowed" msgstr "" -#: src/Module/Contact/Unfollow.php:178 +#: src/Module/Contact/Unfollow.php:164 msgid "Unable to unfollow this contact, please contact your administrator" msgstr "" -#: src/Module/Conversation/Channel.php:139 -#: src/Module/Conversation/Community.php:126 src/Module/Search/Index.php:152 -#: src/Module/Search/Index.php:194 +#: src/Module/Conversation/Channel.php:125 +#: src/Module/Conversation/Community.php:114 src/Module/Search/Index.php:138 +#: src/Module/Search/Index.php:180 msgid "No results." msgstr "Nenion trovita." -#: src/Module/Conversation/Channel.php:177 +#: src/Module/Conversation/Channel.php:163 msgid "Channel not available." msgstr "" -#: src/Module/Conversation/Community.php:92 +#: src/Module/Conversation/Community.php:80 msgid "" "This community stream shows all public posts received by this node. They may" " not reflect the opinions of this node’s users." msgstr "" -#: src/Module/Conversation/Community.php:180 +#: src/Module/Conversation/Community.php:168 msgid "Community option not available." msgstr "" -#: src/Module/Conversation/Community.php:196 +#: src/Module/Conversation/Community.php:184 msgid "Not available." msgstr "Ne disponebla." -#: src/Module/Conversation/Network.php:200 +#: src/Module/Conversation/Network.php:202 msgid "No such circle" msgstr "" -#: src/Module/Conversation/Network.php:204 +#: src/Module/Conversation/Network.php:206 #, php-format msgid "Circle: %s" msgstr "" -#: src/Module/Conversation/Network.php:223 +#: src/Module/Conversation/Network.php:226 #, php-format msgid "Error %d (%s) while fetching the timeline." msgstr "" -#: src/Module/Conversation/Network.php:300 +#: src/Module/Conversation/Network.php:304 msgid "Network feed not available." msgstr "" -#: src/Module/Conversation/Timeline.php:196 -msgid "Own Contacts" -msgstr "" - -#: src/Module/Conversation/Timeline.php:200 +#: src/Module/Conversation/Timeline.php:190 msgid "Include" msgstr "" -#: src/Module/Conversation/Timeline.php:201 +#: src/Module/Conversation/Timeline.php:191 msgid "Hide" msgstr "" -#: src/Module/Credits.php:44 +#: src/Module/Credits.php:30 msgid "Credits" msgstr "" -#: src/Module/Credits.php:45 +#: src/Module/Credits.php:31 msgid "" "Friendica is a community project, that would not be possible without the " "help of many people. Here is a list of those who have contributed to the " "code or the translation of Friendica. Thank you all!" msgstr "" -#: src/Module/Debug/ActivityPubConversion.php:53 +#: src/Module/Debug/ActivityPubConversion.php:45 msgid "Formatted" msgstr "" -#: src/Module/Debug/ActivityPubConversion.php:65 +#: src/Module/Debug/ActivityPubConversion.php:57 msgid "Activity" msgstr "" -#: src/Module/Debug/ActivityPubConversion.php:117 +#: src/Module/Debug/ActivityPubConversion.php:109 msgid "Object data" msgstr "" -#: src/Module/Debug/ActivityPubConversion.php:124 +#: src/Module/Debug/ActivityPubConversion.php:116 msgid "Result Item" msgstr "" -#: src/Module/Debug/ActivityPubConversion.php:129 -#: src/Module/Debug/Babel.php:294 src/Module/Moderation/Item/Source.php:87 -#: src/Module/Security/TwoFactor/Verify.php:98 +#: src/Module/Debug/ActivityPubConversion.php:121 +#: src/Module/Debug/Babel.php:286 src/Module/Moderation/Item/Source.php:79 +#: src/Module/Security/TwoFactor/Verify.php:84 msgid "Error" msgid_plural "Errors" msgstr[0] "" msgstr[1] "" -#: src/Module/Debug/ActivityPubConversion.php:138 +#: src/Module/Debug/ActivityPubConversion.php:130 msgid "Source activity" msgstr "" -#: src/Module/Debug/Babel.php:52 +#: src/Module/Debug/Babel.php:44 msgid "Source input" msgstr "" -#: src/Module/Debug/Babel.php:58 +#: src/Module/Debug/Babel.php:50 msgid "BBCode::toPlaintext" msgstr "" -#: src/Module/Debug/Babel.php:64 +#: src/Module/Debug/Babel.php:56 msgid "BBCode::convert (raw HTML)" msgstr "" -#: src/Module/Debug/Babel.php:69 +#: src/Module/Debug/Babel.php:61 msgid "BBCode::convert (hex)" msgstr "" -#: src/Module/Debug/Babel.php:74 +#: src/Module/Debug/Babel.php:66 msgid "BBCode::convert" msgstr "" -#: src/Module/Debug/Babel.php:80 +#: src/Module/Debug/Babel.php:72 msgid "BBCode::convert => HTML::toBBCode" msgstr "" -#: src/Module/Debug/Babel.php:86 +#: src/Module/Debug/Babel.php:78 msgid "BBCode::toMarkdown" msgstr "" -#: src/Module/Debug/Babel.php:92 +#: src/Module/Debug/Babel.php:84 msgid "BBCode::toMarkdown => Markdown::convert (raw HTML)" msgstr "" -#: src/Module/Debug/Babel.php:96 +#: src/Module/Debug/Babel.php:88 msgid "BBCode::toMarkdown => Markdown::convert" msgstr "" -#: src/Module/Debug/Babel.php:102 +#: src/Module/Debug/Babel.php:94 msgid "BBCode::toMarkdown => Markdown::toBBCode" msgstr "" -#: src/Module/Debug/Babel.php:108 +#: src/Module/Debug/Babel.php:100 msgid "BBCode::toMarkdown => Markdown::convert => HTML::toBBCode" msgstr "" -#: src/Module/Debug/Babel.php:116 +#: src/Module/Debug/Babel.php:108 msgid "Item Body" msgstr "" -#: src/Module/Debug/Babel.php:120 +#: src/Module/Debug/Babel.php:112 msgid "Item Tags" msgstr "" -#: src/Module/Debug/Babel.php:126 +#: src/Module/Debug/Babel.php:118 msgid "PageInfo::appendToBody" msgstr "" -#: src/Module/Debug/Babel.php:131 +#: src/Module/Debug/Babel.php:123 msgid "PageInfo::appendToBody => BBCode::convert (raw HTML)" msgstr "" -#: src/Module/Debug/Babel.php:135 +#: src/Module/Debug/Babel.php:127 msgid "PageInfo::appendToBody => BBCode::convert" msgstr "" -#: src/Module/Debug/Babel.php:142 +#: src/Module/Debug/Babel.php:134 msgid "Source input (Diaspora format)" msgstr "" -#: src/Module/Debug/Babel.php:151 +#: src/Module/Debug/Babel.php:143 msgid "Source input (Markdown)" msgstr "" -#: src/Module/Debug/Babel.php:157 +#: src/Module/Debug/Babel.php:149 msgid "Markdown::convert (raw HTML)" msgstr "" -#: src/Module/Debug/Babel.php:162 +#: src/Module/Debug/Babel.php:154 msgid "Markdown::convert" msgstr "" -#: src/Module/Debug/Babel.php:168 +#: src/Module/Debug/Babel.php:160 msgid "Markdown::toBBCode" msgstr "" -#: src/Module/Debug/Babel.php:175 +#: src/Module/Debug/Babel.php:167 msgid "Raw HTML input" msgstr "" -#: src/Module/Debug/Babel.php:180 +#: src/Module/Debug/Babel.php:172 msgid "HTML Input" msgstr "" -#: src/Module/Debug/Babel.php:187 +#: src/Module/Debug/Babel.php:179 msgid "HTML Purified (raw)" msgstr "" -#: src/Module/Debug/Babel.php:192 +#: src/Module/Debug/Babel.php:184 msgid "HTML Purified (hex)" msgstr "" -#: src/Module/Debug/Babel.php:197 +#: src/Module/Debug/Babel.php:189 msgid "HTML Purified" msgstr "" -#: src/Module/Debug/Babel.php:203 +#: src/Module/Debug/Babel.php:195 msgid "HTML::toBBCode" msgstr "" -#: src/Module/Debug/Babel.php:209 +#: src/Module/Debug/Babel.php:201 msgid "HTML::toBBCode => BBCode::convert" msgstr "" -#: src/Module/Debug/Babel.php:214 +#: src/Module/Debug/Babel.php:206 msgid "HTML::toBBCode => BBCode::convert (raw HTML)" msgstr "" -#: src/Module/Debug/Babel.php:220 +#: src/Module/Debug/Babel.php:212 msgid "HTML::toBBCode => BBCode::toPlaintext" msgstr "" -#: src/Module/Debug/Babel.php:226 +#: src/Module/Debug/Babel.php:218 msgid "HTML::toMarkdown" msgstr "" -#: src/Module/Debug/Babel.php:232 +#: src/Module/Debug/Babel.php:224 msgid "HTML::toPlaintext" msgstr "" -#: src/Module/Debug/Babel.php:238 +#: src/Module/Debug/Babel.php:230 msgid "HTML::toPlaintext (compact)" msgstr "" -#: src/Module/Debug/Babel.php:256 +#: src/Module/Debug/Babel.php:248 msgid "Decoded post" msgstr "" -#: src/Module/Debug/Babel.php:277 +#: src/Module/Debug/Babel.php:269 msgid "Post array before expand entities" msgstr "" -#: src/Module/Debug/Babel.php:284 +#: src/Module/Debug/Babel.php:276 msgid "Post converted" msgstr "" -#: src/Module/Debug/Babel.php:289 +#: src/Module/Debug/Babel.php:281 msgid "Converted body" msgstr "" -#: src/Module/Debug/Babel.php:295 +#: src/Module/Debug/Babel.php:287 msgid "Twitter addon is absent from the addon/ folder." msgstr "" -#: src/Module/Debug/Babel.php:305 +#: src/Module/Debug/Babel.php:297 msgid "Babel Diagnostic" msgstr "" -#: src/Module/Debug/Babel.php:307 +#: src/Module/Debug/Babel.php:299 msgid "Source text" msgstr "" -#: src/Module/Debug/Babel.php:308 +#: src/Module/Debug/Babel.php:300 msgid "BBCode" msgstr "" -#: src/Module/Debug/Babel.php:310 +#: src/Module/Debug/Babel.php:302 msgid "Markdown" msgstr "" -#: src/Module/Debug/Babel.php:311 +#: src/Module/Debug/Babel.php:303 msgid "HTML" msgstr "" -#: src/Module/Debug/Babel.php:313 +#: src/Module/Debug/Babel.php:305 msgid "Twitter Source / Tweet URL (requires API key)" msgstr "" -#: src/Module/Debug/Feed.php:52 src/Module/Filer/SaveTag.php:47 -#: src/Module/Settings/Profile/Index.php:177 +#: src/Module/Debug/Feed.php:39 src/Module/Filer/SaveTag.php:33 +#: src/Module/Settings/Profile/Index.php:166 msgid "You must be logged in to use this module" msgstr "" -#: src/Module/Debug/Feed.php:77 +#: src/Module/Debug/Feed.php:64 msgid "Source URL" msgstr "" -#: src/Module/Debug/Localtime.php:49 +#: src/Module/Debug/Localtime.php:35 msgid "Time Conversion" msgstr "Konverto de tempo" -#: src/Module/Debug/Localtime.php:50 +#: src/Module/Debug/Localtime.php:36 msgid "" "Friendica provides this service for sharing events with other networks and " "friends in unknown timezones." msgstr "Friendica provizas tiun servon por kunhavigi okazojn kun aliaj retoj kaj amikoj en aliaj horzonoj." -#: src/Module/Debug/Localtime.php:51 +#: src/Module/Debug/Localtime.php:37 #, php-format msgid "UTC time: %s" msgstr "UTC horo: %s" -#: src/Module/Debug/Localtime.php:54 +#: src/Module/Debug/Localtime.php:40 #, php-format msgid "Current timezone: %s" msgstr "Aktuala horzono: %s" -#: src/Module/Debug/Localtime.php:58 +#: src/Module/Debug/Localtime.php:44 #, php-format msgid "Converted localtime: %s" msgstr "Konvertita loka horo: %s" -#: src/Module/Debug/Localtime.php:62 +#: src/Module/Debug/Localtime.php:48 msgid "Please select your timezone:" msgstr "Bonvolu elekti vian horzonon:" -#: src/Module/Debug/Probe.php:38 src/Module/Debug/WebFinger.php:37 +#: src/Module/Debug/Probe.php:24 src/Module/Debug/WebFinger.php:23 msgid "Only logged in users are permitted to perform a probing." msgstr "" -#: src/Module/Debug/Probe.php:52 +#: src/Module/Debug/Probe.php:38 msgid "Probe Diagnostic" msgstr "" -#: src/Module/Debug/Probe.php:53 +#: src/Module/Debug/Probe.php:39 msgid "Output" msgstr "" -#: src/Module/Debug/Probe.php:56 +#: src/Module/Debug/Probe.php:42 msgid "Lookup address" msgstr "" -#: src/Module/Debug/WebFinger.php:50 +#: src/Module/Debug/WebFinger.php:36 msgid "Webfinger Diagnostic" msgstr "" -#: src/Module/Debug/WebFinger.php:52 +#: src/Module/Debug/WebFinger.php:38 msgid "Lookup address:" msgstr "" -#: src/Module/Directory.php:74 +#: src/Module/Directory.php:61 msgid "No entries (some entries may be hidden)." msgstr "Neniom da afiŝoj (kelkaj afiŝoj eble ne estas videbla)." -#: src/Module/Directory.php:90 +#: src/Module/Directory.php:77 msgid "Find on this site" msgstr "Trovi en ĉi retejo" -#: src/Module/Directory.php:92 +#: src/Module/Directory.php:79 msgid "Results for:" msgstr "" -#: src/Module/Directory.php:94 +#: src/Module/Directory.php:81 msgid "Site Directory" msgstr "Reteja Katalogo" -#: src/Module/Filer/RemoveTag.php:105 +#: src/Module/Filer/RemoveTag.php:91 msgid "Item was not deleted" msgstr "" -#: src/Module/Filer/RemoveTag.php:115 +#: src/Module/Filer/RemoveTag.php:101 msgid "Item was not removed" msgstr "" -#: src/Module/Filer/SaveTag.php:73 +#: src/Module/Filer/SaveTag.php:59 msgid "- select -" msgstr "- elekti -" -#: src/Module/FriendSuggest.php:82 +#: src/Module/FriendSuggest.php:68 msgid "Suggested contact not found." msgstr "" -#: src/Module/FriendSuggest.php:100 +#: src/Module/FriendSuggest.php:86 msgid "Friend suggestion sent." msgstr "Amikosugesto sendita." -#: src/Module/FriendSuggest.php:137 +#: src/Module/FriendSuggest.php:123 msgid "Suggest Friends" msgstr "Sugesti amikojn" -#: src/Module/FriendSuggest.php:140 +#: src/Module/FriendSuggest.php:126 #, php-format msgid "Suggest a friend for %s" msgstr "Sugesti amikon por %s" -#: src/Module/Friendica.php:82 +#: src/Module/Friendica.php:67 msgid "Installed addons/apps:" msgstr "" -#: src/Module/Friendica.php:87 +#: src/Module/Friendica.php:72 msgid "No installed addons/apps" msgstr "" -#: src/Module/Friendica.php:92 +#: src/Module/Friendica.php:77 #, php-format msgid "Read about the Terms of Service of this node." msgstr "" -#: src/Module/Friendica.php:99 +#: src/Module/Friendica.php:84 msgid "On this server the following remote servers are blocked." 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:226 +#: src/Module/Friendica.php:87 +#: src/Module/Moderation/Blocklist/Server/Index.php:73 +#: src/Module/Moderation/Blocklist/Server/Index.php:97 +#: src/Module/Settings/Channels.php:218 msgid "Reason for the block" msgstr "" -#: src/Module/Friendica.php:104 +#: src/Module/Friendica.php:89 msgid "Download this list in CSV format" msgstr "" -#: src/Module/Friendica.php:118 +#: src/Module/Friendica.php:103 #, php-format msgid "" "This is Friendica, version %s that is running at the web location %s. The " "database version is %s, the post update version is %s." msgstr "" -#: src/Module/Friendica.php:123 +#: src/Module/Friendica.php:108 msgid "" "Please visit Friendi.ca to learn more " "about the Friendica project." msgstr "" -#: src/Module/Friendica.php:124 +#: src/Module/Friendica.php:109 msgid "Bug reports and issues: please visit" msgstr "Cimraportoj kaj atendindaĵo: bonvolu iri al" -#: src/Module/Friendica.php:124 +#: src/Module/Friendica.php:109 msgid "the bugtracker at github" msgstr "" -#: src/Module/Friendica.php:125 +#: src/Module/Friendica.php:110 msgid "Suggestions, praise, etc. - please email \"info\" at \"friendi - dot - ca" msgstr "" -#: src/Module/HCard.php:45 +#: src/Module/HCard.php:31 msgid "No profile" msgstr "Neniu profilo" -#: src/Module/HTTPException/MethodNotAllowed.php:31 +#: src/Module/HTTPException/MethodNotAllowed.php:17 msgid "Method Not Allowed." msgstr "" -#: src/Module/Help.php:60 +#: src/Module/Help.php:46 msgid "Help:" msgstr "Helpo:" -#: src/Module/Home.php:63 +#: src/Module/Home.php:52 #, php-format msgid "Welcome to %s" msgstr "Bonvenon ĉe %s" -#: src/Module/Install.php:189 +#: src/Module/Install.php:175 msgid "Friendica Communications Server - Setup" msgstr "" -#: src/Module/Install.php:200 +#: src/Module/Install.php:186 msgid "System check" msgstr "Sistema kontrolo" -#: src/Module/Install.php:202 src/Module/Install.php:247 -#: src/Module/Install.php:326 +#: src/Module/Install.php:188 src/Module/Install.php:233 +#: src/Module/Install.php:312 msgid "Requirement not satisfied" msgstr "" -#: src/Module/Install.php:203 +#: src/Module/Install.php:189 msgid "Optional requirement not satisfied" msgstr "" -#: src/Module/Install.php:204 +#: src/Module/Install.php:190 msgid "OK" msgstr "" -#: src/Module/Install.php:208 +#: src/Module/Install.php:194 msgid "Next" msgstr "sekva" -#: src/Module/Install.php:209 +#: src/Module/Install.php:195 msgid "Check again" msgstr "Ree kontroli" -#: src/Module/Install.php:222 +#: src/Module/Install.php:208 msgid "Base settings" msgstr "" -#: src/Module/Install.php:224 +#: src/Module/Install.php:210 msgid "Base path to installation" msgstr "" -#: src/Module/Install.php:226 +#: src/Module/Install.php:212 msgid "" "If the system cannot detect the correct path to your installation, enter the" " correct path here. This setting should only be set if you are using a " "restricted system and symbolic links to your webroot." msgstr "" -#: src/Module/Install.php:229 +#: src/Module/Install.php:215 msgid "The Friendica system URL" msgstr "" -#: src/Module/Install.php:231 +#: src/Module/Install.php:217 msgid "" "Overwrite this field in case the system URL determination isn't right, " "otherwise leave it as is." msgstr "" -#: src/Module/Install.php:242 +#: src/Module/Install.php:228 msgid "Database connection" msgstr "Datumbaza konekto" -#: src/Module/Install.php:243 +#: src/Module/Install.php:229 msgid "" "In order to install Friendica we need to know how to connect to your " "database." msgstr "Por instali Friendica, ni bezonas scii kiel konekti al via datumbazo." -#: src/Module/Install.php:244 +#: src/Module/Install.php:230 msgid "" "Please contact your hosting provider or site administrator if you have " "questions about these settings." msgstr "Bonvolu kontakti vian servilprovizanton aŭ administranton se vi havas demandoj pri ĉi tiaj agordoj." -#: src/Module/Install.php:245 +#: src/Module/Install.php:231 msgid "" "The database you specify below should already exist. If it does not, please " "create it before continuing." msgstr "La datumbazo nomata malsupren jam ekzistu. Se ĝi ne ekzistas, bonvolu unue krei ĝin antaŭ progresi." -#: src/Module/Install.php:252 +#: src/Module/Install.php:238 msgid "Database Server Name" msgstr "Nomo de datumbaza servilo." -#: src/Module/Install.php:257 +#: src/Module/Install.php:243 msgid "Database Login Name" msgstr "Salutnomo ĉe la datumbazo." -#: src/Module/Install.php:263 +#: src/Module/Install.php:249 msgid "Database Login Password" msgstr "Pasvorto ĉe la datumbazo." -#: src/Module/Install.php:265 +#: src/Module/Install.php:251 msgid "For security reasons the password must not be empty" msgstr "" -#: src/Module/Install.php:268 +#: src/Module/Install.php:254 msgid "Database Name" msgstr "Nomo de la datumbazo." -#: src/Module/Install.php:272 src/Module/Install.php:300 +#: src/Module/Install.php:258 src/Module/Install.php:286 msgid "Please select a default timezone for your website" msgstr "Bonvolu elekti defaŭltan horzonon por via retejo." -#: src/Module/Install.php:287 +#: src/Module/Install.php:273 msgid "Site settings" msgstr "Retejaj agordoj" -#: src/Module/Install.php:295 +#: src/Module/Install.php:281 msgid "Site administrator email address" msgstr "Retpoŝtadreso de la reteja administranto" -#: src/Module/Install.php:297 +#: src/Module/Install.php:283 msgid "" "Your account email address must match this in order to use the web admin " "panel." msgstr "La repoŝtadreso de via konto bezonas esti la sama por uzi la TTTa administrilo." -#: src/Module/Install.php:304 +#: src/Module/Install.php:290 msgid "System Language:" msgstr "" -#: src/Module/Install.php:306 +#: src/Module/Install.php:292 msgid "" "Set the default language for your Friendica installation interface and to " "send emails." msgstr "" -#: src/Module/Install.php:318 +#: src/Module/Install.php:304 msgid "Your Friendica site database has been installed." msgstr "La datumbazo de vi Friendica retjo estas instalita." -#: src/Module/Install.php:328 +#: src/Module/Install.php:314 msgid "Installation finished" msgstr "" -#: src/Module/Install.php:348 +#: src/Module/Install.php:334 msgid "

What next

" msgstr "

Kio sekvas nun?

" -#: src/Module/Install.php:349 +#: src/Module/Install.php:335 msgid "" "IMPORTANT: You will need to [manually] setup a scheduled task for the " "worker." msgstr "" -#: src/Module/Install.php:352 +#: src/Module/Install.php:338 #, php-format msgid "" "Go to your new Friendica node registration page " @@ -7628,40 +7697,40 @@ msgid "" " administrator email. This will allow you to enter the site admin panel." msgstr "" -#: src/Module/Invite.php:57 +#: src/Module/Invite.php:43 msgid "Total invitation limit exceeded." msgstr "" -#: src/Module/Invite.php:82 +#: src/Module/Invite.php:68 #, php-format msgid "%s : Not a valid email address." msgstr "%s: Ne estas valida retpoŝtadreso." -#: src/Module/Invite.php:108 +#: src/Module/Invite.php:94 msgid "Please join us on Friendica" msgstr "Bonvolu aliĝi kun ni ĉe Friendica" -#: src/Module/Invite.php:117 +#: src/Module/Invite.php:103 msgid "Invitation limit exceeded. Please contact your site administrator." msgstr "" -#: src/Module/Invite.php:121 +#: src/Module/Invite.php:107 #, php-format msgid "%s : Message delivery failed." msgstr "%s: La livero de la mesaĝo malsukcesis." -#: src/Module/Invite.php:125 +#: src/Module/Invite.php:111 #, php-format msgid "%d message sent." msgid_plural "%d messages sent." msgstr[0] "Sendis %d mesaĝon." msgstr[1] "Sendis %d mesaĝojn." -#: src/Module/Invite.php:143 +#: src/Module/Invite.php:129 msgid "You have no more invitations available" msgstr "Vi ne plu disponeblas invitaĵojn" -#: src/Module/Invite.php:150 +#: src/Module/Invite.php:136 #, php-format msgid "" "Visit %s for a list of public sites that you can join. Friendica members on " @@ -7669,14 +7738,14 @@ msgid "" " other social networks." msgstr "Vizitu %s por listo de publikaj retejoj kie vi povas aliĝi. Anoj de Friendica ĉe aliaj retejoj povas konekti unu kun la alian, kaj ankaŭ kun membroj de multaj aliaj retejoj." -#: src/Module/Invite.php:152 +#: src/Module/Invite.php:138 #, php-format msgid "" "To accept this invitation, please visit and register at %s or any other " "public Friendica website." msgstr "Por akcepti ĉi tiu invito, bonvolu viziti kaj registriĝi ĉe %s au alia publika Friendica retejo." -#: src/Module/Invite.php:153 +#: src/Module/Invite.php:139 #, php-format msgid "" "Friendica sites all inter-connect to create a huge privacy-enhanced social " @@ -7685,333 +7754,337 @@ msgid "" "sites you can join." msgstr "Ĉiuj Friendica retejoj interkonektiĝas kaj kune faras grandan altprivatecan interkonan reton, kiun posedas kaj kontrolas ĝiaj membroj. Ili ankaŭ povas konekti kun multe de tradiciaj interkonaj retejoj. Vidu %s por listo de publikaj retejoj kie vi povas aliĝi." -#: src/Module/Invite.php:157 +#: src/Module/Invite.php:143 msgid "" "Our apologies. This system is not currently configured to connect with other" " public sites or invite members." msgstr "Senkulpigu nin. La sistemo nuntempe ne estas agordita por konekti al aliaj retejoj au inviti membrojn." -#: src/Module/Invite.php:160 +#: src/Module/Invite.php:146 msgid "" "Friendica sites all inter-connect to create a huge privacy-enhanced social " "web that is owned and controlled by its members. They can also connect with " "many traditional social networks." msgstr "" -#: src/Module/Invite.php:159 +#: src/Module/Invite.php:145 #, php-format msgid "To accept this invitation, please visit and register at %s." msgstr "" -#: src/Module/Invite.php:167 +#: src/Module/Invite.php:153 msgid "Send invitations" msgstr "Sendi invitojn" -#: src/Module/Invite.php:168 +#: src/Module/Invite.php:154 msgid "Enter email addresses, one per line:" msgstr "Entajpu retpoŝtadresojn, po unu por ĉiu linio." -#: src/Module/Invite.php:172 +#: src/Module/Invite.php:158 msgid "" "You are cordially invited to join me and other close friends on Friendica - " "and help us to create a better social web." msgstr "Ni bonkore invitas vin aliĝi kun ni kaj aliaj bonaj amikoj ĉe Friendica. Helpu nin krei pli bonan interkonan reton." -#: src/Module/Invite.php:174 +#: src/Module/Invite.php:160 msgid "You will need to supply this invitation code: $invite_code" msgstr "Vi bezonas ĉi-tiun invitkodon: $invite_code" -#: src/Module/Invite.php:174 +#: src/Module/Invite.php:160 msgid "" "Once you have registered, please connect with me via my profile page at:" msgstr "Kiam vi registris, bonvolu konekti al mi pere de mi profilo ĉe: " -#: src/Module/Invite.php:176 +#: src/Module/Invite.php:162 msgid "" "For more information about the Friendica project and why we feel it is " "important, please visit http://friendi.ca" msgstr "" -#: src/Module/Item/Compose.php:85 +#: src/Module/Item/Compose.php:80 msgid "Please enter a post body." msgstr "" -#: src/Module/Item/Compose.php:98 +#: src/Module/Item/Compose.php:91 msgid "This feature is only available with the frio theme." msgstr "" -#: src/Module/Item/Compose.php:122 +#: src/Module/Item/Compose.php:115 msgid "Compose new personal note" msgstr "" -#: src/Module/Item/Compose.php:131 +#: src/Module/Item/Compose.php:124 msgid "Compose new post" msgstr "" -#: src/Module/Item/Compose.php:187 +#: src/Module/Item/Compose.php:180 msgid "Visibility" msgstr "" -#: src/Module/Item/Compose.php:203 +#: src/Module/Item/Compose.php:196 msgid "Clear the location" msgstr "" -#: src/Module/Item/Compose.php:204 +#: src/Module/Item/Compose.php:197 msgid "Location services are unavailable on your device" msgstr "" -#: src/Module/Item/Compose.php:205 +#: src/Module/Item/Compose.php:198 msgid "" "Location services are disabled. Please check the website's permissions on " "your device" msgstr "" -#: src/Module/Item/Compose.php:211 +#: src/Module/Item/Compose.php:204 msgid "" "You can make this page always open when you use the New Post button in the " "Theme Customization settings." msgstr "" -#: src/Module/Item/Feed.php:86 +#: src/Module/Item/Feed.php:72 msgid "The feed for this item is unavailable." msgstr "" -#: src/Module/Item/Follow.php:51 +#: src/Module/Item/Follow.php:37 msgid "Unable to follow this item." msgstr "" -#: src/Module/Maintenance.php:48 src/Module/Maintenance.php:53 +#: src/Module/Maintenance.php:34 src/Module/Maintenance.php:39 msgid "System down for maintenance" msgstr "" -#: src/Module/Maintenance.php:54 +#: src/Module/Maintenance.php:40 msgid "" "This Friendica node is currently in maintenance mode, either automatically " "because it is self-updating or manually by the node administrator. This " "condition should be temporary, please come back in a few minutes." msgstr "" -#: src/Module/Manifest.php:40 +#: src/Module/Manifest.php:26 msgid "A Decentralized Social Network" msgstr "" -#: src/Module/Media/Attachment/Browser.php:58 -#: src/Module/Media/Photo/Browser.php:59 +#: src/Module/Media/Attachment/Browser.php:44 +#: src/Module/Media/Photo/Browser.php:45 msgid "You need to be logged in to access this page." msgstr "" -#: src/Module/Media/Attachment/Browser.php:74 +#: src/Module/Media/Attachment/Browser.php:60 msgid "Files" msgstr "Dosieroj" -#: src/Module/Media/Attachment/Browser.php:79 -#: src/Module/Media/Photo/Browser.php:90 -#: src/Module/Settings/Profile/Photo/Index.php:127 +#: src/Module/Media/Attachment/Browser.php:65 +#: src/Module/Media/Photo/Browser.php:76 +#: src/Module/Settings/Profile/Photo/Index.php:113 msgid "Upload" msgstr "Alŝuti" -#: src/Module/Media/Attachment/Upload.php:97 +#: src/Module/Media/Attachment/Upload.php:83 msgid "Sorry, maybe your upload is bigger than the PHP configuration allows" msgstr "" -#: src/Module/Media/Attachment/Upload.php:97 +#: src/Module/Media/Attachment/Upload.php:83 msgid "Or - did you try to upload an empty file?" msgstr "" -#: src/Module/Media/Attachment/Upload.php:104 +#: src/Module/Media/Attachment/Upload.php:90 #, php-format msgid "File exceeds size limit of %s" msgstr "" -#: src/Module/Media/Attachment/Upload.php:114 +#: src/Module/Media/Attachment/Upload.php:100 msgid "File upload failed." msgstr "Alŝutado malsukcesis." -#: src/Module/Media/Photo/Upload.php:150 src/Module/Media/Photo/Upload.php:151 -#: src/Module/Profile/Photos.php:215 -#: src/Module/Settings/Profile/Photo/Index.php:67 +#: src/Module/Media/Photo/Upload.php:136 src/Module/Media/Photo/Upload.php:137 +#: src/Module/Profile/Photos.php:201 +#: src/Module/Settings/Profile/Photo/Index.php:53 msgid "Unable to process image." msgstr "Ne eblas procedi la bildon." -#: src/Module/Media/Photo/Upload.php:176 src/Module/Profile/Photos.php:235 -#: src/Module/Settings/Profile/Photo/Index.php:94 +#: src/Module/Media/Photo/Upload.php:162 src/Module/Profile/Photos.php:221 +#: src/Module/Settings/Profile/Photo/Index.php:80 msgid "Image upload failed." msgstr "Alŝuto de bildo malsukcesis." -#: src/Module/Moderation/BaseUsers.php:72 +#: src/Module/Moderation/BaseUsers.php:59 msgid "List of all users" msgstr "" -#: src/Module/Moderation/BaseUsers.php:77 +#: src/Module/Moderation/BaseUsers.php:64 msgid "Active" msgstr "" -#: src/Module/Moderation/BaseUsers.php:80 +#: src/Module/Moderation/BaseUsers.php:67 msgid "List of active accounts" msgstr "" -#: src/Module/Moderation/BaseUsers.php:88 +#: src/Module/Moderation/BaseUsers.php:75 msgid "List of pending registrations" msgstr "" -#: src/Module/Moderation/BaseUsers.php:96 +#: src/Module/Moderation/BaseUsers.php:83 msgid "List of blocked users" msgstr "" -#: src/Module/Moderation/BaseUsers.php:101 +#: src/Module/Moderation/BaseUsers.php:88 msgid "Deleted" msgstr "" -#: src/Module/Moderation/BaseUsers.php:104 +#: src/Module/Moderation/BaseUsers.php:91 msgid "List of pending user deletions" msgstr "" -#: src/Module/Moderation/BaseUsers.php:119 src/Module/Settings/Account.php:482 +#: src/Module/Moderation/BaseUsers.php:108 src/Module/Settings/Account.php:473 msgid "Normal Account Page" msgstr "Normala Kontopaĝo" -#: src/Module/Moderation/BaseUsers.php:120 src/Module/Settings/Account.php:489 +#: src/Module/Moderation/BaseUsers.php:109 src/Module/Settings/Account.php:480 msgid "Soapbox Page" msgstr "Soapbox Paĝo" -#: src/Module/Moderation/BaseUsers.php:121 src/Module/Settings/Account.php:496 +#: src/Module/Moderation/BaseUsers.php:110 src/Module/Settings/Account.php:487 msgid "Public Group" msgstr "" -#: src/Module/Moderation/BaseUsers.php:122 src/Module/Settings/Account.php:503 +#: src/Module/Moderation/BaseUsers.php:111 src/Module/Settings/Account.php:494 +msgid "Public Group - Restricted" +msgstr "" + +#: src/Module/Moderation/BaseUsers.php:112 src/Module/Settings/Account.php:501 msgid "Automatic Friend Page" msgstr "Aŭtomata Amiko Paĝo" -#: src/Module/Moderation/BaseUsers.php:123 +#: src/Module/Moderation/BaseUsers.php:113 msgid "Private Group" msgstr "" -#: src/Module/Moderation/BaseUsers.php:126 -#: src/Module/Moderation/Summary.php:53 src/Module/Settings/Account.php:453 +#: src/Module/Moderation/BaseUsers.php:116 +#: src/Module/Moderation/Summary.php:39 src/Module/Settings/Account.php:444 msgid "Personal Page" msgstr "" -#: src/Module/Moderation/BaseUsers.php:127 -#: src/Module/Moderation/Summary.php:54 src/Module/Settings/Account.php:460 +#: src/Module/Moderation/BaseUsers.php:117 +#: src/Module/Moderation/Summary.php:40 src/Module/Settings/Account.php:451 msgid "Organisation Page" msgstr "" -#: src/Module/Moderation/BaseUsers.php:128 -#: src/Module/Moderation/Summary.php:55 src/Module/Settings/Account.php:467 +#: src/Module/Moderation/BaseUsers.php:118 +#: src/Module/Moderation/Summary.php:41 src/Module/Settings/Account.php:458 msgid "News Page" msgstr "" -#: src/Module/Moderation/BaseUsers.php:129 -#: src/Module/Moderation/Summary.php:56 src/Module/Settings/Account.php:474 +#: src/Module/Moderation/BaseUsers.php:119 +#: src/Module/Moderation/Summary.php:42 src/Module/Settings/Account.php:465 msgid "Community Group" msgstr "" -#: src/Module/Moderation/Blocklist/Contact.php:70 +#: src/Module/Moderation/Blocklist/Contact.php:56 msgid "You can't block a local contact, please block the user instead" msgstr "" -#: src/Module/Moderation/Blocklist/Contact.php:89 +#: src/Module/Moderation/Blocklist/Contact.php:75 #, php-format msgid "%s contact unblocked" msgid_plural "%s contacts unblocked" msgstr[0] "" msgstr[1] "" -#: src/Module/Moderation/Blocklist/Contact.php:111 +#: src/Module/Moderation/Blocklist/Contact.php:97 msgid "Remote Contact Blocklist" msgstr "" -#: src/Module/Moderation/Blocklist/Contact.php:112 +#: src/Module/Moderation/Blocklist/Contact.php:98 msgid "" "This page allows you to prevent any message from a remote contact to reach " "your node." msgstr "" -#: src/Module/Moderation/Blocklist/Contact.php:113 +#: src/Module/Moderation/Blocklist/Contact.php:99 msgid "Block Remote Contact" msgstr "" -#: src/Module/Moderation/Blocklist/Contact.php:114 -#: src/Module/Moderation/Users/Active.php:135 -#: src/Module/Moderation/Users/Blocked.php:135 -#: src/Module/Moderation/Users/Index.php:149 -#: src/Module/Moderation/Users/Pending.php:98 +#: src/Module/Moderation/Blocklist/Contact.php:100 +#: src/Module/Moderation/Users/Active.php:121 +#: src/Module/Moderation/Users/Blocked.php:121 +#: src/Module/Moderation/Users/Index.php:135 +#: src/Module/Moderation/Users/Pending.php:84 msgid "select all" msgstr "elekti ĉiujn" -#: src/Module/Moderation/Blocklist/Contact.php:115 +#: src/Module/Moderation/Blocklist/Contact.php:101 msgid "select none" msgstr "" -#: src/Module/Moderation/Blocklist/Contact.php:118 +#: src/Module/Moderation/Blocklist/Contact.php:104 msgid "No remote contact is blocked from this node." msgstr "" -#: src/Module/Moderation/Blocklist/Contact.php:120 +#: src/Module/Moderation/Blocklist/Contact.php:106 msgid "Blocked Remote Contacts" msgstr "" -#: src/Module/Moderation/Blocklist/Contact.php:121 +#: src/Module/Moderation/Blocklist/Contact.php:107 msgid "Block New Remote Contact" msgstr "" -#: src/Module/Moderation/Blocklist/Contact.php:122 -#: src/Module/Moderation/Reports.php:95 +#: src/Module/Moderation/Blocklist/Contact.php:108 +#: src/Module/Moderation/Reports.php:102 msgid "Photo" msgstr "" -#: src/Module/Moderation/Blocklist/Contact.php:122 +#: src/Module/Moderation/Blocklist/Contact.php:108 msgid "Reason" msgstr "" -#: src/Module/Moderation/Blocklist/Contact.php:130 +#: src/Module/Moderation/Blocklist/Contact.php:114 #, php-format msgid "%s total blocked contact" msgid_plural "%s total blocked contacts" msgstr[0] "" msgstr[1] "" -#: src/Module/Moderation/Blocklist/Contact.php:133 +#: src/Module/Moderation/Blocklist/Contact.php:117 msgid "URL of the remote contact to block." msgstr "" -#: src/Module/Moderation/Blocklist/Contact.php:134 +#: src/Module/Moderation/Blocklist/Contact.php:118 msgid "Also purge contact" msgstr "" -#: src/Module/Moderation/Blocklist/Contact.php:134 +#: src/Module/Moderation/Blocklist/Contact.php:118 msgid "" "Removes all content related to this contact from the node. Keeps the contact" " record. This action cannot be undone." msgstr "" -#: src/Module/Moderation/Blocklist/Contact.php:135 -#: src/Module/Moderation/Blocklist/Server/Import.php:124 +#: src/Module/Moderation/Blocklist/Contact.php:119 +#: src/Module/Moderation/Blocklist/Server/Import.php:108 msgid "Block Reason" msgstr "" -#: src/Module/Moderation/Blocklist/Server/Add.php:80 +#: src/Module/Moderation/Blocklist/Server/Add.php:66 msgid "Server domain pattern added to the blocklist." msgstr "" -#: src/Module/Moderation/Blocklist/Server/Add.php:88 +#: src/Module/Moderation/Blocklist/Server/Add.php:74 #, php-format msgid "%s server scheduled to be purged." msgid_plural "%s servers scheduled to be purged." msgstr[0] "" msgstr[1] "" -#: src/Module/Moderation/Blocklist/Server/Add.php:120 -#: src/Module/Moderation/Blocklist/Server/Import.php:117 +#: src/Module/Moderation/Blocklist/Server/Add.php:106 +#: src/Module/Moderation/Blocklist/Server/Import.php:101 msgid "← Return to the list" msgstr "" -#: src/Module/Moderation/Blocklist/Server/Add.php:122 +#: src/Module/Moderation/Blocklist/Server/Add.php:108 msgid "Block A New Server Domain Pattern" msgstr "" -#: src/Module/Moderation/Blocklist/Server/Add.php:123 -#: src/Module/Moderation/Blocklist/Server/Index.php:99 +#: src/Module/Moderation/Blocklist/Server/Add.php:109 +#: src/Module/Moderation/Blocklist/Server/Index.php:85 msgid "" "

The server domain pattern syntax is case-insensitive shell wildcard, comprising the following special characters:

\n" "
    \n" @@ -8020,57 +8093,57 @@ msgid "" "
" msgstr "" -#: src/Module/Moderation/Blocklist/Server/Add.php:128 -#: src/Module/Moderation/Blocklist/Server/Index.php:107 +#: src/Module/Moderation/Blocklist/Server/Add.php:114 +#: src/Module/Moderation/Blocklist/Server/Index.php:93 msgid "Check pattern" msgstr "" -#: src/Module/Moderation/Blocklist/Server/Add.php:129 +#: src/Module/Moderation/Blocklist/Server/Add.php:115 msgid "Matching known servers" msgstr "" -#: src/Module/Moderation/Blocklist/Server/Add.php:130 -#: src/Module/Settings/Server/Action.php:76 -#: src/Module/Settings/Server/Index.php:106 +#: src/Module/Moderation/Blocklist/Server/Add.php:116 +#: src/Module/Settings/Server/Action.php:62 +#: src/Module/Settings/Server/Index.php:92 msgid "Server Name" msgstr "" -#: src/Module/Moderation/Blocklist/Server/Add.php:131 +#: src/Module/Moderation/Blocklist/Server/Add.php:117 msgid "Server Domain" msgstr "" -#: src/Module/Moderation/Blocklist/Server/Add.php:132 +#: src/Module/Moderation/Blocklist/Server/Add.php:118 msgid "Known Contacts" msgstr "" -#: src/Module/Moderation/Blocklist/Server/Add.php:133 +#: src/Module/Moderation/Blocklist/Server/Add.php:119 #, php-format msgid "%d known server" msgid_plural "%d known servers" msgstr[0] "" msgstr[1] "" -#: src/Module/Moderation/Blocklist/Server/Add.php:134 +#: src/Module/Moderation/Blocklist/Server/Add.php:120 msgid "Add pattern to the blocklist" msgstr "" -#: src/Module/Moderation/Blocklist/Server/Add.php:136 -#: src/Module/Moderation/Blocklist/Server/Index.php:116 +#: src/Module/Moderation/Blocklist/Server/Add.php:122 +#: src/Module/Moderation/Blocklist/Server/Index.php:102 msgid "Server Domain Pattern" msgstr "" -#: src/Module/Moderation/Blocklist/Server/Add.php:136 -#: src/Module/Moderation/Blocklist/Server/Index.php:116 +#: src/Module/Moderation/Blocklist/Server/Add.php:122 +#: src/Module/Moderation/Blocklist/Server/Index.php:102 msgid "" "The domain pattern of the new server to add to the blocklist. Do not include" " the protocol." msgstr "" -#: src/Module/Moderation/Blocklist/Server/Add.php:137 +#: src/Module/Moderation/Blocklist/Server/Add.php:123 msgid "Purge server" msgstr "" -#: src/Module/Moderation/Blocklist/Server/Add.php:137 +#: src/Module/Moderation/Blocklist/Server/Add.php:123 msgid "" "Also purges all the locally stored content authored by the known contacts " "registered on that server. Keeps the contacts and the server records. This " @@ -8082,301 +8155,301 @@ msgid_plural "" msgstr[0] "" msgstr[1] "" -#: src/Module/Moderation/Blocklist/Server/Add.php:138 +#: src/Module/Moderation/Blocklist/Server/Add.php:124 msgid "Block reason" msgstr "" -#: src/Module/Moderation/Blocklist/Server/Add.php:138 +#: src/Module/Moderation/Blocklist/Server/Add.php:124 msgid "" "The reason why you blocked this server domain pattern. This reason will be " "shown publicly in the server information page." msgstr "" -#: src/Module/Moderation/Blocklist/Server/Import.php:74 -#: src/Module/Moderation/Blocklist/Server/Import.php:83 +#: src/Module/Moderation/Blocklist/Server/Import.php:60 +#: src/Module/Moderation/Blocklist/Server/Import.php:67 msgid "Error importing pattern file" msgstr "" -#: src/Module/Moderation/Blocklist/Server/Import.php:89 +#: src/Module/Moderation/Blocklist/Server/Import.php:74 msgid "Local blocklist replaced with the provided file." msgstr "" -#: src/Module/Moderation/Blocklist/Server/Import.php:93 +#: src/Module/Moderation/Blocklist/Server/Import.php:78 #, php-format msgid "%d pattern was added to the local blocklist." msgid_plural "%d patterns were added to the local blocklist." msgstr[0] "" msgstr[1] "" -#: src/Module/Moderation/Blocklist/Server/Import.php:95 +#: src/Module/Moderation/Blocklist/Server/Import.php:80 msgid "No pattern was added to the local blocklist." msgstr "" -#: src/Module/Moderation/Blocklist/Server/Import.php:119 +#: src/Module/Moderation/Blocklist/Server/Import.php:103 msgid "Import a Server Domain Pattern Blocklist" msgstr "" -#: src/Module/Moderation/Blocklist/Server/Import.php:120 +#: src/Module/Moderation/Blocklist/Server/Import.php:104 msgid "" "

This file can be downloaded from the /friendica path of any " "Friendica server.

" msgstr "" -#: src/Module/Moderation/Blocklist/Server/Import.php:121 -#: src/Module/Moderation/Blocklist/Server/Index.php:106 +#: src/Module/Moderation/Blocklist/Server/Import.php:105 +#: src/Module/Moderation/Blocklist/Server/Index.php:92 msgid "Upload file" msgstr "" -#: src/Module/Moderation/Blocklist/Server/Import.php:122 +#: src/Module/Moderation/Blocklist/Server/Import.php:106 msgid "Patterns to import" msgstr "" -#: src/Module/Moderation/Blocklist/Server/Import.php:123 +#: src/Module/Moderation/Blocklist/Server/Import.php:107 msgid "Domain Pattern" msgstr "" -#: src/Module/Moderation/Blocklist/Server/Import.php:125 +#: src/Module/Moderation/Blocklist/Server/Import.php:109 msgid "Import Mode" msgstr "" -#: src/Module/Moderation/Blocklist/Server/Import.php:126 +#: src/Module/Moderation/Blocklist/Server/Import.php:110 msgid "Import Patterns" msgstr "" -#: src/Module/Moderation/Blocklist/Server/Import.php:127 +#: src/Module/Moderation/Blocklist/Server/Import.php:111 #, php-format msgid "%d total pattern" msgid_plural "%d total patterns" msgstr[0] "" msgstr[1] "" -#: src/Module/Moderation/Blocklist/Server/Import.php:129 -#: src/Module/Moderation/Blocklist/Server/Index.php:115 +#: src/Module/Moderation/Blocklist/Server/Import.php:113 +#: src/Module/Moderation/Blocklist/Server/Index.php:101 msgid "Server domain pattern blocklist CSV file" msgstr "" -#: src/Module/Moderation/Blocklist/Server/Import.php:130 +#: src/Module/Moderation/Blocklist/Server/Import.php:114 msgid "Append" msgstr "" -#: src/Module/Moderation/Blocklist/Server/Import.php:130 +#: src/Module/Moderation/Blocklist/Server/Import.php:114 msgid "" "Imports patterns from the file that weren't already existing in the current " "blocklist." msgstr "" -#: src/Module/Moderation/Blocklist/Server/Import.php:131 +#: src/Module/Moderation/Blocklist/Server/Import.php:115 msgid "Replace" msgstr "" -#: src/Module/Moderation/Blocklist/Server/Import.php:131 +#: src/Module/Moderation/Blocklist/Server/Import.php:115 msgid "Replaces the current blocklist by the imported patterns." msgstr "" -#: src/Module/Moderation/Blocklist/Server/Index.php:86 -#: src/Module/Moderation/Blocklist/Server/Index.php:110 -#: src/Module/Settings/Channels.php:225 +#: src/Module/Moderation/Blocklist/Server/Index.php:72 +#: src/Module/Moderation/Blocklist/Server/Index.php:96 +#: src/Module/Settings/Channels.php:217 msgid "Blocked server domain pattern" msgstr "" -#: src/Module/Moderation/Blocklist/Server/Index.php:88 +#: src/Module/Moderation/Blocklist/Server/Index.php:74 msgid "Delete server domain pattern" msgstr "" -#: src/Module/Moderation/Blocklist/Server/Index.php:88 +#: src/Module/Moderation/Blocklist/Server/Index.php:74 msgid "Check to delete this entry from the blocklist" msgstr "" -#: src/Module/Moderation/Blocklist/Server/Index.php:96 +#: src/Module/Moderation/Blocklist/Server/Index.php:82 msgid "Server Domain Pattern Blocklist" msgstr "" -#: src/Module/Moderation/Blocklist/Server/Index.php:97 +#: src/Module/Moderation/Blocklist/Server/Index.php:83 msgid "" "This page can be used to define a blocklist of server domain patterns from " "the federated network that are not allowed to interact with your node. For " "each domain pattern you should also provide the reason why you block it." msgstr "" -#: src/Module/Moderation/Blocklist/Server/Index.php:98 +#: src/Module/Moderation/Blocklist/Server/Index.php:84 msgid "" "The list of blocked server domain patterns will be made publically available" " on the /friendica page so that your users and " "people investigating communication problems can find the reason easily." msgstr "" -#: src/Module/Moderation/Blocklist/Server/Index.php:104 +#: src/Module/Moderation/Blocklist/Server/Index.php:90 msgid "Import server domain pattern blocklist" msgstr "" -#: src/Module/Moderation/Blocklist/Server/Index.php:105 +#: src/Module/Moderation/Blocklist/Server/Index.php:91 msgid "Add new entry to the blocklist" msgstr "" -#: src/Module/Moderation/Blocklist/Server/Index.php:108 +#: src/Module/Moderation/Blocklist/Server/Index.php:94 msgid "Save changes to the blocklist" msgstr "" -#: src/Module/Moderation/Blocklist/Server/Index.php:109 +#: src/Module/Moderation/Blocklist/Server/Index.php:95 msgid "Current Entries in the Blocklist" msgstr "" -#: src/Module/Moderation/Blocklist/Server/Index.php:112 +#: src/Module/Moderation/Blocklist/Server/Index.php:98 msgid "Delete entry from the blocklist" msgstr "" -#: src/Module/Moderation/Blocklist/Server/Index.php:113 +#: src/Module/Moderation/Blocklist/Server/Index.php:99 msgid "Delete entry from the blocklist?" msgstr "" -#: src/Module/Moderation/Item/Delete.php:50 +#: src/Module/Moderation/Item/Delete.php:36 msgid "Item marked for deletion." msgstr "" -#: src/Module/Moderation/Item/Delete.php:63 +#: src/Module/Moderation/Item/Delete.php:49 msgid "Delete this Item" msgstr "" -#: src/Module/Moderation/Item/Delete.php:64 +#: src/Module/Moderation/Item/Delete.php:50 msgid "" "On this page you can delete an item from your node. If the item is a top " "level posting, the entire thread will be deleted." msgstr "" -#: src/Module/Moderation/Item/Delete.php:65 +#: src/Module/Moderation/Item/Delete.php:51 msgid "" "You need to know the GUID of the item. You can find it e.g. by looking at " "the display URL. The last part of http://example.com/display/123456 is the " "GUID, here 123456." msgstr "" -#: src/Module/Moderation/Item/Delete.php:67 +#: src/Module/Moderation/Item/Delete.php:53 msgid "GUID" msgstr "" -#: src/Module/Moderation/Item/Delete.php:67 +#: src/Module/Moderation/Item/Delete.php:53 msgid "The GUID of the item you want to delete." msgstr "" -#: src/Module/Moderation/Item/Source.php:77 +#: src/Module/Moderation/Item/Source.php:69 msgid "Item Id" msgstr "" -#: src/Module/Moderation/Item/Source.php:78 +#: src/Module/Moderation/Item/Source.php:70 msgid "Item URI" msgstr "" -#: src/Module/Moderation/Item/Source.php:80 +#: src/Module/Moderation/Item/Source.php:72 msgid "Terms" msgstr "" -#: src/Module/Moderation/Item/Source.php:81 +#: src/Module/Moderation/Item/Source.php:73 msgid "Tag" msgstr "" -#: src/Module/Moderation/Item/Source.php:82 -#: src/Module/Moderation/Users/Active.php:126 -#: src/Module/Moderation/Users/Blocked.php:126 -#: src/Module/Moderation/Users/Index.php:140 +#: src/Module/Moderation/Item/Source.php:74 +#: src/Module/Moderation/Users/Active.php:112 +#: src/Module/Moderation/Users/Blocked.php:112 +#: src/Module/Moderation/Users/Index.php:126 msgid "Type" msgstr "" -#: src/Module/Moderation/Item/Source.php:83 +#: src/Module/Moderation/Item/Source.php:75 msgid "Term" msgstr "" -#: src/Module/Moderation/Item/Source.php:84 +#: src/Module/Moderation/Item/Source.php:76 msgid "URL" msgstr "" -#: src/Module/Moderation/Item/Source.php:86 +#: src/Module/Moderation/Item/Source.php:78 msgid "Implicit Mention" msgstr "" -#: src/Module/Moderation/Item/Source.php:88 +#: src/Module/Moderation/Item/Source.php:80 msgid "Item not found" msgstr "Elemento ne trovita" -#: src/Module/Moderation/Item/Source.php:89 +#: src/Module/Moderation/Item/Source.php:81 msgid "No source recorded" msgstr "" -#: src/Module/Moderation/Item/Source.php:90 +#: src/Module/Moderation/Item/Source.php:82 msgid "" "Please make sure the debug.store_source config key is set in " "config/local.config.php for future items to have sources." msgstr "" -#: src/Module/Moderation/Item/Source.php:92 +#: src/Module/Moderation/Item/Source.php:84 msgid "Item Guid" msgstr "" -#: src/Module/Moderation/Report/Create.php:95 +#: src/Module/Moderation/Report/Create.php:81 msgid "Contact not found or their server is already blocked on this node." msgstr "" -#: src/Module/Moderation/Report/Create.php:136 +#: src/Module/Moderation/Report/Create.php:122 msgid "Please login to access this page." msgstr "" -#: src/Module/Moderation/Report/Create.php:165 -#: src/Module/Moderation/Report/Create.php:180 -#: src/Module/Moderation/Report/Create.php:208 -#: src/Module/Moderation/Report/Create.php:260 -#: src/Module/Moderation/Report/Create.php:279 +#: src/Module/Moderation/Report/Create.php:151 +#: src/Module/Moderation/Report/Create.php:166 +#: src/Module/Moderation/Report/Create.php:194 +#: src/Module/Moderation/Report/Create.php:246 +#: src/Module/Moderation/Report/Create.php:265 msgid "Create Moderation Report" msgstr "" -#: src/Module/Moderation/Report/Create.php:166 +#: src/Module/Moderation/Report/Create.php:152 msgid "Pick Contact" msgstr "" -#: src/Module/Moderation/Report/Create.php:167 +#: src/Module/Moderation/Report/Create.php:153 msgid "" "Please enter below the contact address or profile URL you would like to " "create a moderation report about." msgstr "" -#: src/Module/Moderation/Report/Create.php:171 +#: src/Module/Moderation/Report/Create.php:157 msgid "Contact address/URL" msgstr "" -#: src/Module/Moderation/Report/Create.php:181 +#: src/Module/Moderation/Report/Create.php:167 msgid "Pick Category" msgstr "" -#: src/Module/Moderation/Report/Create.php:182 +#: src/Module/Moderation/Report/Create.php:168 msgid "Please pick below the category of your report." msgstr "" -#: src/Module/Moderation/Report/Create.php:186 -#: src/Module/Moderation/Report/Create.php:311 +#: src/Module/Moderation/Report/Create.php:172 +#: src/Module/Moderation/Report/Create.php:297 msgid "Spam" msgstr "" -#: src/Module/Moderation/Report/Create.php:186 +#: src/Module/Moderation/Report/Create.php:172 msgid "" "This contact is publishing many repeated/overly long posts/replies or " "advertising their product/websites in otherwise irrelevant conversations." msgstr "" -#: src/Module/Moderation/Report/Create.php:187 -#: src/Module/Moderation/Report/Create.php:312 +#: src/Module/Moderation/Report/Create.php:173 +#: src/Module/Moderation/Report/Create.php:298 msgid "Illegal Content" msgstr "" -#: src/Module/Moderation/Report/Create.php:187 +#: src/Module/Moderation/Report/Create.php:173 msgid "" "This contact is publishing content that is considered illegal in this node's" " hosting juridiction." msgstr "" -#: src/Module/Moderation/Report/Create.php:188 -#: src/Module/Moderation/Report/Create.php:313 +#: src/Module/Moderation/Report/Create.php:174 +#: src/Module/Moderation/Report/Create.php:299 msgid "Community Safety" msgstr "" -#: src/Module/Moderation/Report/Create.php:188 +#: src/Module/Moderation/Report/Create.php:174 msgid "" "This contact aggravated you or other people, by being provocative or " "insensitive, intentionally or not. This includes disclosing people's private" @@ -8384,12 +8457,12 @@ msgid "" "replies." msgstr "" -#: src/Module/Moderation/Report/Create.php:189 -#: src/Module/Moderation/Report/Create.php:314 +#: src/Module/Moderation/Report/Create.php:175 +#: src/Module/Moderation/Report/Create.php:300 msgid "Unwanted Content/Behavior" msgstr "" -#: src/Module/Moderation/Report/Create.php:189 +#: src/Module/Moderation/Report/Create.php:175 msgid "" "This contact has repeatedly published content irrelevant to the node's theme" " or is openly criticizing the node's administration/moderation without " @@ -8397,89 +8470,89 @@ msgid "" "nitpicking on a sensitive topic." msgstr "" -#: src/Module/Moderation/Report/Create.php:190 -#: src/Module/Moderation/Report/Create.php:315 +#: src/Module/Moderation/Report/Create.php:176 +#: src/Module/Moderation/Report/Create.php:301 msgid "Rules Violation" msgstr "" -#: src/Module/Moderation/Report/Create.php:190 +#: src/Module/Moderation/Report/Create.php:176 msgid "" "This contact violated one or more rules of this node. You will be able to " "pick which one(s) in the next step." msgstr "" -#: src/Module/Moderation/Report/Create.php:191 +#: src/Module/Moderation/Report/Create.php:177 msgid "" "Please elaborate below why you submitted this report. The more details you " "provide, the better your report can be handled." msgstr "" -#: src/Module/Moderation/Report/Create.php:193 +#: src/Module/Moderation/Report/Create.php:179 msgid "Additional Information" msgstr "" -#: src/Module/Moderation/Report/Create.php:193 +#: src/Module/Moderation/Report/Create.php:179 msgid "" "Please provide any additional information relevant to this particular " "report. You will be able to attach posts by this contact in the next step, " "but any context is welcome." msgstr "" -#: src/Module/Moderation/Report/Create.php:209 +#: src/Module/Moderation/Report/Create.php:195 msgid "Pick Rules" msgstr "" -#: src/Module/Moderation/Report/Create.php:210 +#: src/Module/Moderation/Report/Create.php:196 msgid "Please pick below the node rules you believe this contact violated." msgstr "" -#: src/Module/Moderation/Report/Create.php:261 +#: src/Module/Moderation/Report/Create.php:247 msgid "Pick Posts" msgstr "" -#: src/Module/Moderation/Report/Create.php:262 +#: src/Module/Moderation/Report/Create.php:248 msgid "Please optionally pick posts to attach to your report." msgstr "" -#: src/Module/Moderation/Report/Create.php:281 +#: src/Module/Moderation/Report/Create.php:267 msgid "Submit Report" msgstr "" -#: src/Module/Moderation/Report/Create.php:282 +#: src/Module/Moderation/Report/Create.php:268 msgid "Further Action" msgstr "" -#: src/Module/Moderation/Report/Create.php:283 +#: src/Module/Moderation/Report/Create.php:269 msgid "" "You can also perform one of the following action on the contact you " "reported:" msgstr "" -#: src/Module/Moderation/Report/Create.php:291 +#: src/Module/Moderation/Report/Create.php:277 msgid "Nothing" msgstr "" -#: src/Module/Moderation/Report/Create.php:292 +#: src/Module/Moderation/Report/Create.php:278 msgid "Collapse contact" msgstr "" -#: src/Module/Moderation/Report/Create.php:292 +#: src/Module/Moderation/Report/Create.php:278 msgid "" "Their posts and replies will keep appearing in your Network page but their " "content will be collapsed by default." msgstr "" -#: src/Module/Moderation/Report/Create.php:293 +#: src/Module/Moderation/Report/Create.php:279 msgid "" "Their posts won't appear in your Network page anymore, but their replies can" " appear in forum threads. They still can follow you." msgstr "" -#: src/Module/Moderation/Report/Create.php:294 +#: src/Module/Moderation/Report/Create.php:280 msgid "Block contact" msgstr "" -#: src/Module/Moderation/Report/Create.php:294 +#: src/Module/Moderation/Report/Create.php:280 msgid "" "Their posts won't appear in your Network page anymore, but their replies can" " appear in forum threads, with their content collapsed by default. They " @@ -8487,723 +8560,694 @@ msgid "" "means." msgstr "" -#: src/Module/Moderation/Report/Create.php:297 +#: src/Module/Moderation/Report/Create.php:283 msgid "Forward report" msgstr "" -#: src/Module/Moderation/Report/Create.php:297 +#: src/Module/Moderation/Report/Create.php:283 msgid "Would you ike to forward this report to the remote server?" msgstr "" -#: src/Module/Moderation/Report/Create.php:330 +#: src/Module/Moderation/Report/Create.php:316 msgid "1. Pick a contact" msgstr "" -#: src/Module/Moderation/Report/Create.php:331 +#: src/Module/Moderation/Report/Create.php:317 msgid "2. Pick a category" msgstr "" -#: src/Module/Moderation/Report/Create.php:332 +#: src/Module/Moderation/Report/Create.php:318 msgid "2a. Pick rules" msgstr "" -#: src/Module/Moderation/Report/Create.php:333 +#: src/Module/Moderation/Report/Create.php:319 msgid "2b. Add comment" msgstr "" -#: src/Module/Moderation/Report/Create.php:334 +#: src/Module/Moderation/Report/Create.php:320 msgid "3. Pick posts" msgstr "" -#: src/Module/Moderation/Reports.php:90 +#: src/Module/Moderation/Reports.php:97 msgid "List of reports" msgstr "" -#: src/Module/Moderation/Reports.php:91 +#: src/Module/Moderation/Reports.php:98 msgid "This page display reports created by our or remote users." msgstr "" -#: src/Module/Moderation/Reports.php:92 +#: src/Module/Moderation/Reports.php:99 msgid "No report exists at this node." msgstr "" -#: src/Module/Moderation/Reports.php:95 +#: src/Module/Moderation/Reports.php:102 msgid "Category" msgstr "" -#: src/Module/Moderation/Reports.php:101 +#: src/Module/Moderation/Reports.php:106 #, php-format msgid "%s total report" msgid_plural "%s total reports" msgstr[0] "" msgstr[1] "" -#: src/Module/Moderation/Reports.php:104 +#: src/Module/Moderation/Reports.php:109 msgid "URL of the reported contact." msgstr "" -#: src/Module/Moderation/Summary.php:57 src/Module/Settings/Account.php:431 +#: src/Module/Moderation/Summary.php:43 src/Module/Settings/Account.php:422 msgid "Channel Relay" msgstr "" -#: src/Module/Moderation/Summary.php:77 +#: src/Module/Moderation/Summary.php:63 msgid "Registered users" msgstr "Registrataj uzantoj" -#: src/Module/Moderation/Summary.php:79 +#: src/Module/Moderation/Summary.php:65 msgid "Pending registrations" msgstr "Okazontaj registradoj" -#: src/Module/Moderation/Users/Active.php:43 -#: src/Module/Moderation/Users/Index.php:43 +#: src/Module/Moderation/Users/Active.php:29 +#: src/Module/Moderation/Users/Index.php:29 #, php-format msgid "%s user blocked" msgid_plural "%s users blocked" msgstr[0] "" msgstr[1] "" -#: src/Module/Moderation/Users/Active.php:51 -#: src/Module/Moderation/Users/Active.php:85 -#: src/Module/Moderation/Users/Blocked.php:51 -#: src/Module/Moderation/Users/Blocked.php:85 -#: src/Module/Moderation/Users/Index.php:58 -#: src/Module/Moderation/Users/Index.php:92 +#: src/Module/Moderation/Users/Active.php:37 +#: src/Module/Moderation/Users/Active.php:71 +#: src/Module/Moderation/Users/Blocked.php:37 +#: src/Module/Moderation/Users/Blocked.php:71 +#: src/Module/Moderation/Users/Index.php:44 +#: src/Module/Moderation/Users/Index.php:78 msgid "You can't remove yourself" msgstr "" -#: src/Module/Moderation/Users/Active.php:55 -#: src/Module/Moderation/Users/Blocked.php:55 -#: src/Module/Moderation/Users/Index.php:62 +#: src/Module/Moderation/Users/Active.php:41 +#: src/Module/Moderation/Users/Blocked.php:41 +#: src/Module/Moderation/Users/Index.php:48 #, php-format msgid "%s user deleted" msgid_plural "%s users deleted" msgstr[0] "%s uzanto forviŝita" msgstr[1] "%s uzanto forviŝitaj" -#: src/Module/Moderation/Users/Active.php:83 -#: src/Module/Moderation/Users/Blocked.php:83 -#: src/Module/Moderation/Users/Index.php:90 +#: src/Module/Moderation/Users/Active.php:69 +#: src/Module/Moderation/Users/Blocked.php:69 +#: src/Module/Moderation/Users/Index.php:76 #, php-format msgid "User \"%s\" deleted" msgstr "" -#: src/Module/Moderation/Users/Active.php:93 -#: src/Module/Moderation/Users/Index.php:100 +#: src/Module/Moderation/Users/Active.php:79 +#: src/Module/Moderation/Users/Index.php:86 #, php-format msgid "User \"%s\" blocked" msgstr "" -#: src/Module/Moderation/Users/Active.php:126 -#: src/Module/Moderation/Users/Blocked.php:126 -#: src/Module/Moderation/Users/Deleted.php:83 -#: src/Module/Moderation/Users/Index.php:140 -#: src/Module/Moderation/Users/Index.php:160 +#: src/Module/Moderation/Users/Active.php:112 +#: src/Module/Moderation/Users/Blocked.php:112 +#: src/Module/Moderation/Users/Deleted.php:69 +#: src/Module/Moderation/Users/Index.php:126 +#: src/Module/Moderation/Users/Index.php:146 msgid "Register date" msgstr "Dato de registrado" -#: src/Module/Moderation/Users/Active.php:126 -#: src/Module/Moderation/Users/Blocked.php:126 -#: src/Module/Moderation/Users/Deleted.php:83 -#: src/Module/Moderation/Users/Index.php:140 -#: src/Module/Moderation/Users/Index.php:160 +#: src/Module/Moderation/Users/Active.php:112 +#: src/Module/Moderation/Users/Blocked.php:112 +#: src/Module/Moderation/Users/Deleted.php:69 +#: src/Module/Moderation/Users/Index.php:126 +#: src/Module/Moderation/Users/Index.php:146 msgid "Last login" msgstr "Plej ĵusa ensaluto" -#: src/Module/Moderation/Users/Active.php:126 -#: src/Module/Moderation/Users/Blocked.php:126 -#: src/Module/Moderation/Users/Deleted.php:83 -#: src/Module/Moderation/Users/Index.php:140 -#: src/Module/Moderation/Users/Index.php:160 +#: src/Module/Moderation/Users/Active.php:112 +#: src/Module/Moderation/Users/Blocked.php:112 +#: src/Module/Moderation/Users/Deleted.php:69 +#: src/Module/Moderation/Users/Index.php:126 +#: src/Module/Moderation/Users/Index.php:146 msgid "Last public item" msgstr "" -#: src/Module/Moderation/Users/Active.php:134 +#: src/Module/Moderation/Users/Active.php:120 msgid "Active Accounts" msgstr "" -#: src/Module/Moderation/Users/Active.php:138 -#: src/Module/Moderation/Users/Blocked.php:137 -#: src/Module/Moderation/Users/Index.php:153 +#: src/Module/Moderation/Users/Active.php:124 +#: src/Module/Moderation/Users/Blocked.php:123 +#: src/Module/Moderation/Users/Index.php:139 msgid "User blocked" msgstr "" -#: src/Module/Moderation/Users/Active.php:139 -#: src/Module/Moderation/Users/Blocked.php:139 -#: src/Module/Moderation/Users/Index.php:155 +#: src/Module/Moderation/Users/Active.php:125 +#: src/Module/Moderation/Users/Blocked.php:125 +#: src/Module/Moderation/Users/Index.php:141 msgid "Site admin" msgstr "" -#: src/Module/Moderation/Users/Active.php:140 -#: src/Module/Moderation/Users/Blocked.php:140 -#: src/Module/Moderation/Users/Index.php:156 +#: src/Module/Moderation/Users/Active.php:126 +#: src/Module/Moderation/Users/Blocked.php:126 +#: src/Module/Moderation/Users/Index.php:142 msgid "Account expired" msgstr "" -#: src/Module/Moderation/Users/Active.php:141 -#: src/Module/Moderation/Users/Index.php:159 +#: src/Module/Moderation/Users/Active.php:127 +#: src/Module/Moderation/Users/Index.php:145 msgid "Create a new user" msgstr "" -#: src/Module/Moderation/Users/Active.php:147 -#: src/Module/Moderation/Users/Blocked.php:146 -#: src/Module/Moderation/Users/Index.php:165 +#: src/Module/Moderation/Users/Active.php:133 +#: src/Module/Moderation/Users/Blocked.php:132 +#: src/Module/Moderation/Users/Index.php:151 msgid "" "Selected users will be deleted!\\n\\nEverything these users had posted on " "this site will be permanently deleted!\\n\\nAre you sure?" msgstr "La elektitaj uzantkontoj estas forviŝotaj!\\n\\nĈiuj elementoj kiujn ili afiŝis je la retpaĝo estos permanente forviŝitaj.\\n\\nĈu vi certas?" -#: src/Module/Moderation/Users/Active.php:148 -#: src/Module/Moderation/Users/Blocked.php:147 -#: src/Module/Moderation/Users/Index.php:166 +#: src/Module/Moderation/Users/Active.php:134 +#: src/Module/Moderation/Users/Blocked.php:133 +#: src/Module/Moderation/Users/Index.php:152 msgid "" "The user {0} will be deleted!\\n\\nEverything this user has posted on this " "site will be permanently deleted!\\n\\nAre you sure?" msgstr "La uzanto {0} estas forviŝota!\\n\\nĈiuj elementoj kiujn li afiŝis je la retpaĝo estos permanente forviŝitaj.\\n\\nĈu vi certas?" -#: src/Module/Moderation/Users/Blocked.php:43 -#: src/Module/Moderation/Users/Index.php:50 +#: src/Module/Moderation/Users/Blocked.php:29 +#: src/Module/Moderation/Users/Index.php:36 #, php-format msgid "%s user unblocked" msgid_plural "%s users unblocked" msgstr[0] "" msgstr[1] "" -#: src/Module/Moderation/Users/Blocked.php:92 -#: src/Module/Moderation/Users/Index.php:106 +#: src/Module/Moderation/Users/Blocked.php:78 +#: src/Module/Moderation/Users/Index.php:92 #, php-format msgid "User \"%s\" unblocked" msgstr "" -#: src/Module/Moderation/Users/Blocked.php:134 +#: src/Module/Moderation/Users/Blocked.php:120 msgid "Blocked Users" msgstr "" -#: src/Module/Moderation/Users/Create.php:62 +#: src/Module/Moderation/Users/Create.php:48 msgid "New User" msgstr "" -#: src/Module/Moderation/Users/Create.php:63 +#: src/Module/Moderation/Users/Create.php:49 msgid "Add User" msgstr "" -#: src/Module/Moderation/Users/Create.php:70 +#: src/Module/Moderation/Users/Create.php:56 msgid "Name of the new user." msgstr "" -#: src/Module/Moderation/Users/Create.php:71 +#: src/Module/Moderation/Users/Create.php:57 msgid "Nickname" msgstr "" -#: src/Module/Moderation/Users/Create.php:71 +#: src/Module/Moderation/Users/Create.php:57 msgid "Nickname of the new user." msgstr "" -#: src/Module/Moderation/Users/Create.php:72 +#: src/Module/Moderation/Users/Create.php:58 msgid "Email address of the new user." msgstr "" -#: src/Module/Moderation/Users/Deleted.php:81 +#: src/Module/Moderation/Users/Deleted.php:67 msgid "Users awaiting permanent deletion" msgstr "" -#: src/Module/Moderation/Users/Deleted.php:83 -#: src/Module/Moderation/Users/Index.php:160 +#: src/Module/Moderation/Users/Deleted.php:69 +#: src/Module/Moderation/Users/Index.php:146 msgid "Permanent deletion" msgstr "" -#: src/Module/Moderation/Users/Index.php:150 +#: src/Module/Moderation/Users/Index.php:136 msgid "User waiting for permanent deletion" msgstr "" -#: src/Module/Moderation/Users/Pending.php:44 +#: src/Module/Moderation/Users/Pending.php:30 #, php-format msgid "%s user approved" msgid_plural "%s users approved" msgstr[0] "" msgstr[1] "" -#: src/Module/Moderation/Users/Pending.php:51 +#: src/Module/Moderation/Users/Pending.php:37 #, php-format msgid "%s registration revoked" msgid_plural "%s registrations revoked" msgstr[0] "" msgstr[1] "" -#: src/Module/Moderation/Users/Pending.php:76 +#: src/Module/Moderation/Users/Pending.php:62 msgid "Account approved." msgstr "Konto aprobita." -#: src/Module/Moderation/Users/Pending.php:82 +#: src/Module/Moderation/Users/Pending.php:68 msgid "Registration revoked" msgstr "" -#: src/Module/Moderation/Users/Pending.php:97 +#: src/Module/Moderation/Users/Pending.php:83 msgid "User registrations awaiting review" msgstr "" -#: src/Module/Moderation/Users/Pending.php:99 +#: src/Module/Moderation/Users/Pending.php:85 msgid "Request date" msgstr "Dato de peto" -#: src/Module/Moderation/Users/Pending.php:100 +#: src/Module/Moderation/Users/Pending.php:86 msgid "No registrations." msgstr "Neniom da registriĝoj." -#: src/Module/Moderation/Users/Pending.php:101 +#: src/Module/Moderation/Users/Pending.php:87 msgid "Note from the user" msgstr "" -#: src/Module/Moderation/Users/Pending.php:103 +#: src/Module/Moderation/Users/Pending.php:89 msgid "Deny" msgstr "Negi" -#: src/Module/Notifications/Introductions.php:99 +#: src/Module/Notifications/Introductions.php:91 msgid "Show Ignored Requests" msgstr "Montri ignoritajn petojn" -#: src/Module/Notifications/Introductions.php:99 +#: src/Module/Notifications/Introductions.php:91 msgid "Hide Ignored Requests" msgstr "Kaŝi ignoritajn petojn" -#: src/Module/Notifications/Introductions.php:115 -#: src/Module/Notifications/Introductions.php:178 +#: src/Module/Notifications/Introductions.php:107 +#: src/Module/Notifications/Introductions.php:170 msgid "Notification type:" msgstr "" -#: src/Module/Notifications/Introductions.php:118 +#: src/Module/Notifications/Introductions.php:110 msgid "Suggested by:" msgstr "" -#: src/Module/Notifications/Introductions.php:143 +#: src/Module/Notifications/Introductions.php:135 msgid "Claims to be known to you: " msgstr "Pensas ke vi konas ilin:" #: src/Module/Notifications/Introductions.php:144 -#: src/Module/OAuth/Acknowledge.php:55 src/Module/Register.php:131 -#: src/Module/Settings/TwoFactor/Trusted.php:129 -msgid "No" -msgstr "Ne" - -#: src/Module/Notifications/Introductions.php:152 msgid "Shall your connection be bidirectional or not?" msgstr "" -#: src/Module/Notifications/Introductions.php:153 +#: src/Module/Notifications/Introductions.php:145 #, php-format msgid "" "Accepting %s as a friend allows %s to subscribe to your posts, and you will " "also receive updates from them in your news feed." msgstr "" -#: src/Module/Notifications/Introductions.php:154 +#: src/Module/Notifications/Introductions.php:146 #, php-format msgid "" "Accepting %s as a subscriber allows them to subscribe to your posts, but you" " will not receive updates from them in your news feed." msgstr "" -#: src/Module/Notifications/Introductions.php:156 +#: src/Module/Notifications/Introductions.php:148 msgid "Friend" msgstr "Amiko" -#: src/Module/Notifications/Introductions.php:157 +#: src/Module/Notifications/Introductions.php:149 msgid "Subscriber" msgstr "" -#: src/Module/Notifications/Introductions.php:216 +#: src/Module/Notifications/Introductions.php:208 msgid "No introductions." msgstr "Neniom da prezentoj" -#: src/Module/Notifications/Introductions.php:217 -#: src/Module/Notifications/Notifications.php:135 +#: src/Module/Notifications/Introductions.php:209 +#: src/Module/Notifications/Notifications.php:127 #, php-format msgid "No more %s notifications." msgstr "" -#: src/Module/Notifications/Notification.php:135 +#: src/Module/Notifications/Notification.php:121 msgid "You must be logged in to show this page." msgstr "" -#: src/Module/Notifications/Notifications.php:66 +#: src/Module/Notifications/Notifications.php:52 msgid "Network Notifications" msgstr "Retaj Atentigoj" -#: src/Module/Notifications/Notifications.php:72 +#: src/Module/Notifications/Notifications.php:58 msgid "System Notifications" msgstr "Sistemaj Atentigoj" -#: src/Module/Notifications/Notifications.php:78 +#: src/Module/Notifications/Notifications.php:64 msgid "Personal Notifications" msgstr "Personaj Atentigoj" -#: src/Module/Notifications/Notifications.php:84 +#: src/Module/Notifications/Notifications.php:70 msgid "Home Notifications" msgstr "Hejmrilataj atentigoj" -#: src/Module/Notifications/Notifications.php:140 +#: src/Module/Notifications/Notifications.php:132 msgid "Show unread" msgstr "" -#: src/Module/Notifications/Ping.php:246 +#: src/Module/Notifications/Ping.php:206 msgid "{0} requested registration" msgstr "{0} petis registradon" -#: src/Module/Notifications/Ping.php:255 +#: src/Module/Notifications/Ping.php:215 #, php-format msgid "{0} and %d others requested registration" msgstr "" -#: src/Module/OAuth/Acknowledge.php:51 +#: src/Module/OAuth/Acknowledge.php:37 msgid "Authorize application connection" msgstr "Rajtigi programkonekton" -#: src/Module/OAuth/Acknowledge.php:53 +#: src/Module/OAuth/Acknowledge.php:39 msgid "" "Do you want to authorize this application to access your posts and contacts," " and/or create new posts for you?" msgstr "Ĉu rajtigi ĉi tiun programon por atingi viajn afiŝojn kaj kontaktojn kaj/aŭ krei novajn afiŝojn?" -#: src/Module/OAuth/Authorize.php:54 +#: src/Module/OAuth/Authorize.php:40 msgid "Unsupported or missing response type" msgstr "" -#: src/Module/OAuth/Authorize.php:59 src/Module/OAuth/Token.php:75 +#: src/Module/OAuth/Authorize.php:45 src/Module/OAuth/Token.php:61 msgid "Incomplete request data" msgstr "" -#: src/Module/OAuth/Authorize.php:106 +#: src/Module/OAuth/Authorize.php:92 #, php-format msgid "" "Please copy the following authentication code into your application and " "close this window: %s" msgstr "" -#: src/Module/OAuth/Token.php:80 +#: src/Module/OAuth/Token.php:66 msgid "Invalid data or unknown client" msgstr "" -#: src/Module/OAuth/Token.php:105 +#: src/Module/OAuth/Token.php:91 msgid "Unsupported or missing grant type" msgstr "" -#: src/Module/OStatus/Repair.php:83 -msgid "Resubscribing to OStatus contacts" -msgstr "" - -#: src/Module/OStatus/Repair.php:84 src/Module/OStatus/Subscribe.php:158 -msgid "Keep this window open until done." -msgstr "" - -#: src/Module/OStatus/Repair.php:85 -msgid "✔ Done" -msgstr "" - -#: src/Module/OStatus/Repair.php:86 -msgid "No OStatus contacts to resubscribe to." -msgstr "" - -#: src/Module/OStatus/Subscribe.php:70 +#: src/Module/OStatus/Subscribe.php:58 msgid "Subscribing to contacts" msgstr "" -#: src/Module/OStatus/Subscribe.php:79 +#: src/Module/OStatus/Subscribe.php:67 msgid "No contact provided." msgstr "" -#: src/Module/OStatus/Subscribe.php:85 +#: src/Module/OStatus/Subscribe.php:73 msgid "Couldn't fetch information for contact." msgstr "" -#: src/Module/OStatus/Subscribe.php:96 +#: src/Module/OStatus/Subscribe.php:84 msgid "Couldn't fetch friends for contact." msgstr "" -#: src/Module/OStatus/Subscribe.php:102 src/Module/OStatus/Subscribe.php:113 +#: src/Module/OStatus/Subscribe.php:90 src/Module/OStatus/Subscribe.php:101 msgid "Couldn't fetch following contacts." msgstr "" -#: src/Module/OStatus/Subscribe.php:108 +#: src/Module/OStatus/Subscribe.php:96 msgid "Couldn't fetch remote profile." msgstr "" -#: src/Module/OStatus/Subscribe.php:118 +#: src/Module/OStatus/Subscribe.php:106 msgid "Unsupported network" msgstr "" -#: src/Module/OStatus/Subscribe.php:134 +#: src/Module/OStatus/Subscribe.php:122 msgid "Done" msgstr "" -#: src/Module/OStatus/Subscribe.php:148 +#: src/Module/OStatus/Subscribe.php:136 msgid "success" msgstr "" -#: src/Module/OStatus/Subscribe.php:150 +#: src/Module/OStatus/Subscribe.php:138 msgid "failed" msgstr "" -#: src/Module/OStatus/Subscribe.php:153 +#: src/Module/OStatus/Subscribe.php:141 msgid "ignored" msgstr "" -#: src/Module/PermissionTooltip.php:49 -#, php-format -msgid "Wrong type \"%s\", expected one of: %s" +#: src/Module/OStatus/Subscribe.php:146 +msgid "Keep this window open until done." msgstr "" -#: src/Module/PermissionTooltip.php:79 -msgid "Model not found" -msgstr "" - -#: src/Module/PermissionTooltip.php:94 -msgid "Unlisted" -msgstr "" - -#: src/Module/PermissionTooltip.php:112 -msgid "Remote privacy information not available." -msgstr "Informoj pri fora privateca ne estas disponebla." - -#: src/Module/PermissionTooltip.php:120 -msgid "Visible to:" -msgstr "Videbla al:" - -#: src/Module/PermissionTooltip.php:214 -#, php-format -msgid "Collection (%s)" -msgstr "" - -#: src/Module/PermissionTooltip.php:218 -#, php-format -msgid "Followers (%s)" -msgstr "" - -#: src/Module/PermissionTooltip.php:237 -#, php-format -msgid "%d more" -msgstr "" - -#: src/Module/PermissionTooltip.php:241 -#, php-format -msgid "To: %s
" -msgstr "" - -#: src/Module/PermissionTooltip.php:244 -#, php-format -msgid "CC: %s
" -msgstr "" - -#: src/Module/PermissionTooltip.php:247 -#, php-format -msgid "BCC: %s
" -msgstr "" - -#: src/Module/PermissionTooltip.php:250 -#, php-format -msgid "Audience: %s
" -msgstr "" - -#: src/Module/PermissionTooltip.php:253 -#, php-format -msgid "Attributed To: %s
" -msgstr "" - -#: src/Module/Photo.php:123 +#: src/Module/Photo.php:108 msgid "The Photo is not available." msgstr "" -#: src/Module/Photo.php:148 +#: src/Module/Photo.php:133 #, php-format msgid "The Photo with id %s is not available." msgstr "" -#: src/Module/Photo.php:189 +#: src/Module/Photo.php:174 #, php-format msgid "Invalid external resource with url %s." msgstr "" -#: src/Module/Photo.php:191 +#: src/Module/Photo.php:176 #, php-format msgid "Invalid photo with id %s." msgstr "" -#: src/Module/Post/Edit.php:82 src/Module/Post/Edit.php:96 +#: src/Module/Post/Edit.php:68 src/Module/Post/Edit.php:82 msgid "Post not found." msgstr "" -#: src/Module/Post/Edit.php:102 +#: src/Module/Post/Edit.php:88 msgid "Edit post" msgstr "Redakti afiŝon" -#: src/Module/Post/Edit.php:136 +#: src/Module/Post/Edit.php:122 msgid "web link" msgstr "TTT ligilo" -#: src/Module/Post/Edit.php:137 +#: src/Module/Post/Edit.php:123 msgid "Insert video link" msgstr "Alglui ligilon de video" -#: src/Module/Post/Edit.php:138 +#: src/Module/Post/Edit.php:124 msgid "video link" msgstr "video ligilo" -#: src/Module/Post/Edit.php:139 +#: src/Module/Post/Edit.php:125 msgid "Insert audio link" msgstr "Alglui ligilon de sono" -#: src/Module/Post/Edit.php:140 +#: src/Module/Post/Edit.php:126 msgid "audio link" msgstr "sono ligilo" -#: src/Module/Post/Tag/Remove.php:106 +#: src/Module/Post/Tag/Remove.php:92 msgid "Remove Item Tag" msgstr "Forviŝi markon" -#: src/Module/Post/Tag/Remove.php:107 +#: src/Module/Post/Tag/Remove.php:93 msgid "Select a tag to remove: " msgstr "Elektu forviŝontan markon:" -#: src/Module/Post/Tag/Remove.php:108 -#: src/Module/Settings/TwoFactor/Trusted.php:147 +#: src/Module/Post/Tag/Remove.php:94 +#: src/Module/Settings/TwoFactor/Trusted.php:133 msgid "Remove" msgstr "Forviŝi" -#: src/Module/Profile/Contacts.php:159 +#: src/Module/Privacy/PermissionTooltip.php:57 +#, php-format +msgid "Wrong type \"%s\", expected one of: %s" +msgstr "" + +#: src/Module/Privacy/PermissionTooltip.php:87 +msgid "Model not found" +msgstr "" + +#: src/Module/Privacy/PermissionTooltip.php:104 +msgid "Unlisted" +msgstr "" + +#: src/Module/Privacy/PermissionTooltip.php:110 +msgid "Remote privacy information not available." +msgstr "Informoj pri fora privateca ne estas disponebla." + +#: src/Module/Privacy/PermissionTooltip.php:117 +msgid "Visible to:" +msgstr "Videbla al:" + +#: src/Module/Privacy/PermissionTooltip.php:119 +msgid "CC:" +msgstr "" + +#: src/Module/Privacy/PermissionTooltip.php:120 +msgid "BCC:" +msgstr "" + +#: src/Module/Privacy/PermissionTooltip.php:121 +msgid "Audience:" +msgstr "" + +#: src/Module/Privacy/PermissionTooltip.php:122 +msgid "Attributed To:" +msgstr "" + +#: src/Module/Privacy/PermissionTooltip.php:220 +#, php-format +msgid "Collection (%s)" +msgstr "" + +#: src/Module/Privacy/PermissionTooltip.php:224 +#, php-format +msgid "Followers (%s)" +msgstr "" + +#: src/Module/Privacy/PermissionTooltip.php:241 +#, php-format +msgid "%d more" +msgstr "" + +#: src/Module/Profile/Contacts.php:145 msgid "No contacts." 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: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:1103 src/Protocol/OStatus.php:1014 +#: src/Module/Profile/Conversations.php:92 src/Module/Profile/Profile.php:339 +#: src/Protocol/Feed.php:1097 #, php-format msgid "%s's posts" msgstr "" -#: src/Module/Profile/Conversations.php:108 src/Module/Profile/Profile.php:353 -#: src/Protocol/Feed.php:1106 src/Protocol/OStatus.php:1018 +#: src/Module/Profile/Conversations.php:93 src/Module/Profile/Profile.php:340 +#: src/Protocol/Feed.php:1100 #, php-format msgid "%s's comments" msgstr "" -#: src/Module/Profile/Photos.php:164 src/Module/Profile/Photos.php:167 -#: src/Module/Profile/Photos.php:192 -#: src/Module/Settings/Profile/Photo/Index.php:58 +#: src/Module/Profile/Conversations.php:94 src/Module/Profile/Profile.php:341 +#: src/Protocol/Feed.php:1093 +#, php-format +msgid "%s's timeline" +msgstr "" + +#: src/Module/Profile/Photos.php:150 src/Module/Profile/Photos.php:153 +#: src/Module/Profile/Photos.php:178 +#: src/Module/Settings/Profile/Photo/Index.php:44 #, php-format msgid "Image exceeds size limit of %s" msgstr "" -#: src/Module/Profile/Photos.php:170 +#: src/Module/Profile/Photos.php:156 msgid "Image upload didn't complete, please try again" msgstr "" -#: src/Module/Profile/Photos.php:173 +#: src/Module/Profile/Photos.php:159 msgid "Image file is missing" msgstr "" -#: src/Module/Profile/Photos.php:178 +#: src/Module/Profile/Photos.php:164 msgid "" "Server can't accept new file upload at this time, please contact your " "administrator" msgstr "" -#: src/Module/Profile/Photos.php:200 +#: src/Module/Profile/Photos.php:186 msgid "Image file is empty." msgstr "Bilddosiero estas malplena." -#: src/Module/Profile/Photos.php:352 +#: src/Module/Profile/Photos.php:338 msgid "View Album" msgstr "Vidi albumon" -#: src/Module/Profile/Profile.php:112 src/Module/Profile/Restricted.php:50 +#: src/Module/Profile/Profile.php:100 src/Module/Profile/Restricted.php:36 msgid "Profile not found." msgstr "Profilo ne trovita." -#: src/Module/Profile/Profile.php:158 +#: src/Module/Profile/Profile.php:146 #, php-format msgid "" "You're currently viewing your profile as %s Cancel" msgstr "" -#: src/Module/Profile/Profile.php:167 +#: src/Module/Profile/Profile.php:155 msgid "Full Name:" msgstr "Plena Nomo:" -#: src/Module/Profile/Profile.php:172 +#: src/Module/Profile/Profile.php:160 msgid "Member since:" msgstr "" -#: src/Module/Profile/Profile.php:178 +#: src/Module/Profile/Profile.php:166 msgid "j F, Y" msgstr "j F, Y" -#: src/Module/Profile/Profile.php:179 +#: src/Module/Profile/Profile.php:167 msgid "j F" msgstr "j F" -#: src/Module/Profile/Profile.php:187 src/Util/Temporal.php:168 +#: src/Module/Profile/Profile.php:175 src/Util/Temporal.php:154 msgid "Birthday:" msgstr "Naskiĝtago:" -#: src/Module/Profile/Profile.php:190 -#: src/Module/Settings/Profile/Index.php:291 src/Util/Temporal.php:170 +#: src/Module/Profile/Profile.php:178 +#: src/Module/Settings/Profile/Index.php:282 src/Util/Temporal.php:156 msgid "Age: " msgstr "Aĝo:" -#: src/Module/Profile/Profile.php:190 -#: src/Module/Settings/Profile/Index.php:291 src/Util/Temporal.php:170 +#: src/Module/Profile/Profile.php:178 +#: src/Module/Settings/Profile/Index.php:282 src/Util/Temporal.php:156 #, php-format msgid "%d year old" msgid_plural "%d years old" msgstr[0] "" msgstr[1] "" -#: src/Module/Profile/Profile.php:195 -#: src/Module/Settings/Profile/Index.php:284 +#: src/Module/Profile/Profile.php:183 +#: src/Module/Settings/Profile/Index.php:275 msgid "Description:" msgstr "Priskribo" -#: src/Module/Profile/Profile.php:261 +#: src/Module/Profile/Profile.php:249 msgid "Groups:" msgstr "" -#: src/Module/Profile/Profile.php:273 +#: src/Module/Profile/Profile.php:261 msgid "View profile as:" msgstr "" -#: src/Module/Profile/Profile.php:290 +#: src/Module/Profile/Profile.php:278 msgid "View as" msgstr "" -#: src/Module/Profile/RemoteFollow.php:82 +#: src/Module/Profile/RemoteFollow.php:68 msgid "Profile unavailable." msgstr "Profilo ne estas disponebla." -#: src/Module/Profile/RemoteFollow.php:88 +#: src/Module/Profile/RemoteFollow.php:74 msgid "Invalid locator" msgstr "Nevalida adreso." -#: src/Module/Profile/RemoteFollow.php:95 +#: src/Module/Profile/RemoteFollow.php:81 msgid "The provided profile link doesn't seem to be valid" msgstr "" -#: src/Module/Profile/RemoteFollow.php:100 +#: src/Module/Profile/RemoteFollow.php:86 msgid "" "Remote subscription can't be done for your network. Please subscribe " "directly on your system." msgstr "" -#: src/Module/Profile/RemoteFollow.php:128 +#: src/Module/Profile/RemoteFollow.php:114 msgid "Friend/Connection Request" msgstr "Prezento / Konektpeto" -#: src/Module/Profile/RemoteFollow.php:129 +#: src/Module/Profile/RemoteFollow.php:115 #, php-format msgid "" "Enter your Webfinger address (user@domain.tld) or profile URL here. If this " @@ -9211,575 +9255,579 @@ msgid "" " or %s directly on your system." msgstr "" -#: src/Module/Profile/RemoteFollow.php:130 +#: src/Module/Profile/RemoteFollow.php:116 #, php-format msgid "" "If you are not yet a member of the free social web, follow " "this link to find a public Friendica node and join us today." msgstr "" -#: src/Module/Profile/RemoteFollow.php:131 +#: src/Module/Profile/RemoteFollow.php:117 msgid "Your Webfinger address or profile URL:" msgstr "" -#: src/Module/Profile/Restricted.php:59 +#: src/Module/Profile/Restricted.php:45 msgid "Restricted profile" msgstr "" -#: src/Module/Profile/Restricted.php:60 +#: src/Module/Profile/Restricted.php:46 msgid "" "This profile has been restricted which prevents access to their public " "content from anonymous visitors." msgstr "" -#: src/Module/Profile/Schedule.php:83 +#: src/Module/Profile/Schedule.php:69 msgid "Scheduled" msgstr "" -#: src/Module/Profile/Schedule.php:84 +#: src/Module/Profile/Schedule.php:70 msgid "Content" msgstr "" -#: src/Module/Profile/Schedule.php:85 +#: src/Module/Profile/Schedule.php:71 msgid "Remove post" msgstr "" -#: src/Module/Register.php:84 +#: src/Module/Register.php:77 msgid "Only parent users can create additional accounts." msgstr "" -#: src/Module/Register.php:99 src/Module/User/Import.php:111 +#: src/Module/Register.php:92 src/Module/User/Import.php:98 msgid "" "This site has exceeded the number of allowed daily account registrations. " "Please try again tomorrow." msgstr "La retejo transiras la maksimuman kvanton da ĉiutagaj kontaj registradoj. Bonvolu provi denove morgaŭ." -#: src/Module/Register.php:116 +#: src/Module/Register.php:109 msgid "" "You may (optionally) fill in this form via OpenID by supplying your OpenID " "and clicking \"Register\"." msgstr "" -#: src/Module/Register.php:117 +#: src/Module/Register.php:110 msgid "" "If you are not familiar with OpenID, please leave that field blank and fill " "in the rest of the items." msgstr "Se vi ne konas OpenID, bonvolu lasi tiun kampon malplena kaj entajpu la aliajn elementojn." -#: src/Module/Register.php:118 +#: src/Module/Register.php:111 msgid "Your OpenID (optional): " msgstr "Via OpenID (nedeviga):" -#: src/Module/Register.php:127 +#: src/Module/Register.php:120 msgid "Include your profile in member directory?" msgstr "Aldoni vian profilon al la membrokatalogo?" -#: src/Module/Register.php:148 +#: src/Module/Register.php:141 msgid "Note for the admin" msgstr "" -#: src/Module/Register.php:148 +#: src/Module/Register.php:141 msgid "Leave a message for the admin, why you want to join this node" msgstr "" -#: src/Module/Register.php:149 +#: src/Module/Register.php:142 msgid "Membership on this site is by invitation only." msgstr "Membriĝi ĉi tie nur eblas laŭ invito." -#: src/Module/Register.php:150 +#: src/Module/Register.php:143 msgid "Your invitation code: " msgstr "" -#: src/Module/Register.php:158 +#: src/Module/Register.php:151 msgid "Your Display Name (as you would like it to be displayed on this system" msgstr "" -#: src/Module/Register.php:159 +#: src/Module/Register.php:152 msgid "" "Your Email Address: (Initial information will be send there, so this has to " "be an existing address.)" msgstr "" -#: src/Module/Register.php:160 +#: src/Module/Register.php:153 msgid "Please repeat your e-mail address:" msgstr "" -#: src/Module/Register.php:162 src/Module/Security/PasswordTooLong.php:100 -#: src/Module/Settings/Account.php:557 +#: src/Module/Register.php:155 src/Module/Security/PasswordTooLong.php:86 +#: src/Module/Settings/Account.php:555 msgid "New Password:" msgstr "Nova pasvorto:" -#: src/Module/Register.php:162 +#: src/Module/Register.php:155 msgid "Leave empty for an auto generated password." msgstr "" -#: src/Module/Register.php:163 src/Module/Security/PasswordTooLong.php:101 -#: src/Module/Settings/Account.php:558 +#: src/Module/Register.php:156 src/Module/Security/PasswordTooLong.php:87 +#: src/Module/Settings/Account.php:556 msgid "Confirm:" msgstr "Konfirmi:" -#: src/Module/Register.php:164 +#: src/Module/Register.php:157 #, php-format msgid "" "Choose a profile nickname. This must begin with a text character. Your " "profile address on this site will then be \"nickname@%s\"." msgstr "" -#: src/Module/Register.php:165 +#: src/Module/Register.php:158 msgid "Choose a nickname: " msgstr "Elektu kaŝnomon: " -#: src/Module/Register.php:173 src/Module/User/Import.php:117 +#: src/Module/Register.php:166 src/Module/User/Import.php:104 msgid "Import" msgstr "" -#: src/Module/Register.php:174 +#: src/Module/Register.php:167 msgid "Import your profile to this friendica instance" msgstr "" -#: src/Module/Register.php:181 +#: src/Module/Register.php:174 msgid "Note: This node explicitly contains adult content" msgstr "" -#: src/Module/Register.php:183 src/Module/Settings/Delegation.php:181 +#: src/Module/Register.php:176 src/Module/Settings/Delegation.php:167 msgid "Parent Password:" msgstr "" -#: src/Module/Register.php:183 src/Module/Settings/Delegation.php:181 +#: src/Module/Register.php:176 src/Module/Settings/Delegation.php:167 msgid "" "Please enter the password of the parent account to legitimize your request." msgstr "" -#: src/Module/Register.php:212 +#: src/Module/Register.php:205 msgid "Password doesn't match." msgstr "" -#: src/Module/Register.php:218 +#: src/Module/Register.php:211 msgid "Please enter your password." msgstr "" -#: src/Module/Register.php:260 +#: src/Module/Register.php:253 msgid "You have entered too much information." msgstr "" -#: src/Module/Register.php:283 +#: src/Module/Register.php:276 msgid "Please enter the identical mail address in the second field." msgstr "" -#: src/Module/Register.php:291 +#: src/Module/Register.php:284 msgid "Nickname cannot start with a digit." msgstr "" -#: src/Module/Register.php:293 +#: src/Module/Register.php:286 msgid "Nickname can only contain US-ASCII characters." msgstr "" -#: src/Module/Register.php:322 +#: src/Module/Register.php:315 msgid "The additional account was created." msgstr "" -#: src/Module/Register.php:347 +#: src/Module/Register.php:340 msgid "" "Registration successful. Please check your email for further instructions." msgstr "Registrado sukcesis. Bonvolu kontroli vian retpoŝton por pli da instruoj." -#: src/Module/Register.php:354 +#: src/Module/Register.php:347 #, php-format msgid "" "Failed to send email message. Here your accout details:
login: %s
" "password: %s

You can change your password after login." msgstr "" -#: src/Module/Register.php:360 +#: src/Module/Register.php:353 msgid "Registration successful." msgstr "" -#: src/Module/Register.php:369 src/Module/Register.php:376 -#: src/Module/Register.php:386 +#: src/Module/Register.php:362 src/Module/Register.php:369 +#: src/Module/Register.php:379 msgid "Your registration can not be processed." msgstr "Mi ne povas prilabori vian registradon." -#: src/Module/Register.php:375 +#: src/Module/Register.php:368 msgid "You have to leave a request note for the admin." msgstr "" -#: src/Module/Register.php:385 +#: src/Module/Register.php:378 msgid "An internal error occured." msgstr "" -#: src/Module/Register.php:407 +#: src/Module/Register.php:400 msgid "Your registration is pending approval by the site owner." msgstr "Via registrado bezonas apropbon de la administranto." -#: src/Module/Search/Acl.php:73 +#: src/Module/Search/Acl.php:64 msgid "You must be logged in to use this module." msgstr "" -#: src/Module/Search/Index.php:69 +#: src/Module/Search/Index.php:55 msgid "Only logged in users are permitted to perform a search." msgstr "" -#: src/Module/Search/Index.php:89 +#: src/Module/Search/Index.php:75 msgid "Only one search per minute is permitted for not logged in users." msgstr "" -#: src/Module/Search/Index.php:205 +#: src/Module/Search/Index.php:191 #, php-format msgid "Items tagged with: %s" msgstr "" -#: src/Module/Search/Saved.php:59 +#: src/Module/Search/Saved.php:49 msgid "Search term was not saved." msgstr "" -#: src/Module/Search/Saved.php:62 +#: src/Module/Search/Saved.php:52 msgid "Search term already saved." msgstr "" -#: src/Module/Search/Saved.php:68 +#: src/Module/Search/Saved.php:58 msgid "Search term was not removed." msgstr "" -#: src/Module/Security/Login.php:123 +#: src/Module/Security/Login.php:113 msgid "Create a New Account" msgstr "Krei Novan Konton" -#: src/Module/Security/Login.php:142 +#: src/Module/Security/Login.php:132 msgid "Your OpenID: " msgstr "" -#: src/Module/Security/Login.php:145 +#: src/Module/Security/Login.php:135 msgid "" "Please enter your username and password to add the OpenID to your existing " "account." msgstr "" -#: src/Module/Security/Login.php:147 +#: src/Module/Security/Login.php:137 msgid "Or login using OpenID: " msgstr "Aŭ ensaluti per OpenID:" -#: src/Module/Security/Login.php:161 +#: src/Module/Security/Login.php:151 msgid "Password: " msgstr "Pasvorto:" -#: src/Module/Security/Login.php:162 +#: src/Module/Security/Login.php:152 msgid "Remember me" msgstr "" -#: src/Module/Security/Login.php:171 +#: src/Module/Security/Login.php:161 msgid "Forgot your password?" msgstr "Ĉu vi vorgesis vian pasvorton?" -#: src/Module/Security/Login.php:174 +#: src/Module/Security/Login.php:164 msgid "Website Terms of Service" msgstr "" -#: src/Module/Security/Login.php:175 +#: src/Module/Security/Login.php:165 msgid "terms of service" msgstr "" -#: src/Module/Security/Login.php:177 +#: src/Module/Security/Login.php:167 msgid "Website Privacy Policy" msgstr "" -#: src/Module/Security/Login.php:178 +#: src/Module/Security/Login.php:168 msgid "privacy policy" msgstr "" -#: src/Module/Security/Logout.php:84 -#: src/Module/Security/TwoFactor/SignOut.php:78 -#: src/Module/Security/TwoFactor/SignOut.php:86 -#: src/Module/Security/TwoFactor/SignOut.php:108 -#: src/Module/Security/TwoFactor/SignOut.php:115 +#: src/Module/Security/Logout.php:75 +#: src/Module/Security/TwoFactor/SignOut.php:64 +#: src/Module/Security/TwoFactor/SignOut.php:72 +#: src/Module/Security/TwoFactor/SignOut.php:94 +#: src/Module/Security/TwoFactor/SignOut.php:101 msgid "Logged out." msgstr "Elsalutita." -#: src/Module/Security/OpenID.php:54 +#: src/Module/Security/OpenID.php:40 msgid "OpenID protocol error. No ID returned" msgstr "" -#: src/Module/Security/OpenID.php:90 +#: src/Module/Security/OpenID.php:76 msgid "" "Account not found. Please login to your existing account to add the OpenID " "to it." msgstr "" -#: src/Module/Security/OpenID.php:92 +#: src/Module/Security/OpenID.php:78 msgid "" "Account not found. Please register a new account or login to your existing " "account to add the OpenID to it." msgstr "" -#: src/Module/Security/PasswordTooLong.php:57 -#: src/Module/Settings/Account.php:67 +#: src/Module/Security/PasswordTooLong.php:43 +#: src/Module/Settings/Account.php:53 msgid "Passwords do not match." msgstr "" -#: src/Module/Security/PasswordTooLong.php:64 +#: src/Module/Security/PasswordTooLong.php:50 msgid "Password does not need changing." msgstr "" -#: src/Module/Security/PasswordTooLong.php:77 -#: src/Module/Settings/Account.php:81 +#: src/Module/Security/PasswordTooLong.php:63 +#: src/Module/Settings/Account.php:67 msgid "Password unchanged." msgstr "" -#: src/Module/Security/PasswordTooLong.php:91 +#: src/Module/Security/PasswordTooLong.php:77 msgid "Password Too Long" msgstr "" -#: src/Module/Security/PasswordTooLong.php:92 +#: src/Module/Security/PasswordTooLong.php:78 msgid "" "Since version 2022.09, we've realized that any password longer than 72 " "characters is truncated during hashing. To prevent any confusion about this " "behavior, please update your password to be fewer or equal to 72 characters." msgstr "" -#: src/Module/Security/PasswordTooLong.php:93 +#: src/Module/Security/PasswordTooLong.php:79 msgid "Update Password" msgstr "" -#: src/Module/Security/PasswordTooLong.php:99 -#: src/Module/Settings/Account.php:559 +#: src/Module/Security/PasswordTooLong.php:85 +#: src/Module/Settings/Account.php:557 msgid "Current Password:" msgstr "" -#: src/Module/Security/PasswordTooLong.php:99 -#: src/Module/Settings/Account.php:559 +#: src/Module/Security/PasswordTooLong.php:85 +#: src/Module/Settings/Account.php:557 msgid "Your current password to confirm the changes" msgstr "" -#: src/Module/Security/PasswordTooLong.php:100 -#: src/Module/Settings/Account.php:543 +#: src/Module/Security/PasswordTooLong.php:86 +#: src/Module/Settings/Account.php:541 msgid "" "Allowed characters are a-z, A-Z, 0-9 and special characters except white " "spaces and accentuated letters." msgstr "" -#: src/Module/Security/PasswordTooLong.php:100 -#: src/Module/Settings/Account.php:544 +#: src/Module/Security/PasswordTooLong.php:86 +#: src/Module/Settings/Account.php:542 msgid "Password length is limited to 72 characters." msgstr "" -#: src/Module/Security/TwoFactor/Recovery.php:74 +#: src/Module/Security/TwoFactor/Recovery.php:60 #, php-format msgid "Remaining recovery codes: %d" msgstr "" -#: src/Module/Security/TwoFactor/Recovery.php:80 -#: src/Module/Security/TwoFactor/Verify.php:77 -#: src/Module/Settings/TwoFactor/Verify.php:98 +#: src/Module/Security/TwoFactor/Recovery.php:66 +#: src/Module/Security/TwoFactor/Verify.php:63 +#: src/Module/Settings/TwoFactor/Verify.php:84 msgid "Invalid code, please retry." msgstr "" -#: src/Module/Security/TwoFactor/Recovery.php:99 +#: src/Module/Security/TwoFactor/Recovery.php:85 msgid "Two-factor recovery" msgstr "" -#: src/Module/Security/TwoFactor/Recovery.php:100 +#: src/Module/Security/TwoFactor/Recovery.php:86 msgid "" "

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

" msgstr "" -#: src/Module/Security/TwoFactor/Recovery.php:101 +#: src/Module/Security/TwoFactor/Recovery.php:87 #, php-format msgid "Don’t have your phone? Enter a two-factor recovery code" msgstr "" -#: src/Module/Security/TwoFactor/Recovery.php:102 +#: src/Module/Security/TwoFactor/Recovery.php:88 msgid "Please enter a recovery code" msgstr "" -#: src/Module/Security/TwoFactor/Recovery.php:103 +#: src/Module/Security/TwoFactor/Recovery.php:89 msgid "Submit recovery code and complete login" msgstr "" -#: src/Module/Security/TwoFactor/SignOut.php:122 +#: src/Module/Security/TwoFactor/SignOut.php:108 msgid "Sign out of this browser?" msgstr "" -#: src/Module/Security/TwoFactor/SignOut.php:123 +#: src/Module/Security/TwoFactor/SignOut.php:109 msgid "" "

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

" msgstr "" -#: src/Module/Security/TwoFactor/SignOut.php:124 +#: src/Module/Security/TwoFactor/SignOut.php:110 msgid "Sign out" msgstr "" -#: src/Module/Security/TwoFactor/SignOut.php:126 +#: src/Module/Security/TwoFactor/SignOut.php:112 msgid "Trust and sign out" msgstr "" -#: src/Module/Security/TwoFactor/Trust.php:96 +#: src/Module/Security/TwoFactor/Trust.php:82 msgid "Couldn't save browser to Cookie." msgstr "" -#: src/Module/Security/TwoFactor/Trust.php:141 +#: src/Module/Security/TwoFactor/Trust.php:127 msgid "Trust this browser?" msgstr "" -#: src/Module/Security/TwoFactor/Trust.php:142 +#: src/Module/Security/TwoFactor/Trust.php:128 msgid "" "

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

" msgstr "" -#: src/Module/Security/TwoFactor/Trust.php:143 +#: src/Module/Security/TwoFactor/Trust.php:129 msgid "Not now" msgstr "" -#: src/Module/Security/TwoFactor/Trust.php:144 +#: src/Module/Security/TwoFactor/Trust.php:130 msgid "Don't trust" msgstr "" -#: src/Module/Security/TwoFactor/Trust.php:145 +#: src/Module/Security/TwoFactor/Trust.php:131 msgid "Trust" msgstr "" -#: src/Module/Security/TwoFactor/Verify.php:97 +#: src/Module/Security/TwoFactor/Verify.php:83 msgid "" "

Open the two-factor authentication app on your device to get an " "authentication code and verify your identity.

" msgstr "" -#: src/Module/Security/TwoFactor/Verify.php:100 +#: src/Module/Security/TwoFactor/Verify.php:86 #, php-format msgid "" "If you do not have access to your authentication code you can use a two-factor recovery code." msgstr "" -#: src/Module/Security/TwoFactor/Verify.php:101 -#: src/Module/Settings/TwoFactor/Verify.php:158 +#: src/Module/Security/TwoFactor/Verify.php:87 +#: src/Module/Settings/TwoFactor/Verify.php:144 msgid "Please enter a code from your authentication app" msgstr "" -#: src/Module/Security/TwoFactor/Verify.php:102 +#: src/Module/Security/TwoFactor/Verify.php:88 msgid "Verify code and complete login" msgstr "" -#: src/Module/Settings/Account.php:96 +#: src/Module/Settings/Account.php:82 msgid "Please use a shorter name." msgstr "" -#: src/Module/Settings/Account.php:99 +#: src/Module/Settings/Account.php:85 msgid "Name too short." msgstr "" -#: src/Module/Settings/Account.php:108 +#: src/Module/Settings/Account.php:94 msgid "Wrong Password." msgstr "" -#: src/Module/Settings/Account.php:113 +#: src/Module/Settings/Account.php:99 msgid "Invalid email." msgstr "" -#: src/Module/Settings/Account.php:117 +#: src/Module/Settings/Account.php:103 msgid "Cannot change to that email." msgstr "" -#: src/Module/Settings/Account.php:146 src/Module/Settings/Account.php:195 -#: src/Module/Settings/Account.php:216 src/Module/Settings/Account.php:300 -#: src/Module/Settings/Account.php:329 +#: src/Module/Settings/Account.php:132 src/Module/Settings/Account.php:181 +#: src/Module/Settings/Account.php:202 src/Module/Settings/Account.php:286 +#: src/Module/Settings/Account.php:315 msgid "Settings were not updated." msgstr "" -#: src/Module/Settings/Account.php:342 +#: src/Module/Settings/Account.php:333 msgid "Contact CSV file upload error" msgstr "" -#: src/Module/Settings/Account.php:361 +#: src/Module/Settings/Account.php:352 msgid "Importing Contacts done" msgstr "" -#: src/Module/Settings/Account.php:374 +#: src/Module/Settings/Account.php:365 msgid "Relocate message has been send to your contacts" msgstr "" -#: src/Module/Settings/Account.php:391 +#: src/Module/Settings/Account.php:382 msgid "Unable to find your profile. Please contact your admin." msgstr "" -#: src/Module/Settings/Account.php:433 +#: src/Module/Settings/Account.php:424 msgid "" "Account for a service that automatically shares content based on user " "defined channels." msgstr "" -#: src/Module/Settings/Account.php:443 +#: src/Module/Settings/Account.php:434 msgid "Personal Page Subtypes" msgstr "" -#: src/Module/Settings/Account.php:444 +#: src/Module/Settings/Account.php:435 msgid "Community Group Subtypes" msgstr "" -#: src/Module/Settings/Account.php:455 +#: src/Module/Settings/Account.php:446 msgid "Account for a personal profile." msgstr "" -#: src/Module/Settings/Account.php:462 +#: src/Module/Settings/Account.php:453 msgid "" "Account for an organisation that automatically approves contact requests as " "\"Followers\"." msgstr "" -#: src/Module/Settings/Account.php:469 +#: src/Module/Settings/Account.php:460 msgid "" "Account for a news reflector that automatically approves contact requests as" " \"Followers\"." msgstr "" -#: src/Module/Settings/Account.php:476 +#: src/Module/Settings/Account.php:467 msgid "Account for community discussions." msgstr "" -#: src/Module/Settings/Account.php:484 +#: src/Module/Settings/Account.php:475 msgid "" "Account for a regular personal profile that requires manual approval of " "\"Friends\" and \"Followers\"." msgstr "" -#: src/Module/Settings/Account.php:491 +#: src/Module/Settings/Account.php:482 msgid "" "Account for a public profile that automatically approves contact requests as" " \"Followers\"." msgstr "" -#: src/Module/Settings/Account.php:498 +#: src/Module/Settings/Account.php:489 msgid "Automatically approves all contact requests." msgstr "" -#: src/Module/Settings/Account.php:505 +#: src/Module/Settings/Account.php:496 +msgid "Contact requests have to be manually approved." +msgstr "" + +#: src/Module/Settings/Account.php:503 msgid "" "Account for a popular profile that automatically approves contact requests " "as \"Friends\"." msgstr "" -#: src/Module/Settings/Account.php:510 +#: src/Module/Settings/Account.php:508 msgid "Private Group [Experimental]" msgstr "" -#: src/Module/Settings/Account.php:512 +#: src/Module/Settings/Account.php:510 msgid "Requires manual approval of contact requests." msgstr "" -#: src/Module/Settings/Account.php:521 +#: src/Module/Settings/Account.php:519 msgid "OpenID:" msgstr "OpenID:" -#: src/Module/Settings/Account.php:521 +#: src/Module/Settings/Account.php:519 msgid "(Optional) Allow this OpenID to login to this account." msgstr "(Nedeviga) Permesi atingon al la konton al ĉi tio OpenID." -#: src/Module/Settings/Account.php:529 +#: src/Module/Settings/Account.php:527 msgid "Publish your profile in your local site directory?" msgstr "" -#: src/Module/Settings/Account.php:529 +#: src/Module/Settings/Account.php:527 #, php-format msgid "" "Your profile will be published in this node's local " @@ -9787,94 +9835,94 @@ msgid "" " system settings." msgstr "" -#: src/Module/Settings/Account.php:535 +#: src/Module/Settings/Account.php:533 #, php-format msgid "" "Your profile will also be published in the global friendica directories " "(e.g. %s)." msgstr "" -#: src/Module/Settings/Account.php:548 +#: src/Module/Settings/Account.php:546 msgid "Account Settings" msgstr "Kontoagordoj" -#: src/Module/Settings/Account.php:549 +#: src/Module/Settings/Account.php:547 #, php-format msgid "Your Identity Address is '%s' or '%s'." msgstr "" -#: src/Module/Settings/Account.php:556 +#: src/Module/Settings/Account.php:554 msgid "Password Settings" msgstr "Agordoj pri Pasvorto" -#: src/Module/Settings/Account.php:558 +#: src/Module/Settings/Account.php:556 msgid "Leave password fields blank unless changing" msgstr "Lasu pasvortkampojn malplenaj se vi ne ŝanĝas la pasvorton." -#: src/Module/Settings/Account.php:560 +#: src/Module/Settings/Account.php:558 msgid "Password:" msgstr "" -#: src/Module/Settings/Account.php:560 +#: src/Module/Settings/Account.php:558 msgid "Your current password to confirm the changes of the email address" msgstr "" -#: src/Module/Settings/Account.php:563 +#: src/Module/Settings/Account.php:561 msgid "Delete OpenID URL" msgstr "" -#: src/Module/Settings/Account.php:565 +#: src/Module/Settings/Account.php:563 msgid "Basic Settings" msgstr "Bazaj Agordoj" -#: src/Module/Settings/Account.php:566 -#: src/Module/Settings/Profile/Index.php:283 +#: src/Module/Settings/Account.php:564 +#: src/Module/Settings/Profile/Index.php:274 msgid "Display name:" msgstr "" -#: src/Module/Settings/Account.php:567 +#: src/Module/Settings/Account.php:565 msgid "Email Address:" msgstr "Retpoŝtadreso:" -#: src/Module/Settings/Account.php:568 +#: src/Module/Settings/Account.php:566 msgid "Your Timezone:" msgstr "Via Horzono:" -#: src/Module/Settings/Account.php:569 +#: src/Module/Settings/Account.php:567 msgid "Your Language:" msgstr "" -#: src/Module/Settings/Account.php:569 +#: src/Module/Settings/Account.php:567 msgid "" "Set the language we use to show you friendica interface and to send you " "emails" msgstr "" -#: src/Module/Settings/Account.php:570 +#: src/Module/Settings/Account.php:568 msgid "Default Post Location:" msgstr "Defaŭlta Loko por Afiŝoj:" -#: src/Module/Settings/Account.php:571 +#: src/Module/Settings/Account.php:569 msgid "Use Browser Location:" msgstr "Uzu Lokon laŭ Retesplorilo:" -#: src/Module/Settings/Account.php:573 +#: src/Module/Settings/Account.php:571 msgid "Security and Privacy Settings" msgstr "Agordoj pri Sekureco kaj Privateco" -#: src/Module/Settings/Account.php:575 +#: src/Module/Settings/Account.php:573 msgid "Maximum Friend Requests/Day:" msgstr "Taga maksimumo da kontaktpetoj:" -#: src/Module/Settings/Account.php:575 +#: src/Module/Settings/Account.php:573 msgid "(to prevent spam abuse)" msgstr "(por malhelpi spamaĵojn)" -#: src/Module/Settings/Account.php:577 +#: src/Module/Settings/Account.php:575 msgid "Allow your profile to be searchable globally?" msgstr "" -#: src/Module/Settings/Account.php:577 +#: src/Module/Settings/Account.php:575 msgid "" "Activate this setting if you want others to easily find and follow you. Your" " profile will be searchable on remote systems. This setting also determines " @@ -9882,43 +9930,43 @@ msgid "" "indexed or not." msgstr "" -#: src/Module/Settings/Account.php:578 +#: src/Module/Settings/Account.php:576 msgid "Hide your contact/friend list from viewers of your profile?" msgstr "" -#: src/Module/Settings/Account.php:578 +#: src/Module/Settings/Account.php:576 msgid "" "A list of your contacts is displayed on your profile page. Activate this " "option to disable the display of your contact list." msgstr "" -#: src/Module/Settings/Account.php:579 +#: src/Module/Settings/Account.php:577 msgid "Hide your public content from anonymous viewers" msgstr "" -#: src/Module/Settings/Account.php:579 +#: src/Module/Settings/Account.php:577 msgid "" "Anonymous visitors will only see your basic profile details. Your public " "posts and replies will still be freely accessible on the remote servers of " "your followers and through relays." msgstr "" -#: src/Module/Settings/Account.php:580 +#: src/Module/Settings/Account.php:578 msgid "Make public posts unlisted" msgstr "" -#: src/Module/Settings/Account.php:580 +#: src/Module/Settings/Account.php:578 msgid "" "Your public posts will not appear on the community pages or in search " "results, nor be sent to relay servers. However they can still appear on " "public feeds on remote servers." msgstr "" -#: src/Module/Settings/Account.php:581 +#: src/Module/Settings/Account.php:579 msgid "Make all posted pictures accessible" msgstr "" -#: src/Module/Settings/Account.php:581 +#: src/Module/Settings/Account.php:579 msgid "" "This option makes every posted picture accessible via the direct link. This " "is a workaround for the problem that most other networks can't handle " @@ -9926,352 +9974,352 @@ msgid "" "public on your photo albums though." msgstr "" -#: src/Module/Settings/Account.php:582 +#: src/Module/Settings/Account.php:580 msgid "Allow friends to post to your profile page?" msgstr "Ĉu amikoj povu afiŝi al via profilo?" -#: src/Module/Settings/Account.php:582 +#: src/Module/Settings/Account.php:580 msgid "" "Your contacts may write posts on your profile wall. These posts will be " "distributed to your contacts" msgstr "" -#: src/Module/Settings/Account.php:583 +#: src/Module/Settings/Account.php:581 msgid "Allow friends to tag your posts?" msgstr "Ĉu amikoj povu aldoni markojn al viaj afiŝoj?" -#: src/Module/Settings/Account.php:583 +#: src/Module/Settings/Account.php:581 msgid "Your contacts can add additional tags to your posts." msgstr "" -#: src/Module/Settings/Account.php:584 +#: src/Module/Settings/Account.php:582 msgid "Default privacy circle for new contacts" msgstr "" -#: src/Module/Settings/Account.php:585 +#: src/Module/Settings/Account.php:583 msgid "Default privacy circle for new group contacts" msgstr "" -#: src/Module/Settings/Account.php:586 +#: src/Module/Settings/Account.php:584 msgid "Default Post Permissions" msgstr "Defaŭltaj permesoj por afiŝoj" -#: src/Module/Settings/Account.php:590 +#: src/Module/Settings/Account.php:588 msgid "Expiration settings" msgstr "" -#: src/Module/Settings/Account.php:591 +#: src/Module/Settings/Account.php:589 msgid "Automatically expire posts after this many days:" msgstr "Automatike senvalidigi afiŝojn post tiom da tagoj:" -#: src/Module/Settings/Account.php:591 +#: src/Module/Settings/Account.php:589 msgid "If empty, posts will not expire. Expired posts will be deleted" msgstr "Se malplena, afiŝoj neniam senvalidiĝos. Senvalidigitajn afiŝon estos forviŝata" -#: src/Module/Settings/Account.php:592 +#: src/Module/Settings/Account.php:590 msgid "Expire posts" msgstr "" -#: src/Module/Settings/Account.php:592 +#: src/Module/Settings/Account.php:590 msgid "When activated, posts and comments will be expired." msgstr "" -#: src/Module/Settings/Account.php:593 +#: src/Module/Settings/Account.php:591 msgid "Expire personal notes" msgstr "" -#: src/Module/Settings/Account.php:593 +#: src/Module/Settings/Account.php:591 msgid "" "When activated, the personal notes on your profile page will be expired." msgstr "" -#: src/Module/Settings/Account.php:594 +#: src/Module/Settings/Account.php:592 msgid "Expire starred posts" msgstr "" -#: src/Module/Settings/Account.php:594 +#: src/Module/Settings/Account.php:592 msgid "" "Starring posts keeps them from being expired. That behaviour is overwritten " "by this setting." msgstr "" -#: src/Module/Settings/Account.php:595 +#: src/Module/Settings/Account.php:593 msgid "Only expire posts by others" msgstr "" -#: src/Module/Settings/Account.php:595 +#: src/Module/Settings/Account.php:593 msgid "" "When activated, your own posts never expire. Then the settings above are " "only valid for posts you received." msgstr "" -#: src/Module/Settings/Account.php:598 +#: src/Module/Settings/Account.php:596 msgid "Notification Settings" msgstr "Agordoj pri Atentigoj" -#: src/Module/Settings/Account.php:599 +#: src/Module/Settings/Account.php:597 msgid "Send a notification email when:" msgstr "Sendu atentiga repoŝton se:" -#: src/Module/Settings/Account.php:600 +#: src/Module/Settings/Account.php:598 msgid "You receive an introduction" msgstr "Vi ricevas inviton" -#: src/Module/Settings/Account.php:601 +#: src/Module/Settings/Account.php:599 msgid "Your introductions are confirmed" msgstr "Viaj prezentoj estas konfirmata." -#: src/Module/Settings/Account.php:602 +#: src/Module/Settings/Account.php:600 msgid "Someone writes on your profile wall" msgstr "Iu skribas je via profila muro." -#: src/Module/Settings/Account.php:603 +#: src/Module/Settings/Account.php:601 msgid "Someone writes a followup comment" msgstr "Iu skribas sekvan komenton" -#: src/Module/Settings/Account.php:604 +#: src/Module/Settings/Account.php:602 msgid "You receive a private message" msgstr "Vi ricevas privatan mesaĝon." -#: src/Module/Settings/Account.php:605 +#: src/Module/Settings/Account.php:603 msgid "You receive a friend suggestion" msgstr "Vi ricevas amikosugeston" -#: src/Module/Settings/Account.php:606 +#: src/Module/Settings/Account.php:604 msgid "You are tagged in a post" msgstr "Vi estas markita en afiŝon" -#: src/Module/Settings/Account.php:608 +#: src/Module/Settings/Account.php:606 msgid "Create a desktop notification when:" msgstr "" -#: src/Module/Settings/Account.php:609 +#: src/Module/Settings/Account.php:607 msgid "Someone tagged you" msgstr "" -#: src/Module/Settings/Account.php:610 +#: src/Module/Settings/Account.php:608 msgid "Someone directly commented on your post" msgstr "" -#: src/Module/Settings/Account.php:611 +#: src/Module/Settings/Account.php:609 msgid "Someone liked your content" msgstr "" -#: src/Module/Settings/Account.php:611 src/Module/Settings/Account.php:612 +#: src/Module/Settings/Account.php:609 src/Module/Settings/Account.php:610 msgid "Can only be enabled, when the direct comment notification is enabled." msgstr "" -#: src/Module/Settings/Account.php:612 +#: src/Module/Settings/Account.php:610 msgid "Someone shared your content" msgstr "" -#: src/Module/Settings/Account.php:613 +#: src/Module/Settings/Account.php:611 msgid "Someone commented in your thread" msgstr "" -#: src/Module/Settings/Account.php:614 +#: src/Module/Settings/Account.php:612 msgid "Someone commented in a thread where you commented" msgstr "" -#: src/Module/Settings/Account.php:615 +#: src/Module/Settings/Account.php:613 msgid "Someone commented in a thread where you interacted" msgstr "" -#: src/Module/Settings/Account.php:617 +#: src/Module/Settings/Account.php:615 msgid "Activate desktop notifications" msgstr "" -#: src/Module/Settings/Account.php:617 +#: src/Module/Settings/Account.php:615 msgid "Show desktop popup on new notifications" msgstr "" -#: src/Module/Settings/Account.php:621 +#: src/Module/Settings/Account.php:619 msgid "Text-only notification emails" msgstr "" -#: src/Module/Settings/Account.php:623 +#: src/Module/Settings/Account.php:621 msgid "Send text only notification emails, without the html part" msgstr "" -#: src/Module/Settings/Account.php:627 +#: src/Module/Settings/Account.php:625 msgid "Show detailled notifications" msgstr "" -#: src/Module/Settings/Account.php:629 +#: src/Module/Settings/Account.php:627 msgid "" "Per default, notifications are condensed to a single notification per item. " "When enabled every notification is displayed." msgstr "" -#: src/Module/Settings/Account.php:633 +#: src/Module/Settings/Account.php:631 msgid "Show notifications of ignored contacts" msgstr "" -#: src/Module/Settings/Account.php:635 +#: src/Module/Settings/Account.php:633 msgid "" "You don't see posts from ignored contacts. But you still see their comments." " This setting controls if you want to still receive regular notifications " "that are caused by ignored contacts or not." msgstr "" -#: src/Module/Settings/Account.php:638 +#: src/Module/Settings/Account.php:636 msgid "Advanced Account/Page Type Settings" msgstr "Detalaj Agordoj pri Tipo de Konto/Paĝo." -#: src/Module/Settings/Account.php:639 +#: src/Module/Settings/Account.php:637 msgid "Change the behaviour of this account for special situations" msgstr "Agordi la teniĝon de la konto en specialaj situacioj" -#: src/Module/Settings/Account.php:642 +#: src/Module/Settings/Account.php:640 msgid "Import Contacts" msgstr "" -#: src/Module/Settings/Account.php:643 +#: src/Module/Settings/Account.php:641 msgid "" "Upload a CSV file that contains the handle of your followed accounts in the " "first column you exported from the old account." msgstr "" -#: src/Module/Settings/Account.php:644 +#: src/Module/Settings/Account.php:642 msgid "Upload File" msgstr "" -#: src/Module/Settings/Account.php:647 +#: src/Module/Settings/Account.php:645 msgid "Relocate" msgstr "" -#: src/Module/Settings/Account.php:648 +#: src/Module/Settings/Account.php:646 msgid "" "If you have moved this profile from another server, and some of your " "contacts don't receive your updates, try pushing this button." msgstr "" -#: src/Module/Settings/Account.php:649 +#: src/Module/Settings/Account.php:647 msgid "Resend relocate message to contacts" msgstr "" -#: src/Module/Settings/Addons.php:86 +#: src/Module/Settings/Addons.php:72 msgid "Addon Settings" msgstr "" -#: src/Module/Settings/Addons.php:87 +#: src/Module/Settings/Addons.php:73 msgid "No Addon settings configured" msgstr "" -#: src/Module/Settings/Channels.php:142 +#: src/Module/Settings/Channels.php:134 msgid "" "This page can be used to define the channels that will automatically be " "reshared by your account." msgstr "" -#: src/Module/Settings/Channels.php:147 +#: src/Module/Settings/Channels.php:139 msgid "This page can be used to define your own channels." msgstr "" -#: src/Module/Settings/Channels.php:176 +#: src/Module/Settings/Channels.php:168 msgid "Publish" msgstr "" -#: src/Module/Settings/Channels.php:176 +#: src/Module/Settings/Channels.php:168 msgid "" "When selected, the channel results are reshared. This only works for public " "ActivityPub posts from the public timeline or the user defined circles." msgstr "" -#: src/Module/Settings/Channels.php:184 src/Module/Settings/Channels.php:205 -#: src/Module/Settings/Display.php:342 +#: src/Module/Settings/Channels.php:176 src/Module/Settings/Channels.php:197 +#: src/Module/Settings/Display.php:324 msgid "Label" msgstr "" -#: src/Module/Settings/Channels.php:185 src/Module/Settings/Channels.php:206 -#: src/Module/Settings/Display.php:343 -#: src/Module/Settings/TwoFactor/AppSpecific.php:137 +#: src/Module/Settings/Channels.php:177 src/Module/Settings/Channels.php:198 +#: src/Module/Settings/Display.php:325 +#: src/Module/Settings/TwoFactor/AppSpecific.php:123 msgid "Description" msgstr "" -#: src/Module/Settings/Channels.php:186 src/Module/Settings/Channels.php:207 +#: src/Module/Settings/Channels.php:178 src/Module/Settings/Channels.php:199 msgid "Access Key" msgstr "" -#: src/Module/Settings/Channels.php:187 src/Module/Settings/Channels.php:208 +#: src/Module/Settings/Channels.php:179 src/Module/Settings/Channels.php:200 msgid "Circle/Channel" msgstr "" -#: src/Module/Settings/Channels.php:188 src/Module/Settings/Channels.php:209 +#: src/Module/Settings/Channels.php:180 src/Module/Settings/Channels.php:201 msgid "Include Tags" msgstr "" -#: src/Module/Settings/Channels.php:189 src/Module/Settings/Channels.php:210 +#: src/Module/Settings/Channels.php:181 src/Module/Settings/Channels.php:202 msgid "Exclude Tags" msgstr "" -#: src/Module/Settings/Channels.php:190 src/Module/Settings/Channels.php:211 +#: src/Module/Settings/Channels.php:182 src/Module/Settings/Channels.php:203 msgid "Minimum Size" msgstr "" -#: src/Module/Settings/Channels.php:191 src/Module/Settings/Channels.php:212 +#: src/Module/Settings/Channels.php:183 src/Module/Settings/Channels.php:204 msgid "Maximum Size" msgstr "" -#: src/Module/Settings/Channels.php:192 src/Module/Settings/Channels.php:213 +#: src/Module/Settings/Channels.php:184 src/Module/Settings/Channels.php:205 msgid "Full Text Search" msgstr "" -#: src/Module/Settings/Channels.php:196 src/Module/Settings/Channels.php:217 +#: src/Module/Settings/Channels.php:188 src/Module/Settings/Channels.php:209 msgid "Select all languages that you want to see in this channel." msgstr "" -#: src/Module/Settings/Channels.php:198 +#: src/Module/Settings/Channels.php:190 msgid "Delete channel" msgstr "" -#: src/Module/Settings/Channels.php:198 +#: src/Module/Settings/Channels.php:190 msgid "Check to delete this entry from the channel list" msgstr "" -#: src/Module/Settings/Channels.php:205 +#: src/Module/Settings/Channels.php:197 msgid "Short name for the channel. It is displayed on the channels widget." msgstr "" -#: src/Module/Settings/Channels.php:206 +#: src/Module/Settings/Channels.php:198 msgid "This should describe the content of the channel in a few word." msgstr "" -#: src/Module/Settings/Channels.php:207 +#: src/Module/Settings/Channels.php:199 msgid "" "When you want to access this channel via an access key, you can define it " "here. Pay attention to not use an already used one." msgstr "" -#: src/Module/Settings/Channels.php:208 +#: src/Module/Settings/Channels.php:200 msgid "Select a circle or channel, that your channel should be based on." msgstr "" -#: src/Module/Settings/Channels.php:209 +#: src/Module/Settings/Channels.php:201 msgid "" "Comma separated list of tags. A post will be used when it contains any of " "the listed tags." msgstr "" -#: src/Module/Settings/Channels.php:210 +#: src/Module/Settings/Channels.php:202 msgid "" "Comma separated list of tags. If a post contain any of these tags, then it " "will not be part of nthis channel." msgstr "" -#: src/Module/Settings/Channels.php:211 +#: src/Module/Settings/Channels.php:203 msgid "" "Minimum post size. Leave empty for no minimum size. The size is calculated " "without links, attached posts, mentions or hashtags." msgstr "" -#: src/Module/Settings/Channels.php:212 +#: src/Module/Settings/Channels.php:204 msgid "" "Maximum post size. Leave empty for no maximum size. The size is calculated " "without links, attached posts, mentions or hashtags." msgstr "" -#: src/Module/Settings/Channels.php:213 +#: src/Module/Settings/Channels.php:205 #, php-format msgid "" "Search terms for the body, supports the \"boolean mode\" operators from " @@ -10279,586 +10327,589 @@ msgid "" "keywords: %s" msgstr "" -#: src/Module/Settings/Channels.php:214 +#: src/Module/Settings/Channels.php:206 msgid "Check to display images in the channel." msgstr "" -#: src/Module/Settings/Channels.php:215 +#: src/Module/Settings/Channels.php:207 msgid "Check to display videos in the channel." msgstr "" -#: src/Module/Settings/Channels.php:216 +#: src/Module/Settings/Channels.php:208 msgid "Check to display audio in the channel." msgstr "" -#: src/Module/Settings/Channels.php:221 +#: src/Module/Settings/Channels.php:213 msgid "Add new entry to the channel list" msgstr "" -#: src/Module/Settings/Channels.php:222 +#: src/Module/Settings/Channels.php:214 msgid "Add" msgstr "Aldoni" -#: src/Module/Settings/Channels.php:224 +#: src/Module/Settings/Channels.php:216 msgid "Current Entries in the channel list" msgstr "" -#: src/Module/Settings/Channels.php:227 +#: src/Module/Settings/Channels.php:219 msgid "Delete entry from the channel list" msgstr "" -#: src/Module/Settings/Channels.php:228 +#: src/Module/Settings/Channels.php:220 msgid "Delete entry from the channel list?" msgstr "" -#: src/Module/Settings/Connectors.php:120 +#: src/Module/Settings/Connectors.php:108 msgid "Failed to connect with email account using the settings provided." msgstr "Ne sukcesis konekti al retpoŝtkonto kun la provizitaj agordoj." -#: src/Module/Settings/Connectors.php:166 -#: src/Module/Settings/Connectors.php:167 +#: src/Module/Settings/Connectors.php:155 +#: src/Module/Settings/Connectors.php:156 msgid "Diaspora (Socialhome, Hubzilla)" msgstr "" -#: src/Module/Settings/Connectors.php:166 -#: src/Module/Settings/Connectors.php:170 +#: src/Module/Settings/Connectors.php:155 #, php-format msgid "Built-in support for %s connectivity is enabled" msgstr "" -#: src/Module/Settings/Connectors.php:167 -#: src/Module/Settings/Connectors.php:169 +#: src/Module/Settings/Connectors.php:156 #, php-format msgid "Built-in support for %s connectivity is disabled" msgstr "" -#: src/Module/Settings/Connectors.php:169 -#: src/Module/Settings/Connectors.php:170 -msgid "OStatus (GNU Social)" -msgstr "" - -#: src/Module/Settings/Connectors.php:182 +#: src/Module/Settings/Connectors.php:167 msgid "Email access is disabled on this site." msgstr "Retpoŝta atingo ne disponeblas ĉi tie." -#: src/Module/Settings/Connectors.php:197 -#: src/Module/Settings/Connectors.php:244 +#: src/Module/Settings/Connectors.php:182 +#: src/Module/Settings/Connectors.php:233 msgid "None" msgstr "Nenio" -#: src/Module/Settings/Connectors.php:209 +#: src/Module/Settings/Connectors.php:186 +msgid "Default (Mastodon will display the title and a link to the post)" +msgstr "" + +#: src/Module/Settings/Connectors.php:187 +msgid "" +"Use the summary (Mastodon and some others will treat it as content warning)" +msgstr "" + +#: src/Module/Settings/Connectors.php:188 +msgid "Embed the title in the body" +msgstr "" + +#: src/Module/Settings/Connectors.php:199 msgid "General Social Media Settings" msgstr "" -#: src/Module/Settings/Connectors.php:212 +#: src/Module/Settings/Connectors.php:202 msgid "Followed content scope" msgstr "" -#: src/Module/Settings/Connectors.php:214 +#: src/Module/Settings/Connectors.php:204 msgid "" "By default, conversations in which your follows participated but didn't " "start will be shown in your timeline. You can turn this behavior off, or " "expand it to the conversations in which your follows liked a post." msgstr "" -#: src/Module/Settings/Connectors.php:216 +#: src/Module/Settings/Connectors.php:206 msgid "Only conversations my follows started" msgstr "" -#: src/Module/Settings/Connectors.php:217 +#: src/Module/Settings/Connectors.php:207 msgid "Conversations my follows started or commented on (default)" msgstr "" -#: src/Module/Settings/Connectors.php:218 +#: src/Module/Settings/Connectors.php:208 msgid "Any conversation my follows interacted with, including likes" msgstr "" -#: src/Module/Settings/Connectors.php:221 -msgid "Enable Content Warning" +#: src/Module/Settings/Connectors.php:211 +msgid "Collapse sensitive posts" msgstr "" -#: src/Module/Settings/Connectors.php:221 +#: src/Module/Settings/Connectors.php:211 msgid "" -"Users on networks like Mastodon or Pleroma are able to set a content warning" -" field which collapse their post by default. This enables the automatic " -"collapsing instead of setting the content warning as the post title. Doesn't" -" affect any other content filtering you eventually set up." +"If a post is marked as \"sensitive\", it will be displayed in a collapsed " +"state, if this option is enabled." msgstr "" -#: src/Module/Settings/Connectors.php:222 +#: src/Module/Settings/Connectors.php:212 msgid "Enable intelligent shortening" msgstr "" -#: src/Module/Settings/Connectors.php:222 +#: src/Module/Settings/Connectors.php:212 msgid "" "Normally the system tries to find the best link to add to shortened posts. " "If disabled, every shortened post will always point to the original " "friendica post." msgstr "" -#: src/Module/Settings/Connectors.php:223 +#: src/Module/Settings/Connectors.php:213 msgid "Enable simple text shortening" msgstr "" -#: src/Module/Settings/Connectors.php:223 +#: src/Module/Settings/Connectors.php:213 msgid "" "Normally the system shortens posts at the next line feed. If this option is " "enabled then the system will shorten the text at the maximum character " "limit." msgstr "" -#: src/Module/Settings/Connectors.php:224 +#: src/Module/Settings/Connectors.php:214 msgid "Attach the link title" msgstr "" -#: src/Module/Settings/Connectors.php:224 +#: src/Module/Settings/Connectors.php:214 msgid "" "When activated, the title of the attached link will be added as a title on " "posts to Diaspora. This is mostly helpful with \"remote-self\" contacts that" " share feed content." msgstr "" -#: src/Module/Settings/Connectors.php:225 +#: src/Module/Settings/Connectors.php:215 msgid "API: Use spoiler field as title" msgstr "" -#: src/Module/Settings/Connectors.php:225 +#: src/Module/Settings/Connectors.php:215 msgid "" "When activated, the \"spoiler_text\" field in the API will be used for the " "title on standalone posts. When deactivated it will be used for spoiler " "text. For comments it will always be used for spoiler text." msgstr "" -#: src/Module/Settings/Connectors.php:226 +#: src/Module/Settings/Connectors.php:216 msgid "API: Automatically links at the end of the post as attached posts" msgstr "" -#: src/Module/Settings/Connectors.php:226 +#: src/Module/Settings/Connectors.php:216 msgid "" "When activated, added links at the end of the post react the same way as " "added links in the web interface." msgstr "" -#: src/Module/Settings/Connectors.php:227 +#: src/Module/Settings/Connectors.php:217 +msgid "Article Mode" +msgstr "" + +#: src/Module/Settings/Connectors.php:217 +msgid "" +"Controls how posts with titles are transmitted. Mastodon and its forks don't" +" display the content of these posts if the post is created in the correct " +"(default) way." +msgstr "" + +#: src/Module/Settings/Connectors.php:218 msgid "Your legacy ActivityPub/GNU Social account" msgstr "" -#: src/Module/Settings/Connectors.php:227 +#: src/Module/Settings/Connectors.php:218 msgid "" "If you enter your old account name from an ActivityPub based system or your " "GNU Social/Statusnet account name here (in the format user@domain.tld), your" " contacts will be added automatically. The field will be emptied when done." msgstr "" -#: src/Module/Settings/Connectors.php:229 -msgid "Repair OStatus subscriptions" -msgstr "" - -#: src/Module/Settings/Connectors.php:233 +#: src/Module/Settings/Connectors.php:222 msgid "Email/Mailbox Setup" msgstr "Agordoj pri Retpoŝto" -#: src/Module/Settings/Connectors.php:234 +#: src/Module/Settings/Connectors.php:223 msgid "" "If you wish to communicate with email contacts using this service " "(optional), please specify how to connect to your mailbox." msgstr "Se vi volas uzi ĉi tiun servon por komuniki per retpoŝto (nedeviga), bonvolu specifi kiel konekti al vian retpoŝtkonton." -#: src/Module/Settings/Connectors.php:235 +#: src/Module/Settings/Connectors.php:224 msgid "Last successful email check:" msgstr "Plej ĵusa sukcesa kontrolo de poŝto:" -#: src/Module/Settings/Connectors.php:237 +#: src/Module/Settings/Connectors.php:226 msgid "IMAP server name:" msgstr "Nomo de IMAP servilo:" -#: src/Module/Settings/Connectors.php:238 +#: src/Module/Settings/Connectors.php:227 msgid "IMAP port:" msgstr "Numero de IMAP pordo:" -#: src/Module/Settings/Connectors.php:239 +#: src/Module/Settings/Connectors.php:228 msgid "Security:" msgstr "Sekureco:" -#: src/Module/Settings/Connectors.php:240 +#: src/Module/Settings/Connectors.php:229 msgid "Email login name:" msgstr "Retpoŝta salutnomo:" -#: src/Module/Settings/Connectors.php:241 +#: src/Module/Settings/Connectors.php:230 msgid "Email password:" msgstr "Retpoŝta pasvorto:" -#: src/Module/Settings/Connectors.php:242 +#: src/Module/Settings/Connectors.php:231 msgid "Reply-to address:" msgstr "Responda adreso (Reply-to):" -#: src/Module/Settings/Connectors.php:243 +#: src/Module/Settings/Connectors.php:232 msgid "Send public posts to all email contacts:" msgstr "Sendu publikajn afiŝojn al ĉiuj retpoŝtkontaktoj:" -#: src/Module/Settings/Connectors.php:244 +#: src/Module/Settings/Connectors.php:233 msgid "Action after import:" msgstr "Ago post la importado:" -#: src/Module/Settings/Connectors.php:244 +#: src/Module/Settings/Connectors.php:233 msgid "Move to folder" msgstr "Movi al dosierujo" -#: src/Module/Settings/Connectors.php:245 +#: src/Module/Settings/Connectors.php:234 msgid "Move to folder:" msgstr "Movi al dosierujo:" -#: src/Module/Settings/Delegation.php:73 +#: src/Module/Settings/Delegation.php:59 msgid "Delegation successfully granted." msgstr "" -#: src/Module/Settings/Delegation.php:75 +#: src/Module/Settings/Delegation.php:61 msgid "Parent user not found, unavailable or password doesn't match." msgstr "" -#: src/Module/Settings/Delegation.php:79 +#: src/Module/Settings/Delegation.php:65 msgid "Delegation successfully revoked." msgstr "" -#: src/Module/Settings/Delegation.php:98 -#: src/Module/Settings/Delegation.php:120 +#: src/Module/Settings/Delegation.php:84 +#: src/Module/Settings/Delegation.php:106 msgid "" "Delegated administrators can view but not change delegation permissions." msgstr "" -#: src/Module/Settings/Delegation.php:112 +#: src/Module/Settings/Delegation.php:98 msgid "Delegate user not found." msgstr "" -#: src/Module/Settings/Delegation.php:169 +#: src/Module/Settings/Delegation.php:155 msgid "No parent user" msgstr "" -#: src/Module/Settings/Delegation.php:180 -#: src/Module/Settings/Delegation.php:191 +#: src/Module/Settings/Delegation.php:166 +#: src/Module/Settings/Delegation.php:177 msgid "Parent User" msgstr "" -#: src/Module/Settings/Delegation.php:188 +#: src/Module/Settings/Delegation.php:174 msgid "Additional Accounts" msgstr "" -#: src/Module/Settings/Delegation.php:189 +#: src/Module/Settings/Delegation.php:175 msgid "" "Register additional accounts that are automatically connected to your " "existing account so you can manage them from this account." msgstr "" -#: src/Module/Settings/Delegation.php:190 +#: src/Module/Settings/Delegation.php:176 msgid "Register an additional account" msgstr "" -#: src/Module/Settings/Delegation.php:192 +#: src/Module/Settings/Delegation.php:178 msgid "" "Parent users have total control about this account, including the account " "settings. Please double check whom you give this access." msgstr "" -#: src/Module/Settings/Delegation.php:195 +#: src/Module/Settings/Delegation.php:181 msgid "Delegates" msgstr "" -#: src/Module/Settings/Delegation.php:196 +#: src/Module/Settings/Delegation.php:182 msgid "" "Delegates are able to manage all aspects of this account/page except for " "basic account settings. Please do not delegate your personal account to " "anybody that you do not trust completely." msgstr "Delegitoj povas administri ĉiujn ecojn de la konto/paĝo, escepte bazaj kontoagordoj. Bonvolu ne delegitigi vian personan konton al iu al kiu vi ne plene fidas." -#: src/Module/Settings/Delegation.php:197 +#: src/Module/Settings/Delegation.php:183 msgid "Existing Page Delegates" msgstr "Estantaj Delegitoj de la Paĝo" -#: src/Module/Settings/Delegation.php:198 +#: src/Module/Settings/Delegation.php:184 msgid "Potential Delegates" msgstr "Eblaj Delegitoj" -#: src/Module/Settings/Delegation.php:199 +#: src/Module/Settings/Delegation.php:185 msgid "No entries." msgstr "Neniom da afiŝoj." -#: src/Module/Settings/Display.php:185 +#: src/Module/Settings/Display.php:169 msgid "The theme you chose isn't available." msgstr "" -#: src/Module/Settings/Display.php:225 +#: src/Module/Settings/Display.php:209 #, php-format msgid "%s - (Unsupported)" msgstr "" -#: src/Module/Settings/Display.php:263 +#: src/Module/Settings/Display.php:246 msgid "No preview" msgstr "" -#: src/Module/Settings/Display.php:264 +#: src/Module/Settings/Display.php:247 msgid "No image" msgstr "" -#: src/Module/Settings/Display.php:265 +#: src/Module/Settings/Display.php:248 msgid "Small Image" msgstr "" -#: src/Module/Settings/Display.php:266 +#: src/Module/Settings/Display.php:249 msgid "Large Image" msgstr "" -#: src/Module/Settings/Display.php:311 +#: src/Module/Settings/Display.php:294 msgid "Display Settings" msgstr "Ekranagordoj" -#: src/Module/Settings/Display.php:313 +#: src/Module/Settings/Display.php:296 msgid "General Theme Settings" msgstr "" -#: src/Module/Settings/Display.php:314 +#: src/Module/Settings/Display.php:297 msgid "Custom Theme Settings" msgstr "" -#: src/Module/Settings/Display.php:315 +#: src/Module/Settings/Display.php:298 msgid "Content Settings" msgstr "" -#: 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 +#: src/Module/Settings/Display.php:299 view/theme/duepuntozero/config.php:74 +#: view/theme/frio/config.php:139 view/theme/quattro/config.php:76 +#: view/theme/vier/config.php:124 msgid "Theme settings" msgstr "Agordoj pri la etoso" -#: src/Module/Settings/Display.php:317 +#: src/Module/Settings/Display.php:300 msgid "Timelines" msgstr "" -#: src/Module/Settings/Display.php:324 +#: src/Module/Settings/Display.php:307 msgid "Display Theme:" msgstr "Vidiga etoso:" -#: src/Module/Settings/Display.php:325 +#: src/Module/Settings/Display.php:308 msgid "Mobile Theme:" msgstr "" -#: src/Module/Settings/Display.php:328 +#: src/Module/Settings/Display.php:311 msgid "Number of items to display per page:" msgstr "" -#: src/Module/Settings/Display.php:328 src/Module/Settings/Display.php:329 +#: src/Module/Settings/Display.php:311 src/Module/Settings/Display.php:312 msgid "Maximum of 100 items" msgstr "Maksimume 100 eroj" -#: src/Module/Settings/Display.php:329 +#: src/Module/Settings/Display.php:312 msgid "Number of items to display per page when viewed from mobile device:" msgstr "" -#: src/Module/Settings/Display.php:330 +#: src/Module/Settings/Display.php:313 msgid "Update browser every xx seconds" msgstr "Ĝisdatigu retesplorilon ĉiu xxx sekundoj" -#: src/Module/Settings/Display.php:330 +#: src/Module/Settings/Display.php:313 msgid "Minimum of 10 seconds. Enter -1 to disable it." msgstr "" -#: src/Module/Settings/Display.php:331 +#: src/Module/Settings/Display.php:314 msgid "Display emoticons" msgstr "" -#: src/Module/Settings/Display.php:331 +#: src/Module/Settings/Display.php:314 msgid "When enabled, emoticons are replaced with matching symbols." msgstr "" -#: src/Module/Settings/Display.php:332 +#: src/Module/Settings/Display.php:315 msgid "Infinite scroll" msgstr "" -#: src/Module/Settings/Display.php:332 +#: src/Module/Settings/Display.php:315 msgid "Automatic fetch new items when reaching the page end." msgstr "" -#: src/Module/Settings/Display.php:333 +#: src/Module/Settings/Display.php:316 msgid "Enable Smart Threading" msgstr "" -#: src/Module/Settings/Display.php:333 +#: src/Module/Settings/Display.php:316 msgid "Enable the automatic suppression of extraneous thread indentation." msgstr "" -#: src/Module/Settings/Display.php:334 +#: src/Module/Settings/Display.php:317 msgid "Display the Dislike feature" msgstr "" -#: src/Module/Settings/Display.php:334 +#: src/Module/Settings/Display.php:317 msgid "" "Display the Dislike button and dislike reactions on posts and comments." msgstr "" -#: src/Module/Settings/Display.php:335 +#: src/Module/Settings/Display.php:318 msgid "Display the resharer" msgstr "" -#: src/Module/Settings/Display.php:335 +#: src/Module/Settings/Display.php:318 msgid "Display the first resharer as icon and text on a reshared item." msgstr "" -#: src/Module/Settings/Display.php: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 +#: src/Module/Settings/Display.php:319 msgid "Stay local" msgstr "" -#: src/Module/Settings/Display.php:337 +#: src/Module/Settings/Display.php:319 msgid "Don't go to a remote system when following a contact link." msgstr "" -#: src/Module/Settings/Display.php:338 +#: src/Module/Settings/Display.php:320 msgid "Show the post deletion checkbox" msgstr "" -#: src/Module/Settings/Display.php:338 +#: src/Module/Settings/Display.php:320 msgid "Display the checkbox for the post deletion on the network page." msgstr "" -#: src/Module/Settings/Display.php:339 +#: src/Module/Settings/Display.php:321 msgid "DIsplay the event list" msgstr "" -#: src/Module/Settings/Display.php:339 +#: src/Module/Settings/Display.php:321 msgid "Display the birthday reminder and event list on the network page." msgstr "" -#: src/Module/Settings/Display.php:340 +#: src/Module/Settings/Display.php:322 msgid "Link preview mode" msgstr "" -#: src/Module/Settings/Display.php:340 +#: src/Module/Settings/Display.php:322 msgid "Appearance of the link preview that is added to each post with a link." msgstr "" -#: src/Module/Settings/Display.php:345 +#: src/Module/Settings/Display.php:327 msgid "Bookmark" msgstr "" -#: src/Module/Settings/Display.php:347 +#: src/Module/Settings/Display.php:329 msgid "" "Enable timelines that you want to see in the channels widget. Bookmark " "timelines that you want to see in the top menu." msgstr "" -#: src/Module/Settings/Display.php:349 +#: src/Module/Settings/Display.php:331 msgid "Channel languages:" msgstr "" -#: src/Module/Settings/Display.php:349 +#: src/Module/Settings/Display.php:331 msgid "Select all languages that you want to see in your channels." msgstr "" -#: src/Module/Settings/Display.php:351 +#: src/Module/Settings/Display.php:333 msgid "Beginning of week:" msgstr "" -#: src/Module/Settings/Display.php:352 +#: src/Module/Settings/Display.php:334 msgid "Default calendar view:" msgstr "" -#: src/Module/Settings/Features.php:74 +#: src/Module/Settings/Features.php:59 msgid "Additional Features" msgstr "" -#: src/Module/Settings/OAuth.php:71 +#: src/Module/Settings/OAuth.php:57 msgid "Connected Apps" msgstr "Konektitaj Programoj" -#: src/Module/Settings/OAuth.php:75 +#: src/Module/Settings/OAuth.php:61 msgid "Remove authorization" msgstr "Forviŝi rajtigon" -#: src/Module/Settings/Profile/Index.php:116 +#: src/Module/Settings/Profile/Index.php:102 msgid "Display Name is required." msgstr "" -#: src/Module/Settings/Profile/Index.php:167 +#: src/Module/Settings/Profile/Index.php:156 msgid "Profile couldn't be updated." msgstr "" -#: src/Module/Settings/Profile/Index.php:205 -#: src/Module/Settings/Profile/Index.php:226 +#: src/Module/Settings/Profile/Index.php:196 +#: src/Module/Settings/Profile/Index.php:217 msgid "Label:" msgstr "" -#: src/Module/Settings/Profile/Index.php:206 -#: src/Module/Settings/Profile/Index.php:227 +#: src/Module/Settings/Profile/Index.php:197 +#: src/Module/Settings/Profile/Index.php:218 msgid "Value:" msgstr "" -#: src/Module/Settings/Profile/Index.php:217 -#: src/Module/Settings/Profile/Index.php:238 +#: src/Module/Settings/Profile/Index.php:208 +#: src/Module/Settings/Profile/Index.php:229 msgid "Field Permissions" msgstr "" -#: src/Module/Settings/Profile/Index.php:218 -#: src/Module/Settings/Profile/Index.php:239 +#: src/Module/Settings/Profile/Index.php:209 +#: src/Module/Settings/Profile/Index.php:230 msgid "(click to open/close)" msgstr "(klaku por malfermi/fermi)" -#: src/Module/Settings/Profile/Index.php:224 +#: src/Module/Settings/Profile/Index.php:215 msgid "Add a new profile field" msgstr "" -#: src/Module/Settings/Profile/Index.php:247 +#: src/Module/Settings/Profile/Index.php:238 msgid "" "The homepage is verified. A rel=\"me\" link back to your Friendica profile " "page was found on the homepage." msgstr "" -#: src/Module/Settings/Profile/Index.php:249 +#: src/Module/Settings/Profile/Index.php:240 #, php-format msgid "" "To verify your homepage, add a rel=\"me\" link to it, pointing to your " "profile URL (%s)." msgstr "" -#: src/Module/Settings/Profile/Index.php:255 +#: src/Module/Settings/Profile/Index.php:246 msgid "Profile Actions" msgstr "" -#: src/Module/Settings/Profile/Index.php:256 +#: src/Module/Settings/Profile/Index.php:247 msgid "Edit Profile Details" msgstr "Redakti Detalojn de Profilo" -#: src/Module/Settings/Profile/Index.php:258 +#: src/Module/Settings/Profile/Index.php:249 msgid "Change Profile Photo" msgstr "" -#: src/Module/Settings/Profile/Index.php:261 +#: src/Module/Settings/Profile/Index.php:252 msgid "Profile picture" msgstr "" -#: src/Module/Settings/Profile/Index.php:262 +#: src/Module/Settings/Profile/Index.php:253 msgid "Location" msgstr "Loko" -#: src/Module/Settings/Profile/Index.php:263 src/Util/Temporal.php:97 -#: src/Util/Temporal.php:99 +#: src/Module/Settings/Profile/Index.php:254 src/Util/Temporal.php:83 +#: src/Util/Temporal.php:85 msgid "Miscellaneous" msgstr "Diversaj" -#: src/Module/Settings/Profile/Index.php:264 +#: src/Module/Settings/Profile/Index.php:255 msgid "Custom Profile Fields" msgstr "" -#: src/Module/Settings/Profile/Index.php:265 src/Module/Welcome.php:58 +#: src/Module/Settings/Profile/Index.php:256 src/Module/Welcome.php:44 msgid "Upload Profile Photo" msgstr "Alŝuti profilbildon" -#: src/Module/Settings/Profile/Index.php:266 +#: src/Module/Settings/Profile/Index.php:257 #, php-format msgid "" "

Custom fields appear on your profile page.

\n" @@ -10868,396 +10919,396 @@ msgid "" "\t\t\t\t

Non-public fields can only be seen by the selected Friendica contacts or the Friendica contacts in the selected circles.

" msgstr "" -#: src/Module/Settings/Profile/Index.php:286 +#: src/Module/Settings/Profile/Index.php:277 msgid "Street Address:" msgstr "Adreso:" -#: src/Module/Settings/Profile/Index.php:287 +#: src/Module/Settings/Profile/Index.php:278 msgid "Locality/City:" msgstr "Urbo:" -#: src/Module/Settings/Profile/Index.php:288 +#: src/Module/Settings/Profile/Index.php:279 msgid "Region/State:" msgstr "Ŝtato:" -#: src/Module/Settings/Profile/Index.php:289 +#: src/Module/Settings/Profile/Index.php:280 msgid "Postal/Zip Code:" msgstr "Poŝtkodo:" -#: src/Module/Settings/Profile/Index.php:290 +#: src/Module/Settings/Profile/Index.php:281 msgid "Country:" msgstr "Lando:" -#: src/Module/Settings/Profile/Index.php:292 +#: src/Module/Settings/Profile/Index.php:283 msgid "XMPP (Jabber) address:" msgstr "" -#: src/Module/Settings/Profile/Index.php:292 +#: src/Module/Settings/Profile/Index.php:283 msgid "" "The XMPP address will be published so that people can follow you there." msgstr "" -#: src/Module/Settings/Profile/Index.php:293 +#: src/Module/Settings/Profile/Index.php:284 msgid "Matrix (Element) address:" msgstr "" -#: src/Module/Settings/Profile/Index.php:293 +#: src/Module/Settings/Profile/Index.php:284 msgid "" "The Matrix address will be published so that people can follow you there." msgstr "" -#: src/Module/Settings/Profile/Index.php:294 +#: src/Module/Settings/Profile/Index.php:285 msgid "Homepage URL:" msgstr "Adreso de Hejmpaĝo:" -#: src/Module/Settings/Profile/Index.php:295 +#: src/Module/Settings/Profile/Index.php:286 msgid "Public Keywords:" msgstr "Publikaj ŝlosilvortoj:" -#: src/Module/Settings/Profile/Index.php:295 +#: src/Module/Settings/Profile/Index.php:286 msgid "(Used for suggesting potential friends, can be seen by others)" msgstr "(Por sugesti amikoj. Videbla al aliaj.)" -#: src/Module/Settings/Profile/Index.php:296 +#: src/Module/Settings/Profile/Index.php:287 msgid "Private Keywords:" msgstr "Privataj ŝlosilvortoj:" -#: src/Module/Settings/Profile/Index.php:296 +#: src/Module/Settings/Profile/Index.php:287 msgid "(Used for searching profiles, never shown to others)" 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:100 +#: src/Module/Settings/Profile/Photo/Crop.php:93 +#: src/Module/Settings/Profile/Photo/Crop.php:111 +#: src/Module/Settings/Profile/Photo/Crop.php:129 +#: src/Module/Settings/Profile/Photo/Index.php:86 #, php-format msgid "Image size reduction [%s] failed." msgstr "Malsukcesis malpligrandigi [%s] la bildon." -#: src/Module/Settings/Profile/Photo/Crop.php:150 +#: src/Module/Settings/Profile/Photo/Crop.php:136 msgid "" "Shift-reload the page or clear browser cache if the new photo does not " "display immediately." msgstr "Reŝarĝu la paĝon au malplenigu la kaŝmemoro de la retesplorilo se la nova bildo ne tuj aperas." -#: src/Module/Settings/Profile/Photo/Crop.php:155 +#: src/Module/Settings/Profile/Photo/Crop.php:141 msgid "Unable to process image" msgstr "Ne eblas procezi bildon." -#: src/Module/Settings/Profile/Photo/Crop.php:174 +#: src/Module/Settings/Profile/Photo/Crop.php:160 msgid "Photo not found." msgstr "" -#: src/Module/Settings/Profile/Photo/Crop.php:196 +#: src/Module/Settings/Profile/Photo/Crop.php:182 msgid "Profile picture successfully updated." msgstr "" -#: src/Module/Settings/Profile/Photo/Crop.php:222 -#: src/Module/Settings/Profile/Photo/Crop.php:226 +#: src/Module/Settings/Profile/Photo/Crop.php:208 +#: src/Module/Settings/Profile/Photo/Crop.php:212 msgid "Crop Image" msgstr "Stuci Bildon" -#: src/Module/Settings/Profile/Photo/Crop.php:223 +#: src/Module/Settings/Profile/Photo/Crop.php:209 msgid "Please adjust the image cropping for optimum viewing." msgstr "Bonvolu agordi la stuco de la bildo por optimuma aspekto." -#: src/Module/Settings/Profile/Photo/Crop.php:225 +#: src/Module/Settings/Profile/Photo/Crop.php:211 msgid "Use Image As Is" msgstr "" -#: src/Module/Settings/Profile/Photo/Index.php:46 +#: src/Module/Settings/Profile/Photo/Index.php:32 msgid "Missing uploaded image." msgstr "" -#: src/Module/Settings/Profile/Photo/Index.php:123 +#: src/Module/Settings/Profile/Photo/Index.php:109 msgid "Profile Picture Settings" msgstr "" -#: src/Module/Settings/Profile/Photo/Index.php:124 +#: src/Module/Settings/Profile/Photo/Index.php:110 msgid "Current Profile Picture" msgstr "" -#: src/Module/Settings/Profile/Photo/Index.php:125 +#: src/Module/Settings/Profile/Photo/Index.php:111 msgid "Upload Profile Picture" msgstr "" -#: src/Module/Settings/Profile/Photo/Index.php:126 +#: src/Module/Settings/Profile/Photo/Index.php:112 msgid "Upload Picture:" msgstr "" -#: src/Module/Settings/Profile/Photo/Index.php:131 +#: src/Module/Settings/Profile/Photo/Index.php:117 msgid "or" msgstr "aŭ" -#: src/Module/Settings/Profile/Photo/Index.php:133 +#: src/Module/Settings/Profile/Photo/Index.php:119 msgid "skip this step" msgstr "Preterpasi tian paŝon" -#: src/Module/Settings/Profile/Photo/Index.php:135 +#: src/Module/Settings/Profile/Photo/Index.php:121 msgid "select a photo from your photo albums" msgstr "elekti bildon el viaj albumoj" -#: src/Module/Settings/RemoveMe.php:76 +#: src/Module/Settings/RemoveMe.php:62 msgid "" "There was a validation error, please make sure you're logged in with the " "account you want to remove and try again." msgstr "" -#: src/Module/Settings/RemoveMe.php:76 +#: src/Module/Settings/RemoveMe.php:62 msgid "If this error persists, please contact your administrator." msgstr "" -#: src/Module/Settings/RemoveMe.php:90 -#: src/Navigation/Notifications/Repository/Notify.php:471 -#: src/Navigation/Notifications/Repository/Notify.php:492 +#: src/Module/Settings/RemoveMe.php:76 +#: src/Navigation/Notifications/Repository/Notify.php:457 +#: src/Navigation/Notifications/Repository/Notify.php:478 msgid "[Friendica System Notify]" msgstr "" -#: src/Module/Settings/RemoveMe.php:90 +#: src/Module/Settings/RemoveMe.php:76 msgid "User deleted their account" msgstr "" -#: src/Module/Settings/RemoveMe.php:91 +#: src/Module/Settings/RemoveMe.php:77 msgid "" "On your Friendica node an user deleted their account. Please ensure that " "their data is removed from the backups." msgstr "" -#: src/Module/Settings/RemoveMe.php:92 +#: src/Module/Settings/RemoveMe.php:78 #, php-format msgid "The user id is %d" msgstr "" -#: src/Module/Settings/RemoveMe.php:105 +#: src/Module/Settings/RemoveMe.php:91 msgid "Your account has been successfully removed. Bye bye!" msgstr "" -#: src/Module/Settings/RemoveMe.php:130 +#: src/Module/Settings/RemoveMe.php:116 msgid "Remove My Account" msgstr "Forigi Mian Konton" -#: src/Module/Settings/RemoveMe.php:131 +#: src/Module/Settings/RemoveMe.php:117 msgid "" "This will completely remove your account. Once this has been done it is not " "recoverable." msgstr "Tio tute forigos vian konton. Kiam farita, la konto ne estas restaŭrebla." -#: src/Module/Settings/RemoveMe.php:136 +#: src/Module/Settings/RemoveMe.php:122 msgid "Please enter your password for verification:" msgstr "Bonvolu entajpi vian pasvorton por kontrolado:" -#: src/Module/Settings/Server/Action.php:60 +#: src/Module/Settings/Server/Action.php:46 msgid "Do you want to ignore this server?" msgstr "" -#: src/Module/Settings/Server/Action.php:64 +#: src/Module/Settings/Server/Action.php:50 msgid "Do you want to unignore this server?" msgstr "" -#: src/Module/Settings/Server/Action.php:74 -#: src/Module/Settings/Server/Index.php:104 +#: src/Module/Settings/Server/Action.php:60 +#: src/Module/Settings/Server/Index.php:90 msgid "Remote server settings" msgstr "" -#: src/Module/Settings/Server/Action.php:77 +#: src/Module/Settings/Server/Action.php:63 msgid "Server URL" msgstr "" -#: src/Module/Settings/Server/Index.php:78 +#: src/Module/Settings/Server/Index.php:64 msgid "Settings saved" msgstr "" -#: src/Module/Settings/Server/Index.php:105 +#: src/Module/Settings/Server/Index.php:91 msgid "" "Here you can find all the remote servers you have taken individual " "moderation actions against. For a list of servers your node has blocked, " "please check out the Information page." msgstr "" -#: src/Module/Settings/Server/Index.php:110 +#: src/Module/Settings/Server/Index.php:96 msgid "Delete all your settings for the remote server" msgstr "" -#: src/Module/Settings/Server/Index.php:111 +#: src/Module/Settings/Server/Index.php:97 msgid "Save changes" msgstr "" -#: src/Module/Settings/TwoFactor/AppSpecific.php:69 -#: src/Module/Settings/TwoFactor/Recovery.php:67 -#: src/Module/Settings/TwoFactor/Trusted.php:70 -#: src/Module/Settings/TwoFactor/Verify.php:72 +#: src/Module/Settings/TwoFactor/AppSpecific.php:55 +#: src/Module/Settings/TwoFactor/Recovery.php:53 +#: src/Module/Settings/TwoFactor/Trusted.php:56 +#: src/Module/Settings/TwoFactor/Verify.php:58 msgid "Please enter your password to access this page." msgstr "" -#: src/Module/Settings/TwoFactor/AppSpecific.php:87 +#: src/Module/Settings/TwoFactor/AppSpecific.php:73 msgid "App-specific password generation failed: The description is empty." msgstr "" -#: src/Module/Settings/TwoFactor/AppSpecific.php:90 +#: src/Module/Settings/TwoFactor/AppSpecific.php:76 msgid "" "App-specific password generation failed: This description already exists." msgstr "" -#: src/Module/Settings/TwoFactor/AppSpecific.php:94 +#: src/Module/Settings/TwoFactor/AppSpecific.php:80 msgid "New app-specific password generated." msgstr "" -#: src/Module/Settings/TwoFactor/AppSpecific.php:100 +#: src/Module/Settings/TwoFactor/AppSpecific.php:86 msgid "App-specific passwords successfully revoked." msgstr "" -#: src/Module/Settings/TwoFactor/AppSpecific.php:110 +#: src/Module/Settings/TwoFactor/AppSpecific.php:96 msgid "App-specific password successfully revoked." msgstr "" -#: src/Module/Settings/TwoFactor/AppSpecific.php:131 +#: src/Module/Settings/TwoFactor/AppSpecific.php:117 msgid "Two-factor app-specific passwords" msgstr "" -#: src/Module/Settings/TwoFactor/AppSpecific.php:133 +#: src/Module/Settings/TwoFactor/AppSpecific.php:119 msgid "" "

App-specific passwords are randomly generated passwords used instead your" " regular password to authenticate your account on third-party applications " "that don't support two-factor authentication.

" msgstr "" -#: src/Module/Settings/TwoFactor/AppSpecific.php:134 +#: src/Module/Settings/TwoFactor/AppSpecific.php:120 msgid "" "Make sure to copy your new app-specific password now. You won’t be able to " "see it again!" msgstr "" -#: src/Module/Settings/TwoFactor/AppSpecific.php:138 +#: src/Module/Settings/TwoFactor/AppSpecific.php:124 msgid "Last Used" msgstr "" -#: src/Module/Settings/TwoFactor/AppSpecific.php:139 +#: src/Module/Settings/TwoFactor/AppSpecific.php:125 msgid "Revoke" msgstr "" -#: src/Module/Settings/TwoFactor/AppSpecific.php:140 +#: src/Module/Settings/TwoFactor/AppSpecific.php:126 msgid "Revoke All" msgstr "" -#: src/Module/Settings/TwoFactor/AppSpecific.php:143 +#: src/Module/Settings/TwoFactor/AppSpecific.php:129 msgid "" "When you generate a new app-specific password, you must use it right away, " "it will be shown to you once after you generate it." msgstr "" -#: src/Module/Settings/TwoFactor/AppSpecific.php:144 +#: src/Module/Settings/TwoFactor/AppSpecific.php:130 msgid "Generate new app-specific password" msgstr "" -#: src/Module/Settings/TwoFactor/AppSpecific.php:145 +#: src/Module/Settings/TwoFactor/AppSpecific.php:131 msgid "Friendiqa on my Fairphone 2..." msgstr "" -#: src/Module/Settings/TwoFactor/AppSpecific.php:146 +#: src/Module/Settings/TwoFactor/AppSpecific.php:132 msgid "Generate" msgstr "" -#: src/Module/Settings/TwoFactor/Index.php:88 +#: src/Module/Settings/TwoFactor/Index.php:74 msgid "Two-factor authentication successfully disabled." msgstr "" -#: src/Module/Settings/TwoFactor/Index.php:141 +#: src/Module/Settings/TwoFactor/Index.php:127 msgid "" "

Use an application on a mobile device to get two-factor authentication " "codes when prompted on login.

" msgstr "" -#: src/Module/Settings/TwoFactor/Index.php:145 +#: src/Module/Settings/TwoFactor/Index.php:131 msgid "Authenticator app" msgstr "" -#: src/Module/Settings/TwoFactor/Index.php:146 +#: src/Module/Settings/TwoFactor/Index.php:132 msgid "Configured" msgstr "" -#: src/Module/Settings/TwoFactor/Index.php:146 +#: src/Module/Settings/TwoFactor/Index.php:132 msgid "Not Configured" msgstr "" -#: src/Module/Settings/TwoFactor/Index.php:147 +#: src/Module/Settings/TwoFactor/Index.php:133 msgid "

You haven't finished configuring your authenticator app.

" msgstr "" -#: src/Module/Settings/TwoFactor/Index.php:148 +#: src/Module/Settings/TwoFactor/Index.php:134 msgid "

Your authenticator app is correctly configured.

" msgstr "" -#: src/Module/Settings/TwoFactor/Index.php:150 +#: src/Module/Settings/TwoFactor/Index.php:136 msgid "Recovery codes" msgstr "" -#: src/Module/Settings/TwoFactor/Index.php:151 +#: src/Module/Settings/TwoFactor/Index.php:137 msgid "Remaining valid codes" msgstr "" -#: src/Module/Settings/TwoFactor/Index.php:153 +#: src/Module/Settings/TwoFactor/Index.php:139 msgid "" "

These one-use codes can replace an authenticator app code in case you " "have lost access to it.

" msgstr "" -#: src/Module/Settings/TwoFactor/Index.php:155 +#: src/Module/Settings/TwoFactor/Index.php:141 msgid "App-specific passwords" msgstr "" -#: src/Module/Settings/TwoFactor/Index.php:156 +#: src/Module/Settings/TwoFactor/Index.php:142 msgid "Generated app-specific passwords" msgstr "" -#: src/Module/Settings/TwoFactor/Index.php:158 +#: src/Module/Settings/TwoFactor/Index.php:144 msgid "" "

These randomly generated passwords allow you to authenticate on apps not " "supporting two-factor authentication.

" msgstr "" -#: src/Module/Settings/TwoFactor/Index.php:161 +#: src/Module/Settings/TwoFactor/Index.php:147 msgid "Current password:" msgstr "" -#: src/Module/Settings/TwoFactor/Index.php:161 +#: src/Module/Settings/TwoFactor/Index.php:147 msgid "" "You need to provide your current password to change two-factor " "authentication settings." msgstr "" -#: src/Module/Settings/TwoFactor/Index.php:162 +#: src/Module/Settings/TwoFactor/Index.php:148 msgid "Enable two-factor authentication" msgstr "" -#: src/Module/Settings/TwoFactor/Index.php:163 +#: src/Module/Settings/TwoFactor/Index.php:149 msgid "Disable two-factor authentication" msgstr "" -#: src/Module/Settings/TwoFactor/Index.php:164 +#: src/Module/Settings/TwoFactor/Index.php:150 msgid "Show recovery codes" msgstr "" -#: src/Module/Settings/TwoFactor/Index.php:165 +#: src/Module/Settings/TwoFactor/Index.php:151 msgid "Manage app-specific passwords" msgstr "" -#: src/Module/Settings/TwoFactor/Index.php:166 +#: src/Module/Settings/TwoFactor/Index.php:152 msgid "Manage trusted browsers" msgstr "" -#: src/Module/Settings/TwoFactor/Index.php:167 +#: src/Module/Settings/TwoFactor/Index.php:153 msgid "Finish app configuration" msgstr "" -#: src/Module/Settings/TwoFactor/Recovery.php:83 +#: src/Module/Settings/TwoFactor/Recovery.php:69 msgid "New recovery codes successfully generated." msgstr "" -#: src/Module/Settings/TwoFactor/Recovery.php:109 +#: src/Module/Settings/TwoFactor/Recovery.php:95 msgid "Two-factor recovery codes" msgstr "" -#: src/Module/Settings/TwoFactor/Recovery.php:111 +#: src/Module/Settings/TwoFactor/Recovery.php:97 msgid "" "

Recovery codes can be used to access your account in the event you lose " "access to your device and cannot receive two-factor authentication " @@ -11266,68 +11317,68 @@ msgid "" "account.

" msgstr "" -#: src/Module/Settings/TwoFactor/Recovery.php:113 +#: src/Module/Settings/TwoFactor/Recovery.php:99 msgid "" "When you generate new recovery codes, you must copy the new codes. Your old " "codes won’t work anymore." msgstr "" -#: src/Module/Settings/TwoFactor/Recovery.php:114 +#: src/Module/Settings/TwoFactor/Recovery.php:100 msgid "Generate new recovery codes" msgstr "" -#: src/Module/Settings/TwoFactor/Recovery.php:116 +#: src/Module/Settings/TwoFactor/Recovery.php:102 msgid "Next: Verification" msgstr "" -#: src/Module/Settings/TwoFactor/Trusted.php:87 +#: src/Module/Settings/TwoFactor/Trusted.php:73 msgid "Trusted browsers successfully removed." msgstr "" -#: src/Module/Settings/TwoFactor/Trusted.php:97 +#: src/Module/Settings/TwoFactor/Trusted.php:83 msgid "Trusted browser successfully removed." msgstr "" -#: src/Module/Settings/TwoFactor/Trusted.php:139 +#: src/Module/Settings/TwoFactor/Trusted.php:125 msgid "Two-factor Trusted Browsers" msgstr "" -#: src/Module/Settings/TwoFactor/Trusted.php:140 +#: src/Module/Settings/TwoFactor/Trusted.php:126 msgid "" "Trusted browsers are individual browsers you chose to skip two-factor " "authentication to access Friendica. Please use this feature sparingly, as it" " can negate the benefit of two-factor authentication." msgstr "" -#: src/Module/Settings/TwoFactor/Trusted.php:141 +#: src/Module/Settings/TwoFactor/Trusted.php:127 msgid "Device" msgstr "" -#: src/Module/Settings/TwoFactor/Trusted.php:142 +#: src/Module/Settings/TwoFactor/Trusted.php:128 msgid "OS" msgstr "" -#: src/Module/Settings/TwoFactor/Trusted.php:144 +#: src/Module/Settings/TwoFactor/Trusted.php:130 msgid "Trusted" msgstr "" -#: src/Module/Settings/TwoFactor/Trusted.php:145 +#: src/Module/Settings/TwoFactor/Trusted.php:131 msgid "Created At" msgstr "" -#: src/Module/Settings/TwoFactor/Trusted.php:146 +#: src/Module/Settings/TwoFactor/Trusted.php:132 msgid "Last Use" msgstr "" -#: src/Module/Settings/TwoFactor/Trusted.php:148 +#: src/Module/Settings/TwoFactor/Trusted.php:134 msgid "Remove All" msgstr "" -#: src/Module/Settings/TwoFactor/Verify.php:94 +#: src/Module/Settings/TwoFactor/Verify.php:80 msgid "Two-factor authentication successfully activated." msgstr "" -#: src/Module/Settings/TwoFactor/Verify.php:128 +#: src/Module/Settings/TwoFactor/Verify.php:114 #, php-format msgid "" "

Or you can submit the authentication settings manually:

\n" @@ -11347,105 +11398,105 @@ msgid "" "" msgstr "" -#: src/Module/Settings/TwoFactor/Verify.php:148 +#: src/Module/Settings/TwoFactor/Verify.php:134 msgid "Two-factor code verification" msgstr "" -#: src/Module/Settings/TwoFactor/Verify.php:150 +#: src/Module/Settings/TwoFactor/Verify.php:136 msgid "" "

Please scan this QR Code with your authenticator app and submit the " "provided code.

" msgstr "" -#: src/Module/Settings/TwoFactor/Verify.php:152 +#: src/Module/Settings/TwoFactor/Verify.php:138 #, php-format msgid "" "

Or you can open the following URL in your mobile device:

%s

" msgstr "" -#: src/Module/Settings/TwoFactor/Verify.php:159 +#: src/Module/Settings/TwoFactor/Verify.php:145 msgid "Verify code and enable two-factor authentication" msgstr "" -#: src/Module/Settings/UserExport.php:90 +#: src/Module/Settings/UserExport.php:76 msgid "Export account" msgstr "" -#: src/Module/Settings/UserExport.php:90 +#: src/Module/Settings/UserExport.php:76 msgid "" "Export your account info and contacts. Use this to make a backup of your " "account and/or to move it to another server." msgstr "" -#: src/Module/Settings/UserExport.php:91 +#: src/Module/Settings/UserExport.php:77 msgid "Export all" msgstr "" -#: src/Module/Settings/UserExport.php:91 +#: src/Module/Settings/UserExport.php:77 msgid "" "Export your account info, contacts and all your items as json. Could be a " "very big file, and could take a lot of time. Use this to make a full backup " "of your account (photos are not exported)" msgstr "" -#: src/Module/Settings/UserExport.php:92 +#: src/Module/Settings/UserExport.php:78 msgid "Export Contacts to CSV" msgstr "" -#: src/Module/Settings/UserExport.php:92 +#: src/Module/Settings/UserExport.php:78 msgid "" "Export the list of the accounts you are following as CSV file. Compatible to" " e.g. Mastodon." msgstr "" -#: src/Module/Special/DisplayNotFound.php:35 +#: src/Module/Special/DisplayNotFound.php:21 msgid "The top-level post isn't visible." msgstr "" -#: src/Module/Special/DisplayNotFound.php:36 +#: src/Module/Special/DisplayNotFound.php:22 msgid "The top-level post was deleted." msgstr "" -#: src/Module/Special/DisplayNotFound.php:37 +#: src/Module/Special/DisplayNotFound.php:23 msgid "" "This node has blocked the top-level author or the author of the shared post." msgstr "" -#: src/Module/Special/DisplayNotFound.php:38 +#: src/Module/Special/DisplayNotFound.php:24 msgid "" "You have ignored or blocked the top-level author or the author of the shared" " post." msgstr "" -#: src/Module/Special/DisplayNotFound.php:39 +#: src/Module/Special/DisplayNotFound.php:25 msgid "" "You have ignored the top-level author's server or the shared post author's " "server." msgstr "" -#: src/Module/Special/DisplayNotFound.php:45 +#: src/Module/Special/DisplayNotFound.php:31 msgid "Conversation Not Found" msgstr "" -#: src/Module/Special/DisplayNotFound.php:46 +#: src/Module/Special/DisplayNotFound.php:32 msgid "Unfortunately, the requested conversation isn't available to you." msgstr "" -#: src/Module/Special/DisplayNotFound.php:47 +#: src/Module/Special/DisplayNotFound.php:33 msgid "Possible reasons include:" msgstr "" -#: src/Module/Special/HTTPException.php:78 +#: src/Module/Special/HTTPException.php:64 msgid "Stack trace:" msgstr "" -#: src/Module/Special/HTTPException.php:83 +#: src/Module/Special/HTTPException.php:69 #, php-format msgid "Exception thrown in %s:%d" msgstr "" -#: src/Module/Tos.php:58 src/Module/Tos.php:107 +#: src/Module/Tos.php:44 src/Module/Tos.php:93 msgid "" "At the time of registration, and for providing communications between the " "user account and their contacts, the user has to provide a display name (pen" @@ -11458,14 +11509,14 @@ msgid "" "settings, it is not necessary for communication." msgstr "" -#: src/Module/Tos.php:59 src/Module/Tos.php:108 +#: src/Module/Tos.php:45 src/Module/Tos.php:94 msgid "" "This data is required for communication and is passed on to the nodes of the" " communication partners and is stored there. Users can enter additional " "private data that may be transmitted to the communication partners accounts." msgstr "" -#: src/Module/Tos.php:60 src/Module/Tos.php:109 +#: src/Module/Tos.php:46 src/Module/Tos.php:95 #, php-format msgid "" "At any point in time a logged in user can export their account data from the" @@ -11476,121 +11527,121 @@ msgid "" "from the nodes of the communication partners." msgstr "" -#: src/Module/Tos.php:63 src/Module/Tos.php:106 +#: src/Module/Tos.php:49 src/Module/Tos.php:92 msgid "Privacy Statement" msgstr "" -#: src/Module/Tos.php:103 +#: src/Module/Tos.php:89 msgid "Rules" msgstr "" -#: src/Module/Update/Display.php:45 +#: src/Module/Update/Display.php:31 msgid "Parameter uri_id is missing." msgstr "" -#: src/Module/Update/Display.php:55 +#: src/Module/Update/Display.php:41 msgid "The requested item doesn't exist or has been deleted." msgstr "" -#: src/Module/User/Delegation.php:146 +#: src/Module/User/Delegation.php:132 #, php-format msgid "You are now logged in as %s" msgstr "" -#: src/Module/User/Delegation.php:185 +#: src/Module/User/Delegation.php:171 msgid "Switch between your accounts" msgstr "" -#: src/Module/User/Delegation.php:186 +#: src/Module/User/Delegation.php:172 msgid "Manage your accounts" msgstr "" -#: src/Module/User/Delegation.php:187 +#: src/Module/User/Delegation.php:173 msgid "" "Toggle between different identities or community/group pages which share " "your account details or which you have been granted \"manage\" permissions" msgstr "Ŝalti inter aliaj identecojn aj komunumaj/grupaj paĝoj kiuj kunhavas viajn kontajn detalojn au por kiuj vi havas \"administranto\" permesojn." -#: src/Module/User/Delegation.php:188 +#: src/Module/User/Delegation.php:174 msgid "Select an identity to manage: " msgstr "Elektu identencon por administrado:" -#: src/Module/User/Import.php:103 +#: src/Module/User/Import.php:90 msgid "User imports on closed servers can only be done by an administrator." msgstr "" -#: src/Module/User/Import.php:119 +#: src/Module/User/Import.php:106 msgid "Move account" msgstr "" -#: src/Module/User/Import.php:120 +#: src/Module/User/Import.php:107 msgid "You can import an account from another Friendica server." msgstr "" -#: src/Module/User/Import.php:121 +#: src/Module/User/Import.php:108 msgid "" "You need to export your account from the old server and upload it here. We " "will recreate your old account here with all your contacts. We will try also" " to inform your friends that you moved here." msgstr "" -#: src/Module/User/Import.php:122 +#: src/Module/User/Import.php:109 msgid "" "This feature is experimental. We can't import contacts from the OStatus " "network (GNU Social/Statusnet) or from Diaspora" msgstr "" -#: src/Module/User/Import.php:123 +#: src/Module/User/Import.php:110 msgid "Account file" msgstr "" -#: src/Module/User/Import.php:123 +#: src/Module/User/Import.php:110 msgid "" "To export your account, go to \"Settings->Export your personal data\" and " "select \"Export account\"" msgstr "" -#: src/Module/User/Import.php:217 +#: src/Module/User/Import.php:204 msgid "Error decoding account file" msgstr "" -#: src/Module/User/Import.php:222 +#: src/Module/User/Import.php:209 msgid "Error! No version data in file! This is not a Friendica account file?" msgstr "" -#: src/Module/User/Import.php:230 +#: src/Module/User/Import.php:217 #, php-format msgid "User '%s' already exists on this server!" msgstr "" -#: src/Module/User/Import.php:267 +#: src/Module/User/Import.php:254 msgid "User creation error" msgstr "" -#: src/Module/User/Import.php:316 +#: src/Module/User/Import.php:303 #, php-format msgid "%d contact not imported" msgid_plural "%d contacts not imported" msgstr[0] "" msgstr[1] "" -#: src/Module/User/Import.php:365 +#: src/Module/User/Import.php:352 msgid "User profile creation error" msgstr "" -#: src/Module/User/Import.php:416 +#: src/Module/User/Import.php:403 msgid "Done. You can now login with your username and password" msgstr "" -#: src/Module/Welcome.php:44 +#: src/Module/Welcome.php:30 msgid "Welcome to Friendica" msgstr "Bonvenon ĉe Friendica" -#: src/Module/Welcome.php:45 +#: src/Module/Welcome.php:31 msgid "New Member Checklist" msgstr "Kontrololisto por Novaj Membroj" -#: src/Module/Welcome.php:46 +#: src/Module/Welcome.php:32 msgid "" "We would like to offer some tips and links to help make your experience " "enjoyable. Click any item to visit the relevant page. A link to this page " @@ -11598,33 +11649,33 @@ msgid "" "registration and then will quietly disappear." msgstr "Lasu nin oferi al vi kelkajn konsolojn kaj ligilojn por plifaciligi vian komencon. Klaku iun elementon por viziti la rilatan paĝon. Ligilo al ĉi tiu paĝo videblos en via hejmpaĝo dum du semajnojn post via komenca membriĝo. Post du semajnoj, la ligilo silente malaperos. " -#: src/Module/Welcome.php:48 +#: src/Module/Welcome.php:34 msgid "Getting Started" msgstr "" -#: src/Module/Welcome.php:49 +#: src/Module/Welcome.php:35 msgid "Friendica Walk-Through" msgstr "" -#: src/Module/Welcome.php:50 +#: src/Module/Welcome.php:36 msgid "" "On your Quick Start page - find a brief introduction to your " "profile and network tabs, make some new connections, and find some groups to" " join." msgstr "" -#: src/Module/Welcome.php:53 +#: src/Module/Welcome.php:39 msgid "Go to Your Settings" msgstr "" -#: src/Module/Welcome.php:54 +#: src/Module/Welcome.php:40 msgid "" "On your Settings page - change your initial password. Also make a " "note of your Identity Address. This looks just like an email address - and " "will be useful in making friends on the free social web." msgstr "Bonvolu ŝanĝi vian pasvorton ĉe Agordoj. Krome, memorigu vian identadreson. Ĝi aspektas kiel retpoŝtadreso kaj estas bezonata por konekti al novaj amikon en la libera interkona reto." -#: src/Module/Welcome.php:55 +#: src/Module/Welcome.php:41 msgid "" "Review the other settings, particularly the privacy settings. An unpublished" " directory listing is like having an unlisted phone number. In general, you " @@ -11632,77 +11683,77 @@ msgid "" "potential friends know exactly how to find you." msgstr "Kontrolu la aliajn agordojn, precipe la privatecajn agordojn. Nepublikigita profilo similas al havi telefonnumberon ne registrata en iu telefonlibro. Ĝenerale vi eble volas publikigi vian profilon. Alie, viaj amikoj kaj estontaj amikoj bezonas scii kiel rekte trovi vin." -#: src/Module/Welcome.php:59 +#: src/Module/Welcome.php:45 msgid "" "Upload a profile photo if you have not done so already. Studies have shown " "that people with real photos of themselves are ten times more likely to make" " friends than people who do not." msgstr "Enŝuti profilbildon se vi ankoraŭ ne havas ĝin. Laŭ studoj, homoj kun realaj biloj de si mem trovas novajn amikon duope pli probable ol homoj sen reala bildo." -#: src/Module/Welcome.php:60 +#: src/Module/Welcome.php:46 msgid "Edit Your Profile" msgstr "" -#: src/Module/Welcome.php:61 +#: src/Module/Welcome.php:47 msgid "" "Edit your default profile to your liking. Review the " "settings for hiding your list of friends and hiding the profile from unknown" " visitors." msgstr "Redakti viajn defaŭltan profilon kiel vi ŝatas ĝin. Kontrolu la agordojn por kaŝi vian kontaktliston aŭ kaŝi vian profilon al nekonataj vizitantoj." -#: src/Module/Welcome.php:62 +#: src/Module/Welcome.php:48 msgid "Profile Keywords" msgstr "" -#: src/Module/Welcome.php:63 +#: src/Module/Welcome.php:49 msgid "" "Set some public keywords for your profile which describe your interests. We " "may be able to find other people with similar interests and suggest " "friendships." msgstr "" -#: src/Module/Welcome.php:65 +#: src/Module/Welcome.php:51 msgid "Connecting" msgstr "" -#: src/Module/Welcome.php:67 +#: src/Module/Welcome.php:53 msgid "Importing Emails" msgstr "" -#: src/Module/Welcome.php:68 +#: src/Module/Welcome.php:54 msgid "" "Enter your email access information on your Connector Settings page if you " "wish to import and interact with friends or mailing lists from your email " "INBOX" msgstr "Entajpu la akreditaĵojn por via retpoŝtkonto en la konektilagordoj se vi volas importi aŭ interagi kun amikoj aŭ dissendlistoj pere de via retkesto." -#: src/Module/Welcome.php:69 +#: src/Module/Welcome.php:55 msgid "Go to Your Contacts Page" msgstr "" -#: src/Module/Welcome.php:70 +#: src/Module/Welcome.php:56 msgid "" "Your Contacts page is your gateway to managing friendships and connecting " "with friends on other networks. Typically you enter their address or site " "URL in the Add New Contact dialog." msgstr "Via kontaktpaĝo estas via portalo por administri amikojn kaj konekti kun amikoj en aliaj retoj. Vi kutime entajpas iliajn adreson aŭ URL adreso en la Aldonu Novan Kontakton dialogon." -#: src/Module/Welcome.php:71 +#: src/Module/Welcome.php:57 msgid "Go to Your Site's Directory" msgstr "" -#: src/Module/Welcome.php:72 +#: src/Module/Welcome.php:58 msgid "" "The Directory page lets you find other people in this network or other " "federated sites. Look for a Connect or Follow link on " "their profile page. Provide your own Identity Address if requested." msgstr "Ĉe la Katalogo vi povas trovi aliajn homojn en ĉi tiu retejo, au en aliaj federaciaj retejoj. Elrigardi al KonektiSekvi ligiloj ĉe iliaj profilo. Donu vian propran Identecan Adreson se la retejo demandas ĝin." -#: src/Module/Welcome.php:73 +#: src/Module/Welcome.php:59 msgid "Finding New People" msgstr "" -#: src/Module/Welcome.php:74 +#: src/Module/Welcome.php:60 msgid "" "On the side panel of the Contacts page are several tools to find new " "friends. We can match people by interest, look up people by name or " @@ -11711,412 +11762,408 @@ msgid "" "hours." msgstr "En la flanka strio de la Kontaktoj paĝo troviĝas kelkajn helpilojn por trovi novajn amikojn. Ni povas automate trovi amikojn per interesoj, serĉu ilin per nomo aŭ intereso kaj faras sugestojn baze de estantaj kontaktoj. Ĉe nova instalita retejo, la unuaj sugestoj kutime aperas post 24 horoj." -#: src/Module/Welcome.php:77 +#: src/Module/Welcome.php:63 msgid "Add Your Contacts To Circle" msgstr "" -#: src/Module/Welcome.php:78 +#: src/Module/Welcome.php:64 msgid "" "Once you have made some friends, organize them into private conversation " "circles from the sidebar of your Contacts page and then you can interact " "with each circle privately on your Network page." msgstr "" -#: src/Module/Welcome.php:80 +#: src/Module/Welcome.php:66 msgid "Why Aren't My Posts Public?" msgstr "" -#: src/Module/Welcome.php:81 +#: src/Module/Welcome.php:67 msgid "" "Friendica respects your privacy. By default, your posts will only show up to" " people you've added as friends. For more information, see the help section " "from the link above." msgstr "" -#: src/Module/Welcome.php:83 +#: src/Module/Welcome.php:69 msgid "Getting Help" msgstr "" -#: src/Module/Welcome.php:84 +#: src/Module/Welcome.php:70 msgid "Go to the Help Section" msgstr "" -#: src/Module/Welcome.php:85 +#: src/Module/Welcome.php:71 msgid "" "Our help pages may be consulted for detail on other program" " features and resources." msgstr "Niaj Helpo paĝoj enhavas pli da detaloj pri aliaj programaj trajtoj." -#: src/Navigation/Notifications/Factory/FormattedNavNotification.php:161 +#: src/Navigation/Notifications/Factory/FormattedNavNotification.php:147 msgid "{0} wants to follow you" msgstr "" -#: src/Navigation/Notifications/Factory/FormattedNavNotification.php:163 +#: src/Navigation/Notifications/Factory/FormattedNavNotification.php:149 msgid "{0} has started following you" msgstr "" -#: src/Navigation/Notifications/Factory/FormattedNotify.php:96 +#: src/Navigation/Notifications/Factory/FormattedNotify.php:82 #, php-format msgid "%s liked %s's post" msgstr "%s ŝatis la afiŝon de %s" -#: src/Navigation/Notifications/Factory/FormattedNotify.php:108 +#: src/Navigation/Notifications/Factory/FormattedNotify.php:94 #, php-format msgid "%s disliked %s's post" msgstr "%s malŝatis la afiŝon de %s" -#: src/Navigation/Notifications/Factory/FormattedNotify.php:120 +#: src/Navigation/Notifications/Factory/FormattedNotify.php:106 #, php-format msgid "%s is attending %s's event" msgstr "%s ĉeestos la eventon de %s" -#: src/Navigation/Notifications/Factory/FormattedNotify.php:132 +#: src/Navigation/Notifications/Factory/FormattedNotify.php:118 #, php-format msgid "%s is not attending %s's event" msgstr "%s ne ĉeestos la eventon de %s" -#: src/Navigation/Notifications/Factory/FormattedNotify.php:144 +#: src/Navigation/Notifications/Factory/FormattedNotify.php:130 #, php-format msgid "%s may attending %s's event" msgstr "" -#: src/Navigation/Notifications/Factory/FormattedNotify.php:174 +#: src/Navigation/Notifications/Factory/FormattedNotify.php:160 #, php-format msgid "%s is now friends with %s" msgstr "%s amikiĝis kun %s" -#: src/Navigation/Notifications/Factory/FormattedNotify.php:341 -#: src/Navigation/Notifications/Factory/FormattedNotify.php:379 +#: src/Navigation/Notifications/Factory/FormattedNotify.php:327 +#: src/Navigation/Notifications/Factory/FormattedNotify.php:365 #, php-format msgid "%s commented on %s's post" msgstr "%s komentis pri la afiŝo de %s" -#: src/Navigation/Notifications/Factory/FormattedNotify.php:378 +#: src/Navigation/Notifications/Factory/FormattedNotify.php:364 #, php-format msgid "%s created a new post" msgstr "%s kreis novan afiŝon" -#: src/Navigation/Notifications/Factory/Introduction.php:133 +#: src/Navigation/Notifications/Factory/Introduction.php:118 msgid "Friend Suggestion" msgstr "Amikosugestoj" -#: src/Navigation/Notifications/Factory/Introduction.php:159 +#: src/Navigation/Notifications/Factory/Introduction.php:144 msgid "Friend/Connect Request" msgstr "Kontaktpeto" -#: src/Navigation/Notifications/Factory/Introduction.php:159 -msgid "New Follower" -msgstr "Nova abonanto" - -#: src/Navigation/Notifications/Factory/Notification.php:134 +#: src/Navigation/Notifications/Factory/Notification.php:120 #, php-format msgid "%1$s wants to follow you" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:136 +#: src/Navigation/Notifications/Factory/Notification.php:122 #, php-format msgid "%1$s has started following you" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:208 +#: src/Navigation/Notifications/Factory/Notification.php:194 #, php-format msgid "%1$s liked your comment on %2$s" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:211 +#: src/Navigation/Notifications/Factory/Notification.php:197 #, php-format msgid "%1$s liked your post %2$s" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:218 +#: src/Navigation/Notifications/Factory/Notification.php:204 #, php-format msgid "%1$s disliked your comment on %2$s" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:221 +#: src/Navigation/Notifications/Factory/Notification.php:207 #, php-format msgid "%1$s disliked your post %2$s" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:228 +#: src/Navigation/Notifications/Factory/Notification.php:214 #, php-format msgid "%1$s shared your comment %2$s" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:231 -#: src/Navigation/Notifications/Factory/Notification.php:316 +#: src/Navigation/Notifications/Factory/Notification.php:217 +#: src/Navigation/Notifications/Factory/Notification.php:302 #, php-format msgid "%1$s shared your post %2$s" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:235 -#: src/Navigation/Notifications/Factory/Notification.php:305 +#: src/Navigation/Notifications/Factory/Notification.php:221 +#: src/Navigation/Notifications/Factory/Notification.php:291 #, php-format msgid "%1$s shared the post %2$s from %3$s" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:237 -#: src/Navigation/Notifications/Factory/Notification.php:307 +#: src/Navigation/Notifications/Factory/Notification.php:223 +#: src/Navigation/Notifications/Factory/Notification.php:293 #, php-format msgid "%1$s shared a post from %3$s" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:239 -#: src/Navigation/Notifications/Factory/Notification.php:309 +#: src/Navigation/Notifications/Factory/Notification.php:225 +#: src/Navigation/Notifications/Factory/Notification.php:295 #, php-format msgid "%1$s shared the post %2$s" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:241 -#: src/Navigation/Notifications/Factory/Notification.php:311 +#: src/Navigation/Notifications/Factory/Notification.php:227 +#: src/Navigation/Notifications/Factory/Notification.php:297 #, php-format msgid "%1$s shared a post" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:249 +#: src/Navigation/Notifications/Factory/Notification.php:235 #, php-format msgid "%1$s wants to attend your event %2$s" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:256 +#: src/Navigation/Notifications/Factory/Notification.php:242 #, php-format msgid "%1$s does not want to attend your event %2$s" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:263 +#: src/Navigation/Notifications/Factory/Notification.php:249 #, php-format msgid "%1$s maybe wants to attend your event %2$s" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:270 +#: src/Navigation/Notifications/Factory/Notification.php:256 #, php-format msgid "%1$s tagged you on %2$s" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:274 +#: src/Navigation/Notifications/Factory/Notification.php:260 #, php-format msgid "%1$s replied to you on %2$s" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:278 +#: src/Navigation/Notifications/Factory/Notification.php:264 #, php-format msgid "%1$s commented in your thread %2$s" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:282 +#: src/Navigation/Notifications/Factory/Notification.php:268 #, php-format msgid "%1$s commented on your comment %2$s" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:289 +#: src/Navigation/Notifications/Factory/Notification.php:275 #, php-format msgid "%1$s commented in their thread %2$s" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:291 +#: src/Navigation/Notifications/Factory/Notification.php:277 #, php-format msgid "%1$s commented in their thread" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:293 +#: src/Navigation/Notifications/Factory/Notification.php:279 #, php-format msgid "%1$s commented in the thread %2$s from %3$s" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:295 +#: src/Navigation/Notifications/Factory/Notification.php:281 #, php-format msgid "%1$s commented in the thread from %3$s" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:300 +#: src/Navigation/Notifications/Factory/Notification.php:286 #, php-format msgid "%1$s commented on your thread %2$s" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:225 -#: src/Navigation/Notifications/Repository/Notify.php:754 +#: src/Navigation/Notifications/Repository/Notify.php:211 +#: src/Navigation/Notifications/Repository/Notify.php:740 msgid "[Friendica:Notify]" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:293 +#: src/Navigation/Notifications/Repository/Notify.php:279 #, php-format msgid "%s New mail received at %s" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:295 +#: src/Navigation/Notifications/Repository/Notify.php:281 #, php-format msgid "%1$s sent you a new private message at %2$s." msgstr "%1$s sendis al vi novan privatan mesaĝon ĉe %2$s." -#: src/Navigation/Notifications/Repository/Notify.php:296 +#: src/Navigation/Notifications/Repository/Notify.php:282 msgid "a private message" msgstr "privatan mesaĝon" -#: src/Navigation/Notifications/Repository/Notify.php:296 +#: src/Navigation/Notifications/Repository/Notify.php:282 #, php-format msgid "%1$s sent you %2$s." msgstr "%1$s sendis al vi %2$s." -#: src/Navigation/Notifications/Repository/Notify.php:298 +#: src/Navigation/Notifications/Repository/Notify.php:284 #, php-format msgid "Please visit %s to view and/or reply to your private messages." msgstr "Bonvolu viziti %s por vidi aŭ respondi viajn privatajn mesaĝojn." -#: src/Navigation/Notifications/Repository/Notify.php:328 +#: src/Navigation/Notifications/Repository/Notify.php:314 #, php-format msgid "%1$s commented on %2$s's %3$s %4$s" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:333 +#: src/Navigation/Notifications/Repository/Notify.php:319 #, php-format msgid "%1$s commented on your %2$s %3$s" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:337 +#: src/Navigation/Notifications/Repository/Notify.php:323 #, php-format msgid "%1$s commented on their %2$s %3$s" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:341 -#: src/Navigation/Notifications/Repository/Notify.php:788 +#: src/Navigation/Notifications/Repository/Notify.php:327 +#: src/Navigation/Notifications/Repository/Notify.php:774 #, php-format msgid "%1$s Comment to conversation #%2$d by %3$s" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:343 +#: src/Navigation/Notifications/Repository/Notify.php:329 #, php-format msgid "%s commented on an item/conversation you have been following." msgstr "%s komentis pri elemento/konversacio kiun vi sekvas." -#: src/Navigation/Notifications/Repository/Notify.php:347 -#: src/Navigation/Notifications/Repository/Notify.php:362 -#: src/Navigation/Notifications/Repository/Notify.php:814 +#: src/Navigation/Notifications/Repository/Notify.php:333 +#: src/Navigation/Notifications/Repository/Notify.php:348 +#: src/Navigation/Notifications/Repository/Notify.php:800 #, php-format msgid "Please visit %s to view and/or reply to the conversation." msgstr "Bonvolu viziti %s por vidi aŭ respondi la konversacion." -#: src/Navigation/Notifications/Repository/Notify.php:354 +#: src/Navigation/Notifications/Repository/Notify.php:340 #, php-format msgid "%s %s posted to your profile wall" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:356 +#: src/Navigation/Notifications/Repository/Notify.php:342 #, php-format msgid "%1$s posted to your profile wall at %2$s" msgstr "%1$s skribis al via profilmuro ĉe %2$s" -#: src/Navigation/Notifications/Repository/Notify.php:357 +#: src/Navigation/Notifications/Repository/Notify.php:343 #, php-format msgid "%1$s posted to [url=%2$s]your wall[/url]" msgstr "%1$s afiŝis al [url=%2$s]via muro[/url]" -#: src/Navigation/Notifications/Repository/Notify.php:370 +#: src/Navigation/Notifications/Repository/Notify.php:356 #, php-format msgid "%s Introduction received" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:372 +#: src/Navigation/Notifications/Repository/Notify.php:358 #, php-format msgid "You've received an introduction from '%1$s' at %2$s" msgstr "Vi ricevis prezenton de '%1$s' ĉe %2$s" -#: src/Navigation/Notifications/Repository/Notify.php:373 +#: src/Navigation/Notifications/Repository/Notify.php:359 #, php-format msgid "You've received [url=%1$s]an introduction[/url] from %2$s." msgstr "Vi ricevis [url=%1$s]prezenton[/url] de %2$s." -#: src/Navigation/Notifications/Repository/Notify.php:378 -#: src/Navigation/Notifications/Repository/Notify.php:424 +#: src/Navigation/Notifications/Repository/Notify.php:364 +#: src/Navigation/Notifications/Repository/Notify.php:410 #, php-format msgid "You may visit their profile at %s" msgstr "Vi povas vidi la profilon de li aŭ ŝi ĉe %s" -#: src/Navigation/Notifications/Repository/Notify.php:380 +#: src/Navigation/Notifications/Repository/Notify.php:366 #, php-format msgid "Please visit %s to approve or reject the introduction." msgstr "Bonvolu viziti %s por aprobi aŭ malaprobi la prezenton." -#: src/Navigation/Notifications/Repository/Notify.php:387 +#: src/Navigation/Notifications/Repository/Notify.php:373 #, php-format msgid "%s A new person is sharing with you" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:389 -#: src/Navigation/Notifications/Repository/Notify.php:390 +#: src/Navigation/Notifications/Repository/Notify.php:375 +#: src/Navigation/Notifications/Repository/Notify.php:376 #, php-format msgid "%1$s is sharing with you at %2$s" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:397 +#: src/Navigation/Notifications/Repository/Notify.php:383 #, php-format msgid "%s You have a new follower" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:399 -#: src/Navigation/Notifications/Repository/Notify.php:400 +#: src/Navigation/Notifications/Repository/Notify.php:385 +#: src/Navigation/Notifications/Repository/Notify.php:386 #, php-format msgid "You have a new follower at %2$s : %1$s" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:413 +#: src/Navigation/Notifications/Repository/Notify.php:399 #, php-format msgid "%s Friend suggestion received" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:415 +#: src/Navigation/Notifications/Repository/Notify.php:401 #, php-format msgid "You've received a friend suggestion from '%1$s' at %2$s" msgstr "Vi ricevis amikosugeston de '%1$s' ĉe %2$s" -#: src/Navigation/Notifications/Repository/Notify.php:416 +#: src/Navigation/Notifications/Repository/Notify.php:402 #, php-format msgid "" "You've received [url=%1$s]a friend suggestion[/url] for %2$s from %3$s." msgstr "Vi ricevis [url=%1$s]amikosugeston[/url] pri %2$s de %3$s." -#: src/Navigation/Notifications/Repository/Notify.php:422 +#: src/Navigation/Notifications/Repository/Notify.php:408 msgid "Name:" msgstr "Nomo:" -#: src/Navigation/Notifications/Repository/Notify.php:423 +#: src/Navigation/Notifications/Repository/Notify.php:409 msgid "Photo:" msgstr "Bildo:" -#: src/Navigation/Notifications/Repository/Notify.php:426 +#: src/Navigation/Notifications/Repository/Notify.php:412 #, php-format msgid "Please visit %s to approve or reject the suggestion." msgstr "Bonvolu viziti %s por aprobi aŭ malaprobi la sugeston." -#: src/Navigation/Notifications/Repository/Notify.php:434 -#: src/Navigation/Notifications/Repository/Notify.php:449 +#: src/Navigation/Notifications/Repository/Notify.php:420 +#: src/Navigation/Notifications/Repository/Notify.php:435 #, php-format msgid "%s Connection accepted" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:436 -#: src/Navigation/Notifications/Repository/Notify.php:451 +#: src/Navigation/Notifications/Repository/Notify.php:422 +#: src/Navigation/Notifications/Repository/Notify.php:437 #, php-format msgid "'%1$s' has accepted your connection request at %2$s" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:437 -#: src/Navigation/Notifications/Repository/Notify.php:452 +#: src/Navigation/Notifications/Repository/Notify.php:423 +#: src/Navigation/Notifications/Repository/Notify.php:438 #, php-format msgid "%2$s has accepted your [url=%1$s]connection request[/url]." msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:442 +#: src/Navigation/Notifications/Repository/Notify.php:428 msgid "" "You are now mutual friends and may exchange status updates, photos, and " "email without restriction." msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:444 +#: src/Navigation/Notifications/Repository/Notify.php:430 #, php-format msgid "Please visit %s if you wish to make any changes to this relationship." msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:457 +#: src/Navigation/Notifications/Repository/Notify.php:443 #, php-format msgid "" "'%1$s' has chosen to accept you a fan, which restricts some forms of " @@ -12125,34 +12172,34 @@ msgid "" "automatically." msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:459 +#: src/Navigation/Notifications/Repository/Notify.php:445 #, php-format msgid "" "'%1$s' may choose to extend this into a two-way or more permissive " "relationship in the future." msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:461 +#: src/Navigation/Notifications/Repository/Notify.php:447 #, php-format msgid "Please visit %s if you wish to make any changes to this relationship." msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:471 +#: src/Navigation/Notifications/Repository/Notify.php:457 msgid "registration request" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:473 +#: src/Navigation/Notifications/Repository/Notify.php:459 #, php-format msgid "You've received a registration request from '%1$s' at %2$s" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:474 +#: src/Navigation/Notifications/Repository/Notify.php:460 #, php-format msgid "You've received a [url=%1$s]registration request[/url] from %2$s." msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:479 -#: src/Navigation/Notifications/Repository/Notify.php:500 +#: src/Navigation/Notifications/Repository/Notify.php:465 +#: src/Navigation/Notifications/Repository/Notify.php:486 #, php-format msgid "" "Display Name:\t%s\n" @@ -12160,768 +12207,755 @@ msgid "" "Login Name:\t%s (%s)" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:485 +#: src/Navigation/Notifications/Repository/Notify.php:471 #, php-format msgid "Please visit %s to approve or reject the request." msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:492 +#: src/Navigation/Notifications/Repository/Notify.php:478 msgid "new registration" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:494 +#: src/Navigation/Notifications/Repository/Notify.php:480 #, php-format msgid "You've received a new registration from '%1$s' at %2$s" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:495 +#: src/Navigation/Notifications/Repository/Notify.php:481 #, php-format msgid "You've received a [url=%1$s]new registration[/url] from %2$s." msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:506 +#: src/Navigation/Notifications/Repository/Notify.php:492 #, php-format msgid "Please visit %s to have a look at the new registration." msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:782 +#: src/Navigation/Notifications/Repository/Notify.php:768 #, php-format msgid "%s %s tagged you" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:785 +#: src/Navigation/Notifications/Repository/Notify.php:771 #, php-format msgid "%s %s shared a new post" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:793 +#: src/Navigation/Notifications/Repository/Notify.php:779 #, php-format msgid "%1$s %2$s liked your post #%3$d" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:796 +#: src/Navigation/Notifications/Repository/Notify.php:782 #, php-format msgid "%1$s %2$s liked your comment on #%3$d" msgstr "" -#: src/Object/EMail/ItemCCEMail.php:42 +#: src/Object/EMail/ItemCCEMail.php:28 #, php-format msgid "" "This message was sent to you by %s, a member of the Friendica social " "network." msgstr "Ĉi mesaĝo estas sendita al vi de %s, membro de la Friendica interkona reto." -#: src/Object/EMail/ItemCCEMail.php:44 +#: src/Object/EMail/ItemCCEMail.php:30 #, php-format msgid "You may visit them online at %s" msgstr "Vi povas viziti ilin rete ĉe %s" -#: src/Object/EMail/ItemCCEMail.php:45 +#: src/Object/EMail/ItemCCEMail.php:31 msgid "" "Please contact the sender by replying to this post if you do not wish to " "receive these messages." msgstr "Bonvolu rispondi al ĉi mesaĝo kaj kontaktu la sendinto se vi ne volas ricevi tiujn mesaĝojn." -#: src/Object/EMail/ItemCCEMail.php:49 +#: src/Object/EMail/ItemCCEMail.php:35 #, php-format msgid "%s posted an update." msgstr "%s publikigis afiŝon." -#: src/Object/Post.php:138 +#: src/Object/Post.php:124 msgid "Private Message" msgstr "Privata mesaĝo" -#: src/Object/Post.php:142 +#: src/Object/Post.php:128 msgid "Public Message" msgstr "" -#: src/Object/Post.php:146 +#: src/Object/Post.php:132 msgid "Unlisted Message" msgstr "" -#: src/Object/Post.php:182 +#: src/Object/Post.php:168 msgid "This entry was edited" msgstr "" -#: src/Object/Post.php:210 +#: src/Object/Post.php:196 msgid "Connector Message" msgstr "" -#: src/Object/Post.php:226 src/Object/Post.php:228 +#: src/Object/Post.php:225 src/Object/Post.php:227 msgid "Edit" msgstr "Redakti" -#: src/Object/Post.php:262 +#: src/Object/Post.php:261 msgid "Delete globally" msgstr "" -#: src/Object/Post.php:262 +#: src/Object/Post.php:261 msgid "Remove locally" msgstr "" -#: src/Object/Post.php:269 +#: src/Object/Post.php:268 #, php-format msgid "Block %s" msgstr "" -#: src/Object/Post.php:274 +#: src/Object/Post.php:273 #, php-format msgid "Ignore %s" msgstr "" -#: src/Object/Post.php:279 +#: src/Object/Post.php:278 #, php-format msgid "Collapse %s" msgstr "" -#: src/Object/Post.php:283 +#: src/Object/Post.php:282 msgid "Report post" msgstr "" -#: src/Object/Post.php:294 +#: src/Object/Post.php:293 msgid "Save to folder" msgstr "" -#: src/Object/Post.php:334 +#: src/Object/Post.php:333 msgid "I will attend" msgstr "" -#: src/Object/Post.php:334 +#: src/Object/Post.php:333 msgid "I will not attend" msgstr "" -#: src/Object/Post.php:334 +#: src/Object/Post.php:333 msgid "I might attend" msgstr "" -#: src/Object/Post.php:381 +#: src/Object/Post.php:380 msgid "Ignore thread" msgstr "" -#: src/Object/Post.php:382 +#: src/Object/Post.php:381 msgid "Unignore thread" msgstr "" -#: src/Object/Post.php:383 +#: src/Object/Post.php:382 msgid "Toggle ignore status" msgstr "" -#: src/Object/Post.php:393 +#: src/Object/Post.php:392 msgid "Add star" msgstr "" -#: src/Object/Post.php:394 +#: src/Object/Post.php:393 msgid "Remove star" msgstr "" -#: src/Object/Post.php:395 +#: src/Object/Post.php:394 msgid "Toggle star status" msgstr "" -#: src/Object/Post.php:406 +#: src/Object/Post.php:405 msgid "Pin" msgstr "" -#: src/Object/Post.php:407 +#: src/Object/Post.php:406 msgid "Unpin" msgstr "" -#: src/Object/Post.php:408 +#: src/Object/Post.php:407 msgid "Toggle pin status" msgstr "" -#: src/Object/Post.php:411 +#: src/Object/Post.php:410 msgid "Pinned" msgstr "" -#: src/Object/Post.php:416 +#: src/Object/Post.php:415 msgid "Add tag" msgstr "" -#: src/Object/Post.php:429 +#: src/Object/Post.php:430 msgid "Quote share this" msgstr "" -#: src/Object/Post.php:429 +#: src/Object/Post.php:430 msgid "Quote Share" msgstr "" -#: src/Object/Post.php:432 +#: src/Object/Post.php:433 msgid "Reshare this" msgstr "" -#: src/Object/Post.php:432 +#: src/Object/Post.php:433 msgid "Reshare" msgstr "" -#: src/Object/Post.php:433 +#: src/Object/Post.php:434 msgid "Cancel your Reshare" msgstr "" -#: src/Object/Post.php:433 +#: src/Object/Post.php:434 msgid "Unshare" msgstr "" -#: src/Object/Post.php:485 +#: src/Object/Post.php:478 #, php-format msgid "%s (Received %s)" msgstr "" -#: src/Object/Post.php:491 +#: src/Object/Post.php:484 msgid "Comment this item on your system" msgstr "" -#: src/Object/Post.php:491 +#: src/Object/Post.php:484 msgid "Remote comment" msgstr "" -#: src/Object/Post.php:513 +#: src/Object/Post.php:506 msgid "Share via ..." msgstr "" -#: src/Object/Post.php:513 +#: src/Object/Post.php:506 msgid "Share via external services" msgstr "" -#: src/Object/Post.php:520 +#: src/Object/Post.php:513 msgid "Unknown parent" msgstr "" -#: src/Object/Post.php:524 +#: src/Object/Post.php:517 #, php-format msgid "in reply to %s" msgstr "" -#: src/Object/Post.php:526 +#: src/Object/Post.php:519 msgid "Parent is probably private or not federated." msgstr "" -#: src/Object/Post.php:550 +#: src/Object/Post.php:543 msgid "to" msgstr "al" -#: src/Object/Post.php:551 +#: src/Object/Post.php:544 msgid "via" msgstr "" -#: src/Object/Post.php:552 +#: src/Object/Post.php:545 msgid "Wall-to-Wall" msgstr "Muro-al-Muro" -#: src/Object/Post.php:553 +#: src/Object/Post.php:546 msgid "via Wall-To-Wall:" msgstr "per Muro-al-Muro:" -#: src/Object/Post.php:604 +#: src/Object/Post.php:599 #, php-format msgid "Reply to %s" msgstr "" -#: src/Object/Post.php:607 +#: src/Object/Post.php:602 msgid "More" msgstr "" -#: src/Object/Post.php:626 +#: src/Object/Post.php:621 msgid "Notifier task is pending" msgstr "" -#: src/Object/Post.php:627 +#: src/Object/Post.php:622 msgid "Delivery to remote servers is pending" msgstr "" -#: src/Object/Post.php:628 +#: src/Object/Post.php:623 msgid "Delivery to remote servers is underway" msgstr "" -#: src/Object/Post.php:629 +#: src/Object/Post.php:624 msgid "Delivery to remote servers is mostly done" msgstr "" -#: src/Object/Post.php:630 +#: src/Object/Post.php:625 msgid "Delivery to remote servers is done" msgstr "" -#: src/Object/Post.php:652 +#: src/Object/Post.php:647 #, php-format msgid "%d comment" msgid_plural "%d comments" msgstr[0] "%d komento" msgstr[1] "%d komentoj" -#: src/Object/Post.php:653 +#: src/Object/Post.php:648 msgid "Show more" msgstr "" -#: src/Object/Post.php:654 +#: src/Object/Post.php:649 msgid "Show fewer" msgstr "" -#: src/Object/Post.php:691 +#: src/Object/Post.php:686 #, php-format msgid "Reshared by: %s" msgstr "" -#: src/Object/Post.php:696 +#: src/Object/Post.php:691 #, php-format msgid "Viewed by: %s" msgstr "" -#: src/Object/Post.php:701 +#: src/Object/Post.php:696 #, php-format msgid "Read by: %s" msgstr "" -#: src/Object/Post.php:706 +#: src/Object/Post.php:701 #, php-format msgid "Liked by: %s" msgstr "" -#: src/Object/Post.php:711 +#: src/Object/Post.php:706 #, php-format msgid "Disliked by: %s" msgstr "" -#: src/Object/Post.php:716 +#: src/Object/Post.php:711 #, php-format msgid "Attended by: %s" msgstr "" -#: src/Object/Post.php:721 +#: src/Object/Post.php:716 #, php-format msgid "Maybe attended by: %s" msgstr "" -#: src/Object/Post.php:726 +#: src/Object/Post.php:721 #, php-format msgid "Not attended by: %s" msgstr "" -#: src/Object/Post.php:731 +#: src/Object/Post.php:726 #, php-format msgid "Commented by: %s" msgstr "" -#: src/Object/Post.php:736 +#: src/Object/Post.php:731 #, php-format msgid "Reacted with %s by: %s" msgstr "" -#: src/Object/Post.php:759 +#: src/Object/Post.php:754 #, php-format msgid "Quote shared by: %s" msgstr "" -#: src/Protocol/ActivityPub/Receiver.php:568 +#: src/Protocol/ActivityPub/Receiver.php:557 msgid "Chat" msgstr "" -#: src/Protocol/Delivery.php:547 +#: src/Protocol/Delivery.php:530 msgid "(no subject)" msgstr "" -#: src/Protocol/OStatus.php:1390 -#, php-format -msgid "%s is now following %s." -msgstr "" - -#: src/Protocol/OStatus.php:1391 -msgid "following" -msgstr "sekvanta" - -#: src/Protocol/OStatus.php:1394 -#, php-format -msgid "%s stopped following %s." -msgstr "" - -#: src/Protocol/OStatus.php:1395 -msgid "stopped following" -msgstr "ne plu sekvas" - -#: src/Render/FriendicaSmartyEngine.php:56 +#: src/Render/FriendicaSmartyEngine.php:42 #, php-format msgid "The folder %s must be writable by webserver." msgstr "" -#: src/Security/Authentication.php:227 +#: src/Security/Authentication.php:200 msgid "Login failed." msgstr "Ensalutado malsukcesis." -#: src/Security/Authentication.php:272 +#: src/Security/Authentication.php:245 msgid "Login failed. Please check your credentials." msgstr "" -#: src/Security/Authentication.php:391 +#: src/Security/Authentication.php:359 #, php-format msgid "Welcome %s" msgstr "" -#: src/Security/Authentication.php:392 +#: src/Security/Authentication.php:360 msgid "Please upload a profile photo." msgstr "Bonvolu alŝuti profilbildon." -#: src/Util/EMailer/MailBuilder.php:260 +#: src/Security/OpenWebAuth.php:149 +#, php-format +msgid "OpenWebAuth: %1$s welcomes %2$s" +msgstr "" + +#: src/Util/EMailer/MailBuilder.php:246 msgid "Friendica Notification" msgstr "" -#: src/Util/EMailer/NotifyMailBuilder.php:78 -#: src/Util/EMailer/SystemMailBuilder.php:54 +#: src/Util/EMailer/NotifyMailBuilder.php:64 +#: src/Util/EMailer/SystemMailBuilder.php:40 #, php-format msgid "%1$s, %2$s Administrator" msgstr "" -#: src/Util/EMailer/NotifyMailBuilder.php:80 -#: src/Util/EMailer/SystemMailBuilder.php:56 +#: src/Util/EMailer/NotifyMailBuilder.php:66 +#: src/Util/EMailer/SystemMailBuilder.php:42 #, php-format msgid "%s Administrator" msgstr "" -#: src/Util/EMailer/NotifyMailBuilder.php:193 -#: src/Util/EMailer/NotifyMailBuilder.php:217 -#: src/Util/EMailer/SystemMailBuilder.php:101 -#: src/Util/EMailer/SystemMailBuilder.php:118 +#: src/Util/EMailer/NotifyMailBuilder.php:179 +#: src/Util/EMailer/NotifyMailBuilder.php:203 +#: src/Util/EMailer/SystemMailBuilder.php:87 +#: src/Util/EMailer/SystemMailBuilder.php:104 msgid "thanks" msgstr "" -#: src/Util/Temporal.php:172 +#: src/Util/Temporal.php:158 msgid "YYYY-MM-DD or MM-DD" msgstr "" -#: src/Util/Temporal.php:280 +#: src/Util/Temporal.php:266 #, php-format msgid "Time zone: %s Change in Settings" msgstr "" -#: src/Util/Temporal.php:320 src/Util/Temporal.php:329 +#: src/Util/Temporal.php:306 src/Util/Temporal.php:315 msgid "never" msgstr "" -#: src/Util/Temporal.php:343 +#: src/Util/Temporal.php:329 msgid "less than a second ago" msgstr "" -#: src/Util/Temporal.php:352 +#: src/Util/Temporal.php:338 msgid "year" msgstr "" -#: src/Util/Temporal.php:352 +#: src/Util/Temporal.php:338 msgid "years" msgstr "" -#: src/Util/Temporal.php:353 +#: src/Util/Temporal.php:339 msgid "months" msgstr "" -#: src/Util/Temporal.php:354 +#: src/Util/Temporal.php:340 msgid "weeks" msgstr "" -#: src/Util/Temporal.php:355 +#: src/Util/Temporal.php:341 msgid "days" msgstr "" -#: src/Util/Temporal.php:356 +#: src/Util/Temporal.php:342 msgid "hour" msgstr "" -#: src/Util/Temporal.php:356 +#: src/Util/Temporal.php:342 msgid "hours" msgstr "" -#: src/Util/Temporal.php:357 +#: src/Util/Temporal.php:343 msgid "minute" msgstr "" -#: src/Util/Temporal.php:357 +#: src/Util/Temporal.php:343 msgid "minutes" msgstr "" -#: src/Util/Temporal.php:358 +#: src/Util/Temporal.php:344 msgid "second" msgstr "" -#: src/Util/Temporal.php:358 +#: src/Util/Temporal.php:344 msgid "seconds" msgstr "" -#: src/Util/Temporal.php:367 +#: src/Util/Temporal.php:353 #, php-format msgid "in %1$d %2$s" msgstr "" -#: src/Util/Temporal.php:370 +#: src/Util/Temporal.php:356 #, php-format msgid "%1$d %2$s ago" msgstr "" -#: src/Worker/PushSubscription.php:110 +#: src/Worker/PushSubscription.php:96 msgid "Notification from Friendica" msgstr "" -#: src/Worker/PushSubscription.php:111 +#: src/Worker/PushSubscription.php:97 msgid "Empty Post" msgstr "" -#: view/theme/duepuntozero/config.php:68 +#: view/theme/duepuntozero/config.php:56 msgid "default" msgstr "" -#: view/theme/duepuntozero/config.php:69 +#: view/theme/duepuntozero/config.php:57 msgid "greenzero" msgstr "" -#: view/theme/duepuntozero/config.php:70 +#: view/theme/duepuntozero/config.php:58 msgid "purplezero" msgstr "" -#: view/theme/duepuntozero/config.php:71 +#: view/theme/duepuntozero/config.php:59 msgid "easterbunny" msgstr "" -#: view/theme/duepuntozero/config.php:72 +#: view/theme/duepuntozero/config.php:60 msgid "darkzero" msgstr "" -#: view/theme/duepuntozero/config.php:73 +#: view/theme/duepuntozero/config.php:61 msgid "comix" msgstr "" -#: view/theme/duepuntozero/config.php:74 +#: view/theme/duepuntozero/config.php:62 msgid "slackr" msgstr "" -#: view/theme/duepuntozero/config.php:87 +#: view/theme/duepuntozero/config.php:75 msgid "Variations" msgstr "" -#: view/theme/frio/config.php:146 +#: view/theme/frio/config.php:134 msgid "Note" msgstr "" -#: view/theme/frio/config.php:146 +#: view/theme/frio/config.php:134 msgid "Check image permissions if all users are allowed to see the image" msgstr "" -#: view/theme/frio/config.php:152 +#: view/theme/frio/config.php:140 msgid "Appearance" msgstr "" -#: view/theme/frio/config.php:153 +#: view/theme/frio/config.php:141 msgid "Accent color" msgstr "" -#: view/theme/frio/config.php:153 +#: view/theme/frio/config.php:141 msgid "Blue" msgstr "" -#: view/theme/frio/config.php:153 +#: view/theme/frio/config.php:141 msgid "Red" msgstr "" -#: view/theme/frio/config.php:153 +#: view/theme/frio/config.php:141 msgid "Purple" msgstr "" -#: view/theme/frio/config.php:153 +#: view/theme/frio/config.php:141 msgid "Green" msgstr "" -#: view/theme/frio/config.php:153 +#: view/theme/frio/config.php:141 msgid "Pink" msgstr "" -#: view/theme/frio/config.php:154 +#: view/theme/frio/config.php:142 msgid "Copy or paste schemestring" msgstr "" -#: view/theme/frio/config.php:154 +#: view/theme/frio/config.php:142 msgid "" "You can copy this string to share your theme with others. Pasting here " "applies the schemestring" msgstr "" -#: view/theme/frio/config.php:155 +#: view/theme/frio/config.php:143 msgid "Navigation bar background color" msgstr "" -#: view/theme/frio/config.php:156 +#: view/theme/frio/config.php:144 msgid "Navigation bar icon color " msgstr "" -#: view/theme/frio/config.php:157 +#: view/theme/frio/config.php:145 msgid "Link color" msgstr "" -#: view/theme/frio/config.php:158 +#: view/theme/frio/config.php:146 msgid "Set the background color" msgstr "" -#: view/theme/frio/config.php:159 +#: view/theme/frio/config.php:147 msgid "Content background opacity" msgstr "" -#: view/theme/frio/config.php:160 +#: view/theme/frio/config.php:148 msgid "Set the background image" msgstr "" -#: view/theme/frio/config.php:161 +#: view/theme/frio/config.php:149 msgid "Background image style" msgstr "" -#: view/theme/frio/config.php:164 +#: view/theme/frio/config.php:152 msgid "Always open Compose page" msgstr "" -#: view/theme/frio/config.php:164 +#: view/theme/frio/config.php:152 msgid "" "The New Post button always open the 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:168 +#: view/theme/frio/config.php:156 msgid "Login page background image" msgstr "" -#: view/theme/frio/config.php:172 +#: view/theme/frio/config.php:160 msgid "Login page background color" msgstr "" -#: view/theme/frio/config.php:172 +#: view/theme/frio/config.php:160 msgid "Leave background image and color empty for theme defaults" msgstr "" -#: view/theme/frio/php/Image.php:39 +#: view/theme/frio/php/Image.php:27 msgid "Top Banner" msgstr "" -#: view/theme/frio/php/Image.php:39 +#: view/theme/frio/php/Image.php:27 msgid "" "Resize image to the width of the screen and show background color below on " "long pages." msgstr "" -#: view/theme/frio/php/Image.php:40 +#: view/theme/frio/php/Image.php:28 msgid "Full screen" msgstr "" -#: view/theme/frio/php/Image.php:40 +#: view/theme/frio/php/Image.php:28 msgid "" "Resize image to fill entire screen, clipping either the right or the bottom." msgstr "" -#: view/theme/frio/php/Image.php:41 +#: view/theme/frio/php/Image.php:29 msgid "Single row mosaic" msgstr "" -#: view/theme/frio/php/Image.php:41 +#: view/theme/frio/php/Image.php:29 msgid "" "Resize image to repeat it on a single row, either vertical or horizontal." msgstr "" -#: view/theme/frio/php/Image.php:42 +#: view/theme/frio/php/Image.php:30 msgid "Mosaic" msgstr "" -#: view/theme/frio/php/Image.php:42 +#: view/theme/frio/php/Image.php:30 msgid "Repeat image to fill the screen." msgstr "" -#: view/theme/frio/php/default.php:82 view/theme/frio/php/standard.php:40 +#: view/theme/frio/php/default.php:70 view/theme/frio/php/standard.php:28 msgid "Skip to main content" msgstr "" -#: view/theme/frio/php/default.php:153 view/theme/frio/php/standard.php:75 +#: view/theme/frio/php/default.php:141 view/theme/frio/php/standard.php:63 msgid "Back to top" msgstr "" -#: view/theme/frio/php/scheme.php:105 +#: view/theme/frio/php/scheme.php:93 msgid "Light" msgstr "" -#: view/theme/frio/php/scheme.php:106 +#: view/theme/frio/php/scheme.php:94 msgid "Dark" msgstr "" -#: view/theme/frio/php/scheme.php:107 +#: view/theme/frio/php/scheme.php:95 msgid "Black" msgstr "" -#: view/theme/frio/php/scheme.php:118 +#: view/theme/frio/php/scheme.php:106 msgid "Custom" msgstr "" -#: view/theme/frio/theme.php:214 +#: view/theme/frio/theme.php:202 msgid "Guest" msgstr "" -#: view/theme/frio/theme.php:217 +#: view/theme/frio/theme.php:205 msgid "Visitor" msgstr "" -#: view/theme/quattro/config.php:89 +#: view/theme/quattro/config.php:77 msgid "Alignment" msgstr "" -#: view/theme/quattro/config.php:89 +#: view/theme/quattro/config.php:77 msgid "Left" msgstr "" -#: view/theme/quattro/config.php:89 +#: view/theme/quattro/config.php:77 msgid "Center" msgstr "" -#: view/theme/quattro/config.php:90 +#: view/theme/quattro/config.php:78 msgid "Color scheme" msgstr "" -#: view/theme/quattro/config.php:91 +#: view/theme/quattro/config.php:79 msgid "Posts font size" msgstr "" -#: view/theme/quattro/config.php:92 +#: view/theme/quattro/config.php:80 msgid "Textareas font size" msgstr "" -#: view/theme/vier/config.php:91 +#: view/theme/vier/config.php:79 msgid "Comma separated list of helper groups" msgstr "" -#: view/theme/vier/config.php:131 +#: view/theme/vier/config.php:119 msgid "don't show" msgstr "" -#: view/theme/vier/config.php:131 +#: view/theme/vier/config.php:119 msgid "show" msgstr "" -#: view/theme/vier/config.php:137 +#: view/theme/vier/config.php:125 msgid "Set style" msgstr "" -#: view/theme/vier/config.php:138 +#: view/theme/vier/config.php:126 msgid "Community Pages" msgstr "" -#: view/theme/vier/config.php:139 view/theme/vier/theme.php:148 +#: view/theme/vier/config.php:127 view/theme/vier/theme.php:136 msgid "Community Profiles" msgstr "" -#: view/theme/vier/config.php:140 +#: view/theme/vier/config.php:128 msgid "Help or @NewHere ?" msgstr "" -#: view/theme/vier/config.php:141 view/theme/vier/theme.php:319 +#: view/theme/vier/config.php:129 view/theme/vier/theme.php:307 msgid "Connect Services" msgstr "" -#: view/theme/vier/config.php:142 +#: view/theme/vier/config.php:130 msgid "Find Friends" msgstr "" -#: view/theme/vier/config.php:143 view/theme/vier/theme.php:175 +#: view/theme/vier/config.php:131 view/theme/vier/theme.php:163 msgid "Last users" msgstr "" -#: view/theme/vier/theme.php:234 +#: view/theme/vier/theme.php:222 msgid "Quick Start" msgstr "" diff --git a/view/lang/eo/strings.php b/view/lang/eo/strings.php index a433c78eb1..069db185b3 100644 --- a/view/lang/eo/strings.php +++ b/view/lang/eo/strings.php @@ -135,6 +135,9 @@ $a->strings['Personal'] = 'Propra'; $a->strings['Posts that mention or involve you'] = 'Afiŝoj menciantaj vin aŭ pri vi'; $a->strings['Starred'] = 'Steligita'; $a->strings['Favourite Posts'] = 'Favorigitaj Afiŝoj'; +$a->strings['Archives'] = 'Arkivoj'; +$a->strings['Saved Searches'] = 'Konservitaj Serĉadoj'; +$a->strings['Saved Folders'] = 'Konservitaj Dosierujoj'; $a->strings['show more'] = 'montri pli'; $a->strings['event'] = 'okazo'; $a->strings['status'] = 'staton'; @@ -222,14 +225,12 @@ $a->strings['Invite Friends'] = 'Inviti amikojn'; $a->strings['Global Directory'] = 'Tutmonda Katalogo'; $a->strings['Local Directory'] = 'Loka Katalogo'; $a->strings['All Contacts'] = 'Ĉiuj Kontaktoj'; -$a->strings['Saved Folders'] = 'Konservitaj Dosierujoj'; $a->strings['Everything'] = 'Ĉio'; $a->strings['Categories'] = 'Kategorioj'; $a->strings['%d contact in common'] = [ 0 => '%d komuna kontakto', 1 => '%d komunaj kontaktoj', ]; -$a->strings['Archives'] = 'Arkivoj'; $a->strings['No contacts'] = 'Neniu kontaktoj'; $a->strings['%d Contact'] = [ 0 => '%d Kontakto', @@ -237,7 +238,6 @@ $a->strings['%d Contact'] = [ ]; $a->strings['View Contacts'] = 'Vidi Kontaktojn'; $a->strings['Remove term'] = 'Forviŝu terminon'; -$a->strings['Saved Searches'] = 'Konservitaj Serĉadoj'; $a->strings['Location:'] = 'Loko:'; $a->strings['Post to Email'] = 'Sendi per retpoŝto'; $a->strings['CC: email addresses'] = 'CC: retpoŝtadresojn'; @@ -298,7 +298,6 @@ $a->strings['An author or name was not found.'] = 'Ne trovis aŭtoron aŭ nomon. $a->strings['No browser URL could be matched to this address.'] = 'Neniu retuma URL adreso kongruas al la adreso.'; $a->strings['Unable to match @-style Identity Address with a known protocol or email contact.'] = 'Ne eblas kongrui @-stilan identecon adreson al iu konata protokolo au retpoŝtadreso.'; $a->strings['Use mailto: in front of address to force email check.'] = 'Uzu mailto: antaŭ la adreso por devigi la testadon per retpoŝto.'; -$a->strings['The profile address specified belongs to a network which has been disabled on this site.'] = 'Tiu profila adreso apartenas al retejo kiu estas maŝaltita je ĉi tiu retejo.'; $a->strings['Limited profile. This person will be unable to receive direct/personal notifications from you.'] = 'Profilo limigata. Ĉi persono ne eblos ricevi rektajn/personajn atentigojn de vi. '; $a->strings['Unable to retrieve contact information.'] = 'Ne eblas ricevi kontaktinformojn.'; $a->strings['Starts:'] = 'Ekas:'; @@ -377,6 +376,8 @@ $a->strings['Failed Updates'] = 'Malsukcesaj Ĝisdatigoj'; $a->strings['This does not include updates prior to 1139, which did not return a status.'] = 'Ne inkluzivas ĝisdatigojn antaŭ 1139, kiuj ne liveris elirstaton.'; $a->strings['Mark success (if update was manually applied)'] = 'Marki sukcesa (se la ĝisdatigo estas instalita mane)'; $a->strings['Attempt to execute this update step automatically'] = 'Provi automate plenumi ĉi tian paŝon de la ĝisdatigo.'; +$a->strings['No'] = 'Ne'; +$a->strings['Yes'] = 'Jes'; $a->strings['Other'] = 'Alia'; $a->strings['Logs'] = 'Protokoloj'; $a->strings['Clear'] = 'Forviŝi'; @@ -513,7 +514,6 @@ $a->strings['Replies/likes to your public posts may still be vi $a->strings['Status'] = 'Stato'; $a->strings['Toggle Blocked status'] = 'Ŝalti/malŝalti Blokitan staton'; $a->strings['Toggle Ignored status'] = 'Ŝalti/malŝalti Ignoritan staton'; -$a->strings['Yes'] = 'Jes'; $a->strings['No suggestions available. If this is a new site, please try again in 24 hours.'] = 'Neniu sugestoj disponeblas. Se ĉi tiu estas nova retejo, bonvolu reprovi post 24 horoj.'; $a->strings['No results.'] = 'Nenion trovita.'; $a->strings['Not available.'] = 'Ne disponebla.'; @@ -595,7 +595,6 @@ $a->strings['Deny'] = 'Negi'; $a->strings['Show Ignored Requests'] = 'Montri ignoritajn petojn'; $a->strings['Hide Ignored Requests'] = 'Kaŝi ignoritajn petojn'; $a->strings['Claims to be known to you: '] = 'Pensas ke vi konas ilin:'; -$a->strings['No'] = 'Ne'; $a->strings['Friend'] = 'Amiko'; $a->strings['No introductions.'] = 'Neniom da prezentoj'; $a->strings['Network Notifications'] = 'Retaj Atentigoj'; @@ -605,8 +604,6 @@ $a->strings['Home Notifications'] = 'Hejmrilataj atentigoj'; $a->strings['{0} requested registration'] = '{0} petis registradon'; $a->strings['Authorize application connection'] = 'Rajtigi programkonekton'; $a->strings['Do you want to authorize this application to access your posts and contacts, and/or create new posts for you?'] = 'Ĉu rajtigi ĉi tiun programon por atingi viajn afiŝojn kaj kontaktojn kaj/aŭ krei novajn afiŝojn?'; -$a->strings['Remote privacy information not available.'] = 'Informoj pri fora privateca ne estas disponebla.'; -$a->strings['Visible to:'] = 'Videbla al:'; $a->strings['Edit post'] = 'Redakti afiŝon'; $a->strings['web link'] = 'TTT ligilo'; $a->strings['Insert video link'] = 'Alglui ligilon de video'; @@ -616,6 +613,8 @@ $a->strings['audio link'] = 'sono ligilo'; $a->strings['Remove Item Tag'] = 'Forviŝi markon'; $a->strings['Select a tag to remove: '] = 'Elektu forviŝontan markon:'; $a->strings['Remove'] = 'Forviŝi'; +$a->strings['Remote privacy information not available.'] = 'Informoj pri fora privateca ne estas disponebla.'; +$a->strings['Visible to:'] = 'Videbla al:'; $a->strings['No contacts.'] = 'Neniu kontaktojn.'; $a->strings['Image file is empty.'] = 'Bilddosiero estas malplena.'; $a->strings['View Album'] = 'Vidi albumon'; @@ -751,7 +750,6 @@ $a->strings['%s commented on %s\'s post'] = '%s komentis pri la afiŝo de %s'; $a->strings['%s created a new post'] = '%s kreis novan afiŝon'; $a->strings['Friend Suggestion'] = 'Amikosugestoj'; $a->strings['Friend/Connect Request'] = 'Kontaktpeto'; -$a->strings['New Follower'] = 'Nova abonanto'; $a->strings['%1$s sent you a new private message at %2$s.'] = '%1$s sendis al vi novan privatan mesaĝon ĉe %2$s.'; $a->strings['a private message'] = 'privatan mesaĝon'; $a->strings['%1$s sent you %2$s.'] = '%1$s sendis al vi %2$s.'; @@ -782,7 +780,5 @@ $a->strings['%d comment'] = [ 0 => '%d komento', 1 => '%d komentoj', ]; -$a->strings['following'] = 'sekvanta'; -$a->strings['stopped following'] = 'ne plu sekvas'; $a->strings['Login failed.'] = 'Ensalutado malsukcesis.'; $a->strings['Please upload a profile photo.'] = 'Bonvolu alŝuti profilbildon.'; diff --git a/view/lang/es/messages.po b/view/lang/es/messages.po index 9076ded622..43bc0f8c66 100644 --- a/view/lang/es/messages.po +++ b/view/lang/es/messages.po @@ -1,8 +1,7 @@ # FRIENDICA Distributed Social Network -# SPDX-FileCopyrightText: Copyright (C) 2010-2024, the Friendica project -# -# SPDX-License-Identifier: AGPL-3.0-or-later -# +# Copyright (C) 2010-2024, the Friendica project +# This file is distributed under the same license as the Friendica package. +# # Translators: # 20fb8626d04159f4c3248015e64bc077, 2011 # a4e12f943b784a073d5fd49662354257_daaba5c , 2013 @@ -56,7 +55,7 @@ msgid "" msgstr "" "Project-Id-Version: friendica\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-05-15 12:16+0000\n" +"POT-Creation-Date: 2024-10-07 20:46+0000\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" @@ -66,77 +65,77 @@ msgstr "" "Language: es\n" "Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" -#: mod/item.php:101 mod/item.php:104 mod/item.php:171 mod/item.php:174 +#: mod/item.php:89 mod/item.php:92 mod/item.php:159 mod/item.php:162 msgid "Unable to locate original post." msgstr "No se encontró la publicación original." -#: mod/item.php:139 +#: mod/item.php:127 msgid "Post updated." msgstr "Artículo actualizado." -#: mod/item.php:204 mod/item.php:208 +#: mod/item.php:192 mod/item.php:196 msgid "Item wasn't stored." msgstr "Artículo no almacenado." -#: mod/item.php:218 +#: mod/item.php:206 msgid "Item couldn't be fetched." msgstr "Artículo no pudo recuperarse." -#: mod/item.php:260 mod/item.php:264 +#: mod/item.php:250 mod/item.php:254 msgid "Empty post discarded." msgstr "Publicación vacía descartada." -#: mod/item.php:435 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 +#: mod/item.php:425 src/Module/Admin/Themes/Details.php:31 +#: src/Module/Admin/Themes/Index.php:51 src/Module/Debug/ItemBody.php:28 +#: src/Module/Debug/ItemBody.php:43 src/Module/Item/Feed.php:66 msgid "Item not found." msgstr "Elemento no encontrado." -#: mod/item.php:459 mod/message.php:66 mod/message.php:112 mod/notes.php:45 -#: mod/photos.php:146 mod/photos.php:662 src/Model/Event.php:520 -#: src/Module/Attach.php:55 src/Module/BaseApi.php:103 -#: src/Module/BaseNotifications.php:98 src/Module/BaseSettings.php:50 -#: src/Module/Calendar/Event/API.php:88 src/Module/Calendar/Event/Form.php:84 -#: src/Module/Calendar/Export.php:82 src/Module/Calendar/Show.php:82 -#: src/Module/Circle.php:41 src/Module/Circle.php:84 -#: src/Module/Contact/Advanced.php:60 src/Module/Contact/Follow.php:87 -#: src/Module/Contact/Follow.php:160 src/Module/Contact/MatchInterests.php:87 -#: src/Module/Contact/Suggestions.php:54 src/Module/Contact/Unfollow.php:66 -#: src/Module/Contact/Unfollow.php:80 src/Module/Contact/Unfollow.php:112 -#: src/Module/FollowConfirm.php:38 src/Module/FriendSuggest.php:57 -#: src/Module/Invite.php:42 src/Module/Invite.php:131 -#: src/Module/Notifications/Notification.php:76 -#: src/Module/Notifications/Notification.php:107 -#: src/Module/OStatus/Repair.php:60 src/Module/OStatus/Subscribe.php:68 -#: src/Module/Post/Edit.php:76 src/Module/Profile/Common.php:75 -#: src/Module/Profile/Contacts.php:78 src/Module/Profile/Photos.php:92 -#: src/Module/Profile/Schedule.php:39 src/Module/Profile/Schedule.php:56 -#: src/Module/Register.php:78 src/Module/Register.php:91 -#: src/Module/Register.php:207 src/Module/Register.php:246 -#: src/Module/Search/Directory.php:37 src/Module/Settings/Account.php:50 -#: src/Module/Settings/Account.php:386 src/Module/Settings/Channels.php:66 -#: src/Module/Settings/Channels.php:141 src/Module/Settings/Delegation.php:90 -#: src/Module/Settings/Display.php:90 src/Module/Settings/Display.php:197 -#: src/Module/Settings/Profile/Photo/Crop.php:165 -#: src/Module/Settings/Profile/Photo/Index.php:110 -#: src/Module/Settings/RemoveMe.php:119 src/Module/Settings/UserExport.php:78 -#: src/Module/Settings/UserExport.php:114 -#: src/Module/Settings/UserExport.php:213 -#: src/Module/Settings/UserExport.php:233 -#: src/Module/Settings/UserExport.php:298 src/Module/User/Delegation.php:154 -#: src/Module/User/Import.php:85 src/Module/User/Import.php:92 +#: mod/item.php:449 mod/message.php:54 mod/message.php:100 mod/notes.php:33 +#: mod/photos.php:135 mod/photos.php:627 src/Model/Event.php:506 +#: src/Module/Attach.php:41 src/Module/BaseApi.php:89 +#: src/Module/BaseNotifications.php:84 src/Module/BaseSettings.php:36 +#: src/Module/Calendar/Event/API.php:74 src/Module/Calendar/Event/Form.php:70 +#: src/Module/Calendar/Export.php:68 src/Module/Calendar/Show.php:68 +#: src/Module/Circle.php:27 src/Module/Circle.php:70 +#: src/Module/Contact/Advanced.php:46 src/Module/Contact/Follow.php:73 +#: src/Module/Contact/Follow.php:141 src/Module/Contact/MatchInterests.php:73 +#: src/Module/Contact/Suggestions.php:40 src/Module/Contact/Unfollow.php:52 +#: src/Module/Contact/Unfollow.php:66 src/Module/Contact/Unfollow.php:98 +#: src/Module/FollowConfirm.php:24 src/Module/FriendSuggest.php:43 +#: src/Module/Invite.php:28 src/Module/Invite.php:117 +#: src/Module/Notifications/Notification.php:62 +#: src/Module/Notifications/Notification.php:93 +#: src/Module/OStatus/Subscribe.php:54 src/Module/Post/Edit.php:62 +#: src/Module/Profile/Common.php:61 src/Module/Profile/Contacts.php:64 +#: src/Module/Profile/Photos.php:78 src/Module/Profile/Schedule.php:25 +#: src/Module/Profile/Schedule.php:42 src/Module/Register.php:70 +#: src/Module/Register.php:83 src/Module/Register.php:199 +#: src/Module/Register.php:238 src/Module/Search/Directory.php:23 +#: src/Module/Settings/Account.php:36 src/Module/Settings/Account.php:377 +#: src/Module/Settings/Channels.php:52 src/Module/Settings/Channels.php:127 +#: src/Module/Settings/Delegation.php:76 src/Module/Settings/Display.php:76 +#: src/Module/Settings/Display.php:183 +#: src/Module/Settings/Profile/Photo/Crop.php:151 +#: src/Module/Settings/Profile/Photo/Index.php:96 +#: src/Module/Settings/RemoveMe.php:105 src/Module/Settings/UserExport.php:64 +#: src/Module/Settings/UserExport.php:100 +#: src/Module/Settings/UserExport.php:199 +#: src/Module/Settings/UserExport.php:219 +#: src/Module/Settings/UserExport.php:284 src/Module/User/Delegation.php:140 +#: src/Module/User/Import.php:71 src/Module/User/Import.php:78 msgid "Permission denied." msgstr "Permiso denegado." -#: mod/lostpass.php:40 +#: mod/lostpass.php:28 msgid "No valid account found." msgstr "No se encontró cuenta válida" -#: mod/lostpass.php:52 +#: mod/lostpass.php:40 msgid "Password reset request issued. Check your email." msgstr "Contraseña reestablecida enviada. Revisa tu correo." -#: mod/lostpass.php:58 +#: mod/lostpass.php:46 #, php-format msgid "" "\n" @@ -152,7 +151,7 @@ msgid "" "\t\tissued this request." msgstr "\n\t\tEstimado %1$s,\n\t\t\tSe recibió una solicitud \"%2$s\" para resetear el password\n\t\tde tu cuenta. Para confirmar la solicitud, selecciona el link\n\t\tdebajo o cópialo en la dirección de tu navegador.\n\n\t\tSi no lo solicitaste, NO ABRAS el VÍNCULO\n\t\te ignoralo o borra este correo, la solicitud expirará pronto.\n\n\t\ty tu contraseña no cambiará a menos que verifiquemos que tu\n\t\thiciste la petición." -#: mod/lostpass.php:69 +#: mod/lostpass.php:57 #, php-format msgid "" "\n" @@ -169,70 +168,70 @@ msgid "" "\t\tLogin Name:\t%3$s" msgstr "\n\t\tSigue este vínculo para verificar tu identidad:\n\n\t\t%1$s\n\n\t\tRecibirás un mensaje de seguimiento con la nueva contraseña.\n\t\tPodrás cambiar la contraseña desde la configuración de tu cuenta al ingresar.\n\n\t\tLos detalles de ingreso son:\n\n\t\tSitio:\t%2$s\n\t\tNombre de Usuario:\t%3$s" -#: mod/lostpass.php:84 +#: mod/lostpass.php:72 #, php-format msgid "Password reset requested at %s" msgstr "Contraseña restablecida enviada a %s" -#: mod/lostpass.php:100 +#: mod/lostpass.php:88 msgid "" "Request could not be verified. (You may have previously submitted it.) " "Password reset failed." msgstr "La solicitud no puede ser verificada (deberías haberla proporcionado antes). Falló el restablecimiento de la contraseña." -#: mod/lostpass.php:113 +#: mod/lostpass.php:101 msgid "Request has expired, please make a new one." msgstr "La solicitud expiró, solicite una nueva." -#: mod/lostpass.php:128 +#: mod/lostpass.php:116 msgid "Forgot your Password?" msgstr "¿Olvidaste tu contraseña?" -#: mod/lostpass.php:129 +#: mod/lostpass.php:117 msgid "" "Enter your email address and submit to have your password reset. Then check " "your email for further instructions." msgstr "Introduce tu correo para restablecer tu contraseña. Luego comprueba tu correo para las instrucciones adicionales." -#: mod/lostpass.php:130 src/Module/Security/Login.php:160 +#: mod/lostpass.php:118 src/Module/Security/Login.php:150 msgid "Nickname or Email: " msgstr "Apodo o Correo electrónico: " -#: mod/lostpass.php:131 +#: mod/lostpass.php:119 msgid "Reset" msgstr "Restablecer" -#: mod/lostpass.php:146 src/Module/Security/Login.php:172 +#: mod/lostpass.php:134 src/Module/Security/Login.php:162 msgid "Password Reset" msgstr "Restablecer la contraseña" -#: mod/lostpass.php:147 +#: mod/lostpass.php:135 msgid "Your password has been reset as requested." msgstr "Tu contraseña ha sido restablecida como solicitaste." -#: mod/lostpass.php:148 +#: mod/lostpass.php:136 msgid "Your new password is" msgstr "Tu nueva contraseña es" -#: mod/lostpass.php:149 +#: mod/lostpass.php:137 msgid "Save or copy your new password - and then" msgstr "Guarda o copia tu nueva contraseña y luego" -#: mod/lostpass.php:150 +#: mod/lostpass.php:138 msgid "click here to login" msgstr "pulsa aquí para acceder" -#: mod/lostpass.php:151 +#: mod/lostpass.php:139 msgid "" "Your password may be changed from the Settings page after " "successful login." msgstr "Puedes cambiar tu contraseña desde la página de Configuración después de acceder con éxito." -#: mod/lostpass.php:155 +#: mod/lostpass.php:143 msgid "Your password has been reset." msgstr "Tu contraseña fue restablecida." -#: mod/lostpass.php:158 +#: mod/lostpass.php:146 #, php-format msgid "" "\n" @@ -243,7 +242,7 @@ msgid "" "\t\t" msgstr "\n\t\t\tEstimado %1$s,\n\t\t\t\tTu contraseña ha sido cambiada como solicitaste. Manten esta\n\t\t\tinformación en tu registro (o cambia tu contraseña inmediatamente a\n\t\t\tuna que puedas recordar).\n\t\t" -#: mod/lostpass.php:164 +#: mod/lostpass.php:152 #, php-format msgid "" "\n" @@ -257,161 +256,161 @@ msgid "" "\t\t" msgstr "\n\t\t\tTus datos de acceso son los siguientes:\n\n\t\t\tSitio de Acceso:\t%1$s\n\t\t\tNombre de Usuario:\t%2$s\n\t\t\tContraseña:\t%3$s\n\n\t\t\tPuedes cambiar la contraseña desde configuración de la cuenta al ingresar.\n\t\t" -#: mod/lostpass.php:176 +#: mod/lostpass.php:164 #, php-format msgid "Your password has been changed at %s" msgstr "Tu contraseña se ha cambiado por %s" -#: mod/message.php:45 mod/message.php:127 src/Content/Nav.php:321 +#: mod/message.php:33 mod/message.php:115 src/Content/Nav.php:307 msgid "New Message" msgstr "Nuevo Mensaje" -#: mod/message.php:81 +#: mod/message.php:69 msgid "No recipient selected." msgstr "Ningún destinatario seleccionado" -#: mod/message.php:86 +#: mod/message.php:74 msgid "Unable to locate contact information." msgstr "No se encuentra información del contacto." -#: mod/message.php:90 +#: mod/message.php:78 msgid "Message could not be sent." msgstr "El mensaje no ha podido ser enviado." -#: mod/message.php:94 +#: mod/message.php:82 msgid "Message collection failure." msgstr "Fallo en recolección de mensajes." -#: mod/message.php:121 src/Module/Notifications/Introductions.php:135 -#: src/Module/Notifications/Introductions.php:170 -#: src/Module/Notifications/Notification.php:85 +#: mod/message.php:109 src/Module/Notifications/Introductions.php:127 +#: src/Module/Notifications/Introductions.php:162 +#: src/Module/Notifications/Notification.php:71 msgid "Discard" msgstr "Descartar" -#: mod/message.php:134 src/Content/Nav.php:318 view/theme/frio/theme.php:244 +#: mod/message.php:122 src/Content/Nav.php:304 view/theme/frio/theme.php:232 msgid "Messages" msgstr "Mensajes" -#: mod/message.php:147 +#: mod/message.php:135 msgid "Conversation not found." msgstr "Conversación no encontrada." -#: mod/message.php:152 +#: mod/message.php:140 msgid "Message was not deleted." msgstr "Mensaje no borrado." -#: mod/message.php:167 +#: mod/message.php:155 msgid "Conversation was not removed." msgstr "Conversación no borrada." -#: mod/message.php:180 mod/message.php:285 +#: mod/message.php:168 mod/message.php:273 msgid "Please enter a link URL:" msgstr "Introduce una dirección URL:" -#: mod/message.php:189 +#: mod/message.php:177 msgid "Send Private Message" msgstr "Enviar Mensaje Privado" -#: mod/message.php:190 mod/message.php:345 -#: src/Module/Privacy/PermissionTooltip.php:132 +#: mod/message.php:178 mod/message.php:333 +#: src/Module/Privacy/PermissionTooltip.php:118 msgid "To:" msgstr "Para:" -#: mod/message.php:191 mod/message.php:346 +#: mod/message.php:179 mod/message.php:334 msgid "Subject:" msgstr "Asunto:" -#: mod/message.php:195 mod/message.php:349 src/Module/Invite.php:171 +#: mod/message.php:183 mod/message.php:337 src/Module/Invite.php:157 msgid "Your message:" msgstr "Tu mensaje:" -#: mod/message.php:198 mod/message.php:353 src/Content/Conversation.php:369 -#: src/Module/Post/Edit.php:131 +#: mod/message.php:186 mod/message.php:341 src/Content/Conversation.php:355 +#: src/Module/Post/Edit.php:117 msgid "Upload photo" msgstr "Subir foto" -#: mod/message.php:199 mod/message.php:354 src/Module/Post/Edit.php:135 +#: mod/message.php:187 mod/message.php:342 src/Module/Post/Edit.php:121 msgid "Insert web link" msgstr "Insertar enlace" -#: mod/message.php:200 mod/message.php:356 mod/photos.php:1290 -#: src/Content/Conversation.php:400 src/Content/Conversation.php:1576 -#: src/Module/Item/Compose.php:213 src/Module/Post/Edit.php:145 -#: src/Object/Post.php:618 +#: mod/message.php:188 mod/message.php:344 mod/photos.php:1255 +#: src/Content/Conversation.php:386 src/Content/Conversation.php:1562 +#: src/Module/Item/Compose.php:199 src/Module/Post/Edit.php:131 +#: src/Object/Post.php:604 msgid "Please wait" msgstr "Espere" -#: mod/message.php:201 mod/message.php:355 mod/photos.php:693 -#: mod/photos.php:813 mod/photos.php:1090 mod/photos.php:1131 -#: mod/photos.php:1187 mod/photos.php:1267 -#: src/Module/Calendar/Event/Form.php:250 src/Module/Contact/Advanced.php:132 +#: mod/message.php:189 mod/message.php:343 mod/photos.php:658 +#: mod/photos.php:778 mod/photos.php:1055 mod/photos.php:1096 +#: mod/photos.php:1152 mod/photos.php:1232 +#: src/Module/Calendar/Event/Form.php:236 src/Module/Contact/Advanced.php:118 #: src/Module/Contact/Profile.php:370 -#: src/Module/Debug/ActivityPubConversion.php:140 -#: 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 -#: src/Module/Invite.php:178 src/Module/Item/Compose.php:196 -#: src/Module/Moderation/Item/Source.php:79 -#: src/Module/Moderation/Report/Create.php:168 -#: src/Module/Moderation/Report/Create.php:183 -#: src/Module/Moderation/Report/Create.php:211 -#: src/Module/Moderation/Report/Create.php:263 -#: src/Module/Profile/Profile.php: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:1159 view/theme/duepuntozero/config.php:85 -#: view/theme/frio/config.php:150 view/theme/quattro/config.php:87 -#: view/theme/vier/config.php:135 +#: src/Module/Debug/ActivityPubConversion.php:132 +#: src/Module/Debug/Babel.php:307 src/Module/Debug/Localtime.php:50 +#: src/Module/Debug/Probe.php:40 src/Module/Debug/WebFinger.php:37 +#: src/Module/FriendSuggest.php:131 src/Module/Install.php:220 +#: src/Module/Install.php:260 src/Module/Install.php:295 +#: src/Module/Invite.php:164 src/Module/Item/Compose.php:182 +#: src/Module/Moderation/Item/Source.php:71 +#: src/Module/Moderation/Report/Create.php:154 +#: src/Module/Moderation/Report/Create.php:169 +#: src/Module/Moderation/Report/Create.php:197 +#: src/Module/Moderation/Report/Create.php:249 +#: src/Module/Profile/Profile.php:262 +#: src/Module/Settings/Profile/Index.php:248 +#: src/Module/Settings/Server/Action.php:65 src/Module/User/Delegation.php:175 +#: src/Object/Post.php:1145 view/theme/duepuntozero/config.php:73 +#: view/theme/frio/config.php:138 view/theme/quattro/config.php:75 +#: view/theme/vier/config.php:123 msgid "Submit" msgstr "Enviar" -#: mod/message.php:222 +#: mod/message.php:210 msgid "No messages." msgstr "No hay mensajes." -#: mod/message.php:278 +#: mod/message.php:266 msgid "Message not available." msgstr "Mensaje no disponibile." -#: mod/message.php:322 +#: mod/message.php:310 msgid "Delete message" msgstr "Borrar mensaje" -#: mod/message.php:324 mod/message.php:453 +#: mod/message.php:312 mod/message.php:441 msgid "D, d M Y - g:i A" msgstr "D, d M A - g:i A" -#: mod/message.php:339 mod/message.php:450 +#: mod/message.php:327 mod/message.php:438 msgid "Delete conversation" msgstr "Eliminar conversación" -#: mod/message.php:341 +#: mod/message.php:329 msgid "" "No secure communications available. You may be able to " "respond from the sender's profile page." msgstr "No hay comunicaciones seguras disponibles. Podrías responder desde la página de perfil del remitente. " -#: mod/message.php:344 +#: mod/message.php:332 msgid "Send Reply" msgstr "Enviar respuesta" -#: mod/message.php:424 +#: mod/message.php:412 #, php-format msgid "Unknown sender - %s" msgstr "Remitente desconocido - %s" -#: mod/message.php:426 +#: mod/message.php:414 #, php-format msgid "You and %s" msgstr "Tú y %s" -#: mod/message.php:428 +#: mod/message.php:416 #, php-format msgid "%s and You" msgstr "%s y Tú" -#: mod/message.php:456 +#: mod/message.php:444 #, php-format msgid "%d message" msgid_plural "%d messages" @@ -419,792 +418,799 @@ msgstr[0] "%d mensaje" msgstr[1] "%d mensajes" msgstr[2] "%d mensajes" -#: mod/notes.php:52 src/Module/BaseProfile.php:108 +#: mod/notes.php:40 src/Module/BaseProfile.php:94 msgid "Personal Notes" msgstr "Notas Personales" -#: mod/notes.php:56 +#: mod/notes.php:44 msgid "Personal notes are visible only by yourself." msgstr "Notas personales solo puedes verlas tu." -#: mod/notes.php:57 src/Content/Text/HTML.php:861 -#: src/Module/Admin/Storage.php:142 src/Module/Filer/SaveTag.php:74 -#: src/Module/Post/Edit.php:129 src/Module/Settings/Channels.php:229 +#: mod/notes.php:45 src/Content/Text/HTML.php:847 +#: src/Module/Admin/Storage.php:128 src/Module/Filer/SaveTag.php:60 +#: src/Module/Post/Edit.php:115 src/Module/Settings/Channels.php:215 msgid "Save" msgstr "Guardar" -#: mod/photos.php:65 mod/photos.php:128 mod/photos.php:572 -#: src/Model/Event.php:512 src/Model/Profile.php:234 -#: src/Module/Calendar/Export.php:74 src/Module/Calendar/Show.php:74 -#: src/Module/DFRN/Poll.php:43 src/Module/Feed.php:64 src/Module/HCard.php:51 -#: src/Module/Profile/Common.php:62 src/Module/Profile/Common.php:71 -#: src/Module/Profile/Contacts.php:64 src/Module/Profile/Contacts.php:72 -#: src/Module/Profile/Conversations.php:91 src/Module/Profile/Media.php:56 -#: src/Module/Profile/Photos.php:83 src/Module/Profile/RemoteFollow.php:71 -#: src/Module/Register.php:268 +#: mod/photos.php:54 mod/photos.php:117 mod/photos.php:537 +#: src/Model/Event.php:498 src/Model/Profile.php:213 +#: src/Module/Calendar/Export.php:60 src/Module/Calendar/Show.php:60 +#: src/Module/Feed.php:52 src/Module/HCard.php:37 +#: src/Module/Profile/Common.php:48 src/Module/Profile/Common.php:57 +#: src/Module/Profile/Contacts.php:50 src/Module/Profile/Contacts.php:58 +#: src/Module/Profile/Conversations.php:77 src/Module/Profile/Media.php:42 +#: src/Module/Profile/Photos.php:69 src/Module/Profile/RemoteFollow.php:57 +#: src/Module/Register.php:260 msgid "User not found." msgstr "Usuario no encontrado." -#: mod/photos.php:102 src/Module/BaseProfile.php:68 -#: src/Module/Profile/Photos.php:375 +#: mod/photos.php:91 src/Module/BaseProfile.php:54 +#: src/Module/Profile/Photos.php:361 msgid "Photo Albums" msgstr "Álbum de Fotos" -#: mod/photos.php:103 src/Module/Profile/Photos.php:376 -#: src/Module/Profile/Photos.php:396 +#: mod/photos.php:92 src/Module/Profile/Photos.php:362 +#: src/Module/Profile/Photos.php:382 msgid "Recent Photos" msgstr "Fotos Recientes" -#: mod/photos.php:105 mod/photos.php:861 src/Module/Profile/Photos.php:378 -#: src/Module/Profile/Photos.php:398 +#: mod/photos.php:94 mod/photos.php:826 src/Module/Profile/Photos.php:364 +#: src/Module/Profile/Photos.php:384 msgid "Upload New Photos" msgstr "Subir Nuevas Fotos" -#: mod/photos.php:117 src/Module/BaseSettings.php:72 -#: src/Module/Profile/Photos.php:359 +#: mod/photos.php:106 src/Module/BaseSettings.php:58 +#: src/Module/Profile/Photos.php:345 msgid "everybody" msgstr "todos" -#: mod/photos.php:153 +#: mod/photos.php:142 msgid "Contact information unavailable" msgstr "Información del contacto no disponible" -#: mod/photos.php:182 +#: mod/photos.php:171 msgid "Album not found." msgstr "Álbum no encontrado." -#: mod/photos.php:238 +#: mod/photos.php:227 msgid "Album successfully deleted" msgstr "Album borrado con éxito" -#: mod/photos.php:240 +#: mod/photos.php:229 msgid "Album was empty." msgstr "El Álbum estaba vacío." -#: mod/photos.php:271 +#: mod/photos.php:260 msgid "Failed to delete the photo." msgstr "Error al borrar la Foto" -#: mod/photos.php:539 +#: mod/photos.php:504 msgid "a photo" msgstr "una foto" -#: mod/photos.php:539 +#: mod/photos.php:504 #, 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:576 src/Module/Conversation/Community.php:160 -#: src/Module/Directory.php:48 src/Module/Profile/Photos.php:293 -#: src/Module/Search/Index.php:65 +#: mod/photos.php:541 src/Module/Conversation/Community.php:148 +#: src/Module/Directory.php:35 src/Module/Profile/Photos.php:279 +#: src/Module/Search/Index.php:51 msgid "Public access denied." msgstr "Acceso público denegado." -#: mod/photos.php:581 +#: mod/photos.php:546 msgid "No photos selected" msgstr "Ninguna foto seleccionada" -#: mod/photos.php:709 +#: mod/photos.php:674 #, php-format msgid "The maximum accepted image size is %s" msgstr "" -#: mod/photos.php:716 +#: mod/photos.php:681 msgid "Upload Photos" msgstr "Subir fotos" -#: mod/photos.php:720 mod/photos.php:809 +#: mod/photos.php:685 mod/photos.php:774 msgid "New album name: " msgstr "Nombre del nuevo álbum: " -#: mod/photos.php:721 +#: mod/photos.php:686 msgid "or select existing album:" msgstr "o seleccione un Álbum:" -#: mod/photos.php:722 +#: mod/photos.php:687 msgid "Do not show a status post for this upload" msgstr "No actualizar tu estado con este envío" -#: mod/photos.php:725 mod/photos.php:1086 src/Content/Conversation.php:402 -#: src/Module/Calendar/Event/Form.php:253 src/Module/Post/Edit.php:183 +#: mod/photos.php:690 mod/photos.php:1051 src/Content/Conversation.php:388 +#: src/Module/Calendar/Event/Form.php:239 src/Module/Post/Edit.php:169 msgid "Permissions" msgstr "Permisos" -#: mod/photos.php:790 +#: mod/photos.php:755 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:791 mod/photos.php:814 +#: mod/photos.php:756 mod/photos.php:779 msgid "Delete Album" msgstr "Eliminar álbum" -#: mod/photos.php:792 mod/photos.php:892 src/Content/Conversation.php:417 -#: 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 -#: src/Module/Media/Photo/Browser.php:88 src/Module/Post/Edit.php:167 -#: src/Module/Post/Tag/Remove.php:109 src/Module/Profile/RemoteFollow.php:134 -#: src/Module/Security/TwoFactor/SignOut.php:125 +#: mod/photos.php:757 mod/photos.php:857 src/Content/Conversation.php:403 +#: src/Module/Contact/Follow.php:154 src/Module/Contact/Revoke.php:92 +#: src/Module/Contact/Unfollow.php:112 +#: src/Module/Media/Attachment/Browser.php:63 +#: src/Module/Media/Photo/Browser.php:74 src/Module/Post/Edit.php:153 +#: src/Module/Post/Tag/Remove.php:95 src/Module/Profile/RemoteFollow.php:120 +#: src/Module/Security/TwoFactor/SignOut.php:111 msgid "Cancel" msgstr "Cancelar" -#: mod/photos.php:818 +#: mod/photos.php:783 msgid "Edit Album" msgstr "Modificar álbum" -#: mod/photos.php:819 +#: mod/photos.php:784 msgid "Drop Album" msgstr "Suelte un Álbum" -#: mod/photos.php:823 +#: mod/photos.php:788 msgid "Show Newest First" msgstr "Mostrar más nuevos primero" -#: mod/photos.php:825 +#: mod/photos.php:790 msgid "Show Oldest First" msgstr "Mostrar más antiguos primero" -#: mod/photos.php:846 src/Module/Profile/Photos.php:346 +#: mod/photos.php:811 src/Module/Profile/Photos.php:332 msgid "View Photo" msgstr "Ver foto" -#: mod/photos.php:878 +#: mod/photos.php:843 msgid "Permission denied. Access to this item may be restricted." msgstr "Permiso denegado. El acceso a este elemento puede estar restringido." -#: mod/photos.php:880 +#: mod/photos.php:845 msgid "Photo not available" msgstr "Foto no disponible" -#: mod/photos.php:890 +#: mod/photos.php:855 msgid "Do you really want to delete this photo?" msgstr "¿Estás seguro de que quieres borrar esta foto?" -#: mod/photos.php:891 mod/photos.php:1091 +#: mod/photos.php:856 mod/photos.php:1056 msgid "Delete Photo" msgstr "Eliminar foto" -#: mod/photos.php:989 +#: mod/photos.php:954 msgid "View photo" msgstr "Ver foto" -#: mod/photos.php:991 +#: mod/photos.php:956 msgid "Edit photo" msgstr "Modificar foto" -#: mod/photos.php:992 +#: mod/photos.php:957 msgid "Delete photo" msgstr "Borrar foto" -#: mod/photos.php:993 +#: mod/photos.php:958 msgid "Use as profile photo" msgstr "Usar como foto del perfil" -#: mod/photos.php:1000 +#: mod/photos.php:965 msgid "Private Photo" msgstr "Foto privada" -#: mod/photos.php:1006 +#: mod/photos.php:971 msgid "View Full Size" msgstr "Ver a tamaño completo" -#: mod/photos.php:1059 +#: mod/photos.php:1024 msgid "Tags: " msgstr "Etiquetas: " -#: mod/photos.php:1062 +#: mod/photos.php:1027 msgid "[Select tags to remove]" msgstr "[Seleccionar etiquetas a borrar]" -#: mod/photos.php:1077 +#: mod/photos.php:1042 msgid "New album name" msgstr "Nuevo nombre del álbum" -#: mod/photos.php:1078 +#: mod/photos.php:1043 msgid "Caption" msgstr "Título" -#: mod/photos.php:1079 +#: mod/photos.php:1044 msgid "Add a Tag" msgstr "Añadir una etiqueta" -#: mod/photos.php:1079 +#: mod/photos.php:1044 msgid "" "Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping" msgstr "Ejemplo: @juan, @Barbara_Ruiz, @julia@example.com, #California, #camping" -#: mod/photos.php:1080 +#: mod/photos.php:1045 msgid "Do not rotate" msgstr "No rotar" -#: mod/photos.php:1081 +#: mod/photos.php:1046 msgid "Rotate CW (right)" msgstr "Girar a la derecha" -#: mod/photos.php:1082 +#: mod/photos.php:1047 msgid "Rotate CCW (left)" msgstr "Girar a la izquierda" -#: mod/photos.php:1128 mod/photos.php:1184 mod/photos.php:1264 -#: src/Module/Contact.php:618 src/Module/Item/Compose.php:195 -#: src/Object/Post.php:1156 +#: mod/photos.php:1093 mod/photos.php:1149 mod/photos.php:1229 +#: src/Module/Contact.php:600 src/Module/Item/Compose.php:181 +#: src/Object/Post.php:1142 msgid "This is you" msgstr "Este eres tú" -#: mod/photos.php:1130 mod/photos.php:1186 mod/photos.php:1266 -#: src/Module/Moderation/Reports.php:110 src/Object/Post.php:612 -#: src/Object/Post.php:1158 +#: mod/photos.php:1095 mod/photos.php:1151 mod/photos.php:1231 +#: src/Module/Moderation/Reports.php:102 src/Object/Post.php:598 +#: src/Object/Post.php:1144 msgid "Comment" msgstr "Comentar" -#: mod/photos.php:1132 mod/photos.php:1188 mod/photos.php:1268 -#: src/Content/Conversation.php:414 src/Module/Calendar/Event/Form.php:248 -#: src/Module/Item/Compose.php:208 src/Module/Post/Edit.php:165 -#: src/Object/Post.php:1172 +#: mod/photos.php:1097 mod/photos.php:1153 mod/photos.php:1233 +#: src/Content/Conversation.php:400 src/Module/Calendar/Event/Form.php:234 +#: src/Module/Item/Compose.php:194 src/Module/Post/Edit.php:151 +#: src/Object/Post.php:1158 msgid "Preview" msgstr "Vista previa" -#: mod/photos.php:1133 src/Content/Conversation.php:368 -#: src/Module/Post/Edit.php:130 src/Object/Post.php:1160 +#: mod/photos.php:1098 src/Content/Conversation.php:354 +#: src/Module/Post/Edit.php:116 src/Object/Post.php:1146 msgid "Loading..." msgstr "Cargando..." -#: mod/photos.php:1225 src/Content/Conversation.php:1498 -#: src/Object/Post.php:274 +#: mod/photos.php:1190 src/Content/Conversation.php:1484 +#: src/Object/Post.php:260 msgid "Select" msgstr "Seleccionar" -#: mod/photos.php:1226 src/Content/Conversation.php:1499 -#: src/Module/Moderation/Users/Active.php:136 -#: src/Module/Moderation/Users/Blocked.php:136 -#: src/Module/Moderation/Users/Index.php:151 -#: src/Module/Settings/Connectors.php:244 -#: src/Module/Settings/Server/Index.php:109 +#: mod/photos.php:1191 src/Content/Conversation.php:1485 +#: src/Module/Moderation/Users/Active.php:122 +#: src/Module/Moderation/Users/Blocked.php:122 +#: src/Module/Moderation/Users/Index.php:137 +#: src/Module/Settings/Connectors.php:233 +#: src/Module/Settings/Server/Index.php:95 msgid "Delete" msgstr "Eliminar" -#: mod/photos.php:1287 src/Object/Post.php:440 +#: mod/photos.php:1252 src/Object/Post.php:426 msgid "Like" msgstr "Me gusta" -#: mod/photos.php:1288 src/Object/Post.php:440 +#: mod/photos.php:1253 src/Object/Post.php:426 msgid "I like this (toggle)" msgstr "Me gusta esto (cambiar)" -#: mod/photos.php:1289 src/Object/Post.php:441 +#: mod/photos.php:1254 src/Object/Post.php:427 msgid "Dislike" msgstr "No me gusta" -#: mod/photos.php:1291 src/Object/Post.php:441 +#: mod/photos.php:1256 src/Object/Post.php:427 msgid "I don't like this (toggle)" msgstr "No me gusta esto (cambiar)" -#: mod/photos.php:1313 +#: mod/photos.php:1278 msgid "Map" msgstr "Mapa" -#: src/App.php:438 +#: src/App.php:432 msgid "No system theme config value set." msgstr "No hay tema configurado." -#: src/App.php:546 +#: src/App.php:540 msgid "Apologies but the website is unavailable at the moment." msgstr "" -#: src/App/Page.php:250 +#: src/App/Page.php:236 msgid "Delete this item?" msgstr "¿Eliminar este elemento?" -#: src/App/Page.php:251 +#: src/App/Page.php:237 msgid "" "Block this author? They won't be able to follow you nor see your public " "posts, and you won't be able to see their posts and their notifications." msgstr "¿Bloquear a este autor? No podrá seguirte ni ver tus publicaciones públicas, y tú no podrás ver sus publicaciones ni sus notificaciones." -#: src/App/Page.php:252 +#: src/App/Page.php:238 msgid "" "Ignore this author? You won't be able to see their posts and their " "notifications." msgstr "" -#: src/App/Page.php:253 +#: src/App/Page.php:239 msgid "Collapse this author's posts?" msgstr "" -#: src/App/Page.php:254 +#: src/App/Page.php:240 msgid "Ignore this author's server?" msgstr "" -#: src/App/Page.php:255 src/Module/Settings/Server/Action.php:61 -#: src/Module/Settings/Server/Index.php:108 +#: src/App/Page.php:241 src/Module/Settings/Server/Action.php:47 +#: src/Module/Settings/Server/Index.php:94 msgid "" "You won't see any content from this server including reshares in your " "Network page, the community pages and individual conversations." msgstr "" -#: src/App/Page.php:257 +#: src/App/Page.php:243 msgid "Like not successful" msgstr "" -#: src/App/Page.php:258 +#: src/App/Page.php:244 msgid "Dislike not successful" msgstr "" -#: src/App/Page.php:259 +#: src/App/Page.php:245 msgid "Sharing not successful" msgstr "" -#: src/App/Page.php:260 +#: src/App/Page.php:246 msgid "Attendance unsuccessful" msgstr "" -#: src/App/Page.php:261 +#: src/App/Page.php:247 msgid "Backend error" msgstr "" -#: src/App/Page.php:262 +#: src/App/Page.php:248 msgid "Network error" msgstr "" -#: src/App/Page.php:265 +#: src/App/Page.php:251 msgid "Drop files here to upload" msgstr "" -#: src/App/Page.php:266 +#: src/App/Page.php:252 msgid "Your browser does not support drag and drop file uploads." msgstr "" -#: src/App/Page.php:267 +#: src/App/Page.php:253 msgid "" "Please use the fallback form below to upload your files like in the olden " "days." msgstr "" -#: src/App/Page.php:268 +#: src/App/Page.php:254 msgid "File is too big ({{filesize}}MiB). Max filesize: {{maxFilesize}}MiB." msgstr "" -#: src/App/Page.php:269 +#: src/App/Page.php:255 msgid "You can't upload files of this type." msgstr "" -#: src/App/Page.php:270 +#: src/App/Page.php:256 msgid "Server responded with {{statusCode}} code." msgstr "" -#: src/App/Page.php:271 +#: src/App/Page.php:257 msgid "Cancel upload" msgstr "" -#: src/App/Page.php:272 +#: src/App/Page.php:258 msgid "Upload canceled." msgstr "" -#: src/App/Page.php:273 +#: src/App/Page.php:259 msgid "Are you sure you want to cancel this upload?" msgstr "" -#: src/App/Page.php:274 +#: src/App/Page.php:260 msgid "Remove file" msgstr "" -#: src/App/Page.php:275 +#: src/App/Page.php:261 msgid "You can't upload any more files." msgstr "" -#: src/App/Page.php:353 +#: src/App/Page.php:339 msgid "toggle mobile" msgstr "Cambiar a versión móvil" -#: src/App/Router.php:309 +#: src/App/Router.php:295 #, php-format msgid "Method not allowed for this module. Allowed method(s): %s" msgstr "Método no permitido en este módulo. Permitido(s): %s" -#: src/App/Router.php:311 src/Module/HTTPException/PageNotFound.php:49 +#: src/App/Router.php:297 src/Module/HTTPException/PageNotFound.php:35 +#: src/Module/Stats.php:49 msgid "Page not found." msgstr "Pagina no encontrada." -#: src/App/Router.php:323 +#: src/App/Router.php:309 msgid "You must be logged in to use addons. " msgstr "Tienes que estar registrado para tener acceso a los accesorios." -#: src/BaseModule.php:407 +#: src/BaseModule.php:393 msgid "" "The form security token was not correct. This probably happened because the " "form has been opened for too long (>3 hours) before submitting it." msgstr "Token de la ficha de seguridad incorrecto. Seguramente haya ocurrido por haber dejado el formulario abierto demasiado tiempo (>3 horas) antes de enviarlo." -#: src/BaseModule.php:434 +#: src/BaseModule.php:420 msgid "All contacts" msgstr "Todos los Contactos" -#: src/BaseModule.php:439 src/Content/Conversation/Factory/Channel.php:46 -#: src/Content/Widget.php:240 src/Core/ACL.php:195 src/Module/Contact.php:414 -#: src/Module/Privacy/PermissionTooltip.php:164 -#: src/Module/Privacy/PermissionTooltip.php:186 -#: src/Module/Settings/Channels.php:160 +#: src/BaseModule.php:425 src/Content/Conversation/Factory/Channel.php:32 +#: src/Content/Widget.php:218 src/Core/ACL.php:181 src/Module/Contact.php:395 +#: src/Module/Privacy/PermissionTooltip.php:150 +#: src/Module/Privacy/PermissionTooltip.php:172 +#: src/Module/Settings/Channels.php:146 msgid "Followers" msgstr "Seguidores" -#: src/BaseModule.php:444 src/Content/Widget.php:241 -#: src/Module/Contact.php:417 src/Module/Settings/Channels.php:159 +#: src/BaseModule.php:430 src/Content/Widget.php:219 +#: src/Module/Contact.php:398 src/Module/Settings/Channels.php:145 msgid "Following" msgstr "Siguiendo" -#: src/BaseModule.php:449 src/Content/Widget.php:242 -#: src/Module/Contact.php:420 +#: src/BaseModule.php:435 src/Content/Widget.php:220 +#: src/Module/Contact.php:401 msgid "Mutual friends" msgstr "" -#: src/BaseModule.php:457 +#: src/BaseModule.php:443 msgid "Common" msgstr "Común" -#: src/Console/Addon.php:175 src/Console/Addon.php:199 +#: src/Console/Addon.php:161 src/Console/Addon.php:185 msgid "Addon not found" msgstr "" -#: src/Console/Addon.php:179 +#: src/Console/Addon.php:165 msgid "Addon already enabled" msgstr "" -#: src/Console/Addon.php:203 +#: src/Console/Addon.php:189 msgid "Addon already disabled" msgstr "" -#: src/Console/ArchiveContact.php:106 +#: src/Console/ArchiveContact.php:92 #, php-format msgid "Could not find any unarchived contact entry for this URL (%s)" msgstr "No se encontró contacto sin archivar en esa URL (%s)" -#: src/Console/ArchiveContact.php:109 +#: src/Console/ArchiveContact.php:95 msgid "The contact entries have been archived" msgstr "Entradas del contacto archivadas" -#: src/Console/GlobalCommunityBlock.php:96 -#: src/Module/Moderation/Blocklist/Contact.php:65 +#: src/Console/ClearAvatarCache.php:73 +msgid "" +"The avatar cache needs to be disabled in local.config.php to use this " +"command." +msgstr "" + +#: src/Console/GlobalCommunityBlock.php:82 +#: src/Module/Moderation/Blocklist/Contact.php:51 #, php-format msgid "Could not find any contact entry for this URL (%s)" msgstr "No se ha encontrado ninguna entrada de contacto para esta URL (%s)" -#: src/Console/GlobalCommunityBlock.php:101 -#: src/Module/Moderation/Blocklist/Contact.php:82 +#: src/Console/GlobalCommunityBlock.php:87 +#: src/Module/Moderation/Blocklist/Contact.php:68 msgid "The contact has been blocked from the node" msgstr "El contacto ha sido blockeado del nodo" -#: src/Console/MergeContacts.php:75 +#: src/Console/MergeContacts.php:61 #, php-format msgid "%d %s, %d duplicates." msgstr "" -#: src/Console/MergeContacts.php:78 +#: src/Console/MergeContacts.php:64 #, php-format msgid "uri-id is empty for contact %s." msgstr "" -#: src/Console/MergeContacts.php:91 +#: src/Console/MergeContacts.php:77 #, php-format msgid "No valid first contact found for uri-id %d." msgstr "" -#: src/Console/MergeContacts.php:102 +#: src/Console/MergeContacts.php:88 #, php-format msgid "Wrong duplicate found for uri-id %d in %d (url: %s != %s)." msgstr "" -#: src/Console/MergeContacts.php:106 +#: src/Console/MergeContacts.php:92 #, php-format msgid "Wrong duplicate found for uri-id %d in %d (nurl: %s != %s)." msgstr "" -#: src/Console/MergeContacts.php:142 +#: src/Console/MergeContacts.php:128 #, php-format msgid "Deletion of id %d failed" msgstr "" -#: src/Console/MergeContacts.php:144 +#: src/Console/MergeContacts.php:130 #, php-format msgid "Deletion of id %d was successful" msgstr "" -#: src/Console/MergeContacts.php:150 +#: src/Console/MergeContacts.php:136 #, php-format msgid "Updating \"%s\" in \"%s\" from %d to %d" msgstr "" -#: src/Console/MergeContacts.php:152 +#: src/Console/MergeContacts.php:138 msgid " - found" msgstr "" -#: src/Console/MergeContacts.php:159 +#: src/Console/MergeContacts.php:145 msgid " - failed" msgstr "" -#: src/Console/MergeContacts.php:161 +#: src/Console/MergeContacts.php:147 msgid " - success" msgstr "" -#: src/Console/MergeContacts.php:165 +#: src/Console/MergeContacts.php:151 msgid " - deleted" msgstr "" -#: src/Console/MergeContacts.php:168 +#: src/Console/MergeContacts.php:154 msgid " - done" msgstr "" -#: src/Console/MoveToAvatarCache.php:91 +#: src/Console/MoveToAvatarCache.php:77 msgid "The avatar cache needs to be enabled to use this command." msgstr "" -#: src/Console/MoveToAvatarCache.php:109 +#: src/Console/MoveToAvatarCache.php:95 #, php-format msgid "no resource in photo %s" msgstr "" -#: src/Console/MoveToAvatarCache.php:137 +#: src/Console/MoveToAvatarCache.php:123 #, php-format msgid "no photo with id %s" msgstr "" -#: src/Console/MoveToAvatarCache.php:146 +#: src/Console/MoveToAvatarCache.php:132 #, php-format msgid "no image data for photo with id %s" msgstr "" -#: src/Console/MoveToAvatarCache.php:155 +#: src/Console/MoveToAvatarCache.php:141 #, php-format msgid "invalid image for id %s" msgstr "" -#: src/Console/MoveToAvatarCache.php:168 +#: src/Console/MoveToAvatarCache.php:154 #, php-format msgid "Quit on invalid photo %s" msgstr "" -#: src/Console/PostUpdate.php:87 +#: src/Console/PostUpdate.php:73 #, php-format msgid "Post update version number has been set to %s." msgstr "Número de versión actualizado es %s." -#: src/Console/PostUpdate.php:95 +#: src/Console/PostUpdate.php:81 msgid "Check for pending update actions." msgstr "Checar acciones de actualización pendientes." -#: src/Console/PostUpdate.php:97 +#: src/Console/PostUpdate.php:83 msgid "Done." msgstr "Hecho." -#: src/Console/PostUpdate.php:99 +#: src/Console/PostUpdate.php:85 msgid "Execute pending post updates." msgstr "Ejecutar actualizaciones pendientes." -#: src/Console/PostUpdate.php:105 +#: src/Console/PostUpdate.php:91 msgid "All pending post updates are done." msgstr "Todas las actualizaciones hechas." -#: src/Console/User.php:158 src/Console/User.php:246 +#: src/Console/User.php:144 src/Console/User.php:232 msgid "Enter user nickname: " msgstr "Ingrese apodo: " -#: src/Console/User.php:182 src/Model/User.php:824 -#: src/Module/Api/Twitter/ContactEndpoint.php:74 -#: src/Module/Moderation/Users/Active.php:71 -#: src/Module/Moderation/Users/Blocked.php:71 -#: src/Module/Moderation/Users/Index.php:78 -#: src/Module/Moderation/Users/Pending.php:67 +#: src/Console/User.php:168 src/Model/User.php:831 +#: src/Module/Api/Twitter/ContactEndpoint.php:60 +#: src/Module/Moderation/Users/Active.php:57 +#: src/Module/Moderation/Users/Blocked.php:57 +#: src/Module/Moderation/Users/Index.php:64 +#: src/Module/Moderation/Users/Pending.php:53 msgid "User not found" msgstr "Usuario no encontrado" -#: src/Console/User.php:202 +#: src/Console/User.php:188 msgid "Enter new password: " msgstr "Ingrese nueva contraseña: " -#: src/Console/User.php:210 src/Module/Security/PasswordTooLong.php:69 -#: src/Module/Settings/Account.php:75 +#: src/Console/User.php:196 src/Module/Security/PasswordTooLong.php:55 +#: src/Module/Settings/Account.php:61 msgid "Password update failed. Please try again." msgstr "Actualización de contraseña falló. Intente de nuevo." -#: src/Console/User.php:213 src/Module/Security/PasswordTooLong.php:72 -#: src/Module/Settings/Account.php:78 +#: src/Console/User.php:199 src/Module/Security/PasswordTooLong.php:58 +#: src/Module/Settings/Account.php:64 msgid "Password changed." msgstr "Contraseña modificada." -#: src/Console/User.php:238 +#: src/Console/User.php:224 msgid "Enter user name: " msgstr "Ingrese usuario: " -#: src/Console/User.php:254 +#: src/Console/User.php:240 msgid "Enter user email address: " msgstr "Ingrese corréo electrónco: " -#: src/Console/User.php:262 +#: src/Console/User.php:248 msgid "Enter a language (optional): " msgstr "Ingrese lenguaje (pcional): " -#: src/Console/User.php:267 +#: src/Console/User.php:253 msgid "Enter URL of an image to use as avatar (optional): " msgstr "" -#: src/Console/User.php:292 +#: src/Console/User.php:278 msgid "User is not pending." msgstr "Usuario no pendiente." -#: src/Console/User.php:324 +#: src/Console/User.php:310 msgid "User has already been marked for deletion." msgstr "Usuario ya fue marcado para borrado." -#: src/Console/User.php:329 +#: src/Console/User.php:315 #, php-format msgid "Type \"yes\" to delete %s" msgstr "Escribe \"si\" para borrar %s" -#: src/Console/User.php:331 +#: src/Console/User.php:317 msgid "Deletion aborted." msgstr "Borrado cancelado." -#: src/Console/User.php:456 +#: src/Console/User.php:442 msgid "Enter category: " msgstr "" -#: src/Console/User.php:466 +#: src/Console/User.php:452 msgid "Enter key: " msgstr "" -#: src/Console/User.php:500 +#: src/Console/User.php:486 msgid "Enter value: " msgstr "" -#: src/Content/BoundariesPager.php:116 src/Content/Pager.php:171 +#: src/Content/BoundariesPager.php:102 src/Content/Pager.php:157 msgid "newer" msgstr "más nuevo" -#: src/Content/BoundariesPager.php:124 src/Content/Pager.php:176 +#: src/Content/BoundariesPager.php:110 src/Content/Pager.php:162 msgid "older" msgstr "más antiguo" -#: src/Content/ContactSelector.php:51 +#: src/Content/ContactSelector.php:37 msgid "Frequently" msgstr "Frecuentemente" -#: src/Content/ContactSelector.php:52 +#: src/Content/ContactSelector.php:38 msgid "Hourly" msgstr "Cada hora" -#: src/Content/ContactSelector.php:53 +#: src/Content/ContactSelector.php:39 msgid "Twice daily" msgstr "Dos veces al dia" -#: src/Content/ContactSelector.php:54 +#: src/Content/ContactSelector.php:40 msgid "Daily" msgstr "Diariamente" -#: src/Content/ContactSelector.php:55 +#: src/Content/ContactSelector.php:41 msgid "Weekly" msgstr "Semanal" -#: src/Content/ContactSelector.php:56 +#: src/Content/ContactSelector.php:42 msgid "Monthly" msgstr "Mensual" -#: src/Content/ContactSelector.php:126 +#: src/Content/ContactSelector.php:112 msgid "DFRN" msgstr "DFRN" -#: src/Content/ContactSelector.php:127 +#: src/Content/ContactSelector.php:113 msgid "OStatus" msgstr "OStatus" -#: src/Content/ContactSelector.php:128 +#: src/Content/ContactSelector.php:114 msgid "RSS/Atom" msgstr "RSS/Atom" -#: src/Content/ContactSelector.php:129 -#: src/Module/Moderation/Users/Active.php:126 -#: src/Module/Moderation/Users/Blocked.php:126 -#: src/Module/Moderation/Users/Create.php:72 -#: src/Module/Moderation/Users/Deleted.php:83 -#: src/Module/Moderation/Users/Index.php:140 -#: src/Module/Moderation/Users/Index.php:160 -#: src/Module/Moderation/Users/Pending.php:99 +#: src/Content/ContactSelector.php:115 +#: src/Module/Moderation/Users/Active.php:112 +#: src/Module/Moderation/Users/Blocked.php:112 +#: src/Module/Moderation/Users/Create.php:58 +#: src/Module/Moderation/Users/Deleted.php:69 +#: src/Module/Moderation/Users/Index.php:126 +#: src/Module/Moderation/Users/Index.php:146 +#: src/Module/Moderation/Users/Pending.php:85 msgid "Email" msgstr "Correo" -#: src/Content/ContactSelector.php:130 src/Module/Debug/Babel.php:309 +#: src/Content/ContactSelector.php:116 src/Module/Debug/Babel.php:301 msgid "Diaspora" msgstr "Diaspora*" -#: src/Content/ContactSelector.php:131 +#: src/Content/ContactSelector.php:117 msgid "Zot!" msgstr "Zot!" -#: src/Content/ContactSelector.php:132 +#: src/Content/ContactSelector.php:118 msgid "LinkedIn" msgstr "LinkedIn" -#: src/Content/ContactSelector.php:133 +#: src/Content/ContactSelector.php:119 msgid "XMPP/IM" msgstr "XMPP/IM" -#: src/Content/ContactSelector.php:134 +#: src/Content/ContactSelector.php:120 msgid "MySpace" msgstr "MySpace" -#: src/Content/ContactSelector.php:135 +#: src/Content/ContactSelector.php:121 msgid "Google+" msgstr "Google+" -#: src/Content/ContactSelector.php:136 +#: src/Content/ContactSelector.php:122 msgid "pump.io" msgstr "pump.io" -#: src/Content/ContactSelector.php:137 +#: src/Content/ContactSelector.php:123 msgid "Twitter" msgstr "Twitter" -#: src/Content/ContactSelector.php:138 +#: src/Content/ContactSelector.php:124 msgid "Discourse" msgstr "Discourse" -#: src/Content/ContactSelector.php:139 +#: src/Content/ContactSelector.php:125 msgid "Diaspora Connector" msgstr "Conectos Diaspora" -#: src/Content/ContactSelector.php:140 +#: src/Content/ContactSelector.php:126 msgid "GNU Social Connector" msgstr "Conector GNU Social" -#: src/Content/ContactSelector.php:141 +#: src/Content/ContactSelector.php:127 msgid "ActivityPub" msgstr "ActivityPub" -#: src/Content/ContactSelector.php:142 +#: src/Content/ContactSelector.php:128 msgid "pnut" msgstr "pnut" -#: src/Content/ContactSelector.php:143 +#: src/Content/ContactSelector.php:129 msgid "Tumblr" msgstr "" -#: src/Content/ContactSelector.php:144 +#: src/Content/ContactSelector.php:130 msgid "Bluesky" msgstr "" -#: src/Content/ContactSelector.php:180 +#: src/Content/ContactSelector.php:166 #, php-format msgid "%s (via %s)" msgstr "%s (a través %s)" -#: src/Content/Conversation.php:226 +#: src/Content/Conversation.php:212 msgid "and" msgstr "y" -#: src/Content/Conversation.php:229 +#: src/Content/Conversation.php:215 #, php-format msgid "and %d other people" msgstr "y a otras %d personas" -#: src/Content/Conversation.php:235 +#: src/Content/Conversation.php:221 #, php-format msgid "%2$s likes this." msgid_plural "%2$s like this." @@ -1212,7 +1218,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: src/Content/Conversation.php:237 +#: src/Content/Conversation.php:223 #, php-format msgid "%2$s doesn't like this." msgid_plural "%2$s don't like this." @@ -1220,7 +1226,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: src/Content/Conversation.php:239 +#: src/Content/Conversation.php:225 #, php-format msgid "%2$s attends." msgid_plural "%2$s attend." @@ -1228,7 +1234,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: src/Content/Conversation.php:241 +#: src/Content/Conversation.php:227 #, php-format msgid "%2$s doesn't attend." msgid_plural "%2$s don't attend." @@ -1236,7 +1242,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: src/Content/Conversation.php:243 +#: src/Content/Conversation.php:229 #, php-format msgid "%2$s attends maybe." msgid_plural "%2$s attend maybe." @@ -1244,7 +1250,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: src/Content/Conversation.php:245 +#: src/Content/Conversation.php:231 #, php-format msgid "%2$s reshared this." msgid_plural "%2$s reshared this." @@ -1252,7 +1258,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: src/Content/Conversation.php:276 +#: src/Content/Conversation.php:262 #, php-format msgid " likes this" msgid_plural " like this" @@ -1260,7 +1266,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: src/Content/Conversation.php:279 +#: src/Content/Conversation.php:265 #, php-format msgid " doesn't like this" msgid_plural " don't like this" @@ -1268,7 +1274,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: src/Content/Conversation.php:282 +#: src/Content/Conversation.php:268 #, php-format msgid " attends" msgid_plural " attend" @@ -1276,7 +1282,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: src/Content/Conversation.php:285 +#: src/Content/Conversation.php:271 #, php-format msgid " doesn't attend" msgid_plural " don't attend" @@ -1284,7 +1290,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: src/Content/Conversation.php:288 +#: src/Content/Conversation.php:274 #, php-format msgid " attends maybe" msgid_plural " attend maybe" @@ -1292,7 +1298,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: src/Content/Conversation.php:291 +#: src/Content/Conversation.php:277 #, php-format msgid " reshared this" msgid_plural " reshared this" @@ -1300,1099 +1306,1099 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: src/Content/Conversation.php:337 +#: src/Content/Conversation.php:323 msgid "Visible to everybody" msgstr "Visible para cualquiera" -#: src/Content/Conversation.php:338 src/Module/Item/Compose.php:207 -#: src/Object/Post.php:1171 +#: src/Content/Conversation.php:324 src/Module/Item/Compose.php:193 +#: src/Object/Post.php:1157 msgid "Please enter a image/video/audio/webpage URL:" msgstr "Escoja una dirección de imágen/video/audio/sitio:" -#: src/Content/Conversation.php:339 +#: src/Content/Conversation.php:325 msgid "Tag term:" msgstr "Etiqueta:" -#: src/Content/Conversation.php:340 src/Module/Filer/SaveTag.php:73 +#: src/Content/Conversation.php:326 src/Module/Filer/SaveTag.php:59 msgid "Save to Folder:" msgstr "Guardar en directorio:" -#: src/Content/Conversation.php:341 +#: src/Content/Conversation.php:327 msgid "Where are you right now?" msgstr "¿Dónde estás ahora?" -#: src/Content/Conversation.php:342 +#: src/Content/Conversation.php:328 msgid "Delete item(s)?" msgstr "¿Borrar artículo(s)?" -#: src/Content/Conversation.php:354 src/Module/Item/Compose.php:182 +#: src/Content/Conversation.php:340 src/Module/Item/Compose.php:168 msgid "Created at" msgstr "" -#: src/Content/Conversation.php:364 +#: src/Content/Conversation.php:350 msgid "New Post" msgstr "Nuevo artículo" -#: src/Content/Conversation.php:367 +#: src/Content/Conversation.php:353 msgid "Share" msgstr "Compartir" -#: src/Content/Conversation.php:370 src/Module/Post/Edit.php:132 +#: src/Content/Conversation.php:356 src/Module/Post/Edit.php:118 msgid "upload photo" msgstr "subir foto" -#: src/Content/Conversation.php:371 src/Module/Post/Edit.php:133 +#: src/Content/Conversation.php:357 src/Module/Post/Edit.php:119 msgid "Attach file" msgstr "Añadir archivo" -#: src/Content/Conversation.php:372 src/Module/Post/Edit.php:134 +#: src/Content/Conversation.php:358 src/Module/Post/Edit.php:120 msgid "attach file" msgstr "añadir archivo" -#: src/Content/Conversation.php:373 src/Module/Item/Compose.php:197 -#: src/Module/Post/Edit.php:171 src/Object/Post.php:1161 +#: src/Content/Conversation.php:359 src/Module/Item/Compose.php:183 +#: src/Module/Post/Edit.php:157 src/Object/Post.php:1147 msgid "Bold" msgstr "Negrita" -#: src/Content/Conversation.php:374 src/Module/Item/Compose.php:198 -#: src/Module/Post/Edit.php:172 src/Object/Post.php:1162 +#: src/Content/Conversation.php:360 src/Module/Item/Compose.php:184 +#: src/Module/Post/Edit.php:158 src/Object/Post.php:1148 msgid "Italic" msgstr "Cursiva" -#: src/Content/Conversation.php:375 src/Module/Item/Compose.php:199 -#: src/Module/Post/Edit.php:173 src/Object/Post.php:1163 +#: src/Content/Conversation.php:361 src/Module/Item/Compose.php:185 +#: src/Module/Post/Edit.php:159 src/Object/Post.php:1149 msgid "Underline" msgstr "Subrayado" -#: src/Content/Conversation.php:376 src/Module/Item/Compose.php:200 -#: src/Module/Post/Edit.php:174 src/Object/Post.php:1165 +#: src/Content/Conversation.php:362 src/Module/Item/Compose.php:186 +#: src/Module/Post/Edit.php:160 src/Object/Post.php:1151 msgid "Quote" msgstr "Cita" -#: src/Content/Conversation.php:377 src/Module/Item/Compose.php:201 -#: src/Module/Post/Edit.php:175 src/Object/Post.php:1166 +#: src/Content/Conversation.php:363 src/Module/Item/Compose.php:187 +#: src/Module/Post/Edit.php:161 src/Object/Post.php:1152 msgid "Add emojis" msgstr "" -#: src/Content/Conversation.php:378 src/Module/Item/Compose.php:202 -#: src/Object/Post.php:1164 +#: src/Content/Conversation.php:364 src/Module/Item/Compose.php:188 +#: src/Object/Post.php:1150 msgid "Content Warning" msgstr "" -#: src/Content/Conversation.php:379 src/Module/Item/Compose.php:203 -#: src/Module/Post/Edit.php:176 src/Object/Post.php:1167 +#: src/Content/Conversation.php:365 src/Module/Item/Compose.php:189 +#: src/Module/Post/Edit.php:162 src/Object/Post.php:1153 msgid "Code" msgstr "Código" -#: src/Content/Conversation.php:380 src/Module/Item/Compose.php:204 -#: src/Object/Post.php:1168 +#: src/Content/Conversation.php:366 src/Module/Item/Compose.php:190 +#: src/Object/Post.php:1154 msgid "Image" msgstr "Imagen" -#: src/Content/Conversation.php:381 src/Module/Item/Compose.php:205 -#: src/Module/Post/Edit.php:177 src/Object/Post.php:1169 +#: src/Content/Conversation.php:367 src/Module/Item/Compose.php:191 +#: src/Module/Post/Edit.php:163 src/Object/Post.php:1155 msgid "Link" msgstr "Enlace" -#: src/Content/Conversation.php:382 src/Module/Item/Compose.php:206 -#: src/Module/Post/Edit.php:178 src/Object/Post.php:1170 +#: src/Content/Conversation.php:368 src/Module/Item/Compose.php:192 +#: src/Module/Post/Edit.php:164 src/Object/Post.php:1156 msgid "Link or Media" msgstr "Enlace o Multimedia" -#: src/Content/Conversation.php:383 +#: src/Content/Conversation.php:369 msgid "Video" msgstr "" -#: src/Content/Conversation.php:384 src/Module/Item/Compose.php:209 -#: src/Module/Post/Edit.php:141 +#: src/Content/Conversation.php:370 src/Module/Item/Compose.php:195 +#: src/Module/Post/Edit.php:127 msgid "Set your location" msgstr "Selecciona tu ubicación" -#: src/Content/Conversation.php:385 src/Module/Post/Edit.php:142 +#: src/Content/Conversation.php:371 src/Module/Post/Edit.php:128 msgid "set location" msgstr "establecer ubicación" -#: src/Content/Conversation.php:386 src/Module/Post/Edit.php:143 +#: src/Content/Conversation.php:372 src/Module/Post/Edit.php:129 msgid "Clear browser location" msgstr "Borrar ubicación del navegador" -#: src/Content/Conversation.php:387 src/Module/Post/Edit.php:144 +#: src/Content/Conversation.php:373 src/Module/Post/Edit.php:130 msgid "clear location" msgstr "borrar ubicación" -#: src/Content/Conversation.php:389 src/Module/Item/Compose.php:214 -#: src/Module/Post/Edit.php:157 +#: src/Content/Conversation.php:375 src/Module/Item/Compose.php:200 +#: src/Module/Post/Edit.php:143 msgid "Set title" msgstr "Establecer título" -#: src/Content/Conversation.php:391 src/Module/Item/Compose.php:215 -#: src/Module/Post/Edit.php:159 +#: src/Content/Conversation.php:377 src/Module/Item/Compose.php:201 +#: src/Module/Post/Edit.php:145 msgid "Categories (comma-separated list)" msgstr "Categorías (lista separada por comas)" -#: src/Content/Conversation.php:396 src/Module/Item/Compose.php:231 +#: src/Content/Conversation.php:382 src/Module/Item/Compose.php:217 msgid "Scheduled at" msgstr "" -#: src/Content/Conversation.php:401 src/Module/Post/Edit.php:146 +#: src/Content/Conversation.php:387 src/Module/Post/Edit.php:132 msgid "Permission settings" msgstr "Configuración de permisos" -#: src/Content/Conversation.php:410 src/Module/Post/Edit.php:155 +#: src/Content/Conversation.php:396 src/Module/Post/Edit.php:141 msgid "Public post" msgstr "Artículo público" -#: src/Content/Conversation.php:424 src/Content/Widget/VCard.php:131 -#: src/Model/Profile.php:483 src/Module/Admin/Logs/View.php:94 -#: src/Module/Post/Edit.php:181 +#: src/Content/Conversation.php:410 src/Content/Widget/VCard.php:117 +#: src/Model/Profile.php:462 src/Module/Admin/Logs/View.php:80 +#: src/Module/Post/Edit.php:167 msgid "Message" msgstr "Mensaje" -#: src/Content/Conversation.php:425 src/Module/Post/Edit.php:182 -#: src/Module/Settings/TwoFactor/Trusted.php:143 +#: src/Content/Conversation.php:411 src/Module/Post/Edit.php:168 +#: src/Module/Settings/TwoFactor/Trusted.php:129 msgid "Browser" msgstr "Navegador" -#: src/Content/Conversation.php:427 src/Module/Post/Edit.php:185 +#: src/Content/Conversation.php:413 src/Module/Post/Edit.php:171 msgid "Open Compose page" msgstr "Abrir página de publicación" -#: src/Content/Conversation.php:594 +#: src/Content/Conversation.php:580 msgid "remove" msgstr "eliminar" -#: src/Content/Conversation.php:598 +#: src/Content/Conversation.php:584 msgid "Delete Selected Items" msgstr "Eliminar los seleccionados" -#: src/Content/Conversation.php:726 src/Content/Conversation.php:729 -#: src/Content/Conversation.php:732 src/Content/Conversation.php:735 -#: src/Content/Conversation.php:738 +#: src/Content/Conversation.php:712 src/Content/Conversation.php:715 +#: src/Content/Conversation.php:718 src/Content/Conversation.php:721 +#: src/Content/Conversation.php:724 #, php-format msgid "You had been addressed (%s)." msgstr "Has sido mencionado (%s)." -#: src/Content/Conversation.php:741 +#: src/Content/Conversation.php:727 #, php-format msgid "You are following %s." msgstr "Estas siguiendo %s." -#: src/Content/Conversation.php:746 +#: src/Content/Conversation.php:732 #, php-format msgid "You subscribed to %s." msgstr "" -#: src/Content/Conversation.php:748 +#: src/Content/Conversation.php:734 msgid "You subscribed to one or more tags in this post." msgstr "" -#: src/Content/Conversation.php:768 +#: src/Content/Conversation.php:754 #, php-format msgid "%s reshared this." msgstr "%s reenvió esto." -#: src/Content/Conversation.php:770 +#: src/Content/Conversation.php:756 msgid "Reshared" msgstr "Compartido" -#: src/Content/Conversation.php:770 +#: src/Content/Conversation.php:756 #, php-format msgid "Reshared by %s <%s>" msgstr "" -#: src/Content/Conversation.php:773 +#: src/Content/Conversation.php:759 #, php-format msgid "%s is participating in this thread." msgstr "%s participa en el hilo." -#: src/Content/Conversation.php:776 +#: src/Content/Conversation.php:762 msgid "Stored for general reasons" msgstr "" -#: src/Content/Conversation.php:779 +#: src/Content/Conversation.php:765 msgid "Global post" msgstr "" -#: src/Content/Conversation.php:782 +#: src/Content/Conversation.php:768 msgid "Sent via an relay server" msgstr "" -#: src/Content/Conversation.php:782 +#: src/Content/Conversation.php:768 #, php-format msgid "Sent via the relay server %s <%s>" msgstr "" -#: src/Content/Conversation.php:785 +#: src/Content/Conversation.php:771 msgid "Fetched" msgstr "Recuperado" -#: src/Content/Conversation.php:785 +#: src/Content/Conversation.php:771 #, php-format msgid "Fetched because of %s <%s>" msgstr "" -#: src/Content/Conversation.php:788 +#: src/Content/Conversation.php:774 msgid "Stored because of a child post to complete this thread." msgstr "" -#: src/Content/Conversation.php:791 +#: src/Content/Conversation.php:777 msgid "Local delivery" msgstr "" -#: src/Content/Conversation.php:794 +#: src/Content/Conversation.php:780 msgid "Stored because of your activity (like, comment, star, ...)" msgstr "" -#: src/Content/Conversation.php:797 +#: src/Content/Conversation.php:783 msgid "Distributed" msgstr "" -#: src/Content/Conversation.php:800 +#: src/Content/Conversation.php:786 msgid "Pushed to us" msgstr "" -#: src/Content/Conversation.php:1518 src/Object/Post.php:261 +#: src/Content/Conversation.php:1504 src/Object/Post.php:247 msgid "Pinned item" msgstr "" -#: src/Content/Conversation.php:1535 src/Object/Post.php:555 -#: src/Object/Post.php:556 +#: src/Content/Conversation.php:1521 src/Object/Post.php:541 +#: src/Object/Post.php:542 #, php-format msgid "View %s's profile @ %s" msgstr "Ver perfil de %s @ %s" -#: src/Content/Conversation.php:1549 src/Object/Post.php:543 +#: src/Content/Conversation.php:1535 src/Object/Post.php:529 msgid "Categories:" msgstr "Categorías:" -#: src/Content/Conversation.php:1550 src/Object/Post.php:544 +#: src/Content/Conversation.php:1536 src/Object/Post.php:530 msgid "Filed under:" msgstr "Archivado en:" -#: src/Content/Conversation.php:1558 src/Object/Post.php:570 +#: src/Content/Conversation.php:1544 src/Object/Post.php:556 #, php-format msgid "%s from %s" msgstr "%s de %s" -#: src/Content/Conversation.php:1574 +#: src/Content/Conversation.php:1560 msgid "View in context" msgstr "Verlo en contexto" -#: src/Content/Conversation/Factory/Channel.php:42 +#: src/Content/Conversation/Factory/Channel.php:28 msgid "For you" msgstr "" -#: src/Content/Conversation/Factory/Channel.php:42 +#: src/Content/Conversation/Factory/Channel.php:28 msgid "Posts from contacts you interact with and who interact with you" msgstr "" -#: src/Content/Conversation/Factory/Channel.php:43 +#: src/Content/Conversation/Factory/Channel.php:29 msgid "Discover" msgstr "" -#: src/Content/Conversation/Factory/Channel.php:43 +#: src/Content/Conversation/Factory/Channel.php:29 msgid "Posts from accounts that you don't follow, but that you might like." msgstr "" -#: src/Content/Conversation/Factory/Channel.php:44 +#: src/Content/Conversation/Factory/Channel.php:30 msgid "What's Hot" msgstr "" -#: src/Content/Conversation/Factory/Channel.php:44 +#: src/Content/Conversation/Factory/Channel.php:30 msgid "Posts with a lot of interactions" msgstr "" -#: src/Content/Conversation/Factory/Channel.php:45 +#: src/Content/Conversation/Factory/Channel.php:31 #, php-format msgid "Posts in %s" msgstr "" -#: src/Content/Conversation/Factory/Channel.php:46 +#: src/Content/Conversation/Factory/Channel.php:32 msgid "Posts from your followers that you don't follow" msgstr "" -#: src/Content/Conversation/Factory/Channel.php:47 +#: src/Content/Conversation/Factory/Channel.php:33 msgid "Sharers of sharers" msgstr "" -#: src/Content/Conversation/Factory/Channel.php:47 +#: src/Content/Conversation/Factory/Channel.php:33 msgid "Posts from accounts that are followed by accounts that you follow" msgstr "" -#: src/Content/Conversation/Factory/Channel.php:48 +#: src/Content/Conversation/Factory/Channel.php:34 msgid "Quiet sharers" msgstr "" -#: src/Content/Conversation/Factory/Channel.php:48 +#: src/Content/Conversation/Factory/Channel.php:34 msgid "Posts from accounts that you follow but who don't post very often" msgstr "" -#: src/Content/Conversation/Factory/Channel.php:49 -#: src/Module/Settings/Channels.php:199 src/Module/Settings/Channels.php:220 +#: src/Content/Conversation/Factory/Channel.php:35 +#: src/Module/Settings/Channels.php:185 src/Module/Settings/Channels.php:206 msgid "Images" msgstr "" -#: src/Content/Conversation/Factory/Channel.php:49 +#: src/Content/Conversation/Factory/Channel.php:35 msgid "Posts with images" msgstr "" -#: src/Content/Conversation/Factory/Channel.php:50 -#: src/Module/Settings/Channels.php:201 src/Module/Settings/Channels.php:222 +#: src/Content/Conversation/Factory/Channel.php:36 +#: src/Module/Settings/Channels.php:187 src/Module/Settings/Channels.php:208 msgid "Audio" msgstr "" -#: src/Content/Conversation/Factory/Channel.php:50 +#: src/Content/Conversation/Factory/Channel.php:36 msgid "Posts with audio" msgstr "" -#: src/Content/Conversation/Factory/Channel.php:51 -#: src/Module/Settings/Channels.php:200 src/Module/Settings/Channels.php:221 +#: src/Content/Conversation/Factory/Channel.php:37 +#: src/Module/Settings/Channels.php:186 src/Module/Settings/Channels.php:207 msgid "Videos" msgstr "" -#: src/Content/Conversation/Factory/Channel.php:51 +#: src/Content/Conversation/Factory/Channel.php:37 msgid "Posts with videos" msgstr "" -#: src/Content/Conversation/Factory/Community.php:43 +#: src/Content/Conversation/Factory/Community.php:29 msgid "Local Community" msgstr "Comunidad Local" -#: src/Content/Conversation/Factory/Community.php:43 +#: src/Content/Conversation/Factory/Community.php:29 msgid "Posts from local users on this server" msgstr "Artículos de usuarios charla! MX" -#: src/Content/Conversation/Factory/Community.php:47 -#: src/Module/Settings/Channels.php:150 src/Module/Settings/Channels.php:155 +#: src/Content/Conversation/Factory/Community.php:33 +#: src/Module/Settings/Channels.php:136 src/Module/Settings/Channels.php:141 msgid "Global Community" msgstr "Comunidad Global" -#: src/Content/Conversation/Factory/Community.php:47 +#: src/Content/Conversation/Factory/Community.php:33 msgid "Posts from users of the whole federated network" msgstr "Artículos de usuarios del Fediverso" -#: src/Content/Conversation/Factory/Network.php:38 -#: src/Module/Settings/Channels.php:156 +#: src/Content/Conversation/Factory/Network.php:24 +#: src/Module/Settings/Channels.php:142 msgid "Latest Activity" msgstr "Actividad Reciente" -#: src/Content/Conversation/Factory/Network.php:38 +#: src/Content/Conversation/Factory/Network.php:24 msgid "Sort by latest activity" msgstr "Ordenar por actividad reciente" -#: src/Content/Conversation/Factory/Network.php:39 -#: src/Module/Settings/Channels.php:157 +#: src/Content/Conversation/Factory/Network.php:25 +#: src/Module/Settings/Channels.php:143 msgid "Latest Posts" msgstr "Artículos Recientes" -#: src/Content/Conversation/Factory/Network.php:39 +#: src/Content/Conversation/Factory/Network.php:25 msgid "Sort by post received date" msgstr "Ordenar por fecha de artículo" -#: src/Content/Conversation/Factory/Network.php:40 -#: src/Module/Settings/Channels.php:158 +#: src/Content/Conversation/Factory/Network.php:26 +#: src/Module/Settings/Channels.php:144 msgid "Latest Creation" msgstr "" -#: src/Content/Conversation/Factory/Network.php:40 +#: src/Content/Conversation/Factory/Network.php:26 msgid "Sort by post creation date" msgstr "" -#: src/Content/Conversation/Factory/Network.php:41 -#: src/Module/Settings/Profile/Index.php:260 +#: src/Content/Conversation/Factory/Network.php:27 +#: src/Module/Settings/Profile/Index.php:251 msgid "Personal" msgstr "Personal" -#: src/Content/Conversation/Factory/Network.php:41 +#: src/Content/Conversation/Factory/Network.php:27 msgid "Posts that mention or involve you" msgstr "Publicaciones que te mencionan o involucran" -#: src/Content/Conversation/Factory/Network.php:42 src/Object/Post.php:411 +#: src/Content/Conversation/Factory/Network.php:28 src/Object/Post.php:397 msgid "Starred" msgstr "Destacados" -#: src/Content/Conversation/Factory/Network.php:42 +#: src/Content/Conversation/Factory/Network.php:28 msgid "Favourite Posts" msgstr "Artículos favoritos" -#: src/Content/Feature.php:107 +#: src/Content/Feature.php:93 msgid "General Features" msgstr "Opciones generales" -#: src/Content/Feature.php:109 +#: src/Content/Feature.php:95 msgid "Photo Location" msgstr "Ubicación de foto" -#: src/Content/Feature.php:109 +#: src/Content/Feature.php:95 msgid "" "Photo metadata is normally stripped. This extracts the location (if present)" " prior to stripping metadata and links it to a map." msgstr "Normalmente los meta datos de las imágenes son eliminados. Esto extraerá la localización si presente antes de eliminar los meta datos y enlaza la misma con el mapa." -#: src/Content/Feature.php:110 +#: src/Content/Feature.php:96 msgid "Display the community in the navigation" msgstr "" -#: src/Content/Feature.php:110 +#: src/Content/Feature.php:96 msgid "" "If enabled, the community can be accessed via the navigation menu. " "Independent from this setting, the community timelines can always be " "accessed via the channels." msgstr "" -#: src/Content/Feature.php:115 +#: src/Content/Feature.php:101 msgid "Post Composition Features" msgstr "Opciones de edición de publicaciones." -#: src/Content/Feature.php:116 +#: src/Content/Feature.php:102 msgid "Explicit Mentions" msgstr "Menciones explicitas" -#: src/Content/Feature.php:116 +#: src/Content/Feature.php:102 msgid "" "Add explicit mentions to comment box for manual control over who gets " "mentioned in replies." msgstr "Añadir menciones explicitas a cuadro de comentarios para control manual sobre quien se menciona en respuestas." -#: src/Content/Feature.php:117 +#: src/Content/Feature.php:103 msgid "Add an abstract from ActivityPub content warnings" msgstr "" -#: src/Content/Feature.php:117 +#: src/Content/Feature.php:103 msgid "" "Add an abstract when commenting on ActivityPub posts with a content warning." " Abstracts are displayed as content warning on systems like Mastodon or " "Pleroma." msgstr "" -#: src/Content/Feature.php:122 +#: src/Content/Feature.php:108 msgid "Post/Comment Tools" msgstr "Herramienta de publicaciones/respuestas" -#: src/Content/Feature.php:123 +#: src/Content/Feature.php:109 msgid "Post Categories" msgstr "Categorías de publicaciones" -#: src/Content/Feature.php:123 +#: src/Content/Feature.php:109 msgid "Add categories to your posts" msgstr "Agregue categorías a sus publicaciones. Las mismas serán visualizadas en su pagina de inicio." -#: src/Content/Feature.php:128 +#: src/Content/Feature.php:114 msgid "Network Widgets" msgstr "" -#: src/Content/Feature.php:129 src/Content/Widget.php:216 -#: src/Model/Circle.php:601 src/Module/Contact.php:400 -#: src/Module/Welcome.php:76 +#: src/Content/Feature.php:115 src/Content/Widget.php:194 +#: src/Model/Circle.php:587 src/Module/Contact.php:381 +#: src/Module/Welcome.php:62 msgid "Circles" msgstr "" -#: src/Content/Feature.php:129 +#: src/Content/Feature.php:115 msgid "" "Display posts that have been created by accounts of the selected circle." msgstr "" -#: src/Content/Feature.php:130 src/Content/GroupManager.php:147 -#: src/Content/Nav.php:278 src/Content/Text/HTML.php:882 -#: src/Content/Widget.php:538 src/Model/User.php:1390 +#: src/Content/Feature.php:116 src/Content/GroupManager.php:133 +#: src/Content/Nav.php:264 src/Content/Text/HTML.php:868 +#: src/Content/Widget.php:516 src/Model/User.php:1390 msgid "Groups" msgstr "" -#: src/Content/Feature.php:130 +#: src/Content/Feature.php:116 msgid "Display posts that have been distributed by the selected group." msgstr "" -#: src/Content/Feature.php:131 src/Content/Widget.php:507 +#: src/Content/Feature.php:117 src/Content/Widget.php:485 msgid "Archives" msgstr "Archivos" -#: src/Content/Feature.php:131 +#: src/Content/Feature.php:117 msgid "Display an archive where posts can be selected by month and year." msgstr "" -#: src/Content/Feature.php:132 src/Content/Widget.php:289 +#: src/Content/Feature.php:118 src/Content/Widget.php:267 msgid "Protocols" msgstr "Protocolos" -#: src/Content/Feature.php:132 +#: src/Content/Feature.php:118 msgid "Display posts with the selected protocols." msgstr "" -#: src/Content/Feature.php:133 src/Content/Widget.php:544 -#: src/Module/Settings/Account.php:442 +#: src/Content/Feature.php:119 src/Content/Widget.php:522 +#: src/Module/Settings/Account.php:433 msgid "Account Types" msgstr "Tipos de cuenta" -#: src/Content/Feature.php:133 +#: src/Content/Feature.php:119 msgid "Display posts done by accounts with the selected account type." msgstr "" -#: src/Content/Feature.php:134 src/Content/Widget.php:593 -#: src/Module/Admin/Site.php:472 src/Module/BaseSettings.php:125 -#: src/Module/Settings/Channels.php:225 src/Module/Settings/Display.php:315 +#: src/Content/Feature.php:120 src/Content/Widget.php:571 +#: src/Module/Admin/Site.php:464 src/Module/BaseSettings.php:111 +#: src/Module/Settings/Channels.php:211 src/Module/Settings/Display.php:301 msgid "Channels" msgstr "" -#: src/Content/Feature.php:134 +#: src/Content/Feature.php:120 msgid "Display posts in the system channels and user defined channels." msgstr "" -#: src/Content/Feature.php:135 src/Content/Widget/SavedSearches.php:60 +#: src/Content/Feature.php:121 src/Content/Widget/SavedSearches.php:46 msgid "Saved Searches" msgstr "Búsquedas guardadas" -#: src/Content/Feature.php:135 +#: src/Content/Feature.php:121 msgid "Display posts that contain subscribed hashtags." msgstr "" -#: src/Content/Feature.php:136 src/Content/Widget.php:319 +#: src/Content/Feature.php:122 src/Content/Widget.php:297 msgid "Saved Folders" msgstr "Directorios guardados" -#: src/Content/Feature.php:136 +#: src/Content/Feature.php:122 msgid "Display a list of folders in which posts are stored." msgstr "" -#: src/Content/Feature.php:137 src/Module/Conversation/Timeline.php:199 +#: src/Content/Feature.php:123 src/Module/Conversation/Timeline.php:186 msgid "Own Contacts" msgstr "Contactos propios" -#: src/Content/Feature.php:137 +#: src/Content/Feature.php:123 msgid "" "Include or exclude posts from subscribed accounts. This widget is not " "visible on all channels." msgstr "" -#: src/Content/Feature.php:138 +#: src/Content/Feature.php:124 msgid "Trending Tags" msgstr "Etiquetas tendencia" -#: src/Content/Feature.php:138 +#: src/Content/Feature.php:124 msgid "Display a list of the most popular tags in recent public posts." msgstr "" -#: src/Content/Feature.php:143 +#: src/Content/Feature.php:129 msgid "Advanced Profile Settings" msgstr "Ajustes avanzados del perfil" -#: src/Content/Feature.php:144 +#: src/Content/Feature.php:130 msgid "Tag Cloud" msgstr "Nube de etiquetas" -#: src/Content/Feature.php:144 +#: src/Content/Feature.php:130 msgid "Provide a personal tag cloud on your profile page" msgstr "Dar una etiqueta personal en tu página de perfil" -#: src/Content/Feature.php:145 +#: src/Content/Feature.php:131 msgid "Display Membership Date" msgstr "Desplegar fecha de membresía" -#: src/Content/Feature.php:145 +#: src/Content/Feature.php:131 msgid "Display membership date in profile" msgstr "Desplegar fecha de membresía en perfil" -#: src/Content/Feature.php:150 +#: src/Content/Feature.php:136 msgid "Advanced Calendar Settings" msgstr "" -#: src/Content/Feature.php:151 +#: src/Content/Feature.php:137 msgid "Allow anonymous access to your calendar" msgstr "" -#: src/Content/Feature.php:151 +#: src/Content/Feature.php:137 msgid "" "Allows anonymous visitors to consult your calendar and your public events. " "Contact birthday events are private to you." msgstr "" -#: src/Content/GroupManager.php:149 +#: src/Content/GroupManager.php:135 msgid "External link to group" msgstr "" -#: src/Content/GroupManager.php:153 src/Content/Widget.php:513 +#: src/Content/GroupManager.php:139 src/Content/Widget.php:491 msgid "show less" msgstr "mostrar menos" -#: src/Content/GroupManager.php:154 src/Content/Widget.php:411 -#: src/Content/Widget.php:514 +#: src/Content/GroupManager.php:140 src/Content/Widget.php:389 +#: src/Content/Widget.php:492 msgid "show more" msgstr "Mostrar más" -#: src/Content/GroupManager.php:155 +#: src/Content/GroupManager.php:141 msgid "Create new group" msgstr "" -#: src/Content/Item.php:331 src/Model/Item.php:3256 +#: src/Content/Item.php:317 src/Model/Item.php:3272 msgid "event" msgstr "evento" -#: src/Content/Item.php:334 src/Content/Item.php:344 +#: src/Content/Item.php:320 src/Content/Item.php:330 msgid "status" msgstr "estado" -#: src/Content/Item.php:340 src/Model/Item.php:3258 -#: src/Module/Post/Tag/Add.php:123 +#: src/Content/Item.php:326 src/Model/Item.php:3274 +#: src/Module/Post/Tag/Add.php:109 msgid "photo" msgstr "foto" -#: src/Content/Item.php:354 src/Module/Post/Tag/Add.php:141 +#: src/Content/Item.php:340 src/Module/Post/Tag/Add.php:127 #, php-format msgid "%1$s tagged %2$s's %3$s with %4$s" msgstr "%1$s etiquetó %3$s %2$s con %4$s" -#: src/Content/Item.php:428 view/theme/frio/theme.php:265 +#: src/Content/Item.php:414 view/theme/frio/theme.php:253 msgid "Follow Thread" msgstr "Seguir el hilo" -#: src/Content/Item.php:429 src/Model/Contact.php:1233 +#: src/Content/Item.php:415 src/Model/Contact.php:1249 msgid "View Status" msgstr "Ver Estado" -#: src/Content/Item.php:430 src/Content/Item.php:453 -#: src/Model/Contact.php:1168 src/Model/Contact.php:1224 -#: src/Model/Contact.php:1234 src/Module/Directory.php:157 -#: src/Module/Settings/Profile/Index.php:259 +#: src/Content/Item.php:416 src/Content/Item.php:439 +#: src/Model/Contact.php:1184 src/Model/Contact.php:1240 +#: src/Model/Contact.php:1250 src/Module/Directory.php:144 +#: src/Module/Settings/Profile/Index.php:250 msgid "View Profile" msgstr "Ver Perfil" -#: src/Content/Item.php:431 src/Model/Contact.php:1235 +#: src/Content/Item.php:417 src/Model/Contact.php:1251 msgid "View Photos" msgstr "Ver Fotos" -#: src/Content/Item.php:432 src/Model/Contact.php:1202 -#: src/Model/Profile.php:468 +#: src/Content/Item.php:418 src/Model/Contact.php:1218 +#: src/Model/Profile.php:447 msgid "Network Posts" msgstr "Artículos de Red" -#: src/Content/Item.php:433 src/Model/Contact.php:1226 -#: src/Model/Contact.php:1237 +#: src/Content/Item.php:419 src/Model/Contact.php:1242 +#: src/Model/Contact.php:1253 msgid "View Contact" msgstr "Ver contacto" -#: src/Content/Item.php:434 src/Model/Contact.php:1238 +#: src/Content/Item.php:420 src/Model/Contact.php:1254 msgid "Send PM" msgstr "Enviar Privado" -#: src/Content/Item.php:435 src/Module/Contact.php:467 +#: src/Content/Item.php:421 src/Module/Contact.php:449 #: src/Module/Contact/Profile.php:518 -#: src/Module/Moderation/Blocklist/Contact.php:116 -#: src/Module/Moderation/Users/Active.php:137 -#: src/Module/Moderation/Users/Index.php:152 +#: src/Module/Moderation/Blocklist/Contact.php:102 +#: src/Module/Moderation/Users/Active.php:123 +#: src/Module/Moderation/Users/Index.php:138 msgid "Block" msgstr "Bloquear" -#: src/Content/Item.php:436 src/Module/Contact.php:468 +#: src/Content/Item.php:422 src/Module/Contact.php:450 #: src/Module/Contact/Profile.php:526 -#: src/Module/Notifications/Introductions.php:134 -#: src/Module/Notifications/Introductions.php:206 -#: src/Module/Notifications/Notification.php:89 +#: src/Module/Notifications/Introductions.php:126 +#: src/Module/Notifications/Introductions.php:198 +#: src/Module/Notifications/Notification.php:75 msgid "Ignore" msgstr "Ignorar" -#: src/Content/Item.php:437 src/Module/Contact.php:469 +#: src/Content/Item.php:423 src/Module/Contact.php:451 #: src/Module/Contact/Profile.php:534 msgid "Collapse" msgstr "" -#: src/Content/Item.php:438 src/Object/Post.php:302 +#: src/Content/Item.php:424 src/Object/Post.php:288 #, php-format msgid "Ignore %s server" msgstr "" -#: src/Content/Item.php:442 src/Module/Settings/Channels.php:202 -#: src/Module/Settings/Channels.php:223 src/Object/Post.php:516 +#: src/Content/Item.php:428 src/Module/Settings/Channels.php:188 +#: src/Module/Settings/Channels.php:209 src/Object/Post.php:502 msgid "Languages" msgstr "Lenguajes" -#: src/Content/Item.php:445 src/Object/Post.php:596 +#: src/Content/Item.php:431 src/Object/Post.php:582 msgid "Search Text" msgstr "" -#: src/Content/Item.php:450 src/Content/Widget.php:80 -#: src/Model/Contact.php:1227 src/Model/Contact.php:1239 -#: src/Module/Contact/Follow.php:167 view/theme/vier/theme.php:195 +#: src/Content/Item.php:436 src/Content/Widget.php:66 +#: src/Model/Contact.php:1243 src/Model/Contact.php:1255 +#: src/Module/Contact/Follow.php:148 view/theme/vier/theme.php:183 msgid "Connect/Follow" msgstr "Conectar/Seguir" -#: src/Content/Item.php:884 +#: src/Content/Item.php:870 msgid "Unable to fetch user." msgstr "" -#: src/Content/Nav.php:121 +#: src/Content/Nav.php:107 msgid "Nothing new here" msgstr "No hay nada nuevo" -#: src/Content/Nav.php:125 src/Module/Special/HTTPException.php:77 +#: src/Content/Nav.php:111 src/Module/Special/HTTPException.php:63 msgid "Go back" msgstr "Regresar" -#: src/Content/Nav.php:126 +#: src/Content/Nav.php:112 msgid "Clear notifications" msgstr "Borrar notificaciones" -#: src/Content/Nav.php:127 src/Content/Text/HTML.php:869 +#: src/Content/Nav.php:113 src/Content/Text/HTML.php:855 msgid "@name, !group, #tags, content" msgstr "" -#: src/Content/Nav.php:222 src/Module/Security/Login.php:157 +#: src/Content/Nav.php:208 src/Module/Security/Login.php:147 msgid "Logout" msgstr "Salir" -#: src/Content/Nav.php:222 +#: src/Content/Nav.php:208 msgid "End this session" msgstr "Cerrar sesión" -#: src/Content/Nav.php:224 src/Module/Bookmarklet.php:44 -#: src/Module/Security/Login.php:158 +#: src/Content/Nav.php:210 src/Module/Bookmarklet.php:30 +#: src/Module/Security/Login.php:148 msgid "Login" msgstr "Ingreso" -#: src/Content/Nav.php:224 +#: src/Content/Nav.php:210 msgid "Sign in" msgstr "Ingresar" -#: src/Content/Nav.php:229 src/Module/BaseProfile.php:57 -#: src/Module/Contact.php:511 +#: src/Content/Nav.php:215 src/Module/BaseProfile.php:43 +#: src/Module/Contact.php:493 msgid "Conversations" msgstr "" -#: src/Content/Nav.php:229 +#: src/Content/Nav.php:215 msgid "Conversations you started" msgstr "" -#: src/Content/Nav.php:230 src/Module/BaseProfile.php:49 -#: src/Module/BaseSettings.php:98 src/Module/Contact.php:503 -#: src/Module/Contact/Profile.php:425 src/Module/Profile/Profile.php:268 -#: src/Module/Welcome.php:57 view/theme/frio/theme.php:233 +#: src/Content/Nav.php:216 src/Module/BaseProfile.php:35 +#: src/Module/BaseSettings.php:84 src/Module/Contact.php:485 +#: src/Module/Contact/Profile.php:425 src/Module/Profile/Profile.php:256 +#: src/Module/Welcome.php:43 view/theme/frio/theme.php:221 msgid "Profile" msgstr "Perfil" -#: src/Content/Nav.php:230 view/theme/frio/theme.php:233 +#: src/Content/Nav.php:216 view/theme/frio/theme.php:221 msgid "Your profile page" msgstr "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:237 +#: src/Content/Nav.php:217 src/Module/BaseProfile.php:51 +#: src/Module/Media/Photo/Browser.php:60 view/theme/frio/theme.php:225 msgid "Photos" msgstr "Fotos" -#: src/Content/Nav.php:231 view/theme/frio/theme.php:237 +#: src/Content/Nav.php:217 view/theme/frio/theme.php:225 msgid "Your photos" msgstr "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:238 +#: src/Content/Nav.php:218 src/Module/BaseProfile.php:59 +#: src/Module/BaseProfile.php:62 src/Module/Contact.php:509 +#: view/theme/frio/theme.php:226 msgid "Media" msgstr "" -#: src/Content/Nav.php:232 view/theme/frio/theme.php:238 +#: src/Content/Nav.php:218 view/theme/frio/theme.php:226 msgid "Your postings with media" msgstr "" -#: src/Content/Nav.php:233 src/Content/Nav.php:293 -#: src/Module/BaseProfile.php:85 src/Module/BaseProfile.php:88 -#: src/Module/BaseProfile.php:96 src/Module/BaseProfile.php:99 -#: src/Module/Settings/Display.php:316 view/theme/frio/theme.php:239 -#: view/theme/frio/theme.php:243 +#: src/Content/Nav.php:219 src/Content/Nav.php:279 +#: src/Module/BaseProfile.php:71 src/Module/BaseProfile.php:74 +#: src/Module/BaseProfile.php:82 src/Module/BaseProfile.php:85 +#: src/Module/Settings/Display.php:302 view/theme/frio/theme.php:227 +#: view/theme/frio/theme.php:231 msgid "Calendar" msgstr "Calendario" -#: src/Content/Nav.php:233 view/theme/frio/theme.php:239 +#: src/Content/Nav.php:219 view/theme/frio/theme.php:227 msgid "Your calendar" msgstr "" -#: src/Content/Nav.php:234 +#: src/Content/Nav.php:220 msgid "Personal notes" msgstr "Notas personales" -#: src/Content/Nav.php:234 +#: src/Content/Nav.php:220 msgid "Your personal notes" msgstr "Tus notas personales" -#: src/Content/Nav.php:251 src/Content/Nav.php:308 +#: src/Content/Nav.php:237 src/Content/Nav.php:294 msgid "Home" msgstr "Inicio" -#: src/Content/Nav.php:251 src/Module/Settings/OAuth.php:73 +#: src/Content/Nav.php:237 src/Module/Settings/OAuth.php:59 msgid "Home Page" msgstr "Página de Inicio" -#: src/Content/Nav.php:255 src/Module/Register.php:169 -#: src/Module/Security/Login.php:124 +#: src/Content/Nav.php:241 src/Module/Register.php:161 +#: src/Module/Security/Login.php:114 msgid "Register" msgstr "Registro" -#: src/Content/Nav.php:255 +#: src/Content/Nav.php:241 msgid "Create an account" msgstr "Crea una cuenta" -#: src/Content/Nav.php:261 src/Module/Help.php:67 -#: src/Module/Settings/TwoFactor/AppSpecific.php:132 -#: src/Module/Settings/TwoFactor/Index.php:139 -#: src/Module/Settings/TwoFactor/Recovery.php:110 -#: src/Module/Settings/TwoFactor/Verify.php:149 view/theme/vier/theme.php:240 +#: src/Content/Nav.php:247 src/Module/Help.php:53 +#: src/Module/Settings/TwoFactor/AppSpecific.php:118 +#: src/Module/Settings/TwoFactor/Index.php:125 +#: src/Module/Settings/TwoFactor/Recovery.php:96 +#: src/Module/Settings/TwoFactor/Verify.php:135 view/theme/vier/theme.php:228 msgid "Help" msgstr "Ayuda" -#: src/Content/Nav.php:261 +#: src/Content/Nav.php:247 msgid "Help and documentation" msgstr "Ayuda y documentación" -#: src/Content/Nav.php:265 +#: src/Content/Nav.php:251 msgid "Apps" msgstr "Aplicaciones" -#: src/Content/Nav.php:265 +#: src/Content/Nav.php:251 msgid "Addon applications, utilities, games" msgstr "Aplicaciones, utilidades, juegos" -#: src/Content/Nav.php:269 src/Content/Text/HTML.php:867 -#: src/Module/Admin/Logs/View.php:88 src/Module/Search/Index.php:112 +#: src/Content/Nav.php:255 src/Content/Text/HTML.php:853 +#: src/Module/Admin/Logs/View.php:74 src/Module/Search/Index.php:98 msgid "Search" msgstr "Buscar" -#: src/Content/Nav.php:269 +#: src/Content/Nav.php:255 msgid "Search site content" msgstr "Buscar contenido en el sitio" -#: src/Content/Nav.php:272 src/Content/Text/HTML.php:876 +#: src/Content/Nav.php:258 src/Content/Text/HTML.php:862 msgid "Full Text" msgstr "Texto completo" -#: src/Content/Nav.php:273 src/Content/Text/HTML.php:877 -#: src/Content/Widget/TagCloud.php:68 +#: src/Content/Nav.php:259 src/Content/Text/HTML.php:863 +#: src/Content/Widget/TagCloud.php:54 msgid "Tags" msgstr "Etiquetas" -#: src/Content/Nav.php:274 src/Content/Nav.php:329 -#: src/Content/Text/HTML.php:878 src/Module/BaseProfile.php:127 -#: src/Module/BaseProfile.php:130 src/Module/Contact.php:426 -#: src/Module/Contact.php:535 view/theme/frio/theme.php:246 +#: src/Content/Nav.php:260 src/Content/Nav.php:315 +#: src/Content/Text/HTML.php:864 src/Module/BaseProfile.php:113 +#: src/Module/BaseProfile.php:116 src/Module/Contact.php:407 +#: src/Module/Contact.php:517 view/theme/frio/theme.php:234 msgid "Contacts" msgstr "Contactos" -#: src/Content/Nav.php:289 +#: src/Content/Nav.php:275 msgid "Community" msgstr "Comunidad" -#: src/Content/Nav.php:289 +#: src/Content/Nav.php:275 msgid "Conversations on this and other servers" msgstr "Conversaciones aquí y en otros servidores" -#: src/Content/Nav.php:296 +#: src/Content/Nav.php:282 msgid "Directory" msgstr "Directorio" -#: src/Content/Nav.php:296 +#: src/Content/Nav.php:282 msgid "People directory" msgstr "Directorio de usuarios" -#: src/Content/Nav.php:298 src/Module/BaseAdmin.php:85 -#: src/Module/BaseModeration.php:108 +#: src/Content/Nav.php:284 src/Module/BaseAdmin.php:71 +#: src/Module/BaseModeration.php:94 msgid "Information" msgstr "Información" -#: src/Content/Nav.php:298 +#: src/Content/Nav.php:284 msgid "Information about this friendica instance" msgstr "Información sobre esta instancia Friendica" -#: src/Content/Nav.php:301 src/Module/Admin/Tos.php:78 -#: src/Module/BaseAdmin.php:95 src/Module/Register.php:177 -#: src/Module/Tos.php:101 +#: src/Content/Nav.php:287 src/Module/Admin/Tos.php:64 +#: src/Module/BaseAdmin.php:81 src/Module/Register.php:169 +#: src/Module/Tos.php:87 msgid "Terms of Service" msgstr "Términos de Servicio" -#: src/Content/Nav.php:301 +#: src/Content/Nav.php:287 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:242 +#: src/Content/Nav.php:292 view/theme/frio/theme.php:230 msgid "Network" msgstr "Red" -#: src/Content/Nav.php:306 view/theme/frio/theme.php:242 +#: src/Content/Nav.php:292 view/theme/frio/theme.php:230 msgid "Conversations from your friends" msgstr "Conversaciones de tus amigos" -#: src/Content/Nav.php:308 view/theme/frio/theme.php:232 +#: src/Content/Nav.php:294 view/theme/frio/theme.php:220 msgid "Your posts and conversations" msgstr "Tus publicaciones y conversaciones" -#: src/Content/Nav.php:312 +#: src/Content/Nav.php:298 msgid "Introductions" msgstr "Presentaciones" -#: src/Content/Nav.php:312 +#: src/Content/Nav.php:298 msgid "Friend Requests" msgstr "Solicitudes de amistad" -#: src/Content/Nav.php:313 src/Module/BaseNotifications.php:149 -#: src/Module/Notifications/Introductions.php:75 +#: src/Content/Nav.php:299 src/Module/BaseNotifications.php:135 +#: src/Module/Notifications/Introductions.php:61 msgid "Notifications" msgstr "Notificaciones" -#: src/Content/Nav.php:314 +#: src/Content/Nav.php:300 msgid "See all notifications" msgstr "Ver todas las notificaciones" -#: src/Content/Nav.php:315 src/Module/Settings/Connectors.php:244 +#: src/Content/Nav.php:301 src/Module/Settings/Connectors.php:233 msgid "Mark as seen" msgstr "Marcar como leído" -#: src/Content/Nav.php:315 +#: src/Content/Nav.php:301 msgid "Mark all system notifications as seen" msgstr "" -#: src/Content/Nav.php:318 view/theme/frio/theme.php:244 +#: src/Content/Nav.php:304 view/theme/frio/theme.php:232 msgid "Private mail" msgstr "Correo privado" -#: src/Content/Nav.php:319 +#: src/Content/Nav.php:305 msgid "Inbox" msgstr "Entrada" -#: src/Content/Nav.php:320 +#: src/Content/Nav.php:306 msgid "Outbox" msgstr "Enviados" -#: src/Content/Nav.php:324 +#: src/Content/Nav.php:310 msgid "Accounts" msgstr "Cuentas" -#: src/Content/Nav.php:324 +#: src/Content/Nav.php:310 msgid "Manage other pages" 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:245 +#: src/Content/Nav.php:313 src/Module/Admin/Addons/Details.php:100 +#: src/Module/Admin/Themes/Details.php:85 src/Module/BaseSettings.php:168 +#: src/Module/Welcome.php:38 view/theme/frio/theme.php:233 msgid "Settings" msgstr "Configuración" -#: src/Content/Nav.php:327 view/theme/frio/theme.php:245 +#: src/Content/Nav.php:313 view/theme/frio/theme.php:233 msgid "Account settings" msgstr "Configurar la cuenta" -#: src/Content/Nav.php:329 view/theme/frio/theme.php:246 +#: src/Content/Nav.php:315 view/theme/frio/theme.php:234 msgid "Manage/edit friends and contacts" msgstr "Administrar/editar amigos y contactos" -#: src/Content/Nav.php:334 src/Module/BaseAdmin.php:119 +#: src/Content/Nav.php:320 src/Module/BaseAdmin.php:105 msgid "Admin" msgstr "Admin" -#: src/Content/Nav.php:334 +#: src/Content/Nav.php:320 msgid "Site setup and configuration" msgstr "Opciones y configuración del sitio" -#: src/Content/Nav.php:335 src/Module/BaseModeration.php:128 -#: src/Module/Moderation/Blocklist/Contact.php:110 -#: src/Module/Moderation/Blocklist/Server/Add.php:121 -#: src/Module/Moderation/Blocklist/Server/Import.php:118 -#: src/Module/Moderation/Blocklist/Server/Index.php:95 -#: src/Module/Moderation/Item/Delete.php:61 -#: src/Module/Moderation/Reports.php:104 src/Module/Moderation/Summary.php:75 -#: src/Module/Moderation/Users/Active.php:133 -#: src/Module/Moderation/Users/Blocked.php:133 -#: src/Module/Moderation/Users/Deleted.php:80 -#: src/Module/Moderation/Users/Index.php:147 +#: src/Content/Nav.php:321 src/Module/BaseModeration.php:114 +#: src/Module/Moderation/Blocklist/Contact.php:96 +#: src/Module/Moderation/Blocklist/Server/Add.php:107 +#: src/Module/Moderation/Blocklist/Server/Import.php:102 +#: src/Module/Moderation/Blocklist/Server/Index.php:81 +#: src/Module/Moderation/Item/Delete.php:47 +#: src/Module/Moderation/Reports.php:96 src/Module/Moderation/Summary.php:61 +#: src/Module/Moderation/Users/Active.php:119 +#: src/Module/Moderation/Users/Blocked.php:119 +#: src/Module/Moderation/Users/Deleted.php:66 +#: src/Module/Moderation/Users/Index.php:133 msgid "Moderation" msgstr "" -#: src/Content/Nav.php:335 +#: src/Content/Nav.php:321 msgid "Content and user moderation" msgstr "" -#: src/Content/Nav.php:338 +#: src/Content/Nav.php:324 msgid "Navigation" msgstr "Navegación" -#: src/Content/Nav.php:338 +#: src/Content/Nav.php:324 msgid "Site map" msgstr "Mapa del sitio" -#: src/Content/Pager.php:216 +#: src/Content/Pager.php:202 msgid "first" msgstr "primera" -#: src/Content/Pager.php:221 +#: src/Content/Pager.php:207 msgid "prev" msgstr "previo" -#: src/Content/Pager.php:276 +#: src/Content/Pager.php:262 msgid "next" msgstr "sig." -#: src/Content/Pager.php:281 +#: src/Content/Pager.php:267 msgid "last" msgstr "última" -#: src/Content/Text/BBCode.php:702 src/Content/Text/BBCode.php:1878 -#: src/Content/Text/BBCode.php:1879 +#: src/Content/Text/BBCode.php:689 src/Content/Text/BBCode.php:1862 +#: src/Content/Text/BBCode.php:1863 msgid "Image/photo" msgstr "Imagen/Foto" -#: src/Content/Text/BBCode.php:920 +#: src/Content/Text/BBCode.php:907 #, php-format msgid "%2$s %3$s" msgstr "%2$s %3$s" -#: src/Content/Text/BBCode.php:945 src/Model/Item.php:4012 -#: src/Model/Item.php:4018 src/Model/Item.php:4019 +#: src/Content/Text/BBCode.php:929 src/Model/Item.php:4028 +#: src/Model/Item.php:4034 src/Model/Item.php:4035 msgid "Link to source" msgstr "" -#: src/Content/Text/BBCode.php:1759 src/Content/Text/HTML.php:906 +#: src/Content/Text/BBCode.php:1743 src/Content/Text/HTML.php:892 msgid "Click to open/close" msgstr "Pulsa para abrir/cerrar" -#: src/Content/Text/BBCode.php:1814 +#: src/Content/Text/BBCode.php:1798 msgid "$1 wrote:" msgstr "$1 escribió:" -#: src/Content/Text/BBCode.php:1888 src/Content/Text/BBCode.php:1889 +#: src/Content/Text/BBCode.php:1872 src/Content/Text/BBCode.php:1873 msgid "Encrypted content" msgstr "Contenido cifrado" -#: src/Content/Text/BBCode.php:2194 +#: src/Content/Text/BBCode.php:2205 msgid "Invalid source protocol" msgstr "Protocolo de fuente inválido" -#: src/Content/Text/BBCode.php:2213 +#: src/Content/Text/BBCode.php:2224 msgid "Invalid link protocol" msgstr "Protocolo de enlace inválido" -#: src/Content/Text/HTML.php:784 +#: src/Content/Text/HTML.php:770 msgid "Loading more entries..." msgstr "Cargar mas artículos.." -#: src/Content/Text/HTML.php:785 +#: src/Content/Text/HTML.php:771 msgid "The end" msgstr "Final" -#: src/Content/Text/HTML.php:861 src/Content/Widget/VCard.php:127 -#: src/Model/Profile.php:477 src/Module/Contact/Profile.php:478 +#: src/Content/Text/HTML.php:847 src/Content/Widget/VCard.php:113 +#: src/Model/Profile.php:456 src/Module/Contact/Profile.php:478 msgid "Follow" msgstr "Seguir" -#: src/Content/Widget.php:51 +#: src/Content/Widget.php:37 msgid "Add New Contact" msgstr "Añadir nuevo contacto" -#: src/Content/Widget.php:52 +#: src/Content/Widget.php:38 msgid "Enter address or web location" msgstr "Escribe la dirección o página web" -#: src/Content/Widget.php:53 +#: src/Content/Widget.php:39 msgid "Example: bob@example.com, http://example.com/barbara" msgstr "Ejemplo: miguel@ejemplo.com, http://ejemplo.com/miguel" -#: src/Content/Widget.php:55 +#: src/Content/Widget.php:41 msgid "Connect" msgstr "Conectar" -#: src/Content/Widget.php:72 +#: src/Content/Widget.php:58 #, php-format msgid "%d invitation available" msgid_plural "%d invitations available" @@ -2400,79 +2406,79 @@ msgstr[0] "%d invitación disponible" msgstr[1] "%d invitaviones disponibles" msgstr[2] "%d invitaviones disponibles" -#: src/Content/Widget.php:78 view/theme/vier/theme.php:193 +#: src/Content/Widget.php:64 view/theme/vier/theme.php:181 msgid "Find People" msgstr "Buscar Personas" -#: src/Content/Widget.php:79 view/theme/vier/theme.php:194 +#: src/Content/Widget.php:65 view/theme/vier/theme.php:182 msgid "Enter name or interest" msgstr "Introduce nombre o interés" -#: src/Content/Widget.php:81 view/theme/vier/theme.php:196 +#: src/Content/Widget.php:67 view/theme/vier/theme.php:184 msgid "Examples: Robert Morgenstein, Fishing" msgstr "Ejemplos: Robert Morgenstein, Pesca" -#: src/Content/Widget.php:82 src/Module/Contact.php:460 -#: src/Module/Directory.php:96 view/theme/vier/theme.php:197 +#: src/Content/Widget.php:68 src/Module/Contact.php:441 +#: src/Module/Directory.php:83 view/theme/vier/theme.php:185 msgid "Find" msgstr "Buscar" -#: src/Content/Widget.php:83 src/Module/Contact/Suggestions.php:73 -#: view/theme/vier/theme.php:198 +#: src/Content/Widget.php:69 src/Module/Contact/Suggestions.php:59 +#: view/theme/vier/theme.php:186 msgid "Friend Suggestions" msgstr "Sugerencias de Amistad" -#: src/Content/Widget.php:84 view/theme/vier/theme.php:199 +#: src/Content/Widget.php:70 view/theme/vier/theme.php:187 msgid "Similar Interests" msgstr "Intereses Similares" -#: src/Content/Widget.php:85 view/theme/vier/theme.php:200 +#: src/Content/Widget.php:71 view/theme/vier/theme.php:188 msgid "Random Profile" msgstr "Perfil Al Azar" -#: src/Content/Widget.php:86 view/theme/vier/theme.php:201 +#: src/Content/Widget.php:72 view/theme/vier/theme.php:189 msgid "Invite Friends" msgstr "Invitar Amigos" -#: src/Content/Widget.php:87 src/Module/Directory.php:88 -#: view/theme/vier/theme.php:202 +#: src/Content/Widget.php:73 src/Module/Directory.php:75 +#: view/theme/vier/theme.php:190 msgid "Global Directory" msgstr "Directorio Global" -#: src/Content/Widget.php:89 view/theme/vier/theme.php:204 +#: src/Content/Widget.php:75 view/theme/vier/theme.php:192 msgid "Local Directory" msgstr "Directorio Local" -#: src/Content/Widget.php:218 +#: src/Content/Widget.php:196 msgid "Everyone" msgstr "Todos" -#: src/Content/Widget.php:243 src/Module/Contact.php:423 +#: src/Content/Widget.php:221 src/Module/Contact.php:404 msgid "No relationship" msgstr "" -#: src/Content/Widget.php:248 +#: src/Content/Widget.php:226 msgid "Relationships" msgstr "Relaciones" -#: src/Content/Widget.php:250 src/Module/Circle.php:294 -#: src/Module/Contact.php:344 +#: src/Content/Widget.php:228 src/Module/Circle.php:280 +#: src/Module/Contact.php:325 msgid "All Contacts" msgstr "Todos los contactos" -#: src/Content/Widget.php:291 +#: src/Content/Widget.php:269 msgid "All Protocols" msgstr "Todos los Protocolos" -#: src/Content/Widget.php:321 src/Content/Widget.php:352 +#: src/Content/Widget.php:299 src/Content/Widget.php:330 msgid "Everything" msgstr "Todo" -#: src/Content/Widget.php:350 +#: src/Content/Widget.php:328 msgid "Categories" msgstr "Categorías" -#: src/Content/Widget.php:407 +#: src/Content/Widget.php:385 #, php-format msgid "%d contact in common" msgid_plural "%d contacts in common" @@ -2480,47 +2486,47 @@ 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:515 +#: src/Content/Widget.php:493 msgid "On this date" msgstr "" -#: src/Content/Widget.php:535 +#: src/Content/Widget.php:513 msgid "Persons" msgstr "Personas" -#: src/Content/Widget.php:536 +#: src/Content/Widget.php:514 msgid "Organisations" msgstr "Organizaciones" -#: src/Content/Widget.php:537 src/Model/Contact.php:1729 +#: src/Content/Widget.php:515 src/Model/Contact.php:1747 msgid "News" msgstr "Noticias" -#: src/Content/Widget.php:539 +#: src/Content/Widget.php:517 msgid "Relays" msgstr "" -#: src/Content/Widget.php:546 src/Module/Moderation/BaseUsers.php:69 +#: src/Content/Widget.php:524 src/Module/Moderation/BaseUsers.php:56 msgid "All" msgstr "Todos" -#: src/Content/Widget/CalendarExport.php:56 +#: src/Content/Widget/CalendarExport.php:42 msgid "Export" msgstr "Exportar" -#: src/Content/Widget/CalendarExport.php:57 +#: src/Content/Widget/CalendarExport.php:43 msgid "Export calendar as ical" msgstr "Exportar calendario como ical" -#: src/Content/Widget/CalendarExport.php:58 +#: src/Content/Widget/CalendarExport.php:44 msgid "Export calendar as csv" msgstr "Exportar calendario como csv" -#: src/Content/Widget/ContactBlock.php:79 +#: src/Content/Widget/ContactBlock.php:65 msgid "No contacts" msgstr "Sin contactos" -#: src/Content/Widget/ContactBlock.php:110 +#: src/Content/Widget/ContactBlock.php:96 #, php-format msgid "%d Contact" msgid_plural "%d Contacts" @@ -2528,15 +2534,15 @@ msgstr[0] "%d Contacto" msgstr[1] "%d Contactos" msgstr[2] "%d Contactos" -#: src/Content/Widget/ContactBlock.php:127 +#: src/Content/Widget/ContactBlock.php:113 msgid "View Contacts" msgstr "Ver contactos" -#: src/Content/Widget/SavedSearches.php:47 +#: src/Content/Widget/SavedSearches.php:33 msgid "Remove term" msgstr "Eliminar término" -#: src/Content/Widget/TrendingTags.php:53 +#: src/Content/Widget/TrendingTags.php:39 #, php-format msgid "Trending Tags (last %d hour)" msgid_plural "Trending Tags (last %d hours)" @@ -2544,138 +2550,138 @@ msgstr[0] "Etiquetas tendencia (última %d hora)" msgstr[1] "Etiquetas tendencia (últimas %d horas)" msgstr[2] "Etiquetas tendencia (últimas %d horas)" -#: src/Content/Widget/TrendingTags.php:54 +#: src/Content/Widget/TrendingTags.php:40 msgid "More Trending Tags" msgstr "Mas tendencias" -#: src/Content/Widget/VCard.php:105 src/Model/Contact.php:1196 -#: src/Model/Profile.php:462 +#: src/Content/Widget/VCard.php:91 src/Model/Contact.php:1212 +#: src/Model/Profile.php:441 msgid "Post to group" msgstr "" -#: src/Content/Widget/VCard.php:110 src/Model/Contact.php:1200 -#: src/Model/Profile.php:466 src/Module/Moderation/Item/Source.php:85 +#: src/Content/Widget/VCard.php:96 src/Model/Contact.php:1216 +#: src/Model/Profile.php:445 src/Module/Moderation/Item/Source.php:77 msgid "Mention" msgstr "Mención" -#: src/Content/Widget/VCard.php:120 src/Model/Profile.php:381 -#: src/Module/Contact/Profile.php:414 src/Module/Profile/Profile.php:199 +#: src/Content/Widget/VCard.php:106 src/Model/Profile.php:360 +#: src/Module/Contact/Profile.php:414 src/Module/Profile/Profile.php:187 msgid "XMPP:" msgstr "XMPP:" -#: src/Content/Widget/VCard.php:121 src/Model/Profile.php:382 -#: src/Module/Contact/Profile.php:416 src/Module/Profile/Profile.php:203 +#: src/Content/Widget/VCard.php:107 src/Model/Profile.php:361 +#: src/Module/Contact/Profile.php:416 src/Module/Profile/Profile.php:191 msgid "Matrix:" msgstr "" -#: src/Content/Widget/VCard.php:122 src/Model/Event.php:82 -#: src/Model/Event.php:109 src/Model/Event.php:471 src/Model/Event.php:960 -#: src/Model/Profile.php:376 src/Module/Contact/Profile.php:412 -#: src/Module/Directory.php:147 src/Module/Notifications/Introductions.php:187 -#: src/Module/Profile/Profile.php:221 +#: src/Content/Widget/VCard.php:108 src/Model/Event.php:68 +#: src/Model/Event.php:95 src/Model/Event.php:457 src/Model/Event.php:946 +#: src/Model/Profile.php:355 src/Module/Contact/Profile.php:412 +#: src/Module/Directory.php:134 src/Module/Notifications/Introductions.php:179 +#: src/Module/Profile/Profile.php:209 msgid "Location:" msgstr "Localización:" -#: src/Content/Widget/VCard.php:125 src/Model/Profile.php:490 -#: src/Module/Notifications/Introductions.php:201 +#: src/Content/Widget/VCard.php:111 src/Model/Profile.php:469 +#: src/Module/Notifications/Introductions.php:193 msgid "Network:" msgstr "Red:" -#: src/Content/Widget/VCard.php:129 src/Model/Contact.php:1228 -#: src/Model/Contact.php:1240 src/Model/Profile.php:479 +#: src/Content/Widget/VCard.php:115 src/Model/Contact.php:1244 +#: src/Model/Contact.php:1256 src/Model/Profile.php:458 #: src/Module/Contact/Profile.php:470 msgid "Unfollow" msgstr "Dejar de Seguir" -#: src/Content/Widget/VCard.php:135 src/Model/Contact.php:1198 -#: src/Model/Profile.php:464 +#: src/Content/Widget/VCard.php:121 src/Model/Contact.php:1214 +#: src/Model/Profile.php:443 msgid "View group" msgstr "" -#: src/Core/ACL.php:166 src/Module/Profile/Profile.php:269 +#: src/Core/ACL.php:152 src/Module/Profile/Profile.php:257 msgid "Yourself" msgstr "Tu mismo" -#: src/Core/ACL.php:202 src/Module/Privacy/PermissionTooltip.php:170 -#: src/Module/Privacy/PermissionTooltip.php:192 +#: src/Core/ACL.php:188 src/Module/Privacy/PermissionTooltip.php:156 +#: src/Module/Privacy/PermissionTooltip.php:178 msgid "Mutuals" msgstr "Mutuos" -#: src/Core/ACL.php:294 +#: src/Core/ACL.php:280 msgid "Post to Email" msgstr "Publicar por Correo" -#: src/Core/ACL.php:321 src/Module/Privacy/PermissionTooltip.php:117 -#: src/Module/Privacy/PermissionTooltip.php:231 +#: src/Core/ACL.php:307 src/Module/Privacy/PermissionTooltip.php:103 +#: src/Module/Privacy/PermissionTooltip.php:217 msgid "Public" msgstr "Público" -#: src/Core/ACL.php:322 +#: src/Core/ACL.php:308 msgid "" "This content will be shown to all your followers and can be seen in the " "community pages and by anyone with its link." msgstr "Este contenido se mostrará a tus seguidores y se podrá ver en laspáginas de la Comunidad y por cualquiera con este enlace." -#: src/Core/ACL.php:323 src/Module/Privacy/PermissionTooltip.php:119 +#: src/Core/ACL.php:309 src/Module/Privacy/PermissionTooltip.php:105 msgid "Limited/Private" msgstr "Limitado/Privado" -#: src/Core/ACL.php:324 +#: src/Core/ACL.php:310 msgid "" "This content will be shown only to the people in the first box, to the " "exception of the people mentioned in the second box. It won't appear " "anywhere public." msgstr "Este contenido se mostrará solo a personas en el primer recuadro, aexcepción de personas mencionadas en el segundo recuadro. No aparecerápúblicamente." -#: src/Core/ACL.php:324 +#: src/Core/ACL.php:310 msgid "" "Start typing the name of a contact or a circle to show a filtered list. You " "can also mention the special circles \"Followers\" and \"Mutuals\"." msgstr "" -#: src/Core/ACL.php:325 +#: src/Core/ACL.php:311 msgid "Show to:" msgstr "Mostrar a:" -#: src/Core/ACL.php:326 +#: src/Core/ACL.php:312 msgid "Except to:" msgstr "Excepto a:" -#: src/Core/ACL.php:327 src/Module/Post/Edit.php:154 +#: src/Core/ACL.php:313 src/Module/Post/Edit.php:140 msgid "CC: email addresses" msgstr "CC: dirección de correo" -#: src/Core/ACL.php:328 src/Module/Post/Edit.php:160 +#: src/Core/ACL.php:314 src/Module/Post/Edit.php:146 msgid "Example: bob@example.com, mary@example.com" msgstr "Ejemplo: juan@ejemplo.com, maria@ejemplo.com" -#: src/Core/ACL.php:329 +#: src/Core/ACL.php:315 msgid "Connectors" msgstr "Conectores" -#: src/Core/Installer.php:180 +#: src/Core/Installer.php:166 msgid "" "The database configuration file \"config/local.config.php\" could not be " "written. Please use the enclosed text to create a configuration file in your" " web server root." msgstr "Archivo de configuración de la BD \"config/local.config.php\" no pudo ser escrito. Utilice el texto adjunto para crear un archivo de configuración en raíz del servidor web." -#: src/Core/Installer.php:197 +#: src/Core/Installer.php:183 msgid "" "You may need to import the file \"database.sql\" manually using phpmyadmin " "or mysql." msgstr "Puede que tengas que importar el archivo \"database.sql\" manualmente usando phpmyadmin o mysql." -#: src/Core/Installer.php:198 src/Module/Install.php:207 -#: src/Module/Install.php:350 +#: src/Core/Installer.php:184 src/Module/Install.php:193 +#: src/Module/Install.php:336 msgid "Please see the file \"doc/INSTALL.md\"." msgstr "De favor vea el archivo \"doc/INSTALL.md\"." -#: src/Core/Installer.php:259 +#: src/Core/Installer.php:245 msgid "Could not find a command line version of PHP in the web server PATH." msgstr "No se encontró versión de línea de comandos PHP en ruta del servidor web." -#: src/Core/Installer.php:260 +#: src/Core/Installer.php:246 msgid "" "If you don't have a command line version of PHP installed on your server, " "you will not be able to run the background processing. See 'Setup the worker'" msgstr "Si no tienes versión de comando de PHP instalado en tu servidor, no podras correr el proceso de fondo. Ver 'Configurar Worker'" -#: src/Core/Installer.php:265 +#: src/Core/Installer.php:251 msgid "PHP executable path" msgstr "Ruta executable PHP" -#: src/Core/Installer.php:265 +#: src/Core/Installer.php:251 msgid "" "Enter full path to php executable. You can leave this blank to continue the " "installation." msgstr "Introduce la ruta completa al ejecutable php. Puedes dejarlo en blanco y seguir con la instalación." -#: src/Core/Installer.php:270 +#: src/Core/Installer.php:256 msgid "Command line PHP" msgstr "Línea de comandos PHP" -#: src/Core/Installer.php:279 +#: src/Core/Installer.php:265 msgid "PHP executable is not the php cli binary (could be cgi-fgci version)" msgstr "Ejecutable PHP no es php cli binary (podria ser versión cgi-fgci)" -#: src/Core/Installer.php:280 +#: src/Core/Installer.php:266 msgid "Found PHP version: " msgstr "Versión PHP encontrada:" -#: src/Core/Installer.php:282 +#: src/Core/Installer.php:268 msgid "PHP cli binary" msgstr "PHP cli binario" -#: src/Core/Installer.php:295 +#: src/Core/Installer.php:281 msgid "" "The command line version of PHP on your system does not have " "\"register_argc_argv\" enabled." msgstr "La versión en línea de comandos de PHP en tu sistema no tiene \"register_argc_argv\" habilitado." -#: src/Core/Installer.php:296 +#: src/Core/Installer.php:282 msgid "This is required for message delivery to work." msgstr "Esto es requerido para que funcione la entrega de mensajes." -#: src/Core/Installer.php:301 +#: src/Core/Installer.php:287 msgid "PHP register_argc_argv" msgstr "PHP register_argc_argv" -#: src/Core/Installer.php:333 +#: src/Core/Installer.php:319 msgid "" "Error: the \"openssl_pkey_new\" function on this system is not able to " "generate encryption keys" msgstr "Error: Función \"openssl_pkey_new\" en este sistema no es capaz de generar claves de cifrado" -#: src/Core/Installer.php:334 +#: src/Core/Installer.php:320 msgid "" "If running under Windows, please see " "\"http://www.php.net/manual/en/openssl.installation.php\"." msgstr "Si se ejecuta en Windows, por favor consulta la sección \"http://www.php.net/manual/en/openssl.installation.php\"." -#: src/Core/Installer.php:337 +#: src/Core/Installer.php:323 msgid "Generate encryption keys" msgstr "Generar claves de encriptación" -#: src/Core/Installer.php:388 +#: src/Core/Installer.php:374 msgid "" "Error: Apache webserver mod-rewrite module is required but not installed." msgstr "Error: El módulo de Apache mod-rewrite es necesario pero no está instalado." -#: src/Core/Installer.php:392 +#: src/Core/Installer.php:378 msgid "Apache mod_rewrite module" msgstr "Módulo mod_rewrite de Apache" -#: src/Core/Installer.php:398 +#: src/Core/Installer.php:384 msgid "Error: PDO or MySQLi PHP module required but not installed." msgstr "Error: Módulo PDO o MySQLi PHP requerido pero no instalado." -#: src/Core/Installer.php:402 +#: src/Core/Installer.php:388 msgid "Error: The MySQL driver for PDO is not installed." msgstr "Error: El dispositivo MySQL para PDO no está instalado." -#: src/Core/Installer.php:405 +#: src/Core/Installer.php:391 msgid "PDO or MySQLi PHP module" msgstr "Módulo PDO o MySQLi PHP" -#: src/Core/Installer.php:411 +#: src/Core/Installer.php:397 msgid "Error: The IntlChar module is not installed." msgstr "" -#: src/Core/Installer.php:414 +#: src/Core/Installer.php:400 msgid "IntlChar PHP module" msgstr "" -#: src/Core/Installer.php:422 +#: src/Core/Installer.php:408 msgid "Error, XML PHP module required but not installed." msgstr "Error, módulo XML PHP requerido pero no instalado." -#: src/Core/Installer.php:426 +#: src/Core/Installer.php:412 msgid "XML PHP module" msgstr "Módulo XML PHP" -#: src/Core/Installer.php:429 +#: src/Core/Installer.php:415 msgid "libCurl PHP module" msgstr "Módulo PHP libCurl" -#: src/Core/Installer.php:430 +#: src/Core/Installer.php:416 msgid "Error: libCURL PHP module required but not installed." msgstr "Error: El módulo de PHP libcurl es necesario, pero no está instalado." -#: src/Core/Installer.php:436 +#: src/Core/Installer.php:422 msgid "GD graphics PHP module" msgstr "Módulo PHP gráficos GD" -#: src/Core/Installer.php:437 +#: src/Core/Installer.php:423 msgid "" "Error: GD graphics PHP module with JPEG support required but not installed." msgstr "Error: El módulo de de PHP gráficos GD con soporte JPEG es necesario, pero no está instalado." -#: src/Core/Installer.php:443 +#: src/Core/Installer.php:429 msgid "OpenSSL PHP module" msgstr "Módulo PHP OpenSSL" -#: src/Core/Installer.php:444 +#: src/Core/Installer.php:430 msgid "Error: openssl PHP module required but not installed." msgstr "Error: El módulo de PHP openssl es necesario, pero no está instalado." -#: src/Core/Installer.php:450 +#: src/Core/Installer.php:436 msgid "mb_string PHP module" msgstr "Módulo PHP mb_string" -#: src/Core/Installer.php:451 +#: src/Core/Installer.php:437 msgid "Error: mb_string PHP module required but not installed." msgstr "Error: El módulo de PHP mb_string es necesario, pero no está instalado." -#: src/Core/Installer.php:457 +#: src/Core/Installer.php:443 msgid "iconv PHP module" msgstr "Módulo PHP iconv" -#: src/Core/Installer.php:458 +#: src/Core/Installer.php:444 msgid "Error: iconv PHP module required but not installed." msgstr "Error: módulo iconv PHP requerido pero no instalado." -#: src/Core/Installer.php:464 +#: src/Core/Installer.php:450 msgid "POSIX PHP module" msgstr "Módulo PHP POSIX" -#: src/Core/Installer.php:465 +#: src/Core/Installer.php:451 msgid "Error: POSIX PHP module required but not installed." msgstr "Error: PHP POSIX requerido y no instalado." -#: src/Core/Installer.php:471 +#: src/Core/Installer.php:457 msgid "Program execution functions" msgstr "Funciones de ejecución de programa" -#: src/Core/Installer.php:472 +#: src/Core/Installer.php:458 msgid "" "Error: Program execution functions (proc_open) required but not enabled." msgstr "" -#: src/Core/Installer.php:478 +#: src/Core/Installer.php:464 msgid "JSON PHP module" msgstr "Módulo PHP JSON" -#: src/Core/Installer.php:479 +#: src/Core/Installer.php:465 msgid "Error: JSON PHP module required but not installed." msgstr "Eror: Módulo PHP JSON requerido y no instalado." -#: src/Core/Installer.php:485 +#: src/Core/Installer.php:471 msgid "File Information PHP module" msgstr "Módulo PHP Información de Archivo" -#: src/Core/Installer.php:486 +#: src/Core/Installer.php:472 msgid "Error: File Information PHP module required but not installed." msgstr "Error: Módulo PHP Información de Archivo requerido y no instalado." -#: src/Core/Installer.php:492 +#: src/Core/Installer.php:478 msgid "GNU Multiple Precision PHP module" msgstr "" -#: src/Core/Installer.php:493 +#: src/Core/Installer.php:479 msgid "Error: GNU Multiple Precision PHP module required but not installed." msgstr "" -#: src/Core/Installer.php:499 +#: src/Core/Installer.php:485 msgid "IDN Functions PHP module" msgstr "" -#: src/Core/Installer.php:500 +#: src/Core/Installer.php:486 msgid "Error: IDN Functions PHP module required but not installed." msgstr "" -#: src/Core/Installer.php:523 +#: src/Core/Installer.php:509 msgid "" "The web installer needs to be able to create a file called " "\"local.config.php\" in the \"config\" folder of your web server and it is " "unable to do so." msgstr "El instalador web debe poder crear un archivo llamado\"local.config.php\" en folder \"config\" de su servidor web y esincapaz de hacerlo." -#: src/Core/Installer.php:524 +#: src/Core/Installer.php:510 msgid "" "This is most often a permission setting, as the web server may not be able " "to write files in your folder - even if you can." msgstr "Se trata a menudo de una configuración de permisos, pues el servidor web puede que no sea capaz de escribir archivos en la carpeta, aunque tú puedas." -#: src/Core/Installer.php:525 +#: src/Core/Installer.php:511 msgid "" "At the end of this procedure, we will give you a text to save in a file " "named local.config.php in your Friendica \"config\" folder." msgstr "Al final de este procedimiento, le daremos un texto para guardar en un archivollamado local.config.php en su folder \"config\" de Friendica ." -#: src/Core/Installer.php:526 +#: src/Core/Installer.php:512 msgid "" "You can alternatively skip this procedure and perform a manual installation." " Please see the file \"doc/INSTALL.md\" for instructions." msgstr "Alternativamente, puede omitir este procedimiento y realizar una instalación manual. Consulte el archivo \"doc/INSTALL.md\" para instrucciones." -#: src/Core/Installer.php:529 +#: src/Core/Installer.php:515 msgid "config/local.config.php is writable" msgstr "config/local.config.php es escriturable" -#: src/Core/Installer.php:549 +#: src/Core/Installer.php:535 msgid "" "Friendica uses the Smarty3 template engine to render its web views. Smarty3 " "compiles templates to PHP to speed up rendering." msgstr "Friendica usa el motor de templates Smarty3 para renderizar su visualización web. Smarty3 compila templates PHP para acelerar la velocidad de renderizar." -#: src/Core/Installer.php:550 +#: src/Core/Installer.php:536 msgid "" "In order to store these compiled templates, the web server needs to have " "write access to the directory view/smarty3/ under the Friendica top level " "folder." msgstr "Para poder guardar estos templates compilados, el servidor web necesita acceso de escritura en el directorio /view/smarty3/ en el árbol de raíz de la instalación friendica." -#: src/Core/Installer.php:551 +#: src/Core/Installer.php:537 msgid "" "Please ensure that the user that your web server runs as (e.g. www-data) has" " write access to this folder." msgstr "Por favor asegure que el usuario que utiliza el servidor web (ejemplo: www-data) tiene permisos de escritura en esta carpeta." -#: src/Core/Installer.php:552 +#: src/Core/Installer.php:538 msgid "" "Note: as a security measure, you should give the web server write access to " "view/smarty3/ only--not the template files (.tpl) that it contains." msgstr "Nota: como medida de seguridad deberia dar acceso de escritura solo a /view/smarty3 / → no al los archivos template (.tpl) que contiene." -#: src/Core/Installer.php:555 +#: src/Core/Installer.php:541 msgid "view/smarty3 is writable" msgstr "Se puede escribir en /view/smarty3" -#: src/Core/Installer.php:583 +#: src/Core/Installer.php:569 msgid "" "Url rewrite in .htaccess seems not working. Make sure you copied .htaccess-" "dist to .htaccess." msgstr "La reescritura de URL en .htaccess parece no funcionar. Asegúrese de haber copiado .htaccess-dist a .htaccess." -#: src/Core/Installer.php:584 +#: src/Core/Installer.php:570 msgid "" "In some circumstances (like running inside containers), you can skip this " "error." msgstr "En algunas circunstancias (como ejecutar dentro de contenedores), puede omitir este error." -#: src/Core/Installer.php:586 +#: src/Core/Installer.php:572 msgid "Error message from Curl when fetching" msgstr "Mensaje de Error de Curl en lectura" -#: src/Core/Installer.php:592 +#: src/Core/Installer.php:578 msgid "Url rewrite is working" msgstr "Reescribiendo la dirección..." -#: src/Core/Installer.php:621 +#: src/Core/Installer.php:607 msgid "" "The detection of TLS to secure the communication between the browser and the" " new Friendica server failed." msgstr "" -#: src/Core/Installer.php:622 +#: src/Core/Installer.php:608 msgid "" "It is highly encouraged to use Friendica only over a secure connection as " "sensitive information like passwords will be transmitted." msgstr "" -#: src/Core/Installer.php:623 +#: src/Core/Installer.php:609 msgid "Please ensure that the connection to the server is secure." msgstr "" -#: src/Core/Installer.php:624 +#: src/Core/Installer.php:610 msgid "No TLS detected" msgstr "" -#: src/Core/Installer.php:626 +#: src/Core/Installer.php:612 msgid "TLS detected" msgstr "" -#: src/Core/Installer.php:643 +#: src/Core/Installer.php:629 msgid "ImageMagick PHP extension is not installed" msgstr "No está instalada la extensión ImageMagick PHP" -#: src/Core/Installer.php:645 +#: src/Core/Installer.php:631 msgid "ImageMagick PHP extension is installed" msgstr "ImageMagick PHP extension is installed" -#: src/Core/Installer.php:666 +#: src/Core/Installer.php:652 msgid "Database already in use." msgstr "Base de datos ya esta en uso" -#: src/Core/Installer.php:671 +#: src/Core/Installer.php:657 msgid "Could not connect to database." msgstr "No es posible conectar con Base Datos." -#: src/Core/L10n.php:444 src/Model/Item.php:2300 +#: src/Core/L10n.php:430 src/Model/Item.php:2315 msgid "Undetermined" msgstr "" -#: src/Core/L10n.php:451 +#: src/Core/L10n.php:437 #, php-format msgid "%s (%s)" msgstr "" -#: src/Core/L10n.php:499 src/Model/Event.php:430 -#: src/Module/Settings/Display.php:284 +#: src/Core/L10n.php:485 src/Model/Event.php:416 +#: src/Module/Settings/Display.php:270 msgid "Monday" msgstr "Lunes" -#: src/Core/L10n.php:499 src/Model/Event.php:431 -#: src/Module/Settings/Display.php:285 +#: src/Core/L10n.php:485 src/Model/Event.php:417 +#: src/Module/Settings/Display.php:271 msgid "Tuesday" msgstr "Martes" -#: src/Core/L10n.php:499 src/Model/Event.php:432 -#: src/Module/Settings/Display.php:286 +#: src/Core/L10n.php:485 src/Model/Event.php:418 +#: src/Module/Settings/Display.php:272 msgid "Wednesday" msgstr "Miércoles" -#: src/Core/L10n.php:499 src/Model/Event.php:433 -#: src/Module/Settings/Display.php:287 +#: src/Core/L10n.php:485 src/Model/Event.php:419 +#: src/Module/Settings/Display.php:273 msgid "Thursday" msgstr "Jueves" -#: src/Core/L10n.php:499 src/Model/Event.php:434 -#: src/Module/Settings/Display.php:288 +#: src/Core/L10n.php:485 src/Model/Event.php:420 +#: src/Module/Settings/Display.php:274 msgid "Friday" msgstr "Viernes" -#: src/Core/L10n.php:499 src/Model/Event.php:435 -#: src/Module/Settings/Display.php:289 +#: src/Core/L10n.php:485 src/Model/Event.php:421 +#: src/Module/Settings/Display.php:275 msgid "Saturday" msgstr "Sábado" -#: src/Core/L10n.php:499 src/Model/Event.php:429 -#: src/Module/Settings/Display.php:283 +#: src/Core/L10n.php:485 src/Model/Event.php:415 +#: src/Module/Settings/Display.php:269 msgid "Sunday" msgstr "Domingo" -#: src/Core/L10n.php:503 src/Model/Event.php:450 +#: src/Core/L10n.php:489 src/Model/Event.php:436 msgid "January" msgstr "Enero" -#: src/Core/L10n.php:503 src/Model/Event.php:451 +#: src/Core/L10n.php:489 src/Model/Event.php:437 msgid "February" msgstr "Febrero" -#: src/Core/L10n.php:503 src/Model/Event.php:452 +#: src/Core/L10n.php:489 src/Model/Event.php:438 msgid "March" msgstr "Marzo" -#: src/Core/L10n.php:503 src/Model/Event.php:453 +#: src/Core/L10n.php:489 src/Model/Event.php:439 msgid "April" msgstr "Abril" -#: src/Core/L10n.php:503 src/Core/L10n.php:522 src/Model/Event.php:441 +#: src/Core/L10n.php:489 src/Core/L10n.php:508 src/Model/Event.php:427 msgid "May" msgstr "Mayo" -#: src/Core/L10n.php:503 src/Model/Event.php:454 +#: src/Core/L10n.php:489 src/Model/Event.php:440 msgid "June" msgstr "Junio" -#: src/Core/L10n.php:503 src/Model/Event.php:455 +#: src/Core/L10n.php:489 src/Model/Event.php:441 msgid "July" msgstr "Julio" -#: src/Core/L10n.php:503 src/Model/Event.php:456 +#: src/Core/L10n.php:489 src/Model/Event.php:442 msgid "August" msgstr "Agosto" -#: src/Core/L10n.php:503 src/Model/Event.php:457 +#: src/Core/L10n.php:489 src/Model/Event.php:443 msgid "September" msgstr "Septiembre" -#: src/Core/L10n.php:503 src/Model/Event.php:458 +#: src/Core/L10n.php:489 src/Model/Event.php:444 msgid "October" msgstr "Octubre" -#: src/Core/L10n.php:503 src/Model/Event.php:459 +#: src/Core/L10n.php:489 src/Model/Event.php:445 msgid "November" msgstr "Noviembre" -#: src/Core/L10n.php:503 src/Model/Event.php:460 +#: src/Core/L10n.php:489 src/Model/Event.php:446 msgid "December" msgstr "Diciembre" -#: src/Core/L10n.php:518 src/Model/Event.php:422 +#: src/Core/L10n.php:504 src/Model/Event.php:408 msgid "Mon" msgstr "Lun" -#: src/Core/L10n.php:518 src/Model/Event.php:423 +#: src/Core/L10n.php:504 src/Model/Event.php:409 msgid "Tue" msgstr "Mar" -#: src/Core/L10n.php:518 src/Model/Event.php:424 +#: src/Core/L10n.php:504 src/Model/Event.php:410 msgid "Wed" msgstr "Mie" -#: src/Core/L10n.php:518 src/Model/Event.php:425 +#: src/Core/L10n.php:504 src/Model/Event.php:411 msgid "Thu" msgstr "Jue" -#: src/Core/L10n.php:518 src/Model/Event.php:426 +#: src/Core/L10n.php:504 src/Model/Event.php:412 msgid "Fri" msgstr "Vie" -#: src/Core/L10n.php:518 src/Model/Event.php:427 +#: src/Core/L10n.php:504 src/Model/Event.php:413 msgid "Sat" msgstr "Sab" -#: src/Core/L10n.php:518 src/Model/Event.php:421 +#: src/Core/L10n.php:504 src/Model/Event.php:407 msgid "Sun" msgstr "Dom" -#: src/Core/L10n.php:522 src/Model/Event.php:437 +#: src/Core/L10n.php:508 src/Model/Event.php:423 msgid "Jan" msgstr "Ene" -#: src/Core/L10n.php:522 src/Model/Event.php:438 +#: src/Core/L10n.php:508 src/Model/Event.php:424 msgid "Feb" msgstr "Feb" -#: src/Core/L10n.php:522 src/Model/Event.php:439 +#: src/Core/L10n.php:508 src/Model/Event.php:425 msgid "Mar" msgstr "Mar" -#: src/Core/L10n.php:522 src/Model/Event.php:440 +#: src/Core/L10n.php:508 src/Model/Event.php:426 msgid "Apr" msgstr "Abr" -#: src/Core/L10n.php:522 src/Model/Event.php:442 +#: src/Core/L10n.php:508 src/Model/Event.php:428 msgid "Jun" msgstr "Jun" -#: src/Core/L10n.php:522 src/Model/Event.php:443 +#: src/Core/L10n.php:508 src/Model/Event.php:429 msgid "Jul" msgstr "Jul" -#: src/Core/L10n.php:522 src/Model/Event.php:444 +#: src/Core/L10n.php:508 src/Model/Event.php:430 msgid "Aug" msgstr "Ago" -#: src/Core/L10n.php:522 +#: src/Core/L10n.php:508 msgid "Sep" msgstr "Sep" -#: src/Core/L10n.php:522 src/Model/Event.php:446 +#: src/Core/L10n.php:508 src/Model/Event.php:432 msgid "Oct" msgstr "Oct" -#: src/Core/L10n.php:522 src/Model/Event.php:447 +#: src/Core/L10n.php:508 src/Model/Event.php:433 msgid "Nov" msgstr "Nov" -#: src/Core/L10n.php:522 src/Model/Event.php:448 +#: src/Core/L10n.php:508 src/Model/Event.php:434 msgid "Dec" msgstr "Dec" -#: src/Core/Logger/Util/LoggerSettingsCheck.php:60 +#: src/Core/Logger/Util/LoggerSettingsCheck.php:46 #, php-format msgid "The logfile '%s' is not usable. No logging possible (error: '%s')" msgstr "Tl archivo de log '%s' no se puede usar. No es posible el registro (error: '%s')" -#: src/Core/Logger/Util/LoggerSettingsCheck.php:85 +#: src/Core/Logger/Util/LoggerSettingsCheck.php:71 #, php-format msgid "" "The debug logfile '%s' is not usable. No logging possible (error: '%s')" msgstr "El archivo de log de debugg '%s' no puede usarse. No es posible el registro (error: '%s')" -#: src/Core/Renderer.php:92 src/Core/Renderer.php:121 -#: src/Core/Renderer.php:150 src/Core/Renderer.php:184 -#: src/Render/FriendicaSmartyEngine.php:60 +#: src/Core/Renderer.php:78 src/Core/Renderer.php:107 +#: src/Core/Renderer.php:136 src/Core/Renderer.php:170 +#: src/Render/FriendicaSmartyEngine.php:46 msgid "" "Friendica can't display this page at the moment, please contact the " "administrator." msgstr "Friendica no puede mostrar la página actualmente, contacte al administrador." -#: src/Core/Renderer.php:146 +#: src/Core/Renderer.php:132 msgid "template engine cannot be registered without a name." msgstr "Motor de plantilla no puede registrarse sin nombre." -#: src/Core/Renderer.php:180 +#: src/Core/Renderer.php:166 msgid "template engine is not registered!" msgstr "Motor de Plantilla no esta registrado!" -#: src/Core/Storage/Type/FilesystemConfig.php:78 +#: src/Core/Storage/Type/FilesystemConfig.php:64 msgid "Storage base path" msgstr "Ruta base de Almacenamiento" -#: src/Core/Storage/Type/FilesystemConfig.php:80 +#: src/Core/Storage/Type/FilesystemConfig.php:66 msgid "" "Folder where uploaded files are saved. For maximum security, This should be " "a path outside web server folder tree" msgstr "Carpeta para subir archivos guardada. Para mayor seguridad, Deberá ser una ruta fuera del folder del árbol web" -#: src/Core/Storage/Type/FilesystemConfig.php:93 +#: src/Core/Storage/Type/FilesystemConfig.php:79 msgid "Enter a valid existing folder" msgstr "Ingresa un folder válido existente" -#: src/Core/Update.php:80 +#: src/Core/Update.php:66 #, php-format msgid "" "Updates from version %s are not supported. Please update at least to version" " 2021.01 and wait until the postupdate finished version 1383." msgstr "Las actualizaciones de la versión %s no son compatibles. Actualice al menos a la versión 2021.01 y espere hasta que postupdate finalice con versión 1383." -#: src/Core/Update.php:91 +#: src/Core/Update.php:77 #, php-format msgid "" "Updates from postupdate version %s are not supported. Please update at least" " to version 2021.01 and wait until the postupdate finished version 1383." msgstr "Actualizaciones de postupdate versión %s no soportadas. Actualice al menos a versión 2021.01 y espere hasta que postupdate termine en version 1383." -#: src/Core/Update.php:183 +#: src/Core/Update.php:169 #, php-format msgid "%s: executing pre update %d" msgstr "%s: ejecutando pre update %d " -#: src/Core/Update.php:225 +#: src/Core/Update.php:211 #, php-format msgid "%s: executing post update %d" msgstr "%s: ejecutando post update %d " -#: src/Core/Update.php:299 +#: src/Core/Update.php:285 #, php-format msgid "Update %s failed. See error logs." msgstr "Falló la actualización de %s. Vea los registros de errores." -#: src/Core/Update.php:339 +#: src/Core/Update.php:325 #, php-format msgid "" "\n" @@ -3228,49 +3234,49 @@ msgid "" "\t\t\t\tfriendica developer if you can not help me on your own. My database might be invalid." msgstr "\n\t\t\t\tLos desarrolladores liberaron una actualización reciente %s ,\n\t\t\t\tpero cuando se intentó instalar, algo salió mal.\n\t\t\t\tNecesita arreglarse pronto y no se hará automáticamente. Contacta\n\t\t\t\tal developer friendica si no puedes hacerlo tu mismo. La base de datos puede estar errónea." -#: src/Core/Update.php:345 +#: src/Core/Update.php:331 #, php-format msgid "The error message is\\n[pre]%s[/pre]" msgstr "El mensaje de error es\\n[pre]%s[/pre]" -#: src/Core/Update.php:349 src/Core/Update.php:377 +#: src/Core/Update.php:335 src/Core/Update.php:363 msgid "[Friendica Notify] Database update" msgstr "[Notificación Friendica] Actualización de Base de Datos" -#: src/Core/Update.php:371 +#: src/Core/Update.php:357 #, php-format msgid "" "\n" "\t\t\t\tThe friendica database was successfully updated from %s to %s." msgstr "" -#: src/Database/DBStructure.php:57 +#: src/Database/DBStructure.php:43 #, php-format msgid "The database version had been set to %s." msgstr "Versión de la Base de Datos establecida a %s." -#: src/Database/DBStructure.php:82 +#: src/Database/DBStructure.php:68 #, php-format msgid "" "The post update is at version %d, it has to be at %d to safely drop the " "tables." msgstr "La actualización de la publicación está en versión %d, debe estar en %d para eliminar las tablas de manera segura." -#: src/Database/DBStructure.php:95 +#: src/Database/DBStructure.php:81 msgid "No unused tables found." msgstr "No hay tablas sin usar." -#: src/Database/DBStructure.php:100 +#: src/Database/DBStructure.php:86 msgid "" "These tables are not used for friendica and will be deleted when you execute" " \"dbstructure drop -e\":" msgstr "Estas tablas no se utilizan por friendica y se eliminarán cuando ejecute \"dbstructure drop -e\":" -#: src/Database/DBStructure.php:137 +#: src/Database/DBStructure.php:123 msgid "There are no tables on MyISAM or InnoDB with the Antelope file format." msgstr "No hay tablas en MyISAM o InnoDB con formato Antílope." -#: src/Database/DBStructure.php:161 +#: src/Database/DBStructure.php:147 #, php-format msgid "" "\n" @@ -3278,329 +3284,325 @@ msgid "" "%s\n" msgstr "\n\nError %d ocurrido durante la actualización de la base de datos:\n%s\n" -#: src/Database/DBStructure.php:164 +#: src/Database/DBStructure.php:150 msgid "Errors encountered performing database changes: " msgstr "Errores encontrados al realizar cambios en la base de datos: " -#: src/Database/DBStructure.php:232 +#: src/Database/DBStructure.php:218 msgid "Another database update is currently running." msgstr "Otro update de la BD esta corriendo." -#: src/Database/DBStructure.php:236 +#: src/Database/DBStructure.php:222 #, php-format msgid "%s: Database update" msgstr "%s: Actualizar Base de Datos" -#: src/Database/DBStructure.php:493 +#: src/Database/DBStructure.php:479 #, php-format msgid "%s: updating %s table." msgstr "%s: actualizando %s tabla." -#: src/Factory/Api/Mastodon/Error.php:42 +#: src/Factory/Api/Mastodon/Error.php:28 msgid "Record not found" msgstr "Registro no encontrado" -#: src/Factory/Api/Mastodon/Error.php:49 +#: src/Factory/Api/Mastodon/Error.php:35 msgid "Unprocessable Entity" msgstr "" -#: src/Factory/Api/Mastodon/Error.php:56 +#: src/Factory/Api/Mastodon/Error.php:42 msgid "Unauthorized" msgstr "No autorizado" -#: src/Factory/Api/Mastodon/Error.php:62 +#: src/Factory/Api/Mastodon/Error.php:48 msgid "" "Token is not authorized with a valid user or is missing a required scope" msgstr "" -#: src/Factory/Api/Mastodon/Error.php:69 +#: src/Factory/Api/Mastodon/Error.php:55 msgid "Internal Server Error" msgstr "Error Interno del Servidor" -#: src/LegacyModule.php:63 +#: src/LegacyModule.php:49 #, php-format msgid "Legacy module file not found: %s" msgstr "Modulo legado no encontrado: %s" -#: src/Model/Circle.php:106 +#: src/Model/Circle.php:92 msgid "" "A deleted circle with this name was revived. Existing item permissions " "may apply to this circle and any future members. If this is" " not what you intended, please create another circle with a different name." msgstr "" -#: src/Model/Circle.php:544 +#: src/Model/Circle.php:530 msgid "Everybody" msgstr "Todo el mundo" -#: src/Model/Circle.php:563 +#: src/Model/Circle.php:549 msgid "edit" msgstr "editar" -#: src/Model/Circle.php:600 +#: src/Model/Circle.php:586 msgid "add" msgstr "añadir" -#: src/Model/Circle.php:605 +#: src/Model/Circle.php:591 msgid "Edit circle" msgstr "" -#: src/Model/Circle.php:606 src/Module/Circle.php:195 +#: src/Model/Circle.php:592 src/Module/Circle.php:181 msgid "Contacts not in any circle" msgstr "" -#: src/Model/Circle.php:608 +#: src/Model/Circle.php:594 msgid "Create a new circle" msgstr "" -#: src/Model/Circle.php:609 src/Module/Circle.php:180 -#: src/Module/Circle.php:203 src/Module/Circle.php:278 +#: src/Model/Circle.php:595 src/Module/Circle.php:166 +#: src/Module/Circle.php:189 src/Module/Circle.php:264 msgid "Circle Name: " msgstr "" -#: src/Model/Circle.php:610 +#: src/Model/Circle.php:596 msgid "Edit circles" msgstr "" -#: src/Model/Contact.php:1247 src/Module/Moderation/Users/Pending.php:102 -#: src/Module/Notifications/Introductions.php:132 -#: src/Module/Notifications/Introductions.php:204 +#: src/Model/Contact.php:1263 src/Module/Moderation/Users/Pending.php:88 +#: src/Module/Notifications/Introductions.php:124 +#: src/Module/Notifications/Introductions.php:196 msgid "Approve" msgstr "Aprobar" -#: src/Model/Contact.php:1725 +#: src/Model/Contact.php:1743 msgid "Organisation" msgstr "Organización" -#: src/Model/Contact.php:1733 +#: src/Model/Contact.php:1751 msgid "Group" msgstr "" -#: src/Model/Contact.php:1737 src/Module/Moderation/BaseUsers.php:131 +#: src/Model/Contact.php:1755 src/Module/Moderation/BaseUsers.php:120 msgid "Relay" msgstr "Retransmisión" -#: src/Model/Contact.php:3046 +#: src/Model/Contact.php:3070 msgid "Disallowed profile URL." msgstr "Dirección de perfil no permitida." -#: src/Model/Contact.php:3051 src/Module/Friendica.php:100 +#: src/Model/Contact.php:3075 src/Module/Friendica.php:86 msgid "Blocked domain" msgstr "Dominio bloqueado" -#: src/Model/Contact.php:3056 +#: src/Model/Contact.php:3080 msgid "Connect URL missing." msgstr "Falta el conector URL." -#: src/Model/Contact.php:3065 +#: src/Model/Contact.php:3089 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:3083 +#: src/Model/Contact.php:3107 #, php-format msgid "Expected network %s does not match actual network %s" msgstr "" -#: src/Model/Contact.php:3100 +#: src/Model/Contact.php:3124 msgid "This seems to be a relay account. They can't be followed by users." msgstr "" -#: src/Model/Contact.php:3107 +#: src/Model/Contact.php:3131 msgid "The profile address specified does not provide adequate information." msgstr "La dirección del perfil especificado no proporciona información adecuada." -#: src/Model/Contact.php:3109 +#: src/Model/Contact.php:3133 msgid "No compatible communication protocols or feeds were discovered." msgstr "No se ha descubierto protocolos de comunicación o fuentes compatibles." -#: src/Model/Contact.php:3112 +#: src/Model/Contact.php:3136 msgid "An author or name was not found." msgstr "No se ha encontrado un autor o nombre." -#: src/Model/Contact.php:3115 +#: src/Model/Contact.php:3139 msgid "No browser URL could be matched to this address." msgstr "Ninguna dirección concuerda con la suministrada." -#: src/Model/Contact.php:3118 +#: src/Model/Contact.php:3142 msgid "" "Unable to match @-style Identity Address with a known protocol or email " "contact." msgstr "Imposible identificar la Identidad @-style con algún protocolo conocido o dirección de contacto." -#: src/Model/Contact.php:3119 +#: src/Model/Contact.php:3143 msgid "Use mailto: in front of address to force email check." msgstr "Escribe mailto: al principio de la dirección para forzar el envío." -#: src/Model/Contact.php:3125 -msgid "" -"The profile address specified belongs to a network which has been disabled " -"on this site." -msgstr "La dirección del perfil especificada pertenece a una red que ha sido deshabilitada en este sitio." - -#: src/Model/Contact.php:3130 +#: src/Model/Contact.php:3149 msgid "" "Limited profile. This person will be unable to receive direct/personal " "notifications from you." msgstr "Perfil limitado. Esta persona no podrá recibir notificaciones directas/personales tuyas." -#: src/Model/Contact.php:3196 +#: src/Model/Contact.php:3208 msgid "Unable to retrieve contact information." msgstr "No ha sido posible recibir la información del contacto." -#: src/Model/Event.php:54 +#: src/Model/Event.php:40 msgid "l F d, Y \\@ g:i A \\G\\M\\TP (e)" msgstr "" -#: src/Model/Event.php:75 src/Model/Event.php:92 src/Model/Event.php:469 -#: src/Model/Event.php:942 +#: src/Model/Event.php:61 src/Model/Event.php:78 src/Model/Event.php:455 +#: src/Model/Event.php:928 msgid "Starts:" msgstr "Inicio:" -#: src/Model/Event.php:78 src/Model/Event.php:98 src/Model/Event.php:470 -#: src/Model/Event.php:946 +#: src/Model/Event.php:64 src/Model/Event.php:84 src/Model/Event.php:456 +#: src/Model/Event.php:932 msgid "Finishes:" msgstr "Final:" -#: src/Model/Event.php:419 +#: src/Model/Event.php:405 msgid "all-day" msgstr "todo el día" -#: src/Model/Event.php:445 +#: src/Model/Event.php:431 msgid "Sept" msgstr "Sept" -#: src/Model/Event.php:462 src/Module/Calendar/Show.php:128 -#: src/Util/Temporal.php:343 +#: src/Model/Event.php:448 src/Module/Calendar/Show.php:114 +#: src/Util/Temporal.php:329 msgid "today" msgstr "hoy" -#: src/Model/Event.php:463 src/Module/Calendar/Show.php:129 -#: src/Module/Settings/Display.php:294 src/Util/Temporal.php:353 +#: src/Model/Event.php:449 src/Module/Calendar/Show.php:115 +#: src/Module/Settings/Display.php:280 src/Util/Temporal.php:339 msgid "month" msgstr "mes" -#: src/Model/Event.php:464 src/Module/Calendar/Show.php:130 -#: src/Module/Settings/Display.php:295 src/Util/Temporal.php:354 +#: src/Model/Event.php:450 src/Module/Calendar/Show.php:116 +#: src/Module/Settings/Display.php:281 src/Util/Temporal.php:340 msgid "week" msgstr "semana" -#: src/Model/Event.php:465 src/Module/Calendar/Show.php:131 -#: src/Module/Settings/Display.php:296 src/Util/Temporal.php:355 +#: src/Model/Event.php:451 src/Module/Calendar/Show.php:117 +#: src/Module/Settings/Display.php:282 src/Util/Temporal.php:341 msgid "day" msgstr "día" -#: src/Model/Event.php:467 +#: src/Model/Event.php:453 msgid "No events to display" msgstr "No hay eventos a mostrar" -#: src/Model/Event.php:516 src/Module/DFRN/Poll.php:47 src/Module/Feed.php:68 -#: src/Module/Update/Profile.php:56 +#: src/Model/Event.php:502 src/Module/Feed.php:56 +#: src/Module/Update/Profile.php:42 msgid "Access to this profile has been restricted." msgstr "El acceso a este perfil ha sido restringido." -#: src/Model/Event.php:558 src/Module/Calendar/Event/Show.php:67 +#: src/Model/Event.php:544 src/Module/Calendar/Event/Show.php:53 msgid "Event not found." msgstr "" -#: src/Model/Event.php:637 +#: src/Model/Event.php:623 msgid "l, F j" msgstr "l, F j" -#: src/Model/Event.php:664 +#: src/Model/Event.php:650 msgid "Edit event" msgstr "Editar evento" -#: src/Model/Event.php:665 +#: src/Model/Event.php:651 msgid "Duplicate event" msgstr "Duplicar evento" -#: src/Model/Event.php:666 +#: src/Model/Event.php:652 msgid "Delete event" msgstr "Borrar evento" -#: src/Model/Event.php:896 src/Module/Debug/Localtime.php:38 +#: src/Model/Event.php:882 src/Module/Debug/Localtime.php:24 msgid "l F d, Y \\@ g:i A" msgstr "l F d, Y \\@ g:i A" -#: src/Model/Event.php:897 +#: src/Model/Event.php:883 msgid "D g:i A" msgstr "D g:i A" -#: src/Model/Event.php:898 +#: src/Model/Event.php:884 msgid "g:i A" msgstr "g:i A" -#: src/Model/Event.php:961 src/Model/Event.php:963 +#: src/Model/Event.php:947 src/Model/Event.php:949 msgid "Show map" msgstr "Mostrar mapa" -#: src/Model/Event.php:962 +#: src/Model/Event.php:948 msgid "Hide map" msgstr "Ocultar mapa" -#: src/Model/Event.php:1055 +#: src/Model/Event.php:1041 #, php-format msgid "%s's birthday" msgstr "Cumpleaños de %s" -#: src/Model/Event.php:1056 +#: src/Model/Event.php:1042 #, php-format msgid "Happy Birthday %s" msgstr "Feliz cumpleaños %s" -#: src/Model/Item.php:2307 +#: src/Model/Item.php:2322 #, php-format msgid "%s (%s - %s): %s" msgstr "" -#: src/Model/Item.php:2309 +#: src/Model/Item.php:2324 #, php-format msgid "%s (%s): %s" msgstr "" -#: src/Model/Item.php:2312 +#: src/Model/Item.php:2327 #, php-format -msgid "Detected languages in this post:\\n%s" -msgstr "Lenguajes detectados en artículo:\\n%s" +msgid "" +"Detected languages in this post:\n" +"%s" +msgstr "" -#: src/Model/Item.php:3260 +#: src/Model/Item.php:3276 msgid "activity" msgstr "Actividad" -#: src/Model/Item.php:3262 +#: src/Model/Item.php:3278 msgid "comment" msgstr "" -#: src/Model/Item.php:3265 src/Module/Post/Tag/Add.php:123 +#: src/Model/Item.php:3281 src/Module/Post/Tag/Add.php:109 msgid "post" msgstr "Publicación" -#: src/Model/Item.php:3435 +#: src/Model/Item.php:3451 #, php-format msgid "%s is blocked" msgstr "" -#: src/Model/Item.php:3437 +#: src/Model/Item.php:3453 #, php-format msgid "%s is ignored" msgstr "" -#: src/Model/Item.php:3439 +#: src/Model/Item.php:3455 #, php-format msgid "Content from %s is collapsed" msgstr "" -#: src/Model/Item.php:3443 +#: src/Model/Item.php:3459 msgid "Sensitive content" msgstr "" -#: src/Model/Item.php:3912 +#: src/Model/Item.php:3928 msgid "bytes" msgstr "bytes" -#: src/Model/Item.php:3943 +#: src/Model/Item.php:3959 #, php-format msgid "%2$s (%3$d%%, %1$d vote)" msgid_plural "%2$s (%3$d%%, %1$d votes)" @@ -3608,7 +3610,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: src/Model/Item.php:3945 +#: src/Model/Item.php:3961 #, php-format msgid "%2$s (%1$d vote)" msgid_plural "%2$s (%1$d votes)" @@ -3616,7 +3618,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: src/Model/Item.php:3950 +#: src/Model/Item.php:3966 #, php-format msgid "%d voter. Poll end: %s" msgid_plural "%d voters. Poll end: %s" @@ -3624,7 +3626,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: src/Model/Item.php:3952 +#: src/Model/Item.php:3968 #, php-format msgid "%d voter." msgid_plural "%d voters." @@ -3632,241 +3634,241 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: src/Model/Item.php:3954 +#: src/Model/Item.php:3970 #, php-format msgid "Poll end: %s" msgstr "" -#: src/Model/Item.php:3995 src/Model/Item.php:3996 +#: src/Model/Item.php:4011 src/Model/Item.php:4012 msgid "View on separate page" msgstr "Ver en pagina aparte" -#: src/Model/Mail.php:135 +#: src/Model/Mail.php:121 msgid "[no subject]" msgstr "[sin asunto]" -#: src/Model/Photo.php:1198 src/Module/Media/Photo/Upload.php:168 +#: src/Model/Photo.php:1194 src/Module/Media/Photo/Upload.php:154 msgid "Wall Photos" msgstr "Foto del Perfil" -#: src/Model/Profile.php:364 src/Module/Profile/Profile.php:283 -#: src/Module/Profile/Profile.php:285 +#: src/Model/Profile.php:343 src/Module/Profile/Profile.php:271 +#: src/Module/Profile/Profile.php:273 msgid "Edit profile" msgstr "Editar perfil" -#: src/Model/Profile.php:366 +#: src/Model/Profile.php:345 msgid "Change profile photo" msgstr "Cambiar foto del perfil" -#: src/Model/Profile.php:379 src/Module/Directory.php:152 -#: src/Module/Profile/Profile.php:209 +#: src/Model/Profile.php:358 src/Module/Directory.php:139 +#: src/Module/Profile/Profile.php:197 msgid "Homepage:" msgstr "Inicio:" -#: src/Model/Profile.php:380 src/Module/Contact/Profile.php:418 -#: src/Module/Notifications/Introductions.php:189 +#: src/Model/Profile.php:359 src/Module/Contact/Profile.php:418 +#: src/Module/Notifications/Introductions.php:181 msgid "About:" msgstr "Acerca de:" -#: src/Model/Profile.php:481 +#: src/Model/Profile.php:460 msgid "Atom feed" msgstr "Atom feed" -#: src/Model/Profile.php:488 +#: src/Model/Profile.php:467 msgid "This website has been verified to belong to the same person." msgstr "" -#: src/Model/Profile.php:539 +#: src/Model/Profile.php:518 msgid "F d" msgstr "F d" -#: src/Model/Profile.php:603 src/Model/Profile.php:680 +#: src/Model/Profile.php:582 src/Model/Profile.php:663 msgid "[today]" msgstr "[hoy]" -#: src/Model/Profile.php:612 +#: src/Model/Profile.php:591 msgid "Birthday Reminders" msgstr "Recordatorios de cumpleaños" -#: src/Model/Profile.php:613 +#: src/Model/Profile.php:592 msgid "Birthdays this week:" msgstr "Cumpleaños esta semana:" -#: src/Model/Profile.php:629 +#: src/Model/Profile.php:608 msgid "g A l F d" msgstr "g A l F d" -#: src/Model/Profile.php:667 +#: src/Model/Profile.php:650 msgid "[No description]" msgstr "[Sin descripción]" -#: src/Model/Profile.php:693 +#: src/Model/Profile.php:676 msgid "Event Reminders" msgstr "Recordatorios de eventos" -#: src/Model/Profile.php:694 +#: src/Model/Profile.php:677 msgid "Upcoming events the next 7 days:" msgstr "Eventos de los próximos 7 dias:" -#: src/Model/Profile.php:882 -#, php-format -msgid "OpenWebAuth: %1$s welcomes %2$s" -msgstr "OpenWebAuth: %1$s te da la bienvenida %2$s" - -#: src/Model/Profile.php:1022 +#: src/Model/Profile.php:789 msgid "Hometown:" msgstr "Ciudad de origen:" -#: src/Model/Profile.php:1023 +#: src/Model/Profile.php:790 msgid "Marital Status:" msgstr "Estado civil:" -#: src/Model/Profile.php:1024 +#: src/Model/Profile.php:791 msgid "With:" msgstr "Con:" -#: src/Model/Profile.php:1025 +#: src/Model/Profile.php:792 msgid "Since:" msgstr "Desde:" -#: src/Model/Profile.php:1026 +#: src/Model/Profile.php:793 msgid "Sexual Preference:" msgstr "Preferencia sexual:" -#: src/Model/Profile.php:1027 +#: src/Model/Profile.php:794 msgid "Political Views:" msgstr "Ideas políticas:" -#: src/Model/Profile.php:1028 +#: src/Model/Profile.php:795 msgid "Religious Views:" msgstr "Creencias religiosas:" -#: src/Model/Profile.php:1029 +#: src/Model/Profile.php:796 msgid "Likes:" msgstr "Me gustan:" -#: src/Model/Profile.php:1030 +#: src/Model/Profile.php:797 msgid "Dislikes:" msgstr "No me gustan:" -#: src/Model/Profile.php:1031 +#: src/Model/Profile.php:798 msgid "Title/Description:" msgstr "Título/Descripción:" -#: src/Model/Profile.php:1032 src/Module/Admin/Summary.php:197 -#: src/Module/Moderation/Report/Create.php:280 -#: src/Module/Moderation/Summary.php:76 +#: src/Model/Profile.php:799 src/Module/Admin/Summary.php:183 +#: src/Module/Moderation/Report/Create.php:266 +#: src/Module/Moderation/Summary.php:62 msgid "Summary" msgstr "Resumen" -#: src/Model/Profile.php:1033 +#: src/Model/Profile.php:800 msgid "Musical interests" msgstr "Gustos musicales" -#: src/Model/Profile.php:1034 +#: src/Model/Profile.php:801 msgid "Books, literature" msgstr "Libros, literatura" -#: src/Model/Profile.php:1035 +#: src/Model/Profile.php:802 msgid "Television" msgstr "Televisión" -#: src/Model/Profile.php:1036 +#: src/Model/Profile.php:803 msgid "Film/dance/culture/entertainment" msgstr "Películas/baile/cultura/entretenimiento" -#: src/Model/Profile.php:1037 +#: src/Model/Profile.php:804 msgid "Hobbies/Interests" msgstr "Aficiones/Intereses" -#: src/Model/Profile.php:1038 +#: src/Model/Profile.php:805 msgid "Love/romance" msgstr "Amor/Romance" -#: src/Model/Profile.php:1039 +#: src/Model/Profile.php:806 msgid "Work/employment" msgstr "Trabajo/ocupación" -#: src/Model/Profile.php:1040 +#: src/Model/Profile.php:807 msgid "School/education" msgstr "Escuela/estudios" -#: src/Model/Profile.php:1041 +#: src/Model/Profile.php:808 msgid "Contact information and Social Networks" msgstr "Informacioń de contacto y Redes sociales" -#: src/Model/User.php:233 src/Model/User.php:1303 +#: src/Model/Profile.php:856 +#, php-format +msgid "Responsible account: %s" +msgstr "" + +#: src/Model/User.php:217 src/Model/User.php:1310 msgid "SERIOUS ERROR: Generation of security keys failed." msgstr "ERROR GRAVE: Generación de claves de seguridad falló." -#: src/Model/User.php:733 src/Model/User.php:766 +#: src/Model/User.php:740 src/Model/User.php:773 msgid "Login failed" msgstr "Ingreso fallido" -#: src/Model/User.php:798 +#: src/Model/User.php:805 msgid "Not enough information to authenticate" msgstr "Falta información para autenticación" -#: src/Model/User.php:923 +#: src/Model/User.php:930 msgid "Password can't be empty" msgstr "La contraseña es requerida" -#: src/Model/User.php:965 +#: src/Model/User.php:972 msgid "Empty passwords are not allowed." msgstr "No se permiten contraseñas vacias" -#: src/Model/User.php:969 +#: src/Model/User.php:976 msgid "" "The new password has been exposed in a public data dump, please choose " "another." msgstr "La nueva contraseña ya se ha usado muchas veces, escoja otro." -#: src/Model/User.php:973 +#: src/Model/User.php:980 msgid "The password length is limited to 72 characters." msgstr "" -#: src/Model/User.php:977 +#: src/Model/User.php:984 msgid "The password can't contain white spaces nor accentuated letters" msgstr "" -#: src/Model/User.php:1186 +#: src/Model/User.php:1193 msgid "Passwords do not match. Password unchanged." msgstr "Las contraseñas no coinciden. La contraseña no ha sido modificada." -#: src/Model/User.php:1193 +#: src/Model/User.php:1200 msgid "An invitation is required." msgstr "Se requiere de invitación." -#: src/Model/User.php:1197 +#: src/Model/User.php:1204 msgid "Invitation could not be verified." msgstr "No se puede verificar la invitación." -#: src/Model/User.php:1205 +#: src/Model/User.php:1212 msgid "Invalid OpenID url" msgstr "Dirección OpenID no válida" -#: src/Model/User.php:1218 src/Security/Authentication.php:230 +#: src/Model/User.php:1225 src/Security/Authentication.php:214 msgid "" "We encountered a problem while logging in with the OpenID you provided. " "Please check the correct spelling of the ID." msgstr "Se ha encontrado un problema para acceder con el OpenID que has escrito. Verifica que lo hayas escrito correctamente." -#: src/Model/User.php:1218 src/Security/Authentication.php:230 +#: src/Model/User.php:1225 src/Security/Authentication.php:214 msgid "The error message was:" msgstr "El mensaje del error fue:" -#: src/Model/User.php:1224 +#: src/Model/User.php:1231 msgid "Please enter the required information." msgstr "Por favor, introduce la información necesaria." -#: src/Model/User.php:1238 +#: src/Model/User.php:1245 #, php-format msgid "" "system.username_min_length (%s) and system.username_max_length (%s) are " "excluding each other, swapping values." msgstr "system.username_min_length (%s) y system.username_max_length (%s) son mutuamente excluyentes, los valores se sobreponen." -#: src/Model/User.php:1245 +#: src/Model/User.php:1252 #, php-format msgid "Username should be at least %s character." msgid_plural "Username should be at least %s characters." @@ -3874,7 +3876,7 @@ msgstr[0] "Usuario debe ser al menos %s caracter." msgstr[1] "Usuario debe ser al menos %s caracteres." msgstr[2] "Usuario debe ser al menos %s caracteres." -#: src/Model/User.php:1249 +#: src/Model/User.php:1256 #, php-format msgid "Username should be at most %s character." msgid_plural "Username should be at most %s characters." @@ -3882,31 +3884,31 @@ msgstr[0] "Usuario debe ser máximo %s caracter." msgstr[1] "Usuario debe ser máximo %s caracteres." msgstr[2] "Usuario debe ser máximo %s caracteres." -#: src/Model/User.php:1257 +#: src/Model/User.php:1264 msgid "That doesn't appear to be your full (First Last) name." msgstr "No parece que ese sea tu nombre completo." -#: src/Model/User.php:1262 +#: src/Model/User.php:1269 msgid "Your email domain is not among those allowed on this site." msgstr "Tu dominio de correo no se encuentra entre los permitidos en este sitio." -#: src/Model/User.php:1266 +#: src/Model/User.php:1273 msgid "Not a valid email address." msgstr "No es una dirección de correo electrónico válida." -#: src/Model/User.php:1269 +#: src/Model/User.php:1276 msgid "The nickname was blocked from registration by the nodes admin." msgstr "Ese nombre se bloquea a solicitud del administrador." -#: src/Model/User.php:1273 src/Model/User.php:1279 +#: src/Model/User.php:1280 src/Model/User.php:1286 msgid "Cannot use that email." msgstr "No puede usarse ese correo electrónico." -#: src/Model/User.php:1285 +#: src/Model/User.php:1292 msgid "Your nickname can only contain a-z, 0-9 and _." msgstr "Tu apodo solo puede contener a-z, 0 al 9 y guión bajo (_)." -#: src/Model/User.php:1293 src/Model/User.php:1350 +#: src/Model/User.php:1300 src/Model/User.php:1350 msgid "Nickname is already registered. Please choose another." msgstr "Apodo ya registrado. Por favor, elije otro." @@ -3931,11 +3933,11 @@ msgid "" "An error occurred creating your default contact circle. Please try again." msgstr "" -#: src/Model/User.php:1422 +#: src/Model/User.php:1428 msgid "Profile Photos" msgstr "Fotos del perfil" -#: src/Model/User.php:1604 +#: src/Model/User.php:1616 #, php-format msgid "" "\n" @@ -3943,7 +3945,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:1607 +#: src/Model/User.php:1619 #, php-format msgid "" "\n" @@ -3974,12 +3976,12 @@ msgid "" "\t\tThank you and welcome to %4$s." msgstr "" -#: src/Model/User.php:1639 src/Model/User.php:1745 +#: src/Model/User.php:1651 src/Model/User.php:1757 #, php-format msgid "Registration details for %s" msgstr "Detalles de registro para %s" -#: src/Model/User.php:1659 +#: src/Model/User.php:1671 #, php-format msgid "" "\n" @@ -3994,12 +3996,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:1678 +#: src/Model/User.php:1690 #, php-format msgid "Registration at %s" msgstr "Registro en %s" -#: src/Model/User.php:1702 +#: src/Model/User.php:1714 #, php-format msgid "" "\n" @@ -4008,7 +4010,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:1710 +#: src/Model/User.php:1722 #, php-format msgid "" "\n" @@ -4039,93 +4041,91 @@ msgid "" "\t\t\tThank you and welcome to %2$s." msgstr "" -#: src/Model/User.php:1772 +#: src/Model/User.php:1784 msgid "" "User with delegates can't be removed, please remove delegate users first" msgstr "" -#: src/Module/Admin/Addons/Details.php:65 +#: src/Module/Admin/Addons/Details.php:51 msgid "Addon not found." msgstr "Añadido no encontrado." -#: src/Module/Admin/Addons/Details.php:76 src/Module/Admin/Addons/Index.php:49 +#: src/Module/Admin/Addons/Details.php:62 src/Module/Admin/Addons/Index.php:41 #, php-format msgid "Addon %s disabled." msgstr "Añadido %s deshabilitado." -#: src/Module/Admin/Addons/Details.php:79 src/Module/Admin/Addons/Index.php:51 +#: src/Module/Admin/Addons/Details.php:65 src/Module/Admin/Addons/Index.php:43 #, php-format msgid "Addon %s enabled." msgstr "Añadido %s habilitado." -#: src/Module/Admin/Addons/Details.php:88 -#: src/Module/Admin/Themes/Details.php:46 +#: src/Module/Admin/Addons/Details.php:74 +#: src/Module/Admin/Themes/Details.php:38 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/Addons/Details.php:77 +#: src/Module/Admin/Themes/Details.php:41 src/Module/Settings/Display.php:326 msgid "Enable" msgstr "Activar" -#: src/Module/Admin/Addons/Details.php:111 -#: src/Module/Admin/Addons/Index.php:67 src/Module/Admin/Federation.php:220 -#: src/Module/Admin/Logs/Settings.php:88 src/Module/Admin/Logs/View.php:85 -#: src/Module/Admin/Queue.php:73 src/Module/Admin/Site.php:455 -#: 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 -#: src/Module/Moderation/Users/Pending.php:96 +#: src/Module/Admin/Addons/Details.php:97 src/Module/Admin/Addons/Index.php:59 +#: src/Module/Admin/Federation.php:206 src/Module/Admin/Logs/Settings.php:74 +#: src/Module/Admin/Logs/View.php:71 src/Module/Admin/Queue.php:59 +#: src/Module/Admin/Site.php:447 src/Module/Admin/Storage.php:124 +#: src/Module/Admin/Summary.php:182 src/Module/Admin/Themes/Details.php:82 +#: src/Module/Admin/Themes/Index.php:103 src/Module/Admin/Tos.php:63 +#: src/Module/Moderation/Users/Create.php:47 +#: src/Module/Moderation/Users/Pending.php:82 msgid "Administration" msgstr "Administración" -#: src/Module/Admin/Addons/Details.php:112 -#: src/Module/Admin/Addons/Index.php:68 src/Module/BaseAdmin.php:92 -#: src/Module/BaseSettings.php:139 +#: src/Module/Admin/Addons/Details.php:98 src/Module/Admin/Addons/Index.php:60 +#: src/Module/BaseAdmin.php:78 src/Module/BaseSettings.php:125 msgid "Addons" msgstr "Añadidos" -#: src/Module/Admin/Addons/Details.php:113 -#: src/Module/Admin/Themes/Details.php:92 +#: src/Module/Admin/Addons/Details.php:99 +#: src/Module/Admin/Themes/Details.php:84 msgid "Toggle" msgstr "Activar" -#: src/Module/Admin/Addons/Details.php:120 -#: src/Module/Admin/Themes/Details.php:100 +#: src/Module/Admin/Addons/Details.php:106 +#: src/Module/Admin/Themes/Details.php:92 msgid "Author: " msgstr "Autor: " -#: src/Module/Admin/Addons/Details.php:121 -#: src/Module/Admin/Themes/Details.php:101 +#: src/Module/Admin/Addons/Details.php:107 +#: src/Module/Admin/Themes/Details.php:93 msgid "Maintainer: " msgstr "Mantenedor: " -#: src/Module/Admin/Addons/Index.php:42 +#: src/Module/Admin/Addons/Index.php:34 msgid "Addons reloaded" msgstr "Añadidos re cargados" -#: src/Module/Admin/Addons/Index.php:53 +#: src/Module/Admin/Addons/Index.php:45 #, php-format 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:83 -#: src/Module/Admin/Logs/Settings.php:90 src/Module/Admin/Site.php:458 -#: src/Module/Admin/Themes/Index.php:113 src/Module/Admin/Tos.php:86 -#: src/Module/Settings/Account.php:558 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/Features.php:75 +#: src/Module/Admin/Addons/Index.php:61 src/Module/Admin/Features.php:69 +#: src/Module/Admin/Logs/Settings.php:76 src/Module/Admin/Site.php:450 +#: src/Module/Admin/Themes/Index.php:105 src/Module/Admin/Tos.php:72 +#: src/Module/Settings/Account.php:549 src/Module/Settings/Addons.php:64 +#: src/Module/Settings/Connectors.php:149 +#: src/Module/Settings/Connectors.php:235 +#: src/Module/Settings/Delegation.php:179 src/Module/Settings/Display.php:295 +#: src/Module/Settings/Features.php:61 msgid "Save Settings" msgstr "Guardar configuración" -#: src/Module/Admin/Addons/Index.php:70 +#: src/Module/Admin/Addons/Index.php:62 msgid "Reload active addons" msgstr "Añadidos activos re cargados" -#: src/Module/Admin/Addons/Index.php:74 +#: src/Module/Admin/Addons/Index.php:66 #, php-format msgid "" "There are currently no addons available on your node. You can find the " @@ -4133,98 +4133,98 @@ msgid "" " the open addon registry at %2$s" msgstr "No hay añadidos disponibles en el nodo. Puedes encontrar el repositorio oficial en %1$s y puedes encontrar otros interesantes en el registro de añadidos en %2$s" -#: src/Module/Admin/DBSync.php:51 +#: src/Module/Admin/DBSync.php:37 msgid "Update has been marked successful" msgstr "La actualización se ha completado con éxito" -#: src/Module/Admin/DBSync.php:59 +#: src/Module/Admin/DBSync.php:45 #, php-format msgid "Database structure update %s was successfully applied." msgstr "Actualización de base de datos %s fue aplicada con éxito." -#: src/Module/Admin/DBSync.php:61 +#: src/Module/Admin/DBSync.php:47 #, php-format msgid "Executing of database structure update %s failed with error: %s" msgstr "El paso de actualización de la estructura de la base de datos %s fallo con el mensaje de error: %s" -#: src/Module/Admin/DBSync.php:76 +#: src/Module/Admin/DBSync.php:62 #, php-format msgid "Executing %s failed with error: %s" msgstr "Paso %s fallo con el error: %s" -#: src/Module/Admin/DBSync.php:78 +#: src/Module/Admin/DBSync.php:64 #, php-format msgid "Update %s was successfully applied." msgstr "Actualización %s aplicada con éxito." -#: src/Module/Admin/DBSync.php:81 +#: src/Module/Admin/DBSync.php:67 #, php-format msgid "Update %s did not return a status. Unknown if it succeeded." msgstr "La actualización %s no ha informado, se desconoce el estado." -#: src/Module/Admin/DBSync.php:84 +#: src/Module/Admin/DBSync.php:70 #, php-format msgid "There was no additional update function %s that needed to be called." msgstr "No había función adicional de actualización %s que necesitaba ser requerida." -#: src/Module/Admin/DBSync.php:105 +#: src/Module/Admin/DBSync.php:91 msgid "No failed updates." msgstr "Actualizaciones sin fallos." -#: src/Module/Admin/DBSync.php:106 +#: src/Module/Admin/DBSync.php:92 msgid "Check database structure" msgstr "Revisar estructura de la base de datos" -#: src/Module/Admin/DBSync.php:110 +#: src/Module/Admin/DBSync.php:96 msgid "Failed Updates" msgstr "Actualizaciones fallidas" -#: src/Module/Admin/DBSync.php:111 +#: src/Module/Admin/DBSync.php:97 msgid "" "This does not include updates prior to 1139, which did not return a status." msgstr "No se incluyen las anteriores a la 1139, que no indicaban su estado." -#: src/Module/Admin/DBSync.php:112 +#: src/Module/Admin/DBSync.php:98 msgid "Mark success (if update was manually applied)" msgstr "Marcar como correcta (si actualizaste manualmente)" -#: src/Module/Admin/DBSync.php:113 +#: src/Module/Admin/DBSync.php:99 msgid "Attempt to execute this update step automatically" msgstr "Intentando ejecutar este paso automáticamente" -#: src/Module/Admin/Features.php:67 -#: src/Module/Notifications/Introductions.php:144 -#: src/Module/OAuth/Acknowledge.php:55 src/Module/Register.php:132 -#: src/Module/Settings/TwoFactor/Trusted.php:129 +#: src/Module/Admin/Features.php:53 +#: src/Module/Notifications/Introductions.php:136 +#: src/Module/OAuth/Acknowledge.php:41 src/Module/Register.php:124 +#: src/Module/Settings/TwoFactor/Trusted.php:115 msgid "No" msgstr "No" -#: src/Module/Admin/Features.php:67 src/Module/Contact/Revoke.php:108 -#: src/Module/Notifications/Introductions.php:144 -#: src/Module/OAuth/Acknowledge.php:54 src/Module/Register.php:131 -#: src/Module/Settings/TwoFactor/Trusted.php:129 +#: src/Module/Admin/Features.php:53 src/Module/Contact/Revoke.php:91 +#: src/Module/Notifications/Introductions.php:136 +#: src/Module/OAuth/Acknowledge.php:40 src/Module/Register.php:123 +#: src/Module/Settings/TwoFactor/Trusted.php:115 msgid "Yes" msgstr "Sí" -#: src/Module/Admin/Features.php:67 +#: src/Module/Admin/Features.php:53 msgid "Locked" msgstr "" -#: src/Module/Admin/Features.php:81 +#: src/Module/Admin/Features.php:67 msgid "Manage Additional Features" msgstr "Administrar opciones adicionales" -#: src/Module/Admin/Federation.php:82 -#: src/Module/Moderation/Report/Create.php:191 -#: src/Module/Moderation/Report/Create.php:316 +#: src/Module/Admin/Federation.php:68 +#: src/Module/Moderation/Report/Create.php:177 +#: src/Module/Moderation/Report/Create.php:302 msgid "Other" msgstr "Otro" -#: src/Module/Admin/Federation.php:160 src/Module/Admin/Federation.php:408 +#: src/Module/Admin/Federation.php:146 src/Module/Admin/Federation.php:394 msgid "unknown" msgstr "desconocido" -#: src/Module/Admin/Federation.php:193 +#: src/Module/Admin/Federation.php:179 #, php-format msgid "%2$s total system" msgid_plural "%2$s total systems" @@ -4232,7 +4232,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: src/Module/Admin/Federation.php:194 +#: src/Module/Admin/Federation.php:180 #, php-format msgid "%2$s active user last month" msgid_plural "%2$s active users last month" @@ -4240,7 +4240,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: src/Module/Admin/Federation.php:195 +#: src/Module/Admin/Federation.php:181 #, php-format msgid "%2$s active user last six months" msgid_plural "%2$s active users last six months" @@ -4248,7 +4248,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: src/Module/Admin/Federation.php:196 +#: src/Module/Admin/Federation.php:182 #, php-format msgid "%2$s registered user" msgid_plural "%2$s registered users" @@ -4256,7 +4256,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: src/Module/Admin/Federation.php:197 +#: src/Module/Admin/Federation.php:183 #, php-format msgid "%2$s locally created post or comment" msgid_plural "%2$s locally created posts and comments" @@ -4264,7 +4264,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: src/Module/Admin/Federation.php:200 +#: src/Module/Admin/Federation.php:186 #, php-format msgid "%2$s post per user" msgid_plural "%2$s posts per user" @@ -4272,7 +4272,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: src/Module/Admin/Federation.php:205 +#: src/Module/Admin/Federation.php:191 #, php-format msgid "%2$s user per system" msgid_plural "%2$s users per system" @@ -4280,18 +4280,18 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: src/Module/Admin/Federation.php:215 +#: src/Module/Admin/Federation.php:201 msgid "" "This page offers you some numbers to the known part of the federated social " "network your Friendica node is part of. These numbers are not complete but " "only reflect the part of the network your node is aware of." msgstr "Esta pagina ofrece algunos datos sobre la red conocida a la que tu nodo friendica esta conectado. Estos nummeros no son completos respecto a las redes federadas, si no refleja los nodos esta instancia conoce." -#: src/Module/Admin/Federation.php:221 src/Module/BaseAdmin.php:87 +#: src/Module/Admin/Federation.php:207 src/Module/BaseAdmin.php:73 msgid "Federation Statistics" msgstr "Estadísticas de federación" -#: src/Module/Admin/Federation.php:224 +#: src/Module/Admin/Federation.php:210 #, php-format msgid "" "Currently this node is aware of %2$s node (%3$s active users last month, " @@ -4305,58 +4305,58 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: src/Module/Admin/Logs/Settings.php:47 +#: src/Module/Admin/Logs/Settings.php:33 #, php-format msgid "The logfile '%s' is not writable. No logging possible" msgstr "El archivo de Log '%s' no es escriturable. No puede registrar Log." -#: src/Module/Admin/Logs/Settings.php:80 +#: src/Module/Admin/Logs/Settings.php:66 msgid "PHP log currently enabled." msgstr "Registro PHP actualmente disponible." -#: src/Module/Admin/Logs/Settings.php:82 +#: src/Module/Admin/Logs/Settings.php:68 msgid "PHP log currently disabled." msgstr "Registro PHP actualmente deshabilitado." -#: src/Module/Admin/Logs/Settings.php:89 src/Module/BaseAdmin.php:102 -#: src/Module/BaseAdmin.php:103 +#: src/Module/Admin/Logs/Settings.php:75 src/Module/BaseAdmin.php:88 +#: src/Module/BaseAdmin.php:89 msgid "Logs" msgstr "Registros" -#: src/Module/Admin/Logs/Settings.php:91 +#: src/Module/Admin/Logs/Settings.php:77 msgid "Clear" msgstr "Limpiar" -#: src/Module/Admin/Logs/Settings.php:94 +#: src/Module/Admin/Logs/Settings.php:80 msgid "Enable Debugging" msgstr "Habilitar debugging" -#: src/Module/Admin/Logs/Settings.php:94 src/Module/Admin/Logs/Settings.php:95 -#: src/Module/Admin/Logs/Settings.php:96 src/Module/Admin/Site.php:478 -#: src/Module/Admin/Site.php:486 +#: src/Module/Admin/Logs/Settings.php:80 src/Module/Admin/Logs/Settings.php:81 +#: src/Module/Admin/Logs/Settings.php:82 src/Module/Admin/Site.php:470 +#: src/Module/Admin/Site.php:478 msgid "" "Read-only because it is set by an environment variable" msgstr "" -#: src/Module/Admin/Logs/Settings.php:95 +#: src/Module/Admin/Logs/Settings.php:81 msgid "Log file" msgstr "Archivo de registro" -#: src/Module/Admin/Logs/Settings.php:95 +#: src/Module/Admin/Logs/Settings.php:81 msgid "" "Must be writable by web server. Relative to your Friendica top-level " "directory." msgstr "Debes tener permiso de escritura en el servidor. Relacionado con tu directorio de inicio de Friendica." -#: src/Module/Admin/Logs/Settings.php:96 +#: src/Module/Admin/Logs/Settings.php:82 msgid "Log level" msgstr "Nivel de registro" -#: src/Module/Admin/Logs/Settings.php:98 +#: src/Module/Admin/Logs/Settings.php:84 msgid "PHP logging" msgstr "PHP logging" -#: src/Module/Admin/Logs/Settings.php:99 +#: src/Module/Admin/Logs/Settings.php:85 msgid "" "To temporarily enable logging of PHP errors and warnings you can prepend the" " following to the index.php file of your installation. The filename set in " @@ -4365,402 +4365,407 @@ msgid "" "'display_errors' is to enable these options, set to '0' to disable them." msgstr "Para habilitar temporalmente el registro de errores y advertencias de PHP, puede anteponer lo siguiente al archivo index.php de su instalación. El nombre de archivo establecido en la línea 'error_log' es relativo al directorio de nivel superior de Friendica y debe poder escribirse por el servidor. La opción '1' para 'log_errors' y 'display_errors' es para habilitar estas opciones, establezca en '0' para deshabilitarlas." -#: src/Module/Admin/Logs/View.php:72 +#: src/Module/Admin/Logs/View.php:58 #, php-format msgid "" "Error trying to open %1$s log file.
Check to see if " "file %1$s exist and is readable." msgstr "" -#: src/Module/Admin/Logs/View.php:81 +#: src/Module/Admin/Logs/View.php:67 #, php-format msgid "" "Couldn't open %1$s log file.
Check to see if file %1$s " "is readable." msgstr "" -#: src/Module/Admin/Logs/View.php:86 src/Module/BaseAdmin.php:104 +#: src/Module/Admin/Logs/View.php:72 src/Module/BaseAdmin.php:90 msgid "View Logs" msgstr "Ver registro de depuración" -#: src/Module/Admin/Logs/View.php:89 +#: src/Module/Admin/Logs/View.php:75 msgid "Search in logs" msgstr "" -#: src/Module/Admin/Logs/View.php:90 -#: src/Module/Notifications/Notifications.php:140 +#: src/Module/Admin/Logs/View.php:76 +#: src/Module/Notifications/Notifications.php:132 msgid "Show all" msgstr "Mostrar todo" -#: src/Module/Admin/Logs/View.php:91 +#: src/Module/Admin/Logs/View.php:77 msgid "Date" msgstr "" -#: src/Module/Admin/Logs/View.php:92 +#: src/Module/Admin/Logs/View.php:78 msgid "Level" msgstr "" -#: src/Module/Admin/Logs/View.php:93 +#: src/Module/Admin/Logs/View.php:79 msgid "Context" msgstr "" -#: src/Module/Admin/Logs/View.php:95 +#: src/Module/Admin/Logs/View.php:81 msgid "ALL" msgstr "" -#: src/Module/Admin/Logs/View.php:96 +#: src/Module/Admin/Logs/View.php:82 msgid "View details" msgstr "" -#: src/Module/Admin/Logs/View.php:97 +#: src/Module/Admin/Logs/View.php:83 msgid "Click to view details" msgstr "" -#: src/Module/Admin/Logs/View.php:98 src/Module/Calendar/Event/Form.php:207 +#: src/Module/Admin/Logs/View.php:84 src/Module/Calendar/Event/Form.php:193 msgid "Event details" msgstr "Detalles del evento" -#: src/Module/Admin/Logs/View.php:99 +#: src/Module/Admin/Logs/View.php:85 msgid "Data" msgstr "" -#: src/Module/Admin/Logs/View.php:100 -#: src/Module/Debug/ActivityPubConversion.php:57 +#: src/Module/Admin/Logs/View.php:86 +#: src/Module/Debug/ActivityPubConversion.php:49 msgid "Source" msgstr "Fuente" -#: src/Module/Admin/Logs/View.php:101 +#: src/Module/Admin/Logs/View.php:87 msgid "File" msgstr "" -#: src/Module/Admin/Logs/View.php:102 +#: src/Module/Admin/Logs/View.php:88 msgid "Line" msgstr "" -#: src/Module/Admin/Logs/View.php:103 +#: src/Module/Admin/Logs/View.php:89 msgid "Function" msgstr "" -#: src/Module/Admin/Logs/View.php:104 +#: src/Module/Admin/Logs/View.php:90 msgid "UID" msgstr "" -#: src/Module/Admin/Logs/View.php:105 +#: src/Module/Admin/Logs/View.php:91 msgid "Process ID" msgstr "" -#: src/Module/Admin/Logs/View.php:106 +#: src/Module/Admin/Logs/View.php:92 msgid "Close" msgstr "" -#: src/Module/Admin/Queue.php:50 +#: src/Module/Admin/Queue.php:36 msgid "Inspect Deferred Worker Queue" msgstr "Inspeccionar Cola diferida de Workers" -#: src/Module/Admin/Queue.php:51 +#: src/Module/Admin/Queue.php:37 msgid "" "This page lists the deferred worker jobs. This are jobs that couldn't be " "executed at the first time." msgstr "Esta página enumera los jobs de los Workers diferidos. Estos son jobs que no se pudieron ejecutar la primera vez." -#: src/Module/Admin/Queue.php:54 +#: src/Module/Admin/Queue.php:40 msgid "Inspect Worker Queue" msgstr "Inspeccionar Cola de Workers" -#: src/Module/Admin/Queue.php:55 +#: src/Module/Admin/Queue.php:41 msgid "" "This page lists the currently queued worker jobs. These jobs are handled by " "the worker cronjob you've set up during install." msgstr "Esta página enumera los jobs de workers actualmente en cola. Estos Jobs son manejados por el cronjob de trabajador que configuró durante la instalación." -#: src/Module/Admin/Queue.php:76 +#: src/Module/Admin/Queue.php:62 msgid "ID" msgstr "ID" -#: src/Module/Admin/Queue.php:77 +#: src/Module/Admin/Queue.php:63 msgid "Command" msgstr "" -#: src/Module/Admin/Queue.php:78 +#: src/Module/Admin/Queue.php:64 msgid "Job Parameters" msgstr "Parámetros del Job" -#: src/Module/Admin/Queue.php:79 src/Module/Moderation/Reports.php:110 -#: src/Module/Settings/OAuth.php:74 +#: src/Module/Admin/Queue.php:65 src/Module/Moderation/Reports.php:102 +#: src/Module/Settings/OAuth.php:60 msgid "Created" msgstr "Creado" -#: src/Module/Admin/Queue.php:80 +#: src/Module/Admin/Queue.php:66 msgid "Next Try" msgstr "" -#: src/Module/Admin/Queue.php:81 +#: src/Module/Admin/Queue.php:67 msgid "Priority" msgstr "Prioridad" -#: src/Module/Admin/Site.php:243 +#: src/Module/Admin/Site.php:230 +#, php-format +msgid "%s is no valid input for maximum media size" +msgstr "" + +#: src/Module/Admin/Site.php:235 #, 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:362 src/Module/Settings/Display.php:201 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:379 src/Module/Settings/Display.php:211 #, php-format msgid "%s - (Experimental)" msgstr "%s - (Experimental)" -#: src/Module/Admin/Site.php:399 +#: src/Module/Admin/Site.php:391 msgid "No community page" msgstr "No hay pagina de comunidad" -#: src/Module/Admin/Site.php:400 +#: src/Module/Admin/Site.php:392 msgid "No community page for visitors" msgstr "" -#: src/Module/Admin/Site.php:401 +#: src/Module/Admin/Site.php:393 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:394 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:395 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:401 msgid "Multi user instance" msgstr "Sesión multi usuario" -#: src/Module/Admin/Site.php:432 +#: src/Module/Admin/Site.php:424 msgid "Closed" msgstr "Cerrado" -#: src/Module/Admin/Site.php:433 +#: src/Module/Admin/Site.php:425 msgid "Requires approval" msgstr "Requiere aprobación" -#: src/Module/Admin/Site.php:434 +#: src/Module/Admin/Site.php:426 msgid "Open" msgstr "Abierto" -#: src/Module/Admin/Site.php:438 +#: src/Module/Admin/Site.php:430 msgid "Don't check" msgstr "No verificar" -#: src/Module/Admin/Site.php:439 +#: src/Module/Admin/Site.php:431 msgid "check the stable version" msgstr "verifique la versión estable" -#: src/Module/Admin/Site.php:440 +#: src/Module/Admin/Site.php:432 msgid "check the development version" msgstr "verifica la versión de desarrollo" -#: src/Module/Admin/Site.php:444 +#: src/Module/Admin/Site.php:436 msgid "none" msgstr "ninguno" -#: src/Module/Admin/Site.php:445 +#: src/Module/Admin/Site.php:437 msgid "Local contacts" msgstr "Contactos Locales" -#: src/Module/Admin/Site.php:446 +#: src/Module/Admin/Site.php:438 msgid "Interactors" msgstr "Interactores" -#: src/Module/Admin/Site.php:456 src/Module/BaseAdmin.php:90 +#: src/Module/Admin/Site.php:448 src/Module/BaseAdmin.php:76 msgid "Site" msgstr "Sitio" -#: src/Module/Admin/Site.php:457 +#: src/Module/Admin/Site.php:449 msgid "General Information" msgstr "Información General" -#: src/Module/Admin/Site.php:459 +#: src/Module/Admin/Site.php:451 msgid "Republish users to directory" msgstr "Republicar usuarios al Directorio" -#: src/Module/Admin/Site.php:460 src/Module/Register.php:153 +#: src/Module/Admin/Site.php:452 src/Module/Register.php:145 msgid "Registration" msgstr "Registro" -#: src/Module/Admin/Site.php:461 +#: src/Module/Admin/Site.php:453 msgid "File upload" msgstr "Subida de archivo" -#: src/Module/Admin/Site.php:462 +#: src/Module/Admin/Site.php:454 msgid "Policies" msgstr "Políticas" -#: src/Module/Admin/Site.php:463 src/Module/Calendar/Event/Form.php:252 -#: src/Module/Contact.php:546 src/Module/Profile/Profile.php:276 +#: src/Module/Admin/Site.php:455 src/Module/Calendar/Event/Form.php:238 +#: src/Module/Contact.php:528 src/Module/Profile/Profile.php:264 msgid "Advanced" msgstr "Avanzado" -#: src/Module/Admin/Site.php:464 +#: src/Module/Admin/Site.php:456 msgid "Auto Discovered Contact Directory" msgstr "Directorio de contactos descubierto automáticamente" -#: src/Module/Admin/Site.php:465 +#: src/Module/Admin/Site.php:457 msgid "Performance" msgstr "Rendimiento" -#: src/Module/Admin/Site.php:466 +#: src/Module/Admin/Site.php:458 msgid "Worker" msgstr "Worker" -#: src/Module/Admin/Site.php:467 +#: src/Module/Admin/Site.php:459 msgid "Message Relay" msgstr "Retransmisión de Mensajes" -#: src/Module/Admin/Site.php:468 +#: src/Module/Admin/Site.php:460 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:461 msgid "The system is not subscribed to any relays at the moment." msgstr "" -#: src/Module/Admin/Site.php:470 +#: src/Module/Admin/Site.php:462 msgid "The system is currently subscribed to the following relays:" msgstr "" -#: src/Module/Admin/Site.php:473 +#: src/Module/Admin/Site.php:465 msgid "Relocate Node" msgstr "" -#: src/Module/Admin/Site.php:474 +#: src/Module/Admin/Site.php:466 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:467 msgid "(Friendica directory)# bin/console relocate https://newdomain.com" msgstr "" -#: src/Module/Admin/Site.php:478 +#: src/Module/Admin/Site.php:470 msgid "Site name" msgstr "Nombre del sitio" -#: src/Module/Admin/Site.php:479 +#: src/Module/Admin/Site.php:471 msgid "Sender Email" msgstr "Correo que Envía" -#: src/Module/Admin/Site.php:479 +#: src/Module/Admin/Site.php:471 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:472 msgid "Name of the system actor" msgstr "Nombre del actor del Sistema" -#: src/Module/Admin/Site.php:480 +#: src/Module/Admin/Site.php:472 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:473 msgid "Banner/Logo" msgstr "Imagen/Logotipo" -#: src/Module/Admin/Site.php:482 +#: src/Module/Admin/Site.php:474 msgid "Email Banner/Logo" msgstr "Logo del Correo" -#: src/Module/Admin/Site.php:483 +#: src/Module/Admin/Site.php:475 msgid "Shortcut icon" msgstr "Icono del Enlace" -#: src/Module/Admin/Site.php:483 +#: src/Module/Admin/Site.php:475 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:476 msgid "Touch icon" msgstr "Icono Tocar" -#: src/Module/Admin/Site.php:484 +#: src/Module/Admin/Site.php:476 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:477 msgid "Additional Info" msgstr "Información Adicional" -#: src/Module/Admin/Site.php:485 +#: src/Module/Admin/Site.php:477 #, 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:478 msgid "System language" msgstr "Lenguaje del Sistema" -#: src/Module/Admin/Site.php:487 +#: src/Module/Admin/Site.php:479 msgid "System theme" msgstr "Tema del Sistema" -#: src/Module/Admin/Site.php:487 +#: src/Module/Admin/Site.php:479 #, 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:480 msgid "Mobile system theme" msgstr "Tema de sistema móvil" -#: src/Module/Admin/Site.php:488 +#: src/Module/Admin/Site.php:480 msgid "Theme for mobile devices" msgstr "Tema para dispositivos móviles" -#: src/Module/Admin/Site.php:489 +#: src/Module/Admin/Site.php:481 msgid "Force SSL" msgstr "Forzar SSL" -#: src/Module/Admin/Site.php:489 +#: src/Module/Admin/Site.php:481 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:482 msgid "Show help entry from navigation menu" msgstr "" -#: src/Module/Admin/Site.php:490 +#: src/Module/Admin/Site.php:482 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:483 msgid "Single user instance" msgstr "Sesión de usuario único" -#: src/Module/Admin/Site.php:491 +#: src/Module/Admin/Site.php:483 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:485 msgid "Maximum image size" msgstr "Tamaño máximo de la imagen" -#: src/Module/Admin/Site.php:493 +#: src/Module/Admin/Site.php:485 #, 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" @@ -4768,35 +4773,47 @@ 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:489 msgid "Maximum image length" msgstr "Largo máximo de imagen" -#: src/Module/Admin/Site.php:497 +#: src/Module/Admin/Site.php:489 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:490 msgid "JPEG image quality" msgstr "Calidad de imagen JPEG" -#: src/Module/Admin/Site.php:498 +#: src/Module/Admin/Site.php:490 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:491 +msgid "Maximum media file size" +msgstr "" + +#: src/Module/Admin/Site.php:491 +#, php-format +msgid "" +"Maximum size in bytes of uploaded media files. Default is 0, which means no limits. You can put k, m, or g behind the desired value for KiB, MiB, GiB, respectively.\n" +"\t\t\t\t\t\t\t\t\t\t\t\t\tThe value of upload_max_filesize in your PHP.ini needs be set to at least the desired limit.\n" +"\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:496 msgid "Register policy" msgstr "Política de registros" -#: src/Module/Admin/Site.php:501 +#: src/Module/Admin/Site.php:497 msgid "Maximum Users" msgstr "" -#: src/Module/Admin/Site.php:501 +#: src/Module/Admin/Site.php:497 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 " @@ -4804,167 +4821,167 @@ msgid "" "not when the policy is set to approval." msgstr "" -#: src/Module/Admin/Site.php:502 +#: src/Module/Admin/Site.php:498 msgid "Maximum Daily Registrations" msgstr "Registros Máximos Diarios" -#: src/Module/Admin/Site.php:502 +#: src/Module/Admin/Site.php:498 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:499 msgid "Register text" msgstr "Términos" -#: src/Module/Admin/Site.php:503 +#: src/Module/Admin/Site.php:499 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:500 msgid "Forbidden Nicknames" msgstr "Apodos Prohibidos" -#: src/Module/Admin/Site.php:504 +#: src/Module/Admin/Site.php:500 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:501 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:501 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:502 msgid "Allowed friend domains" msgstr "Dominios amigos permitidos" -#: src/Module/Admin/Site.php:506 +#: src/Module/Admin/Site.php:502 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:503 msgid "Allowed email domains" msgstr "Dominios de correo permitidos" -#: src/Module/Admin/Site.php:507 +#: src/Module/Admin/Site.php:503 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:504 msgid "Disallowed email domains" msgstr "" -#: src/Module/Admin/Site.php:508 +#: src/Module/Admin/Site.php:504 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:509 +#: src/Module/Admin/Site.php:505 msgid "No OEmbed rich content" msgstr "No hay contenido enriquecido OEmbed" -#: src/Module/Admin/Site.php:509 +#: src/Module/Admin/Site.php:505 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:510 +#: src/Module/Admin/Site.php:506 msgid "Trusted third-party domains" msgstr "Dominios terceros de confianza" -#: src/Module/Admin/Site.php:510 +#: src/Module/Admin/Site.php:506 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:511 +#: src/Module/Admin/Site.php:507 msgid "Block public" msgstr "Bloqueo público" -#: src/Module/Admin/Site.php:511 +#: src/Module/Admin/Site.php:507 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:512 +#: src/Module/Admin/Site.php:508 msgid "Force publish" msgstr "Forzar publicación" -#: src/Module/Admin/Site.php:512 +#: src/Module/Admin/Site.php:508 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:512 +#: src/Module/Admin/Site.php:508 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:513 +#: src/Module/Admin/Site.php:509 msgid "Global directory URL" msgstr "URL del directorio global." -#: src/Module/Admin/Site.php:513 +#: src/Module/Admin/Site.php:509 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:514 +#: src/Module/Admin/Site.php:510 msgid "Private posts by default for new users" msgstr "Publicaciones privadas por defecto para usuarios nuevos" -#: src/Module/Admin/Site.php:514 +#: src/Module/Admin/Site.php:510 msgid "" "Set default post permissions for all new members to the default privacy " "circle rather than public." msgstr "" -#: src/Module/Admin/Site.php:515 +#: src/Module/Admin/Site.php:511 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:515 +#: src/Module/Admin/Site.php:511 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:516 +#: src/Module/Admin/Site.php:512 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:516 +#: src/Module/Admin/Site.php:512 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:517 +#: src/Module/Admin/Site.php:513 msgid "Don't embed private images in posts" msgstr "No agregar imágenes privados en las publicaciones" -#: src/Module/Admin/Site.php:517 +#: src/Module/Admin/Site.php:513 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 " @@ -4972,11 +4989,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:518 +#: src/Module/Admin/Site.php:514 msgid "Explicit Content" msgstr "Contenido Explicito" -#: src/Module/Admin/Site.php:518 +#: src/Module/Admin/Site.php:514 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 " @@ -4985,329 +5002,319 @@ 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:519 +#: src/Module/Admin/Site.php:515 msgid "Only local search" msgstr "" -#: src/Module/Admin/Site.php:519 +#: src/Module/Admin/Site.php:515 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:516 msgid "Blocked tags for trending tags" msgstr "" -#: src/Module/Admin/Site.php:520 +#: src/Module/Admin/Site.php:516 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:517 msgid "Cache contact avatars" msgstr "" -#: src/Module/Admin/Site.php:521 +#: src/Module/Admin/Site.php:517 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:518 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:518 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:519 msgid "Allow Users to set up relay channels" msgstr "" -#: src/Module/Admin/Site.php:523 +#: src/Module/Admin/Site.php:519 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:520 msgid "Adjust the feed poll frequency" msgstr "" -#: src/Module/Admin/Site.php:524 +#: src/Module/Admin/Site.php:520 msgid "Automatically detect and set the best feed poll frequency." msgstr "" -#: src/Module/Admin/Site.php:525 +#: src/Module/Admin/Site.php:521 msgid "Minimum poll interval" msgstr "" -#: src/Module/Admin/Site.php:525 +#: src/Module/Admin/Site.php:521 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:522 msgid "Enable multiple registrations" msgstr "" -#: src/Module/Admin/Site.php:526 +#: src/Module/Admin/Site.php:522 msgid "Enable users to register additional accounts for use as pages." msgstr "" -#: src/Module/Admin/Site.php:527 +#: src/Module/Admin/Site.php:523 msgid "Enable OpenID" msgstr "" -#: src/Module/Admin/Site.php:527 +#: src/Module/Admin/Site.php:523 msgid "Enable OpenID support for registration and logins." msgstr "" -#: src/Module/Admin/Site.php:528 +#: src/Module/Admin/Site.php:524 msgid "Enable full name check" msgstr "" -#: src/Module/Admin/Site.php:528 +#: src/Module/Admin/Site.php:524 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:525 msgid "Email administrators on new registration" msgstr "" -#: src/Module/Admin/Site.php:529 +#: src/Module/Admin/Site.php:525 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:526 msgid "Community pages for visitors" msgstr "Paginas de Comunidad para Visitantes" -#: src/Module/Admin/Site.php:530 +#: src/Module/Admin/Site.php:526 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:527 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:527 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:528 msgid "Posts per server on community page" msgstr "" -#: src/Module/Admin/Site.php:532 +#: src/Module/Admin/Site.php:528 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:530 msgid "Enable Mail support" msgstr "" -#: src/Module/Admin/Site.php:534 +#: src/Module/Admin/Site.php:530 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:531 msgid "" "Mail support can't be enabled because the PHP IMAP module is not installed." msgstr "" -#: src/Module/Admin/Site.php:536 -msgid "Enable OStatus support" -msgstr "" - -#: src/Module/Admin/Site.php:536 -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:533 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:534 msgid "Enable Diaspora support" msgstr "Habilitar el soporte para Diaspora*" -#: src/Module/Admin/Site.php:539 +#: src/Module/Admin/Site.php:534 msgid "" "Enable built-in Diaspora network compatibility for communicating with " "diaspora servers." msgstr "" -#: src/Module/Admin/Site.php:540 +#: src/Module/Admin/Site.php:535 msgid "Verify SSL" msgstr "Verificar SSL" -#: src/Module/Admin/Site.php:540 +#: src/Module/Admin/Site.php:535 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:536 msgid "Proxy user" msgstr "Usuario proxy" -#: src/Module/Admin/Site.php:541 +#: src/Module/Admin/Site.php:536 msgid "User name for the proxy server." msgstr "" -#: src/Module/Admin/Site.php:542 +#: src/Module/Admin/Site.php:537 msgid "Proxy URL" msgstr "Dirección proxy" -#: src/Module/Admin/Site.php:542 +#: src/Module/Admin/Site.php:537 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:538 msgid "Network timeout" msgstr "Tiempo de espera de red" -#: src/Module/Admin/Site.php:543 +#: src/Module/Admin/Site.php:538 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:539 msgid "Maximum Load Average" msgstr "Promedio de carga máxima" -#: src/Module/Admin/Site.php:544 +#: src/Module/Admin/Site.php:539 #, 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:540 msgid "Minimal Memory" msgstr "Memoria Mínima" -#: src/Module/Admin/Site.php:545 +#: src/Module/Admin/Site.php:540 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:541 msgid "Periodically optimize tables" msgstr "Periodicamente optimizar tablas" -#: src/Module/Admin/Site.php:546 +#: src/Module/Admin/Site.php:541 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:543 msgid "Discover followers/followings from contacts" msgstr "Descubrir seguidores/seguimientos de contactos" -#: src/Module/Admin/Site.php:548 +#: src/Module/Admin/Site.php:543 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:544 msgid "None - deactivated" msgstr "Ninguno - desactivado" -#: src/Module/Admin/Site.php:550 +#: src/Module/Admin/Site.php:545 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:546 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:548 msgid "Only update contacts/servers with local data" msgstr "" -#: src/Module/Admin/Site.php:553 +#: src/Module/Admin/Site.php:548 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:549 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:549 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:551 msgid "Discover contacts from other servers" msgstr "Descubrir contactos de otros servidores" -#: src/Module/Admin/Site.php:556 +#: src/Module/Admin/Site.php:551 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:552 msgid "Days between requery" msgstr "Días entre búsquedas" -#: src/Module/Admin/Site.php:557 +#: src/Module/Admin/Site.php:552 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:553 msgid "Search the local directory" msgstr "Buscar el directorio local" -#: src/Module/Admin/Site.php:558 +#: src/Module/Admin/Site.php:553 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:555 msgid "Publish server information" msgstr "Publicar información del servidor" -#: src/Module/Admin/Site.php:560 +#: src/Module/Admin/Site.php:555 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 " @@ -5315,50 +5322,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:557 msgid "Check upstream version" msgstr "Verifique la versión ascendente" -#: src/Module/Admin/Site.php:562 +#: src/Module/Admin/Site.php:557 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:558 msgid "Suppress Tags" msgstr "Suprimir etiquetas" -#: src/Module/Admin/Site.php:563 +#: src/Module/Admin/Site.php:558 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:559 msgid "Clean database" msgstr "Limpiar Base de Datos" -#: src/Module/Admin/Site.php:564 +#: src/Module/Admin/Site.php:559 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:560 msgid "Lifespan of remote items" msgstr "Tiempo de vida de artículos remotos" -#: src/Module/Admin/Site.php:565 +#: src/Module/Admin/Site.php:560 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:561 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:561 msgid "" "When the database cleanup is enabled, this defines the days after which " "unclaimed remote items (mostly content from the relay) will be deleted. " @@ -5366,175 +5373,184 @@ 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:562 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:562 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." +"The conversation data is used for ActivityPub, 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:563 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:563 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:564 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:564 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:565 msgid "Items per page" msgstr "" -#: src/Module/Admin/Site.php:570 +#: src/Module/Admin/Site.php:565 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:566 msgid "Items per page for mobile devices" msgstr "" -#: src/Module/Admin/Site.php:571 +#: src/Module/Admin/Site.php:566 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:567 msgid "Temp path" msgstr "Ruta a los temporales" -#: src/Module/Admin/Site.php:572 +#: src/Module/Admin/Site.php:567 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:568 msgid "Only search in tags" msgstr "Solo buscar en tags" -#: src/Module/Admin/Site.php:573 +#: src/Module/Admin/Site.php:568 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:569 +msgid "Limited search scope" +msgstr "" + +#: src/Module/Admin/Site.php:569 +msgid "" +"If enabled, searches will only be performed in the data used for the " +"channels and not in all posts." +msgstr "" + +#: src/Module/Admin/Site.php:570 msgid "Maximum age of items in the search table" msgstr "" -#: src/Module/Admin/Site.php:574 +#: src/Module/Admin/Site.php:570 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:571 msgid "Generate counts per contact circle when calculating network count" msgstr "" -#: src/Module/Admin/Site.php:575 +#: src/Module/Admin/Site.php:571 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:572 msgid "Process \"view\" activities" msgstr "" -#: src/Module/Admin/Site.php:576 +#: src/Module/Admin/Site.php:572 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:573 msgid "Days, after which a contact is archived" msgstr "" -#: src/Module/Admin/Site.php:577 +#: src/Module/Admin/Site.php:573 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:575 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:575 #, 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:576 msgid "Maximum load for workers" msgstr "" -#: src/Module/Admin/Site.php:580 +#: src/Module/Admin/Site.php:576 msgid "Maximum load that causes a cooldown before each worker function call." msgstr "" -#: src/Module/Admin/Site.php:581 +#: src/Module/Admin/Site.php:577 msgid "Enable fastlane" msgstr "Habilitar ascenso rápido" -#: src/Module/Admin/Site.php:581 +#: src/Module/Admin/Site.php:577 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:578 msgid "Decoupled receiver" msgstr "" -#: src/Module/Admin/Site.php:582 +#: src/Module/Admin/Site.php:578 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:579 msgid "Cron interval" msgstr "" -#: src/Module/Admin/Site.php:583 +#: src/Module/Admin/Site.php:579 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:580 msgid "Worker defer limit" msgstr "" -#: src/Module/Admin/Site.php:584 +#: src/Module/Admin/Site.php:580 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:581 msgid "Worker fetch limit" msgstr "" -#: src/Module/Admin/Site.php:585 +#: src/Module/Admin/Site.php:581 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" @@ -5542,214 +5558,214 @@ msgid "" "system." msgstr "" -#: src/Module/Admin/Site.php:587 +#: src/Module/Admin/Site.php:583 msgid "Direct relay transfer" msgstr "Transferencia directa del Reenvío" -#: src/Module/Admin/Site.php:587 +#: src/Module/Admin/Site.php:583 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:584 msgid "Relay scope" msgstr "Enfoque del Reenvío" -#: src/Module/Admin/Site.php:588 +#: src/Module/Admin/Site.php:584 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:314 -#: src/Module/Settings/TwoFactor/Index.php:146 +#: src/Module/Admin/Site.php:584 src/Module/Contact/Profile.php:314 +#: src/Module/Settings/TwoFactor/Index.php:132 msgid "Disabled" msgstr "Deshabilitado" -#: src/Module/Admin/Site.php:588 +#: src/Module/Admin/Site.php:584 msgid "all" msgstr "todas" -#: src/Module/Admin/Site.php:588 +#: src/Module/Admin/Site.php:584 msgid "tags" msgstr "etiquetas" -#: src/Module/Admin/Site.php:589 +#: src/Module/Admin/Site.php:585 msgid "Server tags" msgstr "Etiquetas del Servidor" -#: src/Module/Admin/Site.php:589 +#: src/Module/Admin/Site.php:585 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:586 msgid "Deny Server tags" msgstr "Denegar etiquetas de Servidor" -#: src/Module/Admin/Site.php:590 +#: src/Module/Admin/Site.php:586 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:587 msgid "Maximum amount of tags" msgstr "" -#: src/Module/Admin/Site.php:591 +#: src/Module/Admin/Site.php:587 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:588 msgid "Allow user tags" msgstr "Permitir etiquetas de Usuario" -#: src/Module/Admin/Site.php:592 +#: src/Module/Admin/Site.php:588 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:589 msgid "Deny undetected languages" msgstr "" -#: src/Module/Admin/Site.php:593 +#: src/Module/Admin/Site.php:589 msgid "If enabled, posts with undetected languages will be rejected." msgstr "" -#: src/Module/Admin/Site.php:594 +#: src/Module/Admin/Site.php:590 msgid "Language Quality" msgstr "" -#: src/Module/Admin/Site.php:594 +#: src/Module/Admin/Site.php:590 msgid "The minimum language quality that is required to accept the post." msgstr "" -#: src/Module/Admin/Site.php:595 +#: src/Module/Admin/Site.php:591 msgid "Number of languages for the language detection" msgstr "" -#: src/Module/Admin/Site.php:595 +#: src/Module/Admin/Site.php:591 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:593 msgid "Maximum age of channel" msgstr "" -#: src/Module/Admin/Site.php:597 +#: src/Module/Admin/Site.php:593 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:594 msgid "Maximum number of channel posts" msgstr "" -#: src/Module/Admin/Site.php:598 +#: src/Module/Admin/Site.php:594 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:595 msgid "Interaction score days" msgstr "" -#: src/Module/Admin/Site.php:599 +#: src/Module/Admin/Site.php:595 msgid "Number of days that are used to calculate the interaction score." msgstr "" -#: src/Module/Admin/Site.php:600 +#: src/Module/Admin/Site.php:596 msgid "Maximum number of posts per author" msgstr "" -#: src/Module/Admin/Site.php:600 +#: src/Module/Admin/Site.php:596 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:597 msgid "Sharer interaction days" msgstr "" -#: src/Module/Admin/Site.php:601 +#: src/Module/Admin/Site.php:597 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:600 msgid "Start Relocation" msgstr "Iniciar Relocación" -#: src/Module/Admin/Storage.php:46 +#: src/Module/Admin/Storage.php:32 #, php-format msgid "Storage backend, %s is invalid." msgstr "" -#: src/Module/Admin/Storage.php:73 +#: src/Module/Admin/Storage.php:59 #, php-format msgid "Storage backend %s error: %s" msgstr "" -#: src/Module/Admin/Storage.php:84 src/Module/Admin/Storage.php:87 +#: src/Module/Admin/Storage.php:70 src/Module/Admin/Storage.php:73 msgid "Invalid storage backend setting value." msgstr "Valor de configuración de backend de almacenamiento no válido." -#: src/Module/Admin/Storage.php:139 +#: src/Module/Admin/Storage.php:125 msgid "Current Storage Backend" msgstr "" -#: src/Module/Admin/Storage.php:140 +#: src/Module/Admin/Storage.php:126 msgid "Storage Configuration" msgstr "" -#: src/Module/Admin/Storage.php:141 src/Module/BaseAdmin.php:91 +#: src/Module/Admin/Storage.php:127 src/Module/BaseAdmin.php:77 msgid "Storage" msgstr "" -#: src/Module/Admin/Storage.php:143 +#: src/Module/Admin/Storage.php:129 msgid "Save & Use storage backend" msgstr "" -#: src/Module/Admin/Storage.php:144 +#: src/Module/Admin/Storage.php:130 msgid "Use storage backend" msgstr "" -#: src/Module/Admin/Storage.php:145 +#: src/Module/Admin/Storage.php:131 msgid "Save & Reload" msgstr "" -#: src/Module/Admin/Storage.php:146 +#: src/Module/Admin/Storage.php:132 msgid "This backend doesn't have custom settings" msgstr "" -#: src/Module/Admin/Storage.php:148 +#: src/Module/Admin/Storage.php:134 msgid "" "Changing the current backend is prohibited because it is set by an " "environment variable" msgstr "" -#: src/Module/Admin/Storage.php:150 +#: src/Module/Admin/Storage.php:136 msgid "Database (legacy)" msgstr "Base de Datos (legada)" -#: src/Module/Admin/Summary.php:55 +#: src/Module/Admin/Summary.php:41 #, php-format msgid "Template engine (%s) error: %s" msgstr "Error (%s) en Motor de plantilla: %s" -#: src/Module/Admin/Summary.php:59 +#: src/Module/Admin/Summary.php:45 #, php-format msgid "" "Your DB still runs with MyISAM tables. You should change the engine type to " @@ -5760,7 +5776,7 @@ msgid "" " an automatic conversion.
" msgstr "Tu BD corre con tablas MyISAM. Debes cambiar al motor InnoDB. Pues Friendica usará solo InnoDB en el futuro, debes cambiarlo! Ver esto como guía de ayuda para convertir el motor de tablas. Podrías usar también el comando php bin/console.php dbstructure toinnodb de tu instalación Friendica para conversión automática.
" -#: src/Module/Admin/Summary.php:64 +#: src/Module/Admin/Summary.php:50 #, php-format msgid "" "Your DB still runs with InnoDB tables in the Antelope file format. You " @@ -5771,7 +5787,7 @@ msgid "" " installation for an automatic conversion.
" msgstr "Tu BD corre con tablas InnoDB. En formato de archivo Antelope. Debes cambiar al formato de archivos Barracuda. Friendica usa opciones que no provee el formato Antelope. Ver esto como guía de ayuda para convertir el motor de tablas. Podrías usar también el comando php bin/console.php dbstructure toinnodb de tu instalación Friendica para conversión automática.
" -#: src/Module/Admin/Summary.php:74 +#: src/Module/Admin/Summary.php:60 #, php-format msgid "" "Your table_definition_cache is too low (%d). This can lead to the database " @@ -5779,46 +5795,46 @@ msgid "" " to %d. See here for more information.
" msgstr "El 'table_definition_cache' es muy corto (%d). puede acarrear error de BD \"Sentencia preparada debe ser Re-preparada\". Setealo al menos a %d. Ver here para mas información.
" -#: src/Module/Admin/Summary.php:85 +#: src/Module/Admin/Summary.php:71 #, php-format msgid "" "There is a new version of Friendica available for download. Your current " "version is %1$s, upstream version is %2$s" msgstr "Hay una nueva versión de Friendica disponible para descargar. Su versión actual es %1$s, la versión ascendente es %2$s" -#: src/Module/Admin/Summary.php:94 +#: src/Module/Admin/Summary.php:80 msgid "" "The database update failed. Please run \"php bin/console.php dbstructure " "update\" from the command line and have a look at the errors that might " "appear." msgstr "Actualización de la BD Falló. Ejecute \"php bin/console.php dbstructure update\" desde línea de comandos y revise los errores que puedan haber ocurrido." -#: src/Module/Admin/Summary.php:98 +#: src/Module/Admin/Summary.php:84 msgid "" "The last update failed. Please run \"php bin/console.php dbstructure " "update\" from the command line and have a look at the errors that might " "appear. (Some of the errors are possibly inside the logfile.)" msgstr "La última actualización falló. Ejecute \"php bin/console.php dbstructure update\" desde línea de comandos y revise los errores que puedan haber ocurrido. (Algunos aparecerán en archivo de log.)" -#: src/Module/Admin/Summary.php:102 +#: src/Module/Admin/Summary.php:88 msgid "" "The system.url entry is missing. This is a low level setting and can lead to" " unexpected behavior. Please add a valid entry as soon as possible in the " "config file or per console command!" msgstr "" -#: src/Module/Admin/Summary.php:107 +#: src/Module/Admin/Summary.php:93 msgid "The worker was never executed. Please check your database structure!" msgstr "El worker nunca fue ejecutado. ¡Revise la estructura de su BD!" -#: src/Module/Admin/Summary.php:109 +#: src/Module/Admin/Summary.php:95 #, php-format msgid "" "The last worker execution was on %s UTC. This is older than one hour. Please" " check your crontab settings." msgstr "La última ejecución del trabajador fue a las %s UTC. Anterior a una hora. Revise su configuración de crontab." -#: src/Module/Admin/Summary.php:114 +#: src/Module/Admin/Summary.php:100 #, php-format msgid "" "Friendica's configuration now is stored in config/local.config.php, please " @@ -5827,7 +5843,7 @@ msgid "" "help with the transition." msgstr "Configuración Friendica ahora se almacena en config/local.config.php, copie config/local-sample.config.php y mueva su configuración de .htconfig.php. Ver página de ayuda como ayuda en la transición." -#: src/Module/Admin/Summary.php:118 +#: src/Module/Admin/Summary.php:104 #, php-format msgid "" "Friendica's configuration now is stored in config/local.config.php, please " @@ -5836,7 +5852,7 @@ msgid "" "page for help with the transition." msgstr "Configuración Friendica ahora se almacena en config/local.config.php, copie config/local-sample.config.php y mueva su configuración de config/local.ini.php. Ver página de ayuda como ayuda en la transición." -#: src/Module/Admin/Summary.php:124 +#: src/Module/Admin/Summary.php:110 #, php-format msgid "" "%s is not reachable on your system. This is a severe " @@ -5844,107 +5860,107 @@ msgid "" "href=\"%s\">the installation page for help." msgstr "%s no se alcanza en tu sistema. Es un error grave en la configuración que evita la comunicación de servidor a servidor. Ver la página de instalación como ayuda." -#: src/Module/Admin/Summary.php:148 +#: src/Module/Admin/Summary.php:134 #, php-format msgid "" "Friendica's system.basepath was updated from '%s' to '%s'. Please remove the" " system.basepath from your db to avoid differences." msgstr "La ruta Friendica system.basepath se actualizó de '%s' a '%s'. Quite la system.basepath de tu BD para evitar diferencias." -#: src/Module/Admin/Summary.php:156 +#: src/Module/Admin/Summary.php:142 #, php-format msgid "" "Friendica's current system.basepath '%s' is wrong and the config file '%s' " "isn't used." msgstr "Ruta actual Friendica system.basepath '%s' es errónea y el archivo de configuración '%s' no se usa." -#: src/Module/Admin/Summary.php:164 +#: src/Module/Admin/Summary.php:150 #, php-format msgid "" "Friendica's current system.basepath '%s' is not equal to the config file " "'%s'. Please fix your configuration." msgstr "Ruta actual de Friendica system.basepath '%s' no es igual al archivo config '%s'. Corrija su configuración." -#: src/Module/Admin/Summary.php:175 +#: src/Module/Admin/Summary.php:161 msgid "Message queues" msgstr "Cola de mensajes" -#: src/Module/Admin/Summary.php:181 +#: src/Module/Admin/Summary.php:167 msgid "Server Settings" msgstr "Ajustes del Servidor" -#: src/Module/Admin/Summary.php:199 +#: src/Module/Admin/Summary.php:185 msgid "Version" msgstr "Versión" -#: src/Module/Admin/Summary.php:203 +#: src/Module/Admin/Summary.php:189 msgid "Active addons" msgstr "Añadidos Activos" -#: src/Module/Admin/Themes/Details.php:57 src/Module/Admin/Themes/Index.php:65 +#: src/Module/Admin/Themes/Details.php:49 src/Module/Admin/Themes/Index.php:57 #, php-format msgid "Theme %s disabled." msgstr "Tema %s desactivado" -#: src/Module/Admin/Themes/Details.php:59 src/Module/Admin/Themes/Index.php:67 +#: src/Module/Admin/Themes/Details.php:51 src/Module/Admin/Themes/Index.php:59 #, php-format msgid "Theme %s successfully enabled." msgstr "Tema %s activado con éxito." -#: src/Module/Admin/Themes/Details.php:61 src/Module/Admin/Themes/Index.php:69 +#: src/Module/Admin/Themes/Details.php:53 src/Module/Admin/Themes/Index.php:61 #, php-format msgid "Theme %s failed to install." msgstr "El Tema %s no se pudo instalar." -#: src/Module/Admin/Themes/Details.php:83 +#: src/Module/Admin/Themes/Details.php:75 msgid "Screenshot" msgstr "Captura de pantalla" -#: src/Module/Admin/Themes/Details.php:91 -#: src/Module/Admin/Themes/Index.php:112 src/Module/BaseAdmin.php:93 +#: src/Module/Admin/Themes/Details.php:83 +#: src/Module/Admin/Themes/Index.php:104 src/Module/BaseAdmin.php:79 msgid "Themes" msgstr "Temas" -#: src/Module/Admin/Themes/Embed.php:80 +#: src/Module/Admin/Themes/Embed.php:66 msgid "Unknown theme." msgstr "Tema desconocido." -#: src/Module/Admin/Themes/Index.php:51 +#: src/Module/Admin/Themes/Index.php:43 msgid "Themes reloaded" msgstr "Temas reacargados" -#: src/Module/Admin/Themes/Index.php:114 +#: src/Module/Admin/Themes/Index.php:106 msgid "Reload active themes" msgstr "Recargar Temas activos" -#: src/Module/Admin/Themes/Index.php:118 +#: src/Module/Admin/Themes/Index.php:110 #, php-format msgid "No themes found on the system. They should be placed in %1$s" msgstr "No hay Temas en el Sistema, Deben situarse en %1$s" -#: src/Module/Admin/Themes/Index.php:119 +#: src/Module/Admin/Themes/Index.php:111 msgid "[Experimental]" msgstr "[Experimental]" -#: src/Module/Admin/Themes/Index.php:120 +#: src/Module/Admin/Themes/Index.php:112 msgid "[Unsupported]" msgstr "[No soportado]" -#: src/Module/Admin/Tos.php:79 +#: src/Module/Admin/Tos.php:65 msgid "Display Terms of Service" msgstr "Mostrar los Términos de Servicio" -#: src/Module/Admin/Tos.php:79 +#: src/Module/Admin/Tos.php:65 msgid "" "Enable the Terms of Service page. If this is enabled a link to the terms " "will be added to the registration form and the general information page." msgstr "Habilitar la página de los Términos de Servicio. Si esto está activo un enlace a los términos será adicionado al formulario de registro y en la página de información general." -#: src/Module/Admin/Tos.php:80 +#: src/Module/Admin/Tos.php:66 msgid "Display Privacy Statement" msgstr "Mostrar las Directivas de Privacidad" -#: src/Module/Admin/Tos.php:80 +#: src/Module/Admin/Tos.php:66 #, php-format msgid "" "Show some informations regarding the needed information to operate the node " @@ -5952,160 +5968,160 @@ msgid "" "noreferrer\">EU-GDPR." msgstr "Muestre información en cuanto a información requerida para operar el nodo de acuerdo ej. para EU-GDPR." -#: src/Module/Admin/Tos.php:81 +#: src/Module/Admin/Tos.php:67 msgid "Privacy Statement Preview" msgstr "Vista previa de Política de Privacidad" -#: src/Module/Admin/Tos.php:83 +#: src/Module/Admin/Tos.php:69 msgid "The Terms of Service" msgstr "Los Términos de Servicio" -#: src/Module/Admin/Tos.php:83 +#: src/Module/Admin/Tos.php:69 msgid "" "Enter the Terms of Service for your node here. You can use BBCode. Headers " "of sections should be [h2] and below." msgstr "Introduzca los Términos de Servicio para tu nodo aquí. Puedes usar BBCode. Cabeceras de sección deberían ser [2] e inferior." -#: src/Module/Admin/Tos.php:84 +#: src/Module/Admin/Tos.php:70 msgid "The rules" msgstr "" -#: src/Module/Admin/Tos.php:84 +#: src/Module/Admin/Tos.php:70 msgid "Enter your system rules here. Each line represents one rule." msgstr "" -#: src/Module/Api/ApiResponse.php:293 +#: src/Module/Api/ApiResponse.php:279 #, php-format msgid "API endpoint %s %s is not implemented but might be in the future." msgstr "" -#: src/Module/Api/Mastodon/Apps.php:73 +#: src/Module/Api/Mastodon/Apps.php:59 msgid "Missing parameters" msgstr "" -#: src/Module/Api/Mastodon/Statuses/Bookmark.php:50 +#: src/Module/Api/Mastodon/Statuses/Bookmark.php:36 msgid "Only starting posts can be bookmarked" msgstr "" -#: src/Module/Api/Mastodon/Statuses/Mute.php:51 +#: src/Module/Api/Mastodon/Statuses/Mute.php:37 msgid "Only starting posts can be muted" msgstr "" -#: src/Module/Api/Mastodon/Statuses/Reblog.php:58 +#: src/Module/Api/Mastodon/Statuses/Reblog.php:44 #, php-format msgid "Posts from %s can't be shared" msgstr "" -#: src/Module/Api/Mastodon/Statuses/Unbookmark.php:51 +#: src/Module/Api/Mastodon/Statuses/Unbookmark.php:37 msgid "Only starting posts can be unbookmarked" msgstr "" -#: src/Module/Api/Mastodon/Statuses/Unmute.php:51 +#: src/Module/Api/Mastodon/Statuses/Unmute.php:37 msgid "Only starting posts can be unmuted" msgstr "" -#: src/Module/Api/Mastodon/Statuses/Unreblog.php:64 +#: src/Module/Api/Mastodon/Statuses/Unreblog.php:50 #, php-format msgid "Posts from %s can't be unshared" msgstr "" -#: src/Module/Api/Twitter/ContactEndpoint.php:66 +#: src/Module/Api/Twitter/ContactEndpoint.php:52 msgid "Contact not found" msgstr "Contacto no Encontrado" -#: src/Module/Apps.php:62 +#: src/Module/Apps.php:48 msgid "No installed applications." msgstr "Sin aplicaciones instaladas" -#: src/Module/Apps.php:67 +#: src/Module/Apps.php:53 msgid "Applications" msgstr "Aplicaciones" -#: src/Module/Attach.php:49 src/Module/Attach.php:61 +#: src/Module/Attach.php:35 src/Module/Attach.php:47 msgid "Item was not found." msgstr "Elemento no encontrado." -#: src/Module/BaseAdmin.php:54 src/Module/BaseAdmin.php:58 -#: src/Module/BaseModeration.php:77 src/Module/BaseModeration.php:81 +#: src/Module/BaseAdmin.php:40 src/Module/BaseAdmin.php:44 +#: src/Module/BaseModeration.php:63 src/Module/BaseModeration.php:67 msgid "Please login to continue." msgstr "Inicia sesión para continuar." -#: src/Module/BaseAdmin.php:63 +#: src/Module/BaseAdmin.php:49 msgid "You don't have access to administration pages." msgstr "No tienes acceso a las páginas de administración." -#: src/Module/BaseAdmin.php:67 +#: src/Module/BaseAdmin.php:53 msgid "" "Submanaged account can't access the administration pages. Please log back in" " as the main account." msgstr "La cuenta subadministrada no puede acceder a las páginas de administración. Vuelva a iniciar sesión como cuenta principal." -#: src/Module/BaseAdmin.php:86 src/Module/BaseModeration.php:109 +#: src/Module/BaseAdmin.php:72 src/Module/BaseModeration.php:95 msgid "Overview" msgstr "Resumen" -#: src/Module/BaseAdmin.php:89 src/Module/BaseModeration.php:112 +#: src/Module/BaseAdmin.php:75 src/Module/BaseModeration.php:98 msgid "Configuration" msgstr "Configuración" -#: src/Module/BaseAdmin.php:94 src/Module/BaseSettings.php:110 +#: src/Module/BaseAdmin.php:80 src/Module/BaseSettings.php:96 msgid "Additional features" msgstr "Características adicionales" -#: src/Module/BaseAdmin.php:97 +#: src/Module/BaseAdmin.php:83 msgid "Database" msgstr "Base de Datos" -#: src/Module/BaseAdmin.php:98 +#: src/Module/BaseAdmin.php:84 msgid "DB updates" msgstr "Actualizaciones de la Base de Datos" -#: src/Module/BaseAdmin.php:99 +#: src/Module/BaseAdmin.php:85 msgid "Inspect Deferred Workers" msgstr "Workers diferidos Inspeccionados" -#: src/Module/BaseAdmin.php:100 +#: src/Module/BaseAdmin.php:86 msgid "Inspect worker Queue" msgstr "Inspeccionar Cola de Workers" -#: src/Module/BaseAdmin.php:106 src/Module/BaseModeration.php:120 +#: src/Module/BaseAdmin.php:92 src/Module/BaseModeration.php:106 msgid "Diagnostics" msgstr "Diagnósticos" -#: src/Module/BaseAdmin.php:107 +#: src/Module/BaseAdmin.php:93 msgid "PHP Info" msgstr "Información PHP" -#: src/Module/BaseAdmin.php:108 +#: src/Module/BaseAdmin.php:94 msgid "probe address" msgstr "probar direccion" -#: src/Module/BaseAdmin.php:109 +#: src/Module/BaseAdmin.php:95 msgid "check webfinger" msgstr "Verificar webfinger" -#: src/Module/BaseAdmin.php:110 +#: src/Module/BaseAdmin.php:96 msgid "Babel" msgstr "Babel" -#: src/Module/BaseAdmin.php:111 src/Module/Debug/ActivityPubConversion.php:137 +#: src/Module/BaseAdmin.php:97 src/Module/Debug/ActivityPubConversion.php:129 msgid "ActivityPub Conversion" msgstr "Conversión a ActivityPub" -#: src/Module/BaseAdmin.php:120 +#: src/Module/BaseAdmin.php:106 msgid "Addon Features" msgstr "Funciones de los Añadidos" -#: src/Module/BaseAdmin.php:121 src/Module/BaseModeration.php:129 +#: src/Module/BaseAdmin.php:107 src/Module/BaseModeration.php:115 msgid "User registrations waiting for confirmation" msgstr "Registro de usuarios esperando la confirmación" -#: src/Module/BaseApi.php:455 src/Module/BaseApi.php:471 -#: src/Module/BaseApi.php:487 +#: src/Module/BaseApi.php:441 src/Module/BaseApi.php:457 +#: src/Module/BaseApi.php:473 msgid "Too Many Requests" msgstr "" -#: src/Module/BaseApi.php:456 +#: src/Module/BaseApi.php:442 #, php-format msgid "Daily posting limit of %d post reached. The post was rejected." msgid_plural "Daily posting limit of %d posts reached. The post was rejected." @@ -6113,7 +6129,7 @@ msgstr[0] "Limite diario de %d publicación alcanzado. La publicación fue recha msgstr[1] "Limite diario de %d publicaciones alcanzado. La publicación fue rechazada." msgstr[2] "Limite diario de %d publicaciones alcanzado. La publicación fue rechazada." -#: src/Module/BaseApi.php:472 +#: src/Module/BaseApi.php:458 #, php-format msgid "Weekly posting limit of %d post reached. The post was rejected." msgid_plural "" @@ -6122,7 +6138,7 @@ msgstr[0] "Limite semanal de %d publicación alcanzado. La publicación fue rech msgstr[1] "Limite semanal de %d publicaciones alcanzado. La publicación fue rechazada." msgstr[2] "Limite semanal de %d publicaciones alcanzado. La publicación fue rechazada." -#: src/Module/BaseApi.php:488 +#: src/Module/BaseApi.php:474 #, php-format msgid "Monthly posting limit of %d post reached. The post was rejected." msgid_plural "" @@ -6131,84 +6147,84 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: src/Module/BaseModeration.php:86 +#: src/Module/BaseModeration.php:72 msgid "You don't have access to moderation pages." msgstr "" -#: src/Module/BaseModeration.php:90 +#: src/Module/BaseModeration.php:76 msgid "" "Submanaged account can't access the moderation pages. Please log back in as " "the main account." msgstr "" -#: src/Module/BaseModeration.php:110 src/Module/Moderation/Reports.php:109 +#: src/Module/BaseModeration.php:96 src/Module/Moderation/Reports.php:101 msgid "Reports" msgstr "" -#: src/Module/BaseModeration.php:113 src/Module/Moderation/Users/Index.php:148 -#: src/Module/Moderation/Users/Index.php:158 +#: src/Module/BaseModeration.php:99 src/Module/Moderation/Users/Index.php:134 +#: src/Module/Moderation/Users/Index.php:144 msgid "Users" msgstr "Usuarios" -#: src/Module/BaseModeration.php:115 +#: src/Module/BaseModeration.php:101 msgid "Tools" msgstr "Herramientas" -#: src/Module/BaseModeration.php:116 +#: src/Module/BaseModeration.php:102 msgid "Contact Blocklist" msgstr "Lista de Contactos Bloqueados" -#: src/Module/BaseModeration.php:117 +#: src/Module/BaseModeration.php:103 msgid "Server Blocklist" msgstr "Lista de Bloqueo del Servidor" -#: src/Module/BaseModeration.php:118 src/Module/Moderation/Item/Delete.php:62 +#: src/Module/BaseModeration.php:104 src/Module/Moderation/Item/Delete.php:48 msgid "Delete Item" msgstr "Eliminar Artículo" -#: src/Module/BaseModeration.php:121 src/Module/Moderation/Item/Source.php:76 +#: src/Module/BaseModeration.php:107 src/Module/Moderation/Item/Source.php:68 msgid "Item Source" msgstr "Artículo fuente" -#: src/Module/BaseProfile.php:52 src/Module/Contact.php:506 +#: src/Module/BaseProfile.php:38 src/Module/Contact.php:488 msgid "Profile Details" msgstr "Detalles del Perfil" -#: src/Module/BaseProfile.php:60 +#: src/Module/BaseProfile.php:46 msgid "Conversations started" msgstr "" -#: src/Module/BaseProfile.php:111 +#: src/Module/BaseProfile.php:97 msgid "Only You Can See This" msgstr "Únicamente tú puedes ver esto" -#: src/Module/BaseProfile.php:116 src/Module/Profile/Schedule.php:81 +#: src/Module/BaseProfile.php:102 src/Module/Profile/Schedule.php:67 msgid "Scheduled Posts" msgstr "" -#: src/Module/BaseProfile.php:119 +#: src/Module/BaseProfile.php:105 msgid "Posts that are scheduled for publishing" msgstr "" -#: src/Module/BaseProfile.php:138 src/Module/BaseProfile.php:141 +#: src/Module/BaseProfile.php:124 src/Module/BaseProfile.php:127 msgid "Tips for New Members" msgstr "Consejos para nuevos miembros" -#: src/Module/BaseSearch.php:71 +#: src/Module/BaseSearch.php:57 #, php-format msgid "People Search - %s" msgstr "Buscar personas - %s" -#: src/Module/BaseSearch.php:75 +#: src/Module/BaseSearch.php:61 #, php-format msgid "Group Search - %s" msgstr "" -#: src/Module/BaseSearch.php:121 src/Module/Contact/MatchInterests.php:140 +#: src/Module/BaseSearch.php:107 src/Module/Contact/MatchInterests.php:136 msgid "No matches" msgstr "Sin resultados" -#: src/Module/BaseSearch.php:147 +#: src/Module/BaseSearch.php:133 #, php-format msgid "" "%d result was filtered out because your node blocks the domain it is " @@ -6222,267 +6238,267 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: src/Module/BaseSettings.php:78 +#: src/Module/BaseSettings.php:64 msgid "Account" msgstr "Cuenta" -#: src/Module/BaseSettings.php:85 src/Module/Security/TwoFactor/Verify.php:96 -#: src/Module/Settings/TwoFactor/Index.php:138 +#: src/Module/BaseSettings.php:71 src/Module/Security/TwoFactor/Verify.php:82 +#: src/Module/Settings/TwoFactor/Index.php:124 msgid "Two-factor authentication" msgstr "Ingreso de 2 factores" -#: src/Module/BaseSettings.php:118 +#: src/Module/BaseSettings.php:104 msgid "Display" msgstr "Interfaz del usuario" -#: src/Module/BaseSettings.php:132 src/Module/Settings/Connectors.php:204 +#: src/Module/BaseSettings.php:118 src/Module/Settings/Connectors.php:195 msgid "Social Networks" msgstr "Redes sociales" -#: src/Module/BaseSettings.php:146 src/Module/Settings/Delegation.php:194 +#: src/Module/BaseSettings.php:132 src/Module/Settings/Delegation.php:180 msgid "Manage Accounts" msgstr "Gestionar cuentas" -#: src/Module/BaseSettings.php:153 +#: src/Module/BaseSettings.php:139 msgid "Connected apps" msgstr "Aplicaciones conectadas" -#: src/Module/BaseSettings.php:160 +#: src/Module/BaseSettings.php:146 msgid "Remote servers" msgstr "" -#: src/Module/BaseSettings.php:167 src/Module/Settings/UserExport.php:98 +#: src/Module/BaseSettings.php:153 src/Module/Settings/UserExport.php:84 msgid "Export personal data" msgstr "Exportación de datos personales" -#: src/Module/BaseSettings.php:174 +#: src/Module/BaseSettings.php:160 msgid "Remove account" msgstr "Eliminar cuenta" -#: src/Module/Bookmarklet.php:54 +#: src/Module/Bookmarklet.php:40 msgid "This page is missing a url parameter." msgstr "A la página le falta URL." -#: src/Module/Bookmarklet.php:66 +#: src/Module/Bookmarklet.php:52 msgid "The post was created" msgstr "El Artículo fue creada" -#: src/Module/Calendar/Event/API.php:100 src/Module/Calendar/Event/API.php:135 -#: src/Module/Calendar/Event/Form.php:80 +#: src/Module/Calendar/Event/API.php:86 src/Module/Calendar/Event/API.php:121 +#: src/Module/Calendar/Event/Form.php:66 msgid "Invalid Request" msgstr "" -#: src/Module/Calendar/Event/API.php:109 +#: src/Module/Calendar/Event/API.php:95 msgid "Event id is missing." msgstr "" -#: src/Module/Calendar/Event/API.php:131 +#: src/Module/Calendar/Event/API.php:117 msgid "Failed to remove event" msgstr "Error al eliminar el evento" -#: src/Module/Calendar/Event/API.php:187 src/Module/Calendar/Event/API.php:189 +#: src/Module/Calendar/Event/API.php:173 src/Module/Calendar/Event/API.php:175 msgid "Event can not end before it has started." msgstr "Un evento no puede terminar antes de su inicio." -#: src/Module/Calendar/Event/API.php:196 src/Module/Calendar/Event/API.php:198 +#: src/Module/Calendar/Event/API.php:182 src/Module/Calendar/Event/API.php:184 msgid "Event title and start time are required." msgstr "Título del evento y hora de inicio requeridas." -#: src/Module/Calendar/Event/Form.php:208 +#: src/Module/Calendar/Event/Form.php:194 msgid "Starting date and Title are required." msgstr "Se requiere fecha de comienzo y titulo" -#: src/Module/Calendar/Event/Form.php:209 -#: src/Module/Calendar/Event/Form.php:214 +#: src/Module/Calendar/Event/Form.php:195 +#: src/Module/Calendar/Event/Form.php:200 msgid "Event Starts:" msgstr "Inicio del evento:" -#: src/Module/Calendar/Event/Form.php:209 -#: src/Module/Calendar/Event/Form.php:237 src/Module/Debug/Probe.php:59 -#: src/Module/Install.php:201 src/Module/Install.php:227 -#: src/Module/Install.php:232 src/Module/Install.php:246 -#: src/Module/Install.php:255 src/Module/Install.php:260 -#: src/Module/Install.php:266 src/Module/Install.php:271 -#: src/Module/Install.php:285 src/Module/Install.php:298 -#: src/Module/Install.php:325 -#: src/Module/Moderation/Blocklist/Server/Add.php:136 -#: src/Module/Moderation/Blocklist/Server/Add.php:138 -#: src/Module/Moderation/Blocklist/Server/Import.php:129 -#: src/Module/Moderation/Blocklist/Server/Index.php:86 -#: src/Module/Moderation/Blocklist/Server/Index.php:87 -#: src/Module/Moderation/Blocklist/Server/Index.php:115 -#: src/Module/Moderation/Blocklist/Server/Index.php:116 -#: src/Module/Moderation/Item/Delete.php:67 src/Module/Register.php:149 -#: src/Module/Security/TwoFactor/Verify.php:101 -#: src/Module/Settings/Channels.php:190 src/Module/Settings/Channels.php:211 -#: src/Module/Settings/TwoFactor/Index.php:161 -#: src/Module/Settings/TwoFactor/Verify.php:158 +#: src/Module/Calendar/Event/Form.php:195 +#: src/Module/Calendar/Event/Form.php:223 src/Module/Debug/Probe.php:45 +#: src/Module/Install.php:187 src/Module/Install.php:213 +#: src/Module/Install.php:218 src/Module/Install.php:232 +#: src/Module/Install.php:241 src/Module/Install.php:246 +#: src/Module/Install.php:252 src/Module/Install.php:257 +#: src/Module/Install.php:271 src/Module/Install.php:284 +#: src/Module/Install.php:311 +#: src/Module/Moderation/Blocklist/Server/Add.php:122 +#: src/Module/Moderation/Blocklist/Server/Add.php:124 +#: src/Module/Moderation/Blocklist/Server/Import.php:113 +#: src/Module/Moderation/Blocklist/Server/Index.php:72 +#: src/Module/Moderation/Blocklist/Server/Index.php:73 +#: src/Module/Moderation/Blocklist/Server/Index.php:101 +#: src/Module/Moderation/Blocklist/Server/Index.php:102 +#: src/Module/Moderation/Item/Delete.php:53 src/Module/Register.php:141 +#: src/Module/Security/TwoFactor/Verify.php:87 +#: src/Module/Settings/Channels.php:176 src/Module/Settings/Channels.php:197 +#: src/Module/Settings/TwoFactor/Index.php:147 +#: src/Module/Settings/TwoFactor/Verify.php:144 msgid "Required" msgstr "Obligatorio" -#: src/Module/Calendar/Event/Form.php:223 -#: src/Module/Calendar/Event/Form.php:247 +#: src/Module/Calendar/Event/Form.php:209 +#: src/Module/Calendar/Event/Form.php:233 msgid "Finish date/time is not known or not relevant" msgstr "La fecha/hora de finalización no es conocida o es irrelevante." -#: src/Module/Calendar/Event/Form.php:225 -#: src/Module/Calendar/Event/Form.php:230 +#: src/Module/Calendar/Event/Form.php:211 +#: src/Module/Calendar/Event/Form.php:216 msgid "Event Finishes:" msgstr "Finalización del evento:" -#: src/Module/Calendar/Event/Form.php:237 -#: src/Module/Calendar/Event/Form.php:243 +#: src/Module/Calendar/Event/Form.php:223 +#: src/Module/Calendar/Event/Form.php:229 msgid "Title (BBCode not allowed)" msgstr "" -#: src/Module/Calendar/Event/Form.php:239 +#: src/Module/Calendar/Event/Form.php:225 msgid "Description (BBCode allowed)" msgstr "" -#: src/Module/Calendar/Event/Form.php:241 +#: src/Module/Calendar/Event/Form.php:227 msgid "Location (BBCode not allowed)" msgstr "" -#: src/Module/Calendar/Event/Form.php:244 -#: src/Module/Calendar/Event/Form.php:245 +#: src/Module/Calendar/Event/Form.php:230 +#: src/Module/Calendar/Event/Form.php:231 msgid "Share this event" msgstr "Comparte este evento" -#: src/Module/Calendar/Event/Form.php:251 src/Module/Profile/Profile.php:275 +#: src/Module/Calendar/Event/Form.php:237 src/Module/Profile/Profile.php:263 msgid "Basic" msgstr "Basic" -#: src/Module/Calendar/Export.php:94 +#: src/Module/Calendar/Export.php:80 msgid "This calendar format is not supported" msgstr "Este formato de calendario no se soporta" -#: src/Module/Calendar/Export.php:96 +#: src/Module/Calendar/Export.php:82 msgid "No exportable data found" msgstr "No hay información exportable" -#: src/Module/Calendar/Export.php:113 +#: src/Module/Calendar/Export.php:99 msgid "calendar" msgstr "calendario" -#: src/Module/Calendar/Show.php:124 +#: src/Module/Calendar/Show.php:110 msgid "Events" msgstr "Eventos" -#: src/Module/Calendar/Show.php:125 +#: src/Module/Calendar/Show.php:111 msgid "View" msgstr "Vista" -#: src/Module/Calendar/Show.php:126 +#: src/Module/Calendar/Show.php:112 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:118 src/Module/Settings/Display.php:283 msgid "list" msgstr "lista" -#: src/Module/Circle.php:57 +#: src/Module/Circle.php:43 msgid "Could not create circle." msgstr "" -#: src/Module/Circle.php:68 src/Module/Circle.php:216 -#: src/Module/Circle.php:240 +#: src/Module/Circle.php:54 src/Module/Circle.php:202 +#: src/Module/Circle.php:226 msgid "Circle not found." msgstr "" -#: src/Module/Circle.php:74 +#: src/Module/Circle.php:60 msgid "Circle name was not changed." msgstr "" -#: src/Module/Circle.php:92 +#: src/Module/Circle.php:78 msgid "Unknown circle." msgstr "" -#: src/Module/Circle.php:98 src/Module/Circle.php:107 -#: src/Module/Contact/Advanced.php:70 src/Module/Contact/Advanced.php:109 -#: src/Module/Contact/Contacts.php:71 src/Module/Contact/Conversations.php:86 -#: src/Module/Contact/Conversations.php:91 -#: src/Module/Contact/Conversations.php:96 src/Module/Contact/Media.php:61 -#: src/Module/Contact/Posts.php:78 src/Module/Contact/Posts.php:83 -#: src/Module/Contact/Posts.php:88 src/Module/Contact/Profile.php:159 -#: src/Module/Contact/Profile.php:164 src/Module/Contact/Profile.php:169 -#: src/Module/Contact/Redir.php:95 src/Module/Contact/Redir.php:141 -#: src/Module/FriendSuggest.php:71 src/Module/FriendSuggest.php:109 +#: src/Module/Circle.php:84 src/Module/Circle.php:93 +#: src/Module/Contact/Advanced.php:56 src/Module/Contact/Advanced.php:95 +#: src/Module/Contact/Contacts.php:57 src/Module/Contact/Conversations.php:72 +#: src/Module/Contact/Conversations.php:77 +#: src/Module/Contact/Conversations.php:82 src/Module/Contact/Media.php:47 +#: src/Module/Contact/Posts.php:64 src/Module/Contact/Posts.php:69 +#: src/Module/Contact/Posts.php:74 src/Module/Contact/Profile.php:145 +#: src/Module/Contact/Profile.php:150 src/Module/Contact/Profile.php:169 +#: src/Module/Contact/Redir.php:77 src/Module/Contact/Redir.php:131 +#: src/Module/FriendSuggest.php:57 src/Module/FriendSuggest.php:95 msgid "Contact not found." msgstr "Contacto no encontrado." -#: src/Module/Circle.php:102 src/Module/Contact/Contacts.php:66 +#: src/Module/Circle.php:88 src/Module/Contact/Contacts.php:52 msgid "Invalid contact." msgstr "Contacto erróneo." -#: src/Module/Circle.php:111 src/Module/Contact/Revoke.php:73 +#: src/Module/Circle.php:97 src/Module/Contact/Revoke.php:56 msgid "Contact is deleted." msgstr "El contacto se borra." -#: src/Module/Circle.php:117 +#: src/Module/Circle.php:103 msgid "Unable to add the contact to the circle." msgstr "" -#: src/Module/Circle.php:120 +#: src/Module/Circle.php:106 msgid "Contact successfully added to circle." msgstr "" -#: src/Module/Circle.php:124 +#: src/Module/Circle.php:110 msgid "Unable to remove the contact from the circle." msgstr "" -#: src/Module/Circle.php:127 +#: src/Module/Circle.php:113 msgid "Contact successfully removed from circle." msgstr "" -#: src/Module/Circle.php:131 +#: src/Module/Circle.php:117 msgid "Bad request." msgstr "Petición no reconocida" -#: src/Module/Circle.php:172 +#: src/Module/Circle.php:158 msgid "Save Circle" msgstr "" -#: src/Module/Circle.php:173 +#: src/Module/Circle.php:159 msgid "Filter" msgstr "Filtro" -#: src/Module/Circle.php:179 +#: src/Module/Circle.php:165 msgid "Create a circle of contacts/friends." msgstr "" -#: src/Module/Circle.php:221 +#: src/Module/Circle.php:207 msgid "Unable to remove circle." msgstr "" -#: src/Module/Circle.php:272 +#: src/Module/Circle.php:258 msgid "Delete Circle" msgstr "" -#: src/Module/Circle.php:282 +#: src/Module/Circle.php:268 msgid "Edit Circle Name" msgstr "" -#: src/Module/Circle.php:292 +#: src/Module/Circle.php:278 msgid "Members" msgstr "Miembros" -#: src/Module/Circle.php:295 +#: src/Module/Circle.php:281 msgid "Circle is empty" msgstr "" -#: src/Module/Circle.php:311 +#: src/Module/Circle.php:297 msgid "Remove contact from circle" msgstr "" -#: src/Module/Circle.php:334 +#: src/Module/Circle.php:320 msgid "Click on a contact to add or remove." msgstr "Pulsa en un contacto para añadirlo o eliminarlo." -#: src/Module/Circle.php:351 +#: src/Module/Circle.php:337 msgid "Add contact to circle" msgstr "" -#: src/Module/Contact.php:96 +#: src/Module/Contact.php:88 #, php-format msgid "%d contact edited." msgid_plural "%d contacts edited." @@ -6490,192 +6506,192 @@ msgstr[0] "%d contacto editado." msgstr[1] "%d contactos editados." msgstr[2] "%d contactos editados." -#: src/Module/Contact.php:347 +#: src/Module/Contact.php:328 msgid "Show all contacts" msgstr "Mostrar todos los contactos" -#: src/Module/Contact.php:352 src/Module/Contact.php:431 -#: src/Module/Moderation/BaseUsers.php:85 +#: src/Module/Contact.php:333 src/Module/Contact.php:412 +#: src/Module/Moderation/BaseUsers.php:72 msgid "Pending" msgstr "Pendiente" -#: src/Module/Contact.php:355 +#: src/Module/Contact.php:336 msgid "Only show pending contacts" msgstr "Solo mostrar contactos pendientes" -#: src/Module/Contact.php:360 src/Module/Contact.php:434 -#: src/Module/Moderation/BaseUsers.php:93 +#: src/Module/Contact.php:341 src/Module/Contact.php:415 +#: src/Module/Moderation/BaseUsers.php:80 msgid "Blocked" msgstr "Bloqueados" -#: src/Module/Contact.php:363 +#: src/Module/Contact.php:344 msgid "Only show blocked contacts" msgstr "Mostrar solo contactos bloqueados" -#: src/Module/Contact.php:368 src/Module/Contact.php:440 -#: src/Module/Settings/Server/Index.php:107 src/Object/Post.php:399 +#: src/Module/Contact.php:349 src/Module/Contact.php:421 +#: src/Module/Settings/Server/Index.php:93 src/Object/Post.php:385 msgid "Ignored" msgstr "Ignorados" -#: src/Module/Contact.php:371 +#: src/Module/Contact.php:352 msgid "Only show ignored contacts" msgstr "Mostrar solo contactos ignorados" -#: src/Module/Contact.php:376 src/Module/Contact.php:443 +#: src/Module/Contact.php:357 src/Module/Contact.php:424 msgid "Collapsed" msgstr "" -#: src/Module/Contact.php:379 +#: src/Module/Contact.php:360 msgid "Only show collapsed contacts" msgstr "" -#: src/Module/Contact.php:384 src/Module/Contact.php:446 +#: src/Module/Contact.php:365 src/Module/Contact.php:427 msgid "Archived" msgstr "Archivados" -#: src/Module/Contact.php:387 +#: src/Module/Contact.php:368 msgid "Only show archived contacts" msgstr "Mostrar solo contactos archivados" -#: src/Module/Contact.php:392 src/Module/Contact.php:437 +#: src/Module/Contact.php:373 src/Module/Contact.php:418 msgid "Hidden" msgstr "Ocultos" -#: src/Module/Contact.php:395 +#: src/Module/Contact.php:376 msgid "Only show hidden contacts" msgstr "Mostrar solo contactos ocultos" -#: src/Module/Contact.php:403 +#: src/Module/Contact.php:384 msgid "Organize your contact circles" msgstr "" -#: src/Module/Contact.php:458 +#: src/Module/Contact.php:439 msgid "Search your contacts" msgstr "Buscar en tus contactos" -#: src/Module/Contact.php:459 src/Module/Search/Index.php:207 +#: src/Module/Contact.php:440 src/Module/Search/Index.php:193 #, php-format msgid "Results for: %s" msgstr "Resultados para: %s" -#: src/Module/Contact.php:466 +#: src/Module/Contact.php:448 msgid "Update" msgstr "Actualizar" -#: src/Module/Contact.php:467 src/Module/Contact/Profile.php:518 -#: src/Module/Moderation/Blocklist/Contact.php:117 -#: src/Module/Moderation/Users/Blocked.php:138 -#: src/Module/Moderation/Users/Index.php:154 +#: src/Module/Contact.php:449 src/Module/Contact/Profile.php:518 +#: src/Module/Moderation/Blocklist/Contact.php:103 +#: src/Module/Moderation/Users/Blocked.php:124 +#: src/Module/Moderation/Users/Index.php:140 msgid "Unblock" msgstr "Desbloquear" -#: src/Module/Contact.php:468 src/Module/Contact/Profile.php:526 +#: src/Module/Contact.php:450 src/Module/Contact/Profile.php:526 msgid "Unignore" msgstr "Quitar de Ignorados" -#: src/Module/Contact.php:469 src/Module/Contact/Profile.php:534 +#: src/Module/Contact.php:451 src/Module/Contact/Profile.php:534 msgid "Uncollapse" msgstr "" -#: src/Module/Contact.php:471 +#: src/Module/Contact.php:453 msgid "Batch Actions" msgstr "Acciones en lote" -#: src/Module/Contact.php:514 +#: src/Module/Contact.php:496 msgid "Conversations started by this contact" msgstr "Se iniciaron conversaciones con el contacto" -#: src/Module/Contact.php:519 +#: src/Module/Contact.php:501 msgid "Posts and Comments" msgstr "Artículos y Comentarios" -#: src/Module/Contact.php:522 +#: src/Module/Contact.php:504 msgid "Individual Posts and Replies" msgstr "" -#: src/Module/Contact.php:530 +#: src/Module/Contact.php:512 msgid "Posts containing media objects" msgstr "" -#: src/Module/Contact.php:538 +#: src/Module/Contact.php:520 msgid "View all known contacts" msgstr "Ver contactos conocidos" -#: src/Module/Contact.php:549 +#: src/Module/Contact.php:531 msgid "Advanced Contact Settings" msgstr "Configuración avanzada" -#: src/Module/Contact.php:585 +#: src/Module/Contact.php:567 msgid "Mutual Friendship" msgstr "Amistad común" -#: src/Module/Contact.php:589 +#: src/Module/Contact.php:571 msgid "is a fan of yours" msgstr "es tu seguidor" -#: src/Module/Contact.php:593 +#: src/Module/Contact.php:575 msgid "you are a fan of" msgstr "eres seguidor de" -#: src/Module/Contact.php:611 +#: src/Module/Contact.php:593 msgid "Pending outgoing contact request" msgstr "Solicitud de Contacto pendiente" -#: src/Module/Contact.php:613 +#: src/Module/Contact.php:595 msgid "Pending incoming contact request" msgstr "Solicitud de Contacto pendiente" -#: src/Module/Contact.php:626 src/Module/Contact/Profile.php:377 +#: src/Module/Contact.php:608 src/Module/Contact/Profile.php:377 #, php-format msgid "Visit %s's profile [%s]" msgstr "Ver el perfil de %s [%s]" -#: src/Module/Contact/Advanced.php:99 +#: src/Module/Contact/Advanced.php:85 msgid "Contact update failed." msgstr "Error al actualizar el Contacto." -#: src/Module/Contact/Advanced.php:130 +#: src/Module/Contact/Advanced.php:116 msgid "Return to contact editor" msgstr "Volver al editor de contactos" -#: src/Module/Contact/Advanced.php:134 -#: src/Module/Moderation/Blocklist/Contact.php:122 -#: src/Module/Moderation/Reports.php:110 -#: src/Module/Moderation/Users/Active.php:126 -#: src/Module/Moderation/Users/Blocked.php:126 -#: src/Module/Moderation/Users/Create.php:70 -#: src/Module/Moderation/Users/Deleted.php:83 -#: src/Module/Moderation/Users/Index.php:140 -#: src/Module/Moderation/Users/Index.php:160 -#: src/Module/Moderation/Users/Pending.php:99 src/Module/Settings/OAuth.php:72 +#: src/Module/Contact/Advanced.php:120 +#: src/Module/Moderation/Blocklist/Contact.php:108 +#: src/Module/Moderation/Reports.php:102 +#: src/Module/Moderation/Users/Active.php:112 +#: src/Module/Moderation/Users/Blocked.php:112 +#: src/Module/Moderation/Users/Create.php:56 +#: src/Module/Moderation/Users/Deleted.php:69 +#: src/Module/Moderation/Users/Index.php:126 +#: src/Module/Moderation/Users/Index.php:146 +#: src/Module/Moderation/Users/Pending.php:85 src/Module/Settings/OAuth.php:58 msgid "Name" msgstr "Nombre" -#: src/Module/Contact/Advanced.php:135 +#: src/Module/Contact/Advanced.php:121 msgid "Account Nickname" msgstr "Apodo de cuenta" -#: src/Module/Contact/Advanced.php:136 +#: src/Module/Contact/Advanced.php:122 msgid "Account URL" msgstr "Dirección de cuenta" -#: src/Module/Contact/Advanced.php:137 +#: src/Module/Contact/Advanced.php:123 msgid "Poll/Feed URL" msgstr "Dirección de Sondeo/Fuente" -#: src/Module/Contact/Advanced.php:138 +#: src/Module/Contact/Advanced.php:124 msgid "New photo from this URL" msgstr "Nueva foto de esta URL" -#: src/Module/Contact/Contacts.php:89 +#: src/Module/Contact/Contacts.php:75 msgid "No known contacts." msgstr "No hay contactos conocidos." -#: src/Module/Contact/Contacts.php:103 src/Module/Profile/Common.php:128 +#: src/Module/Contact/Contacts.php:89 src/Module/Profile/Common.php:114 msgid "No common contacts." msgstr "Sin contactos comunes." -#: src/Module/Contact/Contacts.php:115 src/Module/Profile/Contacts.php:135 +#: src/Module/Contact/Contacts.php:101 src/Module/Profile/Contacts.php:121 #, php-format msgid "Follower (%s)" msgid_plural "Followers (%s)" @@ -6683,7 +6699,7 @@ msgstr[0] "Seguidor (%s)" msgstr[1] "Seguidores (%s)" msgstr[2] "Seguidores (%s)" -#: src/Module/Contact/Contacts.php:119 src/Module/Profile/Contacts.php:138 +#: src/Module/Contact/Contacts.php:105 src/Module/Profile/Contacts.php:124 #, php-format msgid "Following (%s)" msgid_plural "Following (%s)" @@ -6691,7 +6707,7 @@ msgstr[0] "Siguiendo (%s)" msgstr[1] "Siguiendo (%s)" msgstr[2] "Siguiendo (%s)" -#: src/Module/Contact/Contacts.php:123 src/Module/Profile/Contacts.php:141 +#: src/Module/Contact/Contacts.php:109 src/Module/Profile/Contacts.php:127 #, php-format msgid "Mutual friend (%s)" msgid_plural "Mutual friends (%s)" @@ -6699,12 +6715,12 @@ msgstr[0] "Amigo mutuo (%s)" msgstr[1] "Amigos mutuos (%s)" msgstr[2] "Amigos mutuos (%s)" -#: src/Module/Contact/Contacts.php:125 src/Module/Profile/Contacts.php:143 +#: src/Module/Contact/Contacts.php:111 src/Module/Profile/Contacts.php:129 #, php-format msgid "These contacts both follow and are followed by %s." msgstr "Estos contactos siguen y son seguidos por %s." -#: src/Module/Contact/Contacts.php:131 src/Module/Profile/Common.php:116 +#: src/Module/Contact/Contacts.php:117 src/Module/Profile/Common.php:102 #, php-format msgid "Common contact (%s)" msgid_plural "Common contacts (%s)" @@ -6712,14 +6728,14 @@ msgstr[0] "Common contact (%s)" msgstr[1] "Common contacts (%s)" msgstr[2] "Common contacts (%s)" -#: src/Module/Contact/Contacts.php:133 src/Module/Profile/Common.php:118 +#: src/Module/Contact/Contacts.php:119 src/Module/Profile/Common.php:104 #, php-format msgid "" "Both %s and yourself have publicly interacted with these " "contacts (follow, comment or likes on public posts)." msgstr "Tanto %s como usted han interactuado públicamente con estos contactos (seguir, comentar o dar me gusta en publicaciones públicas)." -#: src/Module/Contact/Contacts.php:139 src/Module/Profile/Contacts.php:149 +#: src/Module/Contact/Contacts.php:125 src/Module/Profile/Contacts.php:135 #, php-format msgid "Contact (%s)" msgid_plural "Contacts (%s)" @@ -6727,95 +6743,91 @@ msgstr[0] "Contacto (%s)" msgstr[1] "Contactos (%s)" msgstr[2] "Contactos (%s)" -#: src/Module/Contact/Follow.php:70 src/Module/Contact/Redir.php:63 -#: src/Module/Contact/Redir.php:223 src/Module/Conversation/Community.php:166 -#: src/Module/Debug/ItemBody.php:38 src/Module/Diaspora/Receive.php:57 -#: src/Module/Item/Display.php:96 src/Module/Item/Feed.php:59 -#: src/Module/Item/Follow.php:41 src/Module/Item/Ignore.php:41 -#: src/Module/Item/Language.php:53 src/Module/Item/Pin.php:41 -#: src/Module/Item/Pin.php:56 src/Module/Item/Searchtext.php:53 -#: src/Module/Item/Star.php:42 src/Module/Update/Display.php:37 +#: src/Module/Contact/Follow.php:56 src/Module/Contact/Redir.php:45 +#: src/Module/Contact/Redir.php:206 src/Module/Conversation/Community.php:154 +#: src/Module/Debug/ItemBody.php:24 src/Module/Diaspora/Receive.php:45 +#: src/Module/Item/Display.php:82 src/Module/Item/Feed.php:45 +#: src/Module/Item/Follow.php:27 src/Module/Item/Ignore.php:27 +#: src/Module/Item/Language.php:39 src/Module/Item/Pin.php:27 +#: src/Module/Item/Pin.php:42 src/Module/Item/Searchtext.php:39 +#: src/Module/Item/Star.php:28 src/Module/Update/Display.php:23 msgid "Access denied." msgstr "Acceso denegado." -#: src/Module/Contact/Follow.php:105 src/Module/Contact/Unfollow.php:125 -#: src/Module/Profile/RemoteFollow.php:133 +#: src/Module/Contact/Follow.php:91 src/Module/Contact/Unfollow.php:111 +#: src/Module/Profile/RemoteFollow.php:119 msgid "Submit Request" msgstr "Enviar Solicitud" -#: src/Module/Contact/Follow.php:115 +#: src/Module/Contact/Follow.php:101 msgid "You already added this contact." msgstr "Ya has añadido este contacto." -#: src/Module/Contact/Follow.php:130 +#: src/Module/Contact/Follow.php:116 msgid "The network type couldn't be detected. Contact can't be added." msgstr "No se pudo detectar el tipo de red. Contacto no puede ser agregado." -#: src/Module/Contact/Follow.php:138 +#: src/Module/Contact/Follow.php:124 msgid "Diaspora support isn't enabled. Contact can't be added." msgstr "El soporte de Diaspora* no esta habilitado, el contacto no puede ser agregado." -#: src/Module/Contact/Follow.php:143 -msgid "OStatus support is disabled. Contact can't be added." -msgstr "El soporte de OStatus no esta habilitado, el contacto no puede ser agregado." - -#: src/Module/Contact/Follow.php:168 src/Module/Profile/RemoteFollow.php:132 +#: src/Module/Contact/Follow.php:149 src/Module/Profile/RemoteFollow.php:118 msgid "Please answer the following:" msgstr "Por favor responde lo siguiente:" -#: src/Module/Contact/Follow.php:169 src/Module/Contact/Unfollow.php:123 +#: src/Module/Contact/Follow.php:150 src/Module/Contact/Unfollow.php:109 msgid "Your Identity Address:" msgstr "Dirección de tu Identidad:" -#: src/Module/Contact/Follow.php:170 src/Module/Contact/Profile.php:408 -#: src/Module/Contact/Unfollow.php:129 -#: src/Module/Moderation/Blocklist/Contact.php:131 -#: src/Module/Moderation/Reports.php:117 -#: src/Module/Notifications/Introductions.php:129 -#: src/Module/Notifications/Introductions.php:198 +#: src/Module/Contact/Follow.php:151 src/Module/Contact/Profile.php:408 +#: src/Module/Contact/Unfollow.php:115 +#: src/Module/Moderation/Blocklist/Contact.php:117 +#: src/Module/Moderation/Reports.php:109 +#: src/Module/Notifications/Introductions.php:121 +#: src/Module/Notifications/Introductions.php:190 msgid "Profile URL" msgstr "URL del Perfil" -#: src/Module/Contact/Follow.php:171 src/Module/Contact/Profile.php:420 -#: src/Module/Notifications/Introductions.php:191 -#: src/Module/Profile/Profile.php:234 +#: src/Module/Contact/Follow.php:152 src/Module/Contact/Profile.php:420 +#: src/Module/Notifications/Introductions.php:183 +#: src/Module/Profile/Profile.php:222 msgid "Tags:" msgstr "Etiquetas:" -#: src/Module/Contact/Follow.php:182 +#: src/Module/Contact/Follow.php:163 #, php-format msgid "%s knows you" msgstr "%s te conoce" -#: src/Module/Contact/Follow.php:183 +#: src/Module/Contact/Follow.php:164 msgid "Add a personal note:" msgstr "Añade una nota personal:" -#: src/Module/Contact/Follow.php:192 src/Module/Contact/Unfollow.php:138 +#: src/Module/Contact/Follow.php:173 src/Module/Contact/Unfollow.php:124 msgid "Posts and Replies" msgstr "" -#: src/Module/Contact/Follow.php:221 +#: src/Module/Contact/Follow.php:202 msgid "The contact could not be added." msgstr "El contacto no puede añadirse." -#: src/Module/Contact/MatchInterests.php:95 -#: src/Module/Media/Attachment/Upload.php:77 -#: src/Module/Media/Attachment/Upload.php:82 -#: src/Module/Media/Photo/Upload.php:81 src/Module/Media/Photo/Upload.php:86 -#: src/Module/Media/Photo/Upload.php:135 +#: src/Module/Contact/MatchInterests.php:81 +#: src/Module/Media/Attachment/Upload.php:63 +#: src/Module/Media/Attachment/Upload.php:68 +#: src/Module/Media/Photo/Upload.php:67 src/Module/Media/Photo/Upload.php:72 +#: src/Module/Media/Photo/Upload.php:121 msgid "Invalid request." msgstr "Consulta invalida" -#: src/Module/Contact/MatchInterests.php:102 +#: src/Module/Contact/MatchInterests.php:88 msgid "No keywords to match. Please add keywords to your profile." msgstr "No hay etiquetas, añade etiquetas a tu perfil." -#: src/Module/Contact/MatchInterests.php:145 +#: src/Module/Contact/MatchInterests.php:141 msgid "Profile Match" msgstr "Coincidencia de Perfil" -#: src/Module/Contact/Profile.php:145 +#: src/Module/Contact/Profile.php:131 msgid "Failed to update contact record." msgstr "Error al actualizar el contacto." @@ -6953,7 +6965,7 @@ msgid "Block/Unblock contact" msgstr "Boquear/Desbloquear contacto" #: src/Module/Contact/Profile.php:379 -#: src/Module/Moderation/Report/Create.php:293 +#: src/Module/Moderation/Report/Create.php:279 msgid "Ignore contact" msgstr "Ignorar contacto" @@ -6998,7 +7010,7 @@ msgid "Manage remote servers" msgstr "" #: src/Module/Contact/Profile.php:400 -#: src/Module/Notifications/Introductions.php:192 +#: src/Module/Notifications/Introductions.php:184 msgid "Hide this contact from others" msgstr "Ocultar el contacto a los demás." @@ -7026,12 +7038,12 @@ msgid "" msgstr "Lista separada por comas de palabras claves que no deberían ser convertidas en #etiquetas cuando \"Recaudar información y palabras claves\" es seleccionado" #: src/Module/Contact/Profile.php:421 -#: src/Module/Settings/TwoFactor/Index.php:160 +#: src/Module/Settings/TwoFactor/Index.php:146 msgid "Actions" msgstr "Acciones" #: src/Module/Contact/Profile.php:423 -#: src/Module/Settings/TwoFactor/Index.php:140 view/theme/frio/theme.php:232 +#: src/Module/Settings/TwoFactor/Index.php:126 view/theme/frio/theme.php:220 msgid "Status" msgstr "Estado" @@ -7106,8 +7118,8 @@ msgstr "" #: src/Module/Contact/Profile.php:441 msgid "" -"If enabled, posts from this contact will only appear in channels, but not in" -" the network stream." +"If enabled, posts from this contact will only appear in channels and network" +" streams in circles, but not in the general network stream." msgstr "" #: src/Module/Contact/Profile.php:509 @@ -7126,7 +7138,7 @@ msgstr "Cambiar ignorados" msgid "Toggle Collapsed status" msgstr "" -#: src/Module/Contact/Profile.php:543 src/Module/Contact/Revoke.php:106 +#: src/Module/Contact/Profile.php:543 src/Module/Contact/Revoke.php:89 msgid "Revoke Follow" msgstr "" @@ -7134,640 +7146,636 @@ msgstr "" msgid "Revoke the follow from this contact" msgstr "" -#: src/Module/Contact/Redir.php:135 src/Module/Contact/Redir.php:187 +#: src/Module/Contact/Redir.php:125 msgid "Bad Request." msgstr "Petición errónea" -#: src/Module/Contact/Revoke.php:63 -msgid "Unknown contact." -msgstr "" - -#: src/Module/Contact/Revoke.php:77 +#: src/Module/Contact/Revoke.php:60 msgid "Contact is being deleted." msgstr "" -#: src/Module/Contact/Revoke.php:91 +#: src/Module/Contact/Revoke.php:74 msgid "Follow was successfully revoked." msgstr "" -#: src/Module/Contact/Revoke.php:107 +#: src/Module/Contact/Revoke.php:90 msgid "" "Do you really want to revoke this contact's follow? This cannot be undone " "and they will have to manually follow you back again." msgstr "" -#: src/Module/Contact/Suggestions.php:62 +#: src/Module/Contact/Suggestions.php:48 msgid "" "No suggestions available. If this is a new site, please try again in 24 " "hours." msgstr "No hay sugerencias disponibles. Si el sitio web es nuevo inténtalo de nuevo en 24 horas." -#: src/Module/Contact/Unfollow.php:98 src/Module/Contact/Unfollow.php:167 +#: src/Module/Contact/Unfollow.php:84 src/Module/Contact/Unfollow.php:153 msgid "You aren't following this contact." msgstr "No sigues a este contacto." -#: src/Module/Contact/Unfollow.php:103 +#: src/Module/Contact/Unfollow.php:89 msgid "Unfollowing is currently not supported by your network." msgstr "Dejar de Seguir no es compatible con tu red." -#: src/Module/Contact/Unfollow.php:121 +#: src/Module/Contact/Unfollow.php:107 msgid "Disconnect/Unfollow" msgstr "Desconectar/Dejar de seguir" -#: src/Module/Contact/Unfollow.php:175 +#: src/Module/Contact/Unfollow.php:161 msgid "Contact was successfully unfollowed" msgstr "" -#: src/Module/Contact/Unfollow.php:178 +#: src/Module/Contact/Unfollow.php:164 msgid "Unable to unfollow this contact, please contact your administrator" msgstr "" -#: src/Module/Conversation/Channel.php:139 -#: src/Module/Conversation/Community.php:126 src/Module/Search/Index.php:152 -#: src/Module/Search/Index.php:194 +#: src/Module/Conversation/Channel.php:125 +#: src/Module/Conversation/Community.php:114 src/Module/Search/Index.php:138 +#: src/Module/Search/Index.php:180 msgid "No results." msgstr "Sin resultados." -#: src/Module/Conversation/Channel.php:177 +#: src/Module/Conversation/Channel.php:163 msgid "Channel not available." msgstr "" -#: src/Module/Conversation/Community.php:92 +#: src/Module/Conversation/Community.php:80 msgid "" "This community stream shows all public posts received by this node. They may" " not reflect the opinions of this node’s users." msgstr "Este hilo de la comunidad muestra todas las publicaciones públicas recibidas por este nodo. Puede no reflejar las opiniones de los usuarios de este nodo." -#: src/Module/Conversation/Community.php:180 +#: src/Module/Conversation/Community.php:168 msgid "Community option not available." msgstr "Fediverso no disponible" -#: src/Module/Conversation/Community.php:196 +#: src/Module/Conversation/Community.php:184 msgid "Not available." msgstr "No disponible" -#: src/Module/Conversation/Network.php:214 +#: src/Module/Conversation/Network.php:202 msgid "No such circle" msgstr "" -#: src/Module/Conversation/Network.php:218 +#: src/Module/Conversation/Network.php:206 #, php-format msgid "Circle: %s" msgstr "" -#: src/Module/Conversation/Network.php:237 +#: src/Module/Conversation/Network.php:226 #, php-format msgid "Error %d (%s) while fetching the timeline." msgstr "" -#: src/Module/Conversation/Network.php:314 +#: src/Module/Conversation/Network.php:304 msgid "Network feed not available." msgstr "" -#: src/Module/Conversation/Timeline.php:203 +#: src/Module/Conversation/Timeline.php:190 msgid "Include" msgstr "Incluir" -#: src/Module/Conversation/Timeline.php:204 +#: src/Module/Conversation/Timeline.php:191 msgid "Hide" msgstr "Ocultar" -#: src/Module/Credits.php:44 +#: src/Module/Credits.php:30 msgid "Credits" msgstr "Créditos" -#: src/Module/Credits.php:45 +#: src/Module/Credits.php:31 msgid "" "Friendica is a community project, that would not be possible without the " "help of many people. Here is a list of those who have contributed to the " "code or the translation of Friendica. Thank you all!" msgstr "Friendica es un proyecto comunitario, que no seria posible sin la ayuda de mucha gente. Aquí una lista de de aquellos que aportaron al código o la traducción de friendica.\nGracias a todos! " -#: src/Module/Debug/ActivityPubConversion.php:53 +#: src/Module/Debug/ActivityPubConversion.php:45 msgid "Formatted" msgstr "Formateado" -#: src/Module/Debug/ActivityPubConversion.php:65 +#: src/Module/Debug/ActivityPubConversion.php:57 msgid "Activity" msgstr "Actividad" -#: src/Module/Debug/ActivityPubConversion.php:117 +#: src/Module/Debug/ActivityPubConversion.php:109 msgid "Object data" msgstr "Dato de Objeto" -#: src/Module/Debug/ActivityPubConversion.php:124 +#: src/Module/Debug/ActivityPubConversion.php:116 msgid "Result Item" msgstr "Artículo resultado" -#: src/Module/Debug/ActivityPubConversion.php:129 -#: src/Module/Debug/Babel.php:294 src/Module/Moderation/Item/Source.php:87 -#: src/Module/Security/TwoFactor/Verify.php:98 +#: src/Module/Debug/ActivityPubConversion.php:121 +#: src/Module/Debug/Babel.php:286 src/Module/Moderation/Item/Source.php:79 +#: src/Module/Security/TwoFactor/Verify.php:84 msgid "Error" msgid_plural "Errors" msgstr[0] "Error" msgstr[1] "Errores" msgstr[2] "Errores" -#: src/Module/Debug/ActivityPubConversion.php:138 +#: src/Module/Debug/ActivityPubConversion.php:130 msgid "Source activity" msgstr "Actividad fuente" -#: src/Module/Debug/Babel.php:52 +#: src/Module/Debug/Babel.php:44 msgid "Source input" msgstr "Entrada fuente" -#: src/Module/Debug/Babel.php:58 +#: src/Module/Debug/Babel.php:50 msgid "BBCode::toPlaintext" msgstr "BBCode::toPlaintext" -#: src/Module/Debug/Babel.php:64 +#: src/Module/Debug/Babel.php:56 msgid "BBCode::convert (raw HTML)" msgstr "BBCode::convert (raw HTML)" -#: src/Module/Debug/Babel.php:69 +#: src/Module/Debug/Babel.php:61 msgid "BBCode::convert (hex)" msgstr "BBCode::convert (hex)" -#: src/Module/Debug/Babel.php:74 +#: src/Module/Debug/Babel.php:66 msgid "BBCode::convert" msgstr "BBCode::convert" -#: src/Module/Debug/Babel.php:80 +#: src/Module/Debug/Babel.php:72 msgid "BBCode::convert => HTML::toBBCode" msgstr "BBCode::convert => HTML::toBBCode" -#: src/Module/Debug/Babel.php:86 +#: src/Module/Debug/Babel.php:78 msgid "BBCode::toMarkdown" msgstr "BBCode::toMarkdown" -#: src/Module/Debug/Babel.php:92 +#: src/Module/Debug/Babel.php:84 msgid "BBCode::toMarkdown => Markdown::convert (raw HTML)" msgstr "BBCode::toMarkdown => Markdown::convert (raw HTML)" -#: src/Module/Debug/Babel.php:96 +#: src/Module/Debug/Babel.php:88 msgid "BBCode::toMarkdown => Markdown::convert" msgstr "BBCode::toMarkdown => Markdown::convert" -#: src/Module/Debug/Babel.php:102 +#: src/Module/Debug/Babel.php:94 msgid "BBCode::toMarkdown => Markdown::toBBCode" msgstr "BBCode::toMarkdown => Markdown::toBBCode" -#: src/Module/Debug/Babel.php:108 +#: src/Module/Debug/Babel.php:100 msgid "BBCode::toMarkdown => Markdown::convert => HTML::toBBCode" msgstr "BBCode::toMarkdown => Markdown::convert => HTML::toBBCode" -#: src/Module/Debug/Babel.php:116 +#: src/Module/Debug/Babel.php:108 msgid "Item Body" msgstr "Cuerpo" -#: src/Module/Debug/Babel.php:120 +#: src/Module/Debug/Babel.php:112 msgid "Item Tags" msgstr "Etiquetas" -#: src/Module/Debug/Babel.php:126 +#: src/Module/Debug/Babel.php:118 msgid "PageInfo::appendToBody" msgstr "PageInfo::appendToBody" -#: src/Module/Debug/Babel.php:131 +#: src/Module/Debug/Babel.php:123 msgid "PageInfo::appendToBody => BBCode::convert (raw HTML)" msgstr "PageInfo::appendToBody => BBCode::convert (raw HTML)" -#: src/Module/Debug/Babel.php:135 +#: src/Module/Debug/Babel.php:127 msgid "PageInfo::appendToBody => BBCode::convert" msgstr "PageInfo::appendToBody => BBCode::convert" -#: src/Module/Debug/Babel.php:142 +#: src/Module/Debug/Babel.php:134 msgid "Source input (Diaspora format)" msgstr "Entrada fuente (Formato Diaspora)" -#: src/Module/Debug/Babel.php:151 +#: src/Module/Debug/Babel.php:143 msgid "Source input (Markdown)" msgstr "Entrada fuente (Markdown)" -#: src/Module/Debug/Babel.php:157 +#: src/Module/Debug/Babel.php:149 msgid "Markdown::convert (raw HTML)" msgstr "Markdown::convert (raw HTML)" -#: src/Module/Debug/Babel.php:162 +#: src/Module/Debug/Babel.php:154 msgid "Markdown::convert" msgstr "Markdown::convert" -#: src/Module/Debug/Babel.php:168 +#: src/Module/Debug/Babel.php:160 msgid "Markdown::toBBCode" msgstr "Markdown::toBBCode" -#: src/Module/Debug/Babel.php:175 +#: src/Module/Debug/Babel.php:167 msgid "Raw HTML input" msgstr "Entrada RAW HTML" -#: src/Module/Debug/Babel.php:180 +#: src/Module/Debug/Babel.php:172 msgid "HTML Input" msgstr "Entrada HTML" -#: src/Module/Debug/Babel.php:187 +#: src/Module/Debug/Babel.php:179 msgid "HTML Purified (raw)" msgstr "HTML purificado (raw)" -#: src/Module/Debug/Babel.php:192 +#: src/Module/Debug/Babel.php:184 msgid "HTML Purified (hex)" msgstr "HTML purificado (hex)" -#: src/Module/Debug/Babel.php:197 +#: src/Module/Debug/Babel.php:189 msgid "HTML Purified" msgstr "HTML purificado" -#: src/Module/Debug/Babel.php:203 +#: src/Module/Debug/Babel.php:195 msgid "HTML::toBBCode" msgstr "HTML::toBBCode" -#: src/Module/Debug/Babel.php:209 +#: src/Module/Debug/Babel.php:201 msgid "HTML::toBBCode => BBCode::convert" msgstr "HTML::toBBCode => BBCode::convert" -#: src/Module/Debug/Babel.php:214 +#: src/Module/Debug/Babel.php:206 msgid "HTML::toBBCode => BBCode::convert (raw HTML)" msgstr "HTML::toBBCode => BBCode::convert (raw HTML)" -#: src/Module/Debug/Babel.php:220 +#: src/Module/Debug/Babel.php:212 msgid "HTML::toBBCode => BBCode::toPlaintext" msgstr "HTML::toBBCode => BBCode::toPlaintext" -#: src/Module/Debug/Babel.php:226 +#: src/Module/Debug/Babel.php:218 msgid "HTML::toMarkdown" msgstr "HTML::toMarkdown" -#: src/Module/Debug/Babel.php:232 +#: src/Module/Debug/Babel.php:224 msgid "HTML::toPlaintext" msgstr "HTML::toPlaintext" -#: src/Module/Debug/Babel.php:238 +#: src/Module/Debug/Babel.php:230 msgid "HTML::toPlaintext (compact)" msgstr "HTML::toPlaintext (compact)" -#: src/Module/Debug/Babel.php:256 +#: src/Module/Debug/Babel.php:248 msgid "Decoded post" msgstr "Articulo decodificado" -#: src/Module/Debug/Babel.php:277 +#: src/Module/Debug/Babel.php:269 msgid "Post array before expand entities" msgstr "Arreglo sin expandir entidades" -#: src/Module/Debug/Babel.php:284 +#: src/Module/Debug/Babel.php:276 msgid "Post converted" msgstr "Convertido" -#: src/Module/Debug/Babel.php:289 +#: src/Module/Debug/Babel.php:281 msgid "Converted body" msgstr "Cuerpo convertido" -#: src/Module/Debug/Babel.php:295 +#: src/Module/Debug/Babel.php:287 msgid "Twitter addon is absent from the addon/ folder." msgstr "El Addon de Twitter no existe en folder addon/ ." -#: src/Module/Debug/Babel.php:305 +#: src/Module/Debug/Babel.php:297 msgid "Babel Diagnostic" msgstr "Diagnóstico Babel" -#: src/Module/Debug/Babel.php:307 +#: src/Module/Debug/Babel.php:299 msgid "Source text" msgstr "Texto fuente" -#: src/Module/Debug/Babel.php:308 +#: src/Module/Debug/Babel.php:300 msgid "BBCode" msgstr "BBCode" -#: src/Module/Debug/Babel.php:310 +#: src/Module/Debug/Babel.php:302 msgid "Markdown" msgstr "Markdown" -#: src/Module/Debug/Babel.php:311 +#: src/Module/Debug/Babel.php:303 msgid "HTML" msgstr "HTML" -#: src/Module/Debug/Babel.php:313 +#: src/Module/Debug/Babel.php:305 msgid "Twitter Source / Tweet URL (requires API key)" msgstr "Fuente Twitter / Tweet URL (requiere API key)" -#: src/Module/Debug/Feed.php:53 src/Module/Filer/SaveTag.php:47 -#: src/Module/Settings/Profile/Index.php:177 +#: src/Module/Debug/Feed.php:39 src/Module/Filer/SaveTag.php:33 +#: src/Module/Settings/Profile/Index.php:166 msgid "You must be logged in to use this module" msgstr "Debes ingresar para usar este módulo" -#: src/Module/Debug/Feed.php:78 +#: src/Module/Debug/Feed.php:64 msgid "Source URL" msgstr "URL Fuente" -#: src/Module/Debug/Localtime.php:49 +#: src/Module/Debug/Localtime.php:35 msgid "Time Conversion" msgstr "Conversión horária" -#: src/Module/Debug/Localtime.php:50 +#: src/Module/Debug/Localtime.php:36 msgid "" "Friendica provides this service for sharing events with other networks and " "friends in unknown timezones." msgstr "Friendica ofrece este servicio para compartir eventos con otros servidores de Red friendica y amigos en zonas horarias desconocidas." -#: src/Module/Debug/Localtime.php:51 +#: src/Module/Debug/Localtime.php:37 #, php-format msgid "UTC time: %s" msgstr "Tiempo UTC: %s" -#: src/Module/Debug/Localtime.php:54 +#: src/Module/Debug/Localtime.php:40 #, php-format msgid "Current timezone: %s" msgstr "Zona horaria actual: %s" -#: src/Module/Debug/Localtime.php:58 +#: src/Module/Debug/Localtime.php:44 #, php-format msgid "Converted localtime: %s" msgstr "Hora local convertida: %s" -#: src/Module/Debug/Localtime.php:62 +#: src/Module/Debug/Localtime.php:48 msgid "Please select your timezone:" msgstr "Selecciona tu zona horaria:" -#: src/Module/Debug/Probe.php:38 src/Module/Debug/WebFinger.php:37 +#: src/Module/Debug/Probe.php:24 src/Module/Debug/WebFinger.php:23 msgid "Only logged in users are permitted to perform a probing." msgstr "Sólo usuarios registrados pueden realizar exploración." -#: src/Module/Debug/Probe.php:52 +#: src/Module/Debug/Probe.php:38 msgid "Probe Diagnostic" msgstr "Prueba Diagnóstico" -#: src/Module/Debug/Probe.php:53 +#: src/Module/Debug/Probe.php:39 msgid "Output" msgstr "Salida" -#: src/Module/Debug/Probe.php:56 +#: src/Module/Debug/Probe.php:42 msgid "Lookup address" msgstr "Buscar Dirección" -#: src/Module/Debug/WebFinger.php:50 +#: src/Module/Debug/WebFinger.php:36 msgid "Webfinger Diagnostic" msgstr "Diagnóstico Webfinger" -#: src/Module/Debug/WebFinger.php:52 +#: src/Module/Debug/WebFinger.php:38 msgid "Lookup address:" msgstr "Buscar Dirección:" -#: src/Module/Directory.php:74 +#: src/Module/Directory.php:61 msgid "No entries (some entries may be hidden)." msgstr "Sin entradas (algunas pueden que estén ocultas)." -#: src/Module/Directory.php:90 +#: src/Module/Directory.php:77 msgid "Find on this site" msgstr "Buscar en este sitio" -#: src/Module/Directory.php:92 +#: src/Module/Directory.php:79 msgid "Results for:" msgstr "Resultados para:" -#: src/Module/Directory.php:94 +#: src/Module/Directory.php:81 msgid "Site Directory" msgstr "Directorio del sitio" -#: src/Module/Filer/RemoveTag.php:105 +#: src/Module/Filer/RemoveTag.php:91 msgid "Item was not deleted" msgstr "Artículo no fue borrado" -#: src/Module/Filer/RemoveTag.php:115 +#: src/Module/Filer/RemoveTag.php:101 msgid "Item was not removed" msgstr "Artículo no fue borrado" -#: src/Module/Filer/SaveTag.php:73 +#: src/Module/Filer/SaveTag.php:59 msgid "- select -" msgstr "- seleccionar -" -#: src/Module/FriendSuggest.php:82 +#: src/Module/FriendSuggest.php:68 msgid "Suggested contact not found." msgstr "El contacto sugerido no se encontró." -#: src/Module/FriendSuggest.php:100 +#: src/Module/FriendSuggest.php:86 msgid "Friend suggestion sent." msgstr "Solicitud de amistad enviada." -#: src/Module/FriendSuggest.php:137 +#: src/Module/FriendSuggest.php:123 msgid "Suggest Friends" msgstr "Sugerencias de amistad" -#: src/Module/FriendSuggest.php:140 +#: src/Module/FriendSuggest.php:126 #, php-format msgid "Suggest a friend for %s" msgstr "Recomienda un amigo a %s" -#: src/Module/Friendica.php:81 +#: src/Module/Friendica.php:67 msgid "Installed addons/apps:" msgstr "Añadidos/apps Instalados:" -#: src/Module/Friendica.php:86 +#: src/Module/Friendica.php:72 msgid "No installed addons/apps" msgstr "Añadidos/apps no instalados" -#: src/Module/Friendica.php:91 +#: src/Module/Friendica.php:77 #, php-format msgid "Read about the Terms of Service of this node." msgstr "Leer acerca de Términos de Servicio del nodo." -#: src/Module/Friendica.php:98 +#: src/Module/Friendica.php:84 msgid "On this server the following remote servers are blocked." msgstr "En este servidor los siguientes servidores remotos están bloqueados." -#: src/Module/Friendica.php:101 -#: src/Module/Moderation/Blocklist/Server/Index.php:87 -#: src/Module/Moderation/Blocklist/Server/Index.php:111 -#: src/Module/Settings/Channels.php:232 +#: src/Module/Friendica.php:87 +#: src/Module/Moderation/Blocklist/Server/Index.php:73 +#: src/Module/Moderation/Blocklist/Server/Index.php:97 +#: src/Module/Settings/Channels.php:218 msgid "Reason for the block" msgstr "Razón para el bloqueo" -#: src/Module/Friendica.php:103 +#: src/Module/Friendica.php:89 msgid "Download this list in CSV format" msgstr "" -#: src/Module/Friendica.php:117 +#: src/Module/Friendica.php:103 #, php-format msgid "" "This is Friendica, version %s that is running at the web location %s. The " "database version is %s, the post update version is %s." msgstr "Este es Friendica, version %s ejecutándose en ubicación %s. Versión de la BD es %s, la versión después de actualización es %s." -#: src/Module/Friendica.php:122 +#: src/Module/Friendica.php:108 msgid "" "Please visit Friendi.ca to learn more " "about the Friendica project." msgstr "Visite Friendi.ca para aprender más sobre el proyecto Friendica, por favor." -#: src/Module/Friendica.php:123 +#: src/Module/Friendica.php:109 msgid "Bug reports and issues: please visit" msgstr "Reporte de fallos y problemas: por favor visita" -#: src/Module/Friendica.php:123 +#: src/Module/Friendica.php:109 msgid "the bugtracker at github" msgstr "aviso de fallas (bugs) en github" -#: src/Module/Friendica.php:124 +#: src/Module/Friendica.php:110 msgid "Suggestions, praise, etc. - please email \"info\" at \"friendi - dot - ca" msgstr "Sugerencias, agradecimientos, etc. - envie correo \"info\" at \"friendi - dot - ca" -#: src/Module/HCard.php:45 +#: src/Module/HCard.php:31 msgid "No profile" msgstr "Ningún perfil" -#: src/Module/HTTPException/MethodNotAllowed.php:31 +#: src/Module/HTTPException/MethodNotAllowed.php:17 msgid "Method Not Allowed." msgstr "Método no Permitido" -#: src/Module/Help.php:60 +#: src/Module/Help.php:46 msgid "Help:" msgstr "Ayuda:" -#: src/Module/Home.php:63 +#: src/Module/Home.php:52 #, php-format msgid "Welcome to %s" msgstr "Bienvenido a %s" -#: src/Module/Install.php:189 +#: src/Module/Install.php:175 msgid "Friendica Communications Server - Setup" msgstr "Servidor de Comunicaciones Friendica - Instalación" -#: src/Module/Install.php:200 +#: src/Module/Install.php:186 msgid "System check" msgstr "Verificación del sistema" -#: src/Module/Install.php:202 src/Module/Install.php:247 -#: src/Module/Install.php:326 +#: src/Module/Install.php:188 src/Module/Install.php:233 +#: src/Module/Install.php:312 msgid "Requirement not satisfied" msgstr "Requerimiento no satisfactorio" -#: src/Module/Install.php:203 +#: src/Module/Install.php:189 msgid "Optional requirement not satisfied" msgstr "Requerimiento Opcional no satisfactorio" -#: src/Module/Install.php:204 +#: src/Module/Install.php:190 msgid "OK" msgstr "OK" -#: src/Module/Install.php:208 +#: src/Module/Install.php:194 msgid "Next" msgstr "Siguiente" -#: src/Module/Install.php:209 +#: src/Module/Install.php:195 msgid "Check again" msgstr "Comprobar Nuevamente" -#: src/Module/Install.php:222 +#: src/Module/Install.php:208 msgid "Base settings" msgstr "Configuración Base" -#: src/Module/Install.php:224 +#: src/Module/Install.php:210 msgid "Base path to installation" msgstr "Ruta base para la instalación" -#: src/Module/Install.php:226 +#: src/Module/Install.php:212 msgid "" "If the system cannot detect the correct path to your installation, enter the" " correct path here. This setting should only be set if you are using a " "restricted system and symbolic links to your webroot." msgstr "Si el sistema no puede detectar el acceso correcto a la instalación, ingrese la dirección correcta aquí. Esta configuración solo debería utilizarse si si usa un sistema restringido y enlaces simbolicos a su webroot." -#: src/Module/Install.php:229 +#: src/Module/Install.php:215 msgid "The Friendica system URL" msgstr "" -#: src/Module/Install.php:231 +#: src/Module/Install.php:217 msgid "" "Overwrite this field in case the system URL determination isn't right, " "otherwise leave it as is." msgstr "" -#: src/Module/Install.php:242 +#: src/Module/Install.php:228 msgid "Database connection" msgstr "Conexión con Base de Datos" -#: src/Module/Install.php:243 +#: src/Module/Install.php:229 msgid "" "In order to install Friendica we need to know how to connect to your " "database." msgstr "Con el fin de poder instalar Friendica, necesitamos saber cómo conectar con tu base de datos." -#: src/Module/Install.php:244 +#: src/Module/Install.php:230 msgid "" "Please contact your hosting provider or site administrator if you have " "questions about these settings." msgstr "Por favor, contacta con tu proveedor de servicios o con el administrador de la página si tienes alguna pregunta sobre estas configuraciones." -#: src/Module/Install.php:245 +#: src/Module/Install.php:231 msgid "" "The database you specify below should already exist. If it does not, please " "create it before continuing." msgstr "La base de datos que especifiques a continuación debería existir ya. Si no es el caso, debes crearla antes de continuar." -#: src/Module/Install.php:252 +#: src/Module/Install.php:238 msgid "Database Server Name" msgstr "Nombre del servidor de la base de datos" -#: src/Module/Install.php:257 +#: src/Module/Install.php:243 msgid "Database Login Name" msgstr "Usuario de la base de datos" -#: src/Module/Install.php:263 +#: src/Module/Install.php:249 msgid "Database Login Password" msgstr "Contraseña de la base de datos" -#: src/Module/Install.php:265 +#: src/Module/Install.php:251 msgid "For security reasons the password must not be empty" msgstr "Por razones de seguridad la contraseña no debe estar vacía" -#: src/Module/Install.php:268 +#: src/Module/Install.php:254 msgid "Database Name" msgstr "Nombre de la base de datos" -#: src/Module/Install.php:272 src/Module/Install.php:300 +#: src/Module/Install.php:258 src/Module/Install.php:286 msgid "Please select a default timezone for your website" msgstr "Por favor, selecciona la zona horaria predeterminada para tu web" -#: src/Module/Install.php:287 +#: src/Module/Install.php:273 msgid "Site settings" msgstr "Configuración de la página web" -#: src/Module/Install.php:295 +#: src/Module/Install.php:281 msgid "Site administrator email address" msgstr "Dirección de correo del administrador de la web" -#: src/Module/Install.php:297 +#: src/Module/Install.php:283 msgid "" "Your account email address must match this in order to use the web admin " "panel." msgstr "La dirección de correo de tu cuenta debe coincidir con esta para poder usar el panel de administración de la web." -#: src/Module/Install.php:304 +#: src/Module/Install.php:290 msgid "System Language:" msgstr "Sistema de idioma:" -#: src/Module/Install.php:306 +#: src/Module/Install.php:292 msgid "" "Set the default language for your Friendica installation interface and to " "send emails." msgstr "Seleccione el idioma por defecto para su interfaz de instalación de Friendica y para enviar correos." -#: src/Module/Install.php:318 +#: src/Module/Install.php:304 msgid "Your Friendica site database has been installed." msgstr "La base de datos de su sitio web de Friendica ha sido instalada." -#: src/Module/Install.php:328 +#: src/Module/Install.php:314 msgid "Installation finished" msgstr "Instalación completa" -#: src/Module/Install.php:348 +#: src/Module/Install.php:334 msgid "

What next

" msgstr "

¿Que sigue?

" -#: src/Module/Install.php:349 +#: src/Module/Install.php:335 msgid "" "IMPORTANT: You will need to [manually] setup a scheduled task for the " "worker." msgstr "IMPORTANTE: Debe configurar [manualmente] una Tarea Programada para eltrabajador(Worker)." -#: src/Module/Install.php:352 +#: src/Module/Install.php:338 #, php-format msgid "" "Go to your new Friendica node registration page " @@ -7775,29 +7783,29 @@ msgid "" " administrator email. This will allow you to enter the site admin panel." msgstr "Ve a la Página de Registro de tu nuevo nodo de Friendicay registrate como nuevo usuario. Recuerda utilizar el mismo correo electrónico que ingresaste como correo del administrador. Esto te permitirá ingresar al Panel de Administración del Sitio." -#: src/Module/Invite.php:57 +#: src/Module/Invite.php:43 msgid "Total invitation limit exceeded." msgstr "Límite de invitaciones excedido." -#: src/Module/Invite.php:82 +#: src/Module/Invite.php:68 #, php-format msgid "%s : Not a valid email address." msgstr "%s : No es un correo válido." -#: src/Module/Invite.php:108 +#: src/Module/Invite.php:94 msgid "Please join us on Friendica" msgstr "Únete a nosotros en Friendica" -#: src/Module/Invite.php:117 +#: src/Module/Invite.php:103 msgid "Invitation limit exceeded. Please contact your site administrator." msgstr "Límite de invitaciones sobrepasado. Contacta con el administrador del sitio." -#: src/Module/Invite.php:121 +#: src/Module/Invite.php:107 #, php-format msgid "%s : Message delivery failed." msgstr "%s : Ha fallado la entrega del mensaje." -#: src/Module/Invite.php:125 +#: src/Module/Invite.php:111 #, php-format msgid "%d message sent." msgid_plural "%d messages sent." @@ -7805,11 +7813,11 @@ msgstr[0] "%d mensaje enviado." msgstr[1] "%d mensajes enviados." msgstr[2] "%d mensajes enviados." -#: src/Module/Invite.php:143 +#: src/Module/Invite.php:129 msgid "You have no more invitations available" msgstr "No tienes más invitaciones disponibles" -#: src/Module/Invite.php:150 +#: src/Module/Invite.php:136 #, php-format msgid "" "Visit %s for a list of public sites that you can join. Friendica members on " @@ -7817,14 +7825,14 @@ msgid "" " other social networks." msgstr "Visita %s para ver una lista de servidores públicos donde puedes darte de alta. Los miembros de otros servidores de Friendica pueden conectarse entre ellos, así como con miembros de otras redes sociales diferentes." -#: src/Module/Invite.php:152 +#: src/Module/Invite.php:138 #, php-format msgid "" "To accept this invitation, please visit and register at %s or any other " "public Friendica website." msgstr "Para aceptar la invitación visita y regístrate en %s o en cualquier otro servidor público de Friendica." -#: src/Module/Invite.php:153 +#: src/Module/Invite.php:139 #, php-format msgid "" "Friendica sites all inter-connect to create a huge privacy-enhanced social " @@ -7833,236 +7841,236 @@ msgid "" "sites you can join." msgstr "Los servidores de Friendica están interconectados para crear una enorme red social centrada en la privacidad y controlada por sus miembros. También se puede conectar con muchas redes sociales tradicionales. Mira en %s para poder ver un listado de servidores alternativos de Friendica donde puedes darte de alta." -#: src/Module/Invite.php:157 +#: src/Module/Invite.php:143 msgid "" "Our apologies. This system is not currently configured to connect with other" " public sites or invite members." msgstr "Discúlpanos. Este sistema no está configurado actualmente para conectar con otros servidores públicos o invitar nuevos miembros." -#: src/Module/Invite.php:160 +#: src/Module/Invite.php:146 msgid "" "Friendica sites all inter-connect to create a huge privacy-enhanced social " "web that is owned and controlled by its members. They can also connect with " "many traditional social networks." msgstr "Los sitios de Friendica se conectan entre sí para crear una gran red social con privacidad mejorada que es propiedad y está controlada por sus miembros. También pueden conectarse con muchas redes sociales tradicionales." -#: src/Module/Invite.php:159 +#: src/Module/Invite.php:145 #, php-format msgid "To accept this invitation, please visit and register at %s." msgstr "Para aceptar esta invitación, visite y regístrese en%s, por favor." -#: src/Module/Invite.php:167 +#: src/Module/Invite.php:153 msgid "Send invitations" msgstr "Enviar invitaciones" -#: src/Module/Invite.php:168 +#: src/Module/Invite.php:154 msgid "Enter email addresses, one per line:" msgstr "Introduce las direcciones de correo, una por línea:" -#: src/Module/Invite.php:172 +#: src/Module/Invite.php:158 msgid "" "You are cordially invited to join me and other close friends on Friendica - " "and help us to create a better social web." msgstr "Estás cordialmente invitado a unirte a mi y a otros amigos en Friendica, creemos juntos una red social mejor." -#: src/Module/Invite.php:174 +#: src/Module/Invite.php:160 msgid "You will need to supply this invitation code: $invite_code" msgstr "Tienes que proporcionar el siguiente código: $invite_code" -#: src/Module/Invite.php:174 +#: src/Module/Invite.php:160 msgid "" "Once you have registered, please connect with me via my profile page at:" msgstr "Una vez registrado, por favor contacta conmigo a través de mi página de perfil en:" -#: src/Module/Invite.php:176 +#: src/Module/Invite.php:162 msgid "" "For more information about the Friendica project and why we feel it is " "important, please visit http://friendi.ca" msgstr "Para más información sobre el proyecto Friendica y por qué sentimos que es importante, visite http://friendi.ca, por favor" -#: src/Module/Item/Compose.php:94 +#: src/Module/Item/Compose.php:80 msgid "Please enter a post body." msgstr "Ingresa un contenido." -#: src/Module/Item/Compose.php:105 +#: src/Module/Item/Compose.php:91 msgid "This feature is only available with the frio theme." msgstr "Esta opción solo disponible con Tema Frio." -#: src/Module/Item/Compose.php:129 +#: src/Module/Item/Compose.php:115 msgid "Compose new personal note" msgstr "Generar nueva nota personal" -#: src/Module/Item/Compose.php:138 +#: src/Module/Item/Compose.php:124 msgid "Compose new post" msgstr "Generar nuevo artículo" -#: src/Module/Item/Compose.php:194 +#: src/Module/Item/Compose.php:180 msgid "Visibility" msgstr "Visibilidad" -#: src/Module/Item/Compose.php:210 +#: src/Module/Item/Compose.php:196 msgid "Clear the location" msgstr "Borrar ubicación" -#: src/Module/Item/Compose.php:211 +#: src/Module/Item/Compose.php:197 msgid "Location services are unavailable on your device" msgstr "Servicios de ubicación no disponibles en tu dispositivo" -#: src/Module/Item/Compose.php:212 +#: src/Module/Item/Compose.php:198 msgid "" "Location services are disabled. Please check the website's permissions on " "your device" msgstr "Servicios de ubicación no habilitados. Checa los permisos del sitio en tu dispositivo" -#: src/Module/Item/Compose.php:218 +#: src/Module/Item/Compose.php:204 msgid "" "You can make this page always open when you use the New Post button in the " "Theme Customization settings." msgstr "" -#: src/Module/Item/Feed.php:86 +#: src/Module/Item/Feed.php:72 msgid "The feed for this item is unavailable." msgstr "El hilo de este artículo no se encontró" -#: src/Module/Item/Follow.php:51 +#: src/Module/Item/Follow.php:37 msgid "Unable to follow this item." msgstr "Imposible seguir este artículo." -#: src/Module/Maintenance.php:48 src/Module/Maintenance.php:53 +#: src/Module/Maintenance.php:34 src/Module/Maintenance.php:39 msgid "System down for maintenance" msgstr "Servicio suspendido por mantenimiento" -#: src/Module/Maintenance.php:54 +#: src/Module/Maintenance.php:40 msgid "" "This Friendica node is currently in maintenance mode, either automatically " "because it is self-updating or manually by the node administrator. This " "condition should be temporary, please come back in a few minutes." msgstr "Este nodo de Friendica se encuentra actualmente en modo de mantenimiento, ya sea automáticamente porque se actualiza automáticamente o manualmente por el administrador del nodo. Esta condición debería ser temporal, vuelva en unos minutos." -#: src/Module/Manifest.php:40 +#: src/Module/Manifest.php:26 msgid "A Decentralized Social Network" msgstr "Una Red Social Descentralizada" -#: src/Module/Media/Attachment/Browser.php:58 -#: src/Module/Media/Photo/Browser.php:59 +#: src/Module/Media/Attachment/Browser.php:44 +#: src/Module/Media/Photo/Browser.php:45 msgid "You need to be logged in to access this page." msgstr "" -#: src/Module/Media/Attachment/Browser.php:74 +#: src/Module/Media/Attachment/Browser.php:60 msgid "Files" msgstr "Archivos" -#: src/Module/Media/Attachment/Browser.php:79 -#: src/Module/Media/Photo/Browser.php:90 -#: src/Module/Settings/Profile/Photo/Index.php:127 +#: src/Module/Media/Attachment/Browser.php:65 +#: src/Module/Media/Photo/Browser.php:76 +#: src/Module/Settings/Profile/Photo/Index.php:113 msgid "Upload" msgstr "Subir" -#: src/Module/Media/Attachment/Upload.php:97 +#: src/Module/Media/Attachment/Upload.php:83 msgid "Sorry, maybe your upload is bigger than the PHP configuration allows" msgstr "Disculpa, posiblemente archivo mas grande que lo permitido por PHP." -#: src/Module/Media/Attachment/Upload.php:97 +#: src/Module/Media/Attachment/Upload.php:83 msgid "Or - did you try to upload an empty file?" msgstr "O - intentó subir un archivo vacío?" -#: src/Module/Media/Attachment/Upload.php:104 +#: src/Module/Media/Attachment/Upload.php:90 #, php-format msgid "File exceeds size limit of %s" msgstr "El archivo excede Tamaño de %s" -#: src/Module/Media/Attachment/Upload.php:114 +#: src/Module/Media/Attachment/Upload.php:100 msgid "File upload failed." msgstr "Ha fallado la subida del archivo." -#: src/Module/Media/Photo/Upload.php:150 src/Module/Media/Photo/Upload.php:151 -#: src/Module/Profile/Photos.php:215 -#: src/Module/Settings/Profile/Photo/Index.php:67 +#: src/Module/Media/Photo/Upload.php:136 src/Module/Media/Photo/Upload.php:137 +#: src/Module/Profile/Photos.php:201 +#: src/Module/Settings/Profile/Photo/Index.php:53 msgid "Unable to process image." msgstr "Imposible procesar la imagen." -#: src/Module/Media/Photo/Upload.php:176 src/Module/Profile/Photos.php:235 -#: src/Module/Settings/Profile/Photo/Index.php:94 +#: src/Module/Media/Photo/Upload.php:162 src/Module/Profile/Photos.php:221 +#: src/Module/Settings/Profile/Photo/Index.php:80 msgid "Image upload failed." msgstr "Error al subir la imagen." -#: src/Module/Moderation/BaseUsers.php:72 +#: src/Module/Moderation/BaseUsers.php:59 msgid "List of all users" msgstr "Lista de todos los usuarios" -#: src/Module/Moderation/BaseUsers.php:77 +#: src/Module/Moderation/BaseUsers.php:64 msgid "Active" msgstr "Activos" -#: src/Module/Moderation/BaseUsers.php:80 +#: src/Module/Moderation/BaseUsers.php:67 msgid "List of active accounts" msgstr "Lista de Cuentas Activas" -#: src/Module/Moderation/BaseUsers.php:88 +#: src/Module/Moderation/BaseUsers.php:75 msgid "List of pending registrations" msgstr "Lista de Registros Pendientes" -#: src/Module/Moderation/BaseUsers.php:96 +#: src/Module/Moderation/BaseUsers.php:83 msgid "List of blocked users" msgstr "Lista de usuarios bloqueados" -#: src/Module/Moderation/BaseUsers.php:101 +#: src/Module/Moderation/BaseUsers.php:88 msgid "Deleted" msgstr "Borrados" -#: src/Module/Moderation/BaseUsers.php:104 +#: src/Module/Moderation/BaseUsers.php:91 msgid "List of pending user deletions" msgstr "Lista de borrados de usuario pendientes" -#: src/Module/Moderation/BaseUsers.php:119 src/Module/Settings/Account.php:482 +#: src/Module/Moderation/BaseUsers.php:108 src/Module/Settings/Account.php:473 msgid "Normal Account Page" msgstr "Página de Cuenta Normal" -#: src/Module/Moderation/BaseUsers.php:120 src/Module/Settings/Account.php:489 +#: src/Module/Moderation/BaseUsers.php:109 src/Module/Settings/Account.php:480 msgid "Soapbox Page" msgstr "Página de Tribuna" -#: src/Module/Moderation/BaseUsers.php:121 src/Module/Settings/Account.php:496 +#: src/Module/Moderation/BaseUsers.php:110 src/Module/Settings/Account.php:487 msgid "Public Group" msgstr "" -#: src/Module/Moderation/BaseUsers.php:122 src/Module/Settings/Account.php:503 +#: src/Module/Moderation/BaseUsers.php:111 src/Module/Settings/Account.php:494 msgid "Public Group - Restricted" msgstr "" -#: src/Module/Moderation/BaseUsers.php:123 src/Module/Settings/Account.php:510 +#: src/Module/Moderation/BaseUsers.php:112 src/Module/Settings/Account.php:501 msgid "Automatic Friend Page" msgstr "Página de Amistad Autómatica" -#: src/Module/Moderation/BaseUsers.php:124 +#: src/Module/Moderation/BaseUsers.php:113 msgid "Private Group" msgstr "" -#: src/Module/Moderation/BaseUsers.php:127 -#: src/Module/Moderation/Summary.php:53 src/Module/Settings/Account.php:453 +#: src/Module/Moderation/BaseUsers.php:116 +#: src/Module/Moderation/Summary.php:39 src/Module/Settings/Account.php:444 msgid "Personal Page" msgstr "Página personal" -#: src/Module/Moderation/BaseUsers.php:128 -#: src/Module/Moderation/Summary.php:54 src/Module/Settings/Account.php:460 +#: src/Module/Moderation/BaseUsers.php:117 +#: src/Module/Moderation/Summary.php:40 src/Module/Settings/Account.php:451 msgid "Organisation Page" msgstr "Página de Organización" -#: src/Module/Moderation/BaseUsers.php:129 -#: src/Module/Moderation/Summary.php:55 src/Module/Settings/Account.php:467 +#: src/Module/Moderation/BaseUsers.php:118 +#: src/Module/Moderation/Summary.php:41 src/Module/Settings/Account.php:458 msgid "News Page" msgstr "Página de Noticias" -#: src/Module/Moderation/BaseUsers.php:130 -#: src/Module/Moderation/Summary.php:56 src/Module/Settings/Account.php:474 +#: src/Module/Moderation/BaseUsers.php:119 +#: src/Module/Moderation/Summary.php:42 src/Module/Settings/Account.php:465 msgid "Community Group" msgstr "" -#: src/Module/Moderation/Blocklist/Contact.php:70 +#: src/Module/Moderation/Blocklist/Contact.php:56 msgid "You can't block a local contact, please block the user instead" msgstr "" -#: src/Module/Moderation/Blocklist/Contact.php:89 +#: src/Module/Moderation/Blocklist/Contact.php:75 #, php-format msgid "%s contact unblocked" msgid_plural "%s contacts unblocked" @@ -8070,54 +8078,54 @@ msgstr[0] "%s Contacto desbloqueado" msgstr[1] "%s Contactos desbloqueados" msgstr[2] "%s Contactos desbloqueados" -#: src/Module/Moderation/Blocklist/Contact.php:111 +#: src/Module/Moderation/Blocklist/Contact.php:97 msgid "Remote Contact Blocklist" msgstr "Lista de bloqueo de contactos remotos" -#: src/Module/Moderation/Blocklist/Contact.php:112 +#: src/Module/Moderation/Blocklist/Contact.php:98 msgid "" "This page allows you to prevent any message from a remote contact to reach " "your node." msgstr "Esta página le permite evitar que cualquier mensaje de un contacto remoto llegue a su nodo. " -#: src/Module/Moderation/Blocklist/Contact.php:113 +#: src/Module/Moderation/Blocklist/Contact.php:99 msgid "Block Remote Contact" msgstr "Bloquear Contacto Remoto" -#: src/Module/Moderation/Blocklist/Contact.php:114 -#: src/Module/Moderation/Users/Active.php:135 -#: src/Module/Moderation/Users/Blocked.php:135 -#: src/Module/Moderation/Users/Index.php:149 -#: src/Module/Moderation/Users/Pending.php:98 +#: src/Module/Moderation/Blocklist/Contact.php:100 +#: src/Module/Moderation/Users/Active.php:121 +#: src/Module/Moderation/Users/Blocked.php:121 +#: src/Module/Moderation/Users/Index.php:135 +#: src/Module/Moderation/Users/Pending.php:84 msgid "select all" msgstr "seleccionar todo" -#: src/Module/Moderation/Blocklist/Contact.php:115 +#: src/Module/Moderation/Blocklist/Contact.php:101 msgid "select none" msgstr "deseleccionar" -#: src/Module/Moderation/Blocklist/Contact.php:118 +#: src/Module/Moderation/Blocklist/Contact.php:104 msgid "No remote contact is blocked from this node." msgstr "No se bloquea ningún contacto remoto de este nodo." -#: src/Module/Moderation/Blocklist/Contact.php:120 +#: src/Module/Moderation/Blocklist/Contact.php:106 msgid "Blocked Remote Contacts" msgstr "Contactos remotos bloqueados" -#: src/Module/Moderation/Blocklist/Contact.php:121 +#: src/Module/Moderation/Blocklist/Contact.php:107 msgid "Block New Remote Contact" msgstr "Bloquear nuevo contacto remoto" -#: src/Module/Moderation/Blocklist/Contact.php:122 -#: src/Module/Moderation/Reports.php:110 +#: src/Module/Moderation/Blocklist/Contact.php:108 +#: src/Module/Moderation/Reports.php:102 msgid "Photo" msgstr "Foto" -#: src/Module/Moderation/Blocklist/Contact.php:122 +#: src/Module/Moderation/Blocklist/Contact.php:108 msgid "Reason" msgstr "Motivo" -#: src/Module/Moderation/Blocklist/Contact.php:128 +#: src/Module/Moderation/Blocklist/Contact.php:114 #, php-format msgid "%s total blocked contact" msgid_plural "%s total blocked contacts" @@ -8125,30 +8133,30 @@ msgstr[0] "%s contacto bloqueado en total" msgstr[1] "%s contactos bloqueados en total" msgstr[2] "%s contactos bloqueados en total" -#: src/Module/Moderation/Blocklist/Contact.php:131 +#: src/Module/Moderation/Blocklist/Contact.php:117 msgid "URL of the remote contact to block." msgstr "URL del contacto remoto a bloquear." -#: src/Module/Moderation/Blocklist/Contact.php:132 +#: src/Module/Moderation/Blocklist/Contact.php:118 msgid "Also purge contact" msgstr "" -#: src/Module/Moderation/Blocklist/Contact.php:132 +#: src/Module/Moderation/Blocklist/Contact.php:118 msgid "" "Removes all content related to this contact from the node. Keeps the contact" " record. This action cannot be undone." msgstr "" -#: src/Module/Moderation/Blocklist/Contact.php:133 -#: src/Module/Moderation/Blocklist/Server/Import.php:124 +#: src/Module/Moderation/Blocklist/Contact.php:119 +#: src/Module/Moderation/Blocklist/Server/Import.php:108 msgid "Block Reason" msgstr "Razón de bloqueo" -#: src/Module/Moderation/Blocklist/Server/Add.php:80 +#: src/Module/Moderation/Blocklist/Server/Add.php:66 msgid "Server domain pattern added to the blocklist." msgstr "" -#: src/Module/Moderation/Blocklist/Server/Add.php:88 +#: src/Module/Moderation/Blocklist/Server/Add.php:74 #, php-format msgid "%s server scheduled to be purged." msgid_plural "%s servers scheduled to be purged." @@ -8156,17 +8164,17 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: src/Module/Moderation/Blocklist/Server/Add.php:120 -#: src/Module/Moderation/Blocklist/Server/Import.php:117 +#: src/Module/Moderation/Blocklist/Server/Add.php:106 +#: src/Module/Moderation/Blocklist/Server/Import.php:101 msgid "← Return to the list" msgstr "" -#: src/Module/Moderation/Blocklist/Server/Add.php:122 +#: src/Module/Moderation/Blocklist/Server/Add.php:108 msgid "Block A New Server Domain Pattern" msgstr "" -#: src/Module/Moderation/Blocklist/Server/Add.php:123 -#: src/Module/Moderation/Blocklist/Server/Index.php:99 +#: src/Module/Moderation/Blocklist/Server/Add.php:109 +#: src/Module/Moderation/Blocklist/Server/Index.php:85 msgid "" "

The server domain pattern syntax is case-insensitive shell wildcard, comprising the following special characters:

\n" "
    \n" @@ -8175,30 +8183,30 @@ msgid "" "
" msgstr "" -#: src/Module/Moderation/Blocklist/Server/Add.php:128 -#: src/Module/Moderation/Blocklist/Server/Index.php:107 +#: src/Module/Moderation/Blocklist/Server/Add.php:114 +#: src/Module/Moderation/Blocklist/Server/Index.php:93 msgid "Check pattern" msgstr "" -#: src/Module/Moderation/Blocklist/Server/Add.php:129 +#: src/Module/Moderation/Blocklist/Server/Add.php:115 msgid "Matching known servers" msgstr "" -#: src/Module/Moderation/Blocklist/Server/Add.php:130 -#: src/Module/Settings/Server/Action.php:76 -#: src/Module/Settings/Server/Index.php:106 +#: src/Module/Moderation/Blocklist/Server/Add.php:116 +#: src/Module/Settings/Server/Action.php:62 +#: src/Module/Settings/Server/Index.php:92 msgid "Server Name" msgstr "" -#: src/Module/Moderation/Blocklist/Server/Add.php:131 +#: src/Module/Moderation/Blocklist/Server/Add.php:117 msgid "Server Domain" msgstr "" -#: src/Module/Moderation/Blocklist/Server/Add.php:132 +#: src/Module/Moderation/Blocklist/Server/Add.php:118 msgid "Known Contacts" msgstr "" -#: src/Module/Moderation/Blocklist/Server/Add.php:133 +#: src/Module/Moderation/Blocklist/Server/Add.php:119 #, php-format msgid "%d known server" msgid_plural "%d known servers" @@ -8206,27 +8214,27 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: src/Module/Moderation/Blocklist/Server/Add.php:134 +#: src/Module/Moderation/Blocklist/Server/Add.php:120 msgid "Add pattern to the blocklist" msgstr "" -#: src/Module/Moderation/Blocklist/Server/Add.php:136 -#: src/Module/Moderation/Blocklist/Server/Index.php:116 +#: src/Module/Moderation/Blocklist/Server/Add.php:122 +#: src/Module/Moderation/Blocklist/Server/Index.php:102 msgid "Server Domain Pattern" msgstr "Patrón de Servidor de Dominio" -#: src/Module/Moderation/Blocklist/Server/Add.php:136 -#: src/Module/Moderation/Blocklist/Server/Index.php:116 +#: src/Module/Moderation/Blocklist/Server/Add.php:122 +#: src/Module/Moderation/Blocklist/Server/Index.php:102 msgid "" "The domain pattern of the new server to add to the blocklist. Do not include" " the protocol." msgstr "" -#: src/Module/Moderation/Blocklist/Server/Add.php:137 +#: src/Module/Moderation/Blocklist/Server/Add.php:123 msgid "Purge server" msgstr "" -#: src/Module/Moderation/Blocklist/Server/Add.php:137 +#: src/Module/Moderation/Blocklist/Server/Add.php:123 msgid "" "Also purges all the locally stored content authored by the known contacts " "registered on that server. Keeps the contacts and the server records. This " @@ -8239,26 +8247,26 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: src/Module/Moderation/Blocklist/Server/Add.php:138 +#: src/Module/Moderation/Blocklist/Server/Add.php:124 msgid "Block reason" msgstr "Razón del bloqueo" -#: src/Module/Moderation/Blocklist/Server/Add.php:138 +#: src/Module/Moderation/Blocklist/Server/Add.php:124 msgid "" "The reason why you blocked this server domain pattern. This reason will be " "shown publicly in the server information page." msgstr "" -#: src/Module/Moderation/Blocklist/Server/Import.php:74 -#: src/Module/Moderation/Blocklist/Server/Import.php:83 +#: src/Module/Moderation/Blocklist/Server/Import.php:60 +#: src/Module/Moderation/Blocklist/Server/Import.php:67 msgid "Error importing pattern file" msgstr "" -#: src/Module/Moderation/Blocklist/Server/Import.php:89 +#: src/Module/Moderation/Blocklist/Server/Import.php:74 msgid "Local blocklist replaced with the provided file." msgstr "" -#: src/Module/Moderation/Blocklist/Server/Import.php:93 +#: src/Module/Moderation/Blocklist/Server/Import.php:78 #, php-format msgid "%d pattern was added to the local blocklist." msgid_plural "%d patterns were added to the local blocklist." @@ -8266,42 +8274,42 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: src/Module/Moderation/Blocklist/Server/Import.php:95 +#: src/Module/Moderation/Blocklist/Server/Import.php:80 msgid "No pattern was added to the local blocklist." msgstr "" -#: src/Module/Moderation/Blocklist/Server/Import.php:119 +#: src/Module/Moderation/Blocklist/Server/Import.php:103 msgid "Import a Server Domain Pattern Blocklist" msgstr "" -#: src/Module/Moderation/Blocklist/Server/Import.php:120 +#: src/Module/Moderation/Blocklist/Server/Import.php:104 msgid "" "

This file can be downloaded from the /friendica path of any " "Friendica server.

" msgstr "" -#: src/Module/Moderation/Blocklist/Server/Import.php:121 -#: src/Module/Moderation/Blocklist/Server/Index.php:106 +#: src/Module/Moderation/Blocklist/Server/Import.php:105 +#: src/Module/Moderation/Blocklist/Server/Index.php:92 msgid "Upload file" msgstr "" -#: src/Module/Moderation/Blocklist/Server/Import.php:122 +#: src/Module/Moderation/Blocklist/Server/Import.php:106 msgid "Patterns to import" msgstr "" -#: src/Module/Moderation/Blocklist/Server/Import.php:123 +#: src/Module/Moderation/Blocklist/Server/Import.php:107 msgid "Domain Pattern" msgstr "" -#: src/Module/Moderation/Blocklist/Server/Import.php:125 +#: src/Module/Moderation/Blocklist/Server/Import.php:109 msgid "Import Mode" msgstr "" -#: src/Module/Moderation/Blocklist/Server/Import.php:126 +#: src/Module/Moderation/Blocklist/Server/Import.php:110 msgid "Import Patterns" msgstr "" -#: src/Module/Moderation/Blocklist/Server/Import.php:127 +#: src/Module/Moderation/Blocklist/Server/Import.php:111 #, php-format msgid "%d total pattern" msgid_plural "%d total patterns" @@ -8309,233 +8317,233 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: src/Module/Moderation/Blocklist/Server/Import.php:129 -#: src/Module/Moderation/Blocklist/Server/Index.php:115 +#: src/Module/Moderation/Blocklist/Server/Import.php:113 +#: src/Module/Moderation/Blocklist/Server/Index.php:101 msgid "Server domain pattern blocklist CSV file" msgstr "" -#: src/Module/Moderation/Blocklist/Server/Import.php:130 +#: src/Module/Moderation/Blocklist/Server/Import.php:114 msgid "Append" msgstr "" -#: src/Module/Moderation/Blocklist/Server/Import.php:130 +#: src/Module/Moderation/Blocklist/Server/Import.php:114 msgid "" "Imports patterns from the file that weren't already existing in the current " "blocklist." msgstr "" -#: src/Module/Moderation/Blocklist/Server/Import.php:131 +#: src/Module/Moderation/Blocklist/Server/Import.php:115 msgid "Replace" msgstr "" -#: src/Module/Moderation/Blocklist/Server/Import.php:131 +#: src/Module/Moderation/Blocklist/Server/Import.php:115 msgid "Replaces the current blocklist by the imported patterns." msgstr "" -#: src/Module/Moderation/Blocklist/Server/Index.php:86 -#: src/Module/Moderation/Blocklist/Server/Index.php:110 -#: src/Module/Settings/Channels.php:231 +#: src/Module/Moderation/Blocklist/Server/Index.php:72 +#: src/Module/Moderation/Blocklist/Server/Index.php:96 +#: src/Module/Settings/Channels.php:217 msgid "Blocked server domain pattern" msgstr "Patrón de Servidor de Dominio Bloqueado" -#: src/Module/Moderation/Blocklist/Server/Index.php:88 +#: src/Module/Moderation/Blocklist/Server/Index.php:74 msgid "Delete server domain pattern" msgstr "Borrar Patrón de Servidor de Dominio" -#: src/Module/Moderation/Blocklist/Server/Index.php:88 +#: src/Module/Moderation/Blocklist/Server/Index.php:74 msgid "Check to delete this entry from the blocklist" msgstr "Marca para eliminar esta entrada de Lista de bloqueo" -#: src/Module/Moderation/Blocklist/Server/Index.php:96 +#: src/Module/Moderation/Blocklist/Server/Index.php:82 msgid "Server Domain Pattern Blocklist" msgstr "Lista de Bloqueo del Patrón de Servidor de Dominio" -#: src/Module/Moderation/Blocklist/Server/Index.php:97 +#: src/Module/Moderation/Blocklist/Server/Index.php:83 msgid "" "This page can be used to define a blocklist of server domain patterns from " "the federated network that are not allowed to interact with your node. For " "each domain pattern you should also provide the reason why you block it." msgstr "Esta página puede servir para definir una lista de bloqueos de patrones de Servidor de Dominios de la Red Federada que no podrán interactuar con el nodo. Por cada patrón de Dominio debes dar la razón de porqué se bloquea." -#: src/Module/Moderation/Blocklist/Server/Index.php:98 +#: src/Module/Moderation/Blocklist/Server/Index.php:84 msgid "" "The list of blocked server domain patterns will be made publically available" " on the /friendica page so that your users and " "people investigating communication problems can find the reason easily." msgstr "La lista de Patrones de Servidores de Dominio bloqueados será pública en /friendica para que tus usuarios y personas que consulten problemas de comunicación puedan encontrar fácilmente el motivo." -#: src/Module/Moderation/Blocklist/Server/Index.php:104 +#: src/Module/Moderation/Blocklist/Server/Index.php:90 msgid "Import server domain pattern blocklist" msgstr "" -#: src/Module/Moderation/Blocklist/Server/Index.php:105 +#: src/Module/Moderation/Blocklist/Server/Index.php:91 msgid "Add new entry to the blocklist" msgstr "" -#: src/Module/Moderation/Blocklist/Server/Index.php:108 +#: src/Module/Moderation/Blocklist/Server/Index.php:94 msgid "Save changes to the blocklist" msgstr "Guardar cambios en la lista de bloqueo" -#: src/Module/Moderation/Blocklist/Server/Index.php:109 +#: src/Module/Moderation/Blocklist/Server/Index.php:95 msgid "Current Entries in the Blocklist" msgstr "Entradas actuales en la lista de bloqueo" -#: src/Module/Moderation/Blocklist/Server/Index.php:112 +#: src/Module/Moderation/Blocklist/Server/Index.php:98 msgid "Delete entry from the blocklist" msgstr "" -#: src/Module/Moderation/Blocklist/Server/Index.php:113 +#: src/Module/Moderation/Blocklist/Server/Index.php:99 msgid "Delete entry from the blocklist?" msgstr "" -#: src/Module/Moderation/Item/Delete.php:50 +#: src/Module/Moderation/Item/Delete.php:36 msgid "Item marked for deletion." msgstr "Artículo marcado para eliminación." -#: src/Module/Moderation/Item/Delete.php:63 +#: src/Module/Moderation/Item/Delete.php:49 msgid "Delete this Item" msgstr "Eliminar este artículo" -#: src/Module/Moderation/Item/Delete.php:64 +#: src/Module/Moderation/Item/Delete.php:50 msgid "" "On this page you can delete an item from your node. If the item is a top " "level posting, the entire thread will be deleted." msgstr "En esta página, puede eliminar un artículo de su nodo. Si el artículo es una publicación de nivel superior, se eliminará todo el hilo." -#: src/Module/Moderation/Item/Delete.php:65 +#: src/Module/Moderation/Item/Delete.php:51 msgid "" "You need to know the GUID of the item. You can find it e.g. by looking at " "the display URL. The last part of http://example.com/display/123456 is the " "GUID, here 123456." msgstr "Usted debe conocer el GUID del artículo. Puedes encontrarlo, por ejemplo. mirando la URL visible. La última parte de http://example.com/display/123456 es el GUID, aquí 123456." -#: src/Module/Moderation/Item/Delete.php:67 +#: src/Module/Moderation/Item/Delete.php:53 msgid "GUID" msgstr "GUID" -#: src/Module/Moderation/Item/Delete.php:67 +#: src/Module/Moderation/Item/Delete.php:53 msgid "The GUID of the item you want to delete." msgstr "El GUID del artículo que quiere eliminar." -#: src/Module/Moderation/Item/Source.php:77 +#: src/Module/Moderation/Item/Source.php:69 msgid "Item Id" msgstr "Id de Artículo" -#: src/Module/Moderation/Item/Source.php:78 +#: src/Module/Moderation/Item/Source.php:70 msgid "Item URI" msgstr "Item URI" -#: src/Module/Moderation/Item/Source.php:80 +#: src/Module/Moderation/Item/Source.php:72 msgid "Terms" msgstr "Términos" -#: src/Module/Moderation/Item/Source.php:81 +#: src/Module/Moderation/Item/Source.php:73 msgid "Tag" msgstr "Etiqueta" -#: src/Module/Moderation/Item/Source.php:82 -#: src/Module/Moderation/Users/Active.php:126 -#: src/Module/Moderation/Users/Blocked.php:126 -#: src/Module/Moderation/Users/Index.php:140 +#: src/Module/Moderation/Item/Source.php:74 +#: src/Module/Moderation/Users/Active.php:112 +#: src/Module/Moderation/Users/Blocked.php:112 +#: src/Module/Moderation/Users/Index.php:126 msgid "Type" msgstr "Tipo" -#: src/Module/Moderation/Item/Source.php:83 +#: src/Module/Moderation/Item/Source.php:75 msgid "Term" msgstr "Término" -#: src/Module/Moderation/Item/Source.php:84 +#: src/Module/Moderation/Item/Source.php:76 msgid "URL" msgstr "Ruta URL" -#: src/Module/Moderation/Item/Source.php:86 +#: src/Module/Moderation/Item/Source.php:78 msgid "Implicit Mention" msgstr "Mención Implicita" -#: src/Module/Moderation/Item/Source.php:88 +#: src/Module/Moderation/Item/Source.php:80 msgid "Item not found" msgstr "Elemento no encontrado" -#: src/Module/Moderation/Item/Source.php:89 +#: src/Module/Moderation/Item/Source.php:81 msgid "No source recorded" msgstr "" -#: src/Module/Moderation/Item/Source.php:90 +#: src/Module/Moderation/Item/Source.php:82 msgid "" "Please make sure the debug.store_source config key is set in " "config/local.config.php for future items to have sources." msgstr "" -#: src/Module/Moderation/Item/Source.php:92 +#: src/Module/Moderation/Item/Source.php:84 msgid "Item Guid" msgstr "Clave Guid" -#: src/Module/Moderation/Report/Create.php:95 +#: src/Module/Moderation/Report/Create.php:81 msgid "Contact not found or their server is already blocked on this node." msgstr "" -#: src/Module/Moderation/Report/Create.php:136 +#: src/Module/Moderation/Report/Create.php:122 msgid "Please login to access this page." msgstr "" -#: src/Module/Moderation/Report/Create.php:165 -#: src/Module/Moderation/Report/Create.php:180 -#: src/Module/Moderation/Report/Create.php:208 -#: src/Module/Moderation/Report/Create.php:260 -#: src/Module/Moderation/Report/Create.php:279 +#: src/Module/Moderation/Report/Create.php:151 +#: src/Module/Moderation/Report/Create.php:166 +#: src/Module/Moderation/Report/Create.php:194 +#: src/Module/Moderation/Report/Create.php:246 +#: src/Module/Moderation/Report/Create.php:265 msgid "Create Moderation Report" msgstr "" -#: src/Module/Moderation/Report/Create.php:166 +#: src/Module/Moderation/Report/Create.php:152 msgid "Pick Contact" msgstr "" -#: src/Module/Moderation/Report/Create.php:167 +#: src/Module/Moderation/Report/Create.php:153 msgid "" "Please enter below the contact address or profile URL you would like to " "create a moderation report about." msgstr "" -#: src/Module/Moderation/Report/Create.php:171 +#: src/Module/Moderation/Report/Create.php:157 msgid "Contact address/URL" msgstr "" -#: src/Module/Moderation/Report/Create.php:181 +#: src/Module/Moderation/Report/Create.php:167 msgid "Pick Category" msgstr "" -#: src/Module/Moderation/Report/Create.php:182 +#: src/Module/Moderation/Report/Create.php:168 msgid "Please pick below the category of your report." msgstr "" -#: src/Module/Moderation/Report/Create.php:186 -#: src/Module/Moderation/Report/Create.php:311 +#: src/Module/Moderation/Report/Create.php:172 +#: src/Module/Moderation/Report/Create.php:297 msgid "Spam" msgstr "" -#: src/Module/Moderation/Report/Create.php:186 +#: src/Module/Moderation/Report/Create.php:172 msgid "" "This contact is publishing many repeated/overly long posts/replies or " "advertising their product/websites in otherwise irrelevant conversations." msgstr "" -#: src/Module/Moderation/Report/Create.php:187 -#: src/Module/Moderation/Report/Create.php:312 +#: src/Module/Moderation/Report/Create.php:173 +#: src/Module/Moderation/Report/Create.php:298 msgid "Illegal Content" msgstr "" -#: src/Module/Moderation/Report/Create.php:187 +#: src/Module/Moderation/Report/Create.php:173 msgid "" "This contact is publishing content that is considered illegal in this node's" " hosting juridiction." msgstr "" -#: src/Module/Moderation/Report/Create.php:188 -#: src/Module/Moderation/Report/Create.php:313 +#: src/Module/Moderation/Report/Create.php:174 +#: src/Module/Moderation/Report/Create.php:299 msgid "Community Safety" msgstr "" -#: src/Module/Moderation/Report/Create.php:188 +#: src/Module/Moderation/Report/Create.php:174 msgid "" "This contact aggravated you or other people, by being provocative or " "insensitive, intentionally or not. This includes disclosing people's private" @@ -8543,12 +8551,12 @@ msgid "" "replies." msgstr "" -#: src/Module/Moderation/Report/Create.php:189 -#: src/Module/Moderation/Report/Create.php:314 +#: src/Module/Moderation/Report/Create.php:175 +#: src/Module/Moderation/Report/Create.php:300 msgid "Unwanted Content/Behavior" msgstr "" -#: src/Module/Moderation/Report/Create.php:189 +#: src/Module/Moderation/Report/Create.php:175 msgid "" "This contact has repeatedly published content irrelevant to the node's theme" " or is openly criticizing the node's administration/moderation without " @@ -8556,89 +8564,89 @@ msgid "" "nitpicking on a sensitive topic." msgstr "" -#: src/Module/Moderation/Report/Create.php:190 -#: src/Module/Moderation/Report/Create.php:315 +#: src/Module/Moderation/Report/Create.php:176 +#: src/Module/Moderation/Report/Create.php:301 msgid "Rules Violation" msgstr "" -#: src/Module/Moderation/Report/Create.php:190 +#: src/Module/Moderation/Report/Create.php:176 msgid "" "This contact violated one or more rules of this node. You will be able to " "pick which one(s) in the next step." msgstr "" -#: src/Module/Moderation/Report/Create.php:191 +#: src/Module/Moderation/Report/Create.php:177 msgid "" "Please elaborate below why you submitted this report. The more details you " "provide, the better your report can be handled." msgstr "" -#: src/Module/Moderation/Report/Create.php:193 +#: src/Module/Moderation/Report/Create.php:179 msgid "Additional Information" msgstr "" -#: src/Module/Moderation/Report/Create.php:193 +#: src/Module/Moderation/Report/Create.php:179 msgid "" "Please provide any additional information relevant to this particular " "report. You will be able to attach posts by this contact in the next step, " "but any context is welcome." msgstr "" -#: src/Module/Moderation/Report/Create.php:209 +#: src/Module/Moderation/Report/Create.php:195 msgid "Pick Rules" msgstr "" -#: src/Module/Moderation/Report/Create.php:210 +#: src/Module/Moderation/Report/Create.php:196 msgid "Please pick below the node rules you believe this contact violated." msgstr "" -#: src/Module/Moderation/Report/Create.php:261 +#: src/Module/Moderation/Report/Create.php:247 msgid "Pick Posts" msgstr "" -#: src/Module/Moderation/Report/Create.php:262 +#: src/Module/Moderation/Report/Create.php:248 msgid "Please optionally pick posts to attach to your report." msgstr "" -#: src/Module/Moderation/Report/Create.php:281 +#: src/Module/Moderation/Report/Create.php:267 msgid "Submit Report" msgstr "" -#: src/Module/Moderation/Report/Create.php:282 +#: src/Module/Moderation/Report/Create.php:268 msgid "Further Action" msgstr "" -#: src/Module/Moderation/Report/Create.php:283 +#: src/Module/Moderation/Report/Create.php:269 msgid "" "You can also perform one of the following action on the contact you " "reported:" msgstr "" -#: src/Module/Moderation/Report/Create.php:291 +#: src/Module/Moderation/Report/Create.php:277 msgid "Nothing" msgstr "" -#: src/Module/Moderation/Report/Create.php:292 +#: src/Module/Moderation/Report/Create.php:278 msgid "Collapse contact" msgstr "" -#: src/Module/Moderation/Report/Create.php:292 +#: src/Module/Moderation/Report/Create.php:278 msgid "" "Their posts and replies will keep appearing in your Network page but their " "content will be collapsed by default." msgstr "" -#: src/Module/Moderation/Report/Create.php:293 +#: src/Module/Moderation/Report/Create.php:279 msgid "" "Their posts won't appear in your Network page anymore, but their replies can" " appear in forum threads. They still can follow you." msgstr "" -#: src/Module/Moderation/Report/Create.php:294 +#: src/Module/Moderation/Report/Create.php:280 msgid "Block contact" msgstr "" -#: src/Module/Moderation/Report/Create.php:294 +#: src/Module/Moderation/Report/Create.php:280 msgid "" "Their posts won't appear in your Network page anymore, but their replies can" " appear in forum threads, with their content collapsed by default. They " @@ -8646,51 +8654,51 @@ msgid "" "means." msgstr "" -#: src/Module/Moderation/Report/Create.php:297 +#: src/Module/Moderation/Report/Create.php:283 msgid "Forward report" msgstr "" -#: src/Module/Moderation/Report/Create.php:297 +#: src/Module/Moderation/Report/Create.php:283 msgid "Would you ike to forward this report to the remote server?" msgstr "" -#: src/Module/Moderation/Report/Create.php:330 +#: src/Module/Moderation/Report/Create.php:316 msgid "1. Pick a contact" msgstr "" -#: src/Module/Moderation/Report/Create.php:331 +#: src/Module/Moderation/Report/Create.php:317 msgid "2. Pick a category" msgstr "" -#: src/Module/Moderation/Report/Create.php:332 +#: src/Module/Moderation/Report/Create.php:318 msgid "2a. Pick rules" msgstr "" -#: src/Module/Moderation/Report/Create.php:333 +#: src/Module/Moderation/Report/Create.php:319 msgid "2b. Add comment" msgstr "" -#: src/Module/Moderation/Report/Create.php:334 +#: src/Module/Moderation/Report/Create.php:320 msgid "3. Pick posts" msgstr "" -#: src/Module/Moderation/Reports.php:105 +#: src/Module/Moderation/Reports.php:97 msgid "List of reports" msgstr "" -#: src/Module/Moderation/Reports.php:106 +#: src/Module/Moderation/Reports.php:98 msgid "This page display reports created by our or remote users." msgstr "" -#: src/Module/Moderation/Reports.php:107 +#: src/Module/Moderation/Reports.php:99 msgid "No report exists at this node." msgstr "" -#: src/Module/Moderation/Reports.php:110 +#: src/Module/Moderation/Reports.php:102 msgid "Category" msgstr "" -#: src/Module/Moderation/Reports.php:114 +#: src/Module/Moderation/Reports.php:106 #, php-format msgid "%s total report" msgid_plural "%s total reports" @@ -8698,24 +8706,24 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: src/Module/Moderation/Reports.php:117 +#: src/Module/Moderation/Reports.php:109 msgid "URL of the reported contact." msgstr "" -#: src/Module/Moderation/Summary.php:57 src/Module/Settings/Account.php:431 +#: src/Module/Moderation/Summary.php:43 src/Module/Settings/Account.php:422 msgid "Channel Relay" msgstr "" -#: src/Module/Moderation/Summary.php:77 +#: src/Module/Moderation/Summary.php:63 msgid "Registered users" msgstr "Usuarios registrados" -#: src/Module/Moderation/Summary.php:79 +#: src/Module/Moderation/Summary.php:65 msgid "Pending registrations" msgstr "Pendientes de registro" -#: src/Module/Moderation/Users/Active.php:43 -#: src/Module/Moderation/Users/Index.php:43 +#: src/Module/Moderation/Users/Active.php:29 +#: src/Module/Moderation/Users/Index.php:29 #, php-format msgid "%s user blocked" msgid_plural "%s users blocked" @@ -8723,18 +8731,18 @@ msgstr[0] "%s usuario bloqueado" msgstr[1] "%s usuarios bloqueados" msgstr[2] "%s usuarios bloqueados" -#: src/Module/Moderation/Users/Active.php:51 -#: src/Module/Moderation/Users/Active.php:85 -#: src/Module/Moderation/Users/Blocked.php:51 -#: src/Module/Moderation/Users/Blocked.php:85 -#: src/Module/Moderation/Users/Index.php:58 -#: src/Module/Moderation/Users/Index.php:92 +#: src/Module/Moderation/Users/Active.php:37 +#: src/Module/Moderation/Users/Active.php:71 +#: src/Module/Moderation/Users/Blocked.php:37 +#: src/Module/Moderation/Users/Blocked.php:71 +#: src/Module/Moderation/Users/Index.php:44 +#: src/Module/Moderation/Users/Index.php:78 msgid "You can't remove yourself" msgstr "No puedes borrar tu usuario" -#: src/Module/Moderation/Users/Active.php:55 -#: src/Module/Moderation/Users/Blocked.php:55 -#: src/Module/Moderation/Users/Index.php:62 +#: src/Module/Moderation/Users/Active.php:41 +#: src/Module/Moderation/Users/Blocked.php:41 +#: src/Module/Moderation/Users/Index.php:48 #, php-format msgid "%s user deleted" msgid_plural "%s users deleted" @@ -8742,88 +8750,88 @@ msgstr[0] "%s usuario eliminado" msgstr[1] "%s usuarios eliminados" msgstr[2] "%s usuarios eliminados" -#: src/Module/Moderation/Users/Active.php:83 -#: src/Module/Moderation/Users/Blocked.php:83 -#: src/Module/Moderation/Users/Index.php:90 +#: src/Module/Moderation/Users/Active.php:69 +#: src/Module/Moderation/Users/Blocked.php:69 +#: src/Module/Moderation/Users/Index.php:76 #, php-format msgid "User \"%s\" deleted" msgstr "Usuario \"%s\" borrado" -#: src/Module/Moderation/Users/Active.php:93 -#: src/Module/Moderation/Users/Index.php:100 +#: src/Module/Moderation/Users/Active.php:79 +#: src/Module/Moderation/Users/Index.php:86 #, php-format msgid "User \"%s\" blocked" msgstr "Usuario \"%s\" bloqueado" -#: src/Module/Moderation/Users/Active.php:126 -#: src/Module/Moderation/Users/Blocked.php:126 -#: src/Module/Moderation/Users/Deleted.php:83 -#: src/Module/Moderation/Users/Index.php:140 -#: src/Module/Moderation/Users/Index.php:160 +#: src/Module/Moderation/Users/Active.php:112 +#: src/Module/Moderation/Users/Blocked.php:112 +#: src/Module/Moderation/Users/Deleted.php:69 +#: src/Module/Moderation/Users/Index.php:126 +#: src/Module/Moderation/Users/Index.php:146 msgid "Register date" msgstr "Fecha de registro" -#: src/Module/Moderation/Users/Active.php:126 -#: src/Module/Moderation/Users/Blocked.php:126 -#: src/Module/Moderation/Users/Deleted.php:83 -#: src/Module/Moderation/Users/Index.php:140 -#: src/Module/Moderation/Users/Index.php:160 +#: src/Module/Moderation/Users/Active.php:112 +#: src/Module/Moderation/Users/Blocked.php:112 +#: src/Module/Moderation/Users/Deleted.php:69 +#: src/Module/Moderation/Users/Index.php:126 +#: src/Module/Moderation/Users/Index.php:146 msgid "Last login" msgstr "Último acceso" -#: src/Module/Moderation/Users/Active.php:126 -#: src/Module/Moderation/Users/Blocked.php:126 -#: src/Module/Moderation/Users/Deleted.php:83 -#: src/Module/Moderation/Users/Index.php:140 -#: src/Module/Moderation/Users/Index.php:160 +#: src/Module/Moderation/Users/Active.php:112 +#: src/Module/Moderation/Users/Blocked.php:112 +#: src/Module/Moderation/Users/Deleted.php:69 +#: src/Module/Moderation/Users/Index.php:126 +#: src/Module/Moderation/Users/Index.php:146 msgid "Last public item" msgstr "Último artículo público" -#: src/Module/Moderation/Users/Active.php:134 +#: src/Module/Moderation/Users/Active.php:120 msgid "Active Accounts" msgstr "Cuentas Activas" -#: src/Module/Moderation/Users/Active.php:138 -#: src/Module/Moderation/Users/Blocked.php:137 -#: src/Module/Moderation/Users/Index.php:153 +#: src/Module/Moderation/Users/Active.php:124 +#: src/Module/Moderation/Users/Blocked.php:123 +#: src/Module/Moderation/Users/Index.php:139 msgid "User blocked" msgstr "Usuario bloqueado" -#: src/Module/Moderation/Users/Active.php:139 -#: src/Module/Moderation/Users/Blocked.php:139 -#: src/Module/Moderation/Users/Index.php:155 +#: src/Module/Moderation/Users/Active.php:125 +#: src/Module/Moderation/Users/Blocked.php:125 +#: src/Module/Moderation/Users/Index.php:141 msgid "Site admin" msgstr "Administrador del Sitio" -#: src/Module/Moderation/Users/Active.php:140 -#: src/Module/Moderation/Users/Blocked.php:140 -#: src/Module/Moderation/Users/Index.php:156 +#: src/Module/Moderation/Users/Active.php:126 +#: src/Module/Moderation/Users/Blocked.php:126 +#: src/Module/Moderation/Users/Index.php:142 msgid "Account expired" msgstr "Cuenta caducada" -#: src/Module/Moderation/Users/Active.php:141 -#: src/Module/Moderation/Users/Index.php:159 +#: src/Module/Moderation/Users/Active.php:127 +#: src/Module/Moderation/Users/Index.php:145 msgid "Create a new user" msgstr "Crear nuevo usuario" -#: src/Module/Moderation/Users/Active.php:147 -#: src/Module/Moderation/Users/Blocked.php:146 -#: src/Module/Moderation/Users/Index.php:165 +#: src/Module/Moderation/Users/Active.php:133 +#: src/Module/Moderation/Users/Blocked.php:132 +#: src/Module/Moderation/Users/Index.php:151 msgid "" "Selected users will be deleted!\\n\\nEverything these users had posted on " "this site will be permanently deleted!\\n\\nAre you sure?" msgstr "¡Los usuarios seleccionados serán eliminados!\\n\\n¡Todo lo que hayan publicado en este sitio se borrará para siempre!\\n\\n¿Estás seguro?" -#: src/Module/Moderation/Users/Active.php:148 -#: src/Module/Moderation/Users/Blocked.php:147 -#: src/Module/Moderation/Users/Index.php:166 +#: src/Module/Moderation/Users/Active.php:134 +#: src/Module/Moderation/Users/Blocked.php:133 +#: src/Module/Moderation/Users/Index.php:152 msgid "" "The user {0} will be deleted!\\n\\nEverything this user has posted on this " "site will be permanently deleted!\\n\\nAre you sure?" msgstr "¡El usuario {0} será eliminado!\\n\\n¡Todo lo que haya publicado en este sitio se borrará para siempre!\\n\\n¿Estás seguro?" -#: src/Module/Moderation/Users/Blocked.php:43 -#: src/Module/Moderation/Users/Index.php:50 +#: src/Module/Moderation/Users/Blocked.php:29 +#: src/Module/Moderation/Users/Index.php:36 #, php-format msgid "%s user unblocked" msgid_plural "%s users unblocked" @@ -8831,54 +8839,54 @@ msgstr[0] "%s usuario desbloqueado" msgstr[1] "%s usuarios desbloqueados" msgstr[2] "%s usuarios desbloqueados" -#: src/Module/Moderation/Users/Blocked.php:92 -#: src/Module/Moderation/Users/Index.php:106 +#: src/Module/Moderation/Users/Blocked.php:78 +#: src/Module/Moderation/Users/Index.php:92 #, php-format msgid "User \"%s\" unblocked" msgstr "Usuario \"%s\" desbloqueado" -#: src/Module/Moderation/Users/Blocked.php:134 +#: src/Module/Moderation/Users/Blocked.php:120 msgid "Blocked Users" msgstr "Usuarios bloqueados" -#: src/Module/Moderation/Users/Create.php:62 +#: src/Module/Moderation/Users/Create.php:48 msgid "New User" msgstr "Nuevo usuario" -#: src/Module/Moderation/Users/Create.php:63 +#: src/Module/Moderation/Users/Create.php:49 msgid "Add User" msgstr "Agregar usuario" -#: src/Module/Moderation/Users/Create.php:70 +#: src/Module/Moderation/Users/Create.php:56 msgid "Name of the new user." msgstr "Nombre del nuevo usuario" -#: src/Module/Moderation/Users/Create.php:71 +#: src/Module/Moderation/Users/Create.php:57 msgid "Nickname" msgstr "Apodo" -#: src/Module/Moderation/Users/Create.php:71 +#: src/Module/Moderation/Users/Create.php:57 msgid "Nickname of the new user." msgstr "Apodo del nuevo perfil." -#: src/Module/Moderation/Users/Create.php:72 +#: src/Module/Moderation/Users/Create.php:58 msgid "Email address of the new user." msgstr "Dirección de correo del nuevo perfil." -#: src/Module/Moderation/Users/Deleted.php:81 +#: src/Module/Moderation/Users/Deleted.php:67 msgid "Users awaiting permanent deletion" msgstr "Usuarios en espera de borrado permanente" -#: src/Module/Moderation/Users/Deleted.php:83 -#: src/Module/Moderation/Users/Index.php:160 +#: src/Module/Moderation/Users/Deleted.php:69 +#: src/Module/Moderation/Users/Index.php:146 msgid "Permanent deletion" msgstr "Borrado Permanente" -#: src/Module/Moderation/Users/Index.php:150 +#: src/Module/Moderation/Users/Index.php:136 msgid "User waiting for permanent deletion" msgstr "Usuario esperando anulación permanente." -#: src/Module/Moderation/Users/Pending.php:44 +#: src/Module/Moderation/Users/Pending.php:30 #, php-format msgid "%s user approved" msgid_plural "%s users approved" @@ -8886,7 +8894,7 @@ msgstr[0] "%s usuario aprobado" msgstr[1] "%s usuarios aprobados" msgstr[2] "%s usuarios aprobados" -#: src/Module/Moderation/Users/Pending.php:51 +#: src/Module/Moderation/Users/Pending.php:37 #, php-format msgid "%s registration revoked" msgid_plural "%s registrations revoked" @@ -8894,420 +8902,406 @@ msgstr[0] "%s registro revocado" msgstr[1] "%s registros revocados" msgstr[2] "%s registros revocados" -#: src/Module/Moderation/Users/Pending.php:76 +#: src/Module/Moderation/Users/Pending.php:62 msgid "Account approved." msgstr "Cuenta aprobada." -#: src/Module/Moderation/Users/Pending.php:82 +#: src/Module/Moderation/Users/Pending.php:68 msgid "Registration revoked" msgstr "Registro revocado" -#: src/Module/Moderation/Users/Pending.php:97 +#: src/Module/Moderation/Users/Pending.php:83 msgid "User registrations awaiting review" msgstr "Registro de usuarios en espera de revisión" -#: src/Module/Moderation/Users/Pending.php:99 +#: src/Module/Moderation/Users/Pending.php:85 msgid "Request date" msgstr "Solicitud de fecha" -#: src/Module/Moderation/Users/Pending.php:100 +#: src/Module/Moderation/Users/Pending.php:86 msgid "No registrations." msgstr "Sin registros." -#: src/Module/Moderation/Users/Pending.php:101 +#: src/Module/Moderation/Users/Pending.php:87 msgid "Note from the user" msgstr "Nota para el usuario" -#: src/Module/Moderation/Users/Pending.php:103 +#: src/Module/Moderation/Users/Pending.php:89 msgid "Deny" msgstr "Denegado" -#: src/Module/Notifications/Introductions.php:99 +#: src/Module/Notifications/Introductions.php:91 msgid "Show Ignored Requests" msgstr "Mostrar peticiones ignoradas" -#: src/Module/Notifications/Introductions.php:99 +#: src/Module/Notifications/Introductions.php:91 msgid "Hide Ignored Requests" msgstr "Ocultar peticiones ignoradas" -#: src/Module/Notifications/Introductions.php:115 -#: src/Module/Notifications/Introductions.php:178 +#: src/Module/Notifications/Introductions.php:107 +#: src/Module/Notifications/Introductions.php:170 msgid "Notification type:" msgstr "Tipo de Notificación:" -#: src/Module/Notifications/Introductions.php:118 +#: src/Module/Notifications/Introductions.php:110 msgid "Suggested by:" msgstr "Sugerido por:" -#: src/Module/Notifications/Introductions.php:143 +#: src/Module/Notifications/Introductions.php:135 msgid "Claims to be known to you: " msgstr "Dice conocerte: " -#: src/Module/Notifications/Introductions.php:152 +#: src/Module/Notifications/Introductions.php:144 msgid "Shall your connection be bidirectional or not?" msgstr "¿Debe la conexión ser bidireccional o no?" -#: src/Module/Notifications/Introductions.php:153 +#: src/Module/Notifications/Introductions.php:145 #, php-format msgid "" "Accepting %s as a friend allows %s to subscribe to your posts, and you will " "also receive updates from them in your news feed." msgstr "Aceptar a %s como amigo le permite a %s suscribirse a sus publicaciones, y usted también recibirá actualizaciones de ellos en sus noticias." -#: src/Module/Notifications/Introductions.php:154 +#: src/Module/Notifications/Introductions.php:146 #, php-format msgid "" "Accepting %s as a subscriber allows them to subscribe to your posts, but you" " will not receive updates from them in your news feed." msgstr "Aceptar a %s como suscriptor les permite suscribirse a sus publicaciones, pero usted no recibirá actualizaciones de ellos en sus noticias." -#: src/Module/Notifications/Introductions.php:156 +#: src/Module/Notifications/Introductions.php:148 msgid "Friend" msgstr "Amigo" -#: src/Module/Notifications/Introductions.php:157 +#: src/Module/Notifications/Introductions.php:149 msgid "Subscriber" msgstr "Suscriptor" -#: src/Module/Notifications/Introductions.php:216 +#: src/Module/Notifications/Introductions.php:208 msgid "No introductions." msgstr "Sin presentaciones." -#: src/Module/Notifications/Introductions.php:217 -#: src/Module/Notifications/Notifications.php:135 +#: src/Module/Notifications/Introductions.php:209 +#: src/Module/Notifications/Notifications.php:127 #, php-format msgid "No more %s notifications." msgstr "No más notificaciones de %s." -#: src/Module/Notifications/Notification.php:135 +#: src/Module/Notifications/Notification.php:121 msgid "You must be logged in to show this page." msgstr "Debes ingresar para ver esa pagina." -#: src/Module/Notifications/Notifications.php:66 +#: src/Module/Notifications/Notifications.php:52 msgid "Network Notifications" msgstr "Notificaciones de Red" -#: src/Module/Notifications/Notifications.php:72 +#: src/Module/Notifications/Notifications.php:58 msgid "System Notifications" msgstr "Notificaciones del sistema" -#: src/Module/Notifications/Notifications.php:78 +#: src/Module/Notifications/Notifications.php:64 msgid "Personal Notifications" msgstr "Notificaciones personales" -#: src/Module/Notifications/Notifications.php:84 +#: src/Module/Notifications/Notifications.php:70 msgid "Home Notifications" msgstr "Notificaciones de Inicio" -#: src/Module/Notifications/Notifications.php:140 +#: src/Module/Notifications/Notifications.php:132 msgid "Show unread" msgstr "Mostrar no leído" -#: src/Module/Notifications/Ping.php:220 +#: src/Module/Notifications/Ping.php:206 msgid "{0} requested registration" msgstr "{0} solicita registro" -#: src/Module/Notifications/Ping.php:229 +#: src/Module/Notifications/Ping.php:215 #, php-format msgid "{0} and %d others requested registration" msgstr "{0} y %d otros solicitaron registro" -#: src/Module/OAuth/Acknowledge.php:51 +#: src/Module/OAuth/Acknowledge.php:37 msgid "Authorize application connection" msgstr "Autorizar la conexión de la aplicación" -#: src/Module/OAuth/Acknowledge.php:53 +#: src/Module/OAuth/Acknowledge.php:39 msgid "" "Do you want to authorize this application to access your posts and contacts," " and/or create new posts for you?" msgstr "¿Quieres autorizar a esta aplicación el acceso a tus mensajes y contactos, y/o crear nuevas publicaciones para ti?" -#: src/Module/OAuth/Authorize.php:54 +#: src/Module/OAuth/Authorize.php:40 msgid "Unsupported or missing response type" msgstr "" -#: src/Module/OAuth/Authorize.php:59 src/Module/OAuth/Token.php:75 +#: src/Module/OAuth/Authorize.php:45 src/Module/OAuth/Token.php:61 msgid "Incomplete request data" msgstr "" -#: src/Module/OAuth/Authorize.php:106 +#: src/Module/OAuth/Authorize.php:92 #, php-format msgid "" "Please copy the following authentication code into your application and " "close this window: %s" msgstr "" -#: src/Module/OAuth/Token.php:80 +#: src/Module/OAuth/Token.php:66 msgid "Invalid data or unknown client" msgstr "" -#: src/Module/OAuth/Token.php:105 +#: src/Module/OAuth/Token.php:91 msgid "Unsupported or missing grant type" msgstr "" -#: src/Module/OStatus/Repair.php:83 -msgid "Resubscribing to OStatus contacts" -msgstr "Resubscribir a contactos de OStatus" - -#: src/Module/OStatus/Repair.php:84 src/Module/OStatus/Subscribe.php:160 -msgid "Keep this window open until done." -msgstr "Manténer la ventana abierta hasta que finalice." - -#: src/Module/OStatus/Repair.php:85 -msgid "✔ Done" -msgstr "" - -#: src/Module/OStatus/Repair.php:86 -msgid "No OStatus contacts to resubscribe to." -msgstr "" - -#: src/Module/OStatus/Subscribe.php:72 +#: src/Module/OStatus/Subscribe.php:58 msgid "Subscribing to contacts" msgstr "" -#: src/Module/OStatus/Subscribe.php:81 +#: src/Module/OStatus/Subscribe.php:67 msgid "No contact provided." msgstr "No se suministra contacto." -#: src/Module/OStatus/Subscribe.php:87 +#: src/Module/OStatus/Subscribe.php:73 msgid "Couldn't fetch information for contact." msgstr "No se encuentra la información del contacto." -#: src/Module/OStatus/Subscribe.php:98 +#: src/Module/OStatus/Subscribe.php:84 msgid "Couldn't fetch friends for contact." msgstr "No se encuentran datos de amigos de contacto." -#: src/Module/OStatus/Subscribe.php:104 src/Module/OStatus/Subscribe.php:115 +#: src/Module/OStatus/Subscribe.php:90 src/Module/OStatus/Subscribe.php:101 msgid "Couldn't fetch following contacts." msgstr "" -#: src/Module/OStatus/Subscribe.php:110 +#: src/Module/OStatus/Subscribe.php:96 msgid "Couldn't fetch remote profile." msgstr "" -#: src/Module/OStatus/Subscribe.php:120 +#: src/Module/OStatus/Subscribe.php:106 msgid "Unsupported network" msgstr "" -#: src/Module/OStatus/Subscribe.php:136 +#: src/Module/OStatus/Subscribe.php:122 msgid "Done" msgstr "Hecho" -#: src/Module/OStatus/Subscribe.php:150 +#: src/Module/OStatus/Subscribe.php:136 msgid "success" msgstr "éxito!" -#: src/Module/OStatus/Subscribe.php:152 +#: src/Module/OStatus/Subscribe.php:138 msgid "failed" msgstr "fallido" -#: src/Module/OStatus/Subscribe.php:155 +#: src/Module/OStatus/Subscribe.php:141 msgid "ignored" msgstr "ignorado" -#: src/Module/Photo.php:124 +#: src/Module/OStatus/Subscribe.php:146 +msgid "Keep this window open until done." +msgstr "Manténer la ventana abierta hasta que finalice." + +#: src/Module/Photo.php:108 msgid "The Photo is not available." msgstr "" -#: src/Module/Photo.php:149 +#: src/Module/Photo.php:133 #, php-format msgid "The Photo with id %s is not available." msgstr "La foto con id %s no esta disponible." -#: src/Module/Photo.php:190 +#: src/Module/Photo.php:174 #, php-format msgid "Invalid external resource with url %s." msgstr "" -#: src/Module/Photo.php:192 +#: src/Module/Photo.php:176 #, php-format msgid "Invalid photo with id %s." msgstr "Foto no válida de Id %s." -#: src/Module/Post/Edit.php:82 src/Module/Post/Edit.php:96 +#: src/Module/Post/Edit.php:68 src/Module/Post/Edit.php:82 msgid "Post not found." msgstr "" -#: src/Module/Post/Edit.php:102 +#: src/Module/Post/Edit.php:88 msgid "Edit post" msgstr "Editar publicación" -#: src/Module/Post/Edit.php:136 +#: src/Module/Post/Edit.php:122 msgid "web link" msgstr "enlace web" -#: src/Module/Post/Edit.php:137 +#: src/Module/Post/Edit.php:123 msgid "Insert video link" msgstr "Insertar enlace del vídeo" -#: src/Module/Post/Edit.php:138 +#: src/Module/Post/Edit.php:124 msgid "video link" msgstr "enlace de video" -#: src/Module/Post/Edit.php:139 +#: src/Module/Post/Edit.php:125 msgid "Insert audio link" msgstr "Insertar vínculo del audio" -#: src/Module/Post/Edit.php:140 +#: src/Module/Post/Edit.php:126 msgid "audio link" msgstr "enlace de audio" -#: src/Module/Post/Tag/Remove.php:106 +#: src/Module/Post/Tag/Remove.php:92 msgid "Remove Item Tag" msgstr "Eliminar etiqueta" -#: src/Module/Post/Tag/Remove.php:107 +#: src/Module/Post/Tag/Remove.php:93 msgid "Select a tag to remove: " msgstr "Selecciona etiqueta a eliminar: " -#: src/Module/Post/Tag/Remove.php:108 -#: src/Module/Settings/TwoFactor/Trusted.php:147 +#: src/Module/Post/Tag/Remove.php:94 +#: src/Module/Settings/TwoFactor/Trusted.php:133 msgid "Remove" msgstr "Eliminar" -#: src/Module/Privacy/PermissionTooltip.php:71 +#: src/Module/Privacy/PermissionTooltip.php:57 #, php-format msgid "Wrong type \"%s\", expected one of: %s" msgstr "Tipo erróneo \"%s\", se esperaba uno: %s" -#: src/Module/Privacy/PermissionTooltip.php:101 +#: src/Module/Privacy/PermissionTooltip.php:87 msgid "Model not found" msgstr "Modelo no encontrado" -#: src/Module/Privacy/PermissionTooltip.php:118 +#: src/Module/Privacy/PermissionTooltip.php:104 msgid "Unlisted" msgstr "" -#: src/Module/Privacy/PermissionTooltip.php:124 +#: src/Module/Privacy/PermissionTooltip.php:110 msgid "Remote privacy information not available." msgstr "Privacidad de la información remota no disponible." -#: src/Module/Privacy/PermissionTooltip.php:131 +#: src/Module/Privacy/PermissionTooltip.php:117 msgid "Visible to:" msgstr "Visible para:" -#: src/Module/Privacy/PermissionTooltip.php:133 +#: src/Module/Privacy/PermissionTooltip.php:119 msgid "CC:" msgstr "" -#: src/Module/Privacy/PermissionTooltip.php:134 +#: src/Module/Privacy/PermissionTooltip.php:120 msgid "BCC:" msgstr "" -#: src/Module/Privacy/PermissionTooltip.php:135 +#: src/Module/Privacy/PermissionTooltip.php:121 msgid "Audience:" msgstr "" -#: src/Module/Privacy/PermissionTooltip.php:136 +#: src/Module/Privacy/PermissionTooltip.php:122 msgid "Attributed To:" msgstr "" -#: src/Module/Privacy/PermissionTooltip.php:234 +#: src/Module/Privacy/PermissionTooltip.php:220 #, php-format msgid "Collection (%s)" msgstr "" -#: src/Module/Privacy/PermissionTooltip.php:238 +#: src/Module/Privacy/PermissionTooltip.php:224 #, php-format msgid "Followers (%s)" msgstr "" -#: src/Module/Privacy/PermissionTooltip.php:255 +#: src/Module/Privacy/PermissionTooltip.php:241 #, php-format msgid "%d more" msgstr "" -#: src/Module/Profile/Contacts.php:159 +#: src/Module/Profile/Contacts.php:145 msgid "No contacts." msgstr "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:1095 -#: src/Protocol/OStatus.php:1011 -#, 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:1099 src/Protocol/OStatus.php:1016 +#: src/Module/Profile/Conversations.php:92 src/Module/Profile/Profile.php:339 +#: src/Protocol/Feed.php:1097 #, 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:1102 src/Protocol/OStatus.php:1020 +#: src/Module/Profile/Conversations.php:93 src/Module/Profile/Profile.php:340 +#: src/Protocol/Feed.php:1100 #, 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:192 -#: src/Module/Settings/Profile/Photo/Index.php:58 +#: src/Module/Profile/Conversations.php:94 src/Module/Profile/Profile.php:341 +#: src/Protocol/Feed.php:1093 +#, php-format +msgid "%s's timeline" +msgstr "Estado de %s" + +#: src/Module/Profile/Photos.php:150 src/Module/Profile/Photos.php:153 +#: src/Module/Profile/Photos.php:178 +#: src/Module/Settings/Profile/Photo/Index.php:44 #, php-format msgid "Image exceeds size limit of %s" msgstr "Imagen excede el tamaño de %s" -#: src/Module/Profile/Photos.php:170 +#: src/Module/Profile/Photos.php:156 msgid "Image upload didn't complete, please try again" msgstr "Subida de imagen no completa, vuelve a intentar" -#: src/Module/Profile/Photos.php:173 +#: src/Module/Profile/Photos.php:159 msgid "Image file is missing" msgstr "Falta el archivo de imagen" -#: src/Module/Profile/Photos.php:178 +#: src/Module/Profile/Photos.php:164 msgid "" "Server can't accept new file upload at this time, please contact your " "administrator" msgstr "El servidor no puede aceptar la carga de archivos nuevos en este momento, comuníquese con el Administrador" -#: src/Module/Profile/Photos.php:200 +#: src/Module/Profile/Photos.php:186 msgid "Image file is empty." msgstr "El archivo de imagen está vacío." -#: src/Module/Profile/Photos.php:352 +#: src/Module/Profile/Photos.php:338 msgid "View Album" msgstr "Ver Álbum" -#: src/Module/Profile/Profile.php:112 src/Module/Profile/Restricted.php:50 +#: src/Module/Profile/Profile.php:100 src/Module/Profile/Restricted.php:36 msgid "Profile not found." msgstr "Perfil no encontrado." -#: src/Module/Profile/Profile.php:158 +#: src/Module/Profile/Profile.php:146 #, php-format msgid "" "You're currently viewing your profile as %s Cancel" msgstr "Actualmente estás viendo tu perfil como %s Cancelar" -#: src/Module/Profile/Profile.php:167 +#: src/Module/Profile/Profile.php:155 msgid "Full Name:" msgstr "Nombre Completo:" -#: src/Module/Profile/Profile.php:172 +#: src/Module/Profile/Profile.php:160 msgid "Member since:" msgstr "Miembro desde:" -#: src/Module/Profile/Profile.php:178 +#: src/Module/Profile/Profile.php:166 msgid "j F, Y" msgstr "j F, Y" -#: src/Module/Profile/Profile.php:179 +#: src/Module/Profile/Profile.php:167 msgid "j F" msgstr "j F" -#: src/Module/Profile/Profile.php:187 src/Util/Temporal.php:168 +#: src/Module/Profile/Profile.php:175 src/Util/Temporal.php:154 msgid "Birthday:" msgstr "Fecha de Nac:" -#: src/Module/Profile/Profile.php:190 -#: src/Module/Settings/Profile/Index.php:291 src/Util/Temporal.php:170 +#: src/Module/Profile/Profile.php:178 +#: src/Module/Settings/Profile/Index.php:282 src/Util/Temporal.php:156 msgid "Age: " msgstr "Edad: " -#: src/Module/Profile/Profile.php:190 -#: src/Module/Settings/Profile/Index.php:291 src/Util/Temporal.php:170 +#: src/Module/Profile/Profile.php:178 +#: src/Module/Settings/Profile/Index.php:282 src/Util/Temporal.php:156 #, php-format msgid "%d year old" msgid_plural "%d years old" @@ -9315,46 +9309,46 @@ msgstr[0] "%d Años" msgstr[1] "%d Años" msgstr[2] "%d Años" -#: src/Module/Profile/Profile.php:195 -#: src/Module/Settings/Profile/Index.php:284 +#: src/Module/Profile/Profile.php:183 +#: src/Module/Settings/Profile/Index.php:275 msgid "Description:" msgstr "Descripción:" -#: src/Module/Profile/Profile.php:261 +#: src/Module/Profile/Profile.php:249 msgid "Groups:" msgstr "" -#: src/Module/Profile/Profile.php:273 +#: src/Module/Profile/Profile.php:261 msgid "View profile as:" msgstr "Ver perfil como:" -#: src/Module/Profile/Profile.php:290 +#: src/Module/Profile/Profile.php:278 msgid "View as" msgstr "Ver como" -#: src/Module/Profile/RemoteFollow.php:82 +#: src/Module/Profile/RemoteFollow.php:68 msgid "Profile unavailable." msgstr "Perfil no disponible." -#: src/Module/Profile/RemoteFollow.php:88 +#: src/Module/Profile/RemoteFollow.php:74 msgid "Invalid locator" msgstr "Localizador no válido" -#: src/Module/Profile/RemoteFollow.php:95 +#: src/Module/Profile/RemoteFollow.php:81 msgid "The provided profile link doesn't seem to be valid" msgstr "Link del perfil no parece válido." -#: src/Module/Profile/RemoteFollow.php:100 +#: src/Module/Profile/RemoteFollow.php:86 msgid "" "Remote subscription can't be done for your network. Please subscribe " "directly on your system." msgstr "La subscripción remota no se podrá hacer para tu red. Por favor contacta directamente desde tu sistema." -#: src/Module/Profile/RemoteFollow.php:128 +#: src/Module/Profile/RemoteFollow.php:114 msgid "Friend/Connection Request" msgstr "Solicitud de Amistad/Conexión" -#: src/Module/Profile/RemoteFollow.php:129 +#: src/Module/Profile/RemoteFollow.php:115 #, php-format msgid "" "Enter your Webfinger address (user@domain.tld) or profile URL here. If this " @@ -9362,579 +9356,579 @@ msgid "" " or %s directly on your system." msgstr "Digite dirección Webfinger (user@domain.tld) o URL de perfil. Si no fuera aceptado por tu sistema, debes suscribirte a %s o %s directo en tu sistema." -#: src/Module/Profile/RemoteFollow.php:130 +#: src/Module/Profile/RemoteFollow.php:116 #, php-format msgid "" "If you are not yet a member of the free social web, follow " "this link to find a public Friendica node and join us today." msgstr "Si aún no eres miembro de la web social gratuita, Sígue este enlace para encontrar un nodo Friendica público y únete hoy." -#: src/Module/Profile/RemoteFollow.php:131 +#: src/Module/Profile/RemoteFollow.php:117 msgid "Your Webfinger address or profile URL:" msgstr "Tu dirección Webfinger o URL de Perfil:" -#: src/Module/Profile/Restricted.php:59 +#: src/Module/Profile/Restricted.php:45 msgid "Restricted profile" msgstr "" -#: src/Module/Profile/Restricted.php:60 +#: src/Module/Profile/Restricted.php:46 msgid "" "This profile has been restricted which prevents access to their public " "content from anonymous visitors." msgstr "" -#: src/Module/Profile/Schedule.php:83 +#: src/Module/Profile/Schedule.php:69 msgid "Scheduled" msgstr "" -#: src/Module/Profile/Schedule.php:84 +#: src/Module/Profile/Schedule.php:70 msgid "Content" msgstr "" -#: src/Module/Profile/Schedule.php:85 +#: src/Module/Profile/Schedule.php:71 msgid "Remove post" msgstr "" -#: src/Module/Register.php:85 +#: src/Module/Register.php:77 msgid "Only parent users can create additional accounts." msgstr "Solo usuarios superiores pueden crear mas cuentas." -#: src/Module/Register.php:100 src/Module/User/Import.php:112 +#: src/Module/Register.php:92 src/Module/User/Import.php:98 msgid "" "This site has exceeded the number of allowed daily account registrations. " "Please try again tomorrow." msgstr "Este sitio ha excedido el número de registros diarios permitidos. Inténtalo de nuevo mañana por favor." -#: src/Module/Register.php:117 +#: src/Module/Register.php:109 msgid "" "You may (optionally) fill in this form via OpenID by supplying your OpenID " "and clicking \"Register\"." msgstr "Puede (opcionalmente) llenar el formulario vía OpenID proporcionando su OpenID y haciendo clic en \"Registrarse\"." -#: src/Module/Register.php:118 +#: src/Module/Register.php:110 msgid "" "If you are not familiar with OpenID, please leave that field blank and fill " "in the rest of the items." msgstr "Si no estás familiarizado con OpenID, por favor deja ese campo en blanco y rellena el resto de los elementos." -#: src/Module/Register.php:119 +#: src/Module/Register.php:111 msgid "Your OpenID (optional): " msgstr "Tu OpenID (opcional): " -#: src/Module/Register.php:128 +#: src/Module/Register.php:120 msgid "Include your profile in member directory?" msgstr "¿Incluir tu perfil en el directorio de miembros?" -#: src/Module/Register.php:149 +#: src/Module/Register.php:141 msgid "Note for the admin" msgstr "Nota para el administrador" -#: src/Module/Register.php:149 +#: src/Module/Register.php:141 msgid "Leave a message for the admin, why you want to join this node" msgstr "Deje un mensaje para el administrador sobre por qué quiere unirse a este nodo" -#: src/Module/Register.php:150 +#: src/Module/Register.php:142 msgid "Membership on this site is by invitation only." msgstr "Sitio solo accesible mediante invitación." -#: src/Module/Register.php:151 +#: src/Module/Register.php:143 msgid "Your invitation code: " msgstr "Tu código de Invitación: " -#: src/Module/Register.php:159 +#: src/Module/Register.php:151 msgid "Your Display Name (as you would like it to be displayed on this system" msgstr "" -#: src/Module/Register.php:160 +#: src/Module/Register.php:152 msgid "" "Your Email Address: (Initial information will be send there, so this has to " "be an existing address.)" msgstr "Tu Correo electrónico: (Información inicial se enviará allí, por lo que debeser una dirección existente.)" -#: src/Module/Register.php:161 +#: src/Module/Register.php:153 msgid "Please repeat your e-mail address:" msgstr "Repite tu correo:" -#: src/Module/Register.php:163 src/Module/Security/PasswordTooLong.php:100 -#: src/Module/Settings/Account.php:564 +#: src/Module/Register.php:155 src/Module/Security/PasswordTooLong.php:86 +#: src/Module/Settings/Account.php:555 msgid "New Password:" msgstr "Contraseña Nueva:" -#: src/Module/Register.php:163 +#: src/Module/Register.php:155 msgid "Leave empty for an auto generated password." msgstr "Dejar vacío para autogenerar una contraseña" -#: src/Module/Register.php:164 src/Module/Security/PasswordTooLong.php:101 -#: src/Module/Settings/Account.php:565 +#: src/Module/Register.php:156 src/Module/Security/PasswordTooLong.php:87 +#: src/Module/Settings/Account.php:556 msgid "Confirm:" msgstr "Confirmar:" -#: src/Module/Register.php:165 +#: src/Module/Register.php:157 #, php-format msgid "" "Choose a profile nickname. This must begin with a text character. Your " "profile address on this site will then be \"nickname@%s\"." msgstr "Elija un apodo de perfil. Que comience con un carácter de texto. Tu dirección de perfil en este sitio será \"nickname@%s\"." -#: src/Module/Register.php:166 +#: src/Module/Register.php:158 msgid "Choose a nickname: " msgstr "Escoge un apodo: " -#: src/Module/Register.php:174 src/Module/User/Import.php:118 +#: src/Module/Register.php:166 src/Module/User/Import.php:104 msgid "Import" msgstr "Importar" -#: src/Module/Register.php:175 +#: src/Module/Register.php:167 msgid "Import your profile to this friendica instance" msgstr "Importar tu perfil a esta instancia de friendica" -#: src/Module/Register.php:182 +#: src/Module/Register.php:174 msgid "Note: This node explicitly contains adult content" msgstr "Nota: Este nodo contiene material adulto explicito" -#: src/Module/Register.php:184 src/Module/Settings/Delegation.php:181 +#: src/Module/Register.php:176 src/Module/Settings/Delegation.php:167 msgid "Parent Password:" msgstr "Contraseña principal:" -#: src/Module/Register.php:184 src/Module/Settings/Delegation.php:181 +#: src/Module/Register.php:176 src/Module/Settings/Delegation.php:167 msgid "" "Please enter the password of the parent account to legitimize your request." msgstr "Ingrese la contraseña de la cuenta principal para conformar la solicitud." -#: src/Module/Register.php:213 +#: src/Module/Register.php:205 msgid "Password doesn't match." msgstr "Contraseñas diferentes." -#: src/Module/Register.php:219 +#: src/Module/Register.php:211 msgid "Please enter your password." msgstr "Ingresa tu contraseña." -#: src/Module/Register.php:261 +#: src/Module/Register.php:253 msgid "You have entered too much information." msgstr "Demasiada información." -#: src/Module/Register.php:284 +#: src/Module/Register.php:276 msgid "Please enter the identical mail address in the second field." msgstr "Ingresa la misma cuenta de correo en el segundo campo" -#: src/Module/Register.php:292 +#: src/Module/Register.php:284 msgid "Nickname cannot start with a digit." msgstr "" -#: src/Module/Register.php:294 +#: src/Module/Register.php:286 msgid "Nickname can only contain US-ASCII characters." msgstr "" -#: src/Module/Register.php:323 +#: src/Module/Register.php:315 msgid "The additional account was created." msgstr "La cuenta adicional fue creada." -#: src/Module/Register.php:348 +#: src/Module/Register.php:340 msgid "" "Registration successful. Please check your email for further instructions." msgstr "Te has registrado con éxito. Consulta tu correo para más información." -#: src/Module/Register.php:355 +#: src/Module/Register.php:347 #, php-format msgid "" "Failed to send email message. Here your accout details:
login: %s
" "password: %s

You can change your password after login." msgstr "Error al intentar de enviar mensaje de correo. Aquí los detalles de tu cuenta:
Usuario: %s
Contraseña: %s

Puede cambiar tu contraseña después de ingresar al sitio." -#: src/Module/Register.php:361 +#: src/Module/Register.php:353 msgid "Registration successful." msgstr "Registro exitoso." -#: src/Module/Register.php:370 src/Module/Register.php:377 -#: src/Module/Register.php:387 +#: src/Module/Register.php:362 src/Module/Register.php:369 +#: src/Module/Register.php:379 msgid "Your registration can not be processed." msgstr "Tu registro no se puede procesar." -#: src/Module/Register.php:376 +#: src/Module/Register.php:368 msgid "You have to leave a request note for the admin." msgstr "Debes dejar una solicitud al Administrador." -#: src/Module/Register.php:386 +#: src/Module/Register.php:378 msgid "An internal error occured." msgstr "" -#: src/Module/Register.php:408 +#: src/Module/Register.php:400 msgid "Your registration is pending approval by the site owner." msgstr "Tu registro queda pendiente de aprobación por el dueño del sitio." -#: src/Module/Search/Acl.php:73 +#: src/Module/Search/Acl.php:64 msgid "You must be logged in to use this module." msgstr "Debes ingresar para usar el modulo." -#: src/Module/Search/Index.php:69 +#: src/Module/Search/Index.php:55 msgid "Only logged in users are permitted to perform a search." msgstr "Solo usuarios activos tienen permiso para ejecutar búsquedas." -#: src/Module/Search/Index.php:89 +#: src/Module/Search/Index.php:75 msgid "Only one search per minute is permitted for not logged in users." msgstr "Se permite solo una búsqueda por minuto para usuarios no identificados." -#: src/Module/Search/Index.php:205 +#: src/Module/Search/Index.php:191 #, php-format msgid "Items tagged with: %s" msgstr "Objetos taggeado con: %s" -#: src/Module/Search/Saved.php:59 +#: src/Module/Search/Saved.php:49 msgid "Search term was not saved." msgstr "Término de búsqueda no se grabó." -#: src/Module/Search/Saved.php:62 +#: src/Module/Search/Saved.php:52 msgid "Search term already saved." msgstr "Término de búsqueda ya ha sido grabado." -#: src/Module/Search/Saved.php:68 +#: src/Module/Search/Saved.php:58 msgid "Search term was not removed." msgstr "Término de búsqueda no fue borrado." -#: src/Module/Security/Login.php:123 +#: src/Module/Security/Login.php:113 msgid "Create a New Account" msgstr "Crear Nueva Cuenta" -#: src/Module/Security/Login.php:142 +#: src/Module/Security/Login.php:132 msgid "Your OpenID: " msgstr "Tu OpenID: " -#: src/Module/Security/Login.php:145 +#: src/Module/Security/Login.php:135 msgid "" "Please enter your username and password to add the OpenID to your existing " "account." msgstr "Ingresa tu Usuario y Contraseña para añadir el OpenID a tu cuentaexistente." -#: src/Module/Security/Login.php:147 +#: src/Module/Security/Login.php:137 msgid "Or login using OpenID: " msgstr "O ingresa usando OpenID: " -#: src/Module/Security/Login.php:161 +#: src/Module/Security/Login.php:151 msgid "Password: " msgstr "Contraseña: " -#: src/Module/Security/Login.php:162 +#: src/Module/Security/Login.php:152 msgid "Remember me" msgstr "Recordarme" -#: src/Module/Security/Login.php:171 +#: src/Module/Security/Login.php:161 msgid "Forgot your password?" msgstr "¿Olvidaste la contraseña?" -#: src/Module/Security/Login.php:174 +#: src/Module/Security/Login.php:164 msgid "Website Terms of Service" msgstr "Términos de Servicio del Sitio" -#: src/Module/Security/Login.php:175 +#: src/Module/Security/Login.php:165 msgid "terms of service" msgstr "Términos de Servicio" -#: src/Module/Security/Login.php:177 +#: src/Module/Security/Login.php:167 msgid "Website Privacy Policy" msgstr "Política de Privacidad del Sitio" -#: src/Module/Security/Login.php:178 +#: src/Module/Security/Login.php:168 msgid "privacy policy" msgstr "Política de Privacidad" -#: src/Module/Security/Logout.php:84 -#: src/Module/Security/TwoFactor/SignOut.php:78 -#: src/Module/Security/TwoFactor/SignOut.php:86 -#: src/Module/Security/TwoFactor/SignOut.php:108 -#: src/Module/Security/TwoFactor/SignOut.php:115 +#: src/Module/Security/Logout.php:75 +#: src/Module/Security/TwoFactor/SignOut.php:64 +#: src/Module/Security/TwoFactor/SignOut.php:72 +#: src/Module/Security/TwoFactor/SignOut.php:94 +#: src/Module/Security/TwoFactor/SignOut.php:101 msgid "Logged out." msgstr "Desconectado." -#: src/Module/Security/OpenID.php:54 +#: src/Module/Security/OpenID.php:40 msgid "OpenID protocol error. No ID returned" msgstr "Error de protocolo OpenID. No encuentra ID" -#: src/Module/Security/OpenID.php:90 +#: src/Module/Security/OpenID.php:76 msgid "" "Account not found. Please login to your existing account to add the OpenID " "to it." msgstr "Cuenta no encontrada. Ingresa en tu cuenta existente para agregarle OpenID." -#: src/Module/Security/OpenID.php:92 +#: src/Module/Security/OpenID.php:78 msgid "" "Account not found. Please register a new account or login to your existing " "account to add the OpenID to it." msgstr "Cuenta no encontrada. Registra una nueva cuenta o ingresa en su cuenta existentepara agregarle OpenID." -#: src/Module/Security/PasswordTooLong.php:57 -#: src/Module/Settings/Account.php:67 +#: src/Module/Security/PasswordTooLong.php:43 +#: src/Module/Settings/Account.php:53 msgid "Passwords do not match." msgstr "No coinciden los passwords" -#: src/Module/Security/PasswordTooLong.php:64 +#: src/Module/Security/PasswordTooLong.php:50 msgid "Password does not need changing." msgstr "" -#: src/Module/Security/PasswordTooLong.php:77 -#: src/Module/Settings/Account.php:81 +#: src/Module/Security/PasswordTooLong.php:63 +#: src/Module/Settings/Account.php:67 msgid "Password unchanged." msgstr "Contraseña no modificada" -#: src/Module/Security/PasswordTooLong.php:91 +#: src/Module/Security/PasswordTooLong.php:77 msgid "Password Too Long" msgstr "" -#: src/Module/Security/PasswordTooLong.php:92 +#: src/Module/Security/PasswordTooLong.php:78 msgid "" "Since version 2022.09, we've realized that any password longer than 72 " "characters is truncated during hashing. To prevent any confusion about this " "behavior, please update your password to be fewer or equal to 72 characters." msgstr "" -#: src/Module/Security/PasswordTooLong.php:93 +#: src/Module/Security/PasswordTooLong.php:79 msgid "Update Password" msgstr "" -#: src/Module/Security/PasswordTooLong.php:99 -#: src/Module/Settings/Account.php:566 +#: src/Module/Security/PasswordTooLong.php:85 +#: src/Module/Settings/Account.php:557 msgid "Current Password:" msgstr "Contraseña actual:" -#: src/Module/Security/PasswordTooLong.php:99 -#: src/Module/Settings/Account.php:566 +#: src/Module/Security/PasswordTooLong.php:85 +#: src/Module/Settings/Account.php:557 msgid "Your current password to confirm the changes" msgstr "Tu contraseña actual para confirmar los cambios." -#: src/Module/Security/PasswordTooLong.php:100 -#: src/Module/Settings/Account.php:550 +#: src/Module/Security/PasswordTooLong.php:86 +#: src/Module/Settings/Account.php:541 msgid "" "Allowed characters are a-z, A-Z, 0-9 and special characters except white " "spaces and accentuated letters." msgstr "" -#: src/Module/Security/PasswordTooLong.php:100 -#: src/Module/Settings/Account.php:551 +#: src/Module/Security/PasswordTooLong.php:86 +#: src/Module/Settings/Account.php:542 msgid "Password length is limited to 72 characters." msgstr "" -#: src/Module/Security/TwoFactor/Recovery.php:74 +#: src/Module/Security/TwoFactor/Recovery.php:60 #, php-format msgid "Remaining recovery codes: %d" msgstr "Códigos de recuperación restantes: %d" -#: src/Module/Security/TwoFactor/Recovery.php:80 -#: src/Module/Security/TwoFactor/Verify.php:77 -#: src/Module/Settings/TwoFactor/Verify.php:98 +#: src/Module/Security/TwoFactor/Recovery.php:66 +#: src/Module/Security/TwoFactor/Verify.php:63 +#: src/Module/Settings/TwoFactor/Verify.php:84 msgid "Invalid code, please retry." msgstr "Código inválido, reinténtelo" -#: src/Module/Security/TwoFactor/Recovery.php:99 +#: src/Module/Security/TwoFactor/Recovery.php:85 msgid "Two-factor recovery" msgstr "Recuperación de 2 factores" -#: src/Module/Security/TwoFactor/Recovery.php:100 +#: src/Module/Security/TwoFactor/Recovery.php:86 msgid "" "

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

" msgstr "

puedes usar uno de tus códigos de recuperación si pierdes el acceso a tu movil.

" -#: src/Module/Security/TwoFactor/Recovery.php:101 +#: src/Module/Security/TwoFactor/Recovery.php:87 #, php-format msgid "Don’t have your phone? Enter a two-factor recovery code" msgstr "No tienes el teléfono? Ingresa código de recuperación" -#: src/Module/Security/TwoFactor/Recovery.php:102 +#: src/Module/Security/TwoFactor/Recovery.php:88 msgid "Please enter a recovery code" msgstr "Ingresa código de recuperación" -#: src/Module/Security/TwoFactor/Recovery.php:103 +#: src/Module/Security/TwoFactor/Recovery.php:89 msgid "Submit recovery code and complete login" msgstr "Enviar código de recuperación e ingresar" -#: src/Module/Security/TwoFactor/SignOut.php:122 +#: src/Module/Security/TwoFactor/SignOut.php:108 msgid "Sign out of this browser?" msgstr "" -#: src/Module/Security/TwoFactor/SignOut.php:123 +#: src/Module/Security/TwoFactor/SignOut.php:109 msgid "" "

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

" msgstr "" -#: src/Module/Security/TwoFactor/SignOut.php:124 +#: src/Module/Security/TwoFactor/SignOut.php:110 msgid "Sign out" msgstr "" -#: src/Module/Security/TwoFactor/SignOut.php:126 +#: src/Module/Security/TwoFactor/SignOut.php:112 msgid "Trust and sign out" msgstr "" -#: src/Module/Security/TwoFactor/Trust.php:96 +#: src/Module/Security/TwoFactor/Trust.php:82 msgid "Couldn't save browser to Cookie." msgstr "" -#: src/Module/Security/TwoFactor/Trust.php:141 +#: src/Module/Security/TwoFactor/Trust.php:127 msgid "Trust this browser?" msgstr "" -#: src/Module/Security/TwoFactor/Trust.php:142 +#: src/Module/Security/TwoFactor/Trust.php:128 msgid "" "

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

" msgstr "" -#: src/Module/Security/TwoFactor/Trust.php:143 +#: src/Module/Security/TwoFactor/Trust.php:129 msgid "Not now" msgstr "" -#: src/Module/Security/TwoFactor/Trust.php:144 +#: src/Module/Security/TwoFactor/Trust.php:130 msgid "Don't trust" msgstr "" -#: src/Module/Security/TwoFactor/Trust.php:145 +#: src/Module/Security/TwoFactor/Trust.php:131 msgid "Trust" msgstr "" -#: src/Module/Security/TwoFactor/Verify.php:97 +#: src/Module/Security/TwoFactor/Verify.php:83 msgid "" "

Open the two-factor authentication app on your device to get an " "authentication code and verify your identity.

" msgstr "

Abra la app de ingreso de 2 factores en su dispositivo y obtenga un código de ingreso para verificar su identidad.

" -#: src/Module/Security/TwoFactor/Verify.php:100 +#: src/Module/Security/TwoFactor/Verify.php:86 #, php-format msgid "" "If you do not have access to your authentication code you can use a two-factor recovery code." msgstr "" -#: src/Module/Security/TwoFactor/Verify.php:101 -#: src/Module/Settings/TwoFactor/Verify.php:158 +#: src/Module/Security/TwoFactor/Verify.php:87 +#: src/Module/Settings/TwoFactor/Verify.php:144 msgid "Please enter a code from your authentication app" msgstr "Ingresa un código de ingreso desde tu app" -#: src/Module/Security/TwoFactor/Verify.php:102 +#: src/Module/Security/TwoFactor/Verify.php:88 msgid "Verify code and complete login" msgstr "Verificar código y completar ingreso" -#: src/Module/Settings/Account.php:96 +#: src/Module/Settings/Account.php:82 msgid "Please use a shorter name." msgstr "Utiliza un nombre mas corto" -#: src/Module/Settings/Account.php:99 +#: src/Module/Settings/Account.php:85 msgid "Name too short." msgstr "Nombre muy corto" -#: src/Module/Settings/Account.php:108 +#: src/Module/Settings/Account.php:94 msgid "Wrong Password." msgstr "Password erróneo" -#: src/Module/Settings/Account.php:113 +#: src/Module/Settings/Account.php:99 msgid "Invalid email." msgstr "Corréo no válido." -#: src/Module/Settings/Account.php:117 +#: src/Module/Settings/Account.php:103 msgid "Cannot change to that email." msgstr "Imposible cambiar a ese correo." -#: src/Module/Settings/Account.php:146 src/Module/Settings/Account.php:195 -#: src/Module/Settings/Account.php:216 src/Module/Settings/Account.php:300 -#: src/Module/Settings/Account.php:329 +#: src/Module/Settings/Account.php:132 src/Module/Settings/Account.php:181 +#: src/Module/Settings/Account.php:202 src/Module/Settings/Account.php:286 +#: src/Module/Settings/Account.php:315 msgid "Settings were not updated." msgstr "Configuración no actualizada" -#: src/Module/Settings/Account.php:342 +#: src/Module/Settings/Account.php:333 msgid "Contact CSV file upload error" msgstr "Error al subir archivo CSV" -#: src/Module/Settings/Account.php:361 +#: src/Module/Settings/Account.php:352 msgid "Importing Contacts done" msgstr "Importación del contacto completada" -#: src/Module/Settings/Account.php:374 +#: src/Module/Settings/Account.php:365 msgid "Relocate message has been send to your contacts" msgstr "Mensaje de reubicación enviado a sus contactos." -#: src/Module/Settings/Account.php:391 +#: src/Module/Settings/Account.php:382 msgid "Unable to find your profile. Please contact your admin." msgstr "No se encontró tu perfil. Contacta al Administrador." -#: src/Module/Settings/Account.php:433 +#: src/Module/Settings/Account.php:424 msgid "" "Account for a service that automatically shares content based on user " "defined channels." msgstr "" -#: src/Module/Settings/Account.php:443 +#: src/Module/Settings/Account.php:434 msgid "Personal Page Subtypes" msgstr "Subtipos de Página Personal" -#: src/Module/Settings/Account.php:444 +#: src/Module/Settings/Account.php:435 msgid "Community Group Subtypes" msgstr "" -#: src/Module/Settings/Account.php:455 +#: src/Module/Settings/Account.php:446 msgid "Account for a personal profile." msgstr "Cuenta para un perfil personal." -#: src/Module/Settings/Account.php:462 +#: src/Module/Settings/Account.php:453 msgid "" "Account for an organisation that automatically approves contact requests as " "\"Followers\"." msgstr "Cuenta para una organización que aprueba automáticamente solicitudes de \"Seguidores\"." -#: src/Module/Settings/Account.php:469 +#: src/Module/Settings/Account.php:460 msgid "" "Account for a news reflector that automatically approves contact requests as" " \"Followers\"." msgstr "Cuenta Reflector de noticias que aprueba automáticamente solicitudes de contacto como \"Seguidores\"." -#: src/Module/Settings/Account.php:476 +#: src/Module/Settings/Account.php:467 msgid "Account for community discussions." msgstr "Cuenta para discusiones de la comunidad." -#: src/Module/Settings/Account.php:484 +#: src/Module/Settings/Account.php:475 msgid "" "Account for a regular personal profile that requires manual approval of " "\"Friends\" and \"Followers\"." msgstr "Cuenta para perfil personal regular que requiere aprobación manual de \"Amigos\" and \"Seguidores\"." -#: src/Module/Settings/Account.php:491 +#: src/Module/Settings/Account.php:482 msgid "" "Account for a public profile that automatically approves contact requests as" " \"Followers\"." msgstr "Cuenta para un perfil público que aprueba automáticamente las solicitudes de contacto como «Seguidores»." -#: src/Module/Settings/Account.php:498 +#: src/Module/Settings/Account.php:489 msgid "Automatically approves all contact requests." msgstr "Aprueba automáticamente las solicitudes de contacto." -#: src/Module/Settings/Account.php:505 +#: src/Module/Settings/Account.php:496 msgid "Contact requests have to be manually approved." msgstr "" -#: src/Module/Settings/Account.php:512 +#: src/Module/Settings/Account.php:503 msgid "" "Account for a popular profile that automatically approves contact requests " "as \"Friends\"." msgstr "Cuenta para un perfil popular que aprueba automáticamente solicitudes de contacto como \"Amigos\"." -#: src/Module/Settings/Account.php:517 +#: src/Module/Settings/Account.php:508 msgid "Private Group [Experimental]" msgstr "" -#: src/Module/Settings/Account.php:519 +#: src/Module/Settings/Account.php:510 msgid "Requires manual approval of contact requests." msgstr "Requiere aprobación manual de solicitudes de contacto." -#: src/Module/Settings/Account.php:528 +#: src/Module/Settings/Account.php:519 msgid "OpenID:" msgstr "OpenID:" -#: src/Module/Settings/Account.php:528 +#: src/Module/Settings/Account.php:519 msgid "(Optional) Allow this OpenID to login to this account." msgstr "(Opcional) Permitir a este OpenID acceder a esta cuenta." -#: src/Module/Settings/Account.php:536 +#: src/Module/Settings/Account.php:527 msgid "Publish your profile in your local site directory?" msgstr "Publicar tu perfil en tu Directorio Local?" -#: src/Module/Settings/Account.php:536 +#: src/Module/Settings/Account.php:527 #, php-format msgid "" "Your profile will be published in this node's local " @@ -9942,94 +9936,94 @@ msgid "" " system settings." msgstr "Tu perfil se publicará en el directorio de nodo local . Los detalles de tu perfil pueden ser públicos según los ajustes del sistema." -#: src/Module/Settings/Account.php:542 +#: src/Module/Settings/Account.php:533 #, php-format msgid "" "Your profile will also be published in the global friendica directories " "(e.g. %s)." msgstr "Tu perfil también será publicado en Directorios Globales Friendica (ej. %s)." -#: src/Module/Settings/Account.php:555 +#: src/Module/Settings/Account.php:546 msgid "Account Settings" msgstr "Configuración de Cuenta" -#: src/Module/Settings/Account.php:556 +#: src/Module/Settings/Account.php:547 #, php-format msgid "Your Identity Address is '%s' or '%s'." msgstr "Tu dirección de Identidad es '%s' o '%s'." -#: src/Module/Settings/Account.php:563 +#: src/Module/Settings/Account.php:554 msgid "Password Settings" msgstr "Configuración de Contraseña" -#: src/Module/Settings/Account.php:565 +#: src/Module/Settings/Account.php:556 msgid "Leave password fields blank unless changing" msgstr "Deja la contraseña en blanco si no quieres cambiarla" -#: src/Module/Settings/Account.php:567 +#: src/Module/Settings/Account.php:558 msgid "Password:" msgstr "Contraseña:" -#: src/Module/Settings/Account.php:567 +#: src/Module/Settings/Account.php:558 msgid "Your current password to confirm the changes of the email address" msgstr "Tu contraseña actual para confirmar los cambios de cuenta de corréo." -#: src/Module/Settings/Account.php:570 +#: src/Module/Settings/Account.php:561 msgid "Delete OpenID URL" msgstr "Borrar URL de OpenID" -#: src/Module/Settings/Account.php:572 +#: src/Module/Settings/Account.php:563 msgid "Basic Settings" msgstr "Configuración Básica" -#: src/Module/Settings/Account.php:573 -#: src/Module/Settings/Profile/Index.php:283 +#: src/Module/Settings/Account.php:564 +#: src/Module/Settings/Profile/Index.php:274 msgid "Display name:" msgstr "Nombre desplegable:" -#: src/Module/Settings/Account.php:574 +#: src/Module/Settings/Account.php:565 msgid "Email Address:" msgstr "Dirección de Correo:" -#: src/Module/Settings/Account.php:575 +#: src/Module/Settings/Account.php:566 msgid "Your Timezone:" msgstr "Zona horaria:" -#: src/Module/Settings/Account.php:576 +#: src/Module/Settings/Account.php:567 msgid "Your Language:" msgstr "Tu idioma:" -#: src/Module/Settings/Account.php:576 +#: src/Module/Settings/Account.php:567 msgid "" "Set the language we use to show you friendica interface and to send you " "emails" msgstr "Selecciona el idioma que usará la interfaz Friendica y para enviarte correos." -#: src/Module/Settings/Account.php:577 +#: src/Module/Settings/Account.php:568 msgid "Default Post Location:" msgstr "Ubicación predeterminada:" -#: src/Module/Settings/Account.php:578 +#: src/Module/Settings/Account.php:569 msgid "Use Browser Location:" msgstr "Usar localización del navegador:" -#: src/Module/Settings/Account.php:580 +#: src/Module/Settings/Account.php:571 msgid "Security and Privacy Settings" msgstr "Configuración de Seguridad y Privacidad" -#: src/Module/Settings/Account.php:582 +#: src/Module/Settings/Account.php:573 msgid "Maximum Friend Requests/Day:" msgstr "Número máximo de solicitudes de amistad/día:" -#: src/Module/Settings/Account.php:582 +#: src/Module/Settings/Account.php:573 msgid "(to prevent spam abuse)" msgstr "(para prevenir abuso de basura)" -#: src/Module/Settings/Account.php:584 +#: src/Module/Settings/Account.php:575 msgid "Allow your profile to be searchable globally?" msgstr "¿Permitir tu perfil ser encontrado globalmente?" -#: src/Module/Settings/Account.php:584 +#: src/Module/Settings/Account.php:575 msgid "" "Activate this setting if you want others to easily find and follow you. Your" " profile will be searchable on remote systems. This setting also determines " @@ -10037,43 +10031,43 @@ msgid "" "indexed or not." msgstr "Activa esta configuración si quieres que otros te encuentren y sigan fácilmente. Tu perfil se podrá buscar en sistemas remotos. Esta configuración también determina si Friendica informará a los motores de búsqueda que tu perfil debe ser indexado o no." -#: src/Module/Settings/Account.php:585 +#: src/Module/Settings/Account.php:576 msgid "Hide your contact/friend list from viewers of your profile?" msgstr "Esconde tu lista de contactos/amistades de otros a tu perfil?" -#: src/Module/Settings/Account.php:585 +#: src/Module/Settings/Account.php:576 msgid "" "A list of your contacts is displayed on your profile page. Activate this " "option to disable the display of your contact list." msgstr "Se muestra una lista de tus contactos en tu Perfil. Activar esta opción para deshabilitar la visualización de tu lista de contactos." -#: src/Module/Settings/Account.php:586 +#: src/Module/Settings/Account.php:577 msgid "Hide your public content from anonymous viewers" msgstr "" -#: src/Module/Settings/Account.php:586 +#: src/Module/Settings/Account.php:577 msgid "" "Anonymous visitors will only see your basic profile details. Your public " "posts and replies will still be freely accessible on the remote servers of " "your followers and through relays." msgstr "" -#: src/Module/Settings/Account.php:587 +#: src/Module/Settings/Account.php:578 msgid "Make public posts unlisted" msgstr "No listar mis artículos públicos" -#: src/Module/Settings/Account.php:587 +#: src/Module/Settings/Account.php:578 msgid "" "Your public posts will not appear on the community pages or in search " "results, nor be sent to relay servers. However they can still appear on " "public feeds on remote servers." msgstr "Tus publicaciones públicas no aparecerán en páginas de la comunidad ni en búsquedas, ni se enviaran a servidores de retransmisión. Sin embargo, aparecerán en artículos públicos de servidores remotos." -#: src/Module/Settings/Account.php:588 +#: src/Module/Settings/Account.php:579 msgid "Make all posted pictures accessible" msgstr "Hacer accesibles todas las fotos" -#: src/Module/Settings/Account.php:588 +#: src/Module/Settings/Account.php:579 msgid "" "This option makes every posted picture accessible via the direct link. This " "is a workaround for the problem that most other networks can't handle " @@ -10081,352 +10075,352 @@ msgid "" "public on your photo albums though." msgstr "Esta opción hace accesibles todas las imágenes a través del enlace directo. Este es una solución al problema que la mayoría de las redes no pueden manejar permisos en las imágenes. Las imágenes no públicas aún no serán visibles para elpúblico en tus álbumes de fotos." -#: src/Module/Settings/Account.php:589 +#: src/Module/Settings/Account.php:580 msgid "Allow friends to post to your profile page?" msgstr "¿Permitir que tus amigos publiquen en tu página de perfil?" -#: src/Module/Settings/Account.php:589 +#: src/Module/Settings/Account.php:580 msgid "" "Your contacts may write posts on your profile wall. These posts will be " "distributed to your contacts" msgstr "Tus contactos pueden escribir artículos en tu perfil. Estas publicaciones se distribuirán a tus contactos" -#: src/Module/Settings/Account.php:590 +#: src/Module/Settings/Account.php:581 msgid "Allow friends to tag your posts?" msgstr "¿Permitir a los amigos etiquetar tus publicaciones?" -#: src/Module/Settings/Account.php:590 +#: src/Module/Settings/Account.php:581 msgid "Your contacts can add additional tags to your posts." msgstr "Tus contactos pueden añadir etiquetas adicionales a tus artículos." -#: src/Module/Settings/Account.php:591 +#: src/Module/Settings/Account.php:582 msgid "Default privacy circle for new contacts" msgstr "" -#: src/Module/Settings/Account.php:592 +#: src/Module/Settings/Account.php:583 msgid "Default privacy circle for new group contacts" msgstr "" -#: src/Module/Settings/Account.php:593 +#: src/Module/Settings/Account.php:584 msgid "Default Post Permissions" msgstr "Permisos por defecto para publicaciones" -#: src/Module/Settings/Account.php:597 +#: src/Module/Settings/Account.php:588 msgid "Expiration settings" msgstr "Configuración de Expiración" -#: src/Module/Settings/Account.php:598 +#: src/Module/Settings/Account.php:589 msgid "Automatically expire posts after this many days:" msgstr "Publicaciones caducarán solas después de estos días:" -#: src/Module/Settings/Account.php:598 +#: src/Module/Settings/Account.php:589 msgid "If empty, posts will not expire. Expired posts will be deleted" msgstr "Si dejas vacío no caducarán. Publicaciones caducadas serán borradas" -#: src/Module/Settings/Account.php:599 +#: src/Module/Settings/Account.php:590 msgid "Expire posts" msgstr "Caducar artículos" -#: src/Module/Settings/Account.php:599 +#: src/Module/Settings/Account.php:590 msgid "When activated, posts and comments will be expired." msgstr "Cuando se activa, artículos y comentarios caducarán." -#: src/Module/Settings/Account.php:600 +#: src/Module/Settings/Account.php:591 msgid "Expire personal notes" msgstr "Caducar Anotaciones" -#: src/Module/Settings/Account.php:600 +#: src/Module/Settings/Account.php:591 msgid "" "When activated, the personal notes on your profile page will be expired." msgstr "Si se activa, las Anotaciones en tu Perfil caducarán." -#: src/Module/Settings/Account.php:601 +#: src/Module/Settings/Account.php:592 msgid "Expire starred posts" msgstr "Caducar artículos Destacados" -#: src/Module/Settings/Account.php:601 +#: src/Module/Settings/Account.php:592 msgid "" "Starring posts keeps them from being expired. That behaviour is overwritten " "by this setting." msgstr "Destacar las publicaciones evita que caduquen. Ese comportamiento cambiacon este ajuste." -#: src/Module/Settings/Account.php:602 +#: src/Module/Settings/Account.php:593 msgid "Only expire posts by others" msgstr "Solo caducar artículos de otros" -#: src/Module/Settings/Account.php:602 +#: src/Module/Settings/Account.php:593 msgid "" "When activated, your own posts never expire. Then the settings above are " "only valid for posts you received." msgstr "Cuando se activa, publicaciones propias nunca caducan. Esta configuración solo es válida para las artículos recibidas." -#: src/Module/Settings/Account.php:605 +#: src/Module/Settings/Account.php:596 msgid "Notification Settings" msgstr "Configuración de Notificaciones" -#: src/Module/Settings/Account.php:606 +#: src/Module/Settings/Account.php:597 msgid "Send a notification email when:" msgstr "Enviar notificación por correo cuando:" -#: src/Module/Settings/Account.php:607 +#: src/Module/Settings/Account.php:598 msgid "You receive an introduction" msgstr "Recibas una presentación" -#: src/Module/Settings/Account.php:608 +#: src/Module/Settings/Account.php:599 msgid "Your introductions are confirmed" msgstr "Tu presentación sea confirmada" -#: src/Module/Settings/Account.php:609 +#: src/Module/Settings/Account.php:600 msgid "Someone writes on your profile wall" msgstr "Alguien escriba en tu perfil" -#: src/Module/Settings/Account.php:610 +#: src/Module/Settings/Account.php:601 msgid "Someone writes a followup comment" msgstr "Alguien escriba en un comentario que sigo" -#: src/Module/Settings/Account.php:611 +#: src/Module/Settings/Account.php:602 msgid "You receive a private message" msgstr "Recibas un mensaje privado" -#: src/Module/Settings/Account.php:612 +#: src/Module/Settings/Account.php:603 msgid "You receive a friend suggestion" msgstr "Recibas una sugerencia de amistad" -#: src/Module/Settings/Account.php:613 +#: src/Module/Settings/Account.php:604 msgid "You are tagged in a post" msgstr "Seas etiquetado en un artículo" -#: src/Module/Settings/Account.php:615 +#: src/Module/Settings/Account.php:606 msgid "Create a desktop notification when:" msgstr "" -#: src/Module/Settings/Account.php:616 +#: src/Module/Settings/Account.php:607 msgid "Someone tagged you" msgstr "" -#: src/Module/Settings/Account.php:617 +#: src/Module/Settings/Account.php:608 msgid "Someone directly commented on your post" msgstr "" -#: src/Module/Settings/Account.php:618 +#: src/Module/Settings/Account.php:609 msgid "Someone liked your content" msgstr "" -#: src/Module/Settings/Account.php:618 src/Module/Settings/Account.php:619 +#: src/Module/Settings/Account.php:609 src/Module/Settings/Account.php:610 msgid "Can only be enabled, when the direct comment notification is enabled." msgstr "" -#: src/Module/Settings/Account.php:619 +#: src/Module/Settings/Account.php:610 msgid "Someone shared your content" msgstr "" -#: src/Module/Settings/Account.php:620 +#: src/Module/Settings/Account.php:611 msgid "Someone commented in your thread" msgstr "" -#: src/Module/Settings/Account.php:621 +#: src/Module/Settings/Account.php:612 msgid "Someone commented in a thread where you commented" msgstr "" -#: src/Module/Settings/Account.php:622 +#: src/Module/Settings/Account.php:613 msgid "Someone commented in a thread where you interacted" msgstr "" -#: src/Module/Settings/Account.php:624 +#: src/Module/Settings/Account.php:615 msgid "Activate desktop notifications" msgstr "Activar notificaciones" -#: src/Module/Settings/Account.php:624 +#: src/Module/Settings/Account.php:615 msgid "Show desktop popup on new notifications" msgstr "Mostrar notificaciones emergentes en caso de nuevos eventos." -#: src/Module/Settings/Account.php:628 +#: src/Module/Settings/Account.php:619 msgid "Text-only notification emails" msgstr "Notificaciones de correo solo en texto" -#: src/Module/Settings/Account.php:630 +#: src/Module/Settings/Account.php:621 msgid "Send text only notification emails, without the html part" msgstr "Enviar correo de notificación en formato Solo Texto sin html" -#: src/Module/Settings/Account.php:634 +#: src/Module/Settings/Account.php:625 msgid "Show detailled notifications" msgstr "Mostrar notificaciones detalladas" -#: src/Module/Settings/Account.php:636 +#: src/Module/Settings/Account.php:627 msgid "" "Per default, notifications are condensed to a single notification per item. " "When enabled every notification is displayed." msgstr "Por default, notificaciones se condensan en una sola notificación por artículo. Cuando se habilita se muestran cada notificación." -#: src/Module/Settings/Account.php:640 +#: src/Module/Settings/Account.php:631 msgid "Show notifications of ignored contacts" msgstr "Mostrar notificación de Contactos Ignorados" -#: src/Module/Settings/Account.php:642 +#: src/Module/Settings/Account.php:633 msgid "" "You don't see posts from ignored contacts. But you still see their comments." " This setting controls if you want to still receive regular notifications " "that are caused by ignored contacts or not." msgstr "No ves publicaciones de contactos ignorados. Pero todavía ves sus comentarios. Esta configuración controla si aún desea recibir notificaciones regulares causadas por contactos ignorados o no." -#: src/Module/Settings/Account.php:645 +#: src/Module/Settings/Account.php:636 msgid "Advanced Account/Page Type Settings" msgstr "Configuración avanzada de tipo de Cuenta/Página" -#: src/Module/Settings/Account.php:646 +#: src/Module/Settings/Account.php:637 msgid "Change the behaviour of this account for special situations" msgstr "Cambiar el comportamiento de esta cuenta para situaciones especiales" -#: src/Module/Settings/Account.php:649 +#: src/Module/Settings/Account.php:640 msgid "Import Contacts" msgstr "Importar contactos" -#: src/Module/Settings/Account.php:650 +#: src/Module/Settings/Account.php:641 msgid "" "Upload a CSV file that contains the handle of your followed accounts in the " "first column you exported from the old account." msgstr "Subir archivo CSV que contenga identificador de tus cuentas seguidas en elprimera columna que exportó desde la cuenta anterior." -#: src/Module/Settings/Account.php:651 +#: src/Module/Settings/Account.php:642 msgid "Upload File" msgstr "Subir archivo" -#: src/Module/Settings/Account.php:654 +#: src/Module/Settings/Account.php:645 msgid "Relocate" msgstr "Relocalizar" -#: src/Module/Settings/Account.php:655 +#: src/Module/Settings/Account.php:646 msgid "" "If you have moved this profile from another server, and some of your " "contacts don't receive your updates, try pushing this button." msgstr "Si migró este perfil desde otro servidor y algunos contactos no reciben sus publicaciones intente oprimiendo esta opción." -#: src/Module/Settings/Account.php:656 +#: src/Module/Settings/Account.php:647 msgid "Resend relocate message to contacts" msgstr "Reenviar mensaje de relocalización a contactos" -#: src/Module/Settings/Addons.php:86 +#: src/Module/Settings/Addons.php:72 msgid "Addon Settings" msgstr "Configuración de Añadidos" -#: src/Module/Settings/Addons.php:87 +#: src/Module/Settings/Addons.php:73 msgid "No Addon settings configured" msgstr "Ningún Añadido configurado" -#: src/Module/Settings/Channels.php:148 +#: src/Module/Settings/Channels.php:134 msgid "" "This page can be used to define the channels that will automatically be " "reshared by your account." msgstr "" -#: src/Module/Settings/Channels.php:153 +#: src/Module/Settings/Channels.php:139 msgid "This page can be used to define your own channels." msgstr "" -#: src/Module/Settings/Channels.php:182 +#: src/Module/Settings/Channels.php:168 msgid "Publish" msgstr "" -#: src/Module/Settings/Channels.php:182 +#: src/Module/Settings/Channels.php:168 msgid "" "When selected, the channel results are reshared. This only works for public " "ActivityPub posts from the public timeline or the user defined circles." msgstr "" -#: src/Module/Settings/Channels.php:190 src/Module/Settings/Channels.php:211 -#: src/Module/Settings/Display.php:338 +#: src/Module/Settings/Channels.php:176 src/Module/Settings/Channels.php:197 +#: src/Module/Settings/Display.php:324 msgid "Label" msgstr "" -#: src/Module/Settings/Channels.php:191 src/Module/Settings/Channels.php:212 -#: src/Module/Settings/Display.php:339 -#: src/Module/Settings/TwoFactor/AppSpecific.php:137 +#: src/Module/Settings/Channels.php:177 src/Module/Settings/Channels.php:198 +#: src/Module/Settings/Display.php:325 +#: src/Module/Settings/TwoFactor/AppSpecific.php:123 msgid "Description" msgstr "Descripción" -#: src/Module/Settings/Channels.php:192 src/Module/Settings/Channels.php:213 +#: src/Module/Settings/Channels.php:178 src/Module/Settings/Channels.php:199 msgid "Access Key" msgstr "" -#: src/Module/Settings/Channels.php:193 src/Module/Settings/Channels.php:214 +#: src/Module/Settings/Channels.php:179 src/Module/Settings/Channels.php:200 msgid "Circle/Channel" msgstr "" -#: src/Module/Settings/Channels.php:194 src/Module/Settings/Channels.php:215 +#: src/Module/Settings/Channels.php:180 src/Module/Settings/Channels.php:201 msgid "Include Tags" msgstr "" -#: src/Module/Settings/Channels.php:195 src/Module/Settings/Channels.php:216 +#: src/Module/Settings/Channels.php:181 src/Module/Settings/Channels.php:202 msgid "Exclude Tags" msgstr "" -#: src/Module/Settings/Channels.php:196 src/Module/Settings/Channels.php:217 +#: src/Module/Settings/Channels.php:182 src/Module/Settings/Channels.php:203 msgid "Minimum Size" msgstr "" -#: src/Module/Settings/Channels.php:197 src/Module/Settings/Channels.php:218 +#: src/Module/Settings/Channels.php:183 src/Module/Settings/Channels.php:204 msgid "Maximum Size" msgstr "" -#: src/Module/Settings/Channels.php:198 src/Module/Settings/Channels.php:219 +#: src/Module/Settings/Channels.php:184 src/Module/Settings/Channels.php:205 msgid "Full Text Search" msgstr "" -#: src/Module/Settings/Channels.php:202 src/Module/Settings/Channels.php:223 +#: src/Module/Settings/Channels.php:188 src/Module/Settings/Channels.php:209 msgid "Select all languages that you want to see in this channel." msgstr "" -#: src/Module/Settings/Channels.php:204 +#: src/Module/Settings/Channels.php:190 msgid "Delete channel" msgstr "" -#: src/Module/Settings/Channels.php:204 +#: src/Module/Settings/Channels.php:190 msgid "Check to delete this entry from the channel list" msgstr "" -#: src/Module/Settings/Channels.php:211 +#: src/Module/Settings/Channels.php:197 msgid "Short name for the channel. It is displayed on the channels widget." msgstr "" -#: src/Module/Settings/Channels.php:212 +#: src/Module/Settings/Channels.php:198 msgid "This should describe the content of the channel in a few word." msgstr "" -#: src/Module/Settings/Channels.php:213 +#: src/Module/Settings/Channels.php:199 msgid "" "When you want to access this channel via an access key, you can define it " "here. Pay attention to not use an already used one." msgstr "" -#: src/Module/Settings/Channels.php:214 +#: src/Module/Settings/Channels.php:200 msgid "Select a circle or channel, that your channel should be based on." msgstr "" -#: src/Module/Settings/Channels.php:215 +#: src/Module/Settings/Channels.php:201 msgid "" "Comma separated list of tags. A post will be used when it contains any of " "the listed tags." msgstr "" -#: src/Module/Settings/Channels.php:216 +#: src/Module/Settings/Channels.php:202 msgid "" "Comma separated list of tags. If a post contain any of these tags, then it " "will not be part of nthis channel." msgstr "" -#: src/Module/Settings/Channels.php:217 +#: src/Module/Settings/Channels.php:203 msgid "" "Minimum post size. Leave empty for no minimum size. The size is calculated " "without links, attached posts, mentions or hashtags." msgstr "" -#: src/Module/Settings/Channels.php:218 +#: src/Module/Settings/Channels.php:204 msgid "" "Maximum post size. Leave empty for no maximum size. The size is calculated " "without links, attached posts, mentions or hashtags." msgstr "" -#: src/Module/Settings/Channels.php:219 +#: src/Module/Settings/Channels.php:205 #, php-format msgid "" "Search terms for the body, supports the \"boolean mode\" operators from " @@ -10434,576 +10428,589 @@ msgid "" "keywords: %s" msgstr "" -#: src/Module/Settings/Channels.php:220 +#: src/Module/Settings/Channels.php:206 msgid "Check to display images in the channel." msgstr "" -#: src/Module/Settings/Channels.php:221 +#: src/Module/Settings/Channels.php:207 msgid "Check to display videos in the channel." msgstr "" -#: src/Module/Settings/Channels.php:222 +#: src/Module/Settings/Channels.php:208 msgid "Check to display audio in the channel." msgstr "" -#: src/Module/Settings/Channels.php:227 +#: src/Module/Settings/Channels.php:213 msgid "Add new entry to the channel list" msgstr "" -#: src/Module/Settings/Channels.php:228 +#: src/Module/Settings/Channels.php:214 msgid "Add" msgstr "Añadir" -#: src/Module/Settings/Channels.php:230 +#: src/Module/Settings/Channels.php:216 msgid "Current Entries in the channel list" msgstr "" -#: src/Module/Settings/Channels.php:233 +#: src/Module/Settings/Channels.php:219 msgid "Delete entry from the channel list" msgstr "" -#: src/Module/Settings/Channels.php:234 +#: src/Module/Settings/Channels.php:220 msgid "Delete entry from the channel list?" msgstr "" -#: src/Module/Settings/Connectors.php:120 +#: src/Module/Settings/Connectors.php:108 msgid "Failed to connect with email account using the settings provided." msgstr "Error al conectar con el Correo mediante esa configuración." -#: src/Module/Settings/Connectors.php:166 -#: src/Module/Settings/Connectors.php:167 +#: src/Module/Settings/Connectors.php:155 +#: src/Module/Settings/Connectors.php:156 msgid "Diaspora (Socialhome, Hubzilla)" msgstr "Diaspora (Socialhome, Hubzilla)" -#: src/Module/Settings/Connectors.php:166 -#: src/Module/Settings/Connectors.php:170 +#: src/Module/Settings/Connectors.php:155 #, php-format msgid "Built-in support for %s connectivity is enabled" msgstr "" -#: src/Module/Settings/Connectors.php:167 -#: src/Module/Settings/Connectors.php:169 +#: src/Module/Settings/Connectors.php:156 #, php-format msgid "Built-in support for %s connectivity is disabled" msgstr "" -#: src/Module/Settings/Connectors.php:169 -#: src/Module/Settings/Connectors.php:170 -msgid "OStatus (GNU Social)" -msgstr "OStatus (GNU Social)" - -#: src/Module/Settings/Connectors.php:182 +#: src/Module/Settings/Connectors.php:167 msgid "Email access is disabled on this site." msgstr "Acceso por correo deshabilitado en este sitio." -#: src/Module/Settings/Connectors.php:197 -#: src/Module/Settings/Connectors.php:244 +#: src/Module/Settings/Connectors.php:182 +#: src/Module/Settings/Connectors.php:233 msgid "None" msgstr "Ninguno" -#: src/Module/Settings/Connectors.php:209 +#: src/Module/Settings/Connectors.php:186 +msgid "Default (Mastodon will display the title and a link to the post)" +msgstr "" + +#: src/Module/Settings/Connectors.php:187 +msgid "" +"Use the summary (Mastodon and some others will treat it as content warning)" +msgstr "" + +#: src/Module/Settings/Connectors.php:188 +msgid "Embed the title in the body" +msgstr "" + +#: src/Module/Settings/Connectors.php:199 msgid "General Social Media Settings" msgstr "Configuración General de Medios Sociales" -#: src/Module/Settings/Connectors.php:212 +#: src/Module/Settings/Connectors.php:202 msgid "Followed content scope" msgstr "" -#: src/Module/Settings/Connectors.php:214 +#: src/Module/Settings/Connectors.php:204 msgid "" "By default, conversations in which your follows participated but didn't " "start will be shown in your timeline. You can turn this behavior off, or " "expand it to the conversations in which your follows liked a post." msgstr "" -#: src/Module/Settings/Connectors.php:216 +#: src/Module/Settings/Connectors.php:206 msgid "Only conversations my follows started" msgstr "" -#: src/Module/Settings/Connectors.php:217 +#: src/Module/Settings/Connectors.php:207 msgid "Conversations my follows started or commented on (default)" msgstr "" -#: src/Module/Settings/Connectors.php:218 +#: src/Module/Settings/Connectors.php:208 msgid "Any conversation my follows interacted with, including likes" msgstr "" -#: src/Module/Settings/Connectors.php:221 +#: src/Module/Settings/Connectors.php:211 msgid "Collapse sensitive posts" msgstr "" -#: src/Module/Settings/Connectors.php:221 +#: src/Module/Settings/Connectors.php:211 msgid "" "If a post is marked as \"sensitive\", it will be displayed in a collapsed " "state, if this option is enabled." msgstr "" -#: src/Module/Settings/Connectors.php:222 +#: src/Module/Settings/Connectors.php:212 msgid "Enable intelligent shortening" msgstr "" -#: src/Module/Settings/Connectors.php:222 +#: src/Module/Settings/Connectors.php:212 msgid "" "Normally the system tries to find the best link to add to shortened posts. " "If disabled, every shortened post will always point to the original " "friendica post." msgstr "" -#: src/Module/Settings/Connectors.php:223 +#: src/Module/Settings/Connectors.php:213 msgid "Enable simple text shortening" msgstr "" -#: src/Module/Settings/Connectors.php:223 +#: src/Module/Settings/Connectors.php:213 msgid "" "Normally the system shortens posts at the next line feed. If this option is " "enabled then the system will shorten the text at the maximum character " "limit." msgstr "" -#: src/Module/Settings/Connectors.php:224 +#: src/Module/Settings/Connectors.php:214 msgid "Attach the link title" msgstr "Agregar título del link" -#: src/Module/Settings/Connectors.php:224 +#: src/Module/Settings/Connectors.php:214 msgid "" "When activated, the title of the attached link will be added as a title on " "posts to Diaspora. This is mostly helpful with \"remote-self\" contacts that" " share feed content." msgstr "Si se activa, el título del link se añade como titulo en artículos de Diaspora. Esto es bueno con contactos \"remote-self\" que comparten contenido." -#: src/Module/Settings/Connectors.php:225 +#: src/Module/Settings/Connectors.php:215 msgid "API: Use spoiler field as title" msgstr "" -#: src/Module/Settings/Connectors.php:225 +#: src/Module/Settings/Connectors.php:215 msgid "" "When activated, the \"spoiler_text\" field in the API will be used for the " "title on standalone posts. When deactivated it will be used for spoiler " "text. For comments it will always be used for spoiler text." msgstr "" -#: src/Module/Settings/Connectors.php:226 +#: src/Module/Settings/Connectors.php:216 msgid "API: Automatically links at the end of the post as attached posts" msgstr "" -#: src/Module/Settings/Connectors.php:226 +#: src/Module/Settings/Connectors.php:216 msgid "" "When activated, added links at the end of the post react the same way as " "added links in the web interface." msgstr "" -#: src/Module/Settings/Connectors.php:227 +#: src/Module/Settings/Connectors.php:217 +msgid "Article Mode" +msgstr "" + +#: src/Module/Settings/Connectors.php:217 +msgid "" +"Controls how posts with titles are transmitted. Mastodon and its forks don't" +" display the content of these posts if the post is created in the correct " +"(default) way." +msgstr "" + +#: src/Module/Settings/Connectors.php:218 msgid "Your legacy ActivityPub/GNU Social account" msgstr "" -#: src/Module/Settings/Connectors.php:227 +#: src/Module/Settings/Connectors.php:218 msgid "" "If you enter your old account name from an ActivityPub based system or your " "GNU Social/Statusnet account name here (in the format user@domain.tld), your" " contacts will be added automatically. The field will be emptied when done." msgstr "" -#: src/Module/Settings/Connectors.php:229 -msgid "Repair OStatus subscriptions" -msgstr "Reparar subscripciones OStatus" - -#: src/Module/Settings/Connectors.php:233 +#: src/Module/Settings/Connectors.php:222 msgid "Email/Mailbox Setup" msgstr "Configuración de Correo/Buzón" -#: src/Module/Settings/Connectors.php:234 +#: src/Module/Settings/Connectors.php:223 msgid "" "If you wish to communicate with email contacts using this service " "(optional), please specify how to connect to your mailbox." msgstr "Si quieres comunicarte con contactos de correo con este servicio (opcional), especifica cómo conectar con tu buzón." -#: src/Module/Settings/Connectors.php:235 +#: src/Module/Settings/Connectors.php:224 msgid "Last successful email check:" msgstr "Última comprobación de correo éxitosa:" -#: src/Module/Settings/Connectors.php:237 +#: src/Module/Settings/Connectors.php:226 msgid "IMAP server name:" msgstr "Nombre del servidor IMAP:" -#: src/Module/Settings/Connectors.php:238 +#: src/Module/Settings/Connectors.php:227 msgid "IMAP port:" msgstr "Puerto IMAP:" -#: src/Module/Settings/Connectors.php:239 +#: src/Module/Settings/Connectors.php:228 msgid "Security:" msgstr "Seguridad:" -#: src/Module/Settings/Connectors.php:240 +#: src/Module/Settings/Connectors.php:229 msgid "Email login name:" msgstr "Usuario de Correo:" -#: src/Module/Settings/Connectors.php:241 +#: src/Module/Settings/Connectors.php:230 msgid "Email password:" msgstr "Contraseña de Correo:" -#: src/Module/Settings/Connectors.php:242 +#: src/Module/Settings/Connectors.php:231 msgid "Reply-to address:" msgstr "Dirección de respuesta:" -#: src/Module/Settings/Connectors.php:243 +#: src/Module/Settings/Connectors.php:232 msgid "Send public posts to all email contacts:" msgstr "Enviar notificaciones públicas a todos los correos:" -#: src/Module/Settings/Connectors.php:244 +#: src/Module/Settings/Connectors.php:233 msgid "Action after import:" msgstr "Acción al importar:" -#: src/Module/Settings/Connectors.php:244 +#: src/Module/Settings/Connectors.php:233 msgid "Move to folder" msgstr "Mover a un folder" -#: src/Module/Settings/Connectors.php:245 +#: src/Module/Settings/Connectors.php:234 msgid "Move to folder:" msgstr "Mover al folder:" -#: src/Module/Settings/Delegation.php:73 +#: src/Module/Settings/Delegation.php:59 msgid "Delegation successfully granted." msgstr "Se autorizó delegación." -#: src/Module/Settings/Delegation.php:75 +#: src/Module/Settings/Delegation.php:61 msgid "Parent user not found, unavailable or password doesn't match." msgstr "Usuario padre no encontrado, o no coincide contraseña." -#: src/Module/Settings/Delegation.php:79 +#: src/Module/Settings/Delegation.php:65 msgid "Delegation successfully revoked." msgstr "Delegación revocada con éxito." -#: src/Module/Settings/Delegation.php:98 -#: src/Module/Settings/Delegation.php:120 +#: src/Module/Settings/Delegation.php:84 +#: src/Module/Settings/Delegation.php:106 msgid "" "Delegated administrators can view but not change delegation permissions." msgstr "Administradores delegados pueden ver pero no cambiar permisos delegados." -#: src/Module/Settings/Delegation.php:112 +#: src/Module/Settings/Delegation.php:98 msgid "Delegate user not found." msgstr "Usuario delegado no encontrado." -#: src/Module/Settings/Delegation.php:169 +#: src/Module/Settings/Delegation.php:155 msgid "No parent user" msgstr "No hay usuario padre" -#: src/Module/Settings/Delegation.php:180 -#: src/Module/Settings/Delegation.php:191 +#: src/Module/Settings/Delegation.php:166 +#: src/Module/Settings/Delegation.php:177 msgid "Parent User" msgstr "Usuario Padre" -#: src/Module/Settings/Delegation.php:188 +#: src/Module/Settings/Delegation.php:174 msgid "Additional Accounts" msgstr "Cuentas adicionales" -#: src/Module/Settings/Delegation.php:189 +#: src/Module/Settings/Delegation.php:175 msgid "" "Register additional accounts that are automatically connected to your " "existing account so you can manage them from this account." msgstr "Registre cuentas adicionales que son automáticamente conectadas con tu cuenta existente de forma que puedas manejarlas desde aquí." -#: src/Module/Settings/Delegation.php:190 +#: src/Module/Settings/Delegation.php:176 msgid "Register an additional account" msgstr "Registrar cuenta adicional" -#: src/Module/Settings/Delegation.php:192 +#: src/Module/Settings/Delegation.php:178 msgid "" "Parent users have total control about this account, including the account " "settings. Please double check whom you give this access." msgstr "Usuarios padres tendrán control total en esta cuenta, incluyendo ajustes. Cheque doblemente a quien le das acceso." -#: src/Module/Settings/Delegation.php:195 +#: src/Module/Settings/Delegation.php:181 msgid "Delegates" msgstr "Delegados" -#: src/Module/Settings/Delegation.php:196 +#: src/Module/Settings/Delegation.php:182 msgid "" "Delegates are able to manage all aspects of this account/page except for " "basic account settings. Please do not delegate your personal account to " "anybody that you do not trust completely." msgstr "Los delegados tienen la capacidad de gestionar todos los aspectos de esta cuenta/página, excepto los ajustes básicos de la cuenta. Por favor, no delegues tu cuenta personal a nadie en quien no confíes completamente." -#: src/Module/Settings/Delegation.php:197 +#: src/Module/Settings/Delegation.php:183 msgid "Existing Page Delegates" msgstr "Delegados actuales de la página" -#: src/Module/Settings/Delegation.php:198 +#: src/Module/Settings/Delegation.php:184 msgid "Potential Delegates" msgstr "Delegados potenciales" -#: src/Module/Settings/Delegation.php:199 +#: src/Module/Settings/Delegation.php:185 msgid "No entries." msgstr "Sin entradas." -#: src/Module/Settings/Display.php:183 +#: src/Module/Settings/Display.php:169 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:209 #, php-format msgid "%s - (Unsupported)" msgstr "%s – (No puede usarse)" -#: src/Module/Settings/Display.php:260 +#: src/Module/Settings/Display.php:246 msgid "No preview" msgstr "" -#: src/Module/Settings/Display.php:261 +#: src/Module/Settings/Display.php:247 msgid "No image" msgstr "" -#: src/Module/Settings/Display.php:262 +#: src/Module/Settings/Display.php:248 msgid "Small Image" msgstr "" -#: src/Module/Settings/Display.php:263 +#: src/Module/Settings/Display.php:249 msgid "Large Image" msgstr "" -#: src/Module/Settings/Display.php:308 +#: src/Module/Settings/Display.php:294 msgid "Display Settings" msgstr "Configuración Tema/Visualización" -#: src/Module/Settings/Display.php:310 +#: src/Module/Settings/Display.php:296 msgid "General Theme Settings" msgstr "Ajustes generales de tema" -#: src/Module/Settings/Display.php:311 +#: src/Module/Settings/Display.php:297 msgid "Custom Theme Settings" msgstr "Ajustes personalizados de tema" -#: src/Module/Settings/Display.php:312 +#: src/Module/Settings/Display.php:298 msgid "Content Settings" msgstr "Ajustes de contenido" -#: src/Module/Settings/Display.php:313 view/theme/duepuntozero/config.php:86 -#: view/theme/frio/config.php:151 view/theme/quattro/config.php:88 -#: view/theme/vier/config.php:136 +#: src/Module/Settings/Display.php:299 view/theme/duepuntozero/config.php:74 +#: view/theme/frio/config.php:139 view/theme/quattro/config.php:76 +#: view/theme/vier/config.php:124 msgid "Theme settings" msgstr "Configuración del Tema" -#: src/Module/Settings/Display.php:314 +#: src/Module/Settings/Display.php:300 msgid "Timelines" msgstr "" -#: src/Module/Settings/Display.php:321 +#: src/Module/Settings/Display.php:307 msgid "Display Theme:" msgstr "Utilizar tema:" -#: src/Module/Settings/Display.php:322 +#: src/Module/Settings/Display.php:308 msgid "Mobile Theme:" msgstr "Tema móvil:" -#: src/Module/Settings/Display.php:325 +#: src/Module/Settings/Display.php:311 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:311 src/Module/Settings/Display.php:312 msgid "Maximum of 100 items" msgstr "Máximo 100 elementos" -#: src/Module/Settings/Display.php:326 +#: src/Module/Settings/Display.php:312 msgid "Number of items to display per page when viewed from mobile device:" msgstr "Cantidad de objetos a visualizar cuando se usa un móvil" -#: src/Module/Settings/Display.php:327 +#: src/Module/Settings/Display.php:313 msgid "Update browser every xx seconds" msgstr "Actualizar navegador cada xx segundos" -#: src/Module/Settings/Display.php:327 +#: src/Module/Settings/Display.php:313 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:314 msgid "Display emoticons" msgstr "" -#: src/Module/Settings/Display.php:328 +#: src/Module/Settings/Display.php:314 msgid "When enabled, emoticons are replaced with matching symbols." msgstr "" -#: src/Module/Settings/Display.php:329 +#: src/Module/Settings/Display.php:315 msgid "Infinite scroll" msgstr "Pagina infinita (scroll)" -#: src/Module/Settings/Display.php:329 +#: src/Module/Settings/Display.php:315 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:316 msgid "Enable Smart Threading" msgstr "" -#: src/Module/Settings/Display.php:330 +#: src/Module/Settings/Display.php:316 msgid "Enable the automatic suppression of extraneous thread indentation." msgstr "" -#: src/Module/Settings/Display.php:331 +#: src/Module/Settings/Display.php:317 msgid "Display the Dislike feature" msgstr "" -#: src/Module/Settings/Display.php:331 +#: src/Module/Settings/Display.php:317 msgid "" "Display the Dislike button and dislike reactions on posts and comments." msgstr "" -#: src/Module/Settings/Display.php:332 +#: src/Module/Settings/Display.php:318 msgid "Display the resharer" msgstr "Desplegar reenviar" -#: src/Module/Settings/Display.php:332 +#: src/Module/Settings/Display.php:318 msgid "Display the first resharer as icon and text on a reshared item." msgstr "Desplegar primer reenvío con un icono y texto en artículo reenviado." -#: src/Module/Settings/Display.php:333 +#: src/Module/Settings/Display.php:319 msgid "Stay local" msgstr "Quedarse Local" -#: src/Module/Settings/Display.php:333 +#: src/Module/Settings/Display.php:319 msgid "Don't go to a remote system when following a contact link." msgstr "No ir a sistema remoto cuando siga a un link de un contacto." -#: src/Module/Settings/Display.php:334 +#: src/Module/Settings/Display.php:320 msgid "Show the post deletion checkbox" msgstr "" -#: src/Module/Settings/Display.php:334 +#: src/Module/Settings/Display.php:320 msgid "Display the checkbox for the post deletion on the network page." msgstr "" -#: src/Module/Settings/Display.php:335 +#: src/Module/Settings/Display.php:321 msgid "DIsplay the event list" msgstr "" -#: src/Module/Settings/Display.php:335 +#: src/Module/Settings/Display.php:321 msgid "Display the birthday reminder and event list on the network page." msgstr "" -#: src/Module/Settings/Display.php:336 +#: src/Module/Settings/Display.php:322 msgid "Link preview mode" msgstr "" -#: src/Module/Settings/Display.php:336 +#: src/Module/Settings/Display.php:322 msgid "Appearance of the link preview that is added to each post with a link." msgstr "" -#: src/Module/Settings/Display.php:341 +#: src/Module/Settings/Display.php:327 msgid "Bookmark" msgstr "" -#: src/Module/Settings/Display.php:343 +#: src/Module/Settings/Display.php:329 msgid "" "Enable timelines that you want to see in the channels widget. Bookmark " "timelines that you want to see in the top menu." msgstr "" -#: src/Module/Settings/Display.php:345 +#: src/Module/Settings/Display.php:331 msgid "Channel languages:" msgstr "" -#: src/Module/Settings/Display.php:345 +#: src/Module/Settings/Display.php:331 msgid "Select all languages that you want to see in your channels." msgstr "" -#: src/Module/Settings/Display.php:347 +#: src/Module/Settings/Display.php:333 msgid "Beginning of week:" msgstr "Principio de la semana:" -#: src/Module/Settings/Display.php:348 +#: src/Module/Settings/Display.php:334 msgid "Default calendar view:" msgstr "" -#: src/Module/Settings/Features.php:73 +#: src/Module/Settings/Features.php:59 msgid "Additional Features" msgstr "Opciones Adicionales" -#: src/Module/Settings/OAuth.php:71 +#: src/Module/Settings/OAuth.php:57 msgid "Connected Apps" msgstr "Aplicaciones conectadas" -#: src/Module/Settings/OAuth.php:75 +#: src/Module/Settings/OAuth.php:61 msgid "Remove authorization" msgstr "Quitar autorización" -#: src/Module/Settings/Profile/Index.php:116 +#: src/Module/Settings/Profile/Index.php:102 msgid "Display Name is required." msgstr "" -#: src/Module/Settings/Profile/Index.php:167 +#: src/Module/Settings/Profile/Index.php:156 msgid "Profile couldn't be updated." msgstr "No puede actualizarse perfil." -#: src/Module/Settings/Profile/Index.php:205 -#: src/Module/Settings/Profile/Index.php:226 +#: src/Module/Settings/Profile/Index.php:196 +#: src/Module/Settings/Profile/Index.php:217 msgid "Label:" msgstr "Etiqueta:" -#: src/Module/Settings/Profile/Index.php:206 -#: src/Module/Settings/Profile/Index.php:227 +#: src/Module/Settings/Profile/Index.php:197 +#: src/Module/Settings/Profile/Index.php:218 msgid "Value:" msgstr "Valor:" -#: src/Module/Settings/Profile/Index.php:217 -#: src/Module/Settings/Profile/Index.php:238 +#: src/Module/Settings/Profile/Index.php:208 +#: src/Module/Settings/Profile/Index.php:229 msgid "Field Permissions" msgstr "Permisos del campo" -#: src/Module/Settings/Profile/Index.php:218 -#: src/Module/Settings/Profile/Index.php:239 +#: src/Module/Settings/Profile/Index.php:209 +#: src/Module/Settings/Profile/Index.php:230 msgid "(click to open/close)" msgstr "(pulsa para abrir/cerrar)" -#: src/Module/Settings/Profile/Index.php:224 +#: src/Module/Settings/Profile/Index.php:215 msgid "Add a new profile field" msgstr "Añadir campo de perfil" -#: src/Module/Settings/Profile/Index.php:247 +#: src/Module/Settings/Profile/Index.php:238 msgid "" "The homepage is verified. A rel=\"me\" link back to your Friendica profile " "page was found on the homepage." msgstr "" -#: src/Module/Settings/Profile/Index.php:249 +#: src/Module/Settings/Profile/Index.php:240 #, php-format msgid "" "To verify your homepage, add a rel=\"me\" link to it, pointing to your " "profile URL (%s)." msgstr "" -#: src/Module/Settings/Profile/Index.php:255 +#: src/Module/Settings/Profile/Index.php:246 msgid "Profile Actions" msgstr "Acciones de perfil" -#: src/Module/Settings/Profile/Index.php:256 +#: src/Module/Settings/Profile/Index.php:247 msgid "Edit Profile Details" msgstr "Editar detalles de tu perfil" -#: src/Module/Settings/Profile/Index.php:258 +#: src/Module/Settings/Profile/Index.php:249 msgid "Change Profile Photo" msgstr "Cambiar imagen del Perfil" -#: src/Module/Settings/Profile/Index.php:261 +#: src/Module/Settings/Profile/Index.php:252 msgid "Profile picture" msgstr "Imagen del perfil" -#: src/Module/Settings/Profile/Index.php:262 +#: src/Module/Settings/Profile/Index.php:253 msgid "Location" msgstr "Ubicación" -#: src/Module/Settings/Profile/Index.php:263 src/Util/Temporal.php:97 -#: src/Util/Temporal.php:99 +#: src/Module/Settings/Profile/Index.php:254 src/Util/Temporal.php:83 +#: src/Util/Temporal.php:85 msgid "Miscellaneous" msgstr "Varios" -#: src/Module/Settings/Profile/Index.php:264 +#: src/Module/Settings/Profile/Index.php:255 msgid "Custom Profile Fields" msgstr "Campos personalizados de perfil" -#: src/Module/Settings/Profile/Index.php:265 src/Module/Welcome.php:58 +#: src/Module/Settings/Profile/Index.php:256 src/Module/Welcome.php:44 msgid "Upload Profile Photo" msgstr "Subir foto del Perfil" -#: src/Module/Settings/Profile/Index.php:266 +#: src/Module/Settings/Profile/Index.php:257 #, php-format msgid "" "

Custom fields appear on your profile page.

\n" @@ -11013,396 +11020,396 @@ msgid "" "\t\t\t\t

Non-public fields can only be seen by the selected Friendica contacts or the Friendica contacts in the selected circles.

" msgstr "" -#: src/Module/Settings/Profile/Index.php:286 +#: src/Module/Settings/Profile/Index.php:277 msgid "Street Address:" msgstr "Dirección" -#: src/Module/Settings/Profile/Index.php:287 +#: src/Module/Settings/Profile/Index.php:278 msgid "Locality/City:" msgstr "Localidad/Ciudad:" -#: src/Module/Settings/Profile/Index.php:288 +#: src/Module/Settings/Profile/Index.php:279 msgid "Region/State:" msgstr "Región/Estado:" -#: src/Module/Settings/Profile/Index.php:289 +#: src/Module/Settings/Profile/Index.php:280 msgid "Postal/Zip Code:" msgstr "Código/Zona postal:" -#: src/Module/Settings/Profile/Index.php:290 +#: src/Module/Settings/Profile/Index.php:281 msgid "Country:" msgstr "País" -#: src/Module/Settings/Profile/Index.php:292 +#: src/Module/Settings/Profile/Index.php:283 msgid "XMPP (Jabber) address:" msgstr "Dirección XMPP (Jabber):" -#: src/Module/Settings/Profile/Index.php:292 +#: src/Module/Settings/Profile/Index.php:283 msgid "" "The XMPP address will be published so that people can follow you there." msgstr "" -#: src/Module/Settings/Profile/Index.php:293 +#: src/Module/Settings/Profile/Index.php:284 msgid "Matrix (Element) address:" msgstr "" -#: src/Module/Settings/Profile/Index.php:293 +#: src/Module/Settings/Profile/Index.php:284 msgid "" "The Matrix address will be published so that people can follow you there." msgstr "" -#: src/Module/Settings/Profile/Index.php:294 +#: src/Module/Settings/Profile/Index.php:285 msgid "Homepage URL:" msgstr "Dirección de tu página:" -#: src/Module/Settings/Profile/Index.php:295 +#: src/Module/Settings/Profile/Index.php:286 msgid "Public Keywords:" msgstr "Palabras clave públicas:" -#: src/Module/Settings/Profile/Index.php:295 +#: src/Module/Settings/Profile/Index.php:286 msgid "(Used for suggesting potential friends, can be seen by others)" msgstr "(Utilizadas para sugerir amigos potenciales, otros pueden verlo)" -#: src/Module/Settings/Profile/Index.php:296 +#: src/Module/Settings/Profile/Index.php:287 msgid "Private Keywords:" msgstr "Palabras clave privadas:" -#: src/Module/Settings/Profile/Index.php:296 +#: src/Module/Settings/Profile/Index.php:287 msgid "(Used for searching profiles, never shown to others)" 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:100 +#: src/Module/Settings/Profile/Photo/Crop.php:93 +#: src/Module/Settings/Profile/Photo/Crop.php:111 +#: src/Module/Settings/Profile/Photo/Crop.php:129 +#: src/Module/Settings/Profile/Photo/Index.php:86 #, php-format msgid "Image size reduction [%s] failed." msgstr "Ha fallado la reducción de las dimensiones de la imagen [%s]." -#: src/Module/Settings/Profile/Photo/Crop.php:150 +#: src/Module/Settings/Profile/Photo/Crop.php:136 msgid "" "Shift-reload the page or clear browser cache if the new photo does not " "display immediately." msgstr "Recarga la página o limpia la caché del navegador si la foto nueva no aparece inmediatamente." -#: src/Module/Settings/Profile/Photo/Crop.php:155 +#: src/Module/Settings/Profile/Photo/Crop.php:141 msgid "Unable to process image" msgstr "Imposible procesar la imagen" -#: src/Module/Settings/Profile/Photo/Crop.php:174 +#: src/Module/Settings/Profile/Photo/Crop.php:160 msgid "Photo not found." msgstr "No se encontró foto." -#: src/Module/Settings/Profile/Photo/Crop.php:196 +#: src/Module/Settings/Profile/Photo/Crop.php:182 msgid "Profile picture successfully updated." msgstr "Foto de perfil actualizado." -#: src/Module/Settings/Profile/Photo/Crop.php:222 -#: src/Module/Settings/Profile/Photo/Crop.php:226 +#: src/Module/Settings/Profile/Photo/Crop.php:208 +#: src/Module/Settings/Profile/Photo/Crop.php:212 msgid "Crop Image" msgstr "Recortar imagen" -#: src/Module/Settings/Profile/Photo/Crop.php:223 +#: src/Module/Settings/Profile/Photo/Crop.php:209 msgid "Please adjust the image cropping for optimum viewing." msgstr "Por favor, ajusta el recorte de la imagen para optimizarla." -#: src/Module/Settings/Profile/Photo/Crop.php:225 +#: src/Module/Settings/Profile/Photo/Crop.php:211 msgid "Use Image As Is" msgstr "Usar imagen como esta" -#: src/Module/Settings/Profile/Photo/Index.php:46 +#: src/Module/Settings/Profile/Photo/Index.php:32 msgid "Missing uploaded image." msgstr "Falta la imágen subida" -#: src/Module/Settings/Profile/Photo/Index.php:123 +#: src/Module/Settings/Profile/Photo/Index.php:109 msgid "Profile Picture Settings" msgstr "Ajustes de Foto del Perfil" -#: src/Module/Settings/Profile/Photo/Index.php:124 +#: src/Module/Settings/Profile/Photo/Index.php:110 msgid "Current Profile Picture" msgstr "Foto de Perfil Actual" -#: src/Module/Settings/Profile/Photo/Index.php:125 +#: src/Module/Settings/Profile/Photo/Index.php:111 msgid "Upload Profile Picture" msgstr "Subir foto del Perfil" -#: src/Module/Settings/Profile/Photo/Index.php:126 +#: src/Module/Settings/Profile/Photo/Index.php:112 msgid "Upload Picture:" msgstr "Subir foto:" -#: src/Module/Settings/Profile/Photo/Index.php:131 +#: src/Module/Settings/Profile/Photo/Index.php:117 msgid "or" msgstr "o" -#: src/Module/Settings/Profile/Photo/Index.php:133 +#: src/Module/Settings/Profile/Photo/Index.php:119 msgid "skip this step" msgstr "saltar este paso" -#: src/Module/Settings/Profile/Photo/Index.php:135 +#: src/Module/Settings/Profile/Photo/Index.php:121 msgid "select a photo from your photo albums" msgstr "elige una foto de tus álbumes" -#: src/Module/Settings/RemoveMe.php:76 +#: src/Module/Settings/RemoveMe.php:62 msgid "" "There was a validation error, please make sure you're logged in with the " "account you want to remove and try again." msgstr "" -#: src/Module/Settings/RemoveMe.php:76 +#: src/Module/Settings/RemoveMe.php:62 msgid "If this error persists, please contact your administrator." msgstr "" -#: src/Module/Settings/RemoveMe.php:90 -#: src/Navigation/Notifications/Repository/Notify.php:471 -#: src/Navigation/Notifications/Repository/Notify.php:492 +#: src/Module/Settings/RemoveMe.php:76 +#: src/Navigation/Notifications/Repository/Notify.php:457 +#: src/Navigation/Notifications/Repository/Notify.php:478 msgid "[Friendica System Notify]" msgstr "[Friendica Sistema de Notificaciones]" -#: src/Module/Settings/RemoveMe.php:90 +#: src/Module/Settings/RemoveMe.php:76 msgid "User deleted their account" msgstr "Usuario borró su cienta" -#: src/Module/Settings/RemoveMe.php:91 +#: src/Module/Settings/RemoveMe.php:77 msgid "" "On your Friendica node an user deleted their account. Please ensure that " "their data is removed from the backups." msgstr "En tu nodo de Friendica, un usuario eliminó su cuenta. Asegúrese de quesus datos se eliminan de los respaldos." -#: src/Module/Settings/RemoveMe.php:92 +#: src/Module/Settings/RemoveMe.php:78 #, php-format msgid "The user id is %d" msgstr "El Id de Usuario es %d" -#: src/Module/Settings/RemoveMe.php:105 +#: src/Module/Settings/RemoveMe.php:91 msgid "Your account has been successfully removed. Bye bye!" msgstr "" -#: src/Module/Settings/RemoveMe.php:130 +#: src/Module/Settings/RemoveMe.php:116 msgid "Remove My Account" msgstr "Eliminar mi cuenta" -#: src/Module/Settings/RemoveMe.php:131 +#: src/Module/Settings/RemoveMe.php:117 msgid "" "This will completely remove your account. Once this has been done it is not " "recoverable." msgstr "Esto eliminará por completo tu cuenta. Una vez hecho no puede deshacerse." -#: src/Module/Settings/RemoveMe.php:136 +#: src/Module/Settings/RemoveMe.php:122 msgid "Please enter your password for verification:" msgstr "Introduce tu contraseña para verificación:" -#: src/Module/Settings/Server/Action.php:60 +#: src/Module/Settings/Server/Action.php:46 msgid "Do you want to ignore this server?" msgstr "" -#: src/Module/Settings/Server/Action.php:64 +#: src/Module/Settings/Server/Action.php:50 msgid "Do you want to unignore this server?" msgstr "" -#: src/Module/Settings/Server/Action.php:74 -#: src/Module/Settings/Server/Index.php:104 +#: src/Module/Settings/Server/Action.php:60 +#: src/Module/Settings/Server/Index.php:90 msgid "Remote server settings" msgstr "" -#: src/Module/Settings/Server/Action.php:77 +#: src/Module/Settings/Server/Action.php:63 msgid "Server URL" msgstr "" -#: src/Module/Settings/Server/Index.php:78 +#: src/Module/Settings/Server/Index.php:64 msgid "Settings saved" msgstr "" -#: src/Module/Settings/Server/Index.php:105 +#: src/Module/Settings/Server/Index.php:91 msgid "" "Here you can find all the remote servers you have taken individual " "moderation actions against. For a list of servers your node has blocked, " "please check out the Information page." msgstr "" -#: src/Module/Settings/Server/Index.php:110 +#: src/Module/Settings/Server/Index.php:96 msgid "Delete all your settings for the remote server" msgstr "" -#: src/Module/Settings/Server/Index.php:111 +#: src/Module/Settings/Server/Index.php:97 msgid "Save changes" msgstr "" -#: src/Module/Settings/TwoFactor/AppSpecific.php:69 -#: src/Module/Settings/TwoFactor/Recovery.php:67 -#: src/Module/Settings/TwoFactor/Trusted.php:70 -#: src/Module/Settings/TwoFactor/Verify.php:72 +#: src/Module/Settings/TwoFactor/AppSpecific.php:55 +#: src/Module/Settings/TwoFactor/Recovery.php:53 +#: src/Module/Settings/TwoFactor/Trusted.php:56 +#: src/Module/Settings/TwoFactor/Verify.php:58 msgid "Please enter your password to access this page." msgstr "Ingresa tu contraseña para acceder a la página." -#: src/Module/Settings/TwoFactor/AppSpecific.php:87 +#: src/Module/Settings/TwoFactor/AppSpecific.php:73 msgid "App-specific password generation failed: The description is empty." msgstr "Generación de Contraseña de la App fallida: Sin explicación" -#: src/Module/Settings/TwoFactor/AppSpecific.php:90 +#: src/Module/Settings/TwoFactor/AppSpecific.php:76 msgid "" "App-specific password generation failed: This description already exists." msgstr "Generación de contraseña de App fallida: Ya existe descripción." -#: src/Module/Settings/TwoFactor/AppSpecific.php:94 +#: src/Module/Settings/TwoFactor/AppSpecific.php:80 msgid "New app-specific password generated." msgstr "Nueva contraseña de la App generada." -#: src/Module/Settings/TwoFactor/AppSpecific.php:100 +#: src/Module/Settings/TwoFactor/AppSpecific.php:86 msgid "App-specific passwords successfully revoked." msgstr "Contraseñas de la App fueron revocadas." -#: src/Module/Settings/TwoFactor/AppSpecific.php:110 +#: src/Module/Settings/TwoFactor/AppSpecific.php:96 msgid "App-specific password successfully revoked." msgstr "Contraseña de la App revocada." -#: src/Module/Settings/TwoFactor/AppSpecific.php:131 +#: src/Module/Settings/TwoFactor/AppSpecific.php:117 msgid "Two-factor app-specific passwords" msgstr "Contraseña de la App de 2 Factores" -#: src/Module/Settings/TwoFactor/AppSpecific.php:133 +#: src/Module/Settings/TwoFactor/AppSpecific.php:119 msgid "" "

App-specific passwords are randomly generated passwords used instead your" " regular password to authenticate your account on third-party applications " "that don't support two-factor authentication.

" msgstr "

Contraseñas de la App son contraseñas aleatorias que se usan en lugar de la contraseña normal para autenticarte usando Apps de 3ras compañías que no soportan autenticación de 2 factores.

" -#: src/Module/Settings/TwoFactor/AppSpecific.php:134 +#: src/Module/Settings/TwoFactor/AppSpecific.php:120 msgid "" "Make sure to copy your new app-specific password now. You won’t be able to " "see it again!" msgstr "Asegurate de copiar tu contraseña de la App ahora. No podrás verla de nuevo!" -#: src/Module/Settings/TwoFactor/AppSpecific.php:138 +#: src/Module/Settings/TwoFactor/AppSpecific.php:124 msgid "Last Used" msgstr "Usada desde" -#: src/Module/Settings/TwoFactor/AppSpecific.php:139 +#: src/Module/Settings/TwoFactor/AppSpecific.php:125 msgid "Revoke" msgstr "Revocar" -#: src/Module/Settings/TwoFactor/AppSpecific.php:140 +#: src/Module/Settings/TwoFactor/AppSpecific.php:126 msgid "Revoke All" msgstr "Revocar todo" -#: src/Module/Settings/TwoFactor/AppSpecific.php:143 +#: src/Module/Settings/TwoFactor/AppSpecific.php:129 msgid "" "When you generate a new app-specific password, you must use it right away, " "it will be shown to you once after you generate it." msgstr "Cuando generas nueva contraseña de la App, debes verla de inmediato, se te mostrará solo una vez cuando la generes." -#: src/Module/Settings/TwoFactor/AppSpecific.php:144 +#: src/Module/Settings/TwoFactor/AppSpecific.php:130 msgid "Generate new app-specific password" msgstr "Generar nueva contraseña de la App" -#: src/Module/Settings/TwoFactor/AppSpecific.php:145 +#: src/Module/Settings/TwoFactor/AppSpecific.php:131 msgid "Friendiqa on my Fairphone 2..." msgstr "Friendica en mimóvil 2" -#: src/Module/Settings/TwoFactor/AppSpecific.php:146 +#: src/Module/Settings/TwoFactor/AppSpecific.php:132 msgid "Generate" msgstr "Generar" -#: src/Module/Settings/TwoFactor/Index.php:88 +#: src/Module/Settings/TwoFactor/Index.php:74 msgid "Two-factor authentication successfully disabled." msgstr "La autenticación de dos factores se ha desactivado correctamente." -#: src/Module/Settings/TwoFactor/Index.php:141 +#: src/Module/Settings/TwoFactor/Index.php:127 msgid "" "

Use an application on a mobile device to get two-factor authentication " "codes when prompted on login.

" msgstr "

Usa una aplicación en un móvil para obtener códigos de autentificación de 2 factores cuando ingreses.

" -#: src/Module/Settings/TwoFactor/Index.php:145 +#: src/Module/Settings/TwoFactor/Index.php:131 msgid "Authenticator app" msgstr "Autenticador" -#: src/Module/Settings/TwoFactor/Index.php:146 +#: src/Module/Settings/TwoFactor/Index.php:132 msgid "Configured" msgstr "Configurado" -#: src/Module/Settings/TwoFactor/Index.php:146 +#: src/Module/Settings/TwoFactor/Index.php:132 msgid "Not Configured" msgstr "Sin configurar" -#: src/Module/Settings/TwoFactor/Index.php:147 +#: src/Module/Settings/TwoFactor/Index.php:133 msgid "

You haven't finished configuring your authenticator app.

" msgstr "

No has concluido de configurar tu app Autentificador.

" -#: src/Module/Settings/TwoFactor/Index.php:148 +#: src/Module/Settings/TwoFactor/Index.php:134 msgid "

Your authenticator app is correctly configured.

" msgstr "

Tu autenticador está configurado correctamente.

" -#: src/Module/Settings/TwoFactor/Index.php:150 +#: src/Module/Settings/TwoFactor/Index.php:136 msgid "Recovery codes" msgstr "Códigos de recuperación" -#: src/Module/Settings/TwoFactor/Index.php:151 +#: src/Module/Settings/TwoFactor/Index.php:137 msgid "Remaining valid codes" msgstr "Códigos válidos restantes" -#: src/Module/Settings/TwoFactor/Index.php:153 +#: src/Module/Settings/TwoFactor/Index.php:139 msgid "" "

These one-use codes can replace an authenticator app code in case you " "have lost access to it.

" msgstr "

Estos códigos de una sola vez pueden reemplazar la app Autenticador si perdieras acceso a ella.

" -#: src/Module/Settings/TwoFactor/Index.php:155 +#: src/Module/Settings/TwoFactor/Index.php:141 msgid "App-specific passwords" msgstr "Contraseñas específicas de la App" -#: src/Module/Settings/TwoFactor/Index.php:156 +#: src/Module/Settings/TwoFactor/Index.php:142 msgid "Generated app-specific passwords" msgstr "Generadas contraseñas específicas de App" -#: src/Module/Settings/TwoFactor/Index.php:158 +#: src/Module/Settings/TwoFactor/Index.php:144 msgid "" "

These randomly generated passwords allow you to authenticate on apps not " "supporting two-factor authentication.

" msgstr "

Estas contraseñas generadas automáticamente te permiten entrar con apps que no permitan Autenticación de 2 factores.

" -#: src/Module/Settings/TwoFactor/Index.php:161 +#: src/Module/Settings/TwoFactor/Index.php:147 msgid "Current password:" msgstr "Contraseña actual" -#: src/Module/Settings/TwoFactor/Index.php:161 +#: src/Module/Settings/TwoFactor/Index.php:147 msgid "" "You need to provide your current password to change two-factor " "authentication settings." msgstr "necesitas tu contraseña actual para cambiar los ajustes de autenticación de 2 factores." -#: src/Module/Settings/TwoFactor/Index.php:162 +#: src/Module/Settings/TwoFactor/Index.php:148 msgid "Enable two-factor authentication" msgstr "Habilitar Autenticación de 2 factores" -#: src/Module/Settings/TwoFactor/Index.php:163 +#: src/Module/Settings/TwoFactor/Index.php:149 msgid "Disable two-factor authentication" msgstr "Deshabilitar Autenticación de 2 factores" -#: src/Module/Settings/TwoFactor/Index.php:164 +#: src/Module/Settings/TwoFactor/Index.php:150 msgid "Show recovery codes" msgstr "Mostrar códigos de recuperación" -#: src/Module/Settings/TwoFactor/Index.php:165 +#: src/Module/Settings/TwoFactor/Index.php:151 msgid "Manage app-specific passwords" msgstr "Administrar contraseñas de la app" -#: src/Module/Settings/TwoFactor/Index.php:166 +#: src/Module/Settings/TwoFactor/Index.php:152 msgid "Manage trusted browsers" msgstr "Administrar navegadores confiables" -#: src/Module/Settings/TwoFactor/Index.php:167 +#: src/Module/Settings/TwoFactor/Index.php:153 msgid "Finish app configuration" msgstr "Completar configuración de la App" -#: src/Module/Settings/TwoFactor/Recovery.php:83 +#: src/Module/Settings/TwoFactor/Recovery.php:69 msgid "New recovery codes successfully generated." msgstr "Nuevos códigos de recuperación generados." -#: src/Module/Settings/TwoFactor/Recovery.php:109 +#: src/Module/Settings/TwoFactor/Recovery.php:95 msgid "Two-factor recovery codes" msgstr "Códigos de recuperación de 2 factores" -#: src/Module/Settings/TwoFactor/Recovery.php:111 +#: src/Module/Settings/TwoFactor/Recovery.php:97 msgid "" "

Recovery codes can be used to access your account in the event you lose " "access to your device and cannot receive two-factor authentication " @@ -11411,68 +11418,68 @@ msgid "" "account.

" msgstr "

Puedes usar los códigos de recuperación si perdieras acceso al móvil y no pudieras recibir códigos de autenticación de 2 Factores.

Guarda esto de manera segura! Si perdieras tu móvil sin tener los códigos de recuperación perderías el acceso a tu cuenta.

" -#: src/Module/Settings/TwoFactor/Recovery.php:113 +#: src/Module/Settings/TwoFactor/Recovery.php:99 msgid "" "When you generate new recovery codes, you must copy the new codes. Your old " "codes won’t work anymore." msgstr "Cuando generas nuevos códigos de recuperación, debes copiar los nuevos códigos. los anteriores ya no funcionarán." -#: src/Module/Settings/TwoFactor/Recovery.php:114 +#: src/Module/Settings/TwoFactor/Recovery.php:100 msgid "Generate new recovery codes" msgstr "Generar nuevos códigos de recuperación" -#: src/Module/Settings/TwoFactor/Recovery.php:116 +#: src/Module/Settings/TwoFactor/Recovery.php:102 msgid "Next: Verification" msgstr "Siguiente: Verificación" -#: src/Module/Settings/TwoFactor/Trusted.php:87 +#: src/Module/Settings/TwoFactor/Trusted.php:73 msgid "Trusted browsers successfully removed." msgstr "Los navegadores de confianza se eliminaron correctamente." -#: src/Module/Settings/TwoFactor/Trusted.php:97 +#: src/Module/Settings/TwoFactor/Trusted.php:83 msgid "Trusted browser successfully removed." msgstr "Navegador de confianza se eliminó correctamente." -#: src/Module/Settings/TwoFactor/Trusted.php:139 +#: src/Module/Settings/TwoFactor/Trusted.php:125 msgid "Two-factor Trusted Browsers" msgstr "Navegadores de confianza de dos factores" -#: src/Module/Settings/TwoFactor/Trusted.php:140 +#: src/Module/Settings/TwoFactor/Trusted.php:126 msgid "" "Trusted browsers are individual browsers you chose to skip two-factor " "authentication to access Friendica. Please use this feature sparingly, as it" " can negate the benefit of two-factor authentication." msgstr "Los navegadores de confianza son navegadores individuales que eligió para omitir la autenticación de dos factores para acceder a Friendica. Utilice esta función con moderación, ya que puede anular el beneficio de la autenticación de dos factores." -#: src/Module/Settings/TwoFactor/Trusted.php:141 +#: src/Module/Settings/TwoFactor/Trusted.php:127 msgid "Device" msgstr "Dispositivo" -#: src/Module/Settings/TwoFactor/Trusted.php:142 +#: src/Module/Settings/TwoFactor/Trusted.php:128 msgid "OS" msgstr "OS/SO" -#: src/Module/Settings/TwoFactor/Trusted.php:144 +#: src/Module/Settings/TwoFactor/Trusted.php:130 msgid "Trusted" msgstr "Confiable" -#: src/Module/Settings/TwoFactor/Trusted.php:145 +#: src/Module/Settings/TwoFactor/Trusted.php:131 msgid "Created At" msgstr "" -#: src/Module/Settings/TwoFactor/Trusted.php:146 +#: src/Module/Settings/TwoFactor/Trusted.php:132 msgid "Last Use" msgstr "Usada desde" -#: src/Module/Settings/TwoFactor/Trusted.php:148 +#: src/Module/Settings/TwoFactor/Trusted.php:134 msgid "Remove All" msgstr "Borrar todo" -#: src/Module/Settings/TwoFactor/Verify.php:94 +#: src/Module/Settings/TwoFactor/Verify.php:80 msgid "Two-factor authentication successfully activated." msgstr "Se activó autenticación de 2 Factores." -#: src/Module/Settings/TwoFactor/Verify.php:128 +#: src/Module/Settings/TwoFactor/Verify.php:114 #, php-format msgid "" "

Or you can submit the authentication settings manually:

\n" @@ -11492,105 +11499,105 @@ msgid "" "" msgstr "

O puedes ajustar manualmente la autenticación:

\n
\n\t
Solicitante
\n\t
%s
\n\t
Cuenta
\n\t
%s
\n\t
Clave Secreta
\n\t
%s
\n\t
Tipo
\n\t
Basado en tiempo
\n\t
No. dígitos
\n\t
6
\n\t
Algoritmo de encriptación
\n\t
SHA-1
\n
" -#: src/Module/Settings/TwoFactor/Verify.php:148 +#: src/Module/Settings/TwoFactor/Verify.php:134 msgid "Two-factor code verification" msgstr "Verificación de código de 2 Factores" -#: src/Module/Settings/TwoFactor/Verify.php:150 +#: src/Module/Settings/TwoFactor/Verify.php:136 msgid "" "

Please scan this QR Code with your authenticator app and submit the " "provided code.

" msgstr "

Escanee este código QR con su aplicación de autenticación y envíe el código proporcionado.

" -#: src/Module/Settings/TwoFactor/Verify.php:152 +#: src/Module/Settings/TwoFactor/Verify.php:138 #, php-format msgid "" "

Or you can open the following URL in your mobile device:

%s

" msgstr "

O puede abrir la siguiente URL en su dispositivo móvil:

%s

" -#: src/Module/Settings/TwoFactor/Verify.php:159 +#: src/Module/Settings/TwoFactor/Verify.php:145 msgid "Verify code and enable two-factor authentication" msgstr "Verifica código y habilita autenticación de 2 Factores" -#: src/Module/Settings/UserExport.php:90 +#: src/Module/Settings/UserExport.php:76 msgid "Export account" msgstr "Exportar cuenta" -#: src/Module/Settings/UserExport.php:90 +#: src/Module/Settings/UserExport.php:76 msgid "" "Export your account info and contacts. Use this to make a backup of your " "account and/or to move it to another server." msgstr "Exporta la información de tu cuenta y tus contactos. Úsalo para guardar una copia de seguridad de tu cuenta y/o moverla a otro servidor." -#: src/Module/Settings/UserExport.php:91 +#: src/Module/Settings/UserExport.php:77 msgid "Export all" msgstr "Exportar todo" -#: src/Module/Settings/UserExport.php:91 +#: src/Module/Settings/UserExport.php:77 msgid "" "Export your account info, contacts and all your items as json. Could be a " "very big file, and could take a lot of time. Use this to make a full backup " "of your account (photos are not exported)" msgstr "Exportar tu info de cuenta, contactos y artículos en formato JSON. Podría ser un archivo grande, y tomar mucho tiempo. Solo usalo para respaldo completo de tu cuenta (fotos no se exportan)" -#: src/Module/Settings/UserExport.php:92 +#: src/Module/Settings/UserExport.php:78 msgid "Export Contacts to CSV" msgstr "Exportar Contactos como archivo CSV" -#: src/Module/Settings/UserExport.php:92 +#: src/Module/Settings/UserExport.php:78 msgid "" "Export the list of the accounts you are following as CSV file. Compatible to" " e.g. Mastodon." msgstr "Exportar la lista de cuentas que sigues como archivo CSV. Compatible con ej. Mastodon." -#: src/Module/Special/DisplayNotFound.php:35 +#: src/Module/Special/DisplayNotFound.php:21 msgid "The top-level post isn't visible." msgstr "" -#: src/Module/Special/DisplayNotFound.php:36 +#: src/Module/Special/DisplayNotFound.php:22 msgid "The top-level post was deleted." msgstr "" -#: src/Module/Special/DisplayNotFound.php:37 +#: src/Module/Special/DisplayNotFound.php:23 msgid "" "This node has blocked the top-level author or the author of the shared post." msgstr "" -#: src/Module/Special/DisplayNotFound.php:38 +#: src/Module/Special/DisplayNotFound.php:24 msgid "" "You have ignored or blocked the top-level author or the author of the shared" " post." msgstr "" -#: src/Module/Special/DisplayNotFound.php:39 +#: src/Module/Special/DisplayNotFound.php:25 msgid "" "You have ignored the top-level author's server or the shared post author's " "server." msgstr "" -#: src/Module/Special/DisplayNotFound.php:45 +#: src/Module/Special/DisplayNotFound.php:31 msgid "Conversation Not Found" msgstr "" -#: src/Module/Special/DisplayNotFound.php:46 +#: src/Module/Special/DisplayNotFound.php:32 msgid "Unfortunately, the requested conversation isn't available to you." msgstr "" -#: src/Module/Special/DisplayNotFound.php:47 +#: src/Module/Special/DisplayNotFound.php:33 msgid "Possible reasons include:" msgstr "" -#: src/Module/Special/HTTPException.php:78 +#: src/Module/Special/HTTPException.php:64 msgid "Stack trace:" msgstr "Seguimiento de pila:" -#: src/Module/Special/HTTPException.php:83 +#: src/Module/Special/HTTPException.php:69 #, php-format msgid "Exception thrown in %s:%d" msgstr "Excepción lanzada en %s:%d" -#: src/Module/Tos.php:58 src/Module/Tos.php:107 +#: src/Module/Tos.php:44 src/Module/Tos.php:93 msgid "" "At the time of registration, and for providing communications between the " "user account and their contacts, the user has to provide a display name (pen" @@ -11603,14 +11610,14 @@ msgid "" "settings, it is not necessary for communication." msgstr "En el momento del registro, y para proporcionar comunicaciones entre la cuenta de usuario y sus contactos, el usuario debe proporcionar un nombre para mostrar (seudónimo), un nombre de usuario (apodo) y una dirección de correo que funcione. Los nombres seran visibles en tu página de perfil de la cuenta por cualquier visitante de la página, incluso si no se muestran otros detalles del perfil. La dirección de correo solo se usará para enviar notificaciones al usuario sobre interacciones, pero no será visible. La lista de una cuenta en el directorio de usuarios del nodo o el directorio de usuarios global es opcional y se puede controlar en los Ajustes de Configuración, no es necesario para la comunicación." -#: src/Module/Tos.php:59 src/Module/Tos.php:108 +#: src/Module/Tos.php:45 src/Module/Tos.php:94 msgid "" "This data is required for communication and is passed on to the nodes of the" " communication partners and is stored there. Users can enter additional " "private data that may be transmitted to the communication partners accounts." msgstr "Estos datos son necesarios para la comunicación y se transmiten a los nodos de los socios de comunicación y se almacena allí. Los usuarios pueden ingresar datos privados que pueden ser transmitidos a las cuentas de los socios de comunicación." -#: src/Module/Tos.php:60 src/Module/Tos.php:109 +#: src/Module/Tos.php:46 src/Module/Tos.php:95 #, php-format msgid "" "At any point in time a logged in user can export their account data from the" @@ -11621,98 +11628,98 @@ msgid "" "from the nodes of the communication partners." msgstr "" -#: src/Module/Tos.php:63 src/Module/Tos.php:106 +#: src/Module/Tos.php:49 src/Module/Tos.php:92 msgid "Privacy Statement" msgstr "Declaración de Privacidad" -#: src/Module/Tos.php:103 +#: src/Module/Tos.php:89 msgid "Rules" msgstr "" -#: src/Module/Update/Display.php:45 +#: src/Module/Update/Display.php:31 msgid "Parameter uri_id is missing." msgstr "" -#: src/Module/Update/Display.php:55 +#: src/Module/Update/Display.php:41 msgid "The requested item doesn't exist or has been deleted." msgstr "El artículo solicitado no existe o fue borrado." -#: src/Module/User/Delegation.php:146 +#: src/Module/User/Delegation.php:132 #, php-format msgid "You are now logged in as %s" msgstr "" -#: src/Module/User/Delegation.php:185 +#: src/Module/User/Delegation.php:171 msgid "Switch between your accounts" msgstr "Cambiar entre tus cuentas" -#: src/Module/User/Delegation.php:186 +#: src/Module/User/Delegation.php:172 msgid "Manage your accounts" msgstr "Administrar tus cuentas" -#: src/Module/User/Delegation.php:187 +#: src/Module/User/Delegation.php:173 msgid "" "Toggle between different identities or community/group pages which share " "your account details or which you have been granted \"manage\" permissions" msgstr "Cambia entre diferentes identidades o páginas de Comunidad/Grupos que comparten los detalles de tu cuenta o sobre los que tienes permisos para administrar" -#: src/Module/User/Delegation.php:188 +#: src/Module/User/Delegation.php:174 msgid "Select an identity to manage: " msgstr "Selecciona una identidad a gestionar:" -#: src/Module/User/Import.php:104 +#: src/Module/User/Import.php:90 msgid "User imports on closed servers can only be done by an administrator." msgstr "Importar usuarios en sitios cerrados solo lo hace el Administrador." -#: src/Module/User/Import.php:120 +#: src/Module/User/Import.php:106 msgid "Move account" msgstr "Mover cuenta" -#: src/Module/User/Import.php:121 +#: src/Module/User/Import.php:107 msgid "You can import an account from another Friendica server." msgstr "Puedes importar una cuenta desde otro servidor de Friendica." -#: src/Module/User/Import.php:122 +#: src/Module/User/Import.php:108 msgid "" "You need to export your account from the old server and upload it here. We " "will recreate your old account here with all your contacts. We will try also" " to inform your friends that you moved here." msgstr "Necesitas exportar tu cuenta del antiguo servidor y subirla aquí. Volveremos a crear tu antigua cuenta con todos tus contactos aquí. También intentaremos de informar a tus amigos de que te has mudado." -#: src/Module/User/Import.php:123 +#: src/Module/User/Import.php:109 msgid "" "This feature is experimental. We can't import contacts from the OStatus " "network (GNU Social/Statusnet) or from Diaspora" msgstr "Característica experimental. No podemos importar contactos desde la red OStatus (statusnet/identi.ca) o desde Diaspora*" -#: src/Module/User/Import.php:124 +#: src/Module/User/Import.php:110 msgid "Account file" msgstr "Archivo de la cuenta" -#: src/Module/User/Import.php:124 +#: src/Module/User/Import.php:110 msgid "" "To export your account, go to \"Settings->Export your personal data\" and " "select \"Export account\"" msgstr "Para exportar el perfil vaya a \"Configuración -> Exportar sus datos personales\" y seleccione \"Exportar cuenta\"" -#: src/Module/User/Import.php:218 +#: src/Module/User/Import.php:204 msgid "Error decoding account file" msgstr "Error decodificando el archivo de cuenta" -#: src/Module/User/Import.php:223 +#: src/Module/User/Import.php:209 msgid "Error! No version data in file! This is not a Friendica account file?" msgstr "Error! No hay datos de versión en el archivo! ¿Es esto de una cuenta friendica? " -#: src/Module/User/Import.php:231 +#: src/Module/User/Import.php:217 #, php-format msgid "User '%s' already exists on this server!" msgstr "La cuenta '%s' ya existe en este servidor!" -#: src/Module/User/Import.php:268 +#: src/Module/User/Import.php:254 msgid "User creation error" msgstr "Error al crear la cuenta" -#: src/Module/User/Import.php:317 +#: src/Module/User/Import.php:303 #, php-format msgid "%d contact not imported" msgid_plural "%d contacts not imported" @@ -11720,23 +11727,23 @@ msgstr[0] "%d contacto no importado" msgstr[1] "%d contactos no importados" msgstr[2] "%d contactos no importados" -#: src/Module/User/Import.php:366 +#: src/Module/User/Import.php:352 msgid "User profile creation error" msgstr "Error al crear Perfil de Usuario" -#: src/Module/User/Import.php:417 +#: src/Module/User/Import.php:403 msgid "Done. You can now login with your username and password" msgstr "Hecho. Ahora podes ingresar con tu usuario y contraseña." -#: src/Module/Welcome.php:44 +#: src/Module/Welcome.php:30 msgid "Welcome to Friendica" msgstr "Bienvenido a Friendica" -#: src/Module/Welcome.php:45 +#: src/Module/Welcome.php:31 msgid "New Member Checklist" msgstr "Nuevos miembros" -#: src/Module/Welcome.php:46 +#: src/Module/Welcome.php:32 msgid "" "We would like to offer some tips and links to help make your experience " "enjoyable. Click any item to visit the relevant page. A link to this page " @@ -11744,33 +11751,33 @@ msgid "" "registration and then will quietly disappear." msgstr "Nos gustaría ofrecerte algunos consejos y enlaces para ayudar a hacer tu experiencia más amena. Pulsa en cualquier elemento para visitar la página correspondiente. Un enlace a esta página será visible desde tu página de inicio durante las dos semanas siguientes a tu inscripción y luego desaparecerá." -#: src/Module/Welcome.php:48 +#: src/Module/Welcome.php:34 msgid "Getting Started" msgstr "Iniciando.." -#: src/Module/Welcome.php:49 +#: src/Module/Welcome.php:35 msgid "Friendica Walk-Through" msgstr "Visita guiada a Friendica" -#: src/Module/Welcome.php:50 +#: src/Module/Welcome.php:36 msgid "" "On your Quick Start page - find a brief introduction to your " "profile and network tabs, make some new connections, and find some groups to" " join." msgstr "En tu página de Inicio Rápido - busca una introducción breve para tus pestañas de perfil y red, haz algunas conexiones nuevas, y busca algunos grupos a los que unirte." -#: src/Module/Welcome.php:53 +#: src/Module/Welcome.php:39 msgid "Go to Your Settings" msgstr "Ir a tus Ajustes" -#: src/Module/Welcome.php:54 +#: src/Module/Welcome.php:40 msgid "" "On your Settings page - change your initial password. Also make a " "note of your Identity Address. This looks just like an email address - and " "will be useful in making friends on the free social web." msgstr "En la página de Configuración puedes cambiar tu contraseña inicial. También aparece tu ID (Identity Address). Es parecida a una dirección de correo y te servirá para conectar con gente de redes sociales libres." -#: src/Module/Welcome.php:55 +#: src/Module/Welcome.php:41 msgid "" "Review the other settings, particularly the privacy settings. An unpublished" " directory listing is like having an unlisted phone number. In general, you " @@ -11778,77 +11785,77 @@ msgid "" "potential friends know exactly how to find you." msgstr "Revisa las otras configuraciones, especialmente la configuración de privacidad. Un listado de directorio sin publicar es como tener un número de teléfono sin publicar. Normalmente querrás publicar tu listado, a menos que tus amigos y amigos potenciales sepan cómo ponerse en contacto contigo." -#: src/Module/Welcome.php:59 +#: src/Module/Welcome.php:45 msgid "" "Upload a profile photo if you have not done so already. Studies have shown " "that people with real photos of themselves are ten times more likely to make" " friends than people who do not." msgstr "Sube una foto para tu perfil si no lo has hecho aún. Los estudios han demostrado que la gente que usa fotos suyas reales tienen diez veces más éxito a la hora de entablar amistad que las que no." -#: src/Module/Welcome.php:60 +#: src/Module/Welcome.php:46 msgid "Edit Your Profile" msgstr "Editar tu perfil" -#: src/Module/Welcome.php:61 +#: src/Module/Welcome.php:47 msgid "" "Edit your default profile to your liking. Review the " "settings for hiding your list of friends and hiding the profile from unknown" " visitors." msgstr "Edita tu perfil predeterminado como quieras. Revisa la configuración para ocultar tu lista de amigos o tu perfil a los visitantes desconocidos." -#: src/Module/Welcome.php:62 +#: src/Module/Welcome.php:48 msgid "Profile Keywords" msgstr "Palabras clave del perfil" -#: src/Module/Welcome.php:63 +#: src/Module/Welcome.php:49 msgid "" "Set some public keywords for your profile which describe your interests. We " "may be able to find other people with similar interests and suggest " "friendships." msgstr "Establece algunas palabras clave públicas para tu perfil que describan tus intereses. Podremos encontrar a otras personas con intereses similares y sugerir amistades." -#: src/Module/Welcome.php:65 +#: src/Module/Welcome.php:51 msgid "Connecting" msgstr "Conectando" -#: src/Module/Welcome.php:67 +#: src/Module/Welcome.php:53 msgid "Importing Emails" msgstr "Importando correos electrónicos" -#: src/Module/Welcome.php:68 +#: src/Module/Welcome.php:54 msgid "" "Enter your email access information on your Connector Settings page if you " "wish to import and interact with friends or mailing lists from your email " "INBOX" msgstr "Introduce la información para acceder a tu correo en la página de Configuración del conector si quieres importar e interactuar con amigos o listas de correos del buzón de entrada de tu correo electrónico." -#: src/Module/Welcome.php:69 +#: src/Module/Welcome.php:55 msgid "Go to Your Contacts Page" msgstr "Ir a tu página de contactos" -#: src/Module/Welcome.php:70 +#: src/Module/Welcome.php:56 msgid "" "Your Contacts page is your gateway to managing friendships and connecting " "with friends on other networks. Typically you enter their address or site " "URL in the Add New Contact dialog." msgstr "Tu página de Contactos es el portal desde donde podrás manejar tus amistades y conectarte con amigos de otras redes. Normalmente introduces su dirección o la dirección de su sitio web en el recuadro \"Añadir contacto nuevo\"." -#: src/Module/Welcome.php:71 +#: src/Module/Welcome.php:57 msgid "Go to Your Site's Directory" msgstr "Ir al directorio de tu sitio" -#: src/Module/Welcome.php:72 +#: src/Module/Welcome.php:58 msgid "" "The Directory page lets you find other people in this network or other " "federated sites. Look for a Connect or Follow link on " "their profile page. Provide your own Identity Address if requested." msgstr "El Directorio te permite encontrar otras personas en esta red o en cualquier otro sitio federado. Busca algún enlace de Conectar o Seguir en su perfil. Proporciona tu direción personal si es necesario." -#: src/Module/Welcome.php:73 +#: src/Module/Welcome.php:59 msgid "Finding New People" msgstr "Encontrando nueva gente" -#: src/Module/Welcome.php:74 +#: src/Module/Welcome.php:60 msgid "" "On the side panel of the Contacts page are several tools to find new " "friends. We can match people by interest, look up people by name or " @@ -11857,412 +11864,408 @@ msgid "" "hours." msgstr "En el panel lateral de la página de Contactos existen varias herramientas para encontrar nuevos amigos. Podemos filtrar personas por sus intereses, buscar personas por nombre o por sus intereses, y ofrecerte sugerencias basadas en sus relaciones de la red. En un sitio nuevo, las sugerencias de amigos por lo general comienzan pasadas las 24 horas." -#: src/Module/Welcome.php:77 +#: src/Module/Welcome.php:63 msgid "Add Your Contacts To Circle" msgstr "" -#: src/Module/Welcome.php:78 +#: src/Module/Welcome.php:64 msgid "" "Once you have made some friends, organize them into private conversation " "circles from the sidebar of your Contacts page and then you can interact " "with each circle privately on your Network page." msgstr "" -#: src/Module/Welcome.php:80 +#: src/Module/Welcome.php:66 msgid "Why Aren't My Posts Public?" msgstr "¿Por qué mis publicaciones no son públicas?" -#: src/Module/Welcome.php:81 +#: src/Module/Welcome.php:67 msgid "" "Friendica respects your privacy. By default, your posts will only show up to" " people you've added as friends. For more information, see the help section " "from the link above." msgstr "Friendica respeta tu privacidad. Por defecto, tus publicaciones solo se mostrarán a personas que hayas añadido como amistades. Para más información, mira la sección de ayuda en el enlace de más arriba." -#: src/Module/Welcome.php:83 +#: src/Module/Welcome.php:69 msgid "Getting Help" msgstr "Consiguiendo ayuda" -#: src/Module/Welcome.php:84 +#: src/Module/Welcome.php:70 msgid "Go to the Help Section" msgstr "Ir a la sección de ayuda" -#: src/Module/Welcome.php:85 +#: src/Module/Welcome.php:71 msgid "" "Our help pages may be consulted for detail on other program" " features and resources." msgstr "Puedes consultar nuestra página de Ayuda para más información y recursos de ayuda." -#: src/Navigation/Notifications/Factory/FormattedNavNotification.php:161 +#: src/Navigation/Notifications/Factory/FormattedNavNotification.php:147 msgid "{0} wants to follow you" msgstr "" -#: src/Navigation/Notifications/Factory/FormattedNavNotification.php:163 +#: src/Navigation/Notifications/Factory/FormattedNavNotification.php:149 msgid "{0} has started following you" msgstr "" -#: src/Navigation/Notifications/Factory/FormattedNotify.php:96 +#: src/Navigation/Notifications/Factory/FormattedNotify.php:82 #, php-format msgid "%s liked %s's post" msgstr "A %s le gusta el artículo de %s" -#: src/Navigation/Notifications/Factory/FormattedNotify.php:108 +#: src/Navigation/Notifications/Factory/FormattedNotify.php:94 #, php-format msgid "%s disliked %s's post" msgstr "A %s no le gusta el artículo de %s" -#: src/Navigation/Notifications/Factory/FormattedNotify.php:120 +#: src/Navigation/Notifications/Factory/FormattedNotify.php:106 #, php-format msgid "%s is attending %s's event" msgstr "%s atenderá el evento de %s" -#: src/Navigation/Notifications/Factory/FormattedNotify.php:132 +#: src/Navigation/Notifications/Factory/FormattedNotify.php:118 #, php-format msgid "%s is not attending %s's event" msgstr "%s no atenderá el evento %s" -#: src/Navigation/Notifications/Factory/FormattedNotify.php:144 +#: src/Navigation/Notifications/Factory/FormattedNotify.php:130 #, php-format msgid "%s may attending %s's event" msgstr "%s podría asistir al evento de %s" -#: src/Navigation/Notifications/Factory/FormattedNotify.php:174 +#: src/Navigation/Notifications/Factory/FormattedNotify.php:160 #, php-format msgid "%s is now friends with %s" msgstr "%s es ahora amigo de %s" -#: src/Navigation/Notifications/Factory/FormattedNotify.php:341 -#: src/Navigation/Notifications/Factory/FormattedNotify.php:379 +#: src/Navigation/Notifications/Factory/FormattedNotify.php:327 +#: src/Navigation/Notifications/Factory/FormattedNotify.php:365 #, php-format msgid "%s commented on %s's post" msgstr "%s comentó el artículo de %s" -#: src/Navigation/Notifications/Factory/FormattedNotify.php:378 +#: src/Navigation/Notifications/Factory/FormattedNotify.php:364 #, php-format msgid "%s created a new post" msgstr "%s creó un nuevo artículo" -#: src/Navigation/Notifications/Factory/Introduction.php:132 +#: src/Navigation/Notifications/Factory/Introduction.php:118 msgid "Friend Suggestion" msgstr "Sugerencia de amistad" -#: src/Navigation/Notifications/Factory/Introduction.php:158 +#: src/Navigation/Notifications/Factory/Introduction.php:144 msgid "Friend/Connect Request" msgstr "Solicitud de Amistad/Conexión" -#: src/Navigation/Notifications/Factory/Introduction.php:158 -msgid "New Follower" -msgstr "Nuevo seguidor" - -#: src/Navigation/Notifications/Factory/Notification.php:134 +#: src/Navigation/Notifications/Factory/Notification.php:120 #, php-format msgid "%1$s wants to follow you" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:136 +#: src/Navigation/Notifications/Factory/Notification.php:122 #, php-format msgid "%1$s has started following you" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:208 +#: src/Navigation/Notifications/Factory/Notification.php:194 #, php-format msgid "%1$s liked your comment on %2$s" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:211 +#: src/Navigation/Notifications/Factory/Notification.php:197 #, php-format msgid "%1$s liked your post %2$s" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:218 +#: src/Navigation/Notifications/Factory/Notification.php:204 #, php-format msgid "%1$s disliked your comment on %2$s" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:221 +#: src/Navigation/Notifications/Factory/Notification.php:207 #, php-format msgid "%1$s disliked your post %2$s" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:228 +#: src/Navigation/Notifications/Factory/Notification.php:214 #, php-format msgid "%1$s shared your comment %2$s" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:231 -#: src/Navigation/Notifications/Factory/Notification.php:316 +#: src/Navigation/Notifications/Factory/Notification.php:217 +#: src/Navigation/Notifications/Factory/Notification.php:302 #, php-format msgid "%1$s shared your post %2$s" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:235 -#: src/Navigation/Notifications/Factory/Notification.php:305 +#: src/Navigation/Notifications/Factory/Notification.php:221 +#: src/Navigation/Notifications/Factory/Notification.php:291 #, php-format msgid "%1$s shared the post %2$s from %3$s" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:237 -#: src/Navigation/Notifications/Factory/Notification.php:307 +#: src/Navigation/Notifications/Factory/Notification.php:223 +#: src/Navigation/Notifications/Factory/Notification.php:293 #, php-format msgid "%1$s shared a post from %3$s" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:239 -#: src/Navigation/Notifications/Factory/Notification.php:309 +#: src/Navigation/Notifications/Factory/Notification.php:225 +#: src/Navigation/Notifications/Factory/Notification.php:295 #, php-format msgid "%1$s shared the post %2$s" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:241 -#: src/Navigation/Notifications/Factory/Notification.php:311 +#: src/Navigation/Notifications/Factory/Notification.php:227 +#: src/Navigation/Notifications/Factory/Notification.php:297 #, php-format msgid "%1$s shared a post" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:249 +#: src/Navigation/Notifications/Factory/Notification.php:235 #, php-format msgid "%1$s wants to attend your event %2$s" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:256 +#: src/Navigation/Notifications/Factory/Notification.php:242 #, php-format msgid "%1$s does not want to attend your event %2$s" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:263 +#: src/Navigation/Notifications/Factory/Notification.php:249 #, php-format msgid "%1$s maybe wants to attend your event %2$s" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:270 +#: src/Navigation/Notifications/Factory/Notification.php:256 #, php-format msgid "%1$s tagged you on %2$s" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:274 +#: src/Navigation/Notifications/Factory/Notification.php:260 #, php-format msgid "%1$s replied to you on %2$s" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:278 +#: src/Navigation/Notifications/Factory/Notification.php:264 #, php-format msgid "%1$s commented in your thread %2$s" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:282 +#: src/Navigation/Notifications/Factory/Notification.php:268 #, php-format msgid "%1$s commented on your comment %2$s" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:289 +#: src/Navigation/Notifications/Factory/Notification.php:275 #, php-format msgid "%1$s commented in their thread %2$s" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:291 +#: src/Navigation/Notifications/Factory/Notification.php:277 #, php-format msgid "%1$s commented in their thread" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:293 +#: src/Navigation/Notifications/Factory/Notification.php:279 #, php-format msgid "%1$s commented in the thread %2$s from %3$s" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:295 +#: src/Navigation/Notifications/Factory/Notification.php:281 #, php-format msgid "%1$s commented in the thread from %3$s" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:300 +#: src/Navigation/Notifications/Factory/Notification.php:286 #, php-format msgid "%1$s commented on your thread %2$s" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:225 -#: src/Navigation/Notifications/Repository/Notify.php:754 +#: src/Navigation/Notifications/Repository/Notify.php:211 +#: src/Navigation/Notifications/Repository/Notify.php:740 msgid "[Friendica:Notify]" msgstr "[Friendica:Notificar]" -#: src/Navigation/Notifications/Repository/Notify.php:293 +#: src/Navigation/Notifications/Repository/Notify.php:279 #, php-format msgid "%s New mail received at %s" msgstr "%s Nuevo correo recibido %s" -#: src/Navigation/Notifications/Repository/Notify.php:295 +#: src/Navigation/Notifications/Repository/Notify.php:281 #, php-format msgid "%1$s sent you a new private message at %2$s." msgstr "%1$s te envió mensaje privado a las %2$s." -#: src/Navigation/Notifications/Repository/Notify.php:296 +#: src/Navigation/Notifications/Repository/Notify.php:282 msgid "a private message" msgstr "un mensaje privado" -#: src/Navigation/Notifications/Repository/Notify.php:296 +#: src/Navigation/Notifications/Repository/Notify.php:282 #, php-format msgid "%1$s sent you %2$s." msgstr "%1$s te envió %2$s." -#: src/Navigation/Notifications/Repository/Notify.php:298 +#: src/Navigation/Notifications/Repository/Notify.php:284 #, php-format msgid "Please visit %s to view and/or reply to your private messages." msgstr "Visita %s para ver y/o responder a tus mensajes privados." -#: src/Navigation/Notifications/Repository/Notify.php:328 +#: src/Navigation/Notifications/Repository/Notify.php:314 #, php-format msgid "%1$s commented on %2$s's %3$s %4$s" msgstr "%1$s comentó en %2$s %3$s %4$s" -#: src/Navigation/Notifications/Repository/Notify.php:333 +#: src/Navigation/Notifications/Repository/Notify.php:319 #, php-format msgid "%1$s commented on your %2$s %3$s" msgstr "%1$s comentó en %2$s %3$s" -#: src/Navigation/Notifications/Repository/Notify.php:337 +#: src/Navigation/Notifications/Repository/Notify.php:323 #, php-format msgid "%1$s commented on their %2$s %3$s" msgstr "%1$s comentó en su %2$s %3$s" -#: src/Navigation/Notifications/Repository/Notify.php:341 -#: src/Navigation/Notifications/Repository/Notify.php:788 +#: src/Navigation/Notifications/Repository/Notify.php:327 +#: src/Navigation/Notifications/Repository/Notify.php:774 #, php-format msgid "%1$s Comment to conversation #%2$d by %3$s" msgstr "%1$s Comentó sobre #%2$d by %3$s" -#: src/Navigation/Notifications/Repository/Notify.php:343 +#: src/Navigation/Notifications/Repository/Notify.php:329 #, php-format msgid "%s commented on an item/conversation you have been following." msgstr "%s comentó en una artículo/elemento que sigues." -#: src/Navigation/Notifications/Repository/Notify.php:347 -#: src/Navigation/Notifications/Repository/Notify.php:362 -#: src/Navigation/Notifications/Repository/Notify.php:814 +#: src/Navigation/Notifications/Repository/Notify.php:333 +#: src/Navigation/Notifications/Repository/Notify.php:348 +#: src/Navigation/Notifications/Repository/Notify.php:800 #, php-format msgid "Please visit %s to view and/or reply to the conversation." msgstr "Por favor, visita %s para ver y/o responder a la conversación." -#: src/Navigation/Notifications/Repository/Notify.php:354 +#: src/Navigation/Notifications/Repository/Notify.php:340 #, php-format msgid "%s %s posted to your profile wall" msgstr "%s %s publicó en tu perfil" -#: src/Navigation/Notifications/Repository/Notify.php:356 +#: src/Navigation/Notifications/Repository/Notify.php:342 #, php-format msgid "%1$s posted to your profile wall at %2$s" msgstr "%1$s publicó en tu perfil a las %2$s" -#: src/Navigation/Notifications/Repository/Notify.php:357 +#: src/Navigation/Notifications/Repository/Notify.php:343 #, php-format msgid "%1$s posted to [url=%2$s]your wall[/url]" msgstr "%1$s publicó en [url=%2$s]tu perfil[/url]" -#: src/Navigation/Notifications/Repository/Notify.php:370 +#: src/Navigation/Notifications/Repository/Notify.php:356 #, php-format msgid "%s Introduction received" msgstr "%s presentación recibida" -#: src/Navigation/Notifications/Repository/Notify.php:372 +#: src/Navigation/Notifications/Repository/Notify.php:358 #, php-format msgid "You've received an introduction from '%1$s' at %2$s" msgstr "Recibiste una presentación de '%1$s' en %2$s" -#: src/Navigation/Notifications/Repository/Notify.php:373 +#: src/Navigation/Notifications/Repository/Notify.php:359 #, php-format msgid "You've received [url=%1$s]an introduction[/url] from %2$s." msgstr "Recibiste [url=%1$s]una presentación de [/url] de %2$s." -#: src/Navigation/Notifications/Repository/Notify.php:378 -#: src/Navigation/Notifications/Repository/Notify.php:424 +#: src/Navigation/Notifications/Repository/Notify.php:364 +#: src/Navigation/Notifications/Repository/Notify.php:410 #, php-format msgid "You may visit their profile at %s" msgstr "Puedes visitar su perfil en %s" -#: src/Navigation/Notifications/Repository/Notify.php:380 +#: src/Navigation/Notifications/Repository/Notify.php:366 #, php-format msgid "Please visit %s to approve or reject the introduction." msgstr "Visita %s para aceptar o rechazar la presentación" -#: src/Navigation/Notifications/Repository/Notify.php:387 +#: src/Navigation/Notifications/Repository/Notify.php:373 #, php-format msgid "%s A new person is sharing with you" msgstr "%s Una nueva persona comparte contigo" -#: src/Navigation/Notifications/Repository/Notify.php:389 -#: src/Navigation/Notifications/Repository/Notify.php:390 +#: src/Navigation/Notifications/Repository/Notify.php:375 +#: src/Navigation/Notifications/Repository/Notify.php:376 #, php-format msgid "%1$s is sharing with you at %2$s" msgstr "%1$s comparte contigo en %2$s" -#: src/Navigation/Notifications/Repository/Notify.php:397 +#: src/Navigation/Notifications/Repository/Notify.php:383 #, php-format msgid "%s You have a new follower" msgstr "%s Tienes nuevo seguidor" -#: src/Navigation/Notifications/Repository/Notify.php:399 -#: src/Navigation/Notifications/Repository/Notify.php:400 +#: src/Navigation/Notifications/Repository/Notify.php:385 +#: src/Navigation/Notifications/Repository/Notify.php:386 #, php-format msgid "You have a new follower at %2$s : %1$s" msgstr "Tienes nuevo seguidor en %2$s : %1$s" -#: src/Navigation/Notifications/Repository/Notify.php:413 +#: src/Navigation/Notifications/Repository/Notify.php:399 #, php-format msgid "%s Friend suggestion received" msgstr "%s Sugerencia de amistad recibida" -#: src/Navigation/Notifications/Repository/Notify.php:415 +#: src/Navigation/Notifications/Repository/Notify.php:401 #, php-format msgid "You've received a friend suggestion from '%1$s' at %2$s" msgstr "Recibiste una sugerencia de amistad de '%1$s' en %2$s" -#: src/Navigation/Notifications/Repository/Notify.php:416 +#: src/Navigation/Notifications/Repository/Notify.php:402 #, php-format msgid "" "You've received [url=%1$s]a friend suggestion[/url] for %2$s from %3$s." msgstr "Recibiste [url=%1$s]una sugerencia de amistad[/url] en %2$s de %3$s." -#: src/Navigation/Notifications/Repository/Notify.php:422 +#: src/Navigation/Notifications/Repository/Notify.php:408 msgid "Name:" msgstr "Nombre: " -#: src/Navigation/Notifications/Repository/Notify.php:423 +#: src/Navigation/Notifications/Repository/Notify.php:409 msgid "Photo:" msgstr "Foto: " -#: src/Navigation/Notifications/Repository/Notify.php:426 +#: src/Navigation/Notifications/Repository/Notify.php:412 #, php-format msgid "Please visit %s to approve or reject the suggestion." msgstr "Visita %s para aceptar o rechazar la sugerencia." -#: src/Navigation/Notifications/Repository/Notify.php:434 -#: src/Navigation/Notifications/Repository/Notify.php:449 +#: src/Navigation/Notifications/Repository/Notify.php:420 +#: src/Navigation/Notifications/Repository/Notify.php:435 #, php-format msgid "%s Connection accepted" msgstr "%s Conexión aceptada" -#: src/Navigation/Notifications/Repository/Notify.php:436 -#: src/Navigation/Notifications/Repository/Notify.php:451 +#: src/Navigation/Notifications/Repository/Notify.php:422 +#: src/Navigation/Notifications/Repository/Notify.php:437 #, php-format msgid "'%1$s' has accepted your connection request at %2$s" msgstr "'%1$s' aceptó tu solicitud de conexión en %2$s" -#: src/Navigation/Notifications/Repository/Notify.php:437 -#: src/Navigation/Notifications/Repository/Notify.php:452 +#: src/Navigation/Notifications/Repository/Notify.php:423 +#: src/Navigation/Notifications/Repository/Notify.php:438 #, php-format msgid "%2$s has accepted your [url=%1$s]connection request[/url]." msgstr "%2$s aceptó tu [url=%1$s]solicitud de conexión[/url]." -#: src/Navigation/Notifications/Repository/Notify.php:442 +#: src/Navigation/Notifications/Repository/Notify.php:428 msgid "" "You are now mutual friends and may exchange status updates, photos, and " "email without restriction." msgstr "Ahora son amigos mutuos y puede intercambiar actualizaciones, fotos e email sin restricción." -#: src/Navigation/Notifications/Repository/Notify.php:444 +#: src/Navigation/Notifications/Repository/Notify.php:430 #, php-format msgid "Please visit %s if you wish to make any changes to this relationship." msgstr "Por favor visite %s si desea hacer algún cambio a su relación." -#: src/Navigation/Notifications/Repository/Notify.php:457 +#: src/Navigation/Notifications/Repository/Notify.php:443 #, php-format msgid "" "'%1$s' has chosen to accept you a fan, which restricts some forms of " @@ -12271,34 +12274,34 @@ msgid "" "automatically." msgstr "'%1$s' te ha aceptado como fan, eso restringe algunas formas de comunicación - como mensajes privados e interacciones de perfil. Si es un famoso o página comunitaria, esos son ajustes automáticos." -#: src/Navigation/Notifications/Repository/Notify.php:459 +#: src/Navigation/Notifications/Repository/Notify.php:445 #, php-format msgid "" "'%1$s' may choose to extend this into a two-way or more permissive " "relationship in the future." msgstr "'%1$s' puede elegirte para una relación cercana o bidireccional en el futuro." -#: src/Navigation/Notifications/Repository/Notify.php:461 +#: src/Navigation/Notifications/Repository/Notify.php:447 #, php-format msgid "Please visit %s if you wish to make any changes to this relationship." msgstr "Visita %s si deseas hacer algún cambio con este contacto." -#: src/Navigation/Notifications/Repository/Notify.php:471 +#: src/Navigation/Notifications/Repository/Notify.php:457 msgid "registration request" msgstr "petición de registro" -#: src/Navigation/Notifications/Repository/Notify.php:473 +#: src/Navigation/Notifications/Repository/Notify.php:459 #, php-format msgid "You've received a registration request from '%1$s' at %2$s" msgstr "Recibiste una solicitud de registro de '%1$s' en %2$s" -#: src/Navigation/Notifications/Repository/Notify.php:474 +#: src/Navigation/Notifications/Repository/Notify.php:460 #, php-format msgid "You've received a [url=%1$s]registration request[/url] from %2$s." msgstr "Recibiste una [url=%1$s]solicitud de registro[/url] de %2$s." -#: src/Navigation/Notifications/Repository/Notify.php:479 -#: src/Navigation/Notifications/Repository/Notify.php:500 +#: src/Navigation/Notifications/Repository/Notify.php:465 +#: src/Navigation/Notifications/Repository/Notify.php:486 #, php-format msgid "" "Display Name:\t%s\n" @@ -12306,288 +12309,288 @@ msgid "" "Login Name:\t%s (%s)" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:485 +#: src/Navigation/Notifications/Repository/Notify.php:471 #, php-format msgid "Please visit %s to approve or reject the request." msgstr "Visita %s para aprobar o rechazar la solicitud." -#: src/Navigation/Notifications/Repository/Notify.php:492 +#: src/Navigation/Notifications/Repository/Notify.php:478 msgid "new registration" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:494 +#: src/Navigation/Notifications/Repository/Notify.php:480 #, php-format msgid "You've received a new registration from '%1$s' at %2$s" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:495 +#: src/Navigation/Notifications/Repository/Notify.php:481 #, php-format msgid "You've received a [url=%1$s]new registration[/url] from %2$s." msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:506 +#: src/Navigation/Notifications/Repository/Notify.php:492 #, php-format msgid "Please visit %s to have a look at the new registration." msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:782 +#: src/Navigation/Notifications/Repository/Notify.php:768 #, php-format msgid "%s %s tagged you" msgstr "%s %s te etiquetó" -#: src/Navigation/Notifications/Repository/Notify.php:785 +#: src/Navigation/Notifications/Repository/Notify.php:771 #, php-format msgid "%s %s shared a new post" msgstr "%s %s compartió nuevo artículo" -#: src/Navigation/Notifications/Repository/Notify.php:793 +#: src/Navigation/Notifications/Repository/Notify.php:779 #, php-format msgid "%1$s %2$s liked your post #%3$d" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:796 +#: src/Navigation/Notifications/Repository/Notify.php:782 #, php-format msgid "%1$s %2$s liked your comment on #%3$d" msgstr "" -#: src/Object/EMail/ItemCCEMail.php:42 +#: src/Object/EMail/ItemCCEMail.php:28 #, php-format msgid "" "This message was sent to you by %s, a member of the Friendica social " "network." msgstr "El mensaje te lo ha enviado %s, miembro de Friendica Red Social." -#: src/Object/EMail/ItemCCEMail.php:44 +#: src/Object/EMail/ItemCCEMail.php:30 #, php-format msgid "You may visit them online at %s" msgstr "Puedes visitarlos en línea en %s" -#: src/Object/EMail/ItemCCEMail.php:45 +#: src/Object/EMail/ItemCCEMail.php:31 msgid "" "Please contact the sender by replying to this post if you do not wish to " "receive these messages." msgstr "Por favor contacta con el remitente respondiendo a este mensaje si no deseas recibir estos mensajes." -#: src/Object/EMail/ItemCCEMail.php:49 +#: src/Object/EMail/ItemCCEMail.php:35 #, php-format msgid "%s posted an update." msgstr "%s publicó una actualización." -#: src/Object/Post.php:138 +#: src/Object/Post.php:124 msgid "Private Message" msgstr "Mensaje privado" -#: src/Object/Post.php:142 +#: src/Object/Post.php:128 msgid "Public Message" msgstr "" -#: src/Object/Post.php:146 +#: src/Object/Post.php:132 msgid "Unlisted Message" msgstr "" -#: src/Object/Post.php:182 +#: src/Object/Post.php:168 msgid "This entry was edited" msgstr "Esta entrada fue editada" -#: src/Object/Post.php:210 +#: src/Object/Post.php:196 msgid "Connector Message" msgstr "" -#: src/Object/Post.php:239 src/Object/Post.php:241 +#: src/Object/Post.php:225 src/Object/Post.php:227 msgid "Edit" msgstr "Editar" -#: src/Object/Post.php:275 +#: src/Object/Post.php:261 msgid "Delete globally" msgstr "Borrar Globalmente" -#: src/Object/Post.php:275 +#: src/Object/Post.php:261 msgid "Remove locally" msgstr "Borrar localmente" -#: src/Object/Post.php:282 +#: src/Object/Post.php:268 #, php-format msgid "Block %s" msgstr "Bloquear %s" -#: src/Object/Post.php:287 +#: src/Object/Post.php:273 #, php-format msgid "Ignore %s" msgstr "" -#: src/Object/Post.php:292 +#: src/Object/Post.php:278 #, php-format msgid "Collapse %s" msgstr "" -#: src/Object/Post.php:296 +#: src/Object/Post.php:282 msgid "Report post" msgstr "" -#: src/Object/Post.php:307 +#: src/Object/Post.php:293 msgid "Save to folder" msgstr "" -#: src/Object/Post.php:347 +#: src/Object/Post.php:333 msgid "I will attend" msgstr "Asistiré" -#: src/Object/Post.php:347 +#: src/Object/Post.php:333 msgid "I will not attend" msgstr "No asistiré" -#: src/Object/Post.php:347 +#: src/Object/Post.php:333 msgid "I might attend" msgstr "Podría asistir" -#: src/Object/Post.php:394 +#: src/Object/Post.php:380 msgid "Ignore thread" msgstr "" -#: src/Object/Post.php:395 +#: src/Object/Post.php:381 msgid "Unignore thread" msgstr "" -#: src/Object/Post.php:396 +#: src/Object/Post.php:382 msgid "Toggle ignore status" msgstr "" -#: src/Object/Post.php:406 +#: src/Object/Post.php:392 msgid "Add star" msgstr "" -#: src/Object/Post.php:407 +#: src/Object/Post.php:393 msgid "Remove star" msgstr "" -#: src/Object/Post.php:408 +#: src/Object/Post.php:394 msgid "Toggle star status" msgstr "" -#: src/Object/Post.php:419 +#: src/Object/Post.php:405 msgid "Pin" msgstr "" -#: src/Object/Post.php:420 +#: src/Object/Post.php:406 msgid "Unpin" msgstr "" -#: src/Object/Post.php:421 +#: src/Object/Post.php:407 msgid "Toggle pin status" msgstr "" -#: src/Object/Post.php:424 +#: src/Object/Post.php:410 msgid "Pinned" msgstr "" -#: src/Object/Post.php:429 +#: src/Object/Post.php:415 msgid "Add tag" msgstr "" -#: src/Object/Post.php:444 +#: src/Object/Post.php:430 msgid "Quote share this" msgstr "Compartir Comentado esto" -#: src/Object/Post.php:444 +#: src/Object/Post.php:430 msgid "Quote Share" msgstr "Compartir comentado" -#: src/Object/Post.php:447 +#: src/Object/Post.php:433 msgid "Reshare this" msgstr "Compartir esto" -#: src/Object/Post.php:447 +#: src/Object/Post.php:433 msgid "Reshare" msgstr "Compartir" -#: src/Object/Post.php:448 +#: src/Object/Post.php:434 msgid "Cancel your Reshare" msgstr "Cancelar Compartir" -#: src/Object/Post.php:448 +#: src/Object/Post.php:434 msgid "Unshare" msgstr "Dejar de Compartir" -#: src/Object/Post.php:492 +#: src/Object/Post.php:478 #, php-format msgid "%s (Received %s)" msgstr "%s (Recibido %s)" -#: src/Object/Post.php:498 +#: src/Object/Post.php:484 msgid "Comment this item on your system" msgstr "Comentarlo en mi estado" -#: src/Object/Post.php:498 +#: src/Object/Post.php:484 msgid "Remote comment" msgstr "" -#: src/Object/Post.php:520 +#: src/Object/Post.php:506 msgid "Share via ..." msgstr "" -#: src/Object/Post.php:520 +#: src/Object/Post.php:506 msgid "Share via external services" msgstr "" -#: src/Object/Post.php:527 +#: src/Object/Post.php:513 msgid "Unknown parent" msgstr "" -#: src/Object/Post.php:531 +#: src/Object/Post.php:517 #, php-format msgid "in reply to %s" msgstr "" -#: src/Object/Post.php:533 +#: src/Object/Post.php:519 msgid "Parent is probably private or not federated." msgstr "" -#: src/Object/Post.php:557 +#: src/Object/Post.php:543 msgid "to" msgstr "a" -#: src/Object/Post.php:558 +#: src/Object/Post.php:544 msgid "via" msgstr "vía" -#: src/Object/Post.php:559 +#: src/Object/Post.php:545 msgid "Wall-to-Wall" msgstr "Perfil-a-Perfil" -#: src/Object/Post.php:560 +#: src/Object/Post.php:546 msgid "via Wall-To-Wall:" msgstr "via Perfil-a-Perfil:" -#: src/Object/Post.php:613 +#: src/Object/Post.php:599 #, php-format msgid "Reply to %s" msgstr "Responder a %s" -#: src/Object/Post.php:616 +#: src/Object/Post.php:602 msgid "More" msgstr "Mas" -#: src/Object/Post.php:635 +#: src/Object/Post.php:621 msgid "Notifier task is pending" msgstr "Notificador tarea pendiente" -#: src/Object/Post.php:636 +#: src/Object/Post.php:622 msgid "Delivery to remote servers is pending" msgstr "Entrega remota pendiente" -#: src/Object/Post.php:637 +#: src/Object/Post.php:623 msgid "Delivery to remote servers is underway" msgstr "Entrega remota en camino" -#: src/Object/Post.php:638 +#: src/Object/Post.php:624 msgid "Delivery to remote servers is mostly done" msgstr "Entrega remota casi completada" -#: src/Object/Post.php:639 +#: src/Object/Post.php:625 msgid "Delivery to remote servers is done" msgstr "Entrega remota completada" -#: src/Object/Post.php:661 +#: src/Object/Post.php:647 #, php-format msgid "%d comment" msgid_plural "%d comments" @@ -12595,480 +12598,467 @@ msgstr[0] "%d comentario" msgstr[1] "%d comentarios" msgstr[2] "%d comentarios" -#: src/Object/Post.php:662 +#: src/Object/Post.php:648 msgid "Show more" msgstr "Mostrar mas" -#: src/Object/Post.php:663 +#: src/Object/Post.php:649 msgid "Show fewer" msgstr "Mostrar menos" -#: src/Object/Post.php:700 +#: src/Object/Post.php:686 #, php-format msgid "Reshared by: %s" msgstr "" -#: src/Object/Post.php:705 +#: src/Object/Post.php:691 #, php-format msgid "Viewed by: %s" msgstr "" -#: src/Object/Post.php:710 +#: src/Object/Post.php:696 #, php-format msgid "Read by: %s" msgstr "" -#: src/Object/Post.php:715 +#: src/Object/Post.php:701 #, php-format msgid "Liked by: %s" msgstr "" -#: src/Object/Post.php:720 +#: src/Object/Post.php:706 #, php-format msgid "Disliked by: %s" msgstr "" -#: src/Object/Post.php:725 +#: src/Object/Post.php:711 #, php-format msgid "Attended by: %s" msgstr "" -#: src/Object/Post.php:730 +#: src/Object/Post.php:716 #, php-format msgid "Maybe attended by: %s" msgstr "" -#: src/Object/Post.php:735 +#: src/Object/Post.php:721 #, php-format msgid "Not attended by: %s" msgstr "" -#: src/Object/Post.php:740 +#: src/Object/Post.php:726 #, php-format msgid "Commented by: %s" msgstr "" -#: src/Object/Post.php:745 +#: src/Object/Post.php:731 #, php-format msgid "Reacted with %s by: %s" msgstr "" -#: src/Object/Post.php:768 +#: src/Object/Post.php:754 #, php-format msgid "Quote shared by: %s" msgstr "" -#: src/Protocol/ActivityPub/Receiver.php:568 +#: src/Protocol/ActivityPub/Receiver.php:557 msgid "Chat" msgstr "" -#: src/Protocol/Delivery.php:544 +#: src/Protocol/Delivery.php:530 msgid "(no subject)" msgstr "(sin asunto)" -#: src/Protocol/OStatus.php:1392 -#, php-format -msgid "%s is now following %s." -msgstr "%s sigue ahora a %s." - -#: src/Protocol/OStatus.php:1393 -msgid "following" -msgstr "siguiendo" - -#: src/Protocol/OStatus.php:1396 -#, php-format -msgid "%s stopped following %s." -msgstr "%s dejó de seguir a %s." - -#: src/Protocol/OStatus.php:1397 -msgid "stopped following" -msgstr "dejó de seguir" - -#: src/Render/FriendicaSmartyEngine.php:56 +#: src/Render/FriendicaSmartyEngine.php:42 #, php-format msgid "The folder %s must be writable by webserver." msgstr "" -#: src/Security/Authentication.php:216 +#: src/Security/Authentication.php:200 msgid "Login failed." msgstr "Accesso fallido." -#: src/Security/Authentication.php:261 +#: src/Security/Authentication.php:245 msgid "Login failed. Please check your credentials." msgstr "Acceso falló. Checa tus credenciales." -#: src/Security/Authentication.php:375 +#: src/Security/Authentication.php:359 #, php-format msgid "Welcome %s" msgstr "Bienvenido %s" -#: src/Security/Authentication.php:376 +#: src/Security/Authentication.php:360 msgid "Please upload a profile photo." msgstr "Por favor sube una foto para el perfil." -#: src/Util/EMailer/MailBuilder.php:260 +#: src/Security/OpenWebAuth.php:149 +#, php-format +msgid "OpenWebAuth: %1$s welcomes %2$s" +msgstr "OpenWebAuth: %1$s te da la bienvenida %2$s" + +#: src/Util/EMailer/MailBuilder.php:246 msgid "Friendica Notification" msgstr "Notificación de Friendica" -#: src/Util/EMailer/NotifyMailBuilder.php:78 -#: src/Util/EMailer/SystemMailBuilder.php:54 +#: src/Util/EMailer/NotifyMailBuilder.php:64 +#: src/Util/EMailer/SystemMailBuilder.php:40 #, php-format msgid "%1$s, %2$s Administrator" msgstr "%1$s, %2$s Administrador" -#: src/Util/EMailer/NotifyMailBuilder.php:80 -#: src/Util/EMailer/SystemMailBuilder.php:56 +#: src/Util/EMailer/NotifyMailBuilder.php:66 +#: src/Util/EMailer/SystemMailBuilder.php:42 #, php-format msgid "%s Administrator" msgstr "%s Administrador" -#: src/Util/EMailer/NotifyMailBuilder.php:193 -#: src/Util/EMailer/NotifyMailBuilder.php:217 -#: src/Util/EMailer/SystemMailBuilder.php:101 -#: src/Util/EMailer/SystemMailBuilder.php:118 +#: src/Util/EMailer/NotifyMailBuilder.php:179 +#: src/Util/EMailer/NotifyMailBuilder.php:203 +#: src/Util/EMailer/SystemMailBuilder.php:87 +#: src/Util/EMailer/SystemMailBuilder.php:104 msgid "thanks" msgstr "gracias" -#: src/Util/Temporal.php:172 +#: src/Util/Temporal.php:158 msgid "YYYY-MM-DD or MM-DD" msgstr "YYYY-MM-DD o MM-DD" -#: src/Util/Temporal.php:280 +#: src/Util/Temporal.php:266 #, php-format msgid "Time zone: %s Change in Settings" msgstr "" -#: src/Util/Temporal.php:320 src/Util/Temporal.php:329 +#: src/Util/Temporal.php:306 src/Util/Temporal.php:315 msgid "never" msgstr "nunca" -#: src/Util/Temporal.php:343 +#: src/Util/Temporal.php:329 msgid "less than a second ago" msgstr "hace menos de un segundo" -#: src/Util/Temporal.php:352 +#: src/Util/Temporal.php:338 msgid "year" msgstr "año" -#: src/Util/Temporal.php:352 +#: src/Util/Temporal.php:338 msgid "years" msgstr "años" -#: src/Util/Temporal.php:353 +#: src/Util/Temporal.php:339 msgid "months" msgstr "meses" -#: src/Util/Temporal.php:354 +#: src/Util/Temporal.php:340 msgid "weeks" msgstr "semanas" -#: src/Util/Temporal.php:355 +#: src/Util/Temporal.php:341 msgid "days" msgstr "días" -#: src/Util/Temporal.php:356 +#: src/Util/Temporal.php:342 msgid "hour" msgstr "hora" -#: src/Util/Temporal.php:356 +#: src/Util/Temporal.php:342 msgid "hours" msgstr "horas" -#: src/Util/Temporal.php:357 +#: src/Util/Temporal.php:343 msgid "minute" msgstr "minuto" -#: src/Util/Temporal.php:357 +#: src/Util/Temporal.php:343 msgid "minutes" msgstr "minutos" -#: src/Util/Temporal.php:358 +#: src/Util/Temporal.php:344 msgid "second" msgstr "segundo" -#: src/Util/Temporal.php:358 +#: src/Util/Temporal.php:344 msgid "seconds" msgstr "segundos" -#: src/Util/Temporal.php:367 +#: src/Util/Temporal.php:353 #, php-format msgid "in %1$d %2$s" msgstr "en %1$d %2$s" -#: src/Util/Temporal.php:370 +#: src/Util/Temporal.php:356 #, php-format msgid "%1$d %2$s ago" msgstr "hace %1$d %2$s" -#: src/Worker/PushSubscription.php:110 +#: src/Worker/PushSubscription.php:96 msgid "Notification from Friendica" msgstr "" -#: src/Worker/PushSubscription.php:111 +#: src/Worker/PushSubscription.php:97 msgid "Empty Post" msgstr "" -#: view/theme/duepuntozero/config.php:68 +#: view/theme/duepuntozero/config.php:56 msgid "default" msgstr "predeterminado" -#: view/theme/duepuntozero/config.php:69 +#: view/theme/duepuntozero/config.php:57 msgid "greenzero" msgstr "greenzero" -#: view/theme/duepuntozero/config.php:70 +#: view/theme/duepuntozero/config.php:58 msgid "purplezero" msgstr "purplezero" -#: view/theme/duepuntozero/config.php:71 +#: view/theme/duepuntozero/config.php:59 msgid "easterbunny" msgstr "easterbunny" -#: view/theme/duepuntozero/config.php:72 +#: view/theme/duepuntozero/config.php:60 msgid "darkzero" msgstr "darkzero" -#: view/theme/duepuntozero/config.php:73 +#: view/theme/duepuntozero/config.php:61 msgid "comix" msgstr "comix" -#: view/theme/duepuntozero/config.php:74 +#: view/theme/duepuntozero/config.php:62 msgid "slackr" msgstr "slackr" -#: view/theme/duepuntozero/config.php:87 +#: view/theme/duepuntozero/config.php:75 msgid "Variations" msgstr "Variaciones" -#: view/theme/frio/config.php:146 +#: view/theme/frio/config.php:134 msgid "Note" msgstr "Nota" -#: view/theme/frio/config.php:146 +#: view/theme/frio/config.php:134 msgid "Check image permissions if all users are allowed to see the image" msgstr "Checa si todos los usuarios podrían ver esta imágen" -#: view/theme/frio/config.php:152 +#: view/theme/frio/config.php:140 msgid "Appearance" msgstr "" -#: view/theme/frio/config.php:153 +#: view/theme/frio/config.php:141 msgid "Accent color" msgstr "" -#: view/theme/frio/config.php:153 +#: view/theme/frio/config.php:141 msgid "Blue" msgstr "Azul" -#: view/theme/frio/config.php:153 +#: view/theme/frio/config.php:141 msgid "Red" msgstr "Rojo" -#: view/theme/frio/config.php:153 +#: view/theme/frio/config.php:141 msgid "Purple" msgstr "Púrpura" -#: view/theme/frio/config.php:153 +#: view/theme/frio/config.php:141 msgid "Green" msgstr "Verde" -#: view/theme/frio/config.php:153 +#: view/theme/frio/config.php:141 msgid "Pink" msgstr "Rosa" -#: view/theme/frio/config.php:154 +#: view/theme/frio/config.php:142 msgid "Copy or paste schemestring" msgstr "Copiar o pegar esquema" -#: view/theme/frio/config.php:154 +#: view/theme/frio/config.php:142 msgid "" "You can copy this string to share your theme with others. Pasting here " "applies the schemestring" msgstr "Puede copiar esta cadena para compartir su tema con otros. Pegando aquíAplica el Esquema" -#: view/theme/frio/config.php:155 +#: view/theme/frio/config.php:143 msgid "Navigation bar background color" msgstr "Color de fondo de barra de navegación" -#: view/theme/frio/config.php:156 +#: view/theme/frio/config.php:144 msgid "Navigation bar icon color " msgstr "Color de icono de barra de navegación" -#: view/theme/frio/config.php:157 +#: view/theme/frio/config.php:145 msgid "Link color" msgstr "Color de enlace" -#: view/theme/frio/config.php:158 +#: view/theme/frio/config.php:146 msgid "Set the background color" msgstr "Selecciona color de fondo" -#: view/theme/frio/config.php:159 +#: view/theme/frio/config.php:147 msgid "Content background opacity" msgstr "Opacidad del Fondo del Contenido" -#: view/theme/frio/config.php:160 +#: view/theme/frio/config.php:148 msgid "Set the background image" msgstr "Selecciona imagen de fondo" -#: view/theme/frio/config.php:161 +#: view/theme/frio/config.php:149 msgid "Background image style" msgstr "Estilo de imagen de fondo" -#: view/theme/frio/config.php:164 +#: view/theme/frio/config.php:152 msgid "Always open Compose page" msgstr "" -#: view/theme/frio/config.php:164 +#: view/theme/frio/config.php:152 msgid "" "The New Post button always open the 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:168 +#: view/theme/frio/config.php:156 msgid "Login page background image" msgstr "Imagen de fondo del Ingreso" -#: view/theme/frio/config.php:172 +#: view/theme/frio/config.php:160 msgid "Login page background color" msgstr "Color de fondo del Ingreso" -#: view/theme/frio/config.php:172 +#: view/theme/frio/config.php:160 msgid "Leave background image and color empty for theme defaults" msgstr "Deja imagen de fondo y color vacíos para el estándar" -#: view/theme/frio/php/Image.php:39 +#: view/theme/frio/php/Image.php:27 msgid "Top Banner" msgstr "Anuncio superior" -#: view/theme/frio/php/Image.php:39 +#: view/theme/frio/php/Image.php:27 msgid "" "Resize image to the width of the screen and show background color below on " "long pages." msgstr "Cambiar tamaño de la imagen al ancho de pantalla y mostrar color de fondodebajo en Páginas largas." -#: view/theme/frio/php/Image.php:40 +#: view/theme/frio/php/Image.php:28 msgid "Full screen" msgstr "Pantalla completa" -#: view/theme/frio/php/Image.php:40 +#: view/theme/frio/php/Image.php:28 msgid "" "Resize image to fill entire screen, clipping either the right or the bottom." msgstr "Ajustar imagen a pantalla completa, recortando a la derecha o debajo.." -#: view/theme/frio/php/Image.php:41 +#: view/theme/frio/php/Image.php:29 msgid "Single row mosaic" msgstr "Mosaico en renglón" -#: view/theme/frio/php/Image.php:41 +#: view/theme/frio/php/Image.php:29 msgid "" "Resize image to repeat it on a single row, either vertical or horizontal." msgstr "Ajustar imagen y repetir en una sola fila, ya sea vertical u horizontal." -#: view/theme/frio/php/Image.php:42 +#: view/theme/frio/php/Image.php:30 msgid "Mosaic" msgstr "Mosaico" -#: view/theme/frio/php/Image.php:42 +#: view/theme/frio/php/Image.php:30 msgid "Repeat image to fill the screen." msgstr "Repetir imagen hasta llenar pantalla." -#: view/theme/frio/php/default.php:82 view/theme/frio/php/standard.php:40 +#: view/theme/frio/php/default.php:70 view/theme/frio/php/standard.php:28 msgid "Skip to main content" msgstr "Saltar a contenido principal" -#: view/theme/frio/php/default.php:153 view/theme/frio/php/standard.php:75 +#: view/theme/frio/php/default.php:141 view/theme/frio/php/standard.php:63 msgid "Back to top" msgstr "Ir al Inicio" -#: view/theme/frio/php/scheme.php:105 +#: view/theme/frio/php/scheme.php:93 msgid "Light" msgstr "" -#: view/theme/frio/php/scheme.php:106 +#: view/theme/frio/php/scheme.php:94 msgid "Dark" msgstr "" -#: view/theme/frio/php/scheme.php:107 +#: view/theme/frio/php/scheme.php:95 msgid "Black" msgstr "" -#: view/theme/frio/php/scheme.php:118 +#: view/theme/frio/php/scheme.php:106 msgid "Custom" msgstr "Personalizado" -#: view/theme/frio/theme.php:214 +#: view/theme/frio/theme.php:202 msgid "Guest" msgstr "Invitado" -#: view/theme/frio/theme.php:217 +#: view/theme/frio/theme.php:205 msgid "Visitor" msgstr "Visitante" -#: view/theme/quattro/config.php:89 +#: view/theme/quattro/config.php:77 msgid "Alignment" msgstr "Alineación" -#: view/theme/quattro/config.php:89 +#: view/theme/quattro/config.php:77 msgid "Left" msgstr "Izquierda" -#: view/theme/quattro/config.php:89 +#: view/theme/quattro/config.php:77 msgid "Center" msgstr "Centrado" -#: view/theme/quattro/config.php:90 +#: view/theme/quattro/config.php:78 msgid "Color scheme" msgstr "Esquema de color" -#: view/theme/quattro/config.php:91 +#: view/theme/quattro/config.php:79 msgid "Posts font size" msgstr "Tamaño de letra de artículos" -#: view/theme/quattro/config.php:92 +#: view/theme/quattro/config.php:80 msgid "Textareas font size" msgstr "Tamaño de letra de áreas de texto" -#: view/theme/vier/config.php:91 +#: view/theme/vier/config.php:79 msgid "Comma separated list of helper groups" msgstr "" -#: view/theme/vier/config.php:131 +#: view/theme/vier/config.php:119 msgid "don't show" msgstr "no mostrar" -#: view/theme/vier/config.php:131 +#: view/theme/vier/config.php:119 msgid "show" msgstr "mostrar" -#: view/theme/vier/config.php:137 +#: view/theme/vier/config.php:125 msgid "Set style" msgstr "Definir estilo" -#: view/theme/vier/config.php:138 +#: view/theme/vier/config.php:126 msgid "Community Pages" msgstr "Páginas de Comunidad" -#: view/theme/vier/config.php:139 view/theme/vier/theme.php:148 +#: view/theme/vier/config.php:127 view/theme/vier/theme.php:136 msgid "Community Profiles" msgstr "Perfiles de la Comunidad" -#: view/theme/vier/config.php:140 +#: view/theme/vier/config.php:128 msgid "Help or @NewHere ?" msgstr "¿Ayuda o @NewHere?" -#: view/theme/vier/config.php:141 view/theme/vier/theme.php:319 +#: view/theme/vier/config.php:129 view/theme/vier/theme.php:307 msgid "Connect Services" msgstr "Conectar Servicios" -#: view/theme/vier/config.php:142 +#: view/theme/vier/config.php:130 msgid "Find Friends" msgstr "Buscar amistades" -#: view/theme/vier/config.php:143 view/theme/vier/theme.php:175 +#: view/theme/vier/config.php:131 view/theme/vier/theme.php:163 msgid "Last users" msgstr "Últimos usuarios" -#: view/theme/vier/theme.php:234 +#: view/theme/vier/theme.php:222 msgid "Quick Start" msgstr "Inicio rápido" diff --git a/view/lang/es/strings.php b/view/lang/es/strings.php index 16dce2b953..0332b40ba8 100644 --- a/view/lang/es/strings.php +++ b/view/lang/es/strings.php @@ -643,7 +643,6 @@ $a->strings['An author or name was not found.'] = 'No se ha encontrado un autor $a->strings['No browser URL could be matched to this address.'] = 'Ninguna dirección concuerda con la suministrada.'; $a->strings['Unable to match @-style Identity Address with a known protocol or email contact.'] = 'Imposible identificar la Identidad @-style con algún protocolo conocido o dirección de contacto.'; $a->strings['Use mailto: in front of address to force email check.'] = 'Escribe mailto: al principio de la dirección para forzar el envío.'; -$a->strings['The profile address specified belongs to a network which has been disabled on this site.'] = 'La dirección del perfil especificada pertenece a una red que ha sido deshabilitada en este sitio.'; $a->strings['Limited profile. This person will be unable to receive direct/personal notifications from you.'] = 'Perfil limitado. Esta persona no podrá recibir notificaciones directas/personales tuyas.'; $a->strings['Unable to retrieve contact information.'] = 'No ha sido posible recibir la información del contacto.'; $a->strings['Starts:'] = 'Inicio:'; @@ -667,7 +666,6 @@ $a->strings['Show map'] = 'Mostrar mapa'; $a->strings['Hide map'] = 'Ocultar mapa'; $a->strings['%s\'s birthday'] = 'Cumpleaños de %s'; $a->strings['Happy Birthday %s'] = 'Feliz cumpleaños %s'; -$a->strings['Detected languages in this post:\n%s'] = 'Lenguajes detectados en artículo:\n%s'; $a->strings['activity'] = 'Actividad'; $a->strings['post'] = 'Publicación'; $a->strings['bytes'] = 'bytes'; @@ -687,7 +685,6 @@ $a->strings['g A l F d'] = 'g A l F d'; $a->strings['[No description]'] = '[Sin descripción]'; $a->strings['Event Reminders'] = 'Recordatorios de eventos'; $a->strings['Upcoming events the next 7 days:'] = 'Eventos de los próximos 7 dias:'; -$a->strings['OpenWebAuth: %1$s welcomes %2$s'] = 'OpenWebAuth: %1$s te da la bienvenida %2$s'; $a->strings['Hometown:'] = 'Ciudad de origen:'; $a->strings['Marital Status:'] = 'Estado civil:'; $a->strings['With:'] = 'Con:'; @@ -964,7 +961,6 @@ $a->strings['When the database cleanup is enabled, this defines the days after w $a->strings['Lifespan of unclaimed items'] = 'Tiempo de vida de artículos no reclamados'; $a->strings['When the database cleanup is enabled, this defines the days after which unclaimed remote items (mostly content from the relay) will be deleted. Default value is 90 days. Defaults to the general lifespan value of remote items if set to 0.'] = '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.'; $a->strings['Lifespan of raw conversation data'] = 'Tiempo de vida de datos de conversación '; -$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.'] = '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.'; $a->strings['Maximum numbers of comments per post'] = 'Numero máximo de respuestas por tema'; $a->strings['How much comments should be shown for each post? Default value is 100.'] = '¿Cuantos comentarios deberían ser mostrados por tema? Valor por defecto es 100.'; $a->strings['Maximum numbers of comments per post on the display page'] = 'Maximo numero de comentarios por artículo de página de despliegue'; @@ -1180,7 +1176,6 @@ $a->strings['Submit Request'] = 'Enviar Solicitud'; $a->strings['You already added this contact.'] = 'Ya has añadido este contacto.'; $a->strings['The network type couldn\'t be detected. Contact can\'t be added.'] = 'No se pudo detectar el tipo de red. Contacto no puede ser agregado.'; $a->strings['Diaspora support isn\'t enabled. Contact can\'t be added.'] = 'El soporte de Diaspora* no esta habilitado, el contacto no puede ser agregado.'; -$a->strings['OStatus support is disabled. Contact can\'t be added.'] = 'El soporte de OStatus no esta habilitado, el contacto no puede ser agregado.'; $a->strings['Please answer the following:'] = 'Por favor responde lo siguiente:'; $a->strings['Your Identity Address:'] = 'Dirección de tu Identidad:'; $a->strings['Profile URL'] = 'URL del Perfil'; @@ -1564,8 +1559,6 @@ $a->strings['{0} requested registration'] = '{0} solicita registro'; $a->strings['{0} and %d others requested registration'] = '{0} y %d otros solicitaron registro'; $a->strings['Authorize application connection'] = 'Autorizar la conexión de la aplicación'; $a->strings['Do you want to authorize this application to access your posts and contacts, and/or create new posts for you?'] = '¿Quieres autorizar a esta aplicación el acceso a tus mensajes y contactos, y/o crear nuevas publicaciones para ti?'; -$a->strings['Resubscribing to OStatus contacts'] = 'Resubscribir a contactos de OStatus'; -$a->strings['Keep this window open until done.'] = 'Manténer la ventana abierta hasta que finalice.'; $a->strings['No contact provided.'] = 'No se suministra contacto.'; $a->strings['Couldn\'t fetch information for contact.'] = 'No se encuentra la información del contacto.'; $a->strings['Couldn\'t fetch friends for contact.'] = 'No se encuentran datos de amigos de contacto.'; @@ -1573,6 +1566,7 @@ $a->strings['Done'] = 'Hecho'; $a->strings['success'] = 'éxito!'; $a->strings['failed'] = 'fallido'; $a->strings['ignored'] = 'ignorado'; +$a->strings['Keep this window open until done.'] = 'Manténer la ventana abierta hasta que finalice.'; $a->strings['The Photo with id %s is not available.'] = 'La foto con id %s no esta disponible.'; $a->strings['Invalid photo with id %s.'] = 'Foto no válida de Id %s.'; $a->strings['Edit post'] = 'Editar publicación'; @@ -1589,9 +1583,9 @@ $a->strings['Model not found'] = 'Modelo no encontrado'; $a->strings['Remote privacy information not available.'] = 'Privacidad de la información remota no disponible.'; $a->strings['Visible to:'] = 'Visible para:'; $a->strings['No contacts.'] = 'Sin contactos.'; -$a->strings['%s\'s timeline'] = 'Estado de %s'; $a->strings['%s\'s posts'] = 'Artículos de %s'; $a->strings['%s\'s comments'] = 'Comentarios de %s'; +$a->strings['%s\'s timeline'] = 'Estado de %s'; $a->strings['Image exceeds size limit of %s'] = 'Imagen excede el tamaño de %s'; $a->strings['Image upload didn\'t complete, please try again'] = 'Subida de imagen no completa, vuelve a intentar'; $a->strings['Image file is missing'] = 'Falta el archivo de imagen'; @@ -1789,13 +1783,11 @@ $a->strings['Description'] = 'Descripción'; $a->strings['Add'] = 'Añadir'; $a->strings['Failed to connect with email account using the settings provided.'] = 'Error al conectar con el Correo mediante esa configuración.'; $a->strings['Diaspora (Socialhome, Hubzilla)'] = 'Diaspora (Socialhome, Hubzilla)'; -$a->strings['OStatus (GNU Social)'] = 'OStatus (GNU Social)'; $a->strings['Email access is disabled on this site.'] = 'Acceso por correo deshabilitado en este sitio.'; $a->strings['None'] = 'Ninguno'; $a->strings['General Social Media Settings'] = 'Configuración General de Medios Sociales'; $a->strings['Attach the link title'] = 'Agregar título del link'; $a->strings['When activated, the title of the attached link will be added as a title on posts to Diaspora. This is mostly helpful with "remote-self" contacts that share feed content.'] = 'Si se activa, el título del link se añade como titulo en artículos de Diaspora. Esto es bueno con contactos "remote-self" que comparten contenido.'; -$a->strings['Repair OStatus subscriptions'] = 'Reparar subscripciones OStatus'; $a->strings['Email/Mailbox Setup'] = 'Configuración de Correo/Buzón'; $a->strings['If you wish to communicate with email contacts using this service (optional), please specify how to connect to your mailbox.'] = 'Si quieres comunicarte con contactos de correo con este servicio (opcional), especifica cómo conectar con tu buzón.'; $a->strings['Last successful email check:'] = 'Última comprobación de correo éxitosa:'; @@ -2055,7 +2047,6 @@ $a->strings['%s commented on %s\'s post'] = '%s comentó el artículo de %s'; $a->strings['%s created a new post'] = '%s creó un nuevo artículo'; $a->strings['Friend Suggestion'] = 'Sugerencia de amistad'; $a->strings['Friend/Connect Request'] = 'Solicitud de Amistad/Conexión'; -$a->strings['New Follower'] = 'Nuevo seguidor'; $a->strings['[Friendica:Notify]'] = '[Friendica:Notificar]'; $a->strings['%s New mail received at %s'] = '%s Nuevo correo recibido %s'; $a->strings['%1$s sent you a new private message at %2$s.'] = '%1$s te envió mensaje privado a las %2$s.'; @@ -2140,14 +2131,11 @@ $a->strings['%d comment'] = [ $a->strings['Show more'] = 'Mostrar mas'; $a->strings['Show fewer'] = 'Mostrar menos'; $a->strings['(no subject)'] = '(sin asunto)'; -$a->strings['%s is now following %s.'] = '%s sigue ahora a %s.'; -$a->strings['following'] = 'siguiendo'; -$a->strings['%s stopped following %s.'] = '%s dejó de seguir a %s.'; -$a->strings['stopped following'] = 'dejó de seguir'; $a->strings['Login failed.'] = 'Accesso fallido.'; $a->strings['Login failed. Please check your credentials.'] = 'Acceso falló. Checa tus credenciales.'; $a->strings['Welcome %s'] = 'Bienvenido %s'; $a->strings['Please upload a profile photo.'] = 'Por favor sube una foto para el perfil.'; +$a->strings['OpenWebAuth: %1$s welcomes %2$s'] = 'OpenWebAuth: %1$s te da la bienvenida %2$s'; $a->strings['Friendica Notification'] = 'Notificación de Friendica'; $a->strings['%1$s, %2$s Administrator'] = '%1$s, %2$s Administrador'; $a->strings['%s Administrator'] = '%s Administrador'; diff --git a/view/lang/et/messages.po b/view/lang/et/messages.po index 19e22600d8..4703ae34f4 100644 --- a/view/lang/et/messages.po +++ b/view/lang/et/messages.po @@ -1,15 +1,14 @@ # FRIENDICA Distributed Social Network -# SPDX-FileCopyrightText: Copyright (C) 2010-2024, the Friendica project -# -# SPDX-License-Identifier: AGPL-3.0-or-later -# +# Copyright (C) 2010-2024, the Friendica project +# This file is distributed under the same license as the Friendica package. +# # Translators: # Rain Hawk, 2019-2022 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-10-07 20:46+0000\n" "PO-Revision-Date: 2011-05-05 10:19+0000\n" "Last-Translator: Rain Hawk, 2019-2022\n" "Language-Team: Estonian (http://app.transifex.com/Friendica/friendica/language/et/)\n" @@ -19,77 +18,77 @@ msgstr "" "Language: et\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: mod/item.php:100 mod/item.php:103 mod/item.php:170 mod/item.php:173 +#: mod/item.php:89 mod/item.php:92 mod/item.php:159 mod/item.php:162 msgid "Unable to locate original post." msgstr "Ei leia algset postitust." -#: mod/item.php:138 +#: mod/item.php:127 msgid "Post updated." msgstr "" -#: mod/item.php:203 mod/item.php:207 +#: mod/item.php:192 mod/item.php:196 msgid "Item wasn't stored." msgstr "" -#: mod/item.php:217 +#: mod/item.php:206 msgid "Item couldn't be fetched." msgstr "" -#: mod/item.php:259 mod/item.php:263 +#: mod/item.php:250 mod/item.php:254 msgid "Empty post discarded." msgstr "Tühi postitus eiratud." -#: mod/item.php:432 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 +#: mod/item.php:425 src/Module/Admin/Themes/Details.php:31 +#: src/Module/Admin/Themes/Index.php:51 src/Module/Debug/ItemBody.php:28 +#: src/Module/Debug/ItemBody.php:43 src/Module/Item/Feed.php:66 msgid "Item not found." msgstr "Elementi ei leitud" -#: 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 -#: src/Module/Attach.php:55 src/Module/BaseApi.php:103 -#: src/Module/BaseNotifications.php:98 src/Module/BaseSettings.php:50 -#: src/Module/Calendar/Event/API.php:88 src/Module/Calendar/Event/Form.php:84 -#: src/Module/Calendar/Export.php:82 src/Module/Calendar/Show.php:82 -#: src/Module/Circle.php:41 src/Module/Circle.php:84 -#: src/Module/Contact/Advanced.php:60 src/Module/Contact/Follow.php:87 -#: src/Module/Contact/Follow.php:160 src/Module/Contact/MatchInterests.php:86 -#: src/Module/Contact/Suggestions.php:54 src/Module/Contact/Unfollow.php:66 -#: src/Module/Contact/Unfollow.php:80 src/Module/Contact/Unfollow.php:112 -#: src/Module/FollowConfirm.php:38 src/Module/FriendSuggest.php:57 -#: src/Module/Invite.php:42 src/Module/Invite.php:131 -#: src/Module/Notifications/Notification.php:76 -#: src/Module/Notifications/Notification.php:107 -#: src/Module/OStatus/Repair.php:60 src/Module/OStatus/Subscribe.php:66 -#: src/Module/Post/Edit.php:76 src/Module/Profile/Common.php:75 -#: src/Module/Profile/Contacts.php:78 src/Module/Profile/Photos.php:92 -#: src/Module/Profile/Schedule.php:39 src/Module/Profile/Schedule.php:56 -#: src/Module/Register.php:77 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: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/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/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/User/Import.php:84 src/Module/User/Import.php:91 +#: mod/item.php:449 mod/message.php:54 mod/message.php:100 mod/notes.php:33 +#: mod/photos.php:135 mod/photos.php:627 src/Model/Event.php:506 +#: src/Module/Attach.php:41 src/Module/BaseApi.php:89 +#: src/Module/BaseNotifications.php:84 src/Module/BaseSettings.php:36 +#: src/Module/Calendar/Event/API.php:74 src/Module/Calendar/Event/Form.php:70 +#: src/Module/Calendar/Export.php:68 src/Module/Calendar/Show.php:68 +#: src/Module/Circle.php:27 src/Module/Circle.php:70 +#: src/Module/Contact/Advanced.php:46 src/Module/Contact/Follow.php:73 +#: src/Module/Contact/Follow.php:141 src/Module/Contact/MatchInterests.php:73 +#: src/Module/Contact/Suggestions.php:40 src/Module/Contact/Unfollow.php:52 +#: src/Module/Contact/Unfollow.php:66 src/Module/Contact/Unfollow.php:98 +#: src/Module/FollowConfirm.php:24 src/Module/FriendSuggest.php:43 +#: src/Module/Invite.php:28 src/Module/Invite.php:117 +#: src/Module/Notifications/Notification.php:62 +#: src/Module/Notifications/Notification.php:93 +#: src/Module/OStatus/Subscribe.php:54 src/Module/Post/Edit.php:62 +#: src/Module/Profile/Common.php:61 src/Module/Profile/Contacts.php:64 +#: src/Module/Profile/Photos.php:78 src/Module/Profile/Schedule.php:25 +#: src/Module/Profile/Schedule.php:42 src/Module/Register.php:70 +#: src/Module/Register.php:83 src/Module/Register.php:199 +#: src/Module/Register.php:238 src/Module/Search/Directory.php:23 +#: src/Module/Settings/Account.php:36 src/Module/Settings/Account.php:377 +#: src/Module/Settings/Channels.php:52 src/Module/Settings/Channels.php:127 +#: src/Module/Settings/Delegation.php:76 src/Module/Settings/Display.php:76 +#: src/Module/Settings/Display.php:183 +#: src/Module/Settings/Profile/Photo/Crop.php:151 +#: src/Module/Settings/Profile/Photo/Index.php:96 +#: src/Module/Settings/RemoveMe.php:105 src/Module/Settings/UserExport.php:64 +#: src/Module/Settings/UserExport.php:100 +#: src/Module/Settings/UserExport.php:199 +#: src/Module/Settings/UserExport.php:219 +#: src/Module/Settings/UserExport.php:284 src/Module/User/Delegation.php:140 +#: src/Module/User/Import.php:71 src/Module/User/Import.php:78 msgid "Permission denied." msgstr "Õigus puudub." -#: mod/lostpass.php:40 +#: mod/lostpass.php:28 msgid "No valid account found." msgstr "Valiidset kontot ei leitud." -#: mod/lostpass.php:52 +#: mod/lostpass.php:40 msgid "Password reset request issued. Check your email." msgstr "Paroolimuutmise taotlus teostusel. Kontrolli oma e-posti. " -#: mod/lostpass.php:58 +#: mod/lostpass.php:46 #, php-format msgid "" "\n" @@ -105,7 +104,7 @@ msgid "" "\t\tissued this request." msgstr "" -#: mod/lostpass.php:69 +#: mod/lostpass.php:57 #, php-format msgid "" "\n" @@ -122,70 +121,70 @@ msgid "" "\t\tLogin Name:\t%3$s" msgstr "" -#: mod/lostpass.php:84 +#: mod/lostpass.php:72 #, php-format msgid "Password reset requested at %s" msgstr "" -#: mod/lostpass.php:100 +#: mod/lostpass.php:88 msgid "" "Request could not be verified. (You may have previously submitted it.) " "Password reset failed." msgstr "" -#: mod/lostpass.php:113 +#: mod/lostpass.php:101 msgid "Request has expired, please make a new one." msgstr "" -#: mod/lostpass.php:128 +#: mod/lostpass.php:116 msgid "Forgot your Password?" msgstr "Unustasid oma parooli?" -#: mod/lostpass.php:129 +#: mod/lostpass.php:117 msgid "" "Enter your email address and submit to have your password reset. Then check " "your email for further instructions." msgstr "Sisesta oma emaili aadress ja saada, et taaslähtestada oma parool. Siis kontrolli oma meili lisajuhendite saamiseks. " -#: mod/lostpass.php:130 src/Module/Security/Login.php:160 +#: mod/lostpass.php:118 src/Module/Security/Login.php:150 msgid "Nickname or Email: " msgstr "Hüüdnimi või email:" -#: mod/lostpass.php:131 +#: mod/lostpass.php:119 msgid "Reset" msgstr "Lähtesta" -#: mod/lostpass.php:146 src/Module/Security/Login.php:172 +#: mod/lostpass.php:134 src/Module/Security/Login.php:162 msgid "Password Reset" msgstr "Lähtesta parool" -#: mod/lostpass.php:147 +#: mod/lostpass.php:135 msgid "Your password has been reset as requested." msgstr "Teie parool on taaslähtestatud nagu taotletud." -#: mod/lostpass.php:148 +#: mod/lostpass.php:136 msgid "Your new password is" msgstr "Sinu uus parool on" -#: mod/lostpass.php:149 +#: mod/lostpass.php:137 msgid "Save or copy your new password - and then" msgstr "Salvesta või kopeeri oma uus parool - ja siis" -#: mod/lostpass.php:150 +#: mod/lostpass.php:138 msgid "click here to login" msgstr "vajuta siia sisselogimiseks" -#: mod/lostpass.php:151 +#: mod/lostpass.php:139 msgid "" "Your password may be changed from the Settings page after " "successful login." msgstr "Su parool on muudetav Seaded lehel peale edukat sisselogimist." -#: mod/lostpass.php:155 +#: mod/lostpass.php:143 msgid "Your password has been reset." msgstr "" -#: mod/lostpass.php:158 +#: mod/lostpass.php:146 #, php-format msgid "" "\n" @@ -196,7 +195,7 @@ msgid "" "\t\t" msgstr "" -#: mod/lostpass.php:164 +#: mod/lostpass.php:152 #, php-format msgid "" "\n" @@ -210,2361 +209,2415 @@ msgid "" "\t\t" msgstr "" -#: mod/lostpass.php:176 +#: mod/lostpass.php:164 #, php-format msgid "Your password has been changed at %s" msgstr "" -#: mod/message.php:46 mod/message.php:128 src/Content/Nav.php:321 +#: mod/message.php:33 mod/message.php:115 src/Content/Nav.php:307 msgid "New Message" msgstr "Uus sõnum" -#: mod/message.php:82 +#: mod/message.php:69 msgid "No recipient selected." msgstr "Ühtegi saajat pole valitud." -#: mod/message.php:87 +#: mod/message.php:74 msgid "Unable to locate contact information." msgstr "Ei leia kontakti infot." -#: mod/message.php:91 +#: mod/message.php:78 msgid "Message could not be sent." msgstr "Sõnumit ei saanud saata." -#: mod/message.php:95 +#: mod/message.php:82 msgid "Message collection failure." msgstr "Sõnumi vastuvõtmise viga." -#: mod/message.php:122 src/Module/Notifications/Introductions.php:135 -#: src/Module/Notifications/Introductions.php:170 -#: src/Module/Notifications/Notification.php:85 +#: mod/message.php:109 src/Module/Notifications/Introductions.php:127 +#: src/Module/Notifications/Introductions.php:162 +#: src/Module/Notifications/Notification.php:71 msgid "Discard" msgstr "Eira" -#: mod/message.php:135 src/Content/Nav.php:318 view/theme/frio/theme.php:241 +#: mod/message.php:122 src/Content/Nav.php:304 view/theme/frio/theme.php:232 msgid "Messages" msgstr "Sõnumid" -#: mod/message.php:148 +#: mod/message.php:135 msgid "Conversation not found." msgstr "Vestlust ei leitud." -#: mod/message.php:153 +#: mod/message.php:140 msgid "Message was not deleted." msgstr "" -#: mod/message.php:168 +#: mod/message.php:155 msgid "Conversation was not removed." msgstr "" -#: mod/message.php:181 mod/message.php:286 +#: mod/message.php:168 mod/message.php:273 msgid "Please enter a link URL:" msgstr "Palun sisesta lingi URL: " -#: mod/message.php:190 +#: mod/message.php:177 msgid "Send Private Message" msgstr "Saada privaatsõnum" -#: mod/message.php:191 mod/message.php:346 +#: mod/message.php:178 mod/message.php:333 +#: src/Module/Privacy/PermissionTooltip.php:118 msgid "To:" msgstr "" -#: mod/message.php:192 mod/message.php:347 +#: mod/message.php:179 mod/message.php:334 msgid "Subject:" msgstr "Teema:" -#: mod/message.php:196 mod/message.php:350 src/Module/Invite.php:171 +#: mod/message.php:183 mod/message.php:337 src/Module/Invite.php:157 msgid "Your message:" msgstr "Sinu sõnum:" -#: mod/message.php:199 mod/message.php:354 src/Content/Conversation.php:370 -#: src/Module/Post/Edit.php:131 +#: mod/message.php:186 mod/message.php:341 src/Content/Conversation.php:355 +#: src/Module/Post/Edit.php:117 msgid "Upload photo" msgstr "Lae foto üles" -#: mod/message.php:200 mod/message.php:355 src/Module/Post/Edit.php:135 +#: mod/message.php:187 mod/message.php:342 src/Module/Post/Edit.php:121 msgid "Insert web link" msgstr "Lisa hüperlink" -#: mod/message.php:201 mod/message.php:357 mod/photos.php:1301 -#: 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 +#: mod/message.php:188 mod/message.php:344 mod/photos.php:1255 +#: src/Content/Conversation.php:386 src/Content/Conversation.php:1562 +#: src/Module/Item/Compose.php:199 src/Module/Post/Edit.php:131 +#: src/Object/Post.php:604 msgid "Please wait" msgstr "Palun oota" -#: 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 -#: 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/Probe.php:54 src/Module/Debug/WebFinger.php:51 -#: src/Module/FriendSuggest.php:145 src/Module/Install.php:234 -#: src/Module/Install.php:274 src/Module/Install.php:309 -#: src/Module/Invite.php:178 src/Module/Item/Compose.php:189 -#: src/Module/Moderation/Item/Source.php:79 -#: src/Module/Moderation/Report/Create.php:168 -#: src/Module/Moderation/Report/Create.php:183 -#: src/Module/Moderation/Report/Create.php:211 -#: src/Module/Moderation/Report/Create.php:263 -#: src/Module/Profile/Profile.php: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/vier/config.php:135 +#: mod/message.php:189 mod/message.php:343 mod/photos.php:658 +#: mod/photos.php:778 mod/photos.php:1055 mod/photos.php:1096 +#: mod/photos.php:1152 mod/photos.php:1232 +#: src/Module/Calendar/Event/Form.php:236 src/Module/Contact/Advanced.php:118 +#: src/Module/Contact/Profile.php:370 +#: src/Module/Debug/ActivityPubConversion.php:132 +#: src/Module/Debug/Babel.php:307 src/Module/Debug/Localtime.php:50 +#: src/Module/Debug/Probe.php:40 src/Module/Debug/WebFinger.php:37 +#: src/Module/FriendSuggest.php:131 src/Module/Install.php:220 +#: src/Module/Install.php:260 src/Module/Install.php:295 +#: src/Module/Invite.php:164 src/Module/Item/Compose.php:182 +#: src/Module/Moderation/Item/Source.php:71 +#: src/Module/Moderation/Report/Create.php:154 +#: src/Module/Moderation/Report/Create.php:169 +#: src/Module/Moderation/Report/Create.php:197 +#: src/Module/Moderation/Report/Create.php:249 +#: src/Module/Profile/Profile.php:262 +#: src/Module/Settings/Profile/Index.php:248 +#: src/Module/Settings/Server/Action.php:65 src/Module/User/Delegation.php:175 +#: src/Object/Post.php:1145 view/theme/duepuntozero/config.php:73 +#: view/theme/frio/config.php:138 view/theme/quattro/config.php:75 +#: view/theme/vier/config.php:123 msgid "Submit" msgstr "Saada" -#: mod/message.php:223 +#: mod/message.php:210 msgid "No messages." msgstr "Sõnumeid pole." -#: mod/message.php:279 +#: mod/message.php:266 msgid "Message not available." msgstr "Sõnum pole saadaval. " -#: mod/message.php:323 +#: mod/message.php:310 msgid "Delete message" msgstr "Kustuta sõnum" -#: mod/message.php:325 mod/message.php:456 +#: mod/message.php:312 mod/message.php:441 msgid "D, d M Y - g:i A" msgstr "" -#: mod/message.php:340 mod/message.php:453 +#: mod/message.php:327 mod/message.php:438 msgid "Delete conversation" msgstr "Kustuta vestlus" -#: mod/message.php:342 +#: mod/message.php:329 msgid "" "No secure communications available. You may be able to " "respond from the sender's profile page." msgstr "Turvaline suhtlus pole saadaval. Vastamine võib õnnestuda saatja profiili lehel. " -#: mod/message.php:345 +#: mod/message.php:332 msgid "Send Reply" msgstr "Saada vastus" -#: mod/message.php:427 +#: mod/message.php:412 #, php-format msgid "Unknown sender - %s" msgstr "Tundmatu saatja - %s" -#: mod/message.php:429 +#: mod/message.php:414 #, php-format msgid "You and %s" msgstr "Sina ja %s " -#: mod/message.php:431 +#: mod/message.php:416 #, php-format msgid "%s and You" msgstr "%s ja Sina" -#: mod/message.php:459 +#: mod/message.php:444 #, php-format msgid "%d message" msgid_plural "%d messages" msgstr[0] "%d sõnum" msgstr[1] "%d sõnumid" -#: mod/notes.php:52 src/Module/BaseProfile.php:108 +#: mod/notes.php:40 src/Module/BaseProfile.php:94 msgid "Personal Notes" msgstr "Isiklikud märkmed" -#: mod/notes.php:56 +#: mod/notes.php:44 msgid "Personal notes are visible only by yourself." msgstr "" -#: mod/notes.php:57 src/Content/Text/HTML.php:860 -#: src/Module/Admin/Storage.php:142 src/Module/Filer/SaveTag.php:74 -#: src/Module/Post/Edit.php:129 src/Module/Settings/Channels.php:223 +#: mod/notes.php:45 src/Content/Text/HTML.php:847 +#: src/Module/Admin/Storage.php:128 src/Module/Filer/SaveTag.php:60 +#: src/Module/Post/Edit.php:115 src/Module/Settings/Channels.php:215 msgid "Save" msgstr "Salvesta" -#: mod/photos.php:67 mod/photos.php:132 mod/photos.php:578 -#: 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 -#: src/Module/Profile/Common.php:62 src/Module/Profile/Common.php:71 -#: src/Module/Profile/Contacts.php:64 src/Module/Profile/Contacts.php:72 -#: src/Module/Profile/Conversations.php:91 src/Module/Profile/Media.php:56 -#: src/Module/Profile/Photos.php:83 src/Module/Profile/RemoteFollow.php:71 -#: src/Module/Register.php:267 +#: mod/photos.php:54 mod/photos.php:117 mod/photos.php:537 +#: src/Model/Event.php:498 src/Model/Profile.php:213 +#: src/Module/Calendar/Export.php:60 src/Module/Calendar/Show.php:60 +#: src/Module/Feed.php:52 src/Module/HCard.php:37 +#: src/Module/Profile/Common.php:48 src/Module/Profile/Common.php:57 +#: src/Module/Profile/Contacts.php:50 src/Module/Profile/Contacts.php:58 +#: src/Module/Profile/Conversations.php:77 src/Module/Profile/Media.php:42 +#: src/Module/Profile/Photos.php:69 src/Module/Profile/RemoteFollow.php:57 +#: src/Module/Register.php:260 msgid "User not found." msgstr "" -#: mod/photos.php:106 src/Module/BaseProfile.php:68 -#: src/Module/Profile/Photos.php:379 +#: mod/photos.php:91 src/Module/BaseProfile.php:54 +#: src/Module/Profile/Photos.php:361 msgid "Photo Albums" msgstr "Foto albumid" -#: mod/photos.php:107 src/Module/Profile/Photos.php:380 -#: src/Module/Profile/Photos.php:400 +#: mod/photos.php:92 src/Module/Profile/Photos.php:362 +#: src/Module/Profile/Photos.php:382 msgid "Recent Photos" msgstr "Hiljutised fotod" -#: mod/photos.php:109 mod/photos.php:872 src/Module/Profile/Photos.php:382 -#: src/Module/Profile/Photos.php:402 +#: mod/photos.php:94 mod/photos.php:826 src/Module/Profile/Photos.php:364 +#: src/Module/Profile/Photos.php:384 msgid "Upload New Photos" msgstr "Lae üles uusi fotosid" -#: mod/photos.php:121 src/Module/BaseSettings.php:72 -#: src/Module/Profile/Photos.php:363 +#: mod/photos.php:106 src/Module/BaseSettings.php:58 +#: src/Module/Profile/Photos.php:345 msgid "everybody" msgstr "igaüks" -#: mod/photos.php:159 +#: mod/photos.php:142 msgid "Contact information unavailable" msgstr "Kontakti infot pole saadaval" -#: mod/photos.php:188 +#: mod/photos.php:171 msgid "Album not found." msgstr "Albumit ei leitud" -#: mod/photos.php:244 +#: mod/photos.php:227 msgid "Album successfully deleted" msgstr "" -#: mod/photos.php:246 +#: mod/photos.php:229 msgid "Album was empty." msgstr "" -#: mod/photos.php:277 +#: mod/photos.php:260 msgid "Failed to delete the photo." msgstr "" -#: mod/photos.php:545 +#: mod/photos.php:504 msgid "a photo" msgstr "see foto" -#: mod/photos.php:545 +#: mod/photos.php:504 #, php-format msgid "%1$s was tagged in %2$s by %3$s" msgstr "%1$s täägiti kohas %2$s %3$s poolt" -#: mod/photos.php:582 src/Module/Conversation/Community.php:160 -#: src/Module/Directory.php:48 src/Module/Profile/Photos.php:295 -#: src/Module/Search/Index.php:65 +#: mod/photos.php:541 src/Module/Conversation/Community.php:148 +#: src/Module/Directory.php:35 src/Module/Profile/Photos.php:279 +#: src/Module/Search/Index.php:51 msgid "Public access denied." msgstr "Avalik ligipääs keelatud." -#: mod/photos.php:587 +#: mod/photos.php:546 msgid "No photos selected" msgstr "Fotosid pole valitud" -#: mod/photos.php:721 +#: mod/photos.php:674 #, php-format msgid "The maximum accepted image size is %s" msgstr "" -#: mod/photos.php:728 +#: mod/photos.php:681 msgid "Upload Photos" msgstr "Lae fotod üles" -#: mod/photos.php:732 mod/photos.php:820 +#: mod/photos.php:685 mod/photos.php:774 msgid "New album name: " msgstr "Uus albuminimi" -#: mod/photos.php:733 +#: mod/photos.php:686 msgid "or select existing album:" msgstr "või vali olemasolev album:" -#: mod/photos.php:734 +#: mod/photos.php:687 msgid "Do not show a status post for this upload" msgstr "Ära näita staatuse postitust selle üleslaadimise kohta" -#: mod/photos.php:736 mod/photos.php:1097 src/Content/Conversation.php:403 -#: src/Module/Calendar/Event/Form.php:253 src/Module/Post/Edit.php:183 +#: mod/photos.php:690 mod/photos.php:1051 src/Content/Conversation.php:388 +#: src/Module/Calendar/Event/Form.php:239 src/Module/Post/Edit.php:169 msgid "Permissions" msgstr "Õigused" -#: mod/photos.php:801 +#: mod/photos.php:755 msgid "Do you really want to delete this photo album and all its photos?" msgstr "Kas soovid tõesti kustutada selle fotoalbumi ja kõik fotod?" -#: mod/photos.php:802 mod/photos.php:825 +#: mod/photos.php:756 mod/photos.php:779 msgid "Delete Album" msgstr "Kustuta album" -#: mod/photos.php:803 mod/photos.php:903 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 -#: src/Module/Media/Photo/Browser.php:88 src/Module/Post/Edit.php:167 -#: src/Module/Post/Tag/Remove.php:109 src/Module/Profile/RemoteFollow.php:134 -#: src/Module/Security/TwoFactor/SignOut.php:125 +#: mod/photos.php:757 mod/photos.php:857 src/Content/Conversation.php:403 +#: src/Module/Contact/Follow.php:154 src/Module/Contact/Revoke.php:92 +#: src/Module/Contact/Unfollow.php:112 +#: src/Module/Media/Attachment/Browser.php:63 +#: src/Module/Media/Photo/Browser.php:74 src/Module/Post/Edit.php:153 +#: src/Module/Post/Tag/Remove.php:95 src/Module/Profile/RemoteFollow.php:120 +#: src/Module/Security/TwoFactor/SignOut.php:111 msgid "Cancel" msgstr "Katkesta" -#: mod/photos.php:829 +#: mod/photos.php:783 msgid "Edit Album" msgstr "Muuda Albumit" -#: mod/photos.php:830 +#: mod/photos.php:784 msgid "Drop Album" msgstr "" -#: mod/photos.php:834 +#: mod/photos.php:788 msgid "Show Newest First" msgstr "Uusimad esmalt" -#: mod/photos.php:836 +#: mod/photos.php:790 msgid "Show Oldest First" msgstr "Vanimad esmalt" -#: mod/photos.php:857 src/Module/Profile/Photos.php:350 +#: mod/photos.php:811 src/Module/Profile/Photos.php:332 msgid "View Photo" msgstr "Kuva foto" -#: mod/photos.php:889 +#: mod/photos.php:843 msgid "Permission denied. Access to this item may be restricted." msgstr "Ebapiisavad õigused. Ligipääs siia võib olla piiratud." -#: mod/photos.php:891 +#: mod/photos.php:845 msgid "Photo not available" msgstr "Foto ei ole saadaval" -#: mod/photos.php:901 +#: mod/photos.php:855 msgid "Do you really want to delete this photo?" msgstr "Kas soovid tõesti selle foto kustutada?" -#: mod/photos.php:902 mod/photos.php:1102 +#: mod/photos.php:856 mod/photos.php:1056 msgid "Delete Photo" msgstr "Kustuta foto" -#: mod/photos.php:1000 +#: mod/photos.php:954 msgid "View photo" msgstr "Kuva foto" -#: mod/photos.php:1002 +#: mod/photos.php:956 msgid "Edit photo" msgstr "Muuda foto" -#: mod/photos.php:1003 +#: mod/photos.php:957 msgid "Delete photo" msgstr "" -#: mod/photos.php:1004 +#: mod/photos.php:958 msgid "Use as profile photo" msgstr "Kasuta profiilipildina" -#: mod/photos.php:1011 +#: mod/photos.php:965 msgid "Private Photo" msgstr "" -#: mod/photos.php:1017 +#: mod/photos.php:971 msgid "View Full Size" msgstr "Kuva täismõõdus" -#: mod/photos.php:1070 +#: mod/photos.php:1024 msgid "Tags: " msgstr "" -#: mod/photos.php:1073 +#: mod/photos.php:1027 msgid "[Select tags to remove]" msgstr "[vali tag` id mida eemaldada]" -#: mod/photos.php:1088 +#: mod/photos.php:1042 msgid "New album name" msgstr "Uus albuminimi" -#: mod/photos.php:1089 +#: mod/photos.php:1043 msgid "Caption" msgstr "" -#: mod/photos.php:1090 +#: mod/photos.php:1044 msgid "Add a Tag" msgstr "Lisa Tag" -#: mod/photos.php:1090 +#: mod/photos.php:1044 msgid "" "Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping" msgstr "Näide: @mati, @Kati_Murutar, @jim@example.com, #Viljandi, #eestimaa, #matkamine" -#: mod/photos.php:1091 +#: mod/photos.php:1045 msgid "Do not rotate" msgstr "Ära pööra" -#: mod/photos.php:1092 +#: mod/photos.php:1046 msgid "Rotate CW (right)" msgstr "Pööra CW (paremale)" -#: mod/photos.php:1093 +#: mod/photos.php:1047 msgid "Rotate CCW (left)" msgstr "Pööra CCW (vasakule)" -#: 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:1151 +#: mod/photos.php:1093 mod/photos.php:1149 mod/photos.php:1229 +#: src/Module/Contact.php:600 src/Module/Item/Compose.php:181 +#: src/Object/Post.php:1142 msgid "This is you" msgstr "See oled sina" -#: 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:1153 +#: mod/photos.php:1095 mod/photos.php:1151 mod/photos.php:1231 +#: src/Module/Moderation/Reports.php:102 src/Object/Post.php:598 +#: src/Object/Post.php:1144 msgid "Comment" msgstr "Kommentaar" -#: 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:1167 +#: mod/photos.php:1097 mod/photos.php:1153 mod/photos.php:1233 +#: src/Content/Conversation.php:400 src/Module/Calendar/Event/Form.php:234 +#: src/Module/Item/Compose.php:194 src/Module/Post/Edit.php:151 +#: src/Object/Post.php:1158 msgid "Preview" msgstr "Eelvaade" -#: mod/photos.php:1144 src/Content/Conversation.php:369 -#: src/Module/Post/Edit.php:130 src/Object/Post.php:1155 +#: mod/photos.php:1098 src/Content/Conversation.php:354 +#: src/Module/Post/Edit.php:116 src/Object/Post.php:1146 msgid "Loading..." msgstr "" -#: mod/photos.php:1236 src/Content/Conversation.php:1501 -#: src/Object/Post.php:261 +#: mod/photos.php:1190 src/Content/Conversation.php:1484 +#: src/Object/Post.php:260 msgid "Select" msgstr "Vali" -#: mod/photos.php:1237 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 -#: src/Module/Settings/Connectors.php:244 -#: src/Module/Settings/Server/Index.php:109 +#: mod/photos.php:1191 src/Content/Conversation.php:1485 +#: src/Module/Moderation/Users/Active.php:122 +#: src/Module/Moderation/Users/Blocked.php:122 +#: src/Module/Moderation/Users/Index.php:137 +#: src/Module/Settings/Connectors.php:233 +#: src/Module/Settings/Server/Index.php:95 msgid "Delete" msgstr "Kustuta" -#: mod/photos.php:1298 src/Object/Post.php:426 +#: mod/photos.php:1252 src/Object/Post.php:426 msgid "Like" msgstr "" -#: mod/photos.php:1299 src/Object/Post.php:426 +#: mod/photos.php:1253 src/Object/Post.php:426 msgid "I like this (toggle)" msgstr "Mulle meeldib see (toggle)" -#: mod/photos.php:1300 src/Object/Post.php:427 +#: mod/photos.php:1254 src/Object/Post.php:427 msgid "Dislike" msgstr "" -#: mod/photos.php:1302 src/Object/Post.php:427 +#: mod/photos.php:1256 src/Object/Post.php:427 msgid "I don't like this (toggle)" msgstr "Mulle ei meeldi see (toggle)" -#: mod/photos.php:1324 +#: mod/photos.php:1278 msgid "Map" msgstr "Kaart" -#: src/App.php:473 +#: src/App.php:432 msgid "No system theme config value set." msgstr "" -#: src/App.php:581 +#: src/App.php:540 msgid "Apologies but the website is unavailable at the moment." msgstr "" -#: src/App/Page.php:249 +#: src/App/Page.php:236 msgid "Delete this item?" msgstr "Kustutada see element?" -#: src/App/Page.php:250 +#: src/App/Page.php:237 msgid "" "Block this author? They won't be able to follow you nor see your public " "posts, and you won't be able to see their posts and their notifications." msgstr "" -#: src/App/Page.php:251 +#: src/App/Page.php:238 msgid "" "Ignore this author? You won't be able to see their posts and their " "notifications." msgstr "" -#: src/App/Page.php:252 +#: src/App/Page.php:239 msgid "Collapse this author's posts?" msgstr "" -#: src/App/Page.php:253 +#: src/App/Page.php:240 msgid "Ignore this author's server?" msgstr "" -#: src/App/Page.php:254 src/Module/Settings/Server/Action.php:61 -#: src/Module/Settings/Server/Index.php:108 +#: src/App/Page.php:241 src/Module/Settings/Server/Action.php:47 +#: src/Module/Settings/Server/Index.php:94 msgid "" "You won't see any content from this server including reshares in your " "Network page, the community pages and individual conversations." msgstr "" -#: src/App/Page.php:256 +#: src/App/Page.php:243 msgid "Like not successful" msgstr "" -#: src/App/Page.php:257 +#: src/App/Page.php:244 msgid "Dislike not successful" msgstr "" -#: src/App/Page.php:258 +#: src/App/Page.php:245 msgid "Sharing not successful" msgstr "" -#: src/App/Page.php:259 +#: src/App/Page.php:246 msgid "Attendance unsuccessful" msgstr "" -#: src/App/Page.php:260 +#: src/App/Page.php:247 msgid "Backend error" msgstr "" -#: src/App/Page.php:261 +#: src/App/Page.php:248 msgid "Network error" msgstr "" -#: src/App/Page.php:264 +#: src/App/Page.php:251 msgid "Drop files here to upload" msgstr "" -#: src/App/Page.php:265 +#: src/App/Page.php:252 msgid "Your browser does not support drag and drop file uploads." msgstr "" -#: src/App/Page.php:266 +#: src/App/Page.php:253 msgid "" "Please use the fallback form below to upload your files like in the olden " "days." msgstr "" -#: src/App/Page.php:267 +#: src/App/Page.php:254 msgid "File is too big ({{filesize}}MiB). Max filesize: {{maxFilesize}}MiB." msgstr "" -#: src/App/Page.php:268 +#: src/App/Page.php:255 msgid "You can't upload files of this type." msgstr "" -#: src/App/Page.php:269 +#: src/App/Page.php:256 msgid "Server responded with {{statusCode}} code." msgstr "" -#: src/App/Page.php:270 +#: src/App/Page.php:257 msgid "Cancel upload" msgstr "" -#: src/App/Page.php:271 +#: src/App/Page.php:258 msgid "Upload canceled." msgstr "" -#: src/App/Page.php:272 +#: src/App/Page.php:259 msgid "Are you sure you want to cancel this upload?" msgstr "" -#: src/App/Page.php:273 +#: src/App/Page.php:260 msgid "Remove file" msgstr "" -#: src/App/Page.php:274 +#: src/App/Page.php:261 msgid "You can't upload any more files." msgstr "" -#: src/App/Page.php:352 +#: src/App/Page.php:339 msgid "toggle mobile" msgstr "vaheta mobiilseks" -#: src/App/Router.php:309 +#: src/App/Router.php:295 #, php-format msgid "Method not allowed for this module. Allowed method(s): %s" msgstr "" -#: src/App/Router.php:311 src/Module/HTTPException/PageNotFound.php:49 +#: src/App/Router.php:297 src/Module/HTTPException/PageNotFound.php:35 +#: src/Module/Stats.php:49 msgid "Page not found." msgstr "" -#: src/App/Router.php:323 +#: src/App/Router.php:309 msgid "You must be logged in to use addons. " msgstr "Lisade kasutamiseks peate sisse logima" -#: src/BaseModule.php:407 +#: src/BaseModule.php:393 msgid "" "The form security token was not correct. This probably happened because the " "form has been opened for too long (>3 hours) before submitting it." msgstr "" -#: src/BaseModule.php:434 +#: src/BaseModule.php:420 msgid "All contacts" msgstr "" -#: src/BaseModule.php:439 src/Content/Conversation/Factory/Channel.php:46 -#: src/Content/Widget.php: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:154 +#: src/BaseModule.php:425 src/Content/Conversation/Factory/Channel.php:32 +#: src/Content/Widget.php:218 src/Core/ACL.php:181 src/Module/Contact.php:395 +#: src/Module/Privacy/PermissionTooltip.php:150 +#: src/Module/Privacy/PermissionTooltip.php:172 +#: src/Module/Settings/Channels.php:146 msgid "Followers" msgstr "Jälgijad" -#: src/BaseModule.php:444 src/Content/Widget.php:240 -#: src/Module/Contact.php:417 src/Module/Settings/Channels.php:153 +#: src/BaseModule.php:430 src/Content/Widget.php:219 +#: src/Module/Contact.php:398 src/Module/Settings/Channels.php:145 msgid "Following" msgstr "" -#: src/BaseModule.php:449 src/Content/Widget.php:241 -#: src/Module/Contact.php:420 +#: src/BaseModule.php:435 src/Content/Widget.php:220 +#: src/Module/Contact.php:401 msgid "Mutual friends" msgstr "" -#: src/BaseModule.php:457 +#: src/BaseModule.php:443 msgid "Common" msgstr "" -#: src/Console/Addon.php:175 src/Console/Addon.php:199 +#: src/Console/Addon.php:161 src/Console/Addon.php:185 msgid "Addon not found" msgstr "" -#: src/Console/Addon.php:179 +#: src/Console/Addon.php:165 msgid "Addon already enabled" msgstr "" -#: src/Console/Addon.php:203 +#: src/Console/Addon.php:189 msgid "Addon already disabled" msgstr "" -#: src/Console/ArchiveContact.php:106 +#: src/Console/ArchiveContact.php:92 #, php-format msgid "Could not find any unarchived contact entry for this URL (%s)" msgstr "" -#: src/Console/ArchiveContact.php:109 +#: src/Console/ArchiveContact.php:95 msgid "The contact entries have been archived" msgstr "Selle kontakti kirjed arhiveeritud" -#: src/Console/GlobalCommunityBlock.php:96 -#: src/Module/Moderation/Blocklist/Contact.php:65 +#: src/Console/ClearAvatarCache.php:73 +msgid "" +"The avatar cache needs to be disabled in local.config.php to use this " +"command." +msgstr "" + +#: src/Console/GlobalCommunityBlock.php:82 +#: src/Module/Moderation/Blocklist/Contact.php:51 #, php-format msgid "Could not find any contact entry for this URL (%s)" msgstr "" -#: src/Console/GlobalCommunityBlock.php:101 -#: src/Module/Moderation/Blocklist/Contact.php:82 +#: src/Console/GlobalCommunityBlock.php:87 +#: src/Module/Moderation/Blocklist/Contact.php:68 msgid "The contact has been blocked from the node" msgstr "" -#: src/Console/MergeContacts.php:75 +#: src/Console/MergeContacts.php:61 #, php-format msgid "%d %s, %d duplicates." msgstr "" -#: src/Console/MergeContacts.php:78 +#: src/Console/MergeContacts.php:64 #, php-format msgid "uri-id is empty for contact %s." msgstr "" -#: src/Console/MergeContacts.php:91 +#: src/Console/MergeContacts.php:77 #, php-format msgid "No valid first contact found for uri-id %d." msgstr "" -#: src/Console/MergeContacts.php:102 +#: src/Console/MergeContacts.php:88 #, php-format msgid "Wrong duplicate found for uri-id %d in %d (url: %s != %s)." msgstr "" -#: src/Console/MergeContacts.php:106 +#: src/Console/MergeContacts.php:92 #, php-format msgid "Wrong duplicate found for uri-id %d in %d (nurl: %s != %s)." msgstr "" -#: src/Console/MergeContacts.php:142 +#: src/Console/MergeContacts.php:128 #, php-format msgid "Deletion of id %d failed" msgstr "" -#: src/Console/MergeContacts.php:144 +#: src/Console/MergeContacts.php:130 #, php-format msgid "Deletion of id %d was successful" msgstr "" -#: src/Console/MergeContacts.php:150 +#: src/Console/MergeContacts.php:136 #, php-format msgid "Updating \"%s\" in \"%s\" from %d to %d" msgstr "" -#: src/Console/MergeContacts.php:152 +#: src/Console/MergeContacts.php:138 msgid " - found" msgstr "" -#: src/Console/MergeContacts.php:159 +#: src/Console/MergeContacts.php:145 msgid " - failed" msgstr "" -#: src/Console/MergeContacts.php:161 +#: src/Console/MergeContacts.php:147 msgid " - success" msgstr "" -#: src/Console/MergeContacts.php:165 +#: src/Console/MergeContacts.php:151 msgid " - deleted" msgstr "" -#: src/Console/MergeContacts.php:168 +#: src/Console/MergeContacts.php:154 msgid " - done" msgstr "" -#: src/Console/MoveToAvatarCache.php:91 +#: src/Console/MoveToAvatarCache.php:77 msgid "The avatar cache needs to be enabled to use this command." msgstr "" -#: src/Console/MoveToAvatarCache.php:109 +#: src/Console/MoveToAvatarCache.php:95 #, php-format msgid "no resource in photo %s" msgstr "" -#: src/Console/MoveToAvatarCache.php:137 +#: src/Console/MoveToAvatarCache.php:123 #, php-format msgid "no photo with id %s" msgstr "" -#: src/Console/MoveToAvatarCache.php:146 +#: src/Console/MoveToAvatarCache.php:132 #, php-format msgid "no image data for photo with id %s" msgstr "" -#: src/Console/MoveToAvatarCache.php:155 +#: src/Console/MoveToAvatarCache.php:141 #, php-format msgid "invalid image for id %s" msgstr "" -#: src/Console/MoveToAvatarCache.php:168 +#: src/Console/MoveToAvatarCache.php:154 #, php-format msgid "Quit on invalid photo %s" msgstr "" -#: src/Console/PostUpdate.php:87 +#: src/Console/PostUpdate.php:73 #, php-format msgid "Post update version number has been set to %s." msgstr "" -#: src/Console/PostUpdate.php:95 +#: src/Console/PostUpdate.php:81 msgid "Check for pending update actions." msgstr "" -#: src/Console/PostUpdate.php:97 +#: src/Console/PostUpdate.php:83 msgid "Done." msgstr "Tehtud." -#: src/Console/PostUpdate.php:99 +#: src/Console/PostUpdate.php:85 msgid "Execute pending post updates." msgstr "" -#: src/Console/PostUpdate.php:105 +#: src/Console/PostUpdate.php:91 msgid "All pending post updates are done." msgstr "" -#: src/Console/User.php:158 src/Console/User.php:246 +#: src/Console/User.php:144 src/Console/User.php:232 msgid "Enter user nickname: " msgstr "" -#: src/Console/User.php:182 src/Model/User.php:819 -#: src/Module/Api/Twitter/ContactEndpoint.php:74 -#: src/Module/Moderation/Users/Active.php:71 -#: src/Module/Moderation/Users/Blocked.php:71 -#: src/Module/Moderation/Users/Index.php:78 -#: src/Module/Moderation/Users/Pending.php:67 +#: src/Console/User.php:168 src/Model/User.php:831 +#: src/Module/Api/Twitter/ContactEndpoint.php:60 +#: src/Module/Moderation/Users/Active.php:57 +#: src/Module/Moderation/Users/Blocked.php:57 +#: src/Module/Moderation/Users/Index.php:64 +#: src/Module/Moderation/Users/Pending.php:53 msgid "User not found" msgstr "Kasutajat ei leitud" -#: src/Console/User.php:202 +#: src/Console/User.php:188 msgid "Enter new password: " msgstr "Sisesta uus parool:" -#: src/Console/User.php:210 src/Module/Security/PasswordTooLong.php:69 -#: src/Module/Settings/Account.php:75 +#: src/Console/User.php:196 src/Module/Security/PasswordTooLong.php:55 +#: src/Module/Settings/Account.php:61 msgid "Password update failed. Please try again." msgstr "Parooli uuendus nurjus. Palun proovi uuesti." -#: src/Console/User.php:213 src/Module/Security/PasswordTooLong.php:72 -#: src/Module/Settings/Account.php:78 +#: src/Console/User.php:199 src/Module/Security/PasswordTooLong.php:58 +#: src/Module/Settings/Account.php:64 msgid "Password changed." msgstr "Parool muudetud." -#: src/Console/User.php:238 +#: src/Console/User.php:224 msgid "Enter user name: " msgstr "" -#: src/Console/User.php:254 +#: src/Console/User.php:240 msgid "Enter user email address: " msgstr "" -#: src/Console/User.php:262 +#: src/Console/User.php:248 msgid "Enter a language (optional): " msgstr "" -#: src/Console/User.php:267 +#: src/Console/User.php:253 msgid "Enter URL of an image to use as avatar (optional): " msgstr "" -#: src/Console/User.php:292 +#: src/Console/User.php:278 msgid "User is not pending." msgstr "" -#: src/Console/User.php:324 +#: src/Console/User.php:310 msgid "User has already been marked for deletion." msgstr "" -#: src/Console/User.php:329 +#: src/Console/User.php:315 #, php-format msgid "Type \"yes\" to delete %s" msgstr "" -#: src/Console/User.php:331 +#: src/Console/User.php:317 msgid "Deletion aborted." msgstr "" -#: src/Console/User.php:456 +#: src/Console/User.php:442 msgid "Enter category: " msgstr "" -#: src/Console/User.php:466 +#: src/Console/User.php:452 msgid "Enter key: " msgstr "" -#: src/Console/User.php:500 +#: src/Console/User.php:486 msgid "Enter value: " msgstr "" -#: src/Content/BoundariesPager.php:116 src/Content/Pager.php:171 +#: src/Content/BoundariesPager.php:102 src/Content/Pager.php:157 msgid "newer" msgstr "ei kunagi" -#: src/Content/BoundariesPager.php:124 src/Content/Pager.php:176 +#: src/Content/BoundariesPager.php:110 src/Content/Pager.php:162 msgid "older" msgstr "vanem" -#: src/Content/ContactSelector.php:51 +#: src/Content/ContactSelector.php:37 msgid "Frequently" msgstr "Sageli" -#: src/Content/ContactSelector.php:52 +#: src/Content/ContactSelector.php:38 msgid "Hourly" msgstr "Tunnis" -#: src/Content/ContactSelector.php:53 +#: src/Content/ContactSelector.php:39 msgid "Twice daily" msgstr "Kakskord päevas" -#: src/Content/ContactSelector.php:54 +#: src/Content/ContactSelector.php:40 msgid "Daily" msgstr "Päevas" -#: src/Content/ContactSelector.php:55 +#: src/Content/ContactSelector.php:41 msgid "Weekly" msgstr "Nädalas" -#: src/Content/ContactSelector.php:56 +#: src/Content/ContactSelector.php:42 msgid "Monthly" msgstr "Kuus" -#: src/Content/ContactSelector.php:126 +#: src/Content/ContactSelector.php:112 msgid "DFRN" msgstr "" -#: src/Content/ContactSelector.php:127 +#: src/Content/ContactSelector.php:113 msgid "OStatus" msgstr "" -#: src/Content/ContactSelector.php:128 +#: src/Content/ContactSelector.php:114 msgid "RSS/Atom" msgstr "" -#: src/Content/ContactSelector.php:129 -#: src/Module/Moderation/Users/Active.php:126 -#: src/Module/Moderation/Users/Blocked.php:126 -#: src/Module/Moderation/Users/Create.php:72 -#: src/Module/Moderation/Users/Deleted.php:83 -#: src/Module/Moderation/Users/Index.php:140 -#: src/Module/Moderation/Users/Index.php:160 -#: src/Module/Moderation/Users/Pending.php:99 +#: src/Content/ContactSelector.php:115 +#: src/Module/Moderation/Users/Active.php:112 +#: src/Module/Moderation/Users/Blocked.php:112 +#: src/Module/Moderation/Users/Create.php:58 +#: src/Module/Moderation/Users/Deleted.php:69 +#: src/Module/Moderation/Users/Index.php:126 +#: src/Module/Moderation/Users/Index.php:146 +#: src/Module/Moderation/Users/Pending.php:85 msgid "Email" msgstr "Email" -#: src/Content/ContactSelector.php:130 src/Module/Debug/Babel.php:307 +#: src/Content/ContactSelector.php:116 src/Module/Debug/Babel.php:301 msgid "Diaspora" msgstr "Diaspora" -#: src/Content/ContactSelector.php:131 +#: src/Content/ContactSelector.php:117 msgid "Zot!" msgstr "" -#: src/Content/ContactSelector.php:132 +#: src/Content/ContactSelector.php:118 msgid "LinkedIn" msgstr "" -#: src/Content/ContactSelector.php:133 +#: src/Content/ContactSelector.php:119 msgid "XMPP/IM" msgstr "" -#: src/Content/ContactSelector.php:134 +#: src/Content/ContactSelector.php:120 msgid "MySpace" msgstr "" -#: src/Content/ContactSelector.php:135 +#: src/Content/ContactSelector.php:121 msgid "Google+" msgstr "" -#: src/Content/ContactSelector.php:136 +#: src/Content/ContactSelector.php:122 msgid "pump.io" msgstr "" -#: src/Content/ContactSelector.php:137 +#: src/Content/ContactSelector.php:123 msgid "Twitter" msgstr "" -#: src/Content/ContactSelector.php:138 +#: src/Content/ContactSelector.php:124 msgid "Discourse" msgstr "" -#: src/Content/ContactSelector.php:139 +#: src/Content/ContactSelector.php:125 msgid "Diaspora Connector" msgstr "" -#: src/Content/ContactSelector.php:140 +#: src/Content/ContactSelector.php:126 msgid "GNU Social Connector" msgstr "" -#: src/Content/ContactSelector.php:141 +#: src/Content/ContactSelector.php:127 msgid "ActivityPub" msgstr "" -#: src/Content/ContactSelector.php:142 +#: src/Content/ContactSelector.php:128 msgid "pnut" msgstr "" -#: src/Content/ContactSelector.php:143 +#: src/Content/ContactSelector.php:129 msgid "Tumblr" msgstr "" -#: src/Content/ContactSelector.php:144 +#: src/Content/ContactSelector.php:130 msgid "Bluesky" msgstr "" -#: src/Content/ContactSelector.php:180 +#: src/Content/ContactSelector.php:166 #, php-format msgid "%s (via %s)" msgstr "" -#: src/Content/Conversation.php:226 +#: src/Content/Conversation.php:212 msgid "and" msgstr "ja" -#: src/Content/Conversation.php:229 +#: src/Content/Conversation.php:215 #, php-format msgid "and %d other people" msgstr "" -#: src/Content/Conversation.php:235 +#: src/Content/Conversation.php:221 #, php-format msgid "%2$s likes this." msgid_plural "%2$s like this." msgstr[0] "" msgstr[1] "" -#: src/Content/Conversation.php:237 +#: src/Content/Conversation.php:223 #, php-format msgid "%2$s doesn't like this." msgid_plural "%2$s don't like this." msgstr[0] "" msgstr[1] "" -#: src/Content/Conversation.php:239 +#: src/Content/Conversation.php:225 #, php-format msgid "%2$s attends." msgid_plural "%2$s attend." msgstr[0] "" msgstr[1] "" -#: src/Content/Conversation.php:241 +#: src/Content/Conversation.php:227 #, php-format msgid "%2$s doesn't attend." msgid_plural "%2$s don't attend." msgstr[0] "" msgstr[1] "" -#: src/Content/Conversation.php:243 +#: src/Content/Conversation.php:229 #, php-format msgid "%2$s attends maybe." msgid_plural "%2$s attend maybe." msgstr[0] "" msgstr[1] "" -#: src/Content/Conversation.php:245 +#: src/Content/Conversation.php:231 #, php-format msgid "%2$s reshared this." msgid_plural "%2$s reshared this." msgstr[0] "" msgstr[1] "" -#: src/Content/Conversation.php:276 +#: src/Content/Conversation.php:262 #, php-format msgid " likes this" msgid_plural " like this" msgstr[0] "" msgstr[1] "" -#: src/Content/Conversation.php:279 +#: src/Content/Conversation.php:265 #, php-format msgid " doesn't like this" msgid_plural " don't like this" msgstr[0] "" msgstr[1] "" -#: src/Content/Conversation.php:282 +#: src/Content/Conversation.php:268 #, php-format msgid " attends" msgid_plural " attend" msgstr[0] "" msgstr[1] "" -#: src/Content/Conversation.php:285 +#: src/Content/Conversation.php:271 #, php-format msgid " doesn't attend" msgid_plural " don't attend" msgstr[0] "" msgstr[1] "" -#: src/Content/Conversation.php:288 +#: src/Content/Conversation.php:274 #, php-format msgid " attends maybe" msgid_plural " attend maybe" msgstr[0] "" msgstr[1] "" -#: src/Content/Conversation.php:291 +#: src/Content/Conversation.php:277 #, php-format msgid " reshared this" msgid_plural " reshared this" msgstr[0] "" msgstr[1] "" -#: src/Content/Conversation.php:338 +#: src/Content/Conversation.php:323 msgid "Visible to everybody" msgstr "" -#: src/Content/Conversation.php:339 src/Module/Item/Compose.php:200 -#: src/Object/Post.php:1166 +#: src/Content/Conversation.php:324 src/Module/Item/Compose.php:193 +#: src/Object/Post.php:1157 msgid "Please enter a image/video/audio/webpage URL:" msgstr "Palun sisesta pildi/video/audio/veebilehe URL:" -#: src/Content/Conversation.php:340 +#: src/Content/Conversation.php:325 msgid "Tag term:" msgstr "Tag`i tingimus:" -#: src/Content/Conversation.php:341 src/Module/Filer/SaveTag.php:73 +#: src/Content/Conversation.php:326 src/Module/Filer/SaveTag.php:59 msgid "Save to Folder:" msgstr "Salvesta kausta:" -#: src/Content/Conversation.php:342 +#: src/Content/Conversation.php:327 msgid "Where are you right now?" msgstr "Kus sa hetkel oled?" -#: src/Content/Conversation.php:343 +#: src/Content/Conversation.php:328 msgid "Delete item(s)?" msgstr "Kustutada element(id)?" -#: src/Content/Conversation.php:355 src/Module/Item/Compose.php:175 +#: src/Content/Conversation.php:340 src/Module/Item/Compose.php:168 msgid "Created at" msgstr "" -#: src/Content/Conversation.php:365 +#: src/Content/Conversation.php:350 msgid "New Post" msgstr "Uus postitus" -#: src/Content/Conversation.php:368 +#: src/Content/Conversation.php:353 msgid "Share" msgstr "Jaga" -#: src/Content/Conversation.php:371 src/Module/Post/Edit.php:132 +#: src/Content/Conversation.php:356 src/Module/Post/Edit.php:118 msgid "upload photo" msgstr "lae foto üles" -#: src/Content/Conversation.php:372 src/Module/Post/Edit.php:133 +#: src/Content/Conversation.php:357 src/Module/Post/Edit.php:119 msgid "Attach file" msgstr "Manusta fail" -#: src/Content/Conversation.php:373 src/Module/Post/Edit.php:134 +#: src/Content/Conversation.php:358 src/Module/Post/Edit.php:120 msgid "attach file" msgstr "manusta fail" -#: src/Content/Conversation.php:374 src/Module/Item/Compose.php:190 -#: src/Module/Post/Edit.php:171 src/Object/Post.php:1156 +#: src/Content/Conversation.php:359 src/Module/Item/Compose.php:183 +#: src/Module/Post/Edit.php:157 src/Object/Post.php:1147 msgid "Bold" msgstr "Rasvane" -#: src/Content/Conversation.php:375 src/Module/Item/Compose.php:191 -#: src/Module/Post/Edit.php:172 src/Object/Post.php:1157 +#: src/Content/Conversation.php:360 src/Module/Item/Compose.php:184 +#: src/Module/Post/Edit.php:158 src/Object/Post.php:1148 msgid "Italic" msgstr "" -#: src/Content/Conversation.php:376 src/Module/Item/Compose.php:192 -#: src/Module/Post/Edit.php:173 src/Object/Post.php:1158 +#: src/Content/Conversation.php:361 src/Module/Item/Compose.php:185 +#: src/Module/Post/Edit.php:159 src/Object/Post.php:1149 msgid "Underline" msgstr "Allajoonitud" -#: src/Content/Conversation.php:377 src/Module/Item/Compose.php:193 -#: src/Module/Post/Edit.php:174 src/Object/Post.php:1160 +#: src/Content/Conversation.php:362 src/Module/Item/Compose.php:186 +#: src/Module/Post/Edit.php:160 src/Object/Post.php:1151 msgid "Quote" msgstr "Tsitaat" -#: src/Content/Conversation.php:378 src/Module/Item/Compose.php:194 -#: src/Module/Post/Edit.php:175 src/Object/Post.php:1161 +#: src/Content/Conversation.php:363 src/Module/Item/Compose.php:187 +#: src/Module/Post/Edit.php:161 src/Object/Post.php:1152 msgid "Add emojis" msgstr "" -#: src/Content/Conversation.php:379 src/Module/Item/Compose.php:195 -#: src/Object/Post.php:1159 +#: src/Content/Conversation.php:364 src/Module/Item/Compose.php:188 +#: src/Object/Post.php:1150 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:1162 +#: src/Content/Conversation.php:365 src/Module/Item/Compose.php:189 +#: src/Module/Post/Edit.php:162 src/Object/Post.php:1153 msgid "Code" msgstr "Kood" -#: src/Content/Conversation.php:381 src/Module/Item/Compose.php:197 -#: src/Object/Post.php:1163 +#: src/Content/Conversation.php:366 src/Module/Item/Compose.php:190 +#: src/Object/Post.php:1154 msgid "Image" msgstr "Pilt" -#: src/Content/Conversation.php:382 src/Module/Item/Compose.php:198 -#: src/Module/Post/Edit.php:177 src/Object/Post.php:1164 +#: src/Content/Conversation.php:367 src/Module/Item/Compose.php:191 +#: src/Module/Post/Edit.php:163 src/Object/Post.php:1155 msgid "Link" msgstr "" -#: src/Content/Conversation.php:383 src/Module/Item/Compose.php:199 -#: src/Module/Post/Edit.php:178 src/Object/Post.php:1165 +#: src/Content/Conversation.php:368 src/Module/Item/Compose.php:192 +#: src/Module/Post/Edit.php:164 src/Object/Post.php:1156 msgid "Link or Media" msgstr "Link või meediafail" -#: src/Content/Conversation.php:384 +#: src/Content/Conversation.php:369 msgid "Video" msgstr "" -#: src/Content/Conversation.php:385 src/Module/Item/Compose.php:202 -#: src/Module/Post/Edit.php:141 +#: src/Content/Conversation.php:370 src/Module/Item/Compose.php:195 +#: src/Module/Post/Edit.php:127 msgid "Set your location" msgstr "Vali oma asukoht" -#: src/Content/Conversation.php:386 src/Module/Post/Edit.php:142 +#: src/Content/Conversation.php:371 src/Module/Post/Edit.php:128 msgid "set location" msgstr "vali asukoht" -#: src/Content/Conversation.php:387 src/Module/Post/Edit.php:143 +#: src/Content/Conversation.php:372 src/Module/Post/Edit.php:129 msgid "Clear browser location" msgstr "Kustuta sirviku asukoht" -#: src/Content/Conversation.php:388 src/Module/Post/Edit.php:144 +#: src/Content/Conversation.php:373 src/Module/Post/Edit.php:130 msgid "clear location" msgstr "kustuta asukoht" -#: src/Content/Conversation.php:390 src/Module/Item/Compose.php:207 -#: src/Module/Post/Edit.php:157 +#: src/Content/Conversation.php:375 src/Module/Item/Compose.php:200 +#: src/Module/Post/Edit.php:143 msgid "Set title" msgstr "Pane pealkiri" -#: src/Content/Conversation.php:392 src/Module/Item/Compose.php:208 -#: src/Module/Post/Edit.php:159 +#: src/Content/Conversation.php:377 src/Module/Item/Compose.php:201 +#: src/Module/Post/Edit.php:145 msgid "Categories (comma-separated list)" msgstr "Kategooriad (komaga-eraldatud nimistu)" -#: src/Content/Conversation.php:397 src/Module/Item/Compose.php:224 +#: src/Content/Conversation.php:382 src/Module/Item/Compose.php:217 msgid "Scheduled at" msgstr "Ajastatud" -#: src/Content/Conversation.php:402 src/Module/Post/Edit.php:146 +#: src/Content/Conversation.php:387 src/Module/Post/Edit.php:132 msgid "Permission settings" msgstr "Õiguste sätted" -#: src/Content/Conversation.php:412 src/Module/Post/Edit.php:155 +#: src/Content/Conversation.php:396 src/Module/Post/Edit.php:141 msgid "Public post" msgstr "Avalik postitus" -#: src/Content/Conversation.php:426 src/Content/Widget/VCard.php:130 -#: src/Model/Profile.php:483 src/Module/Admin/Logs/View.php:92 -#: src/Module/Post/Edit.php:181 +#: src/Content/Conversation.php:410 src/Content/Widget/VCard.php:117 +#: src/Model/Profile.php:462 src/Module/Admin/Logs/View.php:80 +#: src/Module/Post/Edit.php:167 msgid "Message" msgstr "Sõnum" -#: src/Content/Conversation.php:427 src/Module/Post/Edit.php:182 -#: src/Module/Settings/TwoFactor/Trusted.php:143 +#: src/Content/Conversation.php:411 src/Module/Post/Edit.php:168 +#: src/Module/Settings/TwoFactor/Trusted.php:129 msgid "Browser" msgstr "Sirvik" -#: src/Content/Conversation.php:429 src/Module/Post/Edit.php:185 +#: src/Content/Conversation.php:413 src/Module/Post/Edit.php:171 msgid "Open Compose page" msgstr "" -#: src/Content/Conversation.php:597 +#: src/Content/Conversation.php:580 msgid "remove" msgstr "eemalda" -#: src/Content/Conversation.php:601 +#: src/Content/Conversation.php:584 msgid "Delete Selected Items" msgstr "Kustuta valitud elemendid" -#: 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 +#: src/Content/Conversation.php:712 src/Content/Conversation.php:715 +#: src/Content/Conversation.php:718 src/Content/Conversation.php:721 +#: src/Content/Conversation.php:724 #, php-format msgid "You had been addressed (%s)." msgstr "" -#: src/Content/Conversation.php:744 +#: src/Content/Conversation.php:727 #, php-format msgid "You are following %s." msgstr "" -#: src/Content/Conversation.php:749 +#: src/Content/Conversation.php:732 #, php-format msgid "You subscribed to %s." msgstr "" -#: src/Content/Conversation.php:751 +#: src/Content/Conversation.php:734 msgid "You subscribed to one or more tags in this post." msgstr "" -#: src/Content/Conversation.php:771 +#: src/Content/Conversation.php:754 #, php-format msgid "%s reshared this." msgstr "" -#: src/Content/Conversation.php:773 +#: src/Content/Conversation.php:756 msgid "Reshared" msgstr "Taasjagatud" -#: src/Content/Conversation.php:773 +#: src/Content/Conversation.php:756 #, php-format msgid "Reshared by %s <%s>" msgstr "" -#: src/Content/Conversation.php:776 +#: src/Content/Conversation.php:759 #, php-format msgid "%s is participating in this thread." msgstr "" -#: src/Content/Conversation.php:779 +#: src/Content/Conversation.php:762 msgid "Stored for general reasons" msgstr "" -#: src/Content/Conversation.php:782 +#: src/Content/Conversation.php:765 msgid "Global post" msgstr "" -#: src/Content/Conversation.php:785 +#: src/Content/Conversation.php:768 msgid "Sent via an relay server" msgstr "" -#: src/Content/Conversation.php:785 +#: src/Content/Conversation.php:768 #, php-format msgid "Sent via the relay server %s <%s>" msgstr "" -#: src/Content/Conversation.php:788 +#: src/Content/Conversation.php:771 msgid "Fetched" msgstr "" -#: src/Content/Conversation.php:788 +#: src/Content/Conversation.php:771 #, php-format msgid "Fetched because of %s <%s>" msgstr "" -#: src/Content/Conversation.php:791 +#: src/Content/Conversation.php:774 msgid "Stored because of a child post to complete this thread." msgstr "" -#: src/Content/Conversation.php:794 +#: src/Content/Conversation.php:777 msgid "Local delivery" msgstr "" -#: src/Content/Conversation.php:797 +#: src/Content/Conversation.php:780 msgid "Stored because of your activity (like, comment, star, ...)" msgstr "" -#: src/Content/Conversation.php:800 +#: src/Content/Conversation.php:783 msgid "Distributed" msgstr "" -#: src/Content/Conversation.php:803 +#: src/Content/Conversation.php:786 msgid "Pushed to us" msgstr "" -#: src/Content/Conversation.php:1529 src/Object/Post.php:248 +#: src/Content/Conversation.php:1504 src/Object/Post.php:247 msgid "Pinned item" msgstr "" -#: src/Content/Conversation.php:1546 src/Object/Post.php:548 -#: src/Object/Post.php:549 +#: src/Content/Conversation.php:1521 src/Object/Post.php:541 +#: src/Object/Post.php:542 #, php-format msgid "View %s's profile @ %s" msgstr "" -#: src/Content/Conversation.php:1559 src/Object/Post.php:536 +#: src/Content/Conversation.php:1535 src/Object/Post.php:529 msgid "Categories:" msgstr "Kategooriad:" -#: src/Content/Conversation.php:1560 src/Object/Post.php:537 +#: src/Content/Conversation.php:1536 src/Object/Post.php:530 msgid "Filed under:" msgstr "" -#: src/Content/Conversation.php:1568 src/Object/Post.php:562 +#: src/Content/Conversation.php:1544 src/Object/Post.php:556 #, php-format msgid "%s from %s" msgstr "" -#: src/Content/Conversation.php:1584 +#: src/Content/Conversation.php:1560 msgid "View in context" msgstr "" -#: src/Content/Conversation/Factory/Channel.php:42 +#: src/Content/Conversation/Factory/Channel.php:28 msgid "For you" msgstr "" -#: src/Content/Conversation/Factory/Channel.php:42 +#: src/Content/Conversation/Factory/Channel.php:28 msgid "Posts from contacts you interact with and who interact with you" msgstr "" -#: src/Content/Conversation/Factory/Channel.php:43 +#: src/Content/Conversation/Factory/Channel.php:29 msgid "Discover" msgstr "" -#: src/Content/Conversation/Factory/Channel.php:43 +#: src/Content/Conversation/Factory/Channel.php:29 msgid "Posts from accounts that you don't follow, but that you might like." msgstr "" -#: src/Content/Conversation/Factory/Channel.php:44 +#: src/Content/Conversation/Factory/Channel.php:30 msgid "What's Hot" msgstr "" -#: src/Content/Conversation/Factory/Channel.php:44 +#: src/Content/Conversation/Factory/Channel.php:30 msgid "Posts with a lot of interactions" msgstr "" -#: src/Content/Conversation/Factory/Channel.php:45 +#: src/Content/Conversation/Factory/Channel.php:31 #, php-format msgid "Posts in %s" msgstr "" -#: src/Content/Conversation/Factory/Channel.php:46 +#: src/Content/Conversation/Factory/Channel.php:32 msgid "Posts from your followers that you don't follow" msgstr "" -#: src/Content/Conversation/Factory/Channel.php:47 +#: src/Content/Conversation/Factory/Channel.php:33 msgid "Sharers of sharers" msgstr "" -#: src/Content/Conversation/Factory/Channel.php:47 +#: src/Content/Conversation/Factory/Channel.php:33 msgid "Posts from accounts that are followed by accounts that you follow" msgstr "" -#: src/Content/Conversation/Factory/Channel.php:48 -#: src/Module/Settings/Channels.php:193 src/Module/Settings/Channels.php:214 +#: src/Content/Conversation/Factory/Channel.php:34 +msgid "Quiet sharers" +msgstr "" + +#: src/Content/Conversation/Factory/Channel.php:34 +msgid "Posts from accounts that you follow but who don't post very often" +msgstr "" + +#: src/Content/Conversation/Factory/Channel.php:35 +#: src/Module/Settings/Channels.php:185 src/Module/Settings/Channels.php:206 msgid "Images" msgstr "" -#: src/Content/Conversation/Factory/Channel.php:48 +#: src/Content/Conversation/Factory/Channel.php:35 msgid "Posts with images" msgstr "" -#: src/Content/Conversation/Factory/Channel.php:49 -#: src/Module/Settings/Channels.php:195 src/Module/Settings/Channels.php:216 +#: src/Content/Conversation/Factory/Channel.php:36 +#: src/Module/Settings/Channels.php:187 src/Module/Settings/Channels.php:208 msgid "Audio" msgstr "" -#: src/Content/Conversation/Factory/Channel.php:49 +#: src/Content/Conversation/Factory/Channel.php:36 msgid "Posts with audio" msgstr "" -#: src/Content/Conversation/Factory/Channel.php:50 -#: src/Module/Settings/Channels.php:194 src/Module/Settings/Channels.php:215 +#: src/Content/Conversation/Factory/Channel.php:37 +#: src/Module/Settings/Channels.php:186 src/Module/Settings/Channels.php:207 msgid "Videos" msgstr "" -#: src/Content/Conversation/Factory/Channel.php:50 +#: src/Content/Conversation/Factory/Channel.php:37 msgid "Posts with videos" msgstr "" -#: src/Content/Conversation/Factory/Community.php:43 +#: src/Content/Conversation/Factory/Community.php:29 msgid "Local Community" msgstr "Kohalik kogukond" -#: src/Content/Conversation/Factory/Community.php:43 +#: src/Content/Conversation/Factory/Community.php:29 msgid "Posts from local users on this server" msgstr "Selle kohaliku serveri kasutajate postitused" -#: src/Content/Conversation/Factory/Community.php:47 -#: src/Module/Settings/Channels.php:144 src/Module/Settings/Channels.php:149 +#: src/Content/Conversation/Factory/Community.php:33 +#: src/Module/Settings/Channels.php:136 src/Module/Settings/Channels.php:141 msgid "Global Community" msgstr "Globaalne kogukond" -#: src/Content/Conversation/Factory/Community.php:47 +#: src/Content/Conversation/Factory/Community.php:33 msgid "Posts from users of the whole federated network" msgstr "Terve fõderatsiooni võrgu kasutajate postitused" -#: src/Content/Conversation/Factory/Network.php:38 -#: src/Module/Settings/Channels.php:150 +#: src/Content/Conversation/Factory/Network.php:24 +#: src/Module/Settings/Channels.php:142 msgid "Latest Activity" msgstr "Viimased tegevused" -#: src/Content/Conversation/Factory/Network.php:38 +#: src/Content/Conversation/Factory/Network.php:24 msgid "Sort by latest activity" msgstr "Sorteeri hiljutiste tegevuste järgi" -#: src/Content/Conversation/Factory/Network.php:39 -#: src/Module/Settings/Channels.php:151 +#: src/Content/Conversation/Factory/Network.php:25 +#: src/Module/Settings/Channels.php:143 msgid "Latest Posts" msgstr "Viimased postitused" -#: src/Content/Conversation/Factory/Network.php:39 +#: src/Content/Conversation/Factory/Network.php:25 msgid "Sort by post received date" msgstr "" -#: src/Content/Conversation/Factory/Network.php:40 -#: src/Module/Settings/Channels.php:152 +#: src/Content/Conversation/Factory/Network.php:26 +#: src/Module/Settings/Channels.php:144 msgid "Latest Creation" msgstr "Viimati loodud" -#: src/Content/Conversation/Factory/Network.php:40 +#: src/Content/Conversation/Factory/Network.php:26 msgid "Sort by post creation date" msgstr "" -#: src/Content/Conversation/Factory/Network.php:41 -#: src/Module/Settings/Profile/Index.php:260 +#: src/Content/Conversation/Factory/Network.php:27 +#: src/Module/Settings/Profile/Index.php:251 msgid "Personal" msgstr "Isiklik" -#: src/Content/Conversation/Factory/Network.php:41 +#: src/Content/Conversation/Factory/Network.php:27 msgid "Posts that mention or involve you" msgstr "Postitused, mis mainivad või puudutavad sind" -#: src/Content/Conversation/Factory/Network.php:42 src/Object/Post.php:398 +#: src/Content/Conversation/Factory/Network.php:28 src/Object/Post.php:397 msgid "Starred" msgstr "Tähega märgitud" -#: src/Content/Conversation/Factory/Network.php:42 +#: src/Content/Conversation/Factory/Network.php:28 msgid "Favourite Posts" msgstr "Lemmikpostitused" -#: src/Content/Feature.php:96 +#: src/Content/Feature.php:93 msgid "General Features" msgstr "Üldised funktsioonid" -#: src/Content/Feature.php:98 +#: src/Content/Feature.php:95 msgid "Photo Location" msgstr "Foto asukoht" -#: src/Content/Feature.php:98 +#: src/Content/Feature.php:95 msgid "" "Photo metadata is normally stripped. This extracts the location (if present)" " prior to stripping metadata and links it to a map." msgstr "" -#: src/Content/Feature.php:99 -msgid "Trending Tags" +#: src/Content/Feature.php:96 +msgid "Display the community in the navigation" msgstr "" -#: src/Content/Feature.php:99 +#: src/Content/Feature.php:96 msgid "" -"Show a community page widget with a list of the most popular tags in recent " -"public posts." +"If enabled, the community can be accessed via the navigation menu. " +"Independent from this setting, the community timelines can always be " +"accessed via the channels." msgstr "" -#: src/Content/Feature.php:104 +#: src/Content/Feature.php:101 msgid "Post Composition Features" msgstr "" -#: src/Content/Feature.php:105 -msgid "Auto-mention Groups" -msgstr "" - -#: src/Content/Feature.php:105 -msgid "" -"Add/remove mention when a group page is selected/deselected in ACL window." -msgstr "" - -#: src/Content/Feature.php:106 +#: src/Content/Feature.php:102 msgid "Explicit Mentions" msgstr "" -#: src/Content/Feature.php:106 +#: src/Content/Feature.php:102 msgid "" "Add explicit mentions to comment box for manual control over who gets " "mentioned in replies." msgstr "" -#: src/Content/Feature.php:107 +#: src/Content/Feature.php:103 msgid "Add an abstract from ActivityPub content warnings" msgstr "" -#: src/Content/Feature.php:107 +#: src/Content/Feature.php:103 msgid "" "Add an abstract when commenting on ActivityPub posts with a content warning." " Abstracts are displayed as content warning on systems like Mastodon or " "Pleroma." msgstr "" -#: src/Content/Feature.php:112 +#: src/Content/Feature.php:108 msgid "Post/Comment Tools" msgstr "Postituse/Kommenteerimise tööriistad" -#: src/Content/Feature.php:113 +#: src/Content/Feature.php:109 msgid "Post Categories" msgstr "Postituse kategooriad" -#: src/Content/Feature.php:113 +#: src/Content/Feature.php:109 msgid "Add categories to your posts" msgstr "Lisa kategooriad on postitustele" +#: src/Content/Feature.php:114 +msgid "Network Widgets" +msgstr "" + +#: src/Content/Feature.php:115 src/Content/Widget.php:194 +#: src/Model/Circle.php:587 src/Module/Contact.php:381 +#: src/Module/Welcome.php:62 +msgid "Circles" +msgstr "" + +#: src/Content/Feature.php:115 +msgid "" +"Display posts that have been created by accounts of the selected circle." +msgstr "" + +#: src/Content/Feature.php:116 src/Content/GroupManager.php:133 +#: src/Content/Nav.php:264 src/Content/Text/HTML.php:868 +#: src/Content/Widget.php:516 src/Model/User.php:1390 +msgid "Groups" +msgstr "" + +#: src/Content/Feature.php:116 +msgid "Display posts that have been distributed by the selected group." +msgstr "" + +#: src/Content/Feature.php:117 src/Content/Widget.php:485 +msgid "Archives" +msgstr "Arhiivid" + +#: src/Content/Feature.php:117 +msgid "Display an archive where posts can be selected by month and year." +msgstr "" + +#: src/Content/Feature.php:118 src/Content/Widget.php:267 +msgid "Protocols" +msgstr "Protokollid" + #: src/Content/Feature.php:118 +msgid "Display posts with the selected protocols." +msgstr "" + +#: src/Content/Feature.php:119 src/Content/Widget.php:522 +#: src/Module/Settings/Account.php:433 +msgid "Account Types" +msgstr "Kontode tüübid" + +#: src/Content/Feature.php:119 +msgid "Display posts done by accounts with the selected account type." +msgstr "" + +#: src/Content/Feature.php:120 src/Content/Widget.php:571 +#: src/Module/Admin/Site.php:464 src/Module/BaseSettings.php:111 +#: src/Module/Settings/Channels.php:211 src/Module/Settings/Display.php:301 +msgid "Channels" +msgstr "" + +#: src/Content/Feature.php:120 +msgid "Display posts in the system channels and user defined channels." +msgstr "" + +#: src/Content/Feature.php:121 src/Content/Widget/SavedSearches.php:46 +msgid "Saved Searches" +msgstr "Salvestatud otsingud" + +#: src/Content/Feature.php:121 +msgid "Display posts that contain subscribed hashtags." +msgstr "" + +#: src/Content/Feature.php:122 src/Content/Widget.php:297 +msgid "Saved Folders" +msgstr "Salvestatud kaustad" + +#: src/Content/Feature.php:122 +msgid "Display a list of folders in which posts are stored." +msgstr "" + +#: src/Content/Feature.php:123 src/Module/Conversation/Timeline.php:186 +msgid "Own Contacts" +msgstr "" + +#: src/Content/Feature.php:123 +msgid "" +"Include or exclude posts from subscribed accounts. This widget is not " +"visible on all channels." +msgstr "" + +#: src/Content/Feature.php:124 +msgid "Trending Tags" +msgstr "" + +#: src/Content/Feature.php:124 +msgid "Display a list of the most popular tags in recent public posts." +msgstr "" + +#: src/Content/Feature.php:129 msgid "Advanced Profile Settings" msgstr "Täpsemad profiili sätted" -#: src/Content/Feature.php:119 -msgid "List Groups" -msgstr "" - -#: src/Content/Feature.php:119 -msgid "Show visitors public groups at the Advanced Profile Page" -msgstr "" - -#: src/Content/Feature.php:120 +#: src/Content/Feature.php:130 msgid "Tag Cloud" msgstr "Sildipilv tag cloud" -#: src/Content/Feature.php:120 +#: src/Content/Feature.php:130 msgid "Provide a personal tag cloud on your profile page" msgstr "Näita personaalset sildipilve oma profiili lehel" -#: src/Content/Feature.php:121 +#: src/Content/Feature.php:131 msgid "Display Membership Date" msgstr "Kuva liitumise kuupäev" -#: src/Content/Feature.php:121 +#: src/Content/Feature.php:131 msgid "Display membership date in profile" msgstr "Kuva liitumiskuupäev oma profiilil" -#: src/Content/Feature.php:126 +#: src/Content/Feature.php:136 msgid "Advanced Calendar Settings" msgstr "" -#: src/Content/Feature.php:127 +#: src/Content/Feature.php:137 msgid "Allow anonymous access to your calendar" msgstr "" -#: src/Content/Feature.php:127 +#: src/Content/Feature.php:137 msgid "" "Allows anonymous visitors to consult your calendar and your public events. " "Contact birthday events are private to you." msgstr "" -#: src/Content/GroupManager.php:147 src/Content/Nav.php:278 -#: src/Content/Text/HTML.php:881 src/Content/Widget.php:537 -#: src/Model/User.php:1381 -msgid "Groups" -msgstr "" - -#: src/Content/GroupManager.php:149 +#: src/Content/GroupManager.php:135 msgid "External link to group" msgstr "" -#: src/Content/GroupManager.php:153 src/Content/Widget.php:512 +#: src/Content/GroupManager.php:139 src/Content/Widget.php:491 msgid "show less" msgstr "" -#: src/Content/GroupManager.php:154 src/Content/Widget.php:410 -#: src/Content/Widget.php:513 +#: src/Content/GroupManager.php:140 src/Content/Widget.php:389 +#: src/Content/Widget.php:492 msgid "show more" msgstr "näita veel" -#: src/Content/GroupManager.php:155 +#: src/Content/GroupManager.php:141 msgid "Create new group" msgstr "" -#: src/Content/Item.php:332 src/Model/Item.php:3250 +#: src/Content/Item.php:317 src/Model/Item.php:3272 msgid "event" msgstr "sündmus" -#: src/Content/Item.php:335 src/Content/Item.php:345 +#: src/Content/Item.php:320 src/Content/Item.php:330 msgid "status" msgstr "staatus" -#: src/Content/Item.php:341 src/Model/Item.php:3252 -#: src/Module/Post/Tag/Add.php:123 +#: src/Content/Item.php:326 src/Model/Item.php:3274 +#: src/Module/Post/Tag/Add.php:109 msgid "photo" msgstr "foto" -#: src/Content/Item.php:355 src/Module/Post/Tag/Add.php:141 +#: src/Content/Item.php:340 src/Module/Post/Tag/Add.php:127 #, php-format msgid "%1$s tagged %2$s's %3$s with %4$s" msgstr "" -#: src/Content/Item.php:429 view/theme/frio/theme.php:262 +#: src/Content/Item.php:414 view/theme/frio/theme.php:253 msgid "Follow Thread" msgstr "Jälgi vestlust" -#: src/Content/Item.php:430 src/Model/Contact.php:1250 +#: src/Content/Item.php:415 src/Model/Contact.php:1249 msgid "View Status" msgstr "Vaata staatust" -#: 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/Module/Settings/Profile/Index.php:259 +#: src/Content/Item.php:416 src/Content/Item.php:439 +#: src/Model/Contact.php:1184 src/Model/Contact.php:1240 +#: src/Model/Contact.php:1250 src/Module/Directory.php:144 +#: src/Module/Settings/Profile/Index.php:250 msgid "View Profile" msgstr "Vaata profiili" -#: src/Content/Item.php:432 src/Model/Contact.php:1252 +#: src/Content/Item.php:417 src/Model/Contact.php:1251 msgid "View Photos" msgstr "Vaata fotosid" -#: src/Content/Item.php:433 src/Model/Contact.php:1219 -#: src/Model/Profile.php:468 +#: src/Content/Item.php:418 src/Model/Contact.php:1218 +#: src/Model/Profile.php:447 msgid "Network Posts" msgstr "Võrgupostitused" -#: src/Content/Item.php:434 src/Model/Contact.php:1243 -#: src/Model/Contact.php:1254 +#: src/Content/Item.php:419 src/Model/Contact.php:1242 +#: src/Model/Contact.php:1253 msgid "View Contact" msgstr "Vaata kontakti" -#: src/Content/Item.php:435 src/Model/Contact.php:1255 +#: src/Content/Item.php:420 src/Model/Contact.php:1254 msgid "Send PM" msgstr "Saada privaatsõnum" -#: src/Content/Item.php:436 src/Module/Contact.php:467 -#: src/Module/Contact/Profile.php:511 -#: src/Module/Moderation/Blocklist/Contact.php:116 -#: src/Module/Moderation/Users/Active.php:137 -#: src/Module/Moderation/Users/Index.php:152 +#: src/Content/Item.php:421 src/Module/Contact.php:449 +#: src/Module/Contact/Profile.php:518 +#: src/Module/Moderation/Blocklist/Contact.php:102 +#: src/Module/Moderation/Users/Active.php:123 +#: src/Module/Moderation/Users/Index.php:138 msgid "Block" msgstr "Blokeeri" -#: src/Content/Item.php:437 src/Module/Contact.php:468 -#: src/Module/Contact/Profile.php:519 -#: src/Module/Notifications/Introductions.php:134 -#: src/Module/Notifications/Introductions.php:206 -#: src/Module/Notifications/Notification.php:89 +#: src/Content/Item.php:422 src/Module/Contact.php:450 +#: src/Module/Contact/Profile.php:526 +#: src/Module/Notifications/Introductions.php:126 +#: src/Module/Notifications/Introductions.php:198 +#: src/Module/Notifications/Notification.php:75 msgid "Ignore" msgstr "Ignoreeri" -#: src/Content/Item.php:438 src/Module/Contact.php:469 -#: src/Module/Contact/Profile.php:527 +#: src/Content/Item.php:423 src/Module/Contact.php:451 +#: src/Module/Contact/Profile.php:534 msgid "Collapse" msgstr "" -#: src/Content/Item.php:439 src/Object/Post.php:289 +#: src/Content/Item.php:424 src/Object/Post.php:288 #, php-format msgid "Ignore %s server" msgstr "" -#: src/Content/Item.php:443 src/Module/Settings/Channels.php:196 -#: src/Module/Settings/Channels.php:217 src/Object/Post.php:509 +#: src/Content/Item.php:428 src/Module/Settings/Channels.php:188 +#: src/Module/Settings/Channels.php:209 src/Object/Post.php:502 msgid "Languages" msgstr "" -#: src/Content/Item.php:449 src/Content/Widget.php:80 -#: src/Model/Contact.php:1244 src/Model/Contact.php:1256 -#: src/Module/Contact/Follow.php:167 view/theme/vier/theme.php:195 +#: src/Content/Item.php:431 src/Object/Post.php:582 +msgid "Search Text" +msgstr "" + +#: src/Content/Item.php:436 src/Content/Widget.php:66 +#: src/Model/Contact.php:1243 src/Model/Contact.php:1255 +#: src/Module/Contact/Follow.php:148 view/theme/vier/theme.php:183 msgid "Connect/Follow" msgstr "Ühendu/Järgi" -#: src/Content/Item.php:883 +#: src/Content/Item.php:870 msgid "Unable to fetch user." msgstr "" -#: src/Content/Nav.php:121 +#: src/Content/Nav.php:107 msgid "Nothing new here" msgstr "Ei midagi uut siin" -#: src/Content/Nav.php:125 src/Module/Special/HTTPException.php:77 +#: src/Content/Nav.php:111 src/Module/Special/HTTPException.php:63 msgid "Go back" msgstr "" -#: src/Content/Nav.php:126 +#: src/Content/Nav.php:112 msgid "Clear notifications" msgstr "Puhasta teated" -#: src/Content/Nav.php:127 src/Content/Text/HTML.php:868 +#: src/Content/Nav.php:113 src/Content/Text/HTML.php:855 msgid "@name, !group, #tags, content" msgstr "" -#: src/Content/Nav.php:222 src/Module/Security/Login.php:157 +#: src/Content/Nav.php:208 src/Module/Security/Login.php:147 msgid "Logout" msgstr "Logi välja" -#: src/Content/Nav.php:222 +#: src/Content/Nav.php:208 msgid "End this session" msgstr "Lõpeta see sessioon" -#: src/Content/Nav.php:224 src/Module/Bookmarklet.php:44 -#: src/Module/Security/Login.php:158 +#: src/Content/Nav.php:210 src/Module/Bookmarklet.php:30 +#: src/Module/Security/Login.php:148 msgid "Login" msgstr "" -#: src/Content/Nav.php:224 +#: src/Content/Nav.php:210 msgid "Sign in" msgstr "Logi sisse" -#: src/Content/Nav.php:229 src/Module/BaseProfile.php:57 -#: src/Module/Contact.php:511 +#: src/Content/Nav.php:215 src/Module/BaseProfile.php:43 +#: src/Module/Contact.php:493 msgid "Conversations" msgstr "" -#: src/Content/Nav.php:229 +#: src/Content/Nav.php:215 msgid "Conversations you started" msgstr "" -#: src/Content/Nav.php:230 src/Module/BaseProfile.php:49 -#: src/Module/BaseSettings.php:98 src/Module/Contact.php: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/Content/Nav.php:216 src/Module/BaseProfile.php:35 +#: src/Module/BaseSettings.php:84 src/Module/Contact.php:485 +#: src/Module/Contact/Profile.php:425 src/Module/Profile/Profile.php:256 +#: src/Module/Welcome.php:43 view/theme/frio/theme.php:221 msgid "Profile" msgstr "Profiil" -#: src/Content/Nav.php:230 view/theme/frio/theme.php:230 +#: src/Content/Nav.php:216 view/theme/frio/theme.php:221 msgid "Your profile page" msgstr "Sinu profiili leht" -#: src/Content/Nav.php:231 src/Module/BaseProfile.php:65 -#: src/Module/Media/Photo/Browser.php:74 view/theme/frio/theme.php:234 +#: src/Content/Nav.php:217 src/Module/BaseProfile.php:51 +#: src/Module/Media/Photo/Browser.php:60 view/theme/frio/theme.php:225 msgid "Photos" msgstr "Fotod" -#: src/Content/Nav.php:231 view/theme/frio/theme.php:234 +#: src/Content/Nav.php:217 view/theme/frio/theme.php:225 msgid "Your photos" msgstr "Sinu fotod" -#: 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 +#: src/Content/Nav.php:218 src/Module/BaseProfile.php:59 +#: src/Module/BaseProfile.php:62 src/Module/Contact.php:509 +#: view/theme/frio/theme.php:226 msgid "Media" msgstr "" -#: src/Content/Nav.php:232 view/theme/frio/theme.php:235 +#: src/Content/Nav.php:218 view/theme/frio/theme.php:226 msgid "Your postings with media" msgstr "" -#: src/Content/Nav.php:233 src/Content/Nav.php:293 -#: src/Module/BaseProfile.php:85 src/Module/BaseProfile.php:88 -#: src/Module/BaseProfile.php:96 src/Module/BaseProfile.php:99 -#: src/Module/Settings/Display.php:316 view/theme/frio/theme.php:236 -#: view/theme/frio/theme.php:240 +#: src/Content/Nav.php:219 src/Content/Nav.php:279 +#: src/Module/BaseProfile.php:71 src/Module/BaseProfile.php:74 +#: src/Module/BaseProfile.php:82 src/Module/BaseProfile.php:85 +#: src/Module/Settings/Display.php:302 view/theme/frio/theme.php:227 +#: view/theme/frio/theme.php:231 msgid "Calendar" msgstr "Kalender" -#: src/Content/Nav.php:233 view/theme/frio/theme.php:236 +#: src/Content/Nav.php:219 view/theme/frio/theme.php:227 msgid "Your calendar" msgstr "" -#: src/Content/Nav.php:234 +#: src/Content/Nav.php:220 msgid "Personal notes" msgstr "Personaalsed märkmed" -#: src/Content/Nav.php:234 +#: src/Content/Nav.php:220 msgid "Your personal notes" msgstr "Sinu personaalsed märkmed" -#: src/Content/Nav.php:251 src/Content/Nav.php:308 +#: src/Content/Nav.php:237 src/Content/Nav.php:294 msgid "Home" msgstr "Kodu" -#: src/Content/Nav.php:251 src/Module/Settings/OAuth.php:73 +#: src/Content/Nav.php:237 src/Module/Settings/OAuth.php:59 msgid "Home Page" msgstr "Koduleht" -#: src/Content/Nav.php:255 src/Module/Register.php:168 -#: src/Module/Security/Login.php:124 +#: src/Content/Nav.php:241 src/Module/Register.php:161 +#: src/Module/Security/Login.php:114 msgid "Register" msgstr "Registreeri" -#: src/Content/Nav.php:255 +#: src/Content/Nav.php:241 msgid "Create an account" msgstr "Loo konto" -#: src/Content/Nav.php:261 src/Module/Help.php:67 -#: src/Module/Settings/TwoFactor/AppSpecific.php:132 -#: src/Module/Settings/TwoFactor/Index.php:139 -#: src/Module/Settings/TwoFactor/Recovery.php:110 -#: src/Module/Settings/TwoFactor/Verify.php:149 view/theme/vier/theme.php:240 +#: src/Content/Nav.php:247 src/Module/Help.php:53 +#: src/Module/Settings/TwoFactor/AppSpecific.php:118 +#: src/Module/Settings/TwoFactor/Index.php:125 +#: src/Module/Settings/TwoFactor/Recovery.php:96 +#: src/Module/Settings/TwoFactor/Verify.php:135 view/theme/vier/theme.php:228 msgid "Help" msgstr "Abi" -#: src/Content/Nav.php:261 +#: src/Content/Nav.php:247 msgid "Help and documentation" msgstr "Abi ja dokumentatsioon" -#: src/Content/Nav.php:265 +#: src/Content/Nav.php:251 msgid "Apps" msgstr "Rakendused" -#: src/Content/Nav.php:265 +#: src/Content/Nav.php:251 msgid "Addon applications, utilities, games" msgstr "Lisarakendused, utiliidid, mängud" -#: src/Content/Nav.php:269 src/Content/Text/HTML.php:866 -#: src/Module/Admin/Logs/View.php:86 src/Module/Search/Index.php:112 +#: src/Content/Nav.php:255 src/Content/Text/HTML.php:853 +#: src/Module/Admin/Logs/View.php:74 src/Module/Search/Index.php:98 msgid "Search" msgstr "Otsi" -#: src/Content/Nav.php:269 +#: src/Content/Nav.php:255 msgid "Search site content" msgstr "Otsi lehe sisust" -#: src/Content/Nav.php:272 src/Content/Text/HTML.php:875 +#: src/Content/Nav.php:258 src/Content/Text/HTML.php:862 msgid "Full Text" msgstr "Täistekst" -#: src/Content/Nav.php:273 src/Content/Text/HTML.php:876 -#: src/Content/Widget/TagCloud.php:68 +#: src/Content/Nav.php:259 src/Content/Text/HTML.php:863 +#: src/Content/Widget/TagCloud.php:54 msgid "Tags" msgstr "Sildid" -#: 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/Content/Nav.php:260 src/Content/Nav.php:315 +#: src/Content/Text/HTML.php:864 src/Module/BaseProfile.php:113 +#: src/Module/BaseProfile.php:116 src/Module/Contact.php:407 +#: src/Module/Contact.php:517 view/theme/frio/theme.php:234 msgid "Contacts" msgstr "Kontaktid" -#: src/Content/Nav.php:289 +#: src/Content/Nav.php:275 msgid "Community" msgstr "Kogukond" -#: src/Content/Nav.php:289 +#: src/Content/Nav.php:275 msgid "Conversations on this and other servers" msgstr "Vestlused siin ja muudes serverites" -#: src/Content/Nav.php:296 +#: src/Content/Nav.php:282 msgid "Directory" msgstr "Kataloog" -#: src/Content/Nav.php:296 +#: src/Content/Nav.php:282 msgid "People directory" msgstr "Inimeste kataloog" -#: src/Content/Nav.php:298 src/Module/BaseAdmin.php:85 -#: src/Module/BaseModeration.php:108 +#: src/Content/Nav.php:284 src/Module/BaseAdmin.php:71 +#: src/Module/BaseModeration.php:94 msgid "Information" msgstr "Info" -#: src/Content/Nav.php:298 +#: src/Content/Nav.php:284 msgid "Information about this friendica instance" msgstr "Info selle friendica instantsi kohta" -#: src/Content/Nav.php:301 src/Module/Admin/Tos.php:78 -#: src/Module/BaseAdmin.php:95 src/Module/Register.php:176 -#: src/Module/Tos.php:101 +#: src/Content/Nav.php:287 src/Module/Admin/Tos.php:64 +#: src/Module/BaseAdmin.php:81 src/Module/Register.php:169 +#: src/Module/Tos.php:87 msgid "Terms of Service" msgstr "" -#: src/Content/Nav.php:301 +#: src/Content/Nav.php:287 msgid "Terms of Service of this Friendica instance" msgstr "Selle Friendica instantsi kasutustingimused" -#: src/Content/Nav.php:306 view/theme/frio/theme.php:239 +#: src/Content/Nav.php:292 view/theme/frio/theme.php:230 msgid "Network" msgstr "Võrk" -#: src/Content/Nav.php:306 view/theme/frio/theme.php:239 +#: src/Content/Nav.php:292 view/theme/frio/theme.php:230 msgid "Conversations from your friends" msgstr "Vestlused sinu sõpradelt" -#: src/Content/Nav.php:308 view/theme/frio/theme.php:229 +#: src/Content/Nav.php:294 view/theme/frio/theme.php:220 msgid "Your posts and conversations" msgstr "Sinu postitused ja vestlused" -#: src/Content/Nav.php:312 +#: src/Content/Nav.php:298 msgid "Introductions" msgstr "Tutvustused" -#: src/Content/Nav.php:312 +#: src/Content/Nav.php:298 msgid "Friend Requests" msgstr "Sõbrataotlused" -#: src/Content/Nav.php:313 src/Module/BaseNotifications.php:149 -#: src/Module/Notifications/Introductions.php:75 +#: src/Content/Nav.php:299 src/Module/BaseNotifications.php:135 +#: src/Module/Notifications/Introductions.php:61 msgid "Notifications" msgstr "Teavitused" -#: src/Content/Nav.php:314 +#: src/Content/Nav.php:300 msgid "See all notifications" msgstr "Vaata kõiki teavitusi" -#: src/Content/Nav.php:315 src/Module/Settings/Connectors.php:244 +#: src/Content/Nav.php:301 src/Module/Settings/Connectors.php:233 msgid "Mark as seen" msgstr "Märgi loetuks" -#: src/Content/Nav.php:315 +#: src/Content/Nav.php:301 msgid "Mark all system notifications as seen" msgstr "" -#: src/Content/Nav.php:318 view/theme/frio/theme.php:241 +#: src/Content/Nav.php:304 view/theme/frio/theme.php:232 msgid "Private mail" msgstr "Privaatmeil" -#: src/Content/Nav.php:319 +#: src/Content/Nav.php:305 msgid "Inbox" msgstr "Sisenev" -#: src/Content/Nav.php:320 +#: src/Content/Nav.php:306 msgid "Outbox" msgstr "Väljuv" -#: src/Content/Nav.php:324 +#: src/Content/Nav.php:310 msgid "Accounts" msgstr "" -#: src/Content/Nav.php:324 +#: src/Content/Nav.php:310 msgid "Manage other pages" msgstr "Halda teisi lehti" -#: 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/Content/Nav.php:313 src/Module/Admin/Addons/Details.php:100 +#: src/Module/Admin/Themes/Details.php:85 src/Module/BaseSettings.php:168 +#: src/Module/Welcome.php:38 view/theme/frio/theme.php:233 msgid "Settings" msgstr "Sätted" -#: src/Content/Nav.php:327 view/theme/frio/theme.php:242 +#: src/Content/Nav.php:313 view/theme/frio/theme.php:233 msgid "Account settings" msgstr "Konto sätted" -#: src/Content/Nav.php:329 view/theme/frio/theme.php:243 +#: src/Content/Nav.php:315 view/theme/frio/theme.php:234 msgid "Manage/edit friends and contacts" msgstr "Halda/muuda sõpru ja kontakte" -#: src/Content/Nav.php:334 src/Module/BaseAdmin.php:119 +#: src/Content/Nav.php:320 src/Module/BaseAdmin.php:105 msgid "Admin" msgstr "" -#: src/Content/Nav.php:334 +#: src/Content/Nav.php:320 msgid "Site setup and configuration" msgstr "Saidi seadmine ja sätted" -#: src/Content/Nav.php:335 src/Module/BaseModeration.php:128 -#: src/Module/Moderation/Blocklist/Contact.php:110 -#: src/Module/Moderation/Blocklist/Server/Add.php:121 -#: src/Module/Moderation/Blocklist/Server/Import.php:118 -#: src/Module/Moderation/Blocklist/Server/Index.php:95 -#: src/Module/Moderation/Item/Delete.php:61 -#: src/Module/Moderation/Reports.php:89 src/Module/Moderation/Summary.php:75 -#: src/Module/Moderation/Users/Active.php:133 -#: src/Module/Moderation/Users/Blocked.php:133 -#: src/Module/Moderation/Users/Deleted.php:80 -#: src/Module/Moderation/Users/Index.php:147 +#: src/Content/Nav.php:321 src/Module/BaseModeration.php:114 +#: src/Module/Moderation/Blocklist/Contact.php:96 +#: src/Module/Moderation/Blocklist/Server/Add.php:107 +#: src/Module/Moderation/Blocklist/Server/Import.php:102 +#: src/Module/Moderation/Blocklist/Server/Index.php:81 +#: src/Module/Moderation/Item/Delete.php:47 +#: src/Module/Moderation/Reports.php:96 src/Module/Moderation/Summary.php:61 +#: src/Module/Moderation/Users/Active.php:119 +#: src/Module/Moderation/Users/Blocked.php:119 +#: src/Module/Moderation/Users/Deleted.php:66 +#: src/Module/Moderation/Users/Index.php:133 msgid "Moderation" msgstr "" -#: src/Content/Nav.php:335 +#: src/Content/Nav.php:321 msgid "Content and user moderation" msgstr "" -#: src/Content/Nav.php:338 +#: src/Content/Nav.php:324 msgid "Navigation" msgstr "Navigatsioon" -#: src/Content/Nav.php:338 +#: src/Content/Nav.php:324 msgid "Site map" msgstr "Lehekaart" -#: src/Content/OEmbed.php:316 -msgid "Embedding disabled" -msgstr "" - -#: src/Content/OEmbed.php:440 -msgid "Embedded content" -msgstr "" - -#: src/Content/Pager.php:216 +#: src/Content/Pager.php:202 msgid "first" msgstr "esimene" -#: src/Content/Pager.php:221 +#: src/Content/Pager.php:207 msgid "prev" msgstr "eelm" -#: src/Content/Pager.php:276 +#: src/Content/Pager.php:262 msgid "next" msgstr "järgmine" -#: src/Content/Pager.php:281 +#: src/Content/Pager.php:267 msgid "last" msgstr "viimane" -#: src/Content/Text/BBCode.php:762 src/Content/Text/BBCode.php:1707 -#: src/Content/Text/BBCode.php:1708 +#: src/Content/Text/BBCode.php:689 src/Content/Text/BBCode.php:1862 +#: src/Content/Text/BBCode.php:1863 msgid "Image/photo" msgstr "pilt/foto" -#: src/Content/Text/BBCode.php:980 +#: src/Content/Text/BBCode.php:907 #, 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:929 src/Model/Item.php:4028 +#: src/Model/Item.php:4034 src/Model/Item.php:4035 msgid "Link to source" msgstr "" -#: src/Content/Text/BBCode.php:1614 src/Content/Text/HTML.php:905 +#: src/Content/Text/BBCode.php:1743 src/Content/Text/HTML.php:892 msgid "Click to open/close" msgstr "Klõpsa ava/sulge" -#: src/Content/Text/BBCode.php:1647 +#: src/Content/Text/BBCode.php:1798 msgid "$1 wrote:" msgstr "" -#: src/Content/Text/BBCode.php:1712 src/Content/Text/BBCode.php:1713 +#: src/Content/Text/BBCode.php:1872 src/Content/Text/BBCode.php:1873 msgid "Encrypted content" msgstr "Krüptitud sisu" -#: src/Content/Text/BBCode.php:1968 +#: src/Content/Text/BBCode.php:2205 msgid "Invalid source protocol" msgstr "" -#: src/Content/Text/BBCode.php:1987 +#: src/Content/Text/BBCode.php:2224 msgid "Invalid link protocol" msgstr "" -#: src/Content/Text/HTML.php:783 +#: src/Content/Text/HTML.php:770 msgid "Loading more entries..." msgstr "" -#: src/Content/Text/HTML.php:784 +#: src/Content/Text/HTML.php:771 msgid "The end" msgstr "Lõpp" -#: src/Content/Text/HTML.php:860 src/Content/Widget/VCard.php:126 -#: src/Model/Profile.php:477 src/Module/Contact/Profile.php:471 +#: src/Content/Text/HTML.php:847 src/Content/Widget/VCard.php:113 +#: src/Model/Profile.php:456 src/Module/Contact/Profile.php:478 msgid "Follow" msgstr "Jälgi" -#: src/Content/Widget.php:51 +#: src/Content/Widget.php:37 msgid "Add New Contact" msgstr "Lisa uus kontakt" -#: src/Content/Widget.php:52 +#: src/Content/Widget.php:38 msgid "Enter address or web location" msgstr "Sisesta aadress või veebiasukoht" -#: src/Content/Widget.php:53 +#: src/Content/Widget.php:39 msgid "Example: bob@example.com, http://example.com/barbara" msgstr "" -#: src/Content/Widget.php:55 +#: src/Content/Widget.php:41 msgid "Connect" msgstr "Ühendu" -#: src/Content/Widget.php:72 +#: src/Content/Widget.php:58 #, php-format msgid "%d invitation available" msgid_plural "%d invitations available" msgstr[0] "%d kutset saadaval" msgstr[1] "%d kutset saadaval" -#: src/Content/Widget.php:78 view/theme/vier/theme.php:193 +#: src/Content/Widget.php:64 view/theme/vier/theme.php:181 msgid "Find People" msgstr "Leia inimesi" -#: src/Content/Widget.php:79 view/theme/vier/theme.php:194 +#: src/Content/Widget.php:65 view/theme/vier/theme.php:182 msgid "Enter name or interest" msgstr "Sissta nimi või huviala" -#: src/Content/Widget.php:81 view/theme/vier/theme.php:196 +#: src/Content/Widget.php:67 view/theme/vier/theme.php:184 msgid "Examples: Robert Morgenstein, Fishing" msgstr "" -#: src/Content/Widget.php:82 src/Module/Contact.php:460 -#: src/Module/Directory.php:96 view/theme/vier/theme.php:197 +#: src/Content/Widget.php:68 src/Module/Contact.php:441 +#: src/Module/Directory.php:83 view/theme/vier/theme.php:185 msgid "Find" msgstr "Otsi" -#: src/Content/Widget.php:83 src/Module/Contact/Suggestions.php:73 -#: view/theme/vier/theme.php:198 +#: src/Content/Widget.php:69 src/Module/Contact/Suggestions.php:59 +#: view/theme/vier/theme.php:186 msgid "Friend Suggestions" msgstr "Sõbrasoovitused" -#: src/Content/Widget.php:84 view/theme/vier/theme.php:199 +#: src/Content/Widget.php:70 view/theme/vier/theme.php:187 msgid "Similar Interests" msgstr "Sarnased huvid" -#: src/Content/Widget.php:85 view/theme/vier/theme.php:200 +#: src/Content/Widget.php:71 view/theme/vier/theme.php:188 msgid "Random Profile" msgstr "Suvaline profiil" -#: src/Content/Widget.php:86 view/theme/vier/theme.php:201 +#: src/Content/Widget.php:72 view/theme/vier/theme.php:189 msgid "Invite Friends" msgstr "Kutsu sõpru" -#: src/Content/Widget.php:87 src/Module/Directory.php:88 -#: view/theme/vier/theme.php:202 +#: src/Content/Widget.php:73 src/Module/Directory.php:75 +#: view/theme/vier/theme.php:190 msgid "Global Directory" msgstr "Globaalne kataloog" -#: src/Content/Widget.php:89 view/theme/vier/theme.php:204 +#: src/Content/Widget.php:75 view/theme/vier/theme.php:192 msgid "Local Directory" msgstr "Kohalik kataloog" -#: src/Content/Widget.php:215 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:196 msgid "Everyone" msgstr "" -#: src/Content/Widget.php:242 src/Module/Contact.php:423 +#: src/Content/Widget.php:221 src/Module/Contact.php:404 msgid "No relationship" msgstr "" -#: src/Content/Widget.php:247 +#: src/Content/Widget.php:226 msgid "Relationships" msgstr "Suhted" -#: src/Content/Widget.php:249 src/Module/Circle.php:292 -#: src/Module/Contact.php:344 +#: src/Content/Widget.php:228 src/Module/Circle.php:280 +#: src/Module/Contact.php:325 msgid "All Contacts" msgstr "Kõik kontaktid" -#: src/Content/Widget.php:288 -msgid "Protocols" -msgstr "Protokollid" - -#: src/Content/Widget.php:290 +#: src/Content/Widget.php:269 msgid "All Protocols" msgstr "Kõik protokollid" -#: src/Content/Widget.php:318 -msgid "Saved Folders" -msgstr "Salvestatud kaustad" - -#: src/Content/Widget.php:320 src/Content/Widget.php:351 +#: src/Content/Widget.php:299 src/Content/Widget.php:330 msgid "Everything" msgstr "Kõikvõimalik" -#: src/Content/Widget.php:349 +#: src/Content/Widget.php:328 msgid "Categories" msgstr "Kategooriad" -#: src/Content/Widget.php:406 +#: src/Content/Widget.php:385 #, php-format msgid "%d contact in common" msgid_plural "%d contacts in common" msgstr[0] "%d ühine kontakt" msgstr[1] "%d ühine kontakt" -#: src/Content/Widget.php:506 -msgid "Archives" -msgstr "Arhiivid" - -#: src/Content/Widget.php:514 +#: src/Content/Widget.php:493 msgid "On this date" msgstr "" -#: src/Content/Widget.php:534 +#: src/Content/Widget.php:513 msgid "Persons" msgstr "Isikud" -#: src/Content/Widget.php:535 +#: src/Content/Widget.php:514 msgid "Organisations" msgstr "Organisatsioonid" -#: src/Content/Widget.php:536 src/Model/Contact.php:1746 +#: src/Content/Widget.php:515 src/Model/Contact.php:1747 msgid "News" msgstr "Uudised" -#: src/Content/Widget.php:538 +#: src/Content/Widget.php:517 msgid "Relays" msgstr "" -#: src/Content/Widget.php:543 src/Module/Settings/Account.php:442 -msgid "Account Types" -msgstr "Kontode tüübid" - -#: src/Content/Widget.php:545 src/Module/Moderation/BaseUsers.php:69 +#: src/Content/Widget.php:524 src/Module/Moderation/BaseUsers.php:56 msgid "All" msgstr "" -#: src/Content/Widget.php:592 src/Module/Admin/Site.php:472 -#: src/Module/BaseSettings.php:125 src/Module/Settings/Channels.php:219 -#: src/Module/Settings/Display.php:315 -msgid "Channels" -msgstr "" - -#: src/Content/Widget/CalendarExport.php:56 +#: src/Content/Widget/CalendarExport.php:42 msgid "Export" msgstr "Eksport" -#: src/Content/Widget/CalendarExport.php:57 +#: src/Content/Widget/CalendarExport.php:43 msgid "Export calendar as ical" msgstr "Ekspordi kalender kui ical" -#: src/Content/Widget/CalendarExport.php:58 +#: src/Content/Widget/CalendarExport.php:44 msgid "Export calendar as csv" msgstr "" -#: src/Content/Widget/ContactBlock.php:79 +#: src/Content/Widget/ContactBlock.php:65 msgid "No contacts" msgstr "Kontakte pole" -#: src/Content/Widget/ContactBlock.php:110 +#: src/Content/Widget/ContactBlock.php:96 #, php-format msgid "%d Contact" msgid_plural "%d Contacts" msgstr[0] "%d Kontaktid" msgstr[1] "%d Kontaktid" -#: src/Content/Widget/ContactBlock.php:127 +#: src/Content/Widget/ContactBlock.php:113 msgid "View Contacts" msgstr "Kuva kontaktid" -#: src/Content/Widget/SavedSearches.php:47 +#: src/Content/Widget/SavedSearches.php:33 msgid "Remove term" msgstr "Eemalda tingimus" -#: src/Content/Widget/SavedSearches.php:60 -msgid "Saved Searches" -msgstr "Salvestatud otsingud" - -#: src/Content/Widget/TrendingTags.php:52 +#: src/Content/Widget/TrendingTags.php:39 #, php-format msgid "Trending Tags (last %d hour)" msgid_plural "Trending Tags (last %d hours)" msgstr[0] "" msgstr[1] "" -#: src/Content/Widget/TrendingTags.php:53 +#: src/Content/Widget/TrendingTags.php:40 msgid "More Trending Tags" msgstr "Veel trendikaid silte" -#: src/Content/Widget/VCard.php:104 src/Model/Contact.php:1212 -#: src/Model/Profile.php:461 +#: src/Content/Widget/VCard.php:91 src/Model/Contact.php:1212 +#: src/Model/Profile.php:441 msgid "Post to group" msgstr "" -#: src/Content/Widget/VCard.php:109 src/Model/Contact.php:1217 -#: src/Model/Profile.php:466 src/Module/Moderation/Item/Source.php:85 +#: src/Content/Widget/VCard.php:96 src/Model/Contact.php:1216 +#: src/Model/Profile.php:445 src/Module/Moderation/Item/Source.php:77 msgid "Mention" msgstr "" -#: src/Content/Widget/VCard.php:119 src/Model/Profile.php:380 -#: src/Module/Contact/Profile.php:408 src/Module/Profile/Profile.php:199 +#: src/Content/Widget/VCard.php:106 src/Model/Profile.php:360 +#: src/Module/Contact/Profile.php:414 src/Module/Profile/Profile.php:187 msgid "XMPP:" msgstr "" -#: src/Content/Widget/VCard.php:120 src/Model/Profile.php:381 -#: src/Module/Contact/Profile.php:410 src/Module/Profile/Profile.php:203 +#: src/Content/Widget/VCard.php:107 src/Model/Profile.php:361 +#: src/Module/Contact/Profile.php:416 src/Module/Profile/Profile.php:191 msgid "Matrix:" msgstr "" -#: src/Content/Widget/VCard.php:121 src/Model/Event.php:82 -#: src/Model/Event.php:109 src/Model/Event.php:471 src/Model/Event.php:963 -#: 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 +#: src/Content/Widget/VCard.php:108 src/Model/Event.php:68 +#: src/Model/Event.php:95 src/Model/Event.php:457 src/Model/Event.php:946 +#: src/Model/Profile.php:355 src/Module/Contact/Profile.php:412 +#: src/Module/Directory.php:134 src/Module/Notifications/Introductions.php:179 +#: src/Module/Profile/Profile.php:209 msgid "Location:" msgstr "Asukoht:" -#: src/Content/Widget/VCard.php:124 src/Model/Profile.php:490 -#: src/Module/Notifications/Introductions.php:201 +#: src/Content/Widget/VCard.php:111 src/Model/Profile.php:469 +#: src/Module/Notifications/Introductions.php:193 msgid "Network:" msgstr "Võrk" -#: src/Content/Widget/VCard.php:128 src/Model/Contact.php:1245 -#: src/Model/Contact.php:1257 src/Model/Profile.php:479 -#: src/Module/Contact/Profile.php:463 +#: src/Content/Widget/VCard.php:115 src/Model/Contact.php:1244 +#: src/Model/Contact.php:1256 src/Model/Profile.php:458 +#: src/Module/Contact/Profile.php:470 msgid "Unfollow" msgstr "" -#: src/Content/Widget/VCard.php:134 src/Model/Contact.php:1214 -#: src/Model/Profile.php:463 +#: src/Content/Widget/VCard.php:121 src/Model/Contact.php:1214 +#: src/Model/Profile.php:443 msgid "View group" msgstr "" -#: src/Core/ACL.php:166 src/Module/Profile/Profile.php:269 +#: src/Core/ACL.php:152 src/Module/Profile/Profile.php:257 msgid "Yourself" msgstr "" -#: src/Core/ACL.php:202 src/Module/PermissionTooltip.php:147 -#: src/Module/PermissionTooltip.php:169 +#: src/Core/ACL.php:188 src/Module/Privacy/PermissionTooltip.php:156 +#: src/Module/Privacy/PermissionTooltip.php:178 msgid "Mutuals" msgstr "" -#: src/Core/ACL.php:294 +#: src/Core/ACL.php:280 msgid "Post to Email" msgstr "Postita meilile" -#: src/Core/ACL.php:321 src/Module/PermissionTooltip.php:90 -#: src/Module/PermissionTooltip.php:211 +#: src/Core/ACL.php:307 src/Module/Privacy/PermissionTooltip.php:103 +#: src/Module/Privacy/PermissionTooltip.php:217 msgid "Public" msgstr "Avalik" -#: src/Core/ACL.php:322 +#: src/Core/ACL.php:308 msgid "" "This content will be shown to all your followers and can be seen in the " "community pages and by anyone with its link." msgstr "" -#: src/Core/ACL.php:323 src/Module/PermissionTooltip.php:98 +#: src/Core/ACL.php:309 src/Module/Privacy/PermissionTooltip.php:105 msgid "Limited/Private" msgstr "Piiratud/Privaatne" -#: src/Core/ACL.php:324 +#: src/Core/ACL.php:310 msgid "" "This content will be shown only to the people in the first box, to the " "exception of the people mentioned in the second box. It won't appear " "anywhere public." msgstr "" -#: src/Core/ACL.php:324 +#: src/Core/ACL.php:310 msgid "" "Start typing the name of a contact or a circle to show a filtered list. You " "can also mention the special circles \"Followers\" and \"Mutuals\"." msgstr "" -#: src/Core/ACL.php:325 +#: src/Core/ACL.php:311 msgid "Show to:" msgstr "" -#: src/Core/ACL.php:326 +#: src/Core/ACL.php:312 msgid "Except to:" msgstr "" -#: src/Core/ACL.php:327 src/Module/Post/Edit.php:154 +#: src/Core/ACL.php:313 src/Module/Post/Edit.php:140 msgid "CC: email addresses" msgstr "CC: emaili addressid" -#: src/Core/ACL.php:328 src/Module/Post/Edit.php:160 +#: src/Core/ACL.php:314 src/Module/Post/Edit.php:146 msgid "Example: bob@example.com, mary@example.com" msgstr "" -#: src/Core/ACL.php:329 +#: src/Core/ACL.php:315 msgid "Connectors" msgstr "" -#: src/Core/Installer.php:180 +#: src/Core/Installer.php:166 msgid "" "The database configuration file \"config/local.config.php\" could not be " "written. Please use the enclosed text to create a configuration file in your" " web server root." msgstr "" -#: src/Core/Installer.php:197 +#: src/Core/Installer.php:183 msgid "" "You may need to import the file \"database.sql\" manually using phpmyadmin " "or mysql." msgstr "" -#: src/Core/Installer.php:198 src/Module/Install.php:207 -#: src/Module/Install.php:350 +#: src/Core/Installer.php:184 src/Module/Install.php:193 +#: src/Module/Install.php:336 msgid "Please see the file \"doc/INSTALL.md\"." msgstr "" -#: src/Core/Installer.php:259 +#: src/Core/Installer.php:245 msgid "Could not find a command line version of PHP in the web server PATH." msgstr "" -#: src/Core/Installer.php:260 +#: src/Core/Installer.php:246 msgid "" "If you don't have a command line version of PHP installed on your server, " "you will not be able to run the background processing. See 'Setup the worker'" msgstr "" -#: src/Core/Installer.php:265 +#: src/Core/Installer.php:251 msgid "PHP executable path" msgstr "" -#: src/Core/Installer.php:265 +#: src/Core/Installer.php:251 msgid "" "Enter full path to php executable. You can leave this blank to continue the " "installation." msgstr "" -#: src/Core/Installer.php:270 +#: src/Core/Installer.php:256 msgid "Command line PHP" msgstr "" -#: src/Core/Installer.php:279 +#: src/Core/Installer.php:265 msgid "PHP executable is not the php cli binary (could be cgi-fgci version)" msgstr "" -#: src/Core/Installer.php:280 +#: src/Core/Installer.php:266 msgid "Found PHP version: " msgstr "" -#: src/Core/Installer.php:282 +#: src/Core/Installer.php:268 msgid "PHP cli binary" msgstr "" -#: src/Core/Installer.php:295 +#: src/Core/Installer.php:281 msgid "" "The command line version of PHP on your system does not have " "\"register_argc_argv\" enabled." msgstr "" -#: src/Core/Installer.php:296 +#: src/Core/Installer.php:282 msgid "This is required for message delivery to work." msgstr "" -#: src/Core/Installer.php:301 +#: src/Core/Installer.php:287 msgid "PHP register_argc_argv" msgstr "" -#: src/Core/Installer.php:333 +#: src/Core/Installer.php:319 msgid "" "Error: the \"openssl_pkey_new\" function on this system is not able to " "generate encryption keys" msgstr "" -#: src/Core/Installer.php:334 +#: src/Core/Installer.php:320 msgid "" "If running under Windows, please see " "\"http://www.php.net/manual/en/openssl.installation.php\"." msgstr "" -#: src/Core/Installer.php:337 +#: src/Core/Installer.php:323 msgid "Generate encryption keys" msgstr "" -#: src/Core/Installer.php:388 +#: src/Core/Installer.php:374 msgid "" "Error: Apache webserver mod-rewrite module is required but not installed." msgstr "" -#: src/Core/Installer.php:392 +#: src/Core/Installer.php:378 msgid "Apache mod_rewrite module" msgstr "" -#: src/Core/Installer.php:398 +#: src/Core/Installer.php:384 msgid "Error: PDO or MySQLi PHP module required but not installed." msgstr "" -#: src/Core/Installer.php:402 +#: src/Core/Installer.php:388 msgid "Error: The MySQL driver for PDO is not installed." msgstr "" -#: src/Core/Installer.php:405 +#: src/Core/Installer.php:391 msgid "PDO or MySQLi PHP module" msgstr "" -#: src/Core/Installer.php:411 +#: src/Core/Installer.php:397 msgid "Error: The IntlChar module is not installed." msgstr "" -#: src/Core/Installer.php:414 +#: src/Core/Installer.php:400 msgid "IntlChar PHP module" msgstr "" -#: src/Core/Installer.php:422 +#: src/Core/Installer.php:408 msgid "Error, XML PHP module required but not installed." msgstr "" -#: src/Core/Installer.php:426 +#: src/Core/Installer.php:412 msgid "XML PHP module" msgstr "" -#: src/Core/Installer.php:429 +#: src/Core/Installer.php:415 msgid "libCurl PHP module" msgstr "" -#: src/Core/Installer.php:430 +#: src/Core/Installer.php:416 msgid "Error: libCURL PHP module required but not installed." msgstr "" -#: src/Core/Installer.php:436 +#: src/Core/Installer.php:422 msgid "GD graphics PHP module" msgstr "" -#: src/Core/Installer.php:437 +#: src/Core/Installer.php:423 msgid "" "Error: GD graphics PHP module with JPEG support required but not installed." msgstr "" -#: src/Core/Installer.php:443 +#: src/Core/Installer.php:429 msgid "OpenSSL PHP module" msgstr "" -#: src/Core/Installer.php:444 +#: src/Core/Installer.php:430 msgid "Error: openssl PHP module required but not installed." msgstr "" -#: src/Core/Installer.php:450 +#: src/Core/Installer.php:436 msgid "mb_string PHP module" msgstr "" -#: src/Core/Installer.php:451 +#: src/Core/Installer.php:437 msgid "Error: mb_string PHP module required but not installed." msgstr "" -#: src/Core/Installer.php:457 +#: src/Core/Installer.php:443 msgid "iconv PHP module" msgstr "" -#: src/Core/Installer.php:458 +#: src/Core/Installer.php:444 msgid "Error: iconv PHP module required but not installed." msgstr "" -#: src/Core/Installer.php:464 +#: src/Core/Installer.php:450 msgid "POSIX PHP module" msgstr "" -#: src/Core/Installer.php:465 +#: src/Core/Installer.php:451 msgid "Error: POSIX PHP module required but not installed." msgstr "" -#: src/Core/Installer.php:471 +#: src/Core/Installer.php:457 msgid "Program execution functions" msgstr "" -#: src/Core/Installer.php:472 +#: src/Core/Installer.php:458 msgid "" "Error: Program execution functions (proc_open) required but not enabled." msgstr "" -#: src/Core/Installer.php:478 +#: src/Core/Installer.php:464 msgid "JSON PHP module" msgstr "" -#: src/Core/Installer.php:479 +#: src/Core/Installer.php:465 msgid "Error: JSON PHP module required but not installed." msgstr "" -#: src/Core/Installer.php:485 +#: src/Core/Installer.php:471 msgid "File Information PHP module" msgstr "" -#: src/Core/Installer.php:486 +#: src/Core/Installer.php:472 msgid "Error: File Information PHP module required but not installed." msgstr "" -#: src/Core/Installer.php:492 +#: src/Core/Installer.php:478 msgid "GNU Multiple Precision PHP module" msgstr "" -#: src/Core/Installer.php:493 +#: src/Core/Installer.php:479 msgid "Error: GNU Multiple Precision PHP module required but not installed." msgstr "" -#: src/Core/Installer.php:516 +#: src/Core/Installer.php:485 +msgid "IDN Functions PHP module" +msgstr "" + +#: src/Core/Installer.php:486 +msgid "Error: IDN Functions PHP module required but not installed." +msgstr "" + +#: src/Core/Installer.php:509 msgid "" "The web installer needs to be able to create a file called " "\"local.config.php\" in the \"config\" folder of your web server and it is " "unable to do so." msgstr "" -#: src/Core/Installer.php:517 +#: src/Core/Installer.php:510 msgid "" "This is most often a permission setting, as the web server may not be able " "to write files in your folder - even if you can." msgstr "" -#: src/Core/Installer.php:518 +#: src/Core/Installer.php:511 msgid "" "At the end of this procedure, we will give you a text to save in a file " "named local.config.php in your Friendica \"config\" folder." msgstr "" -#: src/Core/Installer.php:519 +#: src/Core/Installer.php:512 msgid "" "You can alternatively skip this procedure and perform a manual installation." " Please see the file \"doc/INSTALL.md\" for instructions." msgstr "" -#: src/Core/Installer.php:522 +#: src/Core/Installer.php:515 msgid "config/local.config.php is writable" msgstr "" -#: src/Core/Installer.php:542 +#: src/Core/Installer.php:535 msgid "" "Friendica uses the Smarty3 template engine to render its web views. Smarty3 " "compiles templates to PHP to speed up rendering." msgstr "" -#: src/Core/Installer.php:543 +#: src/Core/Installer.php:536 msgid "" "In order to store these compiled templates, the web server needs to have " "write access to the directory view/smarty3/ under the Friendica top level " "folder." msgstr "" -#: src/Core/Installer.php:544 +#: src/Core/Installer.php:537 msgid "" "Please ensure that the user that your web server runs as (e.g. www-data) has" " write access to this folder." msgstr "" -#: src/Core/Installer.php:545 +#: src/Core/Installer.php:538 msgid "" "Note: as a security measure, you should give the web server write access to " "view/smarty3/ only--not the template files (.tpl) that it contains." msgstr "" -#: src/Core/Installer.php:548 +#: src/Core/Installer.php:541 msgid "view/smarty3 is writable" msgstr "" -#: src/Core/Installer.php:576 +#: src/Core/Installer.php:569 msgid "" "Url rewrite in .htaccess seems not working. Make sure you copied .htaccess-" "dist to .htaccess." msgstr "" -#: src/Core/Installer.php:577 +#: src/Core/Installer.php:570 msgid "" "In some circumstances (like running inside containers), you can skip this " "error." msgstr "" -#: src/Core/Installer.php:579 +#: src/Core/Installer.php:572 msgid "Error message from Curl when fetching" msgstr "" -#: src/Core/Installer.php:585 +#: src/Core/Installer.php:578 msgid "Url rewrite is working" msgstr "" -#: src/Core/Installer.php:614 +#: src/Core/Installer.php:607 msgid "" "The detection of TLS to secure the communication between the browser and the" " new Friendica server failed." msgstr "" -#: src/Core/Installer.php:615 +#: src/Core/Installer.php:608 msgid "" "It is highly encouraged to use Friendica only over a secure connection as " "sensitive information like passwords will be transmitted." msgstr "" -#: src/Core/Installer.php:616 +#: src/Core/Installer.php:609 msgid "Please ensure that the connection to the server is secure." msgstr "" -#: src/Core/Installer.php:617 +#: src/Core/Installer.php:610 msgid "No TLS detected" msgstr "" -#: src/Core/Installer.php:619 +#: src/Core/Installer.php:612 msgid "TLS detected" msgstr "" -#: src/Core/Installer.php:646 +#: src/Core/Installer.php:629 msgid "ImageMagick PHP extension is not installed" msgstr "" -#: src/Core/Installer.php:648 +#: src/Core/Installer.php:631 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:652 msgid "Database already in use." msgstr "" -#: src/Core/Installer.php:677 +#: src/Core/Installer.php:657 msgid "Could not connect to database." msgstr "" -#: src/Core/L10n.php:444 src/Model/Item.php:2294 +#: src/Core/L10n.php:430 src/Model/Item.php:2315 msgid "Undetermined" msgstr "" -#: src/Core/L10n.php:451 +#: src/Core/L10n.php:437 #, php-format msgid "%s (%s)" msgstr "" -#: src/Core/L10n.php:499 src/Model/Event.php:430 -#: src/Module/Settings/Display.php:284 +#: src/Core/L10n.php:485 src/Model/Event.php:416 +#: src/Module/Settings/Display.php:270 msgid "Monday" msgstr "Esmaspäev" -#: src/Core/L10n.php:499 src/Model/Event.php:431 -#: src/Module/Settings/Display.php:285 +#: src/Core/L10n.php:485 src/Model/Event.php:417 +#: src/Module/Settings/Display.php:271 msgid "Tuesday" msgstr "Teisipäev" -#: src/Core/L10n.php:499 src/Model/Event.php:432 -#: src/Module/Settings/Display.php:286 +#: src/Core/L10n.php:485 src/Model/Event.php:418 +#: src/Module/Settings/Display.php:272 msgid "Wednesday" msgstr "Kolmapäev" -#: src/Core/L10n.php:499 src/Model/Event.php:433 -#: src/Module/Settings/Display.php:287 +#: src/Core/L10n.php:485 src/Model/Event.php:419 +#: src/Module/Settings/Display.php:273 msgid "Thursday" msgstr "Neljapäev" -#: src/Core/L10n.php:499 src/Model/Event.php:434 -#: src/Module/Settings/Display.php:288 +#: src/Core/L10n.php:485 src/Model/Event.php:420 +#: src/Module/Settings/Display.php:274 msgid "Friday" msgstr "Reede" -#: src/Core/L10n.php:499 src/Model/Event.php:435 -#: src/Module/Settings/Display.php:289 +#: src/Core/L10n.php:485 src/Model/Event.php:421 +#: src/Module/Settings/Display.php:275 msgid "Saturday" msgstr "Laupäev" -#: src/Core/L10n.php:499 src/Model/Event.php:429 -#: src/Module/Settings/Display.php:283 +#: src/Core/L10n.php:485 src/Model/Event.php:415 +#: src/Module/Settings/Display.php:269 msgid "Sunday" msgstr "Pühapäev" -#: src/Core/L10n.php:503 src/Model/Event.php:450 +#: src/Core/L10n.php:489 src/Model/Event.php:436 msgid "January" msgstr "Jaanuar" -#: src/Core/L10n.php:503 src/Model/Event.php:451 +#: src/Core/L10n.php:489 src/Model/Event.php:437 msgid "February" msgstr "Veebruar" -#: src/Core/L10n.php:503 src/Model/Event.php:452 +#: src/Core/L10n.php:489 src/Model/Event.php:438 msgid "March" msgstr "Märts" -#: src/Core/L10n.php:503 src/Model/Event.php:453 +#: src/Core/L10n.php:489 src/Model/Event.php:439 msgid "April" msgstr "Aprill" -#: src/Core/L10n.php:503 src/Core/L10n.php:522 src/Model/Event.php:441 +#: src/Core/L10n.php:489 src/Core/L10n.php:508 src/Model/Event.php:427 msgid "May" msgstr "Mai" -#: src/Core/L10n.php:503 src/Model/Event.php:454 +#: src/Core/L10n.php:489 src/Model/Event.php:440 msgid "June" msgstr "Juuni" -#: src/Core/L10n.php:503 src/Model/Event.php:455 +#: src/Core/L10n.php:489 src/Model/Event.php:441 msgid "July" msgstr "Juuli" -#: src/Core/L10n.php:503 src/Model/Event.php:456 +#: src/Core/L10n.php:489 src/Model/Event.php:442 msgid "August" msgstr "August" -#: src/Core/L10n.php:503 src/Model/Event.php:457 +#: src/Core/L10n.php:489 src/Model/Event.php:443 msgid "September" msgstr "" -#: src/Core/L10n.php:503 src/Model/Event.php:458 +#: src/Core/L10n.php:489 src/Model/Event.php:444 msgid "October" msgstr "Oktoober" -#: src/Core/L10n.php:503 src/Model/Event.php:459 +#: src/Core/L10n.php:489 src/Model/Event.php:445 msgid "November" msgstr "" -#: src/Core/L10n.php:503 src/Model/Event.php:460 +#: src/Core/L10n.php:489 src/Model/Event.php:446 msgid "December" msgstr "Detsember" -#: src/Core/L10n.php:518 src/Model/Event.php:422 +#: src/Core/L10n.php:504 src/Model/Event.php:408 msgid "Mon" msgstr "Esm" -#: src/Core/L10n.php:518 src/Model/Event.php:423 +#: src/Core/L10n.php:504 src/Model/Event.php:409 msgid "Tue" msgstr "Tei" -#: src/Core/L10n.php:518 src/Model/Event.php:424 +#: src/Core/L10n.php:504 src/Model/Event.php:410 msgid "Wed" msgstr "Kol" -#: src/Core/L10n.php:518 src/Model/Event.php:425 +#: src/Core/L10n.php:504 src/Model/Event.php:411 msgid "Thu" msgstr "Nel" -#: src/Core/L10n.php:518 src/Model/Event.php:426 +#: src/Core/L10n.php:504 src/Model/Event.php:412 msgid "Fri" msgstr "Ree" -#: src/Core/L10n.php:518 src/Model/Event.php:427 +#: src/Core/L10n.php:504 src/Model/Event.php:413 msgid "Sat" msgstr "Lau" -#: src/Core/L10n.php:518 src/Model/Event.php:421 +#: src/Core/L10n.php:504 src/Model/Event.php:407 msgid "Sun" msgstr "Püh" -#: src/Core/L10n.php:522 src/Model/Event.php:437 +#: src/Core/L10n.php:508 src/Model/Event.php:423 msgid "Jan" msgstr "" -#: src/Core/L10n.php:522 src/Model/Event.php:438 +#: src/Core/L10n.php:508 src/Model/Event.php:424 msgid "Feb" msgstr "" -#: src/Core/L10n.php:522 src/Model/Event.php:439 +#: src/Core/L10n.php:508 src/Model/Event.php:425 msgid "Mar" msgstr "" -#: src/Core/L10n.php:522 src/Model/Event.php:440 +#: src/Core/L10n.php:508 src/Model/Event.php:426 msgid "Apr" msgstr "" -#: src/Core/L10n.php:522 src/Model/Event.php:442 +#: src/Core/L10n.php:508 src/Model/Event.php:428 msgid "Jun" msgstr "" -#: src/Core/L10n.php:522 src/Model/Event.php:443 +#: src/Core/L10n.php:508 src/Model/Event.php:429 msgid "Jul" msgstr "" -#: src/Core/L10n.php:522 src/Model/Event.php:444 +#: src/Core/L10n.php:508 src/Model/Event.php:430 msgid "Aug" msgstr "" -#: src/Core/L10n.php:522 +#: src/Core/L10n.php:508 msgid "Sep" msgstr "" -#: src/Core/L10n.php:522 src/Model/Event.php:446 +#: src/Core/L10n.php:508 src/Model/Event.php:432 msgid "Oct" msgstr "" -#: src/Core/L10n.php:522 src/Model/Event.php:447 +#: src/Core/L10n.php:508 src/Model/Event.php:433 msgid "Nov" msgstr "" -#: src/Core/L10n.php:522 src/Model/Event.php:448 +#: src/Core/L10n.php:508 src/Model/Event.php:434 msgid "Dec" msgstr "" -#: src/Core/Logger/Util/LoggerSettingsCheck.php:60 +#: src/Core/Logger/Util/LoggerSettingsCheck.php:46 #, php-format msgid "The logfile '%s' is not usable. No logging possible (error: '%s')" msgstr "" -#: src/Core/Logger/Util/LoggerSettingsCheck.php:85 +#: src/Core/Logger/Util/LoggerSettingsCheck.php:71 #, php-format msgid "" "The debug logfile '%s' is not usable. No logging possible (error: '%s')" msgstr "" -#: src/Core/Renderer.php:89 src/Core/Renderer.php:118 -#: src/Core/Renderer.php:147 src/Core/Renderer.php:181 -#: src/Render/FriendicaSmartyEngine.php:60 +#: src/Core/Renderer.php:78 src/Core/Renderer.php:107 +#: src/Core/Renderer.php:136 src/Core/Renderer.php:170 +#: src/Render/FriendicaSmartyEngine.php:46 msgid "" "Friendica can't display this page at the moment, please contact the " "administrator." msgstr "" -#: src/Core/Renderer.php:143 +#: src/Core/Renderer.php:132 msgid "template engine cannot be registered without a name." msgstr "" -#: src/Core/Renderer.php:177 +#: src/Core/Renderer.php:166 msgid "template engine is not registered!" msgstr "" -#: src/Core/Storage/Type/FilesystemConfig.php:78 +#: src/Core/Storage/Type/FilesystemConfig.php:64 msgid "Storage base path" msgstr "" -#: src/Core/Storage/Type/FilesystemConfig.php:80 +#: src/Core/Storage/Type/FilesystemConfig.php:66 msgid "" "Folder where uploaded files are saved. For maximum security, This should be " "a path outside web server folder tree" msgstr "" -#: src/Core/Storage/Type/FilesystemConfig.php:93 +#: src/Core/Storage/Type/FilesystemConfig.php:79 msgid "Enter a valid existing folder" msgstr "" -#: src/Core/Update.php:80 +#: src/Core/Update.php:66 #, php-format msgid "" "Updates from version %s are not supported. Please update at least to version" " 2021.01 and wait until the postupdate finished version 1383." msgstr "" -#: src/Core/Update.php:91 +#: src/Core/Update.php:77 #, php-format msgid "" "Updates from postupdate version %s are not supported. Please update at least" " to version 2021.01 and wait until the postupdate finished version 1383." msgstr "" -#: src/Core/Update.php:183 +#: src/Core/Update.php:169 #, php-format msgid "%s: executing pre update %d" msgstr "" -#: src/Core/Update.php:225 +#: src/Core/Update.php:211 #, php-format msgid "%s: executing post update %d" msgstr "" -#: src/Core/Update.php:299 +#: src/Core/Update.php:285 #, php-format msgid "Update %s failed. See error logs." msgstr "" -#: src/Core/Update.php:339 +#: src/Core/Update.php:325 #, php-format msgid "" "\n" @@ -3113,49 +3170,49 @@ msgid "" "\t\t\t\tfriendica developer if you can not help me on your own. My database might be invalid." msgstr "" -#: src/Core/Update.php:345 +#: src/Core/Update.php:331 #, php-format msgid "The error message is\\n[pre]%s[/pre]" msgstr "" -#: src/Core/Update.php:349 src/Core/Update.php:377 +#: src/Core/Update.php:335 src/Core/Update.php:363 msgid "[Friendica Notify] Database update" msgstr "" -#: src/Core/Update.php:371 +#: src/Core/Update.php:357 #, php-format msgid "" "\n" "\t\t\t\tThe friendica database was successfully updated from %s to %s." msgstr "" -#: src/Database/DBStructure.php:57 +#: src/Database/DBStructure.php:43 #, php-format msgid "The database version had been set to %s." msgstr "" -#: src/Database/DBStructure.php:82 +#: src/Database/DBStructure.php:68 #, php-format msgid "" "The post update is at version %d, it has to be at %d to safely drop the " "tables." msgstr "" -#: src/Database/DBStructure.php:95 +#: src/Database/DBStructure.php:81 msgid "No unused tables found." msgstr "" -#: src/Database/DBStructure.php:100 +#: src/Database/DBStructure.php:86 msgid "" "These tables are not used for friendica and will be deleted when you execute" " \"dbstructure drop -e\":" msgstr "" -#: src/Database/DBStructure.php:137 +#: src/Database/DBStructure.php:123 msgid "There are no tables on MyISAM or InnoDB with the Antelope file format." msgstr "" -#: src/Database/DBStructure.php:161 +#: src/Database/DBStructure.php:147 #, php-format msgid "" "\n" @@ -3163,655 +3220,654 @@ msgid "" "%s\n" msgstr "" -#: src/Database/DBStructure.php:164 +#: src/Database/DBStructure.php:150 msgid "Errors encountered performing database changes: " msgstr "" -#: src/Database/DBStructure.php:232 +#: src/Database/DBStructure.php:218 msgid "Another database update is currently running." msgstr "" -#: src/Database/DBStructure.php:236 +#: src/Database/DBStructure.php:222 #, php-format msgid "%s: Database update" msgstr "" -#: src/Database/DBStructure.php:493 +#: src/Database/DBStructure.php:479 #, php-format msgid "%s: updating %s table." msgstr "" -#: src/Factory/Api/Mastodon/Error.php:42 +#: src/Factory/Api/Mastodon/Error.php:28 msgid "Record not found" msgstr "" -#: src/Factory/Api/Mastodon/Error.php:49 +#: src/Factory/Api/Mastodon/Error.php:35 msgid "Unprocessable Entity" msgstr "" -#: src/Factory/Api/Mastodon/Error.php:56 +#: src/Factory/Api/Mastodon/Error.php:42 msgid "Unauthorized" msgstr "" -#: src/Factory/Api/Mastodon/Error.php:62 +#: src/Factory/Api/Mastodon/Error.php:48 msgid "" "Token is not authorized with a valid user or is missing a required scope" msgstr "" -#: src/Factory/Api/Mastodon/Error.php:69 +#: src/Factory/Api/Mastodon/Error.php:55 msgid "Internal Server Error" msgstr "" -#: src/LegacyModule.php:63 +#: src/LegacyModule.php:49 #, php-format msgid "Legacy module file not found: %s" msgstr "" -#: src/Model/Circle.php:106 +#: src/Model/Circle.php:92 msgid "" "A deleted circle with this name was revived. Existing item permissions " "may apply to this circle and any future members. If this is" " not what you intended, please create another circle with a different name." msgstr "" -#: src/Model/Circle.php:544 +#: src/Model/Circle.php:530 msgid "Everybody" msgstr "Igaüks" -#: src/Model/Circle.php:563 +#: src/Model/Circle.php:549 msgid "edit" msgstr "muuda" -#: src/Model/Circle.php:600 +#: src/Model/Circle.php:586 msgid "add" msgstr "lisa" -#: src/Model/Circle.php:605 +#: src/Model/Circle.php:591 msgid "Edit circle" msgstr "" -#: src/Model/Circle.php:606 src/Module/Circle.php:193 +#: src/Model/Circle.php:592 src/Module/Circle.php:181 msgid "Contacts not in any circle" msgstr "" -#: src/Model/Circle.php:608 +#: src/Model/Circle.php:594 msgid "Create a new circle" msgstr "" -#: src/Model/Circle.php:609 src/Module/Circle.php:178 -#: src/Module/Circle.php:201 src/Module/Circle.php:276 +#: src/Model/Circle.php:595 src/Module/Circle.php:166 +#: src/Module/Circle.php:189 src/Module/Circle.php:264 msgid "Circle Name: " msgstr "" -#: src/Model/Circle.php:610 +#: src/Model/Circle.php:596 msgid "Edit circles" msgstr "" -#: src/Model/Contact.php:1264 src/Module/Moderation/Users/Pending.php:102 -#: src/Module/Notifications/Introductions.php:132 -#: src/Module/Notifications/Introductions.php:204 +#: src/Model/Contact.php:1263 src/Module/Moderation/Users/Pending.php:88 +#: src/Module/Notifications/Introductions.php:124 +#: src/Module/Notifications/Introductions.php:196 msgid "Approve" msgstr "" -#: src/Model/Contact.php:1742 +#: src/Model/Contact.php:1743 msgid "Organisation" msgstr "Organisatsioon" -#: src/Model/Contact.php:1750 +#: src/Model/Contact.php:1751 msgid "Group" msgstr "" -#: src/Model/Contact.php:1754 src/Module/Moderation/BaseUsers.php:130 +#: src/Model/Contact.php:1755 src/Module/Moderation/BaseUsers.php:120 msgid "Relay" msgstr "" -#: src/Model/Contact.php:3057 +#: src/Model/Contact.php:3070 msgid "Disallowed profile URL." msgstr "Mittelubatud profiili URL." -#: src/Model/Contact.php:3062 src/Module/Friendica.php:101 +#: src/Model/Contact.php:3075 src/Module/Friendica.php:86 msgid "Blocked domain" msgstr "" -#: src/Model/Contact.php:3067 +#: src/Model/Contact.php:3080 msgid "Connect URL missing." msgstr "" -#: src/Model/Contact.php:3076 +#: src/Model/Contact.php:3089 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:3107 #, php-format msgid "Expected network %s does not match actual network %s" msgstr "" -#: src/Model/Contact.php:3111 +#: src/Model/Contact.php:3124 +msgid "This seems to be a relay account. They can't be followed by users." +msgstr "" + +#: src/Model/Contact.php:3131 msgid "The profile address specified does not provide adequate information." msgstr "" -#: src/Model/Contact.php:3113 +#: src/Model/Contact.php:3133 msgid "No compatible communication protocols or feeds were discovered." msgstr "" -#: src/Model/Contact.php:3116 +#: src/Model/Contact.php:3136 msgid "An author or name was not found." msgstr "" -#: src/Model/Contact.php:3119 +#: src/Model/Contact.php:3139 msgid "No browser URL could be matched to this address." msgstr "" -#: src/Model/Contact.php:3122 +#: src/Model/Contact.php:3142 msgid "" "Unable to match @-style Identity Address with a known protocol or email " "contact." msgstr "" -#: src/Model/Contact.php:3123 +#: src/Model/Contact.php:3143 msgid "Use mailto: in front of address to force email check." msgstr "" -#: src/Model/Contact.php:3129 -msgid "" -"The profile address specified belongs to a network which has been disabled " -"on this site." -msgstr "" - -#: src/Model/Contact.php:3134 +#: src/Model/Contact.php:3149 msgid "" "Limited profile. This person will be unable to receive direct/personal " "notifications from you." msgstr "" -#: src/Model/Contact.php:3200 +#: src/Model/Contact.php:3208 msgid "Unable to retrieve contact information." msgstr "" -#: src/Model/Event.php:54 +#: src/Model/Event.php:40 msgid "l F d, Y \\@ g:i A \\G\\M\\TP (e)" msgstr "" -#: src/Model/Event.php:75 src/Model/Event.php:92 src/Model/Event.php:469 -#: src/Model/Event.php:945 +#: src/Model/Event.php:61 src/Model/Event.php:78 src/Model/Event.php:455 +#: src/Model/Event.php:928 msgid "Starts:" msgstr "Algab:" -#: src/Model/Event.php:78 src/Model/Event.php:98 src/Model/Event.php:470 -#: src/Model/Event.php:949 +#: src/Model/Event.php:64 src/Model/Event.php:84 src/Model/Event.php:456 +#: src/Model/Event.php:932 msgid "Finishes:" msgstr "Lõpeb:" -#: src/Model/Event.php:419 +#: src/Model/Event.php:405 msgid "all-day" msgstr "terve päev" -#: src/Model/Event.php:445 +#: src/Model/Event.php:431 msgid "Sept" msgstr "" -#: src/Model/Event.php:462 src/Module/Calendar/Show.php:128 -#: src/Util/Temporal.php:343 +#: src/Model/Event.php:448 src/Module/Calendar/Show.php:114 +#: src/Util/Temporal.php:329 msgid "today" msgstr "täna" -#: src/Model/Event.php:463 src/Module/Calendar/Show.php:129 -#: src/Module/Settings/Display.php:294 src/Util/Temporal.php:353 +#: src/Model/Event.php:449 src/Module/Calendar/Show.php:115 +#: src/Module/Settings/Display.php:280 src/Util/Temporal.php:339 msgid "month" msgstr "kuu" -#: src/Model/Event.php:464 src/Module/Calendar/Show.php:130 -#: src/Module/Settings/Display.php:295 src/Util/Temporal.php:354 +#: src/Model/Event.php:450 src/Module/Calendar/Show.php:116 +#: src/Module/Settings/Display.php:281 src/Util/Temporal.php:340 msgid "week" msgstr "nädal" -#: src/Model/Event.php:465 src/Module/Calendar/Show.php:131 -#: src/Module/Settings/Display.php:296 src/Util/Temporal.php:355 +#: src/Model/Event.php:451 src/Module/Calendar/Show.php:117 +#: src/Module/Settings/Display.php:282 src/Util/Temporal.php:341 msgid "day" msgstr "päev" -#: src/Model/Event.php:467 +#: src/Model/Event.php:453 msgid "No events to display" msgstr "Pole üritusi kuvamiseks" -#: src/Model/Event.php:516 src/Module/DFRN/Poll.php:47 src/Module/Feed.php:69 -#: src/Module/Update/Profile.php:56 +#: src/Model/Event.php:502 src/Module/Feed.php:56 +#: src/Module/Update/Profile.php:42 msgid "Access to this profile has been restricted." msgstr "Ligipääs sellele profiilile on piiratud. " -#: src/Model/Event.php:558 src/Module/Calendar/Event/Show.php:67 +#: src/Model/Event.php:544 src/Module/Calendar/Event/Show.php:53 msgid "Event not found." msgstr "" -#: src/Model/Event.php:637 +#: src/Model/Event.php:623 msgid "l, F j" msgstr "" -#: src/Model/Event.php:664 +#: src/Model/Event.php:650 msgid "Edit event" msgstr "Muuda sündmust" -#: src/Model/Event.php:665 +#: src/Model/Event.php:651 msgid "Duplicate event" msgstr "Dubleeri sündmus" -#: src/Model/Event.php:666 +#: src/Model/Event.php:652 msgid "Delete event" msgstr "Kustuta sündmus" -#: src/Model/Event.php:896 src/Module/Debug/Localtime.php:38 +#: src/Model/Event.php:882 src/Module/Debug/Localtime.php:24 msgid "l F d, Y \\@ g:i A" msgstr "" -#: src/Model/Event.php:897 +#: src/Model/Event.php:883 msgid "D g:i A" msgstr "" -#: src/Model/Event.php:898 +#: src/Model/Event.php:884 msgid "g:i A" msgstr "" -#: src/Model/Event.php:964 src/Model/Event.php:966 +#: src/Model/Event.php:947 src/Model/Event.php:949 msgid "Show map" msgstr "Näita kaarti" -#: src/Model/Event.php:965 +#: src/Model/Event.php:948 msgid "Hide map" msgstr "Peida kaart" -#: src/Model/Event.php:1058 +#: src/Model/Event.php:1041 #, php-format msgid "%s's birthday" msgstr "%s sünnipäev" -#: src/Model/Event.php:1059 +#: src/Model/Event.php:1042 #, php-format msgid "Happy Birthday %s" msgstr "Palju Õnne %s " -#: src/Model/Item.php:2301 +#: src/Model/Item.php:2322 #, php-format msgid "%s (%s - %s): %s" msgstr "" -#: src/Model/Item.php:2303 +#: src/Model/Item.php:2324 #, php-format msgid "%s (%s): %s" msgstr "" -#: src/Model/Item.php:2306 +#: src/Model/Item.php:2327 #, php-format -msgid "Detected languages in this post:\\n%s" +msgid "" +"Detected languages in this post:\n" +"%s" msgstr "" -#: src/Model/Item.php:3254 +#: src/Model/Item.php:3276 msgid "activity" msgstr "tegevused" -#: src/Model/Item.php:3256 +#: src/Model/Item.php:3278 msgid "comment" msgstr "" -#: src/Model/Item.php:3259 src/Module/Post/Tag/Add.php:123 +#: src/Model/Item.php:3281 src/Module/Post/Tag/Add.php:109 msgid "post" msgstr "postitus" -#: src/Model/Item.php:3429 +#: src/Model/Item.php:3451 #, php-format msgid "%s is blocked" msgstr "" -#: src/Model/Item.php:3431 +#: src/Model/Item.php:3453 #, php-format msgid "%s is ignored" msgstr "" -#: src/Model/Item.php:3433 +#: src/Model/Item.php:3455 #, php-format msgid "Content from %s is collapsed" msgstr "" -#: src/Model/Item.php:3437 -#, php-format -msgid "Content warning: %s" +#: src/Model/Item.php:3459 +msgid "Sensitive content" msgstr "" -#: src/Model/Item.php:3890 +#: src/Model/Item.php:3928 msgid "bytes" msgstr "" -#: src/Model/Item.php:3921 +#: src/Model/Item.php:3959 #, 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:3961 #, 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:3966 #, 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:3968 #, php-format msgid "%d voter." msgid_plural "%d voters." msgstr[0] "" msgstr[1] "" -#: src/Model/Item.php:3932 +#: src/Model/Item.php:3970 #, php-format msgid "Poll end: %s" msgstr "" -#: src/Model/Item.php:3966 src/Model/Item.php:3967 +#: src/Model/Item.php:4011 src/Model/Item.php:4012 msgid "View on separate page" msgstr "Kuva eraldi lehel" -#: src/Model/Mail.php:135 +#: src/Model/Mail.php:121 msgid "[no subject]" msgstr "[teema puudub] " -#: src/Model/Photo.php:1191 src/Module/Media/Photo/Upload.php:170 +#: src/Model/Photo.php:1194 src/Module/Media/Photo/Upload.php:154 msgid "Wall Photos" msgstr "Seina fotod" -#: src/Model/Profile.php:363 src/Module/Profile/Profile.php:283 -#: src/Module/Profile/Profile.php:285 +#: src/Model/Profile.php:343 src/Module/Profile/Profile.php:271 +#: src/Module/Profile/Profile.php:273 msgid "Edit profile" msgstr "Muuda profiili" -#: src/Model/Profile.php:365 +#: src/Model/Profile.php:345 msgid "Change profile photo" msgstr "Muuda profiilifoto" -#: src/Model/Profile.php:378 src/Module/Directory.php:152 -#: src/Module/Profile/Profile.php:209 +#: src/Model/Profile.php:358 src/Module/Directory.php:139 +#: src/Module/Profile/Profile.php:197 msgid "Homepage:" msgstr "Koduleht:" -#: src/Model/Profile.php:379 src/Module/Contact/Profile.php:412 -#: src/Module/Notifications/Introductions.php:189 +#: src/Model/Profile.php:359 src/Module/Contact/Profile.php:418 +#: src/Module/Notifications/Introductions.php:181 msgid "About:" msgstr "Minust:" -#: src/Model/Profile.php:481 +#: src/Model/Profile.php:460 msgid "Atom feed" msgstr "" -#: src/Model/Profile.php:488 +#: src/Model/Profile.php:467 msgid "This website has been verified to belong to the same person." msgstr "" -#: src/Model/Profile.php:539 +#: src/Model/Profile.php:518 msgid "F d" msgstr "" -#: src/Model/Profile.php:603 src/Model/Profile.php:680 +#: src/Model/Profile.php:582 src/Model/Profile.php:663 msgid "[today]" msgstr "[täna]" -#: src/Model/Profile.php:612 +#: src/Model/Profile.php:591 msgid "Birthday Reminders" msgstr "Sünnipäeva meeldetuletused" -#: src/Model/Profile.php:613 +#: src/Model/Profile.php:592 msgid "Birthdays this week:" msgstr "Sünnipäevad sel nädalal:" -#: src/Model/Profile.php:629 +#: src/Model/Profile.php:608 msgid "g A l F d" msgstr "" -#: src/Model/Profile.php:667 +#: src/Model/Profile.php:650 msgid "[No description]" msgstr "[kirjeldus puudub]" -#: src/Model/Profile.php:693 +#: src/Model/Profile.php:676 msgid "Event Reminders" msgstr "Sündmuste meeldetuletused" -#: src/Model/Profile.php:694 +#: src/Model/Profile.php:677 msgid "Upcoming events the next 7 days:" msgstr "Eelseisvad sündmused järgneval 7 päeval: " -#: src/Model/Profile.php:893 -#, php-format -msgid "OpenWebAuth: %1$s welcomes %2$s" -msgstr "" - -#: src/Model/Profile.php:1033 +#: src/Model/Profile.php:789 msgid "Hometown:" msgstr "Kodulinn:" -#: src/Model/Profile.php:1034 +#: src/Model/Profile.php:790 msgid "Marital Status:" msgstr "" -#: src/Model/Profile.php:1035 +#: src/Model/Profile.php:791 msgid "With:" msgstr "" -#: src/Model/Profile.php:1036 +#: src/Model/Profile.php:792 msgid "Since:" msgstr "" -#: src/Model/Profile.php:1037 +#: src/Model/Profile.php:793 msgid "Sexual Preference:" msgstr "Seksuaalne eelistus:" -#: src/Model/Profile.php:1038 +#: src/Model/Profile.php:794 msgid "Political Views:" msgstr "Poliitilised vaated:" -#: src/Model/Profile.php:1039 +#: src/Model/Profile.php:795 msgid "Religious Views:" msgstr "Usulised vaated:" -#: src/Model/Profile.php:1040 +#: src/Model/Profile.php:796 msgid "Likes:" msgstr "Meeldimised:" -#: src/Model/Profile.php:1041 +#: src/Model/Profile.php:797 msgid "Dislikes:" msgstr "Mittemeeldimised:" -#: src/Model/Profile.php:1042 +#: src/Model/Profile.php:798 msgid "Title/Description:" msgstr "Tiitel/Kirjeldus:" -#: src/Model/Profile.php:1043 src/Module/Admin/Summary.php:197 -#: src/Module/Moderation/Report/Create.php:280 -#: src/Module/Moderation/Summary.php:76 +#: src/Model/Profile.php:799 src/Module/Admin/Summary.php:183 +#: src/Module/Moderation/Report/Create.php:266 +#: src/Module/Moderation/Summary.php:62 msgid "Summary" msgstr "Kokkuvõte" -#: src/Model/Profile.php:1044 +#: src/Model/Profile.php:800 msgid "Musical interests" msgstr "Muusikalised huvid" -#: src/Model/Profile.php:1045 +#: src/Model/Profile.php:801 msgid "Books, literature" msgstr "Raamatud, kirjandus" -#: src/Model/Profile.php:1046 +#: src/Model/Profile.php:802 msgid "Television" msgstr "Televisioon" -#: src/Model/Profile.php:1047 +#: src/Model/Profile.php:803 msgid "Film/dance/culture/entertainment" msgstr "Film/tants/kultuur/meelelehutus" -#: src/Model/Profile.php:1048 +#: src/Model/Profile.php:804 msgid "Hobbies/Interests" msgstr "Hobid/Huvid" -#: src/Model/Profile.php:1049 +#: src/Model/Profile.php:805 msgid "Love/romance" msgstr "Armastus/Romantika" -#: src/Model/Profile.php:1050 +#: src/Model/Profile.php:806 msgid "Work/employment" msgstr "Töö/Ametitegevus" -#: src/Model/Profile.php:1051 +#: src/Model/Profile.php:807 msgid "School/education" msgstr "Kool/Haridus" -#: src/Model/Profile.php:1052 +#: src/Model/Profile.php:808 msgid "Contact information and Social Networks" msgstr "Kontaktinfo ja Sotsiaalvõrgustikud" -#: src/Model/User.php:228 src/Model/User.php:1294 +#: src/Model/Profile.php:856 +#, php-format +msgid "Responsible account: %s" +msgstr "" + +#: src/Model/User.php:217 src/Model/User.php:1310 msgid "SERIOUS ERROR: Generation of security keys failed." msgstr "" -#: src/Model/User.php:728 src/Model/User.php:761 +#: src/Model/User.php:740 src/Model/User.php:773 msgid "Login failed" msgstr "" -#: src/Model/User.php:793 +#: src/Model/User.php:805 msgid "Not enough information to authenticate" msgstr "" -#: src/Model/User.php:914 +#: src/Model/User.php:930 msgid "Password can't be empty" msgstr "Parool ei saa olla tühi " -#: src/Model/User.php:956 +#: src/Model/User.php:972 msgid "Empty passwords are not allowed." msgstr "Tühjad paroolid pole lubatud" -#: src/Model/User.php:960 +#: src/Model/User.php:976 msgid "" "The new password has been exposed in a public data dump, please choose " "another." msgstr "Uus parool on juba kasutuses, palun vali midagi muud. " -#: src/Model/User.php:964 +#: src/Model/User.php:980 msgid "The password length is limited to 72 characters." msgstr "" -#: src/Model/User.php:968 +#: src/Model/User.php:984 msgid "The password can't contain white spaces nor accentuated letters" msgstr "" -#: src/Model/User.php:1177 +#: src/Model/User.php:1193 msgid "Passwords do not match. Password unchanged." msgstr "Paroolid ei kattu" -#: src/Model/User.php:1184 +#: src/Model/User.php:1200 msgid "An invitation is required." msgstr "Kutse on nõutav." -#: src/Model/User.php:1188 +#: src/Model/User.php:1204 msgid "Invitation could not be verified." msgstr "Kutset ei õnnestu kontrollida." -#: src/Model/User.php:1196 +#: src/Model/User.php:1212 msgid "Invalid OpenID url" msgstr "" -#: src/Model/User.php:1209 src/Security/Authentication.php:241 +#: src/Model/User.php:1225 src/Security/Authentication.php:214 msgid "" "We encountered a problem while logging in with the OpenID you provided. " "Please check the correct spelling of the ID." msgstr "" -#: src/Model/User.php:1209 src/Security/Authentication.php:241 +#: src/Model/User.php:1225 src/Security/Authentication.php:214 msgid "The error message was:" msgstr "" -#: src/Model/User.php:1215 +#: src/Model/User.php:1231 msgid "Please enter the required information." msgstr "" -#: src/Model/User.php:1229 +#: src/Model/User.php:1245 #, 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:1236 +#: src/Model/User.php:1252 #, 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:1240 +#: src/Model/User.php:1256 #, 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:1248 +#: src/Model/User.php:1264 msgid "That doesn't appear to be your full (First Last) name." msgstr "" -#: src/Model/User.php:1253 +#: src/Model/User.php:1269 msgid "Your email domain is not among those allowed on this site." msgstr "" -#: src/Model/User.php:1257 +#: src/Model/User.php:1273 msgid "Not a valid email address." msgstr "" -#: src/Model/User.php:1260 +#: src/Model/User.php:1276 msgid "The nickname was blocked from registration by the nodes admin." msgstr "" -#: src/Model/User.php:1264 src/Model/User.php:1270 +#: src/Model/User.php:1280 src/Model/User.php:1286 msgid "Cannot use that email." msgstr "" -#: src/Model/User.php:1276 +#: src/Model/User.php:1292 msgid "Your nickname can only contain a-z, 0-9 and _." msgstr "" -#: src/Model/User.php:1284 src/Model/User.php:1341 +#: src/Model/User.php:1300 src/Model/User.php:1350 msgid "Nickname is already registered. Please choose another." msgstr "" -#: src/Model/User.php:1328 src/Model/User.php:1332 +#: src/Model/User.php:1337 src/Model/User.php:1341 msgid "An error occurred during registration. Please try again." msgstr "" -#: src/Model/User.php:1355 +#: src/Model/User.php:1364 msgid "An error occurred creating your default profile. Please try again." msgstr "" -#: src/Model/User.php:1362 +#: src/Model/User.php:1371 msgid "An error occurred creating your self contact. Please try again." msgstr "" -#: src/Model/User.php:1367 +#: src/Model/User.php:1376 msgid "Friends" msgstr "Sõbrad" -#: src/Model/User.php:1371 +#: src/Model/User.php:1380 msgid "" "An error occurred creating your default contact circle. Please try again." msgstr "" -#: src/Model/User.php:1415 +#: src/Model/User.php:1428 msgid "Profile Photos" msgstr "Profiilifotod" -#: src/Model/User.php:1597 +#: src/Model/User.php:1616 #, php-format msgid "" "\n" @@ -3819,7 +3875,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:1619 #, php-format msgid "" "\n" @@ -3850,12 +3906,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:1651 src/Model/User.php:1757 #, php-format msgid "Registration details for %s" msgstr "" -#: src/Model/User.php:1652 +#: src/Model/User.php:1671 #, php-format msgid "" "\n" @@ -3870,12 +3926,12 @@ msgid "" "\t\t" msgstr "" -#: src/Model/User.php:1671 +#: src/Model/User.php:1690 #, php-format msgid "Registration at %s" msgstr "" -#: src/Model/User.php:1695 +#: src/Model/User.php:1714 #, php-format msgid "" "\n" @@ -3884,7 +3940,7 @@ msgid "" "\t\t\t" msgstr "" -#: src/Model/User.php:1703 +#: src/Model/User.php:1722 #, php-format msgid "" "\n" @@ -3915,93 +3971,91 @@ msgid "" "\t\t\tThank you and welcome to %2$s." msgstr "" -#: src/Model/User.php:1765 +#: src/Model/User.php:1784 msgid "" "User with delegates can't be removed, please remove delegate users first" msgstr "" -#: src/Module/Admin/Addons/Details.php:65 +#: src/Module/Admin/Addons/Details.php:51 msgid "Addon not found." msgstr "" -#: src/Module/Admin/Addons/Details.php:76 src/Module/Admin/Addons/Index.php:49 +#: src/Module/Admin/Addons/Details.php:62 src/Module/Admin/Addons/Index.php:41 #, php-format msgid "Addon %s disabled." msgstr "" -#: src/Module/Admin/Addons/Details.php:79 src/Module/Admin/Addons/Index.php:51 +#: src/Module/Admin/Addons/Details.php:65 src/Module/Admin/Addons/Index.php:43 #, php-format msgid "Addon %s enabled." msgstr "" -#: src/Module/Admin/Addons/Details.php:88 -#: src/Module/Admin/Themes/Details.php:46 +#: src/Module/Admin/Addons/Details.php:74 +#: src/Module/Admin/Themes/Details.php:38 msgid "Disable" msgstr "" -#: src/Module/Admin/Addons/Details.php:91 -#: src/Module/Admin/Themes/Details.php:49 src/Module/Settings/Display.php:340 +#: src/Module/Admin/Addons/Details.php:77 +#: src/Module/Admin/Themes/Details.php:41 src/Module/Settings/Display.php:326 msgid "Enable" msgstr "" -#: src/Module/Admin/Addons/Details.php:111 -#: src/Module/Admin/Addons/Index.php: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/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 -#: src/Module/Moderation/Users/Pending.php:96 +#: src/Module/Admin/Addons/Details.php:97 src/Module/Admin/Addons/Index.php:59 +#: src/Module/Admin/Federation.php:206 src/Module/Admin/Logs/Settings.php:74 +#: src/Module/Admin/Logs/View.php:71 src/Module/Admin/Queue.php:59 +#: src/Module/Admin/Site.php:447 src/Module/Admin/Storage.php:124 +#: src/Module/Admin/Summary.php:182 src/Module/Admin/Themes/Details.php:82 +#: src/Module/Admin/Themes/Index.php:103 src/Module/Admin/Tos.php:63 +#: src/Module/Moderation/Users/Create.php:47 +#: src/Module/Moderation/Users/Pending.php:82 msgid "Administration" msgstr "" -#: src/Module/Admin/Addons/Details.php:112 -#: src/Module/Admin/Addons/Index.php:68 src/Module/BaseAdmin.php:92 -#: src/Module/BaseSettings.php:139 +#: src/Module/Admin/Addons/Details.php:98 src/Module/Admin/Addons/Index.php:60 +#: src/Module/BaseAdmin.php:78 src/Module/BaseSettings.php:125 msgid "Addons" msgstr "Lisad" -#: src/Module/Admin/Addons/Details.php:113 -#: src/Module/Admin/Themes/Details.php:92 +#: src/Module/Admin/Addons/Details.php:99 +#: src/Module/Admin/Themes/Details.php:84 msgid "Toggle" msgstr "" -#: src/Module/Admin/Addons/Details.php:120 -#: src/Module/Admin/Themes/Details.php:100 +#: src/Module/Admin/Addons/Details.php:106 +#: src/Module/Admin/Themes/Details.php:92 msgid "Author: " msgstr "" -#: src/Module/Admin/Addons/Details.php:121 -#: src/Module/Admin/Themes/Details.php:101 +#: src/Module/Admin/Addons/Details.php:107 +#: src/Module/Admin/Themes/Details.php:93 msgid "Maintainer: " msgstr "" -#: src/Module/Admin/Addons/Index.php:42 +#: src/Module/Admin/Addons/Index.php:34 msgid "Addons reloaded" msgstr "" -#: src/Module/Admin/Addons/Index.php:53 +#: src/Module/Admin/Addons/Index.php:45 #, php-format 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/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/Features.php:76 +#: src/Module/Admin/Addons/Index.php:61 src/Module/Admin/Features.php:69 +#: src/Module/Admin/Logs/Settings.php:76 src/Module/Admin/Site.php:450 +#: src/Module/Admin/Themes/Index.php:105 src/Module/Admin/Tos.php:72 +#: src/Module/Settings/Account.php:549 src/Module/Settings/Addons.php:64 +#: src/Module/Settings/Connectors.php:149 +#: src/Module/Settings/Connectors.php:235 +#: src/Module/Settings/Delegation.php:179 src/Module/Settings/Display.php:295 +#: src/Module/Settings/Features.php:61 msgid "Save Settings" msgstr "Salvesta Sätted" -#: src/Module/Admin/Addons/Index.php:70 +#: src/Module/Admin/Addons/Index.php:62 msgid "Reload active addons" msgstr "" -#: src/Module/Admin/Addons/Index.php:74 +#: src/Module/Admin/Addons/Index.php:66 #, php-format msgid "" "There are currently no addons available on your node. You can find the " @@ -4009,145 +4063,158 @@ msgid "" " the open addon registry at %2$s" msgstr "" -#: src/Module/Admin/DBSync.php:51 +#: src/Module/Admin/DBSync.php:37 msgid "Update has been marked successful" msgstr "" -#: src/Module/Admin/DBSync.php:59 +#: src/Module/Admin/DBSync.php:45 #, php-format msgid "Database structure update %s was successfully applied." msgstr "" -#: src/Module/Admin/DBSync.php:61 +#: src/Module/Admin/DBSync.php:47 #, php-format msgid "Executing of database structure update %s failed with error: %s" msgstr "" -#: src/Module/Admin/DBSync.php:76 +#: src/Module/Admin/DBSync.php:62 #, php-format msgid "Executing %s failed with error: %s" msgstr "" -#: src/Module/Admin/DBSync.php:78 +#: src/Module/Admin/DBSync.php:64 #, php-format msgid "Update %s was successfully applied." msgstr "" -#: src/Module/Admin/DBSync.php:81 +#: src/Module/Admin/DBSync.php:67 #, php-format msgid "Update %s did not return a status. Unknown if it succeeded." msgstr "" -#: src/Module/Admin/DBSync.php:84 +#: src/Module/Admin/DBSync.php:70 #, php-format msgid "There was no additional update function %s that needed to be called." msgstr "" -#: src/Module/Admin/DBSync.php:105 +#: src/Module/Admin/DBSync.php:91 msgid "No failed updates." msgstr "" -#: src/Module/Admin/DBSync.php:106 +#: src/Module/Admin/DBSync.php:92 msgid "Check database structure" msgstr "" -#: src/Module/Admin/DBSync.php:110 +#: src/Module/Admin/DBSync.php:96 msgid "Failed Updates" msgstr "" -#: src/Module/Admin/DBSync.php:111 +#: src/Module/Admin/DBSync.php:97 msgid "" "This does not include updates prior to 1139, which did not return a status." msgstr "" -#: src/Module/Admin/DBSync.php:112 +#: src/Module/Admin/DBSync.php:98 msgid "Mark success (if update was manually applied)" msgstr "" -#: src/Module/Admin/DBSync.php:113 +#: src/Module/Admin/DBSync.php:99 msgid "Attempt to execute this update step automatically" msgstr "" -#: src/Module/Admin/Features.php:76 -#, php-format -msgid "Lock feature %s" +#: src/Module/Admin/Features.php:53 +#: src/Module/Notifications/Introductions.php:136 +#: src/Module/OAuth/Acknowledge.php:41 src/Module/Register.php:124 +#: src/Module/Settings/TwoFactor/Trusted.php:115 +msgid "No" msgstr "" -#: src/Module/Admin/Features.php:84 +#: src/Module/Admin/Features.php:53 src/Module/Contact/Revoke.php:91 +#: src/Module/Notifications/Introductions.php:136 +#: src/Module/OAuth/Acknowledge.php:40 src/Module/Register.php:123 +#: src/Module/Settings/TwoFactor/Trusted.php:115 +msgid "Yes" +msgstr "Jah" + +#: src/Module/Admin/Features.php:53 +msgid "Locked" +msgstr "" + +#: src/Module/Admin/Features.php:67 msgid "Manage Additional Features" msgstr "Halda lisafunktsioone" -#: src/Module/Admin/Federation.php:80 -#: src/Module/Moderation/Report/Create.php:191 -#: src/Module/Moderation/Report/Create.php:316 +#: src/Module/Admin/Federation.php:68 +#: src/Module/Moderation/Report/Create.php:177 +#: src/Module/Moderation/Report/Create.php:302 msgid "Other" msgstr "" -#: src/Module/Admin/Federation.php:158 src/Module/Admin/Federation.php:407 +#: src/Module/Admin/Federation.php:146 src/Module/Admin/Federation.php:394 msgid "unknown" msgstr "" -#: src/Module/Admin/Federation.php:191 +#: src/Module/Admin/Federation.php:179 #, php-format msgid "%2$s total system" msgid_plural "%2$s total systems" msgstr[0] "" msgstr[1] "" -#: src/Module/Admin/Federation.php:192 +#: src/Module/Admin/Federation.php:180 #, php-format msgid "%2$s active user last month" msgid_plural "%2$s active users last month" msgstr[0] "" msgstr[1] "" -#: src/Module/Admin/Federation.php:193 +#: src/Module/Admin/Federation.php:181 #, php-format msgid "%2$s active user last six months" msgid_plural "%2$s active users last six months" msgstr[0] "" msgstr[1] "" -#: src/Module/Admin/Federation.php:194 +#: src/Module/Admin/Federation.php:182 #, php-format msgid "%2$s registered user" msgid_plural "%2$s registered users" msgstr[0] "" msgstr[1] "" -#: src/Module/Admin/Federation.php:195 +#: src/Module/Admin/Federation.php:183 #, php-format msgid "%2$s locally created post or comment" msgid_plural "%2$s locally created posts and comments" msgstr[0] "" msgstr[1] "" -#: src/Module/Admin/Federation.php:198 +#: src/Module/Admin/Federation.php:186 #, php-format msgid "%2$s post per user" msgid_plural "%2$s posts per user" msgstr[0] "" msgstr[1] "" -#: src/Module/Admin/Federation.php:203 +#: src/Module/Admin/Federation.php:191 #, php-format msgid "%2$s user per system" msgid_plural "%2$s users per system" msgstr[0] "" msgstr[1] "" -#: src/Module/Admin/Federation.php:213 +#: src/Module/Admin/Federation.php:201 msgid "" "This page offers you some numbers to the known part of the federated social " "network your Friendica node is part of. These numbers are not complete but " "only reflect the part of the network your node is aware of." msgstr "" -#: src/Module/Admin/Federation.php:219 src/Module/BaseAdmin.php:87 +#: src/Module/Admin/Federation.php:207 src/Module/BaseAdmin.php:73 msgid "Federation Statistics" msgstr "" -#: src/Module/Admin/Federation.php:223 +#: src/Module/Admin/Federation.php:210 #, php-format msgid "" "Currently this node is aware of %2$s node (%3$s active users last month, " @@ -4160,58 +4227,58 @@ msgid_plural "" msgstr[0] "" msgstr[1] "" -#: src/Module/Admin/Logs/Settings.php:47 +#: src/Module/Admin/Logs/Settings.php:33 #, php-format msgid "The logfile '%s' is not writable. No logging possible" msgstr "" -#: src/Module/Admin/Logs/Settings.php:77 +#: src/Module/Admin/Logs/Settings.php:66 msgid "PHP log currently enabled." msgstr "" -#: src/Module/Admin/Logs/Settings.php:79 +#: src/Module/Admin/Logs/Settings.php:68 msgid "PHP log currently disabled." msgstr "" -#: src/Module/Admin/Logs/Settings.php:86 src/Module/BaseAdmin.php:102 -#: src/Module/BaseAdmin.php:103 +#: src/Module/Admin/Logs/Settings.php:75 src/Module/BaseAdmin.php:88 +#: src/Module/BaseAdmin.php:89 msgid "Logs" msgstr "" -#: src/Module/Admin/Logs/Settings.php:88 +#: src/Module/Admin/Logs/Settings.php:77 msgid "Clear" msgstr "" -#: src/Module/Admin/Logs/Settings.php:91 +#: src/Module/Admin/Logs/Settings.php:80 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:80 src/Module/Admin/Logs/Settings.php:81 +#: src/Module/Admin/Logs/Settings.php:82 src/Module/Admin/Site.php:470 +#: src/Module/Admin/Site.php:478 msgid "" "Read-only because it is set by an environment variable" msgstr "" -#: src/Module/Admin/Logs/Settings.php:92 +#: src/Module/Admin/Logs/Settings.php:81 msgid "Log file" msgstr "" -#: src/Module/Admin/Logs/Settings.php:92 +#: src/Module/Admin/Logs/Settings.php:81 msgid "" "Must be writable by web server. Relative to your Friendica top-level " "directory." msgstr "" -#: src/Module/Admin/Logs/Settings.php:93 +#: src/Module/Admin/Logs/Settings.php:82 msgid "Log level" msgstr "" -#: src/Module/Admin/Logs/Settings.php:95 +#: src/Module/Admin/Logs/Settings.php:84 msgid "PHP logging" msgstr "" -#: src/Module/Admin/Logs/Settings.php:96 +#: src/Module/Admin/Logs/Settings.php:85 msgid "" "To temporarily enable logging of PHP errors and warnings you can prepend the" " following to the index.php file of your installation. The filename set in " @@ -4220,398 +4287,407 @@ msgid "" "'display_errors' is to enable these options, set to '0' to disable them." msgstr "" -#: src/Module/Admin/Logs/View.php:70 +#: src/Module/Admin/Logs/View.php:58 #, php-format msgid "" "Error trying to open %1$s log file.
Check to see if " "file %1$s exist and is readable." msgstr "" -#: src/Module/Admin/Logs/View.php:79 +#: src/Module/Admin/Logs/View.php:67 #, php-format msgid "" "Couldn't open %1$s log file.
Check to see if file %1$s " "is readable." msgstr "" -#: src/Module/Admin/Logs/View.php:84 src/Module/BaseAdmin.php:104 +#: src/Module/Admin/Logs/View.php:72 src/Module/BaseAdmin.php:90 msgid "View Logs" msgstr "" -#: src/Module/Admin/Logs/View.php:87 +#: src/Module/Admin/Logs/View.php:75 msgid "Search in logs" msgstr "" -#: src/Module/Admin/Logs/View.php:88 -#: src/Module/Notifications/Notifications.php:140 +#: src/Module/Admin/Logs/View.php:76 +#: src/Module/Notifications/Notifications.php:132 msgid "Show all" msgstr "Näita kõik" -#: src/Module/Admin/Logs/View.php:89 +#: src/Module/Admin/Logs/View.php:77 msgid "Date" msgstr "" -#: src/Module/Admin/Logs/View.php:90 +#: src/Module/Admin/Logs/View.php:78 msgid "Level" msgstr "" -#: src/Module/Admin/Logs/View.php:91 +#: src/Module/Admin/Logs/View.php:79 msgid "Context" msgstr "" -#: src/Module/Admin/Logs/View.php:93 +#: src/Module/Admin/Logs/View.php:81 msgid "ALL" msgstr "" -#: src/Module/Admin/Logs/View.php:94 +#: src/Module/Admin/Logs/View.php:82 msgid "View details" msgstr "" -#: src/Module/Admin/Logs/View.php:95 +#: src/Module/Admin/Logs/View.php:83 msgid "Click to view details" msgstr "" -#: src/Module/Admin/Logs/View.php:96 src/Module/Calendar/Event/Form.php:207 +#: src/Module/Admin/Logs/View.php:84 src/Module/Calendar/Event/Form.php:193 msgid "Event details" msgstr "Sündmuse detailid" -#: src/Module/Admin/Logs/View.php:97 +#: src/Module/Admin/Logs/View.php:85 msgid "Data" msgstr "" -#: src/Module/Admin/Logs/View.php:98 -#: src/Module/Debug/ActivityPubConversion.php:57 +#: src/Module/Admin/Logs/View.php:86 +#: src/Module/Debug/ActivityPubConversion.php:49 msgid "Source" msgstr "" -#: src/Module/Admin/Logs/View.php:99 +#: src/Module/Admin/Logs/View.php:87 msgid "File" msgstr "" -#: src/Module/Admin/Logs/View.php:100 +#: src/Module/Admin/Logs/View.php:88 msgid "Line" msgstr "" -#: src/Module/Admin/Logs/View.php:101 +#: src/Module/Admin/Logs/View.php:89 msgid "Function" msgstr "" -#: src/Module/Admin/Logs/View.php:102 +#: src/Module/Admin/Logs/View.php:90 msgid "UID" msgstr "" -#: src/Module/Admin/Logs/View.php:103 +#: src/Module/Admin/Logs/View.php:91 msgid "Process ID" msgstr "" -#: src/Module/Admin/Logs/View.php:104 +#: src/Module/Admin/Logs/View.php:92 msgid "Close" msgstr "" -#: src/Module/Admin/Queue.php:50 +#: src/Module/Admin/Queue.php:36 msgid "Inspect Deferred Worker Queue" msgstr "" -#: src/Module/Admin/Queue.php:51 +#: src/Module/Admin/Queue.php:37 msgid "" "This page lists the deferred worker jobs. This are jobs that couldn't be " "executed at the first time." msgstr "" -#: src/Module/Admin/Queue.php:54 +#: src/Module/Admin/Queue.php:40 msgid "Inspect Worker Queue" msgstr "" -#: src/Module/Admin/Queue.php:55 +#: src/Module/Admin/Queue.php:41 msgid "" "This page lists the currently queued worker jobs. These jobs are handled by " "the worker cronjob you've set up during install." msgstr "" -#: src/Module/Admin/Queue.php:75 +#: src/Module/Admin/Queue.php:62 msgid "ID" msgstr "ID" -#: src/Module/Admin/Queue.php:76 +#: src/Module/Admin/Queue.php:63 msgid "Command" msgstr "" -#: src/Module/Admin/Queue.php:77 +#: src/Module/Admin/Queue.php:64 msgid "Job Parameters" msgstr "" -#: src/Module/Admin/Queue.php:78 src/Module/Moderation/Reports.php:95 -#: src/Module/Settings/OAuth.php:74 +#: src/Module/Admin/Queue.php:65 src/Module/Moderation/Reports.php:102 +#: src/Module/Settings/OAuth.php:60 msgid "Created" msgstr "Loodud" -#: src/Module/Admin/Queue.php:79 +#: src/Module/Admin/Queue.php:66 +msgid "Next Try" +msgstr "" + +#: src/Module/Admin/Queue.php:67 msgid "Priority" msgstr "" -#: src/Module/Admin/Site.php:243 +#: src/Module/Admin/Site.php:230 +#, php-format +msgid "%s is no valid input for maximum media size" +msgstr "" + +#: src/Module/Admin/Site.php:235 #, 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:362 src/Module/Settings/Display.php:201 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:379 src/Module/Settings/Display.php:211 #, php-format msgid "%s - (Experimental)" msgstr "" -#: src/Module/Admin/Site.php:399 +#: src/Module/Admin/Site.php:391 msgid "No community page" msgstr "" -#: src/Module/Admin/Site.php:400 +#: src/Module/Admin/Site.php:392 msgid "No community page for visitors" msgstr "" -#: src/Module/Admin/Site.php:401 +#: src/Module/Admin/Site.php:393 msgid "Public postings from users of this site" msgstr "" -#: src/Module/Admin/Site.php:402 +#: src/Module/Admin/Site.php:394 msgid "Public postings from the federated network" msgstr "" -#: src/Module/Admin/Site.php:403 +#: src/Module/Admin/Site.php:395 msgid "Public postings from local users and the federated network" msgstr "" -#: src/Module/Admin/Site.php:409 +#: src/Module/Admin/Site.php:401 msgid "Multi user instance" msgstr "" -#: src/Module/Admin/Site.php:432 +#: src/Module/Admin/Site.php:424 msgid "Closed" msgstr "Suletud" -#: src/Module/Admin/Site.php:433 +#: src/Module/Admin/Site.php:425 msgid "Requires approval" msgstr "Vajab heakskiitu" -#: src/Module/Admin/Site.php:434 +#: src/Module/Admin/Site.php:426 msgid "Open" msgstr "Avatud" -#: src/Module/Admin/Site.php:438 +#: src/Module/Admin/Site.php:430 msgid "Don't check" msgstr "Ära kontrolli" -#: src/Module/Admin/Site.php:439 +#: src/Module/Admin/Site.php:431 msgid "check the stable version" msgstr "kontrolli stabiilset versiooni" -#: src/Module/Admin/Site.php:440 +#: src/Module/Admin/Site.php:432 msgid "check the development version" msgstr "" -#: src/Module/Admin/Site.php:444 +#: src/Module/Admin/Site.php:436 msgid "none" msgstr "" -#: src/Module/Admin/Site.php:445 +#: src/Module/Admin/Site.php:437 msgid "Local contacts" msgstr "" -#: src/Module/Admin/Site.php:446 +#: src/Module/Admin/Site.php:438 msgid "Interactors" msgstr "" -#: src/Module/Admin/Site.php:456 src/Module/BaseAdmin.php:90 +#: src/Module/Admin/Site.php:448 src/Module/BaseAdmin.php:76 msgid "Site" msgstr "" -#: src/Module/Admin/Site.php:457 +#: src/Module/Admin/Site.php:449 msgid "General Information" msgstr "" -#: src/Module/Admin/Site.php:459 +#: src/Module/Admin/Site.php:451 msgid "Republish users to directory" msgstr "" -#: src/Module/Admin/Site.php:460 src/Module/Register.php:152 +#: src/Module/Admin/Site.php:452 src/Module/Register.php:145 msgid "Registration" msgstr "Registreerimine" -#: src/Module/Admin/Site.php:461 +#: src/Module/Admin/Site.php:453 msgid "File upload" msgstr "" -#: src/Module/Admin/Site.php:462 +#: src/Module/Admin/Site.php:454 msgid "Policies" msgstr "" -#: src/Module/Admin/Site.php:463 src/Module/Calendar/Event/Form.php:252 -#: src/Module/Contact.php:546 src/Module/Profile/Profile.php:276 +#: src/Module/Admin/Site.php:455 src/Module/Calendar/Event/Form.php:238 +#: src/Module/Contact.php:528 src/Module/Profile/Profile.php:264 msgid "Advanced" msgstr "Täpsem" -#: src/Module/Admin/Site.php:464 +#: src/Module/Admin/Site.php:456 msgid "Auto Discovered Contact Directory" msgstr "" -#: src/Module/Admin/Site.php:465 +#: src/Module/Admin/Site.php:457 msgid "Performance" msgstr "" -#: src/Module/Admin/Site.php:466 +#: src/Module/Admin/Site.php:458 msgid "Worker" msgstr "" -#: src/Module/Admin/Site.php:467 +#: src/Module/Admin/Site.php:459 msgid "Message Relay" msgstr "" -#: src/Module/Admin/Site.php:468 +#: src/Module/Admin/Site.php:460 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:461 msgid "The system is not subscribed to any relays at the moment." msgstr "" -#: src/Module/Admin/Site.php:470 +#: src/Module/Admin/Site.php:462 msgid "The system is currently subscribed to the following relays:" msgstr "" -#: src/Module/Admin/Site.php:473 +#: src/Module/Admin/Site.php:465 msgid "Relocate Node" msgstr "" -#: src/Module/Admin/Site.php:474 +#: src/Module/Admin/Site.php:466 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:467 msgid "(Friendica directory)# bin/console relocate https://newdomain.com" msgstr "" -#: src/Module/Admin/Site.php:478 +#: src/Module/Admin/Site.php:470 msgid "Site name" msgstr "" -#: src/Module/Admin/Site.php:479 +#: src/Module/Admin/Site.php:471 msgid "Sender Email" msgstr "" -#: src/Module/Admin/Site.php:479 +#: src/Module/Admin/Site.php:471 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:472 msgid "Name of the system actor" msgstr "" -#: src/Module/Admin/Site.php:480 +#: src/Module/Admin/Site.php:472 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:473 msgid "Banner/Logo" msgstr "" -#: src/Module/Admin/Site.php:482 +#: src/Module/Admin/Site.php:474 msgid "Email Banner/Logo" msgstr "" -#: src/Module/Admin/Site.php:483 +#: src/Module/Admin/Site.php:475 msgid "Shortcut icon" msgstr "" -#: src/Module/Admin/Site.php:483 +#: src/Module/Admin/Site.php:475 msgid "Link to an icon that will be used for browsers." msgstr "" -#: src/Module/Admin/Site.php:484 +#: src/Module/Admin/Site.php:476 msgid "Touch icon" msgstr "" -#: src/Module/Admin/Site.php:484 +#: src/Module/Admin/Site.php:476 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:477 msgid "Additional Info" msgstr "Lisainfo" -#: src/Module/Admin/Site.php:485 +#: src/Module/Admin/Site.php:477 #, 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:478 msgid "System language" msgstr "Süsteemi keel" -#: src/Module/Admin/Site.php:487 +#: src/Module/Admin/Site.php:479 msgid "System theme" msgstr "Süsteemi teema" -#: src/Module/Admin/Site.php:487 +#: src/Module/Admin/Site.php:479 #, 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:480 msgid "Mobile system theme" msgstr "Mobiilne süsttemi teema" -#: src/Module/Admin/Site.php:488 +#: src/Module/Admin/Site.php:480 msgid "Theme for mobile devices" msgstr "Teema mobiilseadmetele" -#: src/Module/Admin/Site.php:489 +#: src/Module/Admin/Site.php:481 msgid "Force SSL" msgstr "" -#: src/Module/Admin/Site.php:489 +#: src/Module/Admin/Site.php:481 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:482 msgid "Show help entry from navigation menu" msgstr "" -#: src/Module/Admin/Site.php:490 +#: src/Module/Admin/Site.php:482 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:483 msgid "Single user instance" msgstr "" -#: src/Module/Admin/Site.php:491 +#: src/Module/Admin/Site.php:483 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:485 msgid "Maximum image size" msgstr "" -#: src/Module/Admin/Site.php:493 +#: src/Module/Admin/Site.php:485 #, 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" @@ -4619,35 +4695,47 @@ 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:489 msgid "Maximum image length" msgstr "" -#: src/Module/Admin/Site.php:497 +#: src/Module/Admin/Site.php:489 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:490 msgid "JPEG image quality" msgstr "" -#: src/Module/Admin/Site.php:498 +#: src/Module/Admin/Site.php:490 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:491 +msgid "Maximum media file size" +msgstr "" + +#: src/Module/Admin/Site.php:491 +#, php-format +msgid "" +"Maximum size in bytes of uploaded media files. Default is 0, which means no limits. You can put k, m, or g behind the desired value for KiB, MiB, GiB, respectively.\n" +"\t\t\t\t\t\t\t\t\t\t\t\t\tThe value of upload_max_filesize in your PHP.ini needs be set to at least the desired limit.\n" +"\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:496 msgid "Register policy" msgstr "" -#: src/Module/Admin/Site.php:501 +#: src/Module/Admin/Site.php:497 msgid "Maximum Users" msgstr "" -#: src/Module/Admin/Site.php:501 +#: src/Module/Admin/Site.php:497 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 " @@ -4655,157 +4743,167 @@ msgid "" "not when the policy is set to approval." msgstr "" -#: src/Module/Admin/Site.php:502 +#: src/Module/Admin/Site.php:498 msgid "Maximum Daily Registrations" msgstr "" -#: src/Module/Admin/Site.php:502 +#: src/Module/Admin/Site.php:498 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:499 msgid "Register text" msgstr "" -#: src/Module/Admin/Site.php:503 +#: src/Module/Admin/Site.php:499 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:500 msgid "Forbidden Nicknames" msgstr "" -#: src/Module/Admin/Site.php:504 +#: src/Module/Admin/Site.php:500 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:501 msgid "Accounts abandoned after x days" msgstr "" -#: src/Module/Admin/Site.php:505 +#: src/Module/Admin/Site.php:501 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:502 msgid "Allowed friend domains" msgstr "" -#: src/Module/Admin/Site.php:506 +#: src/Module/Admin/Site.php:502 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:503 msgid "Allowed email domains" msgstr "" -#: src/Module/Admin/Site.php:507 +#: src/Module/Admin/Site.php:503 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:504 +msgid "Disallowed email domains" +msgstr "" + +#: src/Module/Admin/Site.php:504 +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:505 msgid "No OEmbed rich content" msgstr "" -#: src/Module/Admin/Site.php:508 +#: src/Module/Admin/Site.php:505 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:506 msgid "Trusted third-party domains" msgstr "" -#: src/Module/Admin/Site.php:509 +#: src/Module/Admin/Site.php:506 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:507 msgid "Block public" msgstr "" -#: src/Module/Admin/Site.php:510 +#: src/Module/Admin/Site.php:507 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:508 msgid "Force publish" msgstr "" -#: src/Module/Admin/Site.php:511 +#: src/Module/Admin/Site.php:508 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:508 msgid "Enabling this may violate privacy laws like the GDPR" msgstr "" -#: src/Module/Admin/Site.php:512 +#: src/Module/Admin/Site.php:509 msgid "Global directory URL" msgstr "" -#: src/Module/Admin/Site.php:512 +#: src/Module/Admin/Site.php:509 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:510 msgid "Private posts by default for new users" msgstr "" -#: src/Module/Admin/Site.php:513 +#: src/Module/Admin/Site.php:510 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:511 msgid "Don't include post content in email notifications" msgstr "" -#: src/Module/Admin/Site.php:514 +#: src/Module/Admin/Site.php:511 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:512 msgid "Disallow public access to addons listed in the apps menu." msgstr "" -#: src/Module/Admin/Site.php:515 +#: src/Module/Admin/Site.php:512 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:513 msgid "Don't embed private images in posts" msgstr "" -#: src/Module/Admin/Site.php:516 +#: src/Module/Admin/Site.php:513 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 " @@ -4813,11 +4911,11 @@ msgid "" "while." msgstr "" -#: src/Module/Admin/Site.php:517 +#: src/Module/Admin/Site.php:514 msgid "Explicit Content" msgstr "" -#: src/Module/Admin/Site.php:517 +#: src/Module/Admin/Site.php:514 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 " @@ -4826,339 +4924,319 @@ msgid "" "will be shown at the user registration page." msgstr "" -#: src/Module/Admin/Site.php:518 -msgid "Proxify external content" -msgstr "" - -#: src/Module/Admin/Site.php:518 -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:515 msgid "Only local search" msgstr "" -#: src/Module/Admin/Site.php:519 +#: src/Module/Admin/Site.php:515 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:516 msgid "Blocked tags for trending tags" msgstr "" -#: src/Module/Admin/Site.php:520 +#: src/Module/Admin/Site.php:516 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:517 msgid "Cache contact avatars" msgstr "" -#: src/Module/Admin/Site.php:521 +#: src/Module/Admin/Site.php:517 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:518 msgid "Allow Users to set remote_self" msgstr "" -#: src/Module/Admin/Site.php:522 +#: src/Module/Admin/Site.php:518 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:519 msgid "Allow Users to set up relay channels" msgstr "" -#: src/Module/Admin/Site.php:523 +#: src/Module/Admin/Site.php:519 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:520 msgid "Adjust the feed poll frequency" msgstr "" -#: src/Module/Admin/Site.php:524 +#: src/Module/Admin/Site.php:520 msgid "Automatically detect and set the best feed poll frequency." msgstr "" -#: src/Module/Admin/Site.php:525 +#: src/Module/Admin/Site.php:521 msgid "Minimum poll interval" msgstr "" -#: src/Module/Admin/Site.php:525 +#: src/Module/Admin/Site.php:521 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:522 msgid "Enable multiple registrations" msgstr "" -#: src/Module/Admin/Site.php:526 +#: src/Module/Admin/Site.php:522 msgid "Enable users to register additional accounts for use as pages." msgstr "" -#: src/Module/Admin/Site.php:527 +#: src/Module/Admin/Site.php:523 msgid "Enable OpenID" msgstr "" -#: src/Module/Admin/Site.php:527 +#: src/Module/Admin/Site.php:523 msgid "Enable OpenID support for registration and logins." msgstr "" -#: src/Module/Admin/Site.php:528 +#: src/Module/Admin/Site.php:524 msgid "Enable full name check" msgstr "" -#: src/Module/Admin/Site.php:528 +#: src/Module/Admin/Site.php:524 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:525 msgid "Email administrators on new registration" msgstr "" -#: src/Module/Admin/Site.php:529 +#: src/Module/Admin/Site.php:525 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:526 msgid "Community pages for visitors" msgstr "" -#: src/Module/Admin/Site.php:530 +#: src/Module/Admin/Site.php:526 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:527 msgid "Posts per user on community page" msgstr "" -#: src/Module/Admin/Site.php:531 +#: src/Module/Admin/Site.php:527 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:528 msgid "Posts per server on community page" msgstr "" -#: src/Module/Admin/Site.php:532 +#: src/Module/Admin/Site.php:528 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:530 msgid "Enable Mail support" msgstr "" -#: src/Module/Admin/Site.php:534 +#: src/Module/Admin/Site.php:530 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:531 msgid "" "Mail support can't be enabled because the PHP IMAP module is not installed." msgstr "" -#: src/Module/Admin/Site.php:536 -msgid "Enable OStatus support" -msgstr "" - -#: src/Module/Admin/Site.php:536 -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:533 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:534 msgid "Enable Diaspora support" msgstr "" -#: src/Module/Admin/Site.php:539 +#: src/Module/Admin/Site.php:534 msgid "" "Enable built-in Diaspora network compatibility for communicating with " "diaspora servers." msgstr "" -#: src/Module/Admin/Site.php:540 +#: src/Module/Admin/Site.php:535 msgid "Verify SSL" msgstr "" -#: src/Module/Admin/Site.php:540 +#: src/Module/Admin/Site.php:535 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:536 msgid "Proxy user" msgstr "" -#: src/Module/Admin/Site.php:541 +#: src/Module/Admin/Site.php:536 msgid "User name for the proxy server." msgstr "" -#: src/Module/Admin/Site.php:542 +#: src/Module/Admin/Site.php:537 msgid "Proxy URL" msgstr "" -#: src/Module/Admin/Site.php:542 +#: src/Module/Admin/Site.php:537 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:538 msgid "Network timeout" msgstr "" -#: src/Module/Admin/Site.php:543 +#: src/Module/Admin/Site.php:538 msgid "Value is in seconds. Set to 0 for unlimited (not recommended)." msgstr "" -#: src/Module/Admin/Site.php:544 +#: src/Module/Admin/Site.php:539 msgid "Maximum Load Average" msgstr "" -#: src/Module/Admin/Site.php:544 +#: src/Module/Admin/Site.php:539 #, 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:540 msgid "Minimal Memory" msgstr "" -#: src/Module/Admin/Site.php:545 +#: src/Module/Admin/Site.php:540 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:541 msgid "Periodically optimize tables" msgstr "" -#: src/Module/Admin/Site.php:546 +#: src/Module/Admin/Site.php:541 msgid "Periodically optimize tables like the cache and the workerqueue" msgstr "" -#: src/Module/Admin/Site.php:548 +#: src/Module/Admin/Site.php:543 msgid "Discover followers/followings from contacts" msgstr "" -#: src/Module/Admin/Site.php:548 +#: src/Module/Admin/Site.php:543 msgid "" "If enabled, contacts are checked for their followers and following contacts." msgstr "" -#: src/Module/Admin/Site.php:549 +#: src/Module/Admin/Site.php:544 msgid "None - deactivated" msgstr "" -#: src/Module/Admin/Site.php:550 +#: src/Module/Admin/Site.php:545 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:546 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:548 msgid "Only update contacts/servers with local data" msgstr "" -#: src/Module/Admin/Site.php:553 +#: src/Module/Admin/Site.php:548 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:549 msgid "Synchronize the contacts with the directory server" msgstr "" -#: src/Module/Admin/Site.php:554 +#: src/Module/Admin/Site.php:549 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:551 msgid "Discover contacts from other servers" msgstr "" -#: src/Module/Admin/Site.php:556 +#: src/Module/Admin/Site.php:551 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:552 msgid "Days between requery" msgstr "" -#: src/Module/Admin/Site.php:557 +#: src/Module/Admin/Site.php:552 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:553 msgid "Search the local directory" msgstr "" -#: src/Module/Admin/Site.php:558 +#: src/Module/Admin/Site.php:553 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:555 msgid "Publish server information" msgstr "" -#: src/Module/Admin/Site.php:560 +#: src/Module/Admin/Site.php:555 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 " @@ -5166,50 +5244,50 @@ msgid "" " href=\"http://the-federation.info/\">the-federation.info for details." msgstr "" -#: src/Module/Admin/Site.php:562 +#: src/Module/Admin/Site.php:557 msgid "Check upstream version" msgstr "" -#: src/Module/Admin/Site.php:562 +#: src/Module/Admin/Site.php:557 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:558 msgid "Suppress Tags" msgstr "" -#: src/Module/Admin/Site.php:563 +#: src/Module/Admin/Site.php:558 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:559 msgid "Clean database" msgstr "" -#: src/Module/Admin/Site.php:564 +#: src/Module/Admin/Site.php:559 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:560 msgid "Lifespan of remote items" msgstr "" -#: src/Module/Admin/Site.php:565 +#: src/Module/Admin/Site.php:560 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:561 msgid "Lifespan of unclaimed items" msgstr "" -#: src/Module/Admin/Site.php:566 +#: src/Module/Admin/Site.php:561 msgid "" "When the database cleanup is enabled, this defines the days after which " "unclaimed remote items (mostly content from the relay) will be deleted. " @@ -5217,175 +5295,184 @@ msgid "" "items if set to 0." msgstr "" -#: src/Module/Admin/Site.php:567 +#: src/Module/Admin/Site.php:562 msgid "Lifespan of raw conversation data" msgstr "" -#: src/Module/Admin/Site.php:567 +#: src/Module/Admin/Site.php:562 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." +"The conversation data is used for ActivityPub, 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:563 msgid "Maximum numbers of comments per post" msgstr "" -#: src/Module/Admin/Site.php:568 +#: src/Module/Admin/Site.php:563 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:564 msgid "Maximum numbers of comments per post on the display page" msgstr "" -#: src/Module/Admin/Site.php:569 +#: src/Module/Admin/Site.php:564 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:565 msgid "Items per page" msgstr "" -#: src/Module/Admin/Site.php:570 +#: src/Module/Admin/Site.php:565 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:566 msgid "Items per page for mobile devices" msgstr "" -#: src/Module/Admin/Site.php:571 +#: src/Module/Admin/Site.php:566 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:567 msgid "Temp path" msgstr "" -#: src/Module/Admin/Site.php:572 +#: src/Module/Admin/Site.php:567 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:568 msgid "Only search in tags" msgstr "" -#: src/Module/Admin/Site.php:573 +#: src/Module/Admin/Site.php:568 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:569 +msgid "Limited search scope" +msgstr "" + +#: src/Module/Admin/Site.php:569 +msgid "" +"If enabled, searches will only be performed in the data used for the " +"channels and not in all posts." +msgstr "" + +#: src/Module/Admin/Site.php:570 msgid "Maximum age of items in the search table" msgstr "" -#: src/Module/Admin/Site.php:574 +#: src/Module/Admin/Site.php:570 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:571 msgid "Generate counts per contact circle when calculating network count" msgstr "" -#: src/Module/Admin/Site.php:575 +#: src/Module/Admin/Site.php:571 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:572 msgid "Process \"view\" activities" msgstr "" -#: src/Module/Admin/Site.php:576 +#: src/Module/Admin/Site.php:572 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:573 msgid "Days, after which a contact is archived" msgstr "" -#: src/Module/Admin/Site.php:577 +#: src/Module/Admin/Site.php:573 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:575 msgid "Maximum number of parallel workers" msgstr "" -#: src/Module/Admin/Site.php:579 +#: src/Module/Admin/Site.php:575 #, 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:576 msgid "Maximum load for workers" msgstr "" -#: src/Module/Admin/Site.php:580 +#: src/Module/Admin/Site.php:576 msgid "Maximum load that causes a cooldown before each worker function call." msgstr "" -#: src/Module/Admin/Site.php:581 +#: src/Module/Admin/Site.php:577 msgid "Enable fastlane" msgstr "" -#: src/Module/Admin/Site.php:581 +#: src/Module/Admin/Site.php:577 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:578 msgid "Decoupled receiver" msgstr "" -#: src/Module/Admin/Site.php:582 +#: src/Module/Admin/Site.php:578 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:579 msgid "Cron interval" msgstr "" -#: src/Module/Admin/Site.php:583 +#: src/Module/Admin/Site.php:579 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:580 msgid "Worker defer limit" msgstr "" -#: src/Module/Admin/Site.php:584 +#: src/Module/Admin/Site.php:580 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:581 msgid "Worker fetch limit" msgstr "" -#: src/Module/Admin/Site.php:585 +#: src/Module/Admin/Site.php:581 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" @@ -5393,214 +5480,214 @@ msgid "" "system." msgstr "" -#: src/Module/Admin/Site.php:587 +#: src/Module/Admin/Site.php:583 msgid "Direct relay transfer" msgstr "" -#: src/Module/Admin/Site.php:587 +#: src/Module/Admin/Site.php:583 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:584 msgid "Relay scope" msgstr "" -#: src/Module/Admin/Site.php:588 +#: src/Module/Admin/Site.php:584 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/Settings/TwoFactor/Index.php:146 +#: src/Module/Admin/Site.php:584 src/Module/Contact/Profile.php:314 +#: src/Module/Settings/TwoFactor/Index.php:132 msgid "Disabled" msgstr "" -#: src/Module/Admin/Site.php:588 +#: src/Module/Admin/Site.php:584 msgid "all" msgstr "" -#: src/Module/Admin/Site.php:588 +#: src/Module/Admin/Site.php:584 msgid "tags" msgstr "" -#: src/Module/Admin/Site.php:589 +#: src/Module/Admin/Site.php:585 msgid "Server tags" msgstr "" -#: src/Module/Admin/Site.php:589 +#: src/Module/Admin/Site.php:585 msgid "Comma separated list of tags for the \"tags\" subscription." msgstr "" -#: src/Module/Admin/Site.php:590 +#: src/Module/Admin/Site.php:586 msgid "Deny Server tags" msgstr "" -#: src/Module/Admin/Site.php:590 +#: src/Module/Admin/Site.php:586 msgid "Comma separated list of tags that are rejected." msgstr "" -#: src/Module/Admin/Site.php:591 +#: src/Module/Admin/Site.php:587 msgid "Maximum amount of tags" msgstr "" -#: src/Module/Admin/Site.php:591 +#: src/Module/Admin/Site.php:587 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:588 msgid "Allow user tags" msgstr "" -#: src/Module/Admin/Site.php:592 +#: src/Module/Admin/Site.php:588 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:589 msgid "Deny undetected languages" msgstr "" -#: src/Module/Admin/Site.php:593 +#: src/Module/Admin/Site.php:589 msgid "If enabled, posts with undetected languages will be rejected." msgstr "" -#: src/Module/Admin/Site.php:594 +#: src/Module/Admin/Site.php:590 msgid "Language Quality" msgstr "" -#: src/Module/Admin/Site.php:594 +#: src/Module/Admin/Site.php:590 msgid "The minimum language quality that is required to accept the post." msgstr "" -#: src/Module/Admin/Site.php:595 +#: src/Module/Admin/Site.php:591 msgid "Number of languages for the language detection" msgstr "" -#: src/Module/Admin/Site.php:595 +#: src/Module/Admin/Site.php:591 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:593 msgid "Maximum age of channel" msgstr "" -#: src/Module/Admin/Site.php:597 +#: src/Module/Admin/Site.php:593 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:594 msgid "Maximum number of channel posts" msgstr "" -#: src/Module/Admin/Site.php:598 +#: src/Module/Admin/Site.php:594 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:595 msgid "Interaction score days" msgstr "" -#: src/Module/Admin/Site.php:599 +#: src/Module/Admin/Site.php:595 msgid "Number of days that are used to calculate the interaction score." msgstr "" -#: src/Module/Admin/Site.php:600 +#: src/Module/Admin/Site.php:596 msgid "Maximum number of posts per author" msgstr "" -#: src/Module/Admin/Site.php:600 +#: src/Module/Admin/Site.php:596 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:597 msgid "Sharer interaction days" msgstr "" -#: src/Module/Admin/Site.php:601 +#: src/Module/Admin/Site.php:597 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:600 msgid "Start Relocation" msgstr "" -#: src/Module/Admin/Storage.php:46 +#: src/Module/Admin/Storage.php:32 #, php-format msgid "Storage backend, %s is invalid." msgstr "" -#: src/Module/Admin/Storage.php:73 +#: src/Module/Admin/Storage.php:59 #, php-format msgid "Storage backend %s error: %s" msgstr "" -#: src/Module/Admin/Storage.php:84 src/Module/Admin/Storage.php:87 +#: src/Module/Admin/Storage.php:70 src/Module/Admin/Storage.php:73 msgid "Invalid storage backend setting value." msgstr "" -#: src/Module/Admin/Storage.php:139 +#: src/Module/Admin/Storage.php:125 msgid "Current Storage Backend" msgstr "" -#: src/Module/Admin/Storage.php:140 +#: src/Module/Admin/Storage.php:126 msgid "Storage Configuration" msgstr "" -#: src/Module/Admin/Storage.php:141 src/Module/BaseAdmin.php:91 +#: src/Module/Admin/Storage.php:127 src/Module/BaseAdmin.php:77 msgid "Storage" msgstr "" -#: src/Module/Admin/Storage.php:143 +#: src/Module/Admin/Storage.php:129 msgid "Save & Use storage backend" msgstr "" -#: src/Module/Admin/Storage.php:144 +#: src/Module/Admin/Storage.php:130 msgid "Use storage backend" msgstr "" -#: src/Module/Admin/Storage.php:145 +#: src/Module/Admin/Storage.php:131 msgid "Save & Reload" msgstr "" -#: src/Module/Admin/Storage.php:146 +#: src/Module/Admin/Storage.php:132 msgid "This backend doesn't have custom settings" msgstr "" -#: src/Module/Admin/Storage.php:148 +#: src/Module/Admin/Storage.php:134 msgid "" "Changing the current backend is prohibited because it is set by an " "environment variable" msgstr "" -#: src/Module/Admin/Storage.php:150 +#: src/Module/Admin/Storage.php:136 msgid "Database (legacy)" msgstr "" -#: src/Module/Admin/Summary.php:55 +#: src/Module/Admin/Summary.php:41 #, php-format msgid "Template engine (%s) error: %s" msgstr "" -#: src/Module/Admin/Summary.php:59 +#: src/Module/Admin/Summary.php:45 #, php-format msgid "" "Your DB still runs with MyISAM tables. You should change the engine type to " @@ -5611,7 +5698,7 @@ msgid "" " an automatic conversion.
" msgstr "" -#: src/Module/Admin/Summary.php:64 +#: src/Module/Admin/Summary.php:50 #, php-format msgid "" "Your DB still runs with InnoDB tables in the Antelope file format. You " @@ -5622,7 +5709,7 @@ msgid "" " installation for an automatic conversion.
" msgstr "" -#: src/Module/Admin/Summary.php:74 +#: src/Module/Admin/Summary.php:60 #, php-format msgid "" "Your table_definition_cache is too low (%d). This can lead to the database " @@ -5630,46 +5717,46 @@ msgid "" " to %d. See here for more information.
" msgstr "" -#: src/Module/Admin/Summary.php:85 +#: src/Module/Admin/Summary.php:71 #, php-format msgid "" "There is a new version of Friendica available for download. Your current " "version is %1$s, upstream version is %2$s" msgstr "" -#: src/Module/Admin/Summary.php:94 +#: src/Module/Admin/Summary.php:80 msgid "" "The database update failed. Please run \"php bin/console.php dbstructure " "update\" from the command line and have a look at the errors that might " "appear." msgstr "" -#: src/Module/Admin/Summary.php:98 +#: src/Module/Admin/Summary.php:84 msgid "" "The last update failed. Please run \"php bin/console.php dbstructure " "update\" from the command line and have a look at the errors that might " "appear. (Some of the errors are possibly inside the logfile.)" msgstr "" -#: src/Module/Admin/Summary.php:102 +#: src/Module/Admin/Summary.php:88 msgid "" "The system.url entry is missing. This is a low level setting and can lead to" " unexpected behavior. Please add a valid entry as soon as possible in the " "config file or per console command!" msgstr "" -#: src/Module/Admin/Summary.php:107 +#: src/Module/Admin/Summary.php:93 msgid "The worker was never executed. Please check your database structure!" msgstr "" -#: src/Module/Admin/Summary.php:109 +#: src/Module/Admin/Summary.php:95 #, php-format msgid "" "The last worker execution was on %s UTC. This is older than one hour. Please" " check your crontab settings." msgstr "" -#: src/Module/Admin/Summary.php:114 +#: src/Module/Admin/Summary.php:100 #, php-format msgid "" "Friendica's configuration now is stored in config/local.config.php, please " @@ -5678,7 +5765,7 @@ msgid "" "help with the transition." msgstr "" -#: src/Module/Admin/Summary.php:118 +#: src/Module/Admin/Summary.php:104 #, php-format msgid "" "Friendica's configuration now is stored in config/local.config.php, please " @@ -5687,7 +5774,7 @@ msgid "" "page for help with the transition." msgstr "" -#: src/Module/Admin/Summary.php:124 +#: src/Module/Admin/Summary.php:110 #, php-format msgid "" "%s is not reachable on your system. This is a severe " @@ -5695,107 +5782,107 @@ msgid "" "href=\"%s\">the installation page for help." msgstr "" -#: src/Module/Admin/Summary.php:148 +#: src/Module/Admin/Summary.php:134 #, php-format msgid "" "Friendica's system.basepath was updated from '%s' to '%s'. Please remove the" " system.basepath from your db to avoid differences." msgstr "" -#: src/Module/Admin/Summary.php:156 +#: src/Module/Admin/Summary.php:142 #, php-format msgid "" "Friendica's current system.basepath '%s' is wrong and the config file '%s' " "isn't used." msgstr "" -#: src/Module/Admin/Summary.php:164 +#: src/Module/Admin/Summary.php:150 #, php-format msgid "" "Friendica's current system.basepath '%s' is not equal to the config file " "'%s'. Please fix your configuration." msgstr "" -#: src/Module/Admin/Summary.php:175 +#: src/Module/Admin/Summary.php:161 msgid "Message queues" msgstr "" -#: src/Module/Admin/Summary.php:181 +#: src/Module/Admin/Summary.php:167 msgid "Server Settings" msgstr "Serveri sätted" -#: src/Module/Admin/Summary.php:199 +#: src/Module/Admin/Summary.php:185 msgid "Version" msgstr "Versioon" -#: src/Module/Admin/Summary.php:203 +#: src/Module/Admin/Summary.php:189 msgid "Active addons" msgstr "Aktiveeritud lisad" -#: src/Module/Admin/Themes/Details.php:57 src/Module/Admin/Themes/Index.php:65 +#: src/Module/Admin/Themes/Details.php:49 src/Module/Admin/Themes/Index.php:57 #, php-format msgid "Theme %s disabled." msgstr "" -#: src/Module/Admin/Themes/Details.php:59 src/Module/Admin/Themes/Index.php:67 +#: src/Module/Admin/Themes/Details.php:51 src/Module/Admin/Themes/Index.php:59 #, php-format msgid "Theme %s successfully enabled." msgstr "" -#: src/Module/Admin/Themes/Details.php:61 src/Module/Admin/Themes/Index.php:69 +#: src/Module/Admin/Themes/Details.php:53 src/Module/Admin/Themes/Index.php:61 #, php-format msgid "Theme %s failed to install." msgstr "" -#: src/Module/Admin/Themes/Details.php:83 +#: src/Module/Admin/Themes/Details.php:75 msgid "Screenshot" msgstr "" -#: src/Module/Admin/Themes/Details.php:91 -#: src/Module/Admin/Themes/Index.php:112 src/Module/BaseAdmin.php:93 +#: src/Module/Admin/Themes/Details.php:83 +#: src/Module/Admin/Themes/Index.php:104 src/Module/BaseAdmin.php:79 msgid "Themes" msgstr "Teemad" -#: src/Module/Admin/Themes/Embed.php:80 +#: src/Module/Admin/Themes/Embed.php:66 msgid "Unknown theme." msgstr "" -#: src/Module/Admin/Themes/Index.php:51 +#: src/Module/Admin/Themes/Index.php:43 msgid "Themes reloaded" msgstr "" -#: src/Module/Admin/Themes/Index.php:114 +#: src/Module/Admin/Themes/Index.php:106 msgid "Reload active themes" msgstr "" -#: src/Module/Admin/Themes/Index.php:118 +#: src/Module/Admin/Themes/Index.php:110 #, php-format msgid "No themes found on the system. They should be placed in %1$s" msgstr "" -#: src/Module/Admin/Themes/Index.php:119 +#: src/Module/Admin/Themes/Index.php:111 msgid "[Experimental]" msgstr "" -#: src/Module/Admin/Themes/Index.php:120 +#: src/Module/Admin/Themes/Index.php:112 msgid "[Unsupported]" msgstr "" -#: src/Module/Admin/Tos.php:79 +#: src/Module/Admin/Tos.php:65 msgid "Display Terms of Service" msgstr "" -#: src/Module/Admin/Tos.php:79 +#: src/Module/Admin/Tos.php:65 msgid "" "Enable the Terms of Service page. If this is enabled a link to the terms " "will be added to the registration form and the general information page." msgstr "" -#: src/Module/Admin/Tos.php:80 +#: src/Module/Admin/Tos.php:66 msgid "Display Privacy Statement" msgstr "" -#: src/Module/Admin/Tos.php:80 +#: src/Module/Admin/Tos.php:66 #, php-format msgid "" "Show some informations regarding the needed information to operate the node " @@ -5803,167 +5890,167 @@ msgid "" "noreferrer\">EU-GDPR." msgstr "" -#: src/Module/Admin/Tos.php:81 +#: src/Module/Admin/Tos.php:67 msgid "Privacy Statement Preview" msgstr "" -#: src/Module/Admin/Tos.php:83 +#: src/Module/Admin/Tos.php:69 msgid "The Terms of Service" msgstr "" -#: src/Module/Admin/Tos.php:83 +#: src/Module/Admin/Tos.php:69 msgid "" "Enter the Terms of Service for your node here. You can use BBCode. Headers " "of sections should be [h2] and below." msgstr "" -#: src/Module/Admin/Tos.php:84 +#: src/Module/Admin/Tos.php:70 msgid "The rules" msgstr "" -#: src/Module/Admin/Tos.php:84 +#: src/Module/Admin/Tos.php:70 msgid "Enter your system rules here. Each line represents one rule." msgstr "" -#: src/Module/Api/ApiResponse.php:293 +#: src/Module/Api/ApiResponse.php:279 #, php-format msgid "API endpoint %s %s is not implemented but might be in the future." msgstr "" -#: src/Module/Api/Mastodon/Apps.php:73 +#: src/Module/Api/Mastodon/Apps.php:59 msgid "Missing parameters" msgstr "" -#: src/Module/Api/Mastodon/Statuses/Bookmark.php:51 +#: src/Module/Api/Mastodon/Statuses/Bookmark.php:36 msgid "Only starting posts can be bookmarked" msgstr "" -#: src/Module/Api/Mastodon/Statuses/Mute.php:51 +#: src/Module/Api/Mastodon/Statuses/Mute.php:37 msgid "Only starting posts can be muted" msgstr "" -#: src/Module/Api/Mastodon/Statuses/Reblog.php:58 +#: src/Module/Api/Mastodon/Statuses/Reblog.php:44 #, php-format msgid "Posts from %s can't be shared" msgstr "" -#: src/Module/Api/Mastodon/Statuses/Unbookmark.php:51 +#: src/Module/Api/Mastodon/Statuses/Unbookmark.php:37 msgid "Only starting posts can be unbookmarked" msgstr "" -#: src/Module/Api/Mastodon/Statuses/Unmute.php:51 +#: src/Module/Api/Mastodon/Statuses/Unmute.php:37 msgid "Only starting posts can be unmuted" msgstr "" -#: src/Module/Api/Mastodon/Statuses/Unreblog.php:64 +#: src/Module/Api/Mastodon/Statuses/Unreblog.php:50 #, php-format msgid "Posts from %s can't be unshared" msgstr "" -#: src/Module/Api/Twitter/ContactEndpoint.php:66 +#: src/Module/Api/Twitter/ContactEndpoint.php:52 msgid "Contact not found" msgstr "" -#: src/Module/Apps.php:62 +#: src/Module/Apps.php:48 msgid "No installed applications." msgstr "Paigaldatud rakendusi pole." -#: src/Module/Apps.php:67 +#: src/Module/Apps.php:53 msgid "Applications" msgstr "Rakendused" -#: src/Module/Attach.php:49 src/Module/Attach.php:61 +#: src/Module/Attach.php:35 src/Module/Attach.php:47 msgid "Item was not found." msgstr "Elementi ei leitud." -#: src/Module/BaseAdmin.php:54 src/Module/BaseAdmin.php:58 -#: src/Module/BaseModeration.php:77 src/Module/BaseModeration.php:81 +#: src/Module/BaseAdmin.php:40 src/Module/BaseAdmin.php:44 +#: src/Module/BaseModeration.php:63 src/Module/BaseModeration.php:67 msgid "Please login to continue." msgstr "Jätkamiseks logi sisse" -#: src/Module/BaseAdmin.php:63 +#: src/Module/BaseAdmin.php:49 msgid "You don't have access to administration pages." msgstr "" -#: src/Module/BaseAdmin.php:67 +#: src/Module/BaseAdmin.php:53 msgid "" "Submanaged account can't access the administration pages. Please log back in" " as the main account." msgstr "" -#: src/Module/BaseAdmin.php:86 src/Module/BaseModeration.php:109 +#: src/Module/BaseAdmin.php:72 src/Module/BaseModeration.php:95 msgid "Overview" msgstr "Ülevaade" -#: src/Module/BaseAdmin.php:89 src/Module/BaseModeration.php:112 +#: src/Module/BaseAdmin.php:75 src/Module/BaseModeration.php:98 msgid "Configuration" msgstr "Konfiguratsioon" -#: src/Module/BaseAdmin.php:94 src/Module/BaseSettings.php:110 +#: src/Module/BaseAdmin.php:80 src/Module/BaseSettings.php:96 msgid "Additional features" msgstr "Lisafunktsioonid" -#: src/Module/BaseAdmin.php:97 +#: src/Module/BaseAdmin.php:83 msgid "Database" msgstr "Andmebaas" -#: src/Module/BaseAdmin.php:98 +#: src/Module/BaseAdmin.php:84 msgid "DB updates" msgstr "" -#: src/Module/BaseAdmin.php:99 +#: src/Module/BaseAdmin.php:85 msgid "Inspect Deferred Workers" msgstr "" -#: src/Module/BaseAdmin.php:100 +#: src/Module/BaseAdmin.php:86 msgid "Inspect worker Queue" msgstr "" -#: src/Module/BaseAdmin.php:106 src/Module/BaseModeration.php:120 +#: src/Module/BaseAdmin.php:92 src/Module/BaseModeration.php:106 msgid "Diagnostics" msgstr "" -#: src/Module/BaseAdmin.php:107 +#: src/Module/BaseAdmin.php:93 msgid "PHP Info" msgstr "" -#: src/Module/BaseAdmin.php:108 +#: src/Module/BaseAdmin.php:94 msgid "probe address" msgstr "" -#: src/Module/BaseAdmin.php:109 +#: src/Module/BaseAdmin.php:95 msgid "check webfinger" msgstr "" -#: src/Module/BaseAdmin.php:110 +#: src/Module/BaseAdmin.php:96 msgid "Babel" msgstr "" -#: src/Module/BaseAdmin.php:111 src/Module/Debug/ActivityPubConversion.php:137 +#: src/Module/BaseAdmin.php:97 src/Module/Debug/ActivityPubConversion.php:129 msgid "ActivityPub Conversion" msgstr "" -#: src/Module/BaseAdmin.php:120 +#: src/Module/BaseAdmin.php:106 msgid "Addon Features" msgstr "" -#: src/Module/BaseAdmin.php:121 src/Module/BaseModeration.php:129 +#: src/Module/BaseAdmin.php:107 src/Module/BaseModeration.php:115 msgid "User registrations waiting for confirmation" msgstr "" -#: src/Module/BaseApi.php:455 src/Module/BaseApi.php:471 -#: src/Module/BaseApi.php:487 +#: src/Module/BaseApi.php:441 src/Module/BaseApi.php:457 +#: src/Module/BaseApi.php:473 msgid "Too Many Requests" msgstr "" -#: src/Module/BaseApi.php:456 +#: src/Module/BaseApi.php:442 #, php-format msgid "Daily posting limit of %d post reached. The post was rejected." msgid_plural "Daily posting limit of %d posts reached. The post was rejected." msgstr[0] "" msgstr[1] "" -#: src/Module/BaseApi.php:472 +#: src/Module/BaseApi.php:458 #, php-format msgid "Weekly posting limit of %d post reached. The post was rejected." msgid_plural "" @@ -5971,7 +6058,7 @@ msgid_plural "" msgstr[0] "" msgstr[1] "" -#: src/Module/BaseApi.php:488 +#: src/Module/BaseApi.php:474 #, php-format msgid "Monthly posting limit of %d post reached. The post was rejected." msgid_plural "" @@ -5979,84 +6066,84 @@ msgid_plural "" msgstr[0] "" msgstr[1] "" -#: src/Module/BaseModeration.php:86 +#: src/Module/BaseModeration.php:72 msgid "You don't have access to moderation pages." msgstr "" -#: src/Module/BaseModeration.php:90 +#: src/Module/BaseModeration.php:76 msgid "" "Submanaged account can't access the moderation pages. Please log back in as " "the main account." msgstr "" -#: src/Module/BaseModeration.php:110 src/Module/Moderation/Reports.php:94 +#: src/Module/BaseModeration.php:96 src/Module/Moderation/Reports.php:101 msgid "Reports" msgstr "" -#: src/Module/BaseModeration.php:113 src/Module/Moderation/Users/Index.php:148 -#: src/Module/Moderation/Users/Index.php:158 +#: src/Module/BaseModeration.php:99 src/Module/Moderation/Users/Index.php:134 +#: src/Module/Moderation/Users/Index.php:144 msgid "Users" msgstr "Kasutajad" -#: src/Module/BaseModeration.php:115 +#: src/Module/BaseModeration.php:101 msgid "Tools" msgstr "Tööriistad" -#: src/Module/BaseModeration.php:116 +#: src/Module/BaseModeration.php:102 msgid "Contact Blocklist" msgstr "" -#: src/Module/BaseModeration.php:117 +#: src/Module/BaseModeration.php:103 msgid "Server Blocklist" msgstr "" -#: src/Module/BaseModeration.php:118 src/Module/Moderation/Item/Delete.php:62 +#: src/Module/BaseModeration.php:104 src/Module/Moderation/Item/Delete.php:48 msgid "Delete Item" msgstr "Kustuta element" -#: src/Module/BaseModeration.php:121 src/Module/Moderation/Item/Source.php:76 +#: src/Module/BaseModeration.php:107 src/Module/Moderation/Item/Source.php:68 msgid "Item Source" msgstr "" -#: src/Module/BaseProfile.php:52 src/Module/Contact.php:506 +#: src/Module/BaseProfile.php:38 src/Module/Contact.php:488 msgid "Profile Details" msgstr "Profiili detailid" -#: src/Module/BaseProfile.php:60 +#: src/Module/BaseProfile.php:46 msgid "Conversations started" msgstr "" -#: src/Module/BaseProfile.php:111 +#: src/Module/BaseProfile.php:97 msgid "Only You Can See This" msgstr "Ainult Sina saad seda näha" -#: src/Module/BaseProfile.php:116 src/Module/Profile/Schedule.php:81 +#: src/Module/BaseProfile.php:102 src/Module/Profile/Schedule.php:67 msgid "Scheduled Posts" msgstr "Ajastatud postitused" -#: src/Module/BaseProfile.php:119 +#: src/Module/BaseProfile.php:105 msgid "Posts that are scheduled for publishing" msgstr "Avaldamiseks ajastatud postitused" -#: src/Module/BaseProfile.php:138 src/Module/BaseProfile.php:141 +#: src/Module/BaseProfile.php:124 src/Module/BaseProfile.php:127 msgid "Tips for New Members" msgstr "Näpunäiteid uutele liikmetele" -#: src/Module/BaseSearch.php:71 +#: src/Module/BaseSearch.php:57 #, php-format msgid "People Search - %s" msgstr "Inimeste otsing - %s" -#: src/Module/BaseSearch.php:75 +#: src/Module/BaseSearch.php:61 #, php-format msgid "Group Search - %s" msgstr "" -#: src/Module/BaseSearch.php:121 src/Module/Contact/MatchInterests.php:139 +#: src/Module/BaseSearch.php:107 src/Module/Contact/MatchInterests.php:136 msgid "No matches" msgstr "Pole kattuvusi" -#: src/Module/BaseSearch.php:147 +#: src/Module/BaseSearch.php:133 #, php-format msgid "" "%d result was filtered out because your node blocks the domain it is " @@ -6069,831 +6156,828 @@ msgid_plural "" msgstr[0] "" msgstr[1] "" -#: src/Module/BaseSettings.php:78 +#: src/Module/BaseSettings.php:64 msgid "Account" msgstr "Konto" -#: src/Module/BaseSettings.php:85 src/Module/Security/TwoFactor/Verify.php:96 -#: src/Module/Settings/TwoFactor/Index.php:138 +#: src/Module/BaseSettings.php:71 src/Module/Security/TwoFactor/Verify.php:82 +#: src/Module/Settings/TwoFactor/Index.php:124 msgid "Two-factor authentication" msgstr "" -#: src/Module/BaseSettings.php:118 +#: src/Module/BaseSettings.php:104 msgid "Display" msgstr "Kuva" -#: src/Module/BaseSettings.php:132 src/Module/Settings/Connectors.php:204 +#: src/Module/BaseSettings.php:118 src/Module/Settings/Connectors.php:195 msgid "Social Networks" msgstr "Sotsiaalvõrgud" -#: src/Module/BaseSettings.php:146 src/Module/Settings/Delegation.php:194 +#: src/Module/BaseSettings.php:132 src/Module/Settings/Delegation.php:180 msgid "Manage Accounts" msgstr "Halda kontosid" -#: src/Module/BaseSettings.php:153 +#: src/Module/BaseSettings.php:139 msgid "Connected apps" msgstr "Ühendatud rakendused" -#: src/Module/BaseSettings.php:160 +#: src/Module/BaseSettings.php:146 msgid "Remote servers" msgstr "" -#: src/Module/BaseSettings.php:167 src/Module/Settings/UserExport.php:98 +#: src/Module/BaseSettings.php:153 src/Module/Settings/UserExport.php:84 msgid "Export personal data" msgstr "Ekspordi isiklikud andmed" -#: src/Module/BaseSettings.php:174 +#: src/Module/BaseSettings.php:160 msgid "Remove account" msgstr "Eemalda konto" -#: src/Module/Bookmarklet.php:54 +#: src/Module/Bookmarklet.php:40 msgid "This page is missing a url parameter." msgstr "" -#: src/Module/Bookmarklet.php:66 +#: src/Module/Bookmarklet.php:52 msgid "The post was created" msgstr "Postitus loodi" -#: src/Module/Calendar/Event/API.php:100 src/Module/Calendar/Event/API.php:135 -#: src/Module/Calendar/Event/Form.php:80 +#: src/Module/Calendar/Event/API.php:86 src/Module/Calendar/Event/API.php:121 +#: src/Module/Calendar/Event/Form.php:66 msgid "Invalid Request" msgstr "" -#: src/Module/Calendar/Event/API.php:109 +#: src/Module/Calendar/Event/API.php:95 msgid "Event id is missing." msgstr "" -#: src/Module/Calendar/Event/API.php:131 +#: src/Module/Calendar/Event/API.php:117 msgid "Failed to remove event" msgstr "Ei õnnestunud sündmust eemaldada" -#: src/Module/Calendar/Event/API.php:186 src/Module/Calendar/Event/API.php:188 +#: src/Module/Calendar/Event/API.php:173 src/Module/Calendar/Event/API.php:175 msgid "Event can not end before it has started." msgstr "Sündmus ei saa lõppeda enne algamist." -#: src/Module/Calendar/Event/API.php:195 src/Module/Calendar/Event/API.php:197 +#: src/Module/Calendar/Event/API.php:182 src/Module/Calendar/Event/API.php:184 msgid "Event title and start time are required." msgstr "Sündmuse pealkiri ja algusaeg nõutavad." -#: src/Module/Calendar/Event/Form.php:208 +#: src/Module/Calendar/Event/Form.php:194 msgid "Starting date and Title are required." msgstr "Alguskuupäev ja Pealkiri nõutavad." -#: src/Module/Calendar/Event/Form.php:209 -#: src/Module/Calendar/Event/Form.php:214 +#: src/Module/Calendar/Event/Form.php:195 +#: src/Module/Calendar/Event/Form.php:200 msgid "Event Starts:" msgstr "Sündmus algab:" -#: src/Module/Calendar/Event/Form.php:209 -#: src/Module/Calendar/Event/Form.php:237 src/Module/Debug/Probe.php:59 -#: src/Module/Install.php:201 src/Module/Install.php:227 -#: src/Module/Install.php:232 src/Module/Install.php:246 -#: src/Module/Install.php:255 src/Module/Install.php:260 -#: src/Module/Install.php:266 src/Module/Install.php:271 -#: src/Module/Install.php:285 src/Module/Install.php:298 -#: src/Module/Install.php:325 -#: src/Module/Moderation/Blocklist/Server/Add.php:136 -#: src/Module/Moderation/Blocklist/Server/Add.php:138 -#: src/Module/Moderation/Blocklist/Server/Import.php:129 -#: src/Module/Moderation/Blocklist/Server/Index.php:86 -#: src/Module/Moderation/Blocklist/Server/Index.php:87 -#: src/Module/Moderation/Blocklist/Server/Index.php:115 -#: src/Module/Moderation/Blocklist/Server/Index.php:116 -#: src/Module/Moderation/Item/Delete.php:67 src/Module/Register.php:148 -#: src/Module/Security/TwoFactor/Verify.php:101 -#: src/Module/Settings/Channels.php:184 src/Module/Settings/Channels.php:205 -#: src/Module/Settings/TwoFactor/Index.php:161 -#: src/Module/Settings/TwoFactor/Verify.php:158 +#: src/Module/Calendar/Event/Form.php:195 +#: src/Module/Calendar/Event/Form.php:223 src/Module/Debug/Probe.php:45 +#: src/Module/Install.php:187 src/Module/Install.php:213 +#: src/Module/Install.php:218 src/Module/Install.php:232 +#: src/Module/Install.php:241 src/Module/Install.php:246 +#: src/Module/Install.php:252 src/Module/Install.php:257 +#: src/Module/Install.php:271 src/Module/Install.php:284 +#: src/Module/Install.php:311 +#: src/Module/Moderation/Blocklist/Server/Add.php:122 +#: src/Module/Moderation/Blocklist/Server/Add.php:124 +#: src/Module/Moderation/Blocklist/Server/Import.php:113 +#: src/Module/Moderation/Blocklist/Server/Index.php:72 +#: src/Module/Moderation/Blocklist/Server/Index.php:73 +#: src/Module/Moderation/Blocklist/Server/Index.php:101 +#: src/Module/Moderation/Blocklist/Server/Index.php:102 +#: src/Module/Moderation/Item/Delete.php:53 src/Module/Register.php:141 +#: src/Module/Security/TwoFactor/Verify.php:87 +#: src/Module/Settings/Channels.php:176 src/Module/Settings/Channels.php:197 +#: src/Module/Settings/TwoFactor/Index.php:147 +#: src/Module/Settings/TwoFactor/Verify.php:144 msgid "Required" msgstr "Nõutav" -#: src/Module/Calendar/Event/Form.php:223 -#: src/Module/Calendar/Event/Form.php:247 +#: src/Module/Calendar/Event/Form.php:209 +#: src/Module/Calendar/Event/Form.php:233 msgid "Finish date/time is not known or not relevant" msgstr "Lõpu kuupäev/aeg pole teada või pole olulised" -#: src/Module/Calendar/Event/Form.php:225 -#: src/Module/Calendar/Event/Form.php:230 +#: src/Module/Calendar/Event/Form.php:211 +#: src/Module/Calendar/Event/Form.php:216 msgid "Event Finishes:" msgstr "Sündmus lõpeb:" -#: src/Module/Calendar/Event/Form.php:237 -#: src/Module/Calendar/Event/Form.php:243 +#: src/Module/Calendar/Event/Form.php:223 +#: src/Module/Calendar/Event/Form.php:229 msgid "Title (BBCode not allowed)" msgstr "" -#: src/Module/Calendar/Event/Form.php:239 +#: src/Module/Calendar/Event/Form.php:225 msgid "Description (BBCode allowed)" msgstr "" -#: src/Module/Calendar/Event/Form.php:241 +#: src/Module/Calendar/Event/Form.php:227 msgid "Location (BBCode not allowed)" msgstr "" -#: src/Module/Calendar/Event/Form.php:244 -#: src/Module/Calendar/Event/Form.php:245 +#: src/Module/Calendar/Event/Form.php:230 +#: src/Module/Calendar/Event/Form.php:231 msgid "Share this event" msgstr "Jaga seda sündmust" -#: src/Module/Calendar/Event/Form.php:251 src/Module/Profile/Profile.php:275 +#: src/Module/Calendar/Event/Form.php:237 src/Module/Profile/Profile.php:263 msgid "Basic" msgstr "Peamine" -#: src/Module/Calendar/Export.php:94 +#: src/Module/Calendar/Export.php:80 msgid "This calendar format is not supported" msgstr "See kalendriformaat ei ole toetatud" -#: src/Module/Calendar/Export.php:96 +#: src/Module/Calendar/Export.php:82 msgid "No exportable data found" msgstr "Eksporditavaid andmeid ei leitud" -#: src/Module/Calendar/Export.php:113 +#: src/Module/Calendar/Export.php:99 msgid "calendar" msgstr "kalender" -#: src/Module/Calendar/Show.php:124 +#: src/Module/Calendar/Show.php:110 msgid "Events" msgstr "Sündmused" -#: src/Module/Calendar/Show.php:125 +#: src/Module/Calendar/Show.php:111 msgid "View" msgstr "Vaade" -#: src/Module/Calendar/Show.php:126 +#: src/Module/Calendar/Show.php:112 msgid "Create New Event" msgstr "Loo uus sündmus" -#: src/Module/Calendar/Show.php:132 src/Module/Settings/Display.php:297 +#: src/Module/Calendar/Show.php:118 src/Module/Settings/Display.php:283 msgid "list" msgstr "" -#: src/Module/Circle.php:57 +#: src/Module/Circle.php:43 msgid "Could not create circle." msgstr "" -#: src/Module/Circle.php:68 src/Module/Circle.php:214 -#: src/Module/Circle.php:238 +#: src/Module/Circle.php:54 src/Module/Circle.php:202 +#: src/Module/Circle.php:226 msgid "Circle not found." msgstr "" -#: src/Module/Circle.php:74 +#: src/Module/Circle.php:60 msgid "Circle name was not changed." msgstr "" -#: src/Module/Circle.php:92 +#: src/Module/Circle.php:78 msgid "Unknown circle." msgstr "" -#: src/Module/Circle.php:98 src/Module/Circle.php:107 -#: src/Module/Contact/Advanced.php:70 src/Module/Contact/Advanced.php:109 -#: src/Module/Contact/Contacts.php:71 src/Module/Contact/Conversations.php:86 -#: src/Module/Contact/Conversations.php:91 -#: src/Module/Contact/Conversations.php:96 src/Module/Contact/Media.php:61 -#: src/Module/Contact/Posts.php:78 src/Module/Contact/Posts.php:83 -#: src/Module/Contact/Posts.php:88 src/Module/Contact/Profile.php:154 -#: src/Module/Contact/Profile.php:159 src/Module/Contact/Profile.php:164 -#: src/Module/Contact/Redir.php:94 src/Module/Contact/Redir.php:140 -#: src/Module/FriendSuggest.php:71 src/Module/FriendSuggest.php:109 +#: src/Module/Circle.php:84 src/Module/Circle.php:93 +#: src/Module/Contact/Advanced.php:56 src/Module/Contact/Advanced.php:95 +#: src/Module/Contact/Contacts.php:57 src/Module/Contact/Conversations.php:72 +#: src/Module/Contact/Conversations.php:77 +#: src/Module/Contact/Conversations.php:82 src/Module/Contact/Media.php:47 +#: src/Module/Contact/Posts.php:64 src/Module/Contact/Posts.php:69 +#: src/Module/Contact/Posts.php:74 src/Module/Contact/Profile.php:145 +#: src/Module/Contact/Profile.php:150 src/Module/Contact/Profile.php:169 +#: src/Module/Contact/Redir.php:77 src/Module/Contact/Redir.php:131 +#: src/Module/FriendSuggest.php:57 src/Module/FriendSuggest.php:95 msgid "Contact not found." msgstr "Kontakti ei leitud." -#: src/Module/Circle.php:102 src/Module/Contact/Contacts.php:66 +#: src/Module/Circle.php:88 src/Module/Contact/Contacts.php:52 msgid "Invalid contact." msgstr "Mittevaliidne kontakt." -#: src/Module/Circle.php:111 src/Module/Contact/Revoke.php:73 +#: src/Module/Circle.php:97 src/Module/Contact/Revoke.php:56 msgid "Contact is deleted." msgstr "" -#: src/Module/Circle.php:117 +#: src/Module/Circle.php:103 msgid "Unable to add the contact to the circle." msgstr "" -#: src/Module/Circle.php:120 +#: src/Module/Circle.php:106 msgid "Contact successfully added to circle." msgstr "" -#: src/Module/Circle.php:124 +#: src/Module/Circle.php:110 msgid "Unable to remove the contact from the circle." msgstr "" -#: src/Module/Circle.php:127 +#: src/Module/Circle.php:113 msgid "Contact successfully removed from circle." msgstr "" -#: src/Module/Circle.php:131 +#: src/Module/Circle.php:117 msgid "Bad request." msgstr "" -#: src/Module/Circle.php:170 +#: src/Module/Circle.php:158 msgid "Save Circle" msgstr "" -#: src/Module/Circle.php:171 +#: src/Module/Circle.php:159 msgid "Filter" msgstr "" -#: src/Module/Circle.php:177 +#: src/Module/Circle.php:165 msgid "Create a circle of contacts/friends." msgstr "" -#: src/Module/Circle.php:219 +#: src/Module/Circle.php:207 msgid "Unable to remove circle." msgstr "" -#: src/Module/Circle.php:270 +#: src/Module/Circle.php:258 msgid "Delete Circle" msgstr "" -#: src/Module/Circle.php:280 +#: src/Module/Circle.php:268 msgid "Edit Circle Name" msgstr "" -#: src/Module/Circle.php:290 +#: src/Module/Circle.php:278 msgid "Members" msgstr "Liikmed" -#: src/Module/Circle.php:293 +#: src/Module/Circle.php:281 msgid "Circle is empty" msgstr "" -#: src/Module/Circle.php:306 +#: src/Module/Circle.php:297 msgid "Remove contact from circle" msgstr "" -#: src/Module/Circle.php:329 +#: src/Module/Circle.php:320 msgid "Click on a contact to add or remove." msgstr "Lisamiseks või eemaldamiseks klõpsa kontaktil." -#: src/Module/Circle.php:343 +#: src/Module/Circle.php:337 msgid "Add contact to circle" msgstr "" -#: src/Module/Contact.php:96 +#: src/Module/Contact.php:88 #, php-format msgid "%d contact edited." msgid_plural "%d contacts edited." msgstr[0] "%d kontakt muudetud. " msgstr[1] "%d kontakti muudetud. " -#: src/Module/Contact.php:347 +#: src/Module/Contact.php:328 msgid "Show all contacts" msgstr "Kuva kõiki kontakte" -#: src/Module/Contact.php:352 src/Module/Contact.php:431 -#: src/Module/Moderation/BaseUsers.php:85 +#: src/Module/Contact.php:333 src/Module/Contact.php:412 +#: src/Module/Moderation/BaseUsers.php:72 msgid "Pending" msgstr "Ootel" -#: src/Module/Contact.php:355 +#: src/Module/Contact.php:336 msgid "Only show pending contacts" msgstr "Näita ainult ootel kontakte" -#: src/Module/Contact.php:360 src/Module/Contact.php:434 -#: src/Module/Moderation/BaseUsers.php:93 +#: src/Module/Contact.php:341 src/Module/Contact.php:415 +#: src/Module/Moderation/BaseUsers.php:80 msgid "Blocked" msgstr "Blokeeritud" -#: src/Module/Contact.php:363 +#: src/Module/Contact.php:344 msgid "Only show blocked contacts" msgstr "Näita ainult blokeeritud kontakte" -#: src/Module/Contact.php:368 src/Module/Contact.php:440 -#: src/Module/Settings/Server/Index.php:107 src/Object/Post.php:386 +#: src/Module/Contact.php:349 src/Module/Contact.php:421 +#: src/Module/Settings/Server/Index.php:93 src/Object/Post.php:385 msgid "Ignored" msgstr "Ignoreeritud" -#: src/Module/Contact.php:371 +#: src/Module/Contact.php:352 msgid "Only show ignored contacts" msgstr "Näita ainult ignoreeritud kontakte" -#: src/Module/Contact.php:376 src/Module/Contact.php:443 +#: src/Module/Contact.php:357 src/Module/Contact.php:424 msgid "Collapsed" msgstr "" -#: src/Module/Contact.php:379 +#: src/Module/Contact.php:360 msgid "Only show collapsed contacts" msgstr "" -#: src/Module/Contact.php:384 src/Module/Contact.php:446 +#: src/Module/Contact.php:365 src/Module/Contact.php:427 msgid "Archived" msgstr "Arhiveeritud" -#: src/Module/Contact.php:387 +#: src/Module/Contact.php:368 msgid "Only show archived contacts" msgstr "Näita ainult arhiveeritud kontakte" -#: src/Module/Contact.php:392 src/Module/Contact.php:437 +#: src/Module/Contact.php:373 src/Module/Contact.php:418 msgid "Hidden" msgstr "Peidetud" -#: src/Module/Contact.php:395 +#: src/Module/Contact.php:376 msgid "Only show hidden contacts" msgstr "Näita ainult peidetud kontakte" -#: src/Module/Contact.php:403 +#: src/Module/Contact.php:384 msgid "Organize your contact circles" msgstr "" -#: src/Module/Contact.php:458 +#: src/Module/Contact.php:439 msgid "Search your contacts" msgstr "Otsi oma kontakte" -#: src/Module/Contact.php:459 src/Module/Search/Index.php:207 +#: src/Module/Contact.php:440 src/Module/Search/Index.php:193 #, php-format msgid "Results for: %s" msgstr "Tulemused: %s " -#: src/Module/Contact.php:466 +#: src/Module/Contact.php:448 msgid "Update" msgstr "Uuenda" -#: src/Module/Contact.php:467 src/Module/Contact/Profile.php:511 -#: src/Module/Moderation/Blocklist/Contact.php:117 -#: src/Module/Moderation/Users/Blocked.php:138 -#: src/Module/Moderation/Users/Index.php:154 +#: src/Module/Contact.php:449 src/Module/Contact/Profile.php:518 +#: src/Module/Moderation/Blocklist/Contact.php:103 +#: src/Module/Moderation/Users/Blocked.php:124 +#: src/Module/Moderation/Users/Index.php:140 msgid "Unblock" msgstr "Võta blokk maha" -#: src/Module/Contact.php:468 src/Module/Contact/Profile.php:519 +#: src/Module/Contact.php:450 src/Module/Contact/Profile.php:526 msgid "Unignore" msgstr "Äraignoreeri" -#: src/Module/Contact.php:469 src/Module/Contact/Profile.php:527 +#: src/Module/Contact.php:451 src/Module/Contact/Profile.php:534 msgid "Uncollapse" msgstr "" -#: src/Module/Contact.php:471 +#: src/Module/Contact.php:453 msgid "Batch Actions" msgstr "Multitegevused" -#: src/Module/Contact.php:514 +#: src/Module/Contact.php:496 msgid "Conversations started by this contact" msgstr "Selle kontakti alustatud vestlused" -#: src/Module/Contact.php:519 +#: src/Module/Contact.php:501 msgid "Posts and Comments" msgstr "Postitused ja Kommentaarid" -#: src/Module/Contact.php:522 +#: src/Module/Contact.php:504 msgid "Individual Posts and Replies" msgstr "" -#: src/Module/Contact.php:530 +#: src/Module/Contact.php:512 msgid "Posts containing media objects" msgstr "" -#: src/Module/Contact.php:538 +#: src/Module/Contact.php:520 msgid "View all known contacts" msgstr "" -#: src/Module/Contact.php:549 +#: src/Module/Contact.php:531 msgid "Advanced Contact Settings" msgstr "Täiendavad Kontakti sätted" -#: src/Module/Contact.php:585 +#: src/Module/Contact.php:567 msgid "Mutual Friendship" msgstr "Ühine sõprus" -#: src/Module/Contact.php:589 +#: src/Module/Contact.php:571 msgid "is a fan of yours" msgstr "" -#: src/Module/Contact.php:593 +#: src/Module/Contact.php:575 msgid "you are a fan of" msgstr "" -#: src/Module/Contact.php:611 +#: src/Module/Contact.php:593 msgid "Pending outgoing contact request" msgstr "Ootel väljuv kontaktitaotlus" -#: src/Module/Contact.php:613 +#: src/Module/Contact.php:595 msgid "Pending incoming contact request" msgstr "Ootel sisenev kontaktitaotlus" -#: src/Module/Contact.php:626 src/Module/Contact/Profile.php:371 +#: src/Module/Contact.php:608 src/Module/Contact/Profile.php:377 #, php-format msgid "Visit %s's profile [%s]" msgstr "Külasta %s profiili [%s] " -#: src/Module/Contact/Advanced.php:99 +#: src/Module/Contact/Advanced.php:85 msgid "Contact update failed." msgstr "Kontakti uuendamine nurjus." -#: src/Module/Contact/Advanced.php:130 +#: src/Module/Contact/Advanced.php:116 msgid "Return to contact editor" msgstr "" -#: src/Module/Contact/Advanced.php:134 -#: src/Module/Moderation/Blocklist/Contact.php:122 -#: src/Module/Moderation/Reports.php:95 -#: src/Module/Moderation/Users/Active.php:126 -#: src/Module/Moderation/Users/Blocked.php:126 -#: src/Module/Moderation/Users/Create.php:70 -#: src/Module/Moderation/Users/Deleted.php:83 -#: src/Module/Moderation/Users/Index.php:140 -#: src/Module/Moderation/Users/Index.php:160 -#: src/Module/Moderation/Users/Pending.php:99 src/Module/Settings/OAuth.php:72 +#: src/Module/Contact/Advanced.php:120 +#: src/Module/Moderation/Blocklist/Contact.php:108 +#: src/Module/Moderation/Reports.php:102 +#: src/Module/Moderation/Users/Active.php:112 +#: src/Module/Moderation/Users/Blocked.php:112 +#: src/Module/Moderation/Users/Create.php:56 +#: src/Module/Moderation/Users/Deleted.php:69 +#: src/Module/Moderation/Users/Index.php:126 +#: src/Module/Moderation/Users/Index.php:146 +#: src/Module/Moderation/Users/Pending.php:85 src/Module/Settings/OAuth.php:58 msgid "Name" msgstr "Nimi" -#: src/Module/Contact/Advanced.php:135 +#: src/Module/Contact/Advanced.php:121 msgid "Account Nickname" msgstr "Konto hüüdnimi" -#: src/Module/Contact/Advanced.php:136 +#: src/Module/Contact/Advanced.php:122 msgid "Account URL" msgstr "Konto URL" -#: src/Module/Contact/Advanced.php:137 +#: src/Module/Contact/Advanced.php:123 msgid "Poll/Feed URL" msgstr "" -#: src/Module/Contact/Advanced.php:138 +#: src/Module/Contact/Advanced.php:124 msgid "New photo from this URL" msgstr "" -#: src/Module/Contact/Contacts.php:89 +#: src/Module/Contact/Contacts.php:75 msgid "No known contacts." msgstr "" -#: src/Module/Contact/Contacts.php:103 src/Module/Profile/Common.php:128 +#: src/Module/Contact/Contacts.php:89 src/Module/Profile/Common.php:114 msgid "No common contacts." msgstr "" -#: src/Module/Contact/Contacts.php:115 src/Module/Profile/Contacts.php:135 +#: src/Module/Contact/Contacts.php:101 src/Module/Profile/Contacts.php:121 #, php-format msgid "Follower (%s)" msgid_plural "Followers (%s)" msgstr[0] "" msgstr[1] "" -#: src/Module/Contact/Contacts.php:119 src/Module/Profile/Contacts.php:138 +#: src/Module/Contact/Contacts.php:105 src/Module/Profile/Contacts.php:124 #, php-format msgid "Following (%s)" msgid_plural "Following (%s)" msgstr[0] "" msgstr[1] "" -#: src/Module/Contact/Contacts.php:123 src/Module/Profile/Contacts.php:141 +#: src/Module/Contact/Contacts.php:109 src/Module/Profile/Contacts.php:127 #, php-format msgid "Mutual friend (%s)" msgid_plural "Mutual friends (%s)" msgstr[0] "" msgstr[1] "" -#: src/Module/Contact/Contacts.php:125 src/Module/Profile/Contacts.php:143 +#: src/Module/Contact/Contacts.php:111 src/Module/Profile/Contacts.php:129 #, php-format msgid "These contacts both follow and are followed by %s." msgstr "" -#: src/Module/Contact/Contacts.php:131 src/Module/Profile/Common.php:116 +#: src/Module/Contact/Contacts.php:117 src/Module/Profile/Common.php:102 #, php-format msgid "Common contact (%s)" msgid_plural "Common contacts (%s)" msgstr[0] "" msgstr[1] "" -#: src/Module/Contact/Contacts.php:133 src/Module/Profile/Common.php:118 +#: src/Module/Contact/Contacts.php:119 src/Module/Profile/Common.php:104 #, php-format msgid "" "Both %s and yourself have publicly interacted with these " "contacts (follow, comment or likes on public posts)." msgstr "" -#: src/Module/Contact/Contacts.php:139 src/Module/Profile/Contacts.php:149 +#: src/Module/Contact/Contacts.php:125 src/Module/Profile/Contacts.php:135 #, php-format msgid "Contact (%s)" msgid_plural "Contacts (%s)" msgstr[0] "" msgstr[1] "" -#: src/Module/Contact/Follow.php:70 src/Module/Contact/Redir.php:62 -#: src/Module/Contact/Redir.php:222 src/Module/Conversation/Community.php:166 -#: src/Module/Debug/ItemBody.php:38 src/Module/Diaspora/Receive.php:57 -#: src/Module/Item/Display.php:96 src/Module/Item/Feed.php:59 -#: src/Module/Item/Follow.php:41 src/Module/Item/Ignore.php:41 -#: src/Module/Item/Pin.php:41 src/Module/Item/Pin.php:56 -#: src/Module/Item/Star.php:42 src/Module/Update/Display.php:37 +#: src/Module/Contact/Follow.php:56 src/Module/Contact/Redir.php:45 +#: src/Module/Contact/Redir.php:206 src/Module/Conversation/Community.php:154 +#: src/Module/Debug/ItemBody.php:24 src/Module/Diaspora/Receive.php:45 +#: src/Module/Item/Display.php:82 src/Module/Item/Feed.php:45 +#: src/Module/Item/Follow.php:27 src/Module/Item/Ignore.php:27 +#: src/Module/Item/Language.php:39 src/Module/Item/Pin.php:27 +#: src/Module/Item/Pin.php:42 src/Module/Item/Searchtext.php:39 +#: src/Module/Item/Star.php:28 src/Module/Update/Display.php:23 msgid "Access denied." msgstr "Ligipääs keelatud." -#: src/Module/Contact/Follow.php:105 src/Module/Contact/Unfollow.php:125 -#: src/Module/Profile/RemoteFollow.php:133 +#: src/Module/Contact/Follow.php:91 src/Module/Contact/Unfollow.php:111 +#: src/Module/Profile/RemoteFollow.php:119 msgid "Submit Request" msgstr "Saada taotlus" -#: src/Module/Contact/Follow.php:115 +#: src/Module/Contact/Follow.php:101 msgid "You already added this contact." msgstr "Te juba lisasite selle kontakti." -#: src/Module/Contact/Follow.php:130 +#: src/Module/Contact/Follow.php:116 msgid "The network type couldn't be detected. Contact can't be added." msgstr "" -#: src/Module/Contact/Follow.php:138 +#: src/Module/Contact/Follow.php:124 msgid "Diaspora support isn't enabled. Contact can't be added." msgstr "Diaspora toetus pole võimaldatud. Kontakti ei saa lisada." -#: src/Module/Contact/Follow.php:143 -msgid "OStatus support is disabled. Contact can't be added." -msgstr "OStatus tugi pole võimaldatud. Kontakti ei saa lisada." - -#: src/Module/Contact/Follow.php:168 src/Module/Profile/RemoteFollow.php:132 +#: src/Module/Contact/Follow.php:149 src/Module/Profile/RemoteFollow.php:118 msgid "Please answer the following:" msgstr "Palun vasta järgnevale:" -#: src/Module/Contact/Follow.php:169 src/Module/Contact/Unfollow.php:123 +#: src/Module/Contact/Follow.php:150 src/Module/Contact/Unfollow.php:109 msgid "Your Identity Address:" msgstr "Sinu ID aadress:" -#: src/Module/Contact/Follow.php:170 src/Module/Contact/Profile.php:402 -#: src/Module/Contact/Unfollow.php:129 -#: src/Module/Moderation/Blocklist/Contact.php:133 -#: src/Module/Moderation/Reports.php:104 -#: src/Module/Notifications/Introductions.php:129 -#: src/Module/Notifications/Introductions.php:198 +#: src/Module/Contact/Follow.php:151 src/Module/Contact/Profile.php:408 +#: src/Module/Contact/Unfollow.php:115 +#: src/Module/Moderation/Blocklist/Contact.php:117 +#: src/Module/Moderation/Reports.php:109 +#: src/Module/Notifications/Introductions.php:121 +#: src/Module/Notifications/Introductions.php:190 msgid "Profile URL" msgstr "Profiili URL" -#: src/Module/Contact/Follow.php:171 src/Module/Contact/Profile.php:414 -#: src/Module/Notifications/Introductions.php:191 -#: src/Module/Profile/Profile.php:234 +#: src/Module/Contact/Follow.php:152 src/Module/Contact/Profile.php:420 +#: src/Module/Notifications/Introductions.php:183 +#: src/Module/Profile/Profile.php:222 msgid "Tags:" msgstr "Tag`id: " -#: src/Module/Contact/Follow.php:182 +#: src/Module/Contact/Follow.php:163 #, php-format msgid "%s knows you" msgstr "" -#: src/Module/Contact/Follow.php:183 +#: src/Module/Contact/Follow.php:164 msgid "Add a personal note:" msgstr "Lisa personaalne teade:" -#: src/Module/Contact/Follow.php:192 src/Module/Contact/Unfollow.php:138 +#: src/Module/Contact/Follow.php:173 src/Module/Contact/Unfollow.php:124 msgid "Posts and Replies" msgstr "" -#: src/Module/Contact/Follow.php:221 +#: src/Module/Contact/Follow.php:202 msgid "The contact could not be added." msgstr "Kontakti ei saanud lisada." -#: src/Module/Contact/MatchInterests.php:94 -#: src/Module/Media/Attachment/Upload.php:77 -#: src/Module/Media/Attachment/Upload.php:82 -#: src/Module/Media/Photo/Upload.php:81 src/Module/Media/Photo/Upload.php:86 -#: src/Module/Media/Photo/Upload.php:135 +#: src/Module/Contact/MatchInterests.php:81 +#: src/Module/Media/Attachment/Upload.php:63 +#: src/Module/Media/Attachment/Upload.php:68 +#: src/Module/Media/Photo/Upload.php:67 src/Module/Media/Photo/Upload.php:72 +#: src/Module/Media/Photo/Upload.php:121 msgid "Invalid request." msgstr "" -#: src/Module/Contact/MatchInterests.php:101 +#: src/Module/Contact/MatchInterests.php:88 msgid "No keywords to match. Please add keywords to your profile." msgstr "" -#: src/Module/Contact/MatchInterests.php:144 +#: src/Module/Contact/MatchInterests.php:141 msgid "Profile Match" msgstr "" -#: src/Module/Contact/Profile.php:140 +#: src/Module/Contact/Profile.php:131 msgid "Failed to update contact record." msgstr "Kontakti andmete uuendamine ebaõnnestus." -#: src/Module/Contact/Profile.php:190 +#: src/Module/Contact/Profile.php:195 msgid "Contact has been unblocked" msgstr "Kontakti blokeering tühistatud" -#: src/Module/Contact/Profile.php:194 +#: src/Module/Contact/Profile.php:199 msgid "Contact has been blocked" msgstr "Kontakt blokeeritud" -#: src/Module/Contact/Profile.php:206 +#: src/Module/Contact/Profile.php:211 msgid "Contact has been unignored" msgstr "Kontakti ei ignoreerita enam" -#: src/Module/Contact/Profile.php:210 +#: src/Module/Contact/Profile.php:215 msgid "Contact has been ignored" msgstr "Kontakti ignoreeritakse" -#: src/Module/Contact/Profile.php:222 +#: src/Module/Contact/Profile.php:227 msgid "Contact has been uncollapsed" msgstr "" -#: src/Module/Contact/Profile.php:226 +#: src/Module/Contact/Profile.php:231 msgid "Contact has been collapsed" msgstr "" -#: src/Module/Contact/Profile.php:254 +#: src/Module/Contact/Profile.php:259 #, php-format msgid "You are mutual friends with %s" msgstr "Oled ühine sõber %s ga" -#: src/Module/Contact/Profile.php:255 +#: src/Module/Contact/Profile.php:260 #, php-format msgid "You are sharing with %s" msgstr "Sa jagad %s ga" -#: src/Module/Contact/Profile.php:256 +#: src/Module/Contact/Profile.php:261 #, php-format msgid "%s is sharing with you" msgstr "%s jagab sinuga" -#: src/Module/Contact/Profile.php:272 +#: src/Module/Contact/Profile.php:277 msgid "Private communications are not available for this contact." msgstr "Privaatkommunikatsioon ei ole selle kontaktiga saadaval. " -#: src/Module/Contact/Profile.php:282 +#: src/Module/Contact/Profile.php:287 msgid "This contact is on a server you ignored." msgstr "" -#: src/Module/Contact/Profile.php:285 +#: src/Module/Contact/Profile.php:290 msgid "Never" msgstr "Mitte kunagi" -#: src/Module/Contact/Profile.php:288 +#: src/Module/Contact/Profile.php:293 msgid "(Update was not successful)" msgstr "(Uuendus ei õnnestunud)" -#: src/Module/Contact/Profile.php:288 +#: src/Module/Contact/Profile.php:293 msgid "(Update was successful)" msgstr "(Uuendus õnnestus)" -#: src/Module/Contact/Profile.php:290 src/Module/Contact/Profile.php:482 +#: src/Module/Contact/Profile.php:295 src/Module/Contact/Profile.php:489 msgid "Suggest friends" msgstr "Soovita sõpru" -#: src/Module/Contact/Profile.php:294 +#: src/Module/Contact/Profile.php:299 #, php-format msgid "Network type: %s" msgstr "Võrgutüüp: %s " -#: src/Module/Contact/Profile.php:299 +#: src/Module/Contact/Profile.php:304 msgid "Communications lost with this contact!" msgstr "Suhtlus selle kontaktiga katkes! " -#: src/Module/Contact/Profile.php:305 +#: src/Module/Contact/Profile.php:310 msgid "Fetch further information for feeds" msgstr "" -#: src/Module/Contact/Profile.php:307 +#: src/Module/Contact/Profile.php:312 msgid "" "Fetch information like preview pictures, title and teaser from the feed " "item. You can activate this if the feed doesn't contain much text. Keywords " "are taken from the meta header in the feed item and are posted as hash tags." msgstr "" -#: src/Module/Contact/Profile.php:310 +#: src/Module/Contact/Profile.php:315 msgid "Fetch information" msgstr "" -#: src/Module/Contact/Profile.php:311 +#: src/Module/Contact/Profile.php:316 msgid "Fetch keywords" msgstr "" -#: src/Module/Contact/Profile.php:312 +#: src/Module/Contact/Profile.php:317 msgid "Fetch information and keywords" msgstr "" -#: src/Module/Contact/Profile.php:322 src/Module/Contact/Profile.php:327 -#: src/Module/Contact/Profile.php:332 src/Module/Contact/Profile.php:338 +#: src/Module/Contact/Profile.php:327 src/Module/Contact/Profile.php:332 +#: src/Module/Contact/Profile.php:337 src/Module/Contact/Profile.php:343 msgid "No mirroring" msgstr "" -#: src/Module/Contact/Profile.php:323 src/Module/Contact/Profile.php:333 -#: src/Module/Contact/Profile.php:339 +#: src/Module/Contact/Profile.php:328 src/Module/Contact/Profile.php:338 +#: src/Module/Contact/Profile.php:344 msgid "Mirror as my own posting" msgstr "" -#: src/Module/Contact/Profile.php:328 src/Module/Contact/Profile.php:334 +#: src/Module/Contact/Profile.php:333 src/Module/Contact/Profile.php:339 msgid "Native reshare" msgstr "" -#: src/Module/Contact/Profile.php:353 +#: src/Module/Contact/Profile.php:359 msgid "Contact Information / Notes" msgstr "Kontaktinfo/Märkmed" -#: src/Module/Contact/Profile.php:354 +#: src/Module/Contact/Profile.php:360 msgid "Contact Settings" msgstr "Kontakti sätted" -#: src/Module/Contact/Profile.php:362 +#: src/Module/Contact/Profile.php:368 msgid "Contact" msgstr "Kontakt" -#: src/Module/Contact/Profile.php:366 +#: src/Module/Contact/Profile.php:372 msgid "Their personal note" msgstr "Nende personaalne märge" -#: src/Module/Contact/Profile.php:368 +#: src/Module/Contact/Profile.php:374 msgid "Edit contact notes" msgstr "Muuda kontakti märkmeid" -#: src/Module/Contact/Profile.php:372 +#: src/Module/Contact/Profile.php:378 msgid "Block/Unblock contact" msgstr "Blokeeri/Vabasta kontakt" -#: src/Module/Contact/Profile.php:373 -#: src/Module/Moderation/Report/Create.php:293 +#: src/Module/Contact/Profile.php:379 +#: src/Module/Moderation/Report/Create.php:279 msgid "Ignore contact" msgstr "Ignoreeri kontakti" -#: src/Module/Contact/Profile.php:374 +#: src/Module/Contact/Profile.php:380 msgid "View conversations" msgstr "Kuva vestlusi" -#: src/Module/Contact/Profile.php:379 +#: src/Module/Contact/Profile.php:385 msgid "Last update:" msgstr "Viimane uuendus:" -#: src/Module/Contact/Profile.php:381 +#: src/Module/Contact/Profile.php:387 msgid "Update public posts" msgstr "Uuenda avalikke postitusi" -#: src/Module/Contact/Profile.php:383 src/Module/Contact/Profile.php:492 +#: src/Module/Contact/Profile.php:389 src/Module/Contact/Profile.php:499 msgid "Update now" msgstr "Uuenda nüüd" -#: src/Module/Contact/Profile.php:385 +#: src/Module/Contact/Profile.php:391 msgid "Awaiting connection acknowledge" msgstr "" -#: src/Module/Contact/Profile.php:386 +#: src/Module/Contact/Profile.php:392 msgid "Currently blocked" msgstr "Hetkel blokitud" -#: src/Module/Contact/Profile.php:387 +#: src/Module/Contact/Profile.php:393 msgid "Currently ignored" msgstr "Hetkel ingnoreeritud" -#: src/Module/Contact/Profile.php:388 +#: src/Module/Contact/Profile.php:394 msgid "Currently collapsed" msgstr "" -#: src/Module/Contact/Profile.php:389 +#: src/Module/Contact/Profile.php:395 msgid "Currently archived" msgstr "Hetkel arhiveeritud" -#: src/Module/Contact/Profile.php:392 +#: src/Module/Contact/Profile.php:398 msgid "Manage remote servers" msgstr "" -#: src/Module/Contact/Profile.php:394 -#: src/Module/Notifications/Introductions.php:192 +#: src/Module/Contact/Profile.php:400 +#: src/Module/Notifications/Introductions.php:184 msgid "Hide this contact from others" msgstr "Peida see kontakt teiste eest" -#: src/Module/Contact/Profile.php:394 +#: src/Module/Contact/Profile.php:400 msgid "" "Replies/likes to your public posts may still be visible" msgstr "Vastused/meeldimised sinu avalikele postitustele võivad ikka nähtavad olla" -#: src/Module/Contact/Profile.php:395 +#: src/Module/Contact/Profile.php:401 msgid "Notification for new posts" msgstr "Teavitus uutest postitustest" -#: src/Module/Contact/Profile.php:395 +#: src/Module/Contact/Profile.php:401 msgid "Send a notification of every new post of this contact" msgstr "Saada selle kontakti igast postitusest mulle teavitus" -#: src/Module/Contact/Profile.php:397 +#: src/Module/Contact/Profile.php:403 msgid "Keyword Deny List" msgstr "" -#: src/Module/Contact/Profile.php:397 +#: src/Module/Contact/Profile.php:403 msgid "" "Comma separated list of keywords that should not be converted to hashtags, " "when \"Fetch information and keywords\" is selected" msgstr "" -#: src/Module/Contact/Profile.php:415 -#: src/Module/Settings/TwoFactor/Index.php:160 +#: src/Module/Contact/Profile.php:421 +#: src/Module/Settings/TwoFactor/Index.php:146 msgid "Actions" msgstr "Tegevused" -#: src/Module/Contact/Profile.php:417 -#: src/Module/Settings/TwoFactor/Index.php:140 view/theme/frio/theme.php:229 +#: src/Module/Contact/Profile.php:423 +#: src/Module/Settings/TwoFactor/Index.php:126 view/theme/frio/theme.php:220 msgid "Status" msgstr "Staatus" -#: src/Module/Contact/Profile.php:423 +#: src/Module/Contact/Profile.php:429 msgid "Mirror postings from this contact" msgstr "" -#: src/Module/Contact/Profile.php:425 +#: src/Module/Contact/Profile.php:431 msgid "" "Mark this contact as remote_self, this will cause friendica to repost new " "entries from this contact." msgstr "" -#: src/Module/Contact/Profile.php:428 +#: src/Module/Contact/Profile.php:434 msgid "Channel Settings" msgstr "" -#: src/Module/Contact/Profile.php:429 +#: src/Module/Contact/Profile.php:435 msgid "Frequency of this contact in relevant channels" msgstr "" -#: src/Module/Contact/Profile.php:430 +#: src/Module/Contact/Profile.php:436 msgid "" "Depending on the type of the channel not all posts from this contact are " "displayed. By default, posts need to have a minimum amount of interactions " @@ -6903,143 +6987,142 @@ msgid "" "block or hide the contact completely." msgstr "" -#: src/Module/Contact/Profile.php:431 +#: src/Module/Contact/Profile.php:437 msgid "Default frequency" msgstr "" -#: src/Module/Contact/Profile.php:431 +#: src/Module/Contact/Profile.php:437 msgid "" "Posts by this contact are displayed in the \"for you\" channel if you " "interact often with this contact or if a post reached some level of " "interaction." msgstr "" -#: src/Module/Contact/Profile.php:432 +#: src/Module/Contact/Profile.php:438 msgid "Display all posts of this contact" msgstr "" -#: src/Module/Contact/Profile.php:432 +#: src/Module/Contact/Profile.php:438 msgid "All posts from this contact will appear on the \"for you\" channel" msgstr "" -#: src/Module/Contact/Profile.php:433 +#: src/Module/Contact/Profile.php:439 msgid "Display only few posts" msgstr "" -#: src/Module/Contact/Profile.php:433 +#: src/Module/Contact/Profile.php:439 msgid "" "When a contact creates a lot of posts in a short period, this setting " "reduces the number of displayed posts in every channel." msgstr "" -#: src/Module/Contact/Profile.php:434 +#: src/Module/Contact/Profile.php:440 msgid "Never display posts" msgstr "" -#: src/Module/Contact/Profile.php:434 +#: src/Module/Contact/Profile.php:440 msgid "Posts from this contact will never be displayed in any channel" msgstr "" -#: src/Module/Contact/Profile.php:502 +#: src/Module/Contact/Profile.php:441 +msgid "Channel Only" +msgstr "" + +#: src/Module/Contact/Profile.php:441 +msgid "" +"If enabled, posts from this contact will only appear in channels and network" +" streams in circles, but not in the general network stream." +msgstr "" + +#: src/Module/Contact/Profile.php:509 msgid "Refetch contact data" msgstr "" -#: src/Module/Contact/Profile.php:513 +#: src/Module/Contact/Profile.php:520 msgid "Toggle Blocked status" msgstr "Vaheta Bloki staatust" -#: src/Module/Contact/Profile.php:521 +#: src/Module/Contact/Profile.php:528 msgid "Toggle Ignored status" msgstr "Vahea Ignoreeritud staatust" -#: src/Module/Contact/Profile.php:529 +#: src/Module/Contact/Profile.php:536 msgid "Toggle Collapsed status" msgstr "" -#: src/Module/Contact/Profile.php:536 src/Module/Contact/Revoke.php:106 +#: src/Module/Contact/Profile.php:543 src/Module/Contact/Revoke.php:89 msgid "Revoke Follow" msgstr "" -#: src/Module/Contact/Profile.php:538 +#: src/Module/Contact/Profile.php:545 msgid "Revoke the follow from this contact" msgstr "" -#: src/Module/Contact/Redir.php:134 src/Module/Contact/Redir.php:186 +#: src/Module/Contact/Redir.php:125 msgid "Bad Request." msgstr "" -#: src/Module/Contact/Revoke.php:63 -msgid "Unknown contact." -msgstr "" - -#: src/Module/Contact/Revoke.php:77 +#: src/Module/Contact/Revoke.php:60 msgid "Contact is being deleted." msgstr "" -#: src/Module/Contact/Revoke.php:91 +#: src/Module/Contact/Revoke.php:74 msgid "Follow was successfully revoked." msgstr "" -#: src/Module/Contact/Revoke.php:107 +#: src/Module/Contact/Revoke.php:90 msgid "" "Do you really want to revoke this contact's follow? This cannot be undone " "and they will have to manually follow you back again." msgstr "" -#: src/Module/Contact/Revoke.php:108 -#: src/Module/Notifications/Introductions.php:144 -#: src/Module/OAuth/Acknowledge.php:54 src/Module/Register.php:130 -#: src/Module/Settings/TwoFactor/Trusted.php:129 -msgid "Yes" -msgstr "Jah" - -#: src/Module/Contact/Suggestions.php:62 +#: src/Module/Contact/Suggestions.php:48 msgid "" "No suggestions available. If this is a new site, please try again in 24 " "hours." msgstr "" -#: src/Module/Contact/Unfollow.php:98 src/Module/Contact/Unfollow.php:167 +#: src/Module/Contact/Unfollow.php:84 src/Module/Contact/Unfollow.php:153 msgid "You aren't following this contact." msgstr "Sa ei jälgi seda kontakti." -#: src/Module/Contact/Unfollow.php:103 +#: src/Module/Contact/Unfollow.php:89 msgid "Unfollowing is currently not supported by your network." msgstr "Mittejälgimine ei ole sinu võrgus hetkel toetatud." -#: src/Module/Contact/Unfollow.php:121 +#: src/Module/Contact/Unfollow.php:107 msgid "Disconnect/Unfollow" msgstr "Ühenda lahti/Ära jälgi" -#: src/Module/Contact/Unfollow.php:175 +#: src/Module/Contact/Unfollow.php:161 msgid "Contact was successfully unfollowed" msgstr "" -#: src/Module/Contact/Unfollow.php:178 +#: src/Module/Contact/Unfollow.php:164 msgid "Unable to unfollow this contact, please contact your administrator" msgstr "" -#: src/Module/Conversation/Channel.php:139 -#: src/Module/Conversation/Community.php:126 src/Module/Search/Index.php:152 -#: src/Module/Search/Index.php:194 +#: src/Module/Conversation/Channel.php:125 +#: src/Module/Conversation/Community.php:114 src/Module/Search/Index.php:138 +#: src/Module/Search/Index.php:180 msgid "No results." msgstr "Pole tulemusi." -#: src/Module/Conversation/Channel.php:177 +#: src/Module/Conversation/Channel.php:163 msgid "Channel not available." msgstr "" -#: src/Module/Conversation/Community.php:92 +#: src/Module/Conversation/Community.php:80 msgid "" "This community stream shows all public posts received by this node. They may" " not reflect the opinions of this node’s users." msgstr "" -#: src/Module/Conversation/Community.php:180 +#: src/Module/Conversation/Community.php:168 msgid "Community option not available." msgstr "Kogukondlik valik pole saadaval. " -#: src/Module/Conversation/Community.php:196 +#: src/Module/Conversation/Community.php:184 msgid "Not available." msgstr "Pole saadaval." @@ -7052,562 +7135,558 @@ msgstr "" msgid "Circle: %s" msgstr "" -#: src/Module/Conversation/Network.php:225 +#: src/Module/Conversation/Network.php:226 #, php-format msgid "Error %d (%s) while fetching the timeline." msgstr "" -#: src/Module/Conversation/Network.php:302 +#: src/Module/Conversation/Network.php:304 msgid "Network feed not available." msgstr "" -#: src/Module/Conversation/Timeline.php:194 -msgid "Own Contacts" -msgstr "" - -#: src/Module/Conversation/Timeline.php:198 +#: src/Module/Conversation/Timeline.php:190 msgid "Include" msgstr "" -#: src/Module/Conversation/Timeline.php:199 +#: src/Module/Conversation/Timeline.php:191 msgid "Hide" msgstr "" -#: src/Module/Credits.php:44 +#: src/Module/Credits.php:30 msgid "Credits" msgstr "" -#: src/Module/Credits.php:45 +#: src/Module/Credits.php:31 msgid "" "Friendica is a community project, that would not be possible without the " "help of many people. Here is a list of those who have contributed to the " "code or the translation of Friendica. Thank you all!" msgstr "" -#: src/Module/Debug/ActivityPubConversion.php:53 +#: src/Module/Debug/ActivityPubConversion.php:45 msgid "Formatted" msgstr "" -#: src/Module/Debug/ActivityPubConversion.php:65 +#: src/Module/Debug/ActivityPubConversion.php:57 msgid "Activity" msgstr "" -#: src/Module/Debug/ActivityPubConversion.php:117 +#: src/Module/Debug/ActivityPubConversion.php:109 msgid "Object data" msgstr "" -#: src/Module/Debug/ActivityPubConversion.php:124 +#: src/Module/Debug/ActivityPubConversion.php:116 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/Security/TwoFactor/Verify.php:98 +#: src/Module/Debug/ActivityPubConversion.php:121 +#: src/Module/Debug/Babel.php:286 src/Module/Moderation/Item/Source.php:79 +#: src/Module/Security/TwoFactor/Verify.php:84 msgid "Error" msgid_plural "Errors" msgstr[0] "" msgstr[1] "" -#: src/Module/Debug/ActivityPubConversion.php:138 +#: src/Module/Debug/ActivityPubConversion.php:130 msgid "Source activity" msgstr "" -#: src/Module/Debug/Babel.php:51 +#: src/Module/Debug/Babel.php:44 msgid "Source input" msgstr "" -#: src/Module/Debug/Babel.php:57 +#: src/Module/Debug/Babel.php:50 msgid "BBCode::toPlaintext" msgstr "" -#: src/Module/Debug/Babel.php:63 +#: src/Module/Debug/Babel.php:56 msgid "BBCode::convert (raw HTML)" msgstr "" -#: src/Module/Debug/Babel.php:68 +#: src/Module/Debug/Babel.php:61 msgid "BBCode::convert (hex)" msgstr "" -#: src/Module/Debug/Babel.php:73 +#: src/Module/Debug/Babel.php:66 msgid "BBCode::convert" msgstr "" -#: src/Module/Debug/Babel.php:79 +#: src/Module/Debug/Babel.php:72 msgid "BBCode::convert => HTML::toBBCode" msgstr "" -#: src/Module/Debug/Babel.php:85 +#: src/Module/Debug/Babel.php:78 msgid "BBCode::toMarkdown" msgstr "" -#: src/Module/Debug/Babel.php:91 +#: src/Module/Debug/Babel.php:84 msgid "BBCode::toMarkdown => Markdown::convert (raw HTML)" msgstr "" -#: src/Module/Debug/Babel.php:95 +#: src/Module/Debug/Babel.php:88 msgid "BBCode::toMarkdown => Markdown::convert" msgstr "" -#: src/Module/Debug/Babel.php:101 +#: src/Module/Debug/Babel.php:94 msgid "BBCode::toMarkdown => Markdown::toBBCode" msgstr "" -#: src/Module/Debug/Babel.php:107 +#: src/Module/Debug/Babel.php:100 msgid "BBCode::toMarkdown => Markdown::convert => HTML::toBBCode" msgstr "" -#: src/Module/Debug/Babel.php:115 +#: src/Module/Debug/Babel.php:108 msgid "Item Body" msgstr "" -#: src/Module/Debug/Babel.php:119 +#: src/Module/Debug/Babel.php:112 msgid "Item Tags" msgstr "" -#: src/Module/Debug/Babel.php:125 +#: src/Module/Debug/Babel.php:118 msgid "PageInfo::appendToBody" msgstr "" -#: src/Module/Debug/Babel.php:130 +#: src/Module/Debug/Babel.php:123 msgid "PageInfo::appendToBody => BBCode::convert (raw HTML)" msgstr "" -#: src/Module/Debug/Babel.php:134 +#: src/Module/Debug/Babel.php:127 msgid "PageInfo::appendToBody => BBCode::convert" msgstr "" -#: src/Module/Debug/Babel.php:141 +#: src/Module/Debug/Babel.php:134 msgid "Source input (Diaspora format)" msgstr "" -#: src/Module/Debug/Babel.php:150 +#: src/Module/Debug/Babel.php:143 msgid "Source input (Markdown)" msgstr "" -#: src/Module/Debug/Babel.php:156 +#: src/Module/Debug/Babel.php:149 msgid "Markdown::convert (raw HTML)" msgstr "" -#: src/Module/Debug/Babel.php:161 +#: src/Module/Debug/Babel.php:154 msgid "Markdown::convert" msgstr "" -#: src/Module/Debug/Babel.php:167 +#: src/Module/Debug/Babel.php:160 msgid "Markdown::toBBCode" msgstr "" -#: src/Module/Debug/Babel.php:174 +#: src/Module/Debug/Babel.php:167 msgid "Raw HTML input" msgstr "" -#: src/Module/Debug/Babel.php:179 +#: src/Module/Debug/Babel.php:172 msgid "HTML Input" msgstr "" -#: src/Module/Debug/Babel.php:186 +#: src/Module/Debug/Babel.php:179 msgid "HTML Purified (raw)" msgstr "" -#: src/Module/Debug/Babel.php:191 +#: src/Module/Debug/Babel.php:184 msgid "HTML Purified (hex)" msgstr "" -#: src/Module/Debug/Babel.php:196 +#: src/Module/Debug/Babel.php:189 msgid "HTML Purified" msgstr "" -#: src/Module/Debug/Babel.php:202 +#: src/Module/Debug/Babel.php:195 msgid "HTML::toBBCode" msgstr "" -#: src/Module/Debug/Babel.php:208 +#: src/Module/Debug/Babel.php:201 msgid "HTML::toBBCode => BBCode::convert" msgstr "" -#: src/Module/Debug/Babel.php:213 +#: src/Module/Debug/Babel.php:206 msgid "HTML::toBBCode => BBCode::convert (raw HTML)" msgstr "" -#: src/Module/Debug/Babel.php:219 +#: src/Module/Debug/Babel.php:212 msgid "HTML::toBBCode => BBCode::toPlaintext" msgstr "" -#: src/Module/Debug/Babel.php:225 +#: src/Module/Debug/Babel.php:218 msgid "HTML::toMarkdown" msgstr "" -#: src/Module/Debug/Babel.php:231 +#: src/Module/Debug/Babel.php:224 msgid "HTML::toPlaintext" msgstr "" -#: src/Module/Debug/Babel.php:237 +#: src/Module/Debug/Babel.php:230 msgid "HTML::toPlaintext (compact)" msgstr "" -#: src/Module/Debug/Babel.php:255 +#: src/Module/Debug/Babel.php:248 msgid "Decoded post" msgstr "" -#: src/Module/Debug/Babel.php:276 +#: src/Module/Debug/Babel.php:269 msgid "Post array before expand entities" msgstr "" -#: src/Module/Debug/Babel.php:283 +#: src/Module/Debug/Babel.php:276 msgid "Post converted" msgstr "" -#: src/Module/Debug/Babel.php:288 +#: src/Module/Debug/Babel.php:281 msgid "Converted body" msgstr "" -#: src/Module/Debug/Babel.php:294 +#: src/Module/Debug/Babel.php:287 msgid "Twitter addon is absent from the addon/ folder." msgstr "" -#: src/Module/Debug/Babel.php:304 +#: src/Module/Debug/Babel.php:297 msgid "Babel Diagnostic" msgstr "" -#: src/Module/Debug/Babel.php:305 +#: src/Module/Debug/Babel.php:299 msgid "Source text" msgstr "" -#: src/Module/Debug/Babel.php:306 +#: src/Module/Debug/Babel.php:300 msgid "BBCode" msgstr "" -#: src/Module/Debug/Babel.php:308 +#: src/Module/Debug/Babel.php:302 msgid "Markdown" msgstr "" -#: src/Module/Debug/Babel.php:309 +#: src/Module/Debug/Babel.php:303 msgid "HTML" msgstr "" -#: src/Module/Debug/Babel.php:311 +#: src/Module/Debug/Babel.php:305 msgid "Twitter Source / Tweet URL (requires API key)" msgstr "" -#: src/Module/Debug/Feed.php:52 src/Module/Filer/SaveTag.php:47 -#: src/Module/Settings/Profile/Index.php:177 +#: src/Module/Debug/Feed.php:39 src/Module/Filer/SaveTag.php:33 +#: src/Module/Settings/Profile/Index.php:166 msgid "You must be logged in to use this module" msgstr "Selle mooduli kasutamiseks tuleb sisse logida" -#: src/Module/Debug/Feed.php:77 +#: src/Module/Debug/Feed.php:64 msgid "Source URL" msgstr "Allika URL" -#: src/Module/Debug/Localtime.php:49 +#: src/Module/Debug/Localtime.php:35 msgid "Time Conversion" msgstr "" -#: src/Module/Debug/Localtime.php:50 +#: src/Module/Debug/Localtime.php:36 msgid "" "Friendica provides this service for sharing events with other networks and " "friends in unknown timezones." msgstr "" -#: src/Module/Debug/Localtime.php:51 +#: src/Module/Debug/Localtime.php:37 #, php-format msgid "UTC time: %s" msgstr "UTC aeg: %s " -#: src/Module/Debug/Localtime.php:54 +#: src/Module/Debug/Localtime.php:40 #, php-format msgid "Current timezone: %s" msgstr "Praegune ajatsoon: %s " -#: src/Module/Debug/Localtime.php:58 +#: src/Module/Debug/Localtime.php:44 #, php-format msgid "Converted localtime: %s" msgstr "Konverteeritud kohalik aeg: %s " -#: src/Module/Debug/Localtime.php:62 +#: src/Module/Debug/Localtime.php:48 msgid "Please select your timezone:" msgstr "Palun vali oma ajatsoon: " -#: src/Module/Debug/Probe.php:38 src/Module/Debug/WebFinger.php:37 +#: src/Module/Debug/Probe.php:24 src/Module/Debug/WebFinger.php:23 msgid "Only logged in users are permitted to perform a probing." msgstr "" -#: src/Module/Debug/Probe.php:52 +#: src/Module/Debug/Probe.php:38 msgid "Probe Diagnostic" msgstr "" -#: src/Module/Debug/Probe.php:53 +#: src/Module/Debug/Probe.php:39 msgid "Output" msgstr "" -#: src/Module/Debug/Probe.php:56 +#: src/Module/Debug/Probe.php:42 msgid "Lookup address" msgstr "" -#: src/Module/Debug/WebFinger.php:50 +#: src/Module/Debug/WebFinger.php:36 msgid "Webfinger Diagnostic" msgstr "" -#: src/Module/Debug/WebFinger.php:52 +#: src/Module/Debug/WebFinger.php:38 msgid "Lookup address:" msgstr "" -#: src/Module/Directory.php:74 +#: src/Module/Directory.php:61 msgid "No entries (some entries may be hidden)." msgstr "Pole kirjeid (osad võivad olla peidetud)" -#: src/Module/Directory.php:90 +#: src/Module/Directory.php:77 msgid "Find on this site" msgstr "Leia sellelt lehelt" -#: src/Module/Directory.php:92 +#: src/Module/Directory.php:79 msgid "Results for:" msgstr "Tulemused:" -#: src/Module/Directory.php:94 +#: src/Module/Directory.php:81 msgid "Site Directory" msgstr "Lehe kataloog" -#: src/Module/Filer/RemoveTag.php:105 +#: src/Module/Filer/RemoveTag.php:91 msgid "Item was not deleted" msgstr "" -#: src/Module/Filer/RemoveTag.php:115 +#: src/Module/Filer/RemoveTag.php:101 msgid "Item was not removed" msgstr "" -#: src/Module/Filer/SaveTag.php:73 +#: src/Module/Filer/SaveTag.php:59 msgid "- select -" msgstr "-vali-" -#: src/Module/FriendSuggest.php:82 +#: src/Module/FriendSuggest.php:68 msgid "Suggested contact not found." msgstr "" -#: src/Module/FriendSuggest.php:100 +#: src/Module/FriendSuggest.php:86 msgid "Friend suggestion sent." msgstr "Sõbrasoovitus saadetud." -#: src/Module/FriendSuggest.php:137 +#: src/Module/FriendSuggest.php:123 msgid "Suggest Friends" msgstr "Soovita sõpru" -#: src/Module/FriendSuggest.php:140 +#: src/Module/FriendSuggest.php:126 #, php-format msgid "Suggest a friend for %s" msgstr "Soovita kasutaja %s -le sõpra. " -#: src/Module/Friendica.php:82 +#: src/Module/Friendica.php:67 msgid "Installed addons/apps:" msgstr "" -#: src/Module/Friendica.php:87 +#: src/Module/Friendica.php:72 msgid "No installed addons/apps" msgstr "" -#: src/Module/Friendica.php:92 +#: src/Module/Friendica.php:77 #, php-format msgid "Read about the Terms of Service of this node." msgstr "" -#: src/Module/Friendica.php:99 +#: src/Module/Friendica.php:84 msgid "On this server the following remote servers are blocked." 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:226 +#: src/Module/Friendica.php:87 +#: src/Module/Moderation/Blocklist/Server/Index.php:73 +#: src/Module/Moderation/Blocklist/Server/Index.php:97 +#: src/Module/Settings/Channels.php:218 msgid "Reason for the block" msgstr "" -#: src/Module/Friendica.php:104 +#: src/Module/Friendica.php:89 msgid "Download this list in CSV format" msgstr "" -#: src/Module/Friendica.php:118 +#: src/Module/Friendica.php:103 #, php-format msgid "" "This is Friendica, version %s that is running at the web location %s. The " "database version is %s, the post update version is %s." msgstr "" -#: src/Module/Friendica.php:123 +#: src/Module/Friendica.php:108 msgid "" "Please visit Friendi.ca to learn more " "about the Friendica project." msgstr "" -#: src/Module/Friendica.php:124 +#: src/Module/Friendica.php:109 msgid "Bug reports and issues: please visit" msgstr "" -#: src/Module/Friendica.php:124 +#: src/Module/Friendica.php:109 msgid "the bugtracker at github" msgstr "" -#: src/Module/Friendica.php:125 +#: src/Module/Friendica.php:110 msgid "Suggestions, praise, etc. - please email \"info\" at \"friendi - dot - ca" msgstr "" -#: src/Module/HCard.php:45 +#: src/Module/HCard.php:31 msgid "No profile" msgstr "Profiili ei ole" -#: src/Module/HTTPException/MethodNotAllowed.php:31 +#: src/Module/HTTPException/MethodNotAllowed.php:17 msgid "Method Not Allowed." msgstr "" -#: src/Module/Help.php:60 +#: src/Module/Help.php:46 msgid "Help:" msgstr "Abi:" -#: src/Module/Home.php:63 +#: src/Module/Home.php:52 #, php-format msgid "Welcome to %s" msgstr "" -#: src/Module/Install.php:189 +#: src/Module/Install.php:175 msgid "Friendica Communications Server - Setup" msgstr "" -#: src/Module/Install.php:200 +#: src/Module/Install.php:186 msgid "System check" msgstr "" -#: src/Module/Install.php:202 src/Module/Install.php:247 -#: src/Module/Install.php:326 +#: src/Module/Install.php:188 src/Module/Install.php:233 +#: src/Module/Install.php:312 msgid "Requirement not satisfied" msgstr "" -#: src/Module/Install.php:203 +#: src/Module/Install.php:189 msgid "Optional requirement not satisfied" msgstr "" -#: src/Module/Install.php:204 +#: src/Module/Install.php:190 msgid "OK" msgstr "" -#: src/Module/Install.php:208 +#: src/Module/Install.php:194 msgid "Next" msgstr "Järgmine" -#: src/Module/Install.php:209 +#: src/Module/Install.php:195 msgid "Check again" msgstr "" -#: src/Module/Install.php:222 +#: src/Module/Install.php:208 msgid "Base settings" msgstr "Baassätted" -#: src/Module/Install.php:224 +#: src/Module/Install.php:210 msgid "Base path to installation" msgstr "" -#: src/Module/Install.php:226 +#: src/Module/Install.php:212 msgid "" "If the system cannot detect the correct path to your installation, enter the" " correct path here. This setting should only be set if you are using a " "restricted system and symbolic links to your webroot." msgstr "" -#: src/Module/Install.php:229 +#: src/Module/Install.php:215 msgid "The Friendica system URL" msgstr "" -#: src/Module/Install.php:231 +#: src/Module/Install.php:217 msgid "" "Overwrite this field in case the system URL determination isn't right, " "otherwise leave it as is." msgstr "" -#: src/Module/Install.php:242 +#: src/Module/Install.php:228 msgid "Database connection" msgstr "" -#: src/Module/Install.php:243 +#: src/Module/Install.php:229 msgid "" "In order to install Friendica we need to know how to connect to your " "database." msgstr "" -#: src/Module/Install.php:244 +#: src/Module/Install.php:230 msgid "" "Please contact your hosting provider or site administrator if you have " "questions about these settings." msgstr "" -#: src/Module/Install.php:245 +#: src/Module/Install.php:231 msgid "" "The database you specify below should already exist. If it does not, please " "create it before continuing." msgstr "" -#: src/Module/Install.php:252 +#: src/Module/Install.php:238 msgid "Database Server Name" msgstr "" -#: src/Module/Install.php:257 +#: src/Module/Install.php:243 msgid "Database Login Name" msgstr "" -#: src/Module/Install.php:263 +#: src/Module/Install.php:249 msgid "Database Login Password" msgstr "" -#: src/Module/Install.php:265 +#: src/Module/Install.php:251 msgid "For security reasons the password must not be empty" msgstr "" -#: src/Module/Install.php:268 +#: src/Module/Install.php:254 msgid "Database Name" msgstr "" -#: src/Module/Install.php:272 src/Module/Install.php:300 +#: src/Module/Install.php:258 src/Module/Install.php:286 msgid "Please select a default timezone for your website" msgstr "" -#: src/Module/Install.php:287 +#: src/Module/Install.php:273 msgid "Site settings" msgstr "" -#: src/Module/Install.php:295 +#: src/Module/Install.php:281 msgid "Site administrator email address" msgstr "" -#: src/Module/Install.php:297 +#: src/Module/Install.php:283 msgid "" "Your account email address must match this in order to use the web admin " "panel." msgstr "" -#: src/Module/Install.php:304 +#: src/Module/Install.php:290 msgid "System Language:" msgstr "" -#: src/Module/Install.php:306 +#: src/Module/Install.php:292 msgid "" "Set the default language for your Friendica installation interface and to " "send emails." msgstr "" -#: src/Module/Install.php:318 +#: src/Module/Install.php:304 msgid "Your Friendica site database has been installed." msgstr "" -#: src/Module/Install.php:328 +#: src/Module/Install.php:314 msgid "Installation finished" msgstr "" -#: src/Module/Install.php:348 +#: src/Module/Install.php:334 msgid "

What next

" msgstr "" -#: src/Module/Install.php:349 +#: src/Module/Install.php:335 msgid "" "IMPORTANT: You will need to [manually] setup a scheduled task for the " "worker." msgstr "" -#: src/Module/Install.php:352 +#: src/Module/Install.php:338 #, php-format msgid "" "Go to your new Friendica node registration page " @@ -7615,40 +7694,40 @@ msgid "" " administrator email. This will allow you to enter the site admin panel." msgstr "" -#: src/Module/Invite.php:57 +#: src/Module/Invite.php:43 msgid "Total invitation limit exceeded." msgstr "Totaalne kutsungite limiit ületatud." -#: src/Module/Invite.php:82 +#: src/Module/Invite.php:68 #, php-format msgid "%s : Not a valid email address." msgstr "%s : Mittevaliidne meiliaadress." -#: src/Module/Invite.php:108 +#: src/Module/Invite.php:94 msgid "Please join us on Friendica" msgstr "Palun ühine meiega Friendicas" -#: src/Module/Invite.php:117 +#: src/Module/Invite.php:103 msgid "Invitation limit exceeded. Please contact your site administrator." msgstr "Kutsumiste limiit ületatud. Palun kontakteeru oma lehe adminniga." -#: src/Module/Invite.php:121 +#: src/Module/Invite.php:107 #, php-format msgid "%s : Message delivery failed." msgstr "%s : Sõnumi saatmine nurjus." -#: src/Module/Invite.php:125 +#: src/Module/Invite.php:111 #, php-format msgid "%d message sent." msgid_plural "%d messages sent." msgstr[0] "%d sõnum saadetud." msgstr[1] "%d sõnumid saadetud." -#: src/Module/Invite.php:143 +#: src/Module/Invite.php:129 msgid "You have no more invitations available" msgstr "Sul ei ole rohkem kutseid" -#: src/Module/Invite.php:150 +#: src/Module/Invite.php:136 #, php-format msgid "" "Visit %s for a list of public sites that you can join. Friendica members on " @@ -7656,14 +7735,14 @@ msgid "" " other social networks." msgstr "Külasta %s avalike saitide nimistut kus saad liituda. Friendica liikmed teistel saitidel saavad kõik üksteisega ühenduda ja samuti saavad seda ka paljude teiste sotsiaalvõrkude liikmed. " -#: src/Module/Invite.php:152 +#: src/Module/Invite.php:138 #, php-format msgid "" "To accept this invitation, please visit and register at %s or any other " "public Friendica website." msgstr "Et seda kutset vastu võtta külasta palun saiti %s ja registreeri või siis registreeri ükskõik millisel Friendica avalikul veebilehel. " -#: src/Module/Invite.php:153 +#: src/Module/Invite.php:139 #, php-format msgid "" "Friendica sites all inter-connect to create a huge privacy-enhanced social " @@ -7672,333 +7751,337 @@ msgid "" "sites you can join." msgstr "Kõik Friendica saidid on omavahel ühenduses ja moodustavad tohutu turvatäiustatud sotsiaalvõrgustiku, mida omavad ja kontrollivad selle liikmed. Nad saavad samuti ühenduda paljude teiste sotsiaalvõrkudga. Vaata nimekirja alternatiivsetest saitidest, kus saad liituda. \n%s " -#: src/Module/Invite.php:157 +#: src/Module/Invite.php:143 msgid "" "Our apologies. This system is not currently configured to connect with other" " public sites or invite members." msgstr "Meie vabandused. See süsteem ei ole hetkel seadistatud ühenduseks teiste avalike saitidega või liikmete vastuvõtuks. " -#: src/Module/Invite.php:160 +#: src/Module/Invite.php:146 msgid "" "Friendica sites all inter-connect to create a huge privacy-enhanced social " "web that is owned and controlled by its members. They can also connect with " "many traditional social networks." msgstr "Kõik Friendica saidid on omavahel ühenduses ja moodustavad tohutu \nturvatäiustatud sotsiaalvõrgustiku, mida omavad ja kontrollivad selle \nliikmed. Nad saavad samuti ühenduda paljude teiste sotsiaalvõrkudga." -#: src/Module/Invite.php:159 +#: src/Module/Invite.php:145 #, php-format msgid "To accept this invitation, please visit and register at %s." msgstr "Et seda kutset vastu võtta, külasta palun %s ja registreeri. " -#: src/Module/Invite.php:167 +#: src/Module/Invite.php:153 msgid "Send invitations" msgstr "Saada kutseid" -#: src/Module/Invite.php:168 +#: src/Module/Invite.php:154 msgid "Enter email addresses, one per line:" msgstr "Lisa e-posti aadresse, üks iga rea kohta:" -#: src/Module/Invite.php:172 +#: src/Module/Invite.php:158 msgid "" "You are cordially invited to join me and other close friends on Friendica - " "and help us to create a better social web." msgstr "Oled kutsutud ühinema minu ei teiste sõpradega Freindicas - et saaksime koos luua parema sotsiaalvõrgustiku. " -#: src/Module/Invite.php:174 +#: src/Module/Invite.php:160 msgid "You will need to supply this invitation code: $invite_code" msgstr "Peate sisestama selle kutse koodi: $invite_code " -#: src/Module/Invite.php:174 +#: src/Module/Invite.php:160 msgid "" "Once you have registered, please connect with me via my profile page at:" msgstr "Kui olete registreerunud, kontakteeruge minuga mu profiili lehel: " -#: src/Module/Invite.php:176 +#: src/Module/Invite.php:162 msgid "" "For more information about the Friendica project and why we feel it is " "important, please visit http://friendi.ca" msgstr "Rohkema info jaoks Friendica projekti kohta, külastage palun http://friendi.ca " -#: src/Module/Item/Compose.php:85 +#: src/Module/Item/Compose.php:80 msgid "Please enter a post body." msgstr "" -#: src/Module/Item/Compose.php:98 +#: src/Module/Item/Compose.php:91 msgid "This feature is only available with the frio theme." msgstr "" -#: src/Module/Item/Compose.php:122 +#: src/Module/Item/Compose.php:115 msgid "Compose new personal note" msgstr "" -#: src/Module/Item/Compose.php:131 +#: src/Module/Item/Compose.php:124 msgid "Compose new post" msgstr "Koosta uus postitus" -#: src/Module/Item/Compose.php:187 +#: src/Module/Item/Compose.php:180 msgid "Visibility" msgstr "Nähtavus" -#: src/Module/Item/Compose.php:203 +#: src/Module/Item/Compose.php:196 msgid "Clear the location" msgstr "" -#: src/Module/Item/Compose.php:204 +#: src/Module/Item/Compose.php:197 msgid "Location services are unavailable on your device" msgstr "" -#: src/Module/Item/Compose.php:205 +#: src/Module/Item/Compose.php:198 msgid "" "Location services are disabled. Please check the website's permissions on " "your device" msgstr "" -#: src/Module/Item/Compose.php:211 +#: src/Module/Item/Compose.php:204 msgid "" "You can make this page always open when you use the New Post button in the " "Theme Customization settings." msgstr "" -#: src/Module/Item/Feed.php:86 +#: src/Module/Item/Feed.php:72 msgid "The feed for this item is unavailable." msgstr "" -#: src/Module/Item/Follow.php:51 +#: src/Module/Item/Follow.php:37 msgid "Unable to follow this item." msgstr "" -#: src/Module/Maintenance.php:48 src/Module/Maintenance.php:53 +#: src/Module/Maintenance.php:34 src/Module/Maintenance.php:39 msgid "System down for maintenance" msgstr "Süsteem hooldusrežiimis" -#: src/Module/Maintenance.php:54 +#: src/Module/Maintenance.php:40 msgid "" "This Friendica node is currently in maintenance mode, either automatically " "because it is self-updating or manually by the node administrator. This " "condition should be temporary, please come back in a few minutes." msgstr "" -#: src/Module/Manifest.php:40 +#: src/Module/Manifest.php:26 msgid "A Decentralized Social Network" msgstr "" -#: src/Module/Media/Attachment/Browser.php:58 -#: src/Module/Media/Photo/Browser.php:59 +#: src/Module/Media/Attachment/Browser.php:44 +#: src/Module/Media/Photo/Browser.php:45 msgid "You need to be logged in to access this page." msgstr "" -#: src/Module/Media/Attachment/Browser.php:74 +#: src/Module/Media/Attachment/Browser.php:60 msgid "Files" msgstr "Failid" -#: src/Module/Media/Attachment/Browser.php:79 -#: src/Module/Media/Photo/Browser.php:90 -#: src/Module/Settings/Profile/Photo/Index.php:129 +#: src/Module/Media/Attachment/Browser.php:65 +#: src/Module/Media/Photo/Browser.php:76 +#: src/Module/Settings/Profile/Photo/Index.php:113 msgid "Upload" msgstr "Lae üles" -#: src/Module/Media/Attachment/Upload.php:97 +#: src/Module/Media/Attachment/Upload.php:83 msgid "Sorry, maybe your upload is bigger than the PHP configuration allows" msgstr "" -#: src/Module/Media/Attachment/Upload.php:97 +#: src/Module/Media/Attachment/Upload.php:83 msgid "Or - did you try to upload an empty file?" msgstr "" -#: src/Module/Media/Attachment/Upload.php:104 +#: src/Module/Media/Attachment/Upload.php:90 #, php-format msgid "File exceeds size limit of %s" msgstr "" -#: src/Module/Media/Attachment/Upload.php:114 +#: src/Module/Media/Attachment/Upload.php:100 msgid "File upload failed." msgstr "Faili üleslaadimine nurjus." -#: 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:136 src/Module/Media/Photo/Upload.php:137 +#: src/Module/Profile/Photos.php:201 +#: src/Module/Settings/Profile/Photo/Index.php:53 msgid "Unable to process image." msgstr "Ei suuda pilti töödelda. " -#: 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:162 src/Module/Profile/Photos.php:221 +#: src/Module/Settings/Profile/Photo/Index.php:80 msgid "Image upload failed." msgstr "Pildi üleslaadimine nurjus." -#: src/Module/Moderation/BaseUsers.php:72 +#: src/Module/Moderation/BaseUsers.php:59 msgid "List of all users" msgstr "" -#: src/Module/Moderation/BaseUsers.php:77 +#: src/Module/Moderation/BaseUsers.php:64 msgid "Active" msgstr "" -#: src/Module/Moderation/BaseUsers.php:80 +#: src/Module/Moderation/BaseUsers.php:67 msgid "List of active accounts" msgstr "" -#: src/Module/Moderation/BaseUsers.php:88 +#: src/Module/Moderation/BaseUsers.php:75 msgid "List of pending registrations" msgstr "" -#: src/Module/Moderation/BaseUsers.php:96 +#: src/Module/Moderation/BaseUsers.php:83 msgid "List of blocked users" msgstr "" -#: src/Module/Moderation/BaseUsers.php:101 +#: src/Module/Moderation/BaseUsers.php:88 msgid "Deleted" msgstr "" -#: src/Module/Moderation/BaseUsers.php:104 +#: src/Module/Moderation/BaseUsers.php:91 msgid "List of pending user deletions" msgstr "" -#: src/Module/Moderation/BaseUsers.php:119 src/Module/Settings/Account.php:482 +#: src/Module/Moderation/BaseUsers.php:108 src/Module/Settings/Account.php:473 msgid "Normal Account Page" msgstr "Normaalse konto leht" -#: src/Module/Moderation/BaseUsers.php:120 src/Module/Settings/Account.php:489 +#: src/Module/Moderation/BaseUsers.php:109 src/Module/Settings/Account.php:480 msgid "Soapbox Page" msgstr "" -#: src/Module/Moderation/BaseUsers.php:121 src/Module/Settings/Account.php:496 +#: src/Module/Moderation/BaseUsers.php:110 src/Module/Settings/Account.php:487 msgid "Public Group" msgstr "" -#: src/Module/Moderation/BaseUsers.php:122 src/Module/Settings/Account.php:503 +#: src/Module/Moderation/BaseUsers.php:111 src/Module/Settings/Account.php:494 +msgid "Public Group - Restricted" +msgstr "" + +#: src/Module/Moderation/BaseUsers.php:112 src/Module/Settings/Account.php:501 msgid "Automatic Friend Page" msgstr "Automaatne sõbraleht" -#: src/Module/Moderation/BaseUsers.php:123 +#: src/Module/Moderation/BaseUsers.php:113 msgid "Private Group" msgstr "" -#: src/Module/Moderation/BaseUsers.php:126 -#: src/Module/Moderation/Summary.php:53 src/Module/Settings/Account.php:453 +#: src/Module/Moderation/BaseUsers.php:116 +#: src/Module/Moderation/Summary.php:39 src/Module/Settings/Account.php:444 msgid "Personal Page" msgstr "Isiklik leht" -#: src/Module/Moderation/BaseUsers.php:127 -#: src/Module/Moderation/Summary.php:54 src/Module/Settings/Account.php:460 +#: src/Module/Moderation/BaseUsers.php:117 +#: src/Module/Moderation/Summary.php:40 src/Module/Settings/Account.php:451 msgid "Organisation Page" msgstr "Organisatsiooni leht" -#: src/Module/Moderation/BaseUsers.php:128 -#: src/Module/Moderation/Summary.php:55 src/Module/Settings/Account.php:467 +#: src/Module/Moderation/BaseUsers.php:118 +#: src/Module/Moderation/Summary.php:41 src/Module/Settings/Account.php:458 msgid "News Page" msgstr "Uudiste leht" -#: src/Module/Moderation/BaseUsers.php:129 -#: src/Module/Moderation/Summary.php:56 src/Module/Settings/Account.php:474 +#: src/Module/Moderation/BaseUsers.php:119 +#: src/Module/Moderation/Summary.php:42 src/Module/Settings/Account.php:465 msgid "Community Group" msgstr "" -#: src/Module/Moderation/Blocklist/Contact.php:70 +#: src/Module/Moderation/Blocklist/Contact.php:56 msgid "You can't block a local contact, please block the user instead" msgstr "" -#: src/Module/Moderation/Blocklist/Contact.php:89 +#: src/Module/Moderation/Blocklist/Contact.php:75 #, php-format msgid "%s contact unblocked" msgid_plural "%s contacts unblocked" msgstr[0] "" msgstr[1] "" -#: src/Module/Moderation/Blocklist/Contact.php:111 +#: src/Module/Moderation/Blocklist/Contact.php:97 msgid "Remote Contact Blocklist" msgstr "" -#: src/Module/Moderation/Blocklist/Contact.php:112 +#: src/Module/Moderation/Blocklist/Contact.php:98 msgid "" "This page allows you to prevent any message from a remote contact to reach " "your node." msgstr "" -#: src/Module/Moderation/Blocklist/Contact.php:113 +#: src/Module/Moderation/Blocklist/Contact.php:99 msgid "Block Remote Contact" msgstr "" -#: src/Module/Moderation/Blocklist/Contact.php:114 -#: src/Module/Moderation/Users/Active.php:135 -#: src/Module/Moderation/Users/Blocked.php:135 -#: src/Module/Moderation/Users/Index.php:149 -#: src/Module/Moderation/Users/Pending.php:98 +#: src/Module/Moderation/Blocklist/Contact.php:100 +#: src/Module/Moderation/Users/Active.php:121 +#: src/Module/Moderation/Users/Blocked.php:121 +#: src/Module/Moderation/Users/Index.php:135 +#: src/Module/Moderation/Users/Pending.php:84 msgid "select all" msgstr "" -#: src/Module/Moderation/Blocklist/Contact.php:115 +#: src/Module/Moderation/Blocklist/Contact.php:101 msgid "select none" msgstr "" -#: src/Module/Moderation/Blocklist/Contact.php:118 +#: src/Module/Moderation/Blocklist/Contact.php:104 msgid "No remote contact is blocked from this node." msgstr "" -#: src/Module/Moderation/Blocklist/Contact.php:120 +#: src/Module/Moderation/Blocklist/Contact.php:106 msgid "Blocked Remote Contacts" msgstr "Blokeeritud kaugkontaktid" -#: src/Module/Moderation/Blocklist/Contact.php:121 +#: src/Module/Moderation/Blocklist/Contact.php:107 msgid "Block New Remote Contact" msgstr "Blokeeri kaugkontakt" -#: src/Module/Moderation/Blocklist/Contact.php:122 -#: src/Module/Moderation/Reports.php:95 +#: src/Module/Moderation/Blocklist/Contact.php:108 +#: src/Module/Moderation/Reports.php:102 msgid "Photo" msgstr "Foto" -#: src/Module/Moderation/Blocklist/Contact.php:122 +#: src/Module/Moderation/Blocklist/Contact.php:108 msgid "Reason" msgstr "" -#: src/Module/Moderation/Blocklist/Contact.php:130 +#: src/Module/Moderation/Blocklist/Contact.php:114 #, php-format msgid "%s total blocked contact" msgid_plural "%s total blocked contacts" msgstr[0] "" msgstr[1] "" -#: src/Module/Moderation/Blocklist/Contact.php:133 +#: src/Module/Moderation/Blocklist/Contact.php:117 msgid "URL of the remote contact to block." msgstr "" -#: src/Module/Moderation/Blocklist/Contact.php:134 +#: src/Module/Moderation/Blocklist/Contact.php:118 msgid "Also purge contact" msgstr "" -#: src/Module/Moderation/Blocklist/Contact.php:134 +#: src/Module/Moderation/Blocklist/Contact.php:118 msgid "" "Removes all content related to this contact from the node. Keeps the contact" " record. This action cannot be undone." msgstr "" -#: src/Module/Moderation/Blocklist/Contact.php:135 -#: src/Module/Moderation/Blocklist/Server/Import.php:124 +#: src/Module/Moderation/Blocklist/Contact.php:119 +#: src/Module/Moderation/Blocklist/Server/Import.php:108 msgid "Block Reason" msgstr "" -#: src/Module/Moderation/Blocklist/Server/Add.php:80 +#: src/Module/Moderation/Blocklist/Server/Add.php:66 msgid "Server domain pattern added to the blocklist." msgstr "" -#: src/Module/Moderation/Blocklist/Server/Add.php:88 +#: src/Module/Moderation/Blocklist/Server/Add.php:74 #, php-format msgid "%s server scheduled to be purged." msgid_plural "%s servers scheduled to be purged." msgstr[0] "" msgstr[1] "" -#: src/Module/Moderation/Blocklist/Server/Add.php:120 -#: src/Module/Moderation/Blocklist/Server/Import.php:117 +#: src/Module/Moderation/Blocklist/Server/Add.php:106 +#: src/Module/Moderation/Blocklist/Server/Import.php:101 msgid "← Return to the list" msgstr "" -#: src/Module/Moderation/Blocklist/Server/Add.php:122 +#: src/Module/Moderation/Blocklist/Server/Add.php:108 msgid "Block A New Server Domain Pattern" msgstr "" -#: src/Module/Moderation/Blocklist/Server/Add.php:123 -#: src/Module/Moderation/Blocklist/Server/Index.php:99 +#: src/Module/Moderation/Blocklist/Server/Add.php:109 +#: src/Module/Moderation/Blocklist/Server/Index.php:85 msgid "" "

The server domain pattern syntax is case-insensitive shell wildcard, comprising the following special characters:

\n" "
    \n" @@ -8007,57 +8090,57 @@ msgid "" "
" msgstr "" -#: src/Module/Moderation/Blocklist/Server/Add.php:128 -#: src/Module/Moderation/Blocklist/Server/Index.php:107 +#: src/Module/Moderation/Blocklist/Server/Add.php:114 +#: src/Module/Moderation/Blocklist/Server/Index.php:93 msgid "Check pattern" msgstr "" -#: src/Module/Moderation/Blocklist/Server/Add.php:129 +#: src/Module/Moderation/Blocklist/Server/Add.php:115 msgid "Matching known servers" msgstr "" -#: src/Module/Moderation/Blocklist/Server/Add.php:130 -#: src/Module/Settings/Server/Action.php:76 -#: src/Module/Settings/Server/Index.php:106 +#: src/Module/Moderation/Blocklist/Server/Add.php:116 +#: src/Module/Settings/Server/Action.php:62 +#: src/Module/Settings/Server/Index.php:92 msgid "Server Name" msgstr "" -#: src/Module/Moderation/Blocklist/Server/Add.php:131 +#: src/Module/Moderation/Blocklist/Server/Add.php:117 msgid "Server Domain" msgstr "" -#: src/Module/Moderation/Blocklist/Server/Add.php:132 +#: src/Module/Moderation/Blocklist/Server/Add.php:118 msgid "Known Contacts" msgstr "" -#: src/Module/Moderation/Blocklist/Server/Add.php:133 +#: src/Module/Moderation/Blocklist/Server/Add.php:119 #, php-format msgid "%d known server" msgid_plural "%d known servers" msgstr[0] "" msgstr[1] "" -#: src/Module/Moderation/Blocklist/Server/Add.php:134 +#: src/Module/Moderation/Blocklist/Server/Add.php:120 msgid "Add pattern to the blocklist" msgstr "" -#: src/Module/Moderation/Blocklist/Server/Add.php:136 -#: src/Module/Moderation/Blocklist/Server/Index.php:116 +#: src/Module/Moderation/Blocklist/Server/Add.php:122 +#: src/Module/Moderation/Blocklist/Server/Index.php:102 msgid "Server Domain Pattern" msgstr "" -#: src/Module/Moderation/Blocklist/Server/Add.php:136 -#: src/Module/Moderation/Blocklist/Server/Index.php:116 +#: src/Module/Moderation/Blocklist/Server/Add.php:122 +#: src/Module/Moderation/Blocklist/Server/Index.php:102 msgid "" "The domain pattern of the new server to add to the blocklist. Do not include" " the protocol." msgstr "" -#: src/Module/Moderation/Blocklist/Server/Add.php:137 +#: src/Module/Moderation/Blocklist/Server/Add.php:123 msgid "Purge server" msgstr "" -#: src/Module/Moderation/Blocklist/Server/Add.php:137 +#: src/Module/Moderation/Blocklist/Server/Add.php:123 msgid "" "Also purges all the locally stored content authored by the known contacts " "registered on that server. Keeps the contacts and the server records. This " @@ -8069,301 +8152,301 @@ msgid_plural "" msgstr[0] "" msgstr[1] "" -#: src/Module/Moderation/Blocklist/Server/Add.php:138 +#: src/Module/Moderation/Blocklist/Server/Add.php:124 msgid "Block reason" msgstr "" -#: src/Module/Moderation/Blocklist/Server/Add.php:138 +#: src/Module/Moderation/Blocklist/Server/Add.php:124 msgid "" "The reason why you blocked this server domain pattern. This reason will be " "shown publicly in the server information page." msgstr "" -#: src/Module/Moderation/Blocklist/Server/Import.php:74 -#: src/Module/Moderation/Blocklist/Server/Import.php:83 +#: src/Module/Moderation/Blocklist/Server/Import.php:60 +#: src/Module/Moderation/Blocklist/Server/Import.php:67 msgid "Error importing pattern file" msgstr "" -#: src/Module/Moderation/Blocklist/Server/Import.php:89 +#: src/Module/Moderation/Blocklist/Server/Import.php:74 msgid "Local blocklist replaced with the provided file." msgstr "" -#: src/Module/Moderation/Blocklist/Server/Import.php:93 +#: src/Module/Moderation/Blocklist/Server/Import.php:78 #, php-format msgid "%d pattern was added to the local blocklist." msgid_plural "%d patterns were added to the local blocklist." msgstr[0] "" msgstr[1] "" -#: src/Module/Moderation/Blocklist/Server/Import.php:95 +#: src/Module/Moderation/Blocklist/Server/Import.php:80 msgid "No pattern was added to the local blocklist." msgstr "" -#: src/Module/Moderation/Blocklist/Server/Import.php:119 +#: src/Module/Moderation/Blocklist/Server/Import.php:103 msgid "Import a Server Domain Pattern Blocklist" msgstr "" -#: src/Module/Moderation/Blocklist/Server/Import.php:120 +#: src/Module/Moderation/Blocklist/Server/Import.php:104 msgid "" "

This file can be downloaded from the /friendica path of any " "Friendica server.

" msgstr "" -#: src/Module/Moderation/Blocklist/Server/Import.php:121 -#: src/Module/Moderation/Blocklist/Server/Index.php:106 +#: src/Module/Moderation/Blocklist/Server/Import.php:105 +#: src/Module/Moderation/Blocklist/Server/Index.php:92 msgid "Upload file" msgstr "" -#: src/Module/Moderation/Blocklist/Server/Import.php:122 +#: src/Module/Moderation/Blocklist/Server/Import.php:106 msgid "Patterns to import" msgstr "" -#: src/Module/Moderation/Blocklist/Server/Import.php:123 +#: src/Module/Moderation/Blocklist/Server/Import.php:107 msgid "Domain Pattern" msgstr "" -#: src/Module/Moderation/Blocklist/Server/Import.php:125 +#: src/Module/Moderation/Blocklist/Server/Import.php:109 msgid "Import Mode" msgstr "" -#: src/Module/Moderation/Blocklist/Server/Import.php:126 +#: src/Module/Moderation/Blocklist/Server/Import.php:110 msgid "Import Patterns" msgstr "" -#: src/Module/Moderation/Blocklist/Server/Import.php:127 +#: src/Module/Moderation/Blocklist/Server/Import.php:111 #, php-format msgid "%d total pattern" msgid_plural "%d total patterns" msgstr[0] "" msgstr[1] "" -#: src/Module/Moderation/Blocklist/Server/Import.php:129 -#: src/Module/Moderation/Blocklist/Server/Index.php:115 +#: src/Module/Moderation/Blocklist/Server/Import.php:113 +#: src/Module/Moderation/Blocklist/Server/Index.php:101 msgid "Server domain pattern blocklist CSV file" msgstr "" -#: src/Module/Moderation/Blocklist/Server/Import.php:130 +#: src/Module/Moderation/Blocklist/Server/Import.php:114 msgid "Append" msgstr "" -#: src/Module/Moderation/Blocklist/Server/Import.php:130 +#: src/Module/Moderation/Blocklist/Server/Import.php:114 msgid "" "Imports patterns from the file that weren't already existing in the current " "blocklist." msgstr "" -#: src/Module/Moderation/Blocklist/Server/Import.php:131 +#: src/Module/Moderation/Blocklist/Server/Import.php:115 msgid "Replace" msgstr "" -#: src/Module/Moderation/Blocklist/Server/Import.php:131 +#: src/Module/Moderation/Blocklist/Server/Import.php:115 msgid "Replaces the current blocklist by the imported patterns." msgstr "" -#: src/Module/Moderation/Blocklist/Server/Index.php:86 -#: src/Module/Moderation/Blocklist/Server/Index.php:110 -#: src/Module/Settings/Channels.php:225 +#: src/Module/Moderation/Blocklist/Server/Index.php:72 +#: src/Module/Moderation/Blocklist/Server/Index.php:96 +#: src/Module/Settings/Channels.php:217 msgid "Blocked server domain pattern" msgstr "" -#: src/Module/Moderation/Blocklist/Server/Index.php:88 +#: src/Module/Moderation/Blocklist/Server/Index.php:74 msgid "Delete server domain pattern" msgstr "" -#: src/Module/Moderation/Blocklist/Server/Index.php:88 +#: src/Module/Moderation/Blocklist/Server/Index.php:74 msgid "Check to delete this entry from the blocklist" msgstr "" -#: src/Module/Moderation/Blocklist/Server/Index.php:96 +#: src/Module/Moderation/Blocklist/Server/Index.php:82 msgid "Server Domain Pattern Blocklist" msgstr "" -#: src/Module/Moderation/Blocklist/Server/Index.php:97 +#: src/Module/Moderation/Blocklist/Server/Index.php:83 msgid "" "This page can be used to define a blocklist of server domain patterns from " "the federated network that are not allowed to interact with your node. For " "each domain pattern you should also provide the reason why you block it." msgstr "" -#: src/Module/Moderation/Blocklist/Server/Index.php:98 +#: src/Module/Moderation/Blocklist/Server/Index.php:84 msgid "" "The list of blocked server domain patterns will be made publically available" " on the /friendica page so that your users and " "people investigating communication problems can find the reason easily." msgstr "" -#: src/Module/Moderation/Blocklist/Server/Index.php:104 +#: src/Module/Moderation/Blocklist/Server/Index.php:90 msgid "Import server domain pattern blocklist" msgstr "" -#: src/Module/Moderation/Blocklist/Server/Index.php:105 +#: src/Module/Moderation/Blocklist/Server/Index.php:91 msgid "Add new entry to the blocklist" msgstr "" -#: src/Module/Moderation/Blocklist/Server/Index.php:108 +#: src/Module/Moderation/Blocklist/Server/Index.php:94 msgid "Save changes to the blocklist" msgstr "" -#: src/Module/Moderation/Blocklist/Server/Index.php:109 +#: src/Module/Moderation/Blocklist/Server/Index.php:95 msgid "Current Entries in the Blocklist" msgstr "" -#: src/Module/Moderation/Blocklist/Server/Index.php:112 +#: src/Module/Moderation/Blocklist/Server/Index.php:98 msgid "Delete entry from the blocklist" msgstr "" -#: src/Module/Moderation/Blocklist/Server/Index.php:113 +#: src/Module/Moderation/Blocklist/Server/Index.php:99 msgid "Delete entry from the blocklist?" msgstr "" -#: src/Module/Moderation/Item/Delete.php:50 +#: src/Module/Moderation/Item/Delete.php:36 msgid "Item marked for deletion." msgstr "Element kustutamiseks märgitud" -#: src/Module/Moderation/Item/Delete.php:63 +#: src/Module/Moderation/Item/Delete.php:49 msgid "Delete this Item" msgstr "Kustuta see element" -#: src/Module/Moderation/Item/Delete.php:64 +#: src/Module/Moderation/Item/Delete.php:50 msgid "" "On this page you can delete an item from your node. If the item is a top " "level posting, the entire thread will be deleted." msgstr "" -#: src/Module/Moderation/Item/Delete.php:65 +#: src/Module/Moderation/Item/Delete.php:51 msgid "" "You need to know the GUID of the item. You can find it e.g. by looking at " "the display URL. The last part of http://example.com/display/123456 is the " "GUID, here 123456." msgstr "" -#: src/Module/Moderation/Item/Delete.php:67 +#: src/Module/Moderation/Item/Delete.php:53 msgid "GUID" msgstr "" -#: src/Module/Moderation/Item/Delete.php:67 +#: src/Module/Moderation/Item/Delete.php:53 msgid "The GUID of the item you want to delete." msgstr "" -#: src/Module/Moderation/Item/Source.php:77 +#: src/Module/Moderation/Item/Source.php:69 msgid "Item Id" msgstr "" -#: src/Module/Moderation/Item/Source.php:78 +#: src/Module/Moderation/Item/Source.php:70 msgid "Item URI" msgstr "" -#: src/Module/Moderation/Item/Source.php:80 +#: src/Module/Moderation/Item/Source.php:72 msgid "Terms" msgstr "" -#: src/Module/Moderation/Item/Source.php:81 +#: src/Module/Moderation/Item/Source.php:73 msgid "Tag" msgstr "" -#: src/Module/Moderation/Item/Source.php:82 -#: src/Module/Moderation/Users/Active.php:126 -#: src/Module/Moderation/Users/Blocked.php:126 -#: src/Module/Moderation/Users/Index.php:140 +#: src/Module/Moderation/Item/Source.php:74 +#: src/Module/Moderation/Users/Active.php:112 +#: src/Module/Moderation/Users/Blocked.php:112 +#: src/Module/Moderation/Users/Index.php:126 msgid "Type" msgstr "Tüüp" -#: src/Module/Moderation/Item/Source.php:83 +#: src/Module/Moderation/Item/Source.php:75 msgid "Term" msgstr "" -#: src/Module/Moderation/Item/Source.php:84 +#: src/Module/Moderation/Item/Source.php:76 msgid "URL" msgstr "" -#: src/Module/Moderation/Item/Source.php:86 +#: src/Module/Moderation/Item/Source.php:78 msgid "Implicit Mention" msgstr "" -#: src/Module/Moderation/Item/Source.php:88 +#: src/Module/Moderation/Item/Source.php:80 msgid "Item not found" msgstr "Ei leitud" -#: src/Module/Moderation/Item/Source.php:89 +#: src/Module/Moderation/Item/Source.php:81 msgid "No source recorded" msgstr "" -#: src/Module/Moderation/Item/Source.php:90 +#: src/Module/Moderation/Item/Source.php:82 msgid "" "Please make sure the debug.store_source config key is set in " "config/local.config.php for future items to have sources." msgstr "" -#: src/Module/Moderation/Item/Source.php:92 +#: src/Module/Moderation/Item/Source.php:84 msgid "Item Guid" msgstr "" -#: src/Module/Moderation/Report/Create.php:95 +#: src/Module/Moderation/Report/Create.php:81 msgid "Contact not found or their server is already blocked on this node." msgstr "" -#: src/Module/Moderation/Report/Create.php:136 +#: src/Module/Moderation/Report/Create.php:122 msgid "Please login to access this page." msgstr "" -#: src/Module/Moderation/Report/Create.php:165 -#: src/Module/Moderation/Report/Create.php:180 -#: src/Module/Moderation/Report/Create.php:208 -#: src/Module/Moderation/Report/Create.php:260 -#: src/Module/Moderation/Report/Create.php:279 +#: src/Module/Moderation/Report/Create.php:151 +#: src/Module/Moderation/Report/Create.php:166 +#: src/Module/Moderation/Report/Create.php:194 +#: src/Module/Moderation/Report/Create.php:246 +#: src/Module/Moderation/Report/Create.php:265 msgid "Create Moderation Report" msgstr "" -#: src/Module/Moderation/Report/Create.php:166 +#: src/Module/Moderation/Report/Create.php:152 msgid "Pick Contact" msgstr "" -#: src/Module/Moderation/Report/Create.php:167 +#: src/Module/Moderation/Report/Create.php:153 msgid "" "Please enter below the contact address or profile URL you would like to " "create a moderation report about." msgstr "" -#: src/Module/Moderation/Report/Create.php:171 +#: src/Module/Moderation/Report/Create.php:157 msgid "Contact address/URL" msgstr "" -#: src/Module/Moderation/Report/Create.php:181 +#: src/Module/Moderation/Report/Create.php:167 msgid "Pick Category" msgstr "" -#: src/Module/Moderation/Report/Create.php:182 +#: src/Module/Moderation/Report/Create.php:168 msgid "Please pick below the category of your report." msgstr "" -#: src/Module/Moderation/Report/Create.php:186 -#: src/Module/Moderation/Report/Create.php:311 +#: src/Module/Moderation/Report/Create.php:172 +#: src/Module/Moderation/Report/Create.php:297 msgid "Spam" msgstr "" -#: src/Module/Moderation/Report/Create.php:186 +#: src/Module/Moderation/Report/Create.php:172 msgid "" "This contact is publishing many repeated/overly long posts/replies or " "advertising their product/websites in otherwise irrelevant conversations." msgstr "" -#: src/Module/Moderation/Report/Create.php:187 -#: src/Module/Moderation/Report/Create.php:312 +#: src/Module/Moderation/Report/Create.php:173 +#: src/Module/Moderation/Report/Create.php:298 msgid "Illegal Content" msgstr "" -#: src/Module/Moderation/Report/Create.php:187 +#: src/Module/Moderation/Report/Create.php:173 msgid "" "This contact is publishing content that is considered illegal in this node's" " hosting juridiction." msgstr "" -#: src/Module/Moderation/Report/Create.php:188 -#: src/Module/Moderation/Report/Create.php:313 +#: src/Module/Moderation/Report/Create.php:174 +#: src/Module/Moderation/Report/Create.php:299 msgid "Community Safety" msgstr "" -#: src/Module/Moderation/Report/Create.php:188 +#: src/Module/Moderation/Report/Create.php:174 msgid "" "This contact aggravated you or other people, by being provocative or " "insensitive, intentionally or not. This includes disclosing people's private" @@ -8371,12 +8454,12 @@ msgid "" "replies." msgstr "" -#: src/Module/Moderation/Report/Create.php:189 -#: src/Module/Moderation/Report/Create.php:314 +#: src/Module/Moderation/Report/Create.php:175 +#: src/Module/Moderation/Report/Create.php:300 msgid "Unwanted Content/Behavior" msgstr "" -#: src/Module/Moderation/Report/Create.php:189 +#: src/Module/Moderation/Report/Create.php:175 msgid "" "This contact has repeatedly published content irrelevant to the node's theme" " or is openly criticizing the node's administration/moderation without " @@ -8384,89 +8467,89 @@ msgid "" "nitpicking on a sensitive topic." msgstr "" -#: src/Module/Moderation/Report/Create.php:190 -#: src/Module/Moderation/Report/Create.php:315 +#: src/Module/Moderation/Report/Create.php:176 +#: src/Module/Moderation/Report/Create.php:301 msgid "Rules Violation" msgstr "" -#: src/Module/Moderation/Report/Create.php:190 +#: src/Module/Moderation/Report/Create.php:176 msgid "" "This contact violated one or more rules of this node. You will be able to " "pick which one(s) in the next step." msgstr "" -#: src/Module/Moderation/Report/Create.php:191 +#: src/Module/Moderation/Report/Create.php:177 msgid "" "Please elaborate below why you submitted this report. The more details you " "provide, the better your report can be handled." msgstr "" -#: src/Module/Moderation/Report/Create.php:193 +#: src/Module/Moderation/Report/Create.php:179 msgid "Additional Information" msgstr "" -#: src/Module/Moderation/Report/Create.php:193 +#: src/Module/Moderation/Report/Create.php:179 msgid "" "Please provide any additional information relevant to this particular " "report. You will be able to attach posts by this contact in the next step, " "but any context is welcome." msgstr "" -#: src/Module/Moderation/Report/Create.php:209 +#: src/Module/Moderation/Report/Create.php:195 msgid "Pick Rules" msgstr "" -#: src/Module/Moderation/Report/Create.php:210 +#: src/Module/Moderation/Report/Create.php:196 msgid "Please pick below the node rules you believe this contact violated." msgstr "" -#: src/Module/Moderation/Report/Create.php:261 +#: src/Module/Moderation/Report/Create.php:247 msgid "Pick Posts" msgstr "" -#: src/Module/Moderation/Report/Create.php:262 +#: src/Module/Moderation/Report/Create.php:248 msgid "Please optionally pick posts to attach to your report." msgstr "" -#: src/Module/Moderation/Report/Create.php:281 +#: src/Module/Moderation/Report/Create.php:267 msgid "Submit Report" msgstr "" -#: src/Module/Moderation/Report/Create.php:282 +#: src/Module/Moderation/Report/Create.php:268 msgid "Further Action" msgstr "" -#: src/Module/Moderation/Report/Create.php:283 +#: src/Module/Moderation/Report/Create.php:269 msgid "" "You can also perform one of the following action on the contact you " "reported:" msgstr "" -#: src/Module/Moderation/Report/Create.php:291 +#: src/Module/Moderation/Report/Create.php:277 msgid "Nothing" msgstr "" -#: src/Module/Moderation/Report/Create.php:292 +#: src/Module/Moderation/Report/Create.php:278 msgid "Collapse contact" msgstr "" -#: src/Module/Moderation/Report/Create.php:292 +#: src/Module/Moderation/Report/Create.php:278 msgid "" "Their posts and replies will keep appearing in your Network page but their " "content will be collapsed by default." msgstr "" -#: src/Module/Moderation/Report/Create.php:293 +#: src/Module/Moderation/Report/Create.php:279 msgid "" "Their posts won't appear in your Network page anymore, but their replies can" " appear in forum threads. They still can follow you." msgstr "" -#: src/Module/Moderation/Report/Create.php:294 +#: src/Module/Moderation/Report/Create.php:280 msgid "Block contact" msgstr "" -#: src/Module/Moderation/Report/Create.php:294 +#: src/Module/Moderation/Report/Create.php:280 msgid "" "Their posts won't appear in your Network page anymore, but their replies can" " appear in forum threads, with their content collapsed by default. They " @@ -8474,723 +8557,694 @@ msgid "" "means." msgstr "" -#: src/Module/Moderation/Report/Create.php:297 +#: src/Module/Moderation/Report/Create.php:283 msgid "Forward report" msgstr "" -#: src/Module/Moderation/Report/Create.php:297 +#: src/Module/Moderation/Report/Create.php:283 msgid "Would you ike to forward this report to the remote server?" msgstr "" -#: src/Module/Moderation/Report/Create.php:330 +#: src/Module/Moderation/Report/Create.php:316 msgid "1. Pick a contact" msgstr "" -#: src/Module/Moderation/Report/Create.php:331 +#: src/Module/Moderation/Report/Create.php:317 msgid "2. Pick a category" msgstr "" -#: src/Module/Moderation/Report/Create.php:332 +#: src/Module/Moderation/Report/Create.php:318 msgid "2a. Pick rules" msgstr "" -#: src/Module/Moderation/Report/Create.php:333 +#: src/Module/Moderation/Report/Create.php:319 msgid "2b. Add comment" msgstr "" -#: src/Module/Moderation/Report/Create.php:334 +#: src/Module/Moderation/Report/Create.php:320 msgid "3. Pick posts" msgstr "" -#: src/Module/Moderation/Reports.php:90 +#: src/Module/Moderation/Reports.php:97 msgid "List of reports" msgstr "" -#: src/Module/Moderation/Reports.php:91 +#: src/Module/Moderation/Reports.php:98 msgid "This page display reports created by our or remote users." msgstr "" -#: src/Module/Moderation/Reports.php:92 +#: src/Module/Moderation/Reports.php:99 msgid "No report exists at this node." msgstr "" -#: src/Module/Moderation/Reports.php:95 +#: src/Module/Moderation/Reports.php:102 msgid "Category" msgstr "" -#: src/Module/Moderation/Reports.php:101 +#: src/Module/Moderation/Reports.php:106 #, php-format msgid "%s total report" msgid_plural "%s total reports" msgstr[0] "" msgstr[1] "" -#: src/Module/Moderation/Reports.php:104 +#: src/Module/Moderation/Reports.php:109 msgid "URL of the reported contact." msgstr "" -#: src/Module/Moderation/Summary.php:57 src/Module/Settings/Account.php:431 +#: src/Module/Moderation/Summary.php:43 src/Module/Settings/Account.php:422 msgid "Channel Relay" msgstr "" -#: src/Module/Moderation/Summary.php:77 +#: src/Module/Moderation/Summary.php:63 msgid "Registered users" msgstr "Registreeritud kasutajad" -#: src/Module/Moderation/Summary.php:79 +#: src/Module/Moderation/Summary.php:65 msgid "Pending registrations" msgstr "Ootel registreeringud" -#: src/Module/Moderation/Users/Active.php:43 -#: src/Module/Moderation/Users/Index.php:43 +#: src/Module/Moderation/Users/Active.php:29 +#: src/Module/Moderation/Users/Index.php:29 #, php-format msgid "%s user blocked" msgid_plural "%s users blocked" msgstr[0] "" msgstr[1] "" -#: src/Module/Moderation/Users/Active.php:51 -#: src/Module/Moderation/Users/Active.php:85 -#: src/Module/Moderation/Users/Blocked.php:51 -#: src/Module/Moderation/Users/Blocked.php:85 -#: src/Module/Moderation/Users/Index.php:58 -#: src/Module/Moderation/Users/Index.php:92 +#: src/Module/Moderation/Users/Active.php:37 +#: src/Module/Moderation/Users/Active.php:71 +#: src/Module/Moderation/Users/Blocked.php:37 +#: src/Module/Moderation/Users/Blocked.php:71 +#: src/Module/Moderation/Users/Index.php:44 +#: src/Module/Moderation/Users/Index.php:78 msgid "You can't remove yourself" msgstr "Iseend eemaldada ei saa" -#: src/Module/Moderation/Users/Active.php:55 -#: src/Module/Moderation/Users/Blocked.php:55 -#: src/Module/Moderation/Users/Index.php:62 +#: src/Module/Moderation/Users/Active.php:41 +#: src/Module/Moderation/Users/Blocked.php:41 +#: src/Module/Moderation/Users/Index.php:48 #, php-format msgid "%s user deleted" msgid_plural "%s users deleted" msgstr[0] "" msgstr[1] "" -#: src/Module/Moderation/Users/Active.php:83 -#: src/Module/Moderation/Users/Blocked.php:83 -#: src/Module/Moderation/Users/Index.php:90 +#: src/Module/Moderation/Users/Active.php:69 +#: src/Module/Moderation/Users/Blocked.php:69 +#: src/Module/Moderation/Users/Index.php:76 #, php-format msgid "User \"%s\" deleted" msgstr "" -#: src/Module/Moderation/Users/Active.php:93 -#: src/Module/Moderation/Users/Index.php:100 +#: src/Module/Moderation/Users/Active.php:79 +#: src/Module/Moderation/Users/Index.php:86 #, php-format msgid "User \"%s\" blocked" msgstr "" -#: src/Module/Moderation/Users/Active.php:126 -#: src/Module/Moderation/Users/Blocked.php:126 -#: src/Module/Moderation/Users/Deleted.php:83 -#: src/Module/Moderation/Users/Index.php:140 -#: src/Module/Moderation/Users/Index.php:160 +#: src/Module/Moderation/Users/Active.php:112 +#: src/Module/Moderation/Users/Blocked.php:112 +#: src/Module/Moderation/Users/Deleted.php:69 +#: src/Module/Moderation/Users/Index.php:126 +#: src/Module/Moderation/Users/Index.php:146 msgid "Register date" msgstr "Registreerimisaeg" -#: src/Module/Moderation/Users/Active.php:126 -#: src/Module/Moderation/Users/Blocked.php:126 -#: src/Module/Moderation/Users/Deleted.php:83 -#: src/Module/Moderation/Users/Index.php:140 -#: src/Module/Moderation/Users/Index.php:160 +#: src/Module/Moderation/Users/Active.php:112 +#: src/Module/Moderation/Users/Blocked.php:112 +#: src/Module/Moderation/Users/Deleted.php:69 +#: src/Module/Moderation/Users/Index.php:126 +#: src/Module/Moderation/Users/Index.php:146 msgid "Last login" msgstr "Viimane login" -#: src/Module/Moderation/Users/Active.php:126 -#: src/Module/Moderation/Users/Blocked.php:126 -#: src/Module/Moderation/Users/Deleted.php:83 -#: src/Module/Moderation/Users/Index.php:140 -#: src/Module/Moderation/Users/Index.php:160 +#: src/Module/Moderation/Users/Active.php:112 +#: src/Module/Moderation/Users/Blocked.php:112 +#: src/Module/Moderation/Users/Deleted.php:69 +#: src/Module/Moderation/Users/Index.php:126 +#: src/Module/Moderation/Users/Index.php:146 msgid "Last public item" msgstr "" -#: src/Module/Moderation/Users/Active.php:134 +#: src/Module/Moderation/Users/Active.php:120 msgid "Active Accounts" msgstr "" -#: src/Module/Moderation/Users/Active.php:138 -#: src/Module/Moderation/Users/Blocked.php:137 -#: src/Module/Moderation/Users/Index.php:153 +#: src/Module/Moderation/Users/Active.php:124 +#: src/Module/Moderation/Users/Blocked.php:123 +#: src/Module/Moderation/Users/Index.php:139 msgid "User blocked" msgstr "" -#: src/Module/Moderation/Users/Active.php:139 -#: src/Module/Moderation/Users/Blocked.php:139 -#: src/Module/Moderation/Users/Index.php:155 +#: src/Module/Moderation/Users/Active.php:125 +#: src/Module/Moderation/Users/Blocked.php:125 +#: src/Module/Moderation/Users/Index.php:141 msgid "Site admin" msgstr "" -#: src/Module/Moderation/Users/Active.php:140 -#: src/Module/Moderation/Users/Blocked.php:140 -#: src/Module/Moderation/Users/Index.php:156 +#: src/Module/Moderation/Users/Active.php:126 +#: src/Module/Moderation/Users/Blocked.php:126 +#: src/Module/Moderation/Users/Index.php:142 msgid "Account expired" msgstr "" -#: src/Module/Moderation/Users/Active.php:141 -#: src/Module/Moderation/Users/Index.php:159 +#: src/Module/Moderation/Users/Active.php:127 +#: src/Module/Moderation/Users/Index.php:145 msgid "Create a new user" msgstr "" -#: src/Module/Moderation/Users/Active.php:147 -#: src/Module/Moderation/Users/Blocked.php:146 -#: src/Module/Moderation/Users/Index.php:165 +#: src/Module/Moderation/Users/Active.php:133 +#: src/Module/Moderation/Users/Blocked.php:132 +#: src/Module/Moderation/Users/Index.php:151 msgid "" "Selected users will be deleted!\\n\\nEverything these users had posted on " "this site will be permanently deleted!\\n\\nAre you sure?" msgstr "" -#: src/Module/Moderation/Users/Active.php:148 -#: src/Module/Moderation/Users/Blocked.php:147 -#: src/Module/Moderation/Users/Index.php:166 +#: src/Module/Moderation/Users/Active.php:134 +#: src/Module/Moderation/Users/Blocked.php:133 +#: src/Module/Moderation/Users/Index.php:152 msgid "" "The user {0} will be deleted!\\n\\nEverything this user has posted on this " "site will be permanently deleted!\\n\\nAre you sure?" msgstr "" -#: src/Module/Moderation/Users/Blocked.php:43 -#: src/Module/Moderation/Users/Index.php:50 +#: src/Module/Moderation/Users/Blocked.php:29 +#: src/Module/Moderation/Users/Index.php:36 #, php-format msgid "%s user unblocked" msgid_plural "%s users unblocked" msgstr[0] "" msgstr[1] "" -#: src/Module/Moderation/Users/Blocked.php:92 -#: src/Module/Moderation/Users/Index.php:106 +#: src/Module/Moderation/Users/Blocked.php:78 +#: src/Module/Moderation/Users/Index.php:92 #, php-format msgid "User \"%s\" unblocked" msgstr "" -#: src/Module/Moderation/Users/Blocked.php:134 +#: src/Module/Moderation/Users/Blocked.php:120 msgid "Blocked Users" msgstr "" -#: src/Module/Moderation/Users/Create.php:62 +#: src/Module/Moderation/Users/Create.php:48 msgid "New User" msgstr "" -#: src/Module/Moderation/Users/Create.php:63 +#: src/Module/Moderation/Users/Create.php:49 msgid "Add User" msgstr "Lisa kasutaja" -#: src/Module/Moderation/Users/Create.php:70 +#: src/Module/Moderation/Users/Create.php:56 msgid "Name of the new user." msgstr "" -#: src/Module/Moderation/Users/Create.php:71 +#: src/Module/Moderation/Users/Create.php:57 msgid "Nickname" msgstr "" -#: src/Module/Moderation/Users/Create.php:71 +#: src/Module/Moderation/Users/Create.php:57 msgid "Nickname of the new user." msgstr "" -#: src/Module/Moderation/Users/Create.php:72 +#: src/Module/Moderation/Users/Create.php:58 msgid "Email address of the new user." msgstr "" -#: src/Module/Moderation/Users/Deleted.php:81 +#: src/Module/Moderation/Users/Deleted.php:67 msgid "Users awaiting permanent deletion" msgstr "" -#: src/Module/Moderation/Users/Deleted.php:83 -#: src/Module/Moderation/Users/Index.php:160 +#: src/Module/Moderation/Users/Deleted.php:69 +#: src/Module/Moderation/Users/Index.php:146 msgid "Permanent deletion" msgstr "" -#: src/Module/Moderation/Users/Index.php:150 +#: src/Module/Moderation/Users/Index.php:136 msgid "User waiting for permanent deletion" msgstr "" -#: src/Module/Moderation/Users/Pending.php:44 +#: src/Module/Moderation/Users/Pending.php:30 #, php-format msgid "%s user approved" msgid_plural "%s users approved" msgstr[0] "" msgstr[1] "" -#: src/Module/Moderation/Users/Pending.php:51 +#: src/Module/Moderation/Users/Pending.php:37 #, php-format msgid "%s registration revoked" msgid_plural "%s registrations revoked" msgstr[0] "" msgstr[1] "" -#: src/Module/Moderation/Users/Pending.php:76 +#: src/Module/Moderation/Users/Pending.php:62 msgid "Account approved." msgstr "Konto heaks kiidetud:" -#: src/Module/Moderation/Users/Pending.php:82 +#: src/Module/Moderation/Users/Pending.php:68 msgid "Registration revoked" msgstr "" -#: src/Module/Moderation/Users/Pending.php:97 +#: src/Module/Moderation/Users/Pending.php:83 msgid "User registrations awaiting review" msgstr "" -#: src/Module/Moderation/Users/Pending.php:99 +#: src/Module/Moderation/Users/Pending.php:85 msgid "Request date" msgstr "" -#: src/Module/Moderation/Users/Pending.php:100 +#: src/Module/Moderation/Users/Pending.php:86 msgid "No registrations." msgstr "" -#: src/Module/Moderation/Users/Pending.php:101 +#: src/Module/Moderation/Users/Pending.php:87 msgid "Note from the user" msgstr "" -#: src/Module/Moderation/Users/Pending.php:103 +#: src/Module/Moderation/Users/Pending.php:89 msgid "Deny" msgstr "" -#: src/Module/Notifications/Introductions.php:99 +#: src/Module/Notifications/Introductions.php:91 msgid "Show Ignored Requests" msgstr "Näita ignoreeritud taotlusi" -#: src/Module/Notifications/Introductions.php:99 +#: src/Module/Notifications/Introductions.php:91 msgid "Hide Ignored Requests" msgstr "Peida ignoreeritud taotlused" -#: src/Module/Notifications/Introductions.php:115 -#: src/Module/Notifications/Introductions.php:178 +#: src/Module/Notifications/Introductions.php:107 +#: src/Module/Notifications/Introductions.php:170 msgid "Notification type:" msgstr "Teavituse tüüp:" -#: src/Module/Notifications/Introductions.php:118 +#: src/Module/Notifications/Introductions.php:110 msgid "Suggested by:" msgstr "Soovitas:" -#: src/Module/Notifications/Introductions.php:143 +#: src/Module/Notifications/Introductions.php:135 msgid "Claims to be known to you: " msgstr "Väidab, et on sulle tuttav:" #: src/Module/Notifications/Introductions.php:144 -#: src/Module/OAuth/Acknowledge.php:55 src/Module/Register.php:131 -#: src/Module/Settings/TwoFactor/Trusted.php:129 -msgid "No" -msgstr "" - -#: src/Module/Notifications/Introductions.php:152 msgid "Shall your connection be bidirectional or not?" msgstr "Kas teie ühendus on kahesuunaline või mitte?" -#: src/Module/Notifications/Introductions.php:153 +#: src/Module/Notifications/Introductions.php:145 #, php-format msgid "" "Accepting %s as a friend allows %s to subscribe to your posts, and you will " "also receive updates from them in your news feed." msgstr "Aktsepteerides %s oma sõbrana võimaldab %s tellida sinu postitusi ja saad nende uuendustest oma ajajoonele teavitusi. " -#: src/Module/Notifications/Introductions.php:154 +#: src/Module/Notifications/Introductions.php:146 #, php-format msgid "" "Accepting %s as a subscriber allows them to subscribe to your posts, but you" " will not receive updates from them in your news feed." msgstr "Aktsepteerides %s kui järgijat saavad nad tellida endale sinu postitusi, aga sa ei näe nende uuendusi oma ajajoonel. " -#: src/Module/Notifications/Introductions.php:156 +#: src/Module/Notifications/Introductions.php:148 msgid "Friend" msgstr "Sõber" -#: src/Module/Notifications/Introductions.php:157 +#: src/Module/Notifications/Introductions.php:149 msgid "Subscriber" msgstr "Jälgija" -#: src/Module/Notifications/Introductions.php:216 +#: src/Module/Notifications/Introductions.php:208 msgid "No introductions." msgstr "" -#: src/Module/Notifications/Introductions.php:217 -#: src/Module/Notifications/Notifications.php:135 +#: src/Module/Notifications/Introductions.php:209 +#: src/Module/Notifications/Notifications.php:127 #, php-format msgid "No more %s notifications." msgstr "Ei taha enam %s teateid. " -#: src/Module/Notifications/Notification.php:135 +#: src/Module/Notifications/Notification.php:121 msgid "You must be logged in to show this page." msgstr "" -#: src/Module/Notifications/Notifications.php:66 +#: src/Module/Notifications/Notifications.php:52 msgid "Network Notifications" msgstr "Võrgu teavitused" -#: src/Module/Notifications/Notifications.php:72 +#: src/Module/Notifications/Notifications.php:58 msgid "System Notifications" msgstr "Süsteemi teavitused" -#: src/Module/Notifications/Notifications.php:78 +#: src/Module/Notifications/Notifications.php:64 msgid "Personal Notifications" msgstr "Isiklikud teavitused" -#: src/Module/Notifications/Notifications.php:84 +#: src/Module/Notifications/Notifications.php:70 msgid "Home Notifications" msgstr "Kodu teavitused" -#: src/Module/Notifications/Notifications.php:140 +#: src/Module/Notifications/Notifications.php:132 msgid "Show unread" msgstr "Näita lugemata" -#: src/Module/Notifications/Ping.php:246 +#: src/Module/Notifications/Ping.php:206 msgid "{0} requested registration" msgstr "{0} taotleb registreerimist" -#: src/Module/Notifications/Ping.php:255 +#: src/Module/Notifications/Ping.php:215 #, php-format msgid "{0} and %d others requested registration" msgstr "" -#: src/Module/OAuth/Acknowledge.php:51 +#: src/Module/OAuth/Acknowledge.php:37 msgid "Authorize application connection" msgstr "" -#: src/Module/OAuth/Acknowledge.php:53 +#: src/Module/OAuth/Acknowledge.php:39 msgid "" "Do you want to authorize this application to access your posts and contacts," " and/or create new posts for you?" msgstr "" -#: src/Module/OAuth/Authorize.php:54 +#: src/Module/OAuth/Authorize.php:40 msgid "Unsupported or missing response type" msgstr "" -#: src/Module/OAuth/Authorize.php:59 src/Module/OAuth/Token.php:78 +#: src/Module/OAuth/Authorize.php:45 src/Module/OAuth/Token.php:61 msgid "Incomplete request data" msgstr "" -#: src/Module/OAuth/Authorize.php:106 +#: src/Module/OAuth/Authorize.php:92 #, php-format msgid "" "Please copy the following authentication code into your application and " "close this window: %s" msgstr "" -#: src/Module/OAuth/Token.php:83 +#: src/Module/OAuth/Token.php:66 msgid "Invalid data or unknown client" msgstr "" -#: src/Module/OAuth/Token.php:108 +#: src/Module/OAuth/Token.php:91 msgid "Unsupported or missing grant type" msgstr "" -#: src/Module/OStatus/Repair.php:83 -msgid "Resubscribing to OStatus contacts" -msgstr "" - -#: src/Module/OStatus/Repair.php:84 src/Module/OStatus/Subscribe.php:158 -msgid "Keep this window open until done." -msgstr "Hoia see aken lahti kuni kõik tehtud. " - -#: src/Module/OStatus/Repair.php:85 -msgid "✔ Done" -msgstr "" - -#: src/Module/OStatus/Repair.php:86 -msgid "No OStatus contacts to resubscribe to." -msgstr "" - -#: src/Module/OStatus/Subscribe.php:70 +#: src/Module/OStatus/Subscribe.php:58 msgid "Subscribing to contacts" msgstr "" -#: src/Module/OStatus/Subscribe.php:79 +#: src/Module/OStatus/Subscribe.php:67 msgid "No contact provided." msgstr "Kontakti ei esitletud. " -#: src/Module/OStatus/Subscribe.php:85 +#: src/Module/OStatus/Subscribe.php:73 msgid "Couldn't fetch information for contact." msgstr "Ei saanud infot kontakti tarbeks. " -#: src/Module/OStatus/Subscribe.php:96 +#: src/Module/OStatus/Subscribe.php:84 msgid "Couldn't fetch friends for contact." msgstr "Ei saanud sõbrainfot kontakti tarbeks. " -#: src/Module/OStatus/Subscribe.php:102 src/Module/OStatus/Subscribe.php:113 +#: src/Module/OStatus/Subscribe.php:90 src/Module/OStatus/Subscribe.php:101 msgid "Couldn't fetch following contacts." msgstr "" -#: src/Module/OStatus/Subscribe.php:108 +#: src/Module/OStatus/Subscribe.php:96 msgid "Couldn't fetch remote profile." msgstr "" -#: src/Module/OStatus/Subscribe.php:118 +#: src/Module/OStatus/Subscribe.php:106 msgid "Unsupported network" msgstr "" -#: src/Module/OStatus/Subscribe.php:134 +#: src/Module/OStatus/Subscribe.php:122 msgid "Done" msgstr "Tehtud" -#: src/Module/OStatus/Subscribe.php:148 +#: src/Module/OStatus/Subscribe.php:136 msgid "success" msgstr "edukas" -#: src/Module/OStatus/Subscribe.php:150 +#: src/Module/OStatus/Subscribe.php:138 msgid "failed" msgstr "ebaõnnestus" -#: src/Module/OStatus/Subscribe.php:153 +#: src/Module/OStatus/Subscribe.php:141 msgid "ignored" msgstr "ignoreeritud" -#: src/Module/PermissionTooltip.php:49 -#, php-format -msgid "Wrong type \"%s\", expected one of: %s" -msgstr "" +#: src/Module/OStatus/Subscribe.php:146 +msgid "Keep this window open until done." +msgstr "Hoia see aken lahti kuni kõik tehtud. " -#: src/Module/PermissionTooltip.php:79 -msgid "Model not found" -msgstr "" - -#: src/Module/PermissionTooltip.php:94 -msgid "Unlisted" -msgstr "" - -#: src/Module/PermissionTooltip.php:112 -msgid "Remote privacy information not available." -msgstr "Kaugturvainfo pole kättesaadav." - -#: src/Module/PermissionTooltip.php:120 -msgid "Visible to:" -msgstr "Nähtav: " - -#: src/Module/PermissionTooltip.php:214 -#, php-format -msgid "Collection (%s)" -msgstr "" - -#: src/Module/PermissionTooltip.php:218 -#, php-format -msgid "Followers (%s)" -msgstr "" - -#: src/Module/PermissionTooltip.php:237 -#, php-format -msgid "%d more" -msgstr "" - -#: src/Module/PermissionTooltip.php:241 -#, php-format -msgid "To: %s
" -msgstr "" - -#: src/Module/PermissionTooltip.php:244 -#, php-format -msgid "CC: %s
" -msgstr "" - -#: src/Module/PermissionTooltip.php:247 -#, php-format -msgid "BCC: %s
" -msgstr "" - -#: src/Module/PermissionTooltip.php:250 -#, php-format -msgid "Audience: %s
" -msgstr "" - -#: src/Module/PermissionTooltip.php:253 -#, php-format -msgid "Attributed To: %s
" -msgstr "" - -#: src/Module/Photo.php:130 +#: src/Module/Photo.php:108 msgid "The Photo is not available." msgstr "" -#: src/Module/Photo.php:155 +#: src/Module/Photo.php:133 #, php-format msgid "The Photo with id %s is not available." msgstr "" -#: src/Module/Photo.php:192 +#: src/Module/Photo.php:174 #, php-format msgid "Invalid external resource with url %s." msgstr "" -#: src/Module/Photo.php:194 +#: src/Module/Photo.php:176 #, php-format msgid "Invalid photo with id %s." msgstr "" -#: src/Module/Post/Edit.php:82 src/Module/Post/Edit.php:96 +#: src/Module/Post/Edit.php:68 src/Module/Post/Edit.php:82 msgid "Post not found." msgstr "" -#: src/Module/Post/Edit.php:102 +#: src/Module/Post/Edit.php:88 msgid "Edit post" msgstr "Muuda postitust" -#: src/Module/Post/Edit.php:136 +#: src/Module/Post/Edit.php:122 msgid "web link" msgstr "hüperlink" -#: src/Module/Post/Edit.php:137 +#: src/Module/Post/Edit.php:123 msgid "Insert video link" msgstr "Lisa videolink" -#: src/Module/Post/Edit.php:138 +#: src/Module/Post/Edit.php:124 msgid "video link" msgstr "videolink" -#: src/Module/Post/Edit.php:139 +#: src/Module/Post/Edit.php:125 msgid "Insert audio link" msgstr "Lisa audiolink" -#: src/Module/Post/Edit.php:140 +#: src/Module/Post/Edit.php:126 msgid "audio link" msgstr "audiolink" -#: src/Module/Post/Tag/Remove.php:106 +#: src/Module/Post/Tag/Remove.php:92 msgid "Remove Item Tag" msgstr "Eemalda elemendi Silt" -#: src/Module/Post/Tag/Remove.php:107 +#: src/Module/Post/Tag/Remove.php:93 msgid "Select a tag to remove: " msgstr "Vali tag mida eemaldada: " -#: src/Module/Post/Tag/Remove.php:108 -#: src/Module/Settings/TwoFactor/Trusted.php:147 +#: src/Module/Post/Tag/Remove.php:94 +#: src/Module/Settings/TwoFactor/Trusted.php:133 msgid "Remove" msgstr "Eemalda" -#: src/Module/Profile/Contacts.php:159 +#: src/Module/Privacy/PermissionTooltip.php:57 +#, php-format +msgid "Wrong type \"%s\", expected one of: %s" +msgstr "" + +#: src/Module/Privacy/PermissionTooltip.php:87 +msgid "Model not found" +msgstr "" + +#: src/Module/Privacy/PermissionTooltip.php:104 +msgid "Unlisted" +msgstr "" + +#: src/Module/Privacy/PermissionTooltip.php:110 +msgid "Remote privacy information not available." +msgstr "Kaugturvainfo pole kättesaadav." + +#: src/Module/Privacy/PermissionTooltip.php:117 +msgid "Visible to:" +msgstr "Nähtav: " + +#: src/Module/Privacy/PermissionTooltip.php:119 +msgid "CC:" +msgstr "" + +#: src/Module/Privacy/PermissionTooltip.php:120 +msgid "BCC:" +msgstr "" + +#: src/Module/Privacy/PermissionTooltip.php:121 +msgid "Audience:" +msgstr "" + +#: src/Module/Privacy/PermissionTooltip.php:122 +msgid "Attributed To:" +msgstr "" + +#: src/Module/Privacy/PermissionTooltip.php:220 +#, php-format +msgid "Collection (%s)" +msgstr "" + +#: src/Module/Privacy/PermissionTooltip.php:224 +#, php-format +msgid "Followers (%s)" +msgstr "" + +#: src/Module/Privacy/PermissionTooltip.php:241 +#, php-format +msgid "%d more" +msgstr "" + +#: src/Module/Profile/Contacts.php:145 msgid "No contacts." msgstr "Kontakte pole." -#: 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/Protocol/OStatus.php:1009 -#, php-format -msgid "%s's timeline" -msgstr "%s ajajoon" - -#: src/Module/Profile/Conversations.php:107 src/Module/Profile/Profile.php:352 -#: src/Protocol/Feed.php:1102 src/Protocol/OStatus.php:1014 +#: src/Module/Profile/Conversations.php:92 src/Module/Profile/Profile.php:339 +#: src/Protocol/Feed.php:1097 #, php-format msgid "%s's posts" msgstr "%s postitused" -#: src/Module/Profile/Conversations.php:108 src/Module/Profile/Profile.php:353 -#: src/Protocol/Feed.php:1105 src/Protocol/OStatus.php:1018 +#: src/Module/Profile/Conversations.php:93 src/Module/Profile/Profile.php:340 +#: src/Protocol/Feed.php:1100 #, php-format msgid "%s's comments" msgstr "%s kommentaarid" -#: 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/Conversations.php:94 src/Module/Profile/Profile.php:341 +#: src/Protocol/Feed.php:1093 +#, php-format +msgid "%s's timeline" +msgstr "%s ajajoon" + +#: src/Module/Profile/Photos.php:150 src/Module/Profile/Photos.php:153 +#: src/Module/Profile/Photos.php:178 +#: src/Module/Settings/Profile/Photo/Index.php:44 #, php-format msgid "Image exceeds size limit of %s" msgstr "Pilt ületab suuruse limiidi %s " -#: src/Module/Profile/Photos.php:170 +#: src/Module/Profile/Photos.php:156 msgid "Image upload didn't complete, please try again" msgstr "Pildi üleslaadimine ei lõppenud, palun ürita uuesti" -#: src/Module/Profile/Photos.php:173 +#: src/Module/Profile/Photos.php:159 msgid "Image file is missing" msgstr "Pildifail on puudu" -#: src/Module/Profile/Photos.php:178 +#: src/Module/Profile/Photos.php:164 msgid "" "Server can't accept new file upload at this time, please contact your " "administrator" msgstr "Server ei aktsepteeri hetkel uue faili üleslaadimist. Palun kontakteeru adminniga. " -#: src/Module/Profile/Photos.php:202 +#: src/Module/Profile/Photos.php:186 msgid "Image file is empty." msgstr "Pildifail on tühi" -#: src/Module/Profile/Photos.php:356 +#: src/Module/Profile/Photos.php:338 msgid "View Album" msgstr "Kuva Album" -#: src/Module/Profile/Profile.php:112 src/Module/Profile/Restricted.php:50 +#: src/Module/Profile/Profile.php:100 src/Module/Profile/Restricted.php:36 msgid "Profile not found." msgstr "Profiili ei leitud." -#: src/Module/Profile/Profile.php:158 +#: src/Module/Profile/Profile.php:146 #, php-format msgid "" "You're currently viewing your profile as %s Cancel" msgstr "" -#: src/Module/Profile/Profile.php:167 +#: src/Module/Profile/Profile.php:155 msgid "Full Name:" msgstr "Täielik nimi:" -#: src/Module/Profile/Profile.php:172 +#: src/Module/Profile/Profile.php:160 msgid "Member since:" msgstr "Liige alates: " -#: src/Module/Profile/Profile.php:178 +#: src/Module/Profile/Profile.php:166 msgid "j F, Y" msgstr "" -#: src/Module/Profile/Profile.php:179 +#: src/Module/Profile/Profile.php:167 msgid "j F" msgstr "" -#: src/Module/Profile/Profile.php:187 src/Util/Temporal.php:168 +#: src/Module/Profile/Profile.php:175 src/Util/Temporal.php:154 msgid "Birthday:" msgstr "Sünnipäev:" -#: src/Module/Profile/Profile.php:190 -#: src/Module/Settings/Profile/Index.php:291 src/Util/Temporal.php:170 +#: src/Module/Profile/Profile.php:178 +#: src/Module/Settings/Profile/Index.php:282 src/Util/Temporal.php:156 msgid "Age: " msgstr "Vanus:" -#: src/Module/Profile/Profile.php:190 -#: src/Module/Settings/Profile/Index.php:291 src/Util/Temporal.php:170 +#: src/Module/Profile/Profile.php:178 +#: src/Module/Settings/Profile/Index.php:282 src/Util/Temporal.php:156 #, php-format msgid "%d year old" msgid_plural "%d years old" msgstr[0] "" msgstr[1] "" -#: src/Module/Profile/Profile.php:195 -#: src/Module/Settings/Profile/Index.php:284 +#: src/Module/Profile/Profile.php:183 +#: src/Module/Settings/Profile/Index.php:275 msgid "Description:" msgstr "Kirjeldus:" -#: src/Module/Profile/Profile.php:261 +#: src/Module/Profile/Profile.php:249 msgid "Groups:" msgstr "" -#: src/Module/Profile/Profile.php:273 +#: src/Module/Profile/Profile.php:261 msgid "View profile as:" msgstr "" -#: src/Module/Profile/Profile.php:290 +#: src/Module/Profile/Profile.php:278 msgid "View as" msgstr "" -#: src/Module/Profile/RemoteFollow.php:82 +#: src/Module/Profile/RemoteFollow.php:68 msgid "Profile unavailable." msgstr "Profiil pole saadaval." -#: src/Module/Profile/RemoteFollow.php:88 +#: src/Module/Profile/RemoteFollow.php:74 msgid "Invalid locator" msgstr "" -#: src/Module/Profile/RemoteFollow.php:95 +#: src/Module/Profile/RemoteFollow.php:81 msgid "The provided profile link doesn't seem to be valid" msgstr "" -#: src/Module/Profile/RemoteFollow.php:100 +#: src/Module/Profile/RemoteFollow.php:86 msgid "" "Remote subscription can't be done for your network. Please subscribe " "directly on your system." msgstr "Kaugliitumist ei saa teostada Teie võrguga. Palun liituge otse oma süsteemis. " -#: src/Module/Profile/RemoteFollow.php:128 +#: src/Module/Profile/RemoteFollow.php:114 msgid "Friend/Connection Request" msgstr "Sõbra/Ühenduse taotlus" -#: src/Module/Profile/RemoteFollow.php:129 +#: src/Module/Profile/RemoteFollow.php:115 #, php-format msgid "" "Enter your Webfinger address (user@domain.tld) or profile URL here. If this " @@ -9198,575 +9252,579 @@ msgid "" " or %s directly on your system." msgstr "" -#: src/Module/Profile/RemoteFollow.php:130 +#: src/Module/Profile/RemoteFollow.php:116 #, php-format msgid "" "If you are not yet a member of the free social web, follow " "this link to find a public Friendica node and join us today." msgstr "" -#: src/Module/Profile/RemoteFollow.php:131 +#: src/Module/Profile/RemoteFollow.php:117 msgid "Your Webfinger address or profile URL:" msgstr "" -#: src/Module/Profile/Restricted.php:59 +#: src/Module/Profile/Restricted.php:45 msgid "Restricted profile" msgstr "" -#: src/Module/Profile/Restricted.php:60 +#: src/Module/Profile/Restricted.php:46 msgid "" "This profile has been restricted which prevents access to their public " "content from anonymous visitors." msgstr "" -#: src/Module/Profile/Schedule.php:83 +#: src/Module/Profile/Schedule.php:69 msgid "Scheduled" msgstr "" -#: src/Module/Profile/Schedule.php:84 +#: src/Module/Profile/Schedule.php:70 msgid "Content" msgstr "" -#: src/Module/Profile/Schedule.php:85 +#: src/Module/Profile/Schedule.php:71 msgid "Remove post" msgstr "" -#: src/Module/Register.php:84 +#: src/Module/Register.php:77 msgid "Only parent users can create additional accounts." msgstr "" -#: src/Module/Register.php:99 src/Module/User/Import.php:111 +#: src/Module/Register.php:92 src/Module/User/Import.php:98 msgid "" "This site has exceeded the number of allowed daily account registrations. " "Please try again tomorrow." msgstr "" -#: src/Module/Register.php:116 +#: src/Module/Register.php:109 msgid "" "You may (optionally) fill in this form via OpenID by supplying your OpenID " "and clicking \"Register\"." msgstr "" -#: src/Module/Register.php:117 +#: src/Module/Register.php:110 msgid "" "If you are not familiar with OpenID, please leave that field blank and fill " "in the rest of the items." msgstr "" -#: src/Module/Register.php:118 +#: src/Module/Register.php:111 msgid "Your OpenID (optional): " msgstr "" -#: src/Module/Register.php:127 +#: src/Module/Register.php:120 msgid "Include your profile in member directory?" msgstr "Lisame su profiili liikmete kataloogi?" -#: src/Module/Register.php:148 +#: src/Module/Register.php:141 msgid "Note for the admin" msgstr "Teade adminnile" -#: src/Module/Register.php:148 +#: src/Module/Register.php:141 msgid "Leave a message for the admin, why you want to join this node" msgstr "Jäta teade adminnile, miks soovid selle nodega liituda" -#: src/Module/Register.php:149 +#: src/Module/Register.php:142 msgid "Membership on this site is by invitation only." msgstr "Selle saidi liikmeks saab ainult kutsetega." -#: src/Module/Register.php:150 +#: src/Module/Register.php:143 msgid "Your invitation code: " msgstr "Sinu kutse kood:" -#: src/Module/Register.php:158 +#: src/Module/Register.php:151 msgid "Your Display Name (as you would like it to be displayed on this system" msgstr "" -#: src/Module/Register.php:159 +#: src/Module/Register.php:152 msgid "" "Your Email Address: (Initial information will be send there, so this has to " "be an existing address.)" msgstr "" -#: src/Module/Register.php:160 +#: src/Module/Register.php:153 msgid "Please repeat your e-mail address:" msgstr "" -#: src/Module/Register.php:162 src/Module/Security/PasswordTooLong.php:100 -#: src/Module/Settings/Account.php:557 +#: src/Module/Register.php:155 src/Module/Security/PasswordTooLong.php:86 +#: src/Module/Settings/Account.php:555 msgid "New Password:" msgstr "Uus parool" -#: src/Module/Register.php:162 +#: src/Module/Register.php:155 msgid "Leave empty for an auto generated password." msgstr "" -#: src/Module/Register.php:163 src/Module/Security/PasswordTooLong.php:101 -#: src/Module/Settings/Account.php:558 +#: src/Module/Register.php:156 src/Module/Security/PasswordTooLong.php:87 +#: src/Module/Settings/Account.php:556 msgid "Confirm:" msgstr "Kinnita:" -#: src/Module/Register.php:164 +#: src/Module/Register.php:157 #, php-format msgid "" "Choose a profile nickname. This must begin with a text character. Your " "profile address on this site will then be \"nickname@%s\"." msgstr "" -#: src/Module/Register.php:165 +#: src/Module/Register.php:158 msgid "Choose a nickname: " msgstr "" -#: src/Module/Register.php:173 src/Module/User/Import.php:117 +#: src/Module/Register.php:166 src/Module/User/Import.php:104 msgid "Import" msgstr "Impordi" -#: src/Module/Register.php:174 +#: src/Module/Register.php:167 msgid "Import your profile to this friendica instance" msgstr "" -#: src/Module/Register.php:181 +#: src/Module/Register.php:174 msgid "Note: This node explicitly contains adult content" msgstr "" -#: src/Module/Register.php:183 src/Module/Settings/Delegation.php:181 +#: src/Module/Register.php:176 src/Module/Settings/Delegation.php:167 msgid "Parent Password:" msgstr "Peaparool" -#: src/Module/Register.php:183 src/Module/Settings/Delegation.php:181 +#: src/Module/Register.php:176 src/Module/Settings/Delegation.php:167 msgid "" "Please enter the password of the parent account to legitimize your request." msgstr "Palun sisestage vanemkonto parool, et kinnitada oma päring." -#: src/Module/Register.php:212 +#: src/Module/Register.php:205 msgid "Password doesn't match." msgstr "" -#: src/Module/Register.php:218 +#: src/Module/Register.php:211 msgid "Please enter your password." msgstr "" -#: src/Module/Register.php:260 +#: src/Module/Register.php:253 msgid "You have entered too much information." msgstr "" -#: src/Module/Register.php:283 +#: src/Module/Register.php:276 msgid "Please enter the identical mail address in the second field." msgstr "" -#: src/Module/Register.php:291 +#: src/Module/Register.php:284 msgid "Nickname cannot start with a digit." msgstr "" -#: src/Module/Register.php:293 +#: src/Module/Register.php:286 msgid "Nickname can only contain US-ASCII characters." msgstr "" -#: src/Module/Register.php:322 +#: src/Module/Register.php:315 msgid "The additional account was created." msgstr "Lisakonto loodud" -#: src/Module/Register.php:347 +#: src/Module/Register.php:340 msgid "" "Registration successful. Please check your email for further instructions." msgstr "" -#: src/Module/Register.php:354 +#: src/Module/Register.php:347 #, php-format msgid "" "Failed to send email message. Here your accout details:
login: %s
" "password: %s

You can change your password after login." msgstr "" -#: src/Module/Register.php:360 +#: src/Module/Register.php:353 msgid "Registration successful." msgstr "" -#: src/Module/Register.php:369 src/Module/Register.php:376 -#: src/Module/Register.php:386 +#: src/Module/Register.php:362 src/Module/Register.php:369 +#: src/Module/Register.php:379 msgid "Your registration can not be processed." msgstr "" -#: src/Module/Register.php:375 +#: src/Module/Register.php:368 msgid "You have to leave a request note for the admin." msgstr "" -#: src/Module/Register.php:385 +#: src/Module/Register.php:378 msgid "An internal error occured." msgstr "" -#: src/Module/Register.php:407 +#: src/Module/Register.php:400 msgid "Your registration is pending approval by the site owner." msgstr "" -#: src/Module/Search/Acl.php:73 +#: src/Module/Search/Acl.php:64 msgid "You must be logged in to use this module." msgstr "" -#: src/Module/Search/Index.php:69 +#: src/Module/Search/Index.php:55 msgid "Only logged in users are permitted to perform a search." msgstr "Ainult sisselogitud kasutajad võivad otsingut kasutada." -#: src/Module/Search/Index.php:89 +#: src/Module/Search/Index.php:75 msgid "Only one search per minute is permitted for not logged in users." msgstr "Ainult üks otsing minuti kohta on sisselogimata kasutajatele lubatud. " -#: src/Module/Search/Index.php:205 +#: src/Module/Search/Index.php:191 #, php-format msgid "Items tagged with: %s" msgstr "Elemendid %s sildiga" -#: src/Module/Search/Saved.php:59 +#: src/Module/Search/Saved.php:49 msgid "Search term was not saved." msgstr "" -#: src/Module/Search/Saved.php:62 +#: src/Module/Search/Saved.php:52 msgid "Search term already saved." msgstr "" -#: src/Module/Search/Saved.php:68 +#: src/Module/Search/Saved.php:58 msgid "Search term was not removed." msgstr "" -#: src/Module/Security/Login.php:123 +#: src/Module/Security/Login.php:113 msgid "Create a New Account" msgstr "Loo uus konto" -#: src/Module/Security/Login.php:142 +#: src/Module/Security/Login.php:132 msgid "Your OpenID: " msgstr "" -#: src/Module/Security/Login.php:145 +#: src/Module/Security/Login.php:135 msgid "" "Please enter your username and password to add the OpenID to your existing " "account." msgstr "" -#: src/Module/Security/Login.php:147 +#: src/Module/Security/Login.php:137 msgid "Or login using OpenID: " msgstr "" -#: src/Module/Security/Login.php:161 +#: src/Module/Security/Login.php:151 msgid "Password: " msgstr "Parool:" -#: src/Module/Security/Login.php:162 +#: src/Module/Security/Login.php:152 msgid "Remember me" msgstr "Mäleta mind" -#: src/Module/Security/Login.php:171 +#: src/Module/Security/Login.php:161 msgid "Forgot your password?" msgstr "Unustasid parooli?" -#: src/Module/Security/Login.php:174 +#: src/Module/Security/Login.php:164 msgid "Website Terms of Service" msgstr "" -#: src/Module/Security/Login.php:175 +#: src/Module/Security/Login.php:165 msgid "terms of service" msgstr "" -#: src/Module/Security/Login.php:177 +#: src/Module/Security/Login.php:167 msgid "Website Privacy Policy" msgstr "" -#: src/Module/Security/Login.php:178 +#: src/Module/Security/Login.php:168 msgid "privacy policy" msgstr "" -#: src/Module/Security/Logout.php:84 -#: src/Module/Security/TwoFactor/SignOut.php:78 -#: src/Module/Security/TwoFactor/SignOut.php:86 -#: src/Module/Security/TwoFactor/SignOut.php:108 -#: src/Module/Security/TwoFactor/SignOut.php:115 +#: src/Module/Security/Logout.php:75 +#: src/Module/Security/TwoFactor/SignOut.php:64 +#: src/Module/Security/TwoFactor/SignOut.php:72 +#: src/Module/Security/TwoFactor/SignOut.php:94 +#: src/Module/Security/TwoFactor/SignOut.php:101 msgid "Logged out." msgstr "Välja logitud." -#: src/Module/Security/OpenID.php:54 +#: src/Module/Security/OpenID.php:40 msgid "OpenID protocol error. No ID returned" msgstr "" -#: src/Module/Security/OpenID.php:90 +#: src/Module/Security/OpenID.php:76 msgid "" "Account not found. Please login to your existing account to add the OpenID " "to it." msgstr "" -#: src/Module/Security/OpenID.php:92 +#: src/Module/Security/OpenID.php:78 msgid "" "Account not found. Please register a new account or login to your existing " "account to add the OpenID to it." msgstr "" -#: src/Module/Security/PasswordTooLong.php:57 -#: src/Module/Settings/Account.php:67 +#: src/Module/Security/PasswordTooLong.php:43 +#: src/Module/Settings/Account.php:53 msgid "Passwords do not match." msgstr "Paroolid ei kattu." -#: src/Module/Security/PasswordTooLong.php:64 +#: src/Module/Security/PasswordTooLong.php:50 msgid "Password does not need changing." msgstr "" -#: src/Module/Security/PasswordTooLong.php:77 -#: src/Module/Settings/Account.php:81 +#: src/Module/Security/PasswordTooLong.php:63 +#: src/Module/Settings/Account.php:67 msgid "Password unchanged." msgstr "Parool muutmata. " -#: src/Module/Security/PasswordTooLong.php:91 +#: src/Module/Security/PasswordTooLong.php:77 msgid "Password Too Long" msgstr "" -#: src/Module/Security/PasswordTooLong.php:92 +#: src/Module/Security/PasswordTooLong.php:78 msgid "" "Since version 2022.09, we've realized that any password longer than 72 " "characters is truncated during hashing. To prevent any confusion about this " "behavior, please update your password to be fewer or equal to 72 characters." msgstr "" -#: src/Module/Security/PasswordTooLong.php:93 +#: src/Module/Security/PasswordTooLong.php:79 msgid "Update Password" msgstr "" -#: src/Module/Security/PasswordTooLong.php:99 -#: src/Module/Settings/Account.php:559 +#: src/Module/Security/PasswordTooLong.php:85 +#: src/Module/Settings/Account.php:557 msgid "Current Password:" msgstr "Kehtiv parool" -#: src/Module/Security/PasswordTooLong.php:99 -#: src/Module/Settings/Account.php:559 +#: src/Module/Security/PasswordTooLong.php:85 +#: src/Module/Settings/Account.php:557 msgid "Your current password to confirm the changes" msgstr "Sinu kehtiv parool muutuste kinnitamiseks" -#: src/Module/Security/PasswordTooLong.php:100 -#: src/Module/Settings/Account.php:543 +#: src/Module/Security/PasswordTooLong.php:86 +#: src/Module/Settings/Account.php:541 msgid "" "Allowed characters are a-z, A-Z, 0-9 and special characters except white " "spaces and accentuated letters." msgstr "" -#: src/Module/Security/PasswordTooLong.php:100 -#: src/Module/Settings/Account.php:544 +#: src/Module/Security/PasswordTooLong.php:86 +#: src/Module/Settings/Account.php:542 msgid "Password length is limited to 72 characters." msgstr "" -#: src/Module/Security/TwoFactor/Recovery.php:74 +#: src/Module/Security/TwoFactor/Recovery.php:60 #, php-format msgid "Remaining recovery codes: %d" msgstr "" -#: src/Module/Security/TwoFactor/Recovery.php:80 -#: src/Module/Security/TwoFactor/Verify.php:77 -#: src/Module/Settings/TwoFactor/Verify.php:98 +#: src/Module/Security/TwoFactor/Recovery.php:66 +#: src/Module/Security/TwoFactor/Verify.php:63 +#: src/Module/Settings/TwoFactor/Verify.php:84 msgid "Invalid code, please retry." msgstr "" -#: src/Module/Security/TwoFactor/Recovery.php:99 +#: src/Module/Security/TwoFactor/Recovery.php:85 msgid "Two-factor recovery" msgstr "" -#: src/Module/Security/TwoFactor/Recovery.php:100 +#: src/Module/Security/TwoFactor/Recovery.php:86 msgid "" "

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

" msgstr "" -#: src/Module/Security/TwoFactor/Recovery.php:101 +#: src/Module/Security/TwoFactor/Recovery.php:87 #, php-format msgid "Don’t have your phone? Enter a two-factor recovery code" msgstr "" -#: src/Module/Security/TwoFactor/Recovery.php:102 +#: src/Module/Security/TwoFactor/Recovery.php:88 msgid "Please enter a recovery code" msgstr "" -#: src/Module/Security/TwoFactor/Recovery.php:103 +#: src/Module/Security/TwoFactor/Recovery.php:89 msgid "Submit recovery code and complete login" msgstr "" -#: src/Module/Security/TwoFactor/SignOut.php:122 +#: src/Module/Security/TwoFactor/SignOut.php:108 msgid "Sign out of this browser?" msgstr "" -#: src/Module/Security/TwoFactor/SignOut.php:123 +#: src/Module/Security/TwoFactor/SignOut.php:109 msgid "" "

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

" msgstr "" -#: src/Module/Security/TwoFactor/SignOut.php:124 +#: src/Module/Security/TwoFactor/SignOut.php:110 msgid "Sign out" msgstr "" -#: src/Module/Security/TwoFactor/SignOut.php:126 +#: src/Module/Security/TwoFactor/SignOut.php:112 msgid "Trust and sign out" msgstr "" -#: src/Module/Security/TwoFactor/Trust.php:96 +#: src/Module/Security/TwoFactor/Trust.php:82 msgid "Couldn't save browser to Cookie." msgstr "" -#: src/Module/Security/TwoFactor/Trust.php:141 +#: src/Module/Security/TwoFactor/Trust.php:127 msgid "Trust this browser?" msgstr "" -#: src/Module/Security/TwoFactor/Trust.php:142 +#: src/Module/Security/TwoFactor/Trust.php:128 msgid "" "

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

" msgstr "" -#: src/Module/Security/TwoFactor/Trust.php:143 +#: src/Module/Security/TwoFactor/Trust.php:129 msgid "Not now" msgstr "" -#: src/Module/Security/TwoFactor/Trust.php:144 +#: src/Module/Security/TwoFactor/Trust.php:130 msgid "Don't trust" msgstr "" -#: src/Module/Security/TwoFactor/Trust.php:145 +#: src/Module/Security/TwoFactor/Trust.php:131 msgid "Trust" msgstr "" -#: src/Module/Security/TwoFactor/Verify.php:97 +#: src/Module/Security/TwoFactor/Verify.php:83 msgid "" "

Open the two-factor authentication app on your device to get an " "authentication code and verify your identity.

" msgstr "" -#: src/Module/Security/TwoFactor/Verify.php:100 +#: src/Module/Security/TwoFactor/Verify.php:86 #, php-format msgid "" "If you do not have access to your authentication code you can use a two-factor recovery code." msgstr "" -#: src/Module/Security/TwoFactor/Verify.php:101 -#: src/Module/Settings/TwoFactor/Verify.php:158 +#: src/Module/Security/TwoFactor/Verify.php:87 +#: src/Module/Settings/TwoFactor/Verify.php:144 msgid "Please enter a code from your authentication app" msgstr "" -#: src/Module/Security/TwoFactor/Verify.php:102 +#: src/Module/Security/TwoFactor/Verify.php:88 msgid "Verify code and complete login" msgstr "" -#: src/Module/Settings/Account.php:96 +#: src/Module/Settings/Account.php:82 msgid "Please use a shorter name." msgstr "" -#: src/Module/Settings/Account.php:99 +#: src/Module/Settings/Account.php:85 msgid "Name too short." msgstr "" -#: src/Module/Settings/Account.php:108 +#: src/Module/Settings/Account.php:94 msgid "Wrong Password." msgstr "" -#: src/Module/Settings/Account.php:113 +#: src/Module/Settings/Account.php:99 msgid "Invalid email." msgstr "" -#: src/Module/Settings/Account.php:117 +#: src/Module/Settings/Account.php:103 msgid "Cannot change to that email." msgstr "" -#: src/Module/Settings/Account.php:146 src/Module/Settings/Account.php:195 -#: src/Module/Settings/Account.php:216 src/Module/Settings/Account.php:300 -#: src/Module/Settings/Account.php:329 +#: src/Module/Settings/Account.php:132 src/Module/Settings/Account.php:181 +#: src/Module/Settings/Account.php:202 src/Module/Settings/Account.php:286 +#: src/Module/Settings/Account.php:315 msgid "Settings were not updated." msgstr "" -#: src/Module/Settings/Account.php:342 +#: src/Module/Settings/Account.php:333 msgid "Contact CSV file upload error" msgstr "" -#: src/Module/Settings/Account.php:361 +#: src/Module/Settings/Account.php:352 msgid "Importing Contacts done" msgstr "" -#: src/Module/Settings/Account.php:374 +#: src/Module/Settings/Account.php:365 msgid "Relocate message has been send to your contacts" msgstr "" -#: src/Module/Settings/Account.php:391 +#: src/Module/Settings/Account.php:382 msgid "Unable to find your profile. Please contact your admin." msgstr "Ei leia sinu profiili. Palun kontakteeru adminniga. " -#: src/Module/Settings/Account.php:433 +#: src/Module/Settings/Account.php:424 msgid "" "Account for a service that automatically shares content based on user " "defined channels." msgstr "" -#: src/Module/Settings/Account.php:443 +#: src/Module/Settings/Account.php:434 msgid "Personal Page Subtypes" msgstr "Isikliku lehe alltüübid" -#: src/Module/Settings/Account.php:444 +#: src/Module/Settings/Account.php:435 msgid "Community Group Subtypes" msgstr "" -#: src/Module/Settings/Account.php:455 +#: src/Module/Settings/Account.php:446 msgid "Account for a personal profile." msgstr "Personaalse profiili konto." -#: src/Module/Settings/Account.php:462 +#: src/Module/Settings/Account.php:453 msgid "" "Account for an organisation that automatically approves contact requests as " "\"Followers\"." msgstr "Konto organisatsioonile, mis automaatselt kiidab kontaktitaotlused heaks kui \"Jälgijad\". " -#: src/Module/Settings/Account.php:469 +#: src/Module/Settings/Account.php:460 msgid "" "Account for a news reflector that automatically approves contact requests as" " \"Followers\"." msgstr "Uudistelevitaja konto, kes automaatselt kiidab kontaktitaotlused heaks kui \"Jälgijad\". " -#: src/Module/Settings/Account.php:476 +#: src/Module/Settings/Account.php:467 msgid "Account for community discussions." msgstr "Kogukondlike arutluste konto." -#: src/Module/Settings/Account.php:484 +#: src/Module/Settings/Account.php:475 msgid "" "Account for a regular personal profile that requires manual approval of " "\"Friends\" and \"Followers\"." msgstr "Tavalise inimese konto, mis nõuab \"Sõprade\" ja \"Jälgijate\" käsitsi heaks kiitmist. " -#: src/Module/Settings/Account.php:491 +#: src/Module/Settings/Account.php:482 msgid "" "Account for a public profile that automatically approves contact requests as" " \"Followers\"." msgstr "Avaliku profiili konto, mis kiidab automaatselt heaks kontaktitaotlused kui \"Jälgijad\". " -#: src/Module/Settings/Account.php:498 +#: src/Module/Settings/Account.php:489 msgid "Automatically approves all contact requests." msgstr "Kiidab automaatselt kõik kontaktitaotlused heaks. " -#: src/Module/Settings/Account.php:505 +#: src/Module/Settings/Account.php:496 +msgid "Contact requests have to be manually approved." +msgstr "" + +#: src/Module/Settings/Account.php:503 msgid "" "Account for a popular profile that automatically approves contact requests " "as \"Friends\"." msgstr "Kuulsuse profiili konto, mis kiidab automaatselt kontaktitaotlused heaks kui \"Sõbrad\". " -#: src/Module/Settings/Account.php:510 +#: src/Module/Settings/Account.php:508 msgid "Private Group [Experimental]" msgstr "" -#: src/Module/Settings/Account.php:512 +#: src/Module/Settings/Account.php:510 msgid "Requires manual approval of contact requests." msgstr "Nõuab käsitsi kontaktitaotluste heakskiitu. " -#: src/Module/Settings/Account.php:521 +#: src/Module/Settings/Account.php:519 msgid "OpenID:" msgstr "" -#: src/Module/Settings/Account.php:521 +#: src/Module/Settings/Account.php:519 msgid "(Optional) Allow this OpenID to login to this account." msgstr "" -#: src/Module/Settings/Account.php:529 +#: src/Module/Settings/Account.php:527 msgid "Publish your profile in your local site directory?" msgstr "" -#: src/Module/Settings/Account.php:529 +#: src/Module/Settings/Account.php:527 #, php-format msgid "" "Your profile will be published in this node's local " @@ -9774,94 +9832,94 @@ msgid "" " system settings." msgstr "" -#: src/Module/Settings/Account.php:535 +#: src/Module/Settings/Account.php:533 #, php-format msgid "" "Your profile will also be published in the global friendica directories " "(e.g. %s)." msgstr "" -#: src/Module/Settings/Account.php:548 +#: src/Module/Settings/Account.php:546 msgid "Account Settings" msgstr "Konto sätted" -#: src/Module/Settings/Account.php:549 +#: src/Module/Settings/Account.php:547 #, php-format msgid "Your Identity Address is '%s' or '%s'." msgstr "Sinu ID Aadress on '%s' või '%s'. " -#: src/Module/Settings/Account.php:556 +#: src/Module/Settings/Account.php:554 msgid "Password Settings" msgstr "Parooli sätted" -#: src/Module/Settings/Account.php:558 +#: src/Module/Settings/Account.php:556 msgid "Leave password fields blank unless changing" msgstr "Jäta väljad tühjaks kui sa ei muuda" -#: src/Module/Settings/Account.php:560 +#: src/Module/Settings/Account.php:558 msgid "Password:" msgstr "Parool:" -#: src/Module/Settings/Account.php:560 +#: src/Module/Settings/Account.php:558 msgid "Your current password to confirm the changes of the email address" msgstr "" -#: src/Module/Settings/Account.php:563 +#: src/Module/Settings/Account.php:561 msgid "Delete OpenID URL" msgstr "" -#: src/Module/Settings/Account.php:565 +#: src/Module/Settings/Account.php:563 msgid "Basic Settings" msgstr "Peamised sätted" -#: src/Module/Settings/Account.php:566 -#: src/Module/Settings/Profile/Index.php:283 +#: src/Module/Settings/Account.php:564 +#: src/Module/Settings/Profile/Index.php:274 msgid "Display name:" msgstr "" -#: src/Module/Settings/Account.php:567 +#: src/Module/Settings/Account.php:565 msgid "Email Address:" msgstr "E-posti aadress:" -#: src/Module/Settings/Account.php:568 +#: src/Module/Settings/Account.php:566 msgid "Your Timezone:" msgstr "Sinu ajatsoon:" -#: src/Module/Settings/Account.php:569 +#: src/Module/Settings/Account.php:567 msgid "Your Language:" msgstr "Sinu keel:" -#: src/Module/Settings/Account.php:569 +#: src/Module/Settings/Account.php:567 msgid "" "Set the language we use to show you friendica interface and to send you " "emails" msgstr "Vali keel friendica kuvamiseks ja sulle e-posti saatmiseks. " -#: src/Module/Settings/Account.php:570 +#: src/Module/Settings/Account.php:568 msgid "Default Post Location:" msgstr "Postitamise baasasukoht:" -#: src/Module/Settings/Account.php:571 +#: src/Module/Settings/Account.php:569 msgid "Use Browser Location:" msgstr "Kasuta sirviku asukohta:" -#: src/Module/Settings/Account.php:573 +#: src/Module/Settings/Account.php:571 msgid "Security and Privacy Settings" msgstr "Turva ja privaatsuse sätted" -#: src/Module/Settings/Account.php:575 +#: src/Module/Settings/Account.php:573 msgid "Maximum Friend Requests/Day:" msgstr "Maksimum sõbrakutseid/Päevas:" -#: src/Module/Settings/Account.php:575 +#: src/Module/Settings/Account.php:573 msgid "(to prevent spam abuse)" msgstr "(et rämpspost tõrjuda)" -#: src/Module/Settings/Account.php:577 +#: src/Module/Settings/Account.php:575 msgid "Allow your profile to be searchable globally?" msgstr "" -#: src/Module/Settings/Account.php:577 +#: src/Module/Settings/Account.php:575 msgid "" "Activate this setting if you want others to easily find and follow you. Your" " profile will be searchable on remote systems. This setting also determines " @@ -9869,43 +9927,43 @@ msgid "" "indexed or not." msgstr "" -#: src/Module/Settings/Account.php:578 +#: src/Module/Settings/Account.php:576 msgid "Hide your contact/friend list from viewers of your profile?" msgstr "" -#: src/Module/Settings/Account.php:578 +#: src/Module/Settings/Account.php:576 msgid "" "A list of your contacts is displayed on your profile page. Activate this " "option to disable the display of your contact list." msgstr "" -#: src/Module/Settings/Account.php:579 +#: src/Module/Settings/Account.php:577 msgid "Hide your public content from anonymous viewers" msgstr "" -#: src/Module/Settings/Account.php:579 +#: src/Module/Settings/Account.php:577 msgid "" "Anonymous visitors will only see your basic profile details. Your public " "posts and replies will still be freely accessible on the remote servers of " "your followers and through relays." msgstr "" -#: src/Module/Settings/Account.php:580 +#: src/Module/Settings/Account.php:578 msgid "Make public posts unlisted" msgstr "" -#: src/Module/Settings/Account.php:580 +#: src/Module/Settings/Account.php:578 msgid "" "Your public posts will not appear on the community pages or in search " "results, nor be sent to relay servers. However they can still appear on " "public feeds on remote servers." msgstr "" -#: src/Module/Settings/Account.php:581 +#: src/Module/Settings/Account.php:579 msgid "Make all posted pictures accessible" msgstr "" -#: src/Module/Settings/Account.php:581 +#: src/Module/Settings/Account.php:579 msgid "" "This option makes every posted picture accessible via the direct link. This " "is a workaround for the problem that most other networks can't handle " @@ -9913,352 +9971,352 @@ msgid "" "public on your photo albums though." msgstr "" -#: src/Module/Settings/Account.php:582 +#: src/Module/Settings/Account.php:580 msgid "Allow friends to post to your profile page?" msgstr "Kas lubada sõpradel sinu profiililehele postitada?" -#: src/Module/Settings/Account.php:582 +#: src/Module/Settings/Account.php:580 msgid "" "Your contacts may write posts on your profile wall. These posts will be " "distributed to your contacts" msgstr "Sinu kontaktid võivad postitada sinu profiili lehele. Need postitused edastatakse sinu kontaktidele" -#: src/Module/Settings/Account.php:583 +#: src/Module/Settings/Account.php:581 msgid "Allow friends to tag your posts?" msgstr "Kas lubada sõpradel sinu postitusi tag`ida?" -#: src/Module/Settings/Account.php:583 +#: src/Module/Settings/Account.php:581 msgid "Your contacts can add additional tags to your posts." msgstr "Sinu kontaktid saavad lisada täiendavaid silte su postitustele." -#: src/Module/Settings/Account.php:584 +#: src/Module/Settings/Account.php:582 msgid "Default privacy circle for new contacts" msgstr "" -#: src/Module/Settings/Account.php:585 +#: src/Module/Settings/Account.php:583 msgid "Default privacy circle for new group contacts" msgstr "" -#: src/Module/Settings/Account.php:586 +#: src/Module/Settings/Account.php:584 msgid "Default Post Permissions" msgstr "Postituste baasõigused" -#: src/Module/Settings/Account.php:590 +#: src/Module/Settings/Account.php:588 msgid "Expiration settings" msgstr "Aegumise sätted" -#: src/Module/Settings/Account.php:591 +#: src/Module/Settings/Account.php:589 msgid "Automatically expire posts after this many days:" msgstr "Märgi sõnumid automaatselt loetuks selle hulga päevade möödudes: " -#: src/Module/Settings/Account.php:591 +#: src/Module/Settings/Account.php:589 msgid "If empty, posts will not expire. Expired posts will be deleted" msgstr "Kui väli tühi, siis sõnumid ei aegu. Aegunud sõnumid kustutatakse" -#: src/Module/Settings/Account.php:592 +#: src/Module/Settings/Account.php:590 msgid "Expire posts" msgstr "" -#: src/Module/Settings/Account.php:592 +#: src/Module/Settings/Account.php:590 msgid "When activated, posts and comments will be expired." msgstr "" -#: src/Module/Settings/Account.php:593 +#: src/Module/Settings/Account.php:591 msgid "Expire personal notes" msgstr "" -#: src/Module/Settings/Account.php:593 +#: src/Module/Settings/Account.php:591 msgid "" "When activated, the personal notes on your profile page will be expired." msgstr "" -#: src/Module/Settings/Account.php:594 +#: src/Module/Settings/Account.php:592 msgid "Expire starred posts" msgstr "" -#: src/Module/Settings/Account.php:594 +#: src/Module/Settings/Account.php:592 msgid "" "Starring posts keeps them from being expired. That behaviour is overwritten " "by this setting." msgstr "" -#: src/Module/Settings/Account.php:595 +#: src/Module/Settings/Account.php:593 msgid "Only expire posts by others" msgstr "" -#: src/Module/Settings/Account.php:595 +#: src/Module/Settings/Account.php:593 msgid "" "When activated, your own posts never expire. Then the settings above are " "only valid for posts you received." msgstr "" -#: src/Module/Settings/Account.php:598 +#: src/Module/Settings/Account.php:596 msgid "Notification Settings" msgstr "Teadete sätted" -#: src/Module/Settings/Account.php:599 +#: src/Module/Settings/Account.php:597 msgid "Send a notification email when:" msgstr "Saada meiliteavitus kui:" -#: src/Module/Settings/Account.php:600 +#: src/Module/Settings/Account.php:598 msgid "You receive an introduction" msgstr "Sulle saabub tutvustus" -#: src/Module/Settings/Account.php:601 +#: src/Module/Settings/Account.php:599 msgid "Your introductions are confirmed" msgstr "Sinu tutvustused on kinnitatud" -#: src/Module/Settings/Account.php:602 +#: src/Module/Settings/Account.php:600 msgid "Someone writes on your profile wall" msgstr "Keegi kirjutab sinu profiili seinale" -#: src/Module/Settings/Account.php:603 +#: src/Module/Settings/Account.php:601 msgid "Someone writes a followup comment" msgstr "Keegi kirjutab järgneva kommentaari" -#: src/Module/Settings/Account.php:604 +#: src/Module/Settings/Account.php:602 msgid "You receive a private message" msgstr "Saabub privaatsõnum" -#: src/Module/Settings/Account.php:605 +#: src/Module/Settings/Account.php:603 msgid "You receive a friend suggestion" msgstr "Saabub sõbrasoovitus" -#: src/Module/Settings/Account.php:606 +#: src/Module/Settings/Account.php:604 msgid "You are tagged in a post" msgstr "Sind on postituses tag`itud" -#: src/Module/Settings/Account.php:608 +#: src/Module/Settings/Account.php:606 msgid "Create a desktop notification when:" msgstr "" -#: src/Module/Settings/Account.php:609 +#: src/Module/Settings/Account.php:607 msgid "Someone tagged you" msgstr "" -#: src/Module/Settings/Account.php:610 +#: src/Module/Settings/Account.php:608 msgid "Someone directly commented on your post" msgstr "" -#: src/Module/Settings/Account.php:611 +#: src/Module/Settings/Account.php:609 msgid "Someone liked your content" msgstr "" -#: src/Module/Settings/Account.php:611 src/Module/Settings/Account.php:612 +#: src/Module/Settings/Account.php:609 src/Module/Settings/Account.php:610 msgid "Can only be enabled, when the direct comment notification is enabled." msgstr "" -#: src/Module/Settings/Account.php:612 +#: src/Module/Settings/Account.php:610 msgid "Someone shared your content" msgstr "" -#: src/Module/Settings/Account.php:613 +#: src/Module/Settings/Account.php:611 msgid "Someone commented in your thread" msgstr "" -#: src/Module/Settings/Account.php:614 +#: src/Module/Settings/Account.php:612 msgid "Someone commented in a thread where you commented" msgstr "" -#: src/Module/Settings/Account.php:615 +#: src/Module/Settings/Account.php:613 msgid "Someone commented in a thread where you interacted" msgstr "" -#: src/Module/Settings/Account.php:617 +#: src/Module/Settings/Account.php:615 msgid "Activate desktop notifications" msgstr "Aktiveeri töölaua teavitused" -#: src/Module/Settings/Account.php:617 +#: src/Module/Settings/Account.php:615 msgid "Show desktop popup on new notifications" msgstr "Näita hüpikakent uute teadetega" -#: src/Module/Settings/Account.php:621 +#: src/Module/Settings/Account.php:619 msgid "Text-only notification emails" msgstr "Ainult tekstipõhised teavitusmeilid" -#: src/Module/Settings/Account.php:623 +#: src/Module/Settings/Account.php:621 msgid "Send text only notification emails, without the html part" msgstr "Saada ainut tekstimeile ilma html-ita" -#: src/Module/Settings/Account.php:627 +#: src/Module/Settings/Account.php:625 msgid "Show detailled notifications" msgstr "Kuva detailseid teavitusi" -#: src/Module/Settings/Account.php:629 +#: src/Module/Settings/Account.php:627 msgid "" "Per default, notifications are condensed to a single notification per item. " "When enabled every notification is displayed." msgstr "" -#: src/Module/Settings/Account.php:633 +#: src/Module/Settings/Account.php:631 msgid "Show notifications of ignored contacts" msgstr "" -#: src/Module/Settings/Account.php:635 +#: src/Module/Settings/Account.php:633 msgid "" "You don't see posts from ignored contacts. But you still see their comments." " This setting controls if you want to still receive regular notifications " "that are caused by ignored contacts or not." msgstr "" -#: src/Module/Settings/Account.php:638 +#: src/Module/Settings/Account.php:636 msgid "Advanced Account/Page Type Settings" msgstr "Konto/Lehetüübi sätted edasijõudnutele" -#: src/Module/Settings/Account.php:639 +#: src/Module/Settings/Account.php:637 msgid "Change the behaviour of this account for special situations" msgstr "" -#: src/Module/Settings/Account.php:642 +#: src/Module/Settings/Account.php:640 msgid "Import Contacts" msgstr "" -#: src/Module/Settings/Account.php:643 +#: src/Module/Settings/Account.php:641 msgid "" "Upload a CSV file that contains the handle of your followed accounts in the " "first column you exported from the old account." msgstr "" -#: src/Module/Settings/Account.php:644 +#: src/Module/Settings/Account.php:642 msgid "Upload File" msgstr "Lae fail üles" -#: src/Module/Settings/Account.php:647 +#: src/Module/Settings/Account.php:645 msgid "Relocate" msgstr "" -#: src/Module/Settings/Account.php:648 +#: src/Module/Settings/Account.php:646 msgid "" "If you have moved this profile from another server, and some of your " "contacts don't receive your updates, try pushing this button." msgstr "" -#: src/Module/Settings/Account.php:649 +#: src/Module/Settings/Account.php:647 msgid "Resend relocate message to contacts" msgstr "" -#: src/Module/Settings/Addons.php:86 +#: src/Module/Settings/Addons.php:72 msgid "Addon Settings" msgstr "Lisade sätted" -#: src/Module/Settings/Addons.php:87 +#: src/Module/Settings/Addons.php:73 msgid "No Addon settings configured" msgstr "" -#: src/Module/Settings/Channels.php:142 +#: src/Module/Settings/Channels.php:134 msgid "" "This page can be used to define the channels that will automatically be " "reshared by your account." msgstr "" -#: src/Module/Settings/Channels.php:147 +#: src/Module/Settings/Channels.php:139 msgid "This page can be used to define your own channels." msgstr "" -#: src/Module/Settings/Channels.php:176 +#: src/Module/Settings/Channels.php:168 msgid "Publish" msgstr "" -#: src/Module/Settings/Channels.php:176 +#: src/Module/Settings/Channels.php:168 msgid "" "When selected, the channel results are reshared. This only works for public " "ActivityPub posts from the public timeline or the user defined circles." msgstr "" -#: src/Module/Settings/Channels.php:184 src/Module/Settings/Channels.php:205 -#: src/Module/Settings/Display.php:338 +#: src/Module/Settings/Channels.php:176 src/Module/Settings/Channels.php:197 +#: src/Module/Settings/Display.php:324 msgid "Label" msgstr "" -#: src/Module/Settings/Channels.php:185 src/Module/Settings/Channels.php:206 -#: src/Module/Settings/Display.php:339 -#: src/Module/Settings/TwoFactor/AppSpecific.php:137 +#: src/Module/Settings/Channels.php:177 src/Module/Settings/Channels.php:198 +#: src/Module/Settings/Display.php:325 +#: src/Module/Settings/TwoFactor/AppSpecific.php:123 msgid "Description" msgstr "" -#: src/Module/Settings/Channels.php:186 src/Module/Settings/Channels.php:207 +#: src/Module/Settings/Channels.php:178 src/Module/Settings/Channels.php:199 msgid "Access Key" msgstr "" -#: src/Module/Settings/Channels.php:187 src/Module/Settings/Channels.php:208 +#: src/Module/Settings/Channels.php:179 src/Module/Settings/Channels.php:200 msgid "Circle/Channel" msgstr "" -#: src/Module/Settings/Channels.php:188 src/Module/Settings/Channels.php:209 +#: src/Module/Settings/Channels.php:180 src/Module/Settings/Channels.php:201 msgid "Include Tags" msgstr "" -#: src/Module/Settings/Channels.php:189 src/Module/Settings/Channels.php:210 +#: src/Module/Settings/Channels.php:181 src/Module/Settings/Channels.php:202 msgid "Exclude Tags" msgstr "" -#: src/Module/Settings/Channels.php:190 src/Module/Settings/Channels.php:211 +#: src/Module/Settings/Channels.php:182 src/Module/Settings/Channels.php:203 msgid "Minimum Size" msgstr "" -#: src/Module/Settings/Channels.php:191 src/Module/Settings/Channels.php:212 +#: src/Module/Settings/Channels.php:183 src/Module/Settings/Channels.php:204 msgid "Maximum Size" msgstr "" -#: src/Module/Settings/Channels.php:192 src/Module/Settings/Channels.php:213 +#: src/Module/Settings/Channels.php:184 src/Module/Settings/Channels.php:205 msgid "Full Text Search" msgstr "" -#: src/Module/Settings/Channels.php:196 src/Module/Settings/Channels.php:217 +#: src/Module/Settings/Channels.php:188 src/Module/Settings/Channels.php:209 msgid "Select all languages that you want to see in this channel." msgstr "" -#: src/Module/Settings/Channels.php:198 +#: src/Module/Settings/Channels.php:190 msgid "Delete channel" msgstr "" -#: src/Module/Settings/Channels.php:198 +#: src/Module/Settings/Channels.php:190 msgid "Check to delete this entry from the channel list" msgstr "" -#: src/Module/Settings/Channels.php:205 +#: src/Module/Settings/Channels.php:197 msgid "Short name for the channel. It is displayed on the channels widget." msgstr "" -#: src/Module/Settings/Channels.php:206 +#: src/Module/Settings/Channels.php:198 msgid "This should describe the content of the channel in a few word." msgstr "" -#: src/Module/Settings/Channels.php:207 +#: src/Module/Settings/Channels.php:199 msgid "" "When you want to access this channel via an access key, you can define it " "here. Pay attention to not use an already used one." msgstr "" -#: src/Module/Settings/Channels.php:208 +#: src/Module/Settings/Channels.php:200 msgid "Select a circle or channel, that your channel should be based on." msgstr "" -#: src/Module/Settings/Channels.php:209 +#: src/Module/Settings/Channels.php:201 msgid "" "Comma separated list of tags. A post will be used when it contains any of " "the listed tags." msgstr "" -#: src/Module/Settings/Channels.php:210 +#: src/Module/Settings/Channels.php:202 msgid "" "Comma separated list of tags. If a post contain any of these tags, then it " "will not be part of nthis channel." msgstr "" -#: src/Module/Settings/Channels.php:211 +#: src/Module/Settings/Channels.php:203 msgid "" "Minimum post size. Leave empty for no minimum size. The size is calculated " "without links, attached posts, mentions or hashtags." msgstr "" -#: src/Module/Settings/Channels.php:212 +#: src/Module/Settings/Channels.php:204 msgid "" "Maximum post size. Leave empty for no maximum size. The size is calculated " "without links, attached posts, mentions or hashtags." msgstr "" -#: src/Module/Settings/Channels.php:213 +#: src/Module/Settings/Channels.php:205 #, php-format msgid "" "Search terms for the body, supports the \"boolean mode\" operators from " @@ -10266,578 +10324,589 @@ msgid "" "keywords: %s" msgstr "" -#: src/Module/Settings/Channels.php:214 +#: src/Module/Settings/Channels.php:206 msgid "Check to display images in the channel." msgstr "" -#: src/Module/Settings/Channels.php:215 +#: src/Module/Settings/Channels.php:207 msgid "Check to display videos in the channel." msgstr "" -#: src/Module/Settings/Channels.php:216 +#: src/Module/Settings/Channels.php:208 msgid "Check to display audio in the channel." msgstr "" -#: src/Module/Settings/Channels.php:221 +#: src/Module/Settings/Channels.php:213 msgid "Add new entry to the channel list" msgstr "" -#: src/Module/Settings/Channels.php:222 +#: src/Module/Settings/Channels.php:214 msgid "Add" msgstr "Lisa" -#: src/Module/Settings/Channels.php:224 +#: src/Module/Settings/Channels.php:216 msgid "Current Entries in the channel list" msgstr "" -#: src/Module/Settings/Channels.php:227 +#: src/Module/Settings/Channels.php:219 msgid "Delete entry from the channel list" msgstr "" -#: src/Module/Settings/Channels.php:228 +#: src/Module/Settings/Channels.php:220 msgid "Delete entry from the channel list?" msgstr "" -#: src/Module/Settings/Connectors.php:120 +#: src/Module/Settings/Connectors.php:108 msgid "Failed to connect with email account using the settings provided." msgstr "E-posti kontoga ei õnnestu antud sätetega ühendust saada." -#: src/Module/Settings/Connectors.php:166 -#: src/Module/Settings/Connectors.php:167 +#: src/Module/Settings/Connectors.php:155 +#: src/Module/Settings/Connectors.php:156 msgid "Diaspora (Socialhome, Hubzilla)" msgstr "" -#: src/Module/Settings/Connectors.php:166 -#: src/Module/Settings/Connectors.php:170 +#: src/Module/Settings/Connectors.php:155 #, php-format msgid "Built-in support for %s connectivity is enabled" msgstr "" -#: src/Module/Settings/Connectors.php:167 -#: src/Module/Settings/Connectors.php:169 +#: src/Module/Settings/Connectors.php:156 #, php-format msgid "Built-in support for %s connectivity is disabled" msgstr "" -#: src/Module/Settings/Connectors.php:169 -#: src/Module/Settings/Connectors.php:170 -msgid "OStatus (GNU Social)" -msgstr "" - -#: src/Module/Settings/Connectors.php:182 +#: src/Module/Settings/Connectors.php:167 msgid "Email access is disabled on this site." msgstr "" -#: src/Module/Settings/Connectors.php:197 -#: src/Module/Settings/Connectors.php:244 +#: src/Module/Settings/Connectors.php:182 +#: src/Module/Settings/Connectors.php:233 msgid "None" msgstr "" -#: src/Module/Settings/Connectors.php:209 +#: src/Module/Settings/Connectors.php:186 +msgid "Default (Mastodon will display the title and a link to the post)" +msgstr "" + +#: src/Module/Settings/Connectors.php:187 +msgid "" +"Use the summary (Mastodon and some others will treat it as content warning)" +msgstr "" + +#: src/Module/Settings/Connectors.php:188 +msgid "Embed the title in the body" +msgstr "" + +#: src/Module/Settings/Connectors.php:199 msgid "General Social Media Settings" msgstr "Üldised sotsiaalmeedia sätted" -#: src/Module/Settings/Connectors.php:212 +#: src/Module/Settings/Connectors.php:202 msgid "Followed content scope" msgstr "" -#: src/Module/Settings/Connectors.php:214 +#: src/Module/Settings/Connectors.php:204 msgid "" "By default, conversations in which your follows participated but didn't " "start will be shown in your timeline. You can turn this behavior off, or " "expand it to the conversations in which your follows liked a post." msgstr "" -#: src/Module/Settings/Connectors.php:216 +#: src/Module/Settings/Connectors.php:206 msgid "Only conversations my follows started" msgstr "" -#: src/Module/Settings/Connectors.php:217 +#: src/Module/Settings/Connectors.php:207 msgid "Conversations my follows started or commented on (default)" msgstr "" -#: src/Module/Settings/Connectors.php:218 +#: src/Module/Settings/Connectors.php:208 msgid "Any conversation my follows interacted with, including likes" msgstr "" -#: src/Module/Settings/Connectors.php:221 -msgid "Enable Content Warning" +#: src/Module/Settings/Connectors.php:211 +msgid "Collapse sensitive posts" msgstr "" -#: src/Module/Settings/Connectors.php:221 +#: src/Module/Settings/Connectors.php:211 msgid "" -"Users on networks like Mastodon or Pleroma are able to set a content warning" -" field which collapse their post by default. This enables the automatic " -"collapsing instead of setting the content warning as the post title. Doesn't" -" affect any other content filtering you eventually set up." +"If a post is marked as \"sensitive\", it will be displayed in a collapsed " +"state, if this option is enabled." msgstr "" -#: src/Module/Settings/Connectors.php:222 +#: src/Module/Settings/Connectors.php:212 msgid "Enable intelligent shortening" msgstr "" -#: src/Module/Settings/Connectors.php:222 +#: src/Module/Settings/Connectors.php:212 msgid "" "Normally the system tries to find the best link to add to shortened posts. " "If disabled, every shortened post will always point to the original " "friendica post." msgstr "" -#: src/Module/Settings/Connectors.php:223 +#: src/Module/Settings/Connectors.php:213 msgid "Enable simple text shortening" msgstr "" -#: src/Module/Settings/Connectors.php:223 +#: src/Module/Settings/Connectors.php:213 msgid "" "Normally the system shortens posts at the next line feed. If this option is " "enabled then the system will shorten the text at the maximum character " "limit." msgstr "" -#: src/Module/Settings/Connectors.php:224 +#: src/Module/Settings/Connectors.php:214 msgid "Attach the link title" msgstr "" -#: src/Module/Settings/Connectors.php:224 +#: src/Module/Settings/Connectors.php:214 msgid "" "When activated, the title of the attached link will be added as a title on " "posts to Diaspora. This is mostly helpful with \"remote-self\" contacts that" " share feed content." msgstr "" -#: src/Module/Settings/Connectors.php:225 +#: src/Module/Settings/Connectors.php:215 msgid "API: Use spoiler field as title" msgstr "" -#: src/Module/Settings/Connectors.php:225 +#: src/Module/Settings/Connectors.php:215 msgid "" "When activated, the \"spoiler_text\" field in the API will be used for the " "title on standalone posts. When deactivated it will be used for spoiler " "text. For comments it will always be used for spoiler text." msgstr "" -#: src/Module/Settings/Connectors.php:226 +#: src/Module/Settings/Connectors.php:216 msgid "API: Automatically links at the end of the post as attached posts" msgstr "" -#: src/Module/Settings/Connectors.php:226 +#: src/Module/Settings/Connectors.php:216 msgid "" "When activated, added links at the end of the post react the same way as " "added links in the web interface." msgstr "" -#: src/Module/Settings/Connectors.php:227 +#: src/Module/Settings/Connectors.php:217 +msgid "Article Mode" +msgstr "" + +#: src/Module/Settings/Connectors.php:217 +msgid "" +"Controls how posts with titles are transmitted. Mastodon and its forks don't" +" display the content of these posts if the post is created in the correct " +"(default) way." +msgstr "" + +#: src/Module/Settings/Connectors.php:218 msgid "Your legacy ActivityPub/GNU Social account" msgstr "" -#: src/Module/Settings/Connectors.php:227 +#: src/Module/Settings/Connectors.php:218 msgid "" "If you enter your old account name from an ActivityPub based system or your " "GNU Social/Statusnet account name here (in the format user@domain.tld), your" " contacts will be added automatically. The field will be emptied when done." msgstr "" -#: src/Module/Settings/Connectors.php:229 -msgid "Repair OStatus subscriptions" -msgstr "" - -#: src/Module/Settings/Connectors.php:233 +#: src/Module/Settings/Connectors.php:222 msgid "Email/Mailbox Setup" msgstr "Emaili/Postkasti seadistamine" -#: src/Module/Settings/Connectors.php:234 +#: src/Module/Settings/Connectors.php:223 msgid "" "If you wish to communicate with email contacts using this service " "(optional), please specify how to connect to your mailbox." msgstr "Kui ühenduda kontaktidega meilitsi kasutades seda teenust (valikuline), siis palun täpsustage kuidas postkastiga ühenduda. " -#: src/Module/Settings/Connectors.php:235 +#: src/Module/Settings/Connectors.php:224 msgid "Last successful email check:" msgstr "Viimane õnnestunud meilikontroll: " -#: src/Module/Settings/Connectors.php:237 +#: src/Module/Settings/Connectors.php:226 msgid "IMAP server name:" msgstr "" -#: src/Module/Settings/Connectors.php:238 +#: src/Module/Settings/Connectors.php:227 msgid "IMAP port:" msgstr "" -#: src/Module/Settings/Connectors.php:239 +#: src/Module/Settings/Connectors.php:228 msgid "Security:" msgstr "" -#: src/Module/Settings/Connectors.php:240 +#: src/Module/Settings/Connectors.php:229 msgid "Email login name:" msgstr "" -#: src/Module/Settings/Connectors.php:241 +#: src/Module/Settings/Connectors.php:230 msgid "Email password:" msgstr "" -#: src/Module/Settings/Connectors.php:242 +#: src/Module/Settings/Connectors.php:231 msgid "Reply-to address:" msgstr "" -#: src/Module/Settings/Connectors.php:243 +#: src/Module/Settings/Connectors.php:232 msgid "Send public posts to all email contacts:" msgstr "" -#: src/Module/Settings/Connectors.php:244 +#: src/Module/Settings/Connectors.php:233 msgid "Action after import:" msgstr "Tegevus peale inporti:" -#: src/Module/Settings/Connectors.php:244 +#: src/Module/Settings/Connectors.php:233 msgid "Move to folder" msgstr "Liiguta kausta" -#: src/Module/Settings/Connectors.php:245 +#: src/Module/Settings/Connectors.php:234 msgid "Move to folder:" msgstr "Liiguta kausta:" -#: src/Module/Settings/Delegation.php:73 +#: src/Module/Settings/Delegation.php:59 msgid "Delegation successfully granted." msgstr "" -#: src/Module/Settings/Delegation.php:75 +#: src/Module/Settings/Delegation.php:61 msgid "Parent user not found, unavailable or password doesn't match." msgstr "" -#: src/Module/Settings/Delegation.php:79 +#: src/Module/Settings/Delegation.php:65 msgid "Delegation successfully revoked." msgstr "" -#: src/Module/Settings/Delegation.php:98 -#: src/Module/Settings/Delegation.php:120 +#: src/Module/Settings/Delegation.php:84 +#: src/Module/Settings/Delegation.php:106 msgid "" "Delegated administrators can view but not change delegation permissions." msgstr "" -#: src/Module/Settings/Delegation.php:112 +#: src/Module/Settings/Delegation.php:98 msgid "Delegate user not found." msgstr "" -#: src/Module/Settings/Delegation.php:169 +#: src/Module/Settings/Delegation.php:155 msgid "No parent user" msgstr "Vanemkasutajad ei ole" -#: src/Module/Settings/Delegation.php:180 -#: src/Module/Settings/Delegation.php:191 +#: src/Module/Settings/Delegation.php:166 +#: src/Module/Settings/Delegation.php:177 msgid "Parent User" msgstr "Vanemkasutaja" -#: src/Module/Settings/Delegation.php:188 +#: src/Module/Settings/Delegation.php:174 msgid "Additional Accounts" msgstr "Lisakontod" -#: src/Module/Settings/Delegation.php:189 +#: src/Module/Settings/Delegation.php:175 msgid "" "Register additional accounts that are automatically connected to your " "existing account so you can manage them from this account." msgstr "" -#: src/Module/Settings/Delegation.php:190 +#: src/Module/Settings/Delegation.php:176 msgid "Register an additional account" msgstr "" -#: src/Module/Settings/Delegation.php:192 +#: src/Module/Settings/Delegation.php:178 msgid "" "Parent users have total control about this account, including the account " "settings. Please double check whom you give this access." msgstr "Vanematel on täielik kontroll selle konto üle, kaasa arvatud konto sätted. Palun mõelge kaks korda enne, kui annate ligipääsu. " -#: src/Module/Settings/Delegation.php:195 +#: src/Module/Settings/Delegation.php:181 msgid "Delegates" msgstr "Delegaadid" -#: src/Module/Settings/Delegation.php:196 +#: src/Module/Settings/Delegation.php:182 msgid "" "Delegates are able to manage all aspects of this account/page except for " "basic account settings. Please do not delegate your personal account to " "anybody that you do not trust completely." msgstr "Delegaadid saavad manageerida kõiki selle konto/lehe aspekte v.a. konto baassätteid. Palun ärge delegeerige oma personaalset kontot mitte kellelegi, keda te täielikult ei usalda. " -#: src/Module/Settings/Delegation.php:197 +#: src/Module/Settings/Delegation.php:183 msgid "Existing Page Delegates" msgstr "Olemasolevad lehe Delegaadid" -#: src/Module/Settings/Delegation.php:198 +#: src/Module/Settings/Delegation.php:184 msgid "Potential Delegates" msgstr "Potsentsiaalsed lehe Delegaadid" -#: src/Module/Settings/Delegation.php:199 +#: src/Module/Settings/Delegation.php:185 msgid "No entries." msgstr "Kirjeid pole." -#: src/Module/Settings/Display.php:183 +#: src/Module/Settings/Display.php:169 msgid "The theme you chose isn't available." msgstr "" -#: src/Module/Settings/Display.php:223 +#: src/Module/Settings/Display.php:209 #, php-format msgid "%s - (Unsupported)" msgstr "%s - (Pole toetatud)" -#: src/Module/Settings/Display.php:260 +#: src/Module/Settings/Display.php:246 msgid "No preview" msgstr "" -#: src/Module/Settings/Display.php:261 +#: src/Module/Settings/Display.php:247 msgid "No image" msgstr "" -#: src/Module/Settings/Display.php:262 +#: src/Module/Settings/Display.php:248 msgid "Small Image" msgstr "" -#: src/Module/Settings/Display.php:263 +#: src/Module/Settings/Display.php:249 msgid "Large Image" msgstr "" -#: src/Module/Settings/Display.php:308 +#: src/Module/Settings/Display.php:294 msgid "Display Settings" msgstr "Kuvasätted" -#: src/Module/Settings/Display.php:310 +#: src/Module/Settings/Display.php:296 msgid "General Theme Settings" msgstr "Üldised teemasätted" -#: src/Module/Settings/Display.php:311 +#: src/Module/Settings/Display.php:297 msgid "Custom Theme Settings" msgstr "Kohandatud teema sätted" -#: src/Module/Settings/Display.php:312 +#: src/Module/Settings/Display.php:298 msgid "Content Settings" msgstr "Sisu sätted" -#: src/Module/Settings/Display.php:313 view/theme/duepuntozero/config.php:86 -#: view/theme/frio/config.php:172 view/theme/quattro/config.php:88 -#: view/theme/vier/config.php:136 +#: src/Module/Settings/Display.php:299 view/theme/duepuntozero/config.php:74 +#: view/theme/frio/config.php:139 view/theme/quattro/config.php:76 +#: view/theme/vier/config.php:124 msgid "Theme settings" msgstr "Teema sätted" -#: src/Module/Settings/Display.php:314 +#: src/Module/Settings/Display.php:300 msgid "Timelines" msgstr "" -#: src/Module/Settings/Display.php:321 +#: src/Module/Settings/Display.php:307 msgid "Display Theme:" msgstr "Kuvatateema:" -#: src/Module/Settings/Display.php:322 +#: src/Module/Settings/Display.php:308 msgid "Mobile Theme:" msgstr "Mobiilne teema:" -#: src/Module/Settings/Display.php:325 +#: src/Module/Settings/Display.php:311 msgid "Number of items to display per page:" msgstr "Elementide arv, mida lehel kuvatakse:" -#: src/Module/Settings/Display.php:325 src/Module/Settings/Display.php:326 +#: src/Module/Settings/Display.php:311 src/Module/Settings/Display.php:312 msgid "Maximum of 100 items" msgstr "Maksimaalselt 100 elementi" -#: src/Module/Settings/Display.php:326 +#: src/Module/Settings/Display.php:312 msgid "Number of items to display per page when viewed from mobile device:" msgstr "Mobiilse seadme puhul lehel kuvatav elementide arv:" -#: src/Module/Settings/Display.php:327 +#: src/Module/Settings/Display.php:313 msgid "Update browser every xx seconds" msgstr "Värskenda sirviku sisu iga xx sekundi tagant" -#: src/Module/Settings/Display.php:327 +#: src/Module/Settings/Display.php:313 msgid "Minimum of 10 seconds. Enter -1 to disable it." msgstr "Miinimum on 10 sekundit. Sisesta -1 väljalülitamiseks. " -#: src/Module/Settings/Display.php:328 +#: src/Module/Settings/Display.php:314 msgid "Display emoticons" msgstr "" -#: src/Module/Settings/Display.php:328 +#: src/Module/Settings/Display.php:314 msgid "When enabled, emoticons are replaced with matching symbols." msgstr "" -#: src/Module/Settings/Display.php:329 +#: src/Module/Settings/Display.php:315 msgid "Infinite scroll" msgstr "" -#: src/Module/Settings/Display.php:329 +#: src/Module/Settings/Display.php:315 msgid "Automatic fetch new items when reaching the page end." msgstr "" -#: src/Module/Settings/Display.php:330 +#: src/Module/Settings/Display.php:316 msgid "Enable Smart Threading" msgstr "" -#: src/Module/Settings/Display.php:330 +#: src/Module/Settings/Display.php:316 msgid "Enable the automatic suppression of extraneous thread indentation." msgstr "" -#: src/Module/Settings/Display.php:331 +#: src/Module/Settings/Display.php:317 msgid "Display the Dislike feature" msgstr "" -#: src/Module/Settings/Display.php:331 +#: src/Module/Settings/Display.php:317 msgid "" "Display the Dislike button and dislike reactions on posts and comments." msgstr "" -#: src/Module/Settings/Display.php:332 +#: src/Module/Settings/Display.php:318 msgid "Display the resharer" msgstr "Kuva taasjagaja" -#: src/Module/Settings/Display.php:332 +#: src/Module/Settings/Display.php:318 msgid "Display the first resharer as icon and text on a reshared item." msgstr "" -#: src/Module/Settings/Display.php:333 +#: src/Module/Settings/Display.php:319 msgid "Stay local" msgstr "" -#: src/Module/Settings/Display.php:333 +#: src/Module/Settings/Display.php:319 msgid "Don't go to a remote system when following a contact link." msgstr "" -#: src/Module/Settings/Display.php:334 +#: src/Module/Settings/Display.php:320 msgid "Show the post deletion checkbox" msgstr "" -#: src/Module/Settings/Display.php:334 +#: src/Module/Settings/Display.php:320 msgid "Display the checkbox for the post deletion on the network page." msgstr "" -#: src/Module/Settings/Display.php:335 +#: src/Module/Settings/Display.php:321 msgid "DIsplay the event list" msgstr "" -#: src/Module/Settings/Display.php:335 +#: src/Module/Settings/Display.php:321 msgid "Display the birthday reminder and event list on the network page." msgstr "" -#: src/Module/Settings/Display.php:336 +#: src/Module/Settings/Display.php:322 msgid "Link preview mode" msgstr "" -#: src/Module/Settings/Display.php:336 +#: src/Module/Settings/Display.php:322 msgid "Appearance of the link preview that is added to each post with a link." msgstr "" -#: src/Module/Settings/Display.php:341 +#: src/Module/Settings/Display.php:327 msgid "Bookmark" msgstr "" -#: src/Module/Settings/Display.php:343 +#: src/Module/Settings/Display.php:329 msgid "" "Enable timelines that you want to see in the channels widget. Bookmark " "timelines that you want to see in the top menu." msgstr "" -#: src/Module/Settings/Display.php:345 +#: src/Module/Settings/Display.php:331 msgid "Channel languages:" msgstr "" -#: src/Module/Settings/Display.php:345 +#: src/Module/Settings/Display.php:331 msgid "Select all languages that you want to see in your channels." msgstr "" -#: src/Module/Settings/Display.php:347 +#: src/Module/Settings/Display.php:333 msgid "Beginning of week:" msgstr "Nädala algus:" -#: src/Module/Settings/Display.php:348 +#: src/Module/Settings/Display.php:334 msgid "Default calendar view:" msgstr "" -#: src/Module/Settings/Features.php:74 +#: src/Module/Settings/Features.php:59 msgid "Additional Features" msgstr "Lisafunktsioonid" -#: src/Module/Settings/OAuth.php:71 +#: src/Module/Settings/OAuth.php:57 msgid "Connected Apps" msgstr "Ühendatud rakendused" -#: src/Module/Settings/OAuth.php:75 +#: src/Module/Settings/OAuth.php:61 msgid "Remove authorization" msgstr "" -#: src/Module/Settings/Profile/Index.php:116 +#: src/Module/Settings/Profile/Index.php:102 msgid "Display Name is required." msgstr "" -#: src/Module/Settings/Profile/Index.php:167 +#: src/Module/Settings/Profile/Index.php:156 msgid "Profile couldn't be updated." msgstr "" -#: src/Module/Settings/Profile/Index.php:205 -#: src/Module/Settings/Profile/Index.php:226 +#: src/Module/Settings/Profile/Index.php:196 +#: src/Module/Settings/Profile/Index.php:217 msgid "Label:" msgstr "" -#: src/Module/Settings/Profile/Index.php:206 -#: src/Module/Settings/Profile/Index.php:227 +#: src/Module/Settings/Profile/Index.php:197 +#: src/Module/Settings/Profile/Index.php:218 msgid "Value:" msgstr "" -#: src/Module/Settings/Profile/Index.php:217 -#: src/Module/Settings/Profile/Index.php:238 +#: src/Module/Settings/Profile/Index.php:208 +#: src/Module/Settings/Profile/Index.php:229 msgid "Field Permissions" msgstr "" -#: src/Module/Settings/Profile/Index.php:218 -#: src/Module/Settings/Profile/Index.php:239 +#: src/Module/Settings/Profile/Index.php:209 +#: src/Module/Settings/Profile/Index.php:230 msgid "(click to open/close)" msgstr "(klõpsa ava/sulge)" -#: src/Module/Settings/Profile/Index.php:224 +#: src/Module/Settings/Profile/Index.php:215 msgid "Add a new profile field" msgstr "" -#: src/Module/Settings/Profile/Index.php:247 +#: src/Module/Settings/Profile/Index.php:238 msgid "" "The homepage is verified. A rel=\"me\" link back to your Friendica profile " "page was found on the homepage." msgstr "" -#: src/Module/Settings/Profile/Index.php:249 +#: src/Module/Settings/Profile/Index.php:240 #, php-format msgid "" "To verify your homepage, add a rel=\"me\" link to it, pointing to your " "profile URL (%s)." msgstr "" -#: src/Module/Settings/Profile/Index.php:255 +#: src/Module/Settings/Profile/Index.php:246 msgid "Profile Actions" msgstr "Profiili tegevused" -#: src/Module/Settings/Profile/Index.php:256 +#: src/Module/Settings/Profile/Index.php:247 msgid "Edit Profile Details" msgstr "Muuda profiili detaile" -#: src/Module/Settings/Profile/Index.php:258 +#: src/Module/Settings/Profile/Index.php:249 msgid "Change Profile Photo" msgstr "Muud profiili foto" -#: src/Module/Settings/Profile/Index.php:261 +#: src/Module/Settings/Profile/Index.php:252 msgid "Profile picture" msgstr "Profiilipilt" -#: src/Module/Settings/Profile/Index.php:262 +#: src/Module/Settings/Profile/Index.php:253 msgid "Location" msgstr "Asukoht" -#: src/Module/Settings/Profile/Index.php:263 src/Util/Temporal.php:97 -#: src/Util/Temporal.php:99 +#: src/Module/Settings/Profile/Index.php:254 src/Util/Temporal.php:83 +#: src/Util/Temporal.php:85 msgid "Miscellaneous" msgstr "" -#: src/Module/Settings/Profile/Index.php:264 +#: src/Module/Settings/Profile/Index.php:255 msgid "Custom Profile Fields" msgstr "" -#: src/Module/Settings/Profile/Index.php:265 src/Module/Welcome.php:58 +#: src/Module/Settings/Profile/Index.php:256 src/Module/Welcome.php:44 msgid "Upload Profile Photo" msgstr "Lae üles profiilifoto" -#: src/Module/Settings/Profile/Index.php:266 +#: src/Module/Settings/Profile/Index.php:257 #, php-format msgid "" "

Custom fields appear on your profile page.

\n" @@ -10847,396 +10916,396 @@ msgid "" "\t\t\t\t

Non-public fields can only be seen by the selected Friendica contacts or the Friendica contacts in the selected circles.

" msgstr "" -#: src/Module/Settings/Profile/Index.php:286 +#: src/Module/Settings/Profile/Index.php:277 msgid "Street Address:" msgstr "Tänava aadress:" -#: src/Module/Settings/Profile/Index.php:287 +#: src/Module/Settings/Profile/Index.php:278 msgid "Locality/City:" msgstr "Asupaik/Linn:" -#: src/Module/Settings/Profile/Index.php:288 +#: src/Module/Settings/Profile/Index.php:279 msgid "Region/State:" msgstr "Regioon/Maakond:" -#: src/Module/Settings/Profile/Index.php:289 +#: src/Module/Settings/Profile/Index.php:280 msgid "Postal/Zip Code:" msgstr "Postiindeks:" -#: src/Module/Settings/Profile/Index.php:290 +#: src/Module/Settings/Profile/Index.php:281 msgid "Country:" msgstr "Riik:" -#: src/Module/Settings/Profile/Index.php:292 +#: src/Module/Settings/Profile/Index.php:283 msgid "XMPP (Jabber) address:" msgstr "" -#: src/Module/Settings/Profile/Index.php:292 +#: src/Module/Settings/Profile/Index.php:283 msgid "" "The XMPP address will be published so that people can follow you there." msgstr "" -#: src/Module/Settings/Profile/Index.php:293 +#: src/Module/Settings/Profile/Index.php:284 msgid "Matrix (Element) address:" msgstr "" -#: src/Module/Settings/Profile/Index.php:293 +#: src/Module/Settings/Profile/Index.php:284 msgid "" "The Matrix address will be published so that people can follow you there." msgstr "" -#: src/Module/Settings/Profile/Index.php:294 +#: src/Module/Settings/Profile/Index.php:285 msgid "Homepage URL:" msgstr "Kodulehe URL: " -#: src/Module/Settings/Profile/Index.php:295 +#: src/Module/Settings/Profile/Index.php:286 msgid "Public Keywords:" msgstr "Avalikud märksõnad:" -#: src/Module/Settings/Profile/Index.php:295 +#: src/Module/Settings/Profile/Index.php:286 msgid "(Used for suggesting potential friends, can be seen by others)" msgstr "(kasutatakse soovitamaks potentsiaalseid sõpru ja on teistele nähtav)" -#: src/Module/Settings/Profile/Index.php:296 +#: src/Module/Settings/Profile/Index.php:287 msgid "Private Keywords:" msgstr "Privaatsed märksõnad:" -#: src/Module/Settings/Profile/Index.php:296 +#: src/Module/Settings/Profile/Index.php:287 msgid "(Used for searching profiles, never shown to others)" msgstr "(Kasutused profiilide otsingul, ei näidata mitte kunagi teistele)" -#: 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/Crop.php:93 +#: src/Module/Settings/Profile/Photo/Crop.php:111 +#: src/Module/Settings/Profile/Photo/Crop.php:129 +#: src/Module/Settings/Profile/Photo/Index.php:86 #, php-format msgid "Image size reduction [%s] failed." msgstr "Pildi suuruse vähendamine [%s] nurjus. " -#: src/Module/Settings/Profile/Photo/Crop.php:150 +#: src/Module/Settings/Profile/Photo/Crop.php:136 msgid "" "Shift-reload the page or clear browser cache if the new photo does not " "display immediately." msgstr "" -#: src/Module/Settings/Profile/Photo/Crop.php:155 +#: src/Module/Settings/Profile/Photo/Crop.php:141 msgid "Unable to process image" msgstr "Ei saa pilti töödelda" -#: src/Module/Settings/Profile/Photo/Crop.php:174 +#: src/Module/Settings/Profile/Photo/Crop.php:160 msgid "Photo not found." msgstr "" -#: src/Module/Settings/Profile/Photo/Crop.php:196 +#: src/Module/Settings/Profile/Photo/Crop.php:182 msgid "Profile picture successfully updated." msgstr "" -#: src/Module/Settings/Profile/Photo/Crop.php:222 -#: src/Module/Settings/Profile/Photo/Crop.php:226 +#: src/Module/Settings/Profile/Photo/Crop.php:208 +#: src/Module/Settings/Profile/Photo/Crop.php:212 msgid "Crop Image" msgstr "Vähenda pilti" -#: src/Module/Settings/Profile/Photo/Crop.php:223 +#: src/Module/Settings/Profile/Photo/Crop.php:209 msgid "Please adjust the image cropping for optimum viewing." msgstr "Palun säti pildi vähendamine optimaalseks kuvamiseks." -#: src/Module/Settings/Profile/Photo/Crop.php:225 +#: src/Module/Settings/Profile/Photo/Crop.php:211 msgid "Use Image As Is" msgstr "" -#: src/Module/Settings/Profile/Photo/Index.php:46 +#: src/Module/Settings/Profile/Photo/Index.php:32 msgid "Missing uploaded image." msgstr "" -#: src/Module/Settings/Profile/Photo/Index.php:125 +#: src/Module/Settings/Profile/Photo/Index.php:109 msgid "Profile Picture Settings" msgstr "" -#: src/Module/Settings/Profile/Photo/Index.php:126 +#: src/Module/Settings/Profile/Photo/Index.php:110 msgid "Current Profile Picture" msgstr "" -#: src/Module/Settings/Profile/Photo/Index.php:127 +#: src/Module/Settings/Profile/Photo/Index.php:111 msgid "Upload Profile Picture" msgstr "" -#: src/Module/Settings/Profile/Photo/Index.php:128 +#: src/Module/Settings/Profile/Photo/Index.php:112 msgid "Upload Picture:" msgstr "" -#: src/Module/Settings/Profile/Photo/Index.php:133 +#: src/Module/Settings/Profile/Photo/Index.php:117 msgid "or" msgstr "või " -#: src/Module/Settings/Profile/Photo/Index.php:135 +#: src/Module/Settings/Profile/Photo/Index.php:119 msgid "skip this step" msgstr "jäta vahele" -#: src/Module/Settings/Profile/Photo/Index.php:137 +#: src/Module/Settings/Profile/Photo/Index.php:121 msgid "select a photo from your photo albums" msgstr "vali foto oma albumitest" -#: src/Module/Settings/RemoveMe.php:76 +#: src/Module/Settings/RemoveMe.php:62 msgid "" "There was a validation error, please make sure you're logged in with the " "account you want to remove and try again." msgstr "" -#: src/Module/Settings/RemoveMe.php:76 +#: src/Module/Settings/RemoveMe.php:62 msgid "If this error persists, please contact your administrator." msgstr "" -#: src/Module/Settings/RemoveMe.php:90 -#: src/Navigation/Notifications/Repository/Notify.php:471 -#: src/Navigation/Notifications/Repository/Notify.php:492 +#: src/Module/Settings/RemoveMe.php:76 +#: src/Navigation/Notifications/Repository/Notify.php:457 +#: src/Navigation/Notifications/Repository/Notify.php:478 msgid "[Friendica System Notify]" msgstr "[Friendica süsteemiteade]" -#: src/Module/Settings/RemoveMe.php:90 +#: src/Module/Settings/RemoveMe.php:76 msgid "User deleted their account" msgstr "Kasutaja kustutas oma konto" -#: src/Module/Settings/RemoveMe.php:91 +#: src/Module/Settings/RemoveMe.php:77 msgid "" "On your Friendica node an user deleted their account. Please ensure that " "their data is removed from the backups." msgstr "" -#: src/Module/Settings/RemoveMe.php:92 +#: src/Module/Settings/RemoveMe.php:78 #, php-format msgid "The user id is %d" msgstr "Kasutajatunnud on %d " -#: src/Module/Settings/RemoveMe.php:105 +#: src/Module/Settings/RemoveMe.php:91 msgid "Your account has been successfully removed. Bye bye!" msgstr "" -#: src/Module/Settings/RemoveMe.php:130 +#: src/Module/Settings/RemoveMe.php:116 msgid "Remove My Account" msgstr "Eemalda Minu Konto" -#: src/Module/Settings/RemoveMe.php:131 +#: src/Module/Settings/RemoveMe.php:117 msgid "" "This will completely remove your account. Once this has been done it is not " "recoverable." msgstr "See eemaldab sinu konto täielikult. Kui kord tehtud, siis taastada ei saa. " -#: src/Module/Settings/RemoveMe.php:136 +#: src/Module/Settings/RemoveMe.php:122 msgid "Please enter your password for verification:" msgstr "Palun sisesta oma parool kontrollimiseks:" -#: src/Module/Settings/Server/Action.php:60 +#: src/Module/Settings/Server/Action.php:46 msgid "Do you want to ignore this server?" msgstr "" -#: src/Module/Settings/Server/Action.php:64 +#: src/Module/Settings/Server/Action.php:50 msgid "Do you want to unignore this server?" msgstr "" -#: src/Module/Settings/Server/Action.php:74 -#: src/Module/Settings/Server/Index.php:104 +#: src/Module/Settings/Server/Action.php:60 +#: src/Module/Settings/Server/Index.php:90 msgid "Remote server settings" msgstr "" -#: src/Module/Settings/Server/Action.php:77 +#: src/Module/Settings/Server/Action.php:63 msgid "Server URL" msgstr "" -#: src/Module/Settings/Server/Index.php:78 +#: src/Module/Settings/Server/Index.php:64 msgid "Settings saved" msgstr "" -#: src/Module/Settings/Server/Index.php:105 +#: src/Module/Settings/Server/Index.php:91 msgid "" "Here you can find all the remote servers you have taken individual " "moderation actions against. For a list of servers your node has blocked, " "please check out the Information page." msgstr "" -#: src/Module/Settings/Server/Index.php:110 +#: src/Module/Settings/Server/Index.php:96 msgid "Delete all your settings for the remote server" msgstr "" -#: src/Module/Settings/Server/Index.php:111 +#: src/Module/Settings/Server/Index.php:97 msgid "Save changes" msgstr "" -#: src/Module/Settings/TwoFactor/AppSpecific.php:69 -#: src/Module/Settings/TwoFactor/Recovery.php:67 -#: src/Module/Settings/TwoFactor/Trusted.php:70 -#: src/Module/Settings/TwoFactor/Verify.php:72 +#: src/Module/Settings/TwoFactor/AppSpecific.php:55 +#: src/Module/Settings/TwoFactor/Recovery.php:53 +#: src/Module/Settings/TwoFactor/Trusted.php:56 +#: src/Module/Settings/TwoFactor/Verify.php:58 msgid "Please enter your password to access this page." msgstr "" -#: src/Module/Settings/TwoFactor/AppSpecific.php:87 +#: src/Module/Settings/TwoFactor/AppSpecific.php:73 msgid "App-specific password generation failed: The description is empty." msgstr "" -#: src/Module/Settings/TwoFactor/AppSpecific.php:90 +#: src/Module/Settings/TwoFactor/AppSpecific.php:76 msgid "" "App-specific password generation failed: This description already exists." msgstr "" -#: src/Module/Settings/TwoFactor/AppSpecific.php:94 +#: src/Module/Settings/TwoFactor/AppSpecific.php:80 msgid "New app-specific password generated." msgstr "" -#: src/Module/Settings/TwoFactor/AppSpecific.php:100 +#: src/Module/Settings/TwoFactor/AppSpecific.php:86 msgid "App-specific passwords successfully revoked." msgstr "" -#: src/Module/Settings/TwoFactor/AppSpecific.php:110 +#: src/Module/Settings/TwoFactor/AppSpecific.php:96 msgid "App-specific password successfully revoked." msgstr "" -#: src/Module/Settings/TwoFactor/AppSpecific.php:131 +#: src/Module/Settings/TwoFactor/AppSpecific.php:117 msgid "Two-factor app-specific passwords" msgstr "" -#: src/Module/Settings/TwoFactor/AppSpecific.php:133 +#: src/Module/Settings/TwoFactor/AppSpecific.php:119 msgid "" "

App-specific passwords are randomly generated passwords used instead your" " regular password to authenticate your account on third-party applications " "that don't support two-factor authentication.

" msgstr "" -#: src/Module/Settings/TwoFactor/AppSpecific.php:134 +#: src/Module/Settings/TwoFactor/AppSpecific.php:120 msgid "" "Make sure to copy your new app-specific password now. You won’t be able to " "see it again!" msgstr "" -#: src/Module/Settings/TwoFactor/AppSpecific.php:138 +#: src/Module/Settings/TwoFactor/AppSpecific.php:124 msgid "Last Used" msgstr "" -#: src/Module/Settings/TwoFactor/AppSpecific.php:139 +#: src/Module/Settings/TwoFactor/AppSpecific.php:125 msgid "Revoke" msgstr "" -#: src/Module/Settings/TwoFactor/AppSpecific.php:140 +#: src/Module/Settings/TwoFactor/AppSpecific.php:126 msgid "Revoke All" msgstr "" -#: src/Module/Settings/TwoFactor/AppSpecific.php:143 +#: src/Module/Settings/TwoFactor/AppSpecific.php:129 msgid "" "When you generate a new app-specific password, you must use it right away, " "it will be shown to you once after you generate it." msgstr "" -#: src/Module/Settings/TwoFactor/AppSpecific.php:144 +#: src/Module/Settings/TwoFactor/AppSpecific.php:130 msgid "Generate new app-specific password" msgstr "" -#: src/Module/Settings/TwoFactor/AppSpecific.php:145 +#: src/Module/Settings/TwoFactor/AppSpecific.php:131 msgid "Friendiqa on my Fairphone 2..." msgstr "" -#: src/Module/Settings/TwoFactor/AppSpecific.php:146 +#: src/Module/Settings/TwoFactor/AppSpecific.php:132 msgid "Generate" msgstr "" -#: src/Module/Settings/TwoFactor/Index.php:88 +#: src/Module/Settings/TwoFactor/Index.php:74 msgid "Two-factor authentication successfully disabled." msgstr "" -#: src/Module/Settings/TwoFactor/Index.php:141 +#: src/Module/Settings/TwoFactor/Index.php:127 msgid "" "

Use an application on a mobile device to get two-factor authentication " "codes when prompted on login.

" msgstr "" -#: src/Module/Settings/TwoFactor/Index.php:145 +#: src/Module/Settings/TwoFactor/Index.php:131 msgid "Authenticator app" msgstr "" -#: src/Module/Settings/TwoFactor/Index.php:146 +#: src/Module/Settings/TwoFactor/Index.php:132 msgid "Configured" msgstr "" -#: src/Module/Settings/TwoFactor/Index.php:146 +#: src/Module/Settings/TwoFactor/Index.php:132 msgid "Not Configured" msgstr "" -#: src/Module/Settings/TwoFactor/Index.php:147 +#: src/Module/Settings/TwoFactor/Index.php:133 msgid "

You haven't finished configuring your authenticator app.

" msgstr "" -#: src/Module/Settings/TwoFactor/Index.php:148 +#: src/Module/Settings/TwoFactor/Index.php:134 msgid "

Your authenticator app is correctly configured.

" msgstr "" -#: src/Module/Settings/TwoFactor/Index.php:150 +#: src/Module/Settings/TwoFactor/Index.php:136 msgid "Recovery codes" msgstr "" -#: src/Module/Settings/TwoFactor/Index.php:151 +#: src/Module/Settings/TwoFactor/Index.php:137 msgid "Remaining valid codes" msgstr "" -#: src/Module/Settings/TwoFactor/Index.php:153 +#: src/Module/Settings/TwoFactor/Index.php:139 msgid "" "

These one-use codes can replace an authenticator app code in case you " "have lost access to it.

" msgstr "" -#: src/Module/Settings/TwoFactor/Index.php:155 +#: src/Module/Settings/TwoFactor/Index.php:141 msgid "App-specific passwords" msgstr "" -#: src/Module/Settings/TwoFactor/Index.php:156 +#: src/Module/Settings/TwoFactor/Index.php:142 msgid "Generated app-specific passwords" msgstr "" -#: src/Module/Settings/TwoFactor/Index.php:158 +#: src/Module/Settings/TwoFactor/Index.php:144 msgid "" "

These randomly generated passwords allow you to authenticate on apps not " "supporting two-factor authentication.

" msgstr "" -#: src/Module/Settings/TwoFactor/Index.php:161 +#: src/Module/Settings/TwoFactor/Index.php:147 msgid "Current password:" msgstr "" -#: src/Module/Settings/TwoFactor/Index.php:161 +#: src/Module/Settings/TwoFactor/Index.php:147 msgid "" "You need to provide your current password to change two-factor " "authentication settings." msgstr "" -#: src/Module/Settings/TwoFactor/Index.php:162 +#: src/Module/Settings/TwoFactor/Index.php:148 msgid "Enable two-factor authentication" msgstr "" -#: src/Module/Settings/TwoFactor/Index.php:163 +#: src/Module/Settings/TwoFactor/Index.php:149 msgid "Disable two-factor authentication" msgstr "" -#: src/Module/Settings/TwoFactor/Index.php:164 +#: src/Module/Settings/TwoFactor/Index.php:150 msgid "Show recovery codes" msgstr "" -#: src/Module/Settings/TwoFactor/Index.php:165 +#: src/Module/Settings/TwoFactor/Index.php:151 msgid "Manage app-specific passwords" msgstr "" -#: src/Module/Settings/TwoFactor/Index.php:166 +#: src/Module/Settings/TwoFactor/Index.php:152 msgid "Manage trusted browsers" msgstr "" -#: src/Module/Settings/TwoFactor/Index.php:167 +#: src/Module/Settings/TwoFactor/Index.php:153 msgid "Finish app configuration" msgstr "" -#: src/Module/Settings/TwoFactor/Recovery.php:83 +#: src/Module/Settings/TwoFactor/Recovery.php:69 msgid "New recovery codes successfully generated." msgstr "" -#: src/Module/Settings/TwoFactor/Recovery.php:109 +#: src/Module/Settings/TwoFactor/Recovery.php:95 msgid "Two-factor recovery codes" msgstr "" -#: src/Module/Settings/TwoFactor/Recovery.php:111 +#: src/Module/Settings/TwoFactor/Recovery.php:97 msgid "" "

Recovery codes can be used to access your account in the event you lose " "access to your device and cannot receive two-factor authentication " @@ -11245,68 +11314,68 @@ msgid "" "account.

" msgstr "" -#: src/Module/Settings/TwoFactor/Recovery.php:113 +#: src/Module/Settings/TwoFactor/Recovery.php:99 msgid "" "When you generate new recovery codes, you must copy the new codes. Your old " "codes won’t work anymore." msgstr "" -#: src/Module/Settings/TwoFactor/Recovery.php:114 +#: src/Module/Settings/TwoFactor/Recovery.php:100 msgid "Generate new recovery codes" msgstr "" -#: src/Module/Settings/TwoFactor/Recovery.php:116 +#: src/Module/Settings/TwoFactor/Recovery.php:102 msgid "Next: Verification" msgstr "" -#: src/Module/Settings/TwoFactor/Trusted.php:87 +#: src/Module/Settings/TwoFactor/Trusted.php:73 msgid "Trusted browsers successfully removed." msgstr "" -#: src/Module/Settings/TwoFactor/Trusted.php:97 +#: src/Module/Settings/TwoFactor/Trusted.php:83 msgid "Trusted browser successfully removed." msgstr "" -#: src/Module/Settings/TwoFactor/Trusted.php:139 +#: src/Module/Settings/TwoFactor/Trusted.php:125 msgid "Two-factor Trusted Browsers" msgstr "" -#: src/Module/Settings/TwoFactor/Trusted.php:140 +#: src/Module/Settings/TwoFactor/Trusted.php:126 msgid "" "Trusted browsers are individual browsers you chose to skip two-factor " "authentication to access Friendica. Please use this feature sparingly, as it" " can negate the benefit of two-factor authentication." msgstr "" -#: src/Module/Settings/TwoFactor/Trusted.php:141 +#: src/Module/Settings/TwoFactor/Trusted.php:127 msgid "Device" msgstr "" -#: src/Module/Settings/TwoFactor/Trusted.php:142 +#: src/Module/Settings/TwoFactor/Trusted.php:128 msgid "OS" msgstr "" -#: src/Module/Settings/TwoFactor/Trusted.php:144 +#: src/Module/Settings/TwoFactor/Trusted.php:130 msgid "Trusted" msgstr "" -#: src/Module/Settings/TwoFactor/Trusted.php:145 +#: src/Module/Settings/TwoFactor/Trusted.php:131 msgid "Created At" msgstr "" -#: src/Module/Settings/TwoFactor/Trusted.php:146 +#: src/Module/Settings/TwoFactor/Trusted.php:132 msgid "Last Use" msgstr "" -#: src/Module/Settings/TwoFactor/Trusted.php:148 +#: src/Module/Settings/TwoFactor/Trusted.php:134 msgid "Remove All" msgstr "" -#: src/Module/Settings/TwoFactor/Verify.php:94 +#: src/Module/Settings/TwoFactor/Verify.php:80 msgid "Two-factor authentication successfully activated." msgstr "" -#: src/Module/Settings/TwoFactor/Verify.php:128 +#: src/Module/Settings/TwoFactor/Verify.php:114 #, php-format msgid "" "

Or you can submit the authentication settings manually:

\n" @@ -11326,105 +11395,105 @@ msgid "" "" msgstr "" -#: src/Module/Settings/TwoFactor/Verify.php:148 +#: src/Module/Settings/TwoFactor/Verify.php:134 msgid "Two-factor code verification" msgstr "" -#: src/Module/Settings/TwoFactor/Verify.php:150 +#: src/Module/Settings/TwoFactor/Verify.php:136 msgid "" "

Please scan this QR Code with your authenticator app and submit the " "provided code.

" msgstr "" -#: src/Module/Settings/TwoFactor/Verify.php:152 +#: src/Module/Settings/TwoFactor/Verify.php:138 #, php-format msgid "" "

Or you can open the following URL in your mobile device:

%s

" msgstr "" -#: src/Module/Settings/TwoFactor/Verify.php:159 +#: src/Module/Settings/TwoFactor/Verify.php:145 msgid "Verify code and enable two-factor authentication" msgstr "" -#: src/Module/Settings/UserExport.php:90 +#: src/Module/Settings/UserExport.php:76 msgid "Export account" msgstr "Ekpordi konto" -#: src/Module/Settings/UserExport.php:90 +#: src/Module/Settings/UserExport.php:76 msgid "" "Export your account info and contacts. Use this to make a backup of your " "account and/or to move it to another server." msgstr "" -#: src/Module/Settings/UserExport.php:91 +#: src/Module/Settings/UserExport.php:77 msgid "Export all" msgstr "Ekspordi kõik" -#: src/Module/Settings/UserExport.php:91 +#: src/Module/Settings/UserExport.php:77 msgid "" "Export your account info, contacts and all your items as json. Could be a " "very big file, and could take a lot of time. Use this to make a full backup " "of your account (photos are not exported)" msgstr "" -#: src/Module/Settings/UserExport.php:92 +#: src/Module/Settings/UserExport.php:78 msgid "Export Contacts to CSV" msgstr "" -#: src/Module/Settings/UserExport.php:92 +#: src/Module/Settings/UserExport.php:78 msgid "" "Export the list of the accounts you are following as CSV file. Compatible to" " e.g. Mastodon." msgstr "" -#: src/Module/Special/DisplayNotFound.php:35 +#: src/Module/Special/DisplayNotFound.php:21 msgid "The top-level post isn't visible." msgstr "" -#: src/Module/Special/DisplayNotFound.php:36 +#: src/Module/Special/DisplayNotFound.php:22 msgid "The top-level post was deleted." msgstr "" -#: src/Module/Special/DisplayNotFound.php:37 +#: src/Module/Special/DisplayNotFound.php:23 msgid "" "This node has blocked the top-level author or the author of the shared post." msgstr "" -#: src/Module/Special/DisplayNotFound.php:38 +#: src/Module/Special/DisplayNotFound.php:24 msgid "" "You have ignored or blocked the top-level author or the author of the shared" " post." msgstr "" -#: src/Module/Special/DisplayNotFound.php:39 +#: src/Module/Special/DisplayNotFound.php:25 msgid "" "You have ignored the top-level author's server or the shared post author's " "server." msgstr "" -#: src/Module/Special/DisplayNotFound.php:45 +#: src/Module/Special/DisplayNotFound.php:31 msgid "Conversation Not Found" msgstr "" -#: src/Module/Special/DisplayNotFound.php:46 +#: src/Module/Special/DisplayNotFound.php:32 msgid "Unfortunately, the requested conversation isn't available to you." msgstr "" -#: src/Module/Special/DisplayNotFound.php:47 +#: src/Module/Special/DisplayNotFound.php:33 msgid "Possible reasons include:" msgstr "" -#: src/Module/Special/HTTPException.php:78 +#: src/Module/Special/HTTPException.php:64 msgid "Stack trace:" msgstr "" -#: src/Module/Special/HTTPException.php:83 +#: src/Module/Special/HTTPException.php:69 #, php-format msgid "Exception thrown in %s:%d" msgstr "" -#: src/Module/Tos.php:58 src/Module/Tos.php:107 +#: src/Module/Tos.php:44 src/Module/Tos.php:93 msgid "" "At the time of registration, and for providing communications between the " "user account and their contacts, the user has to provide a display name (pen" @@ -11437,14 +11506,14 @@ msgid "" "settings, it is not necessary for communication." msgstr "" -#: src/Module/Tos.php:59 src/Module/Tos.php:108 +#: src/Module/Tos.php:45 src/Module/Tos.php:94 msgid "" "This data is required for communication and is passed on to the nodes of the" " communication partners and is stored there. Users can enter additional " "private data that may be transmitted to the communication partners accounts." msgstr "" -#: src/Module/Tos.php:60 src/Module/Tos.php:109 +#: src/Module/Tos.php:46 src/Module/Tos.php:95 #, php-format msgid "" "At any point in time a logged in user can export their account data from the" @@ -11455,121 +11524,121 @@ msgid "" "from the nodes of the communication partners." msgstr "" -#: src/Module/Tos.php:63 src/Module/Tos.php:106 +#: src/Module/Tos.php:49 src/Module/Tos.php:92 msgid "Privacy Statement" msgstr "" -#: src/Module/Tos.php:103 +#: src/Module/Tos.php:89 msgid "Rules" msgstr "" -#: src/Module/Update/Display.php:45 +#: src/Module/Update/Display.php:31 msgid "Parameter uri_id is missing." msgstr "" -#: src/Module/Update/Display.php:55 +#: src/Module/Update/Display.php:41 msgid "The requested item doesn't exist or has been deleted." msgstr "" -#: src/Module/User/Delegation.php:146 +#: src/Module/User/Delegation.php:132 #, php-format msgid "You are now logged in as %s" msgstr "" -#: src/Module/User/Delegation.php:185 +#: src/Module/User/Delegation.php:171 msgid "Switch between your accounts" msgstr "" -#: src/Module/User/Delegation.php:186 +#: src/Module/User/Delegation.php:172 msgid "Manage your accounts" msgstr "Halda oma kontosid" -#: src/Module/User/Delegation.php:187 +#: src/Module/User/Delegation.php:173 msgid "" "Toggle between different identities or community/group pages which share " "your account details or which you have been granted \"manage\" permissions" msgstr "" -#: src/Module/User/Delegation.php:188 +#: src/Module/User/Delegation.php:174 msgid "Select an identity to manage: " msgstr "" -#: src/Module/User/Import.php:103 +#: src/Module/User/Import.php:90 msgid "User imports on closed servers can only be done by an administrator." msgstr "" -#: src/Module/User/Import.php:119 +#: src/Module/User/Import.php:106 msgid "Move account" msgstr "Koli konto" -#: src/Module/User/Import.php:120 +#: src/Module/User/Import.php:107 msgid "You can import an account from another Friendica server." msgstr "" -#: src/Module/User/Import.php:121 +#: src/Module/User/Import.php:108 msgid "" "You need to export your account from the old server and upload it here. We " "will recreate your old account here with all your contacts. We will try also" " to inform your friends that you moved here." msgstr "" -#: src/Module/User/Import.php:122 +#: src/Module/User/Import.php:109 msgid "" "This feature is experimental. We can't import contacts from the OStatus " "network (GNU Social/Statusnet) or from Diaspora" msgstr "" -#: src/Module/User/Import.php:123 +#: src/Module/User/Import.php:110 msgid "Account file" msgstr "Konto fail" -#: src/Module/User/Import.php:123 +#: src/Module/User/Import.php:110 msgid "" "To export your account, go to \"Settings->Export your personal data\" and " "select \"Export account\"" msgstr "" -#: src/Module/User/Import.php:217 +#: src/Module/User/Import.php:204 msgid "Error decoding account file" msgstr "" -#: src/Module/User/Import.php:222 +#: src/Module/User/Import.php:209 msgid "Error! No version data in file! This is not a Friendica account file?" msgstr "" -#: src/Module/User/Import.php:230 +#: src/Module/User/Import.php:217 #, php-format msgid "User '%s' already exists on this server!" msgstr "" -#: src/Module/User/Import.php:267 +#: src/Module/User/Import.php:254 msgid "User creation error" msgstr "" -#: src/Module/User/Import.php:316 +#: src/Module/User/Import.php:303 #, php-format msgid "%d contact not imported" msgid_plural "%d contacts not imported" msgstr[0] "" msgstr[1] "" -#: src/Module/User/Import.php:365 +#: src/Module/User/Import.php:352 msgid "User profile creation error" msgstr "" -#: src/Module/User/Import.php:416 +#: src/Module/User/Import.php:403 msgid "Done. You can now login with your username and password" msgstr "" -#: src/Module/Welcome.php:44 +#: src/Module/Welcome.php:30 msgid "Welcome to Friendica" msgstr "Tere tulemast Friendicasse" -#: src/Module/Welcome.php:45 +#: src/Module/Welcome.php:31 msgid "New Member Checklist" msgstr "" -#: src/Module/Welcome.php:46 +#: src/Module/Welcome.php:32 msgid "" "We would like to offer some tips and links to help make your experience " "enjoyable. Click any item to visit the relevant page. A link to this page " @@ -11577,33 +11646,33 @@ msgid "" "registration and then will quietly disappear." msgstr "" -#: src/Module/Welcome.php:48 +#: src/Module/Welcome.php:34 msgid "Getting Started" msgstr "" -#: src/Module/Welcome.php:49 +#: src/Module/Welcome.php:35 msgid "Friendica Walk-Through" msgstr "Friendica lühiabi" -#: src/Module/Welcome.php:50 +#: src/Module/Welcome.php:36 msgid "" "On your Quick Start page - find a brief introduction to your " "profile and network tabs, make some new connections, and find some groups to" " join." msgstr "Oma Quick Start lehel - leiad kiirtutvustuse oma profiili ja võrgu sakkide (tab) kohta. Loo paar uut ühendust ja leia mõni grupp, millega liituda. " -#: src/Module/Welcome.php:53 +#: src/Module/Welcome.php:39 msgid "Go to Your Settings" msgstr "Mine on Sätetesse" -#: src/Module/Welcome.php:54 +#: src/Module/Welcome.php:40 msgid "" "On your Settings page - change your initial password. Also make a " "note of your Identity Address. This looks just like an email address - and " "will be useful in making friends on the free social web." msgstr "Oma Sätted lehel muuda kõigepealt ära algne parool. Samuti pane tallele oma ID Aadress. Ta sarnaneb emaili aadressile - ja on kasulik, et leida sõpru sotsiaalvõrgustikes. " -#: src/Module/Welcome.php:55 +#: src/Module/Welcome.php:41 msgid "" "Review the other settings, particularly the privacy settings. An unpublished" " directory listing is like having an unlisted phone number. In general, you " @@ -11611,77 +11680,77 @@ msgid "" "potential friends know exactly how to find you." msgstr "Vaata üle ka teised sätted, eriti privaatsussätted. An unpublished directory listing is like having an unlisted phone number. In general, you should probably publish your listing - unless all of your friends and potential friends know exactly how to find you." -#: src/Module/Welcome.php:59 +#: src/Module/Welcome.php:45 msgid "" "Upload a profile photo if you have not done so already. Studies have shown " "that people with real photos of themselves are ten times more likely to make" " friends than people who do not." msgstr "Lae üles profiilifoto, kui sa seda veel teinud ei ole. uuringud näitavad, et inimesed reaalse fotoga neist leiavad kümme korda rohkem sõpru kui kui ilma fotota inimesed. " -#: src/Module/Welcome.php:60 +#: src/Module/Welcome.php:46 msgid "Edit Your Profile" msgstr "Muuda on Profiili" -#: src/Module/Welcome.php:61 +#: src/Module/Welcome.php:47 msgid "" "Edit your default profile to your liking. Review the " "settings for hiding your list of friends and hiding the profile from unknown" " visitors." msgstr "Muuda oma peamist profiili vastavalt oma soovile. Otsusta, kas soovid näidata oma sõprade nimistut ja nende profiile teistele külastajatele või mitte. " -#: src/Module/Welcome.php:62 +#: src/Module/Welcome.php:48 msgid "Profile Keywords" msgstr "Profiili märksõnad" -#: src/Module/Welcome.php:63 +#: src/Module/Welcome.php:49 msgid "" "Set some public keywords for your profile which describe your interests. We " "may be able to find other people with similar interests and suggest " "friendships." msgstr "" -#: src/Module/Welcome.php:65 +#: src/Module/Welcome.php:51 msgid "Connecting" msgstr "Ühendumine" -#: src/Module/Welcome.php:67 +#: src/Module/Welcome.php:53 msgid "Importing Emails" msgstr "Emailide importimine" -#: src/Module/Welcome.php:68 +#: src/Module/Welcome.php:54 msgid "" "Enter your email access information on your Connector Settings page if you " "wish to import and interact with friends or mailing lists from your email " "INBOX" msgstr "" -#: src/Module/Welcome.php:69 +#: src/Module/Welcome.php:55 msgid "Go to Your Contacts Page" msgstr "Mine oma kontaktide lehele" -#: src/Module/Welcome.php:70 +#: src/Module/Welcome.php:56 msgid "" "Your Contacts page is your gateway to managing friendships and connecting " "with friends on other networks. Typically you enter their address or site " "URL in the Add New Contact dialog." msgstr "Su Kontaktide leht on sinu värav sõpradega ühendumiseks ja suhtlemiseks ka teistes sots võrkudes. Tavaliselt tuleb sisestada nende aadress või lehe URL Lisa uus kontakt dialoogi. " -#: src/Module/Welcome.php:71 +#: src/Module/Welcome.php:57 msgid "Go to Your Site's Directory" msgstr "Mine oma Lehe Kataloogi" -#: src/Module/Welcome.php:72 +#: src/Module/Welcome.php:58 msgid "" "The Directory page lets you find other people in this network or other " "federated sites. Look for a Connect or Follow link on " "their profile page. Provide your own Identity Address if requested." msgstr "Kataloogi leht aitab leida teisi selles võrgus ja teistes seotud võrkudes. Otsi Ühendu või Jälgi linki nende profiili lehel. Anna sinna oma ID aadress kui küsitud. " -#: src/Module/Welcome.php:73 +#: src/Module/Welcome.php:59 msgid "Finding New People" msgstr "Uute inimeste leidmine" -#: src/Module/Welcome.php:74 +#: src/Module/Welcome.php:60 msgid "" "On the side panel of the Contacts page are several tools to find new " "friends. We can match people by interest, look up people by name or " @@ -11690,412 +11759,408 @@ msgid "" "hours." msgstr "Kontaktide lehe küljepaneelil on mitmeid tööriistu uute sõprade leidmiseks. Me saame sidustada inimesi huvide, huvide ja nime järgi või saame soovitada vastavalt võrgusuhtlusele. Päris uuel lehel tulevad soovitused 24 tunni möödudes. " -#: src/Module/Welcome.php:77 +#: src/Module/Welcome.php:63 msgid "Add Your Contacts To Circle" msgstr "" -#: src/Module/Welcome.php:78 +#: src/Module/Welcome.php:64 msgid "" "Once you have made some friends, organize them into private conversation " "circles from the sidebar of your Contacts page and then you can interact " "with each circle privately on your Network page." msgstr "" -#: src/Module/Welcome.php:80 +#: src/Module/Welcome.php:66 msgid "Why Aren't My Posts Public?" msgstr "Miks mu postitused avalikud ei ole?" -#: src/Module/Welcome.php:81 +#: src/Module/Welcome.php:67 msgid "" "Friendica respects your privacy. By default, your posts will only show up to" " people you've added as friends. For more information, see the help section " "from the link above." msgstr "Friendica austab sinu privaatsust. Algseadena näevad sinu postitusi inimesed, kelle oled sõbrana lisanud. Lisainfot saad abiinfost lingilt ülalpool. " -#: src/Module/Welcome.php:83 +#: src/Module/Welcome.php:69 msgid "Getting Help" msgstr "Kuidas saada abi" -#: src/Module/Welcome.php:84 +#: src/Module/Welcome.php:70 msgid "Go to the Help Section" msgstr "Mine Abi sektsiooni" -#: src/Module/Welcome.php:85 +#: src/Module/Welcome.php:71 msgid "" "Our help pages may be consulted for detail on other program" " features and resources." msgstr "Meie abi lehed sisaldavad detailset infot programmi võimaluste ja ressursside kohta. " -#: src/Navigation/Notifications/Factory/FormattedNavNotification.php:161 +#: src/Navigation/Notifications/Factory/FormattedNavNotification.php:147 msgid "{0} wants to follow you" msgstr "" -#: src/Navigation/Notifications/Factory/FormattedNavNotification.php:163 +#: src/Navigation/Notifications/Factory/FormattedNavNotification.php:149 msgid "{0} has started following you" msgstr "" -#: src/Navigation/Notifications/Factory/FormattedNotify.php:96 +#: src/Navigation/Notifications/Factory/FormattedNotify.php:82 #, php-format msgid "%s liked %s's post" msgstr "%s meeldib %s postitus" -#: src/Navigation/Notifications/Factory/FormattedNotify.php:108 +#: src/Navigation/Notifications/Factory/FormattedNotify.php:94 #, php-format msgid "%s disliked %s's post" msgstr "%s ei meeldi %s postitus" -#: src/Navigation/Notifications/Factory/FormattedNotify.php:120 +#: src/Navigation/Notifications/Factory/FormattedNotify.php:106 #, php-format msgid "%s is attending %s's event" msgstr "%s osaleb %s sündmusel" -#: src/Navigation/Notifications/Factory/FormattedNotify.php:132 +#: src/Navigation/Notifications/Factory/FormattedNotify.php:118 #, php-format msgid "%s is not attending %s's event" msgstr "%s ei osale %s sündmusel" -#: src/Navigation/Notifications/Factory/FormattedNotify.php:144 +#: src/Navigation/Notifications/Factory/FormattedNotify.php:130 #, php-format msgid "%s may attending %s's event" msgstr "" -#: src/Navigation/Notifications/Factory/FormattedNotify.php:174 +#: src/Navigation/Notifications/Factory/FormattedNotify.php:160 #, php-format msgid "%s is now friends with %s" msgstr "%s on nüüd sõber %s ga " -#: src/Navigation/Notifications/Factory/FormattedNotify.php:341 -#: src/Navigation/Notifications/Factory/FormattedNotify.php:379 +#: src/Navigation/Notifications/Factory/FormattedNotify.php:327 +#: src/Navigation/Notifications/Factory/FormattedNotify.php:365 #, php-format msgid "%s commented on %s's post" msgstr "%s kommenteeris %s postitust " -#: src/Navigation/Notifications/Factory/FormattedNotify.php:378 +#: src/Navigation/Notifications/Factory/FormattedNotify.php:364 #, php-format msgid "%s created a new post" msgstr "%s tegi uue postituse" -#: src/Navigation/Notifications/Factory/Introduction.php:133 +#: src/Navigation/Notifications/Factory/Introduction.php:118 msgid "Friend Suggestion" msgstr "Sõbrasoovitus" -#: src/Navigation/Notifications/Factory/Introduction.php:159 +#: src/Navigation/Notifications/Factory/Introduction.php:144 msgid "Friend/Connect Request" msgstr "Sõbra/Ühenduse taotlus" -#: src/Navigation/Notifications/Factory/Introduction.php:159 -msgid "New Follower" -msgstr "Uus jälgija" - -#: src/Navigation/Notifications/Factory/Notification.php:134 +#: src/Navigation/Notifications/Factory/Notification.php:120 #, php-format msgid "%1$s wants to follow you" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:136 +#: src/Navigation/Notifications/Factory/Notification.php:122 #, php-format msgid "%1$s has started following you" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:208 +#: src/Navigation/Notifications/Factory/Notification.php:194 #, php-format msgid "%1$s liked your comment on %2$s" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:211 +#: src/Navigation/Notifications/Factory/Notification.php:197 #, php-format msgid "%1$s liked your post %2$s" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:218 +#: src/Navigation/Notifications/Factory/Notification.php:204 #, php-format msgid "%1$s disliked your comment on %2$s" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:221 +#: src/Navigation/Notifications/Factory/Notification.php:207 #, php-format msgid "%1$s disliked your post %2$s" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:228 +#: src/Navigation/Notifications/Factory/Notification.php:214 #, php-format msgid "%1$s shared your comment %2$s" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:231 -#: src/Navigation/Notifications/Factory/Notification.php:316 +#: src/Navigation/Notifications/Factory/Notification.php:217 +#: src/Navigation/Notifications/Factory/Notification.php:302 #, php-format msgid "%1$s shared your post %2$s" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:235 -#: src/Navigation/Notifications/Factory/Notification.php:305 +#: src/Navigation/Notifications/Factory/Notification.php:221 +#: src/Navigation/Notifications/Factory/Notification.php:291 #, php-format msgid "%1$s shared the post %2$s from %3$s" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:237 -#: src/Navigation/Notifications/Factory/Notification.php:307 +#: src/Navigation/Notifications/Factory/Notification.php:223 +#: src/Navigation/Notifications/Factory/Notification.php:293 #, php-format msgid "%1$s shared a post from %3$s" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:239 -#: src/Navigation/Notifications/Factory/Notification.php:309 +#: src/Navigation/Notifications/Factory/Notification.php:225 +#: src/Navigation/Notifications/Factory/Notification.php:295 #, php-format msgid "%1$s shared the post %2$s" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:241 -#: src/Navigation/Notifications/Factory/Notification.php:311 +#: src/Navigation/Notifications/Factory/Notification.php:227 +#: src/Navigation/Notifications/Factory/Notification.php:297 #, php-format msgid "%1$s shared a post" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:249 +#: src/Navigation/Notifications/Factory/Notification.php:235 #, php-format msgid "%1$s wants to attend your event %2$s" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:256 +#: src/Navigation/Notifications/Factory/Notification.php:242 #, php-format msgid "%1$s does not want to attend your event %2$s" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:263 +#: src/Navigation/Notifications/Factory/Notification.php:249 #, php-format msgid "%1$s maybe wants to attend your event %2$s" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:270 +#: src/Navigation/Notifications/Factory/Notification.php:256 #, php-format msgid "%1$s tagged you on %2$s" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:274 +#: src/Navigation/Notifications/Factory/Notification.php:260 #, php-format msgid "%1$s replied to you on %2$s" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:278 +#: src/Navigation/Notifications/Factory/Notification.php:264 #, php-format msgid "%1$s commented in your thread %2$s" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:282 +#: src/Navigation/Notifications/Factory/Notification.php:268 #, php-format msgid "%1$s commented on your comment %2$s" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:289 +#: src/Navigation/Notifications/Factory/Notification.php:275 #, php-format msgid "%1$s commented in their thread %2$s" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:291 +#: src/Navigation/Notifications/Factory/Notification.php:277 #, php-format msgid "%1$s commented in their thread" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:293 +#: src/Navigation/Notifications/Factory/Notification.php:279 #, php-format msgid "%1$s commented in the thread %2$s from %3$s" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:295 +#: src/Navigation/Notifications/Factory/Notification.php:281 #, php-format msgid "%1$s commented in the thread from %3$s" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:300 +#: src/Navigation/Notifications/Factory/Notification.php:286 #, php-format msgid "%1$s commented on your thread %2$s" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:225 -#: src/Navigation/Notifications/Repository/Notify.php:754 +#: src/Navigation/Notifications/Repository/Notify.php:211 +#: src/Navigation/Notifications/Repository/Notify.php:740 msgid "[Friendica:Notify]" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:293 +#: src/Navigation/Notifications/Repository/Notify.php:279 #, php-format msgid "%s New mail received at %s" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:295 +#: src/Navigation/Notifications/Repository/Notify.php:281 #, php-format msgid "%1$s sent you a new private message at %2$s." msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:296 +#: src/Navigation/Notifications/Repository/Notify.php:282 msgid "a private message" msgstr "privaatsõnum" -#: src/Navigation/Notifications/Repository/Notify.php:296 +#: src/Navigation/Notifications/Repository/Notify.php:282 #, php-format msgid "%1$s sent you %2$s." msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:298 +#: src/Navigation/Notifications/Repository/Notify.php:284 #, php-format msgid "Please visit %s to view and/or reply to your private messages." msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:328 +#: src/Navigation/Notifications/Repository/Notify.php:314 #, php-format msgid "%1$s commented on %2$s's %3$s %4$s" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:333 +#: src/Navigation/Notifications/Repository/Notify.php:319 #, php-format msgid "%1$s commented on your %2$s %3$s" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:337 +#: src/Navigation/Notifications/Repository/Notify.php:323 #, php-format msgid "%1$s commented on their %2$s %3$s" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:341 -#: src/Navigation/Notifications/Repository/Notify.php:788 +#: src/Navigation/Notifications/Repository/Notify.php:327 +#: src/Navigation/Notifications/Repository/Notify.php:774 #, php-format msgid "%1$s Comment to conversation #%2$d by %3$s" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:343 +#: src/Navigation/Notifications/Repository/Notify.php:329 #, php-format msgid "%s commented on an item/conversation you have been following." msgstr "%s kommenteeris elementi/vestlust mida jälgid." -#: src/Navigation/Notifications/Repository/Notify.php:347 -#: src/Navigation/Notifications/Repository/Notify.php:362 -#: src/Navigation/Notifications/Repository/Notify.php:814 +#: src/Navigation/Notifications/Repository/Notify.php:333 +#: src/Navigation/Notifications/Repository/Notify.php:348 +#: src/Navigation/Notifications/Repository/Notify.php:800 #, php-format msgid "Please visit %s to view and/or reply to the conversation." msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:354 +#: src/Navigation/Notifications/Repository/Notify.php:340 #, php-format msgid "%s %s posted to your profile wall" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:356 +#: src/Navigation/Notifications/Repository/Notify.php:342 #, php-format msgid "%1$s posted to your profile wall at %2$s" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:357 +#: src/Navigation/Notifications/Repository/Notify.php:343 #, php-format msgid "%1$s posted to [url=%2$s]your wall[/url]" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:370 +#: src/Navigation/Notifications/Repository/Notify.php:356 #, php-format msgid "%s Introduction received" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:372 +#: src/Navigation/Notifications/Repository/Notify.php:358 #, php-format msgid "You've received an introduction from '%1$s' at %2$s" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:373 +#: src/Navigation/Notifications/Repository/Notify.php:359 #, php-format msgid "You've received [url=%1$s]an introduction[/url] from %2$s." msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:378 -#: src/Navigation/Notifications/Repository/Notify.php:424 +#: src/Navigation/Notifications/Repository/Notify.php:364 +#: src/Navigation/Notifications/Repository/Notify.php:410 #, php-format msgid "You may visit their profile at %s" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:380 +#: src/Navigation/Notifications/Repository/Notify.php:366 #, php-format msgid "Please visit %s to approve or reject the introduction." msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:387 +#: src/Navigation/Notifications/Repository/Notify.php:373 #, php-format msgid "%s A new person is sharing with you" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:389 -#: src/Navigation/Notifications/Repository/Notify.php:390 +#: src/Navigation/Notifications/Repository/Notify.php:375 +#: src/Navigation/Notifications/Repository/Notify.php:376 #, php-format msgid "%1$s is sharing with you at %2$s" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:397 +#: src/Navigation/Notifications/Repository/Notify.php:383 #, php-format msgid "%s You have a new follower" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:399 -#: src/Navigation/Notifications/Repository/Notify.php:400 +#: src/Navigation/Notifications/Repository/Notify.php:385 +#: src/Navigation/Notifications/Repository/Notify.php:386 #, php-format msgid "You have a new follower at %2$s : %1$s" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:413 +#: src/Navigation/Notifications/Repository/Notify.php:399 #, php-format msgid "%s Friend suggestion received" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:415 +#: src/Navigation/Notifications/Repository/Notify.php:401 #, php-format msgid "You've received a friend suggestion from '%1$s' at %2$s" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:416 +#: src/Navigation/Notifications/Repository/Notify.php:402 #, php-format msgid "" "You've received [url=%1$s]a friend suggestion[/url] for %2$s from %3$s." msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:422 +#: src/Navigation/Notifications/Repository/Notify.php:408 msgid "Name:" msgstr "Nimi:" -#: src/Navigation/Notifications/Repository/Notify.php:423 +#: src/Navigation/Notifications/Repository/Notify.php:409 msgid "Photo:" msgstr "Foto:" -#: src/Navigation/Notifications/Repository/Notify.php:426 +#: src/Navigation/Notifications/Repository/Notify.php:412 #, php-format msgid "Please visit %s to approve or reject the suggestion." msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:434 -#: src/Navigation/Notifications/Repository/Notify.php:449 +#: src/Navigation/Notifications/Repository/Notify.php:420 +#: src/Navigation/Notifications/Repository/Notify.php:435 #, php-format msgid "%s Connection accepted" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:436 -#: src/Navigation/Notifications/Repository/Notify.php:451 +#: src/Navigation/Notifications/Repository/Notify.php:422 +#: src/Navigation/Notifications/Repository/Notify.php:437 #, php-format msgid "'%1$s' has accepted your connection request at %2$s" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:437 -#: src/Navigation/Notifications/Repository/Notify.php:452 +#: src/Navigation/Notifications/Repository/Notify.php:423 +#: src/Navigation/Notifications/Repository/Notify.php:438 #, php-format msgid "%2$s has accepted your [url=%1$s]connection request[/url]." msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:442 +#: src/Navigation/Notifications/Repository/Notify.php:428 msgid "" "You are now mutual friends and may exchange status updates, photos, and " "email without restriction." msgstr "Olete nüüd sõbrad ja saate vahetada staatuseuuendusi, fotosid ja emaile ilma piiranguteta. " -#: src/Navigation/Notifications/Repository/Notify.php:444 +#: src/Navigation/Notifications/Repository/Notify.php:430 #, php-format msgid "Please visit %s if you wish to make any changes to this relationship." msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:457 +#: src/Navigation/Notifications/Repository/Notify.php:443 #, php-format msgid "" "'%1$s' has chosen to accept you a fan, which restricts some forms of " @@ -12104,34 +12169,34 @@ msgid "" "automatically." msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:459 +#: src/Navigation/Notifications/Repository/Notify.php:445 #, php-format msgid "" "'%1$s' may choose to extend this into a two-way or more permissive " "relationship in the future." msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:461 +#: src/Navigation/Notifications/Repository/Notify.php:447 #, php-format msgid "Please visit %s if you wish to make any changes to this relationship." msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:471 +#: src/Navigation/Notifications/Repository/Notify.php:457 msgid "registration request" msgstr "registreerimise taotlus" -#: src/Navigation/Notifications/Repository/Notify.php:473 +#: src/Navigation/Notifications/Repository/Notify.php:459 #, php-format msgid "You've received a registration request from '%1$s' at %2$s" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:474 +#: src/Navigation/Notifications/Repository/Notify.php:460 #, php-format msgid "You've received a [url=%1$s]registration request[/url] from %2$s." msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:479 -#: src/Navigation/Notifications/Repository/Notify.php:500 +#: src/Navigation/Notifications/Repository/Notify.php:465 +#: src/Navigation/Notifications/Repository/Notify.php:486 #, php-format msgid "" "Display Name:\t%s\n" @@ -12139,776 +12204,755 @@ msgid "" "Login Name:\t%s (%s)" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:485 +#: src/Navigation/Notifications/Repository/Notify.php:471 #, php-format msgid "Please visit %s to approve or reject the request." msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:492 +#: src/Navigation/Notifications/Repository/Notify.php:478 msgid "new registration" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:494 +#: src/Navigation/Notifications/Repository/Notify.php:480 #, php-format msgid "You've received a new registration from '%1$s' at %2$s" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:495 +#: src/Navigation/Notifications/Repository/Notify.php:481 #, php-format msgid "You've received a [url=%1$s]new registration[/url] from %2$s." msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:506 +#: src/Navigation/Notifications/Repository/Notify.php:492 #, php-format msgid "Please visit %s to have a look at the new registration." msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:782 +#: src/Navigation/Notifications/Repository/Notify.php:768 #, php-format msgid "%s %s tagged you" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:785 +#: src/Navigation/Notifications/Repository/Notify.php:771 #, php-format msgid "%s %s shared a new post" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:793 +#: src/Navigation/Notifications/Repository/Notify.php:779 #, php-format msgid "%1$s %2$s liked your post #%3$d" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:796 +#: src/Navigation/Notifications/Repository/Notify.php:782 #, php-format msgid "%1$s %2$s liked your comment on #%3$d" msgstr "" -#: src/Object/EMail/ItemCCEMail.php:42 +#: src/Object/EMail/ItemCCEMail.php:28 #, php-format msgid "" "This message was sent to you by %s, a member of the Friendica social " "network." msgstr "Selle sõnumi saatis sulle %s , Friendica sotsiaalvõrgu liige. " -#: src/Object/EMail/ItemCCEMail.php:44 +#: src/Object/EMail/ItemCCEMail.php:30 #, php-format msgid "You may visit them online at %s" msgstr "Võite kohtuda nendega online %s " -#: src/Object/EMail/ItemCCEMail.php:45 +#: src/Object/EMail/ItemCCEMail.php:31 msgid "" "Please contact the sender by replying to this post if you do not wish to " "receive these messages." msgstr "Palun kontakteeruge saatjaga vastates sellele postitusele, kui ei soovi neid sõnumeid saada. " -#: src/Object/EMail/ItemCCEMail.php:49 +#: src/Object/EMail/ItemCCEMail.php:35 #, php-format msgid "%s posted an update." msgstr "%s postitas uuenduse." -#: src/Object/Post.php:138 +#: src/Object/Post.php:124 msgid "Private Message" msgstr "Pirvaatsõnum" -#: src/Object/Post.php:142 +#: src/Object/Post.php:128 msgid "Public Message" msgstr "" -#: src/Object/Post.php:146 +#: src/Object/Post.php:132 msgid "Unlisted Message" msgstr "" -#: src/Object/Post.php:182 +#: src/Object/Post.php:168 msgid "This entry was edited" msgstr "See kanne on muudetud" -#: src/Object/Post.php:210 +#: src/Object/Post.php:196 msgid "Connector Message" msgstr "" -#: src/Object/Post.php:226 src/Object/Post.php:228 +#: src/Object/Post.php:225 src/Object/Post.php:227 msgid "Edit" msgstr "Muuda" -#: src/Object/Post.php:262 +#: src/Object/Post.php:261 msgid "Delete globally" msgstr "Kustuta globaalselt" -#: src/Object/Post.php:262 +#: src/Object/Post.php:261 msgid "Remove locally" msgstr "Eemalda lokaalselt" -#: src/Object/Post.php:269 +#: src/Object/Post.php:268 #, php-format msgid "Block %s" msgstr "" -#: src/Object/Post.php:274 +#: src/Object/Post.php:273 #, php-format msgid "Ignore %s" msgstr "" -#: src/Object/Post.php:279 +#: src/Object/Post.php:278 #, php-format msgid "Collapse %s" msgstr "" -#: src/Object/Post.php:283 +#: src/Object/Post.php:282 msgid "Report post" msgstr "" -#: src/Object/Post.php:294 +#: src/Object/Post.php:293 msgid "Save to folder" msgstr "" -#: src/Object/Post.php:334 +#: src/Object/Post.php:333 msgid "I will attend" msgstr "Ma osalen" -#: src/Object/Post.php:334 +#: src/Object/Post.php:333 msgid "I will not attend" msgstr "Ma ei osale" -#: src/Object/Post.php:334 +#: src/Object/Post.php:333 msgid "I might attend" msgstr "Ma ehk osalen" -#: src/Object/Post.php:381 +#: src/Object/Post.php:380 msgid "Ignore thread" msgstr "" -#: src/Object/Post.php:382 +#: src/Object/Post.php:381 msgid "Unignore thread" msgstr "" -#: src/Object/Post.php:383 +#: src/Object/Post.php:382 msgid "Toggle ignore status" msgstr "" -#: src/Object/Post.php:393 +#: src/Object/Post.php:392 msgid "Add star" msgstr "" -#: src/Object/Post.php:394 +#: src/Object/Post.php:393 msgid "Remove star" msgstr "" -#: src/Object/Post.php:395 +#: src/Object/Post.php:394 msgid "Toggle star status" msgstr "" -#: src/Object/Post.php:406 +#: src/Object/Post.php:405 msgid "Pin" msgstr "" -#: src/Object/Post.php:407 +#: src/Object/Post.php:406 msgid "Unpin" msgstr "" -#: src/Object/Post.php:408 +#: src/Object/Post.php:407 msgid "Toggle pin status" msgstr "" -#: src/Object/Post.php:411 +#: src/Object/Post.php:410 msgid "Pinned" msgstr "" -#: src/Object/Post.php:416 +#: src/Object/Post.php:415 msgid "Add tag" msgstr "" -#: src/Object/Post.php:429 +#: src/Object/Post.php:430 msgid "Quote share this" msgstr "" -#: src/Object/Post.php:429 +#: src/Object/Post.php:430 msgid "Quote Share" msgstr "Tsitaadiga jagamine" -#: src/Object/Post.php:432 +#: src/Object/Post.php:433 msgid "Reshare this" msgstr "" -#: src/Object/Post.php:432 +#: src/Object/Post.php:433 msgid "Reshare" msgstr "Taasjaga" -#: src/Object/Post.php:433 +#: src/Object/Post.php:434 msgid "Cancel your Reshare" msgstr "" -#: src/Object/Post.php:433 +#: src/Object/Post.php:434 msgid "Unshare" msgstr "" -#: src/Object/Post.php:485 +#: src/Object/Post.php:478 #, php-format msgid "%s (Received %s)" msgstr "" -#: src/Object/Post.php:491 +#: src/Object/Post.php:484 msgid "Comment this item on your system" msgstr "" -#: src/Object/Post.php:491 +#: src/Object/Post.php:484 msgid "Remote comment" msgstr "" -#: src/Object/Post.php:513 +#: src/Object/Post.php:506 msgid "Share via ..." msgstr "" -#: src/Object/Post.php:513 +#: src/Object/Post.php:506 msgid "Share via external services" msgstr "" -#: src/Object/Post.php:520 +#: src/Object/Post.php:513 msgid "Unknown parent" msgstr "" -#: src/Object/Post.php:524 +#: src/Object/Post.php:517 #, php-format msgid "in reply to %s" msgstr "" -#: src/Object/Post.php:526 +#: src/Object/Post.php:519 msgid "Parent is probably private or not federated." msgstr "" -#: src/Object/Post.php:550 +#: src/Object/Post.php:543 msgid "to" msgstr "" -#: src/Object/Post.php:551 +#: src/Object/Post.php:544 msgid "via" msgstr "" -#: src/Object/Post.php:552 +#: src/Object/Post.php:545 msgid "Wall-to-Wall" msgstr "Seinalt Seinale" -#: src/Object/Post.php:553 +#: src/Object/Post.php:546 msgid "via Wall-To-Wall:" msgstr "läbi Seinalt Seinale:" -#: src/Object/Post.php:604 +#: src/Object/Post.php:599 #, php-format msgid "Reply to %s" msgstr "Vasta %s le" -#: src/Object/Post.php:607 +#: src/Object/Post.php:602 msgid "More" msgstr "Rohkem" -#: src/Object/Post.php:626 +#: src/Object/Post.php:621 msgid "Notifier task is pending" msgstr "" -#: src/Object/Post.php:627 +#: src/Object/Post.php:622 msgid "Delivery to remote servers is pending" msgstr "" -#: src/Object/Post.php:628 +#: src/Object/Post.php:623 msgid "Delivery to remote servers is underway" msgstr "" -#: src/Object/Post.php:629 +#: src/Object/Post.php:624 msgid "Delivery to remote servers is mostly done" msgstr "" -#: src/Object/Post.php:630 +#: src/Object/Post.php:625 msgid "Delivery to remote servers is done" msgstr "" -#: src/Object/Post.php:652 +#: src/Object/Post.php:647 #, php-format msgid "%d comment" msgid_plural "%d comments" msgstr[0] "" msgstr[1] "" -#: src/Object/Post.php:653 +#: src/Object/Post.php:648 msgid "Show more" msgstr "Näita rohkem " -#: src/Object/Post.php:654 +#: src/Object/Post.php:649 msgid "Show fewer" msgstr "Näita vähem" -#: src/Object/Post.php:691 +#: src/Object/Post.php:686 #, php-format msgid "Reshared by: %s" msgstr "" -#: src/Object/Post.php:696 +#: src/Object/Post.php:691 #, php-format msgid "Viewed by: %s" msgstr "" -#: src/Object/Post.php:701 +#: src/Object/Post.php:696 #, php-format msgid "Read by: %s" msgstr "" -#: src/Object/Post.php:706 +#: src/Object/Post.php:701 #, php-format msgid "Liked by: %s" msgstr "" -#: src/Object/Post.php:711 +#: src/Object/Post.php:706 #, php-format msgid "Disliked by: %s" msgstr "" -#: src/Object/Post.php:716 +#: src/Object/Post.php:711 #, php-format msgid "Attended by: %s" msgstr "" -#: src/Object/Post.php:721 +#: src/Object/Post.php:716 #, php-format msgid "Maybe attended by: %s" msgstr "" -#: src/Object/Post.php:726 +#: src/Object/Post.php:721 #, php-format msgid "Not attended by: %s" msgstr "" -#: src/Object/Post.php:731 +#: src/Object/Post.php:726 #, php-format msgid "Commented by: %s" msgstr "" -#: src/Object/Post.php:736 +#: src/Object/Post.php:731 #, php-format msgid "Reacted with %s by: %s" msgstr "" -#: src/Object/Post.php:759 +#: src/Object/Post.php:754 #, php-format msgid "Quote shared by: %s" msgstr "" -#: src/Protocol/ActivityPub/Receiver.php:568 +#: src/Protocol/ActivityPub/Receiver.php:557 msgid "Chat" msgstr "" -#: src/Protocol/Delivery.php:547 +#: src/Protocol/Delivery.php:530 msgid "(no subject)" msgstr "" -#: src/Protocol/OStatus.php:1390 -#, php-format -msgid "%s is now following %s." -msgstr "%s jälgib nüüd %s ." - -#: src/Protocol/OStatus.php:1391 -msgid "following" -msgstr "jälgib" - -#: src/Protocol/OStatus.php:1394 -#, php-format -msgid "%s stopped following %s." -msgstr "%slõpetas %s jälgimise" - -#: src/Protocol/OStatus.php:1395 -msgid "stopped following" -msgstr "lõpetas jälgimise" - -#: src/Render/FriendicaSmartyEngine.php:56 +#: src/Render/FriendicaSmartyEngine.php:42 #, php-format msgid "The folder %s must be writable by webserver." msgstr "" -#: src/Security/Authentication.php:227 +#: src/Security/Authentication.php:200 msgid "Login failed." msgstr "" -#: src/Security/Authentication.php:272 +#: src/Security/Authentication.php:245 msgid "Login failed. Please check your credentials." msgstr "" -#: src/Security/Authentication.php:391 +#: src/Security/Authentication.php:359 #, php-format msgid "Welcome %s" msgstr "" -#: src/Security/Authentication.php:392 +#: src/Security/Authentication.php:360 msgid "Please upload a profile photo." msgstr "Palun lae profiilifoto üles" -#: src/Util/EMailer/MailBuilder.php:260 +#: src/Security/OpenWebAuth.php:149 +#, php-format +msgid "OpenWebAuth: %1$s welcomes %2$s" +msgstr "" + +#: src/Util/EMailer/MailBuilder.php:246 msgid "Friendica Notification" msgstr "" -#: src/Util/EMailer/NotifyMailBuilder.php:78 -#: src/Util/EMailer/SystemMailBuilder.php:54 +#: src/Util/EMailer/NotifyMailBuilder.php:64 +#: src/Util/EMailer/SystemMailBuilder.php:40 #, php-format msgid "%1$s, %2$s Administrator" msgstr "" -#: src/Util/EMailer/NotifyMailBuilder.php:80 -#: src/Util/EMailer/SystemMailBuilder.php:56 +#: src/Util/EMailer/NotifyMailBuilder.php:66 +#: src/Util/EMailer/SystemMailBuilder.php:42 #, php-format msgid "%s Administrator" msgstr "" -#: src/Util/EMailer/NotifyMailBuilder.php:193 -#: src/Util/EMailer/NotifyMailBuilder.php:217 -#: src/Util/EMailer/SystemMailBuilder.php:101 -#: src/Util/EMailer/SystemMailBuilder.php:118 +#: src/Util/EMailer/NotifyMailBuilder.php:179 +#: src/Util/EMailer/NotifyMailBuilder.php:203 +#: src/Util/EMailer/SystemMailBuilder.php:87 +#: src/Util/EMailer/SystemMailBuilder.php:104 msgid "thanks" msgstr "" -#: src/Util/Temporal.php:172 +#: src/Util/Temporal.php:158 msgid "YYYY-MM-DD or MM-DD" msgstr "" -#: src/Util/Temporal.php:280 +#: src/Util/Temporal.php:266 #, php-format msgid "Time zone: %s Change in Settings" msgstr "" -#: src/Util/Temporal.php:320 src/Util/Temporal.php:329 +#: src/Util/Temporal.php:306 src/Util/Temporal.php:315 msgid "never" msgstr "" -#: src/Util/Temporal.php:343 +#: src/Util/Temporal.php:329 msgid "less than a second ago" msgstr "" -#: src/Util/Temporal.php:352 +#: src/Util/Temporal.php:338 msgid "year" msgstr "" -#: src/Util/Temporal.php:352 +#: src/Util/Temporal.php:338 msgid "years" msgstr "" -#: src/Util/Temporal.php:353 +#: src/Util/Temporal.php:339 msgid "months" msgstr "" -#: src/Util/Temporal.php:354 +#: src/Util/Temporal.php:340 msgid "weeks" msgstr "" -#: src/Util/Temporal.php:355 +#: src/Util/Temporal.php:341 msgid "days" msgstr "" -#: src/Util/Temporal.php:356 +#: src/Util/Temporal.php:342 msgid "hour" msgstr "" -#: src/Util/Temporal.php:356 +#: src/Util/Temporal.php:342 msgid "hours" msgstr "" -#: src/Util/Temporal.php:357 +#: src/Util/Temporal.php:343 msgid "minute" msgstr "" -#: src/Util/Temporal.php:357 +#: src/Util/Temporal.php:343 msgid "minutes" msgstr "" -#: src/Util/Temporal.php:358 +#: src/Util/Temporal.php:344 msgid "second" msgstr "" -#: src/Util/Temporal.php:358 +#: src/Util/Temporal.php:344 msgid "seconds" msgstr "" -#: src/Util/Temporal.php:367 +#: src/Util/Temporal.php:353 #, php-format msgid "in %1$d %2$s" msgstr "" -#: src/Util/Temporal.php:370 +#: src/Util/Temporal.php:356 #, php-format msgid "%1$d %2$s ago" msgstr "" -#: src/Worker/PushSubscription.php:110 +#: src/Worker/PushSubscription.php:96 msgid "Notification from Friendica" msgstr "" -#: src/Worker/PushSubscription.php:111 +#: src/Worker/PushSubscription.php:97 msgid "Empty Post" msgstr "" -#: view/theme/duepuntozero/config.php:68 +#: view/theme/duepuntozero/config.php:56 msgid "default" msgstr "" -#: view/theme/duepuntozero/config.php:69 +#: view/theme/duepuntozero/config.php:57 msgid "greenzero" msgstr "" -#: view/theme/duepuntozero/config.php:70 +#: view/theme/duepuntozero/config.php:58 msgid "purplezero" msgstr "" -#: view/theme/duepuntozero/config.php:71 +#: view/theme/duepuntozero/config.php:59 msgid "easterbunny" msgstr "" -#: view/theme/duepuntozero/config.php:72 +#: view/theme/duepuntozero/config.php:60 msgid "darkzero" msgstr "" -#: view/theme/duepuntozero/config.php:73 +#: view/theme/duepuntozero/config.php:61 msgid "comix" msgstr "" -#: view/theme/duepuntozero/config.php:74 +#: view/theme/duepuntozero/config.php:62 msgid "slackr" msgstr "" -#: view/theme/duepuntozero/config.php:87 +#: view/theme/duepuntozero/config.php:75 msgid "Variations" msgstr "" -#: view/theme/frio/config.php: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:134 msgid "Note" msgstr "" -#: view/theme/frio/config.php:167 +#: view/theme/frio/config.php:134 msgid "Check image permissions if all users are allowed to see the image" msgstr "" -#: view/theme/frio/config.php:173 -msgid "Custom" +#: view/theme/frio/config.php:140 +msgid "Appearance" msgstr "" -#: view/theme/frio/config.php:174 -msgid "Legacy" +#: view/theme/frio/config.php:141 +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:141 msgid "Blue" msgstr "" -#: view/theme/frio/config.php:177 +#: view/theme/frio/config.php:141 msgid "Red" msgstr "" -#: view/theme/frio/config.php:177 +#: view/theme/frio/config.php:141 msgid "Purple" msgstr "" -#: view/theme/frio/config.php:177 +#: view/theme/frio/config.php:141 msgid "Green" msgstr "" -#: view/theme/frio/config.php:177 +#: view/theme/frio/config.php:141 msgid "Pink" msgstr "" -#: view/theme/frio/config.php:178 +#: view/theme/frio/config.php:142 msgid "Copy or paste schemestring" msgstr "" -#: view/theme/frio/config.php:178 +#: view/theme/frio/config.php:142 msgid "" "You can copy this string to share your theme with others. Pasting here " "applies the schemestring" msgstr "" -#: view/theme/frio/config.php:179 +#: view/theme/frio/config.php:143 msgid "Navigation bar background color" msgstr "" -#: view/theme/frio/config.php:180 +#: view/theme/frio/config.php:144 msgid "Navigation bar icon color " msgstr "" -#: view/theme/frio/config.php:181 +#: view/theme/frio/config.php:145 msgid "Link color" msgstr "" -#: view/theme/frio/config.php:182 +#: view/theme/frio/config.php:146 msgid "Set the background color" msgstr "" -#: view/theme/frio/config.php:183 +#: view/theme/frio/config.php:147 msgid "Content background opacity" msgstr "" -#: view/theme/frio/config.php:184 +#: view/theme/frio/config.php:148 msgid "Set the background image" msgstr "" -#: view/theme/frio/config.php:185 +#: view/theme/frio/config.php:149 msgid "Background image style" msgstr "" -#: view/theme/frio/config.php:188 +#: view/theme/frio/config.php:152 msgid "Always open Compose page" msgstr "" -#: view/theme/frio/config.php:188 +#: view/theme/frio/config.php:152 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:156 msgid "Login page background image" msgstr "" -#: view/theme/frio/config.php:196 +#: view/theme/frio/config.php:160 msgid "Login page background color" msgstr "" -#: view/theme/frio/config.php:196 +#: view/theme/frio/config.php:160 msgid "Leave background image and color empty for theme defaults" msgstr "" -#: view/theme/frio/php/Image.php:39 +#: view/theme/frio/php/Image.php:27 msgid "Top Banner" msgstr "" -#: view/theme/frio/php/Image.php:39 +#: view/theme/frio/php/Image.php:27 msgid "" "Resize image to the width of the screen and show background color below on " "long pages." msgstr "" -#: view/theme/frio/php/Image.php:40 +#: view/theme/frio/php/Image.php:28 msgid "Full screen" msgstr "" -#: view/theme/frio/php/Image.php:40 +#: view/theme/frio/php/Image.php:28 msgid "" "Resize image to fill entire screen, clipping either the right or the bottom." msgstr "" -#: view/theme/frio/php/Image.php:41 +#: view/theme/frio/php/Image.php:29 msgid "Single row mosaic" msgstr "" -#: view/theme/frio/php/Image.php:41 +#: view/theme/frio/php/Image.php:29 msgid "" "Resize image to repeat it on a single row, either vertical or horizontal." msgstr "" -#: view/theme/frio/php/Image.php:42 +#: view/theme/frio/php/Image.php:30 msgid "Mosaic" msgstr "" -#: view/theme/frio/php/Image.php:42 +#: view/theme/frio/php/Image.php:30 msgid "Repeat image to fill the screen." msgstr "" -#: view/theme/frio/php/default.php:81 view/theme/frio/php/standard.php:40 +#: view/theme/frio/php/default.php:70 view/theme/frio/php/standard.php:28 msgid "Skip to main content" msgstr "" -#: view/theme/frio/php/default.php:152 view/theme/frio/php/standard.php:75 +#: view/theme/frio/php/default.php:141 view/theme/frio/php/standard.php:63 msgid "Back to top" msgstr "" -#: view/theme/frio/theme.php:211 +#: view/theme/frio/php/scheme.php:93 +msgid "Light" +msgstr "" + +#: view/theme/frio/php/scheme.php:94 +msgid "Dark" +msgstr "" + +#: view/theme/frio/php/scheme.php:95 +msgid "Black" +msgstr "" + +#: view/theme/frio/php/scheme.php:106 +msgid "Custom" +msgstr "" + +#: view/theme/frio/theme.php:202 msgid "Guest" msgstr "" -#: view/theme/frio/theme.php:214 +#: view/theme/frio/theme.php:205 msgid "Visitor" msgstr "" -#: view/theme/quattro/config.php:89 +#: view/theme/quattro/config.php:77 msgid "Alignment" msgstr "" -#: view/theme/quattro/config.php:89 +#: view/theme/quattro/config.php:77 msgid "Left" msgstr "" -#: view/theme/quattro/config.php:89 +#: view/theme/quattro/config.php:77 msgid "Center" msgstr "" -#: view/theme/quattro/config.php:90 +#: view/theme/quattro/config.php:78 msgid "Color scheme" msgstr "" -#: view/theme/quattro/config.php:91 +#: view/theme/quattro/config.php:79 msgid "Posts font size" msgstr "" -#: view/theme/quattro/config.php:92 +#: view/theme/quattro/config.php:80 msgid "Textareas font size" msgstr "" -#: view/theme/vier/config.php:91 +#: view/theme/vier/config.php:79 msgid "Comma separated list of helper groups" msgstr "" -#: view/theme/vier/config.php:131 +#: view/theme/vier/config.php:119 msgid "don't show" msgstr "" -#: view/theme/vier/config.php:131 +#: view/theme/vier/config.php:119 msgid "show" msgstr "" -#: view/theme/vier/config.php:137 +#: view/theme/vier/config.php:125 msgid "Set style" msgstr "" -#: view/theme/vier/config.php:138 +#: view/theme/vier/config.php:126 msgid "Community Pages" msgstr "" -#: view/theme/vier/config.php:139 view/theme/vier/theme.php:148 +#: view/theme/vier/config.php:127 view/theme/vier/theme.php:136 msgid "Community Profiles" msgstr "" -#: view/theme/vier/config.php:140 +#: view/theme/vier/config.php:128 msgid "Help or @NewHere ?" msgstr "" -#: view/theme/vier/config.php:141 view/theme/vier/theme.php:319 +#: view/theme/vier/config.php:129 view/theme/vier/theme.php:307 msgid "Connect Services" msgstr "" -#: view/theme/vier/config.php:142 +#: view/theme/vier/config.php:130 msgid "Find Friends" msgstr "" -#: view/theme/vier/config.php:143 view/theme/vier/theme.php:175 +#: view/theme/vier/config.php:131 view/theme/vier/theme.php:163 msgid "Last users" msgstr "" -#: view/theme/vier/theme.php:234 +#: view/theme/vier/theme.php:222 msgid "Quick Start" msgstr "" diff --git a/view/lang/et/strings.php b/view/lang/et/strings.php index c53576cded..34b9314826 100644 --- a/view/lang/et/strings.php +++ b/view/lang/et/strings.php @@ -166,6 +166,11 @@ $a->strings['Photo Location'] = 'Foto asukoht'; $a->strings['Post/Comment Tools'] = 'Postituse/Kommenteerimise tööriistad'; $a->strings['Post Categories'] = 'Postituse kategooriad'; $a->strings['Add categories to your posts'] = 'Lisa kategooriad on postitustele'; +$a->strings['Archives'] = 'Arhiivid'; +$a->strings['Protocols'] = 'Protokollid'; +$a->strings['Account Types'] = 'Kontode tüübid'; +$a->strings['Saved Searches'] = 'Salvestatud otsingud'; +$a->strings['Saved Folders'] = 'Salvestatud kaustad'; $a->strings['Advanced Profile Settings'] = 'Täpsemad profiili sätted'; $a->strings['Tag Cloud'] = 'Sildipilv tag cloud'; $a->strings['Provide a personal tag cloud on your profile page'] = 'Näita personaalset sildipilve oma profiili lehel'; @@ -262,20 +267,16 @@ $a->strings['Global Directory'] = 'Globaalne kataloog'; $a->strings['Local Directory'] = 'Kohalik kataloog'; $a->strings['Relationships'] = 'Suhted'; $a->strings['All Contacts'] = 'Kõik kontaktid'; -$a->strings['Protocols'] = 'Protokollid'; $a->strings['All Protocols'] = 'Kõik protokollid'; -$a->strings['Saved Folders'] = 'Salvestatud kaustad'; $a->strings['Everything'] = 'Kõikvõimalik'; $a->strings['Categories'] = 'Kategooriad'; $a->strings['%d contact in common'] = [ 0 => '%d ühine kontakt', 1 => '%d ühine kontakt', ]; -$a->strings['Archives'] = 'Arhiivid'; $a->strings['Persons'] = 'Isikud'; $a->strings['Organisations'] = 'Organisatsioonid'; $a->strings['News'] = 'Uudised'; -$a->strings['Account Types'] = 'Kontode tüübid'; $a->strings['Export'] = 'Eksport'; $a->strings['Export calendar as ical'] = 'Ekspordi kalender kui ical'; $a->strings['No contacts'] = 'Kontakte pole'; @@ -285,7 +286,6 @@ $a->strings['%d Contact'] = [ ]; $a->strings['View Contacts'] = 'Kuva kontaktid'; $a->strings['Remove term'] = 'Eemalda tingimus'; -$a->strings['Saved Searches'] = 'Salvestatud otsingud'; $a->strings['More Trending Tags'] = 'Veel trendikaid silte'; $a->strings['Location:'] = 'Asukoht:'; $a->strings['Network:'] = 'Võrk'; @@ -380,6 +380,7 @@ $a->strings['Friends'] = 'Sõbrad'; $a->strings['Profile Photos'] = 'Profiilifotod'; $a->strings['Addons'] = 'Lisad'; $a->strings['Save Settings'] = 'Salvesta Sätted'; +$a->strings['Yes'] = 'Jah'; $a->strings['Manage Additional Features'] = 'Halda lisafunktsioone'; $a->strings['Show all'] = 'Näita kõik'; $a->strings['Event details'] = 'Sündmuse detailid'; @@ -483,7 +484,6 @@ $a->strings['Access denied.'] = 'Ligipääs keelatud.'; $a->strings['Submit Request'] = 'Saada taotlus'; $a->strings['You already added this contact.'] = 'Te juba lisasite selle kontakti.'; $a->strings['Diaspora support isn\'t enabled. Contact can\'t be added.'] = 'Diaspora toetus pole võimaldatud. Kontakti ei saa lisada.'; -$a->strings['OStatus support is disabled. Contact can\'t be added.'] = 'OStatus tugi pole võimaldatud. Kontakti ei saa lisada.'; $a->strings['Please answer the following:'] = 'Palun vasta järgnevale:'; $a->strings['Your Identity Address:'] = 'Sinu ID aadress:'; $a->strings['Profile URL'] = 'Profiili URL'; @@ -527,7 +527,6 @@ $a->strings['Actions'] = 'Tegevused'; $a->strings['Status'] = 'Staatus'; $a->strings['Toggle Blocked status'] = 'Vaheta Bloki staatust'; $a->strings['Toggle Ignored status'] = 'Vahea Ignoreeritud staatust'; -$a->strings['Yes'] = 'Jah'; $a->strings['You aren\'t following this contact.'] = 'Sa ei jälgi seda kontakti.'; $a->strings['Unfollowing is currently not supported by your network.'] = 'Mittejälgimine ei ole sinu võrgus hetkel toetatud.'; $a->strings['Disconnect/Unfollow'] = 'Ühenda lahti/Ära jälgi'; @@ -621,7 +620,6 @@ $a->strings['Personal Notifications'] = 'Isiklikud teavitused'; $a->strings['Home Notifications'] = 'Kodu teavitused'; $a->strings['Show unread'] = 'Näita lugemata'; $a->strings['{0} requested registration'] = '{0} taotleb registreerimist'; -$a->strings['Keep this window open until done.'] = 'Hoia see aken lahti kuni kõik tehtud. '; $a->strings['No contact provided.'] = 'Kontakti ei esitletud. '; $a->strings['Couldn\'t fetch information for contact.'] = 'Ei saanud infot kontakti tarbeks. '; $a->strings['Couldn\'t fetch friends for contact.'] = 'Ei saanud sõbrainfot kontakti tarbeks. '; @@ -629,8 +627,7 @@ $a->strings['Done'] = 'Tehtud'; $a->strings['success'] = 'edukas'; $a->strings['failed'] = 'ebaõnnestus'; $a->strings['ignored'] = 'ignoreeritud'; -$a->strings['Remote privacy information not available.'] = 'Kaugturvainfo pole kättesaadav.'; -$a->strings['Visible to:'] = 'Nähtav: '; +$a->strings['Keep this window open until done.'] = 'Hoia see aken lahti kuni kõik tehtud. '; $a->strings['Edit post'] = 'Muuda postitust'; $a->strings['web link'] = 'hüperlink'; $a->strings['Insert video link'] = 'Lisa videolink'; @@ -640,10 +637,12 @@ $a->strings['audio link'] = 'audiolink'; $a->strings['Remove Item Tag'] = 'Eemalda elemendi Silt'; $a->strings['Select a tag to remove: '] = 'Vali tag mida eemaldada: '; $a->strings['Remove'] = 'Eemalda'; +$a->strings['Remote privacy information not available.'] = 'Kaugturvainfo pole kättesaadav.'; +$a->strings['Visible to:'] = 'Nähtav: '; $a->strings['No contacts.'] = 'Kontakte pole.'; -$a->strings['%s\'s timeline'] = '%s ajajoon'; $a->strings['%s\'s posts'] = '%s postitused'; $a->strings['%s\'s comments'] = '%s kommentaarid'; +$a->strings['%s\'s timeline'] = '%s ajajoon'; $a->strings['Image exceeds size limit of %s'] = 'Pilt ületab suuruse limiidi %s '; $a->strings['Image upload didn\'t complete, please try again'] = 'Pildi üleslaadimine ei lõppenud, palun ürita uuesti'; $a->strings['Image file is missing'] = 'Pildifail on puudu'; @@ -835,7 +834,6 @@ $a->strings['%s commented on %s\'s post'] = '%s kommenteeris %s postitust '; $a->strings['%s created a new post'] = '%s tegi uue postituse'; $a->strings['Friend Suggestion'] = 'Sõbrasoovitus'; $a->strings['Friend/Connect Request'] = 'Sõbra/Ühenduse taotlus'; -$a->strings['New Follower'] = 'Uus jälgija'; $a->strings['a private message'] = 'privaatsõnum'; $a->strings['%s commented on an item/conversation you have been following.'] = '%s kommenteeris elementi/vestlust mida jälgid.'; $a->strings['Name:'] = 'Nimi:'; @@ -862,8 +860,4 @@ $a->strings['Reply to %s'] = 'Vasta %s le'; $a->strings['More'] = 'Rohkem'; $a->strings['Show more'] = 'Näita rohkem '; $a->strings['Show fewer'] = 'Näita vähem'; -$a->strings['%s is now following %s.'] = '%s jälgib nüüd %s .'; -$a->strings['following'] = 'jälgib'; -$a->strings['%s stopped following %s.'] = '%slõpetas %s jälgimise'; -$a->strings['stopped following'] = 'lõpetas jälgimise'; $a->strings['Please upload a profile photo.'] = 'Palun lae profiilifoto üles'; diff --git a/view/lang/fr/messages.po b/view/lang/fr/messages.po index cb915bdf22..2c2aebe951 100644 --- a/view/lang/fr/messages.po +++ b/view/lang/fr/messages.po @@ -1,8 +1,7 @@ # FRIENDICA Distributed Social Network -# SPDX-FileCopyrightText: Copyright (C) 2010-2024, the Friendica project -# -# SPDX-License-Identifier: AGPL-3.0-or-later -# +# Copyright (C) 2010-2024, the Friendica project +# This file is distributed under the same license as the Friendica package. +# # Translators: # Anthronaut , 2015 # ButterflyOfFire, 2020 @@ -37,7 +36,7 @@ msgid "" msgstr "" "Project-Id-Version: friendica\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-08-11 06:43+0000\n" +"POT-Creation-Date: 2024-10-07 20:46+0000\n" "PO-Revision-Date: 2011-05-05 10:19+0000\n" "Last-Translator: cracrayol, 2024\n" "Language-Team: French (http://app.transifex.com/Friendica/friendica/language/fr/)\n" @@ -47,77 +46,77 @@ msgstr "" "Language: fr\n" "Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" -#: mod/item.php:101 mod/item.php:104 mod/item.php:171 mod/item.php:174 +#: mod/item.php:89 mod/item.php:92 mod/item.php:159 mod/item.php:162 msgid "Unable to locate original post." msgstr "Impossible de localiser la publication originale." -#: mod/item.php:139 +#: mod/item.php:127 msgid "Post updated." msgstr "Publication mise à jour." -#: mod/item.php:204 mod/item.php:208 +#: mod/item.php:192 mod/item.php:196 msgid "Item wasn't stored." msgstr "La publication n'a pas été enregistrée." -#: mod/item.php:218 +#: mod/item.php:206 msgid "Item couldn't be fetched." msgstr "La publication n'a pas pu être récupérée." -#: mod/item.php:262 mod/item.php:266 +#: mod/item.php:250 mod/item.php:254 msgid "Empty post discarded." msgstr "Publication vide rejetée." -#: mod/item.php:437 src/Module/Admin/Themes/Details.php:45 -#: src/Module/Admin/Themes/Index.php:65 src/Module/Debug/ItemBody.php:42 -#: src/Module/Debug/ItemBody.php:57 src/Module/Item/Feed.php:80 +#: mod/item.php:425 src/Module/Admin/Themes/Details.php:31 +#: src/Module/Admin/Themes/Index.php:51 src/Module/Debug/ItemBody.php:28 +#: src/Module/Debug/ItemBody.php:43 src/Module/Item/Feed.php:66 msgid "Item not found." msgstr "Élément introuvable." -#: mod/item.php:461 mod/message.php:66 mod/message.php:112 mod/notes.php:45 -#: mod/photos.php:147 mod/photos.php:663 src/Model/Event.php:520 -#: src/Module/Attach.php:55 src/Module/BaseApi.php:103 -#: src/Module/BaseNotifications.php:98 src/Module/BaseSettings.php:50 -#: src/Module/Calendar/Event/API.php:88 src/Module/Calendar/Event/Form.php:84 -#: src/Module/Calendar/Export.php:82 src/Module/Calendar/Show.php:82 -#: src/Module/Circle.php:41 src/Module/Circle.php:84 -#: src/Module/Contact/Advanced.php:60 src/Module/Contact/Follow.php:87 -#: src/Module/Contact/Follow.php:160 src/Module/Contact/MatchInterests.php:87 -#: src/Module/Contact/Suggestions.php:54 src/Module/Contact/Unfollow.php:66 -#: src/Module/Contact/Unfollow.php:80 src/Module/Contact/Unfollow.php:112 -#: src/Module/FollowConfirm.php:38 src/Module/FriendSuggest.php:57 -#: src/Module/Invite.php:42 src/Module/Invite.php:131 -#: src/Module/Notifications/Notification.php:76 -#: src/Module/Notifications/Notification.php:107 -#: src/Module/OStatus/Repair.php:60 src/Module/OStatus/Subscribe.php:68 -#: src/Module/Post/Edit.php:76 src/Module/Profile/Common.php:75 -#: src/Module/Profile/Contacts.php:78 src/Module/Profile/Photos.php:92 -#: src/Module/Profile/Schedule.php:39 src/Module/Profile/Schedule.php:56 -#: src/Module/Register.php:84 src/Module/Register.php:97 -#: src/Module/Register.php:213 src/Module/Register.php:252 -#: src/Module/Search/Directory.php:37 src/Module/Settings/Account.php:50 -#: src/Module/Settings/Account.php:391 src/Module/Settings/Channels.php:66 -#: src/Module/Settings/Channels.php:141 src/Module/Settings/Delegation.php:90 -#: src/Module/Settings/Display.php:90 src/Module/Settings/Display.php:197 -#: src/Module/Settings/Profile/Photo/Crop.php:165 -#: src/Module/Settings/Profile/Photo/Index.php:110 -#: src/Module/Settings/RemoveMe.php:119 src/Module/Settings/UserExport.php:78 -#: src/Module/Settings/UserExport.php:114 -#: src/Module/Settings/UserExport.php:213 -#: src/Module/Settings/UserExport.php:233 -#: src/Module/Settings/UserExport.php:298 src/Module/User/Delegation.php:154 -#: src/Module/User/Import.php:85 src/Module/User/Import.php:92 +#: mod/item.php:449 mod/message.php:54 mod/message.php:100 mod/notes.php:33 +#: mod/photos.php:135 mod/photos.php:627 src/Model/Event.php:506 +#: src/Module/Attach.php:41 src/Module/BaseApi.php:89 +#: src/Module/BaseNotifications.php:84 src/Module/BaseSettings.php:36 +#: src/Module/Calendar/Event/API.php:74 src/Module/Calendar/Event/Form.php:70 +#: src/Module/Calendar/Export.php:68 src/Module/Calendar/Show.php:68 +#: src/Module/Circle.php:27 src/Module/Circle.php:70 +#: src/Module/Contact/Advanced.php:46 src/Module/Contact/Follow.php:73 +#: src/Module/Contact/Follow.php:141 src/Module/Contact/MatchInterests.php:73 +#: src/Module/Contact/Suggestions.php:40 src/Module/Contact/Unfollow.php:52 +#: src/Module/Contact/Unfollow.php:66 src/Module/Contact/Unfollow.php:98 +#: src/Module/FollowConfirm.php:24 src/Module/FriendSuggest.php:43 +#: src/Module/Invite.php:28 src/Module/Invite.php:117 +#: src/Module/Notifications/Notification.php:62 +#: src/Module/Notifications/Notification.php:93 +#: src/Module/OStatus/Subscribe.php:54 src/Module/Post/Edit.php:62 +#: src/Module/Profile/Common.php:61 src/Module/Profile/Contacts.php:64 +#: src/Module/Profile/Photos.php:78 src/Module/Profile/Schedule.php:25 +#: src/Module/Profile/Schedule.php:42 src/Module/Register.php:70 +#: src/Module/Register.php:83 src/Module/Register.php:199 +#: src/Module/Register.php:238 src/Module/Search/Directory.php:23 +#: src/Module/Settings/Account.php:36 src/Module/Settings/Account.php:377 +#: src/Module/Settings/Channels.php:52 src/Module/Settings/Channels.php:127 +#: src/Module/Settings/Delegation.php:76 src/Module/Settings/Display.php:76 +#: src/Module/Settings/Display.php:183 +#: src/Module/Settings/Profile/Photo/Crop.php:151 +#: src/Module/Settings/Profile/Photo/Index.php:96 +#: src/Module/Settings/RemoveMe.php:105 src/Module/Settings/UserExport.php:64 +#: src/Module/Settings/UserExport.php:100 +#: src/Module/Settings/UserExport.php:199 +#: src/Module/Settings/UserExport.php:219 +#: src/Module/Settings/UserExport.php:284 src/Module/User/Delegation.php:140 +#: src/Module/User/Import.php:71 src/Module/User/Import.php:78 msgid "Permission denied." msgstr "Permission refusée." -#: mod/lostpass.php:40 +#: mod/lostpass.php:28 msgid "No valid account found." msgstr "Impossible de trouver un compte valide." -#: mod/lostpass.php:52 +#: mod/lostpass.php:40 msgid "Password reset request issued. Check your email." msgstr "Réinitialisation du mot de passe en cours. Vérifiez vos courriels." -#: mod/lostpass.php:58 +#: mod/lostpass.php:46 #, php-format msgid "" "\n" @@ -133,7 +132,7 @@ msgid "" "\t\tissued this request." msgstr "\n\t\tCher/Chère %1$s,\n\t\t\tUne demande vient d'être faite depuis \"%2$s\" pour réinitialiser votre mot de passe de compte. \n\t\tAfin de confirmer cette demande, merci de sélectionner le lien ci-dessous \n\t\tet de le coller dans la barre d'adresse de votre navigateur.\n\n\t\tSi vous n'avez PAS fait cette demande de changement, merci de NE PAS suivre le lien\n\t\tci-dessous et d'ignorer et/ou supprimer ce message. La demande expirera rapidement.\n\n\t\tVotre mot de passe ne changera pas tant que nous n'avons pas vérifié que vous êtes à l'origine de la demande." -#: mod/lostpass.php:69 +#: mod/lostpass.php:57 #, php-format msgid "" "\n" @@ -150,70 +149,70 @@ msgid "" "\t\tLogin Name:\t%3$s" msgstr "\n\t\tSuivez ce lien pour confirmer votre identité :\n\n\t\t%1$s\n\n\t\tVous recevrez alors un message contenant votre nouveau mot de passe.\n\t\tVous pourrez changer ce mot de passe depuis les paramètres de votre compte une fois connecté.\n\n\t\tInformations de connexion :\n\n\t\tAdresse :\t%2$s\n\t\tIdentifiant :\t%3$s" -#: mod/lostpass.php:84 +#: mod/lostpass.php:72 #, php-format msgid "Password reset requested at %s" msgstr "Demande de réinitialisation de mot de passe depuis %s" -#: mod/lostpass.php:100 +#: mod/lostpass.php:88 msgid "" "Request could not be verified. (You may have previously submitted it.) " "Password reset failed." msgstr "La requête n'a pas pu être vérifiée. (Vous l'avez peut-être déjà précédemment envoyée.) La réinitialisation du mot de passe a échoué." -#: mod/lostpass.php:113 +#: mod/lostpass.php:101 msgid "Request has expired, please make a new one." msgstr "La requête a expiré, veuillez la renouveler." -#: mod/lostpass.php:128 +#: mod/lostpass.php:116 msgid "Forgot your Password?" msgstr "Mot de passe oublié ?" -#: mod/lostpass.php:129 +#: mod/lostpass.php:117 msgid "" "Enter your email address and submit to have your password reset. Then check " "your email for further instructions." msgstr "Entrez votre adresse de courriel et validez pour réinitialiser votre mot de passe. Vous recevrez la suite des instructions par courriel." -#: mod/lostpass.php:130 src/Module/Security/Login.php:164 +#: mod/lostpass.php:118 src/Module/Security/Login.php:150 msgid "Nickname or Email: " msgstr "Pseudo ou Courriel : " -#: mod/lostpass.php:131 +#: mod/lostpass.php:119 msgid "Reset" msgstr "Réinitialiser" -#: mod/lostpass.php:146 src/Module/Security/Login.php:176 +#: mod/lostpass.php:134 src/Module/Security/Login.php:162 msgid "Password Reset" msgstr "Réinitialiser le mot de passe" -#: mod/lostpass.php:147 +#: mod/lostpass.php:135 msgid "Your password has been reset as requested." msgstr "Votre mot de passe a bien été réinitialisé." -#: mod/lostpass.php:148 +#: mod/lostpass.php:136 msgid "Your new password is" msgstr "Votre nouveau mot de passe est " -#: mod/lostpass.php:149 +#: mod/lostpass.php:137 msgid "Save or copy your new password - and then" msgstr "Sauvez ou copiez ce nouveau mot de passe - puis" -#: mod/lostpass.php:150 +#: mod/lostpass.php:138 msgid "click here to login" msgstr "cliquez ici pour vous connecter" -#: mod/lostpass.php:151 +#: mod/lostpass.php:139 msgid "" "Your password may be changed from the Settings page after " "successful login." msgstr "Votre mot de passe peut être changé depuis la page <em>Réglages</em>, une fois que vous serez connecté." -#: mod/lostpass.php:155 +#: mod/lostpass.php:143 msgid "Your password has been reset." msgstr "Votre mot de passe a été réinitialisé." -#: mod/lostpass.php:158 +#: mod/lostpass.php:146 #, php-format msgid "" "\n" @@ -224,7 +223,7 @@ msgid "" "\t\t" msgstr "\n\t\t\t\tChère/Cher %1$s,\n\t\t\t\t\tVotre mot de passe a été changé ainsi que vous l’avez demandé. Veuillez conserver cette informations dans vos archives (ou changer immédiatement votre mot de passe pour un autre dont vous vous souviendrez).\n\t\t\t" -#: mod/lostpass.php:164 +#: mod/lostpass.php:152 #, php-format msgid "" "\n" @@ -238,161 +237,161 @@ msgid "" "\t\t" msgstr "\n\t\t\t\tVoici vos informations de connexion :\n\n\t\t\t\tAdresse :\t%1$s\n\t\t\t\tIdentifiant :\t%2$s\n\t\t\t\tMot de passe :\t%3$s\n\n\t\t\t\tVous pourrez changer votre mot de passe dans les paramètres de votre compte une fois connecté.\n\t\t\t" -#: mod/lostpass.php:176 +#: mod/lostpass.php:164 #, php-format msgid "Your password has been changed at %s" msgstr "Votre mot de passe a été modifié à %s" -#: mod/message.php:45 mod/message.php:127 src/Content/Nav.php:321 +#: mod/message.php:33 mod/message.php:115 src/Content/Nav.php:307 msgid "New Message" msgstr "Nouveau message" -#: mod/message.php:81 +#: mod/message.php:69 msgid "No recipient selected." msgstr "Pas de destinataire sélectionné." -#: mod/message.php:86 +#: mod/message.php:74 msgid "Unable to locate contact information." msgstr "Impossible de localiser les informations du contact." -#: mod/message.php:90 +#: mod/message.php:78 msgid "Message could not be sent." msgstr "Impossible d'envoyer le message." -#: mod/message.php:94 +#: mod/message.php:82 msgid "Message collection failure." msgstr "Récupération des messages infructueuse." -#: mod/message.php:121 src/Module/Notifications/Introductions.php:141 -#: src/Module/Notifications/Introductions.php:176 -#: src/Module/Notifications/Notification.php:85 +#: mod/message.php:109 src/Module/Notifications/Introductions.php:127 +#: src/Module/Notifications/Introductions.php:162 +#: src/Module/Notifications/Notification.php:71 msgid "Discard" msgstr "Rejeter" -#: mod/message.php:134 src/Content/Nav.php:318 view/theme/frio/theme.php:244 +#: mod/message.php:122 src/Content/Nav.php:304 view/theme/frio/theme.php:232 msgid "Messages" msgstr "Messages" -#: mod/message.php:147 +#: mod/message.php:135 msgid "Conversation not found." msgstr "Conversation inconnue." -#: mod/message.php:152 +#: mod/message.php:140 msgid "Message was not deleted." msgstr "Le message n'a pas été supprimé." -#: mod/message.php:167 +#: mod/message.php:155 msgid "Conversation was not removed." msgstr "La conversation n'a pas été supprimée." -#: mod/message.php:180 mod/message.php:285 +#: mod/message.php:168 mod/message.php:273 msgid "Please enter a link URL:" msgstr "Entrez un lien web :" -#: mod/message.php:189 +#: mod/message.php:177 msgid "Send Private Message" msgstr "Envoyer un message privé" -#: mod/message.php:190 mod/message.php:345 -#: src/Module/Privacy/PermissionTooltip.php:132 +#: mod/message.php:178 mod/message.php:333 +#: src/Module/Privacy/PermissionTooltip.php:118 msgid "To:" msgstr "À:" -#: mod/message.php:191 mod/message.php:346 +#: mod/message.php:179 mod/message.php:334 msgid "Subject:" msgstr "Sujet:" -#: mod/message.php:195 mod/message.php:349 src/Module/Invite.php:171 +#: mod/message.php:183 mod/message.php:337 src/Module/Invite.php:157 msgid "Your message:" msgstr "Votre message :" -#: mod/message.php:198 mod/message.php:353 src/Content/Conversation.php:369 -#: src/Module/Post/Edit.php:131 +#: mod/message.php:186 mod/message.php:341 src/Content/Conversation.php:355 +#: src/Module/Post/Edit.php:117 msgid "Upload photo" msgstr "Joindre photo" -#: mod/message.php:199 mod/message.php:354 src/Module/Post/Edit.php:135 +#: mod/message.php:187 mod/message.php:342 src/Module/Post/Edit.php:121 msgid "Insert web link" msgstr "Insérer lien web" -#: mod/message.php:200 mod/message.php:356 mod/photos.php:1291 -#: src/Content/Conversation.php:400 src/Content/Conversation.php:1576 -#: src/Module/Item/Compose.php:213 src/Module/Post/Edit.php:145 -#: src/Object/Post.php:618 +#: mod/message.php:188 mod/message.php:344 mod/photos.php:1255 +#: src/Content/Conversation.php:386 src/Content/Conversation.php:1562 +#: src/Module/Item/Compose.php:199 src/Module/Post/Edit.php:131 +#: src/Object/Post.php:604 msgid "Please wait" msgstr "Patientez" -#: mod/message.php:201 mod/message.php:355 mod/photos.php:694 -#: mod/photos.php:814 mod/photos.php:1091 mod/photos.php:1132 -#: mod/photos.php:1188 mod/photos.php:1268 -#: src/Module/Calendar/Event/Form.php:250 src/Module/Contact/Advanced.php:132 -#: src/Module/Contact/Profile.php:384 -#: src/Module/Debug/ActivityPubConversion.php:146 -#: src/Module/Debug/Babel.php:321 src/Module/Debug/Localtime.php:64 -#: src/Module/Debug/Probe.php:54 src/Module/Debug/WebFinger.php:51 -#: src/Module/FriendSuggest.php:145 src/Module/Install.php:234 -#: src/Module/Install.php:274 src/Module/Install.php:309 -#: src/Module/Invite.php:178 src/Module/Item/Compose.php:196 -#: src/Module/Moderation/Item/Source.php:85 -#: src/Module/Moderation/Report/Create.php:168 -#: src/Module/Moderation/Report/Create.php:183 -#: src/Module/Moderation/Report/Create.php:211 -#: src/Module/Moderation/Report/Create.php:263 -#: src/Module/Profile/Profile.php:276 -#: src/Module/Settings/Profile/Index.php:262 -#: src/Module/Settings/Server/Action.php:79 src/Module/User/Delegation.php:189 -#: src/Object/Post.php:1159 view/theme/duepuntozero/config.php:85 -#: view/theme/frio/config.php:150 view/theme/quattro/config.php:87 -#: view/theme/vier/config.php:135 +#: mod/message.php:189 mod/message.php:343 mod/photos.php:658 +#: mod/photos.php:778 mod/photos.php:1055 mod/photos.php:1096 +#: mod/photos.php:1152 mod/photos.php:1232 +#: src/Module/Calendar/Event/Form.php:236 src/Module/Contact/Advanced.php:118 +#: src/Module/Contact/Profile.php:370 +#: src/Module/Debug/ActivityPubConversion.php:132 +#: src/Module/Debug/Babel.php:307 src/Module/Debug/Localtime.php:50 +#: src/Module/Debug/Probe.php:40 src/Module/Debug/WebFinger.php:37 +#: src/Module/FriendSuggest.php:131 src/Module/Install.php:220 +#: src/Module/Install.php:260 src/Module/Install.php:295 +#: src/Module/Invite.php:164 src/Module/Item/Compose.php:182 +#: src/Module/Moderation/Item/Source.php:71 +#: src/Module/Moderation/Report/Create.php:154 +#: src/Module/Moderation/Report/Create.php:169 +#: src/Module/Moderation/Report/Create.php:197 +#: src/Module/Moderation/Report/Create.php:249 +#: src/Module/Profile/Profile.php:262 +#: src/Module/Settings/Profile/Index.php:248 +#: src/Module/Settings/Server/Action.php:65 src/Module/User/Delegation.php:175 +#: src/Object/Post.php:1145 view/theme/duepuntozero/config.php:73 +#: view/theme/frio/config.php:138 view/theme/quattro/config.php:75 +#: view/theme/vier/config.php:123 msgid "Submit" msgstr "Envoyer" -#: mod/message.php:222 +#: mod/message.php:210 msgid "No messages." msgstr "Aucun message." -#: mod/message.php:278 +#: mod/message.php:266 msgid "Message not available." msgstr "Message indisponible." -#: mod/message.php:322 +#: mod/message.php:310 msgid "Delete message" msgstr "Effacer message" -#: mod/message.php:324 mod/message.php:453 +#: mod/message.php:312 mod/message.php:441 msgid "D, d M Y - g:i A" msgstr "D, d M Y - g:i A" -#: mod/message.php:339 mod/message.php:450 +#: mod/message.php:327 mod/message.php:438 msgid "Delete conversation" msgstr "Effacer conversation" -#: mod/message.php:341 +#: mod/message.php:329 msgid "" "No secure communications available. You may be able to " "respond from the sender's profile page." msgstr "Pas de communications sécurisées possibles. Vous serez peut-être en mesure de répondre depuis la page de profil de l'émetteur." -#: mod/message.php:344 +#: mod/message.php:332 msgid "Send Reply" msgstr "Répondre" -#: mod/message.php:424 +#: mod/message.php:412 #, php-format msgid "Unknown sender - %s" msgstr "Émetteur inconnu - %s" -#: mod/message.php:426 +#: mod/message.php:414 #, php-format msgid "You and %s" msgstr "Vous et %s" -#: mod/message.php:428 +#: mod/message.php:416 #, php-format msgid "%s and You" msgstr "%s et vous" -#: mod/message.php:456 +#: mod/message.php:444 #, php-format msgid "%d message" msgid_plural "%d messages" @@ -400,799 +399,799 @@ msgstr[0] "%d message" msgstr[1] "%d messages" msgstr[2] "%d messages" -#: mod/notes.php:52 src/Module/BaseProfile.php:108 +#: mod/notes.php:40 src/Module/BaseProfile.php:94 msgid "Personal Notes" msgstr "Notes personnelles" -#: mod/notes.php:56 +#: mod/notes.php:44 msgid "Personal notes are visible only by yourself." msgstr "Les notes personnelles ne sont visibles que par vous." -#: mod/notes.php:57 src/Content/Text/HTML.php:861 -#: src/Module/Admin/Storage.php:142 src/Module/Filer/SaveTag.php:74 -#: src/Module/Post/Edit.php:129 src/Module/Settings/Channels.php:229 +#: mod/notes.php:45 src/Content/Text/HTML.php:847 +#: src/Module/Admin/Storage.php:128 src/Module/Filer/SaveTag.php:60 +#: src/Module/Post/Edit.php:115 src/Module/Settings/Channels.php:215 msgid "Save" msgstr "Sauver" -#: mod/photos.php:66 mod/photos.php:129 mod/photos.php:573 -#: src/Model/Event.php:512 src/Model/Profile.php:227 -#: src/Module/Calendar/Export.php:74 src/Module/Calendar/Show.php:74 -#: src/Module/DFRN/Poll.php:43 src/Module/Feed.php:66 src/Module/HCard.php:51 -#: src/Module/Profile/Common.php:62 src/Module/Profile/Common.php:71 -#: src/Module/Profile/Contacts.php:64 src/Module/Profile/Contacts.php:72 -#: src/Module/Profile/Conversations.php:91 src/Module/Profile/Media.php:56 -#: src/Module/Profile/Photos.php:83 src/Module/Profile/RemoteFollow.php:71 -#: src/Module/Register.php:274 +#: mod/photos.php:54 mod/photos.php:117 mod/photos.php:537 +#: src/Model/Event.php:498 src/Model/Profile.php:213 +#: src/Module/Calendar/Export.php:60 src/Module/Calendar/Show.php:60 +#: src/Module/Feed.php:52 src/Module/HCard.php:37 +#: src/Module/Profile/Common.php:48 src/Module/Profile/Common.php:57 +#: src/Module/Profile/Contacts.php:50 src/Module/Profile/Contacts.php:58 +#: src/Module/Profile/Conversations.php:77 src/Module/Profile/Media.php:42 +#: src/Module/Profile/Photos.php:69 src/Module/Profile/RemoteFollow.php:57 +#: src/Module/Register.php:260 msgid "User not found." msgstr "Utilisateur introuvable." -#: mod/photos.php:103 src/Module/BaseProfile.php:68 -#: src/Module/Profile/Photos.php:375 +#: mod/photos.php:91 src/Module/BaseProfile.php:54 +#: src/Module/Profile/Photos.php:361 msgid "Photo Albums" msgstr "Albums photo" -#: mod/photos.php:104 src/Module/Profile/Photos.php:376 -#: src/Module/Profile/Photos.php:396 +#: mod/photos.php:92 src/Module/Profile/Photos.php:362 +#: src/Module/Profile/Photos.php:382 msgid "Recent Photos" msgstr "Photos récentes" -#: mod/photos.php:106 mod/photos.php:862 src/Module/Profile/Photos.php:378 -#: src/Module/Profile/Photos.php:398 +#: mod/photos.php:94 mod/photos.php:826 src/Module/Profile/Photos.php:364 +#: src/Module/Profile/Photos.php:384 msgid "Upload New Photos" msgstr "Téléverser de nouvelles photos" -#: mod/photos.php:118 src/Module/BaseSettings.php:72 -#: src/Module/Profile/Photos.php:359 +#: mod/photos.php:106 src/Module/BaseSettings.php:58 +#: src/Module/Profile/Photos.php:345 msgid "everybody" msgstr "tout le monde" -#: mod/photos.php:154 +#: mod/photos.php:142 msgid "Contact information unavailable" msgstr "Informations de contact indisponibles" -#: mod/photos.php:183 +#: mod/photos.php:171 msgid "Album not found." msgstr "Album introuvable." -#: mod/photos.php:239 +#: mod/photos.php:227 msgid "Album successfully deleted" msgstr "Album bien supprimé" -#: mod/photos.php:241 +#: mod/photos.php:229 msgid "Album was empty." msgstr "L'album était vide" -#: mod/photos.php:272 +#: mod/photos.php:260 msgid "Failed to delete the photo." msgstr "La suppression de la photo a échoué." -#: mod/photos.php:540 +#: mod/photos.php:504 msgid "a photo" msgstr "une photo" -#: mod/photos.php:540 +#: mod/photos.php:504 #, 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:577 src/Module/Conversation/Community.php:160 -#: src/Module/Directory.php:49 src/Module/Profile/Photos.php:293 -#: src/Module/Search/Index.php:65 +#: mod/photos.php:541 src/Module/Conversation/Community.php:148 +#: src/Module/Directory.php:35 src/Module/Profile/Photos.php:279 +#: src/Module/Search/Index.php:51 msgid "Public access denied." msgstr "Accès public refusé." -#: mod/photos.php:582 +#: mod/photos.php:546 msgid "No photos selected" msgstr "Aucune photo sélectionnée" -#: mod/photos.php:710 +#: mod/photos.php:674 #, php-format msgid "The maximum accepted image size is %s" msgstr "La taille maximum d'image autorisée est de %s" -#: mod/photos.php:717 +#: mod/photos.php:681 msgid "Upload Photos" msgstr "Téléverser des photos" -#: mod/photos.php:721 mod/photos.php:810 +#: mod/photos.php:685 mod/photos.php:774 msgid "New album name: " msgstr "Nom du nouvel album : " -#: mod/photos.php:722 +#: mod/photos.php:686 msgid "or select existing album:" msgstr "ou sélectionner un album existant" -#: mod/photos.php:723 +#: mod/photos.php:687 msgid "Do not show a status post for this upload" msgstr "Ne pas publier de notice de statut pour cet envoi" -#: mod/photos.php:726 mod/photos.php:1087 src/Content/Conversation.php:402 -#: src/Module/Calendar/Event/Form.php:253 src/Module/Post/Edit.php:183 +#: mod/photos.php:690 mod/photos.php:1051 src/Content/Conversation.php:388 +#: src/Module/Calendar/Event/Form.php:239 src/Module/Post/Edit.php:169 msgid "Permissions" msgstr "Permissions" -#: mod/photos.php:791 +#: mod/photos.php:755 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:792 mod/photos.php:815 +#: mod/photos.php:756 mod/photos.php:779 msgid "Delete Album" msgstr "Effacer l'album" -#: mod/photos.php:793 mod/photos.php:893 src/Content/Conversation.php:417 -#: src/Module/Contact/Follow.php:173 src/Module/Contact/Revoke.php:106 -#: src/Module/Contact/Unfollow.php:126 -#: src/Module/Media/Attachment/Browser.php:77 -#: src/Module/Media/Photo/Browser.php:88 src/Module/Post/Edit.php:167 -#: src/Module/Post/Tag/Remove.php:109 src/Module/Profile/RemoteFollow.php:134 -#: src/Module/Security/TwoFactor/SignOut.php:125 +#: mod/photos.php:757 mod/photos.php:857 src/Content/Conversation.php:403 +#: src/Module/Contact/Follow.php:154 src/Module/Contact/Revoke.php:92 +#: src/Module/Contact/Unfollow.php:112 +#: src/Module/Media/Attachment/Browser.php:63 +#: src/Module/Media/Photo/Browser.php:74 src/Module/Post/Edit.php:153 +#: src/Module/Post/Tag/Remove.php:95 src/Module/Profile/RemoteFollow.php:120 +#: src/Module/Security/TwoFactor/SignOut.php:111 msgid "Cancel" msgstr "Annuler" -#: mod/photos.php:819 +#: mod/photos.php:783 msgid "Edit Album" msgstr "Éditer l'album" -#: mod/photos.php:820 +#: mod/photos.php:784 msgid "Drop Album" msgstr "Supprimer l'album" -#: mod/photos.php:824 +#: mod/photos.php:788 msgid "Show Newest First" msgstr "Plus récent d'abord" -#: mod/photos.php:826 +#: mod/photos.php:790 msgid "Show Oldest First" msgstr "Plus ancien d'abord" -#: mod/photos.php:847 src/Module/Profile/Photos.php:346 +#: mod/photos.php:811 src/Module/Profile/Photos.php:332 msgid "View Photo" msgstr "Voir la photo" -#: mod/photos.php:879 +#: mod/photos.php:843 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:881 +#: mod/photos.php:845 msgid "Photo not available" msgstr "Photo indisponible" -#: mod/photos.php:891 +#: mod/photos.php:855 msgid "Do you really want to delete this photo?" msgstr "Voulez-vous vraiment supprimer cette photo ?" -#: mod/photos.php:892 mod/photos.php:1092 +#: mod/photos.php:856 mod/photos.php:1056 msgid "Delete Photo" msgstr "Effacer la photo" -#: mod/photos.php:990 +#: mod/photos.php:954 msgid "View photo" msgstr "Voir photo" -#: mod/photos.php:992 +#: mod/photos.php:956 msgid "Edit photo" msgstr "Éditer la photo" -#: mod/photos.php:993 +#: mod/photos.php:957 msgid "Delete photo" msgstr "Effacer la photo" -#: mod/photos.php:994 +#: mod/photos.php:958 msgid "Use as profile photo" msgstr "Utiliser comme photo de profil" -#: mod/photos.php:1001 +#: mod/photos.php:965 msgid "Private Photo" msgstr "Photo privée" -#: mod/photos.php:1007 +#: mod/photos.php:971 msgid "View Full Size" msgstr "Voir en taille réelle" -#: mod/photos.php:1060 +#: mod/photos.php:1024 msgid "Tags: " msgstr "Étiquettes :" -#: mod/photos.php:1063 +#: mod/photos.php:1027 msgid "[Select tags to remove]" msgstr "[Sélectionner les étiquettes à supprimer]" -#: mod/photos.php:1078 +#: mod/photos.php:1042 msgid "New album name" msgstr "Nom du nouvel album" -#: mod/photos.php:1079 +#: mod/photos.php:1043 msgid "Caption" msgstr "Titre" -#: mod/photos.php:1080 +#: mod/photos.php:1044 msgid "Add a Tag" msgstr "Ajouter une étiquette" -#: mod/photos.php:1080 +#: mod/photos.php:1044 msgid "" "Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping" msgstr "Exemples : @bob, @Barbara_Jensen, @jim@example.com, #Californie, #vacances" -#: mod/photos.php:1081 +#: mod/photos.php:1045 msgid "Do not rotate" msgstr "Pas de rotation" -#: mod/photos.php:1082 +#: mod/photos.php:1046 msgid "Rotate CW (right)" msgstr "Tourner dans le sens des aiguilles d'une montre (vers la droite)" -#: mod/photos.php:1083 +#: mod/photos.php:1047 msgid "Rotate CCW (left)" msgstr "Tourner dans le sens contraire des aiguilles d'une montre (vers la gauche)" -#: mod/photos.php:1129 mod/photos.php:1185 mod/photos.php:1265 -#: src/Module/Contact.php:625 src/Module/Item/Compose.php:195 -#: src/Object/Post.php:1156 +#: mod/photos.php:1093 mod/photos.php:1149 mod/photos.php:1229 +#: src/Module/Contact.php:600 src/Module/Item/Compose.php:181 +#: src/Object/Post.php:1142 msgid "This is you" msgstr "C'est vous" -#: mod/photos.php:1131 mod/photos.php:1187 mod/photos.php:1267 -#: src/Module/Moderation/Reports.php:116 src/Object/Post.php:612 -#: src/Object/Post.php:1158 +#: mod/photos.php:1095 mod/photos.php:1151 mod/photos.php:1231 +#: src/Module/Moderation/Reports.php:102 src/Object/Post.php:598 +#: src/Object/Post.php:1144 msgid "Comment" msgstr "Commenter" -#: mod/photos.php:1133 mod/photos.php:1189 mod/photos.php:1269 -#: src/Content/Conversation.php:414 src/Module/Calendar/Event/Form.php:248 -#: src/Module/Item/Compose.php:208 src/Module/Post/Edit.php:165 -#: src/Object/Post.php:1172 +#: mod/photos.php:1097 mod/photos.php:1153 mod/photos.php:1233 +#: src/Content/Conversation.php:400 src/Module/Calendar/Event/Form.php:234 +#: src/Module/Item/Compose.php:194 src/Module/Post/Edit.php:151 +#: src/Object/Post.php:1158 msgid "Preview" msgstr "Aperçu" -#: mod/photos.php:1134 src/Content/Conversation.php:368 -#: src/Module/Post/Edit.php:130 src/Object/Post.php:1160 +#: mod/photos.php:1098 src/Content/Conversation.php:354 +#: src/Module/Post/Edit.php:116 src/Object/Post.php:1146 msgid "Loading..." msgstr "Chargement en cours..." -#: mod/photos.php:1226 src/Content/Conversation.php:1498 -#: src/Object/Post.php:274 +#: mod/photos.php:1190 src/Content/Conversation.php:1484 +#: src/Object/Post.php:260 msgid "Select" msgstr "Sélectionner" -#: mod/photos.php:1227 src/Content/Conversation.php:1499 -#: src/Module/Moderation/Users/Active.php:136 -#: src/Module/Moderation/Users/Blocked.php:136 -#: src/Module/Moderation/Users/Index.php:151 -#: src/Module/Settings/Connectors.php:254 -#: src/Module/Settings/Server/Index.php:109 +#: mod/photos.php:1191 src/Content/Conversation.php:1485 +#: src/Module/Moderation/Users/Active.php:122 +#: src/Module/Moderation/Users/Blocked.php:122 +#: src/Module/Moderation/Users/Index.php:137 +#: src/Module/Settings/Connectors.php:233 +#: src/Module/Settings/Server/Index.php:95 msgid "Delete" msgstr "Supprimer" -#: mod/photos.php:1288 src/Object/Post.php:440 +#: mod/photos.php:1252 src/Object/Post.php:426 msgid "Like" msgstr "Aime" -#: mod/photos.php:1289 src/Object/Post.php:440 +#: mod/photos.php:1253 src/Object/Post.php:426 msgid "I like this (toggle)" msgstr "J'aime" -#: mod/photos.php:1290 src/Object/Post.php:441 +#: mod/photos.php:1254 src/Object/Post.php:427 msgid "Dislike" msgstr "N'aime pas" -#: mod/photos.php:1292 src/Object/Post.php:441 +#: mod/photos.php:1256 src/Object/Post.php:427 msgid "I don't like this (toggle)" msgstr "Je n'aime pas" -#: mod/photos.php:1314 +#: mod/photos.php:1278 msgid "Map" msgstr "Carte" -#: src/App.php:446 +#: src/App.php:432 msgid "No system theme config value set." msgstr "Le thème système n'est pas configuré." -#: src/App.php:554 +#: src/App.php:540 msgid "Apologies but the website is unavailable at the moment." msgstr "Désolé mais le site web n'est pas disponible pour le moment." -#: src/App/Page.php:250 +#: src/App/Page.php:236 msgid "Delete this item?" msgstr "Effacer cet élément?" -#: src/App/Page.php:251 +#: src/App/Page.php:237 msgid "" "Block this author? They won't be able to follow you nor see your public " "posts, and you won't be able to see their posts and their notifications." msgstr "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:252 +#: src/App/Page.php:238 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." -#: src/App/Page.php:253 +#: src/App/Page.php:239 msgid "Collapse this author's posts?" msgstr "Réduire les publications de cet auteur ?" -#: src/App/Page.php:254 +#: src/App/Page.php:240 msgid "Ignore this author's server?" msgstr "Ignorer le serveur de cet auteur ?" -#: src/App/Page.php:255 src/Module/Settings/Server/Action.php:61 -#: src/Module/Settings/Server/Index.php:108 +#: src/App/Page.php:241 src/Module/Settings/Server/Action.php:47 +#: src/Module/Settings/Server/Index.php:94 msgid "" "You won't see any content from this server including reshares in your " "Network page, the community pages and individual conversations." msgstr "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." -#: src/App/Page.php:257 +#: src/App/Page.php:243 msgid "Like not successful" msgstr "Erreur lors du \"Aime\"" -#: src/App/Page.php:258 +#: src/App/Page.php:244 msgid "Dislike not successful" msgstr "Erreur lors du \"N'aime pas\"" -#: src/App/Page.php:259 +#: src/App/Page.php:245 msgid "Sharing not successful" msgstr "Erreur lors du \"Partager\"" -#: src/App/Page.php:260 +#: src/App/Page.php:246 msgid "Attendance unsuccessful" msgstr "Erreur lors du \"Participer\"" -#: src/App/Page.php:261 +#: src/App/Page.php:247 msgid "Backend error" msgstr "Erreur backend" -#: src/App/Page.php:262 +#: src/App/Page.php:248 msgid "Network error" msgstr "Erreur réseau" -#: src/App/Page.php:265 +#: src/App/Page.php:251 msgid "Drop files here to upload" msgstr "Déposer des fichiers ici pour les envoyer" -#: src/App/Page.php:266 +#: src/App/Page.php:252 msgid "Your browser does not support drag and drop file uploads." msgstr "Votre navigateur ne supporte pas l'envoi de fichier par glisser-déposer." -#: src/App/Page.php:267 +#: src/App/Page.php:253 msgid "" "Please use the fallback form below to upload your files like in the olden " "days." msgstr "Veuillez utiliser le formulaire ci-dessous pour envoyer vos fichiers comme au bon vieux temps." -#: src/App/Page.php:268 +#: src/App/Page.php:254 msgid "File is too big ({{filesize}}MiB). Max filesize: {{maxFilesize}}MiB." msgstr "Fichier trop volumineux ({{filesize}}Mio). Taille maximum : {{maxFilesize}}Mio." -#: src/App/Page.php:269 +#: src/App/Page.php:255 msgid "You can't upload files of this type." msgstr "Vous ne pouvez pas envoyer des fichiers de ce type." -#: src/App/Page.php:270 +#: src/App/Page.php:256 msgid "Server responded with {{statusCode}} code." msgstr "Le serveur a répondu avec un code {{statusCode}}." -#: src/App/Page.php:271 +#: src/App/Page.php:257 msgid "Cancel upload" msgstr "Annuler l'envoi" -#: src/App/Page.php:272 +#: src/App/Page.php:258 msgid "Upload canceled." msgstr "Envoi annulé." -#: src/App/Page.php:273 +#: src/App/Page.php:259 msgid "Are you sure you want to cancel this upload?" msgstr "Êtes-vous sûr de vouloir annuler cet envoi ?" -#: src/App/Page.php:274 +#: src/App/Page.php:260 msgid "Remove file" msgstr "Supprimer le fichier" -#: src/App/Page.php:275 +#: src/App/Page.php:261 msgid "You can't upload any more files." msgstr "Vous ne pouvez plus envoyer de fichiers." -#: src/App/Page.php:353 +#: src/App/Page.php:339 msgid "toggle mobile" msgstr "activ. mobile" -#: src/App/Router.php:309 +#: src/App/Router.php:295 #, php-format msgid "Method not allowed for this module. Allowed method(s): %s" msgstr "Méthode non autorisée pour ce module. Méthode(s) autorisée(s): %s" -#: src/App/Router.php:311 src/Module/HTTPException/PageNotFound.php:49 -#: src/Module/Stats.php:63 +#: src/App/Router.php:297 src/Module/HTTPException/PageNotFound.php:35 +#: src/Module/Stats.php:49 msgid "Page not found." msgstr "Page introuvable." -#: src/App/Router.php:323 +#: src/App/Router.php:309 msgid "You must be logged in to use addons. " msgstr "Vous devez être connecté pour utiliser les extensions." -#: src/BaseModule.php:407 +#: src/BaseModule.php:393 msgid "" "The form security token was not correct. This probably happened because the " "form has been opened for too long (>3 hours) before submitting it." msgstr "Le jeton de sécurité du formulaire n'est pas correct. Ceci veut probablement dire que le formulaire est resté ouvert trop longtemps (plus de 3 heures) avant d'être validé." -#: src/BaseModule.php:434 +#: src/BaseModule.php:420 msgid "All contacts" msgstr "Tous les contacts" -#: src/BaseModule.php:439 src/Content/Conversation/Factory/Channel.php:46 -#: src/Content/Widget.php:240 src/Core/ACL.php:195 src/Module/Contact.php:420 -#: src/Module/Privacy/PermissionTooltip.php:164 -#: src/Module/Privacy/PermissionTooltip.php:186 -#: src/Module/Settings/Channels.php:160 +#: src/BaseModule.php:425 src/Content/Conversation/Factory/Channel.php:32 +#: src/Content/Widget.php:218 src/Core/ACL.php:181 src/Module/Contact.php:395 +#: src/Module/Privacy/PermissionTooltip.php:150 +#: src/Module/Privacy/PermissionTooltip.php:172 +#: src/Module/Settings/Channels.php:146 msgid "Followers" msgstr "Abonnés" -#: src/BaseModule.php:444 src/Content/Widget.php:241 -#: src/Module/Contact.php:423 src/Module/Settings/Channels.php:159 +#: src/BaseModule.php:430 src/Content/Widget.php:219 +#: src/Module/Contact.php:398 src/Module/Settings/Channels.php:145 msgid "Following" msgstr "Abonnements" -#: src/BaseModule.php:449 src/Content/Widget.php:242 -#: src/Module/Contact.php:426 +#: src/BaseModule.php:435 src/Content/Widget.php:220 +#: src/Module/Contact.php:401 msgid "Mutual friends" msgstr "Amis communs" -#: src/BaseModule.php:457 +#: src/BaseModule.php:443 msgid "Common" msgstr "Commun" -#: src/Console/Addon.php:175 src/Console/Addon.php:199 +#: src/Console/Addon.php:161 src/Console/Addon.php:185 msgid "Addon not found" msgstr "Extension manquante" -#: src/Console/Addon.php:179 +#: src/Console/Addon.php:165 msgid "Addon already enabled" msgstr "Extension déjà activée" -#: src/Console/Addon.php:203 +#: src/Console/Addon.php:189 msgid "Addon already disabled" msgstr "Extension déjà désactivée" -#: src/Console/ArchiveContact.php:106 +#: src/Console/ArchiveContact.php:92 #, php-format msgid "Could not find any unarchived contact entry for this URL (%s)" msgstr "Aucune entrée de contact non archivé n'a été trouvé pour cette URL (%s)" -#: src/Console/ArchiveContact.php:109 +#: src/Console/ArchiveContact.php:95 msgid "The contact entries have been archived" msgstr "Les contacts ont été archivés" -#: src/Console/ClearAvatarCache.php:87 +#: src/Console/ClearAvatarCache.php:73 msgid "" "The avatar cache needs to be disabled in local.config.php to use this " "command." msgstr "Le cache des avatars doit être désactivé via le fichier local.config.php pour pouvoir utiliser cette commande." -#: src/Console/GlobalCommunityBlock.php:96 -#: src/Module/Moderation/Blocklist/Contact.php:65 +#: src/Console/GlobalCommunityBlock.php:82 +#: src/Module/Moderation/Blocklist/Contact.php:51 #, php-format msgid "Could not find any contact entry for this URL (%s)" msgstr "Aucun profil distant n'a été trouvé à cette URL (%s)" -#: src/Console/GlobalCommunityBlock.php:101 -#: src/Module/Moderation/Blocklist/Contact.php:82 +#: src/Console/GlobalCommunityBlock.php:87 +#: src/Module/Moderation/Blocklist/Contact.php:68 msgid "The contact has been blocked from the node" msgstr "Le profile distant a été bloqué" -#: src/Console/MergeContacts.php:75 +#: src/Console/MergeContacts.php:61 #, php-format msgid "%d %s, %d duplicates." msgstr "%d%s, %d duplications." -#: src/Console/MergeContacts.php:78 +#: src/Console/MergeContacts.php:64 #, php-format msgid "uri-id is empty for contact %s." msgstr "l'uri-id est vide pour le contact %s." -#: src/Console/MergeContacts.php:91 +#: src/Console/MergeContacts.php:77 #, php-format msgid "No valid first contact found for uri-id %d." msgstr "Aucun premier contact valide trouvé pour l'uri-id %d." -#: src/Console/MergeContacts.php:102 +#: src/Console/MergeContacts.php:88 #, php-format msgid "Wrong duplicate found for uri-id %d in %d (url: %s != %s)." msgstr "Mauvaise duplication trouvée pour l'uri-id %d dans %d (url : %s != %s)." -#: src/Console/MergeContacts.php:106 +#: src/Console/MergeContacts.php:92 #, php-format msgid "Wrong duplicate found for uri-id %d in %d (nurl: %s != %s)." msgstr "Mauvaise duplication trouvée pour l'uri-id %d dans %d (nurl : %s != %s)." -#: src/Console/MergeContacts.php:142 +#: src/Console/MergeContacts.php:128 #, php-format msgid "Deletion of id %d failed" msgstr "La suppression de l'id %d a échoué." -#: src/Console/MergeContacts.php:144 +#: src/Console/MergeContacts.php:130 #, php-format msgid "Deletion of id %d was successful" msgstr "id %d supprimé avec succès." -#: src/Console/MergeContacts.php:150 +#: src/Console/MergeContacts.php:136 #, php-format msgid "Updating \"%s\" in \"%s\" from %d to %d" msgstr "Mise à jour de \"%s\" dans \"%s\" depuis %d vers %d" -#: src/Console/MergeContacts.php:152 +#: src/Console/MergeContacts.php:138 msgid " - found" msgstr "- trouvé(s)" -#: src/Console/MergeContacts.php:159 +#: src/Console/MergeContacts.php:145 msgid " - failed" msgstr "- échoué(s)" -#: src/Console/MergeContacts.php:161 +#: src/Console/MergeContacts.php:147 msgid " - success" msgstr "- succès" -#: src/Console/MergeContacts.php:165 +#: src/Console/MergeContacts.php:151 msgid " - deleted" msgstr "- supprimé(s)" -#: src/Console/MergeContacts.php:168 +#: src/Console/MergeContacts.php:154 msgid " - done" msgstr "- fait(s)" -#: src/Console/MoveToAvatarCache.php:91 +#: src/Console/MoveToAvatarCache.php:77 msgid "The avatar cache needs to be enabled to use this command." msgstr "Le cache des avatars doit être activé pour pouvoir utiliser cette commande." -#: src/Console/MoveToAvatarCache.php:109 +#: src/Console/MoveToAvatarCache.php:95 #, php-format msgid "no resource in photo %s" msgstr "Aucune ressource dans la photo %s" -#: src/Console/MoveToAvatarCache.php:137 +#: src/Console/MoveToAvatarCache.php:123 #, php-format msgid "no photo with id %s" msgstr "aucune photo avec l'id %s" -#: src/Console/MoveToAvatarCache.php:146 +#: src/Console/MoveToAvatarCache.php:132 #, php-format msgid "no image data for photo with id %s" msgstr "aucune donnée d'image pour la photo avec l'id %s" -#: src/Console/MoveToAvatarCache.php:155 +#: src/Console/MoveToAvatarCache.php:141 #, php-format msgid "invalid image for id %s" msgstr "image invalide pour l'id %s" -#: src/Console/MoveToAvatarCache.php:168 +#: src/Console/MoveToAvatarCache.php:154 #, php-format msgid "Quit on invalid photo %s" msgstr "Sortie sur photo %s invalide" -#: src/Console/PostUpdate.php:87 +#: src/Console/PostUpdate.php:73 #, php-format msgid "Post update version number has been set to %s." msgstr "Le numéro de version de \"post update\" a été fixé à %s." -#: src/Console/PostUpdate.php:95 +#: src/Console/PostUpdate.php:81 msgid "Check for pending update actions." msgstr "Vérification pour les actions de mise à jour en cours." -#: src/Console/PostUpdate.php:97 +#: src/Console/PostUpdate.php:83 msgid "Done." msgstr "Fait." -#: src/Console/PostUpdate.php:99 +#: src/Console/PostUpdate.php:85 msgid "Execute pending post updates." msgstr "Exécution de la mise à jour des publications en attente." -#: src/Console/PostUpdate.php:105 +#: src/Console/PostUpdate.php:91 msgid "All pending post updates are done." msgstr "Toutes les mises à jour de publications en attente sont terminées." -#: src/Console/User.php:158 src/Console/User.php:246 +#: src/Console/User.php:144 src/Console/User.php:232 msgid "Enter user nickname: " msgstr "Entrer un pseudo :" -#: src/Console/User.php:182 src/Model/User.php:847 -#: src/Module/Api/Twitter/ContactEndpoint.php:74 -#: src/Module/Moderation/Users/Active.php:71 -#: src/Module/Moderation/Users/Blocked.php:71 -#: src/Module/Moderation/Users/Index.php:78 -#: src/Module/Moderation/Users/Pending.php:67 +#: src/Console/User.php:168 src/Model/User.php:831 +#: src/Module/Api/Twitter/ContactEndpoint.php:60 +#: src/Module/Moderation/Users/Active.php:57 +#: src/Module/Moderation/Users/Blocked.php:57 +#: src/Module/Moderation/Users/Index.php:64 +#: src/Module/Moderation/Users/Pending.php:53 msgid "User not found" msgstr "Utilisateur introuvable" -#: src/Console/User.php:202 +#: src/Console/User.php:188 msgid "Enter new password: " msgstr "Entrer le nouveau mot de passe :" -#: src/Console/User.php:210 src/Module/Security/PasswordTooLong.php:69 -#: src/Module/Settings/Account.php:75 +#: src/Console/User.php:196 src/Module/Security/PasswordTooLong.php:55 +#: src/Module/Settings/Account.php:61 msgid "Password update failed. Please try again." msgstr "Le changement de mot de passe a échoué. Merci de recommencer." -#: src/Console/User.php:213 src/Module/Security/PasswordTooLong.php:72 -#: src/Module/Settings/Account.php:78 +#: src/Console/User.php:199 src/Module/Security/PasswordTooLong.php:58 +#: src/Module/Settings/Account.php:64 msgid "Password changed." msgstr "Mot de passe changé." -#: src/Console/User.php:238 +#: src/Console/User.php:224 msgid "Enter user name: " msgstr "Entrer le nom d'utilisateur :" -#: src/Console/User.php:254 +#: src/Console/User.php:240 msgid "Enter user email address: " msgstr "Entrer l'adresse courriel de l'utilisateur :" -#: src/Console/User.php:262 +#: src/Console/User.php:248 msgid "Enter a language (optional): " msgstr "Saisissez une langue (facultatif) :" -#: src/Console/User.php:267 +#: src/Console/User.php:253 msgid "Enter URL of an image to use as avatar (optional): " msgstr "Saisissez l'URL de l'image à utiliser comme avatar (facultatif) :" -#: src/Console/User.php:292 +#: src/Console/User.php:278 msgid "User is not pending." msgstr "L'utilisateur n'est pas en attente." -#: src/Console/User.php:324 +#: src/Console/User.php:310 msgid "User has already been marked for deletion." msgstr "L'utilisateur a déjà été marqué pour suppression." -#: src/Console/User.php:329 +#: src/Console/User.php:315 #, php-format msgid "Type \"yes\" to delete %s" msgstr "Saisir \"yes\" pour supprimer %s" -#: src/Console/User.php:331 +#: src/Console/User.php:317 msgid "Deletion aborted." msgstr "Suppression annulée." -#: src/Console/User.php:456 +#: src/Console/User.php:442 msgid "Enter category: " msgstr "Saisissez la catégorie :" -#: src/Console/User.php:466 +#: src/Console/User.php:452 msgid "Enter key: " msgstr "Saisissez la clé :" -#: src/Console/User.php:500 +#: src/Console/User.php:486 msgid "Enter value: " msgstr "Saisissez la valeur :" -#: src/Content/BoundariesPager.php:116 src/Content/Pager.php:171 +#: src/Content/BoundariesPager.php:102 src/Content/Pager.php:157 msgid "newer" msgstr "Plus récent" -#: src/Content/BoundariesPager.php:124 src/Content/Pager.php:176 +#: src/Content/BoundariesPager.php:110 src/Content/Pager.php:162 msgid "older" msgstr "Plus ancien" -#: src/Content/ContactSelector.php:51 +#: src/Content/ContactSelector.php:37 msgid "Frequently" msgstr "Fréquente" -#: src/Content/ContactSelector.php:52 +#: src/Content/ContactSelector.php:38 msgid "Hourly" msgstr "Horaire" -#: src/Content/ContactSelector.php:53 +#: src/Content/ContactSelector.php:39 msgid "Twice daily" msgstr "Deux fois par jour" -#: src/Content/ContactSelector.php:54 +#: src/Content/ContactSelector.php:40 msgid "Daily" msgstr "Quotidienne" -#: src/Content/ContactSelector.php:55 +#: src/Content/ContactSelector.php:41 msgid "Weekly" msgstr "Hebdomadaire" -#: src/Content/ContactSelector.php:56 +#: src/Content/ContactSelector.php:42 msgid "Monthly" msgstr "Mensuelle" -#: src/Content/ContactSelector.php:126 +#: src/Content/ContactSelector.php:112 msgid "DFRN" msgstr "DFRN" -#: src/Content/ContactSelector.php:127 +#: src/Content/ContactSelector.php:113 msgid "OStatus" msgstr "Ostatus" -#: src/Content/ContactSelector.php:128 +#: src/Content/ContactSelector.php:114 msgid "RSS/Atom" msgstr "RSS/Atom" -#: src/Content/ContactSelector.php:129 -#: src/Module/Moderation/Users/Active.php:126 -#: src/Module/Moderation/Users/Blocked.php:126 -#: src/Module/Moderation/Users/Create.php:72 -#: src/Module/Moderation/Users/Deleted.php:83 -#: src/Module/Moderation/Users/Index.php:140 -#: src/Module/Moderation/Users/Index.php:160 -#: src/Module/Moderation/Users/Pending.php:99 +#: src/Content/ContactSelector.php:115 +#: src/Module/Moderation/Users/Active.php:112 +#: src/Module/Moderation/Users/Blocked.php:112 +#: src/Module/Moderation/Users/Create.php:58 +#: src/Module/Moderation/Users/Deleted.php:69 +#: src/Module/Moderation/Users/Index.php:126 +#: src/Module/Moderation/Users/Index.php:146 +#: src/Module/Moderation/Users/Pending.php:85 msgid "Email" msgstr "Courriel" -#: src/Content/ContactSelector.php:130 src/Module/Debug/Babel.php:315 +#: src/Content/ContactSelector.php:116 src/Module/Debug/Babel.php:301 msgid "Diaspora" msgstr "Diaspora" -#: src/Content/ContactSelector.php:131 +#: src/Content/ContactSelector.php:117 msgid "Zot!" msgstr "Zot!" -#: src/Content/ContactSelector.php:132 +#: src/Content/ContactSelector.php:118 msgid "LinkedIn" msgstr "LinkedIn" -#: src/Content/ContactSelector.php:133 +#: src/Content/ContactSelector.php:119 msgid "XMPP/IM" msgstr "XMPP/Messagerie Instantanée" -#: src/Content/ContactSelector.php:134 +#: src/Content/ContactSelector.php:120 msgid "MySpace" msgstr "MySpace" -#: src/Content/ContactSelector.php:135 +#: src/Content/ContactSelector.php:121 msgid "Google+" msgstr "Google+" -#: src/Content/ContactSelector.php:136 +#: src/Content/ContactSelector.php:122 msgid "pump.io" msgstr "pump.io" -#: src/Content/ContactSelector.php:137 +#: src/Content/ContactSelector.php:123 msgid "Twitter" msgstr "Twitter" -#: src/Content/ContactSelector.php:138 +#: src/Content/ContactSelector.php:124 msgid "Discourse" msgstr "Discourse" -#: src/Content/ContactSelector.php:139 +#: src/Content/ContactSelector.php:125 msgid "Diaspora Connector" msgstr "Connecteur Disapora" -#: src/Content/ContactSelector.php:140 +#: src/Content/ContactSelector.php:126 msgid "GNU Social Connector" msgstr "Connecteur GNU Social" -#: src/Content/ContactSelector.php:141 +#: src/Content/ContactSelector.php:127 msgid "ActivityPub" msgstr "ActivityPub" -#: src/Content/ContactSelector.php:142 +#: src/Content/ContactSelector.php:128 msgid "pnut" msgstr "pnut" -#: src/Content/ContactSelector.php:143 +#: src/Content/ContactSelector.php:129 msgid "Tumblr" msgstr "Tumblr" -#: src/Content/ContactSelector.php:144 +#: src/Content/ContactSelector.php:130 msgid "Bluesky" msgstr "Bluesky" -#: src/Content/ContactSelector.php:180 +#: src/Content/ContactSelector.php:166 #, php-format msgid "%s (via %s)" msgstr "%s (via %s)" -#: src/Content/Conversation.php:226 +#: src/Content/Conversation.php:212 msgid "and" msgstr "et" -#: src/Content/Conversation.php:229 +#: src/Content/Conversation.php:215 #, php-format msgid "and %d other people" msgstr "et %d autres personnes" -#: src/Content/Conversation.php:235 +#: src/Content/Conversation.php:221 #, php-format msgid "%2$s likes this." msgid_plural "%2$s like this." @@ -1200,7 +1199,7 @@ msgstr[0] "%2$s aime." msgstr[1] "%2$s aiment." msgstr[2] "%2$s aiment." -#: src/Content/Conversation.php:237 +#: src/Content/Conversation.php:223 #, php-format msgid "%2$s doesn't like this." msgid_plural "%2$s don't like this." @@ -1208,7 +1207,7 @@ msgstr[0] "%2$s n'aime pas." msgstr[1] "%2$s n'aiment pas." msgstr[2] "%2$s n'aiment pas." -#: src/Content/Conversation.php:239 +#: src/Content/Conversation.php:225 #, php-format msgid "%2$s attends." msgid_plural "%2$s attend." @@ -1216,7 +1215,7 @@ msgstr[0] "%2$s participe." msgstr[1] "%2$s participent." msgstr[2] "%2$s participent." -#: src/Content/Conversation.php:241 +#: src/Content/Conversation.php:227 #, php-format msgid "%2$s doesn't attend." msgid_plural "%2$s don't attend." @@ -1224,7 +1223,7 @@ msgstr[0] "%2$s ne participe pas." msgstr[1] "%2$s ne participent pas." msgstr[2] "%2$s ne participent pas." -#: src/Content/Conversation.php:243 +#: src/Content/Conversation.php:229 #, php-format msgid "%2$s attends maybe." msgid_plural "%2$s attend maybe." @@ -1232,7 +1231,7 @@ msgstr[0] "%2$s participe peut-être." msgstr[1] "%2$s participent peut-être." msgstr[2] "%2$s participent peut-être." -#: src/Content/Conversation.php:245 +#: src/Content/Conversation.php:231 #, php-format msgid "%2$s reshared this." msgid_plural "%2$s reshared this." @@ -1240,7 +1239,7 @@ msgstr[0] "%2$s à partagé." msgstr[1] "%2$s ont partagé." msgstr[2] "%2$s ont partagé." -#: src/Content/Conversation.php:276 +#: src/Content/Conversation.php:262 #, php-format msgid " likes this" msgid_plural " like this" @@ -1248,7 +1247,7 @@ msgstr[0] " aime" msgstr[1] " aiment" msgstr[2] " aiment" -#: src/Content/Conversation.php:279 +#: src/Content/Conversation.php:265 #, php-format msgid " doesn't like this" msgid_plural " don't like this" @@ -1256,7 +1255,7 @@ msgstr[0] " n'aime pas" msgstr[1] " n'aiment pas" msgstr[2] " n'aiment pas" -#: src/Content/Conversation.php:282 +#: src/Content/Conversation.php:268 #, php-format msgid " attends" msgid_plural " attend" @@ -1264,7 +1263,7 @@ msgstr[0] " participe" msgstr[1] " participent" msgstr[2] " participent" -#: src/Content/Conversation.php:285 +#: src/Content/Conversation.php:271 #, php-format msgid " doesn't attend" msgid_plural " don't attend" @@ -1272,7 +1271,7 @@ msgstr[0] " ne participe pas" msgstr[1] " ne participent pas" msgstr[2] " ne participent pas" -#: src/Content/Conversation.php:288 +#: src/Content/Conversation.php:274 #, php-format msgid " attends maybe" msgid_plural " attend maybe" @@ -1280,7 +1279,7 @@ msgstr[0] " participe peut-ê msgstr[1] " participent peut-être" msgstr[2] " participent peut-être" -#: src/Content/Conversation.php:291 +#: src/Content/Conversation.php:277 #, php-format msgid " reshared this" msgid_plural " reshared this" @@ -1288,1099 +1287,1099 @@ msgstr[0] " a partagé" msgstr[1] " ont partagé" msgstr[2] " ont partagé" -#: src/Content/Conversation.php:337 +#: src/Content/Conversation.php:323 msgid "Visible to everybody" msgstr "Visible par tout le monde" -#: src/Content/Conversation.php:338 src/Module/Item/Compose.php:207 -#: src/Object/Post.php:1171 +#: src/Content/Conversation.php:324 src/Module/Item/Compose.php:193 +#: src/Object/Post.php:1157 msgid "Please enter a image/video/audio/webpage URL:" msgstr "Veuillez entrer une URL d'image/vidéo/page web." -#: src/Content/Conversation.php:339 +#: src/Content/Conversation.php:325 msgid "Tag term:" msgstr "Tag :" -#: src/Content/Conversation.php:340 src/Module/Filer/SaveTag.php:73 +#: src/Content/Conversation.php:326 src/Module/Filer/SaveTag.php:59 msgid "Save to Folder:" msgstr "Sauver dans le Dossier :" -#: src/Content/Conversation.php:341 +#: src/Content/Conversation.php:327 msgid "Where are you right now?" msgstr "Où êtes-vous actuellement ?" -#: src/Content/Conversation.php:342 +#: src/Content/Conversation.php:328 msgid "Delete item(s)?" msgstr "Supprimer les élément(s) ?" -#: src/Content/Conversation.php:354 src/Module/Item/Compose.php:182 +#: src/Content/Conversation.php:340 src/Module/Item/Compose.php:168 msgid "Created at" msgstr "Créé à" -#: src/Content/Conversation.php:364 +#: src/Content/Conversation.php:350 msgid "New Post" msgstr "Nouvelle publication" -#: src/Content/Conversation.php:367 +#: src/Content/Conversation.php:353 msgid "Share" msgstr "Partager" -#: src/Content/Conversation.php:370 src/Module/Post/Edit.php:132 +#: src/Content/Conversation.php:356 src/Module/Post/Edit.php:118 msgid "upload photo" msgstr "envoi image" -#: src/Content/Conversation.php:371 src/Module/Post/Edit.php:133 +#: src/Content/Conversation.php:357 src/Module/Post/Edit.php:119 msgid "Attach file" msgstr "Joindre fichier" -#: src/Content/Conversation.php:372 src/Module/Post/Edit.php:134 +#: src/Content/Conversation.php:358 src/Module/Post/Edit.php:120 msgid "attach file" msgstr "ajout fichier" -#: src/Content/Conversation.php:373 src/Module/Item/Compose.php:197 -#: src/Module/Post/Edit.php:171 src/Object/Post.php:1161 +#: src/Content/Conversation.php:359 src/Module/Item/Compose.php:183 +#: src/Module/Post/Edit.php:157 src/Object/Post.php:1147 msgid "Bold" msgstr "Gras" -#: src/Content/Conversation.php:374 src/Module/Item/Compose.php:198 -#: src/Module/Post/Edit.php:172 src/Object/Post.php:1162 +#: src/Content/Conversation.php:360 src/Module/Item/Compose.php:184 +#: src/Module/Post/Edit.php:158 src/Object/Post.php:1148 msgid "Italic" msgstr "Italique" -#: src/Content/Conversation.php:375 src/Module/Item/Compose.php:199 -#: src/Module/Post/Edit.php:173 src/Object/Post.php:1163 +#: src/Content/Conversation.php:361 src/Module/Item/Compose.php:185 +#: src/Module/Post/Edit.php:159 src/Object/Post.php:1149 msgid "Underline" msgstr "Souligné" -#: src/Content/Conversation.php:376 src/Module/Item/Compose.php:200 -#: src/Module/Post/Edit.php:174 src/Object/Post.php:1165 +#: src/Content/Conversation.php:362 src/Module/Item/Compose.php:186 +#: src/Module/Post/Edit.php:160 src/Object/Post.php:1151 msgid "Quote" msgstr "Citation" -#: src/Content/Conversation.php:377 src/Module/Item/Compose.php:201 -#: src/Module/Post/Edit.php:175 src/Object/Post.php:1166 +#: src/Content/Conversation.php:363 src/Module/Item/Compose.php:187 +#: src/Module/Post/Edit.php:161 src/Object/Post.php:1152 msgid "Add emojis" msgstr "Ajouter des émojis" -#: src/Content/Conversation.php:378 src/Module/Item/Compose.php:202 -#: src/Object/Post.php:1164 +#: src/Content/Conversation.php:364 src/Module/Item/Compose.php:188 +#: src/Object/Post.php:1150 msgid "Content Warning" msgstr "Avertissement de contenu" -#: src/Content/Conversation.php:379 src/Module/Item/Compose.php:203 -#: src/Module/Post/Edit.php:176 src/Object/Post.php:1167 +#: src/Content/Conversation.php:365 src/Module/Item/Compose.php:189 +#: src/Module/Post/Edit.php:162 src/Object/Post.php:1153 msgid "Code" msgstr "Code" -#: src/Content/Conversation.php:380 src/Module/Item/Compose.php:204 -#: src/Object/Post.php:1168 +#: src/Content/Conversation.php:366 src/Module/Item/Compose.php:190 +#: src/Object/Post.php:1154 msgid "Image" msgstr "Image" -#: src/Content/Conversation.php:381 src/Module/Item/Compose.php:205 -#: src/Module/Post/Edit.php:177 src/Object/Post.php:1169 +#: src/Content/Conversation.php:367 src/Module/Item/Compose.php:191 +#: src/Module/Post/Edit.php:163 src/Object/Post.php:1155 msgid "Link" msgstr "Lien" -#: src/Content/Conversation.php:382 src/Module/Item/Compose.php:206 -#: src/Module/Post/Edit.php:178 src/Object/Post.php:1170 +#: src/Content/Conversation.php:368 src/Module/Item/Compose.php:192 +#: src/Module/Post/Edit.php:164 src/Object/Post.php:1156 msgid "Link or Media" msgstr "Lien ou média" -#: src/Content/Conversation.php:383 +#: src/Content/Conversation.php:369 msgid "Video" msgstr "Vidéo" -#: src/Content/Conversation.php:384 src/Module/Item/Compose.php:209 -#: src/Module/Post/Edit.php:141 +#: src/Content/Conversation.php:370 src/Module/Item/Compose.php:195 +#: src/Module/Post/Edit.php:127 msgid "Set your location" msgstr "Définir votre localisation" -#: src/Content/Conversation.php:385 src/Module/Post/Edit.php:142 +#: src/Content/Conversation.php:371 src/Module/Post/Edit.php:128 msgid "set location" msgstr "spéc. localisation" -#: src/Content/Conversation.php:386 src/Module/Post/Edit.php:143 +#: src/Content/Conversation.php:372 src/Module/Post/Edit.php:129 msgid "Clear browser location" msgstr "Effacer la localisation du navigateur" -#: src/Content/Conversation.php:387 src/Module/Post/Edit.php:144 +#: src/Content/Conversation.php:373 src/Module/Post/Edit.php:130 msgid "clear location" msgstr "supp. localisation" -#: src/Content/Conversation.php:389 src/Module/Item/Compose.php:214 -#: src/Module/Post/Edit.php:157 +#: src/Content/Conversation.php:375 src/Module/Item/Compose.php:200 +#: src/Module/Post/Edit.php:143 msgid "Set title" msgstr "Définir un titre" -#: src/Content/Conversation.php:391 src/Module/Item/Compose.php:215 -#: src/Module/Post/Edit.php:159 +#: src/Content/Conversation.php:377 src/Module/Item/Compose.php:201 +#: src/Module/Post/Edit.php:145 msgid "Categories (comma-separated list)" msgstr "Catégories (séparées par des virgules)" -#: src/Content/Conversation.php:396 src/Module/Item/Compose.php:231 +#: src/Content/Conversation.php:382 src/Module/Item/Compose.php:217 msgid "Scheduled at" msgstr "Prévu pour" -#: src/Content/Conversation.php:401 src/Module/Post/Edit.php:146 +#: src/Content/Conversation.php:387 src/Module/Post/Edit.php:132 msgid "Permission settings" msgstr "Réglages des permissions" -#: src/Content/Conversation.php:410 src/Module/Post/Edit.php:155 +#: src/Content/Conversation.php:396 src/Module/Post/Edit.php:141 msgid "Public post" msgstr "Publication publique" -#: src/Content/Conversation.php:424 src/Content/Widget/VCard.php:131 -#: src/Model/Profile.php:476 src/Module/Admin/Logs/View.php:94 -#: src/Module/Post/Edit.php:181 +#: src/Content/Conversation.php:410 src/Content/Widget/VCard.php:117 +#: src/Model/Profile.php:462 src/Module/Admin/Logs/View.php:80 +#: src/Module/Post/Edit.php:167 msgid "Message" msgstr "Message" -#: src/Content/Conversation.php:425 src/Module/Post/Edit.php:182 -#: src/Module/Settings/TwoFactor/Trusted.php:143 +#: src/Content/Conversation.php:411 src/Module/Post/Edit.php:168 +#: src/Module/Settings/TwoFactor/Trusted.php:129 msgid "Browser" msgstr "Navigateur" -#: src/Content/Conversation.php:427 src/Module/Post/Edit.php:185 +#: src/Content/Conversation.php:413 src/Module/Post/Edit.php:171 msgid "Open Compose page" msgstr "Ouvrir la page de saisie" -#: src/Content/Conversation.php:594 +#: src/Content/Conversation.php:580 msgid "remove" msgstr "enlever" -#: src/Content/Conversation.php:598 +#: src/Content/Conversation.php:584 msgid "Delete Selected Items" msgstr "Supprimer les éléments sélectionnés" -#: src/Content/Conversation.php:726 src/Content/Conversation.php:729 -#: src/Content/Conversation.php:732 src/Content/Conversation.php:735 -#: src/Content/Conversation.php:738 +#: src/Content/Conversation.php:712 src/Content/Conversation.php:715 +#: src/Content/Conversation.php:718 src/Content/Conversation.php:721 +#: src/Content/Conversation.php:724 #, php-format msgid "You had been addressed (%s)." msgstr "Vous avez été mentionné (%s)" -#: src/Content/Conversation.php:741 +#: src/Content/Conversation.php:727 #, php-format msgid "You are following %s." msgstr "Vous suivez %s." -#: src/Content/Conversation.php:746 +#: src/Content/Conversation.php:732 #, php-format msgid "You subscribed to %s." msgstr "Vous vous êtes abonné(e) à %s." -#: src/Content/Conversation.php:748 +#: src/Content/Conversation.php:734 msgid "You subscribed to one or more tags in this post." msgstr "Vous vous êtes abonné(e) à une étiquette ou plus de cette publication." -#: src/Content/Conversation.php:768 +#: src/Content/Conversation.php:754 #, php-format msgid "%s reshared this." msgstr "%s a partagé." -#: src/Content/Conversation.php:770 +#: src/Content/Conversation.php:756 msgid "Reshared" msgstr "Partagé" -#: src/Content/Conversation.php:770 +#: src/Content/Conversation.php:756 #, php-format msgid "Reshared by %s <%s>" msgstr "Partagé par %s <%s>" -#: src/Content/Conversation.php:773 +#: src/Content/Conversation.php:759 #, php-format msgid "%s is participating in this thread." msgstr "%s participe à ce fil de discussion" -#: src/Content/Conversation.php:776 +#: src/Content/Conversation.php:762 msgid "Stored for general reasons" msgstr "Stocké pour des raisons générales." -#: src/Content/Conversation.php:779 +#: src/Content/Conversation.php:765 msgid "Global post" msgstr "Publication globale" -#: src/Content/Conversation.php:782 +#: src/Content/Conversation.php:768 msgid "Sent via an relay server" msgstr "Envoyé via un serveur relais" -#: src/Content/Conversation.php:782 +#: src/Content/Conversation.php:768 #, php-format msgid "Sent via the relay server %s <%s>" msgstr "Envoyé par le serveur relais %s <%s>" -#: src/Content/Conversation.php:785 +#: src/Content/Conversation.php:771 msgid "Fetched" msgstr "Récupéré" -#: src/Content/Conversation.php:785 +#: src/Content/Conversation.php:771 #, php-format msgid "Fetched because of %s <%s>" msgstr "Récupéré grâce à %s <%s>" -#: src/Content/Conversation.php:788 +#: src/Content/Conversation.php:774 msgid "Stored because of a child post to complete this thread." msgstr "Stocké parce qu'une publication fille complète ce fil de discussion." -#: src/Content/Conversation.php:791 +#: src/Content/Conversation.php:777 msgid "Local delivery" msgstr "Distribution locale" -#: src/Content/Conversation.php:794 +#: src/Content/Conversation.php:780 msgid "Stored because of your activity (like, comment, star, ...)" msgstr "Stocké en lien avec votre activité (j'aime, commentaire, étoile...)" -#: src/Content/Conversation.php:797 +#: src/Content/Conversation.php:783 msgid "Distributed" msgstr "Distribué" -#: src/Content/Conversation.php:800 +#: src/Content/Conversation.php:786 msgid "Pushed to us" msgstr "Poussé vers nous" -#: src/Content/Conversation.php:1518 src/Object/Post.php:261 +#: src/Content/Conversation.php:1504 src/Object/Post.php:247 msgid "Pinned item" msgstr "Élément épinglé" -#: src/Content/Conversation.php:1535 src/Object/Post.php:555 -#: src/Object/Post.php:556 +#: src/Content/Conversation.php:1521 src/Object/Post.php:541 +#: src/Object/Post.php:542 #, php-format msgid "View %s's profile @ %s" msgstr "Voir le profil de %s @ %s" -#: src/Content/Conversation.php:1549 src/Object/Post.php:543 +#: src/Content/Conversation.php:1535 src/Object/Post.php:529 msgid "Categories:" msgstr "Catégories :" -#: src/Content/Conversation.php:1550 src/Object/Post.php:544 +#: src/Content/Conversation.php:1536 src/Object/Post.php:530 msgid "Filed under:" msgstr "Rangé sous :" -#: src/Content/Conversation.php:1558 src/Object/Post.php:570 +#: src/Content/Conversation.php:1544 src/Object/Post.php:556 #, php-format msgid "%s from %s" msgstr "%s de %s" -#: src/Content/Conversation.php:1574 +#: src/Content/Conversation.php:1560 msgid "View in context" msgstr "Voir dans le contexte" -#: src/Content/Conversation/Factory/Channel.php:42 +#: src/Content/Conversation/Factory/Channel.php:28 msgid "For you" msgstr "Pour vous" -#: src/Content/Conversation/Factory/Channel.php:42 +#: src/Content/Conversation/Factory/Channel.php:28 msgid "Posts from contacts you interact with and who interact with you" msgstr "Publications de contacts qui interagissent avec vous" -#: src/Content/Conversation/Factory/Channel.php:43 +#: src/Content/Conversation/Factory/Channel.php:29 msgid "Discover" msgstr "Découvrir" -#: src/Content/Conversation/Factory/Channel.php:43 +#: src/Content/Conversation/Factory/Channel.php:29 msgid "Posts from accounts that you don't follow, but that you might like." msgstr "Publications de comptes que vous ne suivez pas, mais qui pourrait vous intéresser." -#: src/Content/Conversation/Factory/Channel.php:44 +#: src/Content/Conversation/Factory/Channel.php:30 msgid "What's Hot" msgstr "Quoi de neuf" -#: src/Content/Conversation/Factory/Channel.php:44 +#: src/Content/Conversation/Factory/Channel.php:30 msgid "Posts with a lot of interactions" msgstr "Publications avec beaucoup d'interactions" -#: src/Content/Conversation/Factory/Channel.php:45 +#: src/Content/Conversation/Factory/Channel.php:31 #, php-format msgid "Posts in %s" msgstr "Publications dans %s" -#: src/Content/Conversation/Factory/Channel.php:46 +#: src/Content/Conversation/Factory/Channel.php:32 msgid "Posts from your followers that you don't follow" msgstr "Publications de personnes abonnées qui vous ne suivez pas" -#: src/Content/Conversation/Factory/Channel.php:47 +#: src/Content/Conversation/Factory/Channel.php:33 msgid "Sharers of sharers" msgstr "Partageurs de partageurs" -#: src/Content/Conversation/Factory/Channel.php:47 +#: src/Content/Conversation/Factory/Channel.php:33 msgid "Posts from accounts that are followed by accounts that you follow" msgstr "Publications de comptes suivis par des comptes que vous suivez" -#: src/Content/Conversation/Factory/Channel.php:48 +#: src/Content/Conversation/Factory/Channel.php:34 msgid "Quiet sharers" msgstr "Partageurs silencieux" -#: src/Content/Conversation/Factory/Channel.php:48 +#: src/Content/Conversation/Factory/Channel.php:34 msgid "Posts from accounts that you follow but who don't post very often" msgstr "Publications de comptes que vous suivez mais qui ne publient pas souvent." -#: src/Content/Conversation/Factory/Channel.php:49 -#: src/Module/Settings/Channels.php:199 src/Module/Settings/Channels.php:220 +#: src/Content/Conversation/Factory/Channel.php:35 +#: src/Module/Settings/Channels.php:185 src/Module/Settings/Channels.php:206 msgid "Images" msgstr "Images" -#: src/Content/Conversation/Factory/Channel.php:49 +#: src/Content/Conversation/Factory/Channel.php:35 msgid "Posts with images" msgstr "Publications avec images" -#: src/Content/Conversation/Factory/Channel.php:50 -#: src/Module/Settings/Channels.php:201 src/Module/Settings/Channels.php:222 +#: src/Content/Conversation/Factory/Channel.php:36 +#: src/Module/Settings/Channels.php:187 src/Module/Settings/Channels.php:208 msgid "Audio" msgstr "Audio" -#: src/Content/Conversation/Factory/Channel.php:50 +#: src/Content/Conversation/Factory/Channel.php:36 msgid "Posts with audio" msgstr "Publications avec audio" -#: src/Content/Conversation/Factory/Channel.php:51 -#: src/Module/Settings/Channels.php:200 src/Module/Settings/Channels.php:221 +#: src/Content/Conversation/Factory/Channel.php:37 +#: src/Module/Settings/Channels.php:186 src/Module/Settings/Channels.php:207 msgid "Videos" msgstr "Vidéos" -#: src/Content/Conversation/Factory/Channel.php:51 +#: src/Content/Conversation/Factory/Channel.php:37 msgid "Posts with videos" msgstr "Publications avec vidéos" -#: src/Content/Conversation/Factory/Community.php:43 +#: src/Content/Conversation/Factory/Community.php:29 msgid "Local Community" msgstr "Communauté locale" -#: src/Content/Conversation/Factory/Community.php:43 +#: src/Content/Conversation/Factory/Community.php:29 msgid "Posts from local users on this server" msgstr "Conversations publiques démarrées par des utilisateurs locaux" -#: src/Content/Conversation/Factory/Community.php:47 -#: src/Module/Settings/Channels.php:150 src/Module/Settings/Channels.php:155 +#: src/Content/Conversation/Factory/Community.php:33 +#: src/Module/Settings/Channels.php:136 src/Module/Settings/Channels.php:141 msgid "Global Community" msgstr "Communauté globale" -#: src/Content/Conversation/Factory/Community.php:47 +#: src/Content/Conversation/Factory/Community.php:33 msgid "Posts from users of the whole federated network" msgstr "Conversations publiques provenant du réseau fédéré global" -#: src/Content/Conversation/Factory/Network.php:38 -#: src/Module/Settings/Channels.php:156 +#: src/Content/Conversation/Factory/Network.php:24 +#: src/Module/Settings/Channels.php:142 msgid "Latest Activity" msgstr "Activité récente" -#: src/Content/Conversation/Factory/Network.php:38 +#: src/Content/Conversation/Factory/Network.php:24 msgid "Sort by latest activity" msgstr "Trier par activité récente" -#: src/Content/Conversation/Factory/Network.php:39 -#: src/Module/Settings/Channels.php:157 +#: src/Content/Conversation/Factory/Network.php:25 +#: src/Module/Settings/Channels.php:143 msgid "Latest Posts" msgstr "Dernières publications" -#: src/Content/Conversation/Factory/Network.php:39 +#: src/Content/Conversation/Factory/Network.php:25 msgid "Sort by post received date" msgstr "Trier par date de réception" -#: src/Content/Conversation/Factory/Network.php:40 -#: src/Module/Settings/Channels.php:158 +#: src/Content/Conversation/Factory/Network.php:26 +#: src/Module/Settings/Channels.php:144 msgid "Latest Creation" msgstr "Dernière création" -#: src/Content/Conversation/Factory/Network.php:40 +#: src/Content/Conversation/Factory/Network.php:26 msgid "Sort by post creation date" msgstr "Trier par date de création" -#: src/Content/Conversation/Factory/Network.php:41 -#: src/Module/Settings/Profile/Index.php:265 +#: src/Content/Conversation/Factory/Network.php:27 +#: src/Module/Settings/Profile/Index.php:251 msgid "Personal" msgstr "Personnel" -#: src/Content/Conversation/Factory/Network.php:41 +#: src/Content/Conversation/Factory/Network.php:27 msgid "Posts that mention or involve you" msgstr "Publications qui vous concernent" -#: src/Content/Conversation/Factory/Network.php:42 src/Object/Post.php:411 +#: src/Content/Conversation/Factory/Network.php:28 src/Object/Post.php:397 msgid "Starred" msgstr "Mis en avant" -#: src/Content/Conversation/Factory/Network.php:42 +#: src/Content/Conversation/Factory/Network.php:28 msgid "Favourite Posts" msgstr "Publications favorites" -#: src/Content/Feature.php:107 +#: src/Content/Feature.php:93 msgid "General Features" msgstr "Fonctions générales" -#: src/Content/Feature.php:109 +#: src/Content/Feature.php:95 msgid "Photo Location" msgstr "Lieu de prise de la photo" -#: src/Content/Feature.php:109 +#: src/Content/Feature.php:95 msgid "" "Photo metadata is normally stripped. This extracts the location (if present)" " prior to stripping metadata and links it to a map." msgstr "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." -#: src/Content/Feature.php:110 +#: src/Content/Feature.php:96 msgid "Display the community in the navigation" msgstr "Affiche la communauté dans la navigation" -#: src/Content/Feature.php:110 +#: src/Content/Feature.php:96 msgid "" "If enabled, the community can be accessed via the navigation menu. " "Independent from this setting, the community timelines can always be " "accessed via the channels." msgstr "Si activé, vous pouvez accéder à la communauté via le menu de navigation. Indépendamment de ce paramètre, les flux des communautés sont toujours accessibles via les chaînes." -#: src/Content/Feature.php:115 +#: src/Content/Feature.php:101 msgid "Post Composition Features" msgstr "Caractéristiques de composition de publication" -#: src/Content/Feature.php:116 +#: src/Content/Feature.php:102 msgid "Explicit Mentions" msgstr "Mentions explicites" -#: src/Content/Feature.php:116 +#: src/Content/Feature.php:102 msgid "" "Add explicit mentions to comment box for manual control over who gets " "mentioned in replies." msgstr "Ajoute des mentions explicites dans les publications permettant un contrôle manuel des mentions dans les fils de commentaires." -#: src/Content/Feature.php:117 +#: src/Content/Feature.php:103 msgid "Add an abstract from ActivityPub content warnings" msgstr "Ajouter un résumé depuis les avertissements de contenu d'ActivityPub" -#: src/Content/Feature.php:117 +#: src/Content/Feature.php:103 msgid "" "Add an abstract when commenting on ActivityPub posts with a content warning." " Abstracts are displayed as content warning on systems like Mastodon or " "Pleroma." msgstr "Ajoute un résumé lorsque vous commentez des publications ActivityPub avec un avertissement de contenu. Les résumés sont affichés en tant qu'avertissement de contenu sur les systèmes de type Mastodon ou Pleroma." -#: src/Content/Feature.php:122 +#: src/Content/Feature.php:108 msgid "Post/Comment Tools" msgstr "Outils de publication/commentaire" -#: src/Content/Feature.php:123 +#: src/Content/Feature.php:109 msgid "Post Categories" msgstr "Catégories des publications" -#: src/Content/Feature.php:123 +#: src/Content/Feature.php:109 msgid "Add categories to your posts" msgstr "Ajouter des catégories à vos publications" -#: src/Content/Feature.php:128 +#: src/Content/Feature.php:114 msgid "Network Widgets" msgstr "Widgets Réseau" -#: src/Content/Feature.php:129 src/Content/Widget.php:216 -#: src/Model/Circle.php:601 src/Module/Contact.php:406 -#: src/Module/Welcome.php:76 +#: src/Content/Feature.php:115 src/Content/Widget.php:194 +#: src/Model/Circle.php:587 src/Module/Contact.php:381 +#: src/Module/Welcome.php:62 msgid "Circles" msgstr "Cercles" -#: src/Content/Feature.php:129 +#: src/Content/Feature.php:115 msgid "" "Display posts that have been created by accounts of the selected circle." msgstr "Affiche les publications créées par les comptes du cercle sélectionné." -#: src/Content/Feature.php:130 src/Content/GroupManager.php:147 -#: src/Content/Nav.php:278 src/Content/Text/HTML.php:882 -#: src/Content/Widget.php:538 src/Model/User.php:1413 +#: src/Content/Feature.php:116 src/Content/GroupManager.php:133 +#: src/Content/Nav.php:264 src/Content/Text/HTML.php:868 +#: src/Content/Widget.php:516 src/Model/User.php:1390 msgid "Groups" msgstr "Groupes" -#: src/Content/Feature.php:130 +#: src/Content/Feature.php:116 msgid "Display posts that have been distributed by the selected group." msgstr "Affiche les publications qui ont été distribuées par le groupe sélectionné." -#: src/Content/Feature.php:131 src/Content/Widget.php:507 +#: src/Content/Feature.php:117 src/Content/Widget.php:485 msgid "Archives" msgstr "Archives" -#: src/Content/Feature.php:131 +#: src/Content/Feature.php:117 msgid "Display an archive where posts can be selected by month and year." msgstr "Affiche une archive permettant de sélectionner les publications par mois et année." -#: src/Content/Feature.php:132 src/Content/Widget.php:289 +#: src/Content/Feature.php:118 src/Content/Widget.php:267 msgid "Protocols" msgstr "Protocoles" -#: src/Content/Feature.php:132 +#: src/Content/Feature.php:118 msgid "Display posts with the selected protocols." msgstr "Affiche les publications obtenues via les protocoles sélectionnés." -#: src/Content/Feature.php:133 src/Content/Widget.php:544 -#: src/Module/Settings/Account.php:447 +#: src/Content/Feature.php:119 src/Content/Widget.php:522 +#: src/Module/Settings/Account.php:433 msgid "Account Types" msgstr "Type de compte" -#: src/Content/Feature.php:133 +#: src/Content/Feature.php:119 msgid "Display posts done by accounts with the selected account type." msgstr "Affiche les publications des comptes du type sélectionné." -#: src/Content/Feature.php:134 src/Content/Widget.php:593 -#: src/Module/Admin/Site.php:474 src/Module/BaseSettings.php:125 -#: src/Module/Settings/Channels.php:225 src/Module/Settings/Display.php:315 +#: src/Content/Feature.php:120 src/Content/Widget.php:571 +#: src/Module/Admin/Site.php:464 src/Module/BaseSettings.php:111 +#: src/Module/Settings/Channels.php:211 src/Module/Settings/Display.php:301 msgid "Channels" msgstr "Chaînes" -#: src/Content/Feature.php:134 +#: src/Content/Feature.php:120 msgid "Display posts in the system channels and user defined channels." msgstr "Affiche les publications dans les chaînes système et les chaînes créées par les utilisateurs." -#: src/Content/Feature.php:135 src/Content/Widget/SavedSearches.php:60 +#: src/Content/Feature.php:121 src/Content/Widget/SavedSearches.php:46 msgid "Saved Searches" msgstr "Recherches" -#: src/Content/Feature.php:135 +#: src/Content/Feature.php:121 msgid "Display posts that contain subscribed hashtags." msgstr "Affiche les publications incluant les étiquettes souscrites." -#: src/Content/Feature.php:136 src/Content/Widget.php:319 +#: src/Content/Feature.php:122 src/Content/Widget.php:297 msgid "Saved Folders" msgstr "Dossiers sauvegardés" -#: src/Content/Feature.php:136 +#: src/Content/Feature.php:122 msgid "Display a list of folders in which posts are stored." msgstr "Affiche une liste de dossier dans lesquels les publications sont enregistrées." -#: src/Content/Feature.php:137 src/Module/Conversation/Timeline.php:200 +#: src/Content/Feature.php:123 src/Module/Conversation/Timeline.php:186 msgid "Own Contacts" msgstr "Publications de vos propres contacts" -#: src/Content/Feature.php:137 +#: src/Content/Feature.php:123 msgid "" "Include or exclude posts from subscribed accounts. This widget is not " "visible on all channels." msgstr "Inclus ou exclu les publications des comptes abonnés. Ce widget n'est pas visible sur toutes les chaînes." -#: src/Content/Feature.php:138 +#: src/Content/Feature.php:124 msgid "Trending Tags" msgstr "Tendances" -#: src/Content/Feature.php:138 +#: src/Content/Feature.php:124 msgid "Display a list of the most popular tags in recent public posts." msgstr "Affiche une liste des étiquettes les plus populaires dans les publications récentes." -#: src/Content/Feature.php:143 +#: src/Content/Feature.php:129 msgid "Advanced Profile Settings" msgstr "Paramètres Avancés du Profil" -#: src/Content/Feature.php:144 +#: src/Content/Feature.php:130 msgid "Tag Cloud" msgstr "Nuage de tag" -#: src/Content/Feature.php:144 +#: src/Content/Feature.php:130 msgid "Provide a personal tag cloud on your profile page" msgstr "Affiche un nuage de tag personnel sur votre profil." -#: src/Content/Feature.php:145 +#: src/Content/Feature.php:131 msgid "Display Membership Date" msgstr "Afficher l'ancienneté" -#: src/Content/Feature.php:145 +#: src/Content/Feature.php:131 msgid "Display membership date in profile" msgstr "Affiche la date de création du compte sur votre profile" -#: src/Content/Feature.php:150 +#: src/Content/Feature.php:136 msgid "Advanced Calendar Settings" msgstr "Paramètres avancés du calendrier" -#: src/Content/Feature.php:151 +#: src/Content/Feature.php:137 msgid "Allow anonymous access to your calendar" msgstr "Autoriser un accès anonyme à votre calendrier" -#: src/Content/Feature.php:151 +#: src/Content/Feature.php:137 msgid "" "Allows anonymous visitors to consult your calendar and your public events. " "Contact birthday events are private to you." msgstr "Autorise les visiteurs anonymes à consulter votre calendrier et vos évènements publics. Les anniversaires de vos contacts demeurent privés." -#: src/Content/GroupManager.php:149 +#: src/Content/GroupManager.php:135 msgid "External link to group" msgstr "Lien externe vers le groupe" -#: src/Content/GroupManager.php:153 src/Content/Widget.php:513 +#: src/Content/GroupManager.php:139 src/Content/Widget.php:491 msgid "show less" msgstr "voir moins" -#: src/Content/GroupManager.php:154 src/Content/Widget.php:411 -#: src/Content/Widget.php:514 +#: src/Content/GroupManager.php:140 src/Content/Widget.php:389 +#: src/Content/Widget.php:492 msgid "show more" msgstr "montrer plus" -#: src/Content/GroupManager.php:155 +#: src/Content/GroupManager.php:141 msgid "Create new group" msgstr "Créer un nouveau groupe" -#: src/Content/Item.php:331 src/Model/Item.php:3304 +#: src/Content/Item.php:317 src/Model/Item.php:3272 msgid "event" msgstr "évènement" -#: src/Content/Item.php:334 src/Content/Item.php:344 +#: src/Content/Item.php:320 src/Content/Item.php:330 msgid "status" msgstr "le statut" -#: src/Content/Item.php:340 src/Model/Item.php:3306 -#: src/Module/Post/Tag/Add.php:123 +#: src/Content/Item.php:326 src/Model/Item.php:3274 +#: src/Module/Post/Tag/Add.php:109 msgid "photo" msgstr "photo" -#: src/Content/Item.php:354 src/Module/Post/Tag/Add.php:141 +#: src/Content/Item.php:340 src/Module/Post/Tag/Add.php:127 #, php-format msgid "%1$s tagged %2$s's %3$s with %4$s" msgstr "%1$s a mentionné %3$s de %2$s avec %4$s" -#: src/Content/Item.php:428 view/theme/frio/theme.php:265 +#: src/Content/Item.php:414 view/theme/frio/theme.php:253 msgid "Follow Thread" msgstr "Suivre le fil" -#: src/Content/Item.php:429 src/Model/Contact.php:1256 +#: src/Content/Item.php:415 src/Model/Contact.php:1249 msgid "View Status" msgstr "Voir les statuts" -#: src/Content/Item.php:430 src/Content/Item.php:453 -#: src/Model/Contact.php:1191 src/Model/Contact.php:1247 -#: src/Model/Contact.php:1257 src/Module/Directory.php:158 -#: src/Module/Settings/Profile/Index.php:264 +#: src/Content/Item.php:416 src/Content/Item.php:439 +#: src/Model/Contact.php:1184 src/Model/Contact.php:1240 +#: src/Model/Contact.php:1250 src/Module/Directory.php:144 +#: src/Module/Settings/Profile/Index.php:250 msgid "View Profile" msgstr "Voir le profil" -#: src/Content/Item.php:431 src/Model/Contact.php:1258 +#: src/Content/Item.php:417 src/Model/Contact.php:1251 msgid "View Photos" msgstr "Voir les photos" -#: src/Content/Item.php:432 src/Model/Contact.php:1225 -#: src/Model/Profile.php:461 +#: src/Content/Item.php:418 src/Model/Contact.php:1218 +#: src/Model/Profile.php:447 msgid "Network Posts" msgstr "Publications du réseau" -#: src/Content/Item.php:433 src/Model/Contact.php:1249 -#: src/Model/Contact.php:1260 +#: src/Content/Item.php:419 src/Model/Contact.php:1242 +#: src/Model/Contact.php:1253 msgid "View Contact" msgstr "Voir Contact" -#: src/Content/Item.php:434 src/Model/Contact.php:1261 +#: src/Content/Item.php:420 src/Model/Contact.php:1254 msgid "Send PM" msgstr "Message privé" -#: src/Content/Item.php:435 src/Module/Contact.php:474 -#: src/Module/Contact/Profile.php:532 -#: src/Module/Moderation/Blocklist/Contact.php:116 -#: src/Module/Moderation/Users/Active.php:137 -#: src/Module/Moderation/Users/Index.php:152 +#: src/Content/Item.php:421 src/Module/Contact.php:449 +#: src/Module/Contact/Profile.php:518 +#: src/Module/Moderation/Blocklist/Contact.php:102 +#: src/Module/Moderation/Users/Active.php:123 +#: src/Module/Moderation/Users/Index.php:138 msgid "Block" msgstr "Bloquer" -#: src/Content/Item.php:436 src/Module/Contact.php:475 -#: src/Module/Contact/Profile.php:540 -#: src/Module/Notifications/Introductions.php:140 -#: src/Module/Notifications/Introductions.php:212 -#: src/Module/Notifications/Notification.php:89 +#: src/Content/Item.php:422 src/Module/Contact.php:450 +#: src/Module/Contact/Profile.php:526 +#: src/Module/Notifications/Introductions.php:126 +#: src/Module/Notifications/Introductions.php:198 +#: src/Module/Notifications/Notification.php:75 msgid "Ignore" msgstr "Ignorer" -#: src/Content/Item.php:437 src/Module/Contact.php:476 -#: src/Module/Contact/Profile.php:548 +#: src/Content/Item.php:423 src/Module/Contact.php:451 +#: src/Module/Contact/Profile.php:534 msgid "Collapse" msgstr "Réduire" -#: src/Content/Item.php:438 src/Object/Post.php:302 +#: src/Content/Item.php:424 src/Object/Post.php:288 #, php-format msgid "Ignore %s server" msgstr "Ignorer le serveur %s" -#: src/Content/Item.php:442 src/Module/Settings/Channels.php:202 -#: src/Module/Settings/Channels.php:223 src/Object/Post.php:516 +#: src/Content/Item.php:428 src/Module/Settings/Channels.php:188 +#: src/Module/Settings/Channels.php:209 src/Object/Post.php:502 msgid "Languages" msgstr "Langues" -#: src/Content/Item.php:445 src/Object/Post.php:596 +#: src/Content/Item.php:431 src/Object/Post.php:582 msgid "Search Text" msgstr "Rechercher un texte" -#: src/Content/Item.php:450 src/Content/Widget.php:80 -#: src/Model/Contact.php:1250 src/Model/Contact.php:1262 -#: src/Module/Contact/Follow.php:167 view/theme/vier/theme.php:195 +#: src/Content/Item.php:436 src/Content/Widget.php:66 +#: src/Model/Contact.php:1243 src/Model/Contact.php:1255 +#: src/Module/Contact/Follow.php:148 view/theme/vier/theme.php:183 msgid "Connect/Follow" msgstr "Se connecter/Suivre" -#: src/Content/Item.php:884 +#: src/Content/Item.php:870 msgid "Unable to fetch user." msgstr "Impossible de récupérer l'utilisateur." -#: src/Content/Nav.php:121 +#: src/Content/Nav.php:107 msgid "Nothing new here" msgstr "Rien de neuf ici" -#: src/Content/Nav.php:125 src/Module/Special/HTTPException.php:77 +#: src/Content/Nav.php:111 src/Module/Special/HTTPException.php:63 msgid "Go back" msgstr "Revenir" -#: src/Content/Nav.php:126 +#: src/Content/Nav.php:112 msgid "Clear notifications" msgstr "Effacer les notifications" -#: src/Content/Nav.php:127 src/Content/Text/HTML.php:869 +#: src/Content/Nav.php:113 src/Content/Text/HTML.php:855 msgid "@name, !group, #tags, content" msgstr "@nom, !groupe, #etiquettes, contenu" -#: src/Content/Nav.php:222 src/Module/Security/Login.php:161 +#: src/Content/Nav.php:208 src/Module/Security/Login.php:147 msgid "Logout" msgstr "Se déconnecter" -#: src/Content/Nav.php:222 +#: src/Content/Nav.php:208 msgid "End this session" msgstr "Mettre fin à cette session" -#: src/Content/Nav.php:224 src/Module/Bookmarklet.php:44 -#: src/Module/Security/Login.php:162 +#: src/Content/Nav.php:210 src/Module/Bookmarklet.php:30 +#: src/Module/Security/Login.php:148 msgid "Login" msgstr "Connexion" -#: src/Content/Nav.php:224 +#: src/Content/Nav.php:210 msgid "Sign in" msgstr "Se connecter" -#: src/Content/Nav.php:229 src/Module/BaseProfile.php:57 -#: src/Module/Contact.php:518 +#: src/Content/Nav.php:215 src/Module/BaseProfile.php:43 +#: src/Module/Contact.php:493 msgid "Conversations" msgstr "Discussions" -#: src/Content/Nav.php:229 +#: src/Content/Nav.php:215 msgid "Conversations you started" 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:510 -#: src/Module/Contact/Profile.php:439 src/Module/Profile/Profile.php:270 -#: src/Module/Welcome.php:57 view/theme/frio/theme.php:233 +#: src/Content/Nav.php:216 src/Module/BaseProfile.php:35 +#: src/Module/BaseSettings.php:84 src/Module/Contact.php:485 +#: src/Module/Contact/Profile.php:425 src/Module/Profile/Profile.php:256 +#: src/Module/Welcome.php:43 view/theme/frio/theme.php:221 msgid "Profile" msgstr "Profil" -#: src/Content/Nav.php:230 view/theme/frio/theme.php:233 +#: src/Content/Nav.php:216 view/theme/frio/theme.php:221 msgid "Your profile page" msgstr "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:237 +#: src/Content/Nav.php:217 src/Module/BaseProfile.php:51 +#: src/Module/Media/Photo/Browser.php:60 view/theme/frio/theme.php:225 msgid "Photos" msgstr "Photos" -#: src/Content/Nav.php:231 view/theme/frio/theme.php:237 +#: src/Content/Nav.php:217 view/theme/frio/theme.php:225 msgid "Your photos" msgstr "Vos photos" -#: src/Content/Nav.php:232 src/Module/BaseProfile.php:73 -#: src/Module/BaseProfile.php:76 src/Module/Contact.php:534 -#: view/theme/frio/theme.php:238 +#: src/Content/Nav.php:218 src/Module/BaseProfile.php:59 +#: src/Module/BaseProfile.php:62 src/Module/Contact.php:509 +#: view/theme/frio/theme.php:226 msgid "Media" msgstr "Média" -#: src/Content/Nav.php:232 view/theme/frio/theme.php:238 +#: src/Content/Nav.php:218 view/theme/frio/theme.php:226 msgid "Your postings with media" msgstr "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:239 -#: view/theme/frio/theme.php:243 +#: src/Content/Nav.php:219 src/Content/Nav.php:279 +#: src/Module/BaseProfile.php:71 src/Module/BaseProfile.php:74 +#: src/Module/BaseProfile.php:82 src/Module/BaseProfile.php:85 +#: src/Module/Settings/Display.php:302 view/theme/frio/theme.php:227 +#: view/theme/frio/theme.php:231 msgid "Calendar" msgstr "Calendrier" -#: src/Content/Nav.php:233 view/theme/frio/theme.php:239 +#: src/Content/Nav.php:219 view/theme/frio/theme.php:227 msgid "Your calendar" msgstr "Votre calendrier" -#: src/Content/Nav.php:234 +#: src/Content/Nav.php:220 msgid "Personal notes" msgstr "Notes personnelles" -#: src/Content/Nav.php:234 +#: src/Content/Nav.php:220 msgid "Your personal notes" msgstr "Vos notes personnelles" -#: src/Content/Nav.php:251 src/Content/Nav.php:308 +#: src/Content/Nav.php:237 src/Content/Nav.php:294 msgid "Home" msgstr "Profil" -#: src/Content/Nav.php:251 src/Module/Settings/OAuth.php:73 +#: src/Content/Nav.php:237 src/Module/Settings/OAuth.php:59 msgid "Home Page" msgstr "Page d'accueil" -#: src/Content/Nav.php:255 src/Module/Register.php:175 -#: src/Module/Security/Login.php:128 +#: src/Content/Nav.php:241 src/Module/Register.php:161 +#: src/Module/Security/Login.php:114 msgid "Register" msgstr "S'inscrire" -#: src/Content/Nav.php:255 +#: src/Content/Nav.php:241 msgid "Create an account" msgstr "Créer un compte" -#: src/Content/Nav.php:261 src/Module/Help.php:67 -#: src/Module/Settings/TwoFactor/AppSpecific.php:132 -#: src/Module/Settings/TwoFactor/Index.php:139 -#: src/Module/Settings/TwoFactor/Recovery.php:110 -#: src/Module/Settings/TwoFactor/Verify.php:149 view/theme/vier/theme.php:240 +#: src/Content/Nav.php:247 src/Module/Help.php:53 +#: src/Module/Settings/TwoFactor/AppSpecific.php:118 +#: src/Module/Settings/TwoFactor/Index.php:125 +#: src/Module/Settings/TwoFactor/Recovery.php:96 +#: src/Module/Settings/TwoFactor/Verify.php:135 view/theme/vier/theme.php:228 msgid "Help" msgstr "Aide" -#: src/Content/Nav.php:261 +#: src/Content/Nav.php:247 msgid "Help and documentation" msgstr "Aide et documentation" -#: src/Content/Nav.php:265 +#: src/Content/Nav.php:251 msgid "Apps" msgstr "Applications" -#: src/Content/Nav.php:265 +#: src/Content/Nav.php:251 msgid "Addon applications, utilities, games" msgstr "Applications supplémentaires, utilitaires, jeux" -#: src/Content/Nav.php:269 src/Content/Text/HTML.php:867 -#: src/Module/Admin/Logs/View.php:88 src/Module/Search/Index.php:112 +#: src/Content/Nav.php:255 src/Content/Text/HTML.php:853 +#: src/Module/Admin/Logs/View.php:74 src/Module/Search/Index.php:98 msgid "Search" msgstr "Recherche" -#: src/Content/Nav.php:269 +#: src/Content/Nav.php:255 msgid "Search site content" msgstr "Rechercher dans le contenu du site" -#: src/Content/Nav.php:272 src/Content/Text/HTML.php:876 +#: src/Content/Nav.php:258 src/Content/Text/HTML.php:862 msgid "Full Text" msgstr "Texte Entier" -#: src/Content/Nav.php:273 src/Content/Text/HTML.php:877 -#: src/Content/Widget/TagCloud.php:68 +#: src/Content/Nav.php:259 src/Content/Text/HTML.php:863 +#: src/Content/Widget/TagCloud.php:54 msgid "Tags" msgstr "Étiquettes" -#: src/Content/Nav.php:274 src/Content/Nav.php:329 -#: src/Content/Text/HTML.php:878 src/Module/BaseProfile.php:127 -#: src/Module/BaseProfile.php:130 src/Module/Contact.php:432 -#: src/Module/Contact.php:542 view/theme/frio/theme.php:246 +#: src/Content/Nav.php:260 src/Content/Nav.php:315 +#: src/Content/Text/HTML.php:864 src/Module/BaseProfile.php:113 +#: src/Module/BaseProfile.php:116 src/Module/Contact.php:407 +#: src/Module/Contact.php:517 view/theme/frio/theme.php:234 msgid "Contacts" msgstr "Contacts" -#: src/Content/Nav.php:289 +#: src/Content/Nav.php:275 msgid "Community" msgstr "Communauté" -#: src/Content/Nav.php:289 +#: src/Content/Nav.php:275 msgid "Conversations on this and other servers" msgstr "Flux public global" -#: src/Content/Nav.php:296 +#: src/Content/Nav.php:282 msgid "Directory" msgstr "Annuaire" -#: src/Content/Nav.php:296 +#: src/Content/Nav.php:282 msgid "People directory" msgstr "Annuaire des utilisateurs" -#: src/Content/Nav.php:298 src/Module/BaseAdmin.php:85 -#: src/Module/BaseModeration.php:108 +#: src/Content/Nav.php:284 src/Module/BaseAdmin.php:71 +#: src/Module/BaseModeration.php:94 msgid "Information" msgstr "Information" -#: src/Content/Nav.php:298 +#: src/Content/Nav.php:284 msgid "Information about this friendica instance" msgstr "Information au sujet de cette instance de friendica" -#: src/Content/Nav.php:301 src/Module/Admin/Tos.php:78 -#: src/Module/BaseAdmin.php:95 src/Module/Register.php:183 -#: src/Module/Tos.php:101 +#: src/Content/Nav.php:287 src/Module/Admin/Tos.php:64 +#: src/Module/BaseAdmin.php:81 src/Module/Register.php:169 +#: src/Module/Tos.php:87 msgid "Terms of Service" msgstr "Conditions de service" -#: src/Content/Nav.php:301 +#: src/Content/Nav.php:287 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:242 +#: src/Content/Nav.php:292 view/theme/frio/theme.php:230 msgid "Network" msgstr "Réseau" -#: src/Content/Nav.php:306 view/theme/frio/theme.php:242 +#: src/Content/Nav.php:292 view/theme/frio/theme.php:230 msgid "Conversations from your friends" msgstr "Flux de conversations" -#: src/Content/Nav.php:308 view/theme/frio/theme.php:232 +#: src/Content/Nav.php:294 view/theme/frio/theme.php:220 msgid "Your posts and conversations" msgstr "Vos publications et conversations" -#: src/Content/Nav.php:312 +#: src/Content/Nav.php:298 msgid "Introductions" msgstr "Introductions" -#: src/Content/Nav.php:312 +#: src/Content/Nav.php:298 msgid "Friend Requests" msgstr "Demande d'abonnement" -#: src/Content/Nav.php:313 src/Module/BaseNotifications.php:149 -#: src/Module/Notifications/Introductions.php:75 +#: src/Content/Nav.php:299 src/Module/BaseNotifications.php:135 +#: src/Module/Notifications/Introductions.php:61 msgid "Notifications" msgstr "Notifications" -#: src/Content/Nav.php:314 +#: src/Content/Nav.php:300 msgid "See all notifications" msgstr "Voir toutes les notifications" -#: src/Content/Nav.php:315 src/Module/Settings/Connectors.php:254 +#: src/Content/Nav.php:301 src/Module/Settings/Connectors.php:233 msgid "Mark as seen" msgstr "Marquer comme vu" -#: src/Content/Nav.php:315 +#: src/Content/Nav.php:301 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:244 +#: src/Content/Nav.php:304 view/theme/frio/theme.php:232 msgid "Private mail" msgstr "Messages privés" -#: src/Content/Nav.php:319 +#: src/Content/Nav.php:305 msgid "Inbox" msgstr "Messages entrants" -#: src/Content/Nav.php:320 +#: src/Content/Nav.php:306 msgid "Outbox" msgstr "Messages sortants" -#: src/Content/Nav.php:324 +#: src/Content/Nav.php:310 msgid "Accounts" msgstr "Comptes" -#: src/Content/Nav.php:324 +#: src/Content/Nav.php:310 msgid "Manage other pages" msgstr "Gérer les autres pages" -#: src/Content/Nav.php:327 src/Module/Admin/Addons/Details.php:114 -#: src/Module/Admin/Themes/Details.php:99 src/Module/BaseSettings.php:182 -#: src/Module/Welcome.php:52 view/theme/frio/theme.php:245 +#: src/Content/Nav.php:313 src/Module/Admin/Addons/Details.php:100 +#: src/Module/Admin/Themes/Details.php:85 src/Module/BaseSettings.php:168 +#: src/Module/Welcome.php:38 view/theme/frio/theme.php:233 msgid "Settings" msgstr "Réglages" -#: src/Content/Nav.php:327 view/theme/frio/theme.php:245 +#: src/Content/Nav.php:313 view/theme/frio/theme.php:233 msgid "Account settings" msgstr "Compte" -#: src/Content/Nav.php:329 view/theme/frio/theme.php:246 +#: src/Content/Nav.php:315 view/theme/frio/theme.php:234 msgid "Manage/edit friends and contacts" msgstr "Gestion des contacts" -#: src/Content/Nav.php:334 src/Module/BaseAdmin.php:119 +#: src/Content/Nav.php:320 src/Module/BaseAdmin.php:105 msgid "Admin" msgstr "Admin" -#: src/Content/Nav.php:334 +#: src/Content/Nav.php:320 msgid "Site setup and configuration" msgstr "Démarrage et configuration du site" -#: src/Content/Nav.php:335 src/Module/BaseModeration.php:128 -#: src/Module/Moderation/Blocklist/Contact.php:110 -#: src/Module/Moderation/Blocklist/Server/Add.php:121 -#: src/Module/Moderation/Blocklist/Server/Import.php:118 -#: src/Module/Moderation/Blocklist/Server/Index.php:95 -#: src/Module/Moderation/Item/Delete.php:61 -#: src/Module/Moderation/Reports.php:110 src/Module/Moderation/Summary.php:75 -#: src/Module/Moderation/Users/Active.php:133 -#: src/Module/Moderation/Users/Blocked.php:133 -#: src/Module/Moderation/Users/Deleted.php:80 -#: src/Module/Moderation/Users/Index.php:147 +#: src/Content/Nav.php:321 src/Module/BaseModeration.php:114 +#: src/Module/Moderation/Blocklist/Contact.php:96 +#: src/Module/Moderation/Blocklist/Server/Add.php:107 +#: src/Module/Moderation/Blocklist/Server/Import.php:102 +#: src/Module/Moderation/Blocklist/Server/Index.php:81 +#: src/Module/Moderation/Item/Delete.php:47 +#: src/Module/Moderation/Reports.php:96 src/Module/Moderation/Summary.php:61 +#: src/Module/Moderation/Users/Active.php:119 +#: src/Module/Moderation/Users/Blocked.php:119 +#: src/Module/Moderation/Users/Deleted.php:66 +#: src/Module/Moderation/Users/Index.php:133 msgid "Moderation" msgstr "Modération" -#: src/Content/Nav.php:335 +#: src/Content/Nav.php:321 msgid "Content and user moderation" msgstr "Modération du contenu et des utilisateurs" -#: src/Content/Nav.php:338 +#: src/Content/Nav.php:324 msgid "Navigation" msgstr "Navigation" -#: src/Content/Nav.php:338 +#: src/Content/Nav.php:324 msgid "Site map" msgstr "Carte du site" -#: src/Content/Pager.php:216 +#: src/Content/Pager.php:202 msgid "first" msgstr "premier" -#: src/Content/Pager.php:221 +#: src/Content/Pager.php:207 msgid "prev" msgstr "précédent" -#: src/Content/Pager.php:276 +#: src/Content/Pager.php:262 msgid "next" msgstr "suivant" -#: src/Content/Pager.php:281 +#: src/Content/Pager.php:267 msgid "last" msgstr "dernier" -#: src/Content/Text/BBCode.php:704 src/Content/Text/BBCode.php:1880 -#: src/Content/Text/BBCode.php:1881 +#: src/Content/Text/BBCode.php:689 src/Content/Text/BBCode.php:1862 +#: src/Content/Text/BBCode.php:1863 msgid "Image/photo" msgstr "Image/photo" -#: src/Content/Text/BBCode.php:922 +#: src/Content/Text/BBCode.php:907 #, php-format msgid "%2$s %3$s" msgstr "%2$s %3$s" -#: src/Content/Text/BBCode.php:947 src/Model/Item.php:4060 -#: src/Model/Item.php:4066 src/Model/Item.php:4067 +#: src/Content/Text/BBCode.php:929 src/Model/Item.php:4028 +#: src/Model/Item.php:4034 src/Model/Item.php:4035 msgid "Link to source" msgstr "Lien vers la source" -#: src/Content/Text/BBCode.php:1761 src/Content/Text/HTML.php:906 +#: src/Content/Text/BBCode.php:1743 src/Content/Text/HTML.php:892 msgid "Click to open/close" msgstr "Cliquer pour ouvrir/fermer" -#: src/Content/Text/BBCode.php:1816 +#: src/Content/Text/BBCode.php:1798 msgid "$1 wrote:" msgstr "$1 a écrit :" -#: src/Content/Text/BBCode.php:1890 src/Content/Text/BBCode.php:1891 +#: src/Content/Text/BBCode.php:1872 src/Content/Text/BBCode.php:1873 msgid "Encrypted content" msgstr "Contenu chiffré" -#: src/Content/Text/BBCode.php:2223 +#: src/Content/Text/BBCode.php:2205 msgid "Invalid source protocol" msgstr "Protocole d'image invalide" -#: src/Content/Text/BBCode.php:2242 +#: src/Content/Text/BBCode.php:2224 msgid "Invalid link protocol" msgstr "Protocole de lien invalide" -#: src/Content/Text/HTML.php:784 +#: src/Content/Text/HTML.php:770 msgid "Loading more entries..." msgstr "Chargement de résultats supplémentaires..." -#: src/Content/Text/HTML.php:785 +#: src/Content/Text/HTML.php:771 msgid "The end" msgstr "Fin" -#: src/Content/Text/HTML.php:861 src/Content/Widget/VCard.php:127 -#: src/Model/Profile.php:470 src/Module/Contact/Profile.php:492 +#: src/Content/Text/HTML.php:847 src/Content/Widget/VCard.php:113 +#: src/Model/Profile.php:456 src/Module/Contact/Profile.php:478 msgid "Follow" msgstr "S'abonner" -#: src/Content/Widget.php:51 +#: src/Content/Widget.php:37 msgid "Add New Contact" msgstr "Ajouter un nouveau contact" -#: src/Content/Widget.php:52 +#: src/Content/Widget.php:38 msgid "Enter address or web location" msgstr "Entrez son adresse ou sa localisation web" -#: src/Content/Widget.php:53 +#: src/Content/Widget.php:39 msgid "Example: bob@example.com, http://example.com/barbara" msgstr "Exemple : bob@example.com, http://example.com/barbara" -#: src/Content/Widget.php:55 +#: src/Content/Widget.php:41 msgid "Connect" msgstr "Se connecter" -#: src/Content/Widget.php:72 +#: src/Content/Widget.php:58 #, php-format msgid "%d invitation available" msgid_plural "%d invitations available" @@ -2388,79 +2387,79 @@ msgstr[0] "%d invitation disponible" msgstr[1] "%d invitations disponibles" msgstr[2] "%d invitations disponibles" -#: src/Content/Widget.php:78 view/theme/vier/theme.php:193 +#: src/Content/Widget.php:64 view/theme/vier/theme.php:181 msgid "Find People" msgstr "Trouver des personnes" -#: src/Content/Widget.php:79 view/theme/vier/theme.php:194 +#: src/Content/Widget.php:65 view/theme/vier/theme.php:182 msgid "Enter name or interest" msgstr "Entrez un nom ou un centre d'intérêt" -#: src/Content/Widget.php:81 view/theme/vier/theme.php:196 +#: src/Content/Widget.php:67 view/theme/vier/theme.php:184 msgid "Examples: Robert Morgenstein, Fishing" msgstr "Exemples : Robert Morgenstein, Pêche" -#: src/Content/Widget.php:82 src/Module/Contact.php:466 -#: src/Module/Directory.php:97 view/theme/vier/theme.php:197 +#: src/Content/Widget.php:68 src/Module/Contact.php:441 +#: src/Module/Directory.php:83 view/theme/vier/theme.php:185 msgid "Find" msgstr "Trouver" -#: src/Content/Widget.php:83 src/Module/Contact/Suggestions.php:73 -#: view/theme/vier/theme.php:198 +#: src/Content/Widget.php:69 src/Module/Contact/Suggestions.php:59 +#: view/theme/vier/theme.php:186 msgid "Friend Suggestions" msgstr "Suggestions d'abonnement" -#: src/Content/Widget.php:84 view/theme/vier/theme.php:199 +#: src/Content/Widget.php:70 view/theme/vier/theme.php:187 msgid "Similar Interests" msgstr "Intérêts similaires" -#: src/Content/Widget.php:85 view/theme/vier/theme.php:200 +#: src/Content/Widget.php:71 view/theme/vier/theme.php:188 msgid "Random Profile" msgstr "Profil au hasard" -#: src/Content/Widget.php:86 view/theme/vier/theme.php:201 +#: src/Content/Widget.php:72 view/theme/vier/theme.php:189 msgid "Invite Friends" msgstr "Inviter des contacts" -#: src/Content/Widget.php:87 src/Module/Directory.php:89 -#: view/theme/vier/theme.php:202 +#: src/Content/Widget.php:73 src/Module/Directory.php:75 +#: view/theme/vier/theme.php:190 msgid "Global Directory" msgstr "Annuaire global" -#: src/Content/Widget.php:89 view/theme/vier/theme.php:204 +#: src/Content/Widget.php:75 view/theme/vier/theme.php:192 msgid "Local Directory" msgstr "Annuaire local" -#: src/Content/Widget.php:218 +#: src/Content/Widget.php:196 msgid "Everyone" msgstr "Tous les groupes" -#: src/Content/Widget.php:243 src/Module/Contact.php:429 +#: src/Content/Widget.php:221 src/Module/Contact.php:404 msgid "No relationship" msgstr "Aucune relation" -#: src/Content/Widget.php:248 +#: src/Content/Widget.php:226 msgid "Relationships" msgstr "Relations" -#: src/Content/Widget.php:250 src/Module/Circle.php:294 -#: src/Module/Contact.php:350 +#: src/Content/Widget.php:228 src/Module/Circle.php:280 +#: src/Module/Contact.php:325 msgid "All Contacts" msgstr "Tous les contacts" -#: src/Content/Widget.php:291 +#: src/Content/Widget.php:269 msgid "All Protocols" msgstr "Tous les protocoles" -#: src/Content/Widget.php:321 src/Content/Widget.php:352 +#: src/Content/Widget.php:299 src/Content/Widget.php:330 msgid "Everything" msgstr "Tout" -#: src/Content/Widget.php:350 +#: src/Content/Widget.php:328 msgid "Categories" msgstr "Catégories" -#: src/Content/Widget.php:407 +#: src/Content/Widget.php:385 #, php-format msgid "%d contact in common" msgid_plural "%d contacts in common" @@ -2468,47 +2467,47 @@ msgstr[0] "%d contact en commun" msgstr[1] "%d contacts en commun" msgstr[2] "%d contacts en commun" -#: src/Content/Widget.php:515 +#: src/Content/Widget.php:493 msgid "On this date" msgstr "A cette date" -#: src/Content/Widget.php:535 +#: src/Content/Widget.php:513 msgid "Persons" msgstr "Personnes" -#: src/Content/Widget.php:536 +#: src/Content/Widget.php:514 msgid "Organisations" msgstr "Organisations" -#: src/Content/Widget.php:537 src/Model/Contact.php:1754 +#: src/Content/Widget.php:515 src/Model/Contact.php:1747 msgid "News" msgstr "Nouvelles" -#: src/Content/Widget.php:539 +#: src/Content/Widget.php:517 msgid "Relays" msgstr "Relais" -#: src/Content/Widget.php:546 src/Module/Moderation/BaseUsers.php:69 +#: src/Content/Widget.php:524 src/Module/Moderation/BaseUsers.php:56 msgid "All" msgstr "Tout" -#: src/Content/Widget/CalendarExport.php:56 +#: src/Content/Widget/CalendarExport.php:42 msgid "Export" msgstr "Exporter" -#: src/Content/Widget/CalendarExport.php:57 +#: src/Content/Widget/CalendarExport.php:43 msgid "Export calendar as ical" msgstr "Exporter au format iCal" -#: src/Content/Widget/CalendarExport.php:58 +#: src/Content/Widget/CalendarExport.php:44 msgid "Export calendar as csv" msgstr "Exporter au format CSV" -#: src/Content/Widget/ContactBlock.php:79 +#: src/Content/Widget/ContactBlock.php:65 msgid "No contacts" msgstr "Aucun contact" -#: src/Content/Widget/ContactBlock.php:110 +#: src/Content/Widget/ContactBlock.php:96 #, php-format msgid "%d Contact" msgid_plural "%d Contacts" @@ -2516,15 +2515,15 @@ msgstr[0] "%d contact" msgstr[1] "%d contacts" msgstr[2] "%d contacts" -#: src/Content/Widget/ContactBlock.php:127 +#: src/Content/Widget/ContactBlock.php:113 msgid "View Contacts" msgstr "Voir les contacts" -#: src/Content/Widget/SavedSearches.php:47 +#: src/Content/Widget/SavedSearches.php:33 msgid "Remove term" msgstr "Retirer le terme" -#: src/Content/Widget/TrendingTags.php:53 +#: src/Content/Widget/TrendingTags.php:39 #, php-format msgid "Trending Tags (last %d hour)" msgid_plural "Trending Tags (last %d hours)" @@ -2532,138 +2531,138 @@ msgstr[0] "Tendances (dernière %d heure)" msgstr[1] "Tendances (dernières %d heures)" msgstr[2] "Tendances (dernières %d heures)" -#: src/Content/Widget/TrendingTags.php:54 +#: src/Content/Widget/TrendingTags.php:40 msgid "More Trending Tags" msgstr "Plus de tendances" -#: src/Content/Widget/VCard.php:105 src/Model/Contact.php:1219 -#: src/Model/Profile.php:455 +#: src/Content/Widget/VCard.php:91 src/Model/Contact.php:1212 +#: src/Model/Profile.php:441 msgid "Post to group" msgstr "Publier sur le groupe" -#: src/Content/Widget/VCard.php:110 src/Model/Contact.php:1223 -#: src/Model/Profile.php:459 src/Module/Moderation/Item/Source.php:91 +#: src/Content/Widget/VCard.php:96 src/Model/Contact.php:1216 +#: src/Model/Profile.php:445 src/Module/Moderation/Item/Source.php:77 msgid "Mention" msgstr "Mention" -#: src/Content/Widget/VCard.php:120 src/Model/Profile.php:374 -#: src/Module/Contact/Profile.php:428 src/Module/Profile/Profile.php:201 +#: src/Content/Widget/VCard.php:106 src/Model/Profile.php:360 +#: src/Module/Contact/Profile.php:414 src/Module/Profile/Profile.php:187 msgid "XMPP:" msgstr "XMPP" -#: src/Content/Widget/VCard.php:121 src/Model/Profile.php:375 -#: src/Module/Contact/Profile.php:430 src/Module/Profile/Profile.php:205 +#: src/Content/Widget/VCard.php:107 src/Model/Profile.php:361 +#: src/Module/Contact/Profile.php:416 src/Module/Profile/Profile.php:191 msgid "Matrix:" msgstr "Matrix :" -#: src/Content/Widget/VCard.php:122 src/Model/Event.php:82 -#: src/Model/Event.php:109 src/Model/Event.php:471 src/Model/Event.php:960 -#: src/Model/Profile.php:369 src/Module/Contact/Profile.php:426 -#: src/Module/Directory.php:148 src/Module/Notifications/Introductions.php:193 -#: src/Module/Profile/Profile.php:223 +#: src/Content/Widget/VCard.php:108 src/Model/Event.php:68 +#: src/Model/Event.php:95 src/Model/Event.php:457 src/Model/Event.php:946 +#: src/Model/Profile.php:355 src/Module/Contact/Profile.php:412 +#: src/Module/Directory.php:134 src/Module/Notifications/Introductions.php:179 +#: src/Module/Profile/Profile.php:209 msgid "Location:" msgstr "Localisation :" -#: src/Content/Widget/VCard.php:125 src/Model/Profile.php:483 -#: src/Module/Notifications/Introductions.php:207 +#: src/Content/Widget/VCard.php:111 src/Model/Profile.php:469 +#: src/Module/Notifications/Introductions.php:193 msgid "Network:" msgstr "Réseau" -#: src/Content/Widget/VCard.php:129 src/Model/Contact.php:1251 -#: src/Model/Contact.php:1263 src/Model/Profile.php:472 -#: src/Module/Contact/Profile.php:484 +#: src/Content/Widget/VCard.php:115 src/Model/Contact.php:1244 +#: src/Model/Contact.php:1256 src/Model/Profile.php:458 +#: src/Module/Contact/Profile.php:470 msgid "Unfollow" msgstr "Se désabonner" -#: src/Content/Widget/VCard.php:135 src/Model/Contact.php:1221 -#: src/Model/Profile.php:457 +#: src/Content/Widget/VCard.php:121 src/Model/Contact.php:1214 +#: src/Model/Profile.php:443 msgid "View group" msgstr "Voir le groupe" -#: src/Core/ACL.php:166 src/Module/Profile/Profile.php:271 +#: src/Core/ACL.php:152 src/Module/Profile/Profile.php:257 msgid "Yourself" msgstr "Vous-même" -#: src/Core/ACL.php:202 src/Module/Privacy/PermissionTooltip.php:170 -#: src/Module/Privacy/PermissionTooltip.php:192 +#: src/Core/ACL.php:188 src/Module/Privacy/PermissionTooltip.php:156 +#: src/Module/Privacy/PermissionTooltip.php:178 msgid "Mutuals" msgstr "Mutuels" -#: src/Core/ACL.php:294 +#: src/Core/ACL.php:280 msgid "Post to Email" msgstr "Publier aux courriels" -#: src/Core/ACL.php:321 src/Module/Privacy/PermissionTooltip.php:117 -#: src/Module/Privacy/PermissionTooltip.php:231 +#: src/Core/ACL.php:307 src/Module/Privacy/PermissionTooltip.php:103 +#: src/Module/Privacy/PermissionTooltip.php:217 msgid "Public" msgstr "Public" -#: src/Core/ACL.php:322 +#: src/Core/ACL.php:308 msgid "" "This content will be shown to all your followers and can be seen in the " "community pages and by anyone with its link." msgstr "Ce contenu sera visible par vos abonnés, sur votre profile, dans les flux communautaires et par quiconque ayant son adresse Web." -#: src/Core/ACL.php:323 src/Module/Privacy/PermissionTooltip.php:119 +#: src/Core/ACL.php:309 src/Module/Privacy/PermissionTooltip.php:105 msgid "Limited/Private" msgstr "Limité/Privé" -#: src/Core/ACL.php:324 +#: src/Core/ACL.php:310 msgid "" "This content will be shown only to the people in the first box, to the " "exception of the people mentioned in the second box. It won't appear " "anywhere public." msgstr "Ce contenu sera visible uniquement par les groupes et contacts listés dans le premier champ, sauf par les groupes et contacts listés dans le second champ. Il ne sera pas visible publiquement." -#: src/Core/ACL.php:324 +#: src/Core/ACL.php:310 msgid "" "Start typing the name of a contact or a circle to show a filtered list. You " "can also mention the special circles \"Followers\" and \"Mutuals\"." msgstr "Commencer à écrire le nom d'un contact ou d'un cercle pour afficher une liste filtrée. Vous pouvez aussi mentionner les groupes spéciaux \"Followers\" et \"Mutuels\"." -#: src/Core/ACL.php:325 +#: src/Core/ACL.php:311 msgid "Show to:" msgstr "Visible par :" -#: src/Core/ACL.php:326 +#: src/Core/ACL.php:312 msgid "Except to:" msgstr "Masquer à :" -#: src/Core/ACL.php:327 src/Module/Post/Edit.php:154 +#: src/Core/ACL.php:313 src/Module/Post/Edit.php:140 msgid "CC: email addresses" msgstr "CC: adresses de courriel" -#: src/Core/ACL.php:328 src/Module/Post/Edit.php:160 +#: src/Core/ACL.php:314 src/Module/Post/Edit.php:146 msgid "Example: bob@example.com, mary@example.com" msgstr "Exemple : bob@exemple.com, mary@exemple.com" -#: src/Core/ACL.php:329 +#: src/Core/ACL.php:315 msgid "Connectors" msgstr "Connecteurs" -#: src/Core/Installer.php:180 +#: src/Core/Installer.php:166 msgid "" "The database configuration file \"config/local.config.php\" could not be " "written. Please use the enclosed text to create a configuration file in your" " web server root." msgstr "Le fichier de configuration \"config/local.config.php\" n'a pas pu être créé. Veuillez utiliser le texte fourni pour créer manuellement ce fichier sur votre serveur." -#: src/Core/Installer.php:197 +#: src/Core/Installer.php:183 msgid "" "You may need to import the file \"database.sql\" manually using phpmyadmin " "or mysql." msgstr "Vous pourriez avoir besoin d'importer le fichier \"database.sql\" manuellement au moyen de phpmyadmin ou de la commande mysql." -#: src/Core/Installer.php:198 src/Module/Install.php:207 -#: src/Module/Install.php:350 +#: src/Core/Installer.php:184 src/Module/Install.php:193 +#: src/Module/Install.php:336 msgid "Please see the file \"doc/INSTALL.md\"." msgstr "Référez-vous au fichier \"doc/INSTALL.md\"." -#: src/Core/Installer.php:259 +#: src/Core/Installer.php:245 msgid "Could not find a command line version of PHP in the web server PATH." msgstr "Impossible de trouver la version \"ligne de commande\" de PHP dans le PATH du serveur web." -#: src/Core/Installer.php:260 +#: src/Core/Installer.php:246 msgid "" "If you don't have a command line version of PHP installed on your server, " "you will not be able to run the background processing. See 'Setup the worker'" msgstr "Si vous n'avez pas l'éxecutable PHP en ligne de commande sur votre serveur, vous ne pourrez pas activer les tâches de fond. Voir \"Setup the worker\" (en anglais)" -#: src/Core/Installer.php:265 +#: src/Core/Installer.php:251 msgid "PHP executable path" msgstr "Chemin vers l'exécutable de PHP" -#: src/Core/Installer.php:265 +#: src/Core/Installer.php:251 msgid "" "Enter full path to php executable. You can leave this blank to continue the " "installation." msgstr "Entrez le chemin (absolu) vers l'exécutable 'php'. Vous pouvez laisser cette ligne vide pour continuer l'installation." -#: src/Core/Installer.php:270 +#: src/Core/Installer.php:256 msgid "Command line PHP" msgstr "Version \"ligne de commande\" de PHP" -#: src/Core/Installer.php:279 +#: src/Core/Installer.php:265 msgid "PHP executable is not the php cli binary (could be cgi-fgci version)" msgstr "L'executable PHP n'est pas le binaire php client (c'est peut être la version cgi-fcgi)" -#: src/Core/Installer.php:280 +#: src/Core/Installer.php:266 msgid "Found PHP version: " msgstr "Version de PHP :" -#: src/Core/Installer.php:282 +#: src/Core/Installer.php:268 msgid "PHP cli binary" msgstr "PHP cli binary" -#: src/Core/Installer.php:295 +#: src/Core/Installer.php:281 msgid "" "The command line version of PHP on your system does not have " "\"register_argc_argv\" enabled." msgstr "La version \"ligne de commande\" de PHP de votre système n'a pas \"register_argc_argv\" d'activé." -#: src/Core/Installer.php:296 +#: src/Core/Installer.php:282 msgid "This is required for message delivery to work." msgstr "Ceci est requis pour que la livraison des messages fonctionne." -#: src/Core/Installer.php:301 +#: src/Core/Installer.php:287 msgid "PHP register_argc_argv" msgstr "PHP register_argc_argv" -#: src/Core/Installer.php:333 +#: src/Core/Installer.php:319 msgid "" "Error: the \"openssl_pkey_new\" function on this system is not able to " "generate encryption keys" msgstr "Erreur: la fonction \"openssl_pkey_new\" de ce système ne permet pas de générer des clés de chiffrement" -#: src/Core/Installer.php:334 +#: src/Core/Installer.php:320 msgid "" "If running under Windows, please see " "\"http://www.php.net/manual/en/openssl.installation.php\"." msgstr "Si vous utilisez Windows, merci de vous réferer à \"http://www.php.net/manual/en/openssl.installation.php\"." -#: src/Core/Installer.php:337 +#: src/Core/Installer.php:323 msgid "Generate encryption keys" msgstr "Générer les clés de chiffrement" -#: src/Core/Installer.php:388 +#: src/Core/Installer.php:374 msgid "" "Error: Apache webserver mod-rewrite module is required but not installed." msgstr "Erreur : Le module \"rewrite\" du serveur web Apache est requis mais pas installé." -#: src/Core/Installer.php:392 +#: src/Core/Installer.php:378 msgid "Apache mod_rewrite module" msgstr "Module mod_rewrite Apache" -#: src/Core/Installer.php:398 +#: src/Core/Installer.php:384 msgid "Error: PDO or MySQLi PHP module required but not installed." msgstr "Erreur : Les modules PHP PDO ou MySQLi sont requis mais absents de votre serveur." -#: src/Core/Installer.php:402 +#: src/Core/Installer.php:388 msgid "Error: The MySQL driver for PDO is not installed." msgstr "Erreur : Le pilote MySQL pour PDO n'est pas installé sur votre serveur." -#: src/Core/Installer.php:405 +#: src/Core/Installer.php:391 msgid "PDO or MySQLi PHP module" msgstr "Module PHP PDO ou MySQLi" -#: src/Core/Installer.php:411 +#: src/Core/Installer.php:397 msgid "Error: The IntlChar module is not installed." msgstr "Erreur : Le module IntlChar n'est pas installé." -#: src/Core/Installer.php:414 +#: src/Core/Installer.php:400 msgid "IntlChar PHP module" msgstr "Module PHP IntlChar" -#: src/Core/Installer.php:422 +#: src/Core/Installer.php:408 msgid "Error, XML PHP module required but not installed." msgstr "Erreur : le module PHP XML requis est absent." -#: src/Core/Installer.php:426 +#: src/Core/Installer.php:412 msgid "XML PHP module" msgstr "Module PHP XML" -#: src/Core/Installer.php:429 +#: src/Core/Installer.php:415 msgid "libCurl PHP module" msgstr "Module libCurl de PHP" -#: src/Core/Installer.php:430 +#: src/Core/Installer.php:416 msgid "Error: libCURL PHP module required but not installed." msgstr "Erreur : Le module PHP \"libCURL\" est requis mais pas installé." -#: src/Core/Installer.php:436 +#: src/Core/Installer.php:422 msgid "GD graphics PHP module" msgstr "Module GD (graphiques) de PHP" -#: src/Core/Installer.php:437 +#: src/Core/Installer.php:423 msgid "" "Error: GD graphics PHP module with JPEG support required but not installed." msgstr "Erreur : Le module PHP \"GD\" disposant du support JPEG est requis mais pas installé." -#: src/Core/Installer.php:443 +#: src/Core/Installer.php:429 msgid "OpenSSL PHP module" msgstr "Module OpenSSL de PHP" -#: src/Core/Installer.php:444 +#: src/Core/Installer.php:430 msgid "Error: openssl PHP module required but not installed." msgstr "Erreur : Le module PHP \"openssl\" est requis mais pas installé." -#: src/Core/Installer.php:450 +#: src/Core/Installer.php:436 msgid "mb_string PHP module" msgstr "Module mb_string de PHP" -#: src/Core/Installer.php:451 +#: src/Core/Installer.php:437 msgid "Error: mb_string PHP module required but not installed." msgstr "Erreur : le module PHP mb_string est requis mais pas installé." -#: src/Core/Installer.php:457 +#: src/Core/Installer.php:443 msgid "iconv PHP module" msgstr "Module PHP iconv" -#: src/Core/Installer.php:458 +#: src/Core/Installer.php:444 msgid "Error: iconv PHP module required but not installed." msgstr "Erreur : Le module PHP iconv requis est absent." -#: src/Core/Installer.php:464 +#: src/Core/Installer.php:450 msgid "POSIX PHP module" msgstr "Module PHP POSIX" -#: src/Core/Installer.php:465 +#: src/Core/Installer.php:451 msgid "Error: POSIX PHP module required but not installed." msgstr "Erreur : Le module PHP POSIX est requis mais absent sur votre serveur." -#: src/Core/Installer.php:471 +#: src/Core/Installer.php:457 msgid "Program execution functions" msgstr "Fonctions d'exécution de programmes" -#: src/Core/Installer.php:472 +#: src/Core/Installer.php:458 msgid "" "Error: Program execution functions (proc_open) required but not enabled." msgstr "Erreur : Les functions d'exécution de programmes (proc_open) sont nécessaires mais manquantes." -#: src/Core/Installer.php:478 +#: src/Core/Installer.php:464 msgid "JSON PHP module" msgstr "Module PHP JSON" -#: src/Core/Installer.php:479 +#: src/Core/Installer.php:465 msgid "Error: JSON PHP module required but not installed." msgstr "Erreur : Le module PHP JSON est requis mais absent sur votre serveur." -#: src/Core/Installer.php:485 +#: src/Core/Installer.php:471 msgid "File Information PHP module" msgstr "Module PHP fileinfo" -#: src/Core/Installer.php:486 +#: src/Core/Installer.php:472 msgid "Error: File Information PHP module required but not installed." msgstr "Erreur : Le module PHP fileinfo requis est absent." -#: src/Core/Installer.php:492 +#: src/Core/Installer.php:478 msgid "GNU Multiple Precision PHP module" msgstr "Module PHP de Précision Multiple GNU" -#: src/Core/Installer.php:493 +#: src/Core/Installer.php:479 msgid "Error: GNU Multiple Precision PHP module required but not installed." msgstr "Erreur : le module PHP de Précision Multiple GNU est requis mais il n'est pas installé." -#: src/Core/Installer.php:499 +#: src/Core/Installer.php:485 msgid "IDN Functions PHP module" msgstr "Module PHP Fonctions IDN" -#: src/Core/Installer.php:500 +#: src/Core/Installer.php:486 msgid "Error: IDN Functions PHP module required but not installed." msgstr "Erreur : le module PHP Fonctions IDN est obligatoire mais n'est pas installé." -#: src/Core/Installer.php:523 +#: src/Core/Installer.php:509 msgid "" "The web installer needs to be able to create a file called " "\"local.config.php\" in the \"config\" folder of your web server and it is " "unable to do so." msgstr "L'installeur web n'est pas en mesure de créer le fichier \"local.config.php\" dans le répertoire \"config\" de votre serveur." -#: src/Core/Installer.php:524 +#: src/Core/Installer.php:510 msgid "" "This is most often a permission setting, as the web server may not be able " "to write files in your folder - even if you can." msgstr "Le plus souvent, il s'agit d'un problème de permission. Le serveur web peut ne pas être capable d'écrire dans votre répertoire - alors que vous-même le pouvez." -#: src/Core/Installer.php:525 +#: src/Core/Installer.php:511 msgid "" "At the end of this procedure, we will give you a text to save in a file " "named local.config.php in your Friendica \"config\" folder." msgstr "À la fin de la procédure d'installation nous vous fournirons le contenu du fichier \"local.config.php\" à créer manuellement dans le sous-répertoire \"config\" de votre répertoire Friendica sur votre serveur." -#: src/Core/Installer.php:526 +#: src/Core/Installer.php:512 msgid "" "You can alternatively skip this procedure and perform a manual installation." " Please see the file \"doc/INSTALL.md\" for instructions." msgstr "Vous pouvez également sauter cette étape et procéder à une installation manuelle. Pour cela, merci de consulter le fichier \"doc/INSTALL.md\"." -#: src/Core/Installer.php:529 +#: src/Core/Installer.php:515 msgid "config/local.config.php is writable" msgstr "Le fichier \"config/local.config.php\" peut être créé." -#: src/Core/Installer.php:549 +#: src/Core/Installer.php:535 msgid "" "Friendica uses the Smarty3 template engine to render its web views. Smarty3 " "compiles templates to PHP to speed up rendering." msgstr "Friendica utilise le moteur de modèles Smarty3 pour le rendu d'affichage web. Smarty3 compile les modèles en PHP pour accélérer le rendu." -#: src/Core/Installer.php:550 +#: src/Core/Installer.php:536 msgid "" "In order to store these compiled templates, the web server needs to have " "write access to the directory view/smarty3/ under the Friendica top level " "folder." msgstr "Pour pouvoir stocker ces modèles compilés, le serveur internet doit avoir accès au droit d'écriture pour le répertoire view/smarty3/ sous le dossier racine de Friendica." -#: src/Core/Installer.php:551 +#: src/Core/Installer.php:537 msgid "" "Please ensure that the user that your web server runs as (e.g. www-data) has" " write access to this folder." msgstr "Veuillez vous assurer que l'utilisateur qui exécute votre serveur internet (p. ex. www-data) détient le droit d'accès en écriture sur ce dossier." -#: src/Core/Installer.php:552 +#: src/Core/Installer.php:538 msgid "" "Note: as a security measure, you should give the web server write access to " "view/smarty3/ only--not the template files (.tpl) that it contains." msgstr "Note: pour plus de sécurité, vous devriez ne donner le droit d'accès en écriture qu'à view/smarty3/ et pas aux fichiers modèles (.tpl) qu'il contient." -#: src/Core/Installer.php:555 +#: src/Core/Installer.php:541 msgid "view/smarty3 is writable" msgstr "view/smarty3 est autorisé à l écriture" -#: src/Core/Installer.php:583 +#: src/Core/Installer.php:569 msgid "" "Url rewrite in .htaccess seems not working. Make sure you copied .htaccess-" "dist to .htaccess." msgstr "La réécriture d'URL ne semble pas fonctionner, veuillez vous assurer que vous avez créé un fichier \".htaccess\" à partir du fichier \".htaccess-dist\"." -#: src/Core/Installer.php:584 +#: src/Core/Installer.php:570 msgid "" "In some circumstances (like running inside containers), you can skip this " "error." msgstr "Dans certaines situations (comme une installation dans un container), vous pouvez ignorer cette erreur." -#: src/Core/Installer.php:586 +#: src/Core/Installer.php:572 msgid "Error message from Curl when fetching" msgstr "Message d'erreur de Curl lors du test de réécriture d'URL" -#: src/Core/Installer.php:592 +#: src/Core/Installer.php:578 msgid "Url rewrite is working" msgstr "La réécriture d'URL fonctionne." -#: src/Core/Installer.php:621 +#: src/Core/Installer.php:607 msgid "" "The detection of TLS to secure the communication between the browser and the" " new Friendica server failed." msgstr "La détection de TLS pour sécuriser la communication entre le navigateur et votre nouveau serveur Friendica a échoué." -#: src/Core/Installer.php:622 +#: src/Core/Installer.php:608 msgid "" "It is highly encouraged to use Friendica only over a secure connection as " "sensitive information like passwords will be transmitted." msgstr "Nous vous recommandons fortement de n'utiliser Friendica qu'avec une connection sécurisée étant donné que des informations sensibles comme des mots de passe seront échangés." -#: src/Core/Installer.php:623 +#: src/Core/Installer.php:609 msgid "Please ensure that the connection to the server is secure." msgstr "Veuillez vous assurer que la connection au serveur est sécurisée." -#: src/Core/Installer.php:624 +#: src/Core/Installer.php:610 msgid "No TLS detected" msgstr "Pas de TLS détecté" -#: src/Core/Installer.php:626 +#: src/Core/Installer.php:612 msgid "TLS detected" msgstr "TLS détecté" -#: src/Core/Installer.php:643 +#: src/Core/Installer.php:629 msgid "ImageMagick PHP extension is not installed" msgstr "L'extension PHP ImageMagick n'est pas installée" -#: src/Core/Installer.php:645 +#: src/Core/Installer.php:631 msgid "ImageMagick PHP extension is installed" msgstr "L’extension PHP ImageMagick est installée" -#: src/Core/Installer.php:666 +#: src/Core/Installer.php:652 msgid "Database already in use." msgstr "Base de données déjà en cours d'utilisation." -#: src/Core/Installer.php:671 +#: src/Core/Installer.php:657 msgid "Could not connect to database." msgstr "Impossible de se connecter à la base." -#: src/Core/L10n.php:444 src/Model/Item.php:2348 +#: src/Core/L10n.php:430 src/Model/Item.php:2315 msgid "Undetermined" msgstr "Indéterminé" -#: src/Core/L10n.php:451 +#: src/Core/L10n.php:437 #, php-format msgid "%s (%s)" msgstr "%s (%s)" -#: src/Core/L10n.php:499 src/Model/Event.php:430 -#: src/Module/Settings/Display.php:284 +#: src/Core/L10n.php:485 src/Model/Event.php:416 +#: src/Module/Settings/Display.php:270 msgid "Monday" msgstr "Lundi" -#: src/Core/L10n.php:499 src/Model/Event.php:431 -#: src/Module/Settings/Display.php:285 +#: src/Core/L10n.php:485 src/Model/Event.php:417 +#: src/Module/Settings/Display.php:271 msgid "Tuesday" msgstr "Mardi" -#: src/Core/L10n.php:499 src/Model/Event.php:432 -#: src/Module/Settings/Display.php:286 +#: src/Core/L10n.php:485 src/Model/Event.php:418 +#: src/Module/Settings/Display.php:272 msgid "Wednesday" msgstr "Mercredi" -#: src/Core/L10n.php:499 src/Model/Event.php:433 -#: src/Module/Settings/Display.php:287 +#: src/Core/L10n.php:485 src/Model/Event.php:419 +#: src/Module/Settings/Display.php:273 msgid "Thursday" msgstr "Jeudi" -#: src/Core/L10n.php:499 src/Model/Event.php:434 -#: src/Module/Settings/Display.php:288 +#: src/Core/L10n.php:485 src/Model/Event.php:420 +#: src/Module/Settings/Display.php:274 msgid "Friday" msgstr "Vendredi" -#: src/Core/L10n.php:499 src/Model/Event.php:435 -#: src/Module/Settings/Display.php:289 +#: src/Core/L10n.php:485 src/Model/Event.php:421 +#: src/Module/Settings/Display.php:275 msgid "Saturday" msgstr "Samedi" -#: src/Core/L10n.php:499 src/Model/Event.php:429 -#: src/Module/Settings/Display.php:283 +#: src/Core/L10n.php:485 src/Model/Event.php:415 +#: src/Module/Settings/Display.php:269 msgid "Sunday" msgstr "Dimanche" -#: src/Core/L10n.php:503 src/Model/Event.php:450 +#: src/Core/L10n.php:489 src/Model/Event.php:436 msgid "January" msgstr "Janvier" -#: src/Core/L10n.php:503 src/Model/Event.php:451 +#: src/Core/L10n.php:489 src/Model/Event.php:437 msgid "February" msgstr "Février" -#: src/Core/L10n.php:503 src/Model/Event.php:452 +#: src/Core/L10n.php:489 src/Model/Event.php:438 msgid "March" msgstr "Mars" -#: src/Core/L10n.php:503 src/Model/Event.php:453 +#: src/Core/L10n.php:489 src/Model/Event.php:439 msgid "April" msgstr "Avril" -#: src/Core/L10n.php:503 src/Core/L10n.php:522 src/Model/Event.php:441 +#: src/Core/L10n.php:489 src/Core/L10n.php:508 src/Model/Event.php:427 msgid "May" msgstr "Mai" -#: src/Core/L10n.php:503 src/Model/Event.php:454 +#: src/Core/L10n.php:489 src/Model/Event.php:440 msgid "June" msgstr "Juin" -#: src/Core/L10n.php:503 src/Model/Event.php:455 +#: src/Core/L10n.php:489 src/Model/Event.php:441 msgid "July" msgstr "Juillet" -#: src/Core/L10n.php:503 src/Model/Event.php:456 +#: src/Core/L10n.php:489 src/Model/Event.php:442 msgid "August" msgstr "Août" -#: src/Core/L10n.php:503 src/Model/Event.php:457 +#: src/Core/L10n.php:489 src/Model/Event.php:443 msgid "September" msgstr "Septembre" -#: src/Core/L10n.php:503 src/Model/Event.php:458 +#: src/Core/L10n.php:489 src/Model/Event.php:444 msgid "October" msgstr "Octobre" -#: src/Core/L10n.php:503 src/Model/Event.php:459 +#: src/Core/L10n.php:489 src/Model/Event.php:445 msgid "November" msgstr "Novembre" -#: src/Core/L10n.php:503 src/Model/Event.php:460 +#: src/Core/L10n.php:489 src/Model/Event.php:446 msgid "December" msgstr "Décembre" -#: src/Core/L10n.php:518 src/Model/Event.php:422 +#: src/Core/L10n.php:504 src/Model/Event.php:408 msgid "Mon" msgstr "Lun" -#: src/Core/L10n.php:518 src/Model/Event.php:423 +#: src/Core/L10n.php:504 src/Model/Event.php:409 msgid "Tue" msgstr "Mar" -#: src/Core/L10n.php:518 src/Model/Event.php:424 +#: src/Core/L10n.php:504 src/Model/Event.php:410 msgid "Wed" msgstr "Mer" -#: src/Core/L10n.php:518 src/Model/Event.php:425 +#: src/Core/L10n.php:504 src/Model/Event.php:411 msgid "Thu" msgstr "Jeu" -#: src/Core/L10n.php:518 src/Model/Event.php:426 +#: src/Core/L10n.php:504 src/Model/Event.php:412 msgid "Fri" msgstr "Ven" -#: src/Core/L10n.php:518 src/Model/Event.php:427 +#: src/Core/L10n.php:504 src/Model/Event.php:413 msgid "Sat" msgstr "Sam" -#: src/Core/L10n.php:518 src/Model/Event.php:421 +#: src/Core/L10n.php:504 src/Model/Event.php:407 msgid "Sun" msgstr "Dim" -#: src/Core/L10n.php:522 src/Model/Event.php:437 +#: src/Core/L10n.php:508 src/Model/Event.php:423 msgid "Jan" msgstr "Jan" -#: src/Core/L10n.php:522 src/Model/Event.php:438 +#: src/Core/L10n.php:508 src/Model/Event.php:424 msgid "Feb" msgstr "Fév" -#: src/Core/L10n.php:522 src/Model/Event.php:439 +#: src/Core/L10n.php:508 src/Model/Event.php:425 msgid "Mar" msgstr "Mar" -#: src/Core/L10n.php:522 src/Model/Event.php:440 +#: src/Core/L10n.php:508 src/Model/Event.php:426 msgid "Apr" msgstr "Avr" -#: src/Core/L10n.php:522 src/Model/Event.php:442 +#: src/Core/L10n.php:508 src/Model/Event.php:428 msgid "Jun" msgstr "Jun" -#: src/Core/L10n.php:522 src/Model/Event.php:443 +#: src/Core/L10n.php:508 src/Model/Event.php:429 msgid "Jul" msgstr "Jul" -#: src/Core/L10n.php:522 src/Model/Event.php:444 +#: src/Core/L10n.php:508 src/Model/Event.php:430 msgid "Aug" msgstr "Aoû" -#: src/Core/L10n.php:522 +#: src/Core/L10n.php:508 msgid "Sep" msgstr "Sep" -#: src/Core/L10n.php:522 src/Model/Event.php:446 +#: src/Core/L10n.php:508 src/Model/Event.php:432 msgid "Oct" msgstr "Oct" -#: src/Core/L10n.php:522 src/Model/Event.php:447 +#: src/Core/L10n.php:508 src/Model/Event.php:433 msgid "Nov" msgstr "Nov" -#: src/Core/L10n.php:522 src/Model/Event.php:448 +#: src/Core/L10n.php:508 src/Model/Event.php:434 msgid "Dec" msgstr "Déc" -#: src/Core/Logger/Util/LoggerSettingsCheck.php:60 +#: src/Core/Logger/Util/LoggerSettingsCheck.php:46 #, php-format msgid "The logfile '%s' is not usable. No logging possible (error: '%s')" msgstr "Le fichier journal '%s' n'est pas utilisable. Pas de journalisation possible (erreur '%s')" -#: src/Core/Logger/Util/LoggerSettingsCheck.php:85 +#: src/Core/Logger/Util/LoggerSettingsCheck.php:71 #, php-format msgid "" "The debug logfile '%s' is not usable. No logging possible (error: '%s')" msgstr "Le fichier journal de débogage \"%s\" n'existe pas ou n'est pas accessible en écriture. Journalisation désactivée (erreur : \"%s\")" -#: src/Core/Renderer.php:92 src/Core/Renderer.php:121 -#: src/Core/Renderer.php:150 src/Core/Renderer.php:184 -#: src/Render/FriendicaSmartyEngine.php:60 +#: src/Core/Renderer.php:78 src/Core/Renderer.php:107 +#: src/Core/Renderer.php:136 src/Core/Renderer.php:170 +#: src/Render/FriendicaSmartyEngine.php:46 msgid "" "Friendica can't display this page at the moment, please contact the " "administrator." msgstr "Friendica ne peut pas afficher cette page pour le moment. Merci de contacter l'administrateur." -#: src/Core/Renderer.php:146 +#: src/Core/Renderer.php:132 msgid "template engine cannot be registered without a name." msgstr "Le moteur de template ne peut pas être enregistré sans nom." -#: src/Core/Renderer.php:180 +#: src/Core/Renderer.php:166 msgid "template engine is not registered!" msgstr "le moteur de template n'est pas enregistré!" -#: src/Core/Storage/Type/FilesystemConfig.php:78 +#: src/Core/Storage/Type/FilesystemConfig.php:64 msgid "Storage base path" msgstr "Chemin de base du stockage" -#: src/Core/Storage/Type/FilesystemConfig.php:80 +#: src/Core/Storage/Type/FilesystemConfig.php:66 msgid "" "Folder where uploaded files are saved. For maximum security, This should be " "a path outside web server folder tree" msgstr "Répertoire dans lequel les fichiers sont stockés. Pour une sécurité maximale, il devrait être situé dans un chemin hors de votre serveur web." -#: src/Core/Storage/Type/FilesystemConfig.php:93 +#: src/Core/Storage/Type/FilesystemConfig.php:79 msgid "Enter a valid existing folder" msgstr "Entrez le chemin d'un dossier existant" -#: src/Core/Update.php:80 +#: src/Core/Update.php:66 #, php-format msgid "" "Updates from version %s are not supported. Please update at least to version" " 2021.01 and wait until the postupdate finished version 1383." msgstr "Les mises à jour automatiques ne sont pas disponibles depuis la version %s. Veuillez mettre à jour manuellement jusqu'à la version 2021.01 et attendre que la mise à jour des données atteigne la version 1383." -#: src/Core/Update.php:91 +#: src/Core/Update.php:77 #, php-format msgid "" "Updates from postupdate version %s are not supported. Please update at least" " to version 2021.01 and wait until the postupdate finished version 1383." msgstr "La mise à jour automatique des données n'est pas disponible depuis la version %s. Veuillez mettre à jour manuellement jusqu'à la version 2021.01 et attendre que la mise à jour des données atteigne la version 1383." -#: src/Core/Update.php:183 +#: src/Core/Update.php:169 #, php-format msgid "%s: executing pre update %d" msgstr "%s : Exécution de la mise à jour préalable %d" -#: src/Core/Update.php:225 +#: src/Core/Update.php:211 #, php-format msgid "%s: executing post update %d" msgstr "%s : Exécution de la mise à jour des données %d" -#: src/Core/Update.php:299 +#: src/Core/Update.php:285 #, php-format msgid "Update %s failed. See error logs." msgstr "Mise à jour %s échouée. Voir les journaux d'erreur." -#: src/Core/Update.php:339 +#: src/Core/Update.php:325 #, php-format msgid "" "\n" @@ -3216,49 +3215,49 @@ msgid "" "\t\t\t\tfriendica developer if you can not help me on your own. My database might be invalid." msgstr "\nLes développeurs de Friendica ont récemment publié la mise à jour %s, mais en tentant de l’installer, quelque chose s’est terriblement mal passé. Une réparation s’impose et je ne peux pas la faire tout seul. Contactez un développeur Friendica si vous ne pouvez pas corriger le problème vous-même. Il est possible que ma base de données soit corrompue." -#: src/Core/Update.php:345 +#: src/Core/Update.php:331 #, php-format msgid "The error message is\\n[pre]%s[/pre]" msgstr "The message d'erreur est\\n[pre]%s[/pre]" -#: src/Core/Update.php:349 src/Core/Update.php:377 +#: src/Core/Update.php:335 src/Core/Update.php:363 msgid "[Friendica Notify] Database update" msgstr "[Friendica:Notification] Mise à jour de la base de données" -#: src/Core/Update.php:371 +#: src/Core/Update.php:357 #, php-format msgid "" "\n" "\t\t\t\tThe friendica database was successfully updated from %s to %s." msgstr "\n\t\t\t\tLa base de données de Friendica a bien été mise à jour de la version %s à %s." -#: src/Database/DBStructure.php:57 +#: src/Database/DBStructure.php:43 #, php-format msgid "The database version had been set to %s." msgstr "La version de la base de données a été fixée a %s." -#: src/Database/DBStructure.php:82 +#: src/Database/DBStructure.php:68 #, php-format msgid "" "The post update is at version %d, it has to be at %d to safely drop the " "tables." msgstr "La mise à jour des données est à la version %d, mais elle doit atteindre la version %d pour pouvoir supprimer les tables en toute sécurité." -#: src/Database/DBStructure.php:95 +#: src/Database/DBStructure.php:81 msgid "No unused tables found." msgstr "Aucune table non utilisée trouvée." -#: src/Database/DBStructure.php:100 +#: src/Database/DBStructure.php:86 msgid "" "These tables are not used for friendica and will be deleted when you execute" " \"dbstructure drop -e\":" msgstr "Ces tables ne sont pas utilisées pour friendica et seront supprimées lorsque vous exécuterez \"dbstructure drop -e\" :" -#: src/Database/DBStructure.php:137 +#: src/Database/DBStructure.php:123 msgid "There are no tables on MyISAM or InnoDB with the Antelope file format." msgstr "Il n'y a pas de tables MyISAM ou InnoDB avec le format de fichier Antelope." -#: src/Database/DBStructure.php:161 +#: src/Database/DBStructure.php:147 #, php-format msgid "" "\n" @@ -3266,329 +3265,325 @@ msgid "" "%s\n" msgstr "\nErreur %d survenue durant la mise à jour de la base de données :\n%s\n" -#: src/Database/DBStructure.php:164 +#: src/Database/DBStructure.php:150 msgid "Errors encountered performing database changes: " msgstr "Erreurs survenues lors de la mise à jour de la base de données :" -#: src/Database/DBStructure.php:232 +#: src/Database/DBStructure.php:218 msgid "Another database update is currently running." msgstr "Une autre mise à jour de la base de données est en cours." -#: src/Database/DBStructure.php:236 +#: src/Database/DBStructure.php:222 #, php-format msgid "%s: Database update" msgstr "%s : Mise à jour de la base de données" -#: src/Database/DBStructure.php:493 +#: src/Database/DBStructure.php:479 #, php-format msgid "%s: updating %s table." msgstr "%s : Table %s en cours de mise à jour." -#: src/Factory/Api/Mastodon/Error.php:42 +#: src/Factory/Api/Mastodon/Error.php:28 msgid "Record not found" msgstr "Enregistrement non trouvé" -#: src/Factory/Api/Mastodon/Error.php:49 +#: src/Factory/Api/Mastodon/Error.php:35 msgid "Unprocessable Entity" msgstr "Entité impossible à traiter" -#: src/Factory/Api/Mastodon/Error.php:56 +#: src/Factory/Api/Mastodon/Error.php:42 msgid "Unauthorized" msgstr "Accès réservé" -#: src/Factory/Api/Mastodon/Error.php:62 +#: src/Factory/Api/Mastodon/Error.php:48 msgid "" "Token is not authorized with a valid user or is missing a required scope" msgstr "Le jeton ne comporte pas un utilisateur valide ou une portée (scope) nécessaire." -#: src/Factory/Api/Mastodon/Error.php:69 +#: src/Factory/Api/Mastodon/Error.php:55 msgid "Internal Server Error" msgstr "Erreur du site" -#: src/LegacyModule.php:63 +#: src/LegacyModule.php:49 #, php-format msgid "Legacy module file not found: %s" msgstr "Module original non trouvé: %s" -#: src/Model/Circle.php:106 +#: src/Model/Circle.php:92 msgid "" "A deleted circle with this name was revived. Existing item permissions " "may apply to this circle and any future members. If this is" " not what you intended, please create another circle with a different name." msgstr "Un cercle supprimé a été recréé. Les permissions existantes pourraient s'appliquer à ce cercle et aux futurs membres. Si ce n'est pas le comportement attendu, merci de re-créer un autre cercle sous un autre nom." -#: src/Model/Circle.php:544 +#: src/Model/Circle.php:530 msgid "Everybody" msgstr "Tout le monde" -#: src/Model/Circle.php:563 +#: src/Model/Circle.php:549 msgid "edit" msgstr "éditer" -#: src/Model/Circle.php:600 +#: src/Model/Circle.php:586 msgid "add" msgstr "ajouter" -#: src/Model/Circle.php:605 +#: src/Model/Circle.php:591 msgid "Edit circle" msgstr "Modifier le cercle" -#: src/Model/Circle.php:606 src/Module/Circle.php:195 +#: src/Model/Circle.php:592 src/Module/Circle.php:181 msgid "Contacts not in any circle" msgstr "Contacts n'appartenant à aucun cercle" -#: src/Model/Circle.php:608 +#: src/Model/Circle.php:594 msgid "Create a new circle" msgstr "Créer un nouveau cercle" -#: src/Model/Circle.php:609 src/Module/Circle.php:180 -#: src/Module/Circle.php:203 src/Module/Circle.php:278 +#: src/Model/Circle.php:595 src/Module/Circle.php:166 +#: src/Module/Circle.php:189 src/Module/Circle.php:264 msgid "Circle Name: " msgstr "Nom du cercle :" -#: src/Model/Circle.php:610 +#: src/Model/Circle.php:596 msgid "Edit circles" msgstr "Modifier les cercles" -#: src/Model/Contact.php:1270 src/Module/Moderation/Users/Pending.php:102 -#: src/Module/Notifications/Introductions.php:138 -#: src/Module/Notifications/Introductions.php:210 +#: src/Model/Contact.php:1263 src/Module/Moderation/Users/Pending.php:88 +#: src/Module/Notifications/Introductions.php:124 +#: src/Module/Notifications/Introductions.php:196 msgid "Approve" msgstr "Approuver" -#: src/Model/Contact.php:1750 +#: src/Model/Contact.php:1743 msgid "Organisation" msgstr "Organisation" -#: src/Model/Contact.php:1758 +#: src/Model/Contact.php:1751 msgid "Group" msgstr "Groupe" -#: src/Model/Contact.php:1762 src/Module/Moderation/BaseUsers.php:131 +#: src/Model/Contact.php:1755 src/Module/Moderation/BaseUsers.php:120 msgid "Relay" msgstr "Relai" -#: src/Model/Contact.php:3084 +#: src/Model/Contact.php:3070 msgid "Disallowed profile URL." msgstr "URL de profil interdite." -#: src/Model/Contact.php:3089 src/Module/Friendica.php:100 +#: src/Model/Contact.php:3075 src/Module/Friendica.php:86 msgid "Blocked domain" msgstr "Domaine bloqué" -#: src/Model/Contact.php:3094 +#: src/Model/Contact.php:3080 msgid "Connect URL missing." msgstr "URL de connexion manquante." -#: src/Model/Contact.php:3103 +#: src/Model/Contact.php:3089 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:3121 +#: src/Model/Contact.php:3107 #, 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:3138 +#: src/Model/Contact.php:3124 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:3145 +#: src/Model/Contact.php:3131 msgid "The profile address specified does not provide adequate information." msgstr "L'adresse de profil indiquée ne fournit par les informations adéquates." -#: src/Model/Contact.php:3147 +#: src/Model/Contact.php:3133 msgid "No compatible communication protocols or feeds were discovered." msgstr "Aucun protocole de communication ni aucun flux n'a pu être découvert." -#: src/Model/Contact.php:3150 +#: src/Model/Contact.php:3136 msgid "An author or name was not found." msgstr "Aucun auteur ou nom d'auteur n'a pu être trouvé." -#: src/Model/Contact.php:3153 +#: src/Model/Contact.php:3139 msgid "No browser URL could be matched to this address." msgstr "Aucune URL de navigation ne correspond à cette adresse." -#: src/Model/Contact.php:3156 +#: src/Model/Contact.php:3142 msgid "" "Unable to match @-style Identity Address with a known protocol or email " "contact." msgstr "Impossible de faire correspondre l'adresse d'identité en \"@\" avec un protocole connu ou un contact courriel." -#: src/Model/Contact.php:3157 +#: src/Model/Contact.php:3143 msgid "Use mailto: in front of address to force email check." msgstr "Utilisez mailto: en face d'une adresse pour l'obliger à être reconnue comme courriel." -#: src/Model/Contact.php:3163 -msgid "" -"The profile address specified belongs to a network which has been disabled " -"on this site." -msgstr "L'adresse de profil spécifiée correspond à un réseau qui a été désactivé sur ce site." - -#: src/Model/Contact.php:3168 +#: src/Model/Contact.php:3149 msgid "" "Limited profile. This person will be unable to receive direct/personal " "notifications from you." msgstr "Profil limité. Cette personne ne sera pas capable de recevoir des notifications directes/personnelles de votre part." -#: src/Model/Contact.php:3234 +#: src/Model/Contact.php:3208 msgid "Unable to retrieve contact information." msgstr "Impossible de récupérer les informations du contact." -#: src/Model/Event.php:54 +#: src/Model/Event.php:40 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:942 +#: src/Model/Event.php:61 src/Model/Event.php:78 src/Model/Event.php:455 +#: src/Model/Event.php:928 msgid "Starts:" msgstr "Débute :" -#: src/Model/Event.php:78 src/Model/Event.php:98 src/Model/Event.php:470 -#: src/Model/Event.php:946 +#: src/Model/Event.php:64 src/Model/Event.php:84 src/Model/Event.php:456 +#: src/Model/Event.php:932 msgid "Finishes:" msgstr "Finit :" -#: src/Model/Event.php:419 +#: src/Model/Event.php:405 msgid "all-day" msgstr "toute la journée" -#: src/Model/Event.php:445 +#: src/Model/Event.php:431 msgid "Sept" msgstr "Sep" -#: src/Model/Event.php:462 src/Module/Calendar/Show.php:128 -#: src/Util/Temporal.php:343 +#: src/Model/Event.php:448 src/Module/Calendar/Show.php:114 +#: src/Util/Temporal.php:329 msgid "today" msgstr "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/Model/Event.php:449 src/Module/Calendar/Show.php:115 +#: src/Module/Settings/Display.php:280 src/Util/Temporal.php:339 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/Model/Event.php:450 src/Module/Calendar/Show.php:116 +#: src/Module/Settings/Display.php:281 src/Util/Temporal.php:340 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/Model/Event.php:451 src/Module/Calendar/Show.php:117 +#: src/Module/Settings/Display.php:282 src/Util/Temporal.php:341 msgid "day" msgstr "jour" -#: src/Model/Event.php:467 +#: src/Model/Event.php:453 msgid "No events to display" msgstr "Pas d'évènement à afficher" -#: src/Model/Event.php:516 src/Module/DFRN/Poll.php:47 src/Module/Feed.php:70 -#: src/Module/Update/Profile.php:56 +#: src/Model/Event.php:502 src/Module/Feed.php:56 +#: src/Module/Update/Profile.php:42 msgid "Access to this profile has been restricted." msgstr "L'accès au profil a été restreint." -#: src/Model/Event.php:558 src/Module/Calendar/Event/Show.php:67 +#: src/Model/Event.php:544 src/Module/Calendar/Event/Show.php:53 msgid "Event not found." msgstr "Évènement non trouvé." -#: src/Model/Event.php:637 +#: src/Model/Event.php:623 msgid "l, F j" msgstr "l, F j" -#: src/Model/Event.php:664 +#: src/Model/Event.php:650 msgid "Edit event" msgstr "Editer l'évènement" -#: src/Model/Event.php:665 +#: src/Model/Event.php:651 msgid "Duplicate event" msgstr "Dupliquer l'évènement" -#: src/Model/Event.php:666 +#: src/Model/Event.php:652 msgid "Delete event" msgstr "Supprimer l'évènement" -#: src/Model/Event.php:896 src/Module/Debug/Localtime.php:38 +#: src/Model/Event.php:882 src/Module/Debug/Localtime.php:24 msgid "l F d, Y \\@ g:i A" msgstr "l F d, Y \\@ g:i A" -#: src/Model/Event.php:897 +#: src/Model/Event.php:883 msgid "D g:i A" msgstr "D G:i" -#: src/Model/Event.php:898 +#: src/Model/Event.php:884 msgid "g:i A" msgstr "G:i" -#: src/Model/Event.php:961 src/Model/Event.php:963 +#: src/Model/Event.php:947 src/Model/Event.php:949 msgid "Show map" msgstr "Montrer la carte" -#: src/Model/Event.php:962 +#: src/Model/Event.php:948 msgid "Hide map" msgstr "Cacher la carte" -#: src/Model/Event.php:1055 +#: src/Model/Event.php:1041 #, php-format msgid "%s's birthday" msgstr "Anniversaire de %s's" -#: src/Model/Event.php:1056 +#: src/Model/Event.php:1042 #, php-format msgid "Happy Birthday %s" msgstr "Joyeux anniversaire, %s !" -#: src/Model/Item.php:2355 +#: src/Model/Item.php:2322 #, php-format msgid "%s (%s - %s): %s" msgstr "%s (%s - %s) : %s" -#: src/Model/Item.php:2357 +#: src/Model/Item.php:2324 #, php-format msgid "%s (%s): %s" msgstr "%s (%s) : %s" -#: src/Model/Item.php:2360 +#: src/Model/Item.php:2327 #, php-format -msgid "Detected languages in this post:\\n%s" -msgstr "Langues détectées dans cette publication :\\n%s" +msgid "" +"Detected languages in this post:\n" +"%s" +msgstr "Langues détectées dans la publication :\n%s" -#: src/Model/Item.php:3308 +#: src/Model/Item.php:3276 msgid "activity" msgstr "activité" -#: src/Model/Item.php:3310 +#: src/Model/Item.php:3278 msgid "comment" msgstr "commentaire" -#: src/Model/Item.php:3313 src/Module/Post/Tag/Add.php:123 +#: src/Model/Item.php:3281 src/Module/Post/Tag/Add.php:109 msgid "post" msgstr "publication" -#: src/Model/Item.php:3483 +#: src/Model/Item.php:3451 #, php-format msgid "%s is blocked" msgstr "%s est bloqué(e)" -#: src/Model/Item.php:3485 +#: src/Model/Item.php:3453 #, php-format msgid "%s is ignored" msgstr "%s est ignoré(e)" -#: src/Model/Item.php:3487 +#: src/Model/Item.php:3455 #, php-format msgid "Content from %s is collapsed" msgstr "Le contenu de %s est réduit" -#: src/Model/Item.php:3491 +#: src/Model/Item.php:3459 msgid "Sensitive content" msgstr "Contenu sensible" -#: src/Model/Item.php:3960 +#: src/Model/Item.php:3928 msgid "bytes" msgstr "octets" -#: src/Model/Item.php:3991 +#: src/Model/Item.php:3959 #, php-format msgid "%2$s (%3$d%%, %1$d vote)" msgid_plural "%2$s (%3$d%%, %1$d votes)" @@ -3596,7 +3591,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:3993 +#: src/Model/Item.php:3961 #, php-format msgid "%2$s (%1$d vote)" msgid_plural "%2$s (%1$d votes)" @@ -3604,7 +3599,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:3998 +#: src/Model/Item.php:3966 #, php-format msgid "%d voter. Poll end: %s" msgid_plural "%d voters. Poll end: %s" @@ -3612,7 +3607,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:4000 +#: src/Model/Item.php:3968 #, php-format msgid "%d voter." msgid_plural "%d voters." @@ -3620,241 +3615,241 @@ msgstr[0] "%d votant." msgstr[1] "%d votants." msgstr[2] "%d votants." -#: src/Model/Item.php:4002 +#: src/Model/Item.php:3970 #, php-format msgid "Poll end: %s" msgstr "Fin du sondage : %s" -#: src/Model/Item.php:4043 src/Model/Item.php:4044 +#: src/Model/Item.php:4011 src/Model/Item.php:4012 msgid "View on separate page" msgstr "Voir dans une nouvelle page" -#: src/Model/Mail.php:135 +#: src/Model/Mail.php:121 msgid "[no subject]" msgstr "[pas de sujet]" -#: src/Model/Photo.php:1198 src/Module/Media/Photo/Upload.php:168 +#: src/Model/Photo.php:1194 src/Module/Media/Photo/Upload.php:154 msgid "Wall Photos" msgstr "Photos du mur" -#: src/Model/Profile.php:357 src/Module/Profile/Profile.php:285 -#: src/Module/Profile/Profile.php:287 +#: src/Model/Profile.php:343 src/Module/Profile/Profile.php:271 +#: src/Module/Profile/Profile.php:273 msgid "Edit profile" msgstr "Editer le profil" -#: src/Model/Profile.php:359 +#: src/Model/Profile.php:345 msgid "Change profile photo" msgstr "Changer de photo de profil" -#: src/Model/Profile.php:372 src/Module/Directory.php:153 -#: src/Module/Profile/Profile.php:211 +#: src/Model/Profile.php:358 src/Module/Directory.php:139 +#: src/Module/Profile/Profile.php:197 msgid "Homepage:" msgstr "Page personnelle :" -#: src/Model/Profile.php:373 src/Module/Contact/Profile.php:432 -#: src/Module/Notifications/Introductions.php:195 +#: src/Model/Profile.php:359 src/Module/Contact/Profile.php:418 +#: src/Module/Notifications/Introductions.php:181 msgid "About:" msgstr "À propos :" -#: src/Model/Profile.php:474 +#: src/Model/Profile.php:460 msgid "Atom feed" msgstr "Flux Atom" -#: src/Model/Profile.php:481 +#: src/Model/Profile.php:467 msgid "This website has been verified to belong to the same person." msgstr "Ce site web a été vérifié comme appartenant à la même personne." -#: src/Model/Profile.php:532 +#: src/Model/Profile.php:518 msgid "F d" msgstr "F d" -#: src/Model/Profile.php:596 src/Model/Profile.php:677 +#: src/Model/Profile.php:582 src/Model/Profile.php:663 msgid "[today]" msgstr "[aujourd'hui]" -#: src/Model/Profile.php:605 +#: src/Model/Profile.php:591 msgid "Birthday Reminders" msgstr "Rappels d'anniversaires" -#: src/Model/Profile.php:606 +#: src/Model/Profile.php:592 msgid "Birthdays this week:" msgstr "Anniversaires cette semaine :" -#: src/Model/Profile.php:622 +#: src/Model/Profile.php:608 msgid "g A l F d" msgstr "g A | F d" -#: src/Model/Profile.php:664 +#: src/Model/Profile.php:650 msgid "[No description]" msgstr "[Sans description]" -#: src/Model/Profile.php:690 +#: src/Model/Profile.php:676 msgid "Event Reminders" msgstr "Rappels d'évènements" -#: src/Model/Profile.php:691 +#: src/Model/Profile.php:677 msgid "Upcoming events the next 7 days:" msgstr "Évènements à venir dans les 7 prochains jours :" -#: src/Model/Profile.php:803 +#: src/Model/Profile.php:789 msgid "Hometown:" msgstr " Ville d'origine :" -#: src/Model/Profile.php:804 +#: src/Model/Profile.php:790 msgid "Marital Status:" msgstr "Statut marital :" -#: src/Model/Profile.php:805 +#: src/Model/Profile.php:791 msgid "With:" msgstr "Avec :" -#: src/Model/Profile.php:806 +#: src/Model/Profile.php:792 msgid "Since:" msgstr "Depuis :" -#: src/Model/Profile.php:807 +#: src/Model/Profile.php:793 msgid "Sexual Preference:" msgstr "Préférence sexuelle :" -#: src/Model/Profile.php:808 +#: src/Model/Profile.php:794 msgid "Political Views:" msgstr "Opinions politiques :" -#: src/Model/Profile.php:809 +#: src/Model/Profile.php:795 msgid "Religious Views:" msgstr "Opinions religieuses :" -#: src/Model/Profile.php:810 +#: src/Model/Profile.php:796 msgid "Likes:" msgstr "J'aime :" -#: src/Model/Profile.php:811 +#: src/Model/Profile.php:797 msgid "Dislikes:" msgstr "Je n'aime pas :" -#: src/Model/Profile.php:812 +#: src/Model/Profile.php:798 msgid "Title/Description:" msgstr "Titre / Description :" -#: src/Model/Profile.php:813 src/Module/Admin/Summary.php:197 -#: src/Module/Moderation/Report/Create.php:280 -#: src/Module/Moderation/Summary.php:76 +#: src/Model/Profile.php:799 src/Module/Admin/Summary.php:183 +#: src/Module/Moderation/Report/Create.php:266 +#: src/Module/Moderation/Summary.php:62 msgid "Summary" msgstr "Résumé" -#: src/Model/Profile.php:814 +#: src/Model/Profile.php:800 msgid "Musical interests" msgstr "Goûts musicaux" -#: src/Model/Profile.php:815 +#: src/Model/Profile.php:801 msgid "Books, literature" msgstr "Lectures" -#: src/Model/Profile.php:816 +#: src/Model/Profile.php:802 msgid "Television" msgstr "Télévision" -#: src/Model/Profile.php:817 +#: src/Model/Profile.php:803 msgid "Film/dance/culture/entertainment" msgstr "Cinéma / Danse / Culture / Divertissement" -#: src/Model/Profile.php:818 +#: src/Model/Profile.php:804 msgid "Hobbies/Interests" msgstr "Passe-temps / Centres d'intérêt" -#: src/Model/Profile.php:819 +#: src/Model/Profile.php:805 msgid "Love/romance" msgstr "Amour / Romance" -#: src/Model/Profile.php:820 +#: src/Model/Profile.php:806 msgid "Work/employment" msgstr "Activité professionnelle / Occupation" -#: src/Model/Profile.php:821 +#: src/Model/Profile.php:807 msgid "School/education" msgstr "Études / Formation" -#: src/Model/Profile.php:822 +#: src/Model/Profile.php:808 msgid "Contact information and Social Networks" msgstr "Coordonnées / Réseaux sociaux" -#: src/Model/Profile.php:870 +#: src/Model/Profile.php:856 #, php-format msgid "Responsible account: %s" msgstr "Compte responsable : %s" -#: src/Model/User.php:233 src/Model/User.php:1326 +#: src/Model/User.php:217 src/Model/User.php:1310 msgid "SERIOUS ERROR: Generation of security keys failed." msgstr "ERREUR FATALE : La génération des clés de sécurité a échoué." -#: src/Model/User.php:756 src/Model/User.php:789 +#: src/Model/User.php:740 src/Model/User.php:773 msgid "Login failed" msgstr "Échec de l'identification" -#: src/Model/User.php:821 +#: src/Model/User.php:805 msgid "Not enough information to authenticate" msgstr "Pas assez d'informations pour s'identifier" -#: src/Model/User.php:946 +#: src/Model/User.php:930 msgid "Password can't be empty" msgstr "Le mot de passe ne peut pas être vide" -#: src/Model/User.php:988 +#: src/Model/User.php:972 msgid "Empty passwords are not allowed." msgstr "Les mots de passe vides ne sont pas acceptés." -#: src/Model/User.php:992 +#: src/Model/User.php:976 msgid "" "The new password has been exposed in a public data dump, please choose " "another." msgstr "Le nouveau mot de passe fait partie d'une fuite de mot de passe publique, veuillez en choisir un autre." -#: src/Model/User.php:996 +#: src/Model/User.php:980 msgid "The password length is limited to 72 characters." msgstr "La taille du mot de passe est limitée à 72 caractères." -#: src/Model/User.php:1000 +#: src/Model/User.php:984 msgid "The password can't contain white spaces nor accentuated letters" msgstr "Le mot de passe ne peut pas contenir d'espaces ou de lettres accentuées" -#: src/Model/User.php:1209 +#: src/Model/User.php:1193 msgid "Passwords do not match. Password unchanged." msgstr "Les mots de passe ne correspondent pas. Aucun changement appliqué." -#: src/Model/User.php:1216 +#: src/Model/User.php:1200 msgid "An invitation is required." msgstr "Une invitation est requise." -#: src/Model/User.php:1220 +#: src/Model/User.php:1204 msgid "Invitation could not be verified." msgstr "L'invitation fournie n'a pu être validée." -#: src/Model/User.php:1228 +#: src/Model/User.php:1212 msgid "Invalid OpenID url" msgstr "Adresse OpenID invalide" -#: src/Model/User.php:1241 src/Security/Authentication.php:228 +#: src/Model/User.php:1225 src/Security/Authentication.php:214 msgid "" "We encountered a problem while logging in with the OpenID you provided. " "Please check the correct spelling of the ID." msgstr "Nous avons eu un souci avec l'OpenID que vous avez fourni. Merci de vérifier qu'il est correctement écrit." -#: src/Model/User.php:1241 src/Security/Authentication.php:228 +#: src/Model/User.php:1225 src/Security/Authentication.php:214 msgid "The error message was:" msgstr "Le message d'erreur était :" -#: src/Model/User.php:1247 +#: src/Model/User.php:1231 msgid "Please enter the required information." msgstr "Entrez les informations requises." -#: src/Model/User.php:1261 +#: src/Model/User.php:1245 #, php-format msgid "" "system.username_min_length (%s) and system.username_max_length (%s) are " "excluding each other, swapping values." msgstr "system.username_min_length (%s) et system.username_max_length (%s) s'excluent mutuellement, leur valeur sont échangées." -#: src/Model/User.php:1268 +#: src/Model/User.php:1252 #, php-format msgid "Username should be at least %s character." msgid_plural "Username should be at least %s characters." @@ -3862,7 +3857,7 @@ msgstr[0] "L'identifiant utilisateur doit comporter au moins %s caractère." msgstr[1] "L'identifiant utilisateur doit comporter au moins %s caractères." msgstr[2] "L'identifiant utilisateur doit comporter au moins %s caractères." -#: src/Model/User.php:1272 +#: src/Model/User.php:1256 #, php-format msgid "Username should be at most %s character." msgid_plural "Username should be at most %s characters." @@ -3870,60 +3865,60 @@ msgstr[0] "L'identifiant utilisateur doit comporter au plus %s caractère." msgstr[1] "L'identifiant utilisateur doit comporter au plus %s caractères." msgstr[2] "L'identifiant utilisateur doit comporter au plus %s caractères." -#: src/Model/User.php:1280 +#: src/Model/User.php:1264 msgid "That doesn't appear to be your full (First Last) name." msgstr "Ceci ne semble pas être votre nom complet (Prénom Nom)." -#: src/Model/User.php:1285 +#: src/Model/User.php:1269 msgid "Your email domain is not among those allowed on this site." msgstr "Votre domaine de courriel n'est pas autorisé sur ce site." -#: src/Model/User.php:1289 +#: src/Model/User.php:1273 msgid "Not a valid email address." msgstr "Ceci n'est pas une adresse courriel valide." -#: src/Model/User.php:1292 +#: src/Model/User.php:1276 msgid "The nickname was blocked from registration by the nodes admin." msgstr "Cet identifiant utilisateur est réservé." -#: src/Model/User.php:1296 src/Model/User.php:1302 +#: src/Model/User.php:1280 src/Model/User.php:1286 msgid "Cannot use that email." msgstr "Impossible d'utiliser ce courriel." -#: src/Model/User.php:1308 +#: src/Model/User.php:1292 msgid "Your nickname can only contain a-z, 0-9 and _." msgstr "Votre identifiant utilisateur ne peut comporter que a-z, 0-9 et _." -#: src/Model/User.php:1316 src/Model/User.php:1373 +#: src/Model/User.php:1300 src/Model/User.php:1350 msgid "Nickname is already registered. Please choose another." msgstr "Pseudo déjà utilisé. Merci d'en choisir un autre." -#: src/Model/User.php:1360 src/Model/User.php:1364 +#: src/Model/User.php:1337 src/Model/User.php:1341 msgid "An error occurred during registration. Please try again." msgstr "Une erreur est survenue lors de l'inscription. Merci de recommencer." -#: src/Model/User.php:1387 +#: src/Model/User.php:1364 msgid "An error occurred creating your default profile. Please try again." msgstr "Une erreur est survenue lors de la création de votre profil par défaut. Merci de recommencer." -#: src/Model/User.php:1394 +#: src/Model/User.php:1371 msgid "An error occurred creating your self contact. Please try again." msgstr "Une erreur est survenue lors de la création de votre propre contact. Veuillez réssayer." -#: src/Model/User.php:1399 +#: src/Model/User.php:1376 msgid "Friends" msgstr "Contacts" -#: src/Model/User.php:1403 +#: src/Model/User.php:1380 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:1445 +#: src/Model/User.php:1428 msgid "Profile Photos" msgstr "Photos du profil" -#: src/Model/User.php:1633 +#: src/Model/User.php:1616 #, php-format msgid "" "\n" @@ -3931,7 +3926,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:1636 +#: src/Model/User.php:1619 #, php-format msgid "" "\n" @@ -3962,12 +3957,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:1668 src/Model/User.php:1774 +#: src/Model/User.php:1651 src/Model/User.php:1757 #, php-format msgid "Registration details for %s" msgstr "Détails d'inscription pour %s" -#: src/Model/User.php:1688 +#: src/Model/User.php:1671 #, php-format msgid "" "\n" @@ -3982,12 +3977,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:1707 +#: src/Model/User.php:1690 #, php-format msgid "Registration at %s" msgstr "inscription à %s" -#: src/Model/User.php:1731 +#: src/Model/User.php:1714 #, php-format msgid "" "\n" @@ -3996,7 +3991,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:1739 +#: src/Model/User.php:1722 #, php-format msgid "" "\n" @@ -4027,93 +4022,91 @@ 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:1801 +#: src/Model/User.php:1784 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." -#: src/Module/Admin/Addons/Details.php:65 +#: src/Module/Admin/Addons/Details.php:51 msgid "Addon not found." msgstr "Extension manquante." -#: src/Module/Admin/Addons/Details.php:76 src/Module/Admin/Addons/Index.php:55 +#: src/Module/Admin/Addons/Details.php:62 src/Module/Admin/Addons/Index.php:41 #, php-format msgid "Addon %s disabled." msgstr "Extension %s désactivée." -#: src/Module/Admin/Addons/Details.php:79 src/Module/Admin/Addons/Index.php:57 +#: src/Module/Admin/Addons/Details.php:65 src/Module/Admin/Addons/Index.php:43 #, php-format msgid "Addon %s enabled." msgstr "Extension %s activée." -#: src/Module/Admin/Addons/Details.php:88 -#: src/Module/Admin/Themes/Details.php:52 +#: src/Module/Admin/Addons/Details.php:74 +#: src/Module/Admin/Themes/Details.php:38 msgid "Disable" msgstr "Désactiver" -#: src/Module/Admin/Addons/Details.php:91 -#: src/Module/Admin/Themes/Details.php:55 src/Module/Settings/Display.php:340 +#: src/Module/Admin/Addons/Details.php:77 +#: src/Module/Admin/Themes/Details.php:41 src/Module/Settings/Display.php:326 msgid "Enable" msgstr "Activer" -#: src/Module/Admin/Addons/Details.php:111 -#: src/Module/Admin/Addons/Index.php:73 src/Module/Admin/Federation.php:220 -#: src/Module/Admin/Logs/Settings.php:88 src/Module/Admin/Logs/View.php:85 -#: src/Module/Admin/Queue.php:73 src/Module/Admin/Site.php:457 -#: src/Module/Admin/Storage.php:138 src/Module/Admin/Summary.php:196 -#: src/Module/Admin/Themes/Details.php:96 -#: src/Module/Admin/Themes/Index.php:117 src/Module/Admin/Tos.php:77 -#: src/Module/Moderation/Users/Create.php:61 -#: src/Module/Moderation/Users/Pending.php:96 +#: src/Module/Admin/Addons/Details.php:97 src/Module/Admin/Addons/Index.php:59 +#: src/Module/Admin/Federation.php:206 src/Module/Admin/Logs/Settings.php:74 +#: src/Module/Admin/Logs/View.php:71 src/Module/Admin/Queue.php:59 +#: src/Module/Admin/Site.php:447 src/Module/Admin/Storage.php:124 +#: src/Module/Admin/Summary.php:182 src/Module/Admin/Themes/Details.php:82 +#: src/Module/Admin/Themes/Index.php:103 src/Module/Admin/Tos.php:63 +#: src/Module/Moderation/Users/Create.php:47 +#: src/Module/Moderation/Users/Pending.php:82 msgid "Administration" msgstr "Administration" -#: src/Module/Admin/Addons/Details.php:112 -#: src/Module/Admin/Addons/Index.php:74 src/Module/BaseAdmin.php:92 -#: src/Module/BaseSettings.php:139 +#: src/Module/Admin/Addons/Details.php:98 src/Module/Admin/Addons/Index.php:60 +#: src/Module/BaseAdmin.php:78 src/Module/BaseSettings.php:125 msgid "Addons" msgstr "Extensions" -#: src/Module/Admin/Addons/Details.php:113 -#: src/Module/Admin/Themes/Details.php:98 +#: src/Module/Admin/Addons/Details.php:99 +#: src/Module/Admin/Themes/Details.php:84 msgid "Toggle" msgstr "Activer/Désactiver" -#: src/Module/Admin/Addons/Details.php:120 -#: src/Module/Admin/Themes/Details.php:106 +#: src/Module/Admin/Addons/Details.php:106 +#: src/Module/Admin/Themes/Details.php:92 msgid "Author: " msgstr "Auteur : " -#: src/Module/Admin/Addons/Details.php:121 -#: src/Module/Admin/Themes/Details.php:107 +#: src/Module/Admin/Addons/Details.php:107 +#: src/Module/Admin/Themes/Details.php:93 msgid "Maintainer: " msgstr "Mainteneur : " -#: src/Module/Admin/Addons/Index.php:48 +#: src/Module/Admin/Addons/Index.php:34 msgid "Addons reloaded" msgstr "Extensions rechargées" -#: src/Module/Admin/Addons/Index.php:59 +#: src/Module/Admin/Addons/Index.php:45 #, php-format msgid "Addon %s failed to install." msgstr "L'extension %s a échoué à s'installer." -#: src/Module/Admin/Addons/Index.php:75 src/Module/Admin/Features.php:83 -#: src/Module/Admin/Logs/Settings.php:90 src/Module/Admin/Site.php:460 -#: src/Module/Admin/Themes/Index.php:119 src/Module/Admin/Tos.php:86 -#: src/Module/Settings/Account.php:563 src/Module/Settings/Addons.php:78 -#: src/Module/Settings/Connectors.php:163 -#: src/Module/Settings/Connectors.php:256 -#: src/Module/Settings/Delegation.php:193 src/Module/Settings/Display.php:309 -#: src/Module/Settings/Features.php:75 +#: src/Module/Admin/Addons/Index.php:61 src/Module/Admin/Features.php:69 +#: src/Module/Admin/Logs/Settings.php:76 src/Module/Admin/Site.php:450 +#: src/Module/Admin/Themes/Index.php:105 src/Module/Admin/Tos.php:72 +#: src/Module/Settings/Account.php:549 src/Module/Settings/Addons.php:64 +#: src/Module/Settings/Connectors.php:149 +#: src/Module/Settings/Connectors.php:235 +#: src/Module/Settings/Delegation.php:179 src/Module/Settings/Display.php:295 +#: src/Module/Settings/Features.php:61 msgid "Save Settings" msgstr "Sauvegarder les paramètres" -#: src/Module/Admin/Addons/Index.php:76 +#: src/Module/Admin/Addons/Index.php:62 msgid "Reload active addons" msgstr "Recharger les extensions activées." -#: src/Module/Admin/Addons/Index.php:80 +#: src/Module/Admin/Addons/Index.php:66 #, php-format msgid "" "There are currently no addons available on your node. You can find the " @@ -4121,98 +4114,98 @@ msgid "" " the open addon registry at %2$s" msgstr "Il n'y a pas d'extension disponible sur votre serveur. Vous pouvez trouver le dépôt officiel d'extensions sur %1$s et des extension non-officielles dans le répertoire d'extensions ouvert sur %2$s." -#: src/Module/Admin/DBSync.php:51 +#: src/Module/Admin/DBSync.php:37 msgid "Update has been marked successful" msgstr "Mise à jour validée comme 'réussie'" -#: src/Module/Admin/DBSync.php:59 +#: src/Module/Admin/DBSync.php:45 #, php-format msgid "Database structure update %s was successfully applied." msgstr "La structure de base de données pour la mise à jour %s a été appliquée avec succès." -#: src/Module/Admin/DBSync.php:61 +#: src/Module/Admin/DBSync.php:47 #, php-format msgid "Executing of database structure update %s failed with error: %s" msgstr "L'exécution de la mise à jour %s pour la structure de base de données a échoué avec l'erreur: %s" -#: src/Module/Admin/DBSync.php:76 +#: src/Module/Admin/DBSync.php:62 #, php-format msgid "Executing %s failed with error: %s" msgstr "L'exécution %s a échoué avec l'erreur: %s" -#: src/Module/Admin/DBSync.php:78 +#: src/Module/Admin/DBSync.php:64 #, php-format msgid "Update %s was successfully applied." msgstr "Mise à jour %s appliquée avec succès." -#: src/Module/Admin/DBSync.php:81 +#: src/Module/Admin/DBSync.php:67 #, php-format msgid "Update %s did not return a status. Unknown if it succeeded." msgstr "La mise à jour %s n'a pas retourné de détails. Impossible de savoir si elle a réussi." -#: src/Module/Admin/DBSync.php:84 +#: src/Module/Admin/DBSync.php:70 #, php-format msgid "There was no additional update function %s that needed to be called." msgstr "Il n'y avait aucune fonction supplémentaire de mise à jour %s qui devait être appelé" -#: src/Module/Admin/DBSync.php:105 +#: src/Module/Admin/DBSync.php:91 msgid "No failed updates." msgstr "Pas de mises-à-jour échouées." -#: src/Module/Admin/DBSync.php:106 +#: src/Module/Admin/DBSync.php:92 msgid "Check database structure" msgstr "Vérifier la structure de la base de données" -#: src/Module/Admin/DBSync.php:110 +#: src/Module/Admin/DBSync.php:96 msgid "Failed Updates" msgstr "Mises à jour échouées" -#: src/Module/Admin/DBSync.php:111 +#: src/Module/Admin/DBSync.php:97 msgid "" "This does not include updates prior to 1139, which did not return a status." msgstr "Ceci n'inclut pas les versions antérieures à la 1139, qui ne retournaient jamais de détails." -#: src/Module/Admin/DBSync.php:112 +#: src/Module/Admin/DBSync.php:98 msgid "Mark success (if update was manually applied)" msgstr "Marquer comme 'réussie' (dans le cas d'une mise-à-jour manuelle)" -#: src/Module/Admin/DBSync.php:113 +#: src/Module/Admin/DBSync.php:99 msgid "Attempt to execute this update step automatically" msgstr "Tenter d'éxecuter cette étape automatiquement" -#: src/Module/Admin/Features.php:67 -#: src/Module/Notifications/Introductions.php:150 -#: src/Module/OAuth/Acknowledge.php:55 src/Module/Register.php:138 -#: src/Module/Settings/TwoFactor/Trusted.php:129 +#: src/Module/Admin/Features.php:53 +#: src/Module/Notifications/Introductions.php:136 +#: src/Module/OAuth/Acknowledge.php:41 src/Module/Register.php:124 +#: src/Module/Settings/TwoFactor/Trusted.php:115 msgid "No" msgstr "Non" -#: src/Module/Admin/Features.php:67 src/Module/Contact/Revoke.php:105 -#: src/Module/Notifications/Introductions.php:150 -#: src/Module/OAuth/Acknowledge.php:54 src/Module/Register.php:137 -#: src/Module/Settings/TwoFactor/Trusted.php:129 +#: src/Module/Admin/Features.php:53 src/Module/Contact/Revoke.php:91 +#: src/Module/Notifications/Introductions.php:136 +#: src/Module/OAuth/Acknowledge.php:40 src/Module/Register.php:123 +#: src/Module/Settings/TwoFactor/Trusted.php:115 msgid "Yes" msgstr "Oui" -#: src/Module/Admin/Features.php:67 +#: src/Module/Admin/Features.php:53 msgid "Locked" msgstr "Vérouillé" -#: src/Module/Admin/Features.php:81 +#: src/Module/Admin/Features.php:67 msgid "Manage Additional Features" msgstr "Gérer les fonctionnalités avancées" -#: src/Module/Admin/Federation.php:82 -#: src/Module/Moderation/Report/Create.php:191 -#: src/Module/Moderation/Report/Create.php:316 +#: src/Module/Admin/Federation.php:68 +#: src/Module/Moderation/Report/Create.php:177 +#: src/Module/Moderation/Report/Create.php:302 msgid "Other" msgstr "Autre" -#: src/Module/Admin/Federation.php:160 src/Module/Admin/Federation.php:408 +#: src/Module/Admin/Federation.php:146 src/Module/Admin/Federation.php:394 msgid "unknown" msgstr "inconnu" -#: src/Module/Admin/Federation.php:193 +#: src/Module/Admin/Federation.php:179 #, php-format msgid "%2$s total system" msgid_plural "%2$s total systems" @@ -4220,7 +4213,7 @@ msgstr[0] "%2$s système au total" msgstr[1] "%2$s systèmes au total" msgstr[2] "%2$s systèmes au total" -#: src/Module/Admin/Federation.php:194 +#: src/Module/Admin/Federation.php:180 #, php-format msgid "%2$s active user last month" msgid_plural "%2$s active users last month" @@ -4228,7 +4221,7 @@ msgstr[0] "%2$s utilisateur actif le mois dernier" msgstr[1] "%2$s utilisateurs actifs le mois dernier" msgstr[2] "%2$s utilisateurs actifs le mois dernier" -#: src/Module/Admin/Federation.php:195 +#: src/Module/Admin/Federation.php:181 #, php-format msgid "%2$s active user last six months" msgid_plural "%2$s active users last six months" @@ -4236,7 +4229,7 @@ msgstr[0] "%2$s utilisateur actif ces six derniers mois" msgstr[1] "%2$s utilisateurs actifs ces six derniers mois" msgstr[2] "%2$s utilisateurs actifs ces six derniers mois" -#: src/Module/Admin/Federation.php:196 +#: src/Module/Admin/Federation.php:182 #, php-format msgid "%2$s registered user" msgid_plural "%2$s registered users" @@ -4244,7 +4237,7 @@ msgstr[0] "%2$s utilisateur enregistré" msgstr[1] "%2$s utilisateurs enregistrés" msgstr[2] "%2$s utilisateurs enregistrés" -#: src/Module/Admin/Federation.php:197 +#: src/Module/Admin/Federation.php:183 #, php-format msgid "%2$s locally created post or comment" msgid_plural "%2$s locally created posts and comments" @@ -4252,7 +4245,7 @@ msgstr[0] "%2$s publication ou commentaire créé localement" msgstr[1] "%2$s publications et commentaires créés localement" msgstr[2] "%2$s publications et commentaires créés localement" -#: src/Module/Admin/Federation.php:200 +#: src/Module/Admin/Federation.php:186 #, php-format msgid "%2$s post per user" msgid_plural "%2$s posts per user" @@ -4260,7 +4253,7 @@ msgstr[0] "%2$s publication par utilisateur" msgstr[1] "%2$s publications par utilisateur" msgstr[2] "%2$s publications par utilisateur" -#: src/Module/Admin/Federation.php:205 +#: src/Module/Admin/Federation.php:191 #, php-format msgid "%2$s user per system" msgid_plural "%2$s users per system" @@ -4268,18 +4261,18 @@ msgstr[0] "%2$s utilisateur par système" msgstr[1] "%2$s utilisateurs par système" msgstr[2] "%2$s utilisateurs par système" -#: src/Module/Admin/Federation.php:215 +#: src/Module/Admin/Federation.php:201 msgid "" "This page offers you some numbers to the known part of the federated social " "network your Friendica node is part of. These numbers are not complete but " "only reflect the part of the network your node is aware of." msgstr "Cette page montre quelques statistiques de la partie connue du réseau social fédéré dont votre instance Friendica fait partie. Ces chiffres sont partiels et ne reflètent que la portion du réseau dont votre instance a connaissance." -#: src/Module/Admin/Federation.php:221 src/Module/BaseAdmin.php:87 +#: src/Module/Admin/Federation.php:207 src/Module/BaseAdmin.php:73 msgid "Federation Statistics" msgstr "Statistiques Federation" -#: src/Module/Admin/Federation.php:224 +#: src/Module/Admin/Federation.php:210 #, php-format msgid "" "Currently this node is aware of %2$s node (%3$s active users last month, " @@ -4293,58 +4286,58 @@ msgstr[0] "Actuellement, ce nœud est en relation avec %2$s autre nœud (%3$s ut msgstr[1] "Actuellement, ce nœud est en relation avec %2$s autres nœuds (%3$s utilisateurs actifs le mois dernier, %4$s ces six derniers mois, %5$s utilisateurs enregistrés au total) issus des plateformes suivantes :" msgstr[2] "Actuellement, ce nœud est en relation avec %2$s autre nœud (%3$s utilisateurs actifs le mois dernier, %4$s ces six derniers mois, %5$s utilisateurs enregistrés au total) issus des plateformes suivantes :" -#: src/Module/Admin/Logs/Settings.php:47 +#: src/Module/Admin/Logs/Settings.php:33 #, php-format msgid "The logfile '%s' is not writable. No logging possible" msgstr "Le fichier journal '%s' n'est pas accessible en écriture. Pas de journalisation possible" -#: src/Module/Admin/Logs/Settings.php:80 +#: src/Module/Admin/Logs/Settings.php:66 msgid "PHP log currently enabled." msgstr "Log PHP actuellement activé." -#: src/Module/Admin/Logs/Settings.php:82 +#: src/Module/Admin/Logs/Settings.php:68 msgid "PHP log currently disabled." msgstr "Log PHP actuellement desactivé." -#: src/Module/Admin/Logs/Settings.php:89 src/Module/BaseAdmin.php:102 -#: src/Module/BaseAdmin.php:103 +#: src/Module/Admin/Logs/Settings.php:75 src/Module/BaseAdmin.php:88 +#: src/Module/BaseAdmin.php:89 msgid "Logs" msgstr "Journaux" -#: src/Module/Admin/Logs/Settings.php:91 +#: src/Module/Admin/Logs/Settings.php:77 msgid "Clear" msgstr "Effacer" -#: src/Module/Admin/Logs/Settings.php:94 +#: src/Module/Admin/Logs/Settings.php:80 msgid "Enable Debugging" msgstr "Activer le déboggage" -#: src/Module/Admin/Logs/Settings.php:94 src/Module/Admin/Logs/Settings.php:95 -#: src/Module/Admin/Logs/Settings.php:96 src/Module/Admin/Site.php:480 -#: src/Module/Admin/Site.php:488 +#: src/Module/Admin/Logs/Settings.php:80 src/Module/Admin/Logs/Settings.php:81 +#: src/Module/Admin/Logs/Settings.php:82 src/Module/Admin/Site.php:470 +#: src/Module/Admin/Site.php:478 msgid "" "Read-only because it is set by an environment variable" msgstr "En lecture seule car configuré avec une variable d'environnement" -#: src/Module/Admin/Logs/Settings.php:95 +#: src/Module/Admin/Logs/Settings.php:81 msgid "Log file" msgstr "Fichier journal" -#: src/Module/Admin/Logs/Settings.php:95 +#: src/Module/Admin/Logs/Settings.php:81 msgid "" "Must be writable by web server. Relative to your Friendica top-level " "directory." msgstr "Accès en écriture par le serveur web requis. Relatif à la racine de votre installation de Friendica." -#: src/Module/Admin/Logs/Settings.php:96 +#: src/Module/Admin/Logs/Settings.php:82 msgid "Log level" msgstr "Niveau de journalisaton" -#: src/Module/Admin/Logs/Settings.php:98 +#: src/Module/Admin/Logs/Settings.php:84 msgid "PHP logging" msgstr "Log PHP" -#: src/Module/Admin/Logs/Settings.php:99 +#: src/Module/Admin/Logs/Settings.php:85 msgid "" "To temporarily enable logging of PHP errors and warnings you can prepend the" " following to the index.php file of your installation. The filename set in " @@ -4353,402 +4346,407 @@ msgid "" "'display_errors' is to enable these options, set to '0' to disable them." msgstr "Pour activer temporairement la journalisation de PHP vous pouvez insérez les lignes suivantes au début du fichier index.php dans votre répertoire Friendica. The nom de fichier défini dans la ligne 'error_log' est relatif au répertoire d'installation de Friendica et le serveur web doit avoir le droit d'écriture sur ce fichier. Les lignes log_errors et display_errors prennent les valeurs 0 et 1 respectivement pour les activer ou désactiver." -#: src/Module/Admin/Logs/View.php:72 +#: src/Module/Admin/Logs/View.php:58 #, php-format msgid "" "Error trying to open %1$s log file.
Check to see if " "file %1$s exist and is readable." msgstr "Erreur lors de l'ouverture du fichier journal %1$s.
Vérifiez si le fichier %1$s existe et est lisible." -#: src/Module/Admin/Logs/View.php:81 +#: src/Module/Admin/Logs/View.php:67 #, php-format msgid "" "Couldn't open %1$s log file.
Check to see if file %1$s " "is readable." msgstr "Impossible d'ouvrir le fichier journal %1$s .
Vérifiez si le fichier %1$s est lisible." -#: src/Module/Admin/Logs/View.php:86 src/Module/BaseAdmin.php:104 +#: src/Module/Admin/Logs/View.php:72 src/Module/BaseAdmin.php:90 msgid "View Logs" msgstr "Voir les logs" -#: src/Module/Admin/Logs/View.php:89 +#: src/Module/Admin/Logs/View.php:75 msgid "Search in logs" msgstr "Rechercher dans les fichiers journaux" -#: src/Module/Admin/Logs/View.php:90 -#: src/Module/Notifications/Notifications.php:146 +#: src/Module/Admin/Logs/View.php:76 +#: src/Module/Notifications/Notifications.php:132 msgid "Show all" msgstr "Tout afficher" -#: src/Module/Admin/Logs/View.php:91 +#: src/Module/Admin/Logs/View.php:77 msgid "Date" msgstr "Date" -#: src/Module/Admin/Logs/View.php:92 +#: src/Module/Admin/Logs/View.php:78 msgid "Level" msgstr "Niveau" -#: src/Module/Admin/Logs/View.php:93 +#: src/Module/Admin/Logs/View.php:79 msgid "Context" msgstr "Contexte" -#: src/Module/Admin/Logs/View.php:95 +#: src/Module/Admin/Logs/View.php:81 msgid "ALL" msgstr "TOUS" -#: src/Module/Admin/Logs/View.php:96 +#: src/Module/Admin/Logs/View.php:82 msgid "View details" msgstr "Voir les détails" -#: src/Module/Admin/Logs/View.php:97 +#: src/Module/Admin/Logs/View.php:83 msgid "Click to view details" msgstr "Cliquer pour voir les détails" -#: src/Module/Admin/Logs/View.php:98 src/Module/Calendar/Event/Form.php:207 +#: src/Module/Admin/Logs/View.php:84 src/Module/Calendar/Event/Form.php:193 msgid "Event details" msgstr "Détails de l'évènement" -#: src/Module/Admin/Logs/View.php:99 +#: src/Module/Admin/Logs/View.php:85 msgid "Data" msgstr "Données" -#: src/Module/Admin/Logs/View.php:100 -#: src/Module/Debug/ActivityPubConversion.php:63 +#: src/Module/Admin/Logs/View.php:86 +#: src/Module/Debug/ActivityPubConversion.php:49 msgid "Source" msgstr "Source" -#: src/Module/Admin/Logs/View.php:101 +#: src/Module/Admin/Logs/View.php:87 msgid "File" msgstr "Fichier" -#: src/Module/Admin/Logs/View.php:102 +#: src/Module/Admin/Logs/View.php:88 msgid "Line" msgstr "Ligne" -#: src/Module/Admin/Logs/View.php:103 +#: src/Module/Admin/Logs/View.php:89 msgid "Function" msgstr "Fonction" -#: src/Module/Admin/Logs/View.php:104 +#: src/Module/Admin/Logs/View.php:90 msgid "UID" msgstr "UID" -#: src/Module/Admin/Logs/View.php:105 +#: src/Module/Admin/Logs/View.php:91 msgid "Process ID" msgstr "ID de processus" -#: src/Module/Admin/Logs/View.php:106 +#: src/Module/Admin/Logs/View.php:92 msgid "Close" msgstr "Fermer" -#: src/Module/Admin/Queue.php:50 +#: src/Module/Admin/Queue.php:36 msgid "Inspect Deferred Worker Queue" msgstr "Détail des tâches de fond reportées" -#: src/Module/Admin/Queue.php:51 +#: src/Module/Admin/Queue.php:37 msgid "" "This page lists the deferred worker jobs. This are jobs that couldn't be " "executed at the first time." msgstr "Cette page détaille les tâches de fond reportées après avoir échoué une première fois." -#: src/Module/Admin/Queue.php:54 +#: src/Module/Admin/Queue.php:40 msgid "Inspect Worker Queue" msgstr "Détail des tâches de fond en attente" -#: src/Module/Admin/Queue.php:55 +#: src/Module/Admin/Queue.php:41 msgid "" "This page lists the currently queued worker jobs. These jobs are handled by " "the worker cronjob you've set up during install." msgstr "Cette page détaille les tâches de fond en attente. Elles seront traitées lors de la prochaine exécution de la tâche planifiée que vous avez définie lors de l'installation." -#: src/Module/Admin/Queue.php:76 +#: src/Module/Admin/Queue.php:62 msgid "ID" msgstr "ID" -#: src/Module/Admin/Queue.php:77 +#: src/Module/Admin/Queue.php:63 msgid "Command" msgstr "Commande" -#: src/Module/Admin/Queue.php:78 +#: src/Module/Admin/Queue.php:64 msgid "Job Parameters" msgstr "Paramètres de la tâche" -#: src/Module/Admin/Queue.php:79 src/Module/Moderation/Reports.php:116 -#: src/Module/Settings/OAuth.php:74 +#: src/Module/Admin/Queue.php:65 src/Module/Moderation/Reports.php:102 +#: src/Module/Settings/OAuth.php:60 msgid "Created" msgstr "Créé" -#: src/Module/Admin/Queue.php:80 +#: src/Module/Admin/Queue.php:66 msgid "Next Try" msgstr "Prochain Essai" -#: src/Module/Admin/Queue.php:81 +#: src/Module/Admin/Queue.php:67 msgid "Priority" msgstr "Priorité" -#: src/Module/Admin/Site.php:244 +#: src/Module/Admin/Site.php:230 +#, php-format +msgid "%s is no valid input for maximum media size" +msgstr "%s n'est pas une saisie valide pour une taille de média" + +#: src/Module/Admin/Site.php:235 #, 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:372 src/Module/Settings/Display.php:215 +#: src/Module/Admin/Site.php:362 src/Module/Settings/Display.php:201 msgid "No special theme for mobile devices" msgstr "Pas de thème particulier pour les terminaux mobiles" -#: src/Module/Admin/Site.php:389 src/Module/Settings/Display.php:225 +#: src/Module/Admin/Site.php:379 src/Module/Settings/Display.php:211 #, php-format msgid "%s - (Experimental)" msgstr "%s- (expérimental)" -#: src/Module/Admin/Site.php:401 +#: src/Module/Admin/Site.php:391 msgid "No community page" msgstr "Aucune page de communauté" -#: src/Module/Admin/Site.php:402 +#: src/Module/Admin/Site.php:392 msgid "No community page for visitors" msgstr "Aucune page communautaire pour les visiteurs" -#: src/Module/Admin/Site.php:403 +#: src/Module/Admin/Site.php:393 msgid "Public postings from users of this site" msgstr "Publications publiques des utilisateurs de ce site" -#: src/Module/Admin/Site.php:404 +#: src/Module/Admin/Site.php:394 msgid "Public postings from the federated network" msgstr "Publications publiques du réseau fédéré" -#: src/Module/Admin/Site.php:405 +#: src/Module/Admin/Site.php:395 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:411 +#: src/Module/Admin/Site.php:401 msgid "Multi user instance" msgstr "Instance multi-utilisateurs" -#: src/Module/Admin/Site.php:434 +#: src/Module/Admin/Site.php:424 msgid "Closed" msgstr "Fermé" -#: src/Module/Admin/Site.php:435 +#: src/Module/Admin/Site.php:425 msgid "Requires approval" msgstr "Demande une apptrobation" -#: src/Module/Admin/Site.php:436 +#: src/Module/Admin/Site.php:426 msgid "Open" msgstr "Ouvert" -#: src/Module/Admin/Site.php:440 +#: src/Module/Admin/Site.php:430 msgid "Don't check" msgstr "Ne pas rechercher" -#: src/Module/Admin/Site.php:441 +#: src/Module/Admin/Site.php:431 msgid "check the stable version" msgstr "Rechercher les versions stables" -#: src/Module/Admin/Site.php:442 +#: src/Module/Admin/Site.php:432 msgid "check the development version" msgstr "Rechercher les versions de développement" -#: src/Module/Admin/Site.php:446 +#: src/Module/Admin/Site.php:436 msgid "none" msgstr "aucun" -#: src/Module/Admin/Site.php:447 +#: src/Module/Admin/Site.php:437 msgid "Local contacts" msgstr "Contacts locaux" -#: src/Module/Admin/Site.php:448 +#: src/Module/Admin/Site.php:438 msgid "Interactors" msgstr "Interagisseurs" -#: src/Module/Admin/Site.php:458 src/Module/BaseAdmin.php:90 +#: src/Module/Admin/Site.php:448 src/Module/BaseAdmin.php:76 msgid "Site" msgstr "Site" -#: src/Module/Admin/Site.php:459 +#: src/Module/Admin/Site.php:449 msgid "General Information" msgstr "Information générale" -#: src/Module/Admin/Site.php:461 +#: src/Module/Admin/Site.php:451 msgid "Republish users to directory" msgstr "Republier les utilisateurs sur le répertoire" -#: src/Module/Admin/Site.php:462 src/Module/Register.php:159 +#: src/Module/Admin/Site.php:452 src/Module/Register.php:145 msgid "Registration" msgstr "Inscription" -#: src/Module/Admin/Site.php:463 +#: src/Module/Admin/Site.php:453 msgid "File upload" msgstr "Téléversement de fichier" -#: src/Module/Admin/Site.php:464 +#: src/Module/Admin/Site.php:454 msgid "Policies" msgstr "Politiques" -#: src/Module/Admin/Site.php:465 src/Module/Calendar/Event/Form.php:252 -#: src/Module/Contact.php:553 src/Module/Profile/Profile.php:278 +#: src/Module/Admin/Site.php:455 src/Module/Calendar/Event/Form.php:238 +#: src/Module/Contact.php:528 src/Module/Profile/Profile.php:264 msgid "Advanced" msgstr "Avancé" -#: src/Module/Admin/Site.php:466 +#: src/Module/Admin/Site.php:456 msgid "Auto Discovered Contact Directory" msgstr "Répertoire de Contacts Découverts Automatiquement" -#: src/Module/Admin/Site.php:467 +#: src/Module/Admin/Site.php:457 msgid "Performance" msgstr "Performance" -#: src/Module/Admin/Site.php:468 +#: src/Module/Admin/Site.php:458 msgid "Worker" msgstr "Tâche de fond" -#: src/Module/Admin/Site.php:469 +#: src/Module/Admin/Site.php:459 msgid "Message Relay" msgstr "Relai de publication" -#: src/Module/Admin/Site.php:470 +#: src/Module/Admin/Site.php:460 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:471 +#: src/Module/Admin/Site.php:461 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:472 +#: src/Module/Admin/Site.php:462 msgid "The system is currently subscribed to the following relays:" msgstr "Ce serveur est actuellement abonné aux relais suivants:" -#: src/Module/Admin/Site.php:475 +#: src/Module/Admin/Site.php:465 msgid "Relocate Node" msgstr "Déplacer le nœud" -#: src/Module/Admin/Site.php:476 +#: src/Module/Admin/Site.php:466 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:477 +#: src/Module/Admin/Site.php:467 msgid "(Friendica directory)# bin/console relocate https://newdomain.com" msgstr "(Friendica directory)# bin/console relocate https://nouveaudomaine.fr" -#: src/Module/Admin/Site.php:480 +#: src/Module/Admin/Site.php:470 msgid "Site name" msgstr "Nom du site" -#: src/Module/Admin/Site.php:481 +#: src/Module/Admin/Site.php:471 msgid "Sender Email" msgstr "Courriel de l'émetteur" -#: src/Module/Admin/Site.php:481 +#: src/Module/Admin/Site.php:471 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:482 +#: src/Module/Admin/Site.php:472 msgid "Name of the system actor" msgstr "Nom du compte système" -#: src/Module/Admin/Site.php:482 +#: src/Module/Admin/Site.php:472 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:483 +#: src/Module/Admin/Site.php:473 msgid "Banner/Logo" msgstr "Bannière/Logo" -#: src/Module/Admin/Site.php:484 +#: src/Module/Admin/Site.php:474 msgid "Email Banner/Logo" msgstr "Bannière/Logo de courriel" -#: src/Module/Admin/Site.php:485 +#: src/Module/Admin/Site.php:475 msgid "Shortcut icon" msgstr "Icône de raccourci" -#: src/Module/Admin/Site.php:485 +#: src/Module/Admin/Site.php:475 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:486 +#: src/Module/Admin/Site.php:476 msgid "Touch icon" msgstr "Icône pour systèmes tactiles" -#: src/Module/Admin/Site.php:486 +#: src/Module/Admin/Site.php:476 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:487 +#: src/Module/Admin/Site.php:477 msgid "Additional Info" msgstr "Informations supplémentaires" -#: src/Module/Admin/Site.php:487 +#: src/Module/Admin/Site.php:477 #, 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:488 +#: src/Module/Admin/Site.php:478 msgid "System language" msgstr "Langue du système" -#: src/Module/Admin/Site.php:489 +#: src/Module/Admin/Site.php:479 msgid "System theme" msgstr "Thème du système" -#: src/Module/Admin/Site.php:489 +#: src/Module/Admin/Site.php:479 #, 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:490 +#: src/Module/Admin/Site.php:480 msgid "Mobile system theme" msgstr "Thème mobile" -#: src/Module/Admin/Site.php:490 +#: src/Module/Admin/Site.php:480 msgid "Theme for mobile devices" msgstr "Thème pour les terminaux mobiles" -#: src/Module/Admin/Site.php:491 +#: src/Module/Admin/Site.php:481 msgid "Force SSL" msgstr "SSL obligatoire" -#: src/Module/Admin/Site.php:491 +#: src/Module/Admin/Site.php:481 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:492 +#: src/Module/Admin/Site.php:482 msgid "Show help entry from navigation menu" msgstr "Montrer l'aide dans le menu de navigation" -#: src/Module/Admin/Site.php:492 +#: src/Module/Admin/Site.php:482 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:493 +#: src/Module/Admin/Site.php:483 msgid "Single user instance" msgstr "Instance mono-utilisateur" -#: src/Module/Admin/Site.php:493 +#: src/Module/Admin/Site.php:483 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:495 +#: src/Module/Admin/Site.php:485 msgid "Maximum image size" msgstr "Taille maximale des images" -#: src/Module/Admin/Site.php:495 +#: src/Module/Admin/Site.php:485 #, 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" @@ -4756,35 +4754,47 @@ 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:499 +#: src/Module/Admin/Site.php:489 msgid "Maximum image length" msgstr "Longueur maximale des images" -#: src/Module/Admin/Site.php:499 +#: src/Module/Admin/Site.php:489 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:500 +#: src/Module/Admin/Site.php:490 msgid "JPEG image quality" msgstr "Qualité JPEG des images" -#: src/Module/Admin/Site.php:500 +#: src/Module/Admin/Site.php:490 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:502 +#: src/Module/Admin/Site.php:491 +msgid "Maximum media file size" +msgstr "Taille maximale d'un média" + +#: src/Module/Admin/Site.php:491 +#, php-format +msgid "" +"Maximum size in bytes of uploaded media files. Default is 0, which means no limits. You can put k, m, or g behind the desired value for KiB, MiB, GiB, respectively.\n" +"\t\t\t\t\t\t\t\t\t\t\t\t\tThe value of upload_max_filesize in your PHP.ini needs be set to at least the desired limit.\n" +"\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 fichiers multimédias envoyés. La valeur par défaut est 0, ce qui signifie aucune limite. Vous pouvez mettre k, m, ou g derrière la valeur souhaitée pour KiB, MiB, GiB, 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 au moins égale à la limite souhaitée.\n\t\t\t\t\t\t\t\t\t\t\t\t\tActuellement, upload_max_filesize est fixé à %s (%s byte)" + +#: src/Module/Admin/Site.php:496 msgid "Register policy" msgstr "Politique d'inscription" -#: src/Module/Admin/Site.php:503 +#: src/Module/Admin/Site.php:497 msgid "Maximum Users" msgstr "Utilisateurs maximum" -#: src/Module/Admin/Site.php:503 +#: src/Module/Admin/Site.php:497 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 " @@ -4792,167 +4802,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:504 +#: src/Module/Admin/Site.php:498 msgid "Maximum Daily Registrations" msgstr "Inscriptions maximum par jour" -#: src/Module/Admin/Site.php:504 +#: src/Module/Admin/Site.php:498 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:505 +#: src/Module/Admin/Site.php:499 msgid "Register text" msgstr "Texte d'inscription" -#: src/Module/Admin/Site.php:505 +#: src/Module/Admin/Site.php:499 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:506 +#: src/Module/Admin/Site.php:500 msgid "Forbidden Nicknames" msgstr "Identifiants réservés" -#: src/Module/Admin/Site.php:506 +#: src/Module/Admin/Site.php:500 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:507 +#: src/Module/Admin/Site.php:501 msgid "Accounts abandoned after x days" msgstr "Les comptes sont abandonnés après x jours" -#: src/Module/Admin/Site.php:507 +#: src/Module/Admin/Site.php:501 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:508 +#: src/Module/Admin/Site.php:502 msgid "Allowed friend domains" msgstr "Domaines autorisés" -#: src/Module/Admin/Site.php:508 +#: src/Module/Admin/Site.php:502 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:509 +#: src/Module/Admin/Site.php:503 msgid "Allowed email domains" msgstr "Domaines courriel autorisés" -#: src/Module/Admin/Site.php:509 +#: src/Module/Admin/Site.php:503 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:510 +#: src/Module/Admin/Site.php:504 msgid "Disallowed email domains" msgstr "Domaines courriel interdits" -#: src/Module/Admin/Site.php:510 +#: src/Module/Admin/Site.php:504 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 +#: src/Module/Admin/Site.php:505 msgid "No OEmbed rich content" msgstr "Désactiver le texte riche avec OEmbed" -#: src/Module/Admin/Site.php:511 +#: src/Module/Admin/Site.php:505 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:512 +#: src/Module/Admin/Site.php:506 msgid "Trusted third-party domains" msgstr "Domaines tierce-partie de confiance" -#: src/Module/Admin/Site.php:512 +#: src/Module/Admin/Site.php:506 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:513 +#: src/Module/Admin/Site.php:507 msgid "Block public" msgstr "Interdire la publication globale" -#: src/Module/Admin/Site.php:513 +#: src/Module/Admin/Site.php:507 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:514 +#: src/Module/Admin/Site.php:508 msgid "Force publish" msgstr "Forcer la publication globale" -#: src/Module/Admin/Site.php:514 +#: src/Module/Admin/Site.php:508 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:514 +#: src/Module/Admin/Site.php:508 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:515 +#: src/Module/Admin/Site.php:509 msgid "Global directory URL" msgstr "URL de l'annuaire global" -#: src/Module/Admin/Site.php:515 +#: src/Module/Admin/Site.php:509 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:516 +#: src/Module/Admin/Site.php:510 msgid "Private posts by default for new users" msgstr "Publications privées par défaut pour les nouveaux utilisateurs" -#: src/Module/Admin/Site.php:516 +#: src/Module/Admin/Site.php:510 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:517 +#: src/Module/Admin/Site.php:511 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:517 +#: src/Module/Admin/Site.php:511 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:518 +#: src/Module/Admin/Site.php:512 msgid "Disallow public access to addons listed in the apps menu." msgstr "Interdire l’accès public pour les extensions listées dans le menu apps." -#: src/Module/Admin/Site.php:518 +#: src/Module/Admin/Site.php:512 msgid "" "Checking this box will restrict addons listed in the apps menu to members " "only." msgstr "Cocher cette case restreint la liste des extensions dans le menu des applications seulement aux membres." -#: src/Module/Admin/Site.php:519 +#: src/Module/Admin/Site.php:513 msgid "Don't embed private images in posts" msgstr "Ne pas miniaturiser les images privées dans les publications" -#: src/Module/Admin/Site.php:519 +#: src/Module/Admin/Site.php:513 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 " @@ -4960,11 +4970,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:520 +#: src/Module/Admin/Site.php:514 msgid "Explicit Content" msgstr "Contenu adulte" -#: src/Module/Admin/Site.php:520 +#: src/Module/Admin/Site.php:514 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 " @@ -4973,329 +4983,319 @@ 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:521 +#: src/Module/Admin/Site.php:515 msgid "Only local search" msgstr "Recherche locale uniquement" -#: src/Module/Admin/Site.php:521 +#: src/Module/Admin/Site.php:515 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:522 +#: src/Module/Admin/Site.php:516 msgid "Blocked tags for trending tags" msgstr "Étiquettes bloquées pour les tendances" -#: src/Module/Admin/Site.php:522 +#: src/Module/Admin/Site.php:516 msgid "" "Comma separated list of hashtags that shouldn't be displayed in the trending" " tags." msgstr "Liste d'étiquettes, séparées par des virgules, qui ne seront pas affichées dans les tendances." -#: src/Module/Admin/Site.php:523 +#: src/Module/Admin/Site.php:517 msgid "Cache contact avatars" msgstr "Mettre en cache les avatars des contacts" -#: src/Module/Admin/Site.php:523 +#: src/Module/Admin/Site.php:517 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:524 +#: src/Module/Admin/Site.php:518 msgid "Allow Users to set remote_self" msgstr "Autoriser les utilisateurs à définir remote_self" -#: src/Module/Admin/Site.php:524 +#: src/Module/Admin/Site.php:518 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:525 +#: src/Module/Admin/Site.php:519 msgid "Allow Users to set up relay channels" msgstr "Autorise les utilisateurs à créer les chaînes relais" -#: src/Module/Admin/Site.php:525 +#: src/Module/Admin/Site.php:519 msgid "" "If enabled, it is possible to create relay users that are used to reshare " "content based on user defined channels." 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:526 +#: src/Module/Admin/Site.php:520 msgid "Adjust the feed poll frequency" msgstr "Régler la fréquence d'interrogation" -#: src/Module/Admin/Site.php:526 +#: src/Module/Admin/Site.php:520 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:527 +#: src/Module/Admin/Site.php:521 msgid "Minimum poll interval" msgstr "Intervalle minimum de requêtage" -#: src/Module/Admin/Site.php:527 +#: src/Module/Admin/Site.php:521 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:528 +#: src/Module/Admin/Site.php:522 msgid "Enable multiple registrations" msgstr "Autoriser les comptes multiples" -#: src/Module/Admin/Site.php:528 +#: src/Module/Admin/Site.php:522 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:529 +#: src/Module/Admin/Site.php:523 msgid "Enable OpenID" msgstr "Activer OpenID" -#: src/Module/Admin/Site.php:529 +#: src/Module/Admin/Site.php:523 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:530 +#: src/Module/Admin/Site.php:524 msgid "Enable full name check" msgstr "Activer la vérification du nom complet" -#: src/Module/Admin/Site.php:530 +#: src/Module/Admin/Site.php:524 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:531 +#: src/Module/Admin/Site.php:525 msgid "Email administrators on new registration" msgstr "Envoyer un courriel aux administrateurs lors d'une nouvelle inscription" -#: src/Module/Admin/Site.php:531 +#: src/Module/Admin/Site.php:525 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:532 +#: src/Module/Admin/Site.php:526 msgid "Community pages for visitors" msgstr "Affichage de la page communauté pour les utilisateurs anonymes" -#: src/Module/Admin/Site.php:532 +#: src/Module/Admin/Site.php:526 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:533 +#: src/Module/Admin/Site.php:527 msgid "Posts per user on community page" msgstr "Nombre de publications par utilisateur sur la page de la communauté" -#: src/Module/Admin/Site.php:533 +#: src/Module/Admin/Site.php:527 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:534 +#: src/Module/Admin/Site.php:528 msgid "Posts per server on community page" msgstr "Publications par serveur sur la page Communauté" -#: src/Module/Admin/Site.php:534 +#: src/Module/Admin/Site.php:528 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:536 +#: src/Module/Admin/Site.php:530 msgid "Enable Mail support" msgstr "Activer la prise en charge courriel" -#: src/Module/Admin/Site.php:536 +#: src/Module/Admin/Site.php:530 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 courriels via Friendica." -#: src/Module/Admin/Site.php:537 +#: src/Module/Admin/Site.php:531 msgid "" "Mail support can't be enabled because the PHP IMAP module is not installed." msgstr "La prise en charge courriel requiert le module PHP IMAP pour être activée." -#: src/Module/Admin/Site.php:538 -msgid "Enable OStatus support" -msgstr "Activer la prise en charge d'OStatus" - -#: src/Module/Admin/Site.php:538 -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:540 +#: src/Module/Admin/Site.php:533 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:541 +#: src/Module/Admin/Site.php:534 msgid "Enable Diaspora support" msgstr "Activer le support de Diaspora" -#: src/Module/Admin/Site.php:541 +#: src/Module/Admin/Site.php:534 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:542 +#: src/Module/Admin/Site.php:535 msgid "Verify SSL" msgstr "Vérifier SSL" -#: src/Module/Admin/Site.php:542 +#: src/Module/Admin/Site.php:535 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:543 +#: src/Module/Admin/Site.php:536 msgid "Proxy user" msgstr "Utilisateur du proxy" -#: src/Module/Admin/Site.php:543 +#: src/Module/Admin/Site.php:536 msgid "User name for the proxy server." msgstr "Nom d'utilisateur pour le serveur proxy" -#: src/Module/Admin/Site.php:544 +#: src/Module/Admin/Site.php:537 msgid "Proxy URL" msgstr "URL du proxy" -#: src/Module/Admin/Site.php:544 +#: src/Module/Admin/Site.php:537 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:545 +#: src/Module/Admin/Site.php:538 msgid "Network timeout" msgstr "Dépassement du délai d'attente du réseau" -#: src/Module/Admin/Site.php:545 +#: src/Module/Admin/Site.php:538 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:546 +#: src/Module/Admin/Site.php:539 msgid "Maximum Load Average" msgstr "Plafond de la charge moyenne" -#: src/Module/Admin/Site.php:546 +#: src/Module/Admin/Site.php:539 #, 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:547 +#: src/Module/Admin/Site.php:540 msgid "Minimal Memory" msgstr "Mémoire minimum" -#: src/Module/Admin/Site.php:547 +#: src/Module/Admin/Site.php:540 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:548 +#: src/Module/Admin/Site.php:541 msgid "Periodically optimize tables" msgstr "Optimizer les tables régulièrement" -#: src/Module/Admin/Site.php:548 +#: src/Module/Admin/Site.php:541 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:550 +#: src/Module/Admin/Site.php:543 msgid "Discover followers/followings from contacts" msgstr "Découvrir la liste de contacts des contacts" -#: src/Module/Admin/Site.php:550 +#: src/Module/Admin/Site.php:543 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:551 +#: src/Module/Admin/Site.php:544 msgid "None - deactivated" msgstr "Aucun - désactivé" -#: src/Module/Admin/Site.php:552 +#: src/Module/Admin/Site.php:545 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:553 +#: src/Module/Admin/Site.php:546 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:555 +#: src/Module/Admin/Site.php:548 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:555 +#: src/Module/Admin/Site.php:548 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:556 +#: src/Module/Admin/Site.php:549 msgid "Synchronize the contacts with the directory server" msgstr "Synchroniser les contacts avec l'annuaire distant" -#: src/Module/Admin/Site.php:556 +#: src/Module/Admin/Site.php:549 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:558 +#: src/Module/Admin/Site.php:551 msgid "Discover contacts from other servers" msgstr "Découvrir des contacts des autres serveurs" -#: src/Module/Admin/Site.php:558 +#: src/Module/Admin/Site.php:551 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:559 +#: src/Module/Admin/Site.php:552 msgid "Days between requery" msgstr "Nombre de jours entre les requêtes" -#: src/Module/Admin/Site.php:559 +#: src/Module/Admin/Site.php:552 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:560 +#: src/Module/Admin/Site.php:553 msgid "Search the local directory" msgstr "Chercher dans le répertoire local" -#: src/Module/Admin/Site.php:560 +#: src/Module/Admin/Site.php:553 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:562 +#: src/Module/Admin/Site.php:555 msgid "Publish server information" msgstr "Publier les informations du serveur" -#: src/Module/Admin/Site.php:562 +#: src/Module/Admin/Site.php:555 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 " @@ -5303,50 +5303,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:564 +#: src/Module/Admin/Site.php:557 msgid "Check upstream version" msgstr "Mises à jour" -#: src/Module/Admin/Site.php:564 +#: src/Module/Admin/Site.php:557 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:565 +#: src/Module/Admin/Site.php:558 msgid "Suppress Tags" msgstr "Masquer les étiquettes" -#: src/Module/Admin/Site.php:565 +#: src/Module/Admin/Site.php:558 msgid "Suppress showing a list of hashtags at the end of the posting." msgstr "Ne pas afficher la liste des étiquettes à la fin d’un message." -#: src/Module/Admin/Site.php:566 +#: src/Module/Admin/Site.php:559 msgid "Clean database" msgstr "Nettoyer la base de données" -#: src/Module/Admin/Site.php:566 +#: src/Module/Admin/Site.php:559 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:567 +#: src/Module/Admin/Site.php:560 msgid "Lifespan of remote items" msgstr "Durée de vie des conversations distantes" -#: src/Module/Admin/Site.php:567 +#: src/Module/Admin/Site.php:560 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:568 +#: src/Module/Admin/Site.php:561 msgid "Lifespan of unclaimed items" msgstr "Durée de vie des conversations relayées" -#: src/Module/Admin/Site.php:568 +#: src/Module/Admin/Site.php:561 msgid "" "When the database cleanup is enabled, this defines the days after which " "unclaimed remote items (mostly content from the relay) will be deleted. " @@ -5354,185 +5354,184 @@ 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:569 +#: src/Module/Admin/Site.php:562 msgid "Lifespan of raw conversation data" msgstr "Durée de vie des méta-données de conversation" -#: src/Module/Admin/Site.php:569 +#: src/Module/Admin/Site.php:562 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." +"The conversation data is used for ActivityPub, as well as for debug " +"purposes. It should be safe to remove it after 14 days, default is 90 days." +msgstr "Les données de conversation sont utilisées pour ActivityPub, ainsi qu'à des fins de débogage. Elles peuvent être supprimées en toute sécurité après 14 jours, la durée par défaut étant de 90 jours." -#: src/Module/Admin/Site.php:570 +#: src/Module/Admin/Site.php:563 msgid "Maximum numbers of comments per post" msgstr "Nombre maximum de commentaires par publication" -#: src/Module/Admin/Site.php:570 +#: src/Module/Admin/Site.php:563 msgid "How much comments should be shown for each post? Default value is 100." msgstr "Nombre de commentaire affiché pour chaque publication. Valeur par défaut : 100." -#: src/Module/Admin/Site.php:571 +#: src/Module/Admin/Site.php:564 msgid "Maximum numbers of comments per post on the display page" msgstr "Nombre maximum de commentaires par publication dans leur page dédié (/display)" -#: src/Module/Admin/Site.php:571 +#: src/Module/Admin/Site.php:564 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:572 +#: src/Module/Admin/Site.php:565 msgid "Items per page" msgstr "Éléments par page" -#: src/Module/Admin/Site.php:572 +#: src/Module/Admin/Site.php:565 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:573 +#: src/Module/Admin/Site.php:566 msgid "Items per page for mobile devices" msgstr "Éléments par page pour les appareils mobiles" -#: src/Module/Admin/Site.php:573 +#: src/Module/Admin/Site.php:566 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:574 +#: src/Module/Admin/Site.php:567 msgid "Temp path" msgstr "Chemin des fichiers temporaires" -#: src/Module/Admin/Site.php:574 +#: src/Module/Admin/Site.php:567 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:575 +#: src/Module/Admin/Site.php:568 msgid "Only search in tags" msgstr "Rechercher seulement dans les étiquettes" -#: src/Module/Admin/Site.php:575 +#: src/Module/Admin/Site.php:568 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:576 +#: src/Module/Admin/Site.php:569 msgid "Limited search scope" msgstr "Champ de recherche limité" -#: src/Module/Admin/Site.php:576 +#: src/Module/Admin/Site.php:569 msgid "" "If enabled, searches will only be performed in the data used for the " "channels and not in all posts." msgstr "Si activé, les recherches ne seront effectuées que dans les données utilisées pour les chaînes et non dans toutes les publications." -#: src/Module/Admin/Site.php:577 +#: src/Module/Admin/Site.php:570 msgid "Maximum age of items in the search table" msgstr "Âge maximum des éléments dans la table de recherche" -#: src/Module/Admin/Site.php:577 +#: src/Module/Admin/Site.php:570 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 "Â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:578 +#: src/Module/Admin/Site.php:571 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:578 +#: src/Module/Admin/Site.php:571 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:579 +#: src/Module/Admin/Site.php:572 msgid "Process \"view\" activities" msgstr "Traiter les activités \"view\"" -#: src/Module/Admin/Site.php:579 +#: src/Module/Admin/Site.php:572 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:580 +#: src/Module/Admin/Site.php:573 msgid "Days, after which a contact is archived" msgstr "Nombre de jours après lesquels un contact est archivé" -#: src/Module/Admin/Site.php:580 +#: src/Module/Admin/Site.php:573 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:582 +#: src/Module/Admin/Site.php:575 msgid "Maximum number of parallel workers" msgstr "Nombre maximum de tâche de fond simultanés" -#: src/Module/Admin/Site.php:582 +#: src/Module/Admin/Site.php:575 #, 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:583 +#: src/Module/Admin/Site.php:576 msgid "Maximum load for workers" msgstr "Charge maximum pour les tâches de fond" -#: src/Module/Admin/Site.php:583 +#: src/Module/Admin/Site.php:576 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:584 +#: src/Module/Admin/Site.php:577 msgid "Enable fastlane" msgstr "Activer la file prioritaire" -#: src/Module/Admin/Site.php:584 +#: src/Module/Admin/Site.php:577 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:585 +#: src/Module/Admin/Site.php:578 msgid "Decoupled receiver" msgstr "Récepteur découplé" -#: src/Module/Admin/Site.php:585 +#: src/Module/Admin/Site.php:578 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:586 +#: src/Module/Admin/Site.php:579 msgid "Cron interval" msgstr "Intervalle du cron" -#: src/Module/Admin/Site.php:586 +#: src/Module/Admin/Site.php:579 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:587 +#: src/Module/Admin/Site.php:580 msgid "Worker defer limit" msgstr "Limite de report d'une tâche de fond" -#: src/Module/Admin/Site.php:587 +#: src/Module/Admin/Site.php:580 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:588 +#: src/Module/Admin/Site.php:581 msgid "Worker fetch limit" msgstr "Limite de récupération des tâches" -#: src/Module/Admin/Site.php:588 +#: src/Module/Admin/Site.php:581 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" @@ -5540,214 +5539,214 @@ 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:590 +#: src/Module/Admin/Site.php:583 msgid "Direct relay transfer" msgstr "Relai direct" -#: src/Module/Admin/Site.php:590 +#: src/Module/Admin/Site.php:583 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:591 +#: src/Module/Admin/Site.php:584 msgid "Relay scope" msgstr "Filtre du relai" -#: src/Module/Admin/Site.php:591 +#: src/Module/Admin/Site.php:584 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. \"Étiquettes\" signifie que seules les conversations comportant les étiquettes suivantes sont acceptées." -#: src/Module/Admin/Site.php:591 src/Module/Contact/Profile.php:328 -#: src/Module/Settings/TwoFactor/Index.php:146 +#: src/Module/Admin/Site.php:584 src/Module/Contact/Profile.php:314 +#: src/Module/Settings/TwoFactor/Index.php:132 msgid "Disabled" msgstr "Désactivé" -#: src/Module/Admin/Site.php:591 +#: src/Module/Admin/Site.php:584 msgid "all" msgstr "Tous" -#: src/Module/Admin/Site.php:591 +#: src/Module/Admin/Site.php:584 msgid "tags" msgstr "étiquettes" -#: src/Module/Admin/Site.php:592 +#: src/Module/Admin/Site.php:585 msgid "Server tags" msgstr "Étiquettes de filtre du relai" -#: src/Module/Admin/Site.php:592 +#: src/Module/Admin/Site.php:585 msgid "Comma separated list of tags for the \"tags\" subscription." msgstr "Liste d'étiquettes autorisées, séparées par des virgules, en provenance des relais." -#: src/Module/Admin/Site.php:593 +#: src/Module/Admin/Site.php:586 msgid "Deny Server tags" msgstr "Étiquettes refusés" -#: src/Module/Admin/Site.php:593 +#: src/Module/Admin/Site.php:586 msgid "Comma separated list of tags that are rejected." msgstr "Liste d'étiquettes refusées, séparées par des virgules, en provenance des relais." -#: src/Module/Admin/Site.php:594 +#: src/Module/Admin/Site.php:587 msgid "Maximum amount of tags" msgstr "Quantité maximum d'étiquettes" -#: src/Module/Admin/Site.php:594 +#: src/Module/Admin/Site.php:587 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 "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:595 +#: src/Module/Admin/Site.php:588 msgid "Allow user tags" msgstr "Inclure les étiquettes des utilisateurs" -#: src/Module/Admin/Site.php:595 +#: src/Module/Admin/Site.php:588 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 étiquettes des recherches enregistrées des utilisateurs aux étiquettes autorisés en provenance des relais." -#: src/Module/Admin/Site.php:596 +#: src/Module/Admin/Site.php:589 msgid "Deny undetected languages" msgstr "Refuser les langues non détectées" -#: src/Module/Admin/Site.php:596 +#: src/Module/Admin/Site.php:589 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:597 +#: src/Module/Admin/Site.php:590 msgid "Language Quality" msgstr "Qualité de la langue" -#: src/Module/Admin/Site.php:597 +#: src/Module/Admin/Site.php:590 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:598 +#: src/Module/Admin/Site.php:591 msgid "Number of languages for the language detection" msgstr "Nombre de langues pour la détection la de langue" -#: src/Module/Admin/Site.php:598 +#: src/Module/Admin/Site.php:591 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:600 +#: src/Module/Admin/Site.php:593 msgid "Maximum age of channel" msgstr "Age maximal d'une chaîne" -#: src/Module/Admin/Site.php:600 +#: src/Module/Admin/Site.php:593 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:601 +#: src/Module/Admin/Site.php:594 msgid "Maximum number of channel posts" msgstr "Nombre maximum de publications sur une chaîne" -#: src/Module/Admin/Site.php:601 +#: src/Module/Admin/Site.php:594 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:602 +#: src/Module/Admin/Site.php:595 msgid "Interaction score days" msgstr "Intervalle pour le score d'interaction" -#: src/Module/Admin/Site.php:602 +#: src/Module/Admin/Site.php:595 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:603 +#: src/Module/Admin/Site.php:596 msgid "Maximum number of posts per author" msgstr "Nombre maximum de publications par auteur" -#: src/Module/Admin/Site.php:603 +#: src/Module/Admin/Site.php:596 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:604 +#: src/Module/Admin/Site.php:597 msgid "Sharer interaction days" msgstr "Intervalle d'interaction de partageurs" -#: src/Module/Admin/Site.php:604 +#: src/Module/Admin/Site.php:597 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:607 +#: src/Module/Admin/Site.php:600 msgid "Start Relocation" msgstr "Démarrer le déménagement" -#: src/Module/Admin/Storage.php:46 +#: src/Module/Admin/Storage.php:32 #, php-format msgid "Storage backend, %s is invalid." msgstr "Le moteur de stockage %s est invalide." -#: src/Module/Admin/Storage.php:73 +#: src/Module/Admin/Storage.php:59 #, php-format msgid "Storage backend %s error: %s" msgstr "Moteur de stockage %s erreur : %s" -#: src/Module/Admin/Storage.php:84 src/Module/Admin/Storage.php:87 +#: src/Module/Admin/Storage.php:70 src/Module/Admin/Storage.php:73 msgid "Invalid storage backend setting value." msgstr "Valeur de paramètre de moteur de stockage invalide." -#: src/Module/Admin/Storage.php:139 +#: src/Module/Admin/Storage.php:125 msgid "Current Storage Backend" msgstr "Moteur de stockage actuel" -#: src/Module/Admin/Storage.php:140 +#: src/Module/Admin/Storage.php:126 msgid "Storage Configuration" msgstr "Configuration du stockage" -#: src/Module/Admin/Storage.php:141 src/Module/BaseAdmin.php:91 +#: src/Module/Admin/Storage.php:127 src/Module/BaseAdmin.php:77 msgid "Storage" msgstr "Stockage" -#: src/Module/Admin/Storage.php:143 +#: src/Module/Admin/Storage.php:129 msgid "Save & Use storage backend" msgstr "Enregistrer et utiliser ce moteur de stockage" -#: src/Module/Admin/Storage.php:144 +#: src/Module/Admin/Storage.php:130 msgid "Use storage backend" msgstr "Utiliser ce moteur de stockage" -#: src/Module/Admin/Storage.php:145 +#: src/Module/Admin/Storage.php:131 msgid "Save & Reload" msgstr "Enregistrer et recharger" -#: src/Module/Admin/Storage.php:146 +#: src/Module/Admin/Storage.php:132 msgid "This backend doesn't have custom settings" msgstr "Ce moteur de stockage n'offre pas de paramètres personnalisés." -#: src/Module/Admin/Storage.php:148 +#: src/Module/Admin/Storage.php:134 msgid "" "Changing the current backend is prohibited because it is set by an " "environment variable" msgstr "Il n'est pas possible de changer le moteur de stockage car il est configuré avec une variable d'environnement." -#: src/Module/Admin/Storage.php:150 +#: src/Module/Admin/Storage.php:136 msgid "Database (legacy)" msgstr "Base de donnée (historique)" -#: src/Module/Admin/Summary.php:55 +#: src/Module/Admin/Summary.php:41 #, php-format msgid "Template engine (%s) error: %s" msgstr "Moteur de template (%s) erreur : %s" -#: src/Module/Admin/Summary.php:59 +#: src/Module/Admin/Summary.php:45 #, php-format msgid "" "Your DB still runs with MyISAM tables. You should change the engine type to " @@ -5758,7 +5757,7 @@ msgid "" " an automatic conversion.
" msgstr "
Votre base de donnée comporte des tables MYISAM. Vous devriez changer pour InnoDB car il est prévu d'utiliser des fonctionnalités spécifiques à InnoDB à l'avenir. Veuillez consulter ce guide de conversion pour mettre à jour votre base de donnée. Vous pouvez également exécuter la commande php bin/console.php dbstructure toinnodb à la racine de votre répertoire Friendica pour une conversion automatique." -#: src/Module/Admin/Summary.php:64 +#: src/Module/Admin/Summary.php:50 #, php-format msgid "" "Your DB still runs with InnoDB tables in the Antelope file format. You " @@ -5769,7 +5768,7 @@ msgid "" " installation for an automatic conversion.
" msgstr "Votre BDD utilise encore des tables InnoDB au format de fichiers Antelope. Vous devriez le remplacer par le format Barracuda. Friendica utilise des fonctionnalités qui ne sont pas disponibles dans le format Antelope. Voir ici pour un guide qui peut être utile pour la conversion du moteur des tables. Vous pouvez également utiliser la commande php bin/console.php dbstructure toinnodb de votre installation Friendica pour une conversion automatique.
" -#: src/Module/Admin/Summary.php:74 +#: src/Module/Admin/Summary.php:60 #, php-format msgid "" "Your table_definition_cache is too low (%d). This can lead to the database " @@ -5777,46 +5776,46 @@ msgid "" " to %d. See here for more information.
" msgstr "Votre table_definition_cache est trop faible (%d). Cela peut conduire à l'erreur de base de données \"Prepared statement needs to be re-prepared\". Merci de le définir au minimum à %d. Voir ici pour plus d'informations.
" -#: src/Module/Admin/Summary.php:85 +#: src/Module/Admin/Summary.php:71 #, php-format msgid "" "There is a new version of Friendica available for download. Your current " "version is %1$s, upstream version is %2$s" msgstr "Une nouvelle version de Friendica est disponible. Votre version est %1$s, la nouvelle version est %2$s" -#: src/Module/Admin/Summary.php:94 +#: src/Module/Admin/Summary.php:80 msgid "" "The database update failed. Please run \"php bin/console.php dbstructure " "update\" from the command line and have a look at the errors that might " "appear." msgstr "La mise à jour automatique de la base de donnée a échoué. Veuillez exécuter la commande php bin/console.php dbstructure update depuis votre répertoire Friendica et noter les erreurs potentielles." -#: src/Module/Admin/Summary.php:98 +#: src/Module/Admin/Summary.php:84 msgid "" "The last update failed. Please run \"php bin/console.php dbstructure " "update\" from the command line and have a look at the errors that might " "appear. (Some of the errors are possibly inside the logfile.)" msgstr "La dernière mise à jour a échoué. Merci d'exécuter \"php bin/console.php dbstructure update\" depuis la ligne de commandes et de surveiller les erreurs qui pourraient survenir (Certaines erreurs pourraient être dans le fichier journal)." -#: src/Module/Admin/Summary.php:102 +#: src/Module/Admin/Summary.php:88 msgid "" "The system.url entry is missing. This is a low level setting and can lead to" " unexpected behavior. Please add a valid entry as soon as possible in the " "config file or per console command!" msgstr "L'entrée system.url est manquante. Il s'agit d'un paramètre bas niveau qui peut conduire à un comportement non attendu. Merci d'ajouter une entrée valide dès que possible dans le fichier de configuration ou via la console de commandes !" -#: src/Module/Admin/Summary.php:107 +#: src/Module/Admin/Summary.php:93 msgid "The worker was never executed. Please check your database structure!" msgstr "La tâche de fond n'a pas encore été exécutée. Vérifiez la structure de votre base de données." -#: src/Module/Admin/Summary.php:109 +#: src/Module/Admin/Summary.php:95 #, php-format msgid "" "The last worker execution was on %s UTC. This is older than one hour. Please" " check your crontab settings." msgstr "La dernière exécution de la tâche de fond s'est déroulée à %s, c'est-à-dire il y a plus d'une heure. Vérifiez les réglages de crontab." -#: src/Module/Admin/Summary.php:114 +#: src/Module/Admin/Summary.php:100 #, php-format msgid "" "Friendica's configuration now is stored in config/local.config.php, please " @@ -5825,7 +5824,7 @@ msgid "" "help with the transition." msgstr "La configuration de votre site Friendica est maintenant stockée dans le fichier config/local.config.php, veuillez copier le fichier config/local-sample.config.php et transférer votre configuration depuis le fichier .htconfig.php. Veuillez consulter la page d'aide de configuration (en anglais) pour vous aider dans la transition." -#: src/Module/Admin/Summary.php:118 +#: src/Module/Admin/Summary.php:104 #, php-format msgid "" "Friendica's configuration now is stored in config/local.config.php, please " @@ -5834,7 +5833,7 @@ msgid "" "page for help with the transition." msgstr "La configuration de votre site Friendica est maintenant stockée dans le fichier config/local.config.php, veuillez copier le fichier config/local-sample.config.php et transférer votre configuration depuis le fichier config/local.ini.php. Veuillez consulter la page d'aide de configuration (en anglais) pour vous aider dans la transition." -#: src/Module/Admin/Summary.php:124 +#: src/Module/Admin/Summary.php:110 #, php-format msgid "" "%s is not reachable on your system. This is a severe " @@ -5842,107 +5841,107 @@ msgid "" "href=\"%s\">the installation page for help." msgstr "%s n'est pas accessible sur votre site. C'est un problème de configuration sévère qui empêche toute communication avec les serveurs distants. Veuillez consulter la page d'aide à l'installation (en anglais) pour plus d'information." -#: src/Module/Admin/Summary.php:148 +#: src/Module/Admin/Summary.php:134 #, php-format msgid "" "Friendica's system.basepath was updated from '%s' to '%s'. Please remove the" " system.basepath from your db to avoid differences." msgstr "Le system.basepath de Friendica a été mis à jour de '%s' à '%s'. Merci de supprimer le system.basepath de votre base de données pour éviter des différences." -#: src/Module/Admin/Summary.php:156 +#: src/Module/Admin/Summary.php:142 #, php-format msgid "" "Friendica's current system.basepath '%s' is wrong and the config file '%s' " "isn't used." msgstr "Le system.basepath actuel de Friendica, '%s' est erroné et le fichier de configuration '%s' n'est pas utilisé." -#: src/Module/Admin/Summary.php:164 +#: src/Module/Admin/Summary.php:150 #, php-format msgid "" "Friendica's current system.basepath '%s' is not equal to the config file " "'%s'. Please fix your configuration." msgstr "Le system.basepath '%s' actuel de Friendica n'est pas le même que le fichier de configuration '%s'. Merci de corriger votre configuration." -#: src/Module/Admin/Summary.php:175 +#: src/Module/Admin/Summary.php:161 msgid "Message queues" msgstr "Files d'attente des messages" -#: src/Module/Admin/Summary.php:181 +#: src/Module/Admin/Summary.php:167 msgid "Server Settings" msgstr "Paramètres du site" -#: src/Module/Admin/Summary.php:199 +#: src/Module/Admin/Summary.php:185 msgid "Version" msgstr "Version" -#: src/Module/Admin/Summary.php:203 +#: src/Module/Admin/Summary.php:189 msgid "Active addons" msgstr "Extensions actives" -#: src/Module/Admin/Themes/Details.php:63 src/Module/Admin/Themes/Index.php:71 +#: src/Module/Admin/Themes/Details.php:49 src/Module/Admin/Themes/Index.php:57 #, php-format msgid "Theme %s disabled." msgstr "Thème %s désactivé." -#: src/Module/Admin/Themes/Details.php:65 src/Module/Admin/Themes/Index.php:73 +#: src/Module/Admin/Themes/Details.php:51 src/Module/Admin/Themes/Index.php:59 #, php-format msgid "Theme %s successfully enabled." msgstr "Thème %s activé avec succès." -#: src/Module/Admin/Themes/Details.php:67 src/Module/Admin/Themes/Index.php:75 +#: src/Module/Admin/Themes/Details.php:53 src/Module/Admin/Themes/Index.php:61 #, php-format msgid "Theme %s failed to install." msgstr "Le thème %s a échoué à s'installer." -#: src/Module/Admin/Themes/Details.php:89 +#: src/Module/Admin/Themes/Details.php:75 msgid "Screenshot" msgstr "Capture d'écran" -#: src/Module/Admin/Themes/Details.php:97 -#: src/Module/Admin/Themes/Index.php:118 src/Module/BaseAdmin.php:93 +#: src/Module/Admin/Themes/Details.php:83 +#: src/Module/Admin/Themes/Index.php:104 src/Module/BaseAdmin.php:79 msgid "Themes" msgstr "Thèmes" -#: src/Module/Admin/Themes/Embed.php:80 +#: src/Module/Admin/Themes/Embed.php:66 msgid "Unknown theme." msgstr "Thème inconnu." -#: src/Module/Admin/Themes/Index.php:57 +#: src/Module/Admin/Themes/Index.php:43 msgid "Themes reloaded" msgstr "Thèmes rechargés" -#: src/Module/Admin/Themes/Index.php:120 +#: src/Module/Admin/Themes/Index.php:106 msgid "Reload active themes" msgstr "Recharger les thèmes actifs" -#: src/Module/Admin/Themes/Index.php:124 +#: src/Module/Admin/Themes/Index.php:110 #, php-format msgid "No themes found on the system. They should be placed in %1$s" msgstr "Aucun thème trouvé. Leur emplacement d'installation est%1$s." -#: src/Module/Admin/Themes/Index.php:125 +#: src/Module/Admin/Themes/Index.php:111 msgid "[Experimental]" msgstr "[Expérimental]" -#: src/Module/Admin/Themes/Index.php:126 +#: src/Module/Admin/Themes/Index.php:112 msgid "[Unsupported]" msgstr "[Non supporté]" -#: src/Module/Admin/Tos.php:79 +#: src/Module/Admin/Tos.php:65 msgid "Display Terms of Service" msgstr "Afficher les Conditions d'Utilisation" -#: src/Module/Admin/Tos.php:79 +#: src/Module/Admin/Tos.php:65 msgid "" "Enable the Terms of Service page. If this is enabled a link to the terms " "will be added to the registration form and the general information page." msgstr "Active la page de Conditions d'Utilisation. Un lien vers cette page est ajouté dans le formulaire d'inscription et la page A Propos." -#: src/Module/Admin/Tos.php:80 +#: src/Module/Admin/Tos.php:66 msgid "Display Privacy Statement" msgstr "Afficher la Politique de Confidentialité" -#: src/Module/Admin/Tos.php:80 +#: src/Module/Admin/Tos.php:66 #, php-format msgid "" "Show some informations regarding the needed information to operate the node " @@ -5950,160 +5949,160 @@ msgid "" "noreferrer\">EU-GDPR." msgstr "Afficher quelques informations à propos des données nécessaires pour opérer un nœud conforme par exemple au RGPD Européen." -#: src/Module/Admin/Tos.php:81 +#: src/Module/Admin/Tos.php:67 msgid "Privacy Statement Preview" msgstr "Aperçu de la Politique de Confidentialité" -#: src/Module/Admin/Tos.php:83 +#: src/Module/Admin/Tos.php:69 msgid "The Terms of Service" msgstr "Conditions d'Utilisation" -#: src/Module/Admin/Tos.php:83 +#: src/Module/Admin/Tos.php:69 msgid "" "Enter the Terms of Service for your node here. You can use BBCode. Headers " "of sections should be [h2] and below." msgstr "Saisissez les Conditions d'Utilisations de votre site. Les BBCodes sont disponibles, les titres commencent à [h2]." -#: src/Module/Admin/Tos.php:84 +#: src/Module/Admin/Tos.php:70 msgid "The rules" msgstr "Les règles" -#: src/Module/Admin/Tos.php:84 +#: src/Module/Admin/Tos.php:70 msgid "Enter your system rules here. Each line represents one rule." msgstr "Saisissez les règles de votre système ici. Chaque ligne représente une règle." -#: src/Module/Api/ApiResponse.php:293 +#: src/Module/Api/ApiResponse.php:279 #, php-format msgid "API endpoint %s %s is not implemented but might be in the future." msgstr "Le point de terminaison de l'API %s%s n'est pas implémenté mais pourrait l'être à l'avenir." -#: src/Module/Api/Mastodon/Apps.php:73 +#: src/Module/Api/Mastodon/Apps.php:59 msgid "Missing parameters" msgstr "Paramètres manquants" -#: src/Module/Api/Mastodon/Statuses/Bookmark.php:50 +#: src/Module/Api/Mastodon/Statuses/Bookmark.php:36 msgid "Only starting posts can be bookmarked" msgstr "Seuls les publications initiales peuvent être ajoutées aux signets" -#: src/Module/Api/Mastodon/Statuses/Mute.php:51 +#: src/Module/Api/Mastodon/Statuses/Mute.php:37 msgid "Only starting posts can be muted" msgstr "Les notifications de conversation ne peuvent être ignorées qu'à partir de la publication initiale" -#: src/Module/Api/Mastodon/Statuses/Reblog.php:58 +#: src/Module/Api/Mastodon/Statuses/Reblog.php:44 #, php-format msgid "Posts from %s can't be shared" msgstr "Les publications de %s ne peuvent pas être partagées" -#: src/Module/Api/Mastodon/Statuses/Unbookmark.php:51 +#: src/Module/Api/Mastodon/Statuses/Unbookmark.php:37 msgid "Only starting posts can be unbookmarked" msgstr "Seules les publications initiales peuvent être retirées des signets" -#: src/Module/Api/Mastodon/Statuses/Unmute.php:51 +#: src/Module/Api/Mastodon/Statuses/Unmute.php:37 msgid "Only starting posts can be unmuted" msgstr "Les notifications de conversation ne peuvent être rétablies qu'à partir de la publication initiale" -#: src/Module/Api/Mastodon/Statuses/Unreblog.php:64 +#: src/Module/Api/Mastodon/Statuses/Unreblog.php:50 #, php-format msgid "Posts from %s can't be unshared" msgstr "Il n'est pas possible d'annuler le partage des publications de %s " -#: src/Module/Api/Twitter/ContactEndpoint.php:66 +#: src/Module/Api/Twitter/ContactEndpoint.php:52 msgid "Contact not found" msgstr "Contact non trouvé" -#: src/Module/Apps.php:62 +#: src/Module/Apps.php:48 msgid "No installed applications." msgstr "Pas d'application installée." -#: src/Module/Apps.php:67 +#: src/Module/Apps.php:53 msgid "Applications" msgstr "Applications" -#: src/Module/Attach.php:49 src/Module/Attach.php:61 +#: src/Module/Attach.php:35 src/Module/Attach.php:47 msgid "Item was not found." msgstr "Element introuvable." -#: src/Module/BaseAdmin.php:54 src/Module/BaseAdmin.php:58 -#: src/Module/BaseModeration.php:77 src/Module/BaseModeration.php:81 +#: src/Module/BaseAdmin.php:40 src/Module/BaseAdmin.php:44 +#: src/Module/BaseModeration.php:63 src/Module/BaseModeration.php:67 msgid "Please login to continue." msgstr "Merci de vous connecter pour continuer." -#: src/Module/BaseAdmin.php:63 +#: src/Module/BaseAdmin.php:49 msgid "You don't have access to administration pages." msgstr "Vous n'avez pas accès aux pages d'administration" -#: src/Module/BaseAdmin.php:67 +#: src/Module/BaseAdmin.php:53 msgid "" "Submanaged account can't access the administration pages. Please log back in" " as the main account." msgstr "Les comptes sous-gérés ne peuvent accéder aux pages d'administration. Veuillez vous identifier avec votre compte principal à la place." -#: src/Module/BaseAdmin.php:86 src/Module/BaseModeration.php:109 +#: src/Module/BaseAdmin.php:72 src/Module/BaseModeration.php:95 msgid "Overview" msgstr "Synthèse" -#: src/Module/BaseAdmin.php:89 src/Module/BaseModeration.php:112 +#: src/Module/BaseAdmin.php:75 src/Module/BaseModeration.php:98 msgid "Configuration" msgstr "Configuration" -#: src/Module/BaseAdmin.php:94 src/Module/BaseSettings.php:110 +#: src/Module/BaseAdmin.php:80 src/Module/BaseSettings.php:96 msgid "Additional features" msgstr "Fonctions supplémentaires" -#: src/Module/BaseAdmin.php:97 +#: src/Module/BaseAdmin.php:83 msgid "Database" msgstr "Base de données" -#: src/Module/BaseAdmin.php:98 +#: src/Module/BaseAdmin.php:84 msgid "DB updates" msgstr "Mise à jour de la base" -#: src/Module/BaseAdmin.php:99 +#: src/Module/BaseAdmin.php:85 msgid "Inspect Deferred Workers" msgstr "Tâches de fond reportées" -#: src/Module/BaseAdmin.php:100 +#: src/Module/BaseAdmin.php:86 msgid "Inspect worker Queue" msgstr "Tâches de fond en attente" -#: src/Module/BaseAdmin.php:106 src/Module/BaseModeration.php:120 +#: src/Module/BaseAdmin.php:92 src/Module/BaseModeration.php:106 msgid "Diagnostics" msgstr "Diagnostics" -#: src/Module/BaseAdmin.php:107 +#: src/Module/BaseAdmin.php:93 msgid "PHP Info" msgstr "PHP Info" -#: src/Module/BaseAdmin.php:108 +#: src/Module/BaseAdmin.php:94 msgid "probe address" msgstr "Tester une adresse" -#: src/Module/BaseAdmin.php:109 +#: src/Module/BaseAdmin.php:95 msgid "check webfinger" msgstr "Vérifier le webfinger" -#: src/Module/BaseAdmin.php:110 +#: src/Module/BaseAdmin.php:96 msgid "Babel" msgstr "Babel" -#: src/Module/BaseAdmin.php:111 src/Module/Debug/ActivityPubConversion.php:143 +#: src/Module/BaseAdmin.php:97 src/Module/Debug/ActivityPubConversion.php:129 msgid "ActivityPub Conversion" msgstr "Conversion ActivityPub" -#: src/Module/BaseAdmin.php:120 +#: src/Module/BaseAdmin.php:106 msgid "Addon Features" msgstr "Fonctionnalités des extensions" -#: src/Module/BaseAdmin.php:121 src/Module/BaseModeration.php:129 +#: src/Module/BaseAdmin.php:107 src/Module/BaseModeration.php:115 msgid "User registrations waiting for confirmation" msgstr "Inscriptions en attente de confirmation" -#: src/Module/BaseApi.php:455 src/Module/BaseApi.php:471 -#: src/Module/BaseApi.php:487 +#: src/Module/BaseApi.php:441 src/Module/BaseApi.php:457 +#: src/Module/BaseApi.php:473 msgid "Too Many Requests" msgstr "Trop de requêtes" -#: src/Module/BaseApi.php:456 +#: src/Module/BaseApi.php:442 #, php-format msgid "Daily posting limit of %d post reached. The post was rejected." msgid_plural "Daily posting limit of %d posts reached. The post was rejected." @@ -6111,7 +6110,7 @@ msgstr[0] "Limite quotidienne d'%d publication atteinte. La publication a été msgstr[1] "Limite quotidienne de %d publications atteinte. La publication a été rejetée." msgstr[2] "Limite quotidienne de %d publications atteinte. La publication a été rejetée." -#: src/Module/BaseApi.php:472 +#: src/Module/BaseApi.php:458 #, php-format msgid "Weekly posting limit of %d post reached. The post was rejected." msgid_plural "" @@ -6120,7 +6119,7 @@ msgstr[0] "Limite hebdomadaire d'%d unique publication atteinte, votre soumissio msgstr[1] "Limite hebdomadaire de %d publications atteinte, votre soumission a été rejetée." msgstr[2] "Limite hebdomadaire de %d publications atteinte, votre soumission a été rejetée." -#: src/Module/BaseApi.php:488 +#: src/Module/BaseApi.php:474 #, php-format msgid "Monthly posting limit of %d post reached. The post was rejected." msgid_plural "" @@ -6129,84 +6128,84 @@ msgstr[0] "La limite mensuelle de %d publication a été atteinte. La publicatio msgstr[1] "La limite mensuelle de %d publications a été atteinte. La publication a été refusée." msgstr[2] "La limite mensuelle de %d publications a été atteinte. La publication a été refusée." -#: src/Module/BaseModeration.php:86 +#: src/Module/BaseModeration.php:72 msgid "You don't have access to moderation pages." msgstr "Vous n'avez pas accès aux pages de modération." -#: src/Module/BaseModeration.php:90 +#: src/Module/BaseModeration.php:76 msgid "" "Submanaged account can't access the moderation pages. Please log back in as " "the main account." msgstr "Les comptes sous-gérés ne peuvent accéder aux pages de modération. Veuillez vous identifier avec votre compte principal à la place." -#: src/Module/BaseModeration.php:110 src/Module/Moderation/Reports.php:115 +#: src/Module/BaseModeration.php:96 src/Module/Moderation/Reports.php:101 msgid "Reports" msgstr "Signalements" -#: src/Module/BaseModeration.php:113 src/Module/Moderation/Users/Index.php:148 -#: src/Module/Moderation/Users/Index.php:158 +#: src/Module/BaseModeration.php:99 src/Module/Moderation/Users/Index.php:134 +#: src/Module/Moderation/Users/Index.php:144 msgid "Users" msgstr "Utilisateurs" -#: src/Module/BaseModeration.php:115 +#: src/Module/BaseModeration.php:101 msgid "Tools" msgstr "Outils" -#: src/Module/BaseModeration.php:116 +#: src/Module/BaseModeration.php:102 msgid "Contact Blocklist" msgstr "Liste de contacts bloqués" -#: src/Module/BaseModeration.php:117 +#: src/Module/BaseModeration.php:103 msgid "Server Blocklist" msgstr "Serveurs bloqués" -#: src/Module/BaseModeration.php:118 src/Module/Moderation/Item/Delete.php:62 +#: src/Module/BaseModeration.php:104 src/Module/Moderation/Item/Delete.php:48 msgid "Delete Item" msgstr "Supprimer un élément" -#: src/Module/BaseModeration.php:121 src/Module/Moderation/Item/Source.php:82 +#: src/Module/BaseModeration.php:107 src/Module/Moderation/Item/Source.php:68 msgid "Item Source" msgstr "Source de la publication" -#: src/Module/BaseProfile.php:52 src/Module/Contact.php:513 +#: src/Module/BaseProfile.php:38 src/Module/Contact.php:488 msgid "Profile Details" msgstr "Détails du profil" -#: src/Module/BaseProfile.php:60 +#: src/Module/BaseProfile.php:46 msgid "Conversations started" msgstr "Discussions commencées" -#: src/Module/BaseProfile.php:111 +#: src/Module/BaseProfile.php:97 msgid "Only You Can See This" msgstr "Vous seul pouvez voir ça" -#: src/Module/BaseProfile.php:116 src/Module/Profile/Schedule.php:81 +#: src/Module/BaseProfile.php:102 src/Module/Profile/Schedule.php:67 msgid "Scheduled Posts" msgstr "Publications programmées" -#: src/Module/BaseProfile.php:119 +#: src/Module/BaseProfile.php:105 msgid "Posts that are scheduled for publishing" msgstr "Publications programmées à l'avance" -#: src/Module/BaseProfile.php:138 src/Module/BaseProfile.php:141 +#: src/Module/BaseProfile.php:124 src/Module/BaseProfile.php:127 msgid "Tips for New Members" msgstr "Conseils aux nouveaux venus" -#: src/Module/BaseSearch.php:71 +#: src/Module/BaseSearch.php:57 #, php-format msgid "People Search - %s" msgstr "Recherche de personne - %s" -#: src/Module/BaseSearch.php:75 +#: src/Module/BaseSearch.php:61 #, php-format msgid "Group Search - %s" msgstr "Recherche de groupe - %s" -#: src/Module/BaseSearch.php:121 src/Module/Contact/MatchInterests.php:140 +#: src/Module/BaseSearch.php:107 src/Module/Contact/MatchInterests.php:136 msgid "No matches" msgstr "Aucune correspondance" -#: src/Module/BaseSearch.php:147 +#: src/Module/BaseSearch.php:133 #, php-format msgid "" "%d result was filtered out because your node blocks the domain it is " @@ -6220,267 +6219,267 @@ msgstr[0] "%d résultat a été filtré car votre nœud bloque le domaine sur le msgstr[1] "%d résultats ont été filtrés car votre nœud bloque le domaine sur lequel ils sont enregistrés. Vous pouvez voir la liste des domaines que votre nœud bloque dans la page A propos." msgstr[2] "%d résultats ont été filtrés car votre nœud bloque le domaine sur lequel ils sont enregistrés. Vous pouvez voir la liste des domaines que votre nœud bloque dans la page A propos." -#: src/Module/BaseSettings.php:78 +#: src/Module/BaseSettings.php:64 msgid "Account" msgstr "Compte" -#: src/Module/BaseSettings.php:85 src/Module/Security/TwoFactor/Verify.php:96 -#: src/Module/Settings/TwoFactor/Index.php:138 +#: src/Module/BaseSettings.php:71 src/Module/Security/TwoFactor/Verify.php:82 +#: src/Module/Settings/TwoFactor/Index.php:124 msgid "Two-factor authentication" msgstr "Authentification à deux facteurs" -#: src/Module/BaseSettings.php:118 +#: src/Module/BaseSettings.php:104 msgid "Display" msgstr "Affichage" -#: src/Module/BaseSettings.php:132 src/Module/Settings/Connectors.php:213 +#: src/Module/BaseSettings.php:118 src/Module/Settings/Connectors.php:195 msgid "Social Networks" msgstr "Réseaux sociaux" -#: src/Module/BaseSettings.php:146 src/Module/Settings/Delegation.php:194 +#: src/Module/BaseSettings.php:132 src/Module/Settings/Delegation.php:180 msgid "Manage Accounts" msgstr "Gérer vos comptes" -#: src/Module/BaseSettings.php:153 +#: src/Module/BaseSettings.php:139 msgid "Connected apps" msgstr "Applications connectées" -#: src/Module/BaseSettings.php:160 +#: src/Module/BaseSettings.php:146 msgid "Remote servers" msgstr "Serveurs distants" -#: src/Module/BaseSettings.php:167 src/Module/Settings/UserExport.php:98 +#: src/Module/BaseSettings.php:153 src/Module/Settings/UserExport.php:84 msgid "Export personal data" msgstr "Exporter" -#: src/Module/BaseSettings.php:174 +#: src/Module/BaseSettings.php:160 msgid "Remove account" msgstr "Supprimer le compte" -#: src/Module/Bookmarklet.php:54 +#: src/Module/Bookmarklet.php:40 msgid "This page is missing a url parameter." msgstr "Il manque un paramètre d'URL à cette adresse." -#: src/Module/Bookmarklet.php:66 +#: src/Module/Bookmarklet.php:52 msgid "The post was created" msgstr "La publication a été créée" -#: src/Module/Calendar/Event/API.php:100 src/Module/Calendar/Event/API.php:135 -#: src/Module/Calendar/Event/Form.php:80 +#: src/Module/Calendar/Event/API.php:86 src/Module/Calendar/Event/API.php:121 +#: src/Module/Calendar/Event/Form.php:66 msgid "Invalid Request" msgstr "Requête invalide" -#: src/Module/Calendar/Event/API.php:109 +#: src/Module/Calendar/Event/API.php:95 msgid "Event id is missing." msgstr "L'identifiant de l'évènement est manquant." -#: src/Module/Calendar/Event/API.php:131 +#: src/Module/Calendar/Event/API.php:117 msgid "Failed to remove event" msgstr "La suppression de l'évènement a échoué." -#: src/Module/Calendar/Event/API.php:187 src/Module/Calendar/Event/API.php:189 +#: src/Module/Calendar/Event/API.php:173 src/Module/Calendar/Event/API.php:175 msgid "Event can not end before it has started." msgstr "L'évènement ne peut pas se terminer avant d'avoir commencé." -#: src/Module/Calendar/Event/API.php:196 src/Module/Calendar/Event/API.php:198 +#: src/Module/Calendar/Event/API.php:182 src/Module/Calendar/Event/API.php:184 msgid "Event title and start time are required." msgstr "Vous devez donner un nom et un horaire de début à l'évènement." -#: src/Module/Calendar/Event/Form.php:208 +#: src/Module/Calendar/Event/Form.php:194 msgid "Starting date and Title are required." msgstr "La date de début et le titre sont requis." -#: src/Module/Calendar/Event/Form.php:209 -#: src/Module/Calendar/Event/Form.php:214 +#: src/Module/Calendar/Event/Form.php:195 +#: src/Module/Calendar/Event/Form.php:200 msgid "Event Starts:" msgstr "Début de l'évènement :" -#: src/Module/Calendar/Event/Form.php:209 -#: src/Module/Calendar/Event/Form.php:237 src/Module/Debug/Probe.php:59 -#: src/Module/Install.php:201 src/Module/Install.php:227 -#: src/Module/Install.php:232 src/Module/Install.php:246 -#: src/Module/Install.php:255 src/Module/Install.php:260 -#: src/Module/Install.php:266 src/Module/Install.php:271 -#: src/Module/Install.php:285 src/Module/Install.php:298 -#: src/Module/Install.php:325 -#: src/Module/Moderation/Blocklist/Server/Add.php:136 -#: src/Module/Moderation/Blocklist/Server/Add.php:138 -#: src/Module/Moderation/Blocklist/Server/Import.php:129 -#: src/Module/Moderation/Blocklist/Server/Index.php:86 -#: src/Module/Moderation/Blocklist/Server/Index.php:87 -#: src/Module/Moderation/Blocklist/Server/Index.php:115 -#: src/Module/Moderation/Blocklist/Server/Index.php:116 -#: src/Module/Moderation/Item/Delete.php:67 src/Module/Register.php:155 -#: src/Module/Security/TwoFactor/Verify.php:101 -#: src/Module/Settings/Channels.php:190 src/Module/Settings/Channels.php:211 -#: src/Module/Settings/TwoFactor/Index.php:161 -#: src/Module/Settings/TwoFactor/Verify.php:158 +#: src/Module/Calendar/Event/Form.php:195 +#: src/Module/Calendar/Event/Form.php:223 src/Module/Debug/Probe.php:45 +#: src/Module/Install.php:187 src/Module/Install.php:213 +#: src/Module/Install.php:218 src/Module/Install.php:232 +#: src/Module/Install.php:241 src/Module/Install.php:246 +#: src/Module/Install.php:252 src/Module/Install.php:257 +#: src/Module/Install.php:271 src/Module/Install.php:284 +#: src/Module/Install.php:311 +#: src/Module/Moderation/Blocklist/Server/Add.php:122 +#: src/Module/Moderation/Blocklist/Server/Add.php:124 +#: src/Module/Moderation/Blocklist/Server/Import.php:113 +#: src/Module/Moderation/Blocklist/Server/Index.php:72 +#: src/Module/Moderation/Blocklist/Server/Index.php:73 +#: src/Module/Moderation/Blocklist/Server/Index.php:101 +#: src/Module/Moderation/Blocklist/Server/Index.php:102 +#: src/Module/Moderation/Item/Delete.php:53 src/Module/Register.php:141 +#: src/Module/Security/TwoFactor/Verify.php:87 +#: src/Module/Settings/Channels.php:176 src/Module/Settings/Channels.php:197 +#: src/Module/Settings/TwoFactor/Index.php:147 +#: src/Module/Settings/TwoFactor/Verify.php:144 msgid "Required" msgstr "Requis" -#: src/Module/Calendar/Event/Form.php:223 -#: src/Module/Calendar/Event/Form.php:247 +#: src/Module/Calendar/Event/Form.php:209 +#: src/Module/Calendar/Event/Form.php:233 msgid "Finish date/time is not known or not relevant" msgstr "Date / heure de fin inconnue ou sans objet" -#: src/Module/Calendar/Event/Form.php:225 -#: src/Module/Calendar/Event/Form.php:230 +#: src/Module/Calendar/Event/Form.php:211 +#: src/Module/Calendar/Event/Form.php:216 msgid "Event Finishes:" msgstr "Fin de l'évènement :" -#: src/Module/Calendar/Event/Form.php:237 -#: src/Module/Calendar/Event/Form.php:243 +#: src/Module/Calendar/Event/Form.php:223 +#: src/Module/Calendar/Event/Form.php:229 msgid "Title (BBCode not allowed)" msgstr "Titre (BBCode non autorisé)" -#: src/Module/Calendar/Event/Form.php:239 +#: src/Module/Calendar/Event/Form.php:225 msgid "Description (BBCode allowed)" msgstr "Description (BBCode autorisé)" -#: src/Module/Calendar/Event/Form.php:241 +#: src/Module/Calendar/Event/Form.php:227 msgid "Location (BBCode not allowed)" msgstr "Localisation (BBCode non autorisé)" -#: src/Module/Calendar/Event/Form.php:244 -#: src/Module/Calendar/Event/Form.php:245 +#: src/Module/Calendar/Event/Form.php:230 +#: src/Module/Calendar/Event/Form.php:231 msgid "Share this event" msgstr "Partager cet évènement" -#: src/Module/Calendar/Event/Form.php:251 src/Module/Profile/Profile.php:277 +#: src/Module/Calendar/Event/Form.php:237 src/Module/Profile/Profile.php:263 msgid "Basic" msgstr "Simple" -#: src/Module/Calendar/Export.php:94 +#: src/Module/Calendar/Export.php:80 msgid "This calendar format is not supported" msgstr "Format de calendrier inconnu" -#: src/Module/Calendar/Export.php:96 +#: src/Module/Calendar/Export.php:82 msgid "No exportable data found" msgstr "Rien à exporter" -#: src/Module/Calendar/Export.php:113 +#: src/Module/Calendar/Export.php:99 msgid "calendar" msgstr "calendrier" -#: src/Module/Calendar/Show.php:124 +#: src/Module/Calendar/Show.php:110 msgid "Events" msgstr "Évènements" -#: src/Module/Calendar/Show.php:125 +#: src/Module/Calendar/Show.php:111 msgid "View" msgstr "Vue" -#: src/Module/Calendar/Show.php:126 +#: src/Module/Calendar/Show.php:112 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:118 src/Module/Settings/Display.php:283 msgid "list" msgstr "liste" -#: src/Module/Circle.php:57 +#: src/Module/Circle.php:43 msgid "Could not create circle." msgstr "Impossible de créer le cercle." -#: src/Module/Circle.php:68 src/Module/Circle.php:216 -#: src/Module/Circle.php:240 +#: src/Module/Circle.php:54 src/Module/Circle.php:202 +#: src/Module/Circle.php:226 msgid "Circle not found." msgstr "Cercle introuvable." -#: src/Module/Circle.php:74 +#: src/Module/Circle.php:60 msgid "Circle name was not changed." msgstr "Le nom du cercle n'a pas été modifié." -#: src/Module/Circle.php:92 +#: src/Module/Circle.php:78 msgid "Unknown circle." msgstr "Cercle inconnu." -#: src/Module/Circle.php:98 src/Module/Circle.php:107 -#: src/Module/Contact/Advanced.php:70 src/Module/Contact/Advanced.php:109 -#: src/Module/Contact/Contacts.php:71 src/Module/Contact/Conversations.php:86 -#: src/Module/Contact/Conversations.php:91 -#: src/Module/Contact/Conversations.php:96 src/Module/Contact/Media.php:61 -#: src/Module/Contact/Posts.php:78 src/Module/Contact/Posts.php:83 -#: src/Module/Contact/Posts.php:88 src/Module/Contact/Profile.php:159 -#: src/Module/Contact/Profile.php:164 src/Module/Contact/Profile.php:183 -#: src/Module/Contact/Redir.php:91 src/Module/Contact/Redir.php:145 -#: src/Module/FriendSuggest.php:71 src/Module/FriendSuggest.php:109 +#: src/Module/Circle.php:84 src/Module/Circle.php:93 +#: src/Module/Contact/Advanced.php:56 src/Module/Contact/Advanced.php:95 +#: src/Module/Contact/Contacts.php:57 src/Module/Contact/Conversations.php:72 +#: src/Module/Contact/Conversations.php:77 +#: src/Module/Contact/Conversations.php:82 src/Module/Contact/Media.php:47 +#: src/Module/Contact/Posts.php:64 src/Module/Contact/Posts.php:69 +#: src/Module/Contact/Posts.php:74 src/Module/Contact/Profile.php:145 +#: src/Module/Contact/Profile.php:150 src/Module/Contact/Profile.php:169 +#: src/Module/Contact/Redir.php:77 src/Module/Contact/Redir.php:131 +#: src/Module/FriendSuggest.php:57 src/Module/FriendSuggest.php:95 msgid "Contact not found." msgstr "Contact introuvable." -#: src/Module/Circle.php:102 src/Module/Contact/Contacts.php:66 +#: src/Module/Circle.php:88 src/Module/Contact/Contacts.php:52 msgid "Invalid contact." msgstr "Contact invalide." -#: src/Module/Circle.php:111 src/Module/Contact/Revoke.php:70 +#: src/Module/Circle.php:97 src/Module/Contact/Revoke.php:56 msgid "Contact is deleted." msgstr "Le contact a été supprimé." -#: src/Module/Circle.php:117 +#: src/Module/Circle.php:103 msgid "Unable to add the contact to the circle." msgstr "Impossible d'ajouter le contact au cercle." -#: src/Module/Circle.php:120 +#: src/Module/Circle.php:106 msgid "Contact successfully added to circle." msgstr "Le contact a été ajouté au cercle." -#: src/Module/Circle.php:124 +#: src/Module/Circle.php:110 msgid "Unable to remove the contact from the circle." msgstr "Impossible de retirer le contact du cercle." -#: src/Module/Circle.php:127 +#: src/Module/Circle.php:113 msgid "Contact successfully removed from circle." msgstr "Le contact a été retiré du cercle." -#: src/Module/Circle.php:131 +#: src/Module/Circle.php:117 msgid "Bad request." msgstr "Requête invalide." -#: src/Module/Circle.php:172 +#: src/Module/Circle.php:158 msgid "Save Circle" msgstr "Enregistrer le cercle" -#: src/Module/Circle.php:173 +#: src/Module/Circle.php:159 msgid "Filter" msgstr "Filtre" -#: src/Module/Circle.php:179 +#: src/Module/Circle.php:165 msgid "Create a circle of contacts/friends." msgstr "Créer un cercle de contacts/amis." -#: src/Module/Circle.php:221 +#: src/Module/Circle.php:207 msgid "Unable to remove circle." msgstr "Impossible de supprimer le cercle." -#: src/Module/Circle.php:272 +#: src/Module/Circle.php:258 msgid "Delete Circle" msgstr "Supprimer le Cercle" -#: src/Module/Circle.php:282 +#: src/Module/Circle.php:268 msgid "Edit Circle Name" msgstr "Modifier le Nom du Cercle" -#: src/Module/Circle.php:292 +#: src/Module/Circle.php:278 msgid "Members" msgstr "Membres" -#: src/Module/Circle.php:295 +#: src/Module/Circle.php:281 msgid "Circle is empty" msgstr "Le cercle est vide" -#: src/Module/Circle.php:311 +#: src/Module/Circle.php:297 msgid "Remove contact from circle" msgstr "Retirer ce contact du cercle" -#: src/Module/Circle.php:334 +#: src/Module/Circle.php:320 msgid "Click on a contact to add or remove." msgstr "Cliquez sur un contact pour l'ajouter ou le supprimer." -#: src/Module/Circle.php:351 +#: src/Module/Circle.php:337 msgid "Add contact to circle" msgstr "Ajouter ce contact au cercle" -#: src/Module/Contact.php:102 +#: src/Module/Contact.php:88 #, php-format msgid "%d contact edited." msgid_plural "%d contacts edited." @@ -6488,192 +6487,192 @@ msgstr[0] "%d contact mis à jour." msgstr[1] "%d contacts mis à jour." msgstr[2] "%d contacts mis à jour." -#: src/Module/Contact.php:353 +#: src/Module/Contact.php:328 msgid "Show all contacts" msgstr "Montrer tous les contacts" -#: src/Module/Contact.php:358 src/Module/Contact.php:437 -#: src/Module/Moderation/BaseUsers.php:85 +#: src/Module/Contact.php:333 src/Module/Contact.php:412 +#: src/Module/Moderation/BaseUsers.php:72 msgid "Pending" msgstr "En attente" -#: src/Module/Contact.php:361 +#: src/Module/Contact.php:336 msgid "Only show pending contacts" msgstr "Ne montrer que les demandes d'abonnement" -#: src/Module/Contact.php:366 src/Module/Contact.php:440 -#: src/Module/Moderation/BaseUsers.php:93 +#: src/Module/Contact.php:341 src/Module/Contact.php:415 +#: src/Module/Moderation/BaseUsers.php:80 msgid "Blocked" msgstr "Bloqués" -#: src/Module/Contact.php:369 +#: src/Module/Contact.php:344 msgid "Only show blocked contacts" msgstr "Ne montrer que les contacts bloqués" -#: src/Module/Contact.php:374 src/Module/Contact.php:446 -#: src/Module/Settings/Server/Index.php:107 src/Object/Post.php:399 +#: src/Module/Contact.php:349 src/Module/Contact.php:421 +#: src/Module/Settings/Server/Index.php:93 src/Object/Post.php:385 msgid "Ignored" msgstr "Ignorés" -#: src/Module/Contact.php:377 +#: src/Module/Contact.php:352 msgid "Only show ignored contacts" msgstr "Ne montrer que les contacts ignorés" -#: src/Module/Contact.php:382 src/Module/Contact.php:449 +#: src/Module/Contact.php:357 src/Module/Contact.php:424 msgid "Collapsed" msgstr "Réduits" -#: src/Module/Contact.php:385 +#: src/Module/Contact.php:360 msgid "Only show collapsed contacts" msgstr "N'afficher que les contacts réduits" -#: src/Module/Contact.php:390 src/Module/Contact.php:452 +#: src/Module/Contact.php:365 src/Module/Contact.php:427 msgid "Archived" msgstr "Archivés" -#: src/Module/Contact.php:393 +#: src/Module/Contact.php:368 msgid "Only show archived contacts" msgstr "Ne montrer que les contacts archivés" -#: src/Module/Contact.php:398 src/Module/Contact.php:443 +#: src/Module/Contact.php:373 src/Module/Contact.php:418 msgid "Hidden" msgstr "Cachés" -#: src/Module/Contact.php:401 +#: src/Module/Contact.php:376 msgid "Only show hidden contacts" msgstr "Ne montrer que les contacts masqués" -#: src/Module/Contact.php:409 +#: src/Module/Contact.php:384 msgid "Organize your contact circles" msgstr "Organisez vos cercles de contact" -#: src/Module/Contact.php:464 +#: src/Module/Contact.php:439 msgid "Search your contacts" msgstr "Rechercher dans vos contacts" -#: src/Module/Contact.php:465 src/Module/Search/Index.php:207 +#: src/Module/Contact.php:440 src/Module/Search/Index.php:193 #, php-format msgid "Results for: %s" msgstr "Résultats pour : %s" -#: src/Module/Contact.php:473 +#: src/Module/Contact.php:448 msgid "Update" msgstr "Mises à jour" -#: src/Module/Contact.php:474 src/Module/Contact/Profile.php:532 -#: src/Module/Moderation/Blocklist/Contact.php:117 -#: src/Module/Moderation/Users/Blocked.php:138 -#: src/Module/Moderation/Users/Index.php:154 +#: src/Module/Contact.php:449 src/Module/Contact/Profile.php:518 +#: src/Module/Moderation/Blocklist/Contact.php:103 +#: src/Module/Moderation/Users/Blocked.php:124 +#: src/Module/Moderation/Users/Index.php:140 msgid "Unblock" msgstr "Débloquer" -#: src/Module/Contact.php:475 src/Module/Contact/Profile.php:540 +#: src/Module/Contact.php:450 src/Module/Contact/Profile.php:526 msgid "Unignore" msgstr "Ne plus ignorer" -#: src/Module/Contact.php:476 src/Module/Contact/Profile.php:548 +#: src/Module/Contact.php:451 src/Module/Contact/Profile.php:534 msgid "Uncollapse" msgstr "Ne plus réduire" -#: src/Module/Contact.php:478 +#: src/Module/Contact.php:453 msgid "Batch Actions" msgstr "Actions multiples" -#: src/Module/Contact.php:521 +#: src/Module/Contact.php:496 msgid "Conversations started by this contact" msgstr "Conversations entamées par ce contact" -#: src/Module/Contact.php:526 +#: src/Module/Contact.php:501 msgid "Posts and Comments" msgstr "Publications et commentaires" -#: src/Module/Contact.php:529 +#: src/Module/Contact.php:504 msgid "Individual Posts and Replies" msgstr "Publications et réponses individuelles" -#: src/Module/Contact.php:537 +#: src/Module/Contact.php:512 msgid "Posts containing media objects" msgstr "Publications contenant des objets média" -#: src/Module/Contact.php:545 +#: src/Module/Contact.php:520 msgid "View all known contacts" msgstr "Voir tous les contacts connus" -#: src/Module/Contact.php:556 +#: src/Module/Contact.php:531 msgid "Advanced Contact Settings" msgstr "Réglages avancés du contact" -#: src/Module/Contact.php:592 +#: src/Module/Contact.php:567 msgid "Mutual Friendship" msgstr "Relation réciproque" -#: src/Module/Contact.php:596 +#: src/Module/Contact.php:571 msgid "is a fan of yours" msgstr "Vous suit" -#: src/Module/Contact.php:600 +#: src/Module/Contact.php:575 msgid "you are a fan of" msgstr "Vous le/la suivez" -#: src/Module/Contact.php:618 +#: src/Module/Contact.php:593 msgid "Pending outgoing contact request" msgstr "Demande d'abonnement distant en attente" -#: src/Module/Contact.php:620 +#: src/Module/Contact.php:595 msgid "Pending incoming contact request" msgstr "Demande d'abonnement à votre compte en attente" -#: src/Module/Contact.php:633 src/Module/Contact/Profile.php:391 +#: src/Module/Contact.php:608 src/Module/Contact/Profile.php:377 #, php-format msgid "Visit %s's profile [%s]" msgstr "Visiter le profil de %s [%s]" -#: src/Module/Contact/Advanced.php:99 +#: src/Module/Contact/Advanced.php:85 msgid "Contact update failed." msgstr "Impossible d'appliquer les réglages." -#: src/Module/Contact/Advanced.php:130 +#: src/Module/Contact/Advanced.php:116 msgid "Return to contact editor" msgstr "Retour à l'éditeur de contact" -#: src/Module/Contact/Advanced.php:134 -#: src/Module/Moderation/Blocklist/Contact.php:122 -#: src/Module/Moderation/Reports.php:116 -#: src/Module/Moderation/Users/Active.php:126 -#: src/Module/Moderation/Users/Blocked.php:126 -#: src/Module/Moderation/Users/Create.php:70 -#: src/Module/Moderation/Users/Deleted.php:83 -#: src/Module/Moderation/Users/Index.php:140 -#: src/Module/Moderation/Users/Index.php:160 -#: src/Module/Moderation/Users/Pending.php:99 src/Module/Settings/OAuth.php:72 +#: src/Module/Contact/Advanced.php:120 +#: src/Module/Moderation/Blocklist/Contact.php:108 +#: src/Module/Moderation/Reports.php:102 +#: src/Module/Moderation/Users/Active.php:112 +#: src/Module/Moderation/Users/Blocked.php:112 +#: src/Module/Moderation/Users/Create.php:56 +#: src/Module/Moderation/Users/Deleted.php:69 +#: src/Module/Moderation/Users/Index.php:126 +#: src/Module/Moderation/Users/Index.php:146 +#: src/Module/Moderation/Users/Pending.php:85 src/Module/Settings/OAuth.php:58 msgid "Name" msgstr "Nom" -#: src/Module/Contact/Advanced.php:135 +#: src/Module/Contact/Advanced.php:121 msgid "Account Nickname" msgstr "Pseudo du compte" -#: src/Module/Contact/Advanced.php:136 +#: src/Module/Contact/Advanced.php:122 msgid "Account URL" msgstr "URL du compte" -#: src/Module/Contact/Advanced.php:137 +#: src/Module/Contact/Advanced.php:123 msgid "Poll/Feed URL" msgstr "Téléverser des photos" -#: src/Module/Contact/Advanced.php:138 +#: src/Module/Contact/Advanced.php:124 msgid "New photo from this URL" msgstr "Nouvelle photo depuis cette URL" -#: src/Module/Contact/Contacts.php:89 +#: src/Module/Contact/Contacts.php:75 msgid "No known contacts." msgstr "Aucun contact connu." -#: src/Module/Contact/Contacts.php:103 src/Module/Profile/Common.php:128 +#: src/Module/Contact/Contacts.php:89 src/Module/Profile/Common.php:114 msgid "No common contacts." msgstr "Aucun contact en commun." -#: src/Module/Contact/Contacts.php:115 src/Module/Profile/Contacts.php:135 +#: src/Module/Contact/Contacts.php:101 src/Module/Profile/Contacts.php:121 #, php-format msgid "Follower (%s)" msgid_plural "Followers (%s)" @@ -6681,7 +6680,7 @@ msgstr[0] "Abonné (%s)" msgstr[1] "Abonnés (%s)" msgstr[2] "Abonnés (%s)" -#: src/Module/Contact/Contacts.php:119 src/Module/Profile/Contacts.php:138 +#: src/Module/Contact/Contacts.php:105 src/Module/Profile/Contacts.php:124 #, php-format msgid "Following (%s)" msgid_plural "Following (%s)" @@ -6689,7 +6688,7 @@ msgstr[0] "Abonnement (%s)" msgstr[1] "Abonnements (%s)" msgstr[2] "Abonnements (%s)" -#: src/Module/Contact/Contacts.php:123 src/Module/Profile/Contacts.php:141 +#: src/Module/Contact/Contacts.php:109 src/Module/Profile/Contacts.php:127 #, php-format msgid "Mutual friend (%s)" msgid_plural "Mutual friends (%s)" @@ -6697,12 +6696,12 @@ msgstr[0] "Contact mutuel (%s)" msgstr[1] "Contacts mutuels (%s)" msgstr[2] "Contacts mutuels (%s)" -#: src/Module/Contact/Contacts.php:125 src/Module/Profile/Contacts.php:143 +#: src/Module/Contact/Contacts.php:111 src/Module/Profile/Contacts.php:129 #, php-format msgid "These contacts both follow and are followed by %s." msgstr "Ces contacts sont mutuellement abonnés avec %s." -#: src/Module/Contact/Contacts.php:131 src/Module/Profile/Common.php:116 +#: src/Module/Contact/Contacts.php:117 src/Module/Profile/Common.php:102 #, php-format msgid "Common contact (%s)" msgid_plural "Common contacts (%s)" @@ -6710,14 +6709,14 @@ msgstr[0] "Contact commun (%s)" msgstr[1] "Contacts communs (%s)" msgstr[2] "Contacts communs (%s)" -#: src/Module/Contact/Contacts.php:133 src/Module/Profile/Common.php:118 +#: src/Module/Contact/Contacts.php:119 src/Module/Profile/Common.php:104 #, php-format msgid "" "Both %s and yourself have publicly interacted with these " "contacts (follow, comment or likes on public posts)." msgstr "%s et vous-mêmes avez interagi publiquement avec ces contacts (abonnement, commentaires ou \"J'aime\" sur des publications publiques)" -#: src/Module/Contact/Contacts.php:139 src/Module/Profile/Contacts.php:149 +#: src/Module/Contact/Contacts.php:125 src/Module/Profile/Contacts.php:135 #, php-format msgid "Contact (%s)" msgid_plural "Contacts (%s)" @@ -6725,333 +6724,329 @@ msgstr[0] "Contact (%s)" msgstr[1] "Contacts (%s)" msgstr[2] "Contacts (%s)" -#: src/Module/Contact/Follow.php:70 src/Module/Contact/Redir.php:59 -#: src/Module/Contact/Redir.php:220 src/Module/Conversation/Community.php:166 -#: src/Module/Debug/ItemBody.php:38 src/Module/Diaspora/Receive.php:59 -#: src/Module/Item/Display.php:96 src/Module/Item/Feed.php:59 -#: src/Module/Item/Follow.php:41 src/Module/Item/Ignore.php:41 -#: src/Module/Item/Language.php:53 src/Module/Item/Pin.php:41 -#: src/Module/Item/Pin.php:56 src/Module/Item/Searchtext.php:53 -#: src/Module/Item/Star.php:42 src/Module/Update/Display.php:37 +#: src/Module/Contact/Follow.php:56 src/Module/Contact/Redir.php:45 +#: src/Module/Contact/Redir.php:206 src/Module/Conversation/Community.php:154 +#: src/Module/Debug/ItemBody.php:24 src/Module/Diaspora/Receive.php:45 +#: src/Module/Item/Display.php:82 src/Module/Item/Feed.php:45 +#: src/Module/Item/Follow.php:27 src/Module/Item/Ignore.php:27 +#: src/Module/Item/Language.php:39 src/Module/Item/Pin.php:27 +#: src/Module/Item/Pin.php:42 src/Module/Item/Searchtext.php:39 +#: src/Module/Item/Star.php:28 src/Module/Update/Display.php:23 msgid "Access denied." msgstr "Accès refusé." -#: src/Module/Contact/Follow.php:105 src/Module/Contact/Unfollow.php:125 -#: src/Module/Profile/RemoteFollow.php:133 +#: src/Module/Contact/Follow.php:91 src/Module/Contact/Unfollow.php:111 +#: src/Module/Profile/RemoteFollow.php:119 msgid "Submit Request" msgstr "Envoyer la requête" -#: src/Module/Contact/Follow.php:115 +#: src/Module/Contact/Follow.php:101 msgid "You already added this contact." msgstr "Vous avez déjà ajouté ce contact." -#: src/Module/Contact/Follow.php:130 +#: src/Module/Contact/Follow.php:116 msgid "The network type couldn't be detected. Contact can't be added." msgstr "Impossible de détecter le type de réseau. Le contact ne peut pas être ajouté." -#: src/Module/Contact/Follow.php:138 +#: src/Module/Contact/Follow.php:124 msgid "Diaspora support isn't enabled. Contact can't be added." msgstr "Le support de Diaspora est désactivé. Le contact ne peut pas être ajouté." -#: src/Module/Contact/Follow.php:143 -msgid "OStatus support is disabled. Contact can't be added." -msgstr "Le support d'OStatus est désactivé. Le contact ne peut pas être ajouté." - -#: src/Module/Contact/Follow.php:168 src/Module/Profile/RemoteFollow.php:132 +#: src/Module/Contact/Follow.php:149 src/Module/Profile/RemoteFollow.php:118 msgid "Please answer the following:" msgstr "Merci de répondre à ce qui suit :" -#: src/Module/Contact/Follow.php:169 src/Module/Contact/Unfollow.php:123 +#: src/Module/Contact/Follow.php:150 src/Module/Contact/Unfollow.php:109 msgid "Your Identity Address:" msgstr "Votre adresse d'identité :" -#: src/Module/Contact/Follow.php:170 src/Module/Contact/Profile.php:422 -#: src/Module/Contact/Unfollow.php:129 -#: src/Module/Moderation/Blocklist/Contact.php:131 -#: src/Module/Moderation/Reports.php:123 -#: src/Module/Notifications/Introductions.php:135 -#: src/Module/Notifications/Introductions.php:204 +#: src/Module/Contact/Follow.php:151 src/Module/Contact/Profile.php:408 +#: src/Module/Contact/Unfollow.php:115 +#: src/Module/Moderation/Blocklist/Contact.php:117 +#: src/Module/Moderation/Reports.php:109 +#: src/Module/Notifications/Introductions.php:121 +#: src/Module/Notifications/Introductions.php:190 msgid "Profile URL" msgstr "URL du Profil" -#: src/Module/Contact/Follow.php:171 src/Module/Contact/Profile.php:434 -#: src/Module/Notifications/Introductions.php:197 -#: src/Module/Profile/Profile.php:236 +#: src/Module/Contact/Follow.php:152 src/Module/Contact/Profile.php:420 +#: src/Module/Notifications/Introductions.php:183 +#: src/Module/Profile/Profile.php:222 msgid "Tags:" msgstr "Étiquettes :" -#: src/Module/Contact/Follow.php:182 +#: src/Module/Contact/Follow.php:163 #, php-format msgid "%s knows you" msgstr "%s vous connaît" -#: src/Module/Contact/Follow.php:183 +#: src/Module/Contact/Follow.php:164 msgid "Add a personal note:" msgstr "Ajouter une note personnelle :" -#: src/Module/Contact/Follow.php:192 src/Module/Contact/Unfollow.php:138 +#: src/Module/Contact/Follow.php:173 src/Module/Contact/Unfollow.php:124 msgid "Posts and Replies" msgstr "Publications et réponses" -#: src/Module/Contact/Follow.php:221 +#: src/Module/Contact/Follow.php:202 msgid "The contact could not be added." msgstr "Le contact n'a pas pu être ajouté." -#: src/Module/Contact/MatchInterests.php:95 -#: src/Module/Media/Attachment/Upload.php:77 -#: src/Module/Media/Attachment/Upload.php:82 -#: src/Module/Media/Photo/Upload.php:81 src/Module/Media/Photo/Upload.php:86 -#: src/Module/Media/Photo/Upload.php:135 +#: src/Module/Contact/MatchInterests.php:81 +#: src/Module/Media/Attachment/Upload.php:63 +#: src/Module/Media/Attachment/Upload.php:68 +#: src/Module/Media/Photo/Upload.php:67 src/Module/Media/Photo/Upload.php:72 +#: src/Module/Media/Photo/Upload.php:121 msgid "Invalid request." msgstr "Requête invalide." -#: src/Module/Contact/MatchInterests.php:102 +#: src/Module/Contact/MatchInterests.php:88 msgid "No keywords to match. Please add keywords to your profile." msgstr "Aucun mot-clé ne correspond. Merci d'ajouter des mots-clés à votre profil." -#: src/Module/Contact/MatchInterests.php:145 +#: src/Module/Contact/MatchInterests.php:141 msgid "Profile Match" msgstr "Correpondance de profils" -#: src/Module/Contact/Profile.php:145 +#: src/Module/Contact/Profile.php:131 msgid "Failed to update contact record." msgstr "Échec de mise à jour du contact." -#: src/Module/Contact/Profile.php:209 +#: src/Module/Contact/Profile.php:195 msgid "Contact has been unblocked" msgstr "Le contact n'est plus bloqué" -#: src/Module/Contact/Profile.php:213 +#: src/Module/Contact/Profile.php:199 msgid "Contact has been blocked" msgstr "Le contact a été bloqué" -#: src/Module/Contact/Profile.php:225 +#: src/Module/Contact/Profile.php:211 msgid "Contact has been unignored" msgstr "Le contact n'est plus ignoré" -#: src/Module/Contact/Profile.php:229 +#: src/Module/Contact/Profile.php:215 msgid "Contact has been ignored" msgstr "Le contact a été ignoré" -#: src/Module/Contact/Profile.php:241 +#: src/Module/Contact/Profile.php:227 msgid "Contact has been uncollapsed" msgstr "Le contact n'est plus réduit" -#: src/Module/Contact/Profile.php:245 +#: src/Module/Contact/Profile.php:231 msgid "Contact has been collapsed" msgstr "Le contact a été réduit" -#: src/Module/Contact/Profile.php:273 +#: src/Module/Contact/Profile.php:259 #, php-format msgid "You are mutual friends with %s" msgstr "Vous êtes ami (et réciproquement) avec %s" -#: src/Module/Contact/Profile.php:274 +#: src/Module/Contact/Profile.php:260 #, php-format msgid "You are sharing with %s" msgstr "Vous partagez avec %s" -#: src/Module/Contact/Profile.php:275 +#: src/Module/Contact/Profile.php:261 #, php-format msgid "%s is sharing with you" msgstr "%s partage avec vous" -#: src/Module/Contact/Profile.php:291 +#: src/Module/Contact/Profile.php:277 msgid "Private communications are not available for this contact." msgstr "Les communications privées ne sont pas disponibles pour ce contact." -#: src/Module/Contact/Profile.php:301 +#: src/Module/Contact/Profile.php:287 msgid "This contact is on a server you ignored." msgstr "Ce contact est sur un serveur que vous ignorez." -#: src/Module/Contact/Profile.php:304 +#: src/Module/Contact/Profile.php:290 msgid "Never" msgstr "Jamais" -#: src/Module/Contact/Profile.php:307 +#: src/Module/Contact/Profile.php:293 msgid "(Update was not successful)" msgstr "(Échec de la mise à jour)" -#: src/Module/Contact/Profile.php:307 +#: src/Module/Contact/Profile.php:293 msgid "(Update was successful)" msgstr "(Mise à jour effectuée avec succès)" -#: src/Module/Contact/Profile.php:309 src/Module/Contact/Profile.php:503 +#: src/Module/Contact/Profile.php:295 src/Module/Contact/Profile.php:489 msgid "Suggest friends" msgstr "Suggérer des abonnements" -#: src/Module/Contact/Profile.php:313 +#: src/Module/Contact/Profile.php:299 #, php-format msgid "Network type: %s" msgstr "Type de réseau %s" -#: src/Module/Contact/Profile.php:318 +#: src/Module/Contact/Profile.php:304 msgid "Communications lost with this contact!" msgstr "Communications perdues avec ce contact !" -#: src/Module/Contact/Profile.php:324 +#: src/Module/Contact/Profile.php:310 msgid "Fetch further information for feeds" msgstr "Chercher plus d'informations pour les flux" -#: src/Module/Contact/Profile.php:326 +#: src/Module/Contact/Profile.php:312 msgid "" "Fetch information like preview pictures, title and teaser from the feed " "item. You can activate this if the feed doesn't contain much text. Keywords " "are taken from the meta header in the feed item and are posted as hash tags." msgstr "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:329 +#: src/Module/Contact/Profile.php:315 msgid "Fetch information" msgstr "Récupérer informations" -#: src/Module/Contact/Profile.php:330 +#: src/Module/Contact/Profile.php:316 msgid "Fetch keywords" msgstr "Récupérer les mots-clés" -#: src/Module/Contact/Profile.php:331 +#: src/Module/Contact/Profile.php:317 msgid "Fetch information and keywords" msgstr "Récupérer informations" -#: src/Module/Contact/Profile.php:341 src/Module/Contact/Profile.php:346 -#: src/Module/Contact/Profile.php:351 src/Module/Contact/Profile.php:357 +#: src/Module/Contact/Profile.php:327 src/Module/Contact/Profile.php:332 +#: src/Module/Contact/Profile.php:337 src/Module/Contact/Profile.php:343 msgid "No mirroring" msgstr "Pas de miroir" -#: src/Module/Contact/Profile.php:342 src/Module/Contact/Profile.php:352 -#: src/Module/Contact/Profile.php:358 +#: src/Module/Contact/Profile.php:328 src/Module/Contact/Profile.php:338 +#: src/Module/Contact/Profile.php:344 msgid "Mirror as my own posting" msgstr "Refléter les publications de ce profil comme les vôtres" -#: src/Module/Contact/Profile.php:347 src/Module/Contact/Profile.php:353 +#: src/Module/Contact/Profile.php:333 src/Module/Contact/Profile.php:339 msgid "Native reshare" msgstr "Partage natif" -#: src/Module/Contact/Profile.php:373 +#: src/Module/Contact/Profile.php:359 msgid "Contact Information / Notes" msgstr "Informations de contact / Notes" -#: src/Module/Contact/Profile.php:374 +#: src/Module/Contact/Profile.php:360 msgid "Contact Settings" msgstr "Paramètres du Contact" -#: src/Module/Contact/Profile.php:382 +#: src/Module/Contact/Profile.php:368 msgid "Contact" msgstr "Contact" -#: src/Module/Contact/Profile.php:386 +#: src/Module/Contact/Profile.php:372 msgid "Their personal note" msgstr "Leur note personnelle" -#: src/Module/Contact/Profile.php:388 +#: src/Module/Contact/Profile.php:374 msgid "Edit contact notes" msgstr "Éditer les notes des contacts" -#: src/Module/Contact/Profile.php:392 +#: src/Module/Contact/Profile.php:378 msgid "Block/Unblock contact" msgstr "Bloquer/débloquer ce contact" -#: src/Module/Contact/Profile.php:393 -#: src/Module/Moderation/Report/Create.php:293 +#: src/Module/Contact/Profile.php:379 +#: src/Module/Moderation/Report/Create.php:279 msgid "Ignore contact" msgstr "Ignorer ce contact" -#: src/Module/Contact/Profile.php:394 +#: src/Module/Contact/Profile.php:380 msgid "View conversations" msgstr "Voir les conversations" -#: src/Module/Contact/Profile.php:399 +#: src/Module/Contact/Profile.php:385 msgid "Last update:" msgstr "Dernière mise-à-jour :" -#: src/Module/Contact/Profile.php:401 +#: src/Module/Contact/Profile.php:387 msgid "Update public posts" msgstr "Fréquence de mise à jour:" -#: src/Module/Contact/Profile.php:403 src/Module/Contact/Profile.php:513 +#: src/Module/Contact/Profile.php:389 src/Module/Contact/Profile.php:499 msgid "Update now" msgstr "Mettre à jour" -#: src/Module/Contact/Profile.php:405 +#: src/Module/Contact/Profile.php:391 msgid "Awaiting connection acknowledge" msgstr "En attente de confirmation d'abonnement" -#: src/Module/Contact/Profile.php:406 +#: src/Module/Contact/Profile.php:392 msgid "Currently blocked" msgstr "Actuellement bloqué" -#: src/Module/Contact/Profile.php:407 +#: src/Module/Contact/Profile.php:393 msgid "Currently ignored" msgstr "Actuellement ignoré" -#: src/Module/Contact/Profile.php:408 +#: src/Module/Contact/Profile.php:394 msgid "Currently collapsed" msgstr "Actuellement réduit" -#: src/Module/Contact/Profile.php:409 +#: src/Module/Contact/Profile.php:395 msgid "Currently archived" msgstr "Actuellement archivé" -#: src/Module/Contact/Profile.php:412 +#: src/Module/Contact/Profile.php:398 msgid "Manage remote servers" msgstr "Gérer les serveurs distants" -#: src/Module/Contact/Profile.php:414 -#: src/Module/Notifications/Introductions.php:198 +#: src/Module/Contact/Profile.php:400 +#: src/Module/Notifications/Introductions.php:184 msgid "Hide this contact from others" msgstr "Cacher ce contact aux autres" -#: src/Module/Contact/Profile.php:414 +#: src/Module/Contact/Profile.php:400 msgid "" "Replies/likes to your public posts may still be visible" msgstr "Les réponses et \"j'aime\" à vos publications publiques peuvent être toujours visibles" -#: src/Module/Contact/Profile.php:415 +#: src/Module/Contact/Profile.php:401 msgid "Notification for new posts" msgstr "Notification des nouvelles publications" -#: src/Module/Contact/Profile.php:415 +#: src/Module/Contact/Profile.php:401 msgid "Send a notification of every new post of this contact" msgstr "Envoyer une notification de chaque nouveau message en provenance de ce contact" -#: src/Module/Contact/Profile.php:417 +#: src/Module/Contact/Profile.php:403 msgid "Keyword Deny List" msgstr "Liste de mot-clefs interdits" -#: src/Module/Contact/Profile.php:417 +#: src/Module/Contact/Profile.php:403 msgid "" "Comma separated list of keywords that should not be converted to hashtags, " "when \"Fetch information and keywords\" is selected" msgstr "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:435 -#: src/Module/Settings/TwoFactor/Index.php:160 +#: src/Module/Contact/Profile.php:421 +#: src/Module/Settings/TwoFactor/Index.php:146 msgid "Actions" msgstr "Actions" -#: src/Module/Contact/Profile.php:437 -#: src/Module/Settings/TwoFactor/Index.php:140 view/theme/frio/theme.php:232 +#: src/Module/Contact/Profile.php:423 +#: src/Module/Settings/TwoFactor/Index.php:126 view/theme/frio/theme.php:220 msgid "Status" msgstr "Statut" -#: src/Module/Contact/Profile.php:443 +#: src/Module/Contact/Profile.php:429 msgid "Mirror postings from this contact" msgstr "Copier les publications de ce contact" -#: src/Module/Contact/Profile.php:445 +#: src/Module/Contact/Profile.php:431 msgid "" "Mark this contact as remote_self, this will cause friendica to repost new " "entries from this contact." msgstr "Marquer ce contact comme étant remote_self, friendica republiera alors les nouvelles entrées de ce contact." -#: src/Module/Contact/Profile.php:448 +#: src/Module/Contact/Profile.php:434 msgid "Channel Settings" msgstr "Paramètres de Chaîne" -#: src/Module/Contact/Profile.php:449 +#: src/Module/Contact/Profile.php:435 msgid "Frequency of this contact in relevant channels" msgstr "Fréquence de ce contact dans les chaînes pertinentes" -#: src/Module/Contact/Profile.php:450 +#: src/Module/Contact/Profile.php:436 msgid "" "Depending on the type of the channel not all posts from this contact are " "displayed. By default, posts need to have a minimum amount of interactions " @@ -7061,707 +7056,707 @@ msgid "" "block or hide the contact completely." msgstr "Selon le type de chaîne, les publications de ce contact ne seront pas toutes affichées. Par défaut, les publications ont besoins d'avoir un minimum d'interaction (commentaires, aimes) pour être visible dans vos chaînes. D'un autre côté, il peut y avoir des contacts qui inondent la chaîne, vous souhaiteriez donc ne voir que certaines de ces publications. Ou vous souhaiteriez ne pas les voir du tout, sans pour autant bloquer ou masquer complètement le contact." -#: src/Module/Contact/Profile.php:451 +#: src/Module/Contact/Profile.php:437 msgid "Default frequency" msgstr "Fréquence par défaut" -#: src/Module/Contact/Profile.php:451 +#: src/Module/Contact/Profile.php:437 msgid "" "Posts by this contact are displayed in the \"for you\" channel if you " "interact often with this contact or if a post reached some level of " "interaction." msgstr "Les publications de ce contact sont affichées dans la chaîne \"Pour vous\" si vous interagissez souvent avec ce contact ou si une publication atteint un certain niveau d'interaction." -#: src/Module/Contact/Profile.php:452 +#: src/Module/Contact/Profile.php:438 msgid "Display all posts of this contact" msgstr "Afficher toutes les publications de ce contact" -#: src/Module/Contact/Profile.php:452 +#: src/Module/Contact/Profile.php:438 msgid "All posts from this contact will appear on the \"for you\" channel" msgstr "Toutes les publications de ce contact apparaîtront dans la chaîne \"Pour vous\"." -#: src/Module/Contact/Profile.php:453 +#: src/Module/Contact/Profile.php:439 msgid "Display only few posts" msgstr "Afficher quelques publications" -#: src/Module/Contact/Profile.php:453 +#: src/Module/Contact/Profile.php:439 msgid "" "When a contact creates a lot of posts in a short period, this setting " "reduces the number of displayed posts in every channel." msgstr "Lorsqu'un contact créé beaucoup de publications en peu de temps, ce paramètre réduit le nombre de publications affichées dans chaque chaîne." -#: src/Module/Contact/Profile.php:454 +#: src/Module/Contact/Profile.php:440 msgid "Never display posts" msgstr "Afficher aucune publication" -#: src/Module/Contact/Profile.php:454 +#: src/Module/Contact/Profile.php:440 msgid "Posts from this contact will never be displayed in any channel" msgstr "Les publications de ce contact n'apparaîtront jamais dans les chaînes" -#: src/Module/Contact/Profile.php:455 +#: src/Module/Contact/Profile.php:441 msgid "Channel Only" msgstr "Chaîne uniquement" -#: src/Module/Contact/Profile.php:455 +#: src/Module/Contact/Profile.php:441 msgid "" "If enabled, posts from this contact will only appear in channels and network" " streams in circles, but not in the general network stream." msgstr "Si activé, les publications de ce contact n'apparaîtront que dans les canaux et les flux réseau des cercles, mais pas dans le flux réseau général." -#: src/Module/Contact/Profile.php:523 +#: src/Module/Contact/Profile.php:509 msgid "Refetch contact data" msgstr "Récupérer à nouveau les données de contact" -#: src/Module/Contact/Profile.php:534 +#: src/Module/Contact/Profile.php:520 msgid "Toggle Blocked status" msgstr "(dés)activer l'état \"bloqué\"" -#: src/Module/Contact/Profile.php:542 +#: src/Module/Contact/Profile.php:528 msgid "Toggle Ignored status" msgstr "(dés)activer l'état \"ignoré\"" -#: src/Module/Contact/Profile.php:550 +#: src/Module/Contact/Profile.php:536 msgid "Toggle Collapsed status" msgstr "Commuter le statut réduit" -#: src/Module/Contact/Profile.php:557 src/Module/Contact/Revoke.php:103 +#: src/Module/Contact/Profile.php:543 src/Module/Contact/Revoke.php:89 msgid "Revoke Follow" msgstr "Révoquer le suivi" -#: src/Module/Contact/Profile.php:559 +#: src/Module/Contact/Profile.php:545 msgid "Revoke the follow from this contact" msgstr "Empêcher ce contact de vous suivre " -#: src/Module/Contact/Redir.php:139 +#: src/Module/Contact/Redir.php:125 msgid "Bad Request." msgstr "Mauvaise requête." -#: src/Module/Contact/Revoke.php:74 +#: src/Module/Contact/Revoke.php:60 msgid "Contact is being deleted." msgstr "Le contact est en cours de suppression." -#: src/Module/Contact/Revoke.php:88 +#: src/Module/Contact/Revoke.php:74 msgid "Follow was successfully revoked." msgstr "Le suivi a été révoqué avec succès." -#: src/Module/Contact/Revoke.php:104 +#: src/Module/Contact/Revoke.php:90 msgid "" "Do you really want to revoke this contact's follow? This cannot be undone " "and they will have to manually follow you back again." msgstr "Voulez-vous vraiment révoquer l'abonnement de ce contact ? Cela ne peut être annulé et il devra se réabonner à vous manuellement." -#: src/Module/Contact/Suggestions.php:62 +#: src/Module/Contact/Suggestions.php:48 msgid "" "No suggestions available. If this is a new site, please try again in 24 " "hours." msgstr "Aucune suggestion. Si ce site est récent, merci de recommencer dans 24h." -#: src/Module/Contact/Unfollow.php:98 src/Module/Contact/Unfollow.php:167 +#: src/Module/Contact/Unfollow.php:84 src/Module/Contact/Unfollow.php:153 msgid "You aren't following this contact." msgstr "Vous ne suivez pas ce contact." -#: src/Module/Contact/Unfollow.php:103 +#: src/Module/Contact/Unfollow.php:89 msgid "Unfollowing is currently not supported by your network." msgstr "Le désabonnement n'est actuellement pas supporté par votre réseau." -#: src/Module/Contact/Unfollow.php:121 +#: src/Module/Contact/Unfollow.php:107 msgid "Disconnect/Unfollow" msgstr "Se déconnecter/Ne plus suivre" -#: src/Module/Contact/Unfollow.php:175 +#: src/Module/Contact/Unfollow.php:161 msgid "Contact was successfully unfollowed" msgstr "Le contact n'est maintenant plus suivi" -#: src/Module/Contact/Unfollow.php:178 +#: src/Module/Contact/Unfollow.php:164 msgid "Unable to unfollow this contact, please contact your administrator" msgstr "Impossible de ne plus suivre ce contact, merci de contacter votre administrateur" -#: src/Module/Conversation/Channel.php:139 -#: src/Module/Conversation/Community.php:126 src/Module/Search/Index.php:152 -#: src/Module/Search/Index.php:194 +#: src/Module/Conversation/Channel.php:125 +#: src/Module/Conversation/Community.php:114 src/Module/Search/Index.php:138 +#: src/Module/Search/Index.php:180 msgid "No results." msgstr "Aucun résultat." -#: src/Module/Conversation/Channel.php:177 +#: src/Module/Conversation/Channel.php:163 msgid "Channel not available." msgstr "Chaîne non disponible." -#: src/Module/Conversation/Community.php:92 +#: src/Module/Conversation/Community.php:80 msgid "" "This community stream shows all public posts received by this node. They may" " not reflect the opinions of this node’s users." msgstr "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 +#: src/Module/Conversation/Community.php:168 msgid "Community option not available." msgstr "L'option communauté n'est pas disponible" -#: src/Module/Conversation/Community.php:196 +#: src/Module/Conversation/Community.php:184 msgid "Not available." msgstr "Indisponible." -#: src/Module/Conversation/Network.php:216 +#: src/Module/Conversation/Network.php:202 msgid "No such circle" msgstr "Cercle inexistant" -#: src/Module/Conversation/Network.php:220 +#: src/Module/Conversation/Network.php:206 #, php-format msgid "Circle: %s" msgstr "Cercle : %s" -#: src/Module/Conversation/Network.php:239 +#: src/Module/Conversation/Network.php:226 #, 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:316 +#: src/Module/Conversation/Network.php:304 msgid "Network feed not available." msgstr "Flux du réseau non disponible." -#: src/Module/Conversation/Timeline.php:204 +#: src/Module/Conversation/Timeline.php:190 msgid "Include" msgstr "Inclure" -#: src/Module/Conversation/Timeline.php:205 +#: src/Module/Conversation/Timeline.php:191 msgid "Hide" msgstr "Masquer" -#: src/Module/Credits.php:44 +#: src/Module/Credits.php:30 msgid "Credits" msgstr "Remerciements" -#: src/Module/Credits.php:45 +#: src/Module/Credits.php:31 msgid "" "Friendica is a community project, that would not be possible without the " "help of many people. Here is a list of those who have contributed to the " "code or the translation of Friendica. Thank you all!" msgstr "Friendica est un projet communautaire, qui ne serait pas possible sans l'aide de beaucoup de gens. Voici une liste de ceux qui ont contribué au code ou à la traduction de Friendica. Merci à tous!" -#: src/Module/Debug/ActivityPubConversion.php:59 +#: src/Module/Debug/ActivityPubConversion.php:45 msgid "Formatted" msgstr "Mis en page" -#: src/Module/Debug/ActivityPubConversion.php:71 +#: src/Module/Debug/ActivityPubConversion.php:57 msgid "Activity" msgstr "Activité" -#: src/Module/Debug/ActivityPubConversion.php:123 +#: src/Module/Debug/ActivityPubConversion.php:109 msgid "Object data" msgstr "Données de l'object" -#: src/Module/Debug/ActivityPubConversion.php:130 +#: src/Module/Debug/ActivityPubConversion.php:116 msgid "Result Item" msgstr "Résultat" -#: src/Module/Debug/ActivityPubConversion.php:135 -#: src/Module/Debug/Babel.php:300 src/Module/Moderation/Item/Source.php:93 -#: src/Module/Security/TwoFactor/Verify.php:98 +#: src/Module/Debug/ActivityPubConversion.php:121 +#: src/Module/Debug/Babel.php:286 src/Module/Moderation/Item/Source.php:79 +#: src/Module/Security/TwoFactor/Verify.php:84 msgid "Error" msgid_plural "Errors" msgstr[0] "Erreur" msgstr[1] "Erreurs" msgstr[2] "Erreurs" -#: src/Module/Debug/ActivityPubConversion.php:144 +#: src/Module/Debug/ActivityPubConversion.php:130 msgid "Source activity" msgstr "Activité source" -#: src/Module/Debug/Babel.php:58 +#: src/Module/Debug/Babel.php:44 msgid "Source input" msgstr "Saisie source" -#: src/Module/Debug/Babel.php:64 +#: src/Module/Debug/Babel.php:50 msgid "BBCode::toPlaintext" msgstr "BBCode::toPlaintext" -#: src/Module/Debug/Babel.php:70 +#: src/Module/Debug/Babel.php:56 msgid "BBCode::convert (raw HTML)" msgstr "BBCode::convert (code HTML)" -#: src/Module/Debug/Babel.php:75 +#: src/Module/Debug/Babel.php:61 msgid "BBCode::convert (hex)" msgstr "BBCode::convert (hex)" -#: src/Module/Debug/Babel.php:80 +#: src/Module/Debug/Babel.php:66 msgid "BBCode::convert" msgstr "BBCode::convert" -#: src/Module/Debug/Babel.php:86 +#: src/Module/Debug/Babel.php:72 msgid "BBCode::convert => HTML::toBBCode" msgstr "BBCode::convert => HTML::toBBCode" -#: src/Module/Debug/Babel.php:92 +#: src/Module/Debug/Babel.php:78 msgid "BBCode::toMarkdown" msgstr "BBCode::toMarkdown" -#: src/Module/Debug/Babel.php:98 +#: src/Module/Debug/Babel.php:84 msgid "BBCode::toMarkdown => Markdown::convert (raw HTML)" msgstr "BBCode::toMarkdown => Markdown::convert (HTML pur)" -#: src/Module/Debug/Babel.php:102 +#: src/Module/Debug/Babel.php:88 msgid "BBCode::toMarkdown => Markdown::convert" msgstr "BBCode::toMarkdown => Markdown::convert" -#: src/Module/Debug/Babel.php:108 +#: src/Module/Debug/Babel.php:94 msgid "BBCode::toMarkdown => Markdown::toBBCode" msgstr "BBCode::toMarkdown => Markdown::toBBCode" -#: src/Module/Debug/Babel.php:114 +#: src/Module/Debug/Babel.php:100 msgid "BBCode::toMarkdown => Markdown::convert => HTML::toBBCode" msgstr "BBCode::toMarkdown => Markdown::convert => HTML::toBBCode" -#: src/Module/Debug/Babel.php:122 +#: src/Module/Debug/Babel.php:108 msgid "Item Body" msgstr "Corps du message" -#: src/Module/Debug/Babel.php:126 +#: src/Module/Debug/Babel.php:112 msgid "Item Tags" msgstr "Étiquettes du messages" -#: src/Module/Debug/Babel.php:132 +#: src/Module/Debug/Babel.php:118 msgid "PageInfo::appendToBody" msgstr "PageInfo::appendToBody" -#: src/Module/Debug/Babel.php:137 +#: src/Module/Debug/Babel.php:123 msgid "PageInfo::appendToBody => BBCode::convert (raw HTML)" msgstr "PageInfo::appendToBody => BBCode::convert (code HTML)" -#: src/Module/Debug/Babel.php:141 +#: src/Module/Debug/Babel.php:127 msgid "PageInfo::appendToBody => BBCode::convert" msgstr "PageInfo::appendToBody => BBCode::convert" -#: src/Module/Debug/Babel.php:148 +#: src/Module/Debug/Babel.php:134 msgid "Source input (Diaspora format)" msgstr "Saisie source (format Diaspora)" -#: src/Module/Debug/Babel.php:157 +#: src/Module/Debug/Babel.php:143 msgid "Source input (Markdown)" msgstr "Source (Markdown)" -#: src/Module/Debug/Babel.php:163 +#: src/Module/Debug/Babel.php:149 msgid "Markdown::convert (raw HTML)" msgstr "Markdown::convert (code HTML)" -#: src/Module/Debug/Babel.php:168 +#: src/Module/Debug/Babel.php:154 msgid "Markdown::convert" msgstr "Markdown::convert" -#: src/Module/Debug/Babel.php:174 +#: src/Module/Debug/Babel.php:160 msgid "Markdown::toBBCode" msgstr "Markdown::toBBCode" -#: src/Module/Debug/Babel.php:181 +#: src/Module/Debug/Babel.php:167 msgid "Raw HTML input" msgstr "Saisie code HTML" -#: src/Module/Debug/Babel.php:186 +#: src/Module/Debug/Babel.php:172 msgid "HTML Input" msgstr "Code HTML" -#: src/Module/Debug/Babel.php:193 +#: src/Module/Debug/Babel.php:179 msgid "HTML Purified (raw)" msgstr "HTML purifié (code)" -#: src/Module/Debug/Babel.php:198 +#: src/Module/Debug/Babel.php:184 msgid "HTML Purified (hex)" msgstr "HTML purifié (hexadecimal)" -#: src/Module/Debug/Babel.php:203 +#: src/Module/Debug/Babel.php:189 msgid "HTML Purified" msgstr "HTML purifié" -#: src/Module/Debug/Babel.php:209 +#: src/Module/Debug/Babel.php:195 msgid "HTML::toBBCode" msgstr "HTML::toBBCode" -#: src/Module/Debug/Babel.php:215 +#: src/Module/Debug/Babel.php:201 msgid "HTML::toBBCode => BBCode::convert" msgstr "HTML::toBBCode => BBCode::convert" -#: src/Module/Debug/Babel.php:220 +#: src/Module/Debug/Babel.php:206 msgid "HTML::toBBCode => BBCode::convert (raw HTML)" msgstr "HTML::toBBCode => BBCode::convert (code HTML)" -#: src/Module/Debug/Babel.php:226 +#: src/Module/Debug/Babel.php:212 msgid "HTML::toBBCode => BBCode::toPlaintext" msgstr "HTML::toBBCode => BBCode::toPlaintext" -#: src/Module/Debug/Babel.php:232 +#: src/Module/Debug/Babel.php:218 msgid "HTML::toMarkdown" msgstr "HTML::toMarkdown" -#: src/Module/Debug/Babel.php:238 +#: src/Module/Debug/Babel.php:224 msgid "HTML::toPlaintext" msgstr "HTML::toPlaintext" -#: src/Module/Debug/Babel.php:244 +#: src/Module/Debug/Babel.php:230 msgid "HTML::toPlaintext (compact)" msgstr "HTML::toPlaintext (compact)" -#: src/Module/Debug/Babel.php:262 +#: src/Module/Debug/Babel.php:248 msgid "Decoded post" msgstr "Publication décodée" -#: src/Module/Debug/Babel.php:283 +#: src/Module/Debug/Babel.php:269 msgid "Post array before expand entities" msgstr "Tableau de la publication avant de résoudre les entités" -#: src/Module/Debug/Babel.php:290 +#: src/Module/Debug/Babel.php:276 msgid "Post converted" msgstr "Publication convertie" -#: src/Module/Debug/Babel.php:295 +#: src/Module/Debug/Babel.php:281 msgid "Converted body" msgstr "Corps de texte converti" -#: src/Module/Debug/Babel.php:301 +#: src/Module/Debug/Babel.php:287 msgid "Twitter addon is absent from the addon/ folder." msgstr "L'extension Twitter est absente du dossier addon/" -#: src/Module/Debug/Babel.php:311 +#: src/Module/Debug/Babel.php:297 msgid "Babel Diagnostic" msgstr "Disagnostic Babel" -#: src/Module/Debug/Babel.php:313 +#: src/Module/Debug/Babel.php:299 msgid "Source text" msgstr "Texte source" -#: src/Module/Debug/Babel.php:314 +#: src/Module/Debug/Babel.php:300 msgid "BBCode" msgstr "BBCode" -#: src/Module/Debug/Babel.php:316 +#: src/Module/Debug/Babel.php:302 msgid "Markdown" msgstr "Markdown" -#: src/Module/Debug/Babel.php:317 +#: src/Module/Debug/Babel.php:303 msgid "HTML" msgstr "HTML" -#: src/Module/Debug/Babel.php:319 +#: src/Module/Debug/Babel.php:305 msgid "Twitter Source / Tweet URL (requires API key)" msgstr "Source Twitter / URL du tweet (requiert une clé d'API)" -#: src/Module/Debug/Feed.php:53 src/Module/Filer/SaveTag.php:47 -#: src/Module/Settings/Profile/Index.php:180 +#: src/Module/Debug/Feed.php:39 src/Module/Filer/SaveTag.php:33 +#: src/Module/Settings/Profile/Index.php:166 msgid "You must be logged in to use this module" msgstr "Vous devez être identifié pour accéder à cette fonctionnalité" -#: src/Module/Debug/Feed.php:78 +#: src/Module/Debug/Feed.php:64 msgid "Source URL" msgstr "URL Source" -#: src/Module/Debug/Localtime.php:49 +#: src/Module/Debug/Localtime.php:35 msgid "Time Conversion" msgstr "Conversion temporelle" -#: src/Module/Debug/Localtime.php:50 +#: src/Module/Debug/Localtime.php:36 msgid "" "Friendica provides this service for sharing events with other networks and " "friends in unknown timezones." msgstr "Friendica fournit ce service pour partager des évènements avec vos contacts indépendament de leur fuseau horaire." -#: src/Module/Debug/Localtime.php:51 +#: src/Module/Debug/Localtime.php:37 #, php-format msgid "UTC time: %s" msgstr "Temps UTC : %s" -#: src/Module/Debug/Localtime.php:54 +#: src/Module/Debug/Localtime.php:40 #, php-format msgid "Current timezone: %s" msgstr "Zone de temps courante : %s" -#: src/Module/Debug/Localtime.php:58 +#: src/Module/Debug/Localtime.php:44 #, php-format msgid "Converted localtime: %s" msgstr "Temps local converti : %s" -#: src/Module/Debug/Localtime.php:62 +#: src/Module/Debug/Localtime.php:48 msgid "Please select your timezone:" msgstr "Sélectionner votre zone :" -#: src/Module/Debug/Probe.php:38 src/Module/Debug/WebFinger.php:37 +#: src/Module/Debug/Probe.php:24 src/Module/Debug/WebFinger.php:23 msgid "Only logged in users are permitted to perform a probing." msgstr "Le sondage de profil est réservé aux utilisateurs identifiés." -#: src/Module/Debug/Probe.php:52 +#: src/Module/Debug/Probe.php:38 msgid "Probe Diagnostic" msgstr "Diasgnostic Sonde" -#: src/Module/Debug/Probe.php:53 +#: src/Module/Debug/Probe.php:39 msgid "Output" msgstr "Sortie" -#: src/Module/Debug/Probe.php:56 +#: src/Module/Debug/Probe.php:42 msgid "Lookup address" msgstr "Addresse de sondage" -#: src/Module/Debug/WebFinger.php:50 +#: src/Module/Debug/WebFinger.php:36 msgid "Webfinger Diagnostic" msgstr "Diagnostic Webfinger" -#: src/Module/Debug/WebFinger.php:52 +#: src/Module/Debug/WebFinger.php:38 msgid "Lookup address:" msgstr "Tester l'adresse:" -#: src/Module/Directory.php:75 +#: src/Module/Directory.php:61 msgid "No entries (some entries may be hidden)." msgstr "Aucune entrée (certaines peuvent être cachées)." -#: src/Module/Directory.php:91 +#: src/Module/Directory.php:77 msgid "Find on this site" msgstr "Trouver sur ce site" -#: src/Module/Directory.php:93 +#: src/Module/Directory.php:79 msgid "Results for:" msgstr "Résultats pour :" -#: src/Module/Directory.php:95 +#: src/Module/Directory.php:81 msgid "Site Directory" msgstr "Annuaire local" -#: src/Module/Filer/RemoveTag.php:105 +#: src/Module/Filer/RemoveTag.php:91 msgid "Item was not deleted" msgstr "L'élément n'a pas été supprimé" -#: src/Module/Filer/RemoveTag.php:115 +#: src/Module/Filer/RemoveTag.php:101 msgid "Item was not removed" msgstr "L'élément n'a pas été retiré" -#: src/Module/Filer/SaveTag.php:73 +#: src/Module/Filer/SaveTag.php:59 msgid "- select -" msgstr "- choisir -" -#: src/Module/FriendSuggest.php:82 +#: src/Module/FriendSuggest.php:68 msgid "Suggested contact not found." msgstr "Contact suggéré non trouvé" -#: src/Module/FriendSuggest.php:100 +#: src/Module/FriendSuggest.php:86 msgid "Friend suggestion sent." msgstr "Suggestion d'abonnement envoyée." -#: src/Module/FriendSuggest.php:137 +#: src/Module/FriendSuggest.php:123 msgid "Suggest Friends" msgstr "Suggérer des amis/contacts" -#: src/Module/FriendSuggest.php:140 +#: src/Module/FriendSuggest.php:126 #, php-format msgid "Suggest a friend for %s" msgstr "Suggérer un ami/contact pour %s" -#: src/Module/Friendica.php:81 +#: src/Module/Friendica.php:67 msgid "Installed addons/apps:" msgstr "Extensions/Applications installées :" -#: src/Module/Friendica.php:86 +#: src/Module/Friendica.php:72 msgid "No installed addons/apps" msgstr "Aucune extension/application n'est installée" -#: src/Module/Friendica.php:91 +#: src/Module/Friendica.php:77 #, php-format msgid "Read about the Terms of Service of this node." msgstr "Lire les Conditions d'utilisation de ce nœud." -#: src/Module/Friendica.php:98 +#: src/Module/Friendica.php:84 msgid "On this server the following remote servers are blocked." msgstr "Sur ce serveur, les serveurs suivants sont sur liste noire." -#: src/Module/Friendica.php:101 -#: src/Module/Moderation/Blocklist/Server/Index.php:87 -#: src/Module/Moderation/Blocklist/Server/Index.php:111 -#: src/Module/Settings/Channels.php:232 +#: src/Module/Friendica.php:87 +#: src/Module/Moderation/Blocklist/Server/Index.php:73 +#: src/Module/Moderation/Blocklist/Server/Index.php:97 +#: src/Module/Settings/Channels.php:218 msgid "Reason for the block" msgstr "Raison du blocage" -#: src/Module/Friendica.php:103 +#: src/Module/Friendica.php:89 msgid "Download this list in CSV format" msgstr "Télécharger cette liste au format CSV" -#: src/Module/Friendica.php:117 +#: src/Module/Friendica.php:103 #, php-format msgid "" "This is Friendica, version %s that is running at the web location %s. The " "database version is %s, the post update version is %s." msgstr "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:122 +#: src/Module/Friendica.php:108 msgid "" "Please visit Friendi.ca to learn more " "about the Friendica project." msgstr "Rendez-vous sur Friendi.ca pour en savoir plus sur le projet Friendica." -#: src/Module/Friendica.php:123 +#: src/Module/Friendica.php:109 msgid "Bug reports and issues: please visit" msgstr "Pour les rapports de bugs : rendez vous sur" -#: src/Module/Friendica.php:123 +#: src/Module/Friendica.php:109 msgid "the bugtracker at github" msgstr "le bugtracker sur GitHub" -#: src/Module/Friendica.php:124 +#: src/Module/Friendica.php:110 msgid "Suggestions, praise, etc. - please email \"info\" at \"friendi - dot - ca" msgstr "Suggestions, souhaits, etc. - merci d'écrire à \"info\" at \"friendi - dot - ca" -#: src/Module/HCard.php:45 +#: src/Module/HCard.php:31 msgid "No profile" msgstr "Aucun profil" -#: src/Module/HTTPException/MethodNotAllowed.php:31 +#: src/Module/HTTPException/MethodNotAllowed.php:17 msgid "Method Not Allowed." msgstr "Méthode non autorisée." -#: src/Module/Help.php:60 +#: src/Module/Help.php:46 msgid "Help:" msgstr "Aide :" -#: src/Module/Home.php:66 +#: src/Module/Home.php:52 #, php-format msgid "Welcome to %s" msgstr "Bienvenue sur %s" -#: src/Module/Install.php:189 +#: src/Module/Install.php:175 msgid "Friendica Communications Server - Setup" msgstr "Serveur de média social Friendica - Installation" -#: src/Module/Install.php:200 +#: src/Module/Install.php:186 msgid "System check" msgstr "Vérifications système" -#: src/Module/Install.php:202 src/Module/Install.php:247 -#: src/Module/Install.php:326 +#: src/Module/Install.php:188 src/Module/Install.php:233 +#: src/Module/Install.php:312 msgid "Requirement not satisfied" msgstr "Exigence non remplie" -#: src/Module/Install.php:203 +#: src/Module/Install.php:189 msgid "Optional requirement not satisfied" msgstr "Exigence facultative non remplie" -#: src/Module/Install.php:204 +#: src/Module/Install.php:190 msgid "OK" msgstr "OK" -#: src/Module/Install.php:208 +#: src/Module/Install.php:194 msgid "Next" msgstr "Suivant" -#: src/Module/Install.php:209 +#: src/Module/Install.php:195 msgid "Check again" msgstr "Vérifier à nouveau" -#: src/Module/Install.php:222 +#: src/Module/Install.php:208 msgid "Base settings" msgstr "Paramètres de base" -#: src/Module/Install.php:224 +#: src/Module/Install.php:210 msgid "Base path to installation" msgstr "Chemin de base de l'installation" -#: src/Module/Install.php:226 +#: src/Module/Install.php:212 msgid "" "If the system cannot detect the correct path to your installation, enter the" " correct path here. This setting should only be set if you are using a " "restricted system and symbolic links to your webroot." msgstr "Si le système ne peut pas détecter le chemin de l'installation, entrez le bon chemin ici. Ce paramètre doit être utilisé uniquement si vous avez des accès restreints à votre système et que vous n'avez qu'un lien symbolique vers le répertoire web." -#: src/Module/Install.php:229 +#: src/Module/Install.php:215 msgid "The Friendica system URL" msgstr "L'URL du système Friendica" -#: src/Module/Install.php:231 +#: src/Module/Install.php:217 msgid "" "Overwrite this field in case the system URL determination isn't right, " "otherwise leave it as is." msgstr "Modifiez ce champ au cas où l'URL du système n'est pas la bonne, sinon laissez le tel quel." -#: src/Module/Install.php:242 +#: src/Module/Install.php:228 msgid "Database connection" msgstr "Connexion à la base de données" -#: src/Module/Install.php:243 +#: src/Module/Install.php:229 msgid "" "In order to install Friendica we need to know how to connect to your " "database." msgstr "Pour installer Friendica, nous avons besoin de savoir comment contacter votre base de données." -#: src/Module/Install.php:244 +#: src/Module/Install.php:230 msgid "" "Please contact your hosting provider or site administrator if you have " "questions about these settings." msgstr "Merci de vous tourner vers votre hébergeur et/ou administrateur pour toute question concernant ces réglages." -#: src/Module/Install.php:245 +#: src/Module/Install.php:231 msgid "" "The database you specify below should already exist. If it does not, please " "create it before continuing." msgstr "La base de données que vous spécifierez doit exister. Si ce n'est pas encore le cas, merci de la créer avant de continuer." -#: src/Module/Install.php:252 +#: src/Module/Install.php:238 msgid "Database Server Name" msgstr "Serveur de base de données" -#: src/Module/Install.php:257 +#: src/Module/Install.php:243 msgid "Database Login Name" msgstr "Nom d'utilisateur de la base" -#: src/Module/Install.php:263 +#: src/Module/Install.php:249 msgid "Database Login Password" msgstr "Mot de passe de la base" -#: src/Module/Install.php:265 +#: src/Module/Install.php:251 msgid "For security reasons the password must not be empty" msgstr "Pour des raisons de sécurité, le mot de passe ne peut pas être vide." -#: src/Module/Install.php:268 +#: src/Module/Install.php:254 msgid "Database Name" msgstr "Nom de la base" -#: src/Module/Install.php:272 src/Module/Install.php:300 +#: src/Module/Install.php:258 src/Module/Install.php:286 msgid "Please select a default timezone for your website" msgstr "Sélectionner un fuseau horaire par défaut pour votre site" -#: src/Module/Install.php:287 +#: src/Module/Install.php:273 msgid "Site settings" msgstr "Réglages du site" -#: src/Module/Install.php:295 +#: src/Module/Install.php:281 msgid "Site administrator email address" msgstr "Adresse de courriel de l'administrateur du site" -#: src/Module/Install.php:297 +#: src/Module/Install.php:283 msgid "" "Your account email address must match this in order to use the web admin " "panel." msgstr "Votre adresse de courriel doit correspondre à celle-ci pour pouvoir utiliser l'interface d'administration." -#: src/Module/Install.php:304 +#: src/Module/Install.php:290 msgid "System Language:" msgstr "Langue système :" -#: src/Module/Install.php:306 +#: src/Module/Install.php:292 msgid "" "Set the default language for your Friendica installation interface and to " "send emails." msgstr "Définit la langue par défaut pour l'interface de votre instance Friendica et les courriels envoyés." -#: src/Module/Install.php:318 +#: src/Module/Install.php:304 msgid "Your Friendica site database has been installed." msgstr "La base de données de votre site Friendica a bien été installée." -#: src/Module/Install.php:328 +#: src/Module/Install.php:314 msgid "Installation finished" msgstr "Installation terminée" -#: src/Module/Install.php:348 +#: src/Module/Install.php:334 msgid "

What next

" msgstr "

Ensuite

" -#: src/Module/Install.php:349 +#: src/Module/Install.php:335 msgid "" "IMPORTANT: You will need to [manually] setup a scheduled task for the " "worker." msgstr "IMPORTANT: vous devrez ajouter [manuellement] une tâche planifiée pour la tâche de fond." -#: src/Module/Install.php:352 +#: src/Module/Install.php:338 #, php-format msgid "" "Go to your new Friendica node registration page " @@ -7769,29 +7764,29 @@ msgid "" " administrator email. This will allow you to enter the site admin panel." msgstr "Rendez-vous sur la page d'inscription de votre nouveau nœud Friendica et inscrivez vous en tant que nouvel utilisateur. Rappelez-vous de bien utiliser la même adresse de courriel que celle que vous avez utilisée en tant qu'adresse d'administrateur. Cela vous permettra d'accéder au panel d'administration du site." -#: src/Module/Invite.php:57 +#: src/Module/Invite.php:43 msgid "Total invitation limit exceeded." msgstr "La limite d'invitation totale est éxédée." -#: src/Module/Invite.php:82 +#: src/Module/Invite.php:68 #, php-format msgid "%s : Not a valid email address." msgstr "%s : Adresse de courriel invalide." -#: src/Module/Invite.php:108 +#: src/Module/Invite.php:94 msgid "Please join us on Friendica" msgstr "Rejoignez-nous sur Friendica" -#: src/Module/Invite.php:117 +#: src/Module/Invite.php:103 msgid "Invitation limit exceeded. Please contact your site administrator." msgstr "Limite d'invitation exédée. Veuillez contacter l'administrateur de votre site." -#: src/Module/Invite.php:121 +#: src/Module/Invite.php:107 #, php-format msgid "%s : Message delivery failed." msgstr "%s : L'envoi du message a échoué." -#: src/Module/Invite.php:125 +#: src/Module/Invite.php:111 #, php-format msgid "%d message sent." msgid_plural "%d messages sent." @@ -7799,11 +7794,11 @@ msgstr[0] "%d message envoyé." msgstr[1] "%d messages envoyés." msgstr[2] "%d messages envoyés." -#: src/Module/Invite.php:143 +#: src/Module/Invite.php:129 msgid "You have no more invitations available" msgstr "Vous n'avez plus d'invitations disponibles" -#: src/Module/Invite.php:150 +#: src/Module/Invite.php:136 #, php-format msgid "" "Visit %s for a list of public sites that you can join. Friendica members on " @@ -7811,14 +7806,14 @@ msgid "" " other social networks." msgstr "Visitez %s pour une liste des sites publics que vous pouvez rejoindre. Les membres de Friendica appartenant à d'autres sites peuvent s'interconnecter, ainsi qu'avec les membres de plusieurs autres réseaux sociaux." -#: src/Module/Invite.php:152 +#: src/Module/Invite.php:138 #, php-format msgid "" "To accept this invitation, please visit and register at %s or any other " "public Friendica website." msgstr "Pour accepter cette invitation, merci d'aller vous inscrire sur %s, ou n'importe quel autre site Friendica public." -#: src/Module/Invite.php:153 +#: src/Module/Invite.php:139 #, php-format msgid "" "Friendica sites all inter-connect to create a huge privacy-enhanced social " @@ -7827,236 +7822,236 @@ msgid "" "sites you can join." msgstr "Les sites Friendica sont tous interconnectés pour créer un immense réseau social respectueux de la vie privée, possédé et contrôllé par ses membres. Ils peuvent également interagir avec plusieurs réseaux sociaux traditionnels. Voir %s pour une liste d'autres sites Friendica que vous pourriez rejoindre." -#: src/Module/Invite.php:157 +#: src/Module/Invite.php:143 msgid "" "Our apologies. This system is not currently configured to connect with other" " public sites or invite members." msgstr "Toutes nos excuses. Ce système n'est pas configuré pour se connecter à d'autres sites publics ou inviter de nouveaux membres." -#: src/Module/Invite.php:160 +#: src/Module/Invite.php:146 msgid "" "Friendica sites all inter-connect to create a huge privacy-enhanced social " "web that is owned and controlled by its members. They can also connect with " "many traditional social networks." msgstr "Les instances Friendica sont interconnectées pour créer un immense réseau social possédé et contrôlé par ses membres, et qui respecte leur vie privée. Ils peuvent aussi s'interconnecter avec d'autres réseaux sociaux traditionnels." -#: src/Module/Invite.php:159 +#: src/Module/Invite.php:145 #, php-format msgid "To accept this invitation, please visit and register at %s." msgstr "Pour accepter cette invitation, rendez-vous sur %s et inscrivez-vous." -#: src/Module/Invite.php:167 +#: src/Module/Invite.php:153 msgid "Send invitations" msgstr "Envoyer des invitations" -#: src/Module/Invite.php:168 +#: src/Module/Invite.php:154 msgid "Enter email addresses, one per line:" msgstr "Entrez les adresses de courriel, une par ligne :" -#: src/Module/Invite.php:172 +#: src/Module/Invite.php:158 msgid "" "You are cordially invited to join me and other close friends on Friendica - " "and help us to create a better social web." msgstr "Vous êtes cordialement invité à me rejoindre sur Friendica, et nous aider ainsi à créer un meilleur web social." -#: src/Module/Invite.php:174 +#: src/Module/Invite.php:160 msgid "You will need to supply this invitation code: $invite_code" msgstr "Vous devrez fournir ce code d'invitation : $invite_code" -#: src/Module/Invite.php:174 +#: src/Module/Invite.php:160 msgid "" "Once you have registered, please connect with me via my profile page at:" msgstr "Une fois inscrit, connectez-vous à la page de mon profil sur :" -#: src/Module/Invite.php:176 +#: src/Module/Invite.php:162 msgid "" "For more information about the Friendica project and why we feel it is " "important, please visit http://friendi.ca" msgstr "Pour plus d'information sur Friendica et les valeurs que nous défendons, veuillez consulter http://friendi.ca" -#: src/Module/Item/Compose.php:94 +#: src/Module/Item/Compose.php:80 msgid "Please enter a post body." msgstr "Veuillez saisir un corps de texte." -#: src/Module/Item/Compose.php:105 +#: src/Module/Item/Compose.php:91 msgid "This feature is only available with the frio theme." msgstr "Cette page ne fonctionne qu'avec le thème \"frio\" activé." -#: src/Module/Item/Compose.php:129 +#: src/Module/Item/Compose.php:115 msgid "Compose new personal note" msgstr "Composer une nouvelle note personnelle" -#: src/Module/Item/Compose.php:138 +#: src/Module/Item/Compose.php:124 msgid "Compose new post" msgstr "Composer une nouvelle publication" -#: src/Module/Item/Compose.php:194 +#: src/Module/Item/Compose.php:180 msgid "Visibility" msgstr "Visibilité" -#: src/Module/Item/Compose.php:210 +#: src/Module/Item/Compose.php:196 msgid "Clear the location" msgstr "Effacer la localisation" -#: src/Module/Item/Compose.php:211 +#: src/Module/Item/Compose.php:197 msgid "Location services are unavailable on your device" msgstr "Les services de localisation ne sont pas disponibles sur votre appareil" -#: src/Module/Item/Compose.php:212 +#: src/Module/Item/Compose.php:198 msgid "" "Location services are disabled. Please check the website's permissions on " "your device" msgstr "Les services de localisation sont désactivés pour ce site. Veuillez vérifier les permissions de ce site sur votre appareil/navigateur." -#: src/Module/Item/Compose.php:218 +#: src/Module/Item/Compose.php:204 msgid "" "You can make this page always open when you use the New Post button in the " "Theme Customization settings." msgstr "Vous pouvez faire en sorte que cette page s'ouvre systématiquement quand vous utilisez le bouton \"Nouvelle publication\" dans les paramètres de personnalisation des thèmes." -#: src/Module/Item/Feed.php:86 +#: src/Module/Item/Feed.php:72 msgid "The feed for this item is unavailable." msgstr "Le flux pour cet objet n'est pas disponible." -#: src/Module/Item/Follow.php:51 +#: src/Module/Item/Follow.php:37 msgid "Unable to follow this item." msgstr "Erreur lors de l'abonnement à la conversation." -#: src/Module/Maintenance.php:48 src/Module/Maintenance.php:53 +#: src/Module/Maintenance.php:34 src/Module/Maintenance.php:39 msgid "System down for maintenance" msgstr "Système indisponible pour cause de maintenance" -#: src/Module/Maintenance.php:54 +#: src/Module/Maintenance.php:40 msgid "" "This Friendica node is currently in maintenance mode, either automatically " "because it is self-updating or manually by the node administrator. This " "condition should be temporary, please come back in a few minutes." msgstr "Ce serveur Friendica est actuellement en maintenance, soit automatiquement pendant la mise à jour ou manuellement par un administrateur. Cet état devrait être temporaire, merci de réessayer dans quelques minutes." -#: src/Module/Manifest.php:40 +#: src/Module/Manifest.php:26 msgid "A Decentralized Social Network" msgstr "Un Réseau Social Décentralisé " -#: src/Module/Media/Attachment/Browser.php:58 -#: src/Module/Media/Photo/Browser.php:59 +#: src/Module/Media/Attachment/Browser.php:44 +#: src/Module/Media/Photo/Browser.php:45 msgid "You need to be logged in to access this page." msgstr "Vous devez être connecté pour accéder à cette page." -#: src/Module/Media/Attachment/Browser.php:74 +#: src/Module/Media/Attachment/Browser.php:60 msgid "Files" msgstr "Fichiers" -#: src/Module/Media/Attachment/Browser.php:79 -#: src/Module/Media/Photo/Browser.php:90 -#: src/Module/Settings/Profile/Photo/Index.php:127 +#: src/Module/Media/Attachment/Browser.php:65 +#: src/Module/Media/Photo/Browser.php:76 +#: src/Module/Settings/Profile/Photo/Index.php:113 msgid "Upload" msgstr "Téléverser" -#: src/Module/Media/Attachment/Upload.php:97 +#: src/Module/Media/Attachment/Upload.php:83 msgid "Sorry, maybe your upload is bigger than the PHP configuration allows" msgstr "Désolé, il semble que votre fichier est plus important que ce que la configuration de PHP autorise" -#: src/Module/Media/Attachment/Upload.php:97 +#: src/Module/Media/Attachment/Upload.php:83 msgid "Or - did you try to upload an empty file?" msgstr "Ou — auriez-vous essayé de télécharger un fichier vide ?" -#: src/Module/Media/Attachment/Upload.php:104 +#: src/Module/Media/Attachment/Upload.php:90 #, php-format msgid "File exceeds size limit of %s" msgstr "La taille du fichier dépasse la limite de %s" -#: src/Module/Media/Attachment/Upload.php:114 +#: src/Module/Media/Attachment/Upload.php:100 msgid "File upload failed." msgstr "Le téléversement a échoué." -#: src/Module/Media/Photo/Upload.php:150 src/Module/Media/Photo/Upload.php:151 -#: src/Module/Profile/Photos.php:215 -#: src/Module/Settings/Profile/Photo/Index.php:67 +#: src/Module/Media/Photo/Upload.php:136 src/Module/Media/Photo/Upload.php:137 +#: src/Module/Profile/Photos.php:201 +#: src/Module/Settings/Profile/Photo/Index.php:53 msgid "Unable to process image." msgstr "Impossible de traiter l'image." -#: src/Module/Media/Photo/Upload.php:176 src/Module/Profile/Photos.php:235 -#: src/Module/Settings/Profile/Photo/Index.php:94 +#: src/Module/Media/Photo/Upload.php:162 src/Module/Profile/Photos.php:221 +#: src/Module/Settings/Profile/Photo/Index.php:80 msgid "Image upload failed." msgstr "Le téléversement de l'image a échoué." -#: src/Module/Moderation/BaseUsers.php:72 +#: src/Module/Moderation/BaseUsers.php:59 msgid "List of all users" msgstr "Liste de tous les utilisateurs" -#: src/Module/Moderation/BaseUsers.php:77 +#: src/Module/Moderation/BaseUsers.php:64 msgid "Active" msgstr "Actif" -#: src/Module/Moderation/BaseUsers.php:80 +#: src/Module/Moderation/BaseUsers.php:67 msgid "List of active accounts" msgstr "Liste des comptes actifs" -#: src/Module/Moderation/BaseUsers.php:88 +#: src/Module/Moderation/BaseUsers.php:75 msgid "List of pending registrations" msgstr "Liste des inscriptions en attente" -#: src/Module/Moderation/BaseUsers.php:96 +#: src/Module/Moderation/BaseUsers.php:83 msgid "List of blocked users" msgstr "Liste des utilisateurs bloqués" -#: src/Module/Moderation/BaseUsers.php:101 +#: src/Module/Moderation/BaseUsers.php:88 msgid "Deleted" msgstr "Supprimé" -#: src/Module/Moderation/BaseUsers.php:104 +#: src/Module/Moderation/BaseUsers.php:91 msgid "List of pending user deletions" msgstr "Liste des utilisateurs en attente de suppression" -#: src/Module/Moderation/BaseUsers.php:119 src/Module/Settings/Account.php:487 +#: src/Module/Moderation/BaseUsers.php:108 src/Module/Settings/Account.php:473 msgid "Normal Account Page" msgstr "Compte normal" -#: src/Module/Moderation/BaseUsers.php:120 src/Module/Settings/Account.php:494 +#: src/Module/Moderation/BaseUsers.php:109 src/Module/Settings/Account.php:480 msgid "Soapbox Page" msgstr "Compte \"boîte à savon\"" -#: src/Module/Moderation/BaseUsers.php:121 src/Module/Settings/Account.php:501 +#: src/Module/Moderation/BaseUsers.php:110 src/Module/Settings/Account.php:487 msgid "Public Group" msgstr "Groupe Public" -#: src/Module/Moderation/BaseUsers.php:122 src/Module/Settings/Account.php:508 +#: src/Module/Moderation/BaseUsers.php:111 src/Module/Settings/Account.php:494 msgid "Public Group - Restricted" msgstr "Groupe Public - Restreint" -#: src/Module/Moderation/BaseUsers.php:123 src/Module/Settings/Account.php:515 +#: src/Module/Moderation/BaseUsers.php:112 src/Module/Settings/Account.php:501 msgid "Automatic Friend Page" msgstr "Abonnement réciproque" -#: src/Module/Moderation/BaseUsers.php:124 +#: src/Module/Moderation/BaseUsers.php:113 msgid "Private Group" msgstr "Groupe Privé" -#: src/Module/Moderation/BaseUsers.php:127 -#: src/Module/Moderation/Summary.php:53 src/Module/Settings/Account.php:458 +#: src/Module/Moderation/BaseUsers.php:116 +#: src/Module/Moderation/Summary.php:39 src/Module/Settings/Account.php:444 msgid "Personal Page" msgstr "Page personnelle" -#: src/Module/Moderation/BaseUsers.php:128 -#: src/Module/Moderation/Summary.php:54 src/Module/Settings/Account.php:465 +#: src/Module/Moderation/BaseUsers.php:117 +#: src/Module/Moderation/Summary.php:40 src/Module/Settings/Account.php:451 msgid "Organisation Page" msgstr "Page Associative" -#: src/Module/Moderation/BaseUsers.php:129 -#: src/Module/Moderation/Summary.php:55 src/Module/Settings/Account.php:472 +#: src/Module/Moderation/BaseUsers.php:118 +#: src/Module/Moderation/Summary.php:41 src/Module/Settings/Account.php:458 msgid "News Page" msgstr "Page d'informations" -#: src/Module/Moderation/BaseUsers.php:130 -#: src/Module/Moderation/Summary.php:56 src/Module/Settings/Account.php:479 +#: src/Module/Moderation/BaseUsers.php:119 +#: src/Module/Moderation/Summary.php:42 src/Module/Settings/Account.php:465 msgid "Community Group" msgstr "Groupe Communautaire" -#: src/Module/Moderation/Blocklist/Contact.php:70 +#: src/Module/Moderation/Blocklist/Contact.php:56 msgid "You can't block a local contact, please block the user instead" msgstr "Vous ne pouvez pas bloquer un contact local. Merci de bloquer l'utilisateur à la place" -#: src/Module/Moderation/Blocklist/Contact.php:89 +#: src/Module/Moderation/Blocklist/Contact.php:75 #, php-format msgid "%s contact unblocked" msgid_plural "%s contacts unblocked" @@ -8064,54 +8059,54 @@ msgstr[0] "%s contact débloqué" msgstr[1] "%s profiles distants débloqués" msgstr[2] "%s profiles distants débloqués" -#: src/Module/Moderation/Blocklist/Contact.php:111 +#: src/Module/Moderation/Blocklist/Contact.php:97 msgid "Remote Contact Blocklist" msgstr "Liste des profiles distants bloqués" -#: src/Module/Moderation/Blocklist/Contact.php:112 +#: src/Module/Moderation/Blocklist/Contact.php:98 msgid "" "This page allows you to prevent any message from a remote contact to reach " "your node." msgstr "Cette page vous permet de refuser toutes les publications d'un profile distant sur votre site." -#: src/Module/Moderation/Blocklist/Contact.php:113 +#: src/Module/Moderation/Blocklist/Contact.php:99 msgid "Block Remote Contact" msgstr "Bloquer le profile distant" -#: src/Module/Moderation/Blocklist/Contact.php:114 -#: src/Module/Moderation/Users/Active.php:135 -#: src/Module/Moderation/Users/Blocked.php:135 -#: src/Module/Moderation/Users/Index.php:149 -#: src/Module/Moderation/Users/Pending.php:98 +#: src/Module/Moderation/Blocklist/Contact.php:100 +#: src/Module/Moderation/Users/Active.php:121 +#: src/Module/Moderation/Users/Blocked.php:121 +#: src/Module/Moderation/Users/Index.php:135 +#: src/Module/Moderation/Users/Pending.php:84 msgid "select all" msgstr "tout sélectionner" -#: src/Module/Moderation/Blocklist/Contact.php:115 +#: src/Module/Moderation/Blocklist/Contact.php:101 msgid "select none" msgstr "Sélectionner tous" -#: src/Module/Moderation/Blocklist/Contact.php:118 +#: src/Module/Moderation/Blocklist/Contact.php:104 msgid "No remote contact is blocked from this node." msgstr "Aucun profil distant n'est bloqué" -#: src/Module/Moderation/Blocklist/Contact.php:120 +#: src/Module/Moderation/Blocklist/Contact.php:106 msgid "Blocked Remote Contacts" msgstr "Profils distants bloqués" -#: src/Module/Moderation/Blocklist/Contact.php:121 +#: src/Module/Moderation/Blocklist/Contact.php:107 msgid "Block New Remote Contact" msgstr "Bloquer un nouveau profil distant" -#: src/Module/Moderation/Blocklist/Contact.php:122 -#: src/Module/Moderation/Reports.php:116 +#: src/Module/Moderation/Blocklist/Contact.php:108 +#: src/Module/Moderation/Reports.php:102 msgid "Photo" msgstr "Photo" -#: src/Module/Moderation/Blocklist/Contact.php:122 +#: src/Module/Moderation/Blocklist/Contact.php:108 msgid "Reason" msgstr "Raison" -#: src/Module/Moderation/Blocklist/Contact.php:128 +#: src/Module/Moderation/Blocklist/Contact.php:114 #, php-format msgid "%s total blocked contact" msgid_plural "%s total blocked contacts" @@ -8119,30 +8114,30 @@ msgstr[0] "%s profil distant bloqué" msgstr[1] "%s profils distans bloqués" msgstr[2] "%s profils distans bloqués" -#: src/Module/Moderation/Blocklist/Contact.php:131 +#: src/Module/Moderation/Blocklist/Contact.php:117 msgid "URL of the remote contact to block." msgstr "URL du profil distant à bloquer." -#: src/Module/Moderation/Blocklist/Contact.php:132 +#: src/Module/Moderation/Blocklist/Contact.php:118 msgid "Also purge contact" msgstr "Purger également le contact" -#: src/Module/Moderation/Blocklist/Contact.php:132 +#: src/Module/Moderation/Blocklist/Contact.php:118 msgid "" "Removes all content related to this contact from the node. Keeps the contact" " record. This action cannot be undone." msgstr "Supprime tout le contenu relatif à ce contact du nœud. Conserve une trace du contact. Cette action ne peut être annulée." -#: src/Module/Moderation/Blocklist/Contact.php:133 -#: src/Module/Moderation/Blocklist/Server/Import.php:124 +#: src/Module/Moderation/Blocklist/Contact.php:119 +#: src/Module/Moderation/Blocklist/Server/Import.php:108 msgid "Block Reason" msgstr "Raison du blocage" -#: src/Module/Moderation/Blocklist/Server/Add.php:80 +#: src/Module/Moderation/Blocklist/Server/Add.php:66 msgid "Server domain pattern added to the blocklist." msgstr "Modèle de domaine de serveur ajouté à la liste de blocage." -#: src/Module/Moderation/Blocklist/Server/Add.php:88 +#: src/Module/Moderation/Blocklist/Server/Add.php:74 #, php-format msgid "%s server scheduled to be purged." msgid_plural "%s servers scheduled to be purged." @@ -8150,17 +8145,17 @@ msgstr[0] "La purge d'%s serveur est planifiée." msgstr[1] "La purge des %s serveurs est planifiée." msgstr[2] "La purge des %s serveurs est planifiée." -#: src/Module/Moderation/Blocklist/Server/Add.php:120 -#: src/Module/Moderation/Blocklist/Server/Import.php:117 +#: src/Module/Moderation/Blocklist/Server/Add.php:106 +#: src/Module/Moderation/Blocklist/Server/Import.php:101 msgid "← Return to the list" msgstr "← Retourner à la liste" -#: src/Module/Moderation/Blocklist/Server/Add.php:122 +#: src/Module/Moderation/Blocklist/Server/Add.php:108 msgid "Block A New Server Domain Pattern" msgstr "Bloquer un nouveau modèle de domaine de serveur" -#: src/Module/Moderation/Blocklist/Server/Add.php:123 -#: src/Module/Moderation/Blocklist/Server/Index.php:99 +#: src/Module/Moderation/Blocklist/Server/Add.php:109 +#: src/Module/Moderation/Blocklist/Server/Index.php:85 msgid "" "

The server domain pattern syntax is case-insensitive shell wildcard, comprising the following special characters:

\n" "
    \n" @@ -8169,30 +8164,30 @@ msgid "" "
" msgstr "

La syntaxe du modèle de domaine du serveur est du shell insensible à la casse avec wildcards, comprenant les caractères spéciaux suivants :

\n
    \n\t
  • *  N'importe quel nombre de caractères
  • \n\t
  • ? N'importe quel caractère unique
  • \n
" -#: src/Module/Moderation/Blocklist/Server/Add.php:128 -#: src/Module/Moderation/Blocklist/Server/Index.php:107 +#: src/Module/Moderation/Blocklist/Server/Add.php:114 +#: src/Module/Moderation/Blocklist/Server/Index.php:93 msgid "Check pattern" msgstr "Vérifier le modèle" -#: src/Module/Moderation/Blocklist/Server/Add.php:129 +#: src/Module/Moderation/Blocklist/Server/Add.php:115 msgid "Matching known servers" msgstr "Serveurs connus correspondants" -#: src/Module/Moderation/Blocklist/Server/Add.php:130 -#: src/Module/Settings/Server/Action.php:76 -#: src/Module/Settings/Server/Index.php:106 +#: src/Module/Moderation/Blocklist/Server/Add.php:116 +#: src/Module/Settings/Server/Action.php:62 +#: src/Module/Settings/Server/Index.php:92 msgid "Server Name" msgstr "Nom du serveur" -#: src/Module/Moderation/Blocklist/Server/Add.php:131 +#: src/Module/Moderation/Blocklist/Server/Add.php:117 msgid "Server Domain" msgstr "Domaine du serveur" -#: src/Module/Moderation/Blocklist/Server/Add.php:132 +#: src/Module/Moderation/Blocklist/Server/Add.php:118 msgid "Known Contacts" msgstr "Contacts connus" -#: src/Module/Moderation/Blocklist/Server/Add.php:133 +#: src/Module/Moderation/Blocklist/Server/Add.php:119 #, php-format msgid "%d known server" msgid_plural "%d known servers" @@ -8200,27 +8195,27 @@ msgstr[0] "%d serveur connu" msgstr[1] "%d serveurs connus" msgstr[2] "%d serveurs connus" -#: src/Module/Moderation/Blocklist/Server/Add.php:134 +#: src/Module/Moderation/Blocklist/Server/Add.php:120 msgid "Add pattern to the blocklist" msgstr "Ajouter le modèle à la liste de blocage" -#: src/Module/Moderation/Blocklist/Server/Add.php:136 -#: src/Module/Moderation/Blocklist/Server/Index.php:116 +#: src/Module/Moderation/Blocklist/Server/Add.php:122 +#: src/Module/Moderation/Blocklist/Server/Index.php:102 msgid "Server Domain Pattern" msgstr "Filtre de domaine" -#: src/Module/Moderation/Blocklist/Server/Add.php:136 -#: src/Module/Moderation/Blocklist/Server/Index.php:116 +#: src/Module/Moderation/Blocklist/Server/Add.php:122 +#: src/Module/Moderation/Blocklist/Server/Index.php:102 msgid "" "The domain pattern of the new server to add to the blocklist. Do not include" " the protocol." msgstr "le modèle de domaine du nouveau serveur à ajouter à la liste de blocage. Ne pas inclure le protocole." -#: src/Module/Moderation/Blocklist/Server/Add.php:137 +#: src/Module/Moderation/Blocklist/Server/Add.php:123 msgid "Purge server" msgstr "Purger le serveur" -#: src/Module/Moderation/Blocklist/Server/Add.php:137 +#: src/Module/Moderation/Blocklist/Server/Add.php:123 msgid "" "Also purges all the locally stored content authored by the known contacts " "registered on that server. Keeps the contacts and the server records. This " @@ -8233,26 +8228,26 @@ msgstr[0] "Purge également tout le contenu local stocké créé par les contact msgstr[1] "Purge également tout le contenu local stocké créé par les contacts connus inscrits sur ces serveurs. Garde un enregistrement des contacts et des serveurs. Cette action ne peut être annulée." msgstr[2] "Purge également tout le contenu local stocké créé par les contacts connus inscrits sur ces serveurs. Garde un enregistrement des contacts et des serveurs. Cette action ne peut être annulée." -#: src/Module/Moderation/Blocklist/Server/Add.php:138 +#: src/Module/Moderation/Blocklist/Server/Add.php:124 msgid "Block reason" msgstr "Raison du blocage" -#: src/Module/Moderation/Blocklist/Server/Add.php:138 +#: src/Module/Moderation/Blocklist/Server/Add.php:124 msgid "" "The reason why you blocked this server domain pattern. This reason will be " "shown publicly in the server information page." msgstr "La raison pour laquelle vous avez bloqué ce modèle de domaine de serveur. La raison sera publiquement affichée dans la page d'information du serveur." -#: src/Module/Moderation/Blocklist/Server/Import.php:74 -#: src/Module/Moderation/Blocklist/Server/Import.php:83 +#: src/Module/Moderation/Blocklist/Server/Import.php:60 +#: src/Module/Moderation/Blocklist/Server/Import.php:67 msgid "Error importing pattern file" msgstr "Erreur lors de l'import du fichier de motifs" -#: src/Module/Moderation/Blocklist/Server/Import.php:89 +#: src/Module/Moderation/Blocklist/Server/Import.php:74 msgid "Local blocklist replaced with the provided file." msgstr "La liste de blocage locale a été remplacée par le fichier fourni." -#: src/Module/Moderation/Blocklist/Server/Import.php:93 +#: src/Module/Moderation/Blocklist/Server/Import.php:78 #, php-format msgid "%d pattern was added to the local blocklist." msgid_plural "%d patterns were added to the local blocklist." @@ -8260,42 +8255,42 @@ msgstr[0] "%d motif a été ajouté à la liste de blocage locale." msgstr[1] "%d motifs ont été ajoutés à la liste de blocage locale." msgstr[2] "%d motifs ont été ajoutés à la liste de blocage locale." -#: src/Module/Moderation/Blocklist/Server/Import.php:95 +#: src/Module/Moderation/Blocklist/Server/Import.php:80 msgid "No pattern was added to the local blocklist." msgstr "Aucun motif n'a été ajouté à la liste de blocage locale." -#: src/Module/Moderation/Blocklist/Server/Import.php:119 +#: src/Module/Moderation/Blocklist/Server/Import.php:103 msgid "Import a Server Domain Pattern Blocklist" msgstr "Importer une liste de blocage de motif de domaine de serveur" -#: src/Module/Moderation/Blocklist/Server/Import.php:120 +#: src/Module/Moderation/Blocklist/Server/Import.php:104 msgid "" "

This file can be downloaded from the /friendica path of any " "Friendica server.

" msgstr "

Ce fichier peut être téléchargé depuis le chemin /friendica de n'importe quel serveur Friendica.

" -#: src/Module/Moderation/Blocklist/Server/Import.php:121 -#: src/Module/Moderation/Blocklist/Server/Index.php:106 +#: src/Module/Moderation/Blocklist/Server/Import.php:105 +#: src/Module/Moderation/Blocklist/Server/Index.php:92 msgid "Upload file" msgstr "Téléverser un fichier" -#: src/Module/Moderation/Blocklist/Server/Import.php:122 +#: src/Module/Moderation/Blocklist/Server/Import.php:106 msgid "Patterns to import" msgstr "Motifs à importer" -#: src/Module/Moderation/Blocklist/Server/Import.php:123 +#: src/Module/Moderation/Blocklist/Server/Import.php:107 msgid "Domain Pattern" msgstr "Motif de domaine" -#: src/Module/Moderation/Blocklist/Server/Import.php:125 +#: src/Module/Moderation/Blocklist/Server/Import.php:109 msgid "Import Mode" msgstr "Mode d'import" -#: src/Module/Moderation/Blocklist/Server/Import.php:126 +#: src/Module/Moderation/Blocklist/Server/Import.php:110 msgid "Import Patterns" msgstr "Importer les motifs" -#: src/Module/Moderation/Blocklist/Server/Import.php:127 +#: src/Module/Moderation/Blocklist/Server/Import.php:111 #, php-format msgid "%d total pattern" msgid_plural "%d total patterns" @@ -8303,233 +8298,233 @@ msgstr[0] "%d motif total" msgstr[1] "%d motifs totaux" msgstr[2] "%d motifs totaux" -#: src/Module/Moderation/Blocklist/Server/Import.php:129 -#: src/Module/Moderation/Blocklist/Server/Index.php:115 +#: src/Module/Moderation/Blocklist/Server/Import.php:113 +#: src/Module/Moderation/Blocklist/Server/Index.php:101 msgid "Server domain pattern blocklist CSV file" msgstr "Fichier CSV de liste de blocage de motif de domaine de serveur" -#: src/Module/Moderation/Blocklist/Server/Import.php:130 +#: src/Module/Moderation/Blocklist/Server/Import.php:114 msgid "Append" msgstr "Ajouter" -#: src/Module/Moderation/Blocklist/Server/Import.php:130 +#: src/Module/Moderation/Blocklist/Server/Import.php:114 msgid "" "Imports patterns from the file that weren't already existing in the current " "blocklist." msgstr "Importe les motifs du fichier qui n'étaient pas déjà présent dans la liste de blocage actuelle." -#: src/Module/Moderation/Blocklist/Server/Import.php:131 +#: src/Module/Moderation/Blocklist/Server/Import.php:115 msgid "Replace" msgstr "Remplacer" -#: src/Module/Moderation/Blocklist/Server/Import.php:131 +#: src/Module/Moderation/Blocklist/Server/Import.php:115 msgid "Replaces the current blocklist by the imported patterns." msgstr "Remplace la liste de blocage locale par les motifs importés." -#: src/Module/Moderation/Blocklist/Server/Index.php:86 -#: src/Module/Moderation/Blocklist/Server/Index.php:110 -#: src/Module/Settings/Channels.php:231 +#: src/Module/Moderation/Blocklist/Server/Index.php:72 +#: src/Module/Moderation/Blocklist/Server/Index.php:96 +#: src/Module/Settings/Channels.php:217 msgid "Blocked server domain pattern" msgstr "Filtre de domaine bloqué" -#: src/Module/Moderation/Blocklist/Server/Index.php:88 +#: src/Module/Moderation/Blocklist/Server/Index.php:74 msgid "Delete server domain pattern" msgstr "Supprimer ce filtre de domaine bloqué" -#: src/Module/Moderation/Blocklist/Server/Index.php:88 +#: src/Module/Moderation/Blocklist/Server/Index.php:74 msgid "Check to delete this entry from the blocklist" msgstr "Cochez la case pour retirer cette entrée de la liste noire" -#: src/Module/Moderation/Blocklist/Server/Index.php:96 +#: src/Module/Moderation/Blocklist/Server/Index.php:82 msgid "Server Domain Pattern Blocklist" msgstr "Liste des filtres de domaines bloqués" -#: src/Module/Moderation/Blocklist/Server/Index.php:97 +#: src/Module/Moderation/Blocklist/Server/Index.php:83 msgid "" "This page can be used to define a blocklist of server domain patterns from " "the federated network that are not allowed to interact with your node. For " "each domain pattern you should also provide the reason why you block it." msgstr "Cette page sert à définit une liste de blocage de schémas de domaine de serveurs distants qui ne sont pas autorisé à interagir avec ce serveur. Veuillez fournir la raison pour laquelle vous avez décidé de bloquer chaque schéma de domaine." -#: src/Module/Moderation/Blocklist/Server/Index.php:98 +#: src/Module/Moderation/Blocklist/Server/Index.php:84 msgid "" "The list of blocked server domain patterns will be made publically available" " on the /friendica page so that your users and " "people investigating communication problems can find the reason easily." msgstr "La liste de blocage est disponible publiquement à la page /friendica pour permettre de déterminer la cause de certains problèmes de communication avec des serveurs distants." -#: src/Module/Moderation/Blocklist/Server/Index.php:104 +#: src/Module/Moderation/Blocklist/Server/Index.php:90 msgid "Import server domain pattern blocklist" msgstr "Importer la liste de blocage de motif de domaine de serveur" -#: src/Module/Moderation/Blocklist/Server/Index.php:105 +#: src/Module/Moderation/Blocklist/Server/Index.php:91 msgid "Add new entry to the blocklist" msgstr "Ajouter une nouvelle entrée à la liste de blocage" -#: src/Module/Moderation/Blocklist/Server/Index.php:108 +#: src/Module/Moderation/Blocklist/Server/Index.php:94 msgid "Save changes to the blocklist" msgstr "Sauvegarder la liste noire" -#: src/Module/Moderation/Blocklist/Server/Index.php:109 +#: src/Module/Moderation/Blocklist/Server/Index.php:95 msgid "Current Entries in the Blocklist" msgstr "Entrées de la liste noire" -#: src/Module/Moderation/Blocklist/Server/Index.php:112 +#: src/Module/Moderation/Blocklist/Server/Index.php:98 msgid "Delete entry from the blocklist" msgstr "Supprimer l'entrée de la liste de blocage" -#: src/Module/Moderation/Blocklist/Server/Index.php:113 +#: src/Module/Moderation/Blocklist/Server/Index.php:99 msgid "Delete entry from the blocklist?" msgstr "Supprimer l'entrée de la liste de blocage ?" -#: src/Module/Moderation/Item/Delete.php:50 +#: src/Module/Moderation/Item/Delete.php:36 msgid "Item marked for deletion." msgstr "L'élément va être supprimé." -#: src/Module/Moderation/Item/Delete.php:63 +#: src/Module/Moderation/Item/Delete.php:49 msgid "Delete this Item" msgstr "Supprimer l'élément" -#: src/Module/Moderation/Item/Delete.php:64 +#: src/Module/Moderation/Item/Delete.php:50 msgid "" "On this page you can delete an item from your node. If the item is a top " "level posting, the entire thread will be deleted." msgstr "Sur cette page, vous pouvez supprimer un élément de votre noeud. Si cet élément est le premier post d'un fil de discussion, le fil de discussion entier sera supprimé." -#: src/Module/Moderation/Item/Delete.php:65 +#: src/Module/Moderation/Item/Delete.php:51 msgid "" "You need to know the GUID of the item. You can find it e.g. by looking at " "the display URL. The last part of http://example.com/display/123456 is the " "GUID, here 123456." msgstr "Vous devez connaître le GUID de l'élément. Vous pouvez le trouver en sélectionnant l'élément puis en lisant l'URL. La dernière partie de l'URL est le GUID. Exemple: http://example.com/display/123456 a pour GUID: 123456." -#: src/Module/Moderation/Item/Delete.php:67 +#: src/Module/Moderation/Item/Delete.php:53 msgid "GUID" msgstr "GUID" -#: src/Module/Moderation/Item/Delete.php:67 +#: src/Module/Moderation/Item/Delete.php:53 msgid "The GUID of the item you want to delete." msgstr "GUID de l'élément à supprimer." -#: src/Module/Moderation/Item/Source.php:83 +#: src/Module/Moderation/Item/Source.php:69 msgid "Item Id" msgstr "Id de la publication" -#: src/Module/Moderation/Item/Source.php:84 +#: src/Module/Moderation/Item/Source.php:70 msgid "Item URI" msgstr "URI de la publication" -#: src/Module/Moderation/Item/Source.php:86 +#: src/Module/Moderation/Item/Source.php:72 msgid "Terms" msgstr "Termes" -#: src/Module/Moderation/Item/Source.php:87 +#: src/Module/Moderation/Item/Source.php:73 msgid "Tag" msgstr "Tag" -#: src/Module/Moderation/Item/Source.php:88 -#: src/Module/Moderation/Users/Active.php:126 -#: src/Module/Moderation/Users/Blocked.php:126 -#: src/Module/Moderation/Users/Index.php:140 +#: src/Module/Moderation/Item/Source.php:74 +#: src/Module/Moderation/Users/Active.php:112 +#: src/Module/Moderation/Users/Blocked.php:112 +#: src/Module/Moderation/Users/Index.php:126 msgid "Type" msgstr "Type" -#: src/Module/Moderation/Item/Source.php:89 +#: src/Module/Moderation/Item/Source.php:75 msgid "Term" msgstr "Terme" -#: src/Module/Moderation/Item/Source.php:90 +#: src/Module/Moderation/Item/Source.php:76 msgid "URL" msgstr "URL" -#: src/Module/Moderation/Item/Source.php:92 +#: src/Module/Moderation/Item/Source.php:78 msgid "Implicit Mention" msgstr "Mention implicite" -#: src/Module/Moderation/Item/Source.php:94 +#: src/Module/Moderation/Item/Source.php:80 msgid "Item not found" msgstr "Élément introuvable" -#: src/Module/Moderation/Item/Source.php:95 +#: src/Module/Moderation/Item/Source.php:81 msgid "No source recorded" msgstr "Aucune source enregistrée" -#: src/Module/Moderation/Item/Source.php:96 +#: src/Module/Moderation/Item/Source.php:82 msgid "" "Please make sure the debug.store_source config key is set in " "config/local.config.php for future items to have sources." msgstr "Merci de vérifier que la clé de configuration debug.store_source est définie dans config/local.config.php pour que les items futurs puissent avoir des sources." -#: src/Module/Moderation/Item/Source.php:98 +#: src/Module/Moderation/Item/Source.php:84 msgid "Item Guid" msgstr "GUID du contenu" -#: src/Module/Moderation/Report/Create.php:95 +#: src/Module/Moderation/Report/Create.php:81 msgid "Contact not found or their server is already blocked on this node." msgstr "Contact non trouvé ou son serveur est déjà bloqué sur ce nœud." -#: src/Module/Moderation/Report/Create.php:136 +#: src/Module/Moderation/Report/Create.php:122 msgid "Please login to access this page." msgstr "Connectez-vous pour accéder à cette page." -#: src/Module/Moderation/Report/Create.php:165 -#: src/Module/Moderation/Report/Create.php:180 -#: src/Module/Moderation/Report/Create.php:208 -#: src/Module/Moderation/Report/Create.php:260 -#: src/Module/Moderation/Report/Create.php:279 +#: src/Module/Moderation/Report/Create.php:151 +#: src/Module/Moderation/Report/Create.php:166 +#: src/Module/Moderation/Report/Create.php:194 +#: src/Module/Moderation/Report/Create.php:246 +#: src/Module/Moderation/Report/Create.php:265 msgid "Create Moderation Report" msgstr "Créer un rapport de modération" -#: src/Module/Moderation/Report/Create.php:166 +#: src/Module/Moderation/Report/Create.php:152 msgid "Pick Contact" msgstr "Sélectionner le contact" -#: src/Module/Moderation/Report/Create.php:167 +#: src/Module/Moderation/Report/Create.php:153 msgid "" "Please enter below the contact address or profile URL you would like to " "create a moderation report about." msgstr "Veuillez saisir ci-dessous l'adresse ou l'URL de profil du contact dont vous souhaitez faire un signalement." -#: src/Module/Moderation/Report/Create.php:171 +#: src/Module/Moderation/Report/Create.php:157 msgid "Contact address/URL" msgstr "Adresse/URL du contact" -#: src/Module/Moderation/Report/Create.php:181 +#: src/Module/Moderation/Report/Create.php:167 msgid "Pick Category" msgstr "Sélectionner la catégorie" -#: src/Module/Moderation/Report/Create.php:182 +#: src/Module/Moderation/Report/Create.php:168 msgid "Please pick below the category of your report." msgstr "Veuillez sélectionner la catégorie de votre signalement." -#: src/Module/Moderation/Report/Create.php:186 -#: src/Module/Moderation/Report/Create.php:311 +#: src/Module/Moderation/Report/Create.php:172 +#: src/Module/Moderation/Report/Create.php:297 msgid "Spam" msgstr "Spam" -#: src/Module/Moderation/Report/Create.php:186 +#: src/Module/Moderation/Report/Create.php:172 msgid "" "This contact is publishing many repeated/overly long posts/replies or " "advertising their product/websites in otherwise irrelevant conversations." msgstr "Ce contact publie beaucoup de publications/réponses répétées/très longs ou fait la promotion de ses produits/sites web sur des conversations non pertinentes." -#: src/Module/Moderation/Report/Create.php:187 -#: src/Module/Moderation/Report/Create.php:312 +#: src/Module/Moderation/Report/Create.php:173 +#: src/Module/Moderation/Report/Create.php:298 msgid "Illegal Content" msgstr "Contenu illégal" -#: src/Module/Moderation/Report/Create.php:187 +#: src/Module/Moderation/Report/Create.php:173 msgid "" "This contact is publishing content that is considered illegal in this node's" " hosting juridiction." msgstr "Ce contact publie du contenu qui est considéré illégal dans la juridiction où est hébergé ce nœud." -#: src/Module/Moderation/Report/Create.php:188 -#: src/Module/Moderation/Report/Create.php:313 +#: src/Module/Moderation/Report/Create.php:174 +#: src/Module/Moderation/Report/Create.php:299 msgid "Community Safety" msgstr "Sécurité de la communauté" -#: src/Module/Moderation/Report/Create.php:188 +#: src/Module/Moderation/Report/Create.php:174 msgid "" "This contact aggravated you or other people, by being provocative or " "insensitive, intentionally or not. This includes disclosing people's private" @@ -8537,12 +8532,12 @@ msgid "" "replies." msgstr "Ce contact vous a irrité ou a irrité d'autres personnes en se montrant provocateur ou insensible, intentionnellement ou non. Cela inclut la divulgation d'informations privées (doxxing), la publication de menaces ou d'images offensantes dans des publications ou des réponses." -#: src/Module/Moderation/Report/Create.php:189 -#: src/Module/Moderation/Report/Create.php:314 +#: src/Module/Moderation/Report/Create.php:175 +#: src/Module/Moderation/Report/Create.php:300 msgid "Unwanted Content/Behavior" msgstr "Contenu/Comportement indésirable" -#: src/Module/Moderation/Report/Create.php:189 +#: src/Module/Moderation/Report/Create.php:175 msgid "" "This contact has repeatedly published content irrelevant to the node's theme" " or is openly criticizing the node's administration/moderation without " @@ -8550,89 +8545,89 @@ msgid "" "nitpicking on a sensitive topic." msgstr "Ce contact a publié de manière répétée un contenu sans rapport avec le thème du nœud ou critique ouvertement l'administration/la modération du nœud sans discuter directement avec les personnes concernées, par exemple ou en pinaillant de manière répétée sur un sujet sensible." -#: src/Module/Moderation/Report/Create.php:190 -#: src/Module/Moderation/Report/Create.php:315 +#: src/Module/Moderation/Report/Create.php:176 +#: src/Module/Moderation/Report/Create.php:301 msgid "Rules Violation" msgstr "Violation de règles" -#: src/Module/Moderation/Report/Create.php:190 +#: src/Module/Moderation/Report/Create.php:176 msgid "" "This contact violated one or more rules of this node. You will be able to " "pick which one(s) in the next step." msgstr "Ce contact à violé une ou plusieurs règles de ce nœud. Vous pourrez sélectionner la ou les règles dans l'étape suivante." -#: src/Module/Moderation/Report/Create.php:191 +#: src/Module/Moderation/Report/Create.php:177 msgid "" "Please elaborate below why you submitted this report. The more details you " "provide, the better your report can be handled." msgstr "Veuillez indiquer si-dessous les raisons de ce signalement. Plus vous donnez de détails, mieux le signalement sera pris en compte." -#: src/Module/Moderation/Report/Create.php:193 +#: src/Module/Moderation/Report/Create.php:179 msgid "Additional Information" msgstr "Information supplémentaire" -#: src/Module/Moderation/Report/Create.php:193 +#: src/Module/Moderation/Report/Create.php:179 msgid "" "Please provide any additional information relevant to this particular " "report. You will be able to attach posts by this contact in the next step, " "but any context is welcome." msgstr "Veuillez fournir n'importe quelle information supplémentaire utile pour ce signalement. Vous pourrez joindre des publications de ce contact dans la prochaine étape, mais n'importe quel contenu est accepté." -#: src/Module/Moderation/Report/Create.php:209 +#: src/Module/Moderation/Report/Create.php:195 msgid "Pick Rules" msgstr "Sélectionner les règles" -#: src/Module/Moderation/Report/Create.php:210 +#: src/Module/Moderation/Report/Create.php:196 msgid "Please pick below the node rules you believe this contact violated." msgstr "Veuillez sélectionner les règles que vous estimez avoir été violées par ce contact." -#: src/Module/Moderation/Report/Create.php:261 +#: src/Module/Moderation/Report/Create.php:247 msgid "Pick Posts" msgstr "Sélectionner les publications" -#: src/Module/Moderation/Report/Create.php:262 +#: src/Module/Moderation/Report/Create.php:248 msgid "Please optionally pick posts to attach to your report." msgstr "Veuillez sélectionner, si vous le souhaitez, les publications à joindre à votre signalement." -#: src/Module/Moderation/Report/Create.php:281 +#: src/Module/Moderation/Report/Create.php:267 msgid "Submit Report" msgstr "Envoyer le signalement" -#: src/Module/Moderation/Report/Create.php:282 +#: src/Module/Moderation/Report/Create.php:268 msgid "Further Action" msgstr "Action supplémentaire" -#: src/Module/Moderation/Report/Create.php:283 +#: src/Module/Moderation/Report/Create.php:269 msgid "" "You can also perform one of the following action on the contact you " "reported:" msgstr "Vous pouvez également effectuer une des actions suivantes sur le contact que vous signalez :" -#: src/Module/Moderation/Report/Create.php:291 +#: src/Module/Moderation/Report/Create.php:277 msgid "Nothing" msgstr "Ne rien faire" -#: src/Module/Moderation/Report/Create.php:292 +#: src/Module/Moderation/Report/Create.php:278 msgid "Collapse contact" msgstr "Réduire le contact" -#: src/Module/Moderation/Report/Create.php:292 +#: src/Module/Moderation/Report/Create.php:278 msgid "" "Their posts and replies will keep appearing in your Network page but their " "content will be collapsed by default." msgstr "Leurs publications et réponses continueront d'apparaître sur votre page Réseau mais le contenu sera réduit par défaut." -#: src/Module/Moderation/Report/Create.php:293 +#: src/Module/Moderation/Report/Create.php:279 msgid "" "Their posts won't appear in your Network page anymore, but their replies can" " appear in forum threads. They still can follow you." msgstr "Leurs publications n'apparaîtront plus sur votre page Réseau, mais leurs réponses peuvent apparaître dans des fils de discussion. Ils peuvent toujours vous suivre." -#: src/Module/Moderation/Report/Create.php:294 +#: src/Module/Moderation/Report/Create.php:280 msgid "Block contact" msgstr "Bloquer le contact" -#: src/Module/Moderation/Report/Create.php:294 +#: src/Module/Moderation/Report/Create.php:280 msgid "" "Their posts won't appear in your Network page anymore, but their replies can" " appear in forum threads, with their content collapsed by default. They " @@ -8640,51 +8635,51 @@ msgid "" "means." msgstr "Leurs publications n'apparaîtront plus sur votre page Réseau mais leurs réponses peuvent apparaître dans des fils de discussion, avec le contenu réduit par défaut. Ils ne peuvent pas vous suivre mais peuvent accéder à vos publications publiques par d'autres moyens." -#: src/Module/Moderation/Report/Create.php:297 +#: src/Module/Moderation/Report/Create.php:283 msgid "Forward report" msgstr "Transmettre le signalement" -#: src/Module/Moderation/Report/Create.php:297 +#: src/Module/Moderation/Report/Create.php:283 msgid "Would you ike to forward this report to the remote server?" msgstr "Voulez-vous transmettre le signalement au serveur distant ?" -#: src/Module/Moderation/Report/Create.php:330 +#: src/Module/Moderation/Report/Create.php:316 msgid "1. Pick a contact" msgstr "1. Sélectionner le contact" -#: src/Module/Moderation/Report/Create.php:331 +#: src/Module/Moderation/Report/Create.php:317 msgid "2. Pick a category" msgstr "2. Sélectionner la catégorie" -#: src/Module/Moderation/Report/Create.php:332 +#: src/Module/Moderation/Report/Create.php:318 msgid "2a. Pick rules" msgstr "2a. Sélectionner les règles" -#: src/Module/Moderation/Report/Create.php:333 +#: src/Module/Moderation/Report/Create.php:319 msgid "2b. Add comment" msgstr "2b. Ajouter un commentaire" -#: src/Module/Moderation/Report/Create.php:334 +#: src/Module/Moderation/Report/Create.php:320 msgid "3. Pick posts" msgstr "3. Sélectionner les publications" -#: src/Module/Moderation/Reports.php:111 +#: src/Module/Moderation/Reports.php:97 msgid "List of reports" msgstr "Liste des signalements" -#: src/Module/Moderation/Reports.php:112 +#: src/Module/Moderation/Reports.php:98 msgid "This page display reports created by our or remote users." msgstr "Cette page affiche les signalements créés par les utilisateurs locaux ou distants." -#: src/Module/Moderation/Reports.php:113 +#: src/Module/Moderation/Reports.php:99 msgid "No report exists at this node." msgstr "Aucun signalement sur ce nœud." -#: src/Module/Moderation/Reports.php:116 +#: src/Module/Moderation/Reports.php:102 msgid "Category" msgstr "Catégorie" -#: src/Module/Moderation/Reports.php:120 +#: src/Module/Moderation/Reports.php:106 #, php-format msgid "%s total report" msgid_plural "%s total reports" @@ -8692,24 +8687,24 @@ msgstr[0] "%s signalement au total" msgstr[1] "%s signalements au total" msgstr[2] "%s signalements au total" -#: src/Module/Moderation/Reports.php:123 +#: src/Module/Moderation/Reports.php:109 msgid "URL of the reported contact." msgstr "URL du contact signalé." -#: src/Module/Moderation/Summary.php:57 src/Module/Settings/Account.php:436 +#: src/Module/Moderation/Summary.php:43 src/Module/Settings/Account.php:422 msgid "Channel Relay" msgstr "Relai de chaîne" -#: src/Module/Moderation/Summary.php:77 +#: src/Module/Moderation/Summary.php:63 msgid "Registered users" msgstr "Utilisateurs inscrits" -#: src/Module/Moderation/Summary.php:79 +#: src/Module/Moderation/Summary.php:65 msgid "Pending registrations" msgstr "Inscriptions en attente" -#: src/Module/Moderation/Users/Active.php:43 -#: src/Module/Moderation/Users/Index.php:43 +#: src/Module/Moderation/Users/Active.php:29 +#: src/Module/Moderation/Users/Index.php:29 #, php-format msgid "%s user blocked" msgid_plural "%s users blocked" @@ -8717,18 +8712,18 @@ msgstr[0] "%s utilisateur bloqué" msgstr[1] "%s utilisateurs bloqués" msgstr[2] "%s utilisateurs bloqués" -#: src/Module/Moderation/Users/Active.php:51 -#: src/Module/Moderation/Users/Active.php:85 -#: src/Module/Moderation/Users/Blocked.php:51 -#: src/Module/Moderation/Users/Blocked.php:85 -#: src/Module/Moderation/Users/Index.php:58 -#: src/Module/Moderation/Users/Index.php:92 +#: src/Module/Moderation/Users/Active.php:37 +#: src/Module/Moderation/Users/Active.php:71 +#: src/Module/Moderation/Users/Blocked.php:37 +#: src/Module/Moderation/Users/Blocked.php:71 +#: src/Module/Moderation/Users/Index.php:44 +#: src/Module/Moderation/Users/Index.php:78 msgid "You can't remove yourself" msgstr "Vous ne pouvez pas supprimer votre propre compte" -#: src/Module/Moderation/Users/Active.php:55 -#: src/Module/Moderation/Users/Blocked.php:55 -#: src/Module/Moderation/Users/Index.php:62 +#: src/Module/Moderation/Users/Active.php:41 +#: src/Module/Moderation/Users/Blocked.php:41 +#: src/Module/Moderation/Users/Index.php:48 #, php-format msgid "%s user deleted" msgid_plural "%s users deleted" @@ -8736,88 +8731,88 @@ msgstr[0] "%s utilisateur supprimé" msgstr[1] "%s utilisateurs supprimés" msgstr[2] "%s utilisateurs supprimés" -#: src/Module/Moderation/Users/Active.php:83 -#: src/Module/Moderation/Users/Blocked.php:83 -#: src/Module/Moderation/Users/Index.php:90 +#: src/Module/Moderation/Users/Active.php:69 +#: src/Module/Moderation/Users/Blocked.php:69 +#: src/Module/Moderation/Users/Index.php:76 #, php-format msgid "User \"%s\" deleted" msgstr "Utilisateur \"%s\" supprimé" -#: src/Module/Moderation/Users/Active.php:93 -#: src/Module/Moderation/Users/Index.php:100 +#: src/Module/Moderation/Users/Active.php:79 +#: src/Module/Moderation/Users/Index.php:86 #, php-format msgid "User \"%s\" blocked" msgstr "Utilisateur \"%s\" bloqué" -#: src/Module/Moderation/Users/Active.php:126 -#: src/Module/Moderation/Users/Blocked.php:126 -#: src/Module/Moderation/Users/Deleted.php:83 -#: src/Module/Moderation/Users/Index.php:140 -#: src/Module/Moderation/Users/Index.php:160 +#: src/Module/Moderation/Users/Active.php:112 +#: src/Module/Moderation/Users/Blocked.php:112 +#: src/Module/Moderation/Users/Deleted.php:69 +#: src/Module/Moderation/Users/Index.php:126 +#: src/Module/Moderation/Users/Index.php:146 msgid "Register date" msgstr "Date d'inscription" -#: src/Module/Moderation/Users/Active.php:126 -#: src/Module/Moderation/Users/Blocked.php:126 -#: src/Module/Moderation/Users/Deleted.php:83 -#: src/Module/Moderation/Users/Index.php:140 -#: src/Module/Moderation/Users/Index.php:160 +#: src/Module/Moderation/Users/Active.php:112 +#: src/Module/Moderation/Users/Blocked.php:112 +#: src/Module/Moderation/Users/Deleted.php:69 +#: src/Module/Moderation/Users/Index.php:126 +#: src/Module/Moderation/Users/Index.php:146 msgid "Last login" msgstr "Dernière connexion" -#: src/Module/Moderation/Users/Active.php:126 -#: src/Module/Moderation/Users/Blocked.php:126 -#: src/Module/Moderation/Users/Deleted.php:83 -#: src/Module/Moderation/Users/Index.php:140 -#: src/Module/Moderation/Users/Index.php:160 +#: src/Module/Moderation/Users/Active.php:112 +#: src/Module/Moderation/Users/Blocked.php:112 +#: src/Module/Moderation/Users/Deleted.php:69 +#: src/Module/Moderation/Users/Index.php:126 +#: src/Module/Moderation/Users/Index.php:146 msgid "Last public item" msgstr "Dernière publication publique" -#: src/Module/Moderation/Users/Active.php:134 +#: src/Module/Moderation/Users/Active.php:120 msgid "Active Accounts" msgstr "Comptes actifs" -#: src/Module/Moderation/Users/Active.php:138 -#: src/Module/Moderation/Users/Blocked.php:137 -#: src/Module/Moderation/Users/Index.php:153 +#: src/Module/Moderation/Users/Active.php:124 +#: src/Module/Moderation/Users/Blocked.php:123 +#: src/Module/Moderation/Users/Index.php:139 msgid "User blocked" msgstr "Utilisateur bloqué" -#: src/Module/Moderation/Users/Active.php:139 -#: src/Module/Moderation/Users/Blocked.php:139 -#: src/Module/Moderation/Users/Index.php:155 +#: src/Module/Moderation/Users/Active.php:125 +#: src/Module/Moderation/Users/Blocked.php:125 +#: src/Module/Moderation/Users/Index.php:141 msgid "Site admin" msgstr "Administration du Site" -#: src/Module/Moderation/Users/Active.php:140 -#: src/Module/Moderation/Users/Blocked.php:140 -#: src/Module/Moderation/Users/Index.php:156 +#: src/Module/Moderation/Users/Active.php:126 +#: src/Module/Moderation/Users/Blocked.php:126 +#: src/Module/Moderation/Users/Index.php:142 msgid "Account expired" msgstr "Compte expiré" -#: src/Module/Moderation/Users/Active.php:141 -#: src/Module/Moderation/Users/Index.php:159 +#: src/Module/Moderation/Users/Active.php:127 +#: src/Module/Moderation/Users/Index.php:145 msgid "Create a new user" msgstr "Créer un nouvel utilisateur" -#: src/Module/Moderation/Users/Active.php:147 -#: src/Module/Moderation/Users/Blocked.php:146 -#: src/Module/Moderation/Users/Index.php:165 +#: src/Module/Moderation/Users/Active.php:133 +#: src/Module/Moderation/Users/Blocked.php:132 +#: src/Module/Moderation/Users/Index.php:151 msgid "" "Selected users will be deleted!\\n\\nEverything these users had posted on " "this site will be permanently deleted!\\n\\nAre you sure?" msgstr "Les utilisateurs sélectionnés vont être supprimés!\\n\\nTout ce qu'ils ont posté sur ce site sera définitivement effacé!\\n\\nÊtes-vous certain?" -#: src/Module/Moderation/Users/Active.php:148 -#: src/Module/Moderation/Users/Blocked.php:147 -#: src/Module/Moderation/Users/Index.php:166 +#: src/Module/Moderation/Users/Active.php:134 +#: src/Module/Moderation/Users/Blocked.php:133 +#: src/Module/Moderation/Users/Index.php:152 msgid "" "The user {0} will be deleted!\\n\\nEverything this user has posted on this " "site will be permanently deleted!\\n\\nAre you sure?" msgstr "L'utilisateur {0} va être supprimé!\\n\\nTout ce qu'il a posté sur ce site sera définitivement perdu!\\n\\nÊtes-vous certain?" -#: src/Module/Moderation/Users/Blocked.php:43 -#: src/Module/Moderation/Users/Index.php:50 +#: src/Module/Moderation/Users/Blocked.php:29 +#: src/Module/Moderation/Users/Index.php:36 #, php-format msgid "%s user unblocked" msgid_plural "%s users unblocked" @@ -8825,54 +8820,54 @@ msgstr[0] "%s utilisateur débloqué" msgstr[1] "%s utilisateurs débloqués" msgstr[2] "%s utilisateurs débloqués" -#: src/Module/Moderation/Users/Blocked.php:92 -#: src/Module/Moderation/Users/Index.php:106 +#: src/Module/Moderation/Users/Blocked.php:78 +#: src/Module/Moderation/Users/Index.php:92 #, php-format msgid "User \"%s\" unblocked" msgstr "Utilisateur \"%s\" débloqué" -#: src/Module/Moderation/Users/Blocked.php:134 +#: src/Module/Moderation/Users/Blocked.php:120 msgid "Blocked Users" msgstr "Utilisateurs bloqués" -#: src/Module/Moderation/Users/Create.php:62 +#: src/Module/Moderation/Users/Create.php:48 msgid "New User" msgstr "Nouvel utilisateur" -#: src/Module/Moderation/Users/Create.php:63 +#: src/Module/Moderation/Users/Create.php:49 msgid "Add User" msgstr "Ajouter l'utilisateur" -#: src/Module/Moderation/Users/Create.php:70 +#: src/Module/Moderation/Users/Create.php:56 msgid "Name of the new user." msgstr "Nom du nouvel utilisateur." -#: src/Module/Moderation/Users/Create.php:71 +#: src/Module/Moderation/Users/Create.php:57 msgid "Nickname" msgstr "Pseudo" -#: src/Module/Moderation/Users/Create.php:71 +#: src/Module/Moderation/Users/Create.php:57 msgid "Nickname of the new user." msgstr "Pseudo du nouvel utilisateur." -#: src/Module/Moderation/Users/Create.php:72 +#: src/Module/Moderation/Users/Create.php:58 msgid "Email address of the new user." msgstr "Adresse de courriel du nouvel utilisateur." -#: src/Module/Moderation/Users/Deleted.php:81 +#: src/Module/Moderation/Users/Deleted.php:67 msgid "Users awaiting permanent deletion" msgstr "Utilisateurs en attente de suppression définitive" -#: src/Module/Moderation/Users/Deleted.php:83 -#: src/Module/Moderation/Users/Index.php:160 +#: src/Module/Moderation/Users/Deleted.php:69 +#: src/Module/Moderation/Users/Index.php:146 msgid "Permanent deletion" msgstr "Suppression définitive" -#: src/Module/Moderation/Users/Index.php:150 +#: src/Module/Moderation/Users/Index.php:136 msgid "User waiting for permanent deletion" msgstr "Utilisateur en attente de suppression définitive" -#: src/Module/Moderation/Users/Pending.php:44 +#: src/Module/Moderation/Users/Pending.php:30 #, php-format msgid "%s user approved" msgid_plural "%s users approved" @@ -8880,7 +8875,7 @@ msgstr[0] "%s utilisateur approuvé" msgstr[1] "%s utilisateurs approuvés" msgstr[2] "%s utilisateurs approuvés" -#: src/Module/Moderation/Users/Pending.php:51 +#: src/Module/Moderation/Users/Pending.php:37 #, php-format msgid "%s registration revoked" msgid_plural "%s registrations revoked" @@ -8888,420 +8883,406 @@ msgstr[0] "%s inscription refusée" msgstr[1] "%s inscriptions refusées" msgstr[2] "%s inscriptions refusées" -#: src/Module/Moderation/Users/Pending.php:76 +#: src/Module/Moderation/Users/Pending.php:62 msgid "Account approved." msgstr "Inscription validée." -#: src/Module/Moderation/Users/Pending.php:82 +#: src/Module/Moderation/Users/Pending.php:68 msgid "Registration revoked" msgstr "Inscription refusée" -#: src/Module/Moderation/Users/Pending.php:97 +#: src/Module/Moderation/Users/Pending.php:83 msgid "User registrations awaiting review" msgstr "Inscriptions en attente de confirmation" -#: src/Module/Moderation/Users/Pending.php:99 +#: src/Module/Moderation/Users/Pending.php:85 msgid "Request date" msgstr "Date de la demande" -#: src/Module/Moderation/Users/Pending.php:100 +#: src/Module/Moderation/Users/Pending.php:86 msgid "No registrations." msgstr "Pas d'inscriptions." -#: src/Module/Moderation/Users/Pending.php:101 +#: src/Module/Moderation/Users/Pending.php:87 msgid "Note from the user" msgstr "Message personnel" -#: src/Module/Moderation/Users/Pending.php:103 +#: src/Module/Moderation/Users/Pending.php:89 msgid "Deny" msgstr "Refuser" -#: src/Module/Notifications/Introductions.php:105 +#: src/Module/Notifications/Introductions.php:91 msgid "Show Ignored Requests" msgstr "Voir les demandes ignorées" -#: src/Module/Notifications/Introductions.php:105 +#: src/Module/Notifications/Introductions.php:91 msgid "Hide Ignored Requests" msgstr "Cacher les demandes ignorées" -#: src/Module/Notifications/Introductions.php:121 -#: src/Module/Notifications/Introductions.php:184 +#: src/Module/Notifications/Introductions.php:107 +#: src/Module/Notifications/Introductions.php:170 msgid "Notification type:" msgstr "Type de notification :" -#: src/Module/Notifications/Introductions.php:124 +#: src/Module/Notifications/Introductions.php:110 msgid "Suggested by:" msgstr "Suggéré par :" -#: src/Module/Notifications/Introductions.php:149 +#: src/Module/Notifications/Introductions.php:135 msgid "Claims to be known to you: " msgstr "Prétend que vous le connaissez : " -#: src/Module/Notifications/Introductions.php:158 +#: src/Module/Notifications/Introductions.php:144 msgid "Shall your connection be bidirectional or not?" msgstr "Souhaitez vous que votre connexion soit bi-directionnelle ?" -#: src/Module/Notifications/Introductions.php:159 +#: src/Module/Notifications/Introductions.php:145 #, php-format msgid "" "Accepting %s as a friend allows %s to subscribe to your posts, and you will " "also receive updates from them in your news feed." msgstr "Accepter %s comme ami autorise %s à s'abonner à vos publications, et vous recevrez également des nouvelles d'eux dans votre fil d'actualités." -#: src/Module/Notifications/Introductions.php:160 +#: src/Module/Notifications/Introductions.php:146 #, php-format msgid "" "Accepting %s as a subscriber allows them to subscribe to your posts, but you" " will not receive updates from them in your news feed." msgstr "Accepter %s comme ami les autorise à s'abonner à vos publications, mais vous ne recevrez pas de nouvelles d'eux dans votre fil d'actualités." -#: src/Module/Notifications/Introductions.php:162 +#: src/Module/Notifications/Introductions.php:148 msgid "Friend" msgstr "Ami" -#: src/Module/Notifications/Introductions.php:163 +#: src/Module/Notifications/Introductions.php:149 msgid "Subscriber" msgstr "Abonné∙e" -#: src/Module/Notifications/Introductions.php:222 +#: src/Module/Notifications/Introductions.php:208 msgid "No introductions." msgstr "Aucune demande d'introduction." -#: src/Module/Notifications/Introductions.php:223 -#: src/Module/Notifications/Notifications.php:141 +#: src/Module/Notifications/Introductions.php:209 +#: src/Module/Notifications/Notifications.php:127 #, php-format msgid "No more %s notifications." msgstr "Aucune notification de %s" -#: src/Module/Notifications/Notification.php:135 +#: src/Module/Notifications/Notification.php:121 msgid "You must be logged in to show this page." msgstr "Vous devez être identifié pour afficher cette page." -#: src/Module/Notifications/Notifications.php:66 +#: src/Module/Notifications/Notifications.php:52 msgid "Network Notifications" msgstr "Notifications du réseau" -#: src/Module/Notifications/Notifications.php:72 +#: src/Module/Notifications/Notifications.php:58 msgid "System Notifications" msgstr "Notifications du système" -#: src/Module/Notifications/Notifications.php:78 +#: src/Module/Notifications/Notifications.php:64 msgid "Personal Notifications" msgstr "Notifications personnelles" -#: src/Module/Notifications/Notifications.php:84 +#: src/Module/Notifications/Notifications.php:70 msgid "Home Notifications" msgstr "Notifications de page d'accueil" -#: src/Module/Notifications/Notifications.php:146 +#: src/Module/Notifications/Notifications.php:132 msgid "Show unread" msgstr "Afficher non-lus" -#: src/Module/Notifications/Ping.php:220 +#: src/Module/Notifications/Ping.php:206 msgid "{0} requested registration" msgstr "{0} a demandé à s'inscrire" -#: src/Module/Notifications/Ping.php:229 +#: src/Module/Notifications/Ping.php:215 #, php-format msgid "{0} and %d others requested registration" msgstr "{0} et %d autres attendent la confirmation de leur inscription." -#: src/Module/OAuth/Acknowledge.php:51 +#: src/Module/OAuth/Acknowledge.php:37 msgid "Authorize application connection" msgstr "Autoriser l'application à se connecter" -#: src/Module/OAuth/Acknowledge.php:53 +#: src/Module/OAuth/Acknowledge.php:39 msgid "" "Do you want to authorize this application to access your posts and contacts," " and/or create new posts for you?" msgstr "Voulez-vous autoriser cette application à accéder à vos publications et contacts, et/ou à créer des billets à votre place?" -#: src/Module/OAuth/Authorize.php:54 +#: src/Module/OAuth/Authorize.php:40 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:75 +#: src/Module/OAuth/Authorize.php:45 src/Module/OAuth/Token.php:61 msgid "Incomplete request data" msgstr "Requête incomplète" -#: src/Module/OAuth/Authorize.php:106 +#: src/Module/OAuth/Authorize.php:92 #, php-format msgid "" "Please copy the following authentication code into your application and " "close this window: %s" msgstr "Veuillez copier le code d'identification suivant dans votre application et ensuite fermer cette fenêtre: %s" -#: src/Module/OAuth/Token.php:80 +#: src/Module/OAuth/Token.php:66 msgid "Invalid data or unknown client" msgstr "Données invalides ou client inconnu" -#: src/Module/OAuth/Token.php:105 +#: src/Module/OAuth/Token.php:91 msgid "Unsupported or missing grant type" msgstr "Type de \"grant\" manquant ou non pris en charge" -#: src/Module/OStatus/Repair.php:83 -msgid "Resubscribing to OStatus contacts" -msgstr "Réinscription aux contacts OStatus" - -#: src/Module/OStatus/Repair.php:84 src/Module/OStatus/Subscribe.php:160 -msgid "Keep this window open until done." -msgstr "Veuillez garder cette fenêtre ouverte jusqu'à la fin." - -#: src/Module/OStatus/Repair.php:85 -msgid "✔ Done" -msgstr "✔ Fait" - -#: src/Module/OStatus/Repair.php:86 -msgid "No OStatus contacts to resubscribe to." -msgstr "Aucun contact OStatus à se réabonner." - -#: src/Module/OStatus/Subscribe.php:72 +#: src/Module/OStatus/Subscribe.php:58 msgid "Subscribing to contacts" msgstr "Abonnement aux contacts" -#: src/Module/OStatus/Subscribe.php:81 +#: src/Module/OStatus/Subscribe.php:67 msgid "No contact provided." msgstr "Pas de contact fourni." -#: src/Module/OStatus/Subscribe.php:87 +#: src/Module/OStatus/Subscribe.php:73 msgid "Couldn't fetch information for contact." msgstr "Impossible de récupérer les informations pour ce contact." -#: src/Module/OStatus/Subscribe.php:98 +#: src/Module/OStatus/Subscribe.php:84 msgid "Couldn't fetch friends for contact." msgstr "Impossible d'obtenir les abonnements de ce contact." -#: src/Module/OStatus/Subscribe.php:104 src/Module/OStatus/Subscribe.php:115 +#: src/Module/OStatus/Subscribe.php:90 src/Module/OStatus/Subscribe.php:101 msgid "Couldn't fetch following contacts." msgstr "Impossible de récupérer les contacts suivants." -#: src/Module/OStatus/Subscribe.php:110 +#: src/Module/OStatus/Subscribe.php:96 msgid "Couldn't fetch remote profile." msgstr "Impossible de récupérer le profil distant." -#: src/Module/OStatus/Subscribe.php:120 +#: src/Module/OStatus/Subscribe.php:106 msgid "Unsupported network" msgstr "Réseau incompatible" -#: src/Module/OStatus/Subscribe.php:136 +#: src/Module/OStatus/Subscribe.php:122 msgid "Done" msgstr "Terminé" -#: src/Module/OStatus/Subscribe.php:150 +#: src/Module/OStatus/Subscribe.php:136 msgid "success" msgstr "réussite" -#: src/Module/OStatus/Subscribe.php:152 +#: src/Module/OStatus/Subscribe.php:138 msgid "failed" msgstr "échec" -#: src/Module/OStatus/Subscribe.php:155 +#: src/Module/OStatus/Subscribe.php:141 msgid "ignored" msgstr "ignoré" -#: src/Module/Photo.php:122 +#: src/Module/OStatus/Subscribe.php:146 +msgid "Keep this window open until done." +msgstr "Veuillez garder cette fenêtre ouverte jusqu'à la fin." + +#: src/Module/Photo.php:108 msgid "The Photo is not available." msgstr "La photo n'est pas disponible." -#: src/Module/Photo.php:147 +#: src/Module/Photo.php:133 #, 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:188 +#: src/Module/Photo.php:174 #, php-format msgid "Invalid external resource with url %s." msgstr "La ressource externe avec l'URL %s est invalide." -#: src/Module/Photo.php:190 +#: src/Module/Photo.php:176 #, php-format msgid "Invalid photo with id %s." msgstr "La photo avec l'identifiant %s est invalide." -#: src/Module/Post/Edit.php:82 src/Module/Post/Edit.php:96 +#: src/Module/Post/Edit.php:68 src/Module/Post/Edit.php:82 msgid "Post not found." msgstr "Publication non trouvée." -#: src/Module/Post/Edit.php:102 +#: src/Module/Post/Edit.php:88 msgid "Edit post" msgstr "Éditer la publication" -#: src/Module/Post/Edit.php:136 +#: src/Module/Post/Edit.php:122 msgid "web link" msgstr "lien web" -#: src/Module/Post/Edit.php:137 +#: src/Module/Post/Edit.php:123 msgid "Insert video link" msgstr "Insérer un lien video" -#: src/Module/Post/Edit.php:138 +#: src/Module/Post/Edit.php:124 msgid "video link" msgstr "lien vidéo" -#: src/Module/Post/Edit.php:139 +#: src/Module/Post/Edit.php:125 msgid "Insert audio link" msgstr "Insérer un lien audio" -#: src/Module/Post/Edit.php:140 +#: src/Module/Post/Edit.php:126 msgid "audio link" msgstr "lien audio" -#: src/Module/Post/Tag/Remove.php:106 +#: src/Module/Post/Tag/Remove.php:92 msgid "Remove Item Tag" msgstr "Enlever le tag de l'élément" -#: src/Module/Post/Tag/Remove.php:107 +#: src/Module/Post/Tag/Remove.php:93 msgid "Select a tag to remove: " msgstr "Sélectionner un tag à supprimer :" -#: src/Module/Post/Tag/Remove.php:108 -#: src/Module/Settings/TwoFactor/Trusted.php:147 +#: src/Module/Post/Tag/Remove.php:94 +#: src/Module/Settings/TwoFactor/Trusted.php:133 msgid "Remove" msgstr "Utiliser comme photo de profil" -#: src/Module/Privacy/PermissionTooltip.php:71 +#: src/Module/Privacy/PermissionTooltip.php:57 #, php-format msgid "Wrong type \"%s\", expected one of: %s" msgstr "Type inattendu \"%s\", valeurs attendues : %s" -#: src/Module/Privacy/PermissionTooltip.php:101 +#: src/Module/Privacy/PermissionTooltip.php:87 msgid "Model not found" msgstr "Objet introuvable" -#: src/Module/Privacy/PermissionTooltip.php:118 +#: src/Module/Privacy/PermissionTooltip.php:104 msgid "Unlisted" msgstr "Non listé" -#: src/Module/Privacy/PermissionTooltip.php:124 +#: src/Module/Privacy/PermissionTooltip.php:110 msgid "Remote privacy information not available." msgstr "Informations de confidentialité indisponibles." -#: src/Module/Privacy/PermissionTooltip.php:131 +#: src/Module/Privacy/PermissionTooltip.php:117 msgid "Visible to:" msgstr "Visible par :" -#: src/Module/Privacy/PermissionTooltip.php:133 +#: src/Module/Privacy/PermissionTooltip.php:119 msgid "CC:" msgstr "CC:" -#: src/Module/Privacy/PermissionTooltip.php:134 +#: src/Module/Privacy/PermissionTooltip.php:120 msgid "BCC:" msgstr "CCI:" -#: src/Module/Privacy/PermissionTooltip.php:135 +#: src/Module/Privacy/PermissionTooltip.php:121 msgid "Audience:" msgstr "Audience :" -#: src/Module/Privacy/PermissionTooltip.php:136 +#: src/Module/Privacy/PermissionTooltip.php:122 msgid "Attributed To:" msgstr "Attribué à :" -#: src/Module/Privacy/PermissionTooltip.php:234 +#: src/Module/Privacy/PermissionTooltip.php:220 #, php-format msgid "Collection (%s)" msgstr "Collection (%s)" -#: src/Module/Privacy/PermissionTooltip.php:238 +#: src/Module/Privacy/PermissionTooltip.php:224 #, php-format msgid "Followers (%s)" msgstr "Abonnés (%s)" -#: src/Module/Privacy/PermissionTooltip.php:255 +#: src/Module/Privacy/PermissionTooltip.php:241 #, php-format msgid "%d more" msgstr "%d supplémentaire" -#: src/Module/Profile/Contacts.php:159 +#: src/Module/Profile/Contacts.php:145 msgid "No contacts." msgstr "Aucun contact." -#: src/Module/Profile/Conversations.php:106 -#: src/Module/Profile/Conversations.php:109 src/Module/Profile/Profile.php:353 -#: src/Module/Profile/Profile.php:356 src/Protocol/Feed.php:1114 -#: src/Protocol/OStatus.php:1011 -#, php-format -msgid "%s's timeline" -msgstr "Le flux de %s" - -#: src/Module/Profile/Conversations.php:107 src/Module/Profile/Profile.php:354 -#: src/Protocol/Feed.php:1118 src/Protocol/OStatus.php:1016 +#: src/Module/Profile/Conversations.php:92 src/Module/Profile/Profile.php:339 +#: src/Protocol/Feed.php:1097 #, php-format msgid "%s's posts" msgstr "Les publications originales de %s" -#: src/Module/Profile/Conversations.php:108 src/Module/Profile/Profile.php:355 -#: src/Protocol/Feed.php:1121 src/Protocol/OStatus.php:1020 +#: src/Module/Profile/Conversations.php:93 src/Module/Profile/Profile.php:340 +#: src/Protocol/Feed.php:1100 #, 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:192 -#: src/Module/Settings/Profile/Photo/Index.php:58 +#: src/Module/Profile/Conversations.php:94 src/Module/Profile/Profile.php:341 +#: src/Protocol/Feed.php:1093 +#, php-format +msgid "%s's timeline" +msgstr "Le flux de %s" + +#: src/Module/Profile/Photos.php:150 src/Module/Profile/Photos.php:153 +#: src/Module/Profile/Photos.php:178 +#: src/Module/Settings/Profile/Photo/Index.php:44 #, php-format msgid "Image exceeds size limit of %s" msgstr "L'image dépasse la taille limite de %s" -#: src/Module/Profile/Photos.php:170 +#: src/Module/Profile/Photos.php:156 msgid "Image upload didn't complete, please try again" msgstr "La mise en ligne de l'image ne s'est pas terminée, veuillez réessayer" -#: src/Module/Profile/Photos.php:173 +#: src/Module/Profile/Photos.php:159 msgid "Image file is missing" msgstr "Fichier image manquant" -#: src/Module/Profile/Photos.php:178 +#: src/Module/Profile/Photos.php:164 msgid "" "Server can't accept new file upload at this time, please contact your " "administrator" msgstr "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:200 +#: src/Module/Profile/Photos.php:186 msgid "Image file is empty." msgstr "Fichier image vide." -#: src/Module/Profile/Photos.php:352 +#: src/Module/Profile/Photos.php:338 msgid "View Album" msgstr "Voir l'album" -#: src/Module/Profile/Profile.php:114 src/Module/Profile/Restricted.php:50 +#: src/Module/Profile/Profile.php:100 src/Module/Profile/Restricted.php:36 msgid "Profile not found." msgstr "Profil introuvable." -#: src/Module/Profile/Profile.php:160 +#: src/Module/Profile/Profile.php:146 #, php-format msgid "" "You're currently viewing your profile as %s Cancel" msgstr "Vous êtes en train de consulter votre profil en tant que %s Annuler" -#: src/Module/Profile/Profile.php:169 +#: src/Module/Profile/Profile.php:155 msgid "Full Name:" msgstr "Nom complet :" -#: src/Module/Profile/Profile.php:174 +#: src/Module/Profile/Profile.php:160 msgid "Member since:" msgstr "Membre depuis :" -#: src/Module/Profile/Profile.php:180 +#: src/Module/Profile/Profile.php:166 msgid "j F, Y" msgstr "j F, Y" -#: src/Module/Profile/Profile.php:181 +#: src/Module/Profile/Profile.php:167 msgid "j F" msgstr "j F" -#: src/Module/Profile/Profile.php:189 src/Util/Temporal.php:168 +#: src/Module/Profile/Profile.php:175 src/Util/Temporal.php:154 msgid "Birthday:" msgstr "Anniversaire :" -#: src/Module/Profile/Profile.php:192 -#: src/Module/Settings/Profile/Index.php:296 src/Util/Temporal.php:170 +#: src/Module/Profile/Profile.php:178 +#: src/Module/Settings/Profile/Index.php:282 src/Util/Temporal.php:156 msgid "Age: " msgstr "Age : " -#: src/Module/Profile/Profile.php:192 -#: src/Module/Settings/Profile/Index.php:296 src/Util/Temporal.php:170 +#: src/Module/Profile/Profile.php:178 +#: src/Module/Settings/Profile/Index.php:282 src/Util/Temporal.php:156 #, php-format msgid "%d year old" msgid_plural "%d years old" @@ -9309,46 +9290,46 @@ msgstr[0] "%d an" msgstr[1] "%d ans" msgstr[2] "%d ans" -#: src/Module/Profile/Profile.php:197 -#: src/Module/Settings/Profile/Index.php:289 +#: src/Module/Profile/Profile.php:183 +#: src/Module/Settings/Profile/Index.php:275 msgid "Description:" msgstr "Description :" -#: src/Module/Profile/Profile.php:263 +#: src/Module/Profile/Profile.php:249 msgid "Groups:" msgstr "Groupes :" -#: src/Module/Profile/Profile.php:275 +#: src/Module/Profile/Profile.php:261 msgid "View profile as:" msgstr "Consulter le profil en tant que :" -#: src/Module/Profile/Profile.php:292 +#: src/Module/Profile/Profile.php:278 msgid "View as" msgstr "Voir en tant que" -#: src/Module/Profile/RemoteFollow.php:82 +#: src/Module/Profile/RemoteFollow.php:68 msgid "Profile unavailable." msgstr "Profil indisponible." -#: src/Module/Profile/RemoteFollow.php:88 +#: src/Module/Profile/RemoteFollow.php:74 msgid "Invalid locator" msgstr "Localisateur invalide" -#: src/Module/Profile/RemoteFollow.php:95 +#: src/Module/Profile/RemoteFollow.php:81 msgid "The provided profile link doesn't seem to be valid" msgstr "Le lien de profil fourni ne semble pas valide." -#: src/Module/Profile/RemoteFollow.php:100 +#: src/Module/Profile/RemoteFollow.php:86 msgid "" "Remote subscription can't be done for your network. Please subscribe " "directly on your system." msgstr "L'abonnement à distance ne peut pas être fait pour votre réseau. Merci de vous abonner directement sur votre système." -#: src/Module/Profile/RemoteFollow.php:128 +#: src/Module/Profile/RemoteFollow.php:114 msgid "Friend/Connection Request" msgstr "Demande de mise en contact" -#: src/Module/Profile/RemoteFollow.php:129 +#: src/Module/Profile/RemoteFollow.php:115 #, php-format msgid "" "Enter your Webfinger address (user@domain.tld) or profile URL here. If this " @@ -9356,579 +9337,579 @@ msgid "" " or %s directly on your system." msgstr "Saisissez votre adresse WebFinger (utilisateur@domaine.tld) ou l'adresse URL de votre profil ici. Si ce n'est pas supporté par votre site, vous devrez vous abonner à %s ou %s directement depuis votre système." -#: src/Module/Profile/RemoteFollow.php:130 +#: src/Module/Profile/RemoteFollow.php:116 #, php-format msgid "" "If you are not yet a member of the free social web, follow " "this link to find a public Friendica node and join us today." msgstr "Si vous n'avez pas de compte sur un site compatible, cliquez ici pour trouver un site Friendica public et vous inscrire dès aujourd'hui." -#: src/Module/Profile/RemoteFollow.php:131 +#: src/Module/Profile/RemoteFollow.php:117 msgid "Your Webfinger address or profile URL:" msgstr "Votre adresse Webfinger ou URL de profil :" -#: src/Module/Profile/Restricted.php:59 +#: src/Module/Profile/Restricted.php:45 msgid "Restricted profile" msgstr "Profil restreint" -#: src/Module/Profile/Restricted.php:60 +#: src/Module/Profile/Restricted.php:46 msgid "" "This profile has been restricted which prevents access to their public " "content from anonymous visitors." msgstr "Ce profil a été restreint ce qui empêche l'accès des visiteurs anonymes à son contenu public." -#: src/Module/Profile/Schedule.php:83 +#: src/Module/Profile/Schedule.php:69 msgid "Scheduled" msgstr "Programmé" -#: src/Module/Profile/Schedule.php:84 +#: src/Module/Profile/Schedule.php:70 msgid "Content" msgstr "Contenu" -#: src/Module/Profile/Schedule.php:85 +#: src/Module/Profile/Schedule.php:71 msgid "Remove post" msgstr "Supprimer la publication" -#: src/Module/Register.php:91 +#: src/Module/Register.php:77 msgid "Only parent users can create additional accounts." msgstr "Seuls les comptes parent peuvent créer des comptes supplémentaires." -#: src/Module/Register.php:106 src/Module/User/Import.php:112 +#: src/Module/Register.php:92 src/Module/User/Import.php:98 msgid "" "This site has exceeded the number of allowed daily account registrations. " "Please try again tomorrow." msgstr "Le nombre d'inscriptions quotidiennes pour ce site a été dépassé. Merci de réessayer demain." -#: src/Module/Register.php:123 +#: src/Module/Register.php:109 msgid "" "You may (optionally) fill in this form via OpenID by supplying your OpenID " "and clicking \"Register\"." msgstr "Vous pouvez (si vous le souhaitez) remplir ce formulaire via OpenID en fournissant votre OpenID et en cliquant sur \"S'inscrire\"." -#: src/Module/Register.php:124 +#: src/Module/Register.php:110 msgid "" "If you are not familiar with OpenID, please leave that field blank and fill " "in the rest of the items." msgstr "Si vous n'êtes pas familier avec OpenID, laissez ce champ vide et remplissez le reste." -#: src/Module/Register.php:125 +#: src/Module/Register.php:111 msgid "Your OpenID (optional): " msgstr "Votre OpenID (facultatif): " -#: src/Module/Register.php:134 +#: src/Module/Register.php:120 msgid "Include your profile in member directory?" msgstr "Inclure votre profil dans l'annuaire des membres?" -#: src/Module/Register.php:155 +#: src/Module/Register.php:141 msgid "Note for the admin" msgstr "Commentaire pour l'administrateur" -#: src/Module/Register.php:155 +#: src/Module/Register.php:141 msgid "Leave a message for the admin, why you want to join this node" msgstr "Indiquez à l'administrateur les raisons de votre inscription à cette instance." -#: src/Module/Register.php:156 +#: src/Module/Register.php:142 msgid "Membership on this site is by invitation only." msgstr "L'inscription à ce site se fait uniquement sur invitation." -#: src/Module/Register.php:157 +#: src/Module/Register.php:143 msgid "Your invitation code: " msgstr "Votre code d'invitation :" -#: src/Module/Register.php:165 +#: src/Module/Register.php:151 msgid "Your Display Name (as you would like it to be displayed on this system" msgstr "Votre Nom d'Affichage (tel que vous souhaiteriez l'afficher sur ce système" -#: src/Module/Register.php:166 +#: src/Module/Register.php:152 msgid "" "Your Email Address: (Initial information will be send there, so this has to " "be an existing address.)" msgstr "Votre courriel : (Des informations de connexion vont être envoyées à cette adresse; elle doit exister)." -#: src/Module/Register.php:167 +#: src/Module/Register.php:153 msgid "Please repeat your e-mail address:" msgstr "Veuillez répéter votre adresse courriel :" -#: src/Module/Register.php:169 src/Module/Security/PasswordTooLong.php:100 -#: src/Module/Settings/Account.php:569 +#: src/Module/Register.php:155 src/Module/Security/PasswordTooLong.php:86 +#: src/Module/Settings/Account.php:555 msgid "New Password:" msgstr "Nouveau mot de passe :" -#: src/Module/Register.php:169 +#: src/Module/Register.php:155 msgid "Leave empty for an auto generated password." msgstr "Laisser ce champ libre pour obtenir un mot de passe généré automatiquement." -#: src/Module/Register.php:170 src/Module/Security/PasswordTooLong.php:101 -#: src/Module/Settings/Account.php:570 +#: src/Module/Register.php:156 src/Module/Security/PasswordTooLong.php:87 +#: src/Module/Settings/Account.php:556 msgid "Confirm:" msgstr "Confirmer :" -#: src/Module/Register.php:171 +#: src/Module/Register.php:157 #, php-format msgid "" "Choose a profile nickname. This must begin with a text character. Your " "profile address on this site will then be \"nickname@%s\"." msgstr "Choisissez un pseudo. Celui devra commencer par une lettre. L'adresse de votre profil en découlera sous la forme \"pseudo@%s\"." -#: src/Module/Register.php:172 +#: src/Module/Register.php:158 msgid "Choose a nickname: " msgstr "Choisir un pseudo : " -#: src/Module/Register.php:180 src/Module/User/Import.php:118 +#: src/Module/Register.php:166 src/Module/User/Import.php:104 msgid "Import" msgstr "Importer" -#: src/Module/Register.php:181 +#: src/Module/Register.php:167 msgid "Import your profile to this friendica instance" msgstr "Importer votre profile dans cette instance de friendica" -#: src/Module/Register.php:188 +#: src/Module/Register.php:174 msgid "Note: This node explicitly contains adult content" msgstr "Note: Ce nœud contient explicitement du contenu destiné aux adultes" -#: src/Module/Register.php:190 src/Module/Settings/Delegation.php:181 +#: src/Module/Register.php:176 src/Module/Settings/Delegation.php:167 msgid "Parent Password:" msgstr "Mot de passe du compte parent :" -#: src/Module/Register.php:190 src/Module/Settings/Delegation.php:181 +#: src/Module/Register.php:176 src/Module/Settings/Delegation.php:167 msgid "" "Please enter the password of the parent account to legitimize your request." msgstr "Veuillez saisir le mot de passe du compte parent pour authentifier votre requête." -#: src/Module/Register.php:219 +#: src/Module/Register.php:205 msgid "Password doesn't match." msgstr "Le mot de passe ne correspond pas." -#: src/Module/Register.php:225 +#: src/Module/Register.php:211 msgid "Please enter your password." msgstr "Veuillez saisir votre mot de passe." -#: src/Module/Register.php:267 +#: src/Module/Register.php:253 msgid "You have entered too much information." msgstr "Vous avez entré trop d'informations." -#: src/Module/Register.php:290 +#: src/Module/Register.php:276 msgid "Please enter the identical mail address in the second field." msgstr "Veuillez entrer une adresse courriel identique dans le deuxième champ." -#: src/Module/Register.php:298 +#: src/Module/Register.php:284 msgid "Nickname cannot start with a digit." msgstr "Le pseudo ne peut pas commencer par un chiffre." -#: src/Module/Register.php:300 +#: src/Module/Register.php:286 msgid "Nickname can only contain US-ASCII characters." msgstr "Le pseudo ne peut contenir que des caractères US-ASCII." -#: src/Module/Register.php:329 +#: src/Module/Register.php:315 msgid "The additional account was created." msgstr "Le compte additionnel a bien été créé." -#: src/Module/Register.php:354 +#: src/Module/Register.php:340 msgid "" "Registration successful. Please check your email for further instructions." msgstr "Inscription réussie. Vérifiez vos courriels pour la suite des instructions." -#: src/Module/Register.php:361 +#: src/Module/Register.php:347 #, php-format msgid "" "Failed to send email message. Here your accout details:
login: %s
" "password: %s

You can change your password after login." msgstr "Impossible d’envoyer le courriel de confirmation. Voici vos informations de connexion:
identifiant : %s
mot de passe : %s

Vous pourrez changer votre mot de passe une fois connecté." -#: src/Module/Register.php:367 +#: src/Module/Register.php:353 msgid "Registration successful." msgstr "Inscription réussie." -#: src/Module/Register.php:376 src/Module/Register.php:383 -#: src/Module/Register.php:393 +#: src/Module/Register.php:362 src/Module/Register.php:369 +#: src/Module/Register.php:379 msgid "Your registration can not be processed." msgstr "Votre inscription ne peut être traitée." -#: src/Module/Register.php:382 +#: src/Module/Register.php:368 msgid "You have to leave a request note for the admin." msgstr "Vous devez rédiger une demande auprès de l'administrateur." -#: src/Module/Register.php:392 +#: src/Module/Register.php:378 msgid "An internal error occured." msgstr "Une erreur interne est survenue." -#: src/Module/Register.php:414 +#: src/Module/Register.php:400 msgid "Your registration is pending approval by the site owner." msgstr "Votre inscription attend une validation du propriétaire du site." -#: src/Module/Search/Acl.php:78 +#: src/Module/Search/Acl.php:64 msgid "You must be logged in to use this module." msgstr "Ce module est réservé aux utilisateurs identifiés." -#: src/Module/Search/Index.php:69 +#: src/Module/Search/Index.php:55 msgid "Only logged in users are permitted to perform a search." msgstr "Seuls les utilisateurs inscrits sont autorisés à lancer une recherche." -#: src/Module/Search/Index.php:89 +#: src/Module/Search/Index.php:75 msgid "Only one search per minute is permitted for not logged in users." msgstr "Une seule recherche par minute pour les utilisateurs qui ne sont pas connectés." -#: src/Module/Search/Index.php:205 +#: src/Module/Search/Index.php:191 #, php-format msgid "Items tagged with: %s" msgstr "Éléments marqué %s" -#: src/Module/Search/Saved.php:63 +#: src/Module/Search/Saved.php:49 msgid "Search term was not saved." msgstr "Le terme de recherche n'a pas été sauvegardé." -#: src/Module/Search/Saved.php:66 +#: src/Module/Search/Saved.php:52 msgid "Search term already saved." msgstr "Le terme de recherche a déjà été sauvegardé." -#: src/Module/Search/Saved.php:72 +#: src/Module/Search/Saved.php:58 msgid "Search term was not removed." msgstr "Le terme de recherche n'a pas été supprimé." -#: src/Module/Security/Login.php:127 +#: src/Module/Security/Login.php:113 msgid "Create a New Account" msgstr "Créer un nouveau compte" -#: src/Module/Security/Login.php:146 +#: src/Module/Security/Login.php:132 msgid "Your OpenID: " msgstr "Votre OpenID :" -#: src/Module/Security/Login.php:149 +#: src/Module/Security/Login.php:135 msgid "" "Please enter your username and password to add the OpenID to your existing " "account." msgstr "Veuillez saisir votre nom d'utilisateur et votre mot de passer pour ajouter l'OpenID à votre compte existant." -#: src/Module/Security/Login.php:151 +#: src/Module/Security/Login.php:137 msgid "Or login using OpenID: " msgstr "Ou connectez-vous via OpenID : " -#: src/Module/Security/Login.php:165 +#: src/Module/Security/Login.php:151 msgid "Password: " msgstr "Mot de passe : " -#: src/Module/Security/Login.php:166 +#: src/Module/Security/Login.php:152 msgid "Remember me" msgstr "Se souvenir de moi" -#: src/Module/Security/Login.php:175 +#: src/Module/Security/Login.php:161 msgid "Forgot your password?" msgstr "Mot de passe oublié?" -#: src/Module/Security/Login.php:178 +#: src/Module/Security/Login.php:164 msgid "Website Terms of Service" msgstr "Conditions d'utilisation du site internet" -#: src/Module/Security/Login.php:179 +#: src/Module/Security/Login.php:165 msgid "terms of service" msgstr "conditions d'utilisation" -#: src/Module/Security/Login.php:181 +#: src/Module/Security/Login.php:167 msgid "Website Privacy Policy" msgstr "Politique de confidentialité du site internet" -#: src/Module/Security/Login.php:182 +#: src/Module/Security/Login.php:168 msgid "privacy policy" msgstr "politique de confidentialité" -#: src/Module/Security/Logout.php:89 -#: src/Module/Security/TwoFactor/SignOut.php:78 -#: src/Module/Security/TwoFactor/SignOut.php:86 -#: src/Module/Security/TwoFactor/SignOut.php:108 -#: src/Module/Security/TwoFactor/SignOut.php:115 +#: src/Module/Security/Logout.php:75 +#: src/Module/Security/TwoFactor/SignOut.php:64 +#: src/Module/Security/TwoFactor/SignOut.php:72 +#: src/Module/Security/TwoFactor/SignOut.php:94 +#: src/Module/Security/TwoFactor/SignOut.php:101 msgid "Logged out." msgstr "Déconnecté." -#: src/Module/Security/OpenID.php:54 +#: src/Module/Security/OpenID.php:40 msgid "OpenID protocol error. No ID returned" msgstr "Erreur de protocole OpenID. Pas d'ID en retour." -#: src/Module/Security/OpenID.php:90 +#: src/Module/Security/OpenID.php:76 msgid "" "Account not found. Please login to your existing account to add the OpenID " "to it." msgstr "Compte non trouvé. Veuillez vous connecter à votre compte existant pour y ajouter l'OpenID." -#: src/Module/Security/OpenID.php:92 +#: src/Module/Security/OpenID.php:78 msgid "" "Account not found. Please register a new account or login to your existing " "account to add the OpenID to it." msgstr "Compte non trouvé. Veuillez créer un nouveau compte ou vous connecter à votre compte existant pour y ajouter l'OpenID." -#: src/Module/Security/PasswordTooLong.php:57 -#: src/Module/Settings/Account.php:67 +#: src/Module/Security/PasswordTooLong.php:43 +#: src/Module/Settings/Account.php:53 msgid "Passwords do not match." msgstr "Les mots de passe ne correspondent pas." -#: src/Module/Security/PasswordTooLong.php:64 +#: src/Module/Security/PasswordTooLong.php:50 msgid "Password does not need changing." msgstr "Le mot de passe n'a pas besoin d'être changé." -#: src/Module/Security/PasswordTooLong.php:77 -#: src/Module/Settings/Account.php:81 +#: src/Module/Security/PasswordTooLong.php:63 +#: src/Module/Settings/Account.php:67 msgid "Password unchanged." msgstr "Mot de passe non changé." -#: src/Module/Security/PasswordTooLong.php:91 +#: src/Module/Security/PasswordTooLong.php:77 msgid "Password Too Long" msgstr "Mot de passe trop long" -#: src/Module/Security/PasswordTooLong.php:92 +#: src/Module/Security/PasswordTooLong.php:78 msgid "" "Since version 2022.09, we've realized that any password longer than 72 " "characters is truncated during hashing. To prevent any confusion about this " "behavior, please update your password to be fewer or equal to 72 characters." msgstr "Depuis la version 2022.09, nous nous sommes rendu compte que tout mot de passe plus long que 72 caractères est tronqué lors du hashage. Pour éviter toute confusion à propos de ce comportement, merci de mettre à jour votre mot de passe pour qu'il soit d'une taille inférieure ou égale à 72 caractères." -#: src/Module/Security/PasswordTooLong.php:93 +#: src/Module/Security/PasswordTooLong.php:79 msgid "Update Password" msgstr "Mettre à jour le mot de passe" -#: src/Module/Security/PasswordTooLong.php:99 -#: src/Module/Settings/Account.php:571 +#: src/Module/Security/PasswordTooLong.php:85 +#: src/Module/Settings/Account.php:557 msgid "Current Password:" msgstr "Mot de passe actuel :" -#: src/Module/Security/PasswordTooLong.php:99 -#: src/Module/Settings/Account.php:571 +#: src/Module/Security/PasswordTooLong.php:85 +#: src/Module/Settings/Account.php:557 msgid "Your current password to confirm the changes" msgstr "Votre mot de passe actuel pour confirmer les modifications" -#: src/Module/Security/PasswordTooLong.php:100 -#: src/Module/Settings/Account.php:555 +#: src/Module/Security/PasswordTooLong.php:86 +#: src/Module/Settings/Account.php:541 msgid "" "Allowed characters are a-z, A-Z, 0-9 and special characters except white " "spaces and accentuated letters." msgstr "Les caractères autorisés sont a-z, A-Z, 0-9 et les caractères spéciaux à l'exception des espaces et des lettres accentuées." -#: src/Module/Security/PasswordTooLong.php:100 -#: src/Module/Settings/Account.php:556 +#: src/Module/Security/PasswordTooLong.php:86 +#: src/Module/Settings/Account.php:542 msgid "Password length is limited to 72 characters." msgstr "La taille du mot de passe est limitée à 72 caractères." -#: src/Module/Security/TwoFactor/Recovery.php:74 +#: src/Module/Security/TwoFactor/Recovery.php:60 #, php-format msgid "Remaining recovery codes: %d" msgstr "Codes de récupération restants : %d" -#: src/Module/Security/TwoFactor/Recovery.php:80 -#: src/Module/Security/TwoFactor/Verify.php:77 -#: src/Module/Settings/TwoFactor/Verify.php:98 +#: src/Module/Security/TwoFactor/Recovery.php:66 +#: src/Module/Security/TwoFactor/Verify.php:63 +#: src/Module/Settings/TwoFactor/Verify.php:84 msgid "Invalid code, please retry." msgstr "Code invalide, veuillez réessayer." -#: src/Module/Security/TwoFactor/Recovery.php:99 +#: src/Module/Security/TwoFactor/Recovery.php:85 msgid "Two-factor recovery" msgstr "Récupération d'identification à deux facteurs" -#: src/Module/Security/TwoFactor/Recovery.php:100 +#: src/Module/Security/TwoFactor/Recovery.php:86 msgid "" "

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

" msgstr "

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.

" -#: src/Module/Security/TwoFactor/Recovery.php:101 +#: src/Module/Security/TwoFactor/Recovery.php:87 #, php-format msgid "Don’t have your phone? Enter a two-factor recovery code" msgstr "Vous n'avez pas votre téléphone ? Saisissez un code de récupération à deux facteurs" -#: src/Module/Security/TwoFactor/Recovery.php:102 +#: src/Module/Security/TwoFactor/Recovery.php:88 msgid "Please enter a recovery code" msgstr "Veuillez saisir un code de récupération" -#: src/Module/Security/TwoFactor/Recovery.php:103 +#: src/Module/Security/TwoFactor/Recovery.php:89 msgid "Submit recovery code and complete login" msgstr "Soumettre le code de récupération et compléter l'identification" -#: src/Module/Security/TwoFactor/SignOut.php:122 +#: src/Module/Security/TwoFactor/SignOut.php:108 msgid "Sign out of this browser?" msgstr "Se déconnecter de ce navigateur ?" -#: src/Module/Security/TwoFactor/SignOut.php:123 +#: src/Module/Security/TwoFactor/SignOut.php:109 msgid "" "

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

" msgstr "

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

" -#: src/Module/Security/TwoFactor/SignOut.php:124 +#: src/Module/Security/TwoFactor/SignOut.php:110 msgid "Sign out" msgstr "Se déconnecter" -#: src/Module/Security/TwoFactor/SignOut.php:126 +#: src/Module/Security/TwoFactor/SignOut.php:112 msgid "Trust and sign out" msgstr "Faire confiance et se déconnecter" -#: src/Module/Security/TwoFactor/Trust.php:96 +#: src/Module/Security/TwoFactor/Trust.php:82 msgid "Couldn't save browser to Cookie." msgstr "Impossible d'enregistrer ce navigateur dans le cookie." -#: src/Module/Security/TwoFactor/Trust.php:141 +#: src/Module/Security/TwoFactor/Trust.php:127 msgid "Trust this browser?" msgstr "Faire confiance à ce navigateur ?" -#: src/Module/Security/TwoFactor/Trust.php:142 +#: src/Module/Security/TwoFactor/Trust.php:128 msgid "" "

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

" msgstr "

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

" -#: src/Module/Security/TwoFactor/Trust.php:143 +#: src/Module/Security/TwoFactor/Trust.php:129 msgid "Not now" msgstr "Pas maintenant" -#: src/Module/Security/TwoFactor/Trust.php:144 +#: src/Module/Security/TwoFactor/Trust.php:130 msgid "Don't trust" msgstr "Ne pas faire confiance" -#: src/Module/Security/TwoFactor/Trust.php:145 +#: src/Module/Security/TwoFactor/Trust.php:131 msgid "Trust" msgstr "Faire confiance" -#: src/Module/Security/TwoFactor/Verify.php:97 +#: src/Module/Security/TwoFactor/Verify.php:83 msgid "" "

Open the two-factor authentication app on your device to get an " "authentication code and verify your identity.

" msgstr "

Ouvrez l'application d'identification à deux facteurs sur votre appareil afin d'avoir un code d'identification et vérifier votre identité.

" -#: src/Module/Security/TwoFactor/Verify.php:100 +#: src/Module/Security/TwoFactor/Verify.php:86 #, php-format msgid "" "If you do not have access to your authentication code you can use a two-factor recovery code." msgstr "Si vous n'avez pas accès à votre code d'identification vous pouvez utiliser un code de récupération à deux facteurs." -#: src/Module/Security/TwoFactor/Verify.php:101 -#: src/Module/Settings/TwoFactor/Verify.php:158 +#: src/Module/Security/TwoFactor/Verify.php:87 +#: src/Module/Settings/TwoFactor/Verify.php:144 msgid "Please enter a code from your authentication app" msgstr "Veuillez saisir le code fourni par votre application mobile d'authentification à deux facteurs" -#: src/Module/Security/TwoFactor/Verify.php:102 +#: src/Module/Security/TwoFactor/Verify.php:88 msgid "Verify code and complete login" msgstr "Vérifier le code de récupération et compléter l'identification" -#: src/Module/Settings/Account.php:96 +#: src/Module/Settings/Account.php:82 msgid "Please use a shorter name." msgstr "Veuillez saisir un nom plus court." -#: src/Module/Settings/Account.php:99 +#: src/Module/Settings/Account.php:85 msgid "Name too short." msgstr "Le nom est trop court." -#: src/Module/Settings/Account.php:108 +#: src/Module/Settings/Account.php:94 msgid "Wrong Password." msgstr "Mot de passe erroné." -#: src/Module/Settings/Account.php:113 +#: src/Module/Settings/Account.php:99 msgid "Invalid email." msgstr "Courriel invalide." -#: src/Module/Settings/Account.php:117 +#: src/Module/Settings/Account.php:103 msgid "Cannot change to that email." msgstr "Ne peut pas changer vers ce courriel." -#: src/Module/Settings/Account.php:146 src/Module/Settings/Account.php:195 -#: src/Module/Settings/Account.php:216 src/Module/Settings/Account.php:300 -#: src/Module/Settings/Account.php:329 +#: src/Module/Settings/Account.php:132 src/Module/Settings/Account.php:181 +#: src/Module/Settings/Account.php:202 src/Module/Settings/Account.php:286 +#: src/Module/Settings/Account.php:315 msgid "Settings were not updated." msgstr "Les paramètres n'ont pas été mis à jour." -#: src/Module/Settings/Account.php:347 +#: src/Module/Settings/Account.php:333 msgid "Contact CSV file upload error" msgstr "Erreur de téléversement du fichier de contact CSV" -#: src/Module/Settings/Account.php:366 +#: src/Module/Settings/Account.php:352 msgid "Importing Contacts done" msgstr "Import des contacts effectué" -#: src/Module/Settings/Account.php:379 +#: src/Module/Settings/Account.php:365 msgid "Relocate message has been send to your contacts" msgstr "Un message de relocalisation a été envoyé à vos contacts." -#: src/Module/Settings/Account.php:396 +#: src/Module/Settings/Account.php:382 msgid "Unable to find your profile. Please contact your admin." msgstr "Impossible de trouver votre profile. Merci de contacter votre administrateur." -#: src/Module/Settings/Account.php:438 +#: src/Module/Settings/Account.php:424 msgid "" "Account for a service that automatically shares content based on user " "defined channels." msgstr "Compte de service qui partage automatiquement du contenu basés les chaînes de l'utilisateur" -#: src/Module/Settings/Account.php:448 +#: src/Module/Settings/Account.php:434 msgid "Personal Page Subtypes" msgstr "Sous-catégories de page personnelle" -#: src/Module/Settings/Account.php:449 +#: src/Module/Settings/Account.php:435 msgid "Community Group Subtypes" msgstr "Sous-catégories de groupe communautaire" -#: src/Module/Settings/Account.php:460 +#: src/Module/Settings/Account.php:446 msgid "Account for a personal profile." msgstr "Compte pour profil personnel." -#: src/Module/Settings/Account.php:467 +#: src/Module/Settings/Account.php:453 msgid "" "Account for an organisation that automatically approves contact requests as " "\"Followers\"." msgstr "Compte pour une organisation qui accepte les demandes comme \"Abonnés\"." -#: src/Module/Settings/Account.php:474 +#: src/Module/Settings/Account.php:460 msgid "" "Account for a news reflector that automatically approves contact requests as" " \"Followers\"." msgstr "Compte pour les miroirs de nouvelles qui accepte automatiquement les de contact comme \"Abonnés\"." -#: src/Module/Settings/Account.php:481 +#: src/Module/Settings/Account.php:467 msgid "Account for community discussions." msgstr "Compte pour des discussions communautaires." -#: src/Module/Settings/Account.php:489 +#: src/Module/Settings/Account.php:475 msgid "" "Account for a regular personal profile that requires manual approval of " "\"Friends\" and \"Followers\"." msgstr "Les demandes d'abonnement doivent être acceptées manuellement." -#: src/Module/Settings/Account.php:496 +#: src/Module/Settings/Account.php:482 msgid "" "Account for a public profile that automatically approves contact requests as" " \"Followers\"." msgstr "Compte pour un profil public qui accepte les demandes de contact comme \"Abonnés\"." -#: src/Module/Settings/Account.php:503 +#: src/Module/Settings/Account.php:489 msgid "Automatically approves all contact requests." msgstr "Les demandes de participation au forum sont automatiquement acceptées." -#: src/Module/Settings/Account.php:510 +#: src/Module/Settings/Account.php:496 msgid "Contact requests have to be manually approved." msgstr "Les demandes de contact doivent être validées manuellement." -#: src/Module/Settings/Account.php:517 +#: src/Module/Settings/Account.php:503 msgid "" "Account for a popular profile that automatically approves contact requests " "as \"Friends\"." msgstr "Les demandes d'abonnement sont automatiquement acceptées." -#: src/Module/Settings/Account.php:522 +#: src/Module/Settings/Account.php:508 msgid "Private Group [Experimental]" msgstr "Groupe Privé [Expérimental]" -#: src/Module/Settings/Account.php:524 +#: src/Module/Settings/Account.php:510 msgid "Requires manual approval of contact requests." msgstr "Les demandes de participation au forum nécessitent une approbation." -#: src/Module/Settings/Account.php:533 +#: src/Module/Settings/Account.php:519 msgid "OpenID:" msgstr "OpenID:" -#: src/Module/Settings/Account.php:533 +#: src/Module/Settings/Account.php:519 msgid "(Optional) Allow this OpenID to login to this account." msgstr "&nbsp;(Facultatif) Autoriser cet OpenID à se connecter à ce compte." -#: src/Module/Settings/Account.php:541 +#: src/Module/Settings/Account.php:527 msgid "Publish your profile in your local site directory?" msgstr "Publier votre profil dans le répertoire local" -#: src/Module/Settings/Account.php:541 +#: src/Module/Settings/Account.php:527 #, php-format msgid "" "Your profile will be published in this node's local " @@ -9936,94 +9917,94 @@ msgid "" " system settings." msgstr "Votre profil sera public sur l'annuaire local de cette instance. Les détails de votre profil pourront être visible publiquement selon les paramètres de votre système." -#: src/Module/Settings/Account.php:547 +#: src/Module/Settings/Account.php:533 #, php-format msgid "" "Your profile will also be published in the global friendica directories " "(e.g. %s)." msgstr "Votre profil sera aussi publié dans le répertoire Friendica global (%s)." -#: src/Module/Settings/Account.php:560 +#: src/Module/Settings/Account.php:546 msgid "Account Settings" msgstr "Compte" -#: src/Module/Settings/Account.php:561 +#: src/Module/Settings/Account.php:547 #, php-format msgid "Your Identity Address is '%s' or '%s'." msgstr "L’adresse de votre profil est '%s' ou '%s'." -#: src/Module/Settings/Account.php:568 +#: src/Module/Settings/Account.php:554 msgid "Password Settings" msgstr "Réglages de mot de passe" -#: src/Module/Settings/Account.php:570 +#: src/Module/Settings/Account.php:556 msgid "Leave password fields blank unless changing" msgstr "Laissez les champs de mot de passe vierges, sauf si vous désirez les changer" -#: src/Module/Settings/Account.php:572 +#: src/Module/Settings/Account.php:558 msgid "Password:" msgstr "Mot de passe :" -#: src/Module/Settings/Account.php:572 +#: src/Module/Settings/Account.php:558 msgid "Your current password to confirm the changes of the email address" msgstr "Votre mot de passe actuel pour confirmer les modifications de votre adresse de courriel." -#: src/Module/Settings/Account.php:575 +#: src/Module/Settings/Account.php:561 msgid "Delete OpenID URL" msgstr "Supprimer l'URL OpenID" -#: src/Module/Settings/Account.php:577 +#: src/Module/Settings/Account.php:563 msgid "Basic Settings" msgstr "Réglages de base" -#: src/Module/Settings/Account.php:578 -#: src/Module/Settings/Profile/Index.php:288 +#: src/Module/Settings/Account.php:564 +#: src/Module/Settings/Profile/Index.php:274 msgid "Display name:" msgstr "Nom d'affichage :" -#: src/Module/Settings/Account.php:579 +#: src/Module/Settings/Account.php:565 msgid "Email Address:" msgstr "Adresse courriel :" -#: src/Module/Settings/Account.php:580 +#: src/Module/Settings/Account.php:566 msgid "Your Timezone:" msgstr "Votre fuseau horaire :" -#: src/Module/Settings/Account.php:581 +#: src/Module/Settings/Account.php:567 msgid "Your Language:" msgstr "Votre langue :" -#: src/Module/Settings/Account.php:581 +#: src/Module/Settings/Account.php:567 msgid "" "Set the language we use to show you friendica interface and to send you " "emails" msgstr "Détermine la langue que nous utilisons pour afficher votre interface Friendica et pour vous envoyer des courriels" -#: src/Module/Settings/Account.php:582 +#: src/Module/Settings/Account.php:568 msgid "Default Post Location:" msgstr "Emplacement de publication par défaut:" -#: src/Module/Settings/Account.php:583 +#: src/Module/Settings/Account.php:569 msgid "Use Browser Location:" msgstr "Utiliser la localisation géographique du navigateur:" -#: src/Module/Settings/Account.php:585 +#: src/Module/Settings/Account.php:571 msgid "Security and Privacy Settings" msgstr "Réglages de sécurité et vie privée" -#: src/Module/Settings/Account.php:587 +#: src/Module/Settings/Account.php:573 msgid "Maximum Friend Requests/Day:" msgstr "Nombre maximal de demandes d'abonnement par jour :" -#: src/Module/Settings/Account.php:587 +#: src/Module/Settings/Account.php:573 msgid "(to prevent spam abuse)" msgstr "(pour limiter l'impact du spam)" -#: src/Module/Settings/Account.php:589 +#: src/Module/Settings/Account.php:575 msgid "Allow your profile to be searchable globally?" msgstr "Publier votre profil publiquement" -#: src/Module/Settings/Account.php:589 +#: src/Module/Settings/Account.php:575 msgid "" "Activate this setting if you want others to easily find and follow you. Your" " profile will be searchable on remote systems. This setting also determines " @@ -10031,43 +10012,43 @@ msgid "" "indexed or not." msgstr "Permet à quiconque de trouver votre profil via une recherche sur n'importe quel site compatible ou un moteur de recherche." -#: src/Module/Settings/Account.php:590 +#: src/Module/Settings/Account.php:576 msgid "Hide your contact/friend list from viewers of your profile?" msgstr "Cacher votre liste de contacts/amis des visiteurs de votre profil?" -#: src/Module/Settings/Account.php:590 +#: src/Module/Settings/Account.php:576 msgid "" "A list of your contacts is displayed on your profile page. Activate this " "option to disable the display of your contact list." msgstr "La liste de vos contacts est affichée sur votre profil. Activer cette option pour désactiver son affichage." -#: src/Module/Settings/Account.php:591 +#: src/Module/Settings/Account.php:577 msgid "Hide your public content from anonymous viewers" msgstr "Masque votre contenu public aux visiteurs anonymes" -#: src/Module/Settings/Account.php:591 +#: src/Module/Settings/Account.php:577 msgid "" "Anonymous visitors will only see your basic profile details. Your public " "posts and replies will still be freely accessible on the remote servers of " "your followers and through relays." msgstr "Les visiteurs anonymes ne verront que vos détails de base de profil. Vos publications publiques et vos réponses seront toujours librement accessibles sur les serveurs distants de vos contacts et à travers les relais." -#: src/Module/Settings/Account.php:592 +#: src/Module/Settings/Account.php:578 msgid "Make public posts unlisted" msgstr "Délister vos publications publiques" -#: src/Module/Settings/Account.php:592 +#: src/Module/Settings/Account.php:578 msgid "" "Your public posts will not appear on the community pages or in search " "results, nor be sent to relay servers. However they can still appear on " "public feeds on remote servers." msgstr "Vos publications publiques n'apparaîtront pas dans les pages communautaires ni les résultats de recherche de ce site et ne seront pas diffusées via les serveurs de relai. Cependant, elles pourront quand même apparaître dans les fils publics de sites distants." -#: src/Module/Settings/Account.php:593 +#: src/Module/Settings/Account.php:579 msgid "Make all posted pictures accessible" msgstr "Rendre toutes les images envoyées accessibles." -#: src/Module/Settings/Account.php:593 +#: src/Module/Settings/Account.php:579 msgid "" "This option makes every posted picture accessible via the direct link. This " "is a workaround for the problem that most other networks can't handle " @@ -10075,352 +10056,352 @@ msgid "" "public on your photo albums though." msgstr "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." -#: src/Module/Settings/Account.php:594 +#: src/Module/Settings/Account.php:580 msgid "Allow friends to post to your profile page?" msgstr "Autoriser vos contacts à publier sur votre profil ?" -#: src/Module/Settings/Account.php:594 +#: src/Module/Settings/Account.php:580 msgid "" "Your contacts may write posts on your profile wall. These posts will be " "distributed to your contacts" msgstr "Vos contacts peuvent partager des publications sur votre mur. Ces publications seront visibles par vos abonnés." -#: src/Module/Settings/Account.php:595 +#: src/Module/Settings/Account.php:581 msgid "Allow friends to tag your posts?" msgstr "Autoriser vos contacts à ajouter des tags à vos publications ?" -#: src/Module/Settings/Account.php:595 +#: src/Module/Settings/Account.php:581 msgid "Your contacts can add additional tags to your posts." msgstr "Vos contacts peuvent ajouter des étiquettes à vos publications." -#: src/Module/Settings/Account.php:596 +#: src/Module/Settings/Account.php:582 msgid "Default privacy circle for new contacts" msgstr "Cercle de contacts par défaut pour les nouveaux contacts" -#: src/Module/Settings/Account.php:597 +#: src/Module/Settings/Account.php:583 msgid "Default privacy circle for new group contacts" msgstr "Cercle de contacts par défaut pour les nouveaux contacts du groupe" -#: src/Module/Settings/Account.php:598 +#: src/Module/Settings/Account.php:584 msgid "Default Post Permissions" msgstr "Permissions de publication par défaut" -#: src/Module/Settings/Account.php:602 +#: src/Module/Settings/Account.php:588 msgid "Expiration settings" msgstr "Réglages d'expiration" -#: src/Module/Settings/Account.php:603 +#: src/Module/Settings/Account.php:589 msgid "Automatically expire posts after this many days:" msgstr "Les publications expirent automatiquement après (en jours) :" -#: src/Module/Settings/Account.php:603 +#: src/Module/Settings/Account.php:589 msgid "If empty, posts will not expire. Expired posts will be deleted" msgstr "Si ce champ est vide, les publications n'expireront pas. Les publications expirées seront supprimées" -#: src/Module/Settings/Account.php:604 +#: src/Module/Settings/Account.php:590 msgid "Expire posts" msgstr "Faire expirer les publications" -#: src/Module/Settings/Account.php:604 +#: src/Module/Settings/Account.php:590 msgid "When activated, posts and comments will be expired." msgstr "Les publications originales et commentaires expireront." -#: src/Module/Settings/Account.php:605 +#: src/Module/Settings/Account.php:591 msgid "Expire personal notes" msgstr "Faire expirer les notes personnelles" -#: src/Module/Settings/Account.php:605 +#: src/Module/Settings/Account.php:591 msgid "" "When activated, the personal notes on your profile page will be expired." msgstr " " -#: src/Module/Settings/Account.php:606 +#: src/Module/Settings/Account.php:592 msgid "Expire starred posts" msgstr "Faire expirer les publications marquées" -#: src/Module/Settings/Account.php:606 +#: src/Module/Settings/Account.php:592 msgid "" "Starring posts keeps them from being expired. That behaviour is overwritten " "by this setting." msgstr "Ajouter une étoile à une publication empêche son expiration, sauf si vous activez ce paramètre." -#: src/Module/Settings/Account.php:607 +#: src/Module/Settings/Account.php:593 msgid "Only expire posts by others" msgstr "Faire expirer uniquement les contenu reçus" -#: src/Module/Settings/Account.php:607 +#: src/Module/Settings/Account.php:593 msgid "" "When activated, your own posts never expire. Then the settings above are " "only valid for posts you received." msgstr "Empêche vos propres publications d'expirer. S'applique à tous les choix précédents." -#: src/Module/Settings/Account.php:610 +#: src/Module/Settings/Account.php:596 msgid "Notification Settings" msgstr "Réglages de notification" -#: src/Module/Settings/Account.php:611 +#: src/Module/Settings/Account.php:597 msgid "Send a notification email when:" msgstr "Envoyer un courriel de notification quand :" -#: src/Module/Settings/Account.php:612 +#: src/Module/Settings/Account.php:598 msgid "You receive an introduction" msgstr "Vous recevez une introduction" -#: src/Module/Settings/Account.php:613 +#: src/Module/Settings/Account.php:599 msgid "Your introductions are confirmed" msgstr "Vos introductions sont confirmées" -#: src/Module/Settings/Account.php:614 +#: src/Module/Settings/Account.php:600 msgid "Someone writes on your profile wall" msgstr "Quelqu'un écrit sur votre mur" -#: src/Module/Settings/Account.php:615 +#: src/Module/Settings/Account.php:601 msgid "Someone writes a followup comment" msgstr "Quelqu'un vous commente" -#: src/Module/Settings/Account.php:616 +#: src/Module/Settings/Account.php:602 msgid "You receive a private message" msgstr "Vous recevez un message privé" -#: src/Module/Settings/Account.php:617 +#: src/Module/Settings/Account.php:603 msgid "You receive a friend suggestion" msgstr "Vous avez reçu une suggestion d'abonnement" -#: src/Module/Settings/Account.php:618 +#: src/Module/Settings/Account.php:604 msgid "You are tagged in a post" msgstr "Vous avez été mentionné(e) dans une publication" -#: src/Module/Settings/Account.php:620 +#: src/Module/Settings/Account.php:606 msgid "Create a desktop notification when:" msgstr "Créer une notification de bureau quand :" -#: src/Module/Settings/Account.php:621 +#: src/Module/Settings/Account.php:607 msgid "Someone tagged you" msgstr "Quelqu'un vous a mentionné" -#: src/Module/Settings/Account.php:622 +#: src/Module/Settings/Account.php:608 msgid "Someone directly commented on your post" msgstr "Quelqu'un a commenté directement sur votre publication" -#: src/Module/Settings/Account.php:623 +#: src/Module/Settings/Account.php:609 msgid "Someone liked your content" msgstr "Quelqu'un a aimé votre contenu" -#: src/Module/Settings/Account.php:623 src/Module/Settings/Account.php:624 +#: src/Module/Settings/Account.php:609 src/Module/Settings/Account.php:610 msgid "Can only be enabled, when the direct comment notification is enabled." msgstr "Peut uniquement être activé quand la notification des commentaires directs est activée." -#: src/Module/Settings/Account.php:624 +#: src/Module/Settings/Account.php:610 msgid "Someone shared your content" msgstr "Quelqu'un a partagé votre contenu" -#: src/Module/Settings/Account.php:625 +#: src/Module/Settings/Account.php:611 msgid "Someone commented in your thread" msgstr "Quelqu'un a commenté dans votre conversation" -#: src/Module/Settings/Account.php:626 +#: src/Module/Settings/Account.php:612 msgid "Someone commented in a thread where you commented" msgstr "Quelqu'un a commenté dans une conversation où vous avez commenté" -#: src/Module/Settings/Account.php:627 +#: src/Module/Settings/Account.php:613 msgid "Someone commented in a thread where you interacted" msgstr "Quelqu'un a commenté dans une conversation avec laquelle vous avez interagi" -#: src/Module/Settings/Account.php:629 +#: src/Module/Settings/Account.php:615 msgid "Activate desktop notifications" msgstr "Activer les notifications de bureau" -#: src/Module/Settings/Account.php:629 +#: src/Module/Settings/Account.php:615 msgid "Show desktop popup on new notifications" msgstr "Afficher dans des pop-ups les nouvelles notifications" -#: src/Module/Settings/Account.php:633 +#: src/Module/Settings/Account.php:619 msgid "Text-only notification emails" msgstr "Courriels de notification en format texte" -#: src/Module/Settings/Account.php:635 +#: src/Module/Settings/Account.php:621 msgid "Send text only notification emails, without the html part" msgstr "Envoyer le texte des courriels de notification, sans la composante html" -#: src/Module/Settings/Account.php:639 +#: src/Module/Settings/Account.php:625 msgid "Show detailled notifications" msgstr "Notifications détaillées" -#: src/Module/Settings/Account.php:641 +#: src/Module/Settings/Account.php:627 msgid "" "Per default, notifications are condensed to a single notification per item. " "When enabled every notification is displayed." msgstr "Par défaut seule la notification la plus récente par conversation est affichée. Ce réglage affiche toutes les notifications." -#: src/Module/Settings/Account.php:645 +#: src/Module/Settings/Account.php:631 msgid "Show notifications of ignored contacts" msgstr "Montrer les notifications des contacts ignorés" -#: src/Module/Settings/Account.php:647 +#: src/Module/Settings/Account.php:633 msgid "" "You don't see posts from ignored contacts. But you still see their comments." " This setting controls if you want to still receive regular notifications " "that are caused by ignored contacts or not." msgstr "Par défaut les notifications de vos contacts ignorés sont également ignorées." -#: src/Module/Settings/Account.php:650 +#: src/Module/Settings/Account.php:636 msgid "Advanced Account/Page Type Settings" msgstr "Paramètres avancés de compte/page" -#: src/Module/Settings/Account.php:651 +#: src/Module/Settings/Account.php:637 msgid "Change the behaviour of this account for special situations" msgstr "Modifier le comportement de ce compte dans certaines situations" -#: src/Module/Settings/Account.php:654 +#: src/Module/Settings/Account.php:640 msgid "Import Contacts" msgstr "Importer des contacts" -#: src/Module/Settings/Account.php:655 +#: src/Module/Settings/Account.php:641 msgid "" "Upload a CSV file that contains the handle of your followed accounts in the " "first column you exported from the old account." msgstr "Téléversez un fichier CSV contenant des identifiants de contacts dans la première colonne." -#: src/Module/Settings/Account.php:656 +#: src/Module/Settings/Account.php:642 msgid "Upload File" msgstr "Téléverser le fichier" -#: src/Module/Settings/Account.php:659 +#: src/Module/Settings/Account.php:645 msgid "Relocate" msgstr "Relocaliser" -#: src/Module/Settings/Account.php:660 +#: src/Module/Settings/Account.php:646 msgid "" "If you have moved this profile from another server, and some of your " "contacts don't receive your updates, try pushing this button." msgstr "Si vous avez migré ce profil depuis un autre serveur et que vos contacts ne reçoivent plus vos mises à jour, essayez ce bouton." -#: src/Module/Settings/Account.php:661 +#: src/Module/Settings/Account.php:647 msgid "Resend relocate message to contacts" msgstr "Renvoyer un message de relocalisation aux contacts." -#: src/Module/Settings/Addons.php:86 +#: src/Module/Settings/Addons.php:72 msgid "Addon Settings" msgstr "Paramètres d'extension" -#: src/Module/Settings/Addons.php:87 +#: src/Module/Settings/Addons.php:73 msgid "No Addon settings configured" msgstr "Aucuns paramètres d'Extension paramétré." -#: src/Module/Settings/Channels.php:148 +#: src/Module/Settings/Channels.php:134 msgid "" "This page can be used to define the channels that will automatically be " "reshared by your account." msgstr "Cette page peut être utilisée pour définir les chaînes qui seront automatiquement repartagées par votre compte." -#: src/Module/Settings/Channels.php:153 +#: src/Module/Settings/Channels.php:139 msgid "This page can be used to define your own channels." msgstr "Cette page permet de définir votre propres chaînes." -#: src/Module/Settings/Channels.php:182 +#: src/Module/Settings/Channels.php:168 msgid "Publish" msgstr "Publier" -#: src/Module/Settings/Channels.php:182 +#: src/Module/Settings/Channels.php:168 msgid "" "When selected, the channel results are reshared. This only works for public " "ActivityPub posts from the public timeline or the user defined circles." msgstr "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:190 src/Module/Settings/Channels.php:211 -#: src/Module/Settings/Display.php:338 +#: src/Module/Settings/Channels.php:176 src/Module/Settings/Channels.php:197 +#: src/Module/Settings/Display.php:324 msgid "Label" msgstr "Titre" -#: src/Module/Settings/Channels.php:191 src/Module/Settings/Channels.php:212 -#: src/Module/Settings/Display.php:339 -#: src/Module/Settings/TwoFactor/AppSpecific.php:137 +#: src/Module/Settings/Channels.php:177 src/Module/Settings/Channels.php:198 +#: src/Module/Settings/Display.php:325 +#: src/Module/Settings/TwoFactor/AppSpecific.php:123 msgid "Description" msgstr "Description" -#: src/Module/Settings/Channels.php:192 src/Module/Settings/Channels.php:213 +#: src/Module/Settings/Channels.php:178 src/Module/Settings/Channels.php:199 msgid "Access Key" msgstr "Clé d'accès" -#: src/Module/Settings/Channels.php:193 src/Module/Settings/Channels.php:214 +#: src/Module/Settings/Channels.php:179 src/Module/Settings/Channels.php:200 msgid "Circle/Channel" msgstr "Cercle/Chaîne" -#: src/Module/Settings/Channels.php:194 src/Module/Settings/Channels.php:215 +#: src/Module/Settings/Channels.php:180 src/Module/Settings/Channels.php:201 msgid "Include Tags" msgstr "Inclure des étiquettes" -#: src/Module/Settings/Channels.php:195 src/Module/Settings/Channels.php:216 +#: src/Module/Settings/Channels.php:181 src/Module/Settings/Channels.php:202 msgid "Exclude Tags" msgstr "Exclure des étiquettes" -#: src/Module/Settings/Channels.php:196 src/Module/Settings/Channels.php:217 +#: src/Module/Settings/Channels.php:182 src/Module/Settings/Channels.php:203 msgid "Minimum Size" msgstr "Taille minimum" -#: src/Module/Settings/Channels.php:197 src/Module/Settings/Channels.php:218 +#: src/Module/Settings/Channels.php:183 src/Module/Settings/Channels.php:204 msgid "Maximum Size" msgstr "Taille maximum" -#: src/Module/Settings/Channels.php:198 src/Module/Settings/Channels.php:219 +#: src/Module/Settings/Channels.php:184 src/Module/Settings/Channels.php:205 msgid "Full Text Search" msgstr "Recherche de texte intégral" -#: src/Module/Settings/Channels.php:202 src/Module/Settings/Channels.php:223 +#: src/Module/Settings/Channels.php:188 src/Module/Settings/Channels.php:209 msgid "Select all languages that you want to see in this channel." msgstr "Sélectionnez les langues que vous souhaitez voir sur cette chaîne." -#: src/Module/Settings/Channels.php:204 +#: src/Module/Settings/Channels.php:190 msgid "Delete channel" msgstr "Supprimer la chaîne" -#: src/Module/Settings/Channels.php:204 +#: src/Module/Settings/Channels.php:190 msgid "Check to delete this entry from the channel list" msgstr "Cochez pour supprimer cette entrée de la liste de chaîne" -#: src/Module/Settings/Channels.php:211 +#: src/Module/Settings/Channels.php:197 msgid "Short name for the channel. It is displayed on the channels widget." msgstr "Nom court de la chaîne. Il est affiché dans le widget des chaînes." -#: src/Module/Settings/Channels.php:212 +#: src/Module/Settings/Channels.php:198 msgid "This should describe the content of the channel in a few word." msgstr "Décrivez le contenu de votre chaîne en quelques mots." -#: src/Module/Settings/Channels.php:213 +#: src/Module/Settings/Channels.php:199 msgid "" "When you want to access this channel via an access key, you can define it " "here. Pay attention to not use an already used one." msgstr "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." -#: src/Module/Settings/Channels.php:214 +#: src/Module/Settings/Channels.php:200 msgid "Select a circle or channel, that your channel should be based on." msgstr "Choisissez un cercle ou une chaîne sur lequel se basera votre chaîne." -#: src/Module/Settings/Channels.php:215 +#: src/Module/Settings/Channels.php:201 msgid "" "Comma separated list of tags. A post will be used when it contains any of " "the listed tags." msgstr "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:216 +#: src/Module/Settings/Channels.php:202 msgid "" "Comma separated list of tags. If a post contain any of these tags, then it " "will not be part of nthis channel." msgstr "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:217 +#: src/Module/Settings/Channels.php:203 msgid "" "Minimum post size. Leave empty for no minimum size. The size is calculated " "without links, attached posts, mentions or hashtags." msgstr "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:218 +#: src/Module/Settings/Channels.php:204 msgid "" "Maximum post size. Leave empty for no maximum size. The size is calculated " "without links, attached posts, mentions or hashtags." msgstr "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:219 +#: src/Module/Settings/Channels.php:205 #, php-format msgid "" "Search terms for the body, supports the \"boolean mode\" operators from " @@ -10428,600 +10409,589 @@ msgid "" "keywords: %s" msgstr "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" -#: src/Module/Settings/Channels.php:220 +#: src/Module/Settings/Channels.php:206 msgid "Check to display images in the channel." msgstr "Cochez pour afficher les images dans la chaîne." -#: src/Module/Settings/Channels.php:221 +#: src/Module/Settings/Channels.php:207 msgid "Check to display videos in the channel." msgstr "Cochez pour afficher la vidéo dans la chaîne." -#: src/Module/Settings/Channels.php:222 +#: src/Module/Settings/Channels.php:208 msgid "Check to display audio in the channel." msgstr "Cochez pour afficher l'audio dans la chaîne." -#: src/Module/Settings/Channels.php:227 +#: src/Module/Settings/Channels.php:213 msgid "Add new entry to the channel list" msgstr "Ajoute une nouvelle entrée dans la liste des chaînes" -#: src/Module/Settings/Channels.php:228 +#: src/Module/Settings/Channels.php:214 msgid "Add" msgstr "Ajouter" -#: src/Module/Settings/Channels.php:230 +#: src/Module/Settings/Channels.php:216 msgid "Current Entries in the channel list" msgstr "Entrées actuelles dans la liste des chaînes" -#: src/Module/Settings/Channels.php:233 +#: src/Module/Settings/Channels.php:219 msgid "Delete entry from the channel list" msgstr "Supprimer l'entrée de la liste des chaînes" -#: src/Module/Settings/Channels.php:234 +#: src/Module/Settings/Channels.php:220 msgid "Delete entry from the channel list?" msgstr "Supprimer l'entrée de la liste des chaînes ?" -#: src/Module/Settings/Connectors.php:122 +#: src/Module/Settings/Connectors.php:108 msgid "Failed to connect with email account using the settings provided." msgstr "Impossible de se connecter au compte courriel configuré." -#: src/Module/Settings/Connectors.php:169 -#: src/Module/Settings/Connectors.php:170 +#: src/Module/Settings/Connectors.php:155 +#: src/Module/Settings/Connectors.php:156 msgid "Diaspora (Socialhome, Hubzilla)" msgstr "Diaspora (Socialhome, Hubzilla)" -#: src/Module/Settings/Connectors.php:169 -#: src/Module/Settings/Connectors.php:173 +#: src/Module/Settings/Connectors.php:155 #, php-format msgid "Built-in support for %s connectivity is enabled" msgstr "Le support intégré pour la connectivité %s est activé" -#: src/Module/Settings/Connectors.php:170 -#: src/Module/Settings/Connectors.php:172 +#: src/Module/Settings/Connectors.php:156 #, php-format msgid "Built-in support for %s connectivity is disabled" msgstr "Le support intégré pour la connectivité %s est désactivé" -#: src/Module/Settings/Connectors.php:172 -#: src/Module/Settings/Connectors.php:173 -msgid "OStatus (GNU Social)" -msgstr "OStatus (GNU Social)" - -#: src/Module/Settings/Connectors.php:185 +#: src/Module/Settings/Connectors.php:167 msgid "Email access is disabled on this site." msgstr "L'accès courriel est désactivé sur ce site." -#: src/Module/Settings/Connectors.php:200 -#: src/Module/Settings/Connectors.php:254 +#: src/Module/Settings/Connectors.php:182 +#: src/Module/Settings/Connectors.php:233 msgid "None" msgstr "Aucun(e)" -#: src/Module/Settings/Connectors.php:204 +#: src/Module/Settings/Connectors.php:186 msgid "Default (Mastodon will display the title and a link to the post)" msgstr "Par défaut (Mastodon affichera le titre et un lien vers la publication)" -#: src/Module/Settings/Connectors.php:205 +#: src/Module/Settings/Connectors.php:187 msgid "" "Use the summary (Mastodon and some others will treat it as content warning)" msgstr "Utiliser le résumé (Mastodon et quelques autres le considèreront comme un avertissement de contenu)" -#: src/Module/Settings/Connectors.php:206 +#: src/Module/Settings/Connectors.php:188 msgid "Embed the title in the body" msgstr "Intégrer le titre dans le corps du texte" -#: src/Module/Settings/Connectors.php:218 +#: src/Module/Settings/Connectors.php:199 msgid "General Social Media Settings" msgstr "Paramètres généraux des réseaux sociaux" -#: src/Module/Settings/Connectors.php:221 +#: src/Module/Settings/Connectors.php:202 msgid "Followed content scope" msgstr "Étendue des contenus suivis" -#: src/Module/Settings/Connectors.php:223 +#: src/Module/Settings/Connectors.php:204 msgid "" "By default, conversations in which your follows participated but didn't " "start will be shown in your timeline. You can turn this behavior off, or " "expand it to the conversations in which your follows liked a post." msgstr "Par défaut, les conversations dans lesquelles vos comptes suivis ont participé mais qu'ils n'ont pas commencées seront affichées dans votre flux. Vous pouvez désactiver ce comportement, ou l'étendre aux conversations dans lesquelles vos comptes suivis ont aimé une publication." -#: src/Module/Settings/Connectors.php:225 +#: src/Module/Settings/Connectors.php:206 msgid "Only conversations my follows started" msgstr "Seulement les conversations démarrées par mes comptes suivis" -#: src/Module/Settings/Connectors.php:226 +#: src/Module/Settings/Connectors.php:207 msgid "Conversations my follows started or commented on (default)" msgstr "Les conversations que mes comptes suivis ont commencé ou commentées (par défaut)" -#: src/Module/Settings/Connectors.php:227 +#: src/Module/Settings/Connectors.php:208 msgid "Any conversation my follows interacted with, including likes" msgstr "Toute conversation avec laquelle mes comptes suivis ont interagi, y compris les \"J'aime\"" -#: src/Module/Settings/Connectors.php:230 +#: src/Module/Settings/Connectors.php:211 msgid "Collapse sensitive posts" msgstr "Réduire les publications sensibles" -#: src/Module/Settings/Connectors.php:230 +#: src/Module/Settings/Connectors.php:211 msgid "" "If a post is marked as \"sensitive\", it will be displayed in a collapsed " "state, if this option is enabled." msgstr "Si actif, les publications marquées comme \"sensible\" seront affichées réduites." -#: src/Module/Settings/Connectors.php:231 +#: src/Module/Settings/Connectors.php:212 msgid "Enable intelligent shortening" msgstr "Activer l'abbréviation intelligente" -#: src/Module/Settings/Connectors.php:231 +#: src/Module/Settings/Connectors.php:212 msgid "" "Normally the system tries to find the best link to add to shortened posts. " "If disabled, every shortened post will always point to the original " "friendica post." msgstr "L'abbréviation intelligente cherche le lien le plus adapté dans les publications abbréviées. Quand elle est désactivée, le lien est toujours celui de la publication Friendica initiale." -#: src/Module/Settings/Connectors.php:232 +#: src/Module/Settings/Connectors.php:213 msgid "Enable simple text shortening" msgstr "Activer l'abbréviation de texte simple" -#: src/Module/Settings/Connectors.php:232 +#: src/Module/Settings/Connectors.php:213 msgid "" "Normally the system shortens posts at the next line feed. If this option is " "enabled then the system will shorten the text at the maximum character " "limit." msgstr "Cette option raccourcit le texte des publications au nombre de caractères exact au lieu d'attendre la fin du paragraphe." -#: src/Module/Settings/Connectors.php:233 +#: src/Module/Settings/Connectors.php:214 msgid "Attach the link title" msgstr "Attacher le titre du lien (Diaspora)" -#: src/Module/Settings/Connectors.php:233 +#: src/Module/Settings/Connectors.php:214 msgid "" "When activated, the title of the attached link will be added as a title on " "posts to Diaspora. This is mostly helpful with \"remote-self\" contacts that" " share feed content." msgstr "Si vos publications contiennent un lien, le titre de la page associée sera attaché à la publication à destination de vos contacts Diaspora. C'est principalement utile avec les contacts \"remote-self\" qui partagent du contenu de flux RSS/Atom." -#: src/Module/Settings/Connectors.php:234 +#: src/Module/Settings/Connectors.php:215 msgid "API: Use spoiler field as title" msgstr "API : Utiliser le champ spoiler (divulgachis) en tant que titre" -#: src/Module/Settings/Connectors.php:234 +#: src/Module/Settings/Connectors.php:215 msgid "" "When activated, the \"spoiler_text\" field in the API will be used for the " "title on standalone posts. When deactivated it will be used for spoiler " "text. For comments it will always be used for spoiler text." msgstr "Quand activé, le champ \"spoiler_text\" dans l'API sera utilisé pour le titre des publications individuelles. Quand désactivé, il sera utilisé pour du texte spoiler (divulgachis). Pour les commentaires, il sera toujours utilisé pour du texte spoiler." -#: src/Module/Settings/Connectors.php:235 +#: src/Module/Settings/Connectors.php:216 msgid "API: Automatically links at the end of the post as attached posts" msgstr "API : Afficher comme publications attachés les liens ajoutés en fin de publication" -#: src/Module/Settings/Connectors.php:235 +#: src/Module/Settings/Connectors.php:216 msgid "" "When activated, added links at the end of the post react the same way as " "added links in the web interface." msgstr "Quand activé, les liens ajoutés à la fin d'une publication fonctionnent de la même manière que les liens ajoutés dans l'interface web." -#: src/Module/Settings/Connectors.php:236 +#: src/Module/Settings/Connectors.php:217 msgid "Article Mode" msgstr "Mode Article" -#: src/Module/Settings/Connectors.php:236 +#: src/Module/Settings/Connectors.php:217 msgid "" "Controls how posts with titles are transmitted. Mastodon and its forks don't" " display the content of these posts if the post is created in the correct " "(default) way." msgstr "Contrôle la façon dont les publications avec des titres sont transmises. Mastodon et ses forks n'affichent pas le contenu de ces publications si la publication est créée de la bonne manière (par défaut)." -#: src/Module/Settings/Connectors.php:237 +#: src/Module/Settings/Connectors.php:218 msgid "Your legacy ActivityPub/GNU Social account" msgstr "Votre ancient compte ActivityPub/GNU Social" -#: src/Module/Settings/Connectors.php:237 +#: src/Module/Settings/Connectors.php:218 msgid "" "If you enter your old account name from an ActivityPub based system or your " "GNU Social/Statusnet account name here (in the format user@domain.tld), your" " contacts will be added automatically. The field will be emptied when done." msgstr "Si vous saisissez votre adresse de compte précédente d'un réseau basé sur ActivityPub ou GNU Social/Statusnet (au format utilisateur@domaine.tld), vos contacts seront ajoutés autoamtiquement. Le champ sera vidé quand l'opération sera terminé." -#: src/Module/Settings/Connectors.php:239 -msgid "Repair OStatus subscriptions" -msgstr "Réparer les abonnements OStatus" - -#: src/Module/Settings/Connectors.php:243 +#: src/Module/Settings/Connectors.php:222 msgid "Email/Mailbox Setup" msgstr "Réglages de courriel/boîte à lettre" -#: src/Module/Settings/Connectors.php:244 +#: src/Module/Settings/Connectors.php:223 msgid "" "If you wish to communicate with email contacts using this service " "(optional), please specify how to connect to your mailbox." msgstr "Si vous souhaitez communiquer avec vos contacts \"courriel\" (facultatif), merci de nous indiquer comment vous connecter à votre boîte." -#: src/Module/Settings/Connectors.php:245 +#: src/Module/Settings/Connectors.php:224 msgid "Last successful email check:" msgstr "Dernière vérification réussie des courriels :" -#: src/Module/Settings/Connectors.php:247 +#: src/Module/Settings/Connectors.php:226 msgid "IMAP server name:" msgstr "Nom du serveur IMAP :" -#: src/Module/Settings/Connectors.php:248 +#: src/Module/Settings/Connectors.php:227 msgid "IMAP port:" msgstr "Port IMAP :" -#: src/Module/Settings/Connectors.php:249 +#: src/Module/Settings/Connectors.php:228 msgid "Security:" msgstr "Sécurité :" -#: src/Module/Settings/Connectors.php:250 +#: src/Module/Settings/Connectors.php:229 msgid "Email login name:" msgstr "Nom de connexion :" -#: src/Module/Settings/Connectors.php:251 +#: src/Module/Settings/Connectors.php:230 msgid "Email password:" msgstr "Mot de passe :" -#: src/Module/Settings/Connectors.php:252 +#: src/Module/Settings/Connectors.php:231 msgid "Reply-to address:" msgstr "Adresse de réponse :" -#: src/Module/Settings/Connectors.php:253 +#: src/Module/Settings/Connectors.php:232 msgid "Send public posts to all email contacts:" msgstr "Envoyer les publications publiques à tous les contacts courriels :" -#: src/Module/Settings/Connectors.php:254 +#: src/Module/Settings/Connectors.php:233 msgid "Action after import:" msgstr "Action après import :" -#: src/Module/Settings/Connectors.php:254 +#: src/Module/Settings/Connectors.php:233 msgid "Move to folder" msgstr "Déplacer vers" -#: src/Module/Settings/Connectors.php:255 +#: src/Module/Settings/Connectors.php:234 msgid "Move to folder:" msgstr "Déplacer vers :" -#: src/Module/Settings/Delegation.php:73 +#: src/Module/Settings/Delegation.php:59 msgid "Delegation successfully granted." msgstr "Délégation accordée avec succès." -#: src/Module/Settings/Delegation.php:75 +#: src/Module/Settings/Delegation.php:61 msgid "Parent user not found, unavailable or password doesn't match." msgstr "Utilisateur parent introuvable, indisponible ou mot de passe incorrect." -#: src/Module/Settings/Delegation.php:79 +#: src/Module/Settings/Delegation.php:65 msgid "Delegation successfully revoked." msgstr "Délégation retirée avec succès." -#: src/Module/Settings/Delegation.php:98 -#: src/Module/Settings/Delegation.php:120 +#: src/Module/Settings/Delegation.php:84 +#: src/Module/Settings/Delegation.php:106 msgid "" "Delegated administrators can view but not change delegation permissions." msgstr "Les administrateurs délégués peuvent uniquement consulter les permissions de délégation." -#: src/Module/Settings/Delegation.php:112 +#: src/Module/Settings/Delegation.php:98 msgid "Delegate user not found." msgstr "Délégué introuvable." -#: src/Module/Settings/Delegation.php:169 +#: src/Module/Settings/Delegation.php:155 msgid "No parent user" msgstr "Pas d'utilisateur parent" -#: src/Module/Settings/Delegation.php:180 -#: src/Module/Settings/Delegation.php:191 +#: src/Module/Settings/Delegation.php:166 +#: src/Module/Settings/Delegation.php:177 msgid "Parent User" msgstr "Compte parent" -#: src/Module/Settings/Delegation.php:188 +#: src/Module/Settings/Delegation.php:174 msgid "Additional Accounts" msgstr "Comptes supplémentaires" -#: src/Module/Settings/Delegation.php:189 +#: src/Module/Settings/Delegation.php:175 msgid "" "Register additional accounts that are automatically connected to your " "existing account so you can manage them from this account." msgstr "Enregistrez des comptes supplémentaires qui seront automatiquement rattachés à votre compte actuel pour vous permettre de les gérer facilement." -#: src/Module/Settings/Delegation.php:190 +#: src/Module/Settings/Delegation.php:176 msgid "Register an additional account" msgstr "Enregistrer un compte supplémentaire" -#: src/Module/Settings/Delegation.php:192 +#: src/Module/Settings/Delegation.php:178 msgid "" "Parent users have total control about this account, including the account " "settings. Please double check whom you give this access." msgstr "Le compte parent a un contrôle total sur ce compte, incluant les paramètres de compte. Veuillez vérifier à qui vous donnez cet accès." -#: src/Module/Settings/Delegation.php:195 +#: src/Module/Settings/Delegation.php:181 msgid "Delegates" msgstr "Délégataires" -#: src/Module/Settings/Delegation.php:196 +#: src/Module/Settings/Delegation.php:182 msgid "" "Delegates are able to manage all aspects of this account/page except for " "basic account settings. Please do not delegate your personal account to " "anybody that you do not trust completely." msgstr "Les délégataires seront capables de gérer tous les aspects de ce compte ou de cette page, à l'exception des réglages de compte. Merci de ne pas déléguer votre compte principal à quelqu'un en qui vous n'avez pas une confiance absolue." -#: src/Module/Settings/Delegation.php:197 +#: src/Module/Settings/Delegation.php:183 msgid "Existing Page Delegates" msgstr "Délégataires existants" -#: src/Module/Settings/Delegation.php:198 +#: src/Module/Settings/Delegation.php:184 msgid "Potential Delegates" msgstr "Délégataires potentiels" -#: src/Module/Settings/Delegation.php:199 +#: src/Module/Settings/Delegation.php:185 msgid "No entries." msgstr "Aucune entrée." -#: src/Module/Settings/Display.php:183 +#: src/Module/Settings/Display.php:169 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:209 #, php-format msgid "%s - (Unsupported)" msgstr "%s- (non supporté)" -#: src/Module/Settings/Display.php:260 +#: src/Module/Settings/Display.php:246 msgid "No preview" msgstr "Pas d'aperçu" -#: src/Module/Settings/Display.php:261 +#: src/Module/Settings/Display.php:247 msgid "No image" msgstr "Pas d'image" -#: src/Module/Settings/Display.php:262 +#: src/Module/Settings/Display.php:248 msgid "Small Image" msgstr "Petite image" -#: src/Module/Settings/Display.php:263 +#: src/Module/Settings/Display.php:249 msgid "Large Image" msgstr "Grande image" -#: src/Module/Settings/Display.php:308 +#: src/Module/Settings/Display.php:294 msgid "Display Settings" msgstr "Affichage" -#: src/Module/Settings/Display.php:310 +#: src/Module/Settings/Display.php:296 msgid "General Theme Settings" msgstr "Paramètres généraux de thème" -#: src/Module/Settings/Display.php:311 +#: src/Module/Settings/Display.php:297 msgid "Custom Theme Settings" msgstr "Paramètres personnalisés de thème" -#: src/Module/Settings/Display.php:312 +#: src/Module/Settings/Display.php:298 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:151 view/theme/quattro/config.php:88 -#: view/theme/vier/config.php:136 +#: src/Module/Settings/Display.php:299 view/theme/duepuntozero/config.php:74 +#: view/theme/frio/config.php:139 view/theme/quattro/config.php:76 +#: view/theme/vier/config.php:124 msgid "Theme settings" msgstr "Réglages du thème graphique" -#: src/Module/Settings/Display.php:314 +#: src/Module/Settings/Display.php:300 msgid "Timelines" msgstr "Flux" -#: src/Module/Settings/Display.php:321 +#: src/Module/Settings/Display.php:307 msgid "Display Theme:" msgstr "Thème d'affichage:" -#: src/Module/Settings/Display.php:322 +#: src/Module/Settings/Display.php:308 msgid "Mobile Theme:" msgstr "Thème mobile:" -#: src/Module/Settings/Display.php:325 +#: src/Module/Settings/Display.php:311 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:311 src/Module/Settings/Display.php:312 msgid "Maximum of 100 items" msgstr "Maximum de 100 éléments" -#: src/Module/Settings/Display.php:326 +#: src/Module/Settings/Display.php:312 msgid "Number of items to display per page when viewed from mobile device:" msgstr "Nombre d'éléments à afficher par page pour un appareil mobile" -#: src/Module/Settings/Display.php:327 +#: src/Module/Settings/Display.php:313 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:313 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:314 msgid "Display emoticons" msgstr "Afficher les émoticônes" -#: src/Module/Settings/Display.php:328 +#: src/Module/Settings/Display.php:314 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:315 msgid "Infinite scroll" msgstr "Défilement infini" -#: src/Module/Settings/Display.php:329 +#: src/Module/Settings/Display.php:315 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:316 msgid "Enable Smart Threading" msgstr "Activer le fil de discussion intelligent" -#: src/Module/Settings/Display.php:330 +#: src/Module/Settings/Display.php:316 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:317 msgid "Display the Dislike feature" msgstr "Afficher la fonctionnalité \"Je n'aime pas\"" -#: src/Module/Settings/Display.php:331 +#: src/Module/Settings/Display.php:317 msgid "" "Display the Dislike button and dislike reactions on posts and comments." msgstr "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:318 msgid "Display the resharer" msgstr "Afficher le partageur" -#: src/Module/Settings/Display.php:332 +#: src/Module/Settings/Display.php:318 msgid "Display the first resharer as icon and text on a reshared item." msgstr "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:319 msgid "Stay local" msgstr "Rester local" -#: src/Module/Settings/Display.php:333 +#: src/Module/Settings/Display.php:319 msgid "Don't go to a remote system when following a contact link." msgstr "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:320 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:320 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:321 msgid "DIsplay the event list" msgstr "Afficher la liste des évènements" -#: src/Module/Settings/Display.php:335 +#: src/Module/Settings/Display.php:321 msgid "Display the birthday reminder and event list on the network page." msgstr "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:322 msgid "Link preview mode" msgstr "Mode de prévisualisation des liens" -#: src/Module/Settings/Display.php:336 +#: src/Module/Settings/Display.php:322 msgid "Appearance of the link preview that is added to each post with a link." msgstr "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:327 msgid "Bookmark" msgstr "Favoris" -#: src/Module/Settings/Display.php:343 +#: src/Module/Settings/Display.php:329 msgid "" "Enable timelines that you want to see in the channels widget. Bookmark " "timelines that you want to see in the top menu." msgstr "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:331 msgid "Channel languages:" msgstr "Langues de la chaîne :" -#: src/Module/Settings/Display.php:345 +#: src/Module/Settings/Display.php:331 msgid "Select all languages that you want to see in your channels." msgstr "Sélectionnez les langues que vous souhaitez voir dans vos chaînes." -#: src/Module/Settings/Display.php:347 +#: src/Module/Settings/Display.php:333 msgid "Beginning of week:" msgstr "Début de la semaine :" -#: src/Module/Settings/Display.php:348 +#: src/Module/Settings/Display.php:334 msgid "Default calendar view:" msgstr "Vue par défaut du calendrier :" -#: src/Module/Settings/Features.php:73 +#: src/Module/Settings/Features.php:59 msgid "Additional Features" msgstr "Fonctions supplémentaires" -#: src/Module/Settings/OAuth.php:71 +#: src/Module/Settings/OAuth.php:57 msgid "Connected Apps" msgstr "Applications connectées" -#: src/Module/Settings/OAuth.php:75 +#: src/Module/Settings/OAuth.php:61 msgid "Remove authorization" msgstr "Révoquer l'autorisation" -#: src/Module/Settings/Profile/Index.php:116 +#: src/Module/Settings/Profile/Index.php:102 msgid "Display Name is required." msgstr "Le nom d'affichage est requis." -#: src/Module/Settings/Profile/Index.php:170 +#: src/Module/Settings/Profile/Index.php:156 msgid "Profile couldn't be updated." msgstr "Le profil n'a pas pu être mis à jour." -#: src/Module/Settings/Profile/Index.php:210 -#: src/Module/Settings/Profile/Index.php:231 +#: src/Module/Settings/Profile/Index.php:196 +#: src/Module/Settings/Profile/Index.php:217 msgid "Label:" msgstr "Description :" -#: src/Module/Settings/Profile/Index.php:211 -#: src/Module/Settings/Profile/Index.php:232 +#: src/Module/Settings/Profile/Index.php:197 +#: src/Module/Settings/Profile/Index.php:218 msgid "Value:" msgstr "Contenu :" -#: src/Module/Settings/Profile/Index.php:222 -#: src/Module/Settings/Profile/Index.php:243 +#: src/Module/Settings/Profile/Index.php:208 +#: src/Module/Settings/Profile/Index.php:229 msgid "Field Permissions" msgstr "Permissions du champ" -#: src/Module/Settings/Profile/Index.php:223 -#: src/Module/Settings/Profile/Index.php:244 +#: src/Module/Settings/Profile/Index.php:209 +#: src/Module/Settings/Profile/Index.php:230 msgid "(click to open/close)" msgstr "(cliquer pour ouvrir/fermer)" -#: src/Module/Settings/Profile/Index.php:229 +#: src/Module/Settings/Profile/Index.php:215 msgid "Add a new profile field" msgstr "Ajouter un nouveau champ de profil" -#: src/Module/Settings/Profile/Index.php:252 +#: src/Module/Settings/Profile/Index.php:238 msgid "" "The homepage is verified. A rel=\"me\" link back to your Friendica profile " "page was found on the homepage." msgstr "La page d'accueil est vérifiée. Un lien rel=\"me\" vers votre page de profil Friendica a été trouvé sur la page d'accueil." -#: src/Module/Settings/Profile/Index.php:254 +#: src/Module/Settings/Profile/Index.php:240 #, php-format msgid "" "To verify your homepage, add a rel=\"me\" link to it, pointing to your " "profile URL (%s)." msgstr "Pour vérifier votre page d'accueil, ajouter un lien rel=\"me\" à celle-ci, pointant vers l'URL de votre profil (%s)." -#: src/Module/Settings/Profile/Index.php:260 +#: src/Module/Settings/Profile/Index.php:246 msgid "Profile Actions" msgstr "Actions de Profil" -#: src/Module/Settings/Profile/Index.php:261 +#: src/Module/Settings/Profile/Index.php:247 msgid "Edit Profile Details" msgstr "Éditer les détails du profil" -#: src/Module/Settings/Profile/Index.php:263 +#: src/Module/Settings/Profile/Index.php:249 msgid "Change Profile Photo" msgstr "Changer la photo du profil" -#: src/Module/Settings/Profile/Index.php:266 +#: src/Module/Settings/Profile/Index.php:252 msgid "Profile picture" msgstr "Image de profil" -#: src/Module/Settings/Profile/Index.php:267 +#: src/Module/Settings/Profile/Index.php:253 msgid "Location" msgstr "Localisation" -#: src/Module/Settings/Profile/Index.php:268 src/Util/Temporal.php:97 -#: src/Util/Temporal.php:99 +#: src/Module/Settings/Profile/Index.php:254 src/Util/Temporal.php:83 +#: src/Util/Temporal.php:85 msgid "Miscellaneous" msgstr "Divers" -#: src/Module/Settings/Profile/Index.php:269 +#: src/Module/Settings/Profile/Index.php:255 msgid "Custom Profile Fields" msgstr "Champs de profil personalisés" -#: src/Module/Settings/Profile/Index.php:270 src/Module/Welcome.php:58 +#: src/Module/Settings/Profile/Index.php:256 src/Module/Welcome.php:44 msgid "Upload Profile Photo" msgstr "Téléverser une photo de profil" -#: src/Module/Settings/Profile/Index.php:271 +#: src/Module/Settings/Profile/Index.php:257 #, php-format msgid "" "

Custom fields appear on your profile page.

\n" @@ -11031,396 +11001,396 @@ msgid "" "\t\t\t\t

Non-public fields can only be seen by the selected Friendica contacts or the Friendica contacts in the selected circles.

" msgstr "

Les champs de profil personnalisés apparaissent sur votre page de profil.

\n\t\t\t\t

Vous pouvez utilisez les BBCodes dans le contenu des champs.

\n\t\t\t\t

Triez les champs en glissant-déplaçant leur titre.

\n\t\t\t\t

Laissez le titre d'un champ vide pour le supprimer lors de la soumission du formulaire .

\n\t\t\t\t

Les champs non-publics peuvent être consultés uniquement par les contacts Friendica autorisés ou par les contacts Friendica de cercles autorisés.

" -#: src/Module/Settings/Profile/Index.php:291 +#: src/Module/Settings/Profile/Index.php:277 msgid "Street Address:" msgstr "Adresse postale :" -#: src/Module/Settings/Profile/Index.php:292 +#: src/Module/Settings/Profile/Index.php:278 msgid "Locality/City:" msgstr "Ville :" -#: src/Module/Settings/Profile/Index.php:293 +#: src/Module/Settings/Profile/Index.php:279 msgid "Region/State:" msgstr "Région / État :" -#: src/Module/Settings/Profile/Index.php:294 +#: src/Module/Settings/Profile/Index.php:280 msgid "Postal/Zip Code:" msgstr "Code postal :" -#: src/Module/Settings/Profile/Index.php:295 +#: src/Module/Settings/Profile/Index.php:281 msgid "Country:" msgstr "Pays :" -#: src/Module/Settings/Profile/Index.php:297 +#: src/Module/Settings/Profile/Index.php:283 msgid "XMPP (Jabber) address:" msgstr "Adresse XMPP (Jabber) :" -#: src/Module/Settings/Profile/Index.php:297 +#: src/Module/Settings/Profile/Index.php:283 msgid "" "The XMPP address will be published so that people can follow you there." msgstr "L'adresse XMPP sera publiée de façon à ce que les autres personnes puissent vous y suivre." -#: src/Module/Settings/Profile/Index.php:298 +#: src/Module/Settings/Profile/Index.php:284 msgid "Matrix (Element) address:" msgstr "Adresse Matrix (Element) :" -#: src/Module/Settings/Profile/Index.php:298 +#: src/Module/Settings/Profile/Index.php:284 msgid "" "The Matrix address will be published so that people can follow you there." msgstr "L'adresse Matrix sera publiée de façon à ce que les autres personnes puissent vous y suivre." -#: src/Module/Settings/Profile/Index.php:299 +#: src/Module/Settings/Profile/Index.php:285 msgid "Homepage URL:" msgstr "Page personnelle :" -#: src/Module/Settings/Profile/Index.php:300 +#: src/Module/Settings/Profile/Index.php:286 msgid "Public Keywords:" msgstr "Mots-clés publics :" -#: src/Module/Settings/Profile/Index.php:300 +#: src/Module/Settings/Profile/Index.php:286 msgid "(Used for suggesting potential friends, can be seen by others)" msgstr "(Utilisés pour vous suggérer des abonnements. Ils peuvent être vus par autrui)" -#: src/Module/Settings/Profile/Index.php:301 +#: src/Module/Settings/Profile/Index.php:287 msgid "Private Keywords:" msgstr "Mots-clés privés :" -#: src/Module/Settings/Profile/Index.php:301 +#: src/Module/Settings/Profile/Index.php:287 msgid "(Used for searching profiles, never shown to others)" msgstr "(Utilisés pour rechercher des profils. Ils ne seront jamais montrés à autrui)" -#: src/Module/Settings/Profile/Photo/Crop.php:107 -#: src/Module/Settings/Profile/Photo/Crop.php:125 -#: src/Module/Settings/Profile/Photo/Crop.php:143 -#: src/Module/Settings/Profile/Photo/Index.php:100 +#: src/Module/Settings/Profile/Photo/Crop.php:93 +#: src/Module/Settings/Profile/Photo/Crop.php:111 +#: src/Module/Settings/Profile/Photo/Crop.php:129 +#: src/Module/Settings/Profile/Photo/Index.php:86 #, php-format msgid "Image size reduction [%s] failed." msgstr "Réduction de la taille de l'image [%s] échouée." -#: src/Module/Settings/Profile/Photo/Crop.php:150 +#: src/Module/Settings/Profile/Photo/Crop.php:136 msgid "" "Shift-reload the page or clear browser cache if the new photo does not " "display immediately." msgstr "Rechargez la page avec la touche Maj pressée, ou bien effacez le cache du navigateur, si d'aventure la nouvelle photo n'apparaissait pas immédiatement." -#: src/Module/Settings/Profile/Photo/Crop.php:155 +#: src/Module/Settings/Profile/Photo/Crop.php:141 msgid "Unable to process image" msgstr "Impossible de traiter l'image" -#: src/Module/Settings/Profile/Photo/Crop.php:174 +#: src/Module/Settings/Profile/Photo/Crop.php:160 msgid "Photo not found." msgstr "Photo introuvable." -#: src/Module/Settings/Profile/Photo/Crop.php:196 +#: src/Module/Settings/Profile/Photo/Crop.php:182 msgid "Profile picture successfully updated." msgstr "Photo de profil mise à jour avec succès." -#: src/Module/Settings/Profile/Photo/Crop.php:222 -#: src/Module/Settings/Profile/Photo/Crop.php:226 +#: src/Module/Settings/Profile/Photo/Crop.php:208 +#: src/Module/Settings/Profile/Photo/Crop.php:212 msgid "Crop Image" msgstr "(Re)cadrer l'image" -#: src/Module/Settings/Profile/Photo/Crop.php:223 +#: src/Module/Settings/Profile/Photo/Crop.php:209 msgid "Please adjust the image cropping for optimum viewing." msgstr "Ajustez le cadre de l'image pour une visualisation optimale." -#: src/Module/Settings/Profile/Photo/Crop.php:225 +#: src/Module/Settings/Profile/Photo/Crop.php:211 msgid "Use Image As Is" msgstr "Utiliser l'image telle quelle" -#: src/Module/Settings/Profile/Photo/Index.php:46 +#: src/Module/Settings/Profile/Photo/Index.php:32 msgid "Missing uploaded image." msgstr "Image téléversée manquante" -#: src/Module/Settings/Profile/Photo/Index.php:123 +#: src/Module/Settings/Profile/Photo/Index.php:109 msgid "Profile Picture Settings" msgstr "Réglages de la photo de profil" -#: src/Module/Settings/Profile/Photo/Index.php:124 +#: src/Module/Settings/Profile/Photo/Index.php:110 msgid "Current Profile Picture" msgstr "Photo de profil actuelle" -#: src/Module/Settings/Profile/Photo/Index.php:125 +#: src/Module/Settings/Profile/Photo/Index.php:111 msgid "Upload Profile Picture" msgstr "Téléverser une photo de profil" -#: src/Module/Settings/Profile/Photo/Index.php:126 +#: src/Module/Settings/Profile/Photo/Index.php:112 msgid "Upload Picture:" msgstr "Téléverser une photo :" -#: src/Module/Settings/Profile/Photo/Index.php:131 +#: src/Module/Settings/Profile/Photo/Index.php:117 msgid "or" msgstr "ou" -#: src/Module/Settings/Profile/Photo/Index.php:133 +#: src/Module/Settings/Profile/Photo/Index.php:119 msgid "skip this step" msgstr "ignorer cette étape" -#: src/Module/Settings/Profile/Photo/Index.php:135 +#: src/Module/Settings/Profile/Photo/Index.php:121 msgid "select a photo from your photo albums" msgstr "choisissez une photo depuis vos albums" -#: src/Module/Settings/RemoveMe.php:76 +#: src/Module/Settings/RemoveMe.php:62 msgid "" "There was a validation error, please make sure you're logged in with the " "account you want to remove and try again." msgstr "Il y a eu une erreur de validation, vérifiez que vous êtes connecté avec le compte que vous souhaitez supprimer et réessayez." -#: src/Module/Settings/RemoveMe.php:76 +#: src/Module/Settings/RemoveMe.php:62 msgid "If this error persists, please contact your administrator." msgstr "Si cette erreur persiste, veuillez contacter votre administrateur." -#: src/Module/Settings/RemoveMe.php:90 -#: src/Navigation/Notifications/Repository/Notify.php:471 -#: src/Navigation/Notifications/Repository/Notify.php:492 +#: src/Module/Settings/RemoveMe.php:76 +#: src/Navigation/Notifications/Repository/Notify.php:457 +#: src/Navigation/Notifications/Repository/Notify.php:478 msgid "[Friendica System Notify]" msgstr "[Notification Système de Friendica]" -#: src/Module/Settings/RemoveMe.php:90 +#: src/Module/Settings/RemoveMe.php:76 msgid "User deleted their account" msgstr "L'utilisateur a supprimé son compte" -#: src/Module/Settings/RemoveMe.php:91 +#: src/Module/Settings/RemoveMe.php:77 msgid "" "On your Friendica node an user deleted their account. Please ensure that " "their data is removed from the backups." msgstr "Sur votre nœud Friendica, un utilisateur a supprimé son compte. Veuillez vous assurer que ses données sont supprimées des sauvegardes." -#: src/Module/Settings/RemoveMe.php:92 +#: src/Module/Settings/RemoveMe.php:78 #, php-format msgid "The user id is %d" msgstr "L'identifiant d'utilisateur est %d" -#: src/Module/Settings/RemoveMe.php:105 +#: src/Module/Settings/RemoveMe.php:91 msgid "Your account has been successfully removed. Bye bye!" msgstr "Votre compte a été supprimé avec succès. Au revoir !" -#: src/Module/Settings/RemoveMe.php:130 +#: src/Module/Settings/RemoveMe.php:116 msgid "Remove My Account" msgstr "Supprimer mon compte" -#: src/Module/Settings/RemoveMe.php:131 +#: src/Module/Settings/RemoveMe.php:117 msgid "" "This will completely remove your account. Once this has been done it is not " "recoverable." msgstr "Ceci supprimera totalement votre compte. Cette opération est irréversible." -#: src/Module/Settings/RemoveMe.php:136 +#: src/Module/Settings/RemoveMe.php:122 msgid "Please enter your password for verification:" msgstr "Veuillez saisir votre mot de passe pour vérification :" -#: src/Module/Settings/Server/Action.php:60 +#: src/Module/Settings/Server/Action.php:46 msgid "Do you want to ignore this server?" msgstr "Voulez-vous ignorer ce serveur ?" -#: src/Module/Settings/Server/Action.php:64 +#: src/Module/Settings/Server/Action.php:50 msgid "Do you want to unignore this server?" msgstr "Voulez-vous ne plus ignorer ce serveur ?" -#: src/Module/Settings/Server/Action.php:74 -#: src/Module/Settings/Server/Index.php:104 +#: src/Module/Settings/Server/Action.php:60 +#: src/Module/Settings/Server/Index.php:90 msgid "Remote server settings" msgstr "Paramètres du serveur distant" -#: src/Module/Settings/Server/Action.php:77 +#: src/Module/Settings/Server/Action.php:63 msgid "Server URL" msgstr "URL du serveur" -#: src/Module/Settings/Server/Index.php:78 +#: src/Module/Settings/Server/Index.php:64 msgid "Settings saved" msgstr "Paramètres sauvegardés" -#: src/Module/Settings/Server/Index.php:105 +#: src/Module/Settings/Server/Index.php:91 msgid "" "Here you can find all the remote servers you have taken individual " "moderation actions against. For a list of servers your node has blocked, " "please check out the Information page." msgstr "Vous trouverez ici tous les serveurs distants pour lesquels vous avez pris des mesures de modération individuelles. Pour obtenir une liste des serveurs que votre nœud a bloqués, veuillez consulter la page Information." -#: src/Module/Settings/Server/Index.php:110 +#: src/Module/Settings/Server/Index.php:96 msgid "Delete all your settings for the remote server" msgstr "Supprime tous vos paramètres du serveur distant" -#: src/Module/Settings/Server/Index.php:111 +#: src/Module/Settings/Server/Index.php:97 msgid "Save changes" msgstr "Sauvegarder les changements" -#: src/Module/Settings/TwoFactor/AppSpecific.php:69 -#: src/Module/Settings/TwoFactor/Recovery.php:67 -#: src/Module/Settings/TwoFactor/Trusted.php:70 -#: src/Module/Settings/TwoFactor/Verify.php:72 +#: src/Module/Settings/TwoFactor/AppSpecific.php:55 +#: src/Module/Settings/TwoFactor/Recovery.php:53 +#: src/Module/Settings/TwoFactor/Trusted.php:56 +#: src/Module/Settings/TwoFactor/Verify.php:58 msgid "Please enter your password to access this page." msgstr "Veuillez saisir votre mot de passe pour accéder à cette page." -#: src/Module/Settings/TwoFactor/AppSpecific.php:87 +#: src/Module/Settings/TwoFactor/AppSpecific.php:73 msgid "App-specific password generation failed: The description is empty." msgstr "La génération du mot de passe spécifique à l'application a échoué : la description est vide." -#: src/Module/Settings/TwoFactor/AppSpecific.php:90 +#: src/Module/Settings/TwoFactor/AppSpecific.php:76 msgid "" "App-specific password generation failed: This description already exists." msgstr "La génération du mot de passe spécifique à l'application a échoué : cette description existe déjà." -#: src/Module/Settings/TwoFactor/AppSpecific.php:94 +#: src/Module/Settings/TwoFactor/AppSpecific.php:80 msgid "New app-specific password generated." msgstr "Nouveau mot de passe spécifique à l'application généré avec succès." -#: src/Module/Settings/TwoFactor/AppSpecific.php:100 +#: src/Module/Settings/TwoFactor/AppSpecific.php:86 msgid "App-specific passwords successfully revoked." msgstr "Mots de passe spécifiques à des applications révoqués avec succès." -#: src/Module/Settings/TwoFactor/AppSpecific.php:110 +#: src/Module/Settings/TwoFactor/AppSpecific.php:96 msgid "App-specific password successfully revoked." msgstr "Mot de passe spécifique à l'application révoqué avec succès." -#: src/Module/Settings/TwoFactor/AppSpecific.php:131 +#: src/Module/Settings/TwoFactor/AppSpecific.php:117 msgid "Two-factor app-specific passwords" msgstr "Authentification à deux facteurs : Mots de passe spécifiques aux applications" -#: src/Module/Settings/TwoFactor/AppSpecific.php:133 +#: src/Module/Settings/TwoFactor/AppSpecific.php:119 msgid "" "

App-specific passwords are randomly generated passwords used instead your" " regular password to authenticate your account on third-party applications " "that don't support two-factor authentication.

" msgstr "

Les mots de passe spécifiques aux application sont des mots de passe générés aléatoirement pour vous identifier avec votre compte Friendica sur des applications tierce-partie qui n'offrent pas d'authentification à deux facteurs.

" -#: src/Module/Settings/TwoFactor/AppSpecific.php:134 +#: src/Module/Settings/TwoFactor/AppSpecific.php:120 msgid "" "Make sure to copy your new app-specific password now. You won’t be able to " "see it again!" msgstr "Veillez à copier votre nouveau mot de passe spécifique à l'application maintenant. Il ne sera plus jamais affiché!" -#: src/Module/Settings/TwoFactor/AppSpecific.php:138 +#: src/Module/Settings/TwoFactor/AppSpecific.php:124 msgid "Last Used" msgstr "Dernière utilisation" -#: src/Module/Settings/TwoFactor/AppSpecific.php:139 +#: src/Module/Settings/TwoFactor/AppSpecific.php:125 msgid "Revoke" msgstr "Révoquer" -#: src/Module/Settings/TwoFactor/AppSpecific.php:140 +#: src/Module/Settings/TwoFactor/AppSpecific.php:126 msgid "Revoke All" msgstr "Révoquer tous" -#: src/Module/Settings/TwoFactor/AppSpecific.php:143 +#: src/Module/Settings/TwoFactor/AppSpecific.php:129 msgid "" "When you generate a new app-specific password, you must use it right away, " "it will be shown to you once after you generate it." msgstr "Une fois que votre nouveau mot de passe spécifique à l'application est généré, vous devez l'utiliser immédiatement car il ne vous sera pas remontré plus tard." -#: src/Module/Settings/TwoFactor/AppSpecific.php:144 +#: src/Module/Settings/TwoFactor/AppSpecific.php:130 msgid "Generate new app-specific password" msgstr "Générer un nouveau mot de passe spécifique à une application" -#: src/Module/Settings/TwoFactor/AppSpecific.php:145 +#: src/Module/Settings/TwoFactor/AppSpecific.php:131 msgid "Friendiqa on my Fairphone 2..." msgstr "Friendiqa sur mon Fairphone 2..." -#: src/Module/Settings/TwoFactor/AppSpecific.php:146 +#: src/Module/Settings/TwoFactor/AppSpecific.php:132 msgid "Generate" msgstr "Générer" -#: src/Module/Settings/TwoFactor/Index.php:88 +#: src/Module/Settings/TwoFactor/Index.php:74 msgid "Two-factor authentication successfully disabled." msgstr "Authentification à deux facteurs désactivée avec succès." -#: src/Module/Settings/TwoFactor/Index.php:141 +#: src/Module/Settings/TwoFactor/Index.php:127 msgid "" "

Use an application on a mobile device to get two-factor authentication " "codes when prompted on login.

" msgstr "

Utilisez une application mobile pour obtenir des codes d'authentification à deux facteurs que vous devrez fournir lors de la saisie de vos identifiants.

" -#: src/Module/Settings/TwoFactor/Index.php:145 +#: src/Module/Settings/TwoFactor/Index.php:131 msgid "Authenticator app" msgstr "Application mobile" -#: src/Module/Settings/TwoFactor/Index.php:146 +#: src/Module/Settings/TwoFactor/Index.php:132 msgid "Configured" msgstr "Configurée" -#: src/Module/Settings/TwoFactor/Index.php:146 +#: src/Module/Settings/TwoFactor/Index.php:132 msgid "Not Configured" msgstr "Pas encore configurée" -#: src/Module/Settings/TwoFactor/Index.php:147 +#: src/Module/Settings/TwoFactor/Index.php:133 msgid "

You haven't finished configuring your authenticator app.

" msgstr "

Vous n'avez pas complété la configuration de votre application mobile d'authentification.

" -#: src/Module/Settings/TwoFactor/Index.php:148 +#: src/Module/Settings/TwoFactor/Index.php:134 msgid "

Your authenticator app is correctly configured.

" msgstr "

Votre application mobile d'authentification est correctement configurée.

" -#: src/Module/Settings/TwoFactor/Index.php:150 +#: src/Module/Settings/TwoFactor/Index.php:136 msgid "Recovery codes" msgstr "Codes de secours" -#: src/Module/Settings/TwoFactor/Index.php:151 +#: src/Module/Settings/TwoFactor/Index.php:137 msgid "Remaining valid codes" msgstr "Codes valides restant" -#: src/Module/Settings/TwoFactor/Index.php:153 +#: src/Module/Settings/TwoFactor/Index.php:139 msgid "" "

These one-use codes can replace an authenticator app code in case you " "have lost access to it.

" msgstr "

Ces codes à usage unique peuvent remplacer un code de votre application mobile d'authentification si vous n'y avez pas ou plus accès.

" -#: src/Module/Settings/TwoFactor/Index.php:155 +#: src/Module/Settings/TwoFactor/Index.php:141 msgid "App-specific passwords" msgstr "Mots de passe spécifiques aux applications" -#: src/Module/Settings/TwoFactor/Index.php:156 +#: src/Module/Settings/TwoFactor/Index.php:142 msgid "Generated app-specific passwords" msgstr "Générer des mots de passe d'application" -#: src/Module/Settings/TwoFactor/Index.php:158 +#: src/Module/Settings/TwoFactor/Index.php:144 msgid "" "

These randomly generated passwords allow you to authenticate on apps not " "supporting two-factor authentication.

" msgstr "

Ces mots de passe générés aléatoirement vous permettent de vous identifier sur des applications tierce-partie qui ne supportent pas l'authentification à deux facteurs.

" -#: src/Module/Settings/TwoFactor/Index.php:161 +#: src/Module/Settings/TwoFactor/Index.php:147 msgid "Current password:" msgstr "Mot de passe actuel :" -#: src/Module/Settings/TwoFactor/Index.php:161 +#: src/Module/Settings/TwoFactor/Index.php:147 msgid "" "You need to provide your current password to change two-factor " "authentication settings." msgstr "Vous devez saisir votre mot de passe actuel pour changer les réglages de l'authentification à deux facteurs." -#: src/Module/Settings/TwoFactor/Index.php:162 +#: src/Module/Settings/TwoFactor/Index.php:148 msgid "Enable two-factor authentication" msgstr "Activer l'authentification à deux facteurs" -#: src/Module/Settings/TwoFactor/Index.php:163 +#: src/Module/Settings/TwoFactor/Index.php:149 msgid "Disable two-factor authentication" msgstr "Désactiver l'authentification à deux facteurs" -#: src/Module/Settings/TwoFactor/Index.php:164 +#: src/Module/Settings/TwoFactor/Index.php:150 msgid "Show recovery codes" msgstr "Montrer les codes de secours" -#: src/Module/Settings/TwoFactor/Index.php:165 +#: src/Module/Settings/TwoFactor/Index.php:151 msgid "Manage app-specific passwords" msgstr "Gérer les mots de passe spécifiques aux applications" -#: src/Module/Settings/TwoFactor/Index.php:166 +#: src/Module/Settings/TwoFactor/Index.php:152 msgid "Manage trusted browsers" msgstr "Gérer les navigateurs de confiance" -#: src/Module/Settings/TwoFactor/Index.php:167 +#: src/Module/Settings/TwoFactor/Index.php:153 msgid "Finish app configuration" msgstr "Compléter la configuration de l'application mobile" -#: src/Module/Settings/TwoFactor/Recovery.php:83 +#: src/Module/Settings/TwoFactor/Recovery.php:69 msgid "New recovery codes successfully generated." msgstr "Nouveaux codes de secours générés avec succès." -#: src/Module/Settings/TwoFactor/Recovery.php:109 +#: src/Module/Settings/TwoFactor/Recovery.php:95 msgid "Two-factor recovery codes" msgstr "Codes d'identification de secours" -#: src/Module/Settings/TwoFactor/Recovery.php:111 +#: src/Module/Settings/TwoFactor/Recovery.php:97 msgid "" "

Recovery codes can be used to access your account in the event you lose " "access to your device and cannot receive two-factor authentication " @@ -11429,68 +11399,68 @@ msgid "" "account.

" msgstr "

Les codes de secours peuvent être utilisés pour accéder à votre compte dans l'eventualité où vous auriez perdu l'accès à votre application mobile d'authentification à deux facteurs.

Prenez soin de ces codes ! Si vous perdez votre appareil mobile et n'avez pas de codes de secours vous n'aurez plus accès à votre compte.

" -#: src/Module/Settings/TwoFactor/Recovery.php:113 +#: src/Module/Settings/TwoFactor/Recovery.php:99 msgid "" "When you generate new recovery codes, you must copy the new codes. Your old " "codes won’t work anymore." msgstr "Après avoir généré de nouveaux codes de secours, veillez à remplacer les anciens qui ne seront plus valides." -#: src/Module/Settings/TwoFactor/Recovery.php:114 +#: src/Module/Settings/TwoFactor/Recovery.php:100 msgid "Generate new recovery codes" msgstr "Générer de nouveaux codes de secours" -#: src/Module/Settings/TwoFactor/Recovery.php:116 +#: src/Module/Settings/TwoFactor/Recovery.php:102 msgid "Next: Verification" msgstr "Prochaine étape : Vérification" -#: src/Module/Settings/TwoFactor/Trusted.php:87 +#: src/Module/Settings/TwoFactor/Trusted.php:73 msgid "Trusted browsers successfully removed." msgstr "Les navigateurs de confiance ont bien été supprimés." -#: src/Module/Settings/TwoFactor/Trusted.php:97 +#: src/Module/Settings/TwoFactor/Trusted.php:83 msgid "Trusted browser successfully removed." msgstr "Le navigateur de confiance a bien été supprimé." -#: src/Module/Settings/TwoFactor/Trusted.php:139 +#: src/Module/Settings/TwoFactor/Trusted.php:125 msgid "Two-factor Trusted Browsers" msgstr "Navigateurs de confiance pour la 2FA" -#: src/Module/Settings/TwoFactor/Trusted.php:140 +#: src/Module/Settings/TwoFactor/Trusted.php:126 msgid "" "Trusted browsers are individual browsers you chose to skip two-factor " "authentication to access Friendica. Please use this feature sparingly, as it" " can negate the benefit of two-factor authentication." msgstr "Les navigateurs de confiance sont des navigateurs individuels pour lesquels vous avez choisi de ne pas utiliser l'identification à deux facteurs pour accéder à Friendica. Merci d'utiliser cette fonctionnalité avec discernement, au vu du fait qu'elle peut annuler les bénéfices de l'identification à deux facteurs." -#: src/Module/Settings/TwoFactor/Trusted.php:141 +#: src/Module/Settings/TwoFactor/Trusted.php:127 msgid "Device" msgstr "Périphérique" -#: src/Module/Settings/TwoFactor/Trusted.php:142 +#: src/Module/Settings/TwoFactor/Trusted.php:128 msgid "OS" msgstr "Système d'exploitation" -#: src/Module/Settings/TwoFactor/Trusted.php:144 +#: src/Module/Settings/TwoFactor/Trusted.php:130 msgid "Trusted" msgstr "De confiance" -#: src/Module/Settings/TwoFactor/Trusted.php:145 +#: src/Module/Settings/TwoFactor/Trusted.php:131 msgid "Created At" msgstr "Créé à" -#: src/Module/Settings/TwoFactor/Trusted.php:146 +#: src/Module/Settings/TwoFactor/Trusted.php:132 msgid "Last Use" msgstr "Dernière utilisation" -#: src/Module/Settings/TwoFactor/Trusted.php:148 +#: src/Module/Settings/TwoFactor/Trusted.php:134 msgid "Remove All" msgstr "Tout supprimer" -#: src/Module/Settings/TwoFactor/Verify.php:94 +#: src/Module/Settings/TwoFactor/Verify.php:80 msgid "Two-factor authentication successfully activated." msgstr "Authentification à deux facteurs activée avec succès." -#: src/Module/Settings/TwoFactor/Verify.php:128 +#: src/Module/Settings/TwoFactor/Verify.php:114 #, php-format msgid "" "

Or you can submit the authentication settings manually:

\n" @@ -11510,105 +11480,105 @@ msgid "" "" msgstr "

Ou bien vous pouvez saisir les paramètres de l'authentification manuellement:

\n
\n\t
Émetteur
\n\t
%s
\n\t
Nom du compte
\n\t
%s
\n\t
Clé secrète
\n\t
%s
\n\t
Type
\n\t
Temporel
\n\t
Nombre de chiffres
\n\t
6
\n\t
Algorithme de hachage
\n\t
SHA-1
\n
" -#: src/Module/Settings/TwoFactor/Verify.php:148 +#: src/Module/Settings/TwoFactor/Verify.php:134 msgid "Two-factor code verification" msgstr "Vérification du code d'identification" -#: src/Module/Settings/TwoFactor/Verify.php:150 +#: src/Module/Settings/TwoFactor/Verify.php:136 msgid "" "

Please scan this QR Code with your authenticator app and submit the " "provided code.

" msgstr "

Veuillez scanner ce QR Code avec votre application mobile d'authenficiation à deux facteurs et saisissez le code qui s'affichera.

" -#: src/Module/Settings/TwoFactor/Verify.php:152 +#: src/Module/Settings/TwoFactor/Verify.php:138 #, php-format msgid "" "

Or you can open the following URL in your mobile device:

%s

" msgstr "

Ou vous pouvez ouvrir l'adresse suivante sur votre périphérique mobile: 

%s

" -#: src/Module/Settings/TwoFactor/Verify.php:159 +#: src/Module/Settings/TwoFactor/Verify.php:145 msgid "Verify code and enable two-factor authentication" msgstr "Vérifier le code d'identification et activer l'authentification à deux facteurs" -#: src/Module/Settings/UserExport.php:90 +#: src/Module/Settings/UserExport.php:76 msgid "Export account" msgstr "Exporter le compte" -#: src/Module/Settings/UserExport.php:90 +#: src/Module/Settings/UserExport.php:76 msgid "" "Export your account info and contacts. Use this to make a backup of your " "account and/or to move it to another server." msgstr "Exportez votre compte, vos infos et vos contacts. Vous pourrez utiliser le résultat comme sauvegarde et/ou pour le ré-importer sur un autre serveur." -#: src/Module/Settings/UserExport.php:91 +#: src/Module/Settings/UserExport.php:77 msgid "Export all" msgstr "Tout exporter" -#: src/Module/Settings/UserExport.php:91 +#: src/Module/Settings/UserExport.php:77 msgid "" "Export your account info, contacts and all your items as json. Could be a " "very big file, and could take a lot of time. Use this to make a full backup " "of your account (photos are not exported)" msgstr "Exporte vos informations de compte, vos contacts et toutes vos publications au format JSON. Ce processus peut prendre beaucoup de temps et générer un fichier de taille importante. Utilisez cette fonctionnalité pour faire une sauvegarde complète de votre compte (vos photos ne sont pas exportées)." -#: src/Module/Settings/UserExport.php:92 +#: src/Module/Settings/UserExport.php:78 msgid "Export Contacts to CSV" msgstr "Exporter vos contacts au format CSV" -#: src/Module/Settings/UserExport.php:92 +#: src/Module/Settings/UserExport.php:78 msgid "" "Export the list of the accounts you are following as CSV file. Compatible to" " e.g. Mastodon." msgstr "Exporter vos abonnements au format CSV. Compatible avec Mastodon." -#: src/Module/Special/DisplayNotFound.php:35 +#: src/Module/Special/DisplayNotFound.php:21 msgid "The top-level post isn't visible." msgstr "La publication de premier niveau n'est pas visible." -#: src/Module/Special/DisplayNotFound.php:36 +#: src/Module/Special/DisplayNotFound.php:22 msgid "The top-level post was deleted." msgstr "La publication de premier niveau a été supprimée." -#: src/Module/Special/DisplayNotFound.php:37 +#: src/Module/Special/DisplayNotFound.php:23 msgid "" "This node has blocked the top-level author or the author of the shared post." msgstr "Ce nœud a bloqué l'auteur de premier niveau ou l'auteur de la publication partagée." -#: src/Module/Special/DisplayNotFound.php:38 +#: src/Module/Special/DisplayNotFound.php:24 msgid "" "You have ignored or blocked the top-level author or the author of the shared" " post." msgstr "Vous avez ignoré ou bloqué l'auteur de premier niveau ou l'auteur de la publication partagée." -#: src/Module/Special/DisplayNotFound.php:39 +#: src/Module/Special/DisplayNotFound.php:25 msgid "" "You have ignored the top-level author's server or the shared post author's " "server." msgstr "Vous avez ignoré le serveur de l'auteur de premier niveau ou le serveur de l'auteur de la publication partagée." -#: src/Module/Special/DisplayNotFound.php:45 +#: src/Module/Special/DisplayNotFound.php:31 msgid "Conversation Not Found" msgstr "Conversation Non Trouvée" -#: src/Module/Special/DisplayNotFound.php:46 +#: src/Module/Special/DisplayNotFound.php:32 msgid "Unfortunately, the requested conversation isn't available to you." msgstr "Malheureusement, la conversation demandée n'est pas disponible pour vous." -#: src/Module/Special/DisplayNotFound.php:47 +#: src/Module/Special/DisplayNotFound.php:33 msgid "Possible reasons include:" msgstr "Les raisons possibles sont :" -#: src/Module/Special/HTTPException.php:78 +#: src/Module/Special/HTTPException.php:64 msgid "Stack trace:" msgstr "Stack trace:" -#: src/Module/Special/HTTPException.php:83 +#: src/Module/Special/HTTPException.php:69 #, php-format msgid "Exception thrown in %s:%d" msgstr "Exception produite dans %s:%d" -#: src/Module/Tos.php:58 src/Module/Tos.php:107 +#: src/Module/Tos.php:44 src/Module/Tos.php:93 msgid "" "At the time of registration, and for providing communications between the " "user account and their contacts, the user has to provide a display name (pen" @@ -11621,14 +11591,14 @@ msgid "" "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 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 +#: src/Module/Tos.php:45 src/Module/Tos.php:94 msgid "" "This data is required for communication and is passed on to the nodes of the" " communication partners and is stored there. Users can enter additional " "private data that may be transmitted to the communication partners accounts." msgstr "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." -#: src/Module/Tos.php:60 src/Module/Tos.php:109 +#: src/Module/Tos.php:46 src/Module/Tos.php:95 #, php-format msgid "" "At any point in time a logged in user can export their account data from the" @@ -11639,98 +11609,98 @@ msgid "" "from the nodes of the communication partners." msgstr "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." -#: src/Module/Tos.php:63 src/Module/Tos.php:106 +#: src/Module/Tos.php:49 src/Module/Tos.php:92 msgid "Privacy Statement" msgstr "Politique de Confidentialité" -#: src/Module/Tos.php:103 +#: src/Module/Tos.php:89 msgid "Rules" msgstr "Règles" -#: src/Module/Update/Display.php:45 +#: src/Module/Update/Display.php:31 msgid "Parameter uri_id is missing." msgstr "Le paramètre uri_id est manquant." -#: src/Module/Update/Display.php:55 +#: src/Module/Update/Display.php:41 msgid "The requested item doesn't exist or has been deleted." msgstr "L'objet recherché n'existe pas ou a été supprimé." -#: src/Module/User/Delegation.php:146 +#: src/Module/User/Delegation.php:132 #, php-format msgid "You are now logged in as %s" msgstr "Vous êtes maintenant connecté en tant que %s" -#: src/Module/User/Delegation.php:185 +#: src/Module/User/Delegation.php:171 msgid "Switch between your accounts" msgstr "Changer de compte" -#: src/Module/User/Delegation.php:186 +#: src/Module/User/Delegation.php:172 msgid "Manage your accounts" msgstr "Gérér vos comptes" -#: src/Module/User/Delegation.php:187 +#: src/Module/User/Delegation.php:173 msgid "" "Toggle between different identities or community/group pages which share " "your account details or which you have been granted \"manage\" permissions" msgstr "Basculez entre les différentes identités ou pages (groupes/communautés) qui se partagent votre compte ou que vous avez été autorisé à gérer." -#: src/Module/User/Delegation.php:188 +#: src/Module/User/Delegation.php:174 msgid "Select an identity to manage: " msgstr "Choisir une identité à gérer: " -#: src/Module/User/Import.php:104 +#: src/Module/User/Import.php:90 msgid "User imports on closed servers can only be done by an administrator." msgstr "L'import d'utilisateur sur un serveur fermé ne peut être effectué que par un administrateur." -#: src/Module/User/Import.php:120 +#: src/Module/User/Import.php:106 msgid "Move account" msgstr "Migrer le compte" -#: src/Module/User/Import.php:121 +#: src/Module/User/Import.php:107 msgid "You can import an account from another Friendica server." msgstr "Vous pouvez importer un compte d'un autre serveur Friendica." -#: src/Module/User/Import.php:122 +#: src/Module/User/Import.php:108 msgid "" "You need to export your account from the old server and upload it here. We " "will recreate your old account here with all your contacts. We will try also" " to inform your friends that you moved here." msgstr "Vous devez exporter votre compte à partir de l'ancien serveur et le téléverser ici. Nous recréerons votre ancien compte ici avec tous vos contacts. Nous tenterons également d'informer vos contacts que vous avez déménagé ici." -#: src/Module/User/Import.php:123 +#: src/Module/User/Import.php:109 msgid "" "This feature is experimental. We can't import contacts from the OStatus " "network (GNU Social/Statusnet) or from Diaspora" msgstr "Cette fonctionalité est expérimentale. Il n'est pas possible d'importer des contacts depuis le réseau OStatus (GNU Social/Statusnet) ou depuis Diaspora." -#: src/Module/User/Import.php:124 +#: src/Module/User/Import.php:110 msgid "Account file" msgstr "Fichier du compte" -#: src/Module/User/Import.php:124 +#: src/Module/User/Import.php:110 msgid "" "To export your account, go to \"Settings->Export your personal data\" and " "select \"Export account\"" msgstr "Pour exporter votre compte, allez dans \"Paramètres> Exporter vos données personnelles\" et sélectionnez \"exportation de compte\"" -#: src/Module/User/Import.php:218 +#: src/Module/User/Import.php:204 msgid "Error decoding account file" msgstr "Une erreur a été détecté en décodant un fichier utilisateur" -#: src/Module/User/Import.php:223 +#: src/Module/User/Import.php:209 msgid "Error! No version data in file! This is not a Friendica account file?" msgstr "Erreur ! Pas de ficher de version existant ! Êtes vous sur un compte Friendica ?" -#: src/Module/User/Import.php:231 +#: src/Module/User/Import.php:217 #, php-format msgid "User '%s' already exists on this server!" msgstr "L'utilisateur '%s' existe déjà sur ce serveur!" -#: src/Module/User/Import.php:268 +#: src/Module/User/Import.php:254 msgid "User creation error" msgstr "Erreur de création d'utilisateur" -#: src/Module/User/Import.php:317 +#: src/Module/User/Import.php:303 #, php-format msgid "%d contact not imported" msgid_plural "%d contacts not imported" @@ -11738,23 +11708,23 @@ msgstr[0] "%d contacts non importés" msgstr[1] "%d contacts non importés" msgstr[2] "%d contacts non importés" -#: src/Module/User/Import.php:366 +#: src/Module/User/Import.php:352 msgid "User profile creation error" msgstr "Erreur de création du profil utilisateur" -#: src/Module/User/Import.php:417 +#: src/Module/User/Import.php:403 msgid "Done. You can now login with your username and password" msgstr "Action réalisée. Vous pouvez désormais vous connecter avec votre nom d'utilisateur et votre mot de passe" -#: src/Module/Welcome.php:44 +#: src/Module/Welcome.php:30 msgid "Welcome to Friendica" msgstr "Bienvenue sur Friendica" -#: src/Module/Welcome.php:45 +#: src/Module/Welcome.php:31 msgid "New Member Checklist" msgstr "Checklist du nouvel utilisateur" -#: src/Module/Welcome.php:46 +#: src/Module/Welcome.php:32 msgid "" "We would like to offer some tips and links to help make your experience " "enjoyable. Click any item to visit the relevant page. A link to this page " @@ -11762,33 +11732,33 @@ msgid "" "registration and then will quietly disappear." msgstr "Nous souhaiterions vous donner quelques astuces et ressources pour rendre votre expérience la plus agréable possible. Cliquez sur n'importe lequel de ces éléments pour visiter la page correspondante. Un lien vers cette page restera visible sur votre page d'accueil pendant les deux semaines qui suivent votre inscription initiale, puis disparaîtra silencieusement." -#: src/Module/Welcome.php:48 +#: src/Module/Welcome.php:34 msgid "Getting Started" msgstr "Bien démarrer" -#: src/Module/Welcome.php:49 +#: src/Module/Welcome.php:35 msgid "Friendica Walk-Through" msgstr "Friendica pas-à-pas" -#: src/Module/Welcome.php:50 +#: src/Module/Welcome.php:36 msgid "" "On your Quick Start page - find a brief introduction to your " "profile and network tabs, make some new connections, and find some groups to" " join." msgstr "Sur votre page d'accueil, dans Conseils aux nouveaux venus - vous trouverez une rapide introduction aux onglets Profil et Réseau, pourrez vous connecter à Facebook, établir de nouvelles relations, et choisir des groupes à rejoindre." -#: src/Module/Welcome.php:53 +#: src/Module/Welcome.php:39 msgid "Go to Your Settings" msgstr "Éditer vos Réglages" -#: src/Module/Welcome.php:54 +#: src/Module/Welcome.php:40 msgid "" "On your Settings page - change your initial password. Also make a " "note of your Identity Address. This looks just like an email address - and " "will be useful in making friends on the free social web." msgstr "Sur la page des Réglages - changez votre mot de passe initial. Notez bien votre Identité. Elle ressemble à une adresse de courriel - et vous sera utile pour vous faire des amis dans le web social libre." -#: src/Module/Welcome.php:55 +#: src/Module/Welcome.php:41 msgid "" "Review the other settings, particularly the privacy settings. An unpublished" " directory listing is like having an unlisted phone number. In general, you " @@ -11796,77 +11766,77 @@ msgid "" "potential friends know exactly how to find you." msgstr "Vérifiez les autres réglages, tout particulièrement ceux liés à la vie privée. Un profil non listé, c'est un peu comme un numéro sur liste rouge. En général, vous devriez probablement publier votre profil - à moins que tous vos amis (potentiels) sachent déjà comment vous trouver." -#: src/Module/Welcome.php:59 +#: src/Module/Welcome.php:45 msgid "" "Upload a profile photo if you have not done so already. Studies have shown " "that people with real photos of themselves are ten times more likely to make" " friends than people who do not." msgstr "Téléversez (envoyez) une photo de profil si vous n'en avez pas déjà une. Les études montrent que les gens qui affichent de vraies photos d'eux sont dix fois plus susceptibles de se faire des amis." -#: src/Module/Welcome.php:60 +#: src/Module/Welcome.php:46 msgid "Edit Your Profile" msgstr "Éditer votre Profil" -#: src/Module/Welcome.php:61 +#: src/Module/Welcome.php:47 msgid "" "Edit your default profile to your liking. Review the " "settings for hiding your list of friends and hiding the profile from unknown" " visitors." msgstr "Éditez votre profil par défaut à votre convenance. Vérifiez les réglages concernant la visibilité de votre liste d'amis par les visiteurs inconnus." -#: src/Module/Welcome.php:62 +#: src/Module/Welcome.php:48 msgid "Profile Keywords" msgstr "Mots-clés du profil" -#: src/Module/Welcome.php:63 +#: src/Module/Welcome.php:49 msgid "" "Set some public keywords for your profile which describe your interests. We " "may be able to find other people with similar interests and suggest " "friendships." msgstr "Choisissez quelques mots-clé publics pour votre profil qui décrivent vos intérêts. Nous pourrons peut-être trouver d'autres personnes aux intérêts similaires et suggérer des abonnements." -#: src/Module/Welcome.php:65 +#: src/Module/Welcome.php:51 msgid "Connecting" msgstr "Connexions" -#: src/Module/Welcome.php:67 +#: src/Module/Welcome.php:53 msgid "Importing Emails" msgstr "Importer courriels" -#: src/Module/Welcome.php:68 +#: src/Module/Welcome.php:54 msgid "" "Enter your email access information on your Connector Settings page if you " "wish to import and interact with friends or mailing lists from your email " "INBOX" msgstr "Entrez vos paramètres de courriel dans les Réglages des connecteurs si vous souhaitez importer et interagir avec des amis ou des listes venant de votre Boîte de Réception." -#: src/Module/Welcome.php:69 +#: src/Module/Welcome.php:55 msgid "Go to Your Contacts Page" msgstr "Consulter vos Contacts" -#: src/Module/Welcome.php:70 +#: src/Module/Welcome.php:56 msgid "" "Your Contacts page is your gateway to managing friendships and connecting " "with friends on other networks. Typically you enter their address or site " "URL in the Add New Contact dialog." msgstr "Votre page Contacts est le point d'entrée vers la gestion de vos contacts et l'abonnement à des contacts sur d'autres serveurs. Vous pourrez y saisir leur adresse d'Identité ou l'URL de leur site dans le formulaire Ajouter un nouveau contact." -#: src/Module/Welcome.php:71 +#: src/Module/Welcome.php:57 msgid "Go to Your Site's Directory" msgstr "Consulter l'Annuaire de votre Site" -#: src/Module/Welcome.php:72 +#: src/Module/Welcome.php:58 msgid "" "The Directory page lets you find other people in this network or other " "federated sites. Look for a Connect or Follow link on " "their profile page. Provide your own Identity Address if requested." msgstr "La page Annuaire vous permet de trouver d'autres personnes au sein de ce réseaux ou parmi d'autres sites fédérés. Cherchez un lien Relier ou Suivre sur leur profil. Vous pourrez avoir besoin d'indiquer votre adresse d'identité." -#: src/Module/Welcome.php:73 +#: src/Module/Welcome.php:59 msgid "Finding New People" msgstr "Trouver de nouvelles personnes" -#: src/Module/Welcome.php:74 +#: src/Module/Welcome.php:60 msgid "" "On the side panel of the Contacts page are several tools to find new " "friends. We can match people by interest, look up people by name or " @@ -11875,412 +11845,408 @@ msgid "" "hours." msgstr "Sur le panneau latéral de la page Contacts, il y a plusieurs moyens de trouver de nouveaux contacts. Nous pouvons mettre les gens en relation selon leurs intérêts, rechercher des amis par nom ou intérêt, et fournir des suggestions en fonction de la topologie du réseau. Sur un site tout neuf, les suggestions d'abonnement devraient commencer à apparaître au bout de 24 heures." -#: src/Module/Welcome.php:77 +#: src/Module/Welcome.php:63 msgid "Add Your Contacts To Circle" msgstr "Ajouter vos contacts à des cercles" -#: src/Module/Welcome.php:78 +#: src/Module/Welcome.php:64 msgid "" "Once you have made some friends, organize them into private conversation " "circles from the sidebar of your Contacts page and then you can interact " "with each circle privately on your Network page." msgstr "Une fois que vous vous êtes fait des amis, organisez-les en cercles de conversation privés dans la barre latérale de votre page Contacts. Vous pouvez ensuite interagir avec chaque cercle en privé sur votre page Réseau." -#: src/Module/Welcome.php:80 +#: src/Module/Welcome.php:66 msgid "Why Aren't My Posts Public?" msgstr "Pourquoi mes éléments ne sont pas publics ?" -#: src/Module/Welcome.php:81 +#: src/Module/Welcome.php:67 msgid "" "Friendica respects your privacy. By default, your posts will only show up to" " people you've added as friends. For more information, see the help section " "from the link above." msgstr "Friendica respecte votre vie privée. Par défaut, toutes vos publications seront seulement montrés à vos amis. Pour plus d'information, consultez la section \"aide\" du lien ci-dessus." -#: src/Module/Welcome.php:83 +#: src/Module/Welcome.php:69 msgid "Getting Help" msgstr "Obtenir de l'aide" -#: src/Module/Welcome.php:84 +#: src/Module/Welcome.php:70 msgid "Go to the Help Section" msgstr "Aller à la section Aide" -#: src/Module/Welcome.php:85 +#: src/Module/Welcome.php:71 msgid "" "Our help pages may be consulted for detail on other program" " features and resources." msgstr "Nos pages d'aide peuvent être consultées pour davantage de détails sur les fonctionnalités ou les ressources." -#: src/Navigation/Notifications/Factory/FormattedNavNotification.php:161 +#: src/Navigation/Notifications/Factory/FormattedNavNotification.php:147 msgid "{0} wants to follow you" msgstr "{0} souhaite vous suivre" -#: src/Navigation/Notifications/Factory/FormattedNavNotification.php:163 +#: src/Navigation/Notifications/Factory/FormattedNavNotification.php:149 msgid "{0} has started following you" msgstr "{0} a commencé à vous suivre" -#: src/Navigation/Notifications/Factory/FormattedNotify.php:96 +#: src/Navigation/Notifications/Factory/FormattedNotify.php:82 #, php-format msgid "%s liked %s's post" msgstr "%s a aimé la publication de %s" -#: src/Navigation/Notifications/Factory/FormattedNotify.php:108 +#: src/Navigation/Notifications/Factory/FormattedNotify.php:94 #, php-format msgid "%s disliked %s's post" msgstr "%s n'a pas aimé la publication de %s" -#: src/Navigation/Notifications/Factory/FormattedNotify.php:120 +#: src/Navigation/Notifications/Factory/FormattedNotify.php:106 #, php-format msgid "%s is attending %s's event" msgstr "%s participe à l'évènement de %s" -#: src/Navigation/Notifications/Factory/FormattedNotify.php:132 +#: src/Navigation/Notifications/Factory/FormattedNotify.php:118 #, php-format msgid "%s is not attending %s's event" msgstr "%s ne participe pas à l'évènement de %s" -#: src/Navigation/Notifications/Factory/FormattedNotify.php:144 +#: src/Navigation/Notifications/Factory/FormattedNotify.php:130 #, php-format msgid "%s may attending %s's event" msgstr "%s participe peut-être à l'évènement de %s" -#: src/Navigation/Notifications/Factory/FormattedNotify.php:174 +#: src/Navigation/Notifications/Factory/FormattedNotify.php:160 #, php-format msgid "%s is now friends with %s" msgstr "%s est désormais ami(e) avec %s" -#: src/Navigation/Notifications/Factory/FormattedNotify.php:341 -#: src/Navigation/Notifications/Factory/FormattedNotify.php:379 +#: src/Navigation/Notifications/Factory/FormattedNotify.php:327 +#: src/Navigation/Notifications/Factory/FormattedNotify.php:365 #, php-format msgid "%s commented on %s's post" msgstr "%s a commenté la publication de %s" -#: src/Navigation/Notifications/Factory/FormattedNotify.php:378 +#: src/Navigation/Notifications/Factory/FormattedNotify.php:364 #, php-format msgid "%s created a new post" msgstr "%s a créé une nouvelle publication" -#: src/Navigation/Notifications/Factory/Introduction.php:132 +#: src/Navigation/Notifications/Factory/Introduction.php:118 msgid "Friend Suggestion" msgstr "Suggestion d'abonnement" -#: src/Navigation/Notifications/Factory/Introduction.php:158 +#: src/Navigation/Notifications/Factory/Introduction.php:144 msgid "Friend/Connect Request" msgstr "Demande de connexion/relation" -#: src/Navigation/Notifications/Factory/Introduction.php:158 -msgid "New Follower" -msgstr "Nouvel abonné" - -#: src/Navigation/Notifications/Factory/Notification.php:134 +#: src/Navigation/Notifications/Factory/Notification.php:120 #, php-format msgid "%1$s wants to follow you" msgstr "%1$s veut s'abonner à votre contenu" -#: src/Navigation/Notifications/Factory/Notification.php:136 +#: src/Navigation/Notifications/Factory/Notification.php:122 #, php-format msgid "%1$s has started following you" msgstr "%1$s a commencé à vous suivre" -#: src/Navigation/Notifications/Factory/Notification.php:208 +#: src/Navigation/Notifications/Factory/Notification.php:194 #, php-format msgid "%1$s liked your comment on %2$s" msgstr "%1$s a aimé votre commentaire sur %2$s" -#: src/Navigation/Notifications/Factory/Notification.php:211 +#: src/Navigation/Notifications/Factory/Notification.php:197 #, php-format msgid "%1$s liked your post %2$s" msgstr "%1$s a aimé votre publication %2$s" -#: src/Navigation/Notifications/Factory/Notification.php:218 +#: src/Navigation/Notifications/Factory/Notification.php:204 #, php-format msgid "%1$s disliked your comment on %2$s" msgstr "%1$s n'a pas aimé votre commentaire sur %2$s" -#: src/Navigation/Notifications/Factory/Notification.php:221 +#: src/Navigation/Notifications/Factory/Notification.php:207 #, php-format msgid "%1$s disliked your post %2$s" msgstr "%1$s n'a pas aimé votre publication %2$s" -#: src/Navigation/Notifications/Factory/Notification.php:228 +#: src/Navigation/Notifications/Factory/Notification.php:214 #, php-format msgid "%1$s shared your comment %2$s" msgstr "%1$s a partagé votre commentaire %2$s" -#: src/Navigation/Notifications/Factory/Notification.php:231 -#: src/Navigation/Notifications/Factory/Notification.php:316 +#: src/Navigation/Notifications/Factory/Notification.php:217 +#: src/Navigation/Notifications/Factory/Notification.php:302 #, php-format msgid "%1$s shared your post %2$s" msgstr "%1$s a partagé votre publication %2$s" -#: src/Navigation/Notifications/Factory/Notification.php:235 -#: src/Navigation/Notifications/Factory/Notification.php:305 +#: src/Navigation/Notifications/Factory/Notification.php:221 +#: src/Navigation/Notifications/Factory/Notification.php:291 #, php-format msgid "%1$s shared the post %2$s from %3$s" msgstr "%1$s a partagé la publication %2$s de %3$s" -#: src/Navigation/Notifications/Factory/Notification.php:237 -#: src/Navigation/Notifications/Factory/Notification.php:307 +#: src/Navigation/Notifications/Factory/Notification.php:223 +#: src/Navigation/Notifications/Factory/Notification.php:293 #, php-format msgid "%1$s shared a post from %3$s" msgstr "%1$s a partagé une publication de %3$s" -#: src/Navigation/Notifications/Factory/Notification.php:239 -#: src/Navigation/Notifications/Factory/Notification.php:309 +#: src/Navigation/Notifications/Factory/Notification.php:225 +#: src/Navigation/Notifications/Factory/Notification.php:295 #, php-format msgid "%1$s shared the post %2$s" msgstr "%1$s a partagé la publication %2$s" -#: src/Navigation/Notifications/Factory/Notification.php:241 -#: src/Navigation/Notifications/Factory/Notification.php:311 +#: src/Navigation/Notifications/Factory/Notification.php:227 +#: src/Navigation/Notifications/Factory/Notification.php:297 #, php-format msgid "%1$s shared a post" msgstr "%1$s a partagé une publication" -#: src/Navigation/Notifications/Factory/Notification.php:249 +#: src/Navigation/Notifications/Factory/Notification.php:235 #, php-format msgid "%1$s wants to attend your event %2$s" msgstr "%1$s souhaite participer à votre évènement %2$s" -#: src/Navigation/Notifications/Factory/Notification.php:256 +#: src/Navigation/Notifications/Factory/Notification.php:242 #, php-format msgid "%1$s does not want to attend your event %2$s" msgstr "%1$s ne souhaite pas participer à votre évènement %2$s" -#: src/Navigation/Notifications/Factory/Notification.php:263 +#: src/Navigation/Notifications/Factory/Notification.php:249 #, php-format msgid "%1$s maybe wants to attend your event %2$s" msgstr "%1$s souhaite peut-être participer à votre évènement %2$s" -#: src/Navigation/Notifications/Factory/Notification.php:270 +#: src/Navigation/Notifications/Factory/Notification.php:256 #, php-format msgid "%1$s tagged you on %2$s" msgstr "%1$s vous a mentionné(e) dans %2$s" -#: src/Navigation/Notifications/Factory/Notification.php:274 +#: src/Navigation/Notifications/Factory/Notification.php:260 #, php-format msgid "%1$s replied to you on %2$s" msgstr "%1$s vous a répondu dans %2$s" -#: src/Navigation/Notifications/Factory/Notification.php:278 +#: src/Navigation/Notifications/Factory/Notification.php:264 #, php-format msgid "%1$s commented in your thread %2$s" msgstr "%1$s a commenté dans votre conversation %2$s" -#: src/Navigation/Notifications/Factory/Notification.php:282 +#: src/Navigation/Notifications/Factory/Notification.php:268 #, php-format msgid "%1$s commented on your comment %2$s" msgstr "%1$s a répondu à votre commentaire %2$s" -#: src/Navigation/Notifications/Factory/Notification.php:289 +#: src/Navigation/Notifications/Factory/Notification.php:275 #, php-format msgid "%1$s commented in their thread %2$s" msgstr "%1$s a commenté dans sa conversation %2$s" -#: src/Navigation/Notifications/Factory/Notification.php:291 +#: src/Navigation/Notifications/Factory/Notification.php:277 #, php-format msgid "%1$s commented in their thread" msgstr "%1$s a commenté dans sa conversation" -#: src/Navigation/Notifications/Factory/Notification.php:293 +#: src/Navigation/Notifications/Factory/Notification.php:279 #, php-format msgid "%1$s commented in the thread %2$s from %3$s" msgstr "%1$s a commenté dans la conversation %2$s de %3$s" -#: src/Navigation/Notifications/Factory/Notification.php:295 +#: src/Navigation/Notifications/Factory/Notification.php:281 #, php-format msgid "%1$s commented in the thread from %3$s" msgstr "%1$s a commenté dans la conversation de %3$s" -#: src/Navigation/Notifications/Factory/Notification.php:300 +#: src/Navigation/Notifications/Factory/Notification.php:286 #, php-format msgid "%1$s commented on your thread %2$s" msgstr "%1$s a commenté dans votre conversation %2$s" -#: src/Navigation/Notifications/Repository/Notify.php:225 -#: src/Navigation/Notifications/Repository/Notify.php:754 +#: src/Navigation/Notifications/Repository/Notify.php:211 +#: src/Navigation/Notifications/Repository/Notify.php:740 msgid "[Friendica:Notify]" msgstr "[Friendica:Notification]" -#: src/Navigation/Notifications/Repository/Notify.php:293 +#: src/Navigation/Notifications/Repository/Notify.php:279 #, php-format msgid "%s New mail received at %s" msgstr "%s Nouveau message privé reçu sur %s" -#: src/Navigation/Notifications/Repository/Notify.php:295 +#: src/Navigation/Notifications/Repository/Notify.php:281 #, php-format msgid "%1$s sent you a new private message at %2$s." msgstr "%1$s vous a envoyé un nouveau message privé sur %2$s." -#: src/Navigation/Notifications/Repository/Notify.php:296 +#: src/Navigation/Notifications/Repository/Notify.php:282 msgid "a private message" msgstr "un message privé" -#: src/Navigation/Notifications/Repository/Notify.php:296 +#: src/Navigation/Notifications/Repository/Notify.php:282 #, php-format msgid "%1$s sent you %2$s." msgstr "%1$s vous a envoyé %2$s." -#: src/Navigation/Notifications/Repository/Notify.php:298 +#: src/Navigation/Notifications/Repository/Notify.php:284 #, php-format msgid "Please visit %s to view and/or reply to your private messages." msgstr "Merci de visiter %s pour voir vos messages privés et/ou y répondre." -#: src/Navigation/Notifications/Repository/Notify.php:328 +#: src/Navigation/Notifications/Repository/Notify.php:314 #, php-format msgid "%1$s commented on %2$s's %3$s %4$s" msgstr "%1$s a commenté sur %3$s de %2$s %4$s" -#: src/Navigation/Notifications/Repository/Notify.php:333 +#: src/Navigation/Notifications/Repository/Notify.php:319 #, php-format msgid "%1$s commented on your %2$s %3$s" msgstr "%1$s a commenté sur votre %2$s %3$s" -#: src/Navigation/Notifications/Repository/Notify.php:337 +#: src/Navigation/Notifications/Repository/Notify.php:323 #, php-format msgid "%1$s commented on their %2$s %3$s" msgstr "%1$s a commenté sur son %2$s %3$s" -#: src/Navigation/Notifications/Repository/Notify.php:341 -#: src/Navigation/Notifications/Repository/Notify.php:788 +#: src/Navigation/Notifications/Repository/Notify.php:327 +#: src/Navigation/Notifications/Repository/Notify.php:774 #, php-format msgid "%1$s Comment to conversation #%2$d by %3$s" msgstr "%1$s Nouveau commentaire dans la conversation #%2$d par %3$s" -#: src/Navigation/Notifications/Repository/Notify.php:343 +#: src/Navigation/Notifications/Repository/Notify.php:329 #, php-format msgid "%s commented on an item/conversation you have been following." msgstr "%s a commenté un élément que vous suivez." -#: src/Navigation/Notifications/Repository/Notify.php:347 -#: src/Navigation/Notifications/Repository/Notify.php:362 -#: src/Navigation/Notifications/Repository/Notify.php:814 +#: src/Navigation/Notifications/Repository/Notify.php:333 +#: src/Navigation/Notifications/Repository/Notify.php:348 +#: src/Navigation/Notifications/Repository/Notify.php:800 #, php-format msgid "Please visit %s to view and/or reply to the conversation." msgstr "Merci de visiter %s pour voir la conversation et/ou y répondre." -#: src/Navigation/Notifications/Repository/Notify.php:354 +#: src/Navigation/Notifications/Repository/Notify.php:340 #, php-format msgid "%s %s posted to your profile wall" msgstr "%s %s a posté sur votre mur" -#: src/Navigation/Notifications/Repository/Notify.php:356 +#: src/Navigation/Notifications/Repository/Notify.php:342 #, php-format msgid "%1$s posted to your profile wall at %2$s" msgstr "%1$s a publié sur votre mur à %2$s" -#: src/Navigation/Notifications/Repository/Notify.php:357 +#: src/Navigation/Notifications/Repository/Notify.php:343 #, php-format msgid "%1$s posted to [url=%2$s]your wall[/url]" msgstr "%1$s a posté sur [url=%2$s]votre mur[/url]" -#: src/Navigation/Notifications/Repository/Notify.php:370 +#: src/Navigation/Notifications/Repository/Notify.php:356 #, php-format msgid "%s Introduction received" msgstr "%s Demande de mise en contact reçue" -#: src/Navigation/Notifications/Repository/Notify.php:372 +#: src/Navigation/Notifications/Repository/Notify.php:358 #, php-format msgid "You've received an introduction from '%1$s' at %2$s" msgstr "Vous avez reçu une introduction de '%1$s' sur %2$s" -#: src/Navigation/Notifications/Repository/Notify.php:373 +#: src/Navigation/Notifications/Repository/Notify.php:359 #, php-format msgid "You've received [url=%1$s]an introduction[/url] from %2$s." msgstr "Vous avez reçu [url=%1$s]une introduction[/url] de %2$s." -#: src/Navigation/Notifications/Repository/Notify.php:378 -#: src/Navigation/Notifications/Repository/Notify.php:424 +#: src/Navigation/Notifications/Repository/Notify.php:364 +#: src/Navigation/Notifications/Repository/Notify.php:410 #, php-format msgid "You may visit their profile at %s" msgstr "Vous pouvez visiter son profil sur %s" -#: src/Navigation/Notifications/Repository/Notify.php:380 +#: src/Navigation/Notifications/Repository/Notify.php:366 #, php-format msgid "Please visit %s to approve or reject the introduction." msgstr "Merci de visiter %s pour approuver ou rejeter l'introduction." -#: src/Navigation/Notifications/Repository/Notify.php:387 +#: src/Navigation/Notifications/Repository/Notify.php:373 #, php-format msgid "%s A new person is sharing with you" msgstr "%s Quelqu'un a commencé à partager avec vous" -#: src/Navigation/Notifications/Repository/Notify.php:389 -#: src/Navigation/Notifications/Repository/Notify.php:390 +#: src/Navigation/Notifications/Repository/Notify.php:375 +#: src/Navigation/Notifications/Repository/Notify.php:376 #, php-format msgid "%1$s is sharing with you at %2$s" msgstr "%1$s partage avec vous sur %2$s" -#: src/Navigation/Notifications/Repository/Notify.php:397 +#: src/Navigation/Notifications/Repository/Notify.php:383 #, php-format msgid "%s You have a new follower" msgstr "%s Vous avez un nouvel abonné" -#: src/Navigation/Notifications/Repository/Notify.php:399 -#: src/Navigation/Notifications/Repository/Notify.php:400 +#: src/Navigation/Notifications/Repository/Notify.php:385 +#: src/Navigation/Notifications/Repository/Notify.php:386 #, php-format msgid "You have a new follower at %2$s : %1$s" msgstr "Vous avez un nouvel abonné à %2$s : %1$s" -#: src/Navigation/Notifications/Repository/Notify.php:413 +#: src/Navigation/Notifications/Repository/Notify.php:399 #, php-format msgid "%s Friend suggestion received" msgstr "%s Suggestion de mise en contact reçue" -#: src/Navigation/Notifications/Repository/Notify.php:415 +#: src/Navigation/Notifications/Repository/Notify.php:401 #, php-format msgid "You've received a friend suggestion from '%1$s' at %2$s" msgstr "Vous avez reçu une suggestion de '%1$s' sur %2$s" -#: src/Navigation/Notifications/Repository/Notify.php:416 +#: src/Navigation/Notifications/Repository/Notify.php:402 #, php-format msgid "" "You've received [url=%1$s]a friend suggestion[/url] for %2$s from %3$s." msgstr "Vous avez reçu [url=%1$s]une suggestion[/url] de %3$s pour %2$s." -#: src/Navigation/Notifications/Repository/Notify.php:422 +#: src/Navigation/Notifications/Repository/Notify.php:408 msgid "Name:" msgstr "Nom :" -#: src/Navigation/Notifications/Repository/Notify.php:423 +#: src/Navigation/Notifications/Repository/Notify.php:409 msgid "Photo:" msgstr "Photo :" -#: src/Navigation/Notifications/Repository/Notify.php:426 +#: src/Navigation/Notifications/Repository/Notify.php:412 #, php-format msgid "Please visit %s to approve or reject the suggestion." msgstr "Merci de visiter %s pour approuver ou rejeter la suggestion." -#: src/Navigation/Notifications/Repository/Notify.php:434 -#: src/Navigation/Notifications/Repository/Notify.php:449 +#: src/Navigation/Notifications/Repository/Notify.php:420 +#: src/Navigation/Notifications/Repository/Notify.php:435 #, php-format msgid "%s Connection accepted" msgstr "%s Demande d'abonnement acceptée" -#: src/Navigation/Notifications/Repository/Notify.php:436 -#: src/Navigation/Notifications/Repository/Notify.php:451 +#: src/Navigation/Notifications/Repository/Notify.php:422 +#: src/Navigation/Notifications/Repository/Notify.php:437 #, php-format msgid "'%1$s' has accepted your connection request at %2$s" msgstr "'%1$s' a accepté votre demande de connexion à %2$s" -#: src/Navigation/Notifications/Repository/Notify.php:437 -#: src/Navigation/Notifications/Repository/Notify.php:452 +#: src/Navigation/Notifications/Repository/Notify.php:423 +#: src/Navigation/Notifications/Repository/Notify.php:438 #, php-format msgid "%2$s has accepted your [url=%1$s]connection request[/url]." msgstr "%2$s a accepté votre [url=%1$s]demande de connexion[/url]." -#: src/Navigation/Notifications/Repository/Notify.php:442 +#: src/Navigation/Notifications/Repository/Notify.php:428 msgid "" "You are now mutual friends and may exchange status updates, photos, and " "email without restriction." msgstr "Vous êtes désormais mutuellement amis, et pouvez échanger des mises à jour d'état, des photos, et des courriels sans restriction." -#: src/Navigation/Notifications/Repository/Notify.php:444 +#: src/Navigation/Notifications/Repository/Notify.php:430 #, php-format msgid "Please visit %s if you wish to make any changes to this relationship." msgstr "Veuillez visiter %s si vous souhaitez modifier cette relation." -#: src/Navigation/Notifications/Repository/Notify.php:457 +#: src/Navigation/Notifications/Repository/Notify.php:443 #, php-format msgid "" "'%1$s' has chosen to accept you a fan, which restricts some forms of " @@ -12289,34 +12255,34 @@ msgid "" "automatically." msgstr "'%1$s' a choisi de vous accepter comme fan ce qui empêche certains canaux de communication tel les messages privés et certaines interactions de profil. Ceci est une page de célébrité ou de communauté, ces paramètres ont été appliqués automatiquement." -#: src/Navigation/Notifications/Repository/Notify.php:459 +#: src/Navigation/Notifications/Repository/Notify.php:445 #, php-format msgid "" "'%1$s' may choose to extend this into a two-way or more permissive " "relationship in the future." msgstr "%1$s peut choisir à l'avenir de rendre cette relation réciproque ou au moins plus permissive." -#: src/Navigation/Notifications/Repository/Notify.php:461 +#: src/Navigation/Notifications/Repository/Notify.php:447 #, php-format msgid "Please visit %s if you wish to make any changes to this relationship." msgstr "Veuillez visiter %s si vous souhaitez modifier cette relation." -#: src/Navigation/Notifications/Repository/Notify.php:471 +#: src/Navigation/Notifications/Repository/Notify.php:457 msgid "registration request" msgstr "demande d'inscription" -#: src/Navigation/Notifications/Repository/Notify.php:473 +#: src/Navigation/Notifications/Repository/Notify.php:459 #, php-format msgid "You've received a registration request from '%1$s' at %2$s" msgstr "Vous avez reçu une demande d'inscription de %1$s sur %2$s" -#: src/Navigation/Notifications/Repository/Notify.php:474 +#: src/Navigation/Notifications/Repository/Notify.php:460 #, php-format msgid "You've received a [url=%1$s]registration request[/url] from %2$s." msgstr "%2$s vous a envoyé une [url=%1$s]demande de création de compte[/url]." -#: src/Navigation/Notifications/Repository/Notify.php:479 -#: src/Navigation/Notifications/Repository/Notify.php:500 +#: src/Navigation/Notifications/Repository/Notify.php:465 +#: src/Navigation/Notifications/Repository/Notify.php:486 #, php-format msgid "" "Display Name:\t%s\n" @@ -12324,288 +12290,288 @@ msgid "" "Login Name:\t%s (%s)" msgstr "Nom d'Affichage :\t%s\nEmplacement :\t%s\nNom de connexion :\t%s (%s)" -#: src/Navigation/Notifications/Repository/Notify.php:485 +#: src/Navigation/Notifications/Repository/Notify.php:471 #, php-format msgid "Please visit %s to approve or reject the request." msgstr "Veuillez visiter %s pour approuver ou rejeter la demande." -#: src/Navigation/Notifications/Repository/Notify.php:492 +#: src/Navigation/Notifications/Repository/Notify.php:478 msgid "new registration" msgstr "Nouvelle inscription" -#: src/Navigation/Notifications/Repository/Notify.php:494 +#: src/Navigation/Notifications/Repository/Notify.php:480 #, php-format msgid "You've received a new registration from '%1$s' at %2$s" msgstr "Vous avez reçu une nouvelle inscription de '%1$s' à %2$s" -#: src/Navigation/Notifications/Repository/Notify.php:495 +#: src/Navigation/Notifications/Repository/Notify.php:481 #, php-format msgid "You've received a [url=%1$s]new registration[/url] from %2$s." msgstr "Vous avez reçu une [url=%1$s]nouvelle inscription[/url] de %2$s." -#: src/Navigation/Notifications/Repository/Notify.php:506 +#: src/Navigation/Notifications/Repository/Notify.php:492 #, php-format msgid "Please visit %s to have a look at the new registration." msgstr "Merci de visiter %s pour consulter la nouvelle inscription." -#: src/Navigation/Notifications/Repository/Notify.php:782 +#: src/Navigation/Notifications/Repository/Notify.php:768 #, php-format msgid "%s %s tagged you" msgstr "%s%s vous a mentionné(e)" -#: src/Navigation/Notifications/Repository/Notify.php:785 +#: src/Navigation/Notifications/Repository/Notify.php:771 #, php-format msgid "%s %s shared a new post" msgstr "%s %s a partagé une nouvelle publication" -#: src/Navigation/Notifications/Repository/Notify.php:793 +#: src/Navigation/Notifications/Repository/Notify.php:779 #, php-format msgid "%1$s %2$s liked your post #%3$d" msgstr "%1$s %2$s a aimé votre publication #%3$d" -#: src/Navigation/Notifications/Repository/Notify.php:796 +#: src/Navigation/Notifications/Repository/Notify.php:782 #, php-format msgid "%1$s %2$s liked your comment on #%3$d" msgstr "%1$s %2$s a aimé votre commentaire sur #%3$d" -#: src/Object/EMail/ItemCCEMail.php:42 +#: src/Object/EMail/ItemCCEMail.php:28 #, php-format msgid "" "This message was sent to you by %s, a member of the Friendica social " "network." msgstr "Ce message vous a été envoyé par %s, membre du réseau social Friendica." -#: src/Object/EMail/ItemCCEMail.php:44 +#: src/Object/EMail/ItemCCEMail.php:30 #, php-format msgid "You may visit them online at %s" msgstr "Vous pouvez leur rendre visite sur %s" -#: src/Object/EMail/ItemCCEMail.php:45 +#: src/Object/EMail/ItemCCEMail.php:31 msgid "" "Please contact the sender by replying to this post if you do not wish to " "receive these messages." msgstr "Merci de contacter l’émetteur en répondant à cette publication si vous ne souhaitez pas recevoir ces messages." -#: src/Object/EMail/ItemCCEMail.php:49 +#: src/Object/EMail/ItemCCEMail.php:35 #, php-format msgid "%s posted an update." msgstr "%s a publié une mise à jour." -#: src/Object/Post.php:138 +#: src/Object/Post.php:124 msgid "Private Message" msgstr "Message privé" -#: src/Object/Post.php:142 +#: src/Object/Post.php:128 msgid "Public Message" msgstr "Message Public" -#: src/Object/Post.php:146 +#: src/Object/Post.php:132 msgid "Unlisted Message" msgstr "Message non référencé" -#: src/Object/Post.php:182 +#: src/Object/Post.php:168 msgid "This entry was edited" msgstr "Cette entrée a été éditée" -#: src/Object/Post.php:210 +#: src/Object/Post.php:196 msgid "Connector Message" msgstr "Message du connecteur" -#: src/Object/Post.php:239 src/Object/Post.php:241 +#: src/Object/Post.php:225 src/Object/Post.php:227 msgid "Edit" msgstr "Éditer" -#: src/Object/Post.php:275 +#: src/Object/Post.php:261 msgid "Delete globally" msgstr "Effacer globalement" -#: src/Object/Post.php:275 +#: src/Object/Post.php:261 msgid "Remove locally" msgstr "Effacer localement" -#: src/Object/Post.php:282 +#: src/Object/Post.php:268 #, php-format msgid "Block %s" msgstr "Bloquer %s" -#: src/Object/Post.php:287 +#: src/Object/Post.php:273 #, php-format msgid "Ignore %s" msgstr "Ignorer %s" -#: src/Object/Post.php:292 +#: src/Object/Post.php:278 #, php-format msgid "Collapse %s" msgstr "Réduire %s" -#: src/Object/Post.php:296 +#: src/Object/Post.php:282 msgid "Report post" msgstr "Signaler la publication" -#: src/Object/Post.php:307 +#: src/Object/Post.php:293 msgid "Save to folder" msgstr "Sauvegarder dans le dossier" -#: src/Object/Post.php:347 +#: src/Object/Post.php:333 msgid "I will attend" msgstr "Je vais participer" -#: src/Object/Post.php:347 +#: src/Object/Post.php:333 msgid "I will not attend" msgstr "Je ne vais pas participer" -#: src/Object/Post.php:347 +#: src/Object/Post.php:333 msgid "I might attend" msgstr "Je vais peut-être participer" -#: src/Object/Post.php:394 +#: src/Object/Post.php:380 msgid "Ignore thread" msgstr "Ignorer cette conversation" -#: src/Object/Post.php:395 +#: src/Object/Post.php:381 msgid "Unignore thread" msgstr "Ne pas ignorer cette conversation" -#: src/Object/Post.php:396 +#: src/Object/Post.php:382 msgid "Toggle ignore status" msgstr "Commuter le statut de suivi" -#: src/Object/Post.php:406 +#: src/Object/Post.php:392 msgid "Add star" msgstr "Ajouter une étoile" -#: src/Object/Post.php:407 +#: src/Object/Post.php:393 msgid "Remove star" msgstr "Retirer l'étoile" -#: src/Object/Post.php:408 +#: src/Object/Post.php:394 msgid "Toggle star status" msgstr "Commuter l'état de l'étoile" -#: src/Object/Post.php:419 +#: src/Object/Post.php:405 msgid "Pin" msgstr "Épingler" -#: src/Object/Post.php:420 +#: src/Object/Post.php:406 msgid "Unpin" msgstr "Désépingler" -#: src/Object/Post.php:421 +#: src/Object/Post.php:407 msgid "Toggle pin status" msgstr "Commuter le statut de l'épingle" -#: src/Object/Post.php:424 +#: src/Object/Post.php:410 msgid "Pinned" msgstr "Épinglé" -#: src/Object/Post.php:429 +#: src/Object/Post.php:415 msgid "Add tag" msgstr "Ajouter un tag" -#: src/Object/Post.php:444 +#: src/Object/Post.php:430 msgid "Quote share this" msgstr "Citer et repartager ceci" -#: src/Object/Post.php:444 +#: src/Object/Post.php:430 msgid "Quote Share" msgstr "Citer et repartager" -#: src/Object/Post.php:447 +#: src/Object/Post.php:433 msgid "Reshare this" msgstr "Partager ceci" -#: src/Object/Post.php:447 +#: src/Object/Post.php:433 msgid "Reshare" msgstr "Partager" -#: src/Object/Post.php:448 +#: src/Object/Post.php:434 msgid "Cancel your Reshare" msgstr "Annuler votre repartage" -#: src/Object/Post.php:448 +#: src/Object/Post.php:434 msgid "Unshare" msgstr "Ne plus partager" -#: src/Object/Post.php:492 +#: src/Object/Post.php:478 #, php-format msgid "%s (Received %s)" msgstr "%s ( Reçu %s)" -#: src/Object/Post.php:498 +#: src/Object/Post.php:484 msgid "Comment this item on your system" msgstr "Commenter ce sujet sur votre instance" -#: src/Object/Post.php:498 +#: src/Object/Post.php:484 msgid "Remote comment" msgstr "Commentaire distant" -#: src/Object/Post.php:520 +#: src/Object/Post.php:506 msgid "Share via ..." msgstr "Partager par..." -#: src/Object/Post.php:520 +#: src/Object/Post.php:506 msgid "Share via external services" msgstr "Partager par des services externes" -#: src/Object/Post.php:527 +#: src/Object/Post.php:513 msgid "Unknown parent" msgstr "Parent inconnu" -#: src/Object/Post.php:531 +#: src/Object/Post.php:517 #, php-format msgid "in reply to %s" msgstr "en réponse à %s" -#: src/Object/Post.php:533 +#: src/Object/Post.php:519 msgid "Parent is probably private or not federated." msgstr "Le parent est probablement privé ou non fédéré." -#: src/Object/Post.php:557 +#: src/Object/Post.php:543 msgid "to" msgstr "à" -#: src/Object/Post.php:558 +#: src/Object/Post.php:544 msgid "via" msgstr "via" -#: src/Object/Post.php:559 +#: src/Object/Post.php:545 msgid "Wall-to-Wall" msgstr "Inter-mur" -#: src/Object/Post.php:560 +#: src/Object/Post.php:546 msgid "via Wall-To-Wall:" msgstr "en Inter-mur :" -#: src/Object/Post.php:613 +#: src/Object/Post.php:599 #, php-format msgid "Reply to %s" msgstr "Répondre à %s" -#: src/Object/Post.php:616 +#: src/Object/Post.php:602 msgid "More" msgstr "Plus" -#: src/Object/Post.php:635 +#: src/Object/Post.php:621 msgid "Notifier task is pending" msgstr "La notification de la tâche est en cours" -#: src/Object/Post.php:636 +#: src/Object/Post.php:622 msgid "Delivery to remote servers is pending" msgstr "La distribution aux serveurs distants est en attente" -#: src/Object/Post.php:637 +#: src/Object/Post.php:623 msgid "Delivery to remote servers is underway" msgstr "La distribution aux serveurs distants est en cours" -#: src/Object/Post.php:638 +#: src/Object/Post.php:624 msgid "Delivery to remote servers is mostly done" msgstr "La distribution aux serveurs distants est presque terminée" -#: src/Object/Post.php:639 +#: src/Object/Post.php:625 msgid "Delivery to remote servers is done" msgstr "La distribution aux serveurs distants est terminée" -#: src/Object/Post.php:661 +#: src/Object/Post.php:647 #, php-format msgid "%d comment" msgid_plural "%d comments" @@ -12613,485 +12579,467 @@ msgstr[0] "%d commentaire" msgstr[1] "%d commentaires" msgstr[2] "%d commentaires" -#: src/Object/Post.php:662 +#: src/Object/Post.php:648 msgid "Show more" msgstr "Montrer plus" -#: src/Object/Post.php:663 +#: src/Object/Post.php:649 msgid "Show fewer" msgstr "Montrer moins" -#: src/Object/Post.php:700 +#: src/Object/Post.php:686 #, php-format msgid "Reshared by: %s" msgstr "Partagé par : %s" -#: src/Object/Post.php:705 +#: src/Object/Post.php:691 #, php-format msgid "Viewed by: %s" msgstr "Vu par : %s" -#: src/Object/Post.php:710 +#: src/Object/Post.php:696 #, php-format msgid "Read by: %s" msgstr "Lu par : %s" -#: src/Object/Post.php:715 +#: src/Object/Post.php:701 #, php-format msgid "Liked by: %s" msgstr "Aimé par : %s" -#: src/Object/Post.php:720 +#: src/Object/Post.php:706 #, php-format msgid "Disliked by: %s" msgstr "Pas aimé par : %s" -#: src/Object/Post.php:725 +#: src/Object/Post.php:711 #, php-format msgid "Attended by: %s" msgstr "Y assisteront : %s" -#: src/Object/Post.php:730 +#: src/Object/Post.php:716 #, php-format msgid "Maybe attended by: %s" msgstr "Y assisteront peut-être : %s" -#: src/Object/Post.php:735 +#: src/Object/Post.php:721 #, php-format msgid "Not attended by: %s" msgstr "N'y assisteront pas : %s" -#: src/Object/Post.php:740 +#: src/Object/Post.php:726 #, php-format msgid "Commented by: %s" msgstr "Commenté par : %s" -#: src/Object/Post.php:745 +#: src/Object/Post.php:731 #, php-format msgid "Reacted with %s by: %s" msgstr "La réaction %s a été faite par : %s" -#: src/Object/Post.php:768 +#: src/Object/Post.php:754 #, php-format msgid "Quote shared by: %s" msgstr "Cité et repartagé par : %s" -#: src/Protocol/ActivityPub/Receiver.php:571 +#: src/Protocol/ActivityPub/Receiver.php:557 msgid "Chat" msgstr "Chat" -#: src/Protocol/Delivery.php:544 +#: src/Protocol/Delivery.php:530 msgid "(no subject)" msgstr "(aucun sujet)" -#: src/Protocol/OStatus.php:1392 -#, php-format -msgid "%s is now following %s." -msgstr "%s suit désormais %s." - -#: src/Protocol/OStatus.php:1393 -msgid "following" -msgstr "following" - -#: src/Protocol/OStatus.php:1396 -#, php-format -msgid "%s stopped following %s." -msgstr "%s ne suit plus %s." - -#: src/Protocol/OStatus.php:1397 -msgid "stopped following" -msgstr "retiré de la liste de suivi" - -#: src/Render/FriendicaSmartyEngine.php:56 +#: src/Render/FriendicaSmartyEngine.php:42 #, php-format msgid "The folder %s must be writable by webserver." msgstr "Le répertoire %s doit être accessible en écriture par le serveur web." -#: src/Security/Authentication.php:214 +#: src/Security/Authentication.php:200 msgid "Login failed." msgstr "Échec de connexion." -#: src/Security/Authentication.php:259 +#: src/Security/Authentication.php:245 msgid "Login failed. Please check your credentials." msgstr "Échec d'authentification. Merci de vérifier vos identifiants." -#: src/Security/Authentication.php:373 +#: src/Security/Authentication.php:359 #, php-format msgid "Welcome %s" msgstr "Bienvenue %s" -#: src/Security/Authentication.php:374 +#: src/Security/Authentication.php:360 msgid "Please upload a profile photo." msgstr "Merci d'illustrer votre profil d'une image." -#: src/Security/OpenWebAuth.php:163 +#: src/Security/OpenWebAuth.php:149 #, php-format msgid "OpenWebAuth: %1$s welcomes %2$s" msgstr "%1$s souhaite la bienvenue à %2$s grâce à OpenWebAuth" -#: src/Util/EMailer/MailBuilder.php:260 +#: src/Util/EMailer/MailBuilder.php:246 msgid "Friendica Notification" msgstr "Notification Friendica" -#: src/Util/EMailer/NotifyMailBuilder.php:78 -#: src/Util/EMailer/SystemMailBuilder.php:54 +#: src/Util/EMailer/NotifyMailBuilder.php:64 +#: src/Util/EMailer/SystemMailBuilder.php:40 #, php-format msgid "%1$s, %2$s Administrator" msgstr "L'administrateur de %1$s, %2$s." -#: src/Util/EMailer/NotifyMailBuilder.php:80 -#: src/Util/EMailer/SystemMailBuilder.php:56 +#: src/Util/EMailer/NotifyMailBuilder.php:66 +#: src/Util/EMailer/SystemMailBuilder.php:42 #, php-format msgid "%s Administrator" msgstr "L'administrateur de %s" -#: src/Util/EMailer/NotifyMailBuilder.php:193 -#: src/Util/EMailer/NotifyMailBuilder.php:217 -#: src/Util/EMailer/SystemMailBuilder.php:101 -#: src/Util/EMailer/SystemMailBuilder.php:118 +#: src/Util/EMailer/NotifyMailBuilder.php:179 +#: src/Util/EMailer/NotifyMailBuilder.php:203 +#: src/Util/EMailer/SystemMailBuilder.php:87 +#: src/Util/EMailer/SystemMailBuilder.php:104 msgid "thanks" msgstr "merci" -#: src/Util/Temporal.php:172 +#: src/Util/Temporal.php:158 msgid "YYYY-MM-DD or MM-DD" msgstr "AAAA-MM-JJ ou MM-JJ" -#: src/Util/Temporal.php:280 +#: src/Util/Temporal.php:266 #, php-format msgid "Time zone: %s Change in Settings" msgstr "Fuseau horaire : %s Le changer dans les paramètres" -#: src/Util/Temporal.php:320 src/Util/Temporal.php:329 +#: src/Util/Temporal.php:306 src/Util/Temporal.php:315 msgid "never" msgstr "jamais" -#: src/Util/Temporal.php:343 +#: src/Util/Temporal.php:329 msgid "less than a second ago" msgstr "il y a moins d'une seconde" -#: src/Util/Temporal.php:352 +#: src/Util/Temporal.php:338 msgid "year" msgstr "année" -#: src/Util/Temporal.php:352 +#: src/Util/Temporal.php:338 msgid "years" msgstr "années" -#: src/Util/Temporal.php:353 +#: src/Util/Temporal.php:339 msgid "months" msgstr "mois" -#: src/Util/Temporal.php:354 +#: src/Util/Temporal.php:340 msgid "weeks" msgstr "semaines" -#: src/Util/Temporal.php:355 +#: src/Util/Temporal.php:341 msgid "days" msgstr "jours" -#: src/Util/Temporal.php:356 +#: src/Util/Temporal.php:342 msgid "hour" msgstr "heure" -#: src/Util/Temporal.php:356 +#: src/Util/Temporal.php:342 msgid "hours" msgstr "heures" -#: src/Util/Temporal.php:357 +#: src/Util/Temporal.php:343 msgid "minute" msgstr "minute" -#: src/Util/Temporal.php:357 +#: src/Util/Temporal.php:343 msgid "minutes" msgstr "minutes" -#: src/Util/Temporal.php:358 +#: src/Util/Temporal.php:344 msgid "second" msgstr "seconde" -#: src/Util/Temporal.php:358 +#: src/Util/Temporal.php:344 msgid "seconds" msgstr "secondes" -#: src/Util/Temporal.php:367 +#: src/Util/Temporal.php:353 #, php-format msgid "in %1$d %2$s" msgstr "dans %1$d %2$s" -#: src/Util/Temporal.php:370 +#: src/Util/Temporal.php:356 #, php-format msgid "%1$d %2$s ago" msgstr "Il y a %1$d %2$s" -#: src/Worker/PushSubscription.php:110 +#: src/Worker/PushSubscription.php:96 msgid "Notification from Friendica" msgstr "Notification de Friendica" -#: src/Worker/PushSubscription.php:111 +#: src/Worker/PushSubscription.php:97 msgid "Empty Post" msgstr "Publication vide" -#: view/theme/duepuntozero/config.php:68 +#: view/theme/duepuntozero/config.php:56 msgid "default" msgstr "Par défaut" -#: view/theme/duepuntozero/config.php:69 +#: view/theme/duepuntozero/config.php:57 msgid "greenzero" msgstr "greenzero" -#: view/theme/duepuntozero/config.php:70 +#: view/theme/duepuntozero/config.php:58 msgid "purplezero" msgstr "purplezero" -#: view/theme/duepuntozero/config.php:71 +#: view/theme/duepuntozero/config.php:59 msgid "easterbunny" msgstr "easterbunny" -#: view/theme/duepuntozero/config.php:72 +#: view/theme/duepuntozero/config.php:60 msgid "darkzero" msgstr "darkzero" -#: view/theme/duepuntozero/config.php:73 +#: view/theme/duepuntozero/config.php:61 msgid "comix" msgstr "comix" -#: view/theme/duepuntozero/config.php:74 +#: view/theme/duepuntozero/config.php:62 msgid "slackr" msgstr "slackr" -#: view/theme/duepuntozero/config.php:87 +#: view/theme/duepuntozero/config.php:75 msgid "Variations" msgstr "Variations" -#: view/theme/frio/config.php:146 +#: view/theme/frio/config.php:134 msgid "Note" msgstr "Note" -#: view/theme/frio/config.php:146 +#: view/theme/frio/config.php:134 msgid "Check image permissions if all users are allowed to see the image" msgstr "Vérifier les permissions des images si tous les utilisateurs sont autorisés à voir l'image" -#: view/theme/frio/config.php:152 +#: view/theme/frio/config.php:140 msgid "Appearance" msgstr "Apparence" -#: view/theme/frio/config.php:153 +#: view/theme/frio/config.php:141 msgid "Accent color" msgstr "Couleur d'accentuation" -#: view/theme/frio/config.php:153 +#: view/theme/frio/config.php:141 msgid "Blue" msgstr "Bleu" -#: view/theme/frio/config.php:153 +#: view/theme/frio/config.php:141 msgid "Red" msgstr "Rouge" -#: view/theme/frio/config.php:153 +#: view/theme/frio/config.php:141 msgid "Purple" msgstr "Violet" -#: view/theme/frio/config.php:153 +#: view/theme/frio/config.php:141 msgid "Green" msgstr "Vert" -#: view/theme/frio/config.php:153 +#: view/theme/frio/config.php:141 msgid "Pink" msgstr "Rose" -#: view/theme/frio/config.php:154 +#: view/theme/frio/config.php:142 msgid "Copy or paste schemestring" msgstr "Copier ou coller le fil conducteur" -#: view/theme/frio/config.php:154 +#: view/theme/frio/config.php:142 msgid "" "You can copy this string to share your theme with others. Pasting here " "applies the schemestring" msgstr "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:155 +#: view/theme/frio/config.php:143 msgid "Navigation bar background color" msgstr "Couleur d'arrière-plan de la barre de navigation" -#: view/theme/frio/config.php:156 +#: view/theme/frio/config.php:144 msgid "Navigation bar icon color " msgstr "Couleur des icônes de la barre de navigation" -#: view/theme/frio/config.php:157 +#: view/theme/frio/config.php:145 msgid "Link color" msgstr "Couleur des liens" -#: view/theme/frio/config.php:158 +#: view/theme/frio/config.php:146 msgid "Set the background color" msgstr "Paramétrer la couleur d'arrière-plan" -#: view/theme/frio/config.php:159 +#: view/theme/frio/config.php:147 msgid "Content background opacity" msgstr "Opacité du contenu d'arrière-plan" -#: view/theme/frio/config.php:160 +#: view/theme/frio/config.php:148 msgid "Set the background image" msgstr "Paramétrer l'image d'arrière-plan" -#: view/theme/frio/config.php:161 +#: view/theme/frio/config.php:149 msgid "Background image style" msgstr "Style de l'image de fond" -#: view/theme/frio/config.php:164 +#: view/theme/frio/config.php:152 msgid "Always open Compose page" msgstr "Toujours ouvrir la page Compose" -#: view/theme/frio/config.php:164 +#: view/theme/frio/config.php:152 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:168 +#: view/theme/frio/config.php:156 msgid "Login page background image" msgstr "Image de fond de la page de login" -#: view/theme/frio/config.php:172 +#: view/theme/frio/config.php:160 msgid "Login page background color" msgstr "Couleur d'arrière-plan de la page de login" -#: view/theme/frio/config.php:172 +#: view/theme/frio/config.php:160 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" -#: view/theme/frio/php/Image.php:39 +#: view/theme/frio/php/Image.php:27 msgid "Top Banner" msgstr "Bannière du haut" -#: view/theme/frio/php/Image.php:39 +#: view/theme/frio/php/Image.php:27 msgid "" "Resize image to the width of the screen and show background color below on " "long pages." msgstr "Redimensionner l'image à la largeur de l'écran et combler en dessous avec la couleur d'arrière plan sur les pages longues." -#: view/theme/frio/php/Image.php:40 +#: view/theme/frio/php/Image.php:28 msgid "Full screen" msgstr "Plein écran" -#: view/theme/frio/php/Image.php:40 +#: view/theme/frio/php/Image.php:28 msgid "" "Resize image to fill entire screen, clipping either the right or the bottom." msgstr "Agrandir l'image pour remplir l'écran, jusqu'à toucher le bord droit ou le bas de l'écran." -#: view/theme/frio/php/Image.php:41 +#: view/theme/frio/php/Image.php:29 msgid "Single row mosaic" msgstr "Mosaïque sur une seule colonne" -#: view/theme/frio/php/Image.php:41 +#: view/theme/frio/php/Image.php:29 msgid "" "Resize image to repeat it on a single row, either vertical or horizontal." msgstr "Redimensionner l'image pour la répéter sur une seule colonne, verticale ou horizontale." -#: view/theme/frio/php/Image.php:42 +#: view/theme/frio/php/Image.php:30 msgid "Mosaic" msgstr "Mosaïque" -#: view/theme/frio/php/Image.php:42 +#: view/theme/frio/php/Image.php:30 msgid "Repeat image to fill the screen." msgstr "Répète l'image pour couvrir l'écran." -#: view/theme/frio/php/default.php:82 view/theme/frio/php/standard.php:40 +#: view/theme/frio/php/default.php:70 view/theme/frio/php/standard.php:28 msgid "Skip to main content" msgstr "Aller au contenu principal" -#: view/theme/frio/php/default.php:153 view/theme/frio/php/standard.php:75 +#: view/theme/frio/php/default.php:141 view/theme/frio/php/standard.php:63 msgid "Back to top" msgstr "Retour en haut" -#: view/theme/frio/php/scheme.php:105 +#: view/theme/frio/php/scheme.php:93 msgid "Light" msgstr "Clair" -#: view/theme/frio/php/scheme.php:106 +#: view/theme/frio/php/scheme.php:94 msgid "Dark" msgstr "Sombre" -#: view/theme/frio/php/scheme.php:107 +#: view/theme/frio/php/scheme.php:95 msgid "Black" msgstr "Noir" -#: view/theme/frio/php/scheme.php:118 +#: view/theme/frio/php/scheme.php:106 msgid "Custom" msgstr "Personnalisé" -#: view/theme/frio/theme.php:214 +#: view/theme/frio/theme.php:202 msgid "Guest" msgstr "Invité" -#: view/theme/frio/theme.php:217 +#: view/theme/frio/theme.php:205 msgid "Visitor" msgstr "Visiteur" -#: view/theme/quattro/config.php:89 +#: view/theme/quattro/config.php:77 msgid "Alignment" msgstr "Alignement" -#: view/theme/quattro/config.php:89 +#: view/theme/quattro/config.php:77 msgid "Left" msgstr "Gauche" -#: view/theme/quattro/config.php:89 +#: view/theme/quattro/config.php:77 msgid "Center" msgstr "Centré" -#: view/theme/quattro/config.php:90 +#: view/theme/quattro/config.php:78 msgid "Color scheme" msgstr "Schéma de couleurs" -#: view/theme/quattro/config.php:91 +#: view/theme/quattro/config.php:79 msgid "Posts font size" msgstr "Taille de texte des publications" -#: view/theme/quattro/config.php:92 +#: view/theme/quattro/config.php:80 msgid "Textareas font size" msgstr "Taille de police des zones de texte" -#: view/theme/vier/config.php:91 +#: view/theme/vier/config.php:79 msgid "Comma separated list of helper groups" msgstr "Liste de groupe d'entraide, séparés par des virgules" -#: view/theme/vier/config.php:131 +#: view/theme/vier/config.php:119 msgid "don't show" msgstr "cacher" -#: view/theme/vier/config.php:131 +#: view/theme/vier/config.php:119 msgid "show" msgstr "montrer" -#: view/theme/vier/config.php:137 +#: view/theme/vier/config.php:125 msgid "Set style" msgstr "Définir le style" -#: view/theme/vier/config.php:138 +#: view/theme/vier/config.php:126 msgid "Community Pages" msgstr "Pages Communautaires" -#: view/theme/vier/config.php:139 view/theme/vier/theme.php:148 +#: view/theme/vier/config.php:127 view/theme/vier/theme.php:136 msgid "Community Profiles" msgstr "Profils communautaires" -#: view/theme/vier/config.php:140 +#: view/theme/vier/config.php:128 msgid "Help or @NewHere ?" msgstr "Besoin d'aide ou @NouveauIci ?" -#: view/theme/vier/config.php:141 view/theme/vier/theme.php:319 +#: view/theme/vier/config.php:129 view/theme/vier/theme.php:307 msgid "Connect Services" msgstr "Connecter des services" -#: view/theme/vier/config.php:142 +#: view/theme/vier/config.php:130 msgid "Find Friends" msgstr "Trouver des contacts" -#: view/theme/vier/config.php:143 view/theme/vier/theme.php:175 +#: view/theme/vier/config.php:131 view/theme/vier/theme.php:163 msgid "Last users" msgstr "Derniers utilisateurs" -#: view/theme/vier/theme.php:234 +#: view/theme/vier/theme.php:222 msgid "Quick Start" msgstr "Démarrage rapide" diff --git a/view/lang/fr/strings.php b/view/lang/fr/strings.php index 77b1dc6dd7..abb9c0a7d8 100644 --- a/view/lang/fr/strings.php +++ b/view/lang/fr/strings.php @@ -860,7 +860,6 @@ $a->strings['An author or name was not found.'] = 'Aucun auteur ou nom d\'auteur $a->strings['No browser URL could be matched to this address.'] = 'Aucune URL de navigation ne correspond à cette adresse.'; $a->strings['Unable to match @-style Identity Address with a known protocol or email contact.'] = 'Impossible de faire correspondre l\'adresse d\'identité en "@" avec un protocole connu ou un contact courriel.'; $a->strings['Use mailto: in front of address to force email check.'] = 'Utilisez mailto: en face d\'une adresse pour l\'obliger à être reconnue comme courriel.'; -$a->strings['The profile address specified belongs to a network which has been disabled on this site.'] = 'L\'adresse de profil spécifiée correspond à un réseau qui a été désactivé sur ce site.'; $a->strings['Limited profile. This person will be unable to receive direct/personal notifications from you.'] = 'Profil limité. Cette personne ne sera pas capable de recevoir des notifications directes/personnelles de votre part.'; $a->strings['Unable to retrieve contact information.'] = 'Impossible de récupérer les informations du contact.'; $a->strings['l F d, Y \@ g:i A \G\M\TP (e)'] = 'l d F Y \@ G:i \G\M\TP (e)'; @@ -888,7 +887,9 @@ $a->strings['%s\'s birthday'] = 'Anniversaire de %s\'s'; $a->strings['Happy Birthday %s'] = 'Joyeux anniversaire, %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'] = 'Langues détectées dans cette publication :\n%s'; +$a->strings['Detected languages in this post: +%s'] = 'Langues détectées dans la publication : +%s'; $a->strings['activity'] = 'activité'; $a->strings['comment'] = 'commentaire'; $a->strings['post'] = 'publication'; @@ -1251,6 +1252,7 @@ $a->strings['Job Parameters'] = 'Paramètres de la tâche'; $a->strings['Created'] = 'Créé'; $a->strings['Next Try'] = 'Prochain Essai'; $a->strings['Priority'] = 'Priorité'; +$a->strings['%s is no valid input for maximum media size'] = '%s n\'est pas une saisie valide pour une taille de média'; $a->strings['%s is no valid input for maximum image size'] = '%s n\'est pas une valeur valide pour la taille maximum d\'image'; $a->strings['No special theme for mobile devices'] = 'Pas de thème particulier pour les terminaux mobiles'; $a->strings['%s - (Experimental)'] = '%s- (expérimental)'; @@ -1320,6 +1322,12 @@ $a->strings['Maximum image length'] = 'Longueur maximale des images'; $a->strings['Maximum length in pixels of the longest side of uploaded images. Default is -1, which means no limits.'] = '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.'; $a->strings['JPEG image quality'] = 'Qualité JPEG des images'; $a->strings['Uploaded JPEGS will be saved at this quality setting [0-100]. Default is 100, which is full quality.'] = '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.'; +$a->strings['Maximum media file size'] = 'Taille maximale d\'un média'; +$a->strings['Maximum size in bytes of uploaded media files. Default is 0, which means no limits. You can put k, m, or g behind the desired value for KiB, MiB, GiB, respectively. + The value of upload_max_filesize in your PHP.ini needs be set to at least the desired limit. + Currently upload_max_filesize is set to %s (%s byte)'] = 'Taille maximale en octets des fichiers multimédias envoyés. La valeur par défaut est 0, ce qui signifie aucune limite. Vous pouvez mettre k, m, ou g derrière la valeur souhaitée pour KiB, MiB, GiB, respectivement. + La valeur de upload_max_filesize dans votre PHP.ini doit être au moins égale à la limite souhaitée. + Actuellement, upload_max_filesize est fixé à %s (%s byte)'; $a->strings['Register policy'] = 'Politique d\'inscription'; $a->strings['Maximum Users'] = 'Utilisateurs maximum'; $a->strings['If defined, the register policy is automatically closed when the given number of users is reached and reopens the registry when the number drops below the limit. It only works when the policy is set to open or close, but not when the policy is set to approval.'] = '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".'; @@ -1389,8 +1397,6 @@ $a->strings['The maximum number of posts per server on the global community page $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.'; $a->strings['Enable Diaspora support'] = 'Activer le support de Diaspora'; $a->strings['Enable built-in Diaspora network compatibility for communicating with diaspora servers.'] = 'Permet la communication avec des comptes distants via Diaspora. Ce protocole est principalement utilisé par la plate-forme Diaspora.'; @@ -1436,7 +1442,7 @@ $a->strings['When the database cleanup is enabled, this defines the days after w $a->strings['Lifespan of unclaimed items'] = 'Durée de vie des conversations relayées'; $a->strings['When the database cleanup is enabled, this defines the days after which unclaimed remote items (mostly content from the relay) will be deleted. Default value is 90 days. Defaults to the general lifespan value of remote items if set to 0.'] = '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.'; $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['The conversation data is used for ActivityPub, as well as for debug purposes. It should be safe to remove it after 14 days, default is 90 days.'] = 'Les données de conversation sont utilisées pour ActivityPub, ainsi qu\'à des fins de débogage. Elles peuvent être supprimées en toute sécurité après 14 jours, la durée par défaut étant de 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.'] = '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)'; @@ -1761,7 +1767,6 @@ $a->strings['Submit Request'] = 'Envoyer la requête'; $a->strings['You already added this contact.'] = 'Vous avez déjà ajouté ce contact.'; $a->strings['The network type couldn\'t be detected. Contact can\'t be added.'] = 'Impossible de détecter le type de réseau. Le contact ne peut pas être ajouté.'; $a->strings['Diaspora support isn\'t enabled. Contact can\'t be added.'] = 'Le support de Diaspora est désactivé. Le contact ne peut pas être ajouté.'; -$a->strings['OStatus support is disabled. Contact can\'t be added.'] = 'Le support d\'OStatus est désactivé. Le contact ne peut pas être ajouté.'; $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'; @@ -2312,10 +2317,6 @@ $a->strings['Incomplete request data'] = 'Requête incomplète'; $a->strings['Please copy the following authentication code into your application and close this window: %s'] = 'Veuillez copier le code d\'identification suivant dans votre application et ensuite fermer cette fenêtre: %s'; $a->strings['Invalid data or unknown client'] = 'Données invalides ou client inconnu'; $a->strings['Unsupported or missing grant type'] = 'Type de "grant" manquant ou non pris en charge'; -$a->strings['Resubscribing to OStatus contacts'] = 'Réinscription aux contacts OStatus'; -$a->strings['Keep this window open until done.'] = 'Veuillez garder cette fenêtre ouverte jusqu\'à la fin.'; -$a->strings['✔ Done'] = '✔ Fait'; -$a->strings['No OStatus contacts to resubscribe to.'] = 'Aucun contact OStatus à se réabonner.'; $a->strings['Subscribing to contacts'] = 'Abonnement aux contacts'; $a->strings['No contact provided.'] = 'Pas de contact fourni.'; $a->strings['Couldn\'t fetch information for contact.'] = 'Impossible de récupérer les informations pour ce contact.'; @@ -2327,6 +2328,7 @@ $a->strings['Done'] = 'Terminé'; $a->strings['success'] = 'réussite'; $a->strings['failed'] = 'échec'; $a->strings['ignored'] = 'ignoré'; +$a->strings['Keep this window open until done.'] = 'Veuillez garder cette fenêtre ouverte jusqu\'à la fin.'; $a->strings['The Photo is not available.'] = 'La photo n\'est pas disponible.'; $a->strings['The Photo with id %s is not available.'] = 'La photo avec l\'identifiant %s n\'est pas disponible.'; $a->strings['Invalid external resource with url %s.'] = 'La ressource externe avec l\'URL %s est invalide.'; @@ -2354,9 +2356,9 @@ $a->strings['Collection (%s)'] = 'Collection (%s)'; $a->strings['Followers (%s)'] = 'Abonnés (%s)'; $a->strings['%d more'] = '%d supplémentaire'; $a->strings['No contacts.'] = 'Aucun contact.'; -$a->strings['%s\'s timeline'] = 'Le flux de %s'; $a->strings['%s\'s posts'] = 'Les publications originales de %s'; $a->strings['%s\'s comments'] = 'Les commentaires de %s'; +$a->strings['%s\'s timeline'] = 'Le flux de %s'; $a->strings['Image exceeds size limit of %s'] = 'L\'image dépasse la taille limite de %s'; $a->strings['Image upload didn\'t complete, please try again'] = 'La mise en ligne de l\'image ne s\'est pas terminée, veuillez réessayer'; $a->strings['Image file is missing'] = 'Fichier image manquant'; @@ -2631,7 +2633,6 @@ $a->strings['Failed to connect with email account using the settings provided.'] $a->strings['Diaspora (Socialhome, Hubzilla)'] = 'Diaspora (Socialhome, Hubzilla)'; $a->strings['Built-in support for %s connectivity is enabled'] = 'Le support intégré pour la connectivité %s est activé'; $a->strings['Built-in support for %s connectivity is disabled'] = 'Le support intégré pour la connectivité %s est désactivé'; -$a->strings['OStatus (GNU Social)'] = 'OStatus (GNU Social)'; $a->strings['Email access is disabled on this site.'] = 'L\'accès courriel est désactivé sur ce site.'; $a->strings['None'] = 'Aucun(e)'; $a->strings['Default (Mastodon will display the title and a link to the post)'] = 'Par défaut (Mastodon affichera le titre et un lien vers la publication)'; @@ -2659,7 +2660,6 @@ $a->strings['Article Mode'] = 'Mode Article'; $a->strings['Controls how posts with titles are transmitted. Mastodon and its forks don\'t display the content of these posts if the post is created in the correct (default) way.'] = 'Contrôle la façon dont les publications avec des titres sont transmises. Mastodon et ses forks n\'affichent pas le contenu de ces publications si la publication est créée de la bonne manière (par défaut).'; $a->strings['Your legacy ActivityPub/GNU Social account'] = 'Votre ancient compte ActivityPub/GNU Social'; $a->strings['If you enter your old account name from an ActivityPub based system or your GNU Social/Statusnet account name here (in the format user@domain.tld), your contacts will be added automatically. The field will be emptied when done.'] = 'Si vous saisissez votre adresse de compte précédente d\'un réseau basé sur ActivityPub ou GNU Social/Statusnet (au format utilisateur@domaine.tld), vos contacts seront ajoutés autoamtiquement. Le champ sera vidé quand l\'opération sera terminé.'; -$a->strings['Repair OStatus subscriptions'] = 'Réparer les abonnements OStatus'; $a->strings['Email/Mailbox Setup'] = 'Réglages de courriel/boîte à lettre'; $a->strings['If you wish to communicate with email contacts using this service (optional), please specify how to connect to your mailbox.'] = 'Si vous souhaitez communiquer avec vos contacts "courriel" (facultatif), merci de nous indiquer comment vous connecter à votre boîte.'; $a->strings['Last successful email check:'] = 'Dernière vérification réussie des courriels :'; @@ -2984,7 +2984,6 @@ $a->strings['%s commented on %s\'s post'] = '%s a commenté la publication de %s $a->strings['%s created a new post'] = '%s a créé une nouvelle publication'; $a->strings['Friend Suggestion'] = 'Suggestion d\'abonnement'; $a->strings['Friend/Connect Request'] = 'Demande de connexion/relation'; -$a->strings['New Follower'] = 'Nouvel abonné'; $a->strings['%1$s wants to follow you'] = '%1$s veut s\'abonner à votre contenu'; $a->strings['%1$s has started following you'] = '%1$s a commencé à vous suivre'; $a->strings['%1$s liked your comment on %2$s'] = '%1$s a aimé votre commentaire sur %2$s'; @@ -3140,10 +3139,6 @@ $a->strings['Reacted with %s by: %s'] = 'La réaction %s a été faite par : %s $a->strings['Quote shared by: %s'] = 'Cité et repartagé par : %s'; $a->strings['Chat'] = 'Chat'; $a->strings['(no subject)'] = '(aucun sujet)'; -$a->strings['%s is now following %s.'] = '%s suit désormais %s.'; -$a->strings['following'] = 'following'; -$a->strings['%s stopped following %s.'] = '%s ne suit plus %s.'; -$a->strings['stopped following'] = 'retiré de la liste de suivi'; $a->strings['The folder %s must be writable by webserver.'] = 'Le répertoire %s doit être accessible en écriture par le serveur web.'; $a->strings['Login failed.'] = 'Échec de connexion.'; $a->strings['Login failed. Please check your credentials.'] = 'Échec d\'authentification. Merci de vérifier vos identifiants.'; diff --git a/view/lang/gd/messages.po b/view/lang/gd/messages.po index 9740a47828..4b835678c7 100644 --- a/view/lang/gd/messages.po +++ b/view/lang/gd/messages.po @@ -1,14 +1,13 @@ # FRIENDICA Distributed Social Network -# SPDX-FileCopyrightText: Copyright (C) 2010-2024, the Friendica project -# -# SPDX-License-Identifier: AGPL-3.0-or-later -# +# Copyright (C) 2010-2024, the Friendica project +# This file is distributed under the same license as the Friendica package. +# # Translators: msgid "" msgstr "" "Project-Id-Version: friendica\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-08-11 06:43+0000\n" +"POT-Creation-Date: 2024-10-07 20:46+0000\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" @@ -18,77 +17,77 @@ msgstr "" "Language: gd\n" "Plural-Forms: nplurals=4; plural=(n==1 || n==11) ? 0 : (n==2 || n==12) ? 1 : (n > 2 && n < 20) ? 2 : 3;\n" -#: mod/item.php:101 mod/item.php:104 mod/item.php:171 mod/item.php:174 +#: mod/item.php:89 mod/item.php:92 mod/item.php:159 mod/item.php:162 msgid "Unable to locate original post." msgstr "Cha do lorg sinn am post tùsail." -#: mod/item.php:139 +#: mod/item.php:127 msgid "Post updated." msgstr "Chaidh am post ùrachadh." -#: mod/item.php:204 mod/item.php:208 +#: mod/item.php:192 mod/item.php:196 msgid "Item wasn't stored." msgstr "Cha deach an nì a stòradh." -#: mod/item.php:218 +#: mod/item.php:206 msgid "Item couldn't be fetched." msgstr "Cha d’ fhuair sinn grèim air a nì." -#: mod/item.php:262 mod/item.php:266 +#: mod/item.php:250 mod/item.php:254 msgid "Empty post discarded." msgstr "Chaidh post falamh a thilgeil air falbh." -#: mod/item.php:437 src/Module/Admin/Themes/Details.php:45 -#: src/Module/Admin/Themes/Index.php:65 src/Module/Debug/ItemBody.php:42 -#: src/Module/Debug/ItemBody.php:57 src/Module/Item/Feed.php:80 +#: mod/item.php:425 src/Module/Admin/Themes/Details.php:31 +#: src/Module/Admin/Themes/Index.php:51 src/Module/Debug/ItemBody.php:28 +#: src/Module/Debug/ItemBody.php:43 src/Module/Item/Feed.php:66 msgid "Item not found." msgstr "Cha deach an nì a lorg." -#: mod/item.php:461 mod/message.php:66 mod/message.php:112 mod/notes.php:45 -#: mod/photos.php:147 mod/photos.php:663 src/Model/Event.php:520 -#: src/Module/Attach.php:55 src/Module/BaseApi.php:103 -#: src/Module/BaseNotifications.php:98 src/Module/BaseSettings.php:50 -#: src/Module/Calendar/Event/API.php:88 src/Module/Calendar/Event/Form.php:84 -#: src/Module/Calendar/Export.php:82 src/Module/Calendar/Show.php:82 -#: src/Module/Circle.php:41 src/Module/Circle.php:84 -#: src/Module/Contact/Advanced.php:60 src/Module/Contact/Follow.php:87 -#: src/Module/Contact/Follow.php:160 src/Module/Contact/MatchInterests.php:87 -#: src/Module/Contact/Suggestions.php:54 src/Module/Contact/Unfollow.php:66 -#: src/Module/Contact/Unfollow.php:80 src/Module/Contact/Unfollow.php:112 -#: src/Module/FollowConfirm.php:38 src/Module/FriendSuggest.php:57 -#: src/Module/Invite.php:42 src/Module/Invite.php:131 -#: src/Module/Notifications/Notification.php:76 -#: src/Module/Notifications/Notification.php:107 -#: src/Module/OStatus/Repair.php:60 src/Module/OStatus/Subscribe.php:68 -#: src/Module/Post/Edit.php:76 src/Module/Profile/Common.php:75 -#: src/Module/Profile/Contacts.php:78 src/Module/Profile/Photos.php:92 -#: src/Module/Profile/Schedule.php:39 src/Module/Profile/Schedule.php:56 -#: src/Module/Register.php:84 src/Module/Register.php:97 -#: src/Module/Register.php:213 src/Module/Register.php:252 -#: src/Module/Search/Directory.php:37 src/Module/Settings/Account.php:50 -#: src/Module/Settings/Account.php:391 src/Module/Settings/Channels.php:66 -#: src/Module/Settings/Channels.php:141 src/Module/Settings/Delegation.php:90 -#: src/Module/Settings/Display.php:90 src/Module/Settings/Display.php:197 -#: src/Module/Settings/Profile/Photo/Crop.php:165 -#: src/Module/Settings/Profile/Photo/Index.php:110 -#: src/Module/Settings/RemoveMe.php:119 src/Module/Settings/UserExport.php:78 -#: src/Module/Settings/UserExport.php:114 -#: src/Module/Settings/UserExport.php:213 -#: src/Module/Settings/UserExport.php:233 -#: src/Module/Settings/UserExport.php:298 src/Module/User/Delegation.php:154 -#: src/Module/User/Import.php:85 src/Module/User/Import.php:92 +#: mod/item.php:449 mod/message.php:54 mod/message.php:100 mod/notes.php:33 +#: mod/photos.php:135 mod/photos.php:627 src/Model/Event.php:506 +#: src/Module/Attach.php:41 src/Module/BaseApi.php:89 +#: src/Module/BaseNotifications.php:84 src/Module/BaseSettings.php:36 +#: src/Module/Calendar/Event/API.php:74 src/Module/Calendar/Event/Form.php:70 +#: src/Module/Calendar/Export.php:68 src/Module/Calendar/Show.php:68 +#: src/Module/Circle.php:27 src/Module/Circle.php:70 +#: src/Module/Contact/Advanced.php:46 src/Module/Contact/Follow.php:73 +#: src/Module/Contact/Follow.php:141 src/Module/Contact/MatchInterests.php:73 +#: src/Module/Contact/Suggestions.php:40 src/Module/Contact/Unfollow.php:52 +#: src/Module/Contact/Unfollow.php:66 src/Module/Contact/Unfollow.php:98 +#: src/Module/FollowConfirm.php:24 src/Module/FriendSuggest.php:43 +#: src/Module/Invite.php:28 src/Module/Invite.php:117 +#: src/Module/Notifications/Notification.php:62 +#: src/Module/Notifications/Notification.php:93 +#: src/Module/OStatus/Subscribe.php:54 src/Module/Post/Edit.php:62 +#: src/Module/Profile/Common.php:61 src/Module/Profile/Contacts.php:64 +#: src/Module/Profile/Photos.php:78 src/Module/Profile/Schedule.php:25 +#: src/Module/Profile/Schedule.php:42 src/Module/Register.php:70 +#: src/Module/Register.php:83 src/Module/Register.php:199 +#: src/Module/Register.php:238 src/Module/Search/Directory.php:23 +#: src/Module/Settings/Account.php:36 src/Module/Settings/Account.php:377 +#: src/Module/Settings/Channels.php:52 src/Module/Settings/Channels.php:127 +#: src/Module/Settings/Delegation.php:76 src/Module/Settings/Display.php:76 +#: src/Module/Settings/Display.php:183 +#: src/Module/Settings/Profile/Photo/Crop.php:151 +#: src/Module/Settings/Profile/Photo/Index.php:96 +#: src/Module/Settings/RemoveMe.php:105 src/Module/Settings/UserExport.php:64 +#: src/Module/Settings/UserExport.php:100 +#: src/Module/Settings/UserExport.php:199 +#: src/Module/Settings/UserExport.php:219 +#: src/Module/Settings/UserExport.php:284 src/Module/User/Delegation.php:140 +#: src/Module/User/Import.php:71 src/Module/User/Import.php:78 msgid "Permission denied." msgstr "Chaidh cead a dhiùltadh." -#: mod/lostpass.php:40 +#: mod/lostpass.php:28 msgid "No valid account found." msgstr "Cha deach cunntas dligheach a lorg." -#: mod/lostpass.php:52 +#: mod/lostpass.php:40 msgid "Password reset request issued. Check your email." msgstr "Chaidh ath-shuidheachadh an fhacail-fhaire iarraidh. Thoir sùil air a’ phost-d agad." -#: mod/lostpass.php:58 +#: mod/lostpass.php:46 #, php-format msgid "" "\n" @@ -104,7 +103,7 @@ msgid "" "\t\tissued this request." msgstr "\n\t\t%1$s, a charaid\n\t\t\tFhuair sinn iarrtas aig “%2$s” o chionn goirid airson facal-faire a’ chunntais agad\n\t\tath-shuidheachadh. Airson an t-iarrtas seo a dhearbhadh, tagh an ceangal dearbhaidh\n\t\tgu h-ìosal no cuir a-steach ann am bàr nan seòladh sa bhrabhsair-lìn agad e.\n\n\t\tMUR an do dh’iarr thu fhèin an t-atharrachadh seo, NA LEAN air a’ cheangal\n\t\ta tha ’ga sholar agus leig seachad agus/no sguab às am post-d seo ’s falbhaidh an ùine air an iarrtas a dh’aithghearr.\n\n\t\tCha dèid am facal-faire agad atharrachadh ach mas urrainn dhuinn dearbhadh gun do\n\t\tdh’iarr thu fhèin seo." -#: mod/lostpass.php:69 +#: mod/lostpass.php:57 #, php-format msgid "" "\n" @@ -121,70 +120,70 @@ msgid "" "\t\tLogin Name:\t%3$s" msgstr "\n\t\tLean ris a’ cheangal seo a dh’aithghearr a dhearbhadh gur e tusa a bh’ ann:\n\n\t\t%1$s\n\n\t\tGhaibh thu teachdaireachd eile an uairsin sa bheil am facal-faire ùr.\n\t\t’S urrainn dhut am facal-faire sin atharrachadh o dhuilleag roghainnean a’ chunntais agad às dèidh clàradh a-steach.\n\n\t\tSeo am fiosrachadh clàraidh a-steach:\n\n\t\tIonad na làraich:\t%2$s\n\t\tAinm a’ chlàraidh a-steach:\t%3$s" -#: mod/lostpass.php:84 +#: mod/lostpass.php:72 #, php-format msgid "Password reset requested at %s" msgstr "Chaidh ath-shuidheachadh an fhacail-fhaire iarraidh aig %s" -#: mod/lostpass.php:100 +#: mod/lostpass.php:88 msgid "" "Request could not be verified. (You may have previously submitted it.) " "Password reset failed." msgstr "Cha b’ urrainn dhuinn an t-iarrtas a dhearbhadh. (Dh’fhaoidte gun do chuir thu a-null e cheana.) Dh’fhàillig le ath-shuidheachadh an fhacail-fhaire." -#: mod/lostpass.php:113 +#: mod/lostpass.php:101 msgid "Request has expired, please make a new one." msgstr "Dh’fhalbh an ùine air an iarrtas, cruthaich fear ùr." -#: mod/lostpass.php:128 +#: mod/lostpass.php:116 msgid "Forgot your Password?" msgstr "Na dhìochuimhnich thu am facal-faire agad?" -#: mod/lostpass.php:129 +#: mod/lostpass.php:117 msgid "" "Enter your email address and submit to have your password reset. Then check " "your email for further instructions." msgstr "Cuir a-steach ’s a-null an seòladh puist-d agad airson ath-shuidheachadh an fhacail-fhaire agad. Thoir sùil air na puist-d agad an uairsin airson stiùireadh." -#: mod/lostpass.php:130 src/Module/Security/Login.php:164 +#: mod/lostpass.php:118 src/Module/Security/Login.php:150 msgid "Nickname or Email: " msgstr "Far-ainm no post-d: " -#: mod/lostpass.php:131 +#: mod/lostpass.php:119 msgid "Reset" msgstr "Ath-shuidhich" -#: mod/lostpass.php:146 src/Module/Security/Login.php:176 +#: mod/lostpass.php:134 src/Module/Security/Login.php:162 msgid "Password Reset" msgstr "Ath-shuidheachadh facail-fhaire" -#: mod/lostpass.php:147 +#: mod/lostpass.php:135 msgid "Your password has been reset as requested." msgstr "Chaidh am facal-faire agad ath-shuidheachadh." -#: mod/lostpass.php:148 +#: mod/lostpass.php:136 msgid "Your new password is" msgstr "Seo am facal-faire ùr agad:" -#: mod/lostpass.php:149 +#: mod/lostpass.php:137 msgid "Save or copy your new password - and then" msgstr "Sàbhail no dèan lethbhreac dhen fhacal-fhaire ùr agad. An uairsin," -#: mod/lostpass.php:150 +#: mod/lostpass.php:138 msgid "click here to login" msgstr "briog an-seo gus clàradh a-steach" -#: mod/lostpass.php:151 +#: mod/lostpass.php:139 msgid "" "Your password may be changed from the Settings page after " "successful login." msgstr "’S urrainn dhut am facal-faire agad atharrachadh o dhuilleag nan Roghainnean às dèidh a’ chlàraidh a-steach." -#: mod/lostpass.php:155 +#: mod/lostpass.php:143 msgid "Your password has been reset." msgstr "Chaidh am facal-faire agad ath-shuidheachadh." -#: mod/lostpass.php:158 +#: mod/lostpass.php:146 #, php-format msgid "" "\n" @@ -195,7 +194,7 @@ msgid "" "\t\t" msgstr "\n\t\t\t%1$s, a charaid,\n\t\t\t\tChaidh am facal-faire agad atharrachadh mar a dh’iarr thu. Cùm\n\t\t\tam fiosrachadh seo sna clàran agad (no atharraich am facal-faire agad sa bhad\n\t\t\tgu rudeigin as urrainn dhut cur ’nad chuimhne).\n\t\t" -#: mod/lostpass.php:164 +#: mod/lostpass.php:152 #, php-format msgid "" "\n" @@ -209,161 +208,161 @@ msgid "" "\t\t" msgstr "\n\t\t\tSeo am fiosrachadh clàraidh a-steach agad:\n\n\t\t\tIonad na làraich:\t%1$s\n\t\t\tAinm clàraidh a-steach:\t%2$s\n\t\t\tFacal-faire:\t%3$s\n\n\t\t\t’S urrainn dhut am facal-faire agad atharrachadh o dhuilleag roghainnean a’ chunntais agad às dèidh a’ chlàraidh a-steach.\n\t\t" -#: mod/lostpass.php:176 +#: mod/lostpass.php:164 #, php-format msgid "Your password has been changed at %s" msgstr "Chaidh am facal-faire agad atharrachadh air %s" -#: mod/message.php:45 mod/message.php:127 src/Content/Nav.php:321 +#: mod/message.php:33 mod/message.php:115 src/Content/Nav.php:307 msgid "New Message" msgstr "Teachdaireachd ùr" -#: mod/message.php:81 +#: mod/message.php:69 msgid "No recipient selected." msgstr "Cha deach faightear a thaghadh." -#: mod/message.php:86 +#: mod/message.php:74 msgid "Unable to locate contact information." msgstr "Cha do lorg sinn am fiosrachadh conaltraidh." -#: mod/message.php:90 +#: mod/message.php:78 msgid "Message could not be sent." msgstr "Cha b’ urrainn dhuinn an teachdaireachd a chur." -#: mod/message.php:94 +#: mod/message.php:82 msgid "Message collection failure." msgstr "Dh’fhàillig cruinneachadh nan teachdaireachdan." -#: mod/message.php:121 src/Module/Notifications/Introductions.php:141 -#: src/Module/Notifications/Introductions.php:176 -#: src/Module/Notifications/Notification.php:85 +#: mod/message.php:109 src/Module/Notifications/Introductions.php:127 +#: src/Module/Notifications/Introductions.php:162 +#: src/Module/Notifications/Notification.php:71 msgid "Discard" msgstr "Tilg air falbh" -#: mod/message.php:134 src/Content/Nav.php:318 view/theme/frio/theme.php:244 +#: mod/message.php:122 src/Content/Nav.php:304 view/theme/frio/theme.php:232 msgid "Messages" msgstr "Teachdaireachdan" -#: mod/message.php:147 +#: mod/message.php:135 msgid "Conversation not found." msgstr "Cha deach an còmhradh a lorg." -#: mod/message.php:152 +#: mod/message.php:140 msgid "Message was not deleted." msgstr "Cha deach an teachdaireachd a sguabadh às." -#: mod/message.php:167 +#: mod/message.php:155 msgid "Conversation was not removed." msgstr "Cha deach an còmhradh a thoirt air falbh." -#: mod/message.php:180 mod/message.php:285 +#: mod/message.php:168 mod/message.php:273 msgid "Please enter a link URL:" msgstr "Cuir URL ceangail:" -#: mod/message.php:189 +#: mod/message.php:177 msgid "Send Private Message" msgstr "Cuir teachdaireachd phearsanta" -#: mod/message.php:190 mod/message.php:345 -#: src/Module/Privacy/PermissionTooltip.php:132 +#: mod/message.php:178 mod/message.php:333 +#: src/Module/Privacy/PermissionTooltip.php:118 msgid "To:" msgstr "Gu:" -#: mod/message.php:191 mod/message.php:346 +#: mod/message.php:179 mod/message.php:334 msgid "Subject:" msgstr "Cuspair:" -#: mod/message.php:195 mod/message.php:349 src/Module/Invite.php:171 +#: mod/message.php:183 mod/message.php:337 src/Module/Invite.php:157 msgid "Your message:" msgstr "An teachdaireachd agad:" -#: mod/message.php:198 mod/message.php:353 src/Content/Conversation.php:369 -#: src/Module/Post/Edit.php:131 +#: mod/message.php:186 mod/message.php:341 src/Content/Conversation.php:355 +#: src/Module/Post/Edit.php:117 msgid "Upload photo" msgstr "Luchdaich suas dealbh" -#: mod/message.php:199 mod/message.php:354 src/Module/Post/Edit.php:135 +#: mod/message.php:187 mod/message.php:342 src/Module/Post/Edit.php:121 msgid "Insert web link" msgstr "Cuir a-steach ceangal-lìn" -#: mod/message.php:200 mod/message.php:356 mod/photos.php:1291 -#: src/Content/Conversation.php:400 src/Content/Conversation.php:1576 -#: src/Module/Item/Compose.php:213 src/Module/Post/Edit.php:145 -#: src/Object/Post.php:618 +#: mod/message.php:188 mod/message.php:344 mod/photos.php:1255 +#: src/Content/Conversation.php:386 src/Content/Conversation.php:1562 +#: src/Module/Item/Compose.php:199 src/Module/Post/Edit.php:131 +#: src/Object/Post.php:604 msgid "Please wait" msgstr "Fuirich ort" -#: mod/message.php:201 mod/message.php:355 mod/photos.php:694 -#: mod/photos.php:814 mod/photos.php:1091 mod/photos.php:1132 -#: mod/photos.php:1188 mod/photos.php:1268 -#: src/Module/Calendar/Event/Form.php:250 src/Module/Contact/Advanced.php:132 -#: src/Module/Contact/Profile.php:384 -#: src/Module/Debug/ActivityPubConversion.php:146 -#: src/Module/Debug/Babel.php:321 src/Module/Debug/Localtime.php:64 -#: src/Module/Debug/Probe.php:54 src/Module/Debug/WebFinger.php:51 -#: src/Module/FriendSuggest.php:145 src/Module/Install.php:234 -#: src/Module/Install.php:274 src/Module/Install.php:309 -#: src/Module/Invite.php:178 src/Module/Item/Compose.php:196 -#: src/Module/Moderation/Item/Source.php:85 -#: src/Module/Moderation/Report/Create.php:168 -#: src/Module/Moderation/Report/Create.php:183 -#: src/Module/Moderation/Report/Create.php:211 -#: src/Module/Moderation/Report/Create.php:263 -#: src/Module/Profile/Profile.php:276 -#: src/Module/Settings/Profile/Index.php:262 -#: src/Module/Settings/Server/Action.php:79 src/Module/User/Delegation.php:189 -#: src/Object/Post.php:1159 view/theme/duepuntozero/config.php:85 -#: view/theme/frio/config.php:150 view/theme/quattro/config.php:87 -#: view/theme/vier/config.php:135 +#: mod/message.php:189 mod/message.php:343 mod/photos.php:658 +#: mod/photos.php:778 mod/photos.php:1055 mod/photos.php:1096 +#: mod/photos.php:1152 mod/photos.php:1232 +#: src/Module/Calendar/Event/Form.php:236 src/Module/Contact/Advanced.php:118 +#: src/Module/Contact/Profile.php:370 +#: src/Module/Debug/ActivityPubConversion.php:132 +#: src/Module/Debug/Babel.php:307 src/Module/Debug/Localtime.php:50 +#: src/Module/Debug/Probe.php:40 src/Module/Debug/WebFinger.php:37 +#: src/Module/FriendSuggest.php:131 src/Module/Install.php:220 +#: src/Module/Install.php:260 src/Module/Install.php:295 +#: src/Module/Invite.php:164 src/Module/Item/Compose.php:182 +#: src/Module/Moderation/Item/Source.php:71 +#: src/Module/Moderation/Report/Create.php:154 +#: src/Module/Moderation/Report/Create.php:169 +#: src/Module/Moderation/Report/Create.php:197 +#: src/Module/Moderation/Report/Create.php:249 +#: src/Module/Profile/Profile.php:262 +#: src/Module/Settings/Profile/Index.php:248 +#: src/Module/Settings/Server/Action.php:65 src/Module/User/Delegation.php:175 +#: src/Object/Post.php:1145 view/theme/duepuntozero/config.php:73 +#: view/theme/frio/config.php:138 view/theme/quattro/config.php:75 +#: view/theme/vier/config.php:123 msgid "Submit" msgstr "Cuir a-null" -#: mod/message.php:222 +#: mod/message.php:210 msgid "No messages." msgstr "Chan eil teachdaireachd sam bith ann." -#: mod/message.php:278 +#: mod/message.php:266 msgid "Message not available." msgstr "Chan eil an teachdaireachd ri fhaighinn." -#: mod/message.php:322 +#: mod/message.php:310 msgid "Delete message" msgstr "Sguab às an teachdaireachd" -#: mod/message.php:324 mod/message.php:453 +#: mod/message.php:312 mod/message.php:441 msgid "D, d M Y - g:i A" msgstr "D d M Y – g:ia" -#: mod/message.php:339 mod/message.php:450 +#: mod/message.php:327 mod/message.php:438 msgid "Delete conversation" msgstr "Sguab às an còmhradh" -#: mod/message.php:341 +#: mod/message.php:329 msgid "" "No secure communications available. You may be able to " "respond from the sender's profile page." msgstr "Chan eil conaltradh tèarainte ri fhaighinn. Dh’fhaoidte gur urrainn dhut freagairt o dhuilleag pròifil an t-seòladair." -#: mod/message.php:344 +#: mod/message.php:332 msgid "Send Reply" msgstr "Cuir an fhreagairt" -#: mod/message.php:424 +#: mod/message.php:412 #, php-format msgid "Unknown sender - %s" msgstr "Seòladair nach aithne dhuinn – %s" -#: mod/message.php:426 +#: mod/message.php:414 #, php-format msgid "You and %s" msgstr "Thusa is %s" -#: mod/message.php:428 +#: mod/message.php:416 #, php-format msgid "%s and You" msgstr "%s is thusa" -#: mod/message.php:456 +#: mod/message.php:444 #, php-format msgid "%d message" msgid_plural "%d messages" @@ -372,799 +371,799 @@ msgstr[1] "%d theachdaireachd" msgstr[2] "%d teachdaireachdan" msgstr[3] "%d teachdaireachd" -#: mod/notes.php:52 src/Module/BaseProfile.php:108 +#: mod/notes.php:40 src/Module/BaseProfile.php:94 msgid "Personal Notes" msgstr "Nòtaichean pearsanta" -#: mod/notes.php:56 +#: mod/notes.php:44 msgid "Personal notes are visible only by yourself." msgstr "Chan fhaic ach thu fhèin na nòtaichean pearsanta." -#: mod/notes.php:57 src/Content/Text/HTML.php:861 -#: src/Module/Admin/Storage.php:142 src/Module/Filer/SaveTag.php:74 -#: src/Module/Post/Edit.php:129 src/Module/Settings/Channels.php:229 +#: mod/notes.php:45 src/Content/Text/HTML.php:847 +#: src/Module/Admin/Storage.php:128 src/Module/Filer/SaveTag.php:60 +#: src/Module/Post/Edit.php:115 src/Module/Settings/Channels.php:215 msgid "Save" msgstr "Sàbhail" -#: mod/photos.php:66 mod/photos.php:129 mod/photos.php:573 -#: src/Model/Event.php:512 src/Model/Profile.php:227 -#: src/Module/Calendar/Export.php:74 src/Module/Calendar/Show.php:74 -#: src/Module/DFRN/Poll.php:43 src/Module/Feed.php:66 src/Module/HCard.php:51 -#: src/Module/Profile/Common.php:62 src/Module/Profile/Common.php:71 -#: src/Module/Profile/Contacts.php:64 src/Module/Profile/Contacts.php:72 -#: src/Module/Profile/Conversations.php:91 src/Module/Profile/Media.php:56 -#: src/Module/Profile/Photos.php:83 src/Module/Profile/RemoteFollow.php:71 -#: src/Module/Register.php:274 +#: mod/photos.php:54 mod/photos.php:117 mod/photos.php:537 +#: src/Model/Event.php:498 src/Model/Profile.php:213 +#: src/Module/Calendar/Export.php:60 src/Module/Calendar/Show.php:60 +#: src/Module/Feed.php:52 src/Module/HCard.php:37 +#: src/Module/Profile/Common.php:48 src/Module/Profile/Common.php:57 +#: src/Module/Profile/Contacts.php:50 src/Module/Profile/Contacts.php:58 +#: src/Module/Profile/Conversations.php:77 src/Module/Profile/Media.php:42 +#: src/Module/Profile/Photos.php:69 src/Module/Profile/RemoteFollow.php:57 +#: src/Module/Register.php:260 msgid "User not found." msgstr "Cha deach an cleachdaiche a lorg." -#: mod/photos.php:103 src/Module/BaseProfile.php:68 -#: src/Module/Profile/Photos.php:375 +#: mod/photos.php:91 src/Module/BaseProfile.php:54 +#: src/Module/Profile/Photos.php:361 msgid "Photo Albums" msgstr "Pasgain dhealbhan" -#: mod/photos.php:104 src/Module/Profile/Photos.php:376 -#: src/Module/Profile/Photos.php:396 +#: mod/photos.php:92 src/Module/Profile/Photos.php:362 +#: src/Module/Profile/Photos.php:382 msgid "Recent Photos" msgstr "Dealbhan o chionn goirid" -#: mod/photos.php:106 mod/photos.php:862 src/Module/Profile/Photos.php:378 -#: src/Module/Profile/Photos.php:398 +#: mod/photos.php:94 mod/photos.php:826 src/Module/Profile/Photos.php:364 +#: src/Module/Profile/Photos.php:384 msgid "Upload New Photos" msgstr "Luchdaich suas dealbhan ùra" -#: mod/photos.php:118 src/Module/BaseSettings.php:72 -#: src/Module/Profile/Photos.php:359 +#: mod/photos.php:106 src/Module/BaseSettings.php:58 +#: src/Module/Profile/Photos.php:345 msgid "everybody" msgstr "a h-uile duine" -#: mod/photos.php:154 +#: mod/photos.php:142 msgid "Contact information unavailable" msgstr "Chan eil fiosrachadh conaltraidh ri fhaighinn" -#: mod/photos.php:183 +#: mod/photos.php:171 msgid "Album not found." msgstr "Cha deach an t-albam a lorg." -#: mod/photos.php:239 +#: mod/photos.php:227 msgid "Album successfully deleted" msgstr "Chaidh an t-albam a sguabadh às" -#: mod/photos.php:241 +#: mod/photos.php:229 msgid "Album was empty." msgstr "Bha an t-albam falamh." -#: mod/photos.php:272 +#: mod/photos.php:260 msgid "Failed to delete the photo." msgstr "Cha b’ urrainn dhuinn an dealbh a sguabadh às." -#: mod/photos.php:540 +#: mod/photos.php:504 msgid "a photo" msgstr "dealbh" -#: mod/photos.php:540 +#: mod/photos.php:504 #, 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:577 src/Module/Conversation/Community.php:160 -#: src/Module/Directory.php:49 src/Module/Profile/Photos.php:293 -#: src/Module/Search/Index.php:65 +#: mod/photos.php:541 src/Module/Conversation/Community.php:148 +#: src/Module/Directory.php:35 src/Module/Profile/Photos.php:279 +#: src/Module/Search/Index.php:51 msgid "Public access denied." msgstr "Chaidh an t-inntrigeadh poblach a dhiùltadh." -#: mod/photos.php:582 +#: mod/photos.php:546 msgid "No photos selected" msgstr "Cha deach dealbh a thaghadh" -#: mod/photos.php:710 +#: mod/photos.php:674 #, php-format msgid "The maximum accepted image size is %s" msgstr "Cha ghabh sinn ri dealbhan nas motha na %s" -#: mod/photos.php:717 +#: mod/photos.php:681 msgid "Upload Photos" msgstr "Luchdaich suas dealbhan" -#: mod/photos.php:721 mod/photos.php:810 +#: mod/photos.php:685 mod/photos.php:774 msgid "New album name: " msgstr "Ainm an albaim ùir: " -#: mod/photos.php:722 +#: mod/photos.php:686 msgid "or select existing album:" msgstr "no tagh albam a tha ann:" -#: mod/photos.php:723 +#: mod/photos.php:687 msgid "Do not show a status post for this upload" msgstr "Na seall post staide dhan luchdadh suas seo" -#: mod/photos.php:726 mod/photos.php:1087 src/Content/Conversation.php:402 -#: src/Module/Calendar/Event/Form.php:253 src/Module/Post/Edit.php:183 +#: mod/photos.php:690 mod/photos.php:1051 src/Content/Conversation.php:388 +#: src/Module/Calendar/Event/Form.php:239 src/Module/Post/Edit.php:169 msgid "Permissions" msgstr "Ceadan" -#: mod/photos.php:791 +#: mod/photos.php:755 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:792 mod/photos.php:815 +#: mod/photos.php:756 mod/photos.php:779 msgid "Delete Album" msgstr "Sguab às an t-albam" -#: mod/photos.php:793 mod/photos.php:893 src/Content/Conversation.php:417 -#: src/Module/Contact/Follow.php:173 src/Module/Contact/Revoke.php:106 -#: src/Module/Contact/Unfollow.php:126 -#: src/Module/Media/Attachment/Browser.php:77 -#: src/Module/Media/Photo/Browser.php:88 src/Module/Post/Edit.php:167 -#: src/Module/Post/Tag/Remove.php:109 src/Module/Profile/RemoteFollow.php:134 -#: src/Module/Security/TwoFactor/SignOut.php:125 +#: mod/photos.php:757 mod/photos.php:857 src/Content/Conversation.php:403 +#: src/Module/Contact/Follow.php:154 src/Module/Contact/Revoke.php:92 +#: src/Module/Contact/Unfollow.php:112 +#: src/Module/Media/Attachment/Browser.php:63 +#: src/Module/Media/Photo/Browser.php:74 src/Module/Post/Edit.php:153 +#: src/Module/Post/Tag/Remove.php:95 src/Module/Profile/RemoteFollow.php:120 +#: src/Module/Security/TwoFactor/SignOut.php:111 msgid "Cancel" msgstr "Sguir dheth" -#: mod/photos.php:819 +#: mod/photos.php:783 msgid "Edit Album" msgstr "Deasaich an t-albam" -#: mod/photos.php:820 +#: mod/photos.php:784 msgid "Drop Album" msgstr "Thoir air falbh an t-albam" -#: mod/photos.php:824 +#: mod/photos.php:788 msgid "Show Newest First" msgstr "Seall an fheadhainn as ùire an toiseach" -#: mod/photos.php:826 +#: mod/photos.php:790 msgid "Show Oldest First" msgstr "Seall an fheadhainn as sine an toiseach" -#: mod/photos.php:847 src/Module/Profile/Photos.php:346 +#: mod/photos.php:811 src/Module/Profile/Photos.php:332 msgid "View Photo" msgstr "Seall an dealbh" -#: mod/photos.php:879 +#: mod/photos.php:843 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:881 +#: mod/photos.php:845 msgid "Photo not available" msgstr "Chan eil an dealbhan ri fhaighinn" -#: mod/photos.php:891 +#: mod/photos.php:855 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:892 mod/photos.php:1092 +#: mod/photos.php:856 mod/photos.php:1056 msgid "Delete Photo" msgstr "Sguab às an dealbh" -#: mod/photos.php:990 +#: mod/photos.php:954 msgid "View photo" msgstr "Seall an dealbh" -#: mod/photos.php:992 +#: mod/photos.php:956 msgid "Edit photo" msgstr "Deasaich an dealbh" -#: mod/photos.php:993 +#: mod/photos.php:957 msgid "Delete photo" msgstr "Sguab às an dealbh" -#: mod/photos.php:994 +#: mod/photos.php:958 msgid "Use as profile photo" msgstr "Cleachd ’na dhealbh pròifile" -#: mod/photos.php:1001 +#: mod/photos.php:965 msgid "Private Photo" msgstr "Dealbh prìobhaideach" -#: mod/photos.php:1007 +#: mod/photos.php:971 msgid "View Full Size" msgstr "Seall air a làn-mheud" -#: mod/photos.php:1060 +#: mod/photos.php:1024 msgid "Tags: " msgstr "Tagaichean: " -#: mod/photos.php:1063 +#: mod/photos.php:1027 msgid "[Select tags to remove]" msgstr "[Tagh tagaichean gus an toirt air falbh]" -#: mod/photos.php:1078 +#: mod/photos.php:1042 msgid "New album name" msgstr "Ainm albaim ùir" -#: mod/photos.php:1079 +#: mod/photos.php:1043 msgid "Caption" msgstr "Fo-thiotal" -#: mod/photos.php:1080 +#: mod/photos.php:1044 msgid "Add a Tag" msgstr "Cuir taga ris" -#: mod/photos.php:1080 +#: mod/photos.php:1044 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:1081 +#: mod/photos.php:1045 msgid "Do not rotate" msgstr "Na cuairtich" -#: mod/photos.php:1082 +#: mod/photos.php:1046 msgid "Rotate CW (right)" msgstr "Cuairtich a’ dol deiseil" -#: mod/photos.php:1083 +#: mod/photos.php:1047 msgid "Rotate CCW (left)" msgstr "Cuairtich a’ dol tuathail" -#: mod/photos.php:1129 mod/photos.php:1185 mod/photos.php:1265 -#: src/Module/Contact.php:625 src/Module/Item/Compose.php:195 -#: src/Object/Post.php:1156 +#: mod/photos.php:1093 mod/photos.php:1149 mod/photos.php:1229 +#: src/Module/Contact.php:600 src/Module/Item/Compose.php:181 +#: src/Object/Post.php:1142 msgid "This is you" msgstr "Seo thusa" -#: mod/photos.php:1131 mod/photos.php:1187 mod/photos.php:1267 -#: src/Module/Moderation/Reports.php:116 src/Object/Post.php:612 -#: src/Object/Post.php:1158 +#: mod/photos.php:1095 mod/photos.php:1151 mod/photos.php:1231 +#: src/Module/Moderation/Reports.php:102 src/Object/Post.php:598 +#: src/Object/Post.php:1144 msgid "Comment" msgstr "Beachd" -#: mod/photos.php:1133 mod/photos.php:1189 mod/photos.php:1269 -#: src/Content/Conversation.php:414 src/Module/Calendar/Event/Form.php:248 -#: src/Module/Item/Compose.php:208 src/Module/Post/Edit.php:165 -#: src/Object/Post.php:1172 +#: mod/photos.php:1097 mod/photos.php:1153 mod/photos.php:1233 +#: src/Content/Conversation.php:400 src/Module/Calendar/Event/Form.php:234 +#: src/Module/Item/Compose.php:194 src/Module/Post/Edit.php:151 +#: src/Object/Post.php:1158 msgid "Preview" msgstr "Ro-sheall" -#: mod/photos.php:1134 src/Content/Conversation.php:368 -#: src/Module/Post/Edit.php:130 src/Object/Post.php:1160 +#: mod/photos.php:1098 src/Content/Conversation.php:354 +#: src/Module/Post/Edit.php:116 src/Object/Post.php:1146 msgid "Loading..." msgstr "’Ga luchdadh…" -#: mod/photos.php:1226 src/Content/Conversation.php:1498 -#: src/Object/Post.php:274 +#: mod/photos.php:1190 src/Content/Conversation.php:1484 +#: src/Object/Post.php:260 msgid "Select" msgstr "Tagh" -#: mod/photos.php:1227 src/Content/Conversation.php:1499 -#: src/Module/Moderation/Users/Active.php:136 -#: src/Module/Moderation/Users/Blocked.php:136 -#: src/Module/Moderation/Users/Index.php:151 -#: src/Module/Settings/Connectors.php:254 -#: src/Module/Settings/Server/Index.php:109 +#: mod/photos.php:1191 src/Content/Conversation.php:1485 +#: src/Module/Moderation/Users/Active.php:122 +#: src/Module/Moderation/Users/Blocked.php:122 +#: src/Module/Moderation/Users/Index.php:137 +#: src/Module/Settings/Connectors.php:233 +#: src/Module/Settings/Server/Index.php:95 msgid "Delete" msgstr "Sguab às" -#: mod/photos.php:1288 src/Object/Post.php:440 +#: mod/photos.php:1252 src/Object/Post.php:426 msgid "Like" msgstr "’S toigh leam seo" -#: mod/photos.php:1289 src/Object/Post.php:440 +#: mod/photos.php:1253 src/Object/Post.php:426 msgid "I like this (toggle)" msgstr "’S toigh leam seo (toglaich)" -#: mod/photos.php:1290 src/Object/Post.php:441 +#: mod/photos.php:1254 src/Object/Post.php:427 msgid "Dislike" msgstr "Cha toigh leam seo" -#: mod/photos.php:1292 src/Object/Post.php:441 +#: mod/photos.php:1256 src/Object/Post.php:427 msgid "I don't like this (toggle)" msgstr "Cha toigh leam seo (toglaich)" -#: mod/photos.php:1314 +#: mod/photos.php:1278 msgid "Map" msgstr "Mapa" -#: src/App.php:446 +#: src/App.php:432 msgid "No system theme config value set." msgstr "Cha deach luach a shuidheachadh do rèiteachadh ùrlar an t-siostaim." -#: src/App.php:554 +#: src/App.php:540 msgid "Apologies but the website is unavailable at the moment." msgstr "Tha sinn duilich ach chan eil an làrach-lìn ri fhaighinn an-dràsta." -#: src/App/Page.php:250 +#: src/App/Page.php:236 msgid "Delete this item?" msgstr "A bheil thu airson an nì seo a sguabadh às?" -#: src/App/Page.php:251 +#: src/App/Page.php:237 msgid "" "Block this author? They won't be able to follow you nor see your public " "posts, and you won't be able to see their posts and their notifications." msgstr "A bheil thu airson an t-ùghdar seo a bhacadh? Chan urrainn dhaibh leantainn ort no na postaichean poblach agad fhaicinn tuilleadh agus chan fhaic thu fhèin na postaichean no na brathan uapa." -#: src/App/Page.php:252 +#: src/App/Page.php:238 msgid "" "Ignore this author? You won't be able to see their posts and their " "notifications." msgstr "A bheil thu airson an t-ùghdar seo a leigeil seachad? Chan fhaic thu na postaichean no na brathan uapa." -#: src/App/Page.php:253 +#: src/App/Page.php:239 msgid "Collapse this author's posts?" msgstr "A bheil thu airson postaichean an ùghdair seo a cho-theannachadh?" -#: src/App/Page.php:254 +#: src/App/Page.php:240 msgid "Ignore this author's server?" msgstr "" -#: src/App/Page.php:255 src/Module/Settings/Server/Action.php:61 -#: src/Module/Settings/Server/Index.php:108 +#: src/App/Page.php:241 src/Module/Settings/Server/Action.php:47 +#: src/Module/Settings/Server/Index.php:94 msgid "" "You won't see any content from this server including reshares in your " "Network page, the community pages and individual conversations." msgstr "" -#: src/App/Page.php:257 +#: src/App/Page.php:243 msgid "Like not successful" msgstr "Cha deach leinn a chur ris na h-annsachdan" -#: src/App/Page.php:258 +#: src/App/Page.php:244 msgid "Dislike not successful" msgstr "Cha deach leinn a thoirt air falbh o na h-annsachdan" -#: src/App/Page.php:259 +#: src/App/Page.php:245 msgid "Sharing not successful" msgstr "Cha deach leinn a cho-roinneadh" -#: src/App/Page.php:260 +#: src/App/Page.php:246 msgid "Attendance unsuccessful" msgstr "Cha deach leis an làthaireachd" -#: src/App/Page.php:261 +#: src/App/Page.php:247 msgid "Backend error" msgstr "Mearachd a’ backend" -#: src/App/Page.php:262 +#: src/App/Page.php:248 msgid "Network error" msgstr "Mearachd lìonraidh" -#: src/App/Page.php:265 +#: src/App/Page.php:251 msgid "Drop files here to upload" msgstr "Leig às faidhlichean an-seo gus an luchdadh suas" -#: src/App/Page.php:266 +#: src/App/Page.php:252 msgid "Your browser does not support drag and drop file uploads." msgstr "Cha chuir am brabhsair agad taic ri luchdadh suas fhaidhlichean le slaodadh is leigeil às." -#: src/App/Page.php:267 +#: src/App/Page.php:253 msgid "" "Please use the fallback form below to upload your files like in the olden " "days." msgstr "Cleachd an t-seann-dòigh airson faidhlichean a luchdadh suas leis an fhoirm gu h-ìosal." -#: src/App/Page.php:268 +#: src/App/Page.php:254 msgid "File is too big ({{filesize}}MiB). Max filesize: {{maxFilesize}}MiB." msgstr "Tha am faidhle ro mhòr ({{filesize}}MiB). Meud as motha nam faidhlichean: {{maxFilesize}}MiB." -#: src/App/Page.php:269 +#: src/App/Page.php:255 msgid "You can't upload files of this type." msgstr "Chan urrainn dhut faidhlichean dhen t-seòrsa seo a luchdadh suas." -#: src/App/Page.php:270 +#: src/App/Page.php:256 msgid "Server responded with {{statusCode}} code." msgstr "Dh’fhreagair am frithealaiche le còd {{statusCode}}." -#: src/App/Page.php:271 +#: src/App/Page.php:257 msgid "Cancel upload" msgstr "Sguir dhen luchdadh suas" -#: src/App/Page.php:272 +#: src/App/Page.php:258 msgid "Upload canceled." msgstr "Chaidh sgur dhen luchdadh suas." -#: src/App/Page.php:273 +#: src/App/Page.php:259 msgid "Are you sure you want to cancel this upload?" msgstr "A bheil thu cinnteach gu bheil thu airson sgur dhen luchdadh suas seo?" -#: src/App/Page.php:274 +#: src/App/Page.php:260 msgid "Remove file" msgstr "Thoir am faidhle air falbh" -#: src/App/Page.php:275 +#: src/App/Page.php:261 msgid "You can't upload any more files." msgstr "Chan urrainn dhut barrachd fhaidhlichean a luchdadh suas." -#: src/App/Page.php:353 +#: src/App/Page.php:339 msgid "toggle mobile" msgstr "toglaich mobile" -#: src/App/Router.php:309 +#: src/App/Router.php:295 #, php-format msgid "Method not allowed for this module. Allowed method(s): %s" msgstr "Chan eil am modh ceadaichte dhan mhòideal seo. Modh(an) ceadaichte: %s" -#: src/App/Router.php:311 src/Module/HTTPException/PageNotFound.php:49 -#: src/Module/Stats.php:63 +#: src/App/Router.php:297 src/Module/HTTPException/PageNotFound.php:35 +#: src/Module/Stats.php:49 msgid "Page not found." msgstr "Cha deach an duilleag a lorg." -#: src/App/Router.php:323 +#: src/App/Router.php:309 msgid "You must be logged in to use addons. " msgstr "Feumaidh tu clàradh a-steach mus urrainn dhut tuilleadain a chleachdadh. " -#: src/BaseModule.php:407 +#: src/BaseModule.php:393 msgid "" "The form security token was not correct. This probably happened because the " "form has been opened for too long (>3 hours) before submitting it." msgstr "Cha robh tòcan tèarainteachd an fhoirm mar bu chòir. Tha sinn an dùil gun do thachair sin air sgàth ’s gun robh am foirm fosgailte do fhada (>3 uairean a thìde) mus deach a chur a-null." -#: src/BaseModule.php:434 +#: src/BaseModule.php:420 msgid "All contacts" msgstr "A h-uile neach-aithne" -#: src/BaseModule.php:439 src/Content/Conversation/Factory/Channel.php:46 -#: src/Content/Widget.php:240 src/Core/ACL.php:195 src/Module/Contact.php:420 -#: src/Module/Privacy/PermissionTooltip.php:164 -#: src/Module/Privacy/PermissionTooltip.php:186 -#: src/Module/Settings/Channels.php:160 +#: src/BaseModule.php:425 src/Content/Conversation/Factory/Channel.php:32 +#: src/Content/Widget.php:218 src/Core/ACL.php:181 src/Module/Contact.php:395 +#: src/Module/Privacy/PermissionTooltip.php:150 +#: src/Module/Privacy/PermissionTooltip.php:172 +#: src/Module/Settings/Channels.php:146 msgid "Followers" msgstr "Luchd-leantainn" -#: src/BaseModule.php:444 src/Content/Widget.php:241 -#: src/Module/Contact.php:423 src/Module/Settings/Channels.php:159 +#: src/BaseModule.php:430 src/Content/Widget.php:219 +#: src/Module/Contact.php:398 src/Module/Settings/Channels.php:145 msgid "Following" msgstr "A’ leantainn" -#: src/BaseModule.php:449 src/Content/Widget.php:242 -#: src/Module/Contact.php:426 +#: src/BaseModule.php:435 src/Content/Widget.php:220 +#: src/Module/Contact.php:401 msgid "Mutual friends" msgstr "" -#: src/BaseModule.php:457 +#: src/BaseModule.php:443 msgid "Common" msgstr "Cumanta" -#: src/Console/Addon.php:175 src/Console/Addon.php:199 +#: src/Console/Addon.php:161 src/Console/Addon.php:185 msgid "Addon not found" msgstr "Cha deach an tuilleadan a lorg" -#: src/Console/Addon.php:179 +#: src/Console/Addon.php:165 msgid "Addon already enabled" msgstr "Tha an tuilleadan an comas mu thràth" -#: src/Console/Addon.php:203 +#: src/Console/Addon.php:189 msgid "Addon already disabled" msgstr "Tha an tuilleadan à comas mu thràth" -#: src/Console/ArchiveContact.php:106 +#: src/Console/ArchiveContact.php:92 #, php-format msgid "Could not find any unarchived contact entry for this URL (%s)" msgstr "Cha do lorg sinn neach-aithne nach eil san tasg-lann dhan URL seo (%s)" -#: src/Console/ArchiveContact.php:109 +#: src/Console/ArchiveContact.php:95 msgid "The contact entries have been archived" msgstr "Chaidh an luchd-aithne a chur san tasg-lann" -#: src/Console/ClearAvatarCache.php:87 +#: src/Console/ClearAvatarCache.php:73 msgid "" "The avatar cache needs to be disabled in local.config.php to use this " "command." msgstr "" -#: src/Console/GlobalCommunityBlock.php:96 -#: src/Module/Moderation/Blocklist/Contact.php:65 +#: src/Console/GlobalCommunityBlock.php:82 +#: src/Module/Moderation/Blocklist/Contact.php:51 #, php-format msgid "Could not find any contact entry for this URL (%s)" msgstr "Cha do lorg sinn neach-aithne dhan URL seo (%s)" -#: src/Console/GlobalCommunityBlock.php:101 -#: src/Module/Moderation/Blocklist/Contact.php:82 +#: src/Console/GlobalCommunityBlock.php:87 +#: src/Module/Moderation/Blocklist/Contact.php:68 msgid "The contact has been blocked from the node" msgstr "Chaidh an neach-aithne a bhacadh on nòd" -#: src/Console/MergeContacts.php:75 +#: src/Console/MergeContacts.php:61 #, php-format msgid "%d %s, %d duplicates." msgstr "%d %s, dùblachaidhean: %d." -#: src/Console/MergeContacts.php:78 +#: src/Console/MergeContacts.php:64 #, php-format msgid "uri-id is empty for contact %s." msgstr "Tha uri-id falamh dhan neach-aithne %s." -#: src/Console/MergeContacts.php:91 +#: src/Console/MergeContacts.php:77 #, php-format msgid "No valid first contact found for uri-id %d." msgstr "Cha deach ciad neach-aithne dligheach a lorg dha uri-id %d." -#: src/Console/MergeContacts.php:102 +#: src/Console/MergeContacts.php:88 #, php-format msgid "Wrong duplicate found for uri-id %d in %d (url: %s != %s)." msgstr "Lorg sinn an dùblachadh ceàrr dha uri-id %d am broinn %d (url: %s != %s)." -#: src/Console/MergeContacts.php:106 +#: src/Console/MergeContacts.php:92 #, php-format msgid "Wrong duplicate found for uri-id %d in %d (nurl: %s != %s)." msgstr "Lorg sinn an dùblachadh ceàrr dha uri-id %d am broinn %d (nurl: %s != %s)." -#: src/Console/MergeContacts.php:142 +#: src/Console/MergeContacts.php:128 #, php-format msgid "Deletion of id %d failed" msgstr "Cha deach leinn id %d a sguabadh às" -#: src/Console/MergeContacts.php:144 +#: src/Console/MergeContacts.php:130 #, php-format msgid "Deletion of id %d was successful" msgstr "Chaidh id %d a sguabadh às" -#: src/Console/MergeContacts.php:150 +#: src/Console/MergeContacts.php:136 #, php-format msgid "Updating \"%s\" in \"%s\" from %d to %d" msgstr "Ag ùrachadh “%s” am broinn “%s” o %d gu %d" -#: src/Console/MergeContacts.php:152 +#: src/Console/MergeContacts.php:138 msgid " - found" msgstr " – air a lorg" -#: src/Console/MergeContacts.php:159 +#: src/Console/MergeContacts.php:145 msgid " - failed" msgstr " – air fàilligeadh" -#: src/Console/MergeContacts.php:161 +#: src/Console/MergeContacts.php:147 msgid " - success" msgstr " – chaidh leis" -#: src/Console/MergeContacts.php:165 +#: src/Console/MergeContacts.php:151 msgid " - deleted" msgstr " – air a sguabadh às" -#: src/Console/MergeContacts.php:168 +#: src/Console/MergeContacts.php:154 msgid " - done" msgstr " – deiseil" -#: src/Console/MoveToAvatarCache.php:91 +#: src/Console/MoveToAvatarCache.php:77 msgid "The avatar cache needs to be enabled to use this command." msgstr "Feumaidh tasgadan nan avatar a bhith an comas mus urrainn dhut an àithne seo a chleachdadh." -#: src/Console/MoveToAvatarCache.php:109 +#: src/Console/MoveToAvatarCache.php:95 #, php-format msgid "no resource in photo %s" msgstr "chan eil goireas san dealbh %s" -#: src/Console/MoveToAvatarCache.php:137 +#: src/Console/MoveToAvatarCache.php:123 #, php-format msgid "no photo with id %s" msgstr "chan eil dealbh leis an id %s ann" -#: src/Console/MoveToAvatarCache.php:146 +#: src/Console/MoveToAvatarCache.php:132 #, php-format msgid "no image data for photo with id %s" msgstr "chan eil dàta deilbh dhan dealbh leis an id %s ann" -#: src/Console/MoveToAvatarCache.php:155 +#: src/Console/MoveToAvatarCache.php:141 #, php-format msgid "invalid image for id %s" msgstr "dealbh mì-dhligheach dhan id %s" -#: src/Console/MoveToAvatarCache.php:168 +#: src/Console/MoveToAvatarCache.php:154 #, php-format msgid "Quit on invalid photo %s" msgstr "Fàg an-seo ma tha dealbh %s mì-dhligheach ann" -#: src/Console/PostUpdate.php:87 +#: src/Console/PostUpdate.php:73 #, php-format msgid "Post update version number has been set to %s." msgstr "Chaidh àireamh tionndadh an ùrachaidh aig a’ phost a shuidheachadh air %s." -#: src/Console/PostUpdate.php:95 +#: src/Console/PostUpdate.php:81 msgid "Check for pending update actions." msgstr "A’ sgrùdadh air gnìomhan ùrachaidh rin dèiligeadh." -#: src/Console/PostUpdate.php:97 +#: src/Console/PostUpdate.php:83 msgid "Done." msgstr "Deiseil." -#: src/Console/PostUpdate.php:99 +#: src/Console/PostUpdate.php:85 msgid "Execute pending post updates." msgstr "A’ gnìomhachadh nan ùrachaidhean air postaichean rin dèiligeadh." -#: src/Console/PostUpdate.php:105 +#: src/Console/PostUpdate.php:91 msgid "All pending post updates are done." msgstr "Tha na h-ùrachaidhean air postaichean rin dèiligeadh deiseil." -#: src/Console/User.php:158 src/Console/User.php:246 +#: src/Console/User.php:144 src/Console/User.php:232 msgid "Enter user nickname: " msgstr "Cuir a-steach far-ainm a’ chleachdaiche: " -#: src/Console/User.php:182 src/Model/User.php:847 -#: src/Module/Api/Twitter/ContactEndpoint.php:74 -#: src/Module/Moderation/Users/Active.php:71 -#: src/Module/Moderation/Users/Blocked.php:71 -#: src/Module/Moderation/Users/Index.php:78 -#: src/Module/Moderation/Users/Pending.php:67 +#: src/Console/User.php:168 src/Model/User.php:831 +#: src/Module/Api/Twitter/ContactEndpoint.php:60 +#: src/Module/Moderation/Users/Active.php:57 +#: src/Module/Moderation/Users/Blocked.php:57 +#: src/Module/Moderation/Users/Index.php:64 +#: src/Module/Moderation/Users/Pending.php:53 msgid "User not found" msgstr "Cha deach an cleachdaiche a lorg" -#: src/Console/User.php:202 +#: src/Console/User.php:188 msgid "Enter new password: " msgstr "Cuir a-steach am facal-faire ùr: " -#: src/Console/User.php:210 src/Module/Security/PasswordTooLong.php:69 -#: src/Module/Settings/Account.php:75 +#: src/Console/User.php:196 src/Module/Security/PasswordTooLong.php:55 +#: src/Module/Settings/Account.php:61 msgid "Password update failed. Please try again." msgstr "Dh’fhàillig ùrachadh an fhacail-fhaire. Feuch ris a-rithist." -#: src/Console/User.php:213 src/Module/Security/PasswordTooLong.php:72 -#: src/Module/Settings/Account.php:78 +#: src/Console/User.php:199 src/Module/Security/PasswordTooLong.php:58 +#: src/Module/Settings/Account.php:64 msgid "Password changed." msgstr "Chaidh am facal-faire atharrachadh." -#: src/Console/User.php:238 +#: src/Console/User.php:224 msgid "Enter user name: " msgstr "Cuir a-steach ainm-cleachdaiche: " -#: src/Console/User.php:254 +#: src/Console/User.php:240 msgid "Enter user email address: " msgstr "Cuir a-steach seòladh puist-d a’ chleachdaiche: " -#: src/Console/User.php:262 +#: src/Console/User.php:248 msgid "Enter a language (optional): " msgstr "Cuir a-steach cànan (roghainneil): " -#: src/Console/User.php:267 +#: src/Console/User.php:253 msgid "Enter URL of an image to use as avatar (optional): " msgstr "" -#: src/Console/User.php:292 +#: src/Console/User.php:278 msgid "User is not pending." msgstr "Chan eil an cleachdaiche ri dhèiligeadh." -#: src/Console/User.php:324 +#: src/Console/User.php:310 msgid "User has already been marked for deletion." msgstr "Chaidh comharra a chur mu thràth gun tèid an cleachdaiche a sguabadh às." -#: src/Console/User.php:329 +#: src/Console/User.php:315 #, php-format msgid "Type \"yes\" to delete %s" msgstr "" -#: src/Console/User.php:331 +#: src/Console/User.php:317 msgid "Deletion aborted." msgstr "Chaidh sgur dhen sguabadh às." -#: src/Console/User.php:456 +#: src/Console/User.php:442 msgid "Enter category: " msgstr "Cuir a-steach roinn-seòrsa: " -#: src/Console/User.php:466 +#: src/Console/User.php:452 msgid "Enter key: " msgstr "Cuir a-steach iuchair: " -#: src/Console/User.php:500 +#: src/Console/User.php:486 msgid "Enter value: " msgstr "Cuir a-steach luach: " -#: src/Content/BoundariesPager.php:116 src/Content/Pager.php:171 +#: src/Content/BoundariesPager.php:102 src/Content/Pager.php:157 msgid "newer" msgstr "nas ùire" -#: src/Content/BoundariesPager.php:124 src/Content/Pager.php:176 +#: src/Content/BoundariesPager.php:110 src/Content/Pager.php:162 msgid "older" msgstr "nas sine" -#: src/Content/ContactSelector.php:51 +#: src/Content/ContactSelector.php:37 msgid "Frequently" msgstr "Gu tric" -#: src/Content/ContactSelector.php:52 +#: src/Content/ContactSelector.php:38 msgid "Hourly" msgstr "Gach uair a thìde" -#: src/Content/ContactSelector.php:53 +#: src/Content/ContactSelector.php:39 msgid "Twice daily" msgstr "Dà thuras gach latha" -#: src/Content/ContactSelector.php:54 +#: src/Content/ContactSelector.php:40 msgid "Daily" msgstr "Gach latha" -#: src/Content/ContactSelector.php:55 +#: src/Content/ContactSelector.php:41 msgid "Weekly" msgstr "Gach seachdain" -#: src/Content/ContactSelector.php:56 +#: src/Content/ContactSelector.php:42 msgid "Monthly" msgstr "Gach mìos" -#: src/Content/ContactSelector.php:126 +#: src/Content/ContactSelector.php:112 msgid "DFRN" msgstr "DFRN" -#: src/Content/ContactSelector.php:127 +#: src/Content/ContactSelector.php:113 msgid "OStatus" msgstr "OStatus" -#: src/Content/ContactSelector.php:128 +#: src/Content/ContactSelector.php:114 msgid "RSS/Atom" msgstr "RSS/Atom" -#: src/Content/ContactSelector.php:129 -#: src/Module/Moderation/Users/Active.php:126 -#: src/Module/Moderation/Users/Blocked.php:126 -#: src/Module/Moderation/Users/Create.php:72 -#: src/Module/Moderation/Users/Deleted.php:83 -#: src/Module/Moderation/Users/Index.php:140 -#: src/Module/Moderation/Users/Index.php:160 -#: src/Module/Moderation/Users/Pending.php:99 +#: src/Content/ContactSelector.php:115 +#: src/Module/Moderation/Users/Active.php:112 +#: src/Module/Moderation/Users/Blocked.php:112 +#: src/Module/Moderation/Users/Create.php:58 +#: src/Module/Moderation/Users/Deleted.php:69 +#: src/Module/Moderation/Users/Index.php:126 +#: src/Module/Moderation/Users/Index.php:146 +#: src/Module/Moderation/Users/Pending.php:85 msgid "Email" msgstr "Post-d" -#: src/Content/ContactSelector.php:130 src/Module/Debug/Babel.php:315 +#: src/Content/ContactSelector.php:116 src/Module/Debug/Babel.php:301 msgid "Diaspora" msgstr "Diaspora*" -#: src/Content/ContactSelector.php:131 +#: src/Content/ContactSelector.php:117 msgid "Zot!" msgstr "Zot!" -#: src/Content/ContactSelector.php:132 +#: src/Content/ContactSelector.php:118 msgid "LinkedIn" msgstr "LinkedIn" -#: src/Content/ContactSelector.php:133 +#: src/Content/ContactSelector.php:119 msgid "XMPP/IM" msgstr "XMPP/IM" -#: src/Content/ContactSelector.php:134 +#: src/Content/ContactSelector.php:120 msgid "MySpace" msgstr "MySpace" -#: src/Content/ContactSelector.php:135 +#: src/Content/ContactSelector.php:121 msgid "Google+" msgstr "Google+" -#: src/Content/ContactSelector.php:136 +#: src/Content/ContactSelector.php:122 msgid "pump.io" msgstr "pump.io" -#: src/Content/ContactSelector.php:137 +#: src/Content/ContactSelector.php:123 msgid "Twitter" msgstr "Twitter" -#: src/Content/ContactSelector.php:138 +#: src/Content/ContactSelector.php:124 msgid "Discourse" msgstr "Discourse" -#: src/Content/ContactSelector.php:139 +#: src/Content/ContactSelector.php:125 msgid "Diaspora Connector" msgstr "Ceangladair diaspora*" -#: src/Content/ContactSelector.php:140 +#: src/Content/ContactSelector.php:126 msgid "GNU Social Connector" msgstr "Ceangladair GNU Social" -#: src/Content/ContactSelector.php:141 +#: src/Content/ContactSelector.php:127 msgid "ActivityPub" msgstr "ActivityPub" -#: src/Content/ContactSelector.php:142 +#: src/Content/ContactSelector.php:128 msgid "pnut" msgstr "pnut" -#: src/Content/ContactSelector.php:143 +#: src/Content/ContactSelector.php:129 msgid "Tumblr" msgstr "Tumblr" -#: src/Content/ContactSelector.php:144 +#: src/Content/ContactSelector.php:130 msgid "Bluesky" msgstr "Bluesky" -#: src/Content/ContactSelector.php:180 +#: src/Content/ContactSelector.php:166 #, php-format msgid "%s (via %s)" msgstr "%s (slighe %s)" -#: src/Content/Conversation.php:226 +#: src/Content/Conversation.php:212 msgid "and" msgstr "agus" -#: src/Content/Conversation.php:229 +#: src/Content/Conversation.php:215 #, php-format msgid "and %d other people" msgstr "agus %d eile" -#: src/Content/Conversation.php:235 +#: src/Content/Conversation.php:221 #, php-format msgid "%2$s likes this." msgid_plural "%2$s like this." @@ -1173,7 +1172,7 @@ msgstr[1] "’S toigh le %2$s seo." msgstr[2] "’S toigh le %2$s seo." msgstr[3] "’S toigh le %2$s seo." -#: src/Content/Conversation.php:237 +#: src/Content/Conversation.php:223 #, php-format msgid "%2$s doesn't like this." msgid_plural "%2$s don't like this." @@ -1182,7 +1181,7 @@ msgstr[1] "Cha toigh le %2$s seo." msgstr[2] "Cha toigh le %2$s seo." msgstr[3] "Cha toigh le %2$s seo." -#: src/Content/Conversation.php:239 +#: src/Content/Conversation.php:225 #, php-format msgid "%2$s attends." msgid_plural "%2$s attend." @@ -1191,7 +1190,7 @@ msgstr[1] "Bidh %2$s an làthair." msgstr[2] "Bidh %2$s an làthair." msgstr[3] "Bidh %2$s an làthair." -#: src/Content/Conversation.php:241 +#: src/Content/Conversation.php:227 #, php-format msgid "%2$s doesn't attend." msgid_plural "%2$s don't attend." @@ -1200,7 +1199,7 @@ msgstr[1] "Cha bhi %2$s an làthair." msgstr[2] "Cha bhi %2$s an làthair." msgstr[3] "Cha bhi %2$s an làthair." -#: src/Content/Conversation.php:243 +#: src/Content/Conversation.php:229 #, php-format msgid "%2$s attends maybe." msgid_plural "%2$s attend maybe." @@ -1209,7 +1208,7 @@ msgstr[1] "’S dòcha gum bi %2$s an làthair." msgstr[2] "’S dòcha gum bi %2$s an làthair." msgstr[3] "’S dòcha gum bi %2$s an làthair." -#: src/Content/Conversation.php:245 +#: src/Content/Conversation.php:231 #, php-format msgid "%2$s reshared this." msgid_plural "%2$s reshared this." @@ -1218,7 +1217,7 @@ msgstr[1] "Co-roinn %2$s seo." msgstr[2] "Co-roinn %2$s seo." msgstr[3] "Co-roinn %2$s seo." -#: src/Content/Conversation.php:276 +#: src/Content/Conversation.php:262 #, php-format msgid " likes this" msgid_plural " like this" @@ -1227,7 +1226,7 @@ msgstr[1] "’S toigh le seo" msgstr[2] "’S toigh le seo" msgstr[3] "’S toigh le seo" -#: src/Content/Conversation.php:279 +#: src/Content/Conversation.php:265 #, php-format msgid " doesn't like this" msgid_plural " don't like this" @@ -1236,7 +1235,7 @@ msgstr[1] "Cha toigh le seo" msgstr[2] "Cha toigh le seo" msgstr[3] "Cha toigh le seo" -#: src/Content/Conversation.php:282 +#: src/Content/Conversation.php:268 #, php-format msgid " attends" msgid_plural " attend" @@ -1245,7 +1244,7 @@ msgstr[1] "Bidh an làthair" msgstr[2] "Bidh an làthair" msgstr[3] "Bidh an làthair" -#: src/Content/Conversation.php:285 +#: src/Content/Conversation.php:271 #, php-format msgid " doesn't attend" msgid_plural " don't attend" @@ -1254,7 +1253,7 @@ msgstr[1] "Cha bhi an làthair" msgstr[2] "Cha bhi an làthair" msgstr[3] "Cha bhi an làthair" -#: src/Content/Conversation.php:288 +#: src/Content/Conversation.php:274 #, php-format msgid " attends maybe" msgid_plural " attend maybe" @@ -1263,7 +1262,7 @@ msgstr[1] "’S dòcha gum bi an làt msgstr[2] "’S dòcha gum bi an làthair" msgstr[3] "’S dòcha gum bi an làthair" -#: src/Content/Conversation.php:291 +#: src/Content/Conversation.php:277 #, php-format msgid " reshared this" msgid_plural " reshared this" @@ -1272,1099 +1271,1099 @@ msgstr[1] "Cho-roinn seo" msgstr[2] "Cho-roinn seo" msgstr[3] "Cho-roinn seo" -#: src/Content/Conversation.php:337 +#: src/Content/Conversation.php:323 msgid "Visible to everybody" msgstr "Chì a h-uile duine e" -#: src/Content/Conversation.php:338 src/Module/Item/Compose.php:207 -#: src/Object/Post.php:1171 +#: src/Content/Conversation.php:324 src/Module/Item/Compose.php:193 +#: src/Object/Post.php:1157 msgid "Please enter a image/video/audio/webpage URL:" msgstr "Cuir a-steach URL deilbh/video/fuaime/làraich-lìn:" -#: src/Content/Conversation.php:339 +#: src/Content/Conversation.php:325 msgid "Tag term:" msgstr "Teirm tagaidh:" -#: src/Content/Conversation.php:340 src/Module/Filer/SaveTag.php:73 +#: src/Content/Conversation.php:326 src/Module/Filer/SaveTag.php:59 msgid "Save to Folder:" msgstr "Sàbhail gu pasgan:" -#: src/Content/Conversation.php:341 +#: src/Content/Conversation.php:327 msgid "Where are you right now?" msgstr "Càit a bheil thu an-dràsta?" -#: src/Content/Conversation.php:342 +#: src/Content/Conversation.php:328 msgid "Delete item(s)?" msgstr "An sguab thu seo às?" -#: src/Content/Conversation.php:354 src/Module/Item/Compose.php:182 +#: src/Content/Conversation.php:340 src/Module/Item/Compose.php:168 msgid "Created at" msgstr "Air a chruthachadh" -#: src/Content/Conversation.php:364 +#: src/Content/Conversation.php:350 msgid "New Post" msgstr "Post ùr" -#: src/Content/Conversation.php:367 +#: src/Content/Conversation.php:353 msgid "Share" msgstr "Co-roinn" -#: src/Content/Conversation.php:370 src/Module/Post/Edit.php:132 +#: src/Content/Conversation.php:356 src/Module/Post/Edit.php:118 msgid "upload photo" msgstr "luchdaich suas dealbh" -#: src/Content/Conversation.php:371 src/Module/Post/Edit.php:133 +#: src/Content/Conversation.php:357 src/Module/Post/Edit.php:119 msgid "Attach file" msgstr "Ceangail faidhle ris" -#: src/Content/Conversation.php:372 src/Module/Post/Edit.php:134 +#: src/Content/Conversation.php:358 src/Module/Post/Edit.php:120 msgid "attach file" msgstr "ceangail faidhle ris" -#: src/Content/Conversation.php:373 src/Module/Item/Compose.php:197 -#: src/Module/Post/Edit.php:171 src/Object/Post.php:1161 +#: src/Content/Conversation.php:359 src/Module/Item/Compose.php:183 +#: src/Module/Post/Edit.php:157 src/Object/Post.php:1147 msgid "Bold" msgstr "Trom" -#: src/Content/Conversation.php:374 src/Module/Item/Compose.php:198 -#: src/Module/Post/Edit.php:172 src/Object/Post.php:1162 +#: src/Content/Conversation.php:360 src/Module/Item/Compose.php:184 +#: src/Module/Post/Edit.php:158 src/Object/Post.php:1148 msgid "Italic" msgstr "Eadailteach" -#: src/Content/Conversation.php:375 src/Module/Item/Compose.php:199 -#: src/Module/Post/Edit.php:173 src/Object/Post.php:1163 +#: src/Content/Conversation.php:361 src/Module/Item/Compose.php:185 +#: src/Module/Post/Edit.php:159 src/Object/Post.php:1149 msgid "Underline" msgstr "Loidhne fodha" -#: src/Content/Conversation.php:376 src/Module/Item/Compose.php:200 -#: src/Module/Post/Edit.php:174 src/Object/Post.php:1165 +#: src/Content/Conversation.php:362 src/Module/Item/Compose.php:186 +#: src/Module/Post/Edit.php:160 src/Object/Post.php:1151 msgid "Quote" msgstr "Iomradh" -#: src/Content/Conversation.php:377 src/Module/Item/Compose.php:201 -#: src/Module/Post/Edit.php:175 src/Object/Post.php:1166 +#: src/Content/Conversation.php:363 src/Module/Item/Compose.php:187 +#: src/Module/Post/Edit.php:161 src/Object/Post.php:1152 msgid "Add emojis" msgstr "Cuir Emojis ris" -#: src/Content/Conversation.php:378 src/Module/Item/Compose.php:202 -#: src/Object/Post.php:1164 +#: src/Content/Conversation.php:364 src/Module/Item/Compose.php:188 +#: src/Object/Post.php:1150 msgid "Content Warning" msgstr "Rabhadh susbainte" -#: src/Content/Conversation.php:379 src/Module/Item/Compose.php:203 -#: src/Module/Post/Edit.php:176 src/Object/Post.php:1167 +#: src/Content/Conversation.php:365 src/Module/Item/Compose.php:189 +#: src/Module/Post/Edit.php:162 src/Object/Post.php:1153 msgid "Code" msgstr "Còd" -#: src/Content/Conversation.php:380 src/Module/Item/Compose.php:204 -#: src/Object/Post.php:1168 +#: src/Content/Conversation.php:366 src/Module/Item/Compose.php:190 +#: src/Object/Post.php:1154 msgid "Image" msgstr "Dealbh" -#: src/Content/Conversation.php:381 src/Module/Item/Compose.php:205 -#: src/Module/Post/Edit.php:177 src/Object/Post.php:1169 +#: src/Content/Conversation.php:367 src/Module/Item/Compose.php:191 +#: src/Module/Post/Edit.php:163 src/Object/Post.php:1155 msgid "Link" msgstr "Ceangal" -#: src/Content/Conversation.php:382 src/Module/Item/Compose.php:206 -#: src/Module/Post/Edit.php:178 src/Object/Post.php:1170 +#: src/Content/Conversation.php:368 src/Module/Item/Compose.php:192 +#: src/Module/Post/Edit.php:164 src/Object/Post.php:1156 msgid "Link or Media" msgstr "Ceangal no meadhan" -#: src/Content/Conversation.php:383 +#: src/Content/Conversation.php:369 msgid "Video" msgstr "Video" -#: src/Content/Conversation.php:384 src/Module/Item/Compose.php:209 -#: src/Module/Post/Edit.php:141 +#: src/Content/Conversation.php:370 src/Module/Item/Compose.php:195 +#: src/Module/Post/Edit.php:127 msgid "Set your location" msgstr "Suidhich d’ ionad" -#: src/Content/Conversation.php:385 src/Module/Post/Edit.php:142 +#: src/Content/Conversation.php:371 src/Module/Post/Edit.php:128 msgid "set location" msgstr "suidhich d’ ionad" -#: src/Content/Conversation.php:386 src/Module/Post/Edit.php:143 +#: src/Content/Conversation.php:372 src/Module/Post/Edit.php:129 msgid "Clear browser location" msgstr "Falamhaich ionad a’ bhrabhsair" -#: src/Content/Conversation.php:387 src/Module/Post/Edit.php:144 +#: src/Content/Conversation.php:373 src/Module/Post/Edit.php:130 msgid "clear location" msgstr "falamhaich an ionad" -#: src/Content/Conversation.php:389 src/Module/Item/Compose.php:214 -#: src/Module/Post/Edit.php:157 +#: src/Content/Conversation.php:375 src/Module/Item/Compose.php:200 +#: src/Module/Post/Edit.php:143 msgid "Set title" msgstr "Suidhich an tiotal" -#: src/Content/Conversation.php:391 src/Module/Item/Compose.php:215 -#: src/Module/Post/Edit.php:159 +#: src/Content/Conversation.php:377 src/Module/Item/Compose.php:201 +#: src/Module/Post/Edit.php:145 msgid "Categories (comma-separated list)" msgstr "Roinnean-seòrsa (liosta sgaraichte le cromagan)." -#: src/Content/Conversation.php:396 src/Module/Item/Compose.php:231 +#: src/Content/Conversation.php:382 src/Module/Item/Compose.php:217 msgid "Scheduled at" msgstr "Air an sgeideal" -#: src/Content/Conversation.php:401 src/Module/Post/Edit.php:146 +#: src/Content/Conversation.php:387 src/Module/Post/Edit.php:132 msgid "Permission settings" msgstr "Roghainnean cead" -#: src/Content/Conversation.php:410 src/Module/Post/Edit.php:155 +#: src/Content/Conversation.php:396 src/Module/Post/Edit.php:141 msgid "Public post" msgstr "Post poblach" -#: src/Content/Conversation.php:424 src/Content/Widget/VCard.php:131 -#: src/Model/Profile.php:476 src/Module/Admin/Logs/View.php:94 -#: src/Module/Post/Edit.php:181 +#: src/Content/Conversation.php:410 src/Content/Widget/VCard.php:117 +#: src/Model/Profile.php:462 src/Module/Admin/Logs/View.php:80 +#: src/Module/Post/Edit.php:167 msgid "Message" msgstr "Teachdaireachd" -#: src/Content/Conversation.php:425 src/Module/Post/Edit.php:182 -#: src/Module/Settings/TwoFactor/Trusted.php:143 +#: src/Content/Conversation.php:411 src/Module/Post/Edit.php:168 +#: src/Module/Settings/TwoFactor/Trusted.php:129 msgid "Browser" msgstr "Brabhsair" -#: src/Content/Conversation.php:427 src/Module/Post/Edit.php:185 +#: src/Content/Conversation.php:413 src/Module/Post/Edit.php:171 msgid "Open Compose page" msgstr "Fosgail duilleag an sgrìobhaidh" -#: src/Content/Conversation.php:594 +#: src/Content/Conversation.php:580 msgid "remove" msgstr "thoir air falbh" -#: src/Content/Conversation.php:598 +#: src/Content/Conversation.php:584 msgid "Delete Selected Items" msgstr "Sguab às na nithean a thagh thu" -#: src/Content/Conversation.php:726 src/Content/Conversation.php:729 -#: src/Content/Conversation.php:732 src/Content/Conversation.php:735 -#: src/Content/Conversation.php:738 +#: src/Content/Conversation.php:712 src/Content/Conversation.php:715 +#: src/Content/Conversation.php:718 src/Content/Conversation.php:721 +#: src/Content/Conversation.php:724 #, php-format msgid "You had been addressed (%s)." msgstr "Chaidh d’ ainmeachadh (%s)." -#: src/Content/Conversation.php:741 +#: src/Content/Conversation.php:727 #, php-format msgid "You are following %s." msgstr "Tha thu a’ leantainn air %s." -#: src/Content/Conversation.php:746 +#: src/Content/Conversation.php:732 #, php-format msgid "You subscribed to %s." msgstr "" -#: src/Content/Conversation.php:748 +#: src/Content/Conversation.php:734 msgid "You subscribed to one or more tags in this post." msgstr "Dh’fho-sgrìobh thu air taga no dhà sa phost seo." -#: src/Content/Conversation.php:768 +#: src/Content/Conversation.php:754 #, php-format msgid "%s reshared this." msgstr "Co-roinn %s seo." -#: src/Content/Conversation.php:770 +#: src/Content/Conversation.php:756 msgid "Reshared" msgstr "’Ga cho-roinneadh" -#: src/Content/Conversation.php:770 +#: src/Content/Conversation.php:756 #, php-format msgid "Reshared by %s <%s>" msgstr "’Ga cho-roinneadh le %s <%s>" -#: src/Content/Conversation.php:773 +#: src/Content/Conversation.php:759 #, php-format msgid "%s is participating in this thread." msgstr "Tha %s a’ gabhail pàirt san t-snàithlean seo." -#: src/Content/Conversation.php:776 +#: src/Content/Conversation.php:762 msgid "Stored for general reasons" msgstr "Chaidh a stòradh air adhbharan coitcheann" -#: src/Content/Conversation.php:779 +#: src/Content/Conversation.php:765 msgid "Global post" msgstr "Post co-naisgte" -#: src/Content/Conversation.php:782 +#: src/Content/Conversation.php:768 msgid "Sent via an relay server" msgstr "Chaidh a chur slighe frithealaiche ath-sheachadain" -#: src/Content/Conversation.php:782 +#: src/Content/Conversation.php:768 #, php-format msgid "Sent via the relay server %s <%s>" msgstr "Chaidh a chur slighe frithealaiche ath-sheachadain %s <%s>" -#: src/Content/Conversation.php:785 +#: src/Content/Conversation.php:771 msgid "Fetched" msgstr "Air fhaighinn" -#: src/Content/Conversation.php:785 +#: src/Content/Conversation.php:771 #, php-format msgid "Fetched because of %s <%s>" msgstr "Air fhaighinn ri linn %s <%s>" -#: src/Content/Conversation.php:788 +#: src/Content/Conversation.php:774 msgid "Stored because of a child post to complete this thread." msgstr "Chaidh a stòradh air sàilleibh post-cloinne airson an snàithlean iomlain fhaighinn." -#: src/Content/Conversation.php:791 +#: src/Content/Conversation.php:777 msgid "Local delivery" msgstr "Lìbhrigeadh ionadail" -#: src/Content/Conversation.php:794 +#: src/Content/Conversation.php:780 msgid "Stored because of your activity (like, comment, star, ...)" msgstr "Chaidh a stòradh air sàilleibh do ghnìomhachd (’s toigh, beachd, rionnag, …)" -#: src/Content/Conversation.php:797 +#: src/Content/Conversation.php:783 msgid "Distributed" msgstr "Sgaoilte" -#: src/Content/Conversation.php:800 +#: src/Content/Conversation.php:786 msgid "Pushed to us" msgstr "Air a phutadh thugainne" -#: src/Content/Conversation.php:1518 src/Object/Post.php:261 +#: src/Content/Conversation.php:1504 src/Object/Post.php:247 msgid "Pinned item" msgstr "Nì prìnichte" -#: src/Content/Conversation.php:1535 src/Object/Post.php:555 -#: src/Object/Post.php:556 +#: src/Content/Conversation.php:1521 src/Object/Post.php:541 +#: src/Object/Post.php:542 #, php-format msgid "View %s's profile @ %s" msgstr "Seall a’ phròifil aig %s @ %s" -#: src/Content/Conversation.php:1549 src/Object/Post.php:543 +#: src/Content/Conversation.php:1535 src/Object/Post.php:529 msgid "Categories:" msgstr "Roinnean-seòrsa:" -#: src/Content/Conversation.php:1550 src/Object/Post.php:544 +#: src/Content/Conversation.php:1536 src/Object/Post.php:530 msgid "Filed under:" msgstr "Air a chlàradh fo:" -#: src/Content/Conversation.php:1558 src/Object/Post.php:570 +#: src/Content/Conversation.php:1544 src/Object/Post.php:556 #, php-format msgid "%s from %s" msgstr "%s o %s" -#: src/Content/Conversation.php:1574 +#: src/Content/Conversation.php:1560 msgid "View in context" msgstr "Seall le co-theacsa" -#: src/Content/Conversation/Factory/Channel.php:42 +#: src/Content/Conversation/Factory/Channel.php:28 msgid "For you" msgstr "" -#: src/Content/Conversation/Factory/Channel.php:42 +#: src/Content/Conversation/Factory/Channel.php:28 msgid "Posts from contacts you interact with and who interact with you" msgstr "" -#: src/Content/Conversation/Factory/Channel.php:43 +#: src/Content/Conversation/Factory/Channel.php:29 msgid "Discover" msgstr "" -#: src/Content/Conversation/Factory/Channel.php:43 +#: src/Content/Conversation/Factory/Channel.php:29 msgid "Posts from accounts that you don't follow, but that you might like." msgstr "" -#: src/Content/Conversation/Factory/Channel.php:44 +#: src/Content/Conversation/Factory/Channel.php:30 msgid "What's Hot" msgstr "" -#: src/Content/Conversation/Factory/Channel.php:44 +#: src/Content/Conversation/Factory/Channel.php:30 msgid "Posts with a lot of interactions" msgstr "" -#: src/Content/Conversation/Factory/Channel.php:45 +#: src/Content/Conversation/Factory/Channel.php:31 #, php-format msgid "Posts in %s" msgstr "" -#: src/Content/Conversation/Factory/Channel.php:46 +#: src/Content/Conversation/Factory/Channel.php:32 msgid "Posts from your followers that you don't follow" msgstr "" -#: src/Content/Conversation/Factory/Channel.php:47 +#: src/Content/Conversation/Factory/Channel.php:33 msgid "Sharers of sharers" msgstr "" -#: src/Content/Conversation/Factory/Channel.php:47 +#: src/Content/Conversation/Factory/Channel.php:33 msgid "Posts from accounts that are followed by accounts that you follow" msgstr "" -#: src/Content/Conversation/Factory/Channel.php:48 +#: src/Content/Conversation/Factory/Channel.php:34 msgid "Quiet sharers" msgstr "" -#: src/Content/Conversation/Factory/Channel.php:48 +#: src/Content/Conversation/Factory/Channel.php:34 msgid "Posts from accounts that you follow but who don't post very often" msgstr "" -#: src/Content/Conversation/Factory/Channel.php:49 -#: src/Module/Settings/Channels.php:199 src/Module/Settings/Channels.php:220 +#: src/Content/Conversation/Factory/Channel.php:35 +#: src/Module/Settings/Channels.php:185 src/Module/Settings/Channels.php:206 msgid "Images" msgstr "" -#: src/Content/Conversation/Factory/Channel.php:49 +#: src/Content/Conversation/Factory/Channel.php:35 msgid "Posts with images" msgstr "" -#: src/Content/Conversation/Factory/Channel.php:50 -#: src/Module/Settings/Channels.php:201 src/Module/Settings/Channels.php:222 +#: src/Content/Conversation/Factory/Channel.php:36 +#: src/Module/Settings/Channels.php:187 src/Module/Settings/Channels.php:208 msgid "Audio" msgstr "" -#: src/Content/Conversation/Factory/Channel.php:50 +#: src/Content/Conversation/Factory/Channel.php:36 msgid "Posts with audio" msgstr "" -#: src/Content/Conversation/Factory/Channel.php:51 -#: src/Module/Settings/Channels.php:200 src/Module/Settings/Channels.php:221 +#: src/Content/Conversation/Factory/Channel.php:37 +#: src/Module/Settings/Channels.php:186 src/Module/Settings/Channels.php:207 msgid "Videos" msgstr "" -#: src/Content/Conversation/Factory/Channel.php:51 +#: src/Content/Conversation/Factory/Channel.php:37 msgid "Posts with videos" msgstr "" -#: src/Content/Conversation/Factory/Community.php:43 +#: src/Content/Conversation/Factory/Community.php:29 msgid "Local Community" msgstr "Coimhearsnachd ionadail" -#: src/Content/Conversation/Factory/Community.php:43 +#: src/Content/Conversation/Factory/Community.php:29 msgid "Posts from local users on this server" msgstr "Postaichean o luchd-cleachdaidh ionadail an fhrithealaiche seo" -#: src/Content/Conversation/Factory/Community.php:47 -#: src/Module/Settings/Channels.php:150 src/Module/Settings/Channels.php:155 +#: src/Content/Conversation/Factory/Community.php:33 +#: src/Module/Settings/Channels.php:136 src/Module/Settings/Channels.php:141 msgid "Global Community" msgstr "Coimhearsnachd cho-naisgte" -#: src/Content/Conversation/Factory/Community.php:47 +#: src/Content/Conversation/Factory/Community.php:33 msgid "Posts from users of the whole federated network" msgstr "Postaichean on luchd-cleachdaidh air an lìonra cho-naisgte gu lèir" -#: src/Content/Conversation/Factory/Network.php:38 -#: src/Module/Settings/Channels.php:156 +#: src/Content/Conversation/Factory/Network.php:24 +#: src/Module/Settings/Channels.php:142 msgid "Latest Activity" msgstr "A’ ghnìomhachd as ùire" -#: src/Content/Conversation/Factory/Network.php:38 +#: src/Content/Conversation/Factory/Network.php:24 msgid "Sort by latest activity" msgstr "Seòrsaich a-rèir na gnìomhachd as ùire" -#: src/Content/Conversation/Factory/Network.php:39 -#: src/Module/Settings/Channels.php:157 +#: src/Content/Conversation/Factory/Network.php:25 +#: src/Module/Settings/Channels.php:143 msgid "Latest Posts" msgstr "Na postaichean as ùire" -#: src/Content/Conversation/Factory/Network.php:39 +#: src/Content/Conversation/Factory/Network.php:25 msgid "Sort by post received date" msgstr "Seòrsaich a-rèir ceann-là faighinn nam post" -#: src/Content/Conversation/Factory/Network.php:40 -#: src/Module/Settings/Channels.php:158 +#: src/Content/Conversation/Factory/Network.php:26 +#: src/Module/Settings/Channels.php:144 msgid "Latest Creation" msgstr "An cruthachadh as ùire" -#: src/Content/Conversation/Factory/Network.php:40 +#: src/Content/Conversation/Factory/Network.php:26 msgid "Sort by post creation date" msgstr "Seòrsaich a-rèir ceann-là cruthachadh nam post" -#: src/Content/Conversation/Factory/Network.php:41 -#: src/Module/Settings/Profile/Index.php:265 +#: src/Content/Conversation/Factory/Network.php:27 +#: src/Module/Settings/Profile/Index.php:251 msgid "Personal" msgstr "Pearsanta" -#: src/Content/Conversation/Factory/Network.php:41 +#: src/Content/Conversation/Factory/Network.php:27 msgid "Posts that mention or involve you" msgstr "Postaichean le iomradh ort no sa bheil thu an sàs" -#: src/Content/Conversation/Factory/Network.php:42 src/Object/Post.php:411 +#: src/Content/Conversation/Factory/Network.php:28 src/Object/Post.php:397 msgid "Starred" msgstr "Rionnag" -#: src/Content/Conversation/Factory/Network.php:42 +#: src/Content/Conversation/Factory/Network.php:28 msgid "Favourite Posts" msgstr "Na postaichean as annsa" -#: src/Content/Feature.php:107 +#: src/Content/Feature.php:93 msgid "General Features" msgstr "Gleusan coitcheann" -#: src/Content/Feature.php:109 +#: src/Content/Feature.php:95 msgid "Photo Location" msgstr "Ionad an deilbh" -#: src/Content/Feature.php:109 +#: src/Content/Feature.php:95 msgid "" "Photo metadata is normally stripped. This extracts the location (if present)" " prior to stripping metadata and links it to a map." msgstr "Thèid meata-dàta nan dealbhan a rùsgadh air falbh. Togaidh seo an t-ionad (ma tha gin ann) mus dèid am meata-dàta a rùsgadh is thèid a cheangal ri mapa." -#: src/Content/Feature.php:110 +#: src/Content/Feature.php:96 msgid "Display the community in the navigation" msgstr "" -#: src/Content/Feature.php:110 +#: src/Content/Feature.php:96 msgid "" "If enabled, the community can be accessed via the navigation menu. " "Independent from this setting, the community timelines can always be " "accessed via the channels." msgstr "" -#: src/Content/Feature.php:115 +#: src/Content/Feature.php:101 msgid "Post Composition Features" msgstr "Gleusan sgrìobhadh puist" -#: src/Content/Feature.php:116 +#: src/Content/Feature.php:102 msgid "Explicit Mentions" msgstr "Iomraidhean soilleir" -#: src/Content/Feature.php:116 +#: src/Content/Feature.php:102 msgid "" "Add explicit mentions to comment box for manual control over who gets " "mentioned in replies." msgstr "Cuir iomraidhean soilleir ri bogsa a’ bheachd airson smachd a làimh air cò air a thèid iomradh a dhèanamh ann am freagairtean." -#: src/Content/Feature.php:117 +#: src/Content/Feature.php:103 msgid "Add an abstract from ActivityPub content warnings" msgstr "Cuir geàrr-chunntas ris o rabhaidhean susbainte ActivityPub" -#: src/Content/Feature.php:117 +#: src/Content/Feature.php:103 msgid "" "Add an abstract when commenting on ActivityPub posts with a content warning." " Abstracts are displayed as content warning on systems like Mastodon or " "Pleroma." msgstr "Cuir geàrr-chunntas ris nuair a bhios tu a’ beachdachadh air postaichean ActivityPub le rabhadh susbainte riutha. Thèid geàrr-chunntasan a shealltainn ’nan rabhaidhean susbainte air siostaman mar Mastodon no Pleroma." -#: src/Content/Feature.php:122 +#: src/Content/Feature.php:108 msgid "Post/Comment Tools" msgstr "Innealan postaidh/beachdachaidh" -#: src/Content/Feature.php:123 +#: src/Content/Feature.php:109 msgid "Post Categories" msgstr "Roinnean-seòrsa nam post" -#: src/Content/Feature.php:123 +#: src/Content/Feature.php:109 msgid "Add categories to your posts" msgstr "Cuir roinnean-seòrsa ris na postaichean agad" -#: src/Content/Feature.php:128 +#: src/Content/Feature.php:114 msgid "Network Widgets" msgstr "" -#: src/Content/Feature.php:129 src/Content/Widget.php:216 -#: src/Model/Circle.php:601 src/Module/Contact.php:406 -#: src/Module/Welcome.php:76 +#: src/Content/Feature.php:115 src/Content/Widget.php:194 +#: src/Model/Circle.php:587 src/Module/Contact.php:381 +#: src/Module/Welcome.php:62 msgid "Circles" msgstr "Cearcallan" -#: src/Content/Feature.php:129 +#: src/Content/Feature.php:115 msgid "" "Display posts that have been created by accounts of the selected circle." msgstr "" -#: src/Content/Feature.php:130 src/Content/GroupManager.php:147 -#: src/Content/Nav.php:278 src/Content/Text/HTML.php:882 -#: src/Content/Widget.php:538 src/Model/User.php:1413 +#: src/Content/Feature.php:116 src/Content/GroupManager.php:133 +#: src/Content/Nav.php:264 src/Content/Text/HTML.php:868 +#: src/Content/Widget.php:516 src/Model/User.php:1390 msgid "Groups" msgstr "Buidhnean" -#: src/Content/Feature.php:130 +#: src/Content/Feature.php:116 msgid "Display posts that have been distributed by the selected group." msgstr "" -#: src/Content/Feature.php:131 src/Content/Widget.php:507 +#: src/Content/Feature.php:117 src/Content/Widget.php:485 msgid "Archives" msgstr "Tasg-lannan" -#: src/Content/Feature.php:131 +#: src/Content/Feature.php:117 msgid "Display an archive where posts can be selected by month and year." msgstr "" -#: src/Content/Feature.php:132 src/Content/Widget.php:289 +#: src/Content/Feature.php:118 src/Content/Widget.php:267 msgid "Protocols" msgstr "Pròtacalan" -#: src/Content/Feature.php:132 +#: src/Content/Feature.php:118 msgid "Display posts with the selected protocols." msgstr "" -#: src/Content/Feature.php:133 src/Content/Widget.php:544 -#: src/Module/Settings/Account.php:447 +#: src/Content/Feature.php:119 src/Content/Widget.php:522 +#: src/Module/Settings/Account.php:433 msgid "Account Types" msgstr "Seòrsaichean chunntasan" -#: src/Content/Feature.php:133 +#: src/Content/Feature.php:119 msgid "Display posts done by accounts with the selected account type." msgstr "" -#: src/Content/Feature.php:134 src/Content/Widget.php:593 -#: src/Module/Admin/Site.php:474 src/Module/BaseSettings.php:125 -#: src/Module/Settings/Channels.php:225 src/Module/Settings/Display.php:315 +#: src/Content/Feature.php:120 src/Content/Widget.php:571 +#: src/Module/Admin/Site.php:464 src/Module/BaseSettings.php:111 +#: src/Module/Settings/Channels.php:211 src/Module/Settings/Display.php:301 msgid "Channels" msgstr "" -#: src/Content/Feature.php:134 +#: src/Content/Feature.php:120 msgid "Display posts in the system channels and user defined channels." msgstr "" -#: src/Content/Feature.php:135 src/Content/Widget/SavedSearches.php:60 +#: src/Content/Feature.php:121 src/Content/Widget/SavedSearches.php:46 msgid "Saved Searches" msgstr "Lorgan a shàbhail thu" -#: src/Content/Feature.php:135 +#: src/Content/Feature.php:121 msgid "Display posts that contain subscribed hashtags." msgstr "" -#: src/Content/Feature.php:136 src/Content/Widget.php:319 +#: src/Content/Feature.php:122 src/Content/Widget.php:297 msgid "Saved Folders" msgstr "Pasganan air an sàbhaladh" -#: src/Content/Feature.php:136 +#: src/Content/Feature.php:122 msgid "Display a list of folders in which posts are stored." msgstr "" -#: src/Content/Feature.php:137 src/Module/Conversation/Timeline.php:200 +#: src/Content/Feature.php:123 src/Module/Conversation/Timeline.php:186 msgid "Own Contacts" msgstr "An luchd-aithne agadsa" -#: src/Content/Feature.php:137 +#: src/Content/Feature.php:123 msgid "" "Include or exclude posts from subscribed accounts. This widget is not " "visible on all channels." msgstr "" -#: src/Content/Feature.php:138 +#: src/Content/Feature.php:124 msgid "Trending Tags" msgstr "Tagaichean a’ treandadh" -#: src/Content/Feature.php:138 +#: src/Content/Feature.php:124 msgid "Display a list of the most popular tags in recent public posts." msgstr "" -#: src/Content/Feature.php:143 +#: src/Content/Feature.php:129 msgid "Advanced Profile Settings" msgstr "Roghainnean adhartach na pròifile" -#: src/Content/Feature.php:144 +#: src/Content/Feature.php:130 msgid "Tag Cloud" msgstr "Neul nan tagaichean" -#: src/Content/Feature.php:144 +#: src/Content/Feature.php:130 msgid "Provide a personal tag cloud on your profile page" msgstr "Solair neul thagaichean pearsanta air duilleag do phròifile" -#: src/Content/Feature.php:145 +#: src/Content/Feature.php:131 msgid "Display Membership Date" msgstr "Seall ceann-là na ballrachd" -#: src/Content/Feature.php:145 +#: src/Content/Feature.php:131 msgid "Display membership date in profile" msgstr "Seall ceann-là na ballrachd sa phròifil" -#: src/Content/Feature.php:150 +#: src/Content/Feature.php:136 msgid "Advanced Calendar Settings" msgstr "Roghainnean adhartach a’ mhìosachain" -#: src/Content/Feature.php:151 +#: src/Content/Feature.php:137 msgid "Allow anonymous access to your calendar" msgstr "Ceadaich inntrigeadh gun ainm dhan mhìosachan agad" -#: src/Content/Feature.php:151 +#: src/Content/Feature.php:137 msgid "" "Allows anonymous visitors to consult your calendar and your public events. " "Contact birthday events are private to you." msgstr "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:149 +#: src/Content/GroupManager.php:135 msgid "External link to group" msgstr "Ceangal cèin dhan bhuidheann" -#: src/Content/GroupManager.php:153 src/Content/Widget.php:513 +#: src/Content/GroupManager.php:139 src/Content/Widget.php:491 msgid "show less" msgstr "seall nas lugha dheth" -#: src/Content/GroupManager.php:154 src/Content/Widget.php:411 -#: src/Content/Widget.php:514 +#: src/Content/GroupManager.php:140 src/Content/Widget.php:389 +#: src/Content/Widget.php:492 msgid "show more" msgstr "seall barrachd dheth" -#: src/Content/GroupManager.php:155 +#: src/Content/GroupManager.php:141 msgid "Create new group" msgstr "Cruthaich buidheann ùr" -#: src/Content/Item.php:331 src/Model/Item.php:3304 +#: src/Content/Item.php:317 src/Model/Item.php:3272 msgid "event" msgstr "tachartas" -#: src/Content/Item.php:334 src/Content/Item.php:344 +#: src/Content/Item.php:320 src/Content/Item.php:330 msgid "status" msgstr "staid" -#: src/Content/Item.php:340 src/Model/Item.php:3306 -#: src/Module/Post/Tag/Add.php:123 +#: src/Content/Item.php:326 src/Model/Item.php:3274 +#: src/Module/Post/Tag/Add.php:109 msgid "photo" msgstr "dealbh" -#: src/Content/Item.php:354 src/Module/Post/Tag/Add.php:141 +#: src/Content/Item.php:340 src/Module/Post/Tag/Add.php:127 #, php-format msgid "%1$s tagged %2$s's %3$s with %4$s" msgstr "Chuir %1$s taga %4$s ri %3$s aig %2$s" -#: src/Content/Item.php:428 view/theme/frio/theme.php:265 +#: src/Content/Item.php:414 view/theme/frio/theme.php:253 msgid "Follow Thread" msgstr "Lean air an t-snàithlean" -#: src/Content/Item.php:429 src/Model/Contact.php:1256 +#: src/Content/Item.php:415 src/Model/Contact.php:1249 msgid "View Status" msgstr "Seall an staid" -#: src/Content/Item.php:430 src/Content/Item.php:453 -#: src/Model/Contact.php:1191 src/Model/Contact.php:1247 -#: src/Model/Contact.php:1257 src/Module/Directory.php:158 -#: src/Module/Settings/Profile/Index.php:264 +#: src/Content/Item.php:416 src/Content/Item.php:439 +#: src/Model/Contact.php:1184 src/Model/Contact.php:1240 +#: src/Model/Contact.php:1250 src/Module/Directory.php:144 +#: src/Module/Settings/Profile/Index.php:250 msgid "View Profile" msgstr "Seall a’ phròifil" -#: src/Content/Item.php:431 src/Model/Contact.php:1258 +#: src/Content/Item.php:417 src/Model/Contact.php:1251 msgid "View Photos" msgstr "Seall na dealbhan" -#: src/Content/Item.php:432 src/Model/Contact.php:1225 -#: src/Model/Profile.php:461 +#: src/Content/Item.php:418 src/Model/Contact.php:1218 +#: src/Model/Profile.php:447 msgid "Network Posts" msgstr "Postaichean lìonraidh" -#: src/Content/Item.php:433 src/Model/Contact.php:1249 -#: src/Model/Contact.php:1260 +#: src/Content/Item.php:419 src/Model/Contact.php:1242 +#: src/Model/Contact.php:1253 msgid "View Contact" msgstr "Seall an neach-aithne" -#: src/Content/Item.php:434 src/Model/Contact.php:1261 +#: src/Content/Item.php:420 src/Model/Contact.php:1254 msgid "Send PM" msgstr "Cuir TPh" -#: src/Content/Item.php:435 src/Module/Contact.php:474 -#: src/Module/Contact/Profile.php:532 -#: src/Module/Moderation/Blocklist/Contact.php:116 -#: src/Module/Moderation/Users/Active.php:137 -#: src/Module/Moderation/Users/Index.php:152 +#: src/Content/Item.php:421 src/Module/Contact.php:449 +#: src/Module/Contact/Profile.php:518 +#: src/Module/Moderation/Blocklist/Contact.php:102 +#: src/Module/Moderation/Users/Active.php:123 +#: src/Module/Moderation/Users/Index.php:138 msgid "Block" msgstr "Bac" -#: src/Content/Item.php:436 src/Module/Contact.php:475 -#: src/Module/Contact/Profile.php:540 -#: src/Module/Notifications/Introductions.php:140 -#: src/Module/Notifications/Introductions.php:212 -#: src/Module/Notifications/Notification.php:89 +#: src/Content/Item.php:422 src/Module/Contact.php:450 +#: src/Module/Contact/Profile.php:526 +#: src/Module/Notifications/Introductions.php:126 +#: src/Module/Notifications/Introductions.php:198 +#: src/Module/Notifications/Notification.php:75 msgid "Ignore" msgstr "Leig seachad" -#: src/Content/Item.php:437 src/Module/Contact.php:476 -#: src/Module/Contact/Profile.php:548 +#: src/Content/Item.php:423 src/Module/Contact.php:451 +#: src/Module/Contact/Profile.php:534 msgid "Collapse" msgstr "Co-theannaich" -#: src/Content/Item.php:438 src/Object/Post.php:302 +#: src/Content/Item.php:424 src/Object/Post.php:288 #, php-format msgid "Ignore %s server" msgstr "" -#: src/Content/Item.php:442 src/Module/Settings/Channels.php:202 -#: src/Module/Settings/Channels.php:223 src/Object/Post.php:516 +#: src/Content/Item.php:428 src/Module/Settings/Channels.php:188 +#: src/Module/Settings/Channels.php:209 src/Object/Post.php:502 msgid "Languages" msgstr "Cànanan" -#: src/Content/Item.php:445 src/Object/Post.php:596 +#: src/Content/Item.php:431 src/Object/Post.php:582 msgid "Search Text" msgstr "" -#: src/Content/Item.php:450 src/Content/Widget.php:80 -#: src/Model/Contact.php:1250 src/Model/Contact.php:1262 -#: src/Module/Contact/Follow.php:167 view/theme/vier/theme.php:195 +#: src/Content/Item.php:436 src/Content/Widget.php:66 +#: src/Model/Contact.php:1243 src/Model/Contact.php:1255 +#: src/Module/Contact/Follow.php:148 view/theme/vier/theme.php:183 msgid "Connect/Follow" msgstr "Ceangail ris/Lean air" -#: src/Content/Item.php:884 +#: src/Content/Item.php:870 msgid "Unable to fetch user." msgstr "Chan urrainn dhuinn an cleachdaiche fhaighinn dhut." -#: src/Content/Nav.php:121 +#: src/Content/Nav.php:107 msgid "Nothing new here" msgstr "Chan eil dad ùr an-seo" -#: src/Content/Nav.php:125 src/Module/Special/HTTPException.php:77 +#: src/Content/Nav.php:111 src/Module/Special/HTTPException.php:63 msgid "Go back" msgstr "Air ais" -#: src/Content/Nav.php:126 +#: src/Content/Nav.php:112 msgid "Clear notifications" msgstr "Falamhaich na brathan" -#: src/Content/Nav.php:127 src/Content/Text/HTML.php:869 +#: src/Content/Nav.php:113 src/Content/Text/HTML.php:855 msgid "@name, !group, #tags, content" msgstr "@ainm, !buidheann, #tagaichean, susbaint" -#: src/Content/Nav.php:222 src/Module/Security/Login.php:161 +#: src/Content/Nav.php:208 src/Module/Security/Login.php:147 msgid "Logout" msgstr "Clàraich a-mach" -#: src/Content/Nav.php:222 +#: src/Content/Nav.php:208 msgid "End this session" msgstr "Cuir crìoch air an t-seisean seo" -#: src/Content/Nav.php:224 src/Module/Bookmarklet.php:44 -#: src/Module/Security/Login.php:162 +#: src/Content/Nav.php:210 src/Module/Bookmarklet.php:30 +#: src/Module/Security/Login.php:148 msgid "Login" msgstr "Clàraich a-steach" -#: src/Content/Nav.php:224 +#: src/Content/Nav.php:210 msgid "Sign in" msgstr "Clàraich a-steach" -#: src/Content/Nav.php:229 src/Module/BaseProfile.php:57 -#: src/Module/Contact.php:518 +#: src/Content/Nav.php:215 src/Module/BaseProfile.php:43 +#: src/Module/Contact.php:493 msgid "Conversations" msgstr "Còmhraidhean" -#: src/Content/Nav.php:229 +#: src/Content/Nav.php:215 msgid "Conversations you started" 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:510 -#: src/Module/Contact/Profile.php:439 src/Module/Profile/Profile.php:270 -#: src/Module/Welcome.php:57 view/theme/frio/theme.php:233 +#: src/Content/Nav.php:216 src/Module/BaseProfile.php:35 +#: src/Module/BaseSettings.php:84 src/Module/Contact.php:485 +#: src/Module/Contact/Profile.php:425 src/Module/Profile/Profile.php:256 +#: src/Module/Welcome.php:43 view/theme/frio/theme.php:221 msgid "Profile" msgstr "Pròifil" -#: src/Content/Nav.php:230 view/theme/frio/theme.php:233 +#: src/Content/Nav.php:216 view/theme/frio/theme.php:221 msgid "Your profile page" msgstr "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:237 +#: src/Content/Nav.php:217 src/Module/BaseProfile.php:51 +#: src/Module/Media/Photo/Browser.php:60 view/theme/frio/theme.php:225 msgid "Photos" msgstr "Dealbhan" -#: src/Content/Nav.php:231 view/theme/frio/theme.php:237 +#: src/Content/Nav.php:217 view/theme/frio/theme.php:225 msgid "Your photos" msgstr "Na dealbhan agad" -#: src/Content/Nav.php:232 src/Module/BaseProfile.php:73 -#: src/Module/BaseProfile.php:76 src/Module/Contact.php:534 -#: view/theme/frio/theme.php:238 +#: src/Content/Nav.php:218 src/Module/BaseProfile.php:59 +#: src/Module/BaseProfile.php:62 src/Module/Contact.php:509 +#: view/theme/frio/theme.php:226 msgid "Media" msgstr "Meadhanan" -#: src/Content/Nav.php:232 view/theme/frio/theme.php:238 +#: src/Content/Nav.php:218 view/theme/frio/theme.php:226 msgid "Your postings with media" msgstr "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:239 -#: view/theme/frio/theme.php:243 +#: src/Content/Nav.php:219 src/Content/Nav.php:279 +#: src/Module/BaseProfile.php:71 src/Module/BaseProfile.php:74 +#: src/Module/BaseProfile.php:82 src/Module/BaseProfile.php:85 +#: src/Module/Settings/Display.php:302 view/theme/frio/theme.php:227 +#: view/theme/frio/theme.php:231 msgid "Calendar" msgstr "Mìosachan" -#: src/Content/Nav.php:233 view/theme/frio/theme.php:239 +#: src/Content/Nav.php:219 view/theme/frio/theme.php:227 msgid "Your calendar" msgstr "Am mìosachan agad" -#: src/Content/Nav.php:234 +#: src/Content/Nav.php:220 msgid "Personal notes" msgstr "Nòtaichean pearsanta" -#: src/Content/Nav.php:234 +#: src/Content/Nav.php:220 msgid "Your personal notes" msgstr "Na nòtaichean pearsanta agad" -#: src/Content/Nav.php:251 src/Content/Nav.php:308 +#: src/Content/Nav.php:237 src/Content/Nav.php:294 msgid "Home" msgstr "Dachaigh" -#: src/Content/Nav.php:251 src/Module/Settings/OAuth.php:73 +#: src/Content/Nav.php:237 src/Module/Settings/OAuth.php:59 msgid "Home Page" msgstr "Duilleag-dhachaigh" -#: src/Content/Nav.php:255 src/Module/Register.php:175 -#: src/Module/Security/Login.php:128 +#: src/Content/Nav.php:241 src/Module/Register.php:161 +#: src/Module/Security/Login.php:114 msgid "Register" msgstr "Clàraich leinn" -#: src/Content/Nav.php:255 +#: src/Content/Nav.php:241 msgid "Create an account" msgstr "Cruthaich cunntas" -#: src/Content/Nav.php:261 src/Module/Help.php:67 -#: src/Module/Settings/TwoFactor/AppSpecific.php:132 -#: src/Module/Settings/TwoFactor/Index.php:139 -#: src/Module/Settings/TwoFactor/Recovery.php:110 -#: src/Module/Settings/TwoFactor/Verify.php:149 view/theme/vier/theme.php:240 +#: src/Content/Nav.php:247 src/Module/Help.php:53 +#: src/Module/Settings/TwoFactor/AppSpecific.php:118 +#: src/Module/Settings/TwoFactor/Index.php:125 +#: src/Module/Settings/TwoFactor/Recovery.php:96 +#: src/Module/Settings/TwoFactor/Verify.php:135 view/theme/vier/theme.php:228 msgid "Help" msgstr "Cobhair" -#: src/Content/Nav.php:261 +#: src/Content/Nav.php:247 msgid "Help and documentation" msgstr "Cobhair is docamaideadh" -#: src/Content/Nav.php:265 +#: src/Content/Nav.php:251 msgid "Apps" msgstr "Aplacaidean" -#: src/Content/Nav.php:265 +#: src/Content/Nav.php:251 msgid "Addon applications, utilities, games" msgstr "Tuilleadain aplacaide, goireis is geama" -#: src/Content/Nav.php:269 src/Content/Text/HTML.php:867 -#: src/Module/Admin/Logs/View.php:88 src/Module/Search/Index.php:112 +#: src/Content/Nav.php:255 src/Content/Text/HTML.php:853 +#: src/Module/Admin/Logs/View.php:74 src/Module/Search/Index.php:98 msgid "Search" msgstr "Lorg" -#: src/Content/Nav.php:269 +#: src/Content/Nav.php:255 msgid "Search site content" msgstr "Lorg susbaint san làrach" -#: src/Content/Nav.php:272 src/Content/Text/HTML.php:876 +#: src/Content/Nav.php:258 src/Content/Text/HTML.php:862 msgid "Full Text" msgstr "Teacsa slàn" -#: src/Content/Nav.php:273 src/Content/Text/HTML.php:877 -#: src/Content/Widget/TagCloud.php:68 +#: src/Content/Nav.php:259 src/Content/Text/HTML.php:863 +#: src/Content/Widget/TagCloud.php:54 msgid "Tags" msgstr "Tagaichean" -#: src/Content/Nav.php:274 src/Content/Nav.php:329 -#: src/Content/Text/HTML.php:878 src/Module/BaseProfile.php:127 -#: src/Module/BaseProfile.php:130 src/Module/Contact.php:432 -#: src/Module/Contact.php:542 view/theme/frio/theme.php:246 +#: src/Content/Nav.php:260 src/Content/Nav.php:315 +#: src/Content/Text/HTML.php:864 src/Module/BaseProfile.php:113 +#: src/Module/BaseProfile.php:116 src/Module/Contact.php:407 +#: src/Module/Contact.php:517 view/theme/frio/theme.php:234 msgid "Contacts" msgstr "Luchd-aithne" -#: src/Content/Nav.php:289 +#: src/Content/Nav.php:275 msgid "Community" msgstr "Coimhearsnachd" -#: src/Content/Nav.php:289 +#: src/Content/Nav.php:275 msgid "Conversations on this and other servers" msgstr "Còmhraidhean air an fhrithealaiche seo is frithealaichean eile" -#: src/Content/Nav.php:296 +#: src/Content/Nav.php:282 msgid "Directory" msgstr "Eòlaire" -#: src/Content/Nav.php:296 +#: src/Content/Nav.php:282 msgid "People directory" msgstr "Eòlaire nan daoine" -#: src/Content/Nav.php:298 src/Module/BaseAdmin.php:85 -#: src/Module/BaseModeration.php:108 +#: src/Content/Nav.php:284 src/Module/BaseAdmin.php:71 +#: src/Module/BaseModeration.php:94 msgid "Information" msgstr "Fiosrachadh" -#: src/Content/Nav.php:298 +#: src/Content/Nav.php:284 msgid "Information about this friendica instance" msgstr "Fiosrachadh mun ionstans Friendica seo" -#: src/Content/Nav.php:301 src/Module/Admin/Tos.php:78 -#: src/Module/BaseAdmin.php:95 src/Module/Register.php:183 -#: src/Module/Tos.php:101 +#: src/Content/Nav.php:287 src/Module/Admin/Tos.php:64 +#: src/Module/BaseAdmin.php:81 src/Module/Register.php:169 +#: src/Module/Tos.php:87 msgid "Terms of Service" msgstr "Teirmichean na seirbheise" -#: src/Content/Nav.php:301 +#: src/Content/Nav.php:287 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:242 +#: src/Content/Nav.php:292 view/theme/frio/theme.php:230 msgid "Network" msgstr "Lìonra" -#: src/Content/Nav.php:306 view/theme/frio/theme.php:242 +#: src/Content/Nav.php:292 view/theme/frio/theme.php:230 msgid "Conversations from your friends" msgstr "Còmhraidhean nan caraidean agad" -#: src/Content/Nav.php:308 view/theme/frio/theme.php:232 +#: src/Content/Nav.php:294 view/theme/frio/theme.php:220 msgid "Your posts and conversations" msgstr "Na postaichean ’s còmhraidhean agad" -#: src/Content/Nav.php:312 +#: src/Content/Nav.php:298 msgid "Introductions" msgstr "Cuir an aithne" -#: src/Content/Nav.php:312 +#: src/Content/Nav.php:298 msgid "Friend Requests" msgstr "Iarrtasan càirdeis" -#: src/Content/Nav.php:313 src/Module/BaseNotifications.php:149 -#: src/Module/Notifications/Introductions.php:75 +#: src/Content/Nav.php:299 src/Module/BaseNotifications.php:135 +#: src/Module/Notifications/Introductions.php:61 msgid "Notifications" msgstr "Brathan" -#: src/Content/Nav.php:314 +#: src/Content/Nav.php:300 msgid "See all notifications" msgstr "Seall gach brath" -#: src/Content/Nav.php:315 src/Module/Settings/Connectors.php:254 +#: src/Content/Nav.php:301 src/Module/Settings/Connectors.php:233 msgid "Mark as seen" msgstr "Cuir comharra gun deach fhaicinn" -#: src/Content/Nav.php:315 +#: src/Content/Nav.php:301 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:244 +#: src/Content/Nav.php:304 view/theme/frio/theme.php:232 msgid "Private mail" msgstr "Post prìobhaideach" -#: src/Content/Nav.php:319 +#: src/Content/Nav.php:305 msgid "Inbox" msgstr "Am bogsa a-steach" -#: src/Content/Nav.php:320 +#: src/Content/Nav.php:306 msgid "Outbox" msgstr "Am bogsa a-mach" -#: src/Content/Nav.php:324 +#: src/Content/Nav.php:310 msgid "Accounts" msgstr "Cunntasan" -#: src/Content/Nav.php:324 +#: src/Content/Nav.php:310 msgid "Manage other pages" msgstr "Stiùir duilleagan eile" -#: src/Content/Nav.php:327 src/Module/Admin/Addons/Details.php:114 -#: src/Module/Admin/Themes/Details.php:99 src/Module/BaseSettings.php:182 -#: src/Module/Welcome.php:52 view/theme/frio/theme.php:245 +#: src/Content/Nav.php:313 src/Module/Admin/Addons/Details.php:100 +#: src/Module/Admin/Themes/Details.php:85 src/Module/BaseSettings.php:168 +#: src/Module/Welcome.php:38 view/theme/frio/theme.php:233 msgid "Settings" msgstr "Roghainnean" -#: src/Content/Nav.php:327 view/theme/frio/theme.php:245 +#: src/Content/Nav.php:313 view/theme/frio/theme.php:233 msgid "Account settings" msgstr "Roghainnean a’ chunntais" -#: src/Content/Nav.php:329 view/theme/frio/theme.php:246 +#: src/Content/Nav.php:315 view/theme/frio/theme.php:234 msgid "Manage/edit friends and contacts" msgstr "Stiùir/deasaich caraidean is luchd-aithne" -#: src/Content/Nav.php:334 src/Module/BaseAdmin.php:119 +#: src/Content/Nav.php:320 src/Module/BaseAdmin.php:105 msgid "Admin" msgstr "Rianachd" -#: src/Content/Nav.php:334 +#: src/Content/Nav.php:320 msgid "Site setup and configuration" msgstr "Suidheachadh ’s rèiteachadh na làraich" -#: src/Content/Nav.php:335 src/Module/BaseModeration.php:128 -#: src/Module/Moderation/Blocklist/Contact.php:110 -#: src/Module/Moderation/Blocklist/Server/Add.php:121 -#: src/Module/Moderation/Blocklist/Server/Import.php:118 -#: src/Module/Moderation/Blocklist/Server/Index.php:95 -#: src/Module/Moderation/Item/Delete.php:61 -#: src/Module/Moderation/Reports.php:110 src/Module/Moderation/Summary.php:75 -#: src/Module/Moderation/Users/Active.php:133 -#: src/Module/Moderation/Users/Blocked.php:133 -#: src/Module/Moderation/Users/Deleted.php:80 -#: src/Module/Moderation/Users/Index.php:147 +#: src/Content/Nav.php:321 src/Module/BaseModeration.php:114 +#: src/Module/Moderation/Blocklist/Contact.php:96 +#: src/Module/Moderation/Blocklist/Server/Add.php:107 +#: src/Module/Moderation/Blocklist/Server/Import.php:102 +#: src/Module/Moderation/Blocklist/Server/Index.php:81 +#: src/Module/Moderation/Item/Delete.php:47 +#: src/Module/Moderation/Reports.php:96 src/Module/Moderation/Summary.php:61 +#: src/Module/Moderation/Users/Active.php:119 +#: src/Module/Moderation/Users/Blocked.php:119 +#: src/Module/Moderation/Users/Deleted.php:66 +#: src/Module/Moderation/Users/Index.php:133 msgid "Moderation" msgstr "Maorsainneachd" -#: src/Content/Nav.php:335 +#: src/Content/Nav.php:321 msgid "Content and user moderation" msgstr "Susbaint is maorsainneachd chleachdaichean" -#: src/Content/Nav.php:338 +#: src/Content/Nav.php:324 msgid "Navigation" msgstr "Seòladaireachd" -#: src/Content/Nav.php:338 +#: src/Content/Nav.php:324 msgid "Site map" msgstr "Mapa na làraich" -#: src/Content/Pager.php:216 +#: src/Content/Pager.php:202 msgid "first" msgstr "dhan toiseach" -#: src/Content/Pager.php:221 +#: src/Content/Pager.php:207 msgid "prev" msgstr "air ais" -#: src/Content/Pager.php:276 +#: src/Content/Pager.php:262 msgid "next" msgstr "air adhart" -#: src/Content/Pager.php:281 +#: src/Content/Pager.php:267 msgid "last" msgstr "dhan deireadh" -#: src/Content/Text/BBCode.php:704 src/Content/Text/BBCode.php:1880 -#: src/Content/Text/BBCode.php:1881 +#: src/Content/Text/BBCode.php:689 src/Content/Text/BBCode.php:1862 +#: src/Content/Text/BBCode.php:1863 msgid "Image/photo" msgstr "Dealbh" -#: src/Content/Text/BBCode.php:922 +#: src/Content/Text/BBCode.php:907 #, php-format msgid "%2$s %3$s" msgstr "%2$s %3$s" -#: src/Content/Text/BBCode.php:947 src/Model/Item.php:4060 -#: src/Model/Item.php:4066 src/Model/Item.php:4067 +#: src/Content/Text/BBCode.php:929 src/Model/Item.php:4028 +#: src/Model/Item.php:4034 src/Model/Item.php:4035 msgid "Link to source" msgstr "Ceangal dhan tùs" -#: src/Content/Text/BBCode.php:1761 src/Content/Text/HTML.php:906 +#: src/Content/Text/BBCode.php:1743 src/Content/Text/HTML.php:892 msgid "Click to open/close" msgstr "Briog ’ga fhosgladh/dhùnadh" -#: src/Content/Text/BBCode.php:1816 +#: src/Content/Text/BBCode.php:1798 msgid "$1 wrote:" msgstr "Sgrìobh $1:" -#: src/Content/Text/BBCode.php:1890 src/Content/Text/BBCode.php:1891 +#: src/Content/Text/BBCode.php:1872 src/Content/Text/BBCode.php:1873 msgid "Encrypted content" msgstr "Susbaint chrioptaichte" -#: src/Content/Text/BBCode.php:2223 +#: src/Content/Text/BBCode.php:2205 msgid "Invalid source protocol" msgstr "Pròtacal tùis mì-dhligheach" -#: src/Content/Text/BBCode.php:2242 +#: src/Content/Text/BBCode.php:2224 msgid "Invalid link protocol" msgstr "Pròtacal ceangail mì-dhligheach" -#: src/Content/Text/HTML.php:784 +#: src/Content/Text/HTML.php:770 msgid "Loading more entries..." msgstr "A’ luchdadh barrachd nithean…" -#: src/Content/Text/HTML.php:785 +#: src/Content/Text/HTML.php:771 msgid "The end" msgstr "A’ chrìoch" -#: src/Content/Text/HTML.php:861 src/Content/Widget/VCard.php:127 -#: src/Model/Profile.php:470 src/Module/Contact/Profile.php:492 +#: src/Content/Text/HTML.php:847 src/Content/Widget/VCard.php:113 +#: src/Model/Profile.php:456 src/Module/Contact/Profile.php:478 msgid "Follow" msgstr "Lean air" -#: src/Content/Widget.php:51 +#: src/Content/Widget.php:37 msgid "Add New Contact" msgstr "Cuir neach-aithne ùr ris" -#: src/Content/Widget.php:52 +#: src/Content/Widget.php:38 msgid "Enter address or web location" msgstr "Cuir a-steach seòladh no ionad-lìn" -#: src/Content/Widget.php:53 +#: src/Content/Widget.php:39 msgid "Example: bob@example.com, http://example.com/barbara" msgstr "Mar eisimpleir: calum@ball-eisimpleir.com, http://ball-eisimpleir.com/oighrig" -#: src/Content/Widget.php:55 +#: src/Content/Widget.php:41 msgid "Connect" msgstr "Ceangail" -#: src/Content/Widget.php:72 +#: src/Content/Widget.php:58 #, php-format msgid "%d invitation available" msgid_plural "%d invitations available" @@ -2373,79 +2372,79 @@ msgstr[1] "Tha %d chuireadh ri fhaighinn" msgstr[2] "Tha %d cuiridhean ri fhaighinn" msgstr[3] "Tha %d cuireadh ri fhaighinn" -#: src/Content/Widget.php:78 view/theme/vier/theme.php:193 +#: src/Content/Widget.php:64 view/theme/vier/theme.php:181 msgid "Find People" msgstr "Lorg daoine" -#: src/Content/Widget.php:79 view/theme/vier/theme.php:194 +#: src/Content/Widget.php:65 view/theme/vier/theme.php:182 msgid "Enter name or interest" msgstr "Cuir a-steach ainm no ùidh" -#: src/Content/Widget.php:81 view/theme/vier/theme.php:196 +#: src/Content/Widget.php:67 view/theme/vier/theme.php:184 msgid "Examples: Robert Morgenstein, Fishing" msgstr "Mar eisimpleir: Aonghas MacLeòid, iasgach" -#: src/Content/Widget.php:82 src/Module/Contact.php:466 -#: src/Module/Directory.php:97 view/theme/vier/theme.php:197 +#: src/Content/Widget.php:68 src/Module/Contact.php:441 +#: src/Module/Directory.php:83 view/theme/vier/theme.php:185 msgid "Find" msgstr "Lorg" -#: src/Content/Widget.php:83 src/Module/Contact/Suggestions.php:73 -#: view/theme/vier/theme.php:198 +#: src/Content/Widget.php:69 src/Module/Contact/Suggestions.php:59 +#: view/theme/vier/theme.php:186 msgid "Friend Suggestions" msgstr "Molaidhean charaidean" -#: src/Content/Widget.php:84 view/theme/vier/theme.php:199 +#: src/Content/Widget.php:70 view/theme/vier/theme.php:187 msgid "Similar Interests" msgstr "Ùidhean an cumantas" -#: src/Content/Widget.php:85 view/theme/vier/theme.php:200 +#: src/Content/Widget.php:71 view/theme/vier/theme.php:188 msgid "Random Profile" msgstr "Pròifil air thuaiream" -#: src/Content/Widget.php:86 view/theme/vier/theme.php:201 +#: src/Content/Widget.php:72 view/theme/vier/theme.php:189 msgid "Invite Friends" msgstr "Thoir cuireadh do charaidean" -#: src/Content/Widget.php:87 src/Module/Directory.php:89 -#: view/theme/vier/theme.php:202 +#: src/Content/Widget.php:73 src/Module/Directory.php:75 +#: view/theme/vier/theme.php:190 msgid "Global Directory" msgstr "Eòlaire co-naisgte" -#: src/Content/Widget.php:89 view/theme/vier/theme.php:204 +#: src/Content/Widget.php:75 view/theme/vier/theme.php:192 msgid "Local Directory" msgstr "Eòlaire ionadail" -#: src/Content/Widget.php:218 +#: src/Content/Widget.php:196 msgid "Everyone" msgstr "A h-uile duine" -#: src/Content/Widget.php:243 src/Module/Contact.php:429 +#: src/Content/Widget.php:221 src/Module/Contact.php:404 msgid "No relationship" msgstr "Gu dàimh" -#: src/Content/Widget.php:248 +#: src/Content/Widget.php:226 msgid "Relationships" msgstr "Dàimhean" -#: src/Content/Widget.php:250 src/Module/Circle.php:294 -#: src/Module/Contact.php:350 +#: src/Content/Widget.php:228 src/Module/Circle.php:280 +#: src/Module/Contact.php:325 msgid "All Contacts" msgstr "A h-uile neach-aithne" -#: src/Content/Widget.php:291 +#: src/Content/Widget.php:269 msgid "All Protocols" msgstr "Gach pròtacal" -#: src/Content/Widget.php:321 src/Content/Widget.php:352 +#: src/Content/Widget.php:299 src/Content/Widget.php:330 msgid "Everything" msgstr "A h-uile càil" -#: src/Content/Widget.php:350 +#: src/Content/Widget.php:328 msgid "Categories" msgstr "Roinnean-seòrsa" -#: src/Content/Widget.php:407 +#: src/Content/Widget.php:385 #, php-format msgid "%d contact in common" msgid_plural "%d contacts in common" @@ -2454,47 +2453,47 @@ 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:515 +#: src/Content/Widget.php:493 msgid "On this date" msgstr "Air an latha seo" -#: src/Content/Widget.php:535 +#: src/Content/Widget.php:513 msgid "Persons" msgstr "Daoine" -#: src/Content/Widget.php:536 +#: src/Content/Widget.php:514 msgid "Organisations" msgstr "Buidhnean" -#: src/Content/Widget.php:537 src/Model/Contact.php:1754 +#: src/Content/Widget.php:515 src/Model/Contact.php:1747 msgid "News" msgstr "Naidheachdan" -#: src/Content/Widget.php:539 +#: src/Content/Widget.php:517 msgid "Relays" msgstr "" -#: src/Content/Widget.php:546 src/Module/Moderation/BaseUsers.php:69 +#: src/Content/Widget.php:524 src/Module/Moderation/BaseUsers.php:56 msgid "All" msgstr "Na h-uile" -#: src/Content/Widget/CalendarExport.php:56 +#: src/Content/Widget/CalendarExport.php:42 msgid "Export" msgstr "Às-phortaich" -#: src/Content/Widget/CalendarExport.php:57 +#: src/Content/Widget/CalendarExport.php:43 msgid "Export calendar as ical" msgstr "Às-phortaich am mìosachan ’na ical" -#: src/Content/Widget/CalendarExport.php:58 +#: src/Content/Widget/CalendarExport.php:44 msgid "Export calendar as csv" msgstr "Às-phortaich am mìosachan ’na csv" -#: src/Content/Widget/ContactBlock.php:79 +#: src/Content/Widget/ContactBlock.php:65 msgid "No contacts" msgstr "Chan eil neach-aithne ann" -#: src/Content/Widget/ContactBlock.php:110 +#: src/Content/Widget/ContactBlock.php:96 #, php-format msgid "%d Contact" msgid_plural "%d Contacts" @@ -2503,15 +2502,15 @@ msgstr[1] "%d luchd-aithne" msgstr[2] "%d luchd-aithne" msgstr[3] "%d luchd-aithne" -#: src/Content/Widget/ContactBlock.php:127 +#: src/Content/Widget/ContactBlock.php:113 msgid "View Contacts" msgstr "Seall an luchd-aithne" -#: src/Content/Widget/SavedSearches.php:47 +#: src/Content/Widget/SavedSearches.php:33 msgid "Remove term" msgstr "Thoir am briathar air falbh" -#: src/Content/Widget/TrendingTags.php:53 +#: src/Content/Widget/TrendingTags.php:39 #, php-format msgid "Trending Tags (last %d hour)" msgid_plural "Trending Tags (last %d hours)" @@ -2520,138 +2519,138 @@ msgstr[1] "Tagaichean a’ treandadh (san %d uair a thìde seo chaidh)" msgstr[2] "Tagaichean a’ treandadh (sna %d uairean a thìde seo chaidh)" msgstr[3] "Tagaichean a’ treandadh (san %d uair a thìde seo chaidh)" -#: src/Content/Widget/TrendingTags.php:54 +#: src/Content/Widget/TrendingTags.php:40 msgid "More Trending Tags" msgstr "Barrachd thagaichean a’ treandadh" -#: src/Content/Widget/VCard.php:105 src/Model/Contact.php:1219 -#: src/Model/Profile.php:455 +#: src/Content/Widget/VCard.php:91 src/Model/Contact.php:1212 +#: src/Model/Profile.php:441 msgid "Post to group" msgstr "" -#: src/Content/Widget/VCard.php:110 src/Model/Contact.php:1223 -#: src/Model/Profile.php:459 src/Module/Moderation/Item/Source.php:91 +#: src/Content/Widget/VCard.php:96 src/Model/Contact.php:1216 +#: src/Model/Profile.php:445 src/Module/Moderation/Item/Source.php:77 msgid "Mention" msgstr "Iomradh" -#: src/Content/Widget/VCard.php:120 src/Model/Profile.php:374 -#: src/Module/Contact/Profile.php:428 src/Module/Profile/Profile.php:201 +#: src/Content/Widget/VCard.php:106 src/Model/Profile.php:360 +#: src/Module/Contact/Profile.php:414 src/Module/Profile/Profile.php:187 msgid "XMPP:" msgstr "XMPP:" -#: src/Content/Widget/VCard.php:121 src/Model/Profile.php:375 -#: src/Module/Contact/Profile.php:430 src/Module/Profile/Profile.php:205 +#: src/Content/Widget/VCard.php:107 src/Model/Profile.php:361 +#: src/Module/Contact/Profile.php:416 src/Module/Profile/Profile.php:191 msgid "Matrix:" msgstr "Matrix:" -#: src/Content/Widget/VCard.php:122 src/Model/Event.php:82 -#: src/Model/Event.php:109 src/Model/Event.php:471 src/Model/Event.php:960 -#: src/Model/Profile.php:369 src/Module/Contact/Profile.php:426 -#: src/Module/Directory.php:148 src/Module/Notifications/Introductions.php:193 -#: src/Module/Profile/Profile.php:223 +#: src/Content/Widget/VCard.php:108 src/Model/Event.php:68 +#: src/Model/Event.php:95 src/Model/Event.php:457 src/Model/Event.php:946 +#: src/Model/Profile.php:355 src/Module/Contact/Profile.php:412 +#: src/Module/Directory.php:134 src/Module/Notifications/Introductions.php:179 +#: src/Module/Profile/Profile.php:209 msgid "Location:" msgstr "Ionad:" -#: src/Content/Widget/VCard.php:125 src/Model/Profile.php:483 -#: src/Module/Notifications/Introductions.php:207 +#: src/Content/Widget/VCard.php:111 src/Model/Profile.php:469 +#: src/Module/Notifications/Introductions.php:193 msgid "Network:" msgstr "Lìonra:" -#: src/Content/Widget/VCard.php:129 src/Model/Contact.php:1251 -#: src/Model/Contact.php:1263 src/Model/Profile.php:472 -#: src/Module/Contact/Profile.php:484 +#: src/Content/Widget/VCard.php:115 src/Model/Contact.php:1244 +#: src/Model/Contact.php:1256 src/Model/Profile.php:458 +#: src/Module/Contact/Profile.php:470 msgid "Unfollow" msgstr "Na lean tuilleadh" -#: src/Content/Widget/VCard.php:135 src/Model/Contact.php:1221 -#: src/Model/Profile.php:457 +#: src/Content/Widget/VCard.php:121 src/Model/Contact.php:1214 +#: src/Model/Profile.php:443 msgid "View group" msgstr "" -#: src/Core/ACL.php:166 src/Module/Profile/Profile.php:271 +#: src/Core/ACL.php:152 src/Module/Profile/Profile.php:257 msgid "Yourself" msgstr "Thu fhèin" -#: src/Core/ACL.php:202 src/Module/Privacy/PermissionTooltip.php:170 -#: src/Module/Privacy/PermissionTooltip.php:192 +#: src/Core/ACL.php:188 src/Module/Privacy/PermissionTooltip.php:156 +#: src/Module/Privacy/PermissionTooltip.php:178 msgid "Mutuals" msgstr "Co-dhàimhean" -#: src/Core/ACL.php:294 +#: src/Core/ACL.php:280 msgid "Post to Email" msgstr "Postaich dhan phost-d" -#: src/Core/ACL.php:321 src/Module/Privacy/PermissionTooltip.php:117 -#: src/Module/Privacy/PermissionTooltip.php:231 +#: src/Core/ACL.php:307 src/Module/Privacy/PermissionTooltip.php:103 +#: src/Module/Privacy/PermissionTooltip.php:217 msgid "Public" msgstr "Poblach" -#: src/Core/ACL.php:322 +#: src/Core/ACL.php:308 msgid "" "This content will be shown to all your followers and can be seen in the " "community pages and by anyone with its link." msgstr "Thèid an t-susbaint seo a shealltainn dhan luchd-leantainn gu lèir agad agus chithear air duilleagan na coimhearsnachd i agus chì a h-uile duine aig a bheil an ceangal seo i." -#: src/Core/ACL.php:323 src/Module/Privacy/PermissionTooltip.php:119 +#: src/Core/ACL.php:309 src/Module/Privacy/PermissionTooltip.php:105 msgid "Limited/Private" msgstr "Cuingichte/Prìobhaideach" -#: src/Core/ACL.php:324 +#: src/Core/ACL.php:310 msgid "" "This content will be shown only to the people in the first box, to the " "exception of the people mentioned in the second box. It won't appear " "anywhere public." msgstr "Thèid an t-susbaint seo a shealltainn dhan fheadhainn san dàrna bhogsa a-mhàin is chan fhaic an fheadhainn sa bhogsa eile. Cha nochd i gu poblach àite sam bith." -#: src/Core/ACL.php:324 +#: src/Core/ACL.php:310 msgid "" "Start typing the name of a contact or a circle to show a filtered list. You " "can also mention the special circles \"Followers\" and \"Mutuals\"." msgstr "Tòisich air ainm neach-aithne no cearcall a sgrìobhadh a shealltainn liosta chriathraichte. ’S urrainn dhut iomradh a thoirt air cearcallan sònraichte mar “Luchd-leantainn” no “Co-dhàimhean” cuideachd." -#: src/Core/ACL.php:325 +#: src/Core/ACL.php:311 msgid "Show to:" msgstr "Seall gu:" -#: src/Core/ACL.php:326 +#: src/Core/ACL.php:312 msgid "Except to:" msgstr "Ach gu:" -#: src/Core/ACL.php:327 src/Module/Post/Edit.php:154 +#: src/Core/ACL.php:313 src/Module/Post/Edit.php:140 msgid "CC: email addresses" msgstr "CC: seòlaidhean puist-d" -#: src/Core/ACL.php:328 src/Module/Post/Edit.php:160 +#: src/Core/ACL.php:314 src/Module/Post/Edit.php:146 msgid "Example: bob@example.com, mary@example.com" msgstr "Mar eisimpleir: aonghas@ball-eisimpleir.com, oighrig@ball-eisimpleir.com" -#: src/Core/ACL.php:329 +#: src/Core/ACL.php:315 msgid "Connectors" msgstr "Ceangladairean" -#: src/Core/Installer.php:180 +#: src/Core/Installer.php:166 msgid "" "The database configuration file \"config/local.config.php\" could not be " "written. Please use the enclosed text to create a configuration file in your" " web server root." msgstr "Cha b’ urrainn dhuinn sgrìobadh gu faidhle rèiteachadh an stòir-dhàta “config/local.config.php”. Cleachd an teacsa am broinn seo airson faidhle rèiteachaidh a chruthachadh ann am freumh an fhrithealaiche-lìn agad." -#: src/Core/Installer.php:197 +#: src/Core/Installer.php:183 msgid "" "You may need to import the file \"database.sql\" manually using phpmyadmin " "or mysql." msgstr "Dh’fhaoidte gum bi agad ris an fhaidhle “database.sql” ion-phortadh a làimh le phpmyadmin no mysql." -#: src/Core/Installer.php:198 src/Module/Install.php:207 -#: src/Module/Install.php:350 +#: src/Core/Installer.php:184 src/Module/Install.php:193 +#: src/Module/Install.php:336 msgid "Please see the file \"doc/INSTALL.md\"." msgstr "Faic am faidhle “doc/INSTALL.md”." -#: src/Core/Installer.php:259 +#: src/Core/Installer.php:245 msgid "Could not find a command line version of PHP in the web server PATH." msgstr "Cha do lorg sinn tionndadh loidhne-àithne dhe PHP ann am PATH an fhrithealaiche-lìn." -#: src/Core/Installer.php:260 +#: src/Core/Installer.php:246 msgid "" "If you don't have a command line version of PHP installed on your server, " "you will not be able to run the background processing. See 'Setup the worker'" msgstr "Mur eil tionndadh loidhne-àithne dhe PHP stàlaichte air an fhrithealaiche agad, chan urrainn dhut am pròiseasadh sa chùlaibh a ruith. Faic “Setup the worker”" -#: src/Core/Installer.php:265 +#: src/Core/Installer.php:251 msgid "PHP executable path" msgstr "Slighe sho-ghnìomhaichte PHP" -#: src/Core/Installer.php:265 +#: src/Core/Installer.php:251 msgid "" "Enter full path to php executable. You can leave this blank to continue the " "installation." msgstr "Cuir a-steach an t-slighe shlàn dhan fhaidhle sho-ghnìomhaichte php. ’S urrainn dhut seo fhàgail bàn airson leantainn air adhart leis an stàladh." -#: src/Core/Installer.php:270 +#: src/Core/Installer.php:256 msgid "Command line PHP" msgstr "Loidhne-àithne PHP" -#: src/Core/Installer.php:279 +#: src/Core/Installer.php:265 msgid "PHP executable is not the php cli binary (could be cgi-fgci version)" msgstr "Chan e am faidhle bìnearaidh cli a tha san fhaidhle sho-ghnìomhaichte PHP (dh’fhaoidte gu bheil an tionndadh cgi-fgci agad)" -#: src/Core/Installer.php:280 +#: src/Core/Installer.php:266 msgid "Found PHP version: " msgstr "Chaidh tionndadh dhe PHP a lorg: " -#: src/Core/Installer.php:282 +#: src/Core/Installer.php:268 msgid "PHP cli binary" msgstr "Faidhle bìnearaidh cli PHP" -#: src/Core/Installer.php:295 +#: src/Core/Installer.php:281 msgid "" "The command line version of PHP on your system does not have " "\"register_argc_argv\" enabled." msgstr "Chan eil “register_argc_argv” an comas aig an tionndadh loidhne-àithne dhe PHP air an t-siostam agad." -#: src/Core/Installer.php:296 +#: src/Core/Installer.php:282 msgid "This is required for message delivery to work." msgstr "Tha seo riatanach ach an obraich lìbhrigeadh nan teachdaireachdan." -#: src/Core/Installer.php:301 +#: src/Core/Installer.php:287 msgid "PHP register_argc_argv" msgstr "PHP register_argc_argv" -#: src/Core/Installer.php:333 +#: src/Core/Installer.php:319 msgid "" "Error: the \"openssl_pkey_new\" function on this system is not able to " "generate encryption keys" msgstr "Mearachd: chan urrainn dhan ghleus “openssl_pkey_new” air an t-siostam seo iuchraichean crioptachaidh a gintinn" -#: src/Core/Installer.php:334 +#: src/Core/Installer.php:320 msgid "" "If running under Windows, please see " "\"http://www.php.net/manual/en/openssl.installation.php\"." msgstr "Ma tha thu ’ga ruith fo Windows, faic “http://www.php.net/manual/en/openssl.installation.php”." -#: src/Core/Installer.php:337 +#: src/Core/Installer.php:323 msgid "Generate encryption keys" msgstr "A’ gintinn nan iuchraichean crioptachaidh" -#: src/Core/Installer.php:388 +#: src/Core/Installer.php:374 msgid "" "Error: Apache webserver mod-rewrite module is required but not installed." msgstr "Mearachd: Tha mòideal mod-rewrite aig an fhrithealaiche-lìn Apache riatanach ach cha deach a stàladh." -#: src/Core/Installer.php:392 +#: src/Core/Installer.php:378 msgid "Apache mod_rewrite module" msgstr "Mòideal Apache mod_rewrite" -#: src/Core/Installer.php:398 +#: src/Core/Installer.php:384 msgid "Error: PDO or MySQLi PHP module required but not installed." msgstr "Mearachd: Tha mòideal PDO no MySQLi aig PHP riatanach ach cha deach gin diubh a stàladh." -#: src/Core/Installer.php:402 +#: src/Core/Installer.php:388 msgid "Error: The MySQL driver for PDO is not installed." msgstr "Mearachd: Cha deach an draibhear MySQL airson PDO a stàladh." -#: src/Core/Installer.php:405 +#: src/Core/Installer.php:391 msgid "PDO or MySQLi PHP module" msgstr "Mòideal PDO no MySQLi aig PHP" -#: src/Core/Installer.php:411 +#: src/Core/Installer.php:397 msgid "Error: The IntlChar module is not installed." msgstr "" -#: src/Core/Installer.php:414 +#: src/Core/Installer.php:400 msgid "IntlChar PHP module" msgstr "" -#: src/Core/Installer.php:422 +#: src/Core/Installer.php:408 msgid "Error, XML PHP module required but not installed." msgstr "Mearachd: Tha am mòideal XML aig PHP riatanach ach cha deach a stàladh." -#: src/Core/Installer.php:426 +#: src/Core/Installer.php:412 msgid "XML PHP module" msgstr "Mòideal XML aig PHP" -#: src/Core/Installer.php:429 +#: src/Core/Installer.php:415 msgid "libCurl PHP module" msgstr "Mòideal libCurl aig PHP" -#: src/Core/Installer.php:430 +#: src/Core/Installer.php:416 msgid "Error: libCURL PHP module required but not installed." msgstr "Mearachd: Tha am mòideal libCurl aig PHP riatanach ach cha deach a stàladh." -#: src/Core/Installer.php:436 +#: src/Core/Installer.php:422 msgid "GD graphics PHP module" msgstr "Mòideal grafaigeachd GD aig PHP" -#: src/Core/Installer.php:437 +#: src/Core/Installer.php:423 msgid "" "Error: GD graphics PHP module with JPEG support required but not installed." msgstr "Mearachd: Tha am mòideal grafaigeachd GD aig PHP le taic dha JPEG riatanach ach cha deach a stàladh." -#: src/Core/Installer.php:443 +#: src/Core/Installer.php:429 msgid "OpenSSL PHP module" msgstr "Mòideal OpenSSL aig PHP" -#: src/Core/Installer.php:444 +#: src/Core/Installer.php:430 msgid "Error: openssl PHP module required but not installed." msgstr "Mearachd: Tha am mòideal openssl aig PHP riatanach ach cha deach a stàladh." -#: src/Core/Installer.php:450 +#: src/Core/Installer.php:436 msgid "mb_string PHP module" msgstr "mòideal mb_string aig PHP" -#: src/Core/Installer.php:451 +#: src/Core/Installer.php:437 msgid "Error: mb_string PHP module required but not installed." msgstr "Mearachd: Tha am mòideal mb_string aig PHP riatanach ach cha deach a stàladh." -#: src/Core/Installer.php:457 +#: src/Core/Installer.php:443 msgid "iconv PHP module" msgstr "Mòideal iconv aig PHP" -#: src/Core/Installer.php:458 +#: src/Core/Installer.php:444 msgid "Error: iconv PHP module required but not installed." msgstr "Mearachd: Tha am mòideal iconv aig PHP riatanach ach cha deach a stàladh." -#: src/Core/Installer.php:464 +#: src/Core/Installer.php:450 msgid "POSIX PHP module" msgstr "Mòideal POSIX aig PHP" -#: src/Core/Installer.php:465 +#: src/Core/Installer.php:451 msgid "Error: POSIX PHP module required but not installed." msgstr "Mearachd: Tha am mòideal POSIX aig PHP riatanach ach cha deach a stàladh." -#: src/Core/Installer.php:471 +#: src/Core/Installer.php:457 msgid "Program execution functions" msgstr "Foincseanan gnìomhachadh phrògraman" -#: src/Core/Installer.php:472 +#: src/Core/Installer.php:458 msgid "" "Error: Program execution functions (proc_open) required but not enabled." msgstr "Mearachd: Tha foincseanan gnìomhachadh phrògraman (proc_open) riatanach ach cha deach an cur an comas." -#: src/Core/Installer.php:478 +#: src/Core/Installer.php:464 msgid "JSON PHP module" msgstr "Mòideal JSON aig PHP" -#: src/Core/Installer.php:479 +#: src/Core/Installer.php:465 msgid "Error: JSON PHP module required but not installed." msgstr "Mearachd: Tha am mòideal JSON aig PHP riatanach ach cha deach a stàladh." -#: src/Core/Installer.php:485 +#: src/Core/Installer.php:471 msgid "File Information PHP module" msgstr "Mòideal File Information aig PHP" -#: src/Core/Installer.php:486 +#: src/Core/Installer.php:472 msgid "Error: File Information PHP module required but not installed." msgstr "Mearachd: Tha am mòideal File Information aig PHP aig PHP riatanach ach cha deach a stàladh." -#: src/Core/Installer.php:492 +#: src/Core/Installer.php:478 msgid "GNU Multiple Precision PHP module" msgstr "Mòideal GNU Multiple Precision aig PHP" -#: src/Core/Installer.php:493 +#: src/Core/Installer.php:479 msgid "Error: GNU Multiple Precision PHP module required but not installed." msgstr "Mearachd: Tha am mòideal GNU Multiple Precision aig PHP riatanach ach cha deach a stàladh." -#: src/Core/Installer.php:499 +#: src/Core/Installer.php:485 msgid "IDN Functions PHP module" msgstr "" -#: src/Core/Installer.php:500 +#: src/Core/Installer.php:486 msgid "Error: IDN Functions PHP module required but not installed." msgstr "" -#: src/Core/Installer.php:523 +#: src/Core/Installer.php:509 msgid "" "The web installer needs to be able to create a file called " "\"local.config.php\" in the \"config\" folder of your web server and it is " "unable to do so." msgstr "Feumaidh an stàlaichear-lìn faidhle a chruthachadh air a bheil “local.config.php” ann am pasgan “config” an fhrithealaiche-lìn agad is chan urrainn dha sin a dhèanamh." -#: src/Core/Installer.php:524 +#: src/Core/Installer.php:510 msgid "" "This is most often a permission setting, as the web server may not be able " "to write files in your folder - even if you can." msgstr "Mar as trice, is roghainn cead as coireach agus ’s dòcha nach fhaod am frithealaiche-lìn faidhlichean a sgrìobhadh sa phasgan agad – fiù mas urrainn dhut fhèin." -#: src/Core/Installer.php:525 +#: src/Core/Installer.php:511 msgid "" "At the end of this procedure, we will give you a text to save in a file " "named local.config.php in your Friendica \"config\" folder." msgstr "Air deireadh na sgeòil, bheir sinn teacsa thugad ach an sàbhail thu e ann am faidhle air a bheil local.config.php sa phasgan “config” aig Friendica." -#: src/Core/Installer.php:526 +#: src/Core/Installer.php:512 msgid "" "You can alternatively skip this procedure and perform a manual installation." " Please see the file \"doc/INSTALL.md\" for instructions." msgstr "Mar roghainn eile, leig seo dhan dàrna taobh agus dèan stàladh a làimh. Faic am faidhle “doc/INSTALL.md” airson stiùireadh." -#: src/Core/Installer.php:529 +#: src/Core/Installer.php:515 msgid "config/local.config.php is writable" msgstr "Gabhaidh sgrìobhadh san fhaidhle config/local.config.php" -#: src/Core/Installer.php:549 +#: src/Core/Installer.php:535 msgid "" "Friendica uses the Smarty3 template engine to render its web views. Smarty3 " "compiles templates to PHP to speed up rendering." msgstr "Cleachdaidh Friendica einnsean theamplaidean Smarty3 airson na seallaidhean-lìn aige a reandaradh. Trusaidh Smarty3 na teamplaidean gu PHP airson an reandaradh a dhèanamh nas luaithe." -#: src/Core/Installer.php:550 +#: src/Core/Installer.php:536 msgid "" "In order to store these compiled templates, the web server needs to have " "write access to the directory view/smarty3/ under the Friendica top level " "folder." msgstr "Airson na teamplaidean sin a stòradh às dèidh an trusaidh, feumaidh inntrigeadh a chùm sgrìobhaidh sa phasgan view/smarty3/ fo phrìomh-phasgan Friendica a bhith aig an fhrithealaiche-lìn." -#: src/Core/Installer.php:551 +#: src/Core/Installer.php:537 msgid "" "Please ensure that the user that your web server runs as (e.g. www-data) has" " write access to this folder." msgstr "Dèan cinnteach gu bheil inntrigeadh a chùm sgrìobhaidh dhan phasgan seo aig a’ chleachdaiche leis a bheil am frithealaiche-lìn ’ga ruith (m.e. www-data)." -#: src/Core/Installer.php:552 +#: src/Core/Installer.php:538 msgid "" "Note: as a security measure, you should give the web server write access to " "view/smarty3/ only--not the template files (.tpl) that it contains." msgstr "An aire: a chùm tèarainteachd, bu chòir dhut inntrigeadh a chùm sgrìobhaidh a thoirt dhan fhrithealaiche-lìn airson a’ phasgain view/smarty3/ a-mhàin is chan ann dha na faidhlichean teamplaide (.tpl) a tha ’na bhroinn." -#: src/Core/Installer.php:555 +#: src/Core/Installer.php:541 msgid "view/smarty3 is writable" msgstr "Gabhaidh sgrìobhadh sa phasgan view/smarty3" -#: src/Core/Installer.php:583 +#: src/Core/Installer.php:569 msgid "" "Url rewrite in .htaccess seems not working. Make sure you copied .htaccess-" "dist to .htaccess." msgstr "Tha coltas nach eil an Url rewrite ag obair san fhaidhle .htaccess. Dèan cinnteach gun do chruthaich thu lethbhreac dhe .htaccess-dist aig .htaccess." -#: src/Core/Installer.php:584 +#: src/Core/Installer.php:570 msgid "" "In some circumstances (like running inside containers), you can skip this " "error." msgstr "Ann an cuid a shuidheachaidhean (can ruith am broinn suithich), ’s urrainn dhut a’ mhearachd seo a leigeil seachad." -#: src/Core/Installer.php:586 +#: src/Core/Installer.php:572 msgid "Error message from Curl when fetching" msgstr "Teachdaireachd mearachd o Curl rè na faighinn" -#: src/Core/Installer.php:592 +#: src/Core/Installer.php:578 msgid "Url rewrite is working" msgstr "Tha Url rewrite ag obair" -#: src/Core/Installer.php:621 +#: src/Core/Installer.php:607 msgid "" "The detection of TLS to secure the communication between the browser and the" " new Friendica server failed." msgstr "Cha deach leinn mothachadh dha TLS a chùm conaltraidh thèarainte eadar am brabhsair ’s am frithealaiche Friendica ùr." -#: src/Core/Installer.php:622 +#: src/Core/Installer.php:608 msgid "" "It is highly encouraged to use Friendica only over a secure connection as " "sensitive information like passwords will be transmitted." msgstr "Mholamaid nach cleachd thu Friendica ach thar ceangal tèarainte idir on a thèid fiosrachadh dìomhair mar fhaclan-faire a thar-chur." -#: src/Core/Installer.php:623 +#: src/Core/Installer.php:609 msgid "Please ensure that the connection to the server is secure." msgstr "Dèan cinnteach gum bi an ceangal dhan fhrithealaiche tèarainte." -#: src/Core/Installer.php:624 +#: src/Core/Installer.php:610 msgid "No TLS detected" msgstr "Cha do mhothaich sinn dha TLS" -#: src/Core/Installer.php:626 +#: src/Core/Installer.php:612 msgid "TLS detected" msgstr "Mhothaich sinn dha TLS" -#: src/Core/Installer.php:643 +#: src/Core/Installer.php:629 msgid "ImageMagick PHP extension is not installed" msgstr "Cha deach an tuilleadan ImageMagick aig PHP a stàladh" -#: src/Core/Installer.php:645 +#: src/Core/Installer.php:631 msgid "ImageMagick PHP extension is installed" msgstr "Chaidh an tuilleadan ImageMagick aig PHP a stàladh" -#: src/Core/Installer.php:666 +#: src/Core/Installer.php:652 msgid "Database already in use." msgstr "Tha an stòr-dàta ’ga chleachdadh mu thràth." -#: src/Core/Installer.php:671 +#: src/Core/Installer.php:657 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:2348 +#: src/Core/L10n.php:430 src/Model/Item.php:2315 msgid "Undetermined" msgstr "" -#: src/Core/L10n.php:451 +#: src/Core/L10n.php:437 #, php-format msgid "%s (%s)" msgstr "" -#: src/Core/L10n.php:499 src/Model/Event.php:430 -#: src/Module/Settings/Display.php:284 +#: src/Core/L10n.php:485 src/Model/Event.php:416 +#: src/Module/Settings/Display.php:270 msgid "Monday" msgstr "DiLuain" -#: src/Core/L10n.php:499 src/Model/Event.php:431 -#: src/Module/Settings/Display.php:285 +#: src/Core/L10n.php:485 src/Model/Event.php:417 +#: src/Module/Settings/Display.php:271 msgid "Tuesday" msgstr "DiMàirt" -#: src/Core/L10n.php:499 src/Model/Event.php:432 -#: src/Module/Settings/Display.php:286 +#: src/Core/L10n.php:485 src/Model/Event.php:418 +#: src/Module/Settings/Display.php:272 msgid "Wednesday" msgstr "DiCiadain" -#: src/Core/L10n.php:499 src/Model/Event.php:433 -#: src/Module/Settings/Display.php:287 +#: src/Core/L10n.php:485 src/Model/Event.php:419 +#: src/Module/Settings/Display.php:273 msgid "Thursday" msgstr "DiarDaoin" -#: src/Core/L10n.php:499 src/Model/Event.php:434 -#: src/Module/Settings/Display.php:288 +#: src/Core/L10n.php:485 src/Model/Event.php:420 +#: src/Module/Settings/Display.php:274 msgid "Friday" msgstr "DihAoine" -#: src/Core/L10n.php:499 src/Model/Event.php:435 -#: src/Module/Settings/Display.php:289 +#: src/Core/L10n.php:485 src/Model/Event.php:421 +#: src/Module/Settings/Display.php:275 msgid "Saturday" msgstr "DiSathairne" -#: src/Core/L10n.php:499 src/Model/Event.php:429 -#: src/Module/Settings/Display.php:283 +#: src/Core/L10n.php:485 src/Model/Event.php:415 +#: src/Module/Settings/Display.php:269 msgid "Sunday" msgstr "DiDòmhnaich" -#: src/Core/L10n.php:503 src/Model/Event.php:450 +#: src/Core/L10n.php:489 src/Model/Event.php:436 msgid "January" msgstr "Am Faoilleach" -#: src/Core/L10n.php:503 src/Model/Event.php:451 +#: src/Core/L10n.php:489 src/Model/Event.php:437 msgid "February" msgstr "An Gearran" -#: src/Core/L10n.php:503 src/Model/Event.php:452 +#: src/Core/L10n.php:489 src/Model/Event.php:438 msgid "March" msgstr "Am Màrt" -#: src/Core/L10n.php:503 src/Model/Event.php:453 +#: src/Core/L10n.php:489 src/Model/Event.php:439 msgid "April" msgstr "An Giblean" -#: src/Core/L10n.php:503 src/Core/L10n.php:522 src/Model/Event.php:441 +#: src/Core/L10n.php:489 src/Core/L10n.php:508 src/Model/Event.php:427 msgid "May" msgstr "An Cèitean" -#: src/Core/L10n.php:503 src/Model/Event.php:454 +#: src/Core/L10n.php:489 src/Model/Event.php:440 msgid "June" msgstr "An t-Ògmhios" -#: src/Core/L10n.php:503 src/Model/Event.php:455 +#: src/Core/L10n.php:489 src/Model/Event.php:441 msgid "July" msgstr "An t-Iuchar" -#: src/Core/L10n.php:503 src/Model/Event.php:456 +#: src/Core/L10n.php:489 src/Model/Event.php:442 msgid "August" msgstr "An Lùnastal" -#: src/Core/L10n.php:503 src/Model/Event.php:457 +#: src/Core/L10n.php:489 src/Model/Event.php:443 msgid "September" msgstr "An t-Sultain" -#: src/Core/L10n.php:503 src/Model/Event.php:458 +#: src/Core/L10n.php:489 src/Model/Event.php:444 msgid "October" msgstr "An Dàmhair" -#: src/Core/L10n.php:503 src/Model/Event.php:459 +#: src/Core/L10n.php:489 src/Model/Event.php:445 msgid "November" msgstr "An t-Samhain" -#: src/Core/L10n.php:503 src/Model/Event.php:460 +#: src/Core/L10n.php:489 src/Model/Event.php:446 msgid "December" msgstr "An Dùbhlachd" -#: src/Core/L10n.php:518 src/Model/Event.php:422 +#: src/Core/L10n.php:504 src/Model/Event.php:408 msgid "Mon" msgstr "DiL" -#: src/Core/L10n.php:518 src/Model/Event.php:423 +#: src/Core/L10n.php:504 src/Model/Event.php:409 msgid "Tue" msgstr "DiM" -#: src/Core/L10n.php:518 src/Model/Event.php:424 +#: src/Core/L10n.php:504 src/Model/Event.php:410 msgid "Wed" msgstr "DiC" -#: src/Core/L10n.php:518 src/Model/Event.php:425 +#: src/Core/L10n.php:504 src/Model/Event.php:411 msgid "Thu" msgstr "Dia" -#: src/Core/L10n.php:518 src/Model/Event.php:426 +#: src/Core/L10n.php:504 src/Model/Event.php:412 msgid "Fri" msgstr "Dih" -#: src/Core/L10n.php:518 src/Model/Event.php:427 +#: src/Core/L10n.php:504 src/Model/Event.php:413 msgid "Sat" msgstr "DiS" -#: src/Core/L10n.php:518 src/Model/Event.php:421 +#: src/Core/L10n.php:504 src/Model/Event.php:407 msgid "Sun" msgstr "DiD" -#: src/Core/L10n.php:522 src/Model/Event.php:437 +#: src/Core/L10n.php:508 src/Model/Event.php:423 msgid "Jan" msgstr "Faoi" -#: src/Core/L10n.php:522 src/Model/Event.php:438 +#: src/Core/L10n.php:508 src/Model/Event.php:424 msgid "Feb" msgstr "Gearr" -#: src/Core/L10n.php:522 src/Model/Event.php:439 +#: src/Core/L10n.php:508 src/Model/Event.php:425 msgid "Mar" msgstr "Màrt" -#: src/Core/L10n.php:522 src/Model/Event.php:440 +#: src/Core/L10n.php:508 src/Model/Event.php:426 msgid "Apr" msgstr "Gibl" -#: src/Core/L10n.php:522 src/Model/Event.php:442 +#: src/Core/L10n.php:508 src/Model/Event.php:428 msgid "Jun" msgstr "Ògmh" -#: src/Core/L10n.php:522 src/Model/Event.php:443 +#: src/Core/L10n.php:508 src/Model/Event.php:429 msgid "Jul" msgstr "Iuch" -#: src/Core/L10n.php:522 src/Model/Event.php:444 +#: src/Core/L10n.php:508 src/Model/Event.php:430 msgid "Aug" msgstr "Lùna" -#: src/Core/L10n.php:522 +#: src/Core/L10n.php:508 msgid "Sep" msgstr "Sult" -#: src/Core/L10n.php:522 src/Model/Event.php:446 +#: src/Core/L10n.php:508 src/Model/Event.php:432 msgid "Oct" msgstr "Dàmh" -#: src/Core/L10n.php:522 src/Model/Event.php:447 +#: src/Core/L10n.php:508 src/Model/Event.php:433 msgid "Nov" msgstr "Samh" -#: src/Core/L10n.php:522 src/Model/Event.php:448 +#: src/Core/L10n.php:508 src/Model/Event.php:434 msgid "Dec" msgstr "Dùbh" -#: src/Core/Logger/Util/LoggerSettingsCheck.php:60 +#: src/Core/Logger/Util/LoggerSettingsCheck.php:46 #, php-format msgid "The logfile '%s' is not usable. No logging possible (error: '%s')" msgstr "Cha ghabh faidhle “%s” an loga a chleachdadh. Cha ghabh logadh a dhèanamh (mearachd: “%s”)" -#: src/Core/Logger/Util/LoggerSettingsCheck.php:85 +#: src/Core/Logger/Util/LoggerSettingsCheck.php:71 #, php-format msgid "" "The debug logfile '%s' is not usable. No logging possible (error: '%s')" msgstr "Cha ghabh faidhle “%s” an loga dì-bhugachaidh a chleachdadh. Cha ghabh logadh a dhèanamh (mearachd: “%s”)" -#: src/Core/Renderer.php:92 src/Core/Renderer.php:121 -#: src/Core/Renderer.php:150 src/Core/Renderer.php:184 -#: src/Render/FriendicaSmartyEngine.php:60 +#: src/Core/Renderer.php:78 src/Core/Renderer.php:107 +#: src/Core/Renderer.php:136 src/Core/Renderer.php:170 +#: src/Render/FriendicaSmartyEngine.php:46 msgid "" "Friendica can't display this page at the moment, please contact the " "administrator." msgstr "Chan urrainn dha Friendica an duilleag seo a shealltainn an-dràsta, cuir fios gun rianaire." -#: src/Core/Renderer.php:146 +#: src/Core/Renderer.php:132 msgid "template engine cannot be registered without a name." msgstr "cha ghabh einnsean theamplaidean a chlàradh gun ainm." -#: src/Core/Renderer.php:180 +#: src/Core/Renderer.php:166 msgid "template engine is not registered!" msgstr "cha deach an t-einnsean theamplaidean a chlàradh!" -#: src/Core/Storage/Type/FilesystemConfig.php:78 +#: src/Core/Storage/Type/FilesystemConfig.php:64 msgid "Storage base path" msgstr "Bun-slighe an stòrais" -#: src/Core/Storage/Type/FilesystemConfig.php:80 +#: src/Core/Storage/Type/FilesystemConfig.php:66 msgid "" "Folder where uploaded files are saved. For maximum security, This should be " "a path outside web server folder tree" msgstr "Am pasgan far an dèid faidhlichean air an luchdadh suas a shàbhaladh. A chùm na tèarainteachd as fheàrr, mholamaid slighe taobh a-muigh craobh phasganan an fhrithealaiche-lìn" -#: src/Core/Storage/Type/FilesystemConfig.php:93 +#: src/Core/Storage/Type/FilesystemConfig.php:79 msgid "Enter a valid existing folder" msgstr "Cuir a-steach pasgan dligheach a tha ann" -#: src/Core/Update.php:80 +#: src/Core/Update.php:66 #, php-format msgid "" "Updates from version %s are not supported. Please update at least to version" " 2021.01 and wait until the postupdate finished version 1383." msgstr "Chan eil taic ri ùrachadh o thionndadh %s. Ùraich gun tionndadh 2021.01 air a char as sine agus fuirich gus am bith an t-iar-ùrachadh deiseil le tionndadh 1383." -#: src/Core/Update.php:91 +#: src/Core/Update.php:77 #, php-format msgid "" "Updates from postupdate version %s are not supported. Please update at least" " to version 2021.01 and wait until the postupdate finished version 1383." msgstr "Chan eil taic ri iar-ùrachadh o thionndadh %s. Ùraich gun tionndadh 2021.01 air a char as sine agus fuirich gus am bith an t-iar-ùrachadh deiseil le tionndadh 1383." -#: src/Core/Update.php:183 +#: src/Core/Update.php:169 #, php-format msgid "%s: executing pre update %d" msgstr "%s: a’ dèanamh ro-ùrachadh %d" -#: src/Core/Update.php:225 +#: src/Core/Update.php:211 #, php-format msgid "%s: executing post update %d" msgstr "%s: a’ dèanamh iar-ùrachadh %d" -#: src/Core/Update.php:299 +#: src/Core/Update.php:285 #, php-format msgid "Update %s failed. See error logs." msgstr "Dh’fhàillig le ùrachadh %s. Thoir sùil air logaichean nam mearachdan." -#: src/Core/Update.php:339 +#: src/Core/Update.php:325 #, php-format msgid "" "\n" @@ -3204,49 +3203,49 @@ msgid "" "\t\t\t\tfriendica developer if you can not help me on your own. My database might be invalid." msgstr "\n\t\t\t\tDh’fhoillsich luchd-leasachaidh Friendica ùrachadh %s o chionn goirid\n\t\t\t\tach nuair a dh’fheuch mi ris a stàladh, chaidh rudeigin ceàrr gu dona.\n\t\t\t\tFeumaidh sinn seo a chàradh a dh’aithghearr ach chan urrainn dhomh sin a dhèanamh ’nam aonar. Cuir fios gu\n\t\t\t\tneach-leasachaidh Friendica mur urrainn dhut fhèin mo chuideachadh. Dh’fhaoidte nach eil an stòr-dàta agam dligheach." -#: src/Core/Update.php:345 +#: src/Core/Update.php:331 #, php-format msgid "The error message is\\n[pre]%s[/pre]" msgstr "Seo teachdaireachd na mearachd:\\n[pre]%s[/pre]" -#: src/Core/Update.php:349 src/Core/Update.php:377 +#: src/Core/Update.php:335 src/Core/Update.php:363 msgid "[Friendica Notify] Database update" msgstr "[Brath Friendica] Ùrachadh an stòir-dhàta" -#: src/Core/Update.php:371 +#: src/Core/Update.php:357 #, php-format msgid "" "\n" "\t\t\t\tThe friendica database was successfully updated from %s to %s." msgstr "\n\t\t\t\tChaidh stòr-dàta Friendica ùrachadh o %s gu %s." -#: src/Database/DBStructure.php:57 +#: src/Database/DBStructure.php:43 #, php-format msgid "The database version had been set to %s." msgstr "Chaidh tionndadh an stòir-dhàta a shuidheachadh air %s." -#: src/Database/DBStructure.php:82 +#: src/Database/DBStructure.php:68 #, php-format msgid "" "The post update is at version %d, it has to be at %d to safely drop the " "tables." msgstr "Tha an t-iar-ùrachadh air tionndadh %d ach feumaidh e bhith air %d mus gabh na clàran a leigeil às gu sàbhailte." -#: src/Database/DBStructure.php:95 +#: src/Database/DBStructure.php:81 msgid "No unused tables found." msgstr "Cha deach clàr gun cleachdadh a lorg." -#: src/Database/DBStructure.php:100 +#: src/Database/DBStructure.php:86 msgid "" "These tables are not used for friendica and will be deleted when you execute" " \"dbstructure drop -e\":" msgstr "Chan eil na clàran seo ’gan cleachdadh airson Friendica is thèid an sguabadh às ma ghnìomhaicheas tu “dbstructure drop -e”:" -#: src/Database/DBStructure.php:137 +#: src/Database/DBStructure.php:123 msgid "There are no tables on MyISAM or InnoDB with the Antelope file format." msgstr "Chan eil clàr air MyISAM no InnoDB le fòrmat faidhle Antelope." -#: src/Database/DBStructure.php:161 +#: src/Database/DBStructure.php:147 #, php-format msgid "" "\n" @@ -3254,329 +3253,325 @@ msgid "" "%s\n" msgstr "\nThachair mearachd %d rè ùrachadh an stòir-dhàta:\n%s\n" -#: src/Database/DBStructure.php:164 +#: src/Database/DBStructure.php:150 msgid "Errors encountered performing database changes: " msgstr "Thachair sinn ri mearachdan nuair a bha sinn ag atharrachadh an stòir-dhàta: " -#: src/Database/DBStructure.php:232 +#: src/Database/DBStructure.php:218 msgid "Another database update is currently running." msgstr "Tha ùrachadh eile ’ga ruith air an stòr-dàta an-dràsta fhèin." -#: src/Database/DBStructure.php:236 +#: src/Database/DBStructure.php:222 #, php-format msgid "%s: Database update" msgstr "%s: Ùrachadh an stòir-dhàta" -#: src/Database/DBStructure.php:493 +#: src/Database/DBStructure.php:479 #, php-format msgid "%s: updating %s table." msgstr "%s: Ag ùrachadh clàr %s." -#: src/Factory/Api/Mastodon/Error.php:42 +#: src/Factory/Api/Mastodon/Error.php:28 msgid "Record not found" msgstr "Cha deach an clàr a lorg" -#: src/Factory/Api/Mastodon/Error.php:49 +#: src/Factory/Api/Mastodon/Error.php:35 msgid "Unprocessable Entity" msgstr "Eintiteas nach gabh a phròiseasadh" -#: src/Factory/Api/Mastodon/Error.php:56 +#: src/Factory/Api/Mastodon/Error.php:42 msgid "Unauthorized" msgstr "Gun chead" -#: src/Factory/Api/Mastodon/Error.php:62 +#: src/Factory/Api/Mastodon/Error.php:48 msgid "" "Token is not authorized with a valid user or is missing a required scope" msgstr "Cha deach an tòcan ùghdarrachadh le cleachdaiche dligheach no tha sgòp riatanach a dhìth" -#: src/Factory/Api/Mastodon/Error.php:69 +#: src/Factory/Api/Mastodon/Error.php:55 msgid "Internal Server Error" msgstr "Mearachd frithealaiche inntearnail" -#: src/LegacyModule.php:63 +#: src/LegacyModule.php:49 #, php-format msgid "Legacy module file not found: %s" msgstr "Cha deach am faidhle mòideil dìleabach seo a lorg: %s" -#: src/Model/Circle.php:106 +#: src/Model/Circle.php:92 msgid "" "A deleted circle with this name was revived. Existing item permissions " "may apply to this circle and any future members. If this is" " not what you intended, please create another circle with a different name." msgstr "Chaidh cearcall a bh’ air a sguabadh às ath-bheòthachadh. Faodaidh ceadan a tha ann air nithean a bhith an sàs air a’ chearcall seo is air ball ri teachd sam bith. Mur e sin a bha fa-near dhut, cruthaich cearcall eile air a bheil ainm eile." -#: src/Model/Circle.php:544 +#: src/Model/Circle.php:530 msgid "Everybody" msgstr "A h-uile duine" -#: src/Model/Circle.php:563 +#: src/Model/Circle.php:549 msgid "edit" msgstr "deasaich" -#: src/Model/Circle.php:600 +#: src/Model/Circle.php:586 msgid "add" msgstr "cuir ris" -#: src/Model/Circle.php:605 +#: src/Model/Circle.php:591 msgid "Edit circle" msgstr "Deasaich an cearcall" -#: src/Model/Circle.php:606 src/Module/Circle.php:195 +#: src/Model/Circle.php:592 src/Module/Circle.php:181 msgid "Contacts not in any circle" msgstr "Luchd-aithne gun chearcall" -#: src/Model/Circle.php:608 +#: src/Model/Circle.php:594 msgid "Create a new circle" msgstr "Cruthaich cearcall ùr" -#: src/Model/Circle.php:609 src/Module/Circle.php:180 -#: src/Module/Circle.php:203 src/Module/Circle.php:278 +#: src/Model/Circle.php:595 src/Module/Circle.php:166 +#: src/Module/Circle.php:189 src/Module/Circle.php:264 msgid "Circle Name: " msgstr "Ainm a’ chearcaill: " -#: src/Model/Circle.php:610 +#: src/Model/Circle.php:596 msgid "Edit circles" msgstr "Deasaich na cearcallan" -#: src/Model/Contact.php:1270 src/Module/Moderation/Users/Pending.php:102 -#: src/Module/Notifications/Introductions.php:138 -#: src/Module/Notifications/Introductions.php:210 +#: src/Model/Contact.php:1263 src/Module/Moderation/Users/Pending.php:88 +#: src/Module/Notifications/Introductions.php:124 +#: src/Module/Notifications/Introductions.php:196 msgid "Approve" msgstr "Aontaich ris" -#: src/Model/Contact.php:1750 +#: src/Model/Contact.php:1743 msgid "Organisation" msgstr "Buidheann" -#: src/Model/Contact.php:1758 +#: src/Model/Contact.php:1751 msgid "Group" msgstr "Buidheann" -#: src/Model/Contact.php:1762 src/Module/Moderation/BaseUsers.php:131 +#: src/Model/Contact.php:1755 src/Module/Moderation/BaseUsers.php:120 msgid "Relay" msgstr "Ath-sheachadan" -#: src/Model/Contact.php:3084 +#: src/Model/Contact.php:3070 msgid "Disallowed profile URL." msgstr "URL pròifile mì-dhligheach." -#: src/Model/Contact.php:3089 src/Module/Friendica.php:100 +#: src/Model/Contact.php:3075 src/Module/Friendica.php:86 msgid "Blocked domain" msgstr "Àrainn bhacte" -#: src/Model/Contact.php:3094 +#: src/Model/Contact.php:3080 msgid "Connect URL missing." msgstr "Tha URL a’ cheangail a dhìth." -#: src/Model/Contact.php:3103 +#: src/Model/Contact.php:3089 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:3121 +#: src/Model/Contact.php:3107 #, 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:3138 +#: src/Model/Contact.php:3124 msgid "This seems to be a relay account. They can't be followed by users." msgstr "" -#: src/Model/Contact.php:3145 +#: src/Model/Contact.php:3131 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." -#: src/Model/Contact.php:3147 +#: src/Model/Contact.php:3133 msgid "No compatible communication protocols or feeds were discovered." msgstr "Cha do lorg sinn pròtacal conaltraidh no inbhir iomchaidh." -#: src/Model/Contact.php:3150 +#: src/Model/Contact.php:3136 msgid "An author or name was not found." msgstr "Cha deach an t-ùghdar no ainm a lorg." -#: src/Model/Contact.php:3153 +#: src/Model/Contact.php:3139 msgid "No browser URL could be matched to this address." msgstr "Cha b’ urrainn dhuinn URL a’ bhrabhsair a mhaidseadh ris an t-seòladh seo." -#: src/Model/Contact.php:3156 +#: src/Model/Contact.php:3142 msgid "" "Unable to match @-style Identity Address with a known protocol or email " "contact." msgstr "Tha b’ urrainn dhuinn an seòladh-aithne san stoidhle @ a mhaidseadh le pròtacal as aithne dhuinn no neach-aithne puist-d." -#: src/Model/Contact.php:3157 +#: src/Model/Contact.php:3143 msgid "Use mailto: in front of address to force email check." msgstr "Cleachd mailto: ron t-seòladh airson sgrùdadh nam post-d a sparradh." -#: src/Model/Contact.php:3163 -msgid "" -"The profile address specified belongs to a network which has been disabled " -"on this site." -msgstr "Tha seòladh na pròifil a shònraich thu a’ buntainn ri lìonra a chaidh a chur à comas air an làrach seo." - -#: src/Model/Contact.php:3168 +#: src/Model/Contact.php:3149 msgid "" "Limited profile. This person will be unable to receive direct/personal " "notifications from you." msgstr "Pròifil chuingichte. Chan fhaigh an neach seo brathan dìreach/pearsanta uat." -#: src/Model/Contact.php:3234 +#: src/Model/Contact.php:3208 msgid "Unable to retrieve contact information." msgstr "Cha d’ fhuair sinn grèim air fiosrachadh an neach-aithne." -#: src/Model/Event.php:54 +#: src/Model/Event.php:40 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:942 +#: src/Model/Event.php:61 src/Model/Event.php:78 src/Model/Event.php:455 +#: src/Model/Event.php:928 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:946 +#: src/Model/Event.php:64 src/Model/Event.php:84 src/Model/Event.php:456 +#: src/Model/Event.php:932 msgid "Finishes:" msgstr "Thig e gu crìoch:" -#: src/Model/Event.php:419 +#: src/Model/Event.php:405 msgid "all-day" msgstr "fad an latha" -#: src/Model/Event.php:445 +#: src/Model/Event.php:431 msgid "Sept" msgstr "Sult" -#: src/Model/Event.php:462 src/Module/Calendar/Show.php:128 -#: src/Util/Temporal.php:343 +#: src/Model/Event.php:448 src/Module/Calendar/Show.php:114 +#: src/Util/Temporal.php:329 msgid "today" msgstr "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/Model/Event.php:449 src/Module/Calendar/Show.php:115 +#: src/Module/Settings/Display.php:280 src/Util/Temporal.php:339 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/Model/Event.php:450 src/Module/Calendar/Show.php:116 +#: src/Module/Settings/Display.php:281 src/Util/Temporal.php:340 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/Model/Event.php:451 src/Module/Calendar/Show.php:117 +#: src/Module/Settings/Display.php:282 src/Util/Temporal.php:341 msgid "day" msgstr "latha" -#: src/Model/Event.php:467 +#: src/Model/Event.php:453 msgid "No events to display" msgstr "Chan eil tachartas ri shealltainn ann" -#: src/Model/Event.php:516 src/Module/DFRN/Poll.php:47 src/Module/Feed.php:70 -#: src/Module/Update/Profile.php:56 +#: src/Model/Event.php:502 src/Module/Feed.php:56 +#: src/Module/Update/Profile.php:42 msgid "Access to this profile has been restricted." msgstr "Chaidh an t-inntrigeadh dhan phròifil seo a chuingeachadh." -#: src/Model/Event.php:558 src/Module/Calendar/Event/Show.php:67 +#: src/Model/Event.php:544 src/Module/Calendar/Event/Show.php:53 msgid "Event not found." msgstr "Cha deach an tachartas a lorg." -#: src/Model/Event.php:637 +#: src/Model/Event.php:623 msgid "l, F j" msgstr "l, j F" -#: src/Model/Event.php:664 +#: src/Model/Event.php:650 msgid "Edit event" msgstr "Deasaich an tachartas" -#: src/Model/Event.php:665 +#: src/Model/Event.php:651 msgid "Duplicate event" msgstr "Dùblaich an tachartas" -#: src/Model/Event.php:666 +#: src/Model/Event.php:652 msgid "Delete event" msgstr "Sguab às an tachartas" -#: src/Model/Event.php:896 src/Module/Debug/Localtime.php:38 +#: src/Model/Event.php:882 src/Module/Debug/Localtime.php:24 msgid "l F d, Y \\@ g:i A" msgstr "l, d F Y \\@ g:i a" -#: src/Model/Event.php:897 +#: src/Model/Event.php:883 msgid "D g:i A" msgstr "D g:i a" -#: src/Model/Event.php:898 +#: src/Model/Event.php:884 msgid "g:i A" msgstr "g:i a" -#: src/Model/Event.php:961 src/Model/Event.php:963 +#: src/Model/Event.php:947 src/Model/Event.php:949 msgid "Show map" msgstr "Seall am mapa" -#: src/Model/Event.php:962 +#: src/Model/Event.php:948 msgid "Hide map" msgstr "Falaich am mapa" -#: src/Model/Event.php:1055 +#: src/Model/Event.php:1041 #, php-format msgid "%s's birthday" msgstr "Cò-là breith aig %s" -#: src/Model/Event.php:1056 +#: src/Model/Event.php:1042 #, php-format msgid "Happy Birthday %s" msgstr "Co-là breith sona dhut, %s" -#: src/Model/Item.php:2355 +#: src/Model/Item.php:2322 #, php-format msgid "%s (%s - %s): %s" msgstr "" -#: src/Model/Item.php:2357 +#: src/Model/Item.php:2324 #, php-format msgid "%s (%s): %s" msgstr "" -#: src/Model/Item.php:2360 +#: src/Model/Item.php:2327 #, php-format -msgid "Detected languages in this post:\\n%s" -msgstr "Na cànanan dhan a mhothaich sinn sa phost seo:\\n%s" +msgid "" +"Detected languages in this post:\n" +"%s" +msgstr "" -#: src/Model/Item.php:3308 +#: src/Model/Item.php:3276 msgid "activity" msgstr "gnìomhachd" -#: src/Model/Item.php:3310 +#: src/Model/Item.php:3278 msgid "comment" msgstr "beachd" -#: src/Model/Item.php:3313 src/Module/Post/Tag/Add.php:123 +#: src/Model/Item.php:3281 src/Module/Post/Tag/Add.php:109 msgid "post" msgstr "post" -#: src/Model/Item.php:3483 +#: src/Model/Item.php:3451 #, php-format msgid "%s is blocked" msgstr "Tha %s ’ga bhacadh" -#: src/Model/Item.php:3485 +#: src/Model/Item.php:3453 #, php-format msgid "%s is ignored" msgstr "Tha %s ’ga leigeil seachad" -#: src/Model/Item.php:3487 +#: src/Model/Item.php:3455 #, php-format msgid "Content from %s is collapsed" msgstr "Tha susbaint o %s ’ga cho-theannachadh" -#: src/Model/Item.php:3491 +#: src/Model/Item.php:3459 msgid "Sensitive content" msgstr "" -#: src/Model/Item.php:3960 +#: src/Model/Item.php:3928 msgid "bytes" msgstr "baidht" -#: src/Model/Item.php:3991 +#: src/Model/Item.php:3959 #, php-format msgid "%2$s (%3$d%%, %1$d vote)" msgid_plural "%2$s (%3$d%%, %1$d votes)" @@ -3585,7 +3580,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:3993 +#: src/Model/Item.php:3961 #, php-format msgid "%2$s (%1$d vote)" msgid_plural "%2$s (%1$d votes)" @@ -3594,7 +3589,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:3998 +#: src/Model/Item.php:3966 #, php-format msgid "%d voter. Poll end: %s" msgid_plural "%d voters. Poll end: %s" @@ -3603,7 +3598,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:4000 +#: src/Model/Item.php:3968 #, php-format msgid "%d voter." msgid_plural "%d voters." @@ -3612,241 +3607,241 @@ msgstr[1] "Rinn %d bhòtadh." msgstr[2] "Rinn %d bhòtadh." msgstr[3] "Rinn %d bhòtadh." -#: src/Model/Item.php:4002 +#: src/Model/Item.php:3970 #, php-format msgid "Poll end: %s" msgstr "Crìoch a’ bhunntais-bheachd:%s" -#: src/Model/Item.php:4043 src/Model/Item.php:4044 +#: src/Model/Item.php:4011 src/Model/Item.php:4012 msgid "View on separate page" msgstr "Seall air duilleag fa leth" -#: src/Model/Mail.php:135 +#: src/Model/Mail.php:121 msgid "[no subject]" msgstr "[gun chuspair]" -#: src/Model/Photo.php:1198 src/Module/Media/Photo/Upload.php:168 +#: src/Model/Photo.php:1194 src/Module/Media/Photo/Upload.php:154 msgid "Wall Photos" msgstr "Dealbhan balla" -#: src/Model/Profile.php:357 src/Module/Profile/Profile.php:285 -#: src/Module/Profile/Profile.php:287 +#: src/Model/Profile.php:343 src/Module/Profile/Profile.php:271 +#: src/Module/Profile/Profile.php:273 msgid "Edit profile" msgstr "Deasaich a’ phròifil" -#: src/Model/Profile.php:359 +#: src/Model/Profile.php:345 msgid "Change profile photo" msgstr "Atharraich dealbh na pròifil" -#: src/Model/Profile.php:372 src/Module/Directory.php:153 -#: src/Module/Profile/Profile.php:211 +#: src/Model/Profile.php:358 src/Module/Directory.php:139 +#: src/Module/Profile/Profile.php:197 msgid "Homepage:" msgstr "Duilleag-dhachaigh:" -#: src/Model/Profile.php:373 src/Module/Contact/Profile.php:432 -#: src/Module/Notifications/Introductions.php:195 +#: src/Model/Profile.php:359 src/Module/Contact/Profile.php:418 +#: src/Module/Notifications/Introductions.php:181 msgid "About:" msgstr "Mu dhèidhinn:" -#: src/Model/Profile.php:474 +#: src/Model/Profile.php:460 msgid "Atom feed" msgstr "Inbhir Atom" -#: src/Model/Profile.php:481 +#: src/Model/Profile.php:467 msgid "This website has been verified to belong to the same person." msgstr "Chaidh dearbhadh gu bheil an làrach-lìn seo aig an aon neach." -#: src/Model/Profile.php:532 +#: src/Model/Profile.php:518 msgid "F d" msgstr "d F" -#: src/Model/Profile.php:596 src/Model/Profile.php:677 +#: src/Model/Profile.php:582 src/Model/Profile.php:663 msgid "[today]" msgstr "[an-diugh]" -#: src/Model/Profile.php:605 +#: src/Model/Profile.php:591 msgid "Birthday Reminders" msgstr "Cuimhneachain co-là breith" -#: src/Model/Profile.php:606 +#: src/Model/Profile.php:592 msgid "Birthdays this week:" msgstr "Co-làithean breith an t-seachdain seo:" -#: src/Model/Profile.php:622 +#: src/Model/Profile.php:608 msgid "g A l F d" msgstr "g a l d F" -#: src/Model/Profile.php:664 +#: src/Model/Profile.php:650 msgid "[No description]" msgstr "[Gun tuairisgeul]" -#: src/Model/Profile.php:690 +#: src/Model/Profile.php:676 msgid "Event Reminders" msgstr "Cuimhneachain air tachartasan" -#: src/Model/Profile.php:691 +#: src/Model/Profile.php:677 msgid "Upcoming events the next 7 days:" msgstr "Tachartasan anns na 7 làithean seo tighinn:" -#: src/Model/Profile.php:803 +#: src/Model/Profile.php:789 msgid "Hometown:" msgstr "Baile d’ àraich:" -#: src/Model/Profile.php:804 +#: src/Model/Profile.php:790 msgid "Marital Status:" msgstr "Inbhe pòsaidh:" -#: src/Model/Profile.php:805 +#: src/Model/Profile.php:791 msgid "With:" msgstr "Le:" -#: src/Model/Profile.php:806 +#: src/Model/Profile.php:792 msgid "Since:" msgstr "O chionn:" -#: src/Model/Profile.php:807 +#: src/Model/Profile.php:793 msgid "Sexual Preference:" msgstr "Aidmheil cleamhnais:" -#: src/Model/Profile.php:808 +#: src/Model/Profile.php:794 msgid "Political Views:" msgstr "Beachdan poilitigeach:" -#: src/Model/Profile.php:809 +#: src/Model/Profile.php:795 msgid "Religious Views:" msgstr "Beachdan creideamhach:" -#: src/Model/Profile.php:810 +#: src/Model/Profile.php:796 msgid "Likes:" msgstr "’S toigh seo le:" -#: src/Model/Profile.php:811 +#: src/Model/Profile.php:797 msgid "Dislikes:" msgstr "Cha toigh seo le:" -#: src/Model/Profile.php:812 +#: src/Model/Profile.php:798 msgid "Title/Description:" msgstr "Tiotal/Tuairisgeul:" -#: src/Model/Profile.php:813 src/Module/Admin/Summary.php:197 -#: src/Module/Moderation/Report/Create.php:280 -#: src/Module/Moderation/Summary.php:76 +#: src/Model/Profile.php:799 src/Module/Admin/Summary.php:183 +#: src/Module/Moderation/Report/Create.php:266 +#: src/Module/Moderation/Summary.php:62 msgid "Summary" msgstr "Geàrr-chunntas" -#: src/Model/Profile.php:814 +#: src/Model/Profile.php:800 msgid "Musical interests" msgstr "Ùidhean ciùil" -#: src/Model/Profile.php:815 +#: src/Model/Profile.php:801 msgid "Books, literature" msgstr "Leabhraichean ⁊ litreachas" -#: src/Model/Profile.php:816 +#: src/Model/Profile.php:802 msgid "Television" msgstr "Telebhisean" -#: src/Model/Profile.php:817 +#: src/Model/Profile.php:803 msgid "Film/dance/culture/entertainment" msgstr "Film/dannsa/cultar/dibheirsean" -#: src/Model/Profile.php:818 +#: src/Model/Profile.php:804 msgid "Hobbies/Interests" msgstr "Cur-seachadan/ùidhean" -#: src/Model/Profile.php:819 +#: src/Model/Profile.php:805 msgid "Love/romance" msgstr "Gaol/suirghe" -#: src/Model/Profile.php:820 +#: src/Model/Profile.php:806 msgid "Work/employment" msgstr "Obair/fastadh" -#: src/Model/Profile.php:821 +#: src/Model/Profile.php:807 msgid "School/education" msgstr "Sgoil/foghlam" -#: src/Model/Profile.php:822 +#: src/Model/Profile.php:808 msgid "Contact information and Social Networks" msgstr "Fiosrachadh conaltraidh is meadhanan sòisealta" -#: src/Model/Profile.php:870 +#: src/Model/Profile.php:856 #, php-format msgid "Responsible account: %s" msgstr "" -#: src/Model/User.php:233 src/Model/User.php:1326 +#: src/Model/User.php:217 src/Model/User.php:1310 msgid "SERIOUS ERROR: Generation of security keys failed." msgstr "MEARACHD MHÒR: Dh’fhàillig le gintinn nan iuchraichean tèarainteachd." -#: src/Model/User.php:756 src/Model/User.php:789 +#: src/Model/User.php:740 src/Model/User.php:773 msgid "Login failed" msgstr "Dh’fhàillig leis a’ chlàradh a-steach" -#: src/Model/User.php:821 +#: src/Model/User.php:805 msgid "Not enough information to authenticate" msgstr "Tha fiosrachadh a dhìth dhan dearbhadh" -#: src/Model/User.php:946 +#: src/Model/User.php:930 msgid "Password can't be empty" msgstr "Chan fhaod am facal-faire a bhith bàn" -#: src/Model/User.php:988 +#: src/Model/User.php:972 msgid "Empty passwords are not allowed." msgstr "Chan eil faclan-faire bàna ceadaichte." -#: src/Model/User.php:992 +#: src/Model/User.php:976 msgid "" "The new password has been exposed in a public data dump, please choose " "another." msgstr "Chaidh am facal-faire ùr fhoillseachadh ann an dumpadh dàta poblach, tagh fear eile." -#: src/Model/User.php:996 +#: src/Model/User.php:980 msgid "The password length is limited to 72 characters." msgstr "Chan fhaod am facal-faire a bhith nas fhaide na 72 caractar." -#: src/Model/User.php:1000 +#: src/Model/User.php:984 msgid "The password can't contain white spaces nor accentuated letters" msgstr "Chan fhaod àite bàn no litir le stràc a bhith am broinn an fhacail-fhaire" -#: src/Model/User.php:1209 +#: src/Model/User.php:1193 msgid "Passwords do not match. Password unchanged." msgstr "Chan eil an dà fhacal-faire co-ionnann. Cha deach am facal-faire atharrachadh." -#: src/Model/User.php:1216 +#: src/Model/User.php:1200 msgid "An invitation is required." msgstr "Tha feum air cuireadh." -#: src/Model/User.php:1220 +#: src/Model/User.php:1204 msgid "Invitation could not be verified." msgstr "Cha b’ urrainn dhuinn an cuireadh a dhearbhadh." -#: src/Model/User.php:1228 +#: src/Model/User.php:1212 msgid "Invalid OpenID url" msgstr "URL OpenID mì-dhligheach" -#: src/Model/User.php:1241 src/Security/Authentication.php:228 +#: src/Model/User.php:1225 src/Security/Authentication.php:214 msgid "" "We encountered a problem while logging in with the OpenID you provided. " "Please check the correct spelling of the ID." msgstr "Thachair sinn ri duilgheadas fhad ’s a bha sinn ’gad clàradh a-steach leis an OpenID a thug thu seachad. Thoir sùil air litreachadh an ID." -#: src/Model/User.php:1241 src/Security/Authentication.php:228 +#: src/Model/User.php:1225 src/Security/Authentication.php:214 msgid "The error message was:" msgstr "Seo teachdaireachd na mearachd:" -#: src/Model/User.php:1247 +#: src/Model/User.php:1231 msgid "Please enter the required information." msgstr "Cuir a-steach am fiosrachadh riatanach." -#: src/Model/User.php:1261 +#: src/Model/User.php:1245 #, php-format msgid "" "system.username_min_length (%s) and system.username_max_length (%s) are " "excluding each other, swapping values." msgstr "Tha system.username_min_length (%s) agus system.username_max_length (%s) ag às-dùnadh càch a chèile, a’ cur nan luachan an àite càch a chèile." -#: src/Model/User.php:1268 +#: src/Model/User.php:1252 #, php-format msgid "Username should be at least %s character." msgid_plural "Username should be at least %s characters." @@ -3855,7 +3850,7 @@ msgstr[1] "Feumaidh co-dhiù %s charactar a bhith am broinn an ainm-chleachdaich msgstr[2] "Feumaidh co-dhiù %s caractaran a bhith am broinn an ainm-chleachdaiche." msgstr[3] "Feumaidh co-dhiù %s caractar a bhith am broinn an ainm-chleachdaiche." -#: src/Model/User.php:1272 +#: src/Model/User.php:1256 #, php-format msgid "Username should be at most %s character." msgid_plural "Username should be at most %s characters." @@ -3864,60 +3859,60 @@ msgstr[1] "Chan fhaod còrr is %s charactar a bhith am broinn an ainm-chleachdai msgstr[2] "Chan fhaod còrr is %s caractaran a bhith am broinn an ainm-chleachdaiche." msgstr[3] "Chan fhaod còrr is %s caractar a bhith am broinn an ainm-chleachdaiche." -#: src/Model/User.php:1280 +#: src/Model/User.php:1264 msgid "That doesn't appear to be your full (First Last) name." msgstr "Chan eil coltas ainm shlàin (ainm ⁊ sloinneadh) air." -#: src/Model/User.php:1285 +#: src/Model/User.php:1269 msgid "Your email domain is not among those allowed on this site." msgstr "Chan eil àrainn a’ phuist-d agad am measg na feadhna a tha ceadaichte air an làrach seo." -#: src/Model/User.php:1289 +#: src/Model/User.php:1273 msgid "Not a valid email address." msgstr "Chan e seòladh puist-d dligheach a tha seo." -#: src/Model/User.php:1292 +#: src/Model/User.php:1276 msgid "The nickname was blocked from registration by the nodes admin." msgstr "Chaidh am far-ainm seo a bhacadh on chlàradh le rianaire an nòid." -#: src/Model/User.php:1296 src/Model/User.php:1302 +#: src/Model/User.php:1280 src/Model/User.php:1286 msgid "Cannot use that email." msgstr "Chan urrainn dhut am post-d seo a chleachdadh." -#: src/Model/User.php:1308 +#: src/Model/User.php:1292 msgid "Your nickname can only contain a-z, 0-9 and _." msgstr "Chan fhaod ach a-z, 0-9 ’s _ a bhith am broinn d’ fhar-ainm." -#: src/Model/User.php:1316 src/Model/User.php:1373 +#: src/Model/User.php:1300 src/Model/User.php:1350 msgid "Nickname is already registered. Please choose another." msgstr "Chaidh am far-ainm seo a chlàradh mu thràth. Nach tagh thu fear eile?" -#: src/Model/User.php:1360 src/Model/User.php:1364 +#: src/Model/User.php:1337 src/Model/User.php:1341 msgid "An error occurred during registration. Please try again." msgstr "Thachair mearachd rè a’ chlàraidh. Feuch ris a-rithist." -#: src/Model/User.php:1387 +#: src/Model/User.php:1364 msgid "An error occurred creating your default profile. Please try again." msgstr "Thachair mearachd le cruthachadh na pròifile bunaitiche agad. Feuch ris a-rithist." -#: src/Model/User.php:1394 +#: src/Model/User.php:1371 msgid "An error occurred creating your self contact. Please try again." msgstr "Thachair mearachd le cruthachadh neach-aithne dhiot fhèin. Feuch ris a-rithist." -#: src/Model/User.php:1399 +#: src/Model/User.php:1376 msgid "Friends" msgstr "Caraidean" -#: src/Model/User.php:1403 +#: src/Model/User.php:1380 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:1445 +#: src/Model/User.php:1428 msgid "Profile Photos" msgstr "Dealbhan na pròifil" -#: src/Model/User.php:1633 +#: src/Model/User.php:1616 #, php-format msgid "" "\n" @@ -3925,7 +3920,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:1636 +#: src/Model/User.php:1619 #, php-format msgid "" "\n" @@ -3956,12 +3951,12 @@ msgid "" "\t\tThank you and welcome to %4$s." msgstr "" -#: src/Model/User.php:1668 src/Model/User.php:1774 +#: src/Model/User.php:1651 src/Model/User.php:1757 #, php-format msgid "Registration details for %s" msgstr "Am fiosrachadh clàraidh airson %s" -#: src/Model/User.php:1688 +#: src/Model/User.php:1671 #, php-format msgid "" "\n" @@ -3976,12 +3971,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:1707 +#: src/Model/User.php:1690 #, php-format msgid "Registration at %s" msgstr "An clàradh air %s" -#: src/Model/User.php:1731 +#: src/Model/User.php:1714 #, php-format msgid "" "\n" @@ -3990,7 +3985,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:1739 +#: src/Model/User.php:1722 #, php-format msgid "" "\n" @@ -4021,93 +4016,91 @@ msgid "" "\t\t\tThank you and welcome to %2$s." msgstr "" -#: src/Model/User.php:1801 +#: src/Model/User.php:1784 msgid "" "User with delegates can't be removed, please remove delegate users first" msgstr "" -#: src/Module/Admin/Addons/Details.php:65 +#: src/Module/Admin/Addons/Details.php:51 msgid "Addon not found." msgstr "Cha deach an tuilleadan a lorg." -#: src/Module/Admin/Addons/Details.php:76 src/Module/Admin/Addons/Index.php:55 +#: src/Module/Admin/Addons/Details.php:62 src/Module/Admin/Addons/Index.php:41 #, php-format msgid "Addon %s disabled." msgstr "Tha an tuilleadan %s à comas." -#: src/Module/Admin/Addons/Details.php:79 src/Module/Admin/Addons/Index.php:57 +#: src/Module/Admin/Addons/Details.php:65 src/Module/Admin/Addons/Index.php:43 #, php-format msgid "Addon %s enabled." msgstr "Tha an tuilleadan %s an comas." -#: src/Module/Admin/Addons/Details.php:88 -#: src/Module/Admin/Themes/Details.php:52 +#: src/Module/Admin/Addons/Details.php:74 +#: src/Module/Admin/Themes/Details.php:38 msgid "Disable" msgstr "Cuir à comas" -#: src/Module/Admin/Addons/Details.php:91 -#: src/Module/Admin/Themes/Details.php:55 src/Module/Settings/Display.php:340 +#: src/Module/Admin/Addons/Details.php:77 +#: src/Module/Admin/Themes/Details.php:41 src/Module/Settings/Display.php:326 msgid "Enable" msgstr "Cuir an comas" -#: src/Module/Admin/Addons/Details.php:111 -#: src/Module/Admin/Addons/Index.php:73 src/Module/Admin/Federation.php:220 -#: src/Module/Admin/Logs/Settings.php:88 src/Module/Admin/Logs/View.php:85 -#: src/Module/Admin/Queue.php:73 src/Module/Admin/Site.php:457 -#: src/Module/Admin/Storage.php:138 src/Module/Admin/Summary.php:196 -#: src/Module/Admin/Themes/Details.php:96 -#: src/Module/Admin/Themes/Index.php:117 src/Module/Admin/Tos.php:77 -#: src/Module/Moderation/Users/Create.php:61 -#: src/Module/Moderation/Users/Pending.php:96 +#: src/Module/Admin/Addons/Details.php:97 src/Module/Admin/Addons/Index.php:59 +#: src/Module/Admin/Federation.php:206 src/Module/Admin/Logs/Settings.php:74 +#: src/Module/Admin/Logs/View.php:71 src/Module/Admin/Queue.php:59 +#: src/Module/Admin/Site.php:447 src/Module/Admin/Storage.php:124 +#: src/Module/Admin/Summary.php:182 src/Module/Admin/Themes/Details.php:82 +#: src/Module/Admin/Themes/Index.php:103 src/Module/Admin/Tos.php:63 +#: src/Module/Moderation/Users/Create.php:47 +#: src/Module/Moderation/Users/Pending.php:82 msgid "Administration" msgstr "Rianachd" -#: src/Module/Admin/Addons/Details.php:112 -#: src/Module/Admin/Addons/Index.php:74 src/Module/BaseAdmin.php:92 -#: src/Module/BaseSettings.php:139 +#: src/Module/Admin/Addons/Details.php:98 src/Module/Admin/Addons/Index.php:60 +#: src/Module/BaseAdmin.php:78 src/Module/BaseSettings.php:125 msgid "Addons" msgstr "Tuilleadain" -#: src/Module/Admin/Addons/Details.php:113 -#: src/Module/Admin/Themes/Details.php:98 +#: src/Module/Admin/Addons/Details.php:99 +#: src/Module/Admin/Themes/Details.php:84 msgid "Toggle" msgstr "Toglaich" -#: src/Module/Admin/Addons/Details.php:120 -#: src/Module/Admin/Themes/Details.php:106 +#: src/Module/Admin/Addons/Details.php:106 +#: src/Module/Admin/Themes/Details.php:92 msgid "Author: " msgstr "Ùghdar: " -#: src/Module/Admin/Addons/Details.php:121 -#: src/Module/Admin/Themes/Details.php:107 +#: src/Module/Admin/Addons/Details.php:107 +#: src/Module/Admin/Themes/Details.php:93 msgid "Maintainer: " msgstr "Neach-glèidhidh: " -#: src/Module/Admin/Addons/Index.php:48 +#: src/Module/Admin/Addons/Index.php:34 msgid "Addons reloaded" msgstr "Chaidh na tuilleadain ath-luchdadh" -#: src/Module/Admin/Addons/Index.php:59 +#: src/Module/Admin/Addons/Index.php:45 #, php-format msgid "Addon %s failed to install." msgstr "Dh’fhàillig le stàladh an tuilleadain %s." -#: src/Module/Admin/Addons/Index.php:75 src/Module/Admin/Features.php:83 -#: src/Module/Admin/Logs/Settings.php:90 src/Module/Admin/Site.php:460 -#: src/Module/Admin/Themes/Index.php:119 src/Module/Admin/Tos.php:86 -#: src/Module/Settings/Account.php:563 src/Module/Settings/Addons.php:78 -#: src/Module/Settings/Connectors.php:163 -#: src/Module/Settings/Connectors.php:256 -#: src/Module/Settings/Delegation.php:193 src/Module/Settings/Display.php:309 -#: src/Module/Settings/Features.php:75 +#: src/Module/Admin/Addons/Index.php:61 src/Module/Admin/Features.php:69 +#: src/Module/Admin/Logs/Settings.php:76 src/Module/Admin/Site.php:450 +#: src/Module/Admin/Themes/Index.php:105 src/Module/Admin/Tos.php:72 +#: src/Module/Settings/Account.php:549 src/Module/Settings/Addons.php:64 +#: src/Module/Settings/Connectors.php:149 +#: src/Module/Settings/Connectors.php:235 +#: src/Module/Settings/Delegation.php:179 src/Module/Settings/Display.php:295 +#: src/Module/Settings/Features.php:61 msgid "Save Settings" msgstr "Sàbhail na roghainnean" -#: src/Module/Admin/Addons/Index.php:76 +#: src/Module/Admin/Addons/Index.php:62 msgid "Reload active addons" msgstr "Ath-luchdaich na tuilleadain ghnìomhach" -#: src/Module/Admin/Addons/Index.php:80 +#: src/Module/Admin/Addons/Index.php:66 #, php-format msgid "" "There are currently no addons available on your node. You can find the " @@ -4115,98 +4108,98 @@ msgid "" " the open addon registry at %2$s" msgstr "Chan eil tuilleadan ri fhaighinn aig an nòd agad an-dràsta. Gheibh thu ionad-tasgaidh nan tuilleadan oifigeil air %1$s agus dh’fhaoidte gun lorg thu tuilleadain inntinneach eile air an ionad-tasgaidh fhosgailte air %2$s" -#: src/Module/Admin/DBSync.php:51 +#: src/Module/Admin/DBSync.php:37 msgid "Update has been marked successful" msgstr "Chaidh comharrachadh gun do soirbhich leis an ùrachadh" -#: src/Module/Admin/DBSync.php:59 +#: src/Module/Admin/DBSync.php:45 #, php-format msgid "Database structure update %s was successfully applied." msgstr "Chaidh ùrachadh %s air structar an stòir-dhàta a chur an sàs." -#: src/Module/Admin/DBSync.php:61 +#: src/Module/Admin/DBSync.php:47 #, php-format msgid "Executing of database structure update %s failed with error: %s" msgstr "Dh’fhàillig an t-ùrachadh %s air structar an stòir-dhàta leis a’ mhearachd seo: %s" -#: src/Module/Admin/DBSync.php:76 +#: src/Module/Admin/DBSync.php:62 #, php-format msgid "Executing %s failed with error: %s" msgstr "Dh’fhàillig gnìomhachadh %s leis a’ chòd mhearachd seo: %s" -#: src/Module/Admin/DBSync.php:78 +#: src/Module/Admin/DBSync.php:64 #, php-format msgid "Update %s was successfully applied." msgstr "Chaidh ùrachadh %s a chur an sàs." -#: src/Module/Admin/DBSync.php:81 +#: src/Module/Admin/DBSync.php:67 #, php-format msgid "Update %s did not return a status. Unknown if it succeeded." msgstr "Cha do thill an t-ùrachadh %s staid. Chan eil fhios an do shoirbhich leis gus nach do shoirbhich." -#: src/Module/Admin/DBSync.php:84 +#: src/Module/Admin/DBSync.php:70 #, php-format msgid "There was no additional update function %s that needed to be called." msgstr "Cha robh foincsean ùrachaidh %s eile feumach air gairm ann." -#: src/Module/Admin/DBSync.php:105 +#: src/Module/Admin/DBSync.php:91 msgid "No failed updates." msgstr "Cha do dh’fhàillig le ùrachadh sam bith." -#: src/Module/Admin/DBSync.php:106 +#: src/Module/Admin/DBSync.php:92 msgid "Check database structure" msgstr "Thoir sùil air structar an stòir-dhàta" -#: src/Module/Admin/DBSync.php:110 +#: src/Module/Admin/DBSync.php:96 msgid "Failed Updates" msgstr "Na dh’ùrachaidhean a dh’fhàillig leotha" -#: src/Module/Admin/DBSync.php:111 +#: src/Module/Admin/DBSync.php:97 msgid "" "This does not include updates prior to 1139, which did not return a status." msgstr "Cha ghabh seo a-staigh na h-ùrachaidhean ro 1139 nach do thilleadh staid." -#: src/Module/Admin/DBSync.php:112 +#: src/Module/Admin/DBSync.php:98 msgid "Mark success (if update was manually applied)" msgstr "Cuir comharra gun do shoirbhich leis (ma rinn thu an t-ùrachadh a làimh)" -#: src/Module/Admin/DBSync.php:113 +#: src/Module/Admin/DBSync.php:99 msgid "Attempt to execute this update step automatically" msgstr "Feuch gnìomhachadh a’ cheuma seo dhen ùrachadh gu fèin-obrachail" -#: src/Module/Admin/Features.php:67 -#: src/Module/Notifications/Introductions.php:150 -#: src/Module/OAuth/Acknowledge.php:55 src/Module/Register.php:138 -#: src/Module/Settings/TwoFactor/Trusted.php:129 +#: src/Module/Admin/Features.php:53 +#: src/Module/Notifications/Introductions.php:136 +#: src/Module/OAuth/Acknowledge.php:41 src/Module/Register.php:124 +#: src/Module/Settings/TwoFactor/Trusted.php:115 msgid "No" msgstr "Chan eil" -#: src/Module/Admin/Features.php:67 src/Module/Contact/Revoke.php:105 -#: src/Module/Notifications/Introductions.php:150 -#: src/Module/OAuth/Acknowledge.php:54 src/Module/Register.php:137 -#: src/Module/Settings/TwoFactor/Trusted.php:129 +#: src/Module/Admin/Features.php:53 src/Module/Contact/Revoke.php:91 +#: src/Module/Notifications/Introductions.php:136 +#: src/Module/OAuth/Acknowledge.php:40 src/Module/Register.php:123 +#: src/Module/Settings/TwoFactor/Trusted.php:115 msgid "Yes" msgstr "Tha" -#: src/Module/Admin/Features.php:67 +#: src/Module/Admin/Features.php:53 msgid "Locked" msgstr "" -#: src/Module/Admin/Features.php:81 +#: src/Module/Admin/Features.php:67 msgid "Manage Additional Features" msgstr "Stiùir na gleusan a bharrachd" -#: src/Module/Admin/Federation.php:82 -#: src/Module/Moderation/Report/Create.php:191 -#: src/Module/Moderation/Report/Create.php:316 +#: src/Module/Admin/Federation.php:68 +#: src/Module/Moderation/Report/Create.php:177 +#: src/Module/Moderation/Report/Create.php:302 msgid "Other" msgstr "Eile" -#: src/Module/Admin/Federation.php:160 src/Module/Admin/Federation.php:408 +#: src/Module/Admin/Federation.php:146 src/Module/Admin/Federation.php:394 msgid "unknown" msgstr "chan eil fhios" -#: src/Module/Admin/Federation.php:193 +#: src/Module/Admin/Federation.php:179 #, php-format msgid "%2$s total system" msgid_plural "%2$s total systems" @@ -4215,7 +4208,7 @@ msgstr[1] "%2$s shiostam gu h-iomlan" msgstr[2] "%2$s siostaman gu h-iomlan" msgstr[3] "%2$s siostam gu h-iomlan" -#: src/Module/Admin/Federation.php:194 +#: src/Module/Admin/Federation.php:180 #, php-format msgid "%2$s active user last month" msgid_plural "%2$s active users last month" @@ -4224,7 +4217,7 @@ msgstr[1] "%2$s chleachdaiche gnìomhach sa mhìos seo chaidh" msgstr[2] "%2$s cleachdaichean gnìomhach sa mhìos seo chaidh" msgstr[3] "%2$s cleachdaiche gnìomhach sa mhìos seo chaidh" -#: src/Module/Admin/Federation.php:195 +#: src/Module/Admin/Federation.php:181 #, php-format msgid "%2$s active user last six months" msgid_plural "%2$s active users last six months" @@ -4233,7 +4226,7 @@ msgstr[1] "%2$s chleachdaiche gnìomhach san leth-bhliadhna seo chaidh" msgstr[2] "%2$s cleachdaichean gnìomhach san leth-bhliadhna seo chaidh" msgstr[3] "%2$s cleachdaiche gnìomhach san leth-bhliadhna seo chaidh" -#: src/Module/Admin/Federation.php:196 +#: src/Module/Admin/Federation.php:182 #, php-format msgid "%2$s registered user" msgid_plural "%2$s registered users" @@ -4242,7 +4235,7 @@ msgstr[1] "%2$s chleachdaiche clàraichte" msgstr[2] "%2$s cleachdaichean clàraichte" msgstr[3] "%2$s cleachdaiche clàraichte" -#: src/Module/Admin/Federation.php:197 +#: src/Module/Admin/Federation.php:183 #, php-format msgid "%2$s locally created post or comment" msgid_plural "%2$s locally created posts and comments" @@ -4251,7 +4244,7 @@ msgstr[1] "Chaidh %2$s phost ’s bheachd a chruthachadh gu h-ionadail" msgstr[2] "Chaidh %2$s postaichean ’s beachdan a chruthachadh gu h-ionadail" msgstr[3] "Chaidh %2$s post ’s beachd a chruthachadh gu h-ionadail" -#: src/Module/Admin/Federation.php:200 +#: src/Module/Admin/Federation.php:186 #, php-format msgid "%2$s post per user" msgid_plural "%2$s posts per user" @@ -4260,7 +4253,7 @@ msgstr[1] "%2$s phost gach cleachdaiche" msgstr[2] "%2$s postaichean gach cleachdaiche" msgstr[3] "%2$s post gach cleachdaiche" -#: src/Module/Admin/Federation.php:205 +#: src/Module/Admin/Federation.php:191 #, php-format msgid "%2$s user per system" msgid_plural "%2$s users per system" @@ -4269,18 +4262,18 @@ msgstr[1] "%2$s chleachdaiche gach siostaim" msgstr[2] "%2$s cleachdaichean gach siostaim" msgstr[3] "%2$s cleachdaiche gach siostaim" -#: src/Module/Admin/Federation.php:215 +#: src/Module/Admin/Federation.php:201 msgid "" "This page offers you some numbers to the known part of the federated social " "network your Friendica node is part of. These numbers are not complete but " "only reflect the part of the network your node is aware of." msgstr "Bheir an duilleag seo àireamhan dhut mun chuid dhen lìonra shòisealta cho-naisgte sa bheil an nòd seo dhe Friendica. Chan eil na h-àireamhan seo coileanta is cha sheall iad ach a’ phàirt dhen lìonra air a bheil an nòd agad eòlach." -#: src/Module/Admin/Federation.php:221 src/Module/BaseAdmin.php:87 +#: src/Module/Admin/Federation.php:207 src/Module/BaseAdmin.php:73 msgid "Federation Statistics" msgstr "Stadastaireachd a’ cho-nasgaidh" -#: src/Module/Admin/Federation.php:224 +#: src/Module/Admin/Federation.php:210 #, php-format msgid "" "Currently this node is aware of %2$s node (%3$s active users last month, " @@ -4295,58 +4288,58 @@ msgstr[1] "Tha an nòd seo eòlach air %2$s nòd aig an àm seo (cleachdaichean msgstr[2] "Tha an nòd seo eòlach air %2$s nòdan aig an àm seo (cleachdaichean gnìomhach sa mhìos seo chaidh: %3$s, cleachdaichean gnìomhach san leth-bhliadhna seo chaidh: %4$s, cleachdaichean clàraichte: %5$s gu h-iomlan) o na h-ùrlaran a leanas:" msgstr[3] "Tha an nòd seo eòlach air %2$s nòd aig an àm seo (cleachdaichean gnìomhach sa mhìos seo chaidh: %3$s, cleachdaichean gnìomhach san leth-bhliadhna seo chaidh: %4$s, cleachdaichean clàraichte: %5$s gu h-iomlan) o na h-ùrlaran a leanas:" -#: src/Module/Admin/Logs/Settings.php:47 +#: src/Module/Admin/Logs/Settings.php:33 #, php-format msgid "The logfile '%s' is not writable. No logging possible" msgstr "Cha ghabh sgrìobhadh ann am faidhle “%s” an loga. Cha ghabh logadh a dhèanamh" -#: src/Module/Admin/Logs/Settings.php:80 +#: src/Module/Admin/Logs/Settings.php:66 msgid "PHP log currently enabled." msgstr "Tha logadh PHP an comas an-dràsta." -#: src/Module/Admin/Logs/Settings.php:82 +#: src/Module/Admin/Logs/Settings.php:68 msgid "PHP log currently disabled." msgstr "Tha logadh PHP à comas an-dràsta." -#: src/Module/Admin/Logs/Settings.php:89 src/Module/BaseAdmin.php:102 -#: src/Module/BaseAdmin.php:103 +#: src/Module/Admin/Logs/Settings.php:75 src/Module/BaseAdmin.php:88 +#: src/Module/BaseAdmin.php:89 msgid "Logs" msgstr "Logaichean" -#: src/Module/Admin/Logs/Settings.php:91 +#: src/Module/Admin/Logs/Settings.php:77 msgid "Clear" msgstr "Falamhaich" -#: src/Module/Admin/Logs/Settings.php:94 +#: src/Module/Admin/Logs/Settings.php:80 msgid "Enable Debugging" msgstr "Cuir dì-bhugachadh an comas" -#: src/Module/Admin/Logs/Settings.php:94 src/Module/Admin/Logs/Settings.php:95 -#: src/Module/Admin/Logs/Settings.php:96 src/Module/Admin/Site.php:480 -#: src/Module/Admin/Site.php:488 +#: src/Module/Admin/Logs/Settings.php:80 src/Module/Admin/Logs/Settings.php:81 +#: src/Module/Admin/Logs/Settings.php:82 src/Module/Admin/Site.php:470 +#: src/Module/Admin/Site.php:478 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" -#: src/Module/Admin/Logs/Settings.php:95 +#: src/Module/Admin/Logs/Settings.php:81 msgid "Log file" msgstr "Faidhle an loga" -#: src/Module/Admin/Logs/Settings.php:95 +#: src/Module/Admin/Logs/Settings.php:81 msgid "" "Must be writable by web server. Relative to your Friendica top-level " "directory." msgstr "Feumaidh cead sgrìobhaidh a bhith aig an fhrithealaiche-lìn. Dàimheach ri prìomh-pasgan Friendica." -#: src/Module/Admin/Logs/Settings.php:96 +#: src/Module/Admin/Logs/Settings.php:82 msgid "Log level" msgstr "Leibheil an loga" -#: src/Module/Admin/Logs/Settings.php:98 +#: src/Module/Admin/Logs/Settings.php:84 msgid "PHP logging" msgstr "Logadh PHP" -#: src/Module/Admin/Logs/Settings.php:99 +#: src/Module/Admin/Logs/Settings.php:85 msgid "" "To temporarily enable logging of PHP errors and warnings you can prepend the" " following to the index.php file of your installation. The filename set in " @@ -4355,402 +4348,407 @@ msgid "" "'display_errors' is to enable these options, set to '0' to disable them." msgstr "Airson logadh nam mearachdan is rabhaidhean PHP a chur an comas gu sealach, ’s urrainn dhut na leanas a chur air thoiseach faidhle index.php an stàlaidh agad. Tha ainm an fhaidhle a tha ’ga shuidheachadh air an loidhne 'error_log' dàimheach ri prìomh-phasgan Friendica agus feumaidh cead sgrìobhaidh a bhith aig an fhrithealaiche-lìn ann. Cuiridh tu 'log_errors' (logadh nam mearachdan) agus 'display_errors' (sealltainn nam mearachdan) an comas leis an roghainn '1' agus à comas leis an roghainn '0'." -#: src/Module/Admin/Logs/View.php:72 +#: src/Module/Admin/Logs/View.php:58 #, php-format msgid "" "Error trying to open %1$s log file.
Check to see if " "file %1$s exist and is readable." msgstr "Mearachd a’ feuchainn ri faidhle %1$s an loga fhosgladh.
Dearbh gu bheil am faidhle %1$s ann is gun gabh a leughadh." -#: src/Module/Admin/Logs/View.php:81 +#: src/Module/Admin/Logs/View.php:67 #, php-format msgid "" "Couldn't open %1$s log file.
Check to see if file %1$s " "is readable." msgstr "Cha b’ urrainn dhinn faidhle %1$s an loga fhosgladh.
Dearbh gun gabh am faidhle %1$s a leughadh." -#: src/Module/Admin/Logs/View.php:86 src/Module/BaseAdmin.php:104 +#: src/Module/Admin/Logs/View.php:72 src/Module/BaseAdmin.php:90 msgid "View Logs" msgstr "Seall na logaichean" -#: src/Module/Admin/Logs/View.php:89 +#: src/Module/Admin/Logs/View.php:75 msgid "Search in logs" msgstr "Lorg sna logaichean" -#: src/Module/Admin/Logs/View.php:90 -#: src/Module/Notifications/Notifications.php:146 +#: src/Module/Admin/Logs/View.php:76 +#: src/Module/Notifications/Notifications.php:132 msgid "Show all" msgstr "Seall na h-uile" -#: src/Module/Admin/Logs/View.php:91 +#: src/Module/Admin/Logs/View.php:77 msgid "Date" msgstr "Ceann-là" -#: src/Module/Admin/Logs/View.php:92 +#: src/Module/Admin/Logs/View.php:78 msgid "Level" msgstr "Leibheil" -#: src/Module/Admin/Logs/View.php:93 +#: src/Module/Admin/Logs/View.php:79 msgid "Context" msgstr "Co-theacsa" -#: src/Module/Admin/Logs/View.php:95 +#: src/Module/Admin/Logs/View.php:81 msgid "ALL" msgstr "NA h-UILE" -#: src/Module/Admin/Logs/View.php:96 +#: src/Module/Admin/Logs/View.php:82 msgid "View details" msgstr "Seall am mion-fhiosrachadh" -#: src/Module/Admin/Logs/View.php:97 +#: src/Module/Admin/Logs/View.php:83 msgid "Click to view details" msgstr "Briog air a shealltainn a’ mhion-fhiosrachaidh" -#: src/Module/Admin/Logs/View.php:98 src/Module/Calendar/Event/Form.php:207 +#: src/Module/Admin/Logs/View.php:84 src/Module/Calendar/Event/Form.php:193 msgid "Event details" msgstr "Fiosrachadh an tachartais" -#: src/Module/Admin/Logs/View.php:99 +#: src/Module/Admin/Logs/View.php:85 msgid "Data" msgstr "Dàta" -#: src/Module/Admin/Logs/View.php:100 -#: src/Module/Debug/ActivityPubConversion.php:63 +#: src/Module/Admin/Logs/View.php:86 +#: src/Module/Debug/ActivityPubConversion.php:49 msgid "Source" msgstr "Tùs" -#: src/Module/Admin/Logs/View.php:101 +#: src/Module/Admin/Logs/View.php:87 msgid "File" msgstr "Faidhle" -#: src/Module/Admin/Logs/View.php:102 +#: src/Module/Admin/Logs/View.php:88 msgid "Line" msgstr "Loidhne" -#: src/Module/Admin/Logs/View.php:103 +#: src/Module/Admin/Logs/View.php:89 msgid "Function" msgstr "Foincsean" -#: src/Module/Admin/Logs/View.php:104 +#: src/Module/Admin/Logs/View.php:90 msgid "UID" msgstr "UID" -#: src/Module/Admin/Logs/View.php:105 +#: src/Module/Admin/Logs/View.php:91 msgid "Process ID" msgstr "ID a’ phròiseis" -#: src/Module/Admin/Logs/View.php:106 +#: src/Module/Admin/Logs/View.php:92 msgid "Close" msgstr "Dùin" -#: src/Module/Admin/Queue.php:50 +#: src/Module/Admin/Queue.php:36 msgid "Inspect Deferred Worker Queue" msgstr "Sgrùd ciutha nan obraichean dàilichte" -#: src/Module/Admin/Queue.php:51 +#: src/Module/Admin/Queue.php:37 msgid "" "This page lists the deferred worker jobs. This are jobs that couldn't be " "executed at the first time." msgstr "Gheibh thu liosta nan obraichean dàilichte air an duilleag seo. Cha b’ urrainn dhuinn na h-obraichean seo a dhèanamh sa chiad uair." -#: src/Module/Admin/Queue.php:54 +#: src/Module/Admin/Queue.php:40 msgid "Inspect Worker Queue" msgstr "Sgrùd ciutha nan obraichean" -#: src/Module/Admin/Queue.php:55 +#: src/Module/Admin/Queue.php:41 msgid "" "This page lists the currently queued worker jobs. These jobs are handled by " "the worker cronjob you've set up during install." msgstr "Gheibh thu liosta nan obraichean a tha sa chiutha an-dràsta air an duilleag seo. Thèid na h-obraichean seo a làimhseachadh leis a’ cronjob a shuidhich thu rè an stàlaidh." -#: src/Module/Admin/Queue.php:76 +#: src/Module/Admin/Queue.php:62 msgid "ID" msgstr "ID" -#: src/Module/Admin/Queue.php:77 +#: src/Module/Admin/Queue.php:63 msgid "Command" msgstr "Àithne" -#: src/Module/Admin/Queue.php:78 +#: src/Module/Admin/Queue.php:64 msgid "Job Parameters" msgstr "Paramadairean na h-obrach" -#: src/Module/Admin/Queue.php:79 src/Module/Moderation/Reports.php:116 -#: src/Module/Settings/OAuth.php:74 +#: src/Module/Admin/Queue.php:65 src/Module/Moderation/Reports.php:102 +#: src/Module/Settings/OAuth.php:60 msgid "Created" msgstr "Air a chruthachadh" -#: src/Module/Admin/Queue.php:80 +#: src/Module/Admin/Queue.php:66 msgid "Next Try" msgstr "" -#: src/Module/Admin/Queue.php:81 +#: src/Module/Admin/Queue.php:67 msgid "Priority" msgstr "Prìomhachas" -#: src/Module/Admin/Site.php:244 +#: src/Module/Admin/Site.php:230 +#, php-format +msgid "%s is no valid input for maximum media size" +msgstr "" + +#: src/Module/Admin/Site.php:235 #, 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:372 src/Module/Settings/Display.php:215 +#: src/Module/Admin/Site.php:362 src/Module/Settings/Display.php:201 msgid "No special theme for mobile devices" msgstr "Chan eil ùrlar sònraichte do dh’uidheaman mobile ann" -#: src/Module/Admin/Site.php:389 src/Module/Settings/Display.php:225 +#: src/Module/Admin/Site.php:379 src/Module/Settings/Display.php:211 #, php-format msgid "%s - (Experimental)" msgstr "%s – (deuchainneil)" -#: src/Module/Admin/Site.php:401 +#: src/Module/Admin/Site.php:391 msgid "No community page" msgstr "Gun duilleag coimhearsnachd" -#: src/Module/Admin/Site.php:402 +#: src/Module/Admin/Site.php:392 msgid "No community page for visitors" msgstr "Gun duilleag coimhearsnachd do dh’aoighean" -#: src/Module/Admin/Site.php:403 +#: src/Module/Admin/Site.php:393 msgid "Public postings from users of this site" msgstr "Postaichean poblach nan cleachdaichean air an làrach seo" -#: src/Module/Admin/Site.php:404 +#: src/Module/Admin/Site.php:394 msgid "Public postings from the federated network" msgstr "Postaichean poblach on lìonra cho-naisgte" -#: src/Module/Admin/Site.php:405 +#: src/Module/Admin/Site.php:395 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:411 +#: src/Module/Admin/Site.php:401 msgid "Multi user instance" msgstr "Ionstans ioma-chleachdaiche" -#: src/Module/Admin/Site.php:434 +#: src/Module/Admin/Site.php:424 msgid "Closed" msgstr "Dùinte" -#: src/Module/Admin/Site.php:435 +#: src/Module/Admin/Site.php:425 msgid "Requires approval" msgstr "Tha feum air aontachadh" -#: src/Module/Admin/Site.php:436 +#: src/Module/Admin/Site.php:426 msgid "Open" msgstr "Fosgailte" -#: src/Module/Admin/Site.php:440 +#: src/Module/Admin/Site.php:430 msgid "Don't check" msgstr "Na cuir sùil" -#: src/Module/Admin/Site.php:441 +#: src/Module/Admin/Site.php:431 msgid "check the stable version" msgstr "cuir sùil air na tionndadh seasmhach" -#: src/Module/Admin/Site.php:442 +#: src/Module/Admin/Site.php:432 msgid "check the development version" msgstr "cuir sùil air na tionndadh leasachaidh" -#: src/Module/Admin/Site.php:446 +#: src/Module/Admin/Site.php:436 msgid "none" msgstr "chan eil gin" -#: src/Module/Admin/Site.php:447 +#: src/Module/Admin/Site.php:437 msgid "Local contacts" msgstr "Luchd-aithne an ionadail" -#: src/Module/Admin/Site.php:448 +#: src/Module/Admin/Site.php:438 msgid "Interactors" msgstr "Luchd co-luadair" -#: src/Module/Admin/Site.php:458 src/Module/BaseAdmin.php:90 +#: src/Module/Admin/Site.php:448 src/Module/BaseAdmin.php:76 msgid "Site" msgstr "Làrach" -#: src/Module/Admin/Site.php:459 +#: src/Module/Admin/Site.php:449 msgid "General Information" msgstr "Fiosrachadh coitcheann" -#: src/Module/Admin/Site.php:461 +#: src/Module/Admin/Site.php:451 msgid "Republish users to directory" msgstr "Ath-fhoillsich na cleachdaichean dhan eòlaire" -#: src/Module/Admin/Site.php:462 src/Module/Register.php:159 +#: src/Module/Admin/Site.php:452 src/Module/Register.php:145 msgid "Registration" msgstr "Clàradh" -#: src/Module/Admin/Site.php:463 +#: src/Module/Admin/Site.php:453 msgid "File upload" msgstr "Luchdadh suas fhaidhlichean" -#: src/Module/Admin/Site.php:464 +#: src/Module/Admin/Site.php:454 msgid "Policies" msgstr "Poileasaidhean" -#: src/Module/Admin/Site.php:465 src/Module/Calendar/Event/Form.php:252 -#: src/Module/Contact.php:553 src/Module/Profile/Profile.php:278 +#: src/Module/Admin/Site.php:455 src/Module/Calendar/Event/Form.php:238 +#: src/Module/Contact.php:528 src/Module/Profile/Profile.php:264 msgid "Advanced" msgstr "Adhartach" -#: src/Module/Admin/Site.php:466 +#: src/Module/Admin/Site.php:456 msgid "Auto Discovered Contact Directory" msgstr "Eòlaire an luchd-aithne a chaidh a lorg gu fèin-obrachail" -#: src/Module/Admin/Site.php:467 +#: src/Module/Admin/Site.php:457 msgid "Performance" msgstr "Dèanadas" -#: src/Module/Admin/Site.php:468 +#: src/Module/Admin/Site.php:458 msgid "Worker" msgstr "Obraiche" -#: src/Module/Admin/Site.php:469 +#: src/Module/Admin/Site.php:459 msgid "Message Relay" msgstr "Ath-sheachadan theachdaireachdan" -#: src/Module/Admin/Site.php:470 +#: src/Module/Admin/Site.php:460 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:471 +#: src/Module/Admin/Site.php:461 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:472 +#: src/Module/Admin/Site.php:462 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:475 +#: src/Module/Admin/Site.php:465 msgid "Relocate Node" msgstr "Imrich an nòd" -#: src/Module/Admin/Site.php:476 +#: src/Module/Admin/Site.php:466 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:477 +#: src/Module/Admin/Site.php:467 msgid "(Friendica directory)# bin/console relocate https://newdomain.com" msgstr "(Pasgan Friendica)# bin/console relocate https://àrainn-ùr.com" -#: src/Module/Admin/Site.php:480 +#: src/Module/Admin/Site.php:470 msgid "Site name" msgstr "Ainm na làraich" -#: src/Module/Admin/Site.php:481 +#: src/Module/Admin/Site.php:471 msgid "Sender Email" msgstr "Post-d an t-seòladair" -#: src/Module/Admin/Site.php:481 +#: src/Module/Admin/Site.php:471 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:482 +#: src/Module/Admin/Site.php:472 msgid "Name of the system actor" msgstr "Ainm actar an t-siostaim" -#: src/Module/Admin/Site.php:482 +#: src/Module/Admin/Site.php:472 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:483 +#: src/Module/Admin/Site.php:473 msgid "Banner/Logo" msgstr "Bratach/Suaicheantas" -#: src/Module/Admin/Site.php:484 +#: src/Module/Admin/Site.php:474 msgid "Email Banner/Logo" msgstr "Bratach/Suaicheantas puist-d" -#: src/Module/Admin/Site.php:485 +#: src/Module/Admin/Site.php:475 msgid "Shortcut icon" msgstr "Ìomhaigheag na h-ath-ghoirid" -#: src/Module/Admin/Site.php:485 +#: src/Module/Admin/Site.php:475 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:486 +#: src/Module/Admin/Site.php:476 msgid "Touch icon" msgstr "Ìomhaigheag suathaidh" -#: src/Module/Admin/Site.php:486 +#: src/Module/Admin/Site.php:476 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:487 +#: src/Module/Admin/Site.php:477 msgid "Additional Info" msgstr "Barrachd fiosrachaidh" -#: src/Module/Admin/Site.php:487 +#: src/Module/Admin/Site.php:477 #, 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:488 +#: src/Module/Admin/Site.php:478 msgid "System language" msgstr "Cànan an t-siostaim" -#: src/Module/Admin/Site.php:489 +#: src/Module/Admin/Site.php:479 msgid "System theme" msgstr "Ùrlar an t-siostaim" -#: src/Module/Admin/Site.php:489 +#: src/Module/Admin/Site.php:479 #, 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:490 +#: src/Module/Admin/Site.php:480 msgid "Mobile system theme" msgstr "Ùrlar mobile an t-siostaim" -#: src/Module/Admin/Site.php:490 +#: src/Module/Admin/Site.php:480 msgid "Theme for mobile devices" msgstr "An t-ùrlar do dh’uidheaman mobile" -#: src/Module/Admin/Site.php:491 +#: src/Module/Admin/Site.php:481 msgid "Force SSL" msgstr "Spàrr SSL" -#: src/Module/Admin/Site.php:491 +#: src/Module/Admin/Site.php:481 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:492 +#: src/Module/Admin/Site.php:482 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:492 +#: src/Module/Admin/Site.php:482 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:493 +#: src/Module/Admin/Site.php:483 msgid "Single user instance" msgstr "Ionstans aon-chleachdaiche" -#: src/Module/Admin/Site.php:493 +#: src/Module/Admin/Site.php:483 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:495 +#: src/Module/Admin/Site.php:485 msgid "Maximum image size" msgstr "Meud as motha nan dealbhan" -#: src/Module/Admin/Site.php:495 +#: src/Module/Admin/Site.php:485 #, 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" @@ -4758,35 +4756,47 @@ 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:499 +#: src/Module/Admin/Site.php:489 msgid "Maximum image length" msgstr "Faide as motha nan dealbhan" -#: src/Module/Admin/Site.php:499 +#: src/Module/Admin/Site.php:489 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:500 +#: src/Module/Admin/Site.php:490 msgid "JPEG image quality" msgstr "Càileachd deilbh JPEG" -#: src/Module/Admin/Site.php:500 +#: src/Module/Admin/Site.php:490 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:502 +#: src/Module/Admin/Site.php:491 +msgid "Maximum media file size" +msgstr "" + +#: src/Module/Admin/Site.php:491 +#, php-format +msgid "" +"Maximum size in bytes of uploaded media files. Default is 0, which means no limits. You can put k, m, or g behind the desired value for KiB, MiB, GiB, respectively.\n" +"\t\t\t\t\t\t\t\t\t\t\t\t\tThe value of upload_max_filesize in your PHP.ini needs be set to at least the desired limit.\n" +"\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:496 msgid "Register policy" msgstr "Poileasaidh clàraidh" -#: src/Module/Admin/Site.php:503 +#: src/Module/Admin/Site.php:497 msgid "Maximum Users" msgstr "Àireamh as motha de chleachdaichean" -#: src/Module/Admin/Site.php:503 +#: src/Module/Admin/Site.php:497 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 " @@ -4794,167 +4804,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:504 +#: src/Module/Admin/Site.php:498 msgid "Maximum Daily Registrations" msgstr "An àireamh as motha de chlàraidhean gach latha" -#: src/Module/Admin/Site.php:504 +#: src/Module/Admin/Site.php:498 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:505 +#: src/Module/Admin/Site.php:499 msgid "Register text" msgstr "Teacsa a’ chlàraidh" -#: src/Module/Admin/Site.php:505 +#: src/Module/Admin/Site.php:499 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:506 +#: src/Module/Admin/Site.php:500 msgid "Forbidden Nicknames" msgstr "Far-ainmean toirmisgte" -#: src/Module/Admin/Site.php:506 +#: src/Module/Admin/Site.php:500 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:507 +#: src/Module/Admin/Site.php:501 msgid "Accounts abandoned after x days" msgstr "Cunntasan air an trèigsinn às dèidh x là" -#: src/Module/Admin/Site.php:507 +#: src/Module/Admin/Site.php:501 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:508 +#: src/Module/Admin/Site.php:502 msgid "Allowed friend domains" msgstr "Àrainnean ceadaichte do chàirdeasan" -#: src/Module/Admin/Site.php:508 +#: src/Module/Admin/Site.php:502 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:509 +#: src/Module/Admin/Site.php:503 msgid "Allowed email domains" msgstr "Àrainnean puist-d ceadaichte" -#: src/Module/Admin/Site.php:509 +#: src/Module/Admin/Site.php:503 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:510 +#: src/Module/Admin/Site.php:504 msgid "Disallowed email domains" msgstr "" -#: src/Module/Admin/Site.php:510 +#: src/Module/Admin/Site.php:504 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 +#: src/Module/Admin/Site.php:505 msgid "No OEmbed rich content" msgstr "Gun susbaint OEmbed bheartach" -#: src/Module/Admin/Site.php:511 +#: src/Module/Admin/Site.php:505 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:512 +#: src/Module/Admin/Site.php:506 msgid "Trusted third-party domains" msgstr "Àrainnean threas-phàrtaidhea earbsach" -#: src/Module/Admin/Site.php:512 +#: src/Module/Admin/Site.php:506 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:513 +#: src/Module/Admin/Site.php:507 msgid "Block public" msgstr "Bac inntrigeadh poblach" -#: src/Module/Admin/Site.php:513 +#: src/Module/Admin/Site.php:507 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:514 +#: src/Module/Admin/Site.php:508 msgid "Force publish" msgstr "Spàrr foillseachadh" -#: src/Module/Admin/Site.php:514 +#: src/Module/Admin/Site.php:508 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:514 +#: src/Module/Admin/Site.php:508 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:515 +#: src/Module/Admin/Site.php:509 msgid "Global directory URL" msgstr "URL an eòlaire cho-naisgte" -#: src/Module/Admin/Site.php:515 +#: src/Module/Admin/Site.php:509 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:516 +#: src/Module/Admin/Site.php:510 msgid "Private posts by default for new users" msgstr "Postaichean prìobhaideach ’na bhun-roghainn do chleachdaichean ùra" -#: src/Module/Admin/Site.php:516 +#: src/Module/Admin/Site.php:510 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:517 +#: src/Module/Admin/Site.php:511 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:517 +#: src/Module/Admin/Site.php:511 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:518 +#: src/Module/Admin/Site.php:512 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:518 +#: src/Module/Admin/Site.php:512 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:519 +#: src/Module/Admin/Site.php:513 msgid "Don't embed private images in posts" msgstr "Na leabaich dealbhan prìobhaideach ann am postaichean" -#: src/Module/Admin/Site.php:519 +#: src/Module/Admin/Site.php:513 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 " @@ -4962,11 +4972,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:520 +#: src/Module/Admin/Site.php:514 msgid "Explicit Content" msgstr "Susbaint inbheach" -#: src/Module/Admin/Site.php:520 +#: src/Module/Admin/Site.php:514 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 " @@ -4975,329 +4985,319 @@ 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:521 +#: src/Module/Admin/Site.php:515 msgid "Only local search" msgstr "" -#: src/Module/Admin/Site.php:521 +#: src/Module/Admin/Site.php:515 msgid "" "Blocks search for users who are not logged in to prevent crawlers from " "blocking your system." msgstr "" -#: src/Module/Admin/Site.php:522 +#: src/Module/Admin/Site.php:516 msgid "Blocked tags for trending tags" msgstr "" -#: src/Module/Admin/Site.php:522 +#: src/Module/Admin/Site.php:516 msgid "" "Comma separated list of hashtags that shouldn't be displayed in the trending" " tags." msgstr "" -#: src/Module/Admin/Site.php:523 +#: src/Module/Admin/Site.php:517 msgid "Cache contact avatars" msgstr "Cuir avataran an luchd-aithne dhan tasgadan" -#: src/Module/Admin/Site.php:523 +#: src/Module/Admin/Site.php:517 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:524 +#: src/Module/Admin/Site.php:518 msgid "Allow Users to set remote_self" msgstr "Leig le cleachdaichean remote_self a shuidheachadh" -#: src/Module/Admin/Site.php:524 +#: src/Module/Admin/Site.php:518 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:525 +#: src/Module/Admin/Site.php:519 msgid "Allow Users to set up relay channels" msgstr "" -#: src/Module/Admin/Site.php:525 +#: src/Module/Admin/Site.php:519 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:526 +#: src/Module/Admin/Site.php:520 msgid "Adjust the feed poll frequency" msgstr "" -#: src/Module/Admin/Site.php:526 +#: src/Module/Admin/Site.php:520 msgid "Automatically detect and set the best feed poll frequency." msgstr "" -#: src/Module/Admin/Site.php:527 +#: src/Module/Admin/Site.php:521 msgid "Minimum poll interval" msgstr "" -#: src/Module/Admin/Site.php:527 +#: src/Module/Admin/Site.php:521 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:528 +#: src/Module/Admin/Site.php:522 msgid "Enable multiple registrations" msgstr "Cuir clàradh iomadach an comas" -#: src/Module/Admin/Site.php:528 +#: src/Module/Admin/Site.php:522 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:529 +#: src/Module/Admin/Site.php:523 msgid "Enable OpenID" msgstr "Cuir OpenID an comas" -#: src/Module/Admin/Site.php:529 +#: src/Module/Admin/Site.php:523 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:530 +#: src/Module/Admin/Site.php:524 msgid "Enable full name check" msgstr "" -#: src/Module/Admin/Site.php:530 +#: src/Module/Admin/Site.php:524 msgid "" "Prevents users from registering with a display name with fewer than two " "parts separated by spaces." msgstr "" -#: src/Module/Admin/Site.php:531 +#: src/Module/Admin/Site.php:525 msgid "Email administrators on new registration" msgstr "Cuir puist-d dha na rianairean do chlàraidhean ùra" -#: src/Module/Admin/Site.php:531 +#: src/Module/Admin/Site.php:525 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:532 +#: src/Module/Admin/Site.php:526 msgid "Community pages for visitors" msgstr "Duilleagan coimhearsnachd do dh’aoighean" -#: src/Module/Admin/Site.php:532 +#: src/Module/Admin/Site.php:526 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:533 +#: src/Module/Admin/Site.php:527 msgid "Posts per user on community page" msgstr "Postaichean gach cleachdaiche air duilleag na coimhearsnachd" -#: src/Module/Admin/Site.php:533 +#: src/Module/Admin/Site.php:527 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:534 +#: src/Module/Admin/Site.php:528 msgid "Posts per server on community page" msgstr "" -#: src/Module/Admin/Site.php:534 +#: src/Module/Admin/Site.php:528 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:536 +#: src/Module/Admin/Site.php:530 msgid "Enable Mail support" msgstr "Cuir taic ri post-d an comas" -#: src/Module/Admin/Site.php:536 +#: src/Module/Admin/Site.php:530 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:537 +#: src/Module/Admin/Site.php:531 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:538 -msgid "Enable OStatus support" -msgstr "Cuir an taic ri OStatus an comas" - -#: src/Module/Admin/Site.php:538 -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:540 +#: src/Module/Admin/Site.php:533 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:541 +#: src/Module/Admin/Site.php:534 msgid "Enable Diaspora support" msgstr "Cuir taic ri diaspora* an comas" -#: src/Module/Admin/Site.php:541 +#: src/Module/Admin/Site.php:534 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:542 +#: src/Module/Admin/Site.php:535 msgid "Verify SSL" msgstr "Dearbh SSL" -#: src/Module/Admin/Site.php:542 +#: src/Module/Admin/Site.php:535 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:543 +#: src/Module/Admin/Site.php:536 msgid "Proxy user" msgstr "Cleachdaiche a’ phrogsaidh" -#: src/Module/Admin/Site.php:543 +#: src/Module/Admin/Site.php:536 msgid "User name for the proxy server." msgstr "Ainm-cleachdaiche dhan fhrithealaiche progsaidh." -#: src/Module/Admin/Site.php:544 +#: src/Module/Admin/Site.php:537 msgid "Proxy URL" msgstr "URL a’ phrogsaidh" -#: src/Module/Admin/Site.php:544 +#: src/Module/Admin/Site.php:537 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:545 +#: src/Module/Admin/Site.php:538 msgid "Network timeout" msgstr "Crìoch-ùine an lìonraidh" -#: src/Module/Admin/Site.php:545 +#: src/Module/Admin/Site.php:538 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:546 +#: src/Module/Admin/Site.php:539 msgid "Maximum Load Average" msgstr "Eallach as motha sa chuibheas" -#: src/Module/Admin/Site.php:546 +#: src/Module/Admin/Site.php:539 #, 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:547 +#: src/Module/Admin/Site.php:540 msgid "Minimal Memory" msgstr "A’ chuimhne as lugha" -#: src/Module/Admin/Site.php:547 +#: src/Module/Admin/Site.php:540 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:548 +#: src/Module/Admin/Site.php:541 msgid "Periodically optimize tables" msgstr "Pisich na clàran o àm gu àm" -#: src/Module/Admin/Site.php:548 +#: src/Module/Admin/Site.php:541 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:550 +#: src/Module/Admin/Site.php:543 msgid "Discover followers/followings from contacts" msgstr "Lorg dàimhean leantainn on luchd-aithne" -#: src/Module/Admin/Site.php:550 +#: src/Module/Admin/Site.php:543 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:551 +#: src/Module/Admin/Site.php:544 msgid "None - deactivated" msgstr "Chan eil gin – à comas" -#: src/Module/Admin/Site.php:552 +#: src/Module/Admin/Site.php:545 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:553 +#: src/Module/Admin/Site.php:546 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:555 +#: src/Module/Admin/Site.php:548 msgid "Only update contacts/servers with local data" msgstr "" -#: src/Module/Admin/Site.php:555 +#: src/Module/Admin/Site.php:548 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:556 +#: src/Module/Admin/Site.php:549 msgid "Synchronize the contacts with the directory server" msgstr "Sioncronaich an luchd-aithne le frithealaiche an eòlaire" -#: src/Module/Admin/Site.php:556 +#: src/Module/Admin/Site.php:549 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:558 +#: src/Module/Admin/Site.php:551 msgid "Discover contacts from other servers" msgstr "Lorg luchd-aithne o fhrithealaichean eile" -#: src/Module/Admin/Site.php:558 +#: src/Module/Admin/Site.php:551 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:559 +#: src/Module/Admin/Site.php:552 msgid "Days between requery" msgstr "Làithean eadar ceasnachaidhean" -#: src/Module/Admin/Site.php:559 +#: src/Module/Admin/Site.php:552 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:560 +#: src/Module/Admin/Site.php:553 msgid "Search the local directory" msgstr "Lorg san eòlaire ionadail" -#: src/Module/Admin/Site.php:560 +#: src/Module/Admin/Site.php:553 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:562 +#: src/Module/Admin/Site.php:555 msgid "Publish server information" msgstr "Foillsich fiosrachadh an fhrithealaiche" -#: src/Module/Admin/Site.php:562 +#: src/Module/Admin/Site.php:555 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 " @@ -5305,50 +5305,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:564 +#: src/Module/Admin/Site.php:557 msgid "Check upstream version" msgstr "Cuir sùil air tionndadh an upstream" -#: src/Module/Admin/Site.php:564 +#: src/Module/Admin/Site.php:557 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:565 +#: src/Module/Admin/Site.php:558 msgid "Suppress Tags" msgstr "Mùch tagaichean" -#: src/Module/Admin/Site.php:565 +#: src/Module/Admin/Site.php:558 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:566 +#: src/Module/Admin/Site.php:559 msgid "Clean database" msgstr "Sgioblaich an stòr-dàta" -#: src/Module/Admin/Site.php:566 +#: src/Module/Admin/Site.php:559 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:567 +#: src/Module/Admin/Site.php:560 msgid "Lifespan of remote items" msgstr "Faid-bheatha nan nithean cèine" -#: src/Module/Admin/Site.php:567 +#: src/Module/Admin/Site.php:560 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:568 +#: src/Module/Admin/Site.php:561 msgid "Lifespan of unclaimed items" msgstr "Faid-bheatha nan nithean gun tagairt" -#: src/Module/Admin/Site.php:568 +#: src/Module/Admin/Site.php:561 msgid "" "When the database cleanup is enabled, this defines the days after which " "unclaimed remote items (mostly content from the relay) will be deleted. " @@ -5356,185 +5356,184 @@ 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:569 +#: src/Module/Admin/Site.php:562 msgid "Lifespan of raw conversation data" msgstr "Faid-bheatha dàta amh nan còmhraidhean" -#: src/Module/Admin/Site.php:569 +#: src/Module/Admin/Site.php:562 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." +"The conversation data is used for ActivityPub, 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:570 +#: src/Module/Admin/Site.php:563 msgid "Maximum numbers of comments per post" msgstr "An àireamh as motha de bheachdan ri post" -#: src/Module/Admin/Site.php:570 +#: src/Module/Admin/Site.php:563 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:571 +#: src/Module/Admin/Site.php:564 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:571 +#: src/Module/Admin/Site.php:564 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:572 +#: src/Module/Admin/Site.php:565 msgid "Items per page" msgstr "" -#: src/Module/Admin/Site.php:572 +#: src/Module/Admin/Site.php:565 msgid "" "Number of items per page in stream pages (network, community, " "profile/contact statuses, search)." msgstr "" -#: src/Module/Admin/Site.php:573 +#: src/Module/Admin/Site.php:566 msgid "Items per page for mobile devices" msgstr "" -#: src/Module/Admin/Site.php:573 +#: src/Module/Admin/Site.php:566 msgid "" "Number of items per page in stream pages (network, community, " "profile/contact statuses, search) for mobile devices." msgstr "" -#: src/Module/Admin/Site.php:574 +#: src/Module/Admin/Site.php:567 msgid "Temp path" msgstr "Slighe shealadach" -#: src/Module/Admin/Site.php:574 +#: src/Module/Admin/Site.php:567 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:575 +#: src/Module/Admin/Site.php:568 msgid "Only search in tags" msgstr "Na lorg ach sna tagaichean" -#: src/Module/Admin/Site.php:575 +#: src/Module/Admin/Site.php:568 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:576 +#: src/Module/Admin/Site.php:569 msgid "Limited search scope" msgstr "" -#: src/Module/Admin/Site.php:576 +#: src/Module/Admin/Site.php:569 msgid "" "If enabled, searches will only be performed in the data used for the " "channels and not in all posts." msgstr "" -#: src/Module/Admin/Site.php:577 +#: src/Module/Admin/Site.php:570 msgid "Maximum age of items in the search table" msgstr "" -#: src/Module/Admin/Site.php:577 +#: src/Module/Admin/Site.php:570 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:578 +#: src/Module/Admin/Site.php:571 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:578 +#: src/Module/Admin/Site.php:571 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:579 +#: src/Module/Admin/Site.php:572 msgid "Process \"view\" activities" msgstr "" -#: src/Module/Admin/Site.php:579 +#: src/Module/Admin/Site.php:572 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:580 +#: src/Module/Admin/Site.php:573 msgid "Days, after which a contact is archived" msgstr "" -#: src/Module/Admin/Site.php:580 +#: src/Module/Admin/Site.php:573 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:582 +#: src/Module/Admin/Site.php:575 msgid "Maximum number of parallel workers" msgstr "An àireamh as motha de dh’obraichean co-shìnte" -#: src/Module/Admin/Site.php:582 +#: src/Module/Admin/Site.php:575 #, 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:583 +#: src/Module/Admin/Site.php:576 msgid "Maximum load for workers" msgstr "" -#: src/Module/Admin/Site.php:583 +#: src/Module/Admin/Site.php:576 msgid "Maximum load that causes a cooldown before each worker function call." msgstr "" -#: src/Module/Admin/Site.php:584 +#: src/Module/Admin/Site.php:577 msgid "Enable fastlane" msgstr "Cuir fastlane an comas" -#: src/Module/Admin/Site.php:584 +#: src/Module/Admin/Site.php:577 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:585 +#: src/Module/Admin/Site.php:578 msgid "Decoupled receiver" msgstr "" -#: src/Module/Admin/Site.php:585 +#: src/Module/Admin/Site.php:578 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:586 +#: src/Module/Admin/Site.php:579 msgid "Cron interval" msgstr "" -#: src/Module/Admin/Site.php:586 +#: src/Module/Admin/Site.php:579 msgid "Minimal period in minutes between two calls of the \"Cron\" worker job." msgstr "" -#: src/Module/Admin/Site.php:587 +#: src/Module/Admin/Site.php:580 msgid "Worker defer limit" msgstr "" -#: src/Module/Admin/Site.php:587 +#: src/Module/Admin/Site.php:580 msgid "" "Per default the systems tries delivering for 15 times before dropping it." msgstr "" -#: src/Module/Admin/Site.php:588 +#: src/Module/Admin/Site.php:581 msgid "Worker fetch limit" msgstr "" -#: src/Module/Admin/Site.php:588 +#: src/Module/Admin/Site.php:581 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" @@ -5542,214 +5541,214 @@ msgid "" "system." msgstr "" -#: src/Module/Admin/Site.php:590 +#: src/Module/Admin/Site.php:583 msgid "Direct relay transfer" msgstr "Tar-chur ath-sheachadain dìreach" -#: src/Module/Admin/Site.php:590 +#: src/Module/Admin/Site.php:583 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:591 +#: src/Module/Admin/Site.php:584 msgid "Relay scope" msgstr "Sgòp an ath-sheachadain" -#: src/Module/Admin/Site.php:591 +#: src/Module/Admin/Site.php:584 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:591 src/Module/Contact/Profile.php:328 -#: src/Module/Settings/TwoFactor/Index.php:146 +#: src/Module/Admin/Site.php:584 src/Module/Contact/Profile.php:314 +#: src/Module/Settings/TwoFactor/Index.php:132 msgid "Disabled" msgstr "À comas" -#: src/Module/Admin/Site.php:591 +#: src/Module/Admin/Site.php:584 msgid "all" msgstr "na h-uile" -#: src/Module/Admin/Site.php:591 +#: src/Module/Admin/Site.php:584 msgid "tags" msgstr "tagaichean" -#: src/Module/Admin/Site.php:592 +#: src/Module/Admin/Site.php:585 msgid "Server tags" msgstr "Tagaichean an fhrithealaiche" -#: src/Module/Admin/Site.php:592 +#: src/Module/Admin/Site.php:585 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:593 +#: src/Module/Admin/Site.php:586 msgid "Deny Server tags" msgstr "Tagaichean an fhrithealaiche ’gan diùltadh" -#: src/Module/Admin/Site.php:593 +#: src/Module/Admin/Site.php:586 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:594 +#: src/Module/Admin/Site.php:587 msgid "Maximum amount of tags" msgstr "" -#: src/Module/Admin/Site.php:594 +#: src/Module/Admin/Site.php:587 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:595 +#: src/Module/Admin/Site.php:588 msgid "Allow user tags" msgstr "Ceadaich tagaichean chleachdaichean" -#: src/Module/Admin/Site.php:595 +#: src/Module/Admin/Site.php:588 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:596 +#: src/Module/Admin/Site.php:589 msgid "Deny undetected languages" msgstr "" -#: src/Module/Admin/Site.php:596 +#: src/Module/Admin/Site.php:589 msgid "If enabled, posts with undetected languages will be rejected." msgstr "" -#: src/Module/Admin/Site.php:597 +#: src/Module/Admin/Site.php:590 msgid "Language Quality" msgstr "" -#: src/Module/Admin/Site.php:597 +#: src/Module/Admin/Site.php:590 msgid "The minimum language quality that is required to accept the post." msgstr "" -#: src/Module/Admin/Site.php:598 +#: src/Module/Admin/Site.php:591 msgid "Number of languages for the language detection" msgstr "" -#: src/Module/Admin/Site.php:598 +#: src/Module/Admin/Site.php:591 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:600 +#: src/Module/Admin/Site.php:593 msgid "Maximum age of channel" msgstr "" -#: src/Module/Admin/Site.php:600 +#: src/Module/Admin/Site.php:593 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:601 +#: src/Module/Admin/Site.php:594 msgid "Maximum number of channel posts" msgstr "" -#: src/Module/Admin/Site.php:601 +#: src/Module/Admin/Site.php:594 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:602 +#: src/Module/Admin/Site.php:595 msgid "Interaction score days" msgstr "" -#: src/Module/Admin/Site.php:602 +#: src/Module/Admin/Site.php:595 msgid "Number of days that are used to calculate the interaction score." msgstr "" -#: src/Module/Admin/Site.php:603 +#: src/Module/Admin/Site.php:596 msgid "Maximum number of posts per author" msgstr "" -#: src/Module/Admin/Site.php:603 +#: src/Module/Admin/Site.php:596 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:604 +#: src/Module/Admin/Site.php:597 msgid "Sharer interaction days" msgstr "" -#: src/Module/Admin/Site.php:604 +#: src/Module/Admin/Site.php:597 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:607 +#: src/Module/Admin/Site.php:600 msgid "Start Relocation" msgstr "Tòisich air an imrich" -#: src/Module/Admin/Storage.php:46 +#: src/Module/Admin/Storage.php:32 #, php-format msgid "Storage backend, %s is invalid." msgstr "Backend an stòrais, tha %s mì-dhligheach." -#: src/Module/Admin/Storage.php:73 +#: src/Module/Admin/Storage.php:59 #, php-format msgid "Storage backend %s error: %s" msgstr "Mearachd backend an stòrais %s: %s" -#: src/Module/Admin/Storage.php:84 src/Module/Admin/Storage.php:87 +#: src/Module/Admin/Storage.php:70 src/Module/Admin/Storage.php:73 msgid "Invalid storage backend setting value." msgstr "Luach roghainne mì-dhligheach air backend an stòrais." -#: src/Module/Admin/Storage.php:139 +#: src/Module/Admin/Storage.php:125 msgid "Current Storage Backend" msgstr "Backend làithreach an stòrais" -#: src/Module/Admin/Storage.php:140 +#: src/Module/Admin/Storage.php:126 msgid "Storage Configuration" msgstr "Rèiteachadh an stòrais" -#: src/Module/Admin/Storage.php:141 src/Module/BaseAdmin.php:91 +#: src/Module/Admin/Storage.php:127 src/Module/BaseAdmin.php:77 msgid "Storage" msgstr "An stòras" -#: src/Module/Admin/Storage.php:143 +#: src/Module/Admin/Storage.php:129 msgid "Save & Use storage backend" msgstr "Sàbhail ⁊ cleachd backend an stòrais" -#: src/Module/Admin/Storage.php:144 +#: src/Module/Admin/Storage.php:130 msgid "Use storage backend" msgstr "Cleachd backend an stòrais" -#: src/Module/Admin/Storage.php:145 +#: src/Module/Admin/Storage.php:131 msgid "Save & Reload" msgstr "Sàbhail ⁊ ath-luchdaich" -#: src/Module/Admin/Storage.php:146 +#: src/Module/Admin/Storage.php:132 msgid "This backend doesn't have custom settings" msgstr "Chan eil roghainnean gnàthaichte aig a’ backend seo" -#: src/Module/Admin/Storage.php:148 +#: src/Module/Admin/Storage.php:134 msgid "" "Changing the current backend is prohibited because it is set by an " "environment variable" msgstr "Chan fhaod thu am backend làithreach atharrachadh on a chaidh a shuidheachadh le caochladair àrainne" -#: src/Module/Admin/Storage.php:150 +#: src/Module/Admin/Storage.php:136 msgid "Database (legacy)" msgstr "Stòr-dàta (dìleabach)" -#: src/Module/Admin/Summary.php:55 +#: src/Module/Admin/Summary.php:41 #, php-format msgid "Template engine (%s) error: %s" msgstr "Mearachd einnsean teamplaide (%s): %s" -#: src/Module/Admin/Summary.php:59 +#: src/Module/Admin/Summary.php:45 #, php-format msgid "" "Your DB still runs with MyISAM tables. You should change the engine type to " @@ -5760,7 +5759,7 @@ msgid "" " an automatic conversion.
" msgstr "Tha an stòr-dàta agad a’ cleachdadh clàran MyISAM fhathast. Bu chòir dhut seòrsa an einnsein atharrachadh gu InnoDB. Air sgàth ’s gun cleachd Friendica gleusan InnoDB sònraichte san àm ri teachd, bu chòir dhut seo atharrachadh! Faic an treòir a tha cuideachail airson einnseanan nan clàran iompachadh. ’S urrainn dhut cuideachd an àithne php bin/console.php dbstructure toinnodb aig an stàladh agad dhe Friendica a chleachdadh airson iompachadh fèin-obrachail.
" -#: src/Module/Admin/Summary.php:64 +#: src/Module/Admin/Summary.php:50 #, php-format msgid "" "Your DB still runs with InnoDB tables in the Antelope file format. You " @@ -5771,7 +5770,7 @@ msgid "" " installation for an automatic conversion.
" msgstr "Tha an stòr-dàta agad a’ cleachdadh clàran InnoDB san fhòrmat faidhle Antelope fhathast. Bu chòir dhut fòrmat nam faidhlichean atharrachadh gu Barracuda. Tha Friendica a’ cleachdadh gleusan nach solair fòrmat Antelope. Faic an treòir a tha cuideachail airson einnseanan nan clàran iompachadh. ’S urrainn dhut cuideachd an àithne php bin/console.php dbstructure toinnodb aig an stàladh agad dhe Friendica a chleachdadh airson iompachadh fèin-obrachail.
" -#: src/Module/Admin/Summary.php:74 +#: src/Module/Admin/Summary.php:60 #, php-format msgid "" "Your table_definition_cache is too low (%d). This can lead to the database " @@ -5779,46 +5778,46 @@ msgid "" " to %d. See here for more information.
" msgstr "Tha an table_definition_cache agad ro ìosal (%d). Dh’fhaoidte gun adhbharaich seo mearachd “Prepared statement needs to be re-prepared” an stòir-dhàta. Suidhich air %d e air a char as lugha. Seall an-seo airson barrachd fiosrachaidh.
" -#: src/Module/Admin/Summary.php:85 +#: src/Module/Admin/Summary.php:71 #, php-format msgid "" "There is a new version of Friendica available for download. Your current " "version is %1$s, upstream version is %2$s" msgstr "Tha tionndadh ùr dhe Friendica ri fhaighinn airson luchdadh a-nuas. ’S e %1$s a tha san tionndadh làithreach agad, ’S e %2$s a tha san tionndadh upstream" -#: src/Module/Admin/Summary.php:94 +#: src/Module/Admin/Summary.php:80 msgid "" "The database update failed. Please run \"php bin/console.php dbstructure " "update\" from the command line and have a look at the errors that might " "appear." msgstr "Dh’fhàillig le ùrachadh an stòir-dhàta. Ruith “php bin/console.php dbstructure update” on loidhne-àithne is thoir sùil air na mearachdan a nochdas ma dh’fhaoidte." -#: src/Module/Admin/Summary.php:98 +#: src/Module/Admin/Summary.php:84 msgid "" "The last update failed. Please run \"php bin/console.php dbstructure " "update\" from the command line and have a look at the errors that might " "appear. (Some of the errors are possibly inside the logfile.)" msgstr "Dh’fhàillig leis an ùrachadh mu dheireadh. Ruith “php bin/console.php dbstructure update” on loidhne-àithne is thoir sùil air na mearachdan a nochdas ma dh’fhaoidte. (Faodaidh cuid dhe na mearachdan nochdadh ann am faidhle an loga.)" -#: src/Module/Admin/Summary.php:102 +#: src/Module/Admin/Summary.php:88 msgid "" "The system.url entry is missing. This is a low level setting and can lead to" " unexpected behavior. Please add a valid entry as soon as possible in the " "config file or per console command!" msgstr "Tha innteart system.url a dhìth. Seo suidheachadh air ìre ìosal agus dh’fhaoidte gun adhbharaich seo giùlan air nach robh dùil. Cuir innteart dligheach ris cho luath ’s a ghabhas san fhaidhle config no air an loidhne-àithne!" -#: src/Module/Admin/Summary.php:107 +#: src/Module/Admin/Summary.php:93 msgid "The worker was never executed. Please check your database structure!" msgstr "Cha deach an obair seo a dhèanamh a-riamh. Thoir sùil air structar an stòir-dhàta agad!" -#: src/Module/Admin/Summary.php:109 +#: src/Module/Admin/Summary.php:95 #, php-format msgid "" "The last worker execution was on %s UTC. This is older than one hour. Please" " check your crontab settings." msgstr "Chaidh a obair a dhèanamh aig %s UTC an turas mu dheireadh. Tha seo nas fhaide air ais na uair. Thoir sùil air roghainnean a’ crontab agad." -#: src/Module/Admin/Summary.php:114 +#: src/Module/Admin/Summary.php:100 #, php-format msgid "" "Friendica's configuration now is stored in config/local.config.php, please " @@ -5827,7 +5826,7 @@ msgid "" "help with the transition." msgstr "Tha rèiteachadh Friendica ’ga stòradh ann an config/local.config.php a-nis, dèan lethbhreac dhe config/local-sample.config.php is gluais an rèiteachadh agad o .htconfig.php. Faic duilleag taic an rèiteachaidh airson cuideachadh leis a’ ghluasad." -#: src/Module/Admin/Summary.php:118 +#: src/Module/Admin/Summary.php:104 #, php-format msgid "" "Friendica's configuration now is stored in config/local.config.php, please " @@ -5836,7 +5835,7 @@ msgid "" "page for help with the transition." msgstr "Tha rèiteachadh Friendica ’ga stòradh ann an config/local.config.php a-nis, dèan lethbhreac dhe config/local-sample.config.php is gluais an rèiteachadh agad o config/local.ini.php. Faic duilleag taic an rèiteachaidh airson cuideachadh leis a’ ghluasad." -#: src/Module/Admin/Summary.php:124 +#: src/Module/Admin/Summary.php:110 #, php-format msgid "" "%s is not reachable on your system. This is a severe " @@ -5844,107 +5843,107 @@ msgid "" "href=\"%s\">the installation page for help." msgstr "Cha ghabh %s ruigsinn on t-siostam agad. Seo droch-dhuilgheadas leis an rèiteachadh nach leig leis an fhrithealaiche conaltradh le frithealaichean eile. Faic duilleag an stàlaidh airson cuideachadh." -#: src/Module/Admin/Summary.php:148 +#: src/Module/Admin/Summary.php:134 #, php-format msgid "" "Friendica's system.basepath was updated from '%s' to '%s'. Please remove the" " system.basepath from your db to avoid differences." msgstr "Chaidh an system.basepath aig Friendica ùrachadh o “%s” gu “%s”. Thoir air falbh system.basepath on stòr-dàta agad ach nach biodh diofar eatorra." -#: src/Module/Admin/Summary.php:156 +#: src/Module/Admin/Summary.php:142 #, php-format msgid "" "Friendica's current system.basepath '%s' is wrong and the config file '%s' " "isn't used." msgstr "Tha an system.basepath làithreach “%s” aig Friendica ceàrr is chan eil am faidhle rèiteachaidh “%s” ’ga chleachdadh." -#: src/Module/Admin/Summary.php:164 +#: src/Module/Admin/Summary.php:150 #, php-format msgid "" "Friendica's current system.basepath '%s' is not equal to the config file " "'%s'. Please fix your configuration." msgstr "Chan eil an system.basepath làithreach “%s” co-ionnan ris an fhaidhle rèiteachaidh “%s”. Càirich an rèiteachadh agad." -#: src/Module/Admin/Summary.php:175 +#: src/Module/Admin/Summary.php:161 msgid "Message queues" msgstr "Ciuthan theachdaireachdan" -#: src/Module/Admin/Summary.php:181 +#: src/Module/Admin/Summary.php:167 msgid "Server Settings" msgstr "Roghainnean an fhrithealaiche" -#: src/Module/Admin/Summary.php:199 +#: src/Module/Admin/Summary.php:185 msgid "Version" msgstr "Tionndadh" -#: src/Module/Admin/Summary.php:203 +#: src/Module/Admin/Summary.php:189 msgid "Active addons" msgstr "Tuilleadain ghnìomhach" -#: src/Module/Admin/Themes/Details.php:63 src/Module/Admin/Themes/Index.php:71 +#: src/Module/Admin/Themes/Details.php:49 src/Module/Admin/Themes/Index.php:57 #, php-format msgid "Theme %s disabled." msgstr "Chaidh an t-ùrlar %s a chur à comas." -#: src/Module/Admin/Themes/Details.php:65 src/Module/Admin/Themes/Index.php:73 +#: src/Module/Admin/Themes/Details.php:51 src/Module/Admin/Themes/Index.php:59 #, php-format msgid "Theme %s successfully enabled." msgstr "Chaidh an t-ùrlar %s a chur an comas." -#: src/Module/Admin/Themes/Details.php:67 src/Module/Admin/Themes/Index.php:75 +#: src/Module/Admin/Themes/Details.php:53 src/Module/Admin/Themes/Index.php:61 #, php-format msgid "Theme %s failed to install." msgstr "Dh’fhàillig le stàladh an ùrlair %s." -#: src/Module/Admin/Themes/Details.php:89 +#: src/Module/Admin/Themes/Details.php:75 msgid "Screenshot" msgstr "Glacadh-sgrìn" -#: src/Module/Admin/Themes/Details.php:97 -#: src/Module/Admin/Themes/Index.php:118 src/Module/BaseAdmin.php:93 +#: src/Module/Admin/Themes/Details.php:83 +#: src/Module/Admin/Themes/Index.php:104 src/Module/BaseAdmin.php:79 msgid "Themes" msgstr "Ùrlaran" -#: src/Module/Admin/Themes/Embed.php:80 +#: src/Module/Admin/Themes/Embed.php:66 msgid "Unknown theme." msgstr "Ùrlar nach aithne dhuinn." -#: src/Module/Admin/Themes/Index.php:57 +#: src/Module/Admin/Themes/Index.php:43 msgid "Themes reloaded" msgstr "Chaidh na h-ùrlaran ath-luchdadh" -#: src/Module/Admin/Themes/Index.php:120 +#: src/Module/Admin/Themes/Index.php:106 msgid "Reload active themes" msgstr "Ath-luchdaich na h-ùrlaran gnìomhach" -#: src/Module/Admin/Themes/Index.php:124 +#: src/Module/Admin/Themes/Index.php:110 #, php-format msgid "No themes found on the system. They should be placed in %1$s" msgstr "Cha deach ùrlar a lorg air an t-siostam. Bu chòir dhut an cur am broinn %1$s" -#: src/Module/Admin/Themes/Index.php:125 +#: src/Module/Admin/Themes/Index.php:111 msgid "[Experimental]" msgstr "[Deuchainneil]" -#: src/Module/Admin/Themes/Index.php:126 +#: src/Module/Admin/Themes/Index.php:112 msgid "[Unsupported]" msgstr "[Chan eil taic ris]" -#: src/Module/Admin/Tos.php:79 +#: src/Module/Admin/Tos.php:65 msgid "Display Terms of Service" msgstr "Seall teirmichean na seirbheise" -#: src/Module/Admin/Tos.php:79 +#: src/Module/Admin/Tos.php:65 msgid "" "Enable the Terms of Service page. If this is enabled a link to the terms " "will be added to the registration form and the general information page." msgstr "Cuir an comas duilleag teirmichean na seirbheise. Ma tha seo an comas, thèid ceangal dha na teirmichean a chur ris an fhoirm clàraidh is ri duilleag an fhiosrachaidh choitchinn." -#: src/Module/Admin/Tos.php:80 +#: src/Module/Admin/Tos.php:66 msgid "Display Privacy Statement" msgstr "Seall an aithris prìobhaideachd" -#: src/Module/Admin/Tos.php:80 +#: src/Module/Admin/Tos.php:66 #, php-format msgid "" "Show some informations regarding the needed information to operate the node " @@ -5952,160 +5951,160 @@ msgid "" "noreferrer\">EU-GDPR." msgstr "Seall fiosrachadh a thaobh an fhiosrachaidh riatanaich ach an obraich an nòd, can a-rèir EU-GDPR." -#: src/Module/Admin/Tos.php:81 +#: src/Module/Admin/Tos.php:67 msgid "Privacy Statement Preview" msgstr "Ro-shealladh air an aithris prìobhaideachd" -#: src/Module/Admin/Tos.php:83 +#: src/Module/Admin/Tos.php:69 msgid "The Terms of Service" msgstr "Teirmichean na seirbheise" -#: src/Module/Admin/Tos.php:83 +#: src/Module/Admin/Tos.php:69 msgid "" "Enter the Terms of Service for your node here. You can use BBCode. Headers " "of sections should be [h2] and below." msgstr "Cuir a-steach teirmichean seirbheis an nòid agad an-seo. ’S urrainn dhut BBCode a chleachdadh. Bu chòir dha cheann-sgrìobhaidhean nan earrannan a bhith ’nan [h2] is nas ìsle." -#: src/Module/Admin/Tos.php:84 +#: src/Module/Admin/Tos.php:70 msgid "The rules" msgstr "Na riaghailtean" -#: src/Module/Admin/Tos.php:84 +#: src/Module/Admin/Tos.php:70 msgid "Enter your system rules here. Each line represents one rule." msgstr "Cuir a-steach riaghailtean an t-siostaim agad an-seo. Riochdaichidh gach loidhne riaghailt." -#: src/Module/Api/ApiResponse.php:293 +#: src/Module/Api/ApiResponse.php:279 #, php-format msgid "API endpoint %s %s is not implemented but might be in the future." msgstr "Cha deach puing-dheiridh %s %s an API prògramachadh ach ’s dòcha gun dèid san àm ri teachd." -#: src/Module/Api/Mastodon/Apps.php:73 +#: src/Module/Api/Mastodon/Apps.php:59 msgid "Missing parameters" msgstr "Paramadairean a dhìth" -#: src/Module/Api/Mastodon/Statuses/Bookmark.php:50 +#: src/Module/Api/Mastodon/Statuses/Bookmark.php:36 msgid "Only starting posts can be bookmarked" msgstr "Cha ghabh ach postaichean-toisich a chur ris na comharran-lìn" -#: src/Module/Api/Mastodon/Statuses/Mute.php:51 +#: src/Module/Api/Mastodon/Statuses/Mute.php:37 msgid "Only starting posts can be muted" msgstr "Cha ghabh ach postaichean-toisich a mhùchadh" -#: src/Module/Api/Mastodon/Statuses/Reblog.php:58 +#: src/Module/Api/Mastodon/Statuses/Reblog.php:44 #, php-format msgid "Posts from %s can't be shared" msgstr "Cha ghabh postaichean o %s a co-roinneadh" -#: src/Module/Api/Mastodon/Statuses/Unbookmark.php:51 +#: src/Module/Api/Mastodon/Statuses/Unbookmark.php:37 msgid "Only starting posts can be unbookmarked" msgstr "Cha ghabh ach postaichean-toisich a thoirt air falbh o na comharran-lìn" -#: src/Module/Api/Mastodon/Statuses/Unmute.php:51 +#: src/Module/Api/Mastodon/Statuses/Unmute.php:37 msgid "Only starting posts can be unmuted" msgstr "Cha ghabh ach postaichean-toisich a dhì-mhùchadh" -#: src/Module/Api/Mastodon/Statuses/Unreblog.php:64 +#: src/Module/Api/Mastodon/Statuses/Unreblog.php:50 #, php-format msgid "Posts from %s can't be unshared" msgstr "Cha ghabh sgur de cho-roinneadh phostaichean o %s" -#: src/Module/Api/Twitter/ContactEndpoint.php:66 +#: src/Module/Api/Twitter/ContactEndpoint.php:52 msgid "Contact not found" msgstr "Cha deach an neach-aithne a lorg" -#: src/Module/Apps.php:62 +#: src/Module/Apps.php:48 msgid "No installed applications." msgstr "Cha deach aplacaid a stàladh." -#: src/Module/Apps.php:67 +#: src/Module/Apps.php:53 msgid "Applications" msgstr "Aplacaidean" -#: src/Module/Attach.php:49 src/Module/Attach.php:61 +#: src/Module/Attach.php:35 src/Module/Attach.php:47 msgid "Item was not found." msgstr "Cha deach an nì a lorg." -#: src/Module/BaseAdmin.php:54 src/Module/BaseAdmin.php:58 -#: src/Module/BaseModeration.php:77 src/Module/BaseModeration.php:81 +#: src/Module/BaseAdmin.php:40 src/Module/BaseAdmin.php:44 +#: src/Module/BaseModeration.php:63 src/Module/BaseModeration.php:67 msgid "Please login to continue." msgstr "Clàraich a-steach airson leantainn air adhart." -#: src/Module/BaseAdmin.php:63 +#: src/Module/BaseAdmin.php:49 msgid "You don't have access to administration pages." msgstr "Chan eil inntrigeadh agad air duilleagan na rianachd." -#: src/Module/BaseAdmin.php:67 +#: src/Module/BaseAdmin.php:53 msgid "" "Submanaged account can't access the administration pages. Please log back in" " as the main account." msgstr "Chan urrainn dhan cunntas ’ga fho-stiùireadh duilleagan na rianachd inntrigeadh. Clàraich a-steach leis a’ phrìomh-chunntas." -#: src/Module/BaseAdmin.php:86 src/Module/BaseModeration.php:109 +#: src/Module/BaseAdmin.php:72 src/Module/BaseModeration.php:95 msgid "Overview" msgstr "Foir-shealladh" -#: src/Module/BaseAdmin.php:89 src/Module/BaseModeration.php:112 +#: src/Module/BaseAdmin.php:75 src/Module/BaseModeration.php:98 msgid "Configuration" msgstr "Rèiteachadh" -#: src/Module/BaseAdmin.php:94 src/Module/BaseSettings.php:110 +#: src/Module/BaseAdmin.php:80 src/Module/BaseSettings.php:96 msgid "Additional features" msgstr "Gleusan a bharrachd" -#: src/Module/BaseAdmin.php:97 +#: src/Module/BaseAdmin.php:83 msgid "Database" msgstr "Stòr-dàta" -#: src/Module/BaseAdmin.php:98 +#: src/Module/BaseAdmin.php:84 msgid "DB updates" msgstr "Ùrachaidhean an stòir-dhàta" -#: src/Module/BaseAdmin.php:99 +#: src/Module/BaseAdmin.php:85 msgid "Inspect Deferred Workers" msgstr "Sgrùd na h-obraichean dàilichte" -#: src/Module/BaseAdmin.php:100 +#: src/Module/BaseAdmin.php:86 msgid "Inspect worker Queue" msgstr "Sgrùd ciutha nan obraichean" -#: src/Module/BaseAdmin.php:106 src/Module/BaseModeration.php:120 +#: src/Module/BaseAdmin.php:92 src/Module/BaseModeration.php:106 msgid "Diagnostics" msgstr "Diagnosachd" -#: src/Module/BaseAdmin.php:107 +#: src/Module/BaseAdmin.php:93 msgid "PHP Info" msgstr "Fiosrachadh PHP" -#: src/Module/BaseAdmin.php:108 +#: src/Module/BaseAdmin.php:94 msgid "probe address" msgstr "sgrùd an seòladh" -#: src/Module/BaseAdmin.php:109 +#: src/Module/BaseAdmin.php:95 msgid "check webfinger" msgstr "thoir sùil air webfinger" -#: src/Module/BaseAdmin.php:110 +#: src/Module/BaseAdmin.php:96 msgid "Babel" msgstr "Babel" -#: src/Module/BaseAdmin.php:111 src/Module/Debug/ActivityPubConversion.php:143 +#: src/Module/BaseAdmin.php:97 src/Module/Debug/ActivityPubConversion.php:129 msgid "ActivityPub Conversion" msgstr "Iompachadh ActivityPub" -#: src/Module/BaseAdmin.php:120 +#: src/Module/BaseAdmin.php:106 msgid "Addon Features" msgstr "Gleusan tuilleadain" -#: src/Module/BaseAdmin.php:121 src/Module/BaseModeration.php:129 +#: src/Module/BaseAdmin.php:107 src/Module/BaseModeration.php:115 msgid "User registrations waiting for confirmation" msgstr "Clàraichean chleachdaichean a’ feitheamh air dearbhadh" -#: src/Module/BaseApi.php:455 src/Module/BaseApi.php:471 -#: src/Module/BaseApi.php:487 +#: src/Module/BaseApi.php:441 src/Module/BaseApi.php:457 +#: src/Module/BaseApi.php:473 msgid "Too Many Requests" msgstr "Cus iarrtasan" -#: src/Module/BaseApi.php:456 +#: src/Module/BaseApi.php:442 #, php-format msgid "Daily posting limit of %d post reached. The post was rejected." msgid_plural "Daily posting limit of %d posts reached. The post was rejected." @@ -6114,7 +6113,7 @@ msgstr[1] "Ràinig thu a’ chrìoch de %d phost gach latha. Chaidh am post a dh msgstr[2] "Ràinig thu a’ chrìoch de %d postaichean gach latha. Chaidh am post a dhiùltadh." msgstr[3] "Ràinig thu a’ chrìoch de %d post gach latha. Chaidh am post a dhiùltadh." -#: src/Module/BaseApi.php:472 +#: src/Module/BaseApi.php:458 #, php-format msgid "Weekly posting limit of %d post reached. The post was rejected." msgid_plural "" @@ -6124,7 +6123,7 @@ msgstr[1] "Ràinig thu a’ chrìoch de %d phost gach seachdain. Chaidh am post msgstr[2] "Ràinig thu a’ chrìoch de %d postaichean gach seachdain. Chaidh am post a dhiùltadh." msgstr[3] "Ràinig thu a’ chrìoch de %d post gach seachdain. Chaidh am post a dhiùltadh." -#: src/Module/BaseApi.php:488 +#: src/Module/BaseApi.php:474 #, php-format msgid "Monthly posting limit of %d post reached. The post was rejected." msgid_plural "" @@ -6134,84 +6133,84 @@ msgstr[1] "Ràinig thu a’ chrìoch de %d phost gach mìos. Chaidh am post a dh msgstr[2] "Ràinig thu a’ chrìoch de %d postaichean gach mìos. Chaidh am post a dhiùltadh." msgstr[3] "Ràinig thu a’ chrìoch de %d post gach mìos. Chaidh am post a dhiùltadh." -#: src/Module/BaseModeration.php:86 +#: src/Module/BaseModeration.php:72 msgid "You don't have access to moderation pages." msgstr "" -#: src/Module/BaseModeration.php:90 +#: src/Module/BaseModeration.php:76 msgid "" "Submanaged account can't access the moderation pages. Please log back in as " "the main account." msgstr "" -#: src/Module/BaseModeration.php:110 src/Module/Moderation/Reports.php:115 +#: src/Module/BaseModeration.php:96 src/Module/Moderation/Reports.php:101 msgid "Reports" msgstr "" -#: src/Module/BaseModeration.php:113 src/Module/Moderation/Users/Index.php:148 -#: src/Module/Moderation/Users/Index.php:158 +#: src/Module/BaseModeration.php:99 src/Module/Moderation/Users/Index.php:134 +#: src/Module/Moderation/Users/Index.php:144 msgid "Users" msgstr "Cleachdaichean" -#: src/Module/BaseModeration.php:115 +#: src/Module/BaseModeration.php:101 msgid "Tools" msgstr "Innealan" -#: src/Module/BaseModeration.php:116 +#: src/Module/BaseModeration.php:102 msgid "Contact Blocklist" msgstr "Liosta-bhacaidh an luchd-aithne" -#: src/Module/BaseModeration.php:117 +#: src/Module/BaseModeration.php:103 msgid "Server Blocklist" msgstr "Liosta-bhacaidh an fhrithealaiche" -#: src/Module/BaseModeration.php:118 src/Module/Moderation/Item/Delete.php:62 +#: src/Module/BaseModeration.php:104 src/Module/Moderation/Item/Delete.php:48 msgid "Delete Item" msgstr "Sguab às an nì" -#: src/Module/BaseModeration.php:121 src/Module/Moderation/Item/Source.php:82 +#: src/Module/BaseModeration.php:107 src/Module/Moderation/Item/Source.php:68 msgid "Item Source" msgstr "Tùs an nì" -#: src/Module/BaseProfile.php:52 src/Module/Contact.php:513 +#: src/Module/BaseProfile.php:38 src/Module/Contact.php:488 msgid "Profile Details" msgstr "Fiosrachadh na pròifil" -#: src/Module/BaseProfile.php:60 +#: src/Module/BaseProfile.php:46 msgid "Conversations started" msgstr "Còmhraidhean air an tòiseachadh" -#: src/Module/BaseProfile.php:111 +#: src/Module/BaseProfile.php:97 msgid "Only You Can See This" msgstr "Chan fhaic ach thu fhèin seo" -#: src/Module/BaseProfile.php:116 src/Module/Profile/Schedule.php:81 +#: src/Module/BaseProfile.php:102 src/Module/Profile/Schedule.php:67 msgid "Scheduled Posts" msgstr "Postaichean air an sgeideal" -#: src/Module/BaseProfile.php:119 +#: src/Module/BaseProfile.php:105 msgid "Posts that are scheduled for publishing" msgstr "Postaichean a tha air an sgeideal airson foillseachadh" -#: src/Module/BaseProfile.php:138 src/Module/BaseProfile.php:141 +#: src/Module/BaseProfile.php:124 src/Module/BaseProfile.php:127 msgid "Tips for New Members" msgstr "Gliocasan dha na buill ùra" -#: src/Module/BaseSearch.php:71 +#: src/Module/BaseSearch.php:57 #, php-format msgid "People Search - %s" msgstr "Lorg daoine – %s" -#: src/Module/BaseSearch.php:75 +#: src/Module/BaseSearch.php:61 #, php-format msgid "Group Search - %s" msgstr "Lorg sna buidhnean – %s" -#: src/Module/BaseSearch.php:121 src/Module/Contact/MatchInterests.php:140 +#: src/Module/BaseSearch.php:107 src/Module/Contact/MatchInterests.php:136 msgid "No matches" msgstr "Gun mhaids" -#: src/Module/BaseSearch.php:147 +#: src/Module/BaseSearch.php:133 #, php-format msgid "" "%d result was filtered out because your node blocks the domain it is " @@ -6226,267 +6225,267 @@ msgstr[1] "Chaidh %d thoradh a chriathradh air falbh on a tha an nòd agad a’ msgstr[2] "Chaidh %d toraidhean a chriathradh air falbh on a tha an nòd agad a’ bacadh na h-àrainne air a bheil iad clàraichte. Chì thu liosta nan àrainnean a tha ’gam bacadh leis an nòd agad air an duilleag “Mu dheidhinn”." msgstr[3] "Chaidh %d toradh a chriathradh air falbh on a tha an nòd agad a’ bacadh na h-àrainne air a bheil iad clàraichte. Chì thu liosta nan àrainnean a tha ’gam bacadh leis an nòd agad air an duilleag “Mu dheidhinn”." -#: src/Module/BaseSettings.php:78 +#: src/Module/BaseSettings.php:64 msgid "Account" msgstr "Cunntas" -#: src/Module/BaseSettings.php:85 src/Module/Security/TwoFactor/Verify.php:96 -#: src/Module/Settings/TwoFactor/Index.php:138 +#: src/Module/BaseSettings.php:71 src/Module/Security/TwoFactor/Verify.php:82 +#: src/Module/Settings/TwoFactor/Index.php:124 msgid "Two-factor authentication" msgstr "Dearbhadh dà-cheumnach" -#: src/Module/BaseSettings.php:118 +#: src/Module/BaseSettings.php:104 msgid "Display" msgstr "Sealladh" -#: src/Module/BaseSettings.php:132 src/Module/Settings/Connectors.php:213 +#: src/Module/BaseSettings.php:118 src/Module/Settings/Connectors.php:195 msgid "Social Networks" msgstr "Lìonraidhean sòisealta" -#: src/Module/BaseSettings.php:146 src/Module/Settings/Delegation.php:194 +#: src/Module/BaseSettings.php:132 src/Module/Settings/Delegation.php:180 msgid "Manage Accounts" msgstr "Stiùir na cunntasan" -#: src/Module/BaseSettings.php:153 +#: src/Module/BaseSettings.php:139 msgid "Connected apps" msgstr "Aplacaidean ceangailte" -#: src/Module/BaseSettings.php:160 +#: src/Module/BaseSettings.php:146 msgid "Remote servers" msgstr "" -#: src/Module/BaseSettings.php:167 src/Module/Settings/UserExport.php:98 +#: src/Module/BaseSettings.php:153 src/Module/Settings/UserExport.php:84 msgid "Export personal data" msgstr "Às-phortaich an dàta pearsanta" -#: src/Module/BaseSettings.php:174 +#: src/Module/BaseSettings.php:160 msgid "Remove account" msgstr "Thoir air falbh an cunntas" -#: src/Module/Bookmarklet.php:54 +#: src/Module/Bookmarklet.php:40 msgid "This page is missing a url parameter." msgstr "Tha paramadair URL a dhìth air an duilleag seo." -#: src/Module/Bookmarklet.php:66 +#: src/Module/Bookmarklet.php:52 msgid "The post was created" msgstr "Chaidh am post a chruthachadh" -#: src/Module/Calendar/Event/API.php:100 src/Module/Calendar/Event/API.php:135 -#: src/Module/Calendar/Event/Form.php:80 +#: src/Module/Calendar/Event/API.php:86 src/Module/Calendar/Event/API.php:121 +#: src/Module/Calendar/Event/Form.php:66 msgid "Invalid Request" msgstr "Iarrtas mì-dhligheach" -#: src/Module/Calendar/Event/API.php:109 +#: src/Module/Calendar/Event/API.php:95 msgid "Event id is missing." msgstr "Tha ID an tachartais a dhìth." -#: src/Module/Calendar/Event/API.php:131 +#: src/Module/Calendar/Event/API.php:117 msgid "Failed to remove event" msgstr "Cha deach leinn an tachartas a thoirt air falbh" -#: src/Module/Calendar/Event/API.php:187 src/Module/Calendar/Event/API.php:189 +#: src/Module/Calendar/Event/API.php:173 src/Module/Calendar/Event/API.php:175 msgid "Event can not end before it has started." msgstr "Chan urrainn do thachartas crìochnachadh mus tòisich e." -#: src/Module/Calendar/Event/API.php:196 src/Module/Calendar/Event/API.php:198 +#: src/Module/Calendar/Event/API.php:182 src/Module/Calendar/Event/API.php:184 msgid "Event title and start time are required." msgstr "Tha feum air tiotal is àm tòiseachaidh an tachartais." -#: src/Module/Calendar/Event/Form.php:208 +#: src/Module/Calendar/Event/Form.php:194 msgid "Starting date and Title are required." msgstr "Tha feum air àm tòiseachaidh is tiotal." -#: src/Module/Calendar/Event/Form.php:209 -#: src/Module/Calendar/Event/Form.php:214 +#: src/Module/Calendar/Event/Form.php:195 +#: src/Module/Calendar/Event/Form.php:200 msgid "Event Starts:" msgstr "Tòisichidh an tachartas:" -#: src/Module/Calendar/Event/Form.php:209 -#: src/Module/Calendar/Event/Form.php:237 src/Module/Debug/Probe.php:59 -#: src/Module/Install.php:201 src/Module/Install.php:227 -#: src/Module/Install.php:232 src/Module/Install.php:246 -#: src/Module/Install.php:255 src/Module/Install.php:260 -#: src/Module/Install.php:266 src/Module/Install.php:271 -#: src/Module/Install.php:285 src/Module/Install.php:298 -#: src/Module/Install.php:325 -#: src/Module/Moderation/Blocklist/Server/Add.php:136 -#: src/Module/Moderation/Blocklist/Server/Add.php:138 -#: src/Module/Moderation/Blocklist/Server/Import.php:129 -#: src/Module/Moderation/Blocklist/Server/Index.php:86 -#: src/Module/Moderation/Blocklist/Server/Index.php:87 -#: src/Module/Moderation/Blocklist/Server/Index.php:115 -#: src/Module/Moderation/Blocklist/Server/Index.php:116 -#: src/Module/Moderation/Item/Delete.php:67 src/Module/Register.php:155 -#: src/Module/Security/TwoFactor/Verify.php:101 -#: src/Module/Settings/Channels.php:190 src/Module/Settings/Channels.php:211 -#: src/Module/Settings/TwoFactor/Index.php:161 -#: src/Module/Settings/TwoFactor/Verify.php:158 +#: src/Module/Calendar/Event/Form.php:195 +#: src/Module/Calendar/Event/Form.php:223 src/Module/Debug/Probe.php:45 +#: src/Module/Install.php:187 src/Module/Install.php:213 +#: src/Module/Install.php:218 src/Module/Install.php:232 +#: src/Module/Install.php:241 src/Module/Install.php:246 +#: src/Module/Install.php:252 src/Module/Install.php:257 +#: src/Module/Install.php:271 src/Module/Install.php:284 +#: src/Module/Install.php:311 +#: src/Module/Moderation/Blocklist/Server/Add.php:122 +#: src/Module/Moderation/Blocklist/Server/Add.php:124 +#: src/Module/Moderation/Blocklist/Server/Import.php:113 +#: src/Module/Moderation/Blocklist/Server/Index.php:72 +#: src/Module/Moderation/Blocklist/Server/Index.php:73 +#: src/Module/Moderation/Blocklist/Server/Index.php:101 +#: src/Module/Moderation/Blocklist/Server/Index.php:102 +#: src/Module/Moderation/Item/Delete.php:53 src/Module/Register.php:141 +#: src/Module/Security/TwoFactor/Verify.php:87 +#: src/Module/Settings/Channels.php:176 src/Module/Settings/Channels.php:197 +#: src/Module/Settings/TwoFactor/Index.php:147 +#: src/Module/Settings/TwoFactor/Verify.php:144 msgid "Required" msgstr "Riatanach" -#: src/Module/Calendar/Event/Form.php:223 -#: src/Module/Calendar/Event/Form.php:247 +#: src/Module/Calendar/Event/Form.php:209 +#: src/Module/Calendar/Event/Form.php:233 msgid "Finish date/time is not known or not relevant" msgstr "Chan eil fhios dè an t-àm crìochnachaidh no chan eil e iomchaidh" -#: src/Module/Calendar/Event/Form.php:225 -#: src/Module/Calendar/Event/Form.php:230 +#: src/Module/Calendar/Event/Form.php:211 +#: src/Module/Calendar/Event/Form.php:216 msgid "Event Finishes:" msgstr "Thig an tachartas gu crìoch:" -#: src/Module/Calendar/Event/Form.php:237 -#: src/Module/Calendar/Event/Form.php:243 +#: src/Module/Calendar/Event/Form.php:223 +#: src/Module/Calendar/Event/Form.php:229 msgid "Title (BBCode not allowed)" msgstr "Tiotal (chan eil BBCode ceadaichte)" -#: src/Module/Calendar/Event/Form.php:239 +#: src/Module/Calendar/Event/Form.php:225 msgid "Description (BBCode allowed)" msgstr "Tuairisgeul (tha BBCode ceadaichte)" -#: src/Module/Calendar/Event/Form.php:241 +#: src/Module/Calendar/Event/Form.php:227 msgid "Location (BBCode not allowed)" msgstr "Ionad (chan eil BBCode ceadaichte)" -#: src/Module/Calendar/Event/Form.php:244 -#: src/Module/Calendar/Event/Form.php:245 +#: src/Module/Calendar/Event/Form.php:230 +#: src/Module/Calendar/Event/Form.php:231 msgid "Share this event" msgstr "Co-roinn an tachartas seo" -#: src/Module/Calendar/Event/Form.php:251 src/Module/Profile/Profile.php:277 +#: src/Module/Calendar/Event/Form.php:237 src/Module/Profile/Profile.php:263 msgid "Basic" msgstr "Bunasach" -#: src/Module/Calendar/Export.php:94 +#: src/Module/Calendar/Export.php:80 msgid "This calendar format is not supported" msgstr "Chan eil taic ri fòrmat a’ mhìosachain seo" -#: src/Module/Calendar/Export.php:96 +#: src/Module/Calendar/Export.php:82 msgid "No exportable data found" msgstr "Cha deach dàta a ghabhas às-phortadh a lorg" -#: src/Module/Calendar/Export.php:113 +#: src/Module/Calendar/Export.php:99 msgid "calendar" msgstr "mìosachan" -#: src/Module/Calendar/Show.php:124 +#: src/Module/Calendar/Show.php:110 msgid "Events" msgstr "Tachartasan" -#: src/Module/Calendar/Show.php:125 +#: src/Module/Calendar/Show.php:111 msgid "View" msgstr "Seall" -#: src/Module/Calendar/Show.php:126 +#: src/Module/Calendar/Show.php:112 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:118 src/Module/Settings/Display.php:283 msgid "list" msgstr "liosta" -#: src/Module/Circle.php:57 +#: src/Module/Circle.php:43 msgid "Could not create circle." msgstr "Cha b’ urrainn dhuinn an cearcall a chruthachadh." -#: src/Module/Circle.php:68 src/Module/Circle.php:216 -#: src/Module/Circle.php:240 +#: src/Module/Circle.php:54 src/Module/Circle.php:202 +#: src/Module/Circle.php:226 msgid "Circle not found." msgstr "Cha deach an cearcall a lorg." -#: src/Module/Circle.php:74 +#: src/Module/Circle.php:60 msgid "Circle name was not changed." msgstr "Cha deach ainm a’ chearcaill atharrachadh." -#: src/Module/Circle.php:92 +#: src/Module/Circle.php:78 msgid "Unknown circle." msgstr "Cearcall nach aithne dhuinn." -#: src/Module/Circle.php:98 src/Module/Circle.php:107 -#: src/Module/Contact/Advanced.php:70 src/Module/Contact/Advanced.php:109 -#: src/Module/Contact/Contacts.php:71 src/Module/Contact/Conversations.php:86 -#: src/Module/Contact/Conversations.php:91 -#: src/Module/Contact/Conversations.php:96 src/Module/Contact/Media.php:61 -#: src/Module/Contact/Posts.php:78 src/Module/Contact/Posts.php:83 -#: src/Module/Contact/Posts.php:88 src/Module/Contact/Profile.php:159 -#: src/Module/Contact/Profile.php:164 src/Module/Contact/Profile.php:183 -#: src/Module/Contact/Redir.php:91 src/Module/Contact/Redir.php:145 -#: src/Module/FriendSuggest.php:71 src/Module/FriendSuggest.php:109 +#: src/Module/Circle.php:84 src/Module/Circle.php:93 +#: src/Module/Contact/Advanced.php:56 src/Module/Contact/Advanced.php:95 +#: src/Module/Contact/Contacts.php:57 src/Module/Contact/Conversations.php:72 +#: src/Module/Contact/Conversations.php:77 +#: src/Module/Contact/Conversations.php:82 src/Module/Contact/Media.php:47 +#: src/Module/Contact/Posts.php:64 src/Module/Contact/Posts.php:69 +#: src/Module/Contact/Posts.php:74 src/Module/Contact/Profile.php:145 +#: src/Module/Contact/Profile.php:150 src/Module/Contact/Profile.php:169 +#: src/Module/Contact/Redir.php:77 src/Module/Contact/Redir.php:131 +#: src/Module/FriendSuggest.php:57 src/Module/FriendSuggest.php:95 msgid "Contact not found." msgstr "Cha deach an neach-aithne a lorg." -#: src/Module/Circle.php:102 src/Module/Contact/Contacts.php:66 +#: src/Module/Circle.php:88 src/Module/Contact/Contacts.php:52 msgid "Invalid contact." msgstr "Neach-aithne mì-dhligheach." -#: src/Module/Circle.php:111 src/Module/Contact/Revoke.php:70 +#: src/Module/Circle.php:97 src/Module/Contact/Revoke.php:56 msgid "Contact is deleted." msgstr "Chaidh an neach-aithne a sguabadh às." -#: src/Module/Circle.php:117 +#: src/Module/Circle.php:103 msgid "Unable to add the contact to the circle." msgstr "Cha deach leinn an neach-aithne a chur ris a’ chearcall." -#: src/Module/Circle.php:120 +#: src/Module/Circle.php:106 msgid "Contact successfully added to circle." msgstr "Chaidh an neach-aithne a chur ris a’ chearcall." -#: src/Module/Circle.php:124 +#: src/Module/Circle.php:110 msgid "Unable to remove the contact from the circle." msgstr "Cha deach leinn an neach-aithne a thoirt air falbh on chearcall." -#: src/Module/Circle.php:127 +#: src/Module/Circle.php:113 msgid "Contact successfully removed from circle." msgstr "Chaidh an neach-aithne a thoirt air falbh on chearcall." -#: src/Module/Circle.php:131 +#: src/Module/Circle.php:117 msgid "Bad request." msgstr "Droch-iarrtas." -#: src/Module/Circle.php:172 +#: src/Module/Circle.php:158 msgid "Save Circle" msgstr "Sàbhail an cearcall" -#: src/Module/Circle.php:173 +#: src/Module/Circle.php:159 msgid "Filter" msgstr "Criathrag" -#: src/Module/Circle.php:179 +#: src/Module/Circle.php:165 msgid "Create a circle of contacts/friends." msgstr "Cruthaich cearcall luchd-aithne/charaidean." -#: src/Module/Circle.php:221 +#: src/Module/Circle.php:207 msgid "Unable to remove circle." msgstr "Cha deach leinn an cearcall a thoirt air falbh." -#: src/Module/Circle.php:272 +#: src/Module/Circle.php:258 msgid "Delete Circle" msgstr "Sguab às an cearcall" -#: src/Module/Circle.php:282 +#: src/Module/Circle.php:268 msgid "Edit Circle Name" msgstr "Deasaich ainm a’ chearcaill" -#: src/Module/Circle.php:292 +#: src/Module/Circle.php:278 msgid "Members" msgstr "Buill" -#: src/Module/Circle.php:295 +#: src/Module/Circle.php:281 msgid "Circle is empty" msgstr "Tha an cearcall falamh" -#: src/Module/Circle.php:311 +#: src/Module/Circle.php:297 msgid "Remove contact from circle" msgstr "Thoir air falbh an neach-aithne on chearcall" -#: src/Module/Circle.php:334 +#: src/Module/Circle.php:320 msgid "Click on a contact to add or remove." msgstr "Briog air neach-aithne gus a chur ris no a thoirt air falbh." -#: src/Module/Circle.php:351 +#: src/Module/Circle.php:337 msgid "Add contact to circle" msgstr "Cuir an neach-aithne ris a’ chearcall" -#: src/Module/Contact.php:102 +#: src/Module/Contact.php:88 #, php-format msgid "%d contact edited." msgid_plural "%d contacts edited." @@ -6495,192 +6494,192 @@ msgstr[1] "Chaidh %d luchd-aithne a dheasachadh." msgstr[2] "Chaidh %d luchd-aithne a dheasachadh." msgstr[3] "Chaidh %d luchd-aithne a dheasachadh." -#: src/Module/Contact.php:353 +#: src/Module/Contact.php:328 msgid "Show all contacts" msgstr "Seall an luchd-aithne gu lèir" -#: src/Module/Contact.php:358 src/Module/Contact.php:437 -#: src/Module/Moderation/BaseUsers.php:85 +#: src/Module/Contact.php:333 src/Module/Contact.php:412 +#: src/Module/Moderation/BaseUsers.php:72 msgid "Pending" msgstr "Ri dhèiligeadh" -#: src/Module/Contact.php:361 +#: src/Module/Contact.php:336 msgid "Only show pending contacts" msgstr "Na seall ach an luchd-aithne ri dhèiligeadh" -#: src/Module/Contact.php:366 src/Module/Contact.php:440 -#: src/Module/Moderation/BaseUsers.php:93 +#: src/Module/Contact.php:341 src/Module/Contact.php:415 +#: src/Module/Moderation/BaseUsers.php:80 msgid "Blocked" msgstr "’Ga bhacadh" -#: src/Module/Contact.php:369 +#: src/Module/Contact.php:344 msgid "Only show blocked contacts" msgstr "Na seall ach an luchd-aithne bacte" -#: src/Module/Contact.php:374 src/Module/Contact.php:446 -#: src/Module/Settings/Server/Index.php:107 src/Object/Post.php:399 +#: src/Module/Contact.php:349 src/Module/Contact.php:421 +#: src/Module/Settings/Server/Index.php:93 src/Object/Post.php:385 msgid "Ignored" msgstr "’Ga leigeil seachad" -#: src/Module/Contact.php:377 +#: src/Module/Contact.php:352 msgid "Only show ignored contacts" msgstr "Na seall ach an luchd-aithne ’gan leigeil seachad" -#: src/Module/Contact.php:382 src/Module/Contact.php:449 +#: src/Module/Contact.php:357 src/Module/Contact.php:424 msgid "Collapsed" msgstr "’Ga cho-theannachadh" -#: src/Module/Contact.php:385 +#: src/Module/Contact.php:360 msgid "Only show collapsed contacts" msgstr "Na seall ach an luchd-aithne co-theannaichte" -#: src/Module/Contact.php:390 src/Module/Contact.php:452 +#: src/Module/Contact.php:365 src/Module/Contact.php:427 msgid "Archived" msgstr "San tasg-lann" -#: src/Module/Contact.php:393 +#: src/Module/Contact.php:368 msgid "Only show archived contacts" msgstr "Na seall ach an luchd-aithne san tasg-lann" -#: src/Module/Contact.php:398 src/Module/Contact.php:443 +#: src/Module/Contact.php:373 src/Module/Contact.php:418 msgid "Hidden" msgstr "Falaichte" -#: src/Module/Contact.php:401 +#: src/Module/Contact.php:376 msgid "Only show hidden contacts" msgstr "Na seall ach an luchd-aithne falaichte" -#: src/Module/Contact.php:409 +#: src/Module/Contact.php:384 msgid "Organize your contact circles" msgstr "Cuir rian air cearcallan an luchd-aithne agad" -#: src/Module/Contact.php:464 +#: src/Module/Contact.php:439 msgid "Search your contacts" msgstr "Lorg san luchd-aithne agad" -#: src/Module/Contact.php:465 src/Module/Search/Index.php:207 +#: src/Module/Contact.php:440 src/Module/Search/Index.php:193 #, php-format msgid "Results for: %s" msgstr "Toraidhean airson: %s" -#: src/Module/Contact.php:473 +#: src/Module/Contact.php:448 msgid "Update" msgstr "Ùraich" -#: src/Module/Contact.php:474 src/Module/Contact/Profile.php:532 -#: src/Module/Moderation/Blocklist/Contact.php:117 -#: src/Module/Moderation/Users/Blocked.php:138 -#: src/Module/Moderation/Users/Index.php:154 +#: src/Module/Contact.php:449 src/Module/Contact/Profile.php:518 +#: src/Module/Moderation/Blocklist/Contact.php:103 +#: src/Module/Moderation/Users/Blocked.php:124 +#: src/Module/Moderation/Users/Index.php:140 msgid "Unblock" msgstr "Dì-bhac" -#: src/Module/Contact.php:475 src/Module/Contact/Profile.php:540 +#: src/Module/Contact.php:450 src/Module/Contact/Profile.php:526 msgid "Unignore" msgstr "Na leig seachad tuilleadh" -#: src/Module/Contact.php:476 src/Module/Contact/Profile.php:548 +#: src/Module/Contact.php:451 src/Module/Contact/Profile.php:534 msgid "Uncollapse" msgstr "Na co-theannaich tuilleadh" -#: src/Module/Contact.php:478 +#: src/Module/Contact.php:453 msgid "Batch Actions" msgstr "Gnìomhan ’nan grunnan" -#: src/Module/Contact.php:521 +#: src/Module/Contact.php:496 msgid "Conversations started by this contact" msgstr "Na còmhraidhean a thòisich an neach-aithne seo" -#: src/Module/Contact.php:526 +#: src/Module/Contact.php:501 msgid "Posts and Comments" msgstr "Postaichean ’s beachdan" -#: src/Module/Contact.php:529 +#: src/Module/Contact.php:504 msgid "Individual Posts and Replies" msgstr "Postaichean ’s freagairtean fa leth" -#: src/Module/Contact.php:537 +#: src/Module/Contact.php:512 msgid "Posts containing media objects" msgstr "Postaichean sa bheil nithean meadhain" -#: src/Module/Contact.php:545 +#: src/Module/Contact.php:520 msgid "View all known contacts" msgstr "Seall a h-uile neach-aithne as aithne dhut" -#: src/Module/Contact.php:556 +#: src/Module/Contact.php:531 msgid "Advanced Contact Settings" msgstr "Roghainnean adhartach an luchd-aithne" -#: src/Module/Contact.php:592 +#: src/Module/Contact.php:567 msgid "Mutual Friendship" msgstr "Co-dhàimh" -#: src/Module/Contact.php:596 +#: src/Module/Contact.php:571 msgid "is a fan of yours" msgstr "dealasach ort" -#: src/Module/Contact.php:600 +#: src/Module/Contact.php:575 msgid "you are a fan of" msgstr "tha thu dealasach air" -#: src/Module/Contact.php:618 +#: src/Module/Contact.php:593 msgid "Pending outgoing contact request" msgstr "Iarrtas neach-aithne a-mach gun dèiligeadh" -#: src/Module/Contact.php:620 +#: src/Module/Contact.php:595 msgid "Pending incoming contact request" msgstr "Iarrtas neach-aithne a-steach ri dhèiligeadh" -#: src/Module/Contact.php:633 src/Module/Contact/Profile.php:391 +#: src/Module/Contact.php:608 src/Module/Contact/Profile.php:377 #, php-format msgid "Visit %s's profile [%s]" msgstr "Tadhail air a’ phròifil aig %s [%s]" -#: src/Module/Contact/Advanced.php:99 +#: src/Module/Contact/Advanced.php:85 msgid "Contact update failed." msgstr "Dh’fhàillig ùrachadh an neach-aithne." -#: src/Module/Contact/Advanced.php:130 +#: src/Module/Contact/Advanced.php:116 msgid "Return to contact editor" msgstr "Air ais gu deasaiche an neach-aithne" -#: src/Module/Contact/Advanced.php:134 -#: src/Module/Moderation/Blocklist/Contact.php:122 -#: src/Module/Moderation/Reports.php:116 -#: src/Module/Moderation/Users/Active.php:126 -#: src/Module/Moderation/Users/Blocked.php:126 -#: src/Module/Moderation/Users/Create.php:70 -#: src/Module/Moderation/Users/Deleted.php:83 -#: src/Module/Moderation/Users/Index.php:140 -#: src/Module/Moderation/Users/Index.php:160 -#: src/Module/Moderation/Users/Pending.php:99 src/Module/Settings/OAuth.php:72 +#: src/Module/Contact/Advanced.php:120 +#: src/Module/Moderation/Blocklist/Contact.php:108 +#: src/Module/Moderation/Reports.php:102 +#: src/Module/Moderation/Users/Active.php:112 +#: src/Module/Moderation/Users/Blocked.php:112 +#: src/Module/Moderation/Users/Create.php:56 +#: src/Module/Moderation/Users/Deleted.php:69 +#: src/Module/Moderation/Users/Index.php:126 +#: src/Module/Moderation/Users/Index.php:146 +#: src/Module/Moderation/Users/Pending.php:85 src/Module/Settings/OAuth.php:58 msgid "Name" msgstr "Ainm" -#: src/Module/Contact/Advanced.php:135 +#: src/Module/Contact/Advanced.php:121 msgid "Account Nickname" msgstr "Far-ainm a’ chunntais" -#: src/Module/Contact/Advanced.php:136 +#: src/Module/Contact/Advanced.php:122 msgid "Account URL" msgstr "URL a’ chunntais" -#: src/Module/Contact/Advanced.php:137 +#: src/Module/Contact/Advanced.php:123 msgid "Poll/Feed URL" msgstr "URL a’ chunntais-bheachd/an inbhir" -#: src/Module/Contact/Advanced.php:138 +#: src/Module/Contact/Advanced.php:124 msgid "New photo from this URL" msgstr "Dealbh ùr on URL seo" -#: src/Module/Contact/Contacts.php:89 +#: src/Module/Contact/Contacts.php:75 msgid "No known contacts." msgstr "Chan eil luchd-aithne ann." -#: src/Module/Contact/Contacts.php:103 src/Module/Profile/Common.php:128 +#: src/Module/Contact/Contacts.php:89 src/Module/Profile/Common.php:114 msgid "No common contacts." msgstr "Chan eil neach-aithne an cumantas ann." -#: src/Module/Contact/Contacts.php:115 src/Module/Profile/Contacts.php:135 +#: src/Module/Contact/Contacts.php:101 src/Module/Profile/Contacts.php:121 #, php-format msgid "Follower (%s)" msgid_plural "Followers (%s)" @@ -6689,7 +6688,7 @@ msgstr[1] "Luchd-leantainn (%s)" msgstr[2] "Luchd-leantainn (%s)" msgstr[3] "Luchd-leantainn (%s)" -#: src/Module/Contact/Contacts.php:119 src/Module/Profile/Contacts.php:138 +#: src/Module/Contact/Contacts.php:105 src/Module/Profile/Contacts.php:124 #, php-format msgid "Following (%s)" msgid_plural "Following (%s)" @@ -6698,7 +6697,7 @@ msgstr[1] "A’ leantainn (%s)" msgstr[2] "A’ leantainn (%s)" msgstr[3] "A’ leantainn (%s)" -#: src/Module/Contact/Contacts.php:123 src/Module/Profile/Contacts.php:141 +#: src/Module/Contact/Contacts.php:109 src/Module/Profile/Contacts.php:127 #, php-format msgid "Mutual friend (%s)" msgid_plural "Mutual friends (%s)" @@ -6707,12 +6706,12 @@ msgstr[1] "Co-dhàimhean (%s)" msgstr[2] "Co-dhàimhean (%s)" msgstr[3] "Co-dhàimhean (%s)" -#: src/Module/Contact/Contacts.php:125 src/Module/Profile/Contacts.php:143 +#: src/Module/Contact/Contacts.php:111 src/Module/Profile/Contacts.php:129 #, php-format msgid "These contacts both follow and are followed by %s." msgstr "Tha an luchd-aithne seo an dà chuid a’ leantainn ’s ’gan leantainn le %s." -#: src/Module/Contact/Contacts.php:131 src/Module/Profile/Common.php:116 +#: src/Module/Contact/Contacts.php:117 src/Module/Profile/Common.php:102 #, php-format msgid "Common contact (%s)" msgid_plural "Common contacts (%s)" @@ -6721,14 +6720,14 @@ msgstr[1] "Luchd-aithne an cumantas (%s)" msgstr[2] "Luchd-aithne an cumantas (%s)" msgstr[3] "Luchd-aithne an cumantas (%s)" -#: src/Module/Contact/Contacts.php:133 src/Module/Profile/Common.php:118 +#: src/Module/Contact/Contacts.php:119 src/Module/Profile/Common.php:104 #, php-format msgid "" "Both %s and yourself have publicly interacted with these " "contacts (follow, comment or likes on public posts)." msgstr "Rinn thu fhèin agus %s co-luadar gu poblach leis an luchd-aithne seo (leantainn, beachd air no gur toigh leibh post poblach)." -#: src/Module/Contact/Contacts.php:139 src/Module/Profile/Contacts.php:149 +#: src/Module/Contact/Contacts.php:125 src/Module/Profile/Contacts.php:135 #, php-format msgid "Contact (%s)" msgid_plural "Contacts (%s)" @@ -6737,333 +6736,329 @@ msgstr[1] "Luchd-aithne (%s)" msgstr[2] "Luchd-aithne (%s)" msgstr[3] "Luchd-aithne (%s)" -#: src/Module/Contact/Follow.php:70 src/Module/Contact/Redir.php:59 -#: src/Module/Contact/Redir.php:220 src/Module/Conversation/Community.php:166 -#: src/Module/Debug/ItemBody.php:38 src/Module/Diaspora/Receive.php:59 -#: src/Module/Item/Display.php:96 src/Module/Item/Feed.php:59 -#: src/Module/Item/Follow.php:41 src/Module/Item/Ignore.php:41 -#: src/Module/Item/Language.php:53 src/Module/Item/Pin.php:41 -#: src/Module/Item/Pin.php:56 src/Module/Item/Searchtext.php:53 -#: src/Module/Item/Star.php:42 src/Module/Update/Display.php:37 +#: src/Module/Contact/Follow.php:56 src/Module/Contact/Redir.php:45 +#: src/Module/Contact/Redir.php:206 src/Module/Conversation/Community.php:154 +#: src/Module/Debug/ItemBody.php:24 src/Module/Diaspora/Receive.php:45 +#: src/Module/Item/Display.php:82 src/Module/Item/Feed.php:45 +#: src/Module/Item/Follow.php:27 src/Module/Item/Ignore.php:27 +#: src/Module/Item/Language.php:39 src/Module/Item/Pin.php:27 +#: src/Module/Item/Pin.php:42 src/Module/Item/Searchtext.php:39 +#: src/Module/Item/Star.php:28 src/Module/Update/Display.php:23 msgid "Access denied." msgstr "Chaidh inntrigeadh a dhiùltadh." -#: src/Module/Contact/Follow.php:105 src/Module/Contact/Unfollow.php:125 -#: src/Module/Profile/RemoteFollow.php:133 +#: src/Module/Contact/Follow.php:91 src/Module/Contact/Unfollow.php:111 +#: src/Module/Profile/RemoteFollow.php:119 msgid "Submit Request" msgstr "Cuir an t-iarrtas a-null" -#: src/Module/Contact/Follow.php:115 +#: src/Module/Contact/Follow.php:101 msgid "You already added this contact." msgstr "Chuir thu an neach-aithne seo ris mu thràth." -#: src/Module/Contact/Follow.php:130 +#: src/Module/Contact/Follow.php:116 msgid "The network type couldn't be detected. Contact can't be added." msgstr "Cha do mhothaich sinn do sheòrsa an lìonraidh. Cha b’ urrainn dhuinn an neach-aithne a chur ris." -#: src/Module/Contact/Follow.php:138 +#: src/Module/Contact/Follow.php:124 msgid "Diaspora support isn't enabled. Contact can't be added." msgstr "Chan eil taic ri diaspora* an comas. Cha b’ urrainn dhuinn an neach-aithne a chur ris." -#: src/Module/Contact/Follow.php:143 -msgid "OStatus support is disabled. Contact can't be added." -msgstr "Chan eil taic ri OStatus an comas. Cha b’ urrainn dhuinn an neach-aithne a chur ris." - -#: src/Module/Contact/Follow.php:168 src/Module/Profile/RemoteFollow.php:132 +#: src/Module/Contact/Follow.php:149 src/Module/Profile/RemoteFollow.php:118 msgid "Please answer the following:" msgstr "Freagair seo:" -#: src/Module/Contact/Follow.php:169 src/Module/Contact/Unfollow.php:123 +#: src/Module/Contact/Follow.php:150 src/Module/Contact/Unfollow.php:109 msgid "Your Identity Address:" msgstr "Seòladh do dhearbh-aithne:" -#: src/Module/Contact/Follow.php:170 src/Module/Contact/Profile.php:422 -#: src/Module/Contact/Unfollow.php:129 -#: src/Module/Moderation/Blocklist/Contact.php:131 -#: src/Module/Moderation/Reports.php:123 -#: src/Module/Notifications/Introductions.php:135 -#: src/Module/Notifications/Introductions.php:204 +#: src/Module/Contact/Follow.php:151 src/Module/Contact/Profile.php:408 +#: src/Module/Contact/Unfollow.php:115 +#: src/Module/Moderation/Blocklist/Contact.php:117 +#: src/Module/Moderation/Reports.php:109 +#: src/Module/Notifications/Introductions.php:121 +#: src/Module/Notifications/Introductions.php:190 msgid "Profile URL" msgstr "URL na pròifile" -#: src/Module/Contact/Follow.php:171 src/Module/Contact/Profile.php:434 -#: src/Module/Notifications/Introductions.php:197 -#: src/Module/Profile/Profile.php:236 +#: src/Module/Contact/Follow.php:152 src/Module/Contact/Profile.php:420 +#: src/Module/Notifications/Introductions.php:183 +#: src/Module/Profile/Profile.php:222 msgid "Tags:" msgstr "Tagaichean:" -#: src/Module/Contact/Follow.php:182 +#: src/Module/Contact/Follow.php:163 #, php-format msgid "%s knows you" msgstr "Is aithne dha %s thu" -#: src/Module/Contact/Follow.php:183 +#: src/Module/Contact/Follow.php:164 msgid "Add a personal note:" msgstr "Cuir nòta pearsanta ris:" -#: src/Module/Contact/Follow.php:192 src/Module/Contact/Unfollow.php:138 +#: src/Module/Contact/Follow.php:173 src/Module/Contact/Unfollow.php:124 msgid "Posts and Replies" msgstr "Postaichean ’s freagairtean" -#: src/Module/Contact/Follow.php:221 +#: src/Module/Contact/Follow.php:202 msgid "The contact could not be added." msgstr "Cha b’ urrainn dhuinn an neach-aithne a chur ris." -#: src/Module/Contact/MatchInterests.php:95 -#: src/Module/Media/Attachment/Upload.php:77 -#: src/Module/Media/Attachment/Upload.php:82 -#: src/Module/Media/Photo/Upload.php:81 src/Module/Media/Photo/Upload.php:86 -#: src/Module/Media/Photo/Upload.php:135 +#: src/Module/Contact/MatchInterests.php:81 +#: src/Module/Media/Attachment/Upload.php:63 +#: src/Module/Media/Attachment/Upload.php:68 +#: src/Module/Media/Photo/Upload.php:67 src/Module/Media/Photo/Upload.php:72 +#: src/Module/Media/Photo/Upload.php:121 msgid "Invalid request." msgstr "Iarrtas mì-dhligheach." -#: src/Module/Contact/MatchInterests.php:102 +#: src/Module/Contact/MatchInterests.php:88 msgid "No keywords to match. Please add keywords to your profile." msgstr "Chan eil faclan-luirg rim maidseadh ann. Cuir faclan-luirg ris a’ phròifil agad." -#: src/Module/Contact/MatchInterests.php:145 +#: src/Module/Contact/MatchInterests.php:141 msgid "Profile Match" msgstr "Maidseadh na pròifile" -#: src/Module/Contact/Profile.php:145 +#: src/Module/Contact/Profile.php:131 msgid "Failed to update contact record." msgstr "Cha b’ urrainn dhuinn clàr an neach-aithne ùrachadh." -#: src/Module/Contact/Profile.php:209 +#: src/Module/Contact/Profile.php:195 msgid "Contact has been unblocked" msgstr "Chaidh an neach-aithne a dhì-bhacadh" -#: src/Module/Contact/Profile.php:213 +#: src/Module/Contact/Profile.php:199 msgid "Contact has been blocked" msgstr "Chaidh an neach-aithne a bhacadh" -#: src/Module/Contact/Profile.php:225 +#: src/Module/Contact/Profile.php:211 msgid "Contact has been unignored" msgstr "Chan eil an neach-aithne ’ga leigeil seachad tuilleadh" -#: src/Module/Contact/Profile.php:229 +#: src/Module/Contact/Profile.php:215 msgid "Contact has been ignored" msgstr "Tha an neach-aithne ’ga leigeil seachad" -#: src/Module/Contact/Profile.php:241 +#: src/Module/Contact/Profile.php:227 msgid "Contact has been uncollapsed" msgstr "Chan eil an neach-aithne ’ga cho-theannachadh tuilleadh" -#: src/Module/Contact/Profile.php:245 +#: src/Module/Contact/Profile.php:231 msgid "Contact has been collapsed" msgstr "Tha an neach-aithne ’ga cho-theannachadh" -#: src/Module/Contact/Profile.php:273 +#: src/Module/Contact/Profile.php:259 #, php-format msgid "You are mutual friends with %s" msgstr "Tha co-dhàimh eadar thu fhèin is %s a-nis" -#: src/Module/Contact/Profile.php:274 +#: src/Module/Contact/Profile.php:260 #, php-format msgid "You are sharing with %s" msgstr "Tha thu a’ co-roinneadh le %s" -#: src/Module/Contact/Profile.php:275 +#: src/Module/Contact/Profile.php:261 #, php-format msgid "%s is sharing with you" msgstr "Tha %s a’ co-roinneadh leat" -#: src/Module/Contact/Profile.php:291 +#: src/Module/Contact/Profile.php:277 msgid "Private communications are not available for this contact." msgstr "Chan eil conaltradh prìobhaideach ri fhaighinn dhan neach-aithne seo." -#: src/Module/Contact/Profile.php:301 +#: src/Module/Contact/Profile.php:287 msgid "This contact is on a server you ignored." msgstr "" -#: src/Module/Contact/Profile.php:304 +#: src/Module/Contact/Profile.php:290 msgid "Never" msgstr "Chan ann idir" -#: src/Module/Contact/Profile.php:307 +#: src/Module/Contact/Profile.php:293 msgid "(Update was not successful)" msgstr "(Cha deach leis an ùrachadh)" -#: src/Module/Contact/Profile.php:307 +#: src/Module/Contact/Profile.php:293 msgid "(Update was successful)" msgstr "(Chaidh leis an ùrachadh)" -#: src/Module/Contact/Profile.php:309 src/Module/Contact/Profile.php:503 +#: src/Module/Contact/Profile.php:295 src/Module/Contact/Profile.php:489 msgid "Suggest friends" msgstr "Mol caraidean" -#: src/Module/Contact/Profile.php:313 +#: src/Module/Contact/Profile.php:299 #, php-format msgid "Network type: %s" msgstr "Seòrsa an lìonraidh: %s" -#: src/Module/Contact/Profile.php:318 +#: src/Module/Contact/Profile.php:304 msgid "Communications lost with this contact!" msgstr "Chaidh an conaltradh leis an neach-aithne seo a chall!" -#: src/Module/Contact/Profile.php:324 +#: src/Module/Contact/Profile.php:310 msgid "Fetch further information for feeds" msgstr "Faigh barrachd fiosrachaidh dha na h-inbhirean" -#: src/Module/Contact/Profile.php:326 +#: src/Module/Contact/Profile.php:312 msgid "" "Fetch information like preview pictures, title and teaser from the feed " "item. You can activate this if the feed doesn't contain much text. Keywords " "are taken from the meta header in the feed item and are posted as hash tags." msgstr "Faigh fiosrachadh mar dhealbhan ro-sheallaidh, tiotal is tàladh o nì an inbhir. ’S urrainn dhut seo a chur an comas mur eil cus teacsa san inbhir. Thèid faclan-luirg a thogail o bhann-cinn nì an inbhir agus am postadh ’nan tagaichean hais." -#: src/Module/Contact/Profile.php:329 +#: src/Module/Contact/Profile.php:315 msgid "Fetch information" msgstr "Faigh am fiosrachadh" -#: src/Module/Contact/Profile.php:330 +#: src/Module/Contact/Profile.php:316 msgid "Fetch keywords" msgstr "Faigh na faclan-luirg" -#: src/Module/Contact/Profile.php:331 +#: src/Module/Contact/Profile.php:317 msgid "Fetch information and keywords" msgstr "Faigh am fiosrachadh ’s na faclan-luirg" -#: src/Module/Contact/Profile.php:341 src/Module/Contact/Profile.php:346 -#: src/Module/Contact/Profile.php:351 src/Module/Contact/Profile.php:357 +#: src/Module/Contact/Profile.php:327 src/Module/Contact/Profile.php:332 +#: src/Module/Contact/Profile.php:337 src/Module/Contact/Profile.php:343 msgid "No mirroring" msgstr "Gun sgàthanachadh" -#: src/Module/Contact/Profile.php:342 src/Module/Contact/Profile.php:352 -#: src/Module/Contact/Profile.php:358 +#: src/Module/Contact/Profile.php:328 src/Module/Contact/Profile.php:338 +#: src/Module/Contact/Profile.php:344 msgid "Mirror as my own posting" msgstr "Sgàthanaich ’na phost leam fhìn" -#: src/Module/Contact/Profile.php:347 src/Module/Contact/Profile.php:353 +#: src/Module/Contact/Profile.php:333 src/Module/Contact/Profile.php:339 msgid "Native reshare" msgstr "Co-roinneadh tùsail" -#: src/Module/Contact/Profile.php:373 +#: src/Module/Contact/Profile.php:359 msgid "Contact Information / Notes" msgstr "Fiosrachadh an neach-aithne / Nòtaichean" -#: src/Module/Contact/Profile.php:374 +#: src/Module/Contact/Profile.php:360 msgid "Contact Settings" msgstr "Roghainnean an neach-aithne" -#: src/Module/Contact/Profile.php:382 +#: src/Module/Contact/Profile.php:368 msgid "Contact" msgstr "Neach-aithne" -#: src/Module/Contact/Profile.php:386 +#: src/Module/Contact/Profile.php:372 msgid "Their personal note" msgstr "An nòta pearsanta aca" -#: src/Module/Contact/Profile.php:388 +#: src/Module/Contact/Profile.php:374 msgid "Edit contact notes" msgstr "Deasaich notaichean an neach-aithne" -#: src/Module/Contact/Profile.php:392 +#: src/Module/Contact/Profile.php:378 msgid "Block/Unblock contact" msgstr "Bac/Dì-bhac an neach-aithne" -#: src/Module/Contact/Profile.php:393 -#: src/Module/Moderation/Report/Create.php:293 +#: src/Module/Contact/Profile.php:379 +#: src/Module/Moderation/Report/Create.php:279 msgid "Ignore contact" msgstr "Leig seachad an neach-aithne" -#: src/Module/Contact/Profile.php:394 +#: src/Module/Contact/Profile.php:380 msgid "View conversations" msgstr "Seall na còmhraidhean" -#: src/Module/Contact/Profile.php:399 +#: src/Module/Contact/Profile.php:385 msgid "Last update:" msgstr "An t-ùrachadh mu dheireadh:" -#: src/Module/Contact/Profile.php:401 +#: src/Module/Contact/Profile.php:387 msgid "Update public posts" msgstr "Ùraich na postaichean poblach" -#: src/Module/Contact/Profile.php:403 src/Module/Contact/Profile.php:513 +#: src/Module/Contact/Profile.php:389 src/Module/Contact/Profile.php:499 msgid "Update now" msgstr "Ùraich an-dràsta" -#: src/Module/Contact/Profile.php:405 +#: src/Module/Contact/Profile.php:391 msgid "Awaiting connection acknowledge" msgstr "A’ feitheamh air aithneachadh a’ cheangail" -#: src/Module/Contact/Profile.php:406 +#: src/Module/Contact/Profile.php:392 msgid "Currently blocked" msgstr "’Ga bhacadh an-dràsta" -#: src/Module/Contact/Profile.php:407 +#: src/Module/Contact/Profile.php:393 msgid "Currently ignored" msgstr "’Ga leigeil seachad an-dràsta" -#: src/Module/Contact/Profile.php:408 +#: src/Module/Contact/Profile.php:394 msgid "Currently collapsed" msgstr "’Ga cho-theannachadh an-dràsta" -#: src/Module/Contact/Profile.php:409 +#: src/Module/Contact/Profile.php:395 msgid "Currently archived" msgstr "San tasg-lann an-dràsta" -#: src/Module/Contact/Profile.php:412 +#: src/Module/Contact/Profile.php:398 msgid "Manage remote servers" msgstr "" -#: src/Module/Contact/Profile.php:414 -#: src/Module/Notifications/Introductions.php:198 +#: src/Module/Contact/Profile.php:400 +#: src/Module/Notifications/Introductions.php:184 msgid "Hide this contact from others" msgstr "Falaich an neach-aithne seo o chàch" -#: src/Module/Contact/Profile.php:414 +#: src/Module/Contact/Profile.php:400 msgid "" "Replies/likes to your public posts may still be visible" msgstr "Dh’fhaoidte gum faicear freagairtean/gur toigh le daoine na postaichean poblach agad fhathast" -#: src/Module/Contact/Profile.php:415 +#: src/Module/Contact/Profile.php:401 msgid "Notification for new posts" msgstr "Brathan air postaichean ùra" -#: src/Module/Contact/Profile.php:415 +#: src/Module/Contact/Profile.php:401 msgid "Send a notification of every new post of this contact" msgstr "Cuir brath airson gach post ùr aig an neach-aithne seo" -#: src/Module/Contact/Profile.php:417 +#: src/Module/Contact/Profile.php:403 msgid "Keyword Deny List" msgstr "Liosta-dhiùltaidh nam facal-luirg" -#: src/Module/Contact/Profile.php:417 +#: src/Module/Contact/Profile.php:403 msgid "" "Comma separated list of keywords that should not be converted to hashtags, " "when \"Fetch information and keywords\" is selected" msgstr "Liosta sgaraichte le cromagan de dh’fhaclan-luirg nach dèid iompachadh gu tagaichean tais nuair a bhios “Faigh am fiosrachadh ’s na faclan-luirg” air a thaghadh" -#: src/Module/Contact/Profile.php:435 -#: src/Module/Settings/TwoFactor/Index.php:160 +#: src/Module/Contact/Profile.php:421 +#: src/Module/Settings/TwoFactor/Index.php:146 msgid "Actions" msgstr "Gnìomhan" -#: src/Module/Contact/Profile.php:437 -#: src/Module/Settings/TwoFactor/Index.php:140 view/theme/frio/theme.php:232 +#: src/Module/Contact/Profile.php:423 +#: src/Module/Settings/TwoFactor/Index.php:126 view/theme/frio/theme.php:220 msgid "Status" msgstr "Staid" -#: src/Module/Contact/Profile.php:443 +#: src/Module/Contact/Profile.php:429 msgid "Mirror postings from this contact" msgstr "Sgàthanaich na postaichean on neach-aithne seo" -#: src/Module/Contact/Profile.php:445 +#: src/Module/Contact/Profile.php:431 msgid "" "Mark this contact as remote_self, this will cause friendica to repost new " "entries from this contact." msgstr "Cuir comharra remote_self ris an neach-aithne seo ach an ath-phostaich Friendica nithean ùra on neach-aithne seo." -#: src/Module/Contact/Profile.php:448 +#: src/Module/Contact/Profile.php:434 msgid "Channel Settings" msgstr "" -#: src/Module/Contact/Profile.php:449 +#: src/Module/Contact/Profile.php:435 msgid "Frequency of this contact in relevant channels" msgstr "" -#: src/Module/Contact/Profile.php:450 +#: src/Module/Contact/Profile.php:436 msgid "" "Depending on the type of the channel not all posts from this contact are " "displayed. By default, posts need to have a minimum amount of interactions " @@ -7073,201 +7068,201 @@ msgid "" "block or hide the contact completely." msgstr "" -#: src/Module/Contact/Profile.php:451 +#: src/Module/Contact/Profile.php:437 msgid "Default frequency" msgstr "" -#: src/Module/Contact/Profile.php:451 +#: src/Module/Contact/Profile.php:437 msgid "" "Posts by this contact are displayed in the \"for you\" channel if you " "interact often with this contact or if a post reached some level of " "interaction." msgstr "" -#: src/Module/Contact/Profile.php:452 +#: src/Module/Contact/Profile.php:438 msgid "Display all posts of this contact" msgstr "" -#: src/Module/Contact/Profile.php:452 +#: src/Module/Contact/Profile.php:438 msgid "All posts from this contact will appear on the \"for you\" channel" msgstr "" -#: src/Module/Contact/Profile.php:453 +#: src/Module/Contact/Profile.php:439 msgid "Display only few posts" msgstr "" -#: src/Module/Contact/Profile.php:453 +#: src/Module/Contact/Profile.php:439 msgid "" "When a contact creates a lot of posts in a short period, this setting " "reduces the number of displayed posts in every channel." msgstr "" -#: src/Module/Contact/Profile.php:454 +#: src/Module/Contact/Profile.php:440 msgid "Never display posts" msgstr "" -#: src/Module/Contact/Profile.php:454 +#: src/Module/Contact/Profile.php:440 msgid "Posts from this contact will never be displayed in any channel" msgstr "" -#: src/Module/Contact/Profile.php:455 +#: src/Module/Contact/Profile.php:441 msgid "Channel Only" msgstr "" -#: src/Module/Contact/Profile.php:455 +#: src/Module/Contact/Profile.php:441 msgid "" "If enabled, posts from this contact will only appear in channels and network" " streams in circles, but not in the general network stream." msgstr "" -#: src/Module/Contact/Profile.php:523 +#: src/Module/Contact/Profile.php:509 msgid "Refetch contact data" msgstr "Faigh dàta an neach-aithne a-rithist" -#: src/Module/Contact/Profile.php:534 +#: src/Module/Contact/Profile.php:520 msgid "Toggle Blocked status" msgstr "Toglaich stad a’ bhacaidh" -#: src/Module/Contact/Profile.php:542 +#: src/Module/Contact/Profile.php:528 msgid "Toggle Ignored status" msgstr "Toglaich staid na leigeil seachad" -#: src/Module/Contact/Profile.php:550 +#: src/Module/Contact/Profile.php:536 msgid "Toggle Collapsed status" msgstr "Toglaich staid a’ cho-theannachaidh" -#: src/Module/Contact/Profile.php:557 src/Module/Contact/Revoke.php:103 +#: src/Module/Contact/Profile.php:543 src/Module/Contact/Revoke.php:89 msgid "Revoke Follow" msgstr "Cùl-ghairm an leantainn" -#: src/Module/Contact/Profile.php:559 +#: src/Module/Contact/Profile.php:545 msgid "Revoke the follow from this contact" msgstr "Thoir air an neach-aithne seo nach lean iad ort tuilleadh" -#: src/Module/Contact/Redir.php:139 +#: src/Module/Contact/Redir.php:125 msgid "Bad Request." msgstr "Droch-iarrtas." -#: src/Module/Contact/Revoke.php:74 +#: src/Module/Contact/Revoke.php:60 msgid "Contact is being deleted." msgstr "Tha an neach-aithne ’ga sguabadh às." -#: src/Module/Contact/Revoke.php:88 +#: src/Module/Contact/Revoke.php:74 msgid "Follow was successfully revoked." msgstr "Chaidh an leantainn a chùl-ghairm." -#: src/Module/Contact/Revoke.php:104 +#: src/Module/Contact/Revoke.php:90 msgid "" "Do you really want to revoke this contact's follow? This cannot be undone " "and they will have to manually follow you back again." msgstr "A bheil thu cinnteach nach eil thu ag iarraidh gun lean an neach-aithne seo ort tuilleadh? Cha ghabh seo a neo-dhèanamh is feumaidh iad leantainn ort a làimh às ùr." -#: src/Module/Contact/Suggestions.php:62 +#: src/Module/Contact/Suggestions.php:48 msgid "" "No suggestions available. If this is a new site, please try again in 24 " "hours." msgstr "Chan eil moladh sam bith ann. Mas e làrach ùr a th’ ann, feuch ris a-rithist an ceann 24 uair a thìde." -#: src/Module/Contact/Unfollow.php:98 src/Module/Contact/Unfollow.php:167 +#: src/Module/Contact/Unfollow.php:84 src/Module/Contact/Unfollow.php:153 msgid "You aren't following this contact." msgstr "Chan eil thu a’ leantainn air an neach-aithne seo." -#: src/Module/Contact/Unfollow.php:103 +#: src/Module/Contact/Unfollow.php:89 msgid "Unfollowing is currently not supported by your network." msgstr "Cha chuir an lìonra agad taic ri sgur de leantainn air an àm seo." -#: src/Module/Contact/Unfollow.php:121 +#: src/Module/Contact/Unfollow.php:107 msgid "Disconnect/Unfollow" msgstr "Dì-cheangail/Na lean tuilleadh" -#: src/Module/Contact/Unfollow.php:175 +#: src/Module/Contact/Unfollow.php:161 msgid "Contact was successfully unfollowed" msgstr "Chan eil thu a’ leantainn air an neach-aithne tuilleadh" -#: src/Module/Contact/Unfollow.php:178 +#: src/Module/Contact/Unfollow.php:164 msgid "Unable to unfollow this contact, please contact your administrator" msgstr "Cha deach leinn an neach-aithne a thoirt air falbh on fheadhainn air a leanas tu, cuir fios gun rianaire agad" -#: src/Module/Conversation/Channel.php:139 -#: src/Module/Conversation/Community.php:126 src/Module/Search/Index.php:152 -#: src/Module/Search/Index.php:194 +#: src/Module/Conversation/Channel.php:125 +#: src/Module/Conversation/Community.php:114 src/Module/Search/Index.php:138 +#: src/Module/Search/Index.php:180 msgid "No results." msgstr "Chan eil toradh ann." -#: src/Module/Conversation/Channel.php:177 +#: src/Module/Conversation/Channel.php:163 msgid "Channel not available." msgstr "" -#: src/Module/Conversation/Community.php:92 +#: src/Module/Conversation/Community.php:80 msgid "" "This community stream shows all public posts received by this node. They may" " not reflect the opinions of this node’s users." msgstr "Seallaidh sruthadh na coimhearsnachd gach post poblach a fhuair an nòd seo. Dh’fhaoidte nach eil iad a’ riochdachadh beachdan luchd-cleachdaidh an nòid seo." -#: src/Module/Conversation/Community.php:180 +#: src/Module/Conversation/Community.php:168 msgid "Community option not available." msgstr "Chan eil roghainn na coimhearsnachd ri fhaighinn." -#: src/Module/Conversation/Community.php:196 +#: src/Module/Conversation/Community.php:184 msgid "Not available." msgstr "Chan eil seo ri fhaighinn." -#: src/Module/Conversation/Network.php:216 +#: src/Module/Conversation/Network.php:202 msgid "No such circle" msgstr "Chan eil an cearcall seo ann" -#: src/Module/Conversation/Network.php:220 +#: src/Module/Conversation/Network.php:206 #, php-format msgid "Circle: %s" msgstr "Cearcall: %s" -#: src/Module/Conversation/Network.php:239 +#: src/Module/Conversation/Network.php:226 #, php-format msgid "Error %d (%s) while fetching the timeline." msgstr "" -#: src/Module/Conversation/Network.php:316 +#: src/Module/Conversation/Network.php:304 msgid "Network feed not available." msgstr "" -#: src/Module/Conversation/Timeline.php:204 +#: src/Module/Conversation/Timeline.php:190 msgid "Include" msgstr "Gabh a-staigh" -#: src/Module/Conversation/Timeline.php:205 +#: src/Module/Conversation/Timeline.php:191 msgid "Hide" msgstr "Falaich" -#: src/Module/Credits.php:44 +#: src/Module/Credits.php:30 msgid "Credits" msgstr "Urram" -#: src/Module/Credits.php:45 +#: src/Module/Credits.php:31 msgid "" "Friendica is a community project, that would not be possible without the " "help of many people. Here is a list of those who have contributed to the " "code or the translation of Friendica. Thank you all!" msgstr "’S e pròiseact coimhearsnachd a th’ ann am Friendica is cha ghabhadh a thoirt gu buil às aonais taic o iomadh daoine. Seo liosta dhen fheadhainn a chuir ri chòd no ri eadar-theangachadh Friendica. Mòran taing dhuibh uile!" -#: src/Module/Debug/ActivityPubConversion.php:59 +#: src/Module/Debug/ActivityPubConversion.php:45 msgid "Formatted" msgstr "Fòrmataichte" -#: src/Module/Debug/ActivityPubConversion.php:71 +#: src/Module/Debug/ActivityPubConversion.php:57 msgid "Activity" msgstr "Gnìomhachd" -#: src/Module/Debug/ActivityPubConversion.php:123 +#: src/Module/Debug/ActivityPubConversion.php:109 msgid "Object data" msgstr "Dàta oibseict" -#: src/Module/Debug/ActivityPubConversion.php:130 +#: src/Module/Debug/ActivityPubConversion.php:116 msgid "Result Item" msgstr "Nì toraidh" -#: src/Module/Debug/ActivityPubConversion.php:135 -#: src/Module/Debug/Babel.php:300 src/Module/Moderation/Item/Source.php:93 -#: src/Module/Security/TwoFactor/Verify.php:98 +#: src/Module/Debug/ActivityPubConversion.php:121 +#: src/Module/Debug/Babel.php:286 src/Module/Moderation/Item/Source.php:79 +#: src/Module/Security/TwoFactor/Verify.php:84 msgid "Error" msgid_plural "Errors" msgstr[0] "Mearachd" @@ -7275,506 +7270,506 @@ msgstr[1] "Mearachdan" msgstr[2] "Mearachdan" msgstr[3] "Mearachdan" -#: src/Module/Debug/ActivityPubConversion.php:144 +#: src/Module/Debug/ActivityPubConversion.php:130 msgid "Source activity" msgstr "Gnìomhachd bun-tùis" -#: src/Module/Debug/Babel.php:58 +#: src/Module/Debug/Babel.php:44 msgid "Source input" msgstr "Ion-chur bun-tùis" -#: src/Module/Debug/Babel.php:64 +#: src/Module/Debug/Babel.php:50 msgid "BBCode::toPlaintext" msgstr "BBCode::toPlaintext" -#: src/Module/Debug/Babel.php:70 +#: src/Module/Debug/Babel.php:56 msgid "BBCode::convert (raw HTML)" msgstr "BBCode::convert (HTML amh)" -#: src/Module/Debug/Babel.php:75 +#: src/Module/Debug/Babel.php:61 msgid "BBCode::convert (hex)" msgstr "BBCode::convert (sia-dheicheach)" -#: src/Module/Debug/Babel.php:80 +#: src/Module/Debug/Babel.php:66 msgid "BBCode::convert" msgstr "BBCode::convert" -#: src/Module/Debug/Babel.php:86 +#: src/Module/Debug/Babel.php:72 msgid "BBCode::convert => HTML::toBBCode" msgstr "BBCode::convert => HTML::toBBCode" -#: src/Module/Debug/Babel.php:92 +#: src/Module/Debug/Babel.php:78 msgid "BBCode::toMarkdown" msgstr "BBCode::toMarkdown" -#: src/Module/Debug/Babel.php:98 +#: src/Module/Debug/Babel.php:84 msgid "BBCode::toMarkdown => Markdown::convert (raw HTML)" msgstr "BBCode::toMarkdown => Markdown::convert (HTML amh)" -#: src/Module/Debug/Babel.php:102 +#: src/Module/Debug/Babel.php:88 msgid "BBCode::toMarkdown => Markdown::convert" msgstr "BBCode::toMarkdown => Markdown::convert" -#: src/Module/Debug/Babel.php:108 +#: src/Module/Debug/Babel.php:94 msgid "BBCode::toMarkdown => Markdown::toBBCode" msgstr "BBCode::toMarkdown => Markdown::toBBCode" -#: src/Module/Debug/Babel.php:114 +#: src/Module/Debug/Babel.php:100 msgid "BBCode::toMarkdown => Markdown::convert => HTML::toBBCode" msgstr "BBCode::toMarkdown => Markdown::convert => HTML::toBBCode" -#: src/Module/Debug/Babel.php:122 +#: src/Module/Debug/Babel.php:108 msgid "Item Body" msgstr "Bodhaig nì" -#: src/Module/Debug/Babel.php:126 +#: src/Module/Debug/Babel.php:112 msgid "Item Tags" msgstr "Tagaichean nì" -#: src/Module/Debug/Babel.php:132 +#: src/Module/Debug/Babel.php:118 msgid "PageInfo::appendToBody" msgstr "PageInfo::appendToBody" -#: src/Module/Debug/Babel.php:137 +#: src/Module/Debug/Babel.php:123 msgid "PageInfo::appendToBody => BBCode::convert (raw HTML)" msgstr "PageInfo::appendToBody => BBCode::convert (HTML amh)" -#: src/Module/Debug/Babel.php:141 +#: src/Module/Debug/Babel.php:127 msgid "PageInfo::appendToBody => BBCode::convert" msgstr "PageInfo::appendToBody => BBCode::convert" -#: src/Module/Debug/Babel.php:148 +#: src/Module/Debug/Babel.php:134 msgid "Source input (Diaspora format)" msgstr "Ion-chur bun-tùis (fòrmat diaspora*)" -#: src/Module/Debug/Babel.php:157 +#: src/Module/Debug/Babel.php:143 msgid "Source input (Markdown)" msgstr "Ion-chur bun-tùis (Markdown)" -#: src/Module/Debug/Babel.php:163 +#: src/Module/Debug/Babel.php:149 msgid "Markdown::convert (raw HTML)" msgstr "Markdown::convert (HTML amh)" -#: src/Module/Debug/Babel.php:168 +#: src/Module/Debug/Babel.php:154 msgid "Markdown::convert" msgstr "Markdown::convert" -#: src/Module/Debug/Babel.php:174 +#: src/Module/Debug/Babel.php:160 msgid "Markdown::toBBCode" msgstr "Markdown::toBBCode" -#: src/Module/Debug/Babel.php:181 +#: src/Module/Debug/Babel.php:167 msgid "Raw HTML input" msgstr "Ion-chur HTML amh" -#: src/Module/Debug/Babel.php:186 +#: src/Module/Debug/Babel.php:172 msgid "HTML Input" msgstr "Ion-chur HTML" -#: src/Module/Debug/Babel.php:193 +#: src/Module/Debug/Babel.php:179 msgid "HTML Purified (raw)" msgstr "HTML air a ghlanadh (amh)" -#: src/Module/Debug/Babel.php:198 +#: src/Module/Debug/Babel.php:184 msgid "HTML Purified (hex)" msgstr "HTML air a ghlanadh (sia-dheicheach)" -#: src/Module/Debug/Babel.php:203 +#: src/Module/Debug/Babel.php:189 msgid "HTML Purified" msgstr "HTML air a ghlanadh" -#: src/Module/Debug/Babel.php:209 +#: src/Module/Debug/Babel.php:195 msgid "HTML::toBBCode" msgstr "HTML::toBBCode" -#: src/Module/Debug/Babel.php:215 +#: src/Module/Debug/Babel.php:201 msgid "HTML::toBBCode => BBCode::convert" msgstr "HTML::toBBCode => BBCode::convert" -#: src/Module/Debug/Babel.php:220 +#: src/Module/Debug/Babel.php:206 msgid "HTML::toBBCode => BBCode::convert (raw HTML)" msgstr "HTML::toBBCode => BBCode::convert (HTML amh)" -#: src/Module/Debug/Babel.php:226 +#: src/Module/Debug/Babel.php:212 msgid "HTML::toBBCode => BBCode::toPlaintext" msgstr "HTML::toBBCode => BBCode::toPlaintext" -#: src/Module/Debug/Babel.php:232 +#: src/Module/Debug/Babel.php:218 msgid "HTML::toMarkdown" msgstr "HTML::toMarkdown" -#: src/Module/Debug/Babel.php:238 +#: src/Module/Debug/Babel.php:224 msgid "HTML::toPlaintext" msgstr "HTML::toPlaintext" -#: src/Module/Debug/Babel.php:244 +#: src/Module/Debug/Babel.php:230 msgid "HTML::toPlaintext (compact)" msgstr "HTML::toPlaintext (dùmhlaichte)" -#: src/Module/Debug/Babel.php:262 +#: src/Module/Debug/Babel.php:248 msgid "Decoded post" msgstr "Post air a dhì-chòdachadh" -#: src/Module/Debug/Babel.php:283 +#: src/Module/Debug/Babel.php:269 msgid "Post array before expand entities" msgstr "Arraigh a’ phuist ro leudachadh nan eintiteasan" -#: src/Module/Debug/Babel.php:290 +#: src/Module/Debug/Babel.php:276 msgid "Post converted" msgstr "Post air iompachadh" -#: src/Module/Debug/Babel.php:295 +#: src/Module/Debug/Babel.php:281 msgid "Converted body" msgstr "Bodhaig air a h-iompachadh" -#: src/Module/Debug/Babel.php:301 +#: src/Module/Debug/Babel.php:287 msgid "Twitter addon is absent from the addon/ folder." msgstr "Chan eil tuilleadan Twitter sa phasgan addon/." -#: src/Module/Debug/Babel.php:311 +#: src/Module/Debug/Babel.php:297 msgid "Babel Diagnostic" msgstr "Diagnosachd Babel" -#: src/Module/Debug/Babel.php:313 +#: src/Module/Debug/Babel.php:299 msgid "Source text" msgstr "Teacsa tùsail" -#: src/Module/Debug/Babel.php:314 +#: src/Module/Debug/Babel.php:300 msgid "BBCode" msgstr "BBCode" -#: src/Module/Debug/Babel.php:316 +#: src/Module/Debug/Babel.php:302 msgid "Markdown" msgstr "Markdown" -#: src/Module/Debug/Babel.php:317 +#: src/Module/Debug/Babel.php:303 msgid "HTML" msgstr "HTML" -#: src/Module/Debug/Babel.php:319 +#: src/Module/Debug/Babel.php:305 msgid "Twitter Source / Tweet URL (requires API key)" msgstr "Bun-tùs Twitter / URL a’ tweet (feum air iuchair API)" -#: src/Module/Debug/Feed.php:53 src/Module/Filer/SaveTag.php:47 -#: src/Module/Settings/Profile/Index.php:180 +#: src/Module/Debug/Feed.php:39 src/Module/Filer/SaveTag.php:33 +#: src/Module/Settings/Profile/Index.php:166 msgid "You must be logged in to use this module" msgstr "Feumaidh tu clàradh a-steach mus urrainn dhut am mòideal seo a chleachdadh" -#: src/Module/Debug/Feed.php:78 +#: src/Module/Debug/Feed.php:64 msgid "Source URL" msgstr "URL an tùis" -#: src/Module/Debug/Localtime.php:49 +#: src/Module/Debug/Localtime.php:35 msgid "Time Conversion" msgstr "Iompachadh na h-ama" -#: src/Module/Debug/Localtime.php:50 +#: src/Module/Debug/Localtime.php:36 msgid "" "Friendica provides this service for sharing events with other networks and " "friends in unknown timezones." msgstr "Tha Friendica a’ solar na seirbheise seo airson tachartasan a cho-roinneadh le lìonraidhean eile ’s le caraidean mur eil fios dè an roinnean-tìde." -#: src/Module/Debug/Localtime.php:51 +#: src/Module/Debug/Localtime.php:37 #, php-format msgid "UTC time: %s" msgstr "Àm UTC: %s" -#: src/Module/Debug/Localtime.php:54 +#: src/Module/Debug/Localtime.php:40 #, php-format msgid "Current timezone: %s" msgstr "An roinn-tìde làithreach: %s" -#: src/Module/Debug/Localtime.php:58 +#: src/Module/Debug/Localtime.php:44 #, php-format msgid "Converted localtime: %s" msgstr "An t-àm ionadail iompaichte: %s" -#: src/Module/Debug/Localtime.php:62 +#: src/Module/Debug/Localtime.php:48 msgid "Please select your timezone:" msgstr "Tagh an roinn-tìde agad:" -#: src/Module/Debug/Probe.php:38 src/Module/Debug/WebFinger.php:37 +#: src/Module/Debug/Probe.php:24 src/Module/Debug/WebFinger.php:23 msgid "Only logged in users are permitted to perform a probing." msgstr "Chan fhaod ach cleachdaichean air an clàradh a-steach sgrùdadh a dhèanamh." -#: src/Module/Debug/Probe.php:52 +#: src/Module/Debug/Probe.php:38 msgid "Probe Diagnostic" msgstr "Diagnosachd sgrùdaidh" -#: src/Module/Debug/Probe.php:53 +#: src/Module/Debug/Probe.php:39 msgid "Output" msgstr "Às-chur" -#: src/Module/Debug/Probe.php:56 +#: src/Module/Debug/Probe.php:42 msgid "Lookup address" msgstr "Rannsaich an seòladh" -#: src/Module/Debug/WebFinger.php:50 +#: src/Module/Debug/WebFinger.php:36 msgid "Webfinger Diagnostic" msgstr "Diagnosachd Webfinger" -#: src/Module/Debug/WebFinger.php:52 +#: src/Module/Debug/WebFinger.php:38 msgid "Lookup address:" msgstr "Rannsaich an seòladh:" -#: src/Module/Directory.php:75 +#: src/Module/Directory.php:61 msgid "No entries (some entries may be hidden)." msgstr "Gun innteart (’s dòcha gu bheil cuid a dh’innteartan falaichte)." -#: src/Module/Directory.php:91 +#: src/Module/Directory.php:77 msgid "Find on this site" msgstr "Lorg air an làrach seo" -#: src/Module/Directory.php:93 +#: src/Module/Directory.php:79 msgid "Results for:" msgstr "Toraidhean airson:" -#: src/Module/Directory.php:95 +#: src/Module/Directory.php:81 msgid "Site Directory" msgstr "Eòlaire na làraich" -#: src/Module/Filer/RemoveTag.php:105 +#: src/Module/Filer/RemoveTag.php:91 msgid "Item was not deleted" msgstr "Cha deach an nì a sguabadh às" -#: src/Module/Filer/RemoveTag.php:115 +#: src/Module/Filer/RemoveTag.php:101 msgid "Item was not removed" msgstr "Cha deach nì a thoirt air falbh" -#: src/Module/Filer/SaveTag.php:73 +#: src/Module/Filer/SaveTag.php:59 msgid "- select -" msgstr "– tagh –" -#: src/Module/FriendSuggest.php:82 +#: src/Module/FriendSuggest.php:68 msgid "Suggested contact not found." msgstr "Cha deach an neach-aithne molta a lorg." -#: src/Module/FriendSuggest.php:100 +#: src/Module/FriendSuggest.php:86 msgid "Friend suggestion sent." msgstr "Chaidh moladh caraid a chur." -#: src/Module/FriendSuggest.php:137 +#: src/Module/FriendSuggest.php:123 msgid "Suggest Friends" msgstr "Mol caraidean" -#: src/Module/FriendSuggest.php:140 +#: src/Module/FriendSuggest.php:126 #, php-format msgid "Suggest a friend for %s" msgstr "Mol caraid dha %s" -#: src/Module/Friendica.php:81 +#: src/Module/Friendica.php:67 msgid "Installed addons/apps:" msgstr "Aplacaidean/tuilleadain stàlaichte:" -#: src/Module/Friendica.php:86 +#: src/Module/Friendica.php:72 msgid "No installed addons/apps" msgstr "Cha deach aplacaid/tuilleadan a stàladh" -#: src/Module/Friendica.php:91 +#: src/Module/Friendica.php:77 #, php-format msgid "Read about the Terms of Service of this node." msgstr "Leugh teirmichean seirbheise an nòd seo." -#: src/Module/Friendica.php:98 +#: src/Module/Friendica.php:84 msgid "On this server the following remote servers are blocked." msgstr "Seo a frithealaichean cèine a tha ’gam bacadh leis an fhrithealaiche seo." -#: src/Module/Friendica.php:101 -#: src/Module/Moderation/Blocklist/Server/Index.php:87 -#: src/Module/Moderation/Blocklist/Server/Index.php:111 -#: src/Module/Settings/Channels.php:232 +#: src/Module/Friendica.php:87 +#: src/Module/Moderation/Blocklist/Server/Index.php:73 +#: src/Module/Moderation/Blocklist/Server/Index.php:97 +#: src/Module/Settings/Channels.php:218 msgid "Reason for the block" msgstr "Adhbhar a’ bhacaidh" -#: src/Module/Friendica.php:103 +#: src/Module/Friendica.php:89 msgid "Download this list in CSV format" msgstr "Luchdaich a-nuas an liosta seo san fhòrmat CSV" -#: src/Module/Friendica.php:117 +#: src/Module/Friendica.php:103 #, php-format msgid "" "This is Friendica, version %s that is running at the web location %s. The " "database version is %s, the post update version is %s." msgstr "Seo Friendica tionndadh %s a tha a’ ruith air an ionad-lìn %s. Is %s tionndadh an stòir-dhàta agus %s tionndadh ùrachadh nam post." -#: src/Module/Friendica.php:122 +#: src/Module/Friendica.php:108 msgid "" "Please visit Friendi.ca to learn more " "about the Friendica project." msgstr "Tadhail air Friendi.ca airson barrachd fiosrachaidh mu phròiseact Friendica." -#: src/Module/Friendica.php:123 +#: src/Module/Friendica.php:109 msgid "Bug reports and issues: please visit" msgstr "Aithrisean air bugaichean is duilgheadasan: tadhail air" -#: src/Module/Friendica.php:123 +#: src/Module/Friendica.php:109 msgid "the bugtracker at github" msgstr "tracaiche nam bugaichean air GitHub" -#: src/Module/Friendica.php:124 +#: src/Module/Friendica.php:110 msgid "Suggestions, praise, etc. - please email \"info\" at \"friendi - dot - ca" msgstr "Airson beachdan, molaidhean is mssa. – cuir post-d gu “info” aig “friendi – dot – ca" -#: src/Module/HCard.php:45 +#: src/Module/HCard.php:31 msgid "No profile" msgstr "Chan eil pròifil ann" -#: src/Module/HTTPException/MethodNotAllowed.php:31 +#: src/Module/HTTPException/MethodNotAllowed.php:17 msgid "Method Not Allowed." msgstr "Chan eil am modh ceadaichte." -#: src/Module/Help.php:60 +#: src/Module/Help.php:46 msgid "Help:" msgstr "Cobhair:" -#: src/Module/Home.php:66 +#: src/Module/Home.php:52 #, php-format msgid "Welcome to %s" msgstr "Fàilte gu %s" -#: src/Module/Install.php:189 +#: src/Module/Install.php:175 msgid "Friendica Communications Server - Setup" msgstr "Frithealaiche conaltradh Friendica – Suidheachadh" -#: src/Module/Install.php:200 +#: src/Module/Install.php:186 msgid "System check" msgstr "Dearbhadh an t-siostaim" -#: src/Module/Install.php:202 src/Module/Install.php:247 -#: src/Module/Install.php:326 +#: src/Module/Install.php:188 src/Module/Install.php:233 +#: src/Module/Install.php:312 msgid "Requirement not satisfied" msgstr "Tha riatanas nach deach a choileanadh" -#: src/Module/Install.php:203 +#: src/Module/Install.php:189 msgid "Optional requirement not satisfied" msgstr "Tha riatanas roghainneil nach deach a choileanadh" -#: src/Module/Install.php:204 +#: src/Module/Install.php:190 msgid "OK" msgstr "Ceart ma-thà" -#: src/Module/Install.php:208 +#: src/Module/Install.php:194 msgid "Next" msgstr "Air adhart" -#: src/Module/Install.php:209 +#: src/Module/Install.php:195 msgid "Check again" msgstr "Sgrùd a-rithist" -#: src/Module/Install.php:222 +#: src/Module/Install.php:208 msgid "Base settings" msgstr "Roghainnean bunasach" -#: src/Module/Install.php:224 +#: src/Module/Install.php:210 msgid "Base path to installation" msgstr "An t-slighe bhunasach dhan stàladh" -#: src/Module/Install.php:226 +#: src/Module/Install.php:212 msgid "" "If the system cannot detect the correct path to your installation, enter the" " correct path here. This setting should only be set if you are using a " "restricted system and symbolic links to your webroot." msgstr "Mur aithnich an siostam an t-slighe cheart dhan stàladh agad, cuir a-steach an t-slighe cheart an-seo. Cha bu chòir dhut seo a shuidheachadh ach ma tha thu a’ cleachdadh siostam cuingichte agus ceanglaichean samhlachail gun fheumh-lìn agad." -#: src/Module/Install.php:229 +#: src/Module/Install.php:215 msgid "The Friendica system URL" msgstr "URL siostam Friendica" -#: src/Module/Install.php:231 +#: src/Module/Install.php:217 msgid "" "Overwrite this field in case the system URL determination isn't right, " "otherwise leave it as is." msgstr "Tar-sgrìobh an raon seo mura deach URL an t-siostaim aithneachadh mar bu chòir. Ma chaidh, fàg e mar a tha e." -#: src/Module/Install.php:242 +#: src/Module/Install.php:228 msgid "Database connection" msgstr "Ceangal stòir-dhàta" -#: src/Module/Install.php:243 +#: src/Module/Install.php:229 msgid "" "In order to install Friendica we need to know how to connect to your " "database." msgstr "Airson Friendica a stàladh, feumaidh fios a bhith againn air mar a nì sinn ceangal dhan stòr-dàta agad." -#: src/Module/Install.php:244 +#: src/Module/Install.php:230 msgid "" "Please contact your hosting provider or site administrator if you have " "questions about these settings." msgstr "Cuir fios gu solaraiche an òstaidh no rianaire na làraich agad ma tha ceist agad mu na roghainnean seo." -#: src/Module/Install.php:245 +#: src/Module/Install.php:231 msgid "" "The database you specify below should already exist. If it does not, please " "create it before continuing." msgstr "Bu chòir dhan stòr-dàta a shònraicheas tu a bhith ann mu thràth. Mur eil, cruthaich e mus lean thu air adhart." -#: src/Module/Install.php:252 +#: src/Module/Install.php:238 msgid "Database Server Name" msgstr "Ainm frithealaiche an stòir-dhàta" -#: src/Module/Install.php:257 +#: src/Module/Install.php:243 msgid "Database Login Name" msgstr "Ainm clàraidh a-steach an stòir-dhàta" -#: src/Module/Install.php:263 +#: src/Module/Install.php:249 msgid "Database Login Password" msgstr "Facal-faire clàradh a-steach an stòir-dhàta" -#: src/Module/Install.php:265 +#: src/Module/Install.php:251 msgid "For security reasons the password must not be empty" msgstr "Air adhbharan tèarainteachd, chan fhaod am facal-faire a bhith falamh" -#: src/Module/Install.php:268 +#: src/Module/Install.php:254 msgid "Database Name" msgstr "Ainm an stòir-dhàta" -#: src/Module/Install.php:272 src/Module/Install.php:300 +#: src/Module/Install.php:258 src/Module/Install.php:286 msgid "Please select a default timezone for your website" msgstr "Tagh roinn-tìde bhunaiteach dhan làrach-lìn agad" -#: src/Module/Install.php:287 +#: src/Module/Install.php:273 msgid "Site settings" msgstr "Roghainnean na làraich" -#: src/Module/Install.php:295 +#: src/Module/Install.php:281 msgid "Site administrator email address" msgstr "An seòladh puist-d aig rianaire na làraich" -#: src/Module/Install.php:297 +#: src/Module/Install.php:283 msgid "" "Your account email address must match this in order to use the web admin " "panel." msgstr "Feumaidh seòladh puist-d a’ chunntais agad a bhith co-ionnan ri seo ach an urrainn dhut panail-lìn na rianachd a chleachdadh." -#: src/Module/Install.php:304 +#: src/Module/Install.php:290 msgid "System Language:" msgstr "Cànan an t-siostaim:" -#: src/Module/Install.php:306 +#: src/Module/Install.php:292 msgid "" "Set the default language for your Friendica installation interface and to " "send emails." msgstr "Suidhich an cànan bunaiteach dhan eadar-aghaidh stàladh Friendica agad is do na puist-d a thèid a chur." -#: src/Module/Install.php:318 +#: src/Module/Install.php:304 msgid "Your Friendica site database has been installed." msgstr "Chaidh stòr-dàta na làraich Friendica agad a stàladh." -#: src/Module/Install.php:328 +#: src/Module/Install.php:314 msgid "Installation finished" msgstr "Tha an stàladh deiseil" -#: src/Module/Install.php:348 +#: src/Module/Install.php:334 msgid "

What next

" msgstr "

Dè a-nis?

" -#: src/Module/Install.php:349 +#: src/Module/Install.php:335 msgid "" "IMPORTANT: You will need to [manually] setup a scheduled task for the " "worker." msgstr "CUDROMACH: Feumaidh gu saothair dhan obraiche a chur air an sgeideal [a làimh]." -#: src/Module/Install.php:352 +#: src/Module/Install.php:338 #, php-format msgid "" "Go to your new Friendica node registration page " @@ -7782,29 +7777,29 @@ msgid "" " administrator email. This will allow you to enter the site admin panel." msgstr "Tadhail air duilleag a’ chlàraidh aig an nòd Friendica ùr agad agus clàraich mar cleachdaiche ùr. Thoir an aire gun cleachd thu an aon seòladh puist-d ’s a chuir thu a-steach mar phost-d an rianaire. Bheir seo inntrigeadh do phanail na rianachd dhut." -#: src/Module/Invite.php:57 +#: src/Module/Invite.php:43 msgid "Total invitation limit exceeded." msgstr "Chaidh thu thairis air crìoch nan cuiridhean iomlan." -#: src/Module/Invite.php:82 +#: src/Module/Invite.php:68 #, php-format msgid "%s : Not a valid email address." msgstr "%s : Chan e seòladh puist-d dligheach a tha seo." -#: src/Module/Invite.php:108 +#: src/Module/Invite.php:94 msgid "Please join us on Friendica" msgstr "Thig cuide rinn air Friendica" -#: src/Module/Invite.php:117 +#: src/Module/Invite.php:103 msgid "Invitation limit exceeded. Please contact your site administrator." msgstr "Chaidh thu thairis air crìoch nan cuiridhean. Cuir fios gu rianaire na làraich agad." -#: src/Module/Invite.php:121 +#: src/Module/Invite.php:107 #, php-format msgid "%s : Message delivery failed." msgstr "%s : Dh’fhàillig libhrigeadh na teachdaireachd." -#: src/Module/Invite.php:125 +#: src/Module/Invite.php:111 #, php-format msgid "%d message sent." msgid_plural "%d messages sent." @@ -7813,11 +7808,11 @@ msgstr[1] "Chaidh %d theachdaireachd a chur." msgstr[2] "Chaidh %d teachdaireachdan a chur." msgstr[3] "Chaidh %d teachdaireachd a chur." -#: src/Module/Invite.php:143 +#: src/Module/Invite.php:129 msgid "You have no more invitations available" msgstr "Chan eil barrachd cuiridhean ri fhaighinn dhut" -#: src/Module/Invite.php:150 +#: src/Module/Invite.php:136 #, php-format msgid "" "Visit %s for a list of public sites that you can join. Friendica members on " @@ -7825,14 +7820,14 @@ msgid "" " other social networks." msgstr "Tadhail air %s airson liosta de làraichean poblach far an urrainn dhut ballrachd fhaighinn. ’S urrainn dhan a h-uile ball Friendica air làraichean eile ceangal ri chèile agus ri buill iomadh lìonra sòisealta eile." -#: src/Module/Invite.php:152 +#: src/Module/Invite.php:138 #, php-format msgid "" "To accept this invitation, please visit and register at %s or any other " "public Friendica website." msgstr "Airson gabhail ris a’ chuireadh seo, tadhail air %s is clàraich air no air làrach-lìn Friendica poblach sam bith eile." -#: src/Module/Invite.php:153 +#: src/Module/Invite.php:139 #, php-format msgid "" "Friendica sites all inter-connect to create a huge privacy-enhanced social " @@ -7841,236 +7836,236 @@ msgid "" "sites you can join." msgstr "Tha na làraichean Friendica uile co-naisgte ri chèile ach an cruthaich iad lìon sòisealta mòr aig a bheil prìobhaideachd phisichte ’s a tha fo smachd nam ball aige fhèin. ’S urrainn dhaibh ceangal a dhèanamh ri iomadh lìonra sòisealta tradaiseanta. Faic %s airson liosta de làraichean Friendica eile far an urrainn dhut ballrachd fhaighinn." -#: src/Module/Invite.php:157 +#: src/Module/Invite.php:143 msgid "" "Our apologies. This system is not currently configured to connect with other" " public sites or invite members." msgstr "Tha sinn duilich. Cha deach an siostam rèiteachadh aig an àm seo airson ceangal ri làraichean poblach eile no cuiridhean ballrachd a chur." -#: src/Module/Invite.php:160 +#: src/Module/Invite.php:146 msgid "" "Friendica sites all inter-connect to create a huge privacy-enhanced social " "web that is owned and controlled by its members. They can also connect with " "many traditional social networks." msgstr "Tha na làraichean Friendica uile co-naisgte ri chèile ach an cruthaich iad lìon sòisealta mòr aig a bheil prìobhaideachd phisichte ’s a tha fo smachd nam ball aige fhèin. ’S urrainn dhaibh ceangal a dhèanamh ri iomadh lìonra sòisealta tradaiseanta." -#: src/Module/Invite.php:159 +#: src/Module/Invite.php:145 #, php-format msgid "To accept this invitation, please visit and register at %s." msgstr "Airson gabhail ris a’ chuireadh seo, tadhail air %s is clàraich ann." -#: src/Module/Invite.php:167 +#: src/Module/Invite.php:153 msgid "Send invitations" msgstr "Cuir cuiridhean" -#: src/Module/Invite.php:168 +#: src/Module/Invite.php:154 msgid "Enter email addresses, one per line:" msgstr "Cuir seòlaidhean puist-d a-steach, gach fear air loidhne fa leth:" -#: src/Module/Invite.php:172 +#: src/Module/Invite.php:158 msgid "" "You are cordially invited to join me and other close friends on Friendica - " "and help us to create a better social web." msgstr "Tha fàilte chridheil romhad airson tighinn cruinn còmhla rium-sa is dlùth-charaidean eile air Friendica – agus airson ar cuideachadh ach an cruthaich sinn lìon sòisealta nas fheàrr." -#: src/Module/Invite.php:174 +#: src/Module/Invite.php:160 msgid "You will need to supply this invitation code: $invite_code" msgstr "Bidh agad ris an còd cuiridh seo a sholar: $invite_code" -#: src/Module/Invite.php:174 +#: src/Module/Invite.php:160 msgid "" "Once you have registered, please connect with me via my profile page at:" msgstr "Nuair a bhios tu air do chlàradh, dèan ceangal rium le duilleag na pròifil agam air:" -#: src/Module/Invite.php:176 +#: src/Module/Invite.php:162 msgid "" "For more information about the Friendica project and why we feel it is " "important, please visit http://friendi.ca" msgstr "Airson barrachd fiosrachaidh mu phròiseact Friendica ’s carson a tha sinn dhen bheachd gu bheil e cudromach, tadhail air http://friendi.ca" -#: src/Module/Item/Compose.php:94 +#: src/Module/Item/Compose.php:80 msgid "Please enter a post body." msgstr "Cuir a-steach bodhaig puist." -#: src/Module/Item/Compose.php:105 +#: src/Module/Item/Compose.php:91 msgid "This feature is only available with the frio theme." msgstr "Chan eil an gleus seo ri fhaighinn ach leis an ùrlar frio." -#: src/Module/Item/Compose.php:129 +#: src/Module/Item/Compose.php:115 msgid "Compose new personal note" msgstr "Sgrìobh nòta pearsanta ùr" -#: src/Module/Item/Compose.php:138 +#: src/Module/Item/Compose.php:124 msgid "Compose new post" msgstr "Sgrìobh post ùr" -#: src/Module/Item/Compose.php:194 +#: src/Module/Item/Compose.php:180 msgid "Visibility" msgstr "Faicsinneachd" -#: src/Module/Item/Compose.php:210 +#: src/Module/Item/Compose.php:196 msgid "Clear the location" msgstr "Thoir an t-ionad air falbh" -#: src/Module/Item/Compose.php:211 +#: src/Module/Item/Compose.php:197 msgid "Location services are unavailable on your device" msgstr "Chan eil seirbheisean ionaid ri fhaighinn air an uidheam agad" -#: src/Module/Item/Compose.php:212 +#: src/Module/Item/Compose.php:198 msgid "" "Location services are disabled. Please check the website's permissions on " "your device" msgstr "Tha seirbheisean ionaid à comas. Thoir sùil air ceadan na làraich-lìn air an uidheam agad" -#: src/Module/Item/Compose.php:218 +#: src/Module/Item/Compose.php:204 msgid "" "You can make this page always open when you use the New Post button in the " "Theme Customization settings." msgstr "’S urrainn dhut suidheachadh gum fosgail an duilleag seo an-còmhnaidh nuair a chleachdas tu am putan “Post ùr” ann an Roghainnean gnàthaichte an ùrlair." -#: src/Module/Item/Feed.php:86 +#: src/Module/Item/Feed.php:72 msgid "The feed for this item is unavailable." msgstr "Chan eil inbhir ri fhaighinn dhan nì seo." -#: src/Module/Item/Follow.php:51 +#: src/Module/Item/Follow.php:37 msgid "Unable to follow this item." msgstr "Cha ghabh leantainn air an nì seo." -#: src/Module/Maintenance.php:48 src/Module/Maintenance.php:53 +#: src/Module/Maintenance.php:34 src/Module/Maintenance.php:39 msgid "System down for maintenance" msgstr "Tha an siostam dheth a chùm obrach-glèidhidh" -#: src/Module/Maintenance.php:54 +#: src/Module/Maintenance.php:40 msgid "" "This Friendica node is currently in maintenance mode, either automatically " "because it is self-updating or manually by the node administrator. This " "condition should be temporary, please come back in a few minutes." msgstr "Chaidh an nòd Friendica seo a chur sa mhodh obrach-glèidhidh, gu fèin-obrachail on a tha e ’ga ùrachadh fhèin no a làimh le rianaire an nòid. Cha bu chòir dhan staid seo a bhith air ach rè seal, till an ceann corra mionaid." -#: src/Module/Manifest.php:40 +#: src/Module/Manifest.php:26 msgid "A Decentralized Social Network" msgstr "Lìonra sòisealta sgaoilte" -#: src/Module/Media/Attachment/Browser.php:58 -#: src/Module/Media/Photo/Browser.php:59 +#: src/Module/Media/Attachment/Browser.php:44 +#: src/Module/Media/Photo/Browser.php:45 msgid "You need to be logged in to access this page." msgstr "Feumaidh tu clàradh a-steach mus fhaigh thu cothrom air an duilleag seo." -#: src/Module/Media/Attachment/Browser.php:74 +#: src/Module/Media/Attachment/Browser.php:60 msgid "Files" msgstr "Faidhlichean" -#: src/Module/Media/Attachment/Browser.php:79 -#: src/Module/Media/Photo/Browser.php:90 -#: src/Module/Settings/Profile/Photo/Index.php:127 +#: src/Module/Media/Attachment/Browser.php:65 +#: src/Module/Media/Photo/Browser.php:76 +#: src/Module/Settings/Profile/Photo/Index.php:113 msgid "Upload" msgstr "Luchdaich suas" -#: src/Module/Media/Attachment/Upload.php:97 +#: src/Module/Media/Attachment/Upload.php:83 msgid "Sorry, maybe your upload is bigger than the PHP configuration allows" msgstr "Tha sinn duilich a dh’fhaoidte gu bheil an luchdadh suas agad nas motha na tha ceadaichte leis an rèiteachadh PHP" -#: src/Module/Media/Attachment/Upload.php:97 +#: src/Module/Media/Attachment/Upload.php:83 msgid "Or - did you try to upload an empty file?" msgstr "Air neo – an do dh’fheuch thu ri faidhle falamh a luchdadh suas?" -#: src/Module/Media/Attachment/Upload.php:104 +#: src/Module/Media/Attachment/Upload.php:90 #, php-format msgid "File exceeds size limit of %s" msgstr "Tha am faidhle nas motha na tha ceadaichte dhe %s" -#: src/Module/Media/Attachment/Upload.php:114 +#: src/Module/Media/Attachment/Upload.php:100 msgid "File upload failed." msgstr "Dh’fhàillig luchdadh suas an fhaidhle." -#: src/Module/Media/Photo/Upload.php:150 src/Module/Media/Photo/Upload.php:151 -#: src/Module/Profile/Photos.php:215 -#: src/Module/Settings/Profile/Photo/Index.php:67 +#: src/Module/Media/Photo/Upload.php:136 src/Module/Media/Photo/Upload.php:137 +#: src/Module/Profile/Photos.php:201 +#: src/Module/Settings/Profile/Photo/Index.php:53 msgid "Unable to process image." msgstr "Cha b’ urrainn dhuinn an dealbh a phròiseasadh." -#: src/Module/Media/Photo/Upload.php:176 src/Module/Profile/Photos.php:235 -#: src/Module/Settings/Profile/Photo/Index.php:94 +#: src/Module/Media/Photo/Upload.php:162 src/Module/Profile/Photos.php:221 +#: src/Module/Settings/Profile/Photo/Index.php:80 msgid "Image upload failed." msgstr "Dh’fhàillig le luchdadh suas an deilbh." -#: src/Module/Moderation/BaseUsers.php:72 +#: src/Module/Moderation/BaseUsers.php:59 msgid "List of all users" msgstr "Liosta nan cleachdaichean uile" -#: src/Module/Moderation/BaseUsers.php:77 +#: src/Module/Moderation/BaseUsers.php:64 msgid "Active" msgstr "Gnìomhach" -#: src/Module/Moderation/BaseUsers.php:80 +#: src/Module/Moderation/BaseUsers.php:67 msgid "List of active accounts" msgstr "Liosta nan cunntasan gnìomhach" -#: src/Module/Moderation/BaseUsers.php:88 +#: src/Module/Moderation/BaseUsers.php:75 msgid "List of pending registrations" msgstr "Liosta nan clàraidhean rin dèiligeadh" -#: src/Module/Moderation/BaseUsers.php:96 +#: src/Module/Moderation/BaseUsers.php:83 msgid "List of blocked users" msgstr "Liosta nan cleachdaichean a chaidh a bhacadh" -#: src/Module/Moderation/BaseUsers.php:101 +#: src/Module/Moderation/BaseUsers.php:88 msgid "Deleted" msgstr "Air a sguabadh às" -#: src/Module/Moderation/BaseUsers.php:104 +#: src/Module/Moderation/BaseUsers.php:91 msgid "List of pending user deletions" msgstr "Liosta nan cleachdaichean rin sguabadh às" -#: src/Module/Moderation/BaseUsers.php:119 src/Module/Settings/Account.php:487 +#: src/Module/Moderation/BaseUsers.php:108 src/Module/Settings/Account.php:473 msgid "Normal Account Page" msgstr "Duilleag àbhaisteach a’ chunntais" -#: src/Module/Moderation/BaseUsers.php:120 src/Module/Settings/Account.php:494 +#: src/Module/Moderation/BaseUsers.php:109 src/Module/Settings/Account.php:480 msgid "Soapbox Page" msgstr "Duilleag cùbaid deasbaid" -#: src/Module/Moderation/BaseUsers.php:121 src/Module/Settings/Account.php:501 +#: src/Module/Moderation/BaseUsers.php:110 src/Module/Settings/Account.php:487 msgid "Public Group" msgstr "Buidheann poblach" -#: src/Module/Moderation/BaseUsers.php:122 src/Module/Settings/Account.php:508 +#: src/Module/Moderation/BaseUsers.php:111 src/Module/Settings/Account.php:494 msgid "Public Group - Restricted" msgstr "" -#: src/Module/Moderation/BaseUsers.php:123 src/Module/Settings/Account.php:515 +#: src/Module/Moderation/BaseUsers.php:112 src/Module/Settings/Account.php:501 msgid "Automatic Friend Page" msgstr "Duilleag caraide fhèin-obrachail" -#: src/Module/Moderation/BaseUsers.php:124 +#: src/Module/Moderation/BaseUsers.php:113 msgid "Private Group" msgstr "Buidheann prìobhaideach" -#: src/Module/Moderation/BaseUsers.php:127 -#: src/Module/Moderation/Summary.php:53 src/Module/Settings/Account.php:458 +#: src/Module/Moderation/BaseUsers.php:116 +#: src/Module/Moderation/Summary.php:39 src/Module/Settings/Account.php:444 msgid "Personal Page" msgstr "Duilleag phearsanta" -#: src/Module/Moderation/BaseUsers.php:128 -#: src/Module/Moderation/Summary.php:54 src/Module/Settings/Account.php:465 +#: src/Module/Moderation/BaseUsers.php:117 +#: src/Module/Moderation/Summary.php:40 src/Module/Settings/Account.php:451 msgid "Organisation Page" msgstr "Duilleag buidhinn" -#: src/Module/Moderation/BaseUsers.php:129 -#: src/Module/Moderation/Summary.php:55 src/Module/Settings/Account.php:472 +#: src/Module/Moderation/BaseUsers.php:118 +#: src/Module/Moderation/Summary.php:41 src/Module/Settings/Account.php:458 msgid "News Page" msgstr "Duilleag naidheachdan" -#: src/Module/Moderation/BaseUsers.php:130 -#: src/Module/Moderation/Summary.php:56 src/Module/Settings/Account.php:479 +#: src/Module/Moderation/BaseUsers.php:119 +#: src/Module/Moderation/Summary.php:42 src/Module/Settings/Account.php:465 msgid "Community Group" msgstr "Buidheann coimhearsnachd" -#: src/Module/Moderation/Blocklist/Contact.php:70 +#: src/Module/Moderation/Blocklist/Contact.php:56 msgid "You can't block a local contact, please block the user instead" msgstr "Chan urrainn dhut neach-aithne ionadail a bhacadh, bac an cleachdaiche ’na àite" -#: src/Module/Moderation/Blocklist/Contact.php:89 +#: src/Module/Moderation/Blocklist/Contact.php:75 #, php-format msgid "%s contact unblocked" msgid_plural "%s contacts unblocked" @@ -8079,54 +8074,54 @@ msgstr[1] "Chaidh %s luchd-aithne a dhì-bhacadh" msgstr[2] "Chaidh %s luchd-aithne a dhì-bhacadh" msgstr[3] "Chaidh %s luchd-aithne a dhì-bhacadh" -#: src/Module/Moderation/Blocklist/Contact.php:111 +#: src/Module/Moderation/Blocklist/Contact.php:97 msgid "Remote Contact Blocklist" msgstr "Liosta bacadh luchd-aithne cèin" -#: src/Module/Moderation/Blocklist/Contact.php:112 +#: src/Module/Moderation/Blocklist/Contact.php:98 msgid "" "This page allows you to prevent any message from a remote contact to reach " "your node." msgstr "Leigidh an duilleag seo leat gum bac thu teachdaireachd sam bith o neach-aithne cèin o ruigsinn an nòid agad." -#: src/Module/Moderation/Blocklist/Contact.php:113 +#: src/Module/Moderation/Blocklist/Contact.php:99 msgid "Block Remote Contact" msgstr "Bac an neach-aithne cèin" -#: src/Module/Moderation/Blocklist/Contact.php:114 -#: src/Module/Moderation/Users/Active.php:135 -#: src/Module/Moderation/Users/Blocked.php:135 -#: src/Module/Moderation/Users/Index.php:149 -#: src/Module/Moderation/Users/Pending.php:98 +#: src/Module/Moderation/Blocklist/Contact.php:100 +#: src/Module/Moderation/Users/Active.php:121 +#: src/Module/Moderation/Users/Blocked.php:121 +#: src/Module/Moderation/Users/Index.php:135 +#: src/Module/Moderation/Users/Pending.php:84 msgid "select all" msgstr "tagh a h-uile" -#: src/Module/Moderation/Blocklist/Contact.php:115 +#: src/Module/Moderation/Blocklist/Contact.php:101 msgid "select none" msgstr "na tagh gin" -#: src/Module/Moderation/Blocklist/Contact.php:118 +#: src/Module/Moderation/Blocklist/Contact.php:104 msgid "No remote contact is blocked from this node." msgstr "Cha deach neach-aithne cèin a bhacadh on nòd seo." -#: src/Module/Moderation/Blocklist/Contact.php:120 +#: src/Module/Moderation/Blocklist/Contact.php:106 msgid "Blocked Remote Contacts" msgstr "Luchd-aithne cèin air am bacadh" -#: src/Module/Moderation/Blocklist/Contact.php:121 +#: src/Module/Moderation/Blocklist/Contact.php:107 msgid "Block New Remote Contact" msgstr "Bac neach-aithne cèin ùr" -#: src/Module/Moderation/Blocklist/Contact.php:122 -#: src/Module/Moderation/Reports.php:116 +#: src/Module/Moderation/Blocklist/Contact.php:108 +#: src/Module/Moderation/Reports.php:102 msgid "Photo" msgstr "Dealbh" -#: src/Module/Moderation/Blocklist/Contact.php:122 +#: src/Module/Moderation/Blocklist/Contact.php:108 msgid "Reason" msgstr "Adhbhar" -#: src/Module/Moderation/Blocklist/Contact.php:128 +#: src/Module/Moderation/Blocklist/Contact.php:114 #, php-format msgid "%s total blocked contact" msgid_plural "%s total blocked contacts" @@ -8135,30 +8130,30 @@ msgstr[1] "Chaidh %s luchd-aithne a bhacadh gu h-iomlan" msgstr[2] "Chaidh %s luchd-aithne a bhacadh gu h-iomlan" msgstr[3] "Chaidh %s luchd-aithne a bhacadh gu h-iomlan" -#: src/Module/Moderation/Blocklist/Contact.php:131 +#: src/Module/Moderation/Blocklist/Contact.php:117 msgid "URL of the remote contact to block." msgstr "URL an neach-aithne chèin ri bhacadh." -#: src/Module/Moderation/Blocklist/Contact.php:132 +#: src/Module/Moderation/Blocklist/Contact.php:118 msgid "Also purge contact" msgstr "Purgaidich an neach-aithne cuideachd" -#: src/Module/Moderation/Blocklist/Contact.php:132 +#: src/Module/Moderation/Blocklist/Contact.php:118 msgid "" "Removes all content related to this contact from the node. Keeps the contact" " record. This action cannot be undone." msgstr "Bheir seo air falbh susbaint sam bith a tha co-cheangailte ris an neach-aithne seo on nòd. Cumaidh seo clàr an neach-aithne. Cha ghabh an gnìomh seo a neo-dhèanamh." -#: src/Module/Moderation/Blocklist/Contact.php:133 -#: src/Module/Moderation/Blocklist/Server/Import.php:124 +#: src/Module/Moderation/Blocklist/Contact.php:119 +#: src/Module/Moderation/Blocklist/Server/Import.php:108 msgid "Block Reason" msgstr "Adhbhar a’ bhacaidh" -#: src/Module/Moderation/Blocklist/Server/Add.php:80 +#: src/Module/Moderation/Blocklist/Server/Add.php:66 msgid "Server domain pattern added to the blocklist." msgstr "Chaidh pàtran àrainn fhrithealaichean a chur ris an liosta-bhacaidh." -#: src/Module/Moderation/Blocklist/Server/Add.php:88 +#: src/Module/Moderation/Blocklist/Server/Add.php:74 #, php-format msgid "%s server scheduled to be purged." msgid_plural "%s servers scheduled to be purged." @@ -8167,17 +8162,17 @@ msgstr[1] "Chaidh %s fhrithealaiche a chur air sgeideal a’ phurgaideachaidh." msgstr[2] "Chaidh %s frithealaichean a chur air sgeideal a’ phurgaideachaidh." msgstr[3] "Chaidh %s frithealaiche a chur air sgeideal a’ phurgaideachaidh." -#: src/Module/Moderation/Blocklist/Server/Add.php:120 -#: src/Module/Moderation/Blocklist/Server/Import.php:117 +#: src/Module/Moderation/Blocklist/Server/Add.php:106 +#: src/Module/Moderation/Blocklist/Server/Import.php:101 msgid "← Return to the list" msgstr "← Air ais dhan liosta" -#: src/Module/Moderation/Blocklist/Server/Add.php:122 +#: src/Module/Moderation/Blocklist/Server/Add.php:108 msgid "Block A New Server Domain Pattern" msgstr "Bac pàtran àrainne fhrithealaichean ùr" -#: src/Module/Moderation/Blocklist/Server/Add.php:123 -#: src/Module/Moderation/Blocklist/Server/Index.php:99 +#: src/Module/Moderation/Blocklist/Server/Add.php:109 +#: src/Module/Moderation/Blocklist/Server/Index.php:85 msgid "" "

The server domain pattern syntax is case-insensitive shell wildcard, comprising the following special characters:

\n" "
    \n" @@ -8186,30 +8181,30 @@ msgid "" "
" msgstr "

Chan eil aire air litrichean mòra is beaga aig pàtran àrainne fhrithealaichean is tha e ’na shaorag slige leis na caractaran sònraichte seo:

\n
    \n\t
  • *: Uiread sam bith de charactaran
  • \n\t
  • ?: Aon charactar
  • \n
" -#: src/Module/Moderation/Blocklist/Server/Add.php:128 -#: src/Module/Moderation/Blocklist/Server/Index.php:107 +#: src/Module/Moderation/Blocklist/Server/Add.php:114 +#: src/Module/Moderation/Blocklist/Server/Index.php:93 msgid "Check pattern" msgstr "Thoir sùil air a’ phàtran" -#: src/Module/Moderation/Blocklist/Server/Add.php:129 +#: src/Module/Moderation/Blocklist/Server/Add.php:115 msgid "Matching known servers" msgstr "A’ maidseadh nam frithealaichean as aithne dhuinn" -#: src/Module/Moderation/Blocklist/Server/Add.php:130 -#: src/Module/Settings/Server/Action.php:76 -#: src/Module/Settings/Server/Index.php:106 +#: src/Module/Moderation/Blocklist/Server/Add.php:116 +#: src/Module/Settings/Server/Action.php:62 +#: src/Module/Settings/Server/Index.php:92 msgid "Server Name" msgstr "Ainm an fhrithealaiche" -#: src/Module/Moderation/Blocklist/Server/Add.php:131 +#: src/Module/Moderation/Blocklist/Server/Add.php:117 msgid "Server Domain" msgstr "Àrainn an fhrithealaiche" -#: src/Module/Moderation/Blocklist/Server/Add.php:132 +#: src/Module/Moderation/Blocklist/Server/Add.php:118 msgid "Known Contacts" msgstr "An luchd-aithne as aithne dhuinn" -#: src/Module/Moderation/Blocklist/Server/Add.php:133 +#: src/Module/Moderation/Blocklist/Server/Add.php:119 #, php-format msgid "%d known server" msgid_plural "%d known servers" @@ -8218,27 +8213,27 @@ msgstr[1] "%d fhrithealaiche as aithne dhuinn" msgstr[2] "%d frithealaichean as aithne dhuinn" msgstr[3] "%d frithealaiche as aithne dhuinn" -#: src/Module/Moderation/Blocklist/Server/Add.php:134 +#: src/Module/Moderation/Blocklist/Server/Add.php:120 msgid "Add pattern to the blocklist" msgstr "Cuir am pàtran ris an liosta-bhacaidh" -#: src/Module/Moderation/Blocklist/Server/Add.php:136 -#: src/Module/Moderation/Blocklist/Server/Index.php:116 +#: src/Module/Moderation/Blocklist/Server/Add.php:122 +#: src/Module/Moderation/Blocklist/Server/Index.php:102 msgid "Server Domain Pattern" msgstr "Pàtran àrainne fhrithealaichean" -#: src/Module/Moderation/Blocklist/Server/Add.php:136 -#: src/Module/Moderation/Blocklist/Server/Index.php:116 +#: src/Module/Moderation/Blocklist/Server/Add.php:122 +#: src/Module/Moderation/Blocklist/Server/Index.php:102 msgid "" "The domain pattern of the new server to add to the blocklist. Do not include" " the protocol." msgstr "Am pàtran àrainne fhrithealaichean ùr airson a chur ris an liosta-bhacaidh. Na gabh a-staigh am pròtacal." -#: src/Module/Moderation/Blocklist/Server/Add.php:137 +#: src/Module/Moderation/Blocklist/Server/Add.php:123 msgid "Purge server" msgstr "Purgaidich am frithealaiche" -#: src/Module/Moderation/Blocklist/Server/Add.php:137 +#: src/Module/Moderation/Blocklist/Server/Add.php:123 msgid "" "Also purges all the locally stored content authored by the known contacts " "registered on that server. Keeps the contacts and the server records. This " @@ -8252,26 +8247,26 @@ msgstr[1] "Nì seo purgaideachadh air gach susbaint cuideachd a chaidh a stòrad msgstr[2] "Nì seo purgaideachadh air gach susbaint cuideachd a chaidh a stòradh gu h-ionadail ’s a chaidh a sgrìobhadh leis an luchd-aithne as aithne dhuinn a tha clàraichte air na frithealaichean ud. Cumaidh seo luchd-aithne is clàran nam frithealaichean. Cha ghabh seo a neo-dhèanamh." msgstr[3] "Nì seo purgaideachadh air gach susbaint cuideachd a chaidh a stòradh gu h-ionadail ’s a chaidh a sgrìobhadh leis an luchd-aithne as aithne dhuinn a tha clàraichte air na frithealaichean ud. Cumaidh seo luchd-aithne is clàran nam frithealaichean. Cha ghabh seo a neo-dhèanamh." -#: src/Module/Moderation/Blocklist/Server/Add.php:138 +#: src/Module/Moderation/Blocklist/Server/Add.php:124 msgid "Block reason" msgstr "Adhbhar a’ bhacaidh" -#: src/Module/Moderation/Blocklist/Server/Add.php:138 +#: src/Module/Moderation/Blocklist/Server/Add.php:124 msgid "" "The reason why you blocked this server domain pattern. This reason will be " "shown publicly in the server information page." msgstr "An t-adhbhar air an do bhac thu am pàtran àrainne fhrithealaichean seo. Thèid an t-adhbhar a shealltainn gu poblach air duilleag fiosrachadh an fhrithealaiche." -#: src/Module/Moderation/Blocklist/Server/Import.php:74 -#: src/Module/Moderation/Blocklist/Server/Import.php:83 +#: src/Module/Moderation/Blocklist/Server/Import.php:60 +#: src/Module/Moderation/Blocklist/Server/Import.php:67 msgid "Error importing pattern file" msgstr "Mearachd ag ion-phortadh faidhle nam pàtranan" -#: src/Module/Moderation/Blocklist/Server/Import.php:89 +#: src/Module/Moderation/Blocklist/Server/Import.php:74 msgid "Local blocklist replaced with the provided file." msgstr "Chaidh am faidhle a sholair thu a chur an àite na liosta-bacaidh ionadail." -#: src/Module/Moderation/Blocklist/Server/Import.php:93 +#: src/Module/Moderation/Blocklist/Server/Import.php:78 #, php-format msgid "%d pattern was added to the local blocklist." msgid_plural "%d patterns were added to the local blocklist." @@ -8280,42 +8275,42 @@ msgstr[1] "Chaidh %d phàtran a chur ris an liosta-bhacaidh ionadail." msgstr[2] "Chaidh %d pàtranan a chur ris an liosta-bhacaidh ionadail." msgstr[3] "Chaidh %d pàtran a chur ris an liosta-bhacaidh ionadail." -#: src/Module/Moderation/Blocklist/Server/Import.php:95 +#: src/Module/Moderation/Blocklist/Server/Import.php:80 msgid "No pattern was added to the local blocklist." msgstr "Cha deach pàtran sam bith a chur ris an liosta-bhacaidh ionadail." -#: src/Module/Moderation/Blocklist/Server/Import.php:119 +#: src/Module/Moderation/Blocklist/Server/Import.php:103 msgid "Import a Server Domain Pattern Blocklist" msgstr "Ion-phortaich liosta-bhacaidh le pàtrain àrainne fhrithealaichean" -#: src/Module/Moderation/Blocklist/Server/Import.php:120 +#: src/Module/Moderation/Blocklist/Server/Import.php:104 msgid "" "

This file can be downloaded from the /friendica path of any " "Friendica server.

" msgstr "

Gabhaidh am faidhle seo a luchdadh a-nuas on t-slighe /friendica aig frithealaiche Friendica sam bith.

" -#: src/Module/Moderation/Blocklist/Server/Import.php:121 -#: src/Module/Moderation/Blocklist/Server/Index.php:106 +#: src/Module/Moderation/Blocklist/Server/Import.php:105 +#: src/Module/Moderation/Blocklist/Server/Index.php:92 msgid "Upload file" msgstr "Luchdaich suas faidhle" -#: src/Module/Moderation/Blocklist/Server/Import.php:122 +#: src/Module/Moderation/Blocklist/Server/Import.php:106 msgid "Patterns to import" msgstr "Na pàtranan rin ion-phortadh" -#: src/Module/Moderation/Blocklist/Server/Import.php:123 +#: src/Module/Moderation/Blocklist/Server/Import.php:107 msgid "Domain Pattern" msgstr "Pàtran àrainne" -#: src/Module/Moderation/Blocklist/Server/Import.php:125 +#: src/Module/Moderation/Blocklist/Server/Import.php:109 msgid "Import Mode" msgstr "Modh an ion-phortaidh" -#: src/Module/Moderation/Blocklist/Server/Import.php:126 +#: src/Module/Moderation/Blocklist/Server/Import.php:110 msgid "Import Patterns" msgstr "Ion-phortaich na pàtranan" -#: src/Module/Moderation/Blocklist/Server/Import.php:127 +#: src/Module/Moderation/Blocklist/Server/Import.php:111 #, php-format msgid "%d total pattern" msgid_plural "%d total patterns" @@ -8324,233 +8319,233 @@ msgstr[1] "%d phàtran gu h-iomlan" msgstr[2] "%d pàtranan gu h-iomlan" msgstr[3] "%d pàtran gu h-iomlan" -#: src/Module/Moderation/Blocklist/Server/Import.php:129 -#: src/Module/Moderation/Blocklist/Server/Index.php:115 +#: src/Module/Moderation/Blocklist/Server/Import.php:113 +#: src/Module/Moderation/Blocklist/Server/Index.php:101 msgid "Server domain pattern blocklist CSV file" msgstr "Faidhle CSV sa bheil liosta-bhacaidh le pàtrain àrainne fhrithealaichean" -#: src/Module/Moderation/Blocklist/Server/Import.php:130 +#: src/Module/Moderation/Blocklist/Server/Import.php:114 msgid "Append" msgstr "Cuir ris" -#: src/Module/Moderation/Blocklist/Server/Import.php:130 +#: src/Module/Moderation/Blocklist/Server/Import.php:114 msgid "" "Imports patterns from the file that weren't already existing in the current " "blocklist." msgstr "Nì seo ion-phortadh dhe na pàtranan san fhaidhle nach eil air an liosta-bhacaidh làithreach fhathast." -#: src/Module/Moderation/Blocklist/Server/Import.php:131 +#: src/Module/Moderation/Blocklist/Server/Import.php:115 msgid "Replace" msgstr "Cuir ’na àite" -#: src/Module/Moderation/Blocklist/Server/Import.php:131 +#: src/Module/Moderation/Blocklist/Server/Import.php:115 msgid "Replaces the current blocklist by the imported patterns." msgstr "Cuiridh seo na pàtranan air an ion-phortadh an àite na liosta-bacaidh làithrich." -#: src/Module/Moderation/Blocklist/Server/Index.php:86 -#: src/Module/Moderation/Blocklist/Server/Index.php:110 -#: src/Module/Settings/Channels.php:231 +#: src/Module/Moderation/Blocklist/Server/Index.php:72 +#: src/Module/Moderation/Blocklist/Server/Index.php:96 +#: src/Module/Settings/Channels.php:217 msgid "Blocked server domain pattern" msgstr "Pàtran àrainne fhrithealaichean a chaidh a bhacadh" -#: src/Module/Moderation/Blocklist/Server/Index.php:88 +#: src/Module/Moderation/Blocklist/Server/Index.php:74 msgid "Delete server domain pattern" msgstr "Sguab às am pàtran àrainne fhrithealaichean" -#: src/Module/Moderation/Blocklist/Server/Index.php:88 +#: src/Module/Moderation/Blocklist/Server/Index.php:74 msgid "Check to delete this entry from the blocklist" msgstr "Cuir cromag ris a sguabadh às an nì seo on liosta-bhacaidh" -#: src/Module/Moderation/Blocklist/Server/Index.php:96 +#: src/Module/Moderation/Blocklist/Server/Index.php:82 msgid "Server Domain Pattern Blocklist" msgstr "Liosta-bhacaidh le pàtrain àrainne fhrithealaichean" -#: src/Module/Moderation/Blocklist/Server/Index.php:97 +#: src/Module/Moderation/Blocklist/Server/Index.php:83 msgid "" "This page can be used to define a blocklist of server domain patterns from " "the federated network that are not allowed to interact with your node. For " "each domain pattern you should also provide the reason why you block it." msgstr "’S urrainn dhut an duilleag seo a chleachdadh airson liosta-bhacaidh le pàtrain àrainne fhrithealaichean on lìonra cho-naisgte a mhìneachadh nach fhaod gnìomh a ghabhail leis an nòd agad. Airson gach pàtran àrainne fhrithealaichean, bu chòir dhut an t-adhbhar a thoirt seachad air an do bhac thu e." -#: src/Module/Moderation/Blocklist/Server/Index.php:98 +#: src/Module/Moderation/Blocklist/Server/Index.php:84 msgid "" "The list of blocked server domain patterns will be made publically available" " on the /friendica page so that your users and " "people investigating communication problems can find the reason easily." msgstr "Thèid liosta nam pàtran àrainne fhrithealaichean foillseachadh gu poblach air an duilleag /friendica ach am faigh an luchd-cleachdaidh agad ’s na daoine a tha a’ sgrùdadh duilgheadasan conaltraidh a-mach gun duilgheadas dè as adhbhar." -#: src/Module/Moderation/Blocklist/Server/Index.php:104 +#: src/Module/Moderation/Blocklist/Server/Index.php:90 msgid "Import server domain pattern blocklist" msgstr "Ion-phortaich liosta-bhacaidh le pàtrain àrainne fhrithealaichean" -#: src/Module/Moderation/Blocklist/Server/Index.php:105 +#: src/Module/Moderation/Blocklist/Server/Index.php:91 msgid "Add new entry to the blocklist" msgstr "Cuir nì ùr ris an liosta-bhacaidh" -#: src/Module/Moderation/Blocklist/Server/Index.php:108 +#: src/Module/Moderation/Blocklist/Server/Index.php:94 msgid "Save changes to the blocklist" msgstr "Sàbhail na h-atharraichean air an liosta-bhacaidh" -#: src/Module/Moderation/Blocklist/Server/Index.php:109 +#: src/Module/Moderation/Blocklist/Server/Index.php:95 msgid "Current Entries in the Blocklist" msgstr "Na nithean làithreach air an liosta-bhacaidh" -#: src/Module/Moderation/Blocklist/Server/Index.php:112 +#: src/Module/Moderation/Blocklist/Server/Index.php:98 msgid "Delete entry from the blocklist" msgstr "Sguab às an nì on liosta-bhacaidh" -#: src/Module/Moderation/Blocklist/Server/Index.php:113 +#: src/Module/Moderation/Blocklist/Server/Index.php:99 msgid "Delete entry from the blocklist?" msgstr "A bheil thu airson an nì seo a sguabadh às on liosta-bhacaidh?" -#: src/Module/Moderation/Item/Delete.php:50 +#: src/Module/Moderation/Item/Delete.php:36 msgid "Item marked for deletion." msgstr "Chaidh an nì a chomharrachadh a chùm sguabaidh às." -#: src/Module/Moderation/Item/Delete.php:63 +#: src/Module/Moderation/Item/Delete.php:49 msgid "Delete this Item" msgstr "Sguab às an nì seo" -#: src/Module/Moderation/Item/Delete.php:64 +#: src/Module/Moderation/Item/Delete.php:50 msgid "" "On this page you can delete an item from your node. If the item is a top " "level posting, the entire thread will be deleted." msgstr "Air an duilleag seo, ’s urrainn dhut nì a sguabadh às on nòd agad. Mas e post ciad ìre a tha san nì, thèid an snàithlean gu lèir a sguabadh às." -#: src/Module/Moderation/Item/Delete.php:65 +#: src/Module/Moderation/Item/Delete.php:51 msgid "" "You need to know the GUID of the item. You can find it e.g. by looking at " "the display URL. The last part of http://example.com/display/123456 is the " "GUID, here 123456." msgstr "Feumaidh tu a bhith eòlach air GUID an nì. Gheibh thu lorg air m. e. a’ coimhead air URL an t-seallaidh. ’S e a’ phàirt mu dheireadh aig http://example.com/display/123456 a sa san GUID, ’s e 123456 a th’ ann an-seo." -#: src/Module/Moderation/Item/Delete.php:67 +#: src/Module/Moderation/Item/Delete.php:53 msgid "GUID" msgstr "GUID" -#: src/Module/Moderation/Item/Delete.php:67 +#: src/Module/Moderation/Item/Delete.php:53 msgid "The GUID of the item you want to delete." msgstr "GUID an nì a tha thu airson sguabadh às." -#: src/Module/Moderation/Item/Source.php:83 +#: src/Module/Moderation/Item/Source.php:69 msgid "Item Id" msgstr "ID an nì" -#: src/Module/Moderation/Item/Source.php:84 +#: src/Module/Moderation/Item/Source.php:70 msgid "Item URI" msgstr "URI an nì" -#: src/Module/Moderation/Item/Source.php:86 +#: src/Module/Moderation/Item/Source.php:72 msgid "Terms" msgstr "Briathran" -#: src/Module/Moderation/Item/Source.php:87 +#: src/Module/Moderation/Item/Source.php:73 msgid "Tag" msgstr "Taga" -#: src/Module/Moderation/Item/Source.php:88 -#: src/Module/Moderation/Users/Active.php:126 -#: src/Module/Moderation/Users/Blocked.php:126 -#: src/Module/Moderation/Users/Index.php:140 +#: src/Module/Moderation/Item/Source.php:74 +#: src/Module/Moderation/Users/Active.php:112 +#: src/Module/Moderation/Users/Blocked.php:112 +#: src/Module/Moderation/Users/Index.php:126 msgid "Type" msgstr "Seòrsa" -#: src/Module/Moderation/Item/Source.php:89 +#: src/Module/Moderation/Item/Source.php:75 msgid "Term" msgstr "Briathar" -#: src/Module/Moderation/Item/Source.php:90 +#: src/Module/Moderation/Item/Source.php:76 msgid "URL" msgstr "URL" -#: src/Module/Moderation/Item/Source.php:92 +#: src/Module/Moderation/Item/Source.php:78 msgid "Implicit Mention" msgstr "Iomradh fillte" -#: src/Module/Moderation/Item/Source.php:94 +#: src/Module/Moderation/Item/Source.php:80 msgid "Item not found" msgstr "Cha deach an nì a lorg" -#: src/Module/Moderation/Item/Source.php:95 +#: src/Module/Moderation/Item/Source.php:81 msgid "No source recorded" msgstr "Cha deach tùs a chlàradh" -#: src/Module/Moderation/Item/Source.php:96 +#: src/Module/Moderation/Item/Source.php:82 msgid "" "Please make sure the debug.store_source config key is set in " "config/local.config.php for future items to have sources." msgstr "Dèan cinnteach gun deach iuchair rèiteachaidh debug.store_source a shuidheachadh ann an config/local.config.php ach am bi tùsan aig na nithean ri teachd." -#: src/Module/Moderation/Item/Source.php:98 +#: src/Module/Moderation/Item/Source.php:84 msgid "Item Guid" msgstr "GUID an nì" -#: src/Module/Moderation/Report/Create.php:95 +#: src/Module/Moderation/Report/Create.php:81 msgid "Contact not found or their server is already blocked on this node." msgstr "Cha deach an neach-aithne a lorg no chaidh am frithealaiche aca a bhacadh air an nòd seo mu thràth." -#: src/Module/Moderation/Report/Create.php:136 +#: src/Module/Moderation/Report/Create.php:122 msgid "Please login to access this page." msgstr "Clàraich a-steach airson an duilleag seo inntrigeadh." -#: src/Module/Moderation/Report/Create.php:165 -#: src/Module/Moderation/Report/Create.php:180 -#: src/Module/Moderation/Report/Create.php:208 -#: src/Module/Moderation/Report/Create.php:260 -#: src/Module/Moderation/Report/Create.php:279 +#: src/Module/Moderation/Report/Create.php:151 +#: src/Module/Moderation/Report/Create.php:166 +#: src/Module/Moderation/Report/Create.php:194 +#: src/Module/Moderation/Report/Create.php:246 +#: src/Module/Moderation/Report/Create.php:265 msgid "Create Moderation Report" msgstr "Cruthaich gearan maorsainneachd" -#: src/Module/Moderation/Report/Create.php:166 +#: src/Module/Moderation/Report/Create.php:152 msgid "Pick Contact" msgstr "Tagh neach-aithne" -#: src/Module/Moderation/Report/Create.php:167 +#: src/Module/Moderation/Report/Create.php:153 msgid "" "Please enter below the contact address or profile URL you would like to " "create a moderation report about." msgstr "Cuir a-steach seòladh no URL pròifil neach-aithne gu h-ìosal airson gearan maorsainneachd a chruthachadh mu dhèidhinn." -#: src/Module/Moderation/Report/Create.php:171 +#: src/Module/Moderation/Report/Create.php:157 msgid "Contact address/URL" msgstr "Seòladh/URL an neach-aithne" -#: src/Module/Moderation/Report/Create.php:181 +#: src/Module/Moderation/Report/Create.php:167 msgid "Pick Category" msgstr "Tagh roinn-seòrsa" -#: src/Module/Moderation/Report/Create.php:182 +#: src/Module/Moderation/Report/Create.php:168 msgid "Please pick below the category of your report." msgstr "Tagh roinn-seòrsa a’ ghearain agad." -#: src/Module/Moderation/Report/Create.php:186 -#: src/Module/Moderation/Report/Create.php:311 +#: src/Module/Moderation/Report/Create.php:172 +#: src/Module/Moderation/Report/Create.php:297 msgid "Spam" msgstr "Spama" -#: src/Module/Moderation/Report/Create.php:186 +#: src/Module/Moderation/Report/Create.php:172 msgid "" "This contact is publishing many repeated/overly long posts/replies or " "advertising their product/websites in otherwise irrelevant conversations." msgstr "Tha an neach-aithne seo a’ foillseachadh iomadh post/freagairt a tha ro fhada no ’gam foillseachadh a-rithist ’s a-rithist no tha e a’ dèanamh sanasachd air a’ bhathar/làrach-lìn aca nach eil buntainneachd dha na còmhraidhean." -#: src/Module/Moderation/Report/Create.php:187 -#: src/Module/Moderation/Report/Create.php:312 +#: src/Module/Moderation/Report/Create.php:173 +#: src/Module/Moderation/Report/Create.php:298 msgid "Illegal Content" msgstr "Susbaint mhì-laghail" -#: src/Module/Moderation/Report/Create.php:187 +#: src/Module/Moderation/Report/Create.php:173 msgid "" "This contact is publishing content that is considered illegal in this node's" " hosting juridiction." msgstr "Tha an neach-aithne seo a’ foillseachadh susbaint a thathar a’ meas gu bheil e mì-laghail san uachdranas far a bheil an nòd ’ga òstadh." -#: src/Module/Moderation/Report/Create.php:188 -#: src/Module/Moderation/Report/Create.php:313 +#: src/Module/Moderation/Report/Create.php:174 +#: src/Module/Moderation/Report/Create.php:299 msgid "Community Safety" msgstr "Sàbhailteachd na coimhearsnachd" -#: src/Module/Moderation/Report/Create.php:188 +#: src/Module/Moderation/Report/Create.php:174 msgid "" "This contact aggravated you or other people, by being provocative or " "insensitive, intentionally or not. This includes disclosing people's private" @@ -8558,12 +8553,12 @@ msgid "" "replies." msgstr "Bhuair an neach-aithne seo thu no daoine eile on a tha e dìorrasach no neo-mhothachail ge b’ e a bheil e mar sin a dh’aona-ghnothaich no gun iarraidh. Gabhaidh seo a-staigh foillseachadh fiosrachadh prìobhaideach càich (doxxing), postadh bhagairtean no dealbhan frionasach ann am postaichean is freagairtean." -#: src/Module/Moderation/Report/Create.php:189 -#: src/Module/Moderation/Report/Create.php:314 +#: src/Module/Moderation/Report/Create.php:175 +#: src/Module/Moderation/Report/Create.php:300 msgid "Unwanted Content/Behavior" msgstr "Susbaint/Giùlan gun iarraidh" -#: src/Module/Moderation/Report/Create.php:189 +#: src/Module/Moderation/Report/Create.php:175 msgid "" "This contact has repeatedly published content irrelevant to the node's theme" " or is openly criticizing the node's administration/moderation without " @@ -8571,89 +8566,89 @@ msgid "" "nitpicking on a sensitive topic." msgstr "Dh’fhoillsich an neach-aithne seo iomadh susbaint nach eil buntainneach do chuspair an nòid no a tha a’ càineadh rianachd/maorsainneachd an nòid gu fosgailte gun a bhith a’ bruidhinn ris na daoine iomchaidh fhèin, mar eisimpleir, no a tha rag-fhoghlamach mu chuspair frionasach." -#: src/Module/Moderation/Report/Create.php:190 -#: src/Module/Moderation/Report/Create.php:315 +#: src/Module/Moderation/Report/Create.php:176 +#: src/Module/Moderation/Report/Create.php:301 msgid "Rules Violation" msgstr "Briseadh riaghailt" -#: src/Module/Moderation/Report/Create.php:190 +#: src/Module/Moderation/Report/Create.php:176 msgid "" "This contact violated one or more rules of this node. You will be able to " "pick which one(s) in the next step." msgstr "Bris an neach-aithne seo riaghailt no dhà dhen nòd seo. ’S urrainn dhut na riaghailtean a chaidh a bhriseadh a thaghadh san ath-cheum." -#: src/Module/Moderation/Report/Create.php:191 +#: src/Module/Moderation/Report/Create.php:177 msgid "" "Please elaborate below why you submitted this report. The more details you " "provide, the better your report can be handled." msgstr "Innis dhuinn carson a chuir thu a-null an gearan seo. Mar as mionaidiche am fiosrachadh a bheir thu dhuinn ’s ann as fhasa a bhios e dhuinn dèiligeadh ris a’ ghearan agad." -#: src/Module/Moderation/Report/Create.php:193 +#: src/Module/Moderation/Report/Create.php:179 msgid "Additional Information" msgstr "Barrachd fiosrachaidh" -#: src/Module/Moderation/Report/Create.php:193 +#: src/Module/Moderation/Report/Create.php:179 msgid "" "Please provide any additional information relevant to this particular " "report. You will be able to attach posts by this contact in the next step, " "but any context is welcome." msgstr "Thoir barrachd fiosrachaidh dhuinn a tha buntainneach dhan ghearan shònraichte seo. ’S urrainn dhut postaichean leis an neach-aithne seo a cheangal ris san ath-cheum ach cuiridh sinn fàilte do cho-theacsa sam bith." -#: src/Module/Moderation/Report/Create.php:209 +#: src/Module/Moderation/Report/Create.php:195 msgid "Pick Rules" msgstr "Tagh riaghailtean" -#: src/Module/Moderation/Report/Create.php:210 +#: src/Module/Moderation/Report/Create.php:196 msgid "Please pick below the node rules you believe this contact violated." msgstr "Tagh riaghailtean an nòid gu h-ìosal a shaoileas tu gun deach am briseadh leis an neach-aithne seo." -#: src/Module/Moderation/Report/Create.php:261 +#: src/Module/Moderation/Report/Create.php:247 msgid "Pick Posts" msgstr "Tagh postaichean" -#: src/Module/Moderation/Report/Create.php:262 +#: src/Module/Moderation/Report/Create.php:248 msgid "Please optionally pick posts to attach to your report." msgstr "Ma thogras tu, tagh postaichean ri cheangal ris a’ ghearan agad." -#: src/Module/Moderation/Report/Create.php:281 +#: src/Module/Moderation/Report/Create.php:267 msgid "Submit Report" msgstr "Cuir an gearan a-null" -#: src/Module/Moderation/Report/Create.php:282 +#: src/Module/Moderation/Report/Create.php:268 msgid "Further Action" msgstr "Gnìomhan eile" -#: src/Module/Moderation/Report/Create.php:283 +#: src/Module/Moderation/Report/Create.php:269 msgid "" "You can also perform one of the following action on the contact you " "reported:" msgstr "’S urrainn dhut fear de na gnìomhan seo a ghabhail cuideachd air an neach-aithne a rinn thu gearan air:" -#: src/Module/Moderation/Report/Create.php:291 +#: src/Module/Moderation/Report/Create.php:277 msgid "Nothing" msgstr "Na dèan dad" -#: src/Module/Moderation/Report/Create.php:292 +#: src/Module/Moderation/Report/Create.php:278 msgid "Collapse contact" msgstr "Co-theannaich an neach-aithne" -#: src/Module/Moderation/Report/Create.php:292 +#: src/Module/Moderation/Report/Create.php:278 msgid "" "Their posts and replies will keep appearing in your Network page but their " "content will be collapsed by default." msgstr "Nochdaidh na postaichean ’s freagairtean air duilleag an lìonraidh agad fhathast ach bidh an t-susbaint aca co-theannaichte a ghnàth." -#: src/Module/Moderation/Report/Create.php:293 +#: src/Module/Moderation/Report/Create.php:279 msgid "" "Their posts won't appear in your Network page anymore, but their replies can" " appear in forum threads. They still can follow you." msgstr "Cha nochd na postaichean ’s freagairtean air duilleag an lìonraidh agad tuilleadh ach dh’fhaoidte gun nochd na freagairtean aca ann an snàithleanan fòraim. Faodaidh iad do leantainn fhathast." -#: src/Module/Moderation/Report/Create.php:294 +#: src/Module/Moderation/Report/Create.php:280 msgid "Block contact" msgstr "Bac an neach-aithne" -#: src/Module/Moderation/Report/Create.php:294 +#: src/Module/Moderation/Report/Create.php:280 msgid "" "Their posts won't appear in your Network page anymore, but their replies can" " appear in forum threads, with their content collapsed by default. They " @@ -8661,51 +8656,51 @@ msgid "" "means." msgstr "Cha nochd na postaichean ’s freagairtean air duilleag an lìonraidh agad tuilleadh ach dh’fhaoidte gun nochd na freagairtean aca ann an snàithleanan fòraim leis an t-susbaint aca co-theannaichte a ghnàth. Chan fhaod iad do leantainn tuilleadh ach dh’fhaoidte gum faigh iad cothrom air na postaichean poblach agad fhathast air dòighean eile." -#: src/Module/Moderation/Report/Create.php:297 +#: src/Module/Moderation/Report/Create.php:283 msgid "Forward report" msgstr "Sìn air adhart an gearan" -#: src/Module/Moderation/Report/Create.php:297 +#: src/Module/Moderation/Report/Create.php:283 msgid "Would you ike to forward this report to the remote server?" msgstr "A bheil thu airson an gearan seo a shìneadh air adhart dhan fhrithealaiche chèin?" -#: src/Module/Moderation/Report/Create.php:330 +#: src/Module/Moderation/Report/Create.php:316 msgid "1. Pick a contact" msgstr "1. Tagh neach-aithne" -#: src/Module/Moderation/Report/Create.php:331 +#: src/Module/Moderation/Report/Create.php:317 msgid "2. Pick a category" msgstr "2. Tagh roinn-seòrsa" -#: src/Module/Moderation/Report/Create.php:332 +#: src/Module/Moderation/Report/Create.php:318 msgid "2a. Pick rules" msgstr "2a. Tagh riaghailtean" -#: src/Module/Moderation/Report/Create.php:333 +#: src/Module/Moderation/Report/Create.php:319 msgid "2b. Add comment" msgstr "2b. Cuir beachd ris" -#: src/Module/Moderation/Report/Create.php:334 +#: src/Module/Moderation/Report/Create.php:320 msgid "3. Pick posts" msgstr "3. Tagh postaichean" -#: src/Module/Moderation/Reports.php:111 +#: src/Module/Moderation/Reports.php:97 msgid "List of reports" msgstr "" -#: src/Module/Moderation/Reports.php:112 +#: src/Module/Moderation/Reports.php:98 msgid "This page display reports created by our or remote users." msgstr "" -#: src/Module/Moderation/Reports.php:113 +#: src/Module/Moderation/Reports.php:99 msgid "No report exists at this node." msgstr "" -#: src/Module/Moderation/Reports.php:116 +#: src/Module/Moderation/Reports.php:102 msgid "Category" msgstr "" -#: src/Module/Moderation/Reports.php:120 +#: src/Module/Moderation/Reports.php:106 #, php-format msgid "%s total report" msgid_plural "%s total reports" @@ -8714,24 +8709,24 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: src/Module/Moderation/Reports.php:123 +#: src/Module/Moderation/Reports.php:109 msgid "URL of the reported contact." msgstr "" -#: src/Module/Moderation/Summary.php:57 src/Module/Settings/Account.php:436 +#: src/Module/Moderation/Summary.php:43 src/Module/Settings/Account.php:422 msgid "Channel Relay" msgstr "" -#: src/Module/Moderation/Summary.php:77 +#: src/Module/Moderation/Summary.php:63 msgid "Registered users" msgstr "Cleachdaichean clàraichte" -#: src/Module/Moderation/Summary.php:79 +#: src/Module/Moderation/Summary.php:65 msgid "Pending registrations" msgstr "Clàraidhean rin dèiligeadh" -#: src/Module/Moderation/Users/Active.php:43 -#: src/Module/Moderation/Users/Index.php:43 +#: src/Module/Moderation/Users/Active.php:29 +#: src/Module/Moderation/Users/Index.php:29 #, php-format msgid "%s user blocked" msgid_plural "%s users blocked" @@ -8740,18 +8735,18 @@ msgstr[1] "Chaidh %s chleachdaiche a bhacadh" msgstr[2] "Chaidh %s cleachdaichean a bhacadh" msgstr[3] "Chaidh %s cleachdaiche a bhacadh" -#: src/Module/Moderation/Users/Active.php:51 -#: src/Module/Moderation/Users/Active.php:85 -#: src/Module/Moderation/Users/Blocked.php:51 -#: src/Module/Moderation/Users/Blocked.php:85 -#: src/Module/Moderation/Users/Index.php:58 -#: src/Module/Moderation/Users/Index.php:92 +#: src/Module/Moderation/Users/Active.php:37 +#: src/Module/Moderation/Users/Active.php:71 +#: src/Module/Moderation/Users/Blocked.php:37 +#: src/Module/Moderation/Users/Blocked.php:71 +#: src/Module/Moderation/Users/Index.php:44 +#: src/Module/Moderation/Users/Index.php:78 msgid "You can't remove yourself" msgstr "Chan urrainn dhut thu fhèin a thoirt air falbh" -#: src/Module/Moderation/Users/Active.php:55 -#: src/Module/Moderation/Users/Blocked.php:55 -#: src/Module/Moderation/Users/Index.php:62 +#: src/Module/Moderation/Users/Active.php:41 +#: src/Module/Moderation/Users/Blocked.php:41 +#: src/Module/Moderation/Users/Index.php:48 #, php-format msgid "%s user deleted" msgid_plural "%s users deleted" @@ -8760,88 +8755,88 @@ msgstr[1] "Chaidh %s chleachdaiche a sguabadh às" msgstr[2] "Chaidh %s cleachdaichean a sguabadh às" msgstr[3] "Chaidh %s cleachdaiche a sguabadh às" -#: src/Module/Moderation/Users/Active.php:83 -#: src/Module/Moderation/Users/Blocked.php:83 -#: src/Module/Moderation/Users/Index.php:90 +#: src/Module/Moderation/Users/Active.php:69 +#: src/Module/Moderation/Users/Blocked.php:69 +#: src/Module/Moderation/Users/Index.php:76 #, php-format msgid "User \"%s\" deleted" msgstr "Chaidh an cleachdaiche “%s” a sguabadh às" -#: src/Module/Moderation/Users/Active.php:93 -#: src/Module/Moderation/Users/Index.php:100 +#: src/Module/Moderation/Users/Active.php:79 +#: src/Module/Moderation/Users/Index.php:86 #, php-format msgid "User \"%s\" blocked" msgstr "Chaidh an chleachdaiche “%s” a bhacadh" -#: src/Module/Moderation/Users/Active.php:126 -#: src/Module/Moderation/Users/Blocked.php:126 -#: src/Module/Moderation/Users/Deleted.php:83 -#: src/Module/Moderation/Users/Index.php:140 -#: src/Module/Moderation/Users/Index.php:160 +#: src/Module/Moderation/Users/Active.php:112 +#: src/Module/Moderation/Users/Blocked.php:112 +#: src/Module/Moderation/Users/Deleted.php:69 +#: src/Module/Moderation/Users/Index.php:126 +#: src/Module/Moderation/Users/Index.php:146 msgid "Register date" msgstr "Ceann-là a’ chlàraidh" -#: src/Module/Moderation/Users/Active.php:126 -#: src/Module/Moderation/Users/Blocked.php:126 -#: src/Module/Moderation/Users/Deleted.php:83 -#: src/Module/Moderation/Users/Index.php:140 -#: src/Module/Moderation/Users/Index.php:160 +#: src/Module/Moderation/Users/Active.php:112 +#: src/Module/Moderation/Users/Blocked.php:112 +#: src/Module/Moderation/Users/Deleted.php:69 +#: src/Module/Moderation/Users/Index.php:126 +#: src/Module/Moderation/Users/Index.php:146 msgid "Last login" msgstr "An clàradh a-steach mu dheireadh" -#: src/Module/Moderation/Users/Active.php:126 -#: src/Module/Moderation/Users/Blocked.php:126 -#: src/Module/Moderation/Users/Deleted.php:83 -#: src/Module/Moderation/Users/Index.php:140 -#: src/Module/Moderation/Users/Index.php:160 +#: src/Module/Moderation/Users/Active.php:112 +#: src/Module/Moderation/Users/Blocked.php:112 +#: src/Module/Moderation/Users/Deleted.php:69 +#: src/Module/Moderation/Users/Index.php:126 +#: src/Module/Moderation/Users/Index.php:146 msgid "Last public item" msgstr "An nì poblach mu dheireadh" -#: src/Module/Moderation/Users/Active.php:134 +#: src/Module/Moderation/Users/Active.php:120 msgid "Active Accounts" msgstr "Cunntasan gnìomhach" -#: src/Module/Moderation/Users/Active.php:138 -#: src/Module/Moderation/Users/Blocked.php:137 -#: src/Module/Moderation/Users/Index.php:153 +#: src/Module/Moderation/Users/Active.php:124 +#: src/Module/Moderation/Users/Blocked.php:123 +#: src/Module/Moderation/Users/Index.php:139 msgid "User blocked" msgstr "Chaidh an cleachdaiche a bhacadh" -#: src/Module/Moderation/Users/Active.php:139 -#: src/Module/Moderation/Users/Blocked.php:139 -#: src/Module/Moderation/Users/Index.php:155 +#: src/Module/Moderation/Users/Active.php:125 +#: src/Module/Moderation/Users/Blocked.php:125 +#: src/Module/Moderation/Users/Index.php:141 msgid "Site admin" msgstr "Rianaire na làraich" -#: src/Module/Moderation/Users/Active.php:140 -#: src/Module/Moderation/Users/Blocked.php:140 -#: src/Module/Moderation/Users/Index.php:156 +#: src/Module/Moderation/Users/Active.php:126 +#: src/Module/Moderation/Users/Blocked.php:126 +#: src/Module/Moderation/Users/Index.php:142 msgid "Account expired" msgstr "Dh’fhalbh an ùine air a’ chunntas" -#: src/Module/Moderation/Users/Active.php:141 -#: src/Module/Moderation/Users/Index.php:159 +#: src/Module/Moderation/Users/Active.php:127 +#: src/Module/Moderation/Users/Index.php:145 msgid "Create a new user" msgstr "Cruthaich cleachdaiche ùr" -#: src/Module/Moderation/Users/Active.php:147 -#: src/Module/Moderation/Users/Blocked.php:146 -#: src/Module/Moderation/Users/Index.php:165 +#: src/Module/Moderation/Users/Active.php:133 +#: src/Module/Moderation/Users/Blocked.php:132 +#: src/Module/Moderation/Users/Index.php:151 msgid "" "Selected users will be deleted!\\n\\nEverything these users had posted on " "this site will be permanently deleted!\\n\\nAre you sure?" msgstr "Thèid na cleachdaichean a thagh thu a sguabadh às!\\n\\nThèid a h-uile càil a phostaich na cleachdaichean seo air an làrach seo a sguabadh às gu buan!\\n\\nA bheil thu cinnteach?" -#: src/Module/Moderation/Users/Active.php:148 -#: src/Module/Moderation/Users/Blocked.php:147 -#: src/Module/Moderation/Users/Index.php:166 +#: src/Module/Moderation/Users/Active.php:134 +#: src/Module/Moderation/Users/Blocked.php:133 +#: src/Module/Moderation/Users/Index.php:152 msgid "" "The user {0} will be deleted!\\n\\nEverything this user has posted on this " "site will be permanently deleted!\\n\\nAre you sure?" msgstr "Thèid an cleachdaiche {0} a sguabadh às!\\n\\nThèid a h-uile càil a phostaich an cleachdaiche seo air an làrach seo a sguabadh às gu buan!\\n\\nA bheil thu cinnteach?" -#: src/Module/Moderation/Users/Blocked.php:43 -#: src/Module/Moderation/Users/Index.php:50 +#: src/Module/Moderation/Users/Blocked.php:29 +#: src/Module/Moderation/Users/Index.php:36 #, php-format msgid "%s user unblocked" msgid_plural "%s users unblocked" @@ -8850,54 +8845,54 @@ msgstr[1] "Chaidh %s chleachdaiche a dhì-bhacadh" msgstr[2] "Chaidh %s cleachdaichean a dhì-bhacadh" msgstr[3] "Chaidh %s cleachdaiche a dhì-bhacadh" -#: src/Module/Moderation/Users/Blocked.php:92 -#: src/Module/Moderation/Users/Index.php:106 +#: src/Module/Moderation/Users/Blocked.php:78 +#: src/Module/Moderation/Users/Index.php:92 #, php-format msgid "User \"%s\" unblocked" msgstr "Chaidh an cleachdaiche “%s” a dhì-bhacadh" -#: src/Module/Moderation/Users/Blocked.php:134 +#: src/Module/Moderation/Users/Blocked.php:120 msgid "Blocked Users" msgstr "Cleachdaichean bacte" -#: src/Module/Moderation/Users/Create.php:62 +#: src/Module/Moderation/Users/Create.php:48 msgid "New User" msgstr "Cleachdaiche ùr" -#: src/Module/Moderation/Users/Create.php:63 +#: src/Module/Moderation/Users/Create.php:49 msgid "Add User" msgstr "Cuir cleachdaiche ris" -#: src/Module/Moderation/Users/Create.php:70 +#: src/Module/Moderation/Users/Create.php:56 msgid "Name of the new user." msgstr "Ainm a’ chleachdaiche ùir." -#: src/Module/Moderation/Users/Create.php:71 +#: src/Module/Moderation/Users/Create.php:57 msgid "Nickname" msgstr "Far-ainm" -#: src/Module/Moderation/Users/Create.php:71 +#: src/Module/Moderation/Users/Create.php:57 msgid "Nickname of the new user." msgstr "Far-ainm a’ chleachdaiche ùir." -#: src/Module/Moderation/Users/Create.php:72 +#: src/Module/Moderation/Users/Create.php:58 msgid "Email address of the new user." msgstr "Seòladh puist-d a’ chleachdaiche ùir." -#: src/Module/Moderation/Users/Deleted.php:81 +#: src/Module/Moderation/Users/Deleted.php:67 msgid "Users awaiting permanent deletion" msgstr "Cleachdaichean a’ feitheamh air sguabadh às buan" -#: src/Module/Moderation/Users/Deleted.php:83 -#: src/Module/Moderation/Users/Index.php:160 +#: src/Module/Moderation/Users/Deleted.php:69 +#: src/Module/Moderation/Users/Index.php:146 msgid "Permanent deletion" msgstr "Sguabadh às buan" -#: src/Module/Moderation/Users/Index.php:150 +#: src/Module/Moderation/Users/Index.php:136 msgid "User waiting for permanent deletion" msgstr "Cleachdaiche a’ feitheamh sguabadh às buan" -#: src/Module/Moderation/Users/Pending.php:44 +#: src/Module/Moderation/Users/Pending.php:30 #, php-format msgid "%s user approved" msgid_plural "%s users approved" @@ -8906,7 +8901,7 @@ msgstr[1] "Fhuair %s chleachdaiche aonta" msgstr[2] "Fhuair %s cleachdaichean aonta" msgstr[3] "Fhuair %s cleachdaiche aonta" -#: src/Module/Moderation/Users/Pending.php:51 +#: src/Module/Moderation/Users/Pending.php:37 #, php-format msgid "%s registration revoked" msgid_plural "%s registrations revoked" @@ -8915,420 +8910,406 @@ msgstr[1] "Chaidh %s chlàradh a chùl-ghairm" msgstr[2] "Chaidh %s clàraidhean a chùl-ghairm" msgstr[3] "Chaidh %s clàradh a chùl-ghairm" -#: src/Module/Moderation/Users/Pending.php:76 +#: src/Module/Moderation/Users/Pending.php:62 msgid "Account approved." msgstr "Air aontachadh ris a’ chunntas." -#: src/Module/Moderation/Users/Pending.php:82 +#: src/Module/Moderation/Users/Pending.php:68 msgid "Registration revoked" msgstr "Chaidh an clàradh a chùl-ghairm" -#: src/Module/Moderation/Users/Pending.php:97 +#: src/Module/Moderation/Users/Pending.php:83 msgid "User registrations awaiting review" msgstr "Clàraichean chleachdaichean a’ feitheamh air lèirmheas" -#: src/Module/Moderation/Users/Pending.php:99 +#: src/Module/Moderation/Users/Pending.php:85 msgid "Request date" msgstr "Cuin a chaidh iarraidh" -#: src/Module/Moderation/Users/Pending.php:100 +#: src/Module/Moderation/Users/Pending.php:86 msgid "No registrations." msgstr "Chan eil clàradh ann." -#: src/Module/Moderation/Users/Pending.php:101 +#: src/Module/Moderation/Users/Pending.php:87 msgid "Note from the user" msgstr "Nòta on chleachdaiche" -#: src/Module/Moderation/Users/Pending.php:103 +#: src/Module/Moderation/Users/Pending.php:89 msgid "Deny" msgstr "Diùlt" -#: src/Module/Notifications/Introductions.php:105 +#: src/Module/Notifications/Introductions.php:91 msgid "Show Ignored Requests" msgstr "Seall na h-iarrtasan a leig thu seachad" -#: src/Module/Notifications/Introductions.php:105 +#: src/Module/Notifications/Introductions.php:91 msgid "Hide Ignored Requests" msgstr "Falaich na h-iarrtasan a leig thu seachad" -#: src/Module/Notifications/Introductions.php:121 -#: src/Module/Notifications/Introductions.php:184 +#: src/Module/Notifications/Introductions.php:107 +#: src/Module/Notifications/Introductions.php:170 msgid "Notification type:" msgstr "Seòrsa a’ bhratha:" -#: src/Module/Notifications/Introductions.php:124 +#: src/Module/Notifications/Introductions.php:110 msgid "Suggested by:" msgstr "’Ga mholadh le:" -#: src/Module/Notifications/Introductions.php:149 +#: src/Module/Notifications/Introductions.php:135 msgid "Claims to be known to you: " msgstr "A’ tagradh gur aithne dhut e: " -#: src/Module/Notifications/Introductions.php:158 +#: src/Module/Notifications/Introductions.php:144 msgid "Shall your connection be bidirectional or not?" msgstr "A bheil thu airson co-dhàimh a chruthachadh?" -#: src/Module/Notifications/Introductions.php:159 +#: src/Module/Notifications/Introductions.php:145 #, php-format msgid "" "Accepting %s as a friend allows %s to subscribe to your posts, and you will " "also receive updates from them in your news feed." msgstr "Ma ghabhas tu ri %s ’nad charaid, faodaidh %s fo-sgrìobhadh air na postaichean agad agus gheibh thu na naidheachdan uapa-san cuideachd." -#: src/Module/Notifications/Introductions.php:160 +#: src/Module/Notifications/Introductions.php:146 #, php-format msgid "" "Accepting %s as a subscriber allows them to subscribe to your posts, but you" " will not receive updates from them in your news feed." msgstr "Ma ghabhas tu ri %s mar fo-sgrìobhadh, faodaidh iad fo-sgrìobhadh air na postaichean agad ach chan fhaigh thu na naidheachdan uapa-san." -#: src/Module/Notifications/Introductions.php:162 +#: src/Module/Notifications/Introductions.php:148 msgid "Friend" msgstr "Caraid" -#: src/Module/Notifications/Introductions.php:163 +#: src/Module/Notifications/Introductions.php:149 msgid "Subscriber" msgstr "Fo-sgrìobhadh" -#: src/Module/Notifications/Introductions.php:222 +#: src/Module/Notifications/Introductions.php:208 msgid "No introductions." msgstr "Chan eil cur an aithne ann." -#: src/Module/Notifications/Introductions.php:223 -#: src/Module/Notifications/Notifications.php:141 +#: src/Module/Notifications/Introductions.php:209 +#: src/Module/Notifications/Notifications.php:127 #, php-format msgid "No more %s notifications." msgstr "Chan eil brath %s ann tuilleadh." -#: src/Module/Notifications/Notification.php:135 +#: src/Module/Notifications/Notification.php:121 msgid "You must be logged in to show this page." msgstr "Feumaidh tu clàradh a-steach mus urrainn dhut an duilleag seo a shealltainn." -#: src/Module/Notifications/Notifications.php:66 +#: src/Module/Notifications/Notifications.php:52 msgid "Network Notifications" msgstr "Brathan lìonraidh" -#: src/Module/Notifications/Notifications.php:72 +#: src/Module/Notifications/Notifications.php:58 msgid "System Notifications" msgstr "Brathan an t-siostaim" -#: src/Module/Notifications/Notifications.php:78 +#: src/Module/Notifications/Notifications.php:64 msgid "Personal Notifications" msgstr "Brathan pearsanta" -#: src/Module/Notifications/Notifications.php:84 +#: src/Module/Notifications/Notifications.php:70 msgid "Home Notifications" msgstr "Brathan na dachaighe" -#: src/Module/Notifications/Notifications.php:146 +#: src/Module/Notifications/Notifications.php:132 msgid "Show unread" msgstr "Seall an fheadhainn gun leughadh" -#: src/Module/Notifications/Ping.php:220 +#: src/Module/Notifications/Ping.php:206 msgid "{0} requested registration" msgstr "Dh’iarr {0} clàradh" -#: src/Module/Notifications/Ping.php:229 +#: src/Module/Notifications/Ping.php:215 #, php-format msgid "{0} and %d others requested registration" msgstr "Dh’iarr {0} ’s %d eile clàradh" -#: src/Module/OAuth/Acknowledge.php:51 +#: src/Module/OAuth/Acknowledge.php:37 msgid "Authorize application connection" msgstr "Ùghdarraich ceangal aplacaide" -#: src/Module/OAuth/Acknowledge.php:53 +#: src/Module/OAuth/Acknowledge.php:39 msgid "" "Do you want to authorize this application to access your posts and contacts," " and/or create new posts for you?" msgstr "A bheil thu airson cead a thoirt dhan aplacaid seo airson na postaichean ’s an luchd-aithne agad inntrigeadh agus/no postaichean ùra a chruthachadh às do leth?" -#: src/Module/OAuth/Authorize.php:54 +#: src/Module/OAuth/Authorize.php:40 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:75 +#: src/Module/OAuth/Authorize.php:45 src/Module/OAuth/Token.php:61 msgid "Incomplete request data" msgstr "Dàta iarrtais neo-choileanta" -#: src/Module/OAuth/Authorize.php:106 +#: src/Module/OAuth/Authorize.php:92 #, php-format msgid "" "Please copy the following authentication code into your application and " "close this window: %s" msgstr "Cuir lethbhreac dhen chòd dearbhaidh seo san aplacaid agad is dùin an uinneag seo: %s" -#: src/Module/OAuth/Token.php:80 +#: src/Module/OAuth/Token.php:66 msgid "Invalid data or unknown client" msgstr "Dàta mì-dhligheach no cliant nach aithne dhuinn" -#: src/Module/OAuth/Token.php:105 +#: src/Module/OAuth/Token.php:91 msgid "Unsupported or missing grant type" msgstr "Seòrsa ceadachaidh gun taic ris no a dhìth" -#: src/Module/OStatus/Repair.php:83 -msgid "Resubscribing to OStatus contacts" -msgstr "A’ fo-sgrìobhadh a-rithist air luchd-aithne OStatus" - -#: src/Module/OStatus/Repair.php:84 src/Module/OStatus/Subscribe.php:160 -msgid "Keep this window open until done." -msgstr "Cùm an uinneag seo fosgailte gus am bi e deiseil." - -#: src/Module/OStatus/Repair.php:85 -msgid "✔ Done" -msgstr "✔ Deiseil" - -#: src/Module/OStatus/Repair.php:86 -msgid "No OStatus contacts to resubscribe to." -msgstr "Chan eil neach-aithne OStatus ann airson fo-sgrìobhadh air a-rithist." - -#: src/Module/OStatus/Subscribe.php:72 +#: src/Module/OStatus/Subscribe.php:58 msgid "Subscribing to contacts" msgstr "Fo-sgrìobhadh air luchd-aithne" -#: src/Module/OStatus/Subscribe.php:81 +#: src/Module/OStatus/Subscribe.php:67 msgid "No contact provided." msgstr "Cha deach neach-aithne a thoirt seachad." -#: src/Module/OStatus/Subscribe.php:87 +#: src/Module/OStatus/Subscribe.php:73 msgid "Couldn't fetch information for contact." msgstr "Cha d’ fhuair sinn grèim air an fhiosrachadh conaltraidh." -#: src/Module/OStatus/Subscribe.php:98 +#: src/Module/OStatus/Subscribe.php:84 msgid "Couldn't fetch friends for contact." msgstr "Cha d’ fhuair sinn grèim air caraidean a chùm conaltraidh." -#: src/Module/OStatus/Subscribe.php:104 src/Module/OStatus/Subscribe.php:115 +#: src/Module/OStatus/Subscribe.php:90 src/Module/OStatus/Subscribe.php:101 msgid "Couldn't fetch following contacts." msgstr "Cha d’ fhuair sinn grèim air an luchd-aithne a leanas." -#: src/Module/OStatus/Subscribe.php:110 +#: src/Module/OStatus/Subscribe.php:96 msgid "Couldn't fetch remote profile." msgstr "Cha d’ fhuair sinn grèim air a’ phròifil chèin." -#: src/Module/OStatus/Subscribe.php:120 +#: src/Module/OStatus/Subscribe.php:106 msgid "Unsupported network" msgstr "Lìonra ris nach eil taic" -#: src/Module/OStatus/Subscribe.php:136 +#: src/Module/OStatus/Subscribe.php:122 msgid "Done" msgstr "Deiseil" -#: src/Module/OStatus/Subscribe.php:150 +#: src/Module/OStatus/Subscribe.php:136 msgid "success" msgstr "chaidh leis" -#: src/Module/OStatus/Subscribe.php:152 +#: src/Module/OStatus/Subscribe.php:138 msgid "failed" msgstr "dh’fhàillig leis" -#: src/Module/OStatus/Subscribe.php:155 +#: src/Module/OStatus/Subscribe.php:141 msgid "ignored" msgstr "chaidh a leigeil seachad" -#: src/Module/Photo.php:122 +#: src/Module/OStatus/Subscribe.php:146 +msgid "Keep this window open until done." +msgstr "Cùm an uinneag seo fosgailte gus am bi e deiseil." + +#: src/Module/Photo.php:108 msgid "The Photo is not available." msgstr "Chan eil an dealbh ri fhaighinn." -#: src/Module/Photo.php:147 +#: src/Module/Photo.php:133 #, 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:188 +#: src/Module/Photo.php:174 #, 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:190 +#: src/Module/Photo.php:176 #, php-format msgid "Invalid photo with id %s." msgstr "Dealbh mì-dhligheach air a bheil an id %s." -#: src/Module/Post/Edit.php:82 src/Module/Post/Edit.php:96 +#: src/Module/Post/Edit.php:68 src/Module/Post/Edit.php:82 msgid "Post not found." msgstr "Cha deach am post a lorg." -#: src/Module/Post/Edit.php:102 +#: src/Module/Post/Edit.php:88 msgid "Edit post" msgstr "Deasaich am post" -#: src/Module/Post/Edit.php:136 +#: src/Module/Post/Edit.php:122 msgid "web link" msgstr "ceangal-lìn" -#: src/Module/Post/Edit.php:137 +#: src/Module/Post/Edit.php:123 msgid "Insert video link" msgstr "Cuir a-steach ceangal video" -#: src/Module/Post/Edit.php:138 +#: src/Module/Post/Edit.php:124 msgid "video link" msgstr "ceangal video" -#: src/Module/Post/Edit.php:139 +#: src/Module/Post/Edit.php:125 msgid "Insert audio link" msgstr "Cuir a-steach ceangal fuaime" -#: src/Module/Post/Edit.php:140 +#: src/Module/Post/Edit.php:126 msgid "audio link" msgstr "ceangal fuaime" -#: src/Module/Post/Tag/Remove.php:106 +#: src/Module/Post/Tag/Remove.php:92 msgid "Remove Item Tag" msgstr "Thoir air falbh taga an nì" -#: src/Module/Post/Tag/Remove.php:107 +#: src/Module/Post/Tag/Remove.php:93 msgid "Select a tag to remove: " msgstr "Tagh taga gus a thoirt air falbh: " -#: src/Module/Post/Tag/Remove.php:108 -#: src/Module/Settings/TwoFactor/Trusted.php:147 +#: src/Module/Post/Tag/Remove.php:94 +#: src/Module/Settings/TwoFactor/Trusted.php:133 msgid "Remove" msgstr "Thoir air falbh" -#: src/Module/Privacy/PermissionTooltip.php:71 +#: src/Module/Privacy/PermissionTooltip.php:57 #, php-format msgid "Wrong type \"%s\", expected one of: %s" msgstr "Seòrsa “%s” ceàrr, an dùil air fear dhen fheadhainn seo: %s" -#: src/Module/Privacy/PermissionTooltip.php:101 +#: src/Module/Privacy/PermissionTooltip.php:87 msgid "Model not found" msgstr "Cha deach am modail a lorg" -#: src/Module/Privacy/PermissionTooltip.php:118 +#: src/Module/Privacy/PermissionTooltip.php:104 msgid "Unlisted" msgstr "Falaichte o liostaichean" -#: src/Module/Privacy/PermissionTooltip.php:124 +#: src/Module/Privacy/PermissionTooltip.php:110 msgid "Remote privacy information not available." msgstr "Chan eil fiosrachadh cèin na prìobhaideachd ri làimh." -#: src/Module/Privacy/PermissionTooltip.php:131 +#: src/Module/Privacy/PermissionTooltip.php:117 msgid "Visible to:" msgstr "Ri fhaicinn do:" -#: src/Module/Privacy/PermissionTooltip.php:133 +#: src/Module/Privacy/PermissionTooltip.php:119 msgid "CC:" msgstr "" -#: src/Module/Privacy/PermissionTooltip.php:134 +#: src/Module/Privacy/PermissionTooltip.php:120 msgid "BCC:" msgstr "" -#: src/Module/Privacy/PermissionTooltip.php:135 +#: src/Module/Privacy/PermissionTooltip.php:121 msgid "Audience:" msgstr "" -#: src/Module/Privacy/PermissionTooltip.php:136 +#: src/Module/Privacy/PermissionTooltip.php:122 msgid "Attributed To:" msgstr "" -#: src/Module/Privacy/PermissionTooltip.php:234 +#: src/Module/Privacy/PermissionTooltip.php:220 #, php-format msgid "Collection (%s)" msgstr "Cruinneachadh (%s)" -#: src/Module/Privacy/PermissionTooltip.php:238 +#: src/Module/Privacy/PermissionTooltip.php:224 #, php-format msgid "Followers (%s)" msgstr "Luchd-leantainn (%s)" -#: src/Module/Privacy/PermissionTooltip.php:255 +#: src/Module/Privacy/PermissionTooltip.php:241 #, php-format msgid "%d more" msgstr "%d eile" -#: src/Module/Profile/Contacts.php:159 +#: src/Module/Profile/Contacts.php:145 msgid "No contacts." msgstr "Chan eil neach-aithne ann." -#: src/Module/Profile/Conversations.php:106 -#: src/Module/Profile/Conversations.php:109 src/Module/Profile/Profile.php:353 -#: src/Module/Profile/Profile.php:356 src/Protocol/Feed.php:1114 -#: src/Protocol/OStatus.php:1011 -#, php-format -msgid "%s's timeline" -msgstr "An loidhne-ama aig %s" - -#: src/Module/Profile/Conversations.php:107 src/Module/Profile/Profile.php:354 -#: src/Protocol/Feed.php:1118 src/Protocol/OStatus.php:1016 +#: src/Module/Profile/Conversations.php:92 src/Module/Profile/Profile.php:339 +#: src/Protocol/Feed.php:1097 #, php-format msgid "%s's posts" msgstr "Na postaichean aig %s" -#: src/Module/Profile/Conversations.php:108 src/Module/Profile/Profile.php:355 -#: src/Protocol/Feed.php:1121 src/Protocol/OStatus.php:1020 +#: src/Module/Profile/Conversations.php:93 src/Module/Profile/Profile.php:340 +#: src/Protocol/Feed.php:1100 #, 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:192 -#: src/Module/Settings/Profile/Photo/Index.php:58 +#: src/Module/Profile/Conversations.php:94 src/Module/Profile/Profile.php:341 +#: src/Protocol/Feed.php:1093 +#, php-format +msgid "%s's timeline" +msgstr "An loidhne-ama aig %s" + +#: src/Module/Profile/Photos.php:150 src/Module/Profile/Photos.php:153 +#: src/Module/Profile/Photos.php:178 +#: src/Module/Settings/Profile/Photo/Index.php:44 #, php-format msgid "Image exceeds size limit of %s" msgstr "Tha an dealbh nas motha na tha ceadaichte dhe %s" -#: src/Module/Profile/Photos.php:170 +#: src/Module/Profile/Photos.php:156 msgid "Image upload didn't complete, please try again" msgstr "Cha deach luchdadh suas an deilbh a choileanadh, feuch ris a-rithist" -#: src/Module/Profile/Photos.php:173 +#: src/Module/Profile/Photos.php:159 msgid "Image file is missing" msgstr "Tha faidhle an deilbh a dhìth" -#: src/Module/Profile/Photos.php:178 +#: src/Module/Profile/Photos.php:164 msgid "" "Server can't accept new file upload at this time, please contact your " "administrator" msgstr "Cha ghabh am frithealaiche ri luchdadh suas deilbh ùir aig an àm seo, cuir fios gun rianaire agad" -#: src/Module/Profile/Photos.php:200 +#: src/Module/Profile/Photos.php:186 msgid "Image file is empty." msgstr "Tha faidhle an deilbh falamh." -#: src/Module/Profile/Photos.php:352 +#: src/Module/Profile/Photos.php:338 msgid "View Album" msgstr "Seall an t-albam" -#: src/Module/Profile/Profile.php:114 src/Module/Profile/Restricted.php:50 +#: src/Module/Profile/Profile.php:100 src/Module/Profile/Restricted.php:36 msgid "Profile not found." msgstr "Cha deach a’ phròifil a lorg." -#: src/Module/Profile/Profile.php:160 +#: src/Module/Profile/Profile.php:146 #, php-format msgid "" "You're currently viewing your profile as %s Cancel" msgstr "Tha thu a’ sealltainn air a’ phròifil agad mar %s Sguir dheth" -#: src/Module/Profile/Profile.php:169 +#: src/Module/Profile/Profile.php:155 msgid "Full Name:" msgstr "An t-ainm slàn:" -#: src/Module/Profile/Profile.php:174 +#: src/Module/Profile/Profile.php:160 msgid "Member since:" msgstr "Ball o chionn:" -#: src/Module/Profile/Profile.php:180 +#: src/Module/Profile/Profile.php:166 msgid "j F, Y" msgstr "j F Y" -#: src/Module/Profile/Profile.php:181 +#: src/Module/Profile/Profile.php:167 msgid "j F" msgstr "j F" -#: src/Module/Profile/Profile.php:189 src/Util/Temporal.php:168 +#: src/Module/Profile/Profile.php:175 src/Util/Temporal.php:154 msgid "Birthday:" msgstr "Co-là breith:" -#: src/Module/Profile/Profile.php:192 -#: src/Module/Settings/Profile/Index.php:296 src/Util/Temporal.php:170 +#: src/Module/Profile/Profile.php:178 +#: src/Module/Settings/Profile/Index.php:282 src/Util/Temporal.php:156 msgid "Age: " msgstr "Aois: " -#: src/Module/Profile/Profile.php:192 -#: src/Module/Settings/Profile/Index.php:296 src/Util/Temporal.php:170 +#: src/Module/Profile/Profile.php:178 +#: src/Module/Settings/Profile/Index.php:282 src/Util/Temporal.php:156 #, php-format msgid "%d year old" msgid_plural "%d years old" @@ -9337,46 +9318,46 @@ msgstr[1] "%d bhliadhna a dh’aois" msgstr[2] "%d bliadhnaichean a dh’aois" msgstr[3] "%d bliadhna a dh’aois" -#: src/Module/Profile/Profile.php:197 -#: src/Module/Settings/Profile/Index.php:289 +#: src/Module/Profile/Profile.php:183 +#: src/Module/Settings/Profile/Index.php:275 msgid "Description:" msgstr "Tuairisgeul:" -#: src/Module/Profile/Profile.php:263 +#: src/Module/Profile/Profile.php:249 msgid "Groups:" msgstr "Buidhnean:" -#: src/Module/Profile/Profile.php:275 +#: src/Module/Profile/Profile.php:261 msgid "View profile as:" msgstr "Seall a’ phròifil mar:" -#: src/Module/Profile/Profile.php:292 +#: src/Module/Profile/Profile.php:278 msgid "View as" msgstr "Seall mar" -#: src/Module/Profile/RemoteFollow.php:82 +#: src/Module/Profile/RemoteFollow.php:68 msgid "Profile unavailable." msgstr "Chan eil a’ phròifil ri fhaighinn." -#: src/Module/Profile/RemoteFollow.php:88 +#: src/Module/Profile/RemoteFollow.php:74 msgid "Invalid locator" msgstr "Lorgaire mì-dhligheach" -#: src/Module/Profile/RemoteFollow.php:95 +#: src/Module/Profile/RemoteFollow.php:81 msgid "The provided profile link doesn't seem to be valid" msgstr "Chan eil coltas dligheach air ceangal na pròifil a chaidh a sholar" -#: src/Module/Profile/RemoteFollow.php:100 +#: src/Module/Profile/RemoteFollow.php:86 msgid "" "Remote subscription can't be done for your network. Please subscribe " "directly on your system." msgstr "" -#: src/Module/Profile/RemoteFollow.php:128 +#: src/Module/Profile/RemoteFollow.php:114 msgid "Friend/Connection Request" msgstr "" -#: src/Module/Profile/RemoteFollow.php:129 +#: src/Module/Profile/RemoteFollow.php:115 #, php-format msgid "" "Enter your Webfinger address (user@domain.tld) or profile URL here. If this " @@ -9384,579 +9365,579 @@ msgid "" " or %s directly on your system." msgstr "" -#: src/Module/Profile/RemoteFollow.php:130 +#: src/Module/Profile/RemoteFollow.php:116 #, php-format msgid "" "If you are not yet a member of the free social web, follow " "this link to find a public Friendica node and join us today." msgstr "" -#: src/Module/Profile/RemoteFollow.php:131 +#: src/Module/Profile/RemoteFollow.php:117 msgid "Your Webfinger address or profile URL:" msgstr "" -#: src/Module/Profile/Restricted.php:59 +#: src/Module/Profile/Restricted.php:45 msgid "Restricted profile" msgstr "" -#: src/Module/Profile/Restricted.php:60 +#: src/Module/Profile/Restricted.php:46 msgid "" "This profile has been restricted which prevents access to their public " "content from anonymous visitors." msgstr "" -#: src/Module/Profile/Schedule.php:83 +#: src/Module/Profile/Schedule.php:69 msgid "Scheduled" msgstr "" -#: src/Module/Profile/Schedule.php:84 +#: src/Module/Profile/Schedule.php:70 msgid "Content" msgstr "" -#: src/Module/Profile/Schedule.php:85 +#: src/Module/Profile/Schedule.php:71 msgid "Remove post" msgstr "" -#: src/Module/Register.php:91 +#: src/Module/Register.php:77 msgid "Only parent users can create additional accounts." msgstr "" -#: src/Module/Register.php:106 src/Module/User/Import.php:112 +#: src/Module/Register.php:92 src/Module/User/Import.php:98 msgid "" "This site has exceeded the number of allowed daily account registrations. " "Please try again tomorrow." msgstr "Chlàradh na tha ceadaichte de chunntasan ùra air an làrach seo an-diugh. Feuch ris a-rithist a-màireach." -#: src/Module/Register.php:123 +#: src/Module/Register.php:109 msgid "" "You may (optionally) fill in this form via OpenID by supplying your OpenID " "and clicking \"Register\"." msgstr "" -#: src/Module/Register.php:124 +#: src/Module/Register.php:110 msgid "" "If you are not familiar with OpenID, please leave that field blank and fill " "in the rest of the items." msgstr "" -#: src/Module/Register.php:125 +#: src/Module/Register.php:111 msgid "Your OpenID (optional): " msgstr "" -#: src/Module/Register.php:134 +#: src/Module/Register.php:120 msgid "Include your profile in member directory?" msgstr "" -#: src/Module/Register.php:155 +#: src/Module/Register.php:141 msgid "Note for the admin" msgstr "" -#: src/Module/Register.php:155 +#: src/Module/Register.php:141 msgid "Leave a message for the admin, why you want to join this node" msgstr "" -#: src/Module/Register.php:156 +#: src/Module/Register.php:142 msgid "Membership on this site is by invitation only." msgstr "" -#: src/Module/Register.php:157 +#: src/Module/Register.php:143 msgid "Your invitation code: " msgstr "" -#: src/Module/Register.php:165 +#: src/Module/Register.php:151 msgid "Your Display Name (as you would like it to be displayed on this system" msgstr "" -#: src/Module/Register.php:166 +#: src/Module/Register.php:152 msgid "" "Your Email Address: (Initial information will be send there, so this has to " "be an existing address.)" msgstr "" -#: src/Module/Register.php:167 +#: src/Module/Register.php:153 msgid "Please repeat your e-mail address:" msgstr "" -#: src/Module/Register.php:169 src/Module/Security/PasswordTooLong.php:100 -#: src/Module/Settings/Account.php:569 +#: src/Module/Register.php:155 src/Module/Security/PasswordTooLong.php:86 +#: src/Module/Settings/Account.php:555 msgid "New Password:" msgstr "" -#: src/Module/Register.php:169 +#: src/Module/Register.php:155 msgid "Leave empty for an auto generated password." msgstr "" -#: src/Module/Register.php:170 src/Module/Security/PasswordTooLong.php:101 -#: src/Module/Settings/Account.php:570 +#: src/Module/Register.php:156 src/Module/Security/PasswordTooLong.php:87 +#: src/Module/Settings/Account.php:556 msgid "Confirm:" msgstr "" -#: src/Module/Register.php:171 +#: src/Module/Register.php:157 #, php-format msgid "" "Choose a profile nickname. This must begin with a text character. Your " "profile address on this site will then be \"nickname@%s\"." msgstr "" -#: src/Module/Register.php:172 +#: src/Module/Register.php:158 msgid "Choose a nickname: " msgstr "" -#: src/Module/Register.php:180 src/Module/User/Import.php:118 +#: src/Module/Register.php:166 src/Module/User/Import.php:104 msgid "Import" msgstr "Ion-phortaich" -#: src/Module/Register.php:181 +#: src/Module/Register.php:167 msgid "Import your profile to this friendica instance" msgstr "" -#: src/Module/Register.php:188 +#: src/Module/Register.php:174 msgid "Note: This node explicitly contains adult content" msgstr "" -#: src/Module/Register.php:190 src/Module/Settings/Delegation.php:181 +#: src/Module/Register.php:176 src/Module/Settings/Delegation.php:167 msgid "Parent Password:" msgstr "" -#: src/Module/Register.php:190 src/Module/Settings/Delegation.php:181 +#: src/Module/Register.php:176 src/Module/Settings/Delegation.php:167 msgid "" "Please enter the password of the parent account to legitimize your request." msgstr "" -#: src/Module/Register.php:219 +#: src/Module/Register.php:205 msgid "Password doesn't match." msgstr "" -#: src/Module/Register.php:225 +#: src/Module/Register.php:211 msgid "Please enter your password." msgstr "" -#: src/Module/Register.php:267 +#: src/Module/Register.php:253 msgid "You have entered too much information." msgstr "" -#: src/Module/Register.php:290 +#: src/Module/Register.php:276 msgid "Please enter the identical mail address in the second field." msgstr "" -#: src/Module/Register.php:298 +#: src/Module/Register.php:284 msgid "Nickname cannot start with a digit." msgstr "" -#: src/Module/Register.php:300 +#: src/Module/Register.php:286 msgid "Nickname can only contain US-ASCII characters." msgstr "" -#: src/Module/Register.php:329 +#: src/Module/Register.php:315 msgid "The additional account was created." msgstr "" -#: src/Module/Register.php:354 +#: src/Module/Register.php:340 msgid "" "Registration successful. Please check your email for further instructions." msgstr "" -#: src/Module/Register.php:361 +#: src/Module/Register.php:347 #, php-format msgid "" "Failed to send email message. Here your accout details:
login: %s
" "password: %s

You can change your password after login." msgstr "" -#: src/Module/Register.php:367 +#: src/Module/Register.php:353 msgid "Registration successful." msgstr "" -#: src/Module/Register.php:376 src/Module/Register.php:383 -#: src/Module/Register.php:393 +#: src/Module/Register.php:362 src/Module/Register.php:369 +#: src/Module/Register.php:379 msgid "Your registration can not be processed." msgstr "" -#: src/Module/Register.php:382 +#: src/Module/Register.php:368 msgid "You have to leave a request note for the admin." msgstr "" -#: src/Module/Register.php:392 +#: src/Module/Register.php:378 msgid "An internal error occured." msgstr "" -#: src/Module/Register.php:414 +#: src/Module/Register.php:400 msgid "Your registration is pending approval by the site owner." msgstr "Tha an clàradh agad a’ feitheamh air aontachadh o shealbhadair na làraich." -#: src/Module/Search/Acl.php:78 +#: src/Module/Search/Acl.php:64 msgid "You must be logged in to use this module." msgstr "Feumaidh tu clàradh a-steach mus urrainn dhut am mòideal seo a chleachdadh." -#: src/Module/Search/Index.php:69 +#: src/Module/Search/Index.php:55 msgid "Only logged in users are permitted to perform a search." msgstr "" -#: src/Module/Search/Index.php:89 +#: src/Module/Search/Index.php:75 msgid "Only one search per minute is permitted for not logged in users." msgstr "" -#: src/Module/Search/Index.php:205 +#: src/Module/Search/Index.php:191 #, php-format msgid "Items tagged with: %s" msgstr "" -#: src/Module/Search/Saved.php:63 +#: src/Module/Search/Saved.php:49 msgid "Search term was not saved." msgstr "" -#: src/Module/Search/Saved.php:66 +#: src/Module/Search/Saved.php:52 msgid "Search term already saved." msgstr "" -#: src/Module/Search/Saved.php:72 +#: src/Module/Search/Saved.php:58 msgid "Search term was not removed." msgstr "" -#: src/Module/Security/Login.php:127 +#: src/Module/Security/Login.php:113 msgid "Create a New Account" msgstr "" -#: src/Module/Security/Login.php:146 +#: src/Module/Security/Login.php:132 msgid "Your OpenID: " msgstr "" -#: src/Module/Security/Login.php:149 +#: src/Module/Security/Login.php:135 msgid "" "Please enter your username and password to add the OpenID to your existing " "account." msgstr "" -#: src/Module/Security/Login.php:151 +#: src/Module/Security/Login.php:137 msgid "Or login using OpenID: " msgstr "" -#: src/Module/Security/Login.php:165 +#: src/Module/Security/Login.php:151 msgid "Password: " msgstr "" -#: src/Module/Security/Login.php:166 +#: src/Module/Security/Login.php:152 msgid "Remember me" msgstr "" -#: src/Module/Security/Login.php:175 +#: src/Module/Security/Login.php:161 msgid "Forgot your password?" msgstr "" -#: src/Module/Security/Login.php:178 +#: src/Module/Security/Login.php:164 msgid "Website Terms of Service" msgstr "" -#: src/Module/Security/Login.php:179 +#: src/Module/Security/Login.php:165 msgid "terms of service" msgstr "" -#: src/Module/Security/Login.php:181 +#: src/Module/Security/Login.php:167 msgid "Website Privacy Policy" msgstr "" -#: src/Module/Security/Login.php:182 +#: src/Module/Security/Login.php:168 msgid "privacy policy" msgstr "" -#: src/Module/Security/Logout.php:89 -#: src/Module/Security/TwoFactor/SignOut.php:78 -#: src/Module/Security/TwoFactor/SignOut.php:86 -#: src/Module/Security/TwoFactor/SignOut.php:108 -#: src/Module/Security/TwoFactor/SignOut.php:115 +#: src/Module/Security/Logout.php:75 +#: src/Module/Security/TwoFactor/SignOut.php:64 +#: src/Module/Security/TwoFactor/SignOut.php:72 +#: src/Module/Security/TwoFactor/SignOut.php:94 +#: src/Module/Security/TwoFactor/SignOut.php:101 msgid "Logged out." msgstr "" -#: src/Module/Security/OpenID.php:54 +#: src/Module/Security/OpenID.php:40 msgid "OpenID protocol error. No ID returned" msgstr "" -#: src/Module/Security/OpenID.php:90 +#: src/Module/Security/OpenID.php:76 msgid "" "Account not found. Please login to your existing account to add the OpenID " "to it." msgstr "" -#: src/Module/Security/OpenID.php:92 +#: src/Module/Security/OpenID.php:78 msgid "" "Account not found. Please register a new account or login to your existing " "account to add the OpenID to it." msgstr "" -#: src/Module/Security/PasswordTooLong.php:57 -#: src/Module/Settings/Account.php:67 +#: src/Module/Security/PasswordTooLong.php:43 +#: src/Module/Settings/Account.php:53 msgid "Passwords do not match." msgstr "" -#: src/Module/Security/PasswordTooLong.php:64 +#: src/Module/Security/PasswordTooLong.php:50 msgid "Password does not need changing." msgstr "" -#: src/Module/Security/PasswordTooLong.php:77 -#: src/Module/Settings/Account.php:81 +#: src/Module/Security/PasswordTooLong.php:63 +#: src/Module/Settings/Account.php:67 msgid "Password unchanged." msgstr "" -#: src/Module/Security/PasswordTooLong.php:91 +#: src/Module/Security/PasswordTooLong.php:77 msgid "Password Too Long" msgstr "" -#: src/Module/Security/PasswordTooLong.php:92 +#: src/Module/Security/PasswordTooLong.php:78 msgid "" "Since version 2022.09, we've realized that any password longer than 72 " "characters is truncated during hashing. To prevent any confusion about this " "behavior, please update your password to be fewer or equal to 72 characters." msgstr "" -#: src/Module/Security/PasswordTooLong.php:93 +#: src/Module/Security/PasswordTooLong.php:79 msgid "Update Password" msgstr "" -#: src/Module/Security/PasswordTooLong.php:99 -#: src/Module/Settings/Account.php:571 +#: src/Module/Security/PasswordTooLong.php:85 +#: src/Module/Settings/Account.php:557 msgid "Current Password:" msgstr "" -#: src/Module/Security/PasswordTooLong.php:99 -#: src/Module/Settings/Account.php:571 +#: src/Module/Security/PasswordTooLong.php:85 +#: src/Module/Settings/Account.php:557 msgid "Your current password to confirm the changes" msgstr "" -#: src/Module/Security/PasswordTooLong.php:100 -#: src/Module/Settings/Account.php:555 +#: src/Module/Security/PasswordTooLong.php:86 +#: src/Module/Settings/Account.php:541 msgid "" "Allowed characters are a-z, A-Z, 0-9 and special characters except white " "spaces and accentuated letters." msgstr "" -#: src/Module/Security/PasswordTooLong.php:100 -#: src/Module/Settings/Account.php:556 +#: src/Module/Security/PasswordTooLong.php:86 +#: src/Module/Settings/Account.php:542 msgid "Password length is limited to 72 characters." msgstr "" -#: src/Module/Security/TwoFactor/Recovery.php:74 +#: src/Module/Security/TwoFactor/Recovery.php:60 #, php-format msgid "Remaining recovery codes: %d" msgstr "" -#: src/Module/Security/TwoFactor/Recovery.php:80 -#: src/Module/Security/TwoFactor/Verify.php:77 -#: src/Module/Settings/TwoFactor/Verify.php:98 +#: src/Module/Security/TwoFactor/Recovery.php:66 +#: src/Module/Security/TwoFactor/Verify.php:63 +#: src/Module/Settings/TwoFactor/Verify.php:84 msgid "Invalid code, please retry." msgstr "" -#: src/Module/Security/TwoFactor/Recovery.php:99 +#: src/Module/Security/TwoFactor/Recovery.php:85 msgid "Two-factor recovery" msgstr "" -#: src/Module/Security/TwoFactor/Recovery.php:100 +#: src/Module/Security/TwoFactor/Recovery.php:86 msgid "" "

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

" msgstr "" -#: src/Module/Security/TwoFactor/Recovery.php:101 +#: src/Module/Security/TwoFactor/Recovery.php:87 #, php-format msgid "Don’t have your phone? Enter a two-factor recovery code" msgstr "" -#: src/Module/Security/TwoFactor/Recovery.php:102 +#: src/Module/Security/TwoFactor/Recovery.php:88 msgid "Please enter a recovery code" msgstr "" -#: src/Module/Security/TwoFactor/Recovery.php:103 +#: src/Module/Security/TwoFactor/Recovery.php:89 msgid "Submit recovery code and complete login" msgstr "" -#: src/Module/Security/TwoFactor/SignOut.php:122 +#: src/Module/Security/TwoFactor/SignOut.php:108 msgid "Sign out of this browser?" msgstr "" -#: src/Module/Security/TwoFactor/SignOut.php:123 +#: src/Module/Security/TwoFactor/SignOut.php:109 msgid "" "

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

" msgstr "" -#: src/Module/Security/TwoFactor/SignOut.php:124 +#: src/Module/Security/TwoFactor/SignOut.php:110 msgid "Sign out" msgstr "" -#: src/Module/Security/TwoFactor/SignOut.php:126 +#: src/Module/Security/TwoFactor/SignOut.php:112 msgid "Trust and sign out" msgstr "" -#: src/Module/Security/TwoFactor/Trust.php:96 +#: src/Module/Security/TwoFactor/Trust.php:82 msgid "Couldn't save browser to Cookie." msgstr "" -#: src/Module/Security/TwoFactor/Trust.php:141 +#: src/Module/Security/TwoFactor/Trust.php:127 msgid "Trust this browser?" msgstr "" -#: src/Module/Security/TwoFactor/Trust.php:142 +#: src/Module/Security/TwoFactor/Trust.php:128 msgid "" "

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

" msgstr "" -#: src/Module/Security/TwoFactor/Trust.php:143 +#: src/Module/Security/TwoFactor/Trust.php:129 msgid "Not now" msgstr "" -#: src/Module/Security/TwoFactor/Trust.php:144 +#: src/Module/Security/TwoFactor/Trust.php:130 msgid "Don't trust" msgstr "" -#: src/Module/Security/TwoFactor/Trust.php:145 +#: src/Module/Security/TwoFactor/Trust.php:131 msgid "Trust" msgstr "" -#: src/Module/Security/TwoFactor/Verify.php:97 +#: src/Module/Security/TwoFactor/Verify.php:83 msgid "" "

Open the two-factor authentication app on your device to get an " "authentication code and verify your identity.

" msgstr "" -#: src/Module/Security/TwoFactor/Verify.php:100 +#: src/Module/Security/TwoFactor/Verify.php:86 #, php-format msgid "" "If you do not have access to your authentication code you can use a two-factor recovery code." msgstr "" -#: src/Module/Security/TwoFactor/Verify.php:101 -#: src/Module/Settings/TwoFactor/Verify.php:158 +#: src/Module/Security/TwoFactor/Verify.php:87 +#: src/Module/Settings/TwoFactor/Verify.php:144 msgid "Please enter a code from your authentication app" msgstr "" -#: src/Module/Security/TwoFactor/Verify.php:102 +#: src/Module/Security/TwoFactor/Verify.php:88 msgid "Verify code and complete login" msgstr "" -#: src/Module/Settings/Account.php:96 +#: src/Module/Settings/Account.php:82 msgid "Please use a shorter name." msgstr "" -#: src/Module/Settings/Account.php:99 +#: src/Module/Settings/Account.php:85 msgid "Name too short." msgstr "" -#: src/Module/Settings/Account.php:108 +#: src/Module/Settings/Account.php:94 msgid "Wrong Password." msgstr "" -#: src/Module/Settings/Account.php:113 +#: src/Module/Settings/Account.php:99 msgid "Invalid email." msgstr "" -#: src/Module/Settings/Account.php:117 +#: src/Module/Settings/Account.php:103 msgid "Cannot change to that email." msgstr "" -#: src/Module/Settings/Account.php:146 src/Module/Settings/Account.php:195 -#: src/Module/Settings/Account.php:216 src/Module/Settings/Account.php:300 -#: src/Module/Settings/Account.php:329 +#: src/Module/Settings/Account.php:132 src/Module/Settings/Account.php:181 +#: src/Module/Settings/Account.php:202 src/Module/Settings/Account.php:286 +#: src/Module/Settings/Account.php:315 msgid "Settings were not updated." msgstr "" -#: src/Module/Settings/Account.php:347 +#: src/Module/Settings/Account.php:333 msgid "Contact CSV file upload error" msgstr "" -#: src/Module/Settings/Account.php:366 +#: src/Module/Settings/Account.php:352 msgid "Importing Contacts done" msgstr "" -#: src/Module/Settings/Account.php:379 +#: src/Module/Settings/Account.php:365 msgid "Relocate message has been send to your contacts" msgstr "Chaidh teachdaireachd mun imrich a chur dhan luchd-aithne agad" -#: src/Module/Settings/Account.php:396 +#: src/Module/Settings/Account.php:382 msgid "Unable to find your profile. Please contact your admin." msgstr "" -#: src/Module/Settings/Account.php:438 +#: src/Module/Settings/Account.php:424 msgid "" "Account for a service that automatically shares content based on user " "defined channels." msgstr "" -#: src/Module/Settings/Account.php:448 +#: src/Module/Settings/Account.php:434 msgid "Personal Page Subtypes" msgstr "" -#: src/Module/Settings/Account.php:449 +#: src/Module/Settings/Account.php:435 msgid "Community Group Subtypes" msgstr "" -#: src/Module/Settings/Account.php:460 +#: src/Module/Settings/Account.php:446 msgid "Account for a personal profile." msgstr "" -#: src/Module/Settings/Account.php:467 +#: src/Module/Settings/Account.php:453 msgid "" "Account for an organisation that automatically approves contact requests as " "\"Followers\"." msgstr "" -#: src/Module/Settings/Account.php:474 +#: src/Module/Settings/Account.php:460 msgid "" "Account for a news reflector that automatically approves contact requests as" " \"Followers\"." msgstr "" -#: src/Module/Settings/Account.php:481 +#: src/Module/Settings/Account.php:467 msgid "Account for community discussions." msgstr "" -#: src/Module/Settings/Account.php:489 +#: src/Module/Settings/Account.php:475 msgid "" "Account for a regular personal profile that requires manual approval of " "\"Friends\" and \"Followers\"." msgstr "Cunntas do phròifil phearsanta àbhaisteach a dh’iarras aontachadh a làimh air “Caraidean” is “Luchd-leantainn”." -#: src/Module/Settings/Account.php:496 +#: src/Module/Settings/Account.php:482 msgid "" "Account for a public profile that automatically approves contact requests as" " \"Followers\"." msgstr "" -#: src/Module/Settings/Account.php:503 +#: src/Module/Settings/Account.php:489 msgid "Automatically approves all contact requests." msgstr "" -#: src/Module/Settings/Account.php:510 +#: src/Module/Settings/Account.php:496 msgid "Contact requests have to be manually approved." msgstr "" -#: src/Module/Settings/Account.php:517 +#: src/Module/Settings/Account.php:503 msgid "" "Account for a popular profile that automatically approves contact requests " "as \"Friends\"." msgstr "" -#: src/Module/Settings/Account.php:522 +#: src/Module/Settings/Account.php:508 msgid "Private Group [Experimental]" msgstr "" -#: src/Module/Settings/Account.php:524 +#: src/Module/Settings/Account.php:510 msgid "Requires manual approval of contact requests." msgstr "Feumaidh tu aontachadh ri iarrtasan luchd-aithne a làimh." -#: src/Module/Settings/Account.php:533 +#: src/Module/Settings/Account.php:519 msgid "OpenID:" msgstr "" -#: src/Module/Settings/Account.php:533 +#: src/Module/Settings/Account.php:519 msgid "(Optional) Allow this OpenID to login to this account." msgstr "" -#: src/Module/Settings/Account.php:541 +#: src/Module/Settings/Account.php:527 msgid "Publish your profile in your local site directory?" msgstr "" -#: src/Module/Settings/Account.php:541 +#: src/Module/Settings/Account.php:527 #, php-format msgid "" "Your profile will be published in this node's local " @@ -9964,94 +9945,94 @@ msgid "" " system settings." msgstr "" -#: src/Module/Settings/Account.php:547 +#: src/Module/Settings/Account.php:533 #, php-format msgid "" "Your profile will also be published in the global friendica directories " "(e.g. %s)." msgstr "Thèid a’ phròifil agad fhoillseachadh sna h-eòlairean cho-naisgte aig Friendica cuideachd (m.e. %s)." -#: src/Module/Settings/Account.php:560 +#: src/Module/Settings/Account.php:546 msgid "Account Settings" msgstr "" -#: src/Module/Settings/Account.php:561 +#: src/Module/Settings/Account.php:547 #, php-format msgid "Your Identity Address is '%s' or '%s'." msgstr "" -#: src/Module/Settings/Account.php:568 +#: src/Module/Settings/Account.php:554 msgid "Password Settings" msgstr "" -#: src/Module/Settings/Account.php:570 +#: src/Module/Settings/Account.php:556 msgid "Leave password fields blank unless changing" msgstr "" -#: src/Module/Settings/Account.php:572 +#: src/Module/Settings/Account.php:558 msgid "Password:" msgstr "" -#: src/Module/Settings/Account.php:572 +#: src/Module/Settings/Account.php:558 msgid "Your current password to confirm the changes of the email address" msgstr "" -#: src/Module/Settings/Account.php:575 +#: src/Module/Settings/Account.php:561 msgid "Delete OpenID URL" msgstr "" -#: src/Module/Settings/Account.php:577 +#: src/Module/Settings/Account.php:563 msgid "Basic Settings" msgstr "" -#: src/Module/Settings/Account.php:578 -#: src/Module/Settings/Profile/Index.php:288 +#: src/Module/Settings/Account.php:564 +#: src/Module/Settings/Profile/Index.php:274 msgid "Display name:" msgstr "" -#: src/Module/Settings/Account.php:579 +#: src/Module/Settings/Account.php:565 msgid "Email Address:" msgstr "" -#: src/Module/Settings/Account.php:580 +#: src/Module/Settings/Account.php:566 msgid "Your Timezone:" msgstr "" -#: src/Module/Settings/Account.php:581 +#: src/Module/Settings/Account.php:567 msgid "Your Language:" msgstr "" -#: src/Module/Settings/Account.php:581 +#: src/Module/Settings/Account.php:567 msgid "" "Set the language we use to show you friendica interface and to send you " "emails" msgstr "" -#: src/Module/Settings/Account.php:582 +#: src/Module/Settings/Account.php:568 msgid "Default Post Location:" msgstr "" -#: src/Module/Settings/Account.php:583 +#: src/Module/Settings/Account.php:569 msgid "Use Browser Location:" msgstr "" -#: src/Module/Settings/Account.php:585 +#: src/Module/Settings/Account.php:571 msgid "Security and Privacy Settings" msgstr "" -#: src/Module/Settings/Account.php:587 +#: src/Module/Settings/Account.php:573 msgid "Maximum Friend Requests/Day:" msgstr "" -#: src/Module/Settings/Account.php:587 +#: src/Module/Settings/Account.php:573 msgid "(to prevent spam abuse)" msgstr "" -#: src/Module/Settings/Account.php:589 +#: src/Module/Settings/Account.php:575 msgid "Allow your profile to be searchable globally?" msgstr "An gabh a’ phròifil agad a lorg gu co-naisgte?" -#: src/Module/Settings/Account.php:589 +#: src/Module/Settings/Account.php:575 msgid "" "Activate this setting if you want others to easily find and follow you. Your" " profile will be searchable on remote systems. This setting also determines " @@ -10059,43 +10040,43 @@ msgid "" "indexed or not." msgstr "" -#: src/Module/Settings/Account.php:590 +#: src/Module/Settings/Account.php:576 msgid "Hide your contact/friend list from viewers of your profile?" msgstr "" -#: src/Module/Settings/Account.php:590 +#: src/Module/Settings/Account.php:576 msgid "" "A list of your contacts is displayed on your profile page. Activate this " "option to disable the display of your contact list." msgstr "" -#: src/Module/Settings/Account.php:591 +#: src/Module/Settings/Account.php:577 msgid "Hide your public content from anonymous viewers" msgstr "" -#: src/Module/Settings/Account.php:591 +#: src/Module/Settings/Account.php:577 msgid "" "Anonymous visitors will only see your basic profile details. Your public " "posts and replies will still be freely accessible on the remote servers of " "your followers and through relays." msgstr "" -#: src/Module/Settings/Account.php:592 +#: src/Module/Settings/Account.php:578 msgid "Make public posts unlisted" msgstr "" -#: src/Module/Settings/Account.php:592 +#: src/Module/Settings/Account.php:578 msgid "" "Your public posts will not appear on the community pages or in search " "results, nor be sent to relay servers. However they can still appear on " "public feeds on remote servers." msgstr "" -#: src/Module/Settings/Account.php:593 +#: src/Module/Settings/Account.php:579 msgid "Make all posted pictures accessible" msgstr "" -#: src/Module/Settings/Account.php:593 +#: src/Module/Settings/Account.php:579 msgid "" "This option makes every posted picture accessible via the direct link. This " "is a workaround for the problem that most other networks can't handle " @@ -10103,352 +10084,352 @@ msgid "" "public on your photo albums though." msgstr "" -#: src/Module/Settings/Account.php:594 +#: src/Module/Settings/Account.php:580 msgid "Allow friends to post to your profile page?" msgstr "" -#: src/Module/Settings/Account.php:594 +#: src/Module/Settings/Account.php:580 msgid "" "Your contacts may write posts on your profile wall. These posts will be " "distributed to your contacts" msgstr "’S urrainn dhan luchd-aithne agad postaichean a sgrìobhadh air balla do phròifile. Thèid na postaichean sin a sgaoileadh dhan luchd-aithne agad" -#: src/Module/Settings/Account.php:595 +#: src/Module/Settings/Account.php:581 msgid "Allow friends to tag your posts?" msgstr "" -#: src/Module/Settings/Account.php:595 +#: src/Module/Settings/Account.php:581 msgid "Your contacts can add additional tags to your posts." msgstr "" -#: src/Module/Settings/Account.php:596 +#: src/Module/Settings/Account.php:582 msgid "Default privacy circle for new contacts" msgstr "" -#: src/Module/Settings/Account.php:597 +#: src/Module/Settings/Account.php:583 msgid "Default privacy circle for new group contacts" msgstr "" -#: src/Module/Settings/Account.php:598 +#: src/Module/Settings/Account.php:584 msgid "Default Post Permissions" msgstr "" -#: src/Module/Settings/Account.php:602 +#: src/Module/Settings/Account.php:588 msgid "Expiration settings" msgstr "" -#: src/Module/Settings/Account.php:603 +#: src/Module/Settings/Account.php:589 msgid "Automatically expire posts after this many days:" msgstr "" -#: src/Module/Settings/Account.php:603 +#: src/Module/Settings/Account.php:589 msgid "If empty, posts will not expire. Expired posts will be deleted" msgstr "" -#: src/Module/Settings/Account.php:604 +#: src/Module/Settings/Account.php:590 msgid "Expire posts" msgstr "" -#: src/Module/Settings/Account.php:604 +#: src/Module/Settings/Account.php:590 msgid "When activated, posts and comments will be expired." msgstr "" -#: src/Module/Settings/Account.php:605 +#: src/Module/Settings/Account.php:591 msgid "Expire personal notes" msgstr "" -#: src/Module/Settings/Account.php:605 +#: src/Module/Settings/Account.php:591 msgid "" "When activated, the personal notes on your profile page will be expired." msgstr "" -#: src/Module/Settings/Account.php:606 +#: src/Module/Settings/Account.php:592 msgid "Expire starred posts" msgstr "Falbhaidh an ùine air postaichean le rionnag riutha" -#: src/Module/Settings/Account.php:606 +#: src/Module/Settings/Account.php:592 msgid "" "Starring posts keeps them from being expired. That behaviour is overwritten " "by this setting." msgstr "Nuair a bhios rionnag ri post, chan fhalbh an ùine orra. Sgrìobhaidh an roghainn seo thairis air a’ ghiùlan sin." -#: src/Module/Settings/Account.php:607 +#: src/Module/Settings/Account.php:593 msgid "Only expire posts by others" msgstr "" -#: src/Module/Settings/Account.php:607 +#: src/Module/Settings/Account.php:593 msgid "" "When activated, your own posts never expire. Then the settings above are " "only valid for posts you received." msgstr "" -#: src/Module/Settings/Account.php:610 +#: src/Module/Settings/Account.php:596 msgid "Notification Settings" msgstr "" -#: src/Module/Settings/Account.php:611 +#: src/Module/Settings/Account.php:597 msgid "Send a notification email when:" msgstr "" -#: src/Module/Settings/Account.php:612 +#: src/Module/Settings/Account.php:598 msgid "You receive an introduction" msgstr "Fhuair thu cur an aithne" -#: src/Module/Settings/Account.php:613 +#: src/Module/Settings/Account.php:599 msgid "Your introductions are confirmed" msgstr "Chaidh na cuir an aithne agad a dhearbhadh" -#: src/Module/Settings/Account.php:614 +#: src/Module/Settings/Account.php:600 msgid "Someone writes on your profile wall" msgstr "" -#: src/Module/Settings/Account.php:615 +#: src/Module/Settings/Account.php:601 msgid "Someone writes a followup comment" msgstr "" -#: src/Module/Settings/Account.php:616 +#: src/Module/Settings/Account.php:602 msgid "You receive a private message" msgstr "" -#: src/Module/Settings/Account.php:617 +#: src/Module/Settings/Account.php:603 msgid "You receive a friend suggestion" msgstr "" -#: src/Module/Settings/Account.php:618 +#: src/Module/Settings/Account.php:604 msgid "You are tagged in a post" msgstr "" -#: src/Module/Settings/Account.php:620 +#: src/Module/Settings/Account.php:606 msgid "Create a desktop notification when:" msgstr "" -#: src/Module/Settings/Account.php:621 +#: src/Module/Settings/Account.php:607 msgid "Someone tagged you" msgstr "" -#: src/Module/Settings/Account.php:622 +#: src/Module/Settings/Account.php:608 msgid "Someone directly commented on your post" msgstr "" -#: src/Module/Settings/Account.php:623 +#: src/Module/Settings/Account.php:609 msgid "Someone liked your content" msgstr "’S toigh le cuideigin an t-susbaint agad" -#: src/Module/Settings/Account.php:623 src/Module/Settings/Account.php:624 +#: src/Module/Settings/Account.php:609 src/Module/Settings/Account.php:610 msgid "Can only be enabled, when the direct comment notification is enabled." msgstr "" -#: src/Module/Settings/Account.php:624 +#: src/Module/Settings/Account.php:610 msgid "Someone shared your content" msgstr "Cho-roinn cuideigin an t-susbaint agad" -#: src/Module/Settings/Account.php:625 +#: src/Module/Settings/Account.php:611 msgid "Someone commented in your thread" msgstr "" -#: src/Module/Settings/Account.php:626 +#: src/Module/Settings/Account.php:612 msgid "Someone commented in a thread where you commented" msgstr "" -#: src/Module/Settings/Account.php:627 +#: src/Module/Settings/Account.php:613 msgid "Someone commented in a thread where you interacted" msgstr "Chuir cuideigin beachd ri snàithlean san do rinn thu co-luadar" -#: src/Module/Settings/Account.php:629 +#: src/Module/Settings/Account.php:615 msgid "Activate desktop notifications" msgstr "" -#: src/Module/Settings/Account.php:629 +#: src/Module/Settings/Account.php:615 msgid "Show desktop popup on new notifications" msgstr "" -#: src/Module/Settings/Account.php:633 +#: src/Module/Settings/Account.php:619 msgid "Text-only notification emails" msgstr "" -#: src/Module/Settings/Account.php:635 +#: src/Module/Settings/Account.php:621 msgid "Send text only notification emails, without the html part" msgstr "" -#: src/Module/Settings/Account.php:639 +#: src/Module/Settings/Account.php:625 msgid "Show detailled notifications" msgstr "" -#: src/Module/Settings/Account.php:641 +#: src/Module/Settings/Account.php:627 msgid "" "Per default, notifications are condensed to a single notification per item. " "When enabled every notification is displayed." msgstr "" -#: src/Module/Settings/Account.php:645 +#: src/Module/Settings/Account.php:631 msgid "Show notifications of ignored contacts" msgstr "" -#: src/Module/Settings/Account.php:647 +#: src/Module/Settings/Account.php:633 msgid "" "You don't see posts from ignored contacts. But you still see their comments." " This setting controls if you want to still receive regular notifications " "that are caused by ignored contacts or not." msgstr "" -#: src/Module/Settings/Account.php:650 +#: src/Module/Settings/Account.php:636 msgid "Advanced Account/Page Type Settings" msgstr "" -#: src/Module/Settings/Account.php:651 +#: src/Module/Settings/Account.php:637 msgid "Change the behaviour of this account for special situations" msgstr "" -#: src/Module/Settings/Account.php:654 +#: src/Module/Settings/Account.php:640 msgid "Import Contacts" msgstr "" -#: src/Module/Settings/Account.php:655 +#: src/Module/Settings/Account.php:641 msgid "" "Upload a CSV file that contains the handle of your followed accounts in the " "first column you exported from the old account." msgstr "" -#: src/Module/Settings/Account.php:656 +#: src/Module/Settings/Account.php:642 msgid "Upload File" msgstr "" -#: src/Module/Settings/Account.php:659 +#: src/Module/Settings/Account.php:645 msgid "Relocate" msgstr "Imrich" -#: src/Module/Settings/Account.php:660 +#: src/Module/Settings/Account.php:646 msgid "" "If you have moved this profile from another server, and some of your " "contacts don't receive your updates, try pushing this button." msgstr "" -#: src/Module/Settings/Account.php:661 +#: src/Module/Settings/Account.php:647 msgid "Resend relocate message to contacts" msgstr "Cuir teachdaireachd mun imrich dhan neach-aithne" -#: src/Module/Settings/Addons.php:86 +#: src/Module/Settings/Addons.php:72 msgid "Addon Settings" msgstr "Roghainnean nan tuilleadan" -#: src/Module/Settings/Addons.php:87 +#: src/Module/Settings/Addons.php:73 msgid "No Addon settings configured" msgstr "Cha deach roghainnean tuilleadain a rèiteachadh" -#: src/Module/Settings/Channels.php:148 +#: src/Module/Settings/Channels.php:134 msgid "" "This page can be used to define the channels that will automatically be " "reshared by your account." msgstr "" -#: src/Module/Settings/Channels.php:153 +#: src/Module/Settings/Channels.php:139 msgid "This page can be used to define your own channels." msgstr "" -#: src/Module/Settings/Channels.php:182 +#: src/Module/Settings/Channels.php:168 msgid "Publish" msgstr "" -#: src/Module/Settings/Channels.php:182 +#: src/Module/Settings/Channels.php:168 msgid "" "When selected, the channel results are reshared. This only works for public " "ActivityPub posts from the public timeline or the user defined circles." msgstr "" -#: src/Module/Settings/Channels.php:190 src/Module/Settings/Channels.php:211 -#: src/Module/Settings/Display.php:338 +#: src/Module/Settings/Channels.php:176 src/Module/Settings/Channels.php:197 +#: src/Module/Settings/Display.php:324 msgid "Label" msgstr "" -#: src/Module/Settings/Channels.php:191 src/Module/Settings/Channels.php:212 -#: src/Module/Settings/Display.php:339 -#: src/Module/Settings/TwoFactor/AppSpecific.php:137 +#: src/Module/Settings/Channels.php:177 src/Module/Settings/Channels.php:198 +#: src/Module/Settings/Display.php:325 +#: src/Module/Settings/TwoFactor/AppSpecific.php:123 msgid "Description" msgstr "" -#: src/Module/Settings/Channels.php:192 src/Module/Settings/Channels.php:213 +#: src/Module/Settings/Channels.php:178 src/Module/Settings/Channels.php:199 msgid "Access Key" msgstr "" -#: src/Module/Settings/Channels.php:193 src/Module/Settings/Channels.php:214 +#: src/Module/Settings/Channels.php:179 src/Module/Settings/Channels.php:200 msgid "Circle/Channel" msgstr "" -#: src/Module/Settings/Channels.php:194 src/Module/Settings/Channels.php:215 +#: src/Module/Settings/Channels.php:180 src/Module/Settings/Channels.php:201 msgid "Include Tags" msgstr "" -#: src/Module/Settings/Channels.php:195 src/Module/Settings/Channels.php:216 +#: src/Module/Settings/Channels.php:181 src/Module/Settings/Channels.php:202 msgid "Exclude Tags" msgstr "" -#: src/Module/Settings/Channels.php:196 src/Module/Settings/Channels.php:217 +#: src/Module/Settings/Channels.php:182 src/Module/Settings/Channels.php:203 msgid "Minimum Size" msgstr "" -#: src/Module/Settings/Channels.php:197 src/Module/Settings/Channels.php:218 +#: src/Module/Settings/Channels.php:183 src/Module/Settings/Channels.php:204 msgid "Maximum Size" msgstr "" -#: src/Module/Settings/Channels.php:198 src/Module/Settings/Channels.php:219 +#: src/Module/Settings/Channels.php:184 src/Module/Settings/Channels.php:205 msgid "Full Text Search" msgstr "" -#: src/Module/Settings/Channels.php:202 src/Module/Settings/Channels.php:223 +#: src/Module/Settings/Channels.php:188 src/Module/Settings/Channels.php:209 msgid "Select all languages that you want to see in this channel." msgstr "" -#: src/Module/Settings/Channels.php:204 +#: src/Module/Settings/Channels.php:190 msgid "Delete channel" msgstr "" -#: src/Module/Settings/Channels.php:204 +#: src/Module/Settings/Channels.php:190 msgid "Check to delete this entry from the channel list" msgstr "" -#: src/Module/Settings/Channels.php:211 +#: src/Module/Settings/Channels.php:197 msgid "Short name for the channel. It is displayed on the channels widget." msgstr "" -#: src/Module/Settings/Channels.php:212 +#: src/Module/Settings/Channels.php:198 msgid "This should describe the content of the channel in a few word." msgstr "" -#: src/Module/Settings/Channels.php:213 +#: src/Module/Settings/Channels.php:199 msgid "" "When you want to access this channel via an access key, you can define it " "here. Pay attention to not use an already used one." msgstr "" -#: src/Module/Settings/Channels.php:214 +#: src/Module/Settings/Channels.php:200 msgid "Select a circle or channel, that your channel should be based on." msgstr "" -#: src/Module/Settings/Channels.php:215 +#: src/Module/Settings/Channels.php:201 msgid "" "Comma separated list of tags. A post will be used when it contains any of " "the listed tags." msgstr "" -#: src/Module/Settings/Channels.php:216 +#: src/Module/Settings/Channels.php:202 msgid "" "Comma separated list of tags. If a post contain any of these tags, then it " "will not be part of nthis channel." msgstr "" -#: src/Module/Settings/Channels.php:217 +#: src/Module/Settings/Channels.php:203 msgid "" "Minimum post size. Leave empty for no minimum size. The size is calculated " "without links, attached posts, mentions or hashtags." msgstr "" -#: src/Module/Settings/Channels.php:218 +#: src/Module/Settings/Channels.php:204 msgid "" "Maximum post size. Leave empty for no maximum size. The size is calculated " "without links, attached posts, mentions or hashtags." msgstr "" -#: src/Module/Settings/Channels.php:219 +#: src/Module/Settings/Channels.php:205 #, php-format msgid "" "Search terms for the body, supports the \"boolean mode\" operators from " @@ -10456,600 +10437,589 @@ msgid "" "keywords: %s" msgstr "" -#: src/Module/Settings/Channels.php:220 +#: src/Module/Settings/Channels.php:206 msgid "Check to display images in the channel." msgstr "" -#: src/Module/Settings/Channels.php:221 +#: src/Module/Settings/Channels.php:207 msgid "Check to display videos in the channel." msgstr "" -#: src/Module/Settings/Channels.php:222 +#: src/Module/Settings/Channels.php:208 msgid "Check to display audio in the channel." msgstr "" -#: src/Module/Settings/Channels.php:227 +#: src/Module/Settings/Channels.php:213 msgid "Add new entry to the channel list" msgstr "" -#: src/Module/Settings/Channels.php:228 +#: src/Module/Settings/Channels.php:214 msgid "Add" msgstr "" -#: src/Module/Settings/Channels.php:230 +#: src/Module/Settings/Channels.php:216 msgid "Current Entries in the channel list" msgstr "" -#: src/Module/Settings/Channels.php:233 +#: src/Module/Settings/Channels.php:219 msgid "Delete entry from the channel list" msgstr "" -#: src/Module/Settings/Channels.php:234 +#: src/Module/Settings/Channels.php:220 msgid "Delete entry from the channel list?" msgstr "" -#: src/Module/Settings/Connectors.php:122 +#: src/Module/Settings/Connectors.php:108 msgid "Failed to connect with email account using the settings provided." msgstr "Cha deach leinn ceangal a dhèanamh leis a’ chunntas puist-d a’ cleachdadh nan roghainnean a chaidh a thoirt seachad." -#: src/Module/Settings/Connectors.php:169 -#: src/Module/Settings/Connectors.php:170 +#: src/Module/Settings/Connectors.php:155 +#: src/Module/Settings/Connectors.php:156 msgid "Diaspora (Socialhome, Hubzilla)" msgstr "Diaspora* (Socialhome, Hubzilla)" -#: src/Module/Settings/Connectors.php:169 -#: src/Module/Settings/Connectors.php:173 +#: src/Module/Settings/Connectors.php:155 #, php-format msgid "Built-in support for %s connectivity is enabled" msgstr "" -#: src/Module/Settings/Connectors.php:170 -#: src/Module/Settings/Connectors.php:172 +#: src/Module/Settings/Connectors.php:156 #, php-format msgid "Built-in support for %s connectivity is disabled" msgstr "" -#: src/Module/Settings/Connectors.php:172 -#: src/Module/Settings/Connectors.php:173 -msgid "OStatus (GNU Social)" -msgstr "OStatus (GNU Social)" - -#: src/Module/Settings/Connectors.php:185 +#: src/Module/Settings/Connectors.php:167 msgid "Email access is disabled on this site." msgstr "Tha an t-inntrigeadh le post-d à comas dhan làrach seo." -#: src/Module/Settings/Connectors.php:200 -#: src/Module/Settings/Connectors.php:254 +#: src/Module/Settings/Connectors.php:182 +#: src/Module/Settings/Connectors.php:233 msgid "None" msgstr "Chan eil gin" -#: src/Module/Settings/Connectors.php:204 +#: src/Module/Settings/Connectors.php:186 msgid "Default (Mastodon will display the title and a link to the post)" msgstr "" -#: src/Module/Settings/Connectors.php:205 +#: src/Module/Settings/Connectors.php:187 msgid "" "Use the summary (Mastodon and some others will treat it as content warning)" msgstr "" -#: src/Module/Settings/Connectors.php:206 +#: src/Module/Settings/Connectors.php:188 msgid "Embed the title in the body" msgstr "" -#: src/Module/Settings/Connectors.php:218 +#: src/Module/Settings/Connectors.php:199 msgid "General Social Media Settings" msgstr "Roghainnean coitcheann nam meadhanan sòisealta" -#: src/Module/Settings/Connectors.php:221 +#: src/Module/Settings/Connectors.php:202 msgid "Followed content scope" msgstr "Farsaingeachd na susbainte air a leanas tu" -#: src/Module/Settings/Connectors.php:223 +#: src/Module/Settings/Connectors.php:204 msgid "" "By default, conversations in which your follows participated but didn't " "start will be shown in your timeline. You can turn this behavior off, or " "expand it to the conversations in which your follows liked a post." msgstr "Nochdaidh na còmhraidhean sa ghabh an fheadhainn air a leanas tu pàirt ach nach do thòisich iad fhèin air an loidhne-ama agad a ghnàth. ’S urrainn dhut seo a chur dheth no a leudachadh ach an nochd na còmhraidhean far an toigh leis an fheadhainn air a leanas tu post." -#: src/Module/Settings/Connectors.php:225 +#: src/Module/Settings/Connectors.php:206 msgid "Only conversations my follows started" msgstr "Na còmhraidhean a thòisich cuideigin air a leanas mi a-mhàin" -#: src/Module/Settings/Connectors.php:226 +#: src/Module/Settings/Connectors.php:207 msgid "Conversations my follows started or commented on (default)" msgstr "Na còmhraidhean a thòisich cuideigin air a leanas mi no a chuir iad beachd riutha (bun-roghainn)" -#: src/Module/Settings/Connectors.php:227 +#: src/Module/Settings/Connectors.php:208 msgid "Any conversation my follows interacted with, including likes" msgstr "Còmhradh sam bith leis an do rinn cuideigin air a leanas mi co-luadar, a’ gabhail a-staigh nas toigh leotha" -#: src/Module/Settings/Connectors.php:230 +#: src/Module/Settings/Connectors.php:211 msgid "Collapse sensitive posts" msgstr "" -#: src/Module/Settings/Connectors.php:230 +#: src/Module/Settings/Connectors.php:211 msgid "" "If a post is marked as \"sensitive\", it will be displayed in a collapsed " "state, if this option is enabled." msgstr "" -#: src/Module/Settings/Connectors.php:231 +#: src/Module/Settings/Connectors.php:212 msgid "Enable intelligent shortening" msgstr "Cuir an giorrachadh tapaidh an comas" -#: src/Module/Settings/Connectors.php:231 +#: src/Module/Settings/Connectors.php:212 msgid "" "Normally the system tries to find the best link to add to shortened posts. " "If disabled, every shortened post will always point to the original " "friendica post." msgstr "Mar as àbhaist, feuchaidh an siostam gun dèid an ceangal as fheàrr a lorg gus a chur ri postaichean giorraichte. Ma tha seo à comas, tomhaidh gach post giorraichte ris a’ phost tùsail air friendica an-còmhnaidh." -#: src/Module/Settings/Connectors.php:232 +#: src/Module/Settings/Connectors.php:213 msgid "Enable simple text shortening" msgstr "Cuir an comas giorrachadh teacsa sìmplidh" -#: src/Module/Settings/Connectors.php:232 +#: src/Module/Settings/Connectors.php:213 msgid "" "Normally the system shortens posts at the next line feed. If this option is " "enabled then the system will shorten the text at the maximum character " "limit." msgstr "Mar as àbhaist, giorraichidh an siostam na postaichean aig an ath earrann. Ma tha an roghainn seo an comas, giorraichidh an siostam an teacsa aig crìoch nan caractaran ceadaichte." -#: src/Module/Settings/Connectors.php:233 +#: src/Module/Settings/Connectors.php:214 msgid "Attach the link title" msgstr "Cuir tiotal a’ cheangail ris" -#: src/Module/Settings/Connectors.php:233 +#: src/Module/Settings/Connectors.php:214 msgid "" "When activated, the title of the attached link will be added as a title on " "posts to Diaspora. This is mostly helpful with \"remote-self\" contacts that" " share feed content." msgstr "Nuair a bhios seo an gnìomh, thèid tiotal a’ cheangail a chur ris mar tiotal air postaichean gu diaspora*. Tha seo as fheumaile dhan luchd-aithne “remote-self” a cho-roinneas susbaint inbhir." -#: src/Module/Settings/Connectors.php:234 +#: src/Module/Settings/Connectors.php:215 msgid "API: Use spoiler field as title" msgstr "" -#: src/Module/Settings/Connectors.php:234 +#: src/Module/Settings/Connectors.php:215 msgid "" "When activated, the \"spoiler_text\" field in the API will be used for the " "title on standalone posts. When deactivated it will be used for spoiler " "text. For comments it will always be used for spoiler text." msgstr "" -#: src/Module/Settings/Connectors.php:235 +#: src/Module/Settings/Connectors.php:216 msgid "API: Automatically links at the end of the post as attached posts" msgstr "" -#: src/Module/Settings/Connectors.php:235 +#: src/Module/Settings/Connectors.php:216 msgid "" "When activated, added links at the end of the post react the same way as " "added links in the web interface." msgstr "Nuair a bhios seo an gnìomh, bidh an t-aon ghiùlan aig ceanglaichean a thèid a chur ri bonn puist ’s a tha aig ceanglaichean a thèid a chur ris san eadar-aghaidh-lìn." -#: src/Module/Settings/Connectors.php:236 +#: src/Module/Settings/Connectors.php:217 msgid "Article Mode" msgstr "" -#: src/Module/Settings/Connectors.php:236 +#: src/Module/Settings/Connectors.php:217 msgid "" "Controls how posts with titles are transmitted. Mastodon and its forks don't" " display the content of these posts if the post is created in the correct " "(default) way." msgstr "" -#: src/Module/Settings/Connectors.php:237 +#: src/Module/Settings/Connectors.php:218 msgid "Your legacy ActivityPub/GNU Social account" msgstr "An cunntas ActivityPub/GNU Social dìleabach agad" -#: src/Module/Settings/Connectors.php:237 +#: src/Module/Settings/Connectors.php:218 msgid "" "If you enter your old account name from an ActivityPub based system or your " "GNU Social/Statusnet account name here (in the format user@domain.tld), your" " contacts will be added automatically. The field will be emptied when done." msgstr "Ma chuireas tu ainm seann-chunntais ris o shiostam stèidhichte air ActivityPub no ainm do chunntais GNU Social/Statusnet an-seo (san fhòrmat cleachdaiche@àrainn.tld), thèid an luchd-aithne agad a chur ris gu fèin-obrachail. Thèid an raon fhalamhachadh nuair a bhios sin deiseil." -#: src/Module/Settings/Connectors.php:239 -msgid "Repair OStatus subscriptions" -msgstr "Càraich fo-sgrìobhaidhean OStatus" - -#: src/Module/Settings/Connectors.php:243 +#: src/Module/Settings/Connectors.php:222 msgid "Email/Mailbox Setup" msgstr "Suidheachadh a’ phuist-d/a’ bhogsa-phuist" -#: src/Module/Settings/Connectors.php:244 +#: src/Module/Settings/Connectors.php:223 msgid "" "If you wish to communicate with email contacts using this service " "(optional), please specify how to connect to your mailbox." msgstr "Ma tha thu airson an t-seirbheis seo a chleachdadh airson conaltradh le luchd-aithne air a’ post-d (gu roghainneil), sònraich an dòigh air a nì thu ceangal leis a’ bhogsa-phuist agad." -#: src/Module/Settings/Connectors.php:245 +#: src/Module/Settings/Connectors.php:224 msgid "Last successful email check:" msgstr "An turas mu dheireadh a chaidh leinn sùil a thoirt air a’ phost-d:" -#: src/Module/Settings/Connectors.php:247 +#: src/Module/Settings/Connectors.php:226 msgid "IMAP server name:" msgstr "Ainm frithealaiche IMAP:" -#: src/Module/Settings/Connectors.php:248 +#: src/Module/Settings/Connectors.php:227 msgid "IMAP port:" msgstr "Port IMAP:" -#: src/Module/Settings/Connectors.php:249 +#: src/Module/Settings/Connectors.php:228 msgid "Security:" msgstr "Tèarainteachd:" -#: src/Module/Settings/Connectors.php:250 +#: src/Module/Settings/Connectors.php:229 msgid "Email login name:" msgstr "Ainm clàradh a-steach a’ phuist-d:" -#: src/Module/Settings/Connectors.php:251 +#: src/Module/Settings/Connectors.php:230 msgid "Email password:" msgstr "Facal-faire a’ phuist-d:" -#: src/Module/Settings/Connectors.php:252 +#: src/Module/Settings/Connectors.php:231 msgid "Reply-to address:" msgstr "An seòladh Freagairt-gu:" -#: src/Module/Settings/Connectors.php:253 +#: src/Module/Settings/Connectors.php:232 msgid "Send public posts to all email contacts:" msgstr "Cuir postaichean poblach dhan a h-uile neach-aithne puist-d:" -#: src/Module/Settings/Connectors.php:254 +#: src/Module/Settings/Connectors.php:233 msgid "Action after import:" msgstr "Gnìomh às dèid an ion-phortaidh:" -#: src/Module/Settings/Connectors.php:254 +#: src/Module/Settings/Connectors.php:233 msgid "Move to folder" msgstr "Gluais gu pasgan" -#: src/Module/Settings/Connectors.php:255 +#: src/Module/Settings/Connectors.php:234 msgid "Move to folder:" msgstr "Gluais gu pasgan:" -#: src/Module/Settings/Delegation.php:73 +#: src/Module/Settings/Delegation.php:59 msgid "Delegation successfully granted." msgstr "Chaidh neach-ionaid a dhèanamh dheth." -#: src/Module/Settings/Delegation.php:75 +#: src/Module/Settings/Delegation.php:61 msgid "Parent user not found, unavailable or password doesn't match." msgstr "" -#: src/Module/Settings/Delegation.php:79 +#: src/Module/Settings/Delegation.php:65 msgid "Delegation successfully revoked." msgstr "Chaidh ceadan neach-ionaid a thoirt air falbh." -#: src/Module/Settings/Delegation.php:98 -#: src/Module/Settings/Delegation.php:120 +#: src/Module/Settings/Delegation.php:84 +#: src/Module/Settings/Delegation.php:106 msgid "" "Delegated administrators can view but not change delegation permissions." msgstr "Chì rianairean a tha ’nan luchd-ionaid na ceadan ach chan urrainn dhaibh an atharrachadh." -#: src/Module/Settings/Delegation.php:112 +#: src/Module/Settings/Delegation.php:98 msgid "Delegate user not found." msgstr "Cha deach cleachdaiche an neach-ionaid a lorg." -#: src/Module/Settings/Delegation.php:169 +#: src/Module/Settings/Delegation.php:155 msgid "No parent user" msgstr "" -#: src/Module/Settings/Delegation.php:180 -#: src/Module/Settings/Delegation.php:191 +#: src/Module/Settings/Delegation.php:166 +#: src/Module/Settings/Delegation.php:177 msgid "Parent User" msgstr "" -#: src/Module/Settings/Delegation.php:188 +#: src/Module/Settings/Delegation.php:174 msgid "Additional Accounts" msgstr "" -#: src/Module/Settings/Delegation.php:189 +#: src/Module/Settings/Delegation.php:175 msgid "" "Register additional accounts that are automatically connected to your " "existing account so you can manage them from this account." msgstr "Clàraich cunntasan a bharrachd a thèid a cho-cheangal ris a’ chunntas làithreach agad ach an urrainn dhut an stiùireadh on chunntas seo." -#: src/Module/Settings/Delegation.php:190 +#: src/Module/Settings/Delegation.php:176 msgid "Register an additional account" msgstr "" -#: src/Module/Settings/Delegation.php:192 +#: src/Module/Settings/Delegation.php:178 msgid "" "Parent users have total control about this account, including the account " "settings. Please double check whom you give this access." msgstr "" -#: src/Module/Settings/Delegation.php:195 +#: src/Module/Settings/Delegation.php:181 msgid "Delegates" msgstr "Luchd-ionaid" -#: src/Module/Settings/Delegation.php:196 +#: src/Module/Settings/Delegation.php:182 msgid "" "Delegates are able to manage all aspects of this account/page except for " "basic account settings. Please do not delegate your personal account to " "anybody that you do not trust completely." msgstr "’S urrainn dhan luchd-ionaid nì sam bith mun chunntas/duilleag seo a stiùireadh ach roghainnean bunaiteach a’ chunntais. Na dèan neach-ionaid dhan chunntas phearsanta agad de dhuine sam bith anns nach eil làn-earbsa agad." -#: src/Module/Settings/Delegation.php:197 +#: src/Module/Settings/Delegation.php:183 msgid "Existing Page Delegates" msgstr "Luchd-ionaid làithreach na duilleige" -#: src/Module/Settings/Delegation.php:198 +#: src/Module/Settings/Delegation.php:184 msgid "Potential Delegates" msgstr "Tagraichean luchd-ionaid" -#: src/Module/Settings/Delegation.php:199 +#: src/Module/Settings/Delegation.php:185 msgid "No entries." msgstr "" -#: src/Module/Settings/Display.php:183 +#: src/Module/Settings/Display.php:169 msgid "The theme you chose isn't available." msgstr "Chan eil an t-ùrlar a thagh thu ri fhaighinn." -#: src/Module/Settings/Display.php:223 +#: src/Module/Settings/Display.php:209 #, php-format msgid "%s - (Unsupported)" msgstr "" -#: src/Module/Settings/Display.php:260 +#: src/Module/Settings/Display.php:246 msgid "No preview" msgstr "" -#: src/Module/Settings/Display.php:261 +#: src/Module/Settings/Display.php:247 msgid "No image" msgstr "" -#: src/Module/Settings/Display.php:262 +#: src/Module/Settings/Display.php:248 msgid "Small Image" msgstr "" -#: src/Module/Settings/Display.php:263 +#: src/Module/Settings/Display.php:249 msgid "Large Image" msgstr "" -#: src/Module/Settings/Display.php:308 +#: src/Module/Settings/Display.php:294 msgid "Display Settings" msgstr "" -#: src/Module/Settings/Display.php:310 +#: src/Module/Settings/Display.php:296 msgid "General Theme Settings" msgstr "Roghainnean coitcheann an ùrlair" -#: src/Module/Settings/Display.php:311 +#: src/Module/Settings/Display.php:297 msgid "Custom Theme Settings" msgstr "Roghainnean gnàthaichte an ùrlair" -#: src/Module/Settings/Display.php:312 +#: src/Module/Settings/Display.php:298 msgid "Content Settings" msgstr "" -#: src/Module/Settings/Display.php:313 view/theme/duepuntozero/config.php:86 -#: view/theme/frio/config.php:151 view/theme/quattro/config.php:88 -#: view/theme/vier/config.php:136 +#: src/Module/Settings/Display.php:299 view/theme/duepuntozero/config.php:74 +#: view/theme/frio/config.php:139 view/theme/quattro/config.php:76 +#: view/theme/vier/config.php:124 msgid "Theme settings" msgstr "Roghainnean an ùrlair" -#: src/Module/Settings/Display.php:314 +#: src/Module/Settings/Display.php:300 msgid "Timelines" msgstr "" -#: src/Module/Settings/Display.php:321 +#: src/Module/Settings/Display.php:307 msgid "Display Theme:" msgstr "Ùrlar taisbeanaidh:" -#: src/Module/Settings/Display.php:322 +#: src/Module/Settings/Display.php:308 msgid "Mobile Theme:" msgstr "Ùrlar mobile:" -#: src/Module/Settings/Display.php:325 +#: src/Module/Settings/Display.php:311 msgid "Number of items to display per page:" msgstr "" -#: src/Module/Settings/Display.php:325 src/Module/Settings/Display.php:326 +#: src/Module/Settings/Display.php:311 src/Module/Settings/Display.php:312 msgid "Maximum of 100 items" msgstr "" -#: src/Module/Settings/Display.php:326 +#: src/Module/Settings/Display.php:312 msgid "Number of items to display per page when viewed from mobile device:" msgstr "" -#: src/Module/Settings/Display.php:327 +#: src/Module/Settings/Display.php:313 msgid "Update browser every xx seconds" msgstr "" -#: src/Module/Settings/Display.php:327 +#: src/Module/Settings/Display.php:313 msgid "Minimum of 10 seconds. Enter -1 to disable it." msgstr "" -#: src/Module/Settings/Display.php:328 +#: src/Module/Settings/Display.php:314 msgid "Display emoticons" msgstr "" -#: src/Module/Settings/Display.php:328 +#: src/Module/Settings/Display.php:314 msgid "When enabled, emoticons are replaced with matching symbols." msgstr "" -#: src/Module/Settings/Display.php:329 +#: src/Module/Settings/Display.php:315 msgid "Infinite scroll" msgstr "" -#: src/Module/Settings/Display.php:329 +#: src/Module/Settings/Display.php:315 msgid "Automatic fetch new items when reaching the page end." msgstr "" -#: src/Module/Settings/Display.php:330 +#: src/Module/Settings/Display.php:316 msgid "Enable Smart Threading" msgstr "" -#: src/Module/Settings/Display.php:330 +#: src/Module/Settings/Display.php:316 msgid "Enable the automatic suppression of extraneous thread indentation." msgstr "" -#: src/Module/Settings/Display.php:331 +#: src/Module/Settings/Display.php:317 msgid "Display the Dislike feature" msgstr "Seall an gleus “Cha toigh leam seo”" -#: src/Module/Settings/Display.php:331 +#: src/Module/Settings/Display.php:317 msgid "" "Display the Dislike button and dislike reactions on posts and comments." msgstr "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:318 msgid "Display the resharer" msgstr "Seall cò rinn an co-roinneadh" -#: src/Module/Settings/Display.php:332 +#: src/Module/Settings/Display.php:318 msgid "Display the first resharer as icon and text on a reshared item." msgstr "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:319 msgid "Stay local" msgstr "" -#: src/Module/Settings/Display.php:333 +#: src/Module/Settings/Display.php:319 msgid "Don't go to a remote system when following a contact link." msgstr "" -#: src/Module/Settings/Display.php:334 +#: src/Module/Settings/Display.php:320 msgid "Show the post deletion checkbox" msgstr "" -#: src/Module/Settings/Display.php:334 +#: src/Module/Settings/Display.php:320 msgid "Display the checkbox for the post deletion on the network page." msgstr "" -#: src/Module/Settings/Display.php:335 +#: src/Module/Settings/Display.php:321 msgid "DIsplay the event list" msgstr "" -#: src/Module/Settings/Display.php:335 +#: src/Module/Settings/Display.php:321 msgid "Display the birthday reminder and event list on the network page." msgstr "" -#: src/Module/Settings/Display.php:336 +#: src/Module/Settings/Display.php:322 msgid "Link preview mode" msgstr "" -#: src/Module/Settings/Display.php:336 +#: src/Module/Settings/Display.php:322 msgid "Appearance of the link preview that is added to each post with a link." msgstr "" -#: src/Module/Settings/Display.php:341 +#: src/Module/Settings/Display.php:327 msgid "Bookmark" msgstr "" -#: src/Module/Settings/Display.php:343 +#: src/Module/Settings/Display.php:329 msgid "" "Enable timelines that you want to see in the channels widget. Bookmark " "timelines that you want to see in the top menu." msgstr "" -#: src/Module/Settings/Display.php:345 +#: src/Module/Settings/Display.php:331 msgid "Channel languages:" msgstr "" -#: src/Module/Settings/Display.php:345 +#: src/Module/Settings/Display.php:331 msgid "Select all languages that you want to see in your channels." msgstr "" -#: src/Module/Settings/Display.php:347 +#: src/Module/Settings/Display.php:333 msgid "Beginning of week:" msgstr "" -#: src/Module/Settings/Display.php:348 +#: src/Module/Settings/Display.php:334 msgid "Default calendar view:" msgstr "" -#: src/Module/Settings/Features.php:73 +#: src/Module/Settings/Features.php:59 msgid "Additional Features" msgstr "Gleusan a bharrachd" -#: src/Module/Settings/OAuth.php:71 +#: src/Module/Settings/OAuth.php:57 msgid "Connected Apps" msgstr "Aplacaidean ceangailte" -#: src/Module/Settings/OAuth.php:75 +#: src/Module/Settings/OAuth.php:61 msgid "Remove authorization" msgstr "Thoir an t-ùghdarrachadh air falbh" -#: src/Module/Settings/Profile/Index.php:116 +#: src/Module/Settings/Profile/Index.php:102 msgid "Display Name is required." msgstr "" -#: src/Module/Settings/Profile/Index.php:170 +#: src/Module/Settings/Profile/Index.php:156 msgid "Profile couldn't be updated." msgstr "" -#: src/Module/Settings/Profile/Index.php:210 -#: src/Module/Settings/Profile/Index.php:231 +#: src/Module/Settings/Profile/Index.php:196 +#: src/Module/Settings/Profile/Index.php:217 msgid "Label:" msgstr "" -#: src/Module/Settings/Profile/Index.php:211 -#: src/Module/Settings/Profile/Index.php:232 +#: src/Module/Settings/Profile/Index.php:197 +#: src/Module/Settings/Profile/Index.php:218 msgid "Value:" msgstr "" -#: src/Module/Settings/Profile/Index.php:222 -#: src/Module/Settings/Profile/Index.php:243 +#: src/Module/Settings/Profile/Index.php:208 +#: src/Module/Settings/Profile/Index.php:229 msgid "Field Permissions" msgstr "" -#: src/Module/Settings/Profile/Index.php:223 -#: src/Module/Settings/Profile/Index.php:244 +#: src/Module/Settings/Profile/Index.php:209 +#: src/Module/Settings/Profile/Index.php:230 msgid "(click to open/close)" msgstr "" -#: src/Module/Settings/Profile/Index.php:229 +#: src/Module/Settings/Profile/Index.php:215 msgid "Add a new profile field" msgstr "" -#: src/Module/Settings/Profile/Index.php:252 +#: src/Module/Settings/Profile/Index.php:238 msgid "" "The homepage is verified. A rel=\"me\" link back to your Friendica profile " "page was found on the homepage." msgstr "" -#: src/Module/Settings/Profile/Index.php:254 +#: src/Module/Settings/Profile/Index.php:240 #, php-format msgid "" "To verify your homepage, add a rel=\"me\" link to it, pointing to your " "profile URL (%s)." msgstr "" -#: src/Module/Settings/Profile/Index.php:260 +#: src/Module/Settings/Profile/Index.php:246 msgid "Profile Actions" msgstr "" -#: src/Module/Settings/Profile/Index.php:261 +#: src/Module/Settings/Profile/Index.php:247 msgid "Edit Profile Details" msgstr "" -#: src/Module/Settings/Profile/Index.php:263 +#: src/Module/Settings/Profile/Index.php:249 msgid "Change Profile Photo" msgstr "" -#: src/Module/Settings/Profile/Index.php:266 +#: src/Module/Settings/Profile/Index.php:252 msgid "Profile picture" msgstr "" -#: src/Module/Settings/Profile/Index.php:267 +#: src/Module/Settings/Profile/Index.php:253 msgid "Location" msgstr "" -#: src/Module/Settings/Profile/Index.php:268 src/Util/Temporal.php:97 -#: src/Util/Temporal.php:99 +#: src/Module/Settings/Profile/Index.php:254 src/Util/Temporal.php:83 +#: src/Util/Temporal.php:85 msgid "Miscellaneous" msgstr "" -#: src/Module/Settings/Profile/Index.php:269 +#: src/Module/Settings/Profile/Index.php:255 msgid "Custom Profile Fields" msgstr "" -#: src/Module/Settings/Profile/Index.php:270 src/Module/Welcome.php:58 +#: src/Module/Settings/Profile/Index.php:256 src/Module/Welcome.php:44 msgid "Upload Profile Photo" msgstr "" -#: src/Module/Settings/Profile/Index.php:271 +#: src/Module/Settings/Profile/Index.php:257 #, php-format msgid "" "

Custom fields appear on your profile page.

\n" @@ -11059,396 +11029,396 @@ msgid "" "\t\t\t\t

Non-public fields can only be seen by the selected Friendica contacts or the Friendica contacts in the selected circles.

" msgstr "" -#: src/Module/Settings/Profile/Index.php:291 +#: src/Module/Settings/Profile/Index.php:277 msgid "Street Address:" msgstr "" -#: src/Module/Settings/Profile/Index.php:292 +#: src/Module/Settings/Profile/Index.php:278 msgid "Locality/City:" msgstr "" -#: src/Module/Settings/Profile/Index.php:293 +#: src/Module/Settings/Profile/Index.php:279 msgid "Region/State:" msgstr "" -#: src/Module/Settings/Profile/Index.php:294 +#: src/Module/Settings/Profile/Index.php:280 msgid "Postal/Zip Code:" msgstr "" -#: src/Module/Settings/Profile/Index.php:295 +#: src/Module/Settings/Profile/Index.php:281 msgid "Country:" msgstr "" -#: src/Module/Settings/Profile/Index.php:297 +#: src/Module/Settings/Profile/Index.php:283 msgid "XMPP (Jabber) address:" msgstr "" -#: src/Module/Settings/Profile/Index.php:297 +#: src/Module/Settings/Profile/Index.php:283 msgid "" "The XMPP address will be published so that people can follow you there." msgstr "" -#: src/Module/Settings/Profile/Index.php:298 +#: src/Module/Settings/Profile/Index.php:284 msgid "Matrix (Element) address:" msgstr "" -#: src/Module/Settings/Profile/Index.php:298 +#: src/Module/Settings/Profile/Index.php:284 msgid "" "The Matrix address will be published so that people can follow you there." msgstr "" -#: src/Module/Settings/Profile/Index.php:299 +#: src/Module/Settings/Profile/Index.php:285 msgid "Homepage URL:" msgstr "" -#: src/Module/Settings/Profile/Index.php:300 +#: src/Module/Settings/Profile/Index.php:286 msgid "Public Keywords:" msgstr "" -#: src/Module/Settings/Profile/Index.php:300 +#: src/Module/Settings/Profile/Index.php:286 msgid "(Used for suggesting potential friends, can be seen by others)" msgstr "" -#: src/Module/Settings/Profile/Index.php:301 +#: src/Module/Settings/Profile/Index.php:287 msgid "Private Keywords:" msgstr "" -#: src/Module/Settings/Profile/Index.php:301 +#: src/Module/Settings/Profile/Index.php:287 msgid "(Used for searching profiles, never shown to others)" msgstr "" -#: src/Module/Settings/Profile/Photo/Crop.php:107 -#: src/Module/Settings/Profile/Photo/Crop.php:125 -#: src/Module/Settings/Profile/Photo/Crop.php:143 -#: src/Module/Settings/Profile/Photo/Index.php:100 +#: src/Module/Settings/Profile/Photo/Crop.php:93 +#: src/Module/Settings/Profile/Photo/Crop.php:111 +#: src/Module/Settings/Profile/Photo/Crop.php:129 +#: src/Module/Settings/Profile/Photo/Index.php:86 #, php-format msgid "Image size reduction [%s] failed." msgstr "" -#: src/Module/Settings/Profile/Photo/Crop.php:150 +#: src/Module/Settings/Profile/Photo/Crop.php:136 msgid "" "Shift-reload the page or clear browser cache if the new photo does not " "display immediately." msgstr "" -#: src/Module/Settings/Profile/Photo/Crop.php:155 +#: src/Module/Settings/Profile/Photo/Crop.php:141 msgid "Unable to process image" msgstr "" -#: src/Module/Settings/Profile/Photo/Crop.php:174 +#: src/Module/Settings/Profile/Photo/Crop.php:160 msgid "Photo not found." msgstr "" -#: src/Module/Settings/Profile/Photo/Crop.php:196 +#: src/Module/Settings/Profile/Photo/Crop.php:182 msgid "Profile picture successfully updated." msgstr "" -#: src/Module/Settings/Profile/Photo/Crop.php:222 -#: src/Module/Settings/Profile/Photo/Crop.php:226 +#: src/Module/Settings/Profile/Photo/Crop.php:208 +#: src/Module/Settings/Profile/Photo/Crop.php:212 msgid "Crop Image" msgstr "" -#: src/Module/Settings/Profile/Photo/Crop.php:223 +#: src/Module/Settings/Profile/Photo/Crop.php:209 msgid "Please adjust the image cropping for optimum viewing." msgstr "" -#: src/Module/Settings/Profile/Photo/Crop.php:225 +#: src/Module/Settings/Profile/Photo/Crop.php:211 msgid "Use Image As Is" msgstr "" -#: src/Module/Settings/Profile/Photo/Index.php:46 +#: src/Module/Settings/Profile/Photo/Index.php:32 msgid "Missing uploaded image." msgstr "" -#: src/Module/Settings/Profile/Photo/Index.php:123 +#: src/Module/Settings/Profile/Photo/Index.php:109 msgid "Profile Picture Settings" msgstr "" -#: src/Module/Settings/Profile/Photo/Index.php:124 +#: src/Module/Settings/Profile/Photo/Index.php:110 msgid "Current Profile Picture" msgstr "" -#: src/Module/Settings/Profile/Photo/Index.php:125 +#: src/Module/Settings/Profile/Photo/Index.php:111 msgid "Upload Profile Picture" msgstr "" -#: src/Module/Settings/Profile/Photo/Index.php:126 +#: src/Module/Settings/Profile/Photo/Index.php:112 msgid "Upload Picture:" msgstr "" -#: src/Module/Settings/Profile/Photo/Index.php:131 +#: src/Module/Settings/Profile/Photo/Index.php:117 msgid "or" msgstr "" -#: src/Module/Settings/Profile/Photo/Index.php:133 +#: src/Module/Settings/Profile/Photo/Index.php:119 msgid "skip this step" msgstr "" -#: src/Module/Settings/Profile/Photo/Index.php:135 +#: src/Module/Settings/Profile/Photo/Index.php:121 msgid "select a photo from your photo albums" msgstr "" -#: src/Module/Settings/RemoveMe.php:76 +#: src/Module/Settings/RemoveMe.php:62 msgid "" "There was a validation error, please make sure you're logged in with the " "account you want to remove and try again." msgstr "" -#: src/Module/Settings/RemoveMe.php:76 +#: src/Module/Settings/RemoveMe.php:62 msgid "If this error persists, please contact your administrator." msgstr "" -#: src/Module/Settings/RemoveMe.php:90 -#: src/Navigation/Notifications/Repository/Notify.php:471 -#: src/Navigation/Notifications/Repository/Notify.php:492 +#: src/Module/Settings/RemoveMe.php:76 +#: src/Navigation/Notifications/Repository/Notify.php:457 +#: src/Navigation/Notifications/Repository/Notify.php:478 msgid "[Friendica System Notify]" msgstr "[Brath siostam Friendica]" -#: src/Module/Settings/RemoveMe.php:90 +#: src/Module/Settings/RemoveMe.php:76 msgid "User deleted their account" msgstr "Sguab an cleachdaiche às an cunntas aca" -#: src/Module/Settings/RemoveMe.php:91 +#: src/Module/Settings/RemoveMe.php:77 msgid "" "On your Friendica node an user deleted their account. Please ensure that " "their data is removed from the backups." msgstr "Sguab cleachdaiche às an cunntas aca air an nòd Friendica agad. Dèan cinnteach gun dèid an dàta aca a thoirt air falbh o na lethbhreacan-glèidhidh." -#: src/Module/Settings/RemoveMe.php:92 +#: src/Module/Settings/RemoveMe.php:78 #, php-format msgid "The user id is %d" msgstr "’S e %d ID a’ chleachdaiche" -#: src/Module/Settings/RemoveMe.php:105 +#: src/Module/Settings/RemoveMe.php:91 msgid "Your account has been successfully removed. Bye bye!" msgstr "" -#: src/Module/Settings/RemoveMe.php:130 +#: src/Module/Settings/RemoveMe.php:116 msgid "Remove My Account" msgstr "Thoir air falbh an cunntas agam" -#: src/Module/Settings/RemoveMe.php:131 +#: src/Module/Settings/RemoveMe.php:117 msgid "" "This will completely remove your account. Once this has been done it is not " "recoverable." msgstr "Bheir seo air falbh an cunntas agad gu tur. Nuair a bhios sin air a thachairt, cha ghabh aiseag." -#: src/Module/Settings/RemoveMe.php:136 +#: src/Module/Settings/RemoveMe.php:122 msgid "Please enter your password for verification:" msgstr "Cuir a-steach am facal-faire agad airson a dhearbhadh:" -#: src/Module/Settings/Server/Action.php:60 +#: src/Module/Settings/Server/Action.php:46 msgid "Do you want to ignore this server?" msgstr "" -#: src/Module/Settings/Server/Action.php:64 +#: src/Module/Settings/Server/Action.php:50 msgid "Do you want to unignore this server?" msgstr "" -#: src/Module/Settings/Server/Action.php:74 -#: src/Module/Settings/Server/Index.php:104 +#: src/Module/Settings/Server/Action.php:60 +#: src/Module/Settings/Server/Index.php:90 msgid "Remote server settings" msgstr "" -#: src/Module/Settings/Server/Action.php:77 +#: src/Module/Settings/Server/Action.php:63 msgid "Server URL" msgstr "" -#: src/Module/Settings/Server/Index.php:78 +#: src/Module/Settings/Server/Index.php:64 msgid "Settings saved" msgstr "" -#: src/Module/Settings/Server/Index.php:105 +#: src/Module/Settings/Server/Index.php:91 msgid "" "Here you can find all the remote servers you have taken individual " "moderation actions against. For a list of servers your node has blocked, " "please check out the Information page." msgstr "" -#: src/Module/Settings/Server/Index.php:110 +#: src/Module/Settings/Server/Index.php:96 msgid "Delete all your settings for the remote server" msgstr "" -#: src/Module/Settings/Server/Index.php:111 +#: src/Module/Settings/Server/Index.php:97 msgid "Save changes" msgstr "" -#: src/Module/Settings/TwoFactor/AppSpecific.php:69 -#: src/Module/Settings/TwoFactor/Recovery.php:67 -#: src/Module/Settings/TwoFactor/Trusted.php:70 -#: src/Module/Settings/TwoFactor/Verify.php:72 +#: src/Module/Settings/TwoFactor/AppSpecific.php:55 +#: src/Module/Settings/TwoFactor/Recovery.php:53 +#: src/Module/Settings/TwoFactor/Trusted.php:56 +#: src/Module/Settings/TwoFactor/Verify.php:58 msgid "Please enter your password to access this page." msgstr "" -#: src/Module/Settings/TwoFactor/AppSpecific.php:87 +#: src/Module/Settings/TwoFactor/AppSpecific.php:73 msgid "App-specific password generation failed: The description is empty." msgstr "" -#: src/Module/Settings/TwoFactor/AppSpecific.php:90 +#: src/Module/Settings/TwoFactor/AppSpecific.php:76 msgid "" "App-specific password generation failed: This description already exists." msgstr "" -#: src/Module/Settings/TwoFactor/AppSpecific.php:94 +#: src/Module/Settings/TwoFactor/AppSpecific.php:80 msgid "New app-specific password generated." msgstr "" -#: src/Module/Settings/TwoFactor/AppSpecific.php:100 +#: src/Module/Settings/TwoFactor/AppSpecific.php:86 msgid "App-specific passwords successfully revoked." msgstr "" -#: src/Module/Settings/TwoFactor/AppSpecific.php:110 +#: src/Module/Settings/TwoFactor/AppSpecific.php:96 msgid "App-specific password successfully revoked." msgstr "" -#: src/Module/Settings/TwoFactor/AppSpecific.php:131 +#: src/Module/Settings/TwoFactor/AppSpecific.php:117 msgid "Two-factor app-specific passwords" msgstr "" -#: src/Module/Settings/TwoFactor/AppSpecific.php:133 +#: src/Module/Settings/TwoFactor/AppSpecific.php:119 msgid "" "

App-specific passwords are randomly generated passwords used instead your" " regular password to authenticate your account on third-party applications " "that don't support two-factor authentication.

" msgstr "" -#: src/Module/Settings/TwoFactor/AppSpecific.php:134 +#: src/Module/Settings/TwoFactor/AppSpecific.php:120 msgid "" "Make sure to copy your new app-specific password now. You won’t be able to " "see it again!" msgstr "" -#: src/Module/Settings/TwoFactor/AppSpecific.php:138 +#: src/Module/Settings/TwoFactor/AppSpecific.php:124 msgid "Last Used" msgstr "" -#: src/Module/Settings/TwoFactor/AppSpecific.php:139 +#: src/Module/Settings/TwoFactor/AppSpecific.php:125 msgid "Revoke" msgstr "" -#: src/Module/Settings/TwoFactor/AppSpecific.php:140 +#: src/Module/Settings/TwoFactor/AppSpecific.php:126 msgid "Revoke All" msgstr "" -#: src/Module/Settings/TwoFactor/AppSpecific.php:143 +#: src/Module/Settings/TwoFactor/AppSpecific.php:129 msgid "" "When you generate a new app-specific password, you must use it right away, " "it will be shown to you once after you generate it." msgstr "" -#: src/Module/Settings/TwoFactor/AppSpecific.php:144 +#: src/Module/Settings/TwoFactor/AppSpecific.php:130 msgid "Generate new app-specific password" msgstr "" -#: src/Module/Settings/TwoFactor/AppSpecific.php:145 +#: src/Module/Settings/TwoFactor/AppSpecific.php:131 msgid "Friendiqa on my Fairphone 2..." msgstr "" -#: src/Module/Settings/TwoFactor/AppSpecific.php:146 +#: src/Module/Settings/TwoFactor/AppSpecific.php:132 msgid "Generate" msgstr "" -#: src/Module/Settings/TwoFactor/Index.php:88 +#: src/Module/Settings/TwoFactor/Index.php:74 msgid "Two-factor authentication successfully disabled." msgstr "" -#: src/Module/Settings/TwoFactor/Index.php:141 +#: src/Module/Settings/TwoFactor/Index.php:127 msgid "" "

Use an application on a mobile device to get two-factor authentication " "codes when prompted on login.

" msgstr "" -#: src/Module/Settings/TwoFactor/Index.php:145 +#: src/Module/Settings/TwoFactor/Index.php:131 msgid "Authenticator app" msgstr "" -#: src/Module/Settings/TwoFactor/Index.php:146 +#: src/Module/Settings/TwoFactor/Index.php:132 msgid "Configured" msgstr "" -#: src/Module/Settings/TwoFactor/Index.php:146 +#: src/Module/Settings/TwoFactor/Index.php:132 msgid "Not Configured" msgstr "" -#: src/Module/Settings/TwoFactor/Index.php:147 +#: src/Module/Settings/TwoFactor/Index.php:133 msgid "

You haven't finished configuring your authenticator app.

" msgstr "" -#: src/Module/Settings/TwoFactor/Index.php:148 +#: src/Module/Settings/TwoFactor/Index.php:134 msgid "

Your authenticator app is correctly configured.

" msgstr "" -#: src/Module/Settings/TwoFactor/Index.php:150 +#: src/Module/Settings/TwoFactor/Index.php:136 msgid "Recovery codes" msgstr "" -#: src/Module/Settings/TwoFactor/Index.php:151 +#: src/Module/Settings/TwoFactor/Index.php:137 msgid "Remaining valid codes" msgstr "" -#: src/Module/Settings/TwoFactor/Index.php:153 +#: src/Module/Settings/TwoFactor/Index.php:139 msgid "" "

These one-use codes can replace an authenticator app code in case you " "have lost access to it.

" msgstr "" -#: src/Module/Settings/TwoFactor/Index.php:155 +#: src/Module/Settings/TwoFactor/Index.php:141 msgid "App-specific passwords" msgstr "" -#: src/Module/Settings/TwoFactor/Index.php:156 +#: src/Module/Settings/TwoFactor/Index.php:142 msgid "Generated app-specific passwords" msgstr "" -#: src/Module/Settings/TwoFactor/Index.php:158 +#: src/Module/Settings/TwoFactor/Index.php:144 msgid "" "

These randomly generated passwords allow you to authenticate on apps not " "supporting two-factor authentication.

" msgstr "" -#: src/Module/Settings/TwoFactor/Index.php:161 +#: src/Module/Settings/TwoFactor/Index.php:147 msgid "Current password:" msgstr "" -#: src/Module/Settings/TwoFactor/Index.php:161 +#: src/Module/Settings/TwoFactor/Index.php:147 msgid "" "You need to provide your current password to change two-factor " "authentication settings." msgstr "" -#: src/Module/Settings/TwoFactor/Index.php:162 +#: src/Module/Settings/TwoFactor/Index.php:148 msgid "Enable two-factor authentication" msgstr "" -#: src/Module/Settings/TwoFactor/Index.php:163 +#: src/Module/Settings/TwoFactor/Index.php:149 msgid "Disable two-factor authentication" msgstr "" -#: src/Module/Settings/TwoFactor/Index.php:164 +#: src/Module/Settings/TwoFactor/Index.php:150 msgid "Show recovery codes" msgstr "" -#: src/Module/Settings/TwoFactor/Index.php:165 +#: src/Module/Settings/TwoFactor/Index.php:151 msgid "Manage app-specific passwords" msgstr "Stiùir na faclan-faire sònraichte do dh’aplacaidean" -#: src/Module/Settings/TwoFactor/Index.php:166 +#: src/Module/Settings/TwoFactor/Index.php:152 msgid "Manage trusted browsers" msgstr "Stiùir brabhsairean earbsach" -#: src/Module/Settings/TwoFactor/Index.php:167 +#: src/Module/Settings/TwoFactor/Index.php:153 msgid "Finish app configuration" msgstr "" -#: src/Module/Settings/TwoFactor/Recovery.php:83 +#: src/Module/Settings/TwoFactor/Recovery.php:69 msgid "New recovery codes successfully generated." msgstr "" -#: src/Module/Settings/TwoFactor/Recovery.php:109 +#: src/Module/Settings/TwoFactor/Recovery.php:95 msgid "Two-factor recovery codes" msgstr "" -#: src/Module/Settings/TwoFactor/Recovery.php:111 +#: src/Module/Settings/TwoFactor/Recovery.php:97 msgid "" "

Recovery codes can be used to access your account in the event you lose " "access to your device and cannot receive two-factor authentication " @@ -11457,68 +11427,68 @@ msgid "" "account.

" msgstr "" -#: src/Module/Settings/TwoFactor/Recovery.php:113 +#: src/Module/Settings/TwoFactor/Recovery.php:99 msgid "" "When you generate new recovery codes, you must copy the new codes. Your old " "codes won’t work anymore." msgstr "" -#: src/Module/Settings/TwoFactor/Recovery.php:114 +#: src/Module/Settings/TwoFactor/Recovery.php:100 msgid "Generate new recovery codes" msgstr "" -#: src/Module/Settings/TwoFactor/Recovery.php:116 +#: src/Module/Settings/TwoFactor/Recovery.php:102 msgid "Next: Verification" msgstr "" -#: src/Module/Settings/TwoFactor/Trusted.php:87 +#: src/Module/Settings/TwoFactor/Trusted.php:73 msgid "Trusted browsers successfully removed." msgstr "" -#: src/Module/Settings/TwoFactor/Trusted.php:97 +#: src/Module/Settings/TwoFactor/Trusted.php:83 msgid "Trusted browser successfully removed." msgstr "" -#: src/Module/Settings/TwoFactor/Trusted.php:139 +#: src/Module/Settings/TwoFactor/Trusted.php:125 msgid "Two-factor Trusted Browsers" msgstr "" -#: src/Module/Settings/TwoFactor/Trusted.php:140 +#: src/Module/Settings/TwoFactor/Trusted.php:126 msgid "" "Trusted browsers are individual browsers you chose to skip two-factor " "authentication to access Friendica. Please use this feature sparingly, as it" " can negate the benefit of two-factor authentication." msgstr "" -#: src/Module/Settings/TwoFactor/Trusted.php:141 +#: src/Module/Settings/TwoFactor/Trusted.php:127 msgid "Device" msgstr "" -#: src/Module/Settings/TwoFactor/Trusted.php:142 +#: src/Module/Settings/TwoFactor/Trusted.php:128 msgid "OS" msgstr "" -#: src/Module/Settings/TwoFactor/Trusted.php:144 +#: src/Module/Settings/TwoFactor/Trusted.php:130 msgid "Trusted" msgstr "" -#: src/Module/Settings/TwoFactor/Trusted.php:145 +#: src/Module/Settings/TwoFactor/Trusted.php:131 msgid "Created At" msgstr "" -#: src/Module/Settings/TwoFactor/Trusted.php:146 +#: src/Module/Settings/TwoFactor/Trusted.php:132 msgid "Last Use" msgstr "" -#: src/Module/Settings/TwoFactor/Trusted.php:148 +#: src/Module/Settings/TwoFactor/Trusted.php:134 msgid "Remove All" msgstr "" -#: src/Module/Settings/TwoFactor/Verify.php:94 +#: src/Module/Settings/TwoFactor/Verify.php:80 msgid "Two-factor authentication successfully activated." msgstr "" -#: src/Module/Settings/TwoFactor/Verify.php:128 +#: src/Module/Settings/TwoFactor/Verify.php:114 #, php-format msgid "" "

Or you can submit the authentication settings manually:

\n" @@ -11538,105 +11508,105 @@ msgid "" "" msgstr "" -#: src/Module/Settings/TwoFactor/Verify.php:148 +#: src/Module/Settings/TwoFactor/Verify.php:134 msgid "Two-factor code verification" msgstr "" -#: src/Module/Settings/TwoFactor/Verify.php:150 +#: src/Module/Settings/TwoFactor/Verify.php:136 msgid "" "

Please scan this QR Code with your authenticator app and submit the " "provided code.

" msgstr "" -#: src/Module/Settings/TwoFactor/Verify.php:152 +#: src/Module/Settings/TwoFactor/Verify.php:138 #, php-format msgid "" "

Or you can open the following URL in your mobile device:

%s

" msgstr "" -#: src/Module/Settings/TwoFactor/Verify.php:159 +#: src/Module/Settings/TwoFactor/Verify.php:145 msgid "Verify code and enable two-factor authentication" msgstr "" -#: src/Module/Settings/UserExport.php:90 +#: src/Module/Settings/UserExport.php:76 msgid "Export account" msgstr "" -#: src/Module/Settings/UserExport.php:90 +#: src/Module/Settings/UserExport.php:76 msgid "" "Export your account info and contacts. Use this to make a backup of your " "account and/or to move it to another server." msgstr "" -#: src/Module/Settings/UserExport.php:91 +#: src/Module/Settings/UserExport.php:77 msgid "Export all" msgstr "" -#: src/Module/Settings/UserExport.php:91 +#: src/Module/Settings/UserExport.php:77 msgid "" "Export your account info, contacts and all your items as json. Could be a " "very big file, and could take a lot of time. Use this to make a full backup " "of your account (photos are not exported)" msgstr "" -#: src/Module/Settings/UserExport.php:92 +#: src/Module/Settings/UserExport.php:78 msgid "Export Contacts to CSV" msgstr "" -#: src/Module/Settings/UserExport.php:92 +#: src/Module/Settings/UserExport.php:78 msgid "" "Export the list of the accounts you are following as CSV file. Compatible to" " e.g. Mastodon." msgstr "" -#: src/Module/Special/DisplayNotFound.php:35 +#: src/Module/Special/DisplayNotFound.php:21 msgid "The top-level post isn't visible." msgstr "" -#: src/Module/Special/DisplayNotFound.php:36 +#: src/Module/Special/DisplayNotFound.php:22 msgid "The top-level post was deleted." msgstr "" -#: src/Module/Special/DisplayNotFound.php:37 +#: src/Module/Special/DisplayNotFound.php:23 msgid "" "This node has blocked the top-level author or the author of the shared post." msgstr "" -#: src/Module/Special/DisplayNotFound.php:38 +#: src/Module/Special/DisplayNotFound.php:24 msgid "" "You have ignored or blocked the top-level author or the author of the shared" " post." msgstr "" -#: src/Module/Special/DisplayNotFound.php:39 +#: src/Module/Special/DisplayNotFound.php:25 msgid "" "You have ignored the top-level author's server or the shared post author's " "server." msgstr "" -#: src/Module/Special/DisplayNotFound.php:45 +#: src/Module/Special/DisplayNotFound.php:31 msgid "Conversation Not Found" msgstr "" -#: src/Module/Special/DisplayNotFound.php:46 +#: src/Module/Special/DisplayNotFound.php:32 msgid "Unfortunately, the requested conversation isn't available to you." msgstr "" -#: src/Module/Special/DisplayNotFound.php:47 +#: src/Module/Special/DisplayNotFound.php:33 msgid "Possible reasons include:" msgstr "" -#: src/Module/Special/HTTPException.php:78 +#: src/Module/Special/HTTPException.php:64 msgid "Stack trace:" msgstr "" -#: src/Module/Special/HTTPException.php:83 +#: src/Module/Special/HTTPException.php:69 #, php-format msgid "Exception thrown in %s:%d" msgstr "" -#: src/Module/Tos.php:58 src/Module/Tos.php:107 +#: src/Module/Tos.php:44 src/Module/Tos.php:93 msgid "" "At the time of registration, and for providing communications between the " "user account and their contacts, the user has to provide a display name (pen" @@ -11649,14 +11619,14 @@ msgid "" "settings, it is not necessary for communication." msgstr "Aig àm a’ chlàraidh agus a chùm conaltraidh eadar cunntas a’ chleachdaiche ’s an luchd-aithne aca, feumaidh an cleachdaiche ainm taisbeanaidh (ainm-pinn), ainm-cleachdaiche (far-ainm) agus seòladh puist-d a tha ag obair a thoirt seachad. Gabhaidh na h-ainmean inntrigeadh air duilleag pròifil a’ chunntais le duine sam bith a thadhlas air an duilleag, fiù mura dèid fiosrachadh eile na pròifil a shealltainn. Cha dèid an seòladh puist-d a chleachdadh ach airson brathan a chur dhan chleachdaiche mu co-luadar agus cha dèid a shealltainn gu poblach. Tha cur a’ chunntais ri liosta nan cleachdaichean ann an eòlaire an nòid no san eòlaire cho-naisgte roghainneil agus gabhaidh sin a shuidheachadh ann an roghainnean a’ chleachdaiche; chan eil e riatanach dhan chonaltradh." -#: src/Module/Tos.php:59 src/Module/Tos.php:108 +#: src/Module/Tos.php:45 src/Module/Tos.php:94 msgid "" "This data is required for communication and is passed on to the nodes of the" " communication partners and is stored there. Users can enter additional " "private data that may be transmitted to the communication partners accounts." msgstr "" -#: src/Module/Tos.php:60 src/Module/Tos.php:109 +#: src/Module/Tos.php:46 src/Module/Tos.php:95 #, php-format msgid "" "At any point in time a logged in user can export their account data from the" @@ -11667,98 +11637,98 @@ msgid "" "from the nodes of the communication partners." msgstr "" -#: src/Module/Tos.php:63 src/Module/Tos.php:106 +#: src/Module/Tos.php:49 src/Module/Tos.php:92 msgid "Privacy Statement" msgstr "" -#: src/Module/Tos.php:103 +#: src/Module/Tos.php:89 msgid "Rules" msgstr "" -#: src/Module/Update/Display.php:45 +#: src/Module/Update/Display.php:31 msgid "Parameter uri_id is missing." msgstr "" -#: src/Module/Update/Display.php:55 +#: src/Module/Update/Display.php:41 msgid "The requested item doesn't exist or has been deleted." msgstr "Chan eil am an nì a dh’iarr thu ann no chaidh a sguabadh às." -#: src/Module/User/Delegation.php:146 +#: src/Module/User/Delegation.php:132 #, php-format msgid "You are now logged in as %s" msgstr "Tha thu air do chlàradh a-steach mar %s" -#: src/Module/User/Delegation.php:185 +#: src/Module/User/Delegation.php:171 msgid "Switch between your accounts" msgstr "Geàrr leum eadar na cunntasan agad" -#: src/Module/User/Delegation.php:186 +#: src/Module/User/Delegation.php:172 msgid "Manage your accounts" msgstr "Stiùirich na cunntasan agad" -#: src/Module/User/Delegation.php:187 +#: src/Module/User/Delegation.php:173 msgid "" "Toggle between different identities or community/group pages which share " "your account details or which you have been granted \"manage\" permissions" msgstr "Geàrr leum eadar dearbh-aithnean no duilleagan coimhearsnachd/buidhinn a tha a’ co-roinneadh fiosrachadh a’ chunntais agad no a fhuair thu ceadan “stiùir” dhaibh" -#: src/Module/User/Delegation.php:188 +#: src/Module/User/Delegation.php:174 msgid "Select an identity to manage: " msgstr "Tagh dearbh-aithne ri stiùireadh: " -#: src/Module/User/Import.php:104 +#: src/Module/User/Import.php:90 msgid "User imports on closed servers can only be done by an administrator." msgstr "Chan fhaod ach rianairean cleachdaichean ion-phortadh gu frithealaichean dùinte." -#: src/Module/User/Import.php:120 +#: src/Module/User/Import.php:106 msgid "Move account" msgstr "Imrich an cunntas" -#: src/Module/User/Import.php:121 +#: src/Module/User/Import.php:107 msgid "You can import an account from another Friendica server." msgstr "’S urrainn dhut cunntas ion-phortadh o fhrithealaiche Friendica eile." -#: src/Module/User/Import.php:122 +#: src/Module/User/Import.php:108 msgid "" "You need to export your account from the old server and upload it here. We " "will recreate your old account here with all your contacts. We will try also" " to inform your friends that you moved here." msgstr "Feumaidh tu an cunntas agad às-phortadh on t-seann-fhrithealaiche ’s a luchdadh suas an-seo. Ath-chruthaichidh sinn an seann-chunntas agad an-seo leis an luchd-aithne gu lèir agad. Feuchaidh sinn cuideachd gun leig sinn fios dha do charaidean gun do dh’imrich thu an-seo." -#: src/Module/User/Import.php:123 +#: src/Module/User/Import.php:109 msgid "" "This feature is experimental. We can't import contacts from the OStatus " "network (GNU Social/Statusnet) or from Diaspora" msgstr "Chan e ach gleus deuchainneil a tha seo. Chan urrainn dhuinn luchd-aithne ion-phortadh on lìonra OStatus (GNU Social/Statusnet) no o dhiaspora*" -#: src/Module/User/Import.php:124 +#: src/Module/User/Import.php:110 msgid "Account file" msgstr "Faidhle a’ chunntais" -#: src/Module/User/Import.php:124 +#: src/Module/User/Import.php:110 msgid "" "To export your account, go to \"Settings->Export your personal data\" and " "select \"Export account\"" msgstr "Airson an cunntas agad às-phortadh, tadhail air “Roghainnean” -> “Às-phortaich an dàta pearsanta agad” agus tagh “Às-phortaich an cunntas”" -#: src/Module/User/Import.php:218 +#: src/Module/User/Import.php:204 msgid "Error decoding account file" msgstr "Mearachd le dì-chòdachadh faidhle a’ chunntais" -#: src/Module/User/Import.php:223 +#: src/Module/User/Import.php:209 msgid "Error! No version data in file! This is not a Friendica account file?" msgstr "Mearachd! Chan eil dàta mun tionndadh san fhaidhle! Nach e faidhle cunntas Friendica a th’ ann?" -#: src/Module/User/Import.php:231 +#: src/Module/User/Import.php:217 #, php-format msgid "User '%s' already exists on this server!" msgstr "Tha an cleachdaiche “%s” air an fhrithealaiche seo mu thràth!" -#: src/Module/User/Import.php:268 +#: src/Module/User/Import.php:254 msgid "User creation error" msgstr "Mearachd a’ cruthachadh a’ chleachdaiche" -#: src/Module/User/Import.php:317 +#: src/Module/User/Import.php:303 #, php-format msgid "%d contact not imported" msgid_plural "%d contacts not imported" @@ -11767,23 +11737,23 @@ msgstr[1] "Tha %d luchd-aithne nach deach ion-phortadh" msgstr[2] "Tha %d luchd-aithne nach deach ion-phortadh" msgstr[3] "Tha %d luchd-aithne nach deach ion-phortadh" -#: src/Module/User/Import.php:366 +#: src/Module/User/Import.php:352 msgid "User profile creation error" msgstr "Mearachd a’ cruthachadh pròifil a’ chleachdaiche" -#: src/Module/User/Import.php:417 +#: src/Module/User/Import.php:403 msgid "Done. You can now login with your username and password" msgstr "Deiseil. ’S urrainn dhut clàradh a-steach leis an ainm-chleachdaiche ’s fhacal-fhaire agad a-nis" -#: src/Module/Welcome.php:44 +#: src/Module/Welcome.php:30 msgid "Welcome to Friendica" msgstr "" -#: src/Module/Welcome.php:45 +#: src/Module/Welcome.php:31 msgid "New Member Checklist" msgstr "" -#: src/Module/Welcome.php:46 +#: src/Module/Welcome.php:32 msgid "" "We would like to offer some tips and links to help make your experience " "enjoyable. Click any item to visit the relevant page. A link to this page " @@ -11791,33 +11761,33 @@ msgid "" "registration and then will quietly disappear." msgstr "" -#: src/Module/Welcome.php:48 +#: src/Module/Welcome.php:34 msgid "Getting Started" msgstr "Toiseach tòiseachaidh" -#: src/Module/Welcome.php:49 +#: src/Module/Welcome.php:35 msgid "Friendica Walk-Through" msgstr "" -#: src/Module/Welcome.php:50 +#: src/Module/Welcome.php:36 msgid "" "On your Quick Start page - find a brief introduction to your " "profile and network tabs, make some new connections, and find some groups to" " join." msgstr "Air an duilleag grad-tòiseachaidh agad – gheibh thu facal-toisich air tabaichean na pròifile ’s an lìonraidh agad, ’s urrainn dhut dàimhean ùra a stèidheachadh is gheibh thu lorg air buidhnean ùra airson ballrachd fhaighinn annta." -#: src/Module/Welcome.php:53 +#: src/Module/Welcome.php:39 msgid "Go to Your Settings" msgstr "" -#: src/Module/Welcome.php:54 +#: src/Module/Welcome.php:40 msgid "" "On your Settings page - change your initial password. Also make a " "note of your Identity Address. This looks just like an email address - and " "will be useful in making friends on the free social web." msgstr "" -#: src/Module/Welcome.php:55 +#: src/Module/Welcome.php:41 msgid "" "Review the other settings, particularly the privacy settings. An unpublished" " directory listing is like having an unlisted phone number. In general, you " @@ -11825,77 +11795,77 @@ msgid "" "potential friends know exactly how to find you." msgstr "" -#: src/Module/Welcome.php:59 +#: src/Module/Welcome.php:45 msgid "" "Upload a profile photo if you have not done so already. Studies have shown " "that people with real photos of themselves are ten times more likely to make" " friends than people who do not." msgstr "" -#: src/Module/Welcome.php:60 +#: src/Module/Welcome.php:46 msgid "Edit Your Profile" msgstr "" -#: src/Module/Welcome.php:61 +#: src/Module/Welcome.php:47 msgid "" "Edit your default profile to your liking. Review the " "settings for hiding your list of friends and hiding the profile from unknown" " visitors." msgstr "" -#: src/Module/Welcome.php:62 +#: src/Module/Welcome.php:48 msgid "Profile Keywords" msgstr "" -#: src/Module/Welcome.php:63 +#: src/Module/Welcome.php:49 msgid "" "Set some public keywords for your profile which describe your interests. We " "may be able to find other people with similar interests and suggest " "friendships." msgstr "" -#: src/Module/Welcome.php:65 +#: src/Module/Welcome.php:51 msgid "Connecting" msgstr "" -#: src/Module/Welcome.php:67 +#: src/Module/Welcome.php:53 msgid "Importing Emails" msgstr "" -#: src/Module/Welcome.php:68 +#: src/Module/Welcome.php:54 msgid "" "Enter your email access information on your Connector Settings page if you " "wish to import and interact with friends or mailing lists from your email " "INBOX" msgstr "Cuir a-steach fiosrachadh inntrigidh dhan phost-d agad air duilleag roghainnean nan ceangladairean agad ma tha thu airson ion-phortadh is co-luadar le caraidean no liostaichean-phuist o BHOGSA a-STEACH a’ phuist-d agad" -#: src/Module/Welcome.php:69 +#: src/Module/Welcome.php:55 msgid "Go to Your Contacts Page" msgstr "" -#: src/Module/Welcome.php:70 +#: src/Module/Welcome.php:56 msgid "" "Your Contacts page is your gateway to managing friendships and connecting " "with friends on other networks. Typically you enter their address or site " "URL in the Add New Contact dialog." msgstr "" -#: src/Module/Welcome.php:71 +#: src/Module/Welcome.php:57 msgid "Go to Your Site's Directory" msgstr "" -#: src/Module/Welcome.php:72 +#: src/Module/Welcome.php:58 msgid "" "The Directory page lets you find other people in this network or other " "federated sites. Look for a Connect or Follow link on " "their profile page. Provide your own Identity Address if requested." msgstr "" -#: src/Module/Welcome.php:73 +#: src/Module/Welcome.php:59 msgid "Finding New People" msgstr "" -#: src/Module/Welcome.php:74 +#: src/Module/Welcome.php:60 msgid "" "On the side panel of the Contacts page are several tools to find new " "friends. We can match people by interest, look up people by name or " @@ -11904,412 +11874,408 @@ msgid "" "hours." msgstr "" -#: src/Module/Welcome.php:77 +#: src/Module/Welcome.php:63 msgid "Add Your Contacts To Circle" msgstr "" -#: src/Module/Welcome.php:78 +#: src/Module/Welcome.php:64 msgid "" "Once you have made some friends, organize them into private conversation " "circles from the sidebar of your Contacts page and then you can interact " "with each circle privately on your Network page." msgstr "" -#: src/Module/Welcome.php:80 +#: src/Module/Welcome.php:66 msgid "Why Aren't My Posts Public?" msgstr "" -#: src/Module/Welcome.php:81 +#: src/Module/Welcome.php:67 msgid "" "Friendica respects your privacy. By default, your posts will only show up to" " people you've added as friends. For more information, see the help section " "from the link above." msgstr "" -#: src/Module/Welcome.php:83 +#: src/Module/Welcome.php:69 msgid "Getting Help" msgstr "" -#: src/Module/Welcome.php:84 +#: src/Module/Welcome.php:70 msgid "Go to the Help Section" msgstr "" -#: src/Module/Welcome.php:85 +#: src/Module/Welcome.php:71 msgid "" "Our help pages may be consulted for detail on other program" " features and resources." msgstr "" -#: src/Navigation/Notifications/Factory/FormattedNavNotification.php:161 +#: src/Navigation/Notifications/Factory/FormattedNavNotification.php:147 msgid "{0} wants to follow you" msgstr "" -#: src/Navigation/Notifications/Factory/FormattedNavNotification.php:163 +#: src/Navigation/Notifications/Factory/FormattedNavNotification.php:149 msgid "{0} has started following you" msgstr "Tha {0} a’ leantainn ort a-nis" -#: src/Navigation/Notifications/Factory/FormattedNotify.php:96 +#: src/Navigation/Notifications/Factory/FormattedNotify.php:82 #, php-format msgid "%s liked %s's post" msgstr "Is toigh le %s am post aig %s" -#: src/Navigation/Notifications/Factory/FormattedNotify.php:108 +#: src/Navigation/Notifications/Factory/FormattedNotify.php:94 #, php-format msgid "%s disliked %s's post" msgstr "Cha toigh le %s am post aig %s" -#: src/Navigation/Notifications/Factory/FormattedNotify.php:120 +#: src/Navigation/Notifications/Factory/FormattedNotify.php:106 #, php-format msgid "%s is attending %s's event" msgstr "Bidh %s an làthair aig an tachartas aig %s" -#: src/Navigation/Notifications/Factory/FormattedNotify.php:132 +#: src/Navigation/Notifications/Factory/FormattedNotify.php:118 #, php-format msgid "%s is not attending %s's event" msgstr "Cha bhi %s an làthair aig an tachartas aig %s" -#: src/Navigation/Notifications/Factory/FormattedNotify.php:144 +#: src/Navigation/Notifications/Factory/FormattedNotify.php:130 #, php-format msgid "%s may attending %s's event" msgstr "’S dòcha gum bi %s an làthair aig an tachartas aig %s" -#: src/Navigation/Notifications/Factory/FormattedNotify.php:174 +#: src/Navigation/Notifications/Factory/FormattedNotify.php:160 #, php-format msgid "%s is now friends with %s" msgstr "" -#: src/Navigation/Notifications/Factory/FormattedNotify.php:341 -#: src/Navigation/Notifications/Factory/FormattedNotify.php:379 +#: src/Navigation/Notifications/Factory/FormattedNotify.php:327 +#: src/Navigation/Notifications/Factory/FormattedNotify.php:365 #, php-format msgid "%s commented on %s's post" msgstr "" -#: src/Navigation/Notifications/Factory/FormattedNotify.php:378 +#: src/Navigation/Notifications/Factory/FormattedNotify.php:364 #, php-format msgid "%s created a new post" msgstr "" -#: src/Navigation/Notifications/Factory/Introduction.php:132 +#: src/Navigation/Notifications/Factory/Introduction.php:118 msgid "Friend Suggestion" msgstr "" -#: src/Navigation/Notifications/Factory/Introduction.php:158 +#: src/Navigation/Notifications/Factory/Introduction.php:144 msgid "Friend/Connect Request" msgstr "" -#: src/Navigation/Notifications/Factory/Introduction.php:158 -msgid "New Follower" -msgstr "" - -#: src/Navigation/Notifications/Factory/Notification.php:134 +#: src/Navigation/Notifications/Factory/Notification.php:120 #, php-format msgid "%1$s wants to follow you" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:136 +#: src/Navigation/Notifications/Factory/Notification.php:122 #, php-format msgid "%1$s has started following you" msgstr "Tha %1$s a’ leantainn ort a-nis" -#: src/Navigation/Notifications/Factory/Notification.php:208 +#: src/Navigation/Notifications/Factory/Notification.php:194 #, php-format msgid "%1$s liked your comment on %2$s" msgstr "’S toigh le %1$s do bheachd air %2$s" -#: src/Navigation/Notifications/Factory/Notification.php:211 +#: src/Navigation/Notifications/Factory/Notification.php:197 #, php-format msgid "%1$s liked your post %2$s" msgstr "Is toigh le %1$s am post %2$s" -#: src/Navigation/Notifications/Factory/Notification.php:218 +#: src/Navigation/Notifications/Factory/Notification.php:204 #, php-format msgid "%1$s disliked your comment on %2$s" msgstr "Cha toigh le %1$s do bheachd air %2$s" -#: src/Navigation/Notifications/Factory/Notification.php:221 +#: src/Navigation/Notifications/Factory/Notification.php:207 #, php-format msgid "%1$s disliked your post %2$s" msgstr "Cha toigh le %1$s am post %2$s" -#: src/Navigation/Notifications/Factory/Notification.php:228 +#: src/Navigation/Notifications/Factory/Notification.php:214 #, php-format msgid "%1$s shared your comment %2$s" msgstr "Cho-roinn %1$s do bheachd %2$s" -#: src/Navigation/Notifications/Factory/Notification.php:231 -#: src/Navigation/Notifications/Factory/Notification.php:316 +#: src/Navigation/Notifications/Factory/Notification.php:217 +#: src/Navigation/Notifications/Factory/Notification.php:302 #, php-format msgid "%1$s shared your post %2$s" msgstr "Cho-roinn %1$s am post agad %2$s" -#: src/Navigation/Notifications/Factory/Notification.php:235 -#: src/Navigation/Notifications/Factory/Notification.php:305 +#: src/Navigation/Notifications/Factory/Notification.php:221 +#: src/Navigation/Notifications/Factory/Notification.php:291 #, php-format msgid "%1$s shared the post %2$s from %3$s" msgstr "Cho-roinn %1$s am post %2$s o %3$s" -#: src/Navigation/Notifications/Factory/Notification.php:237 -#: src/Navigation/Notifications/Factory/Notification.php:307 +#: src/Navigation/Notifications/Factory/Notification.php:223 +#: src/Navigation/Notifications/Factory/Notification.php:293 #, php-format msgid "%1$s shared a post from %3$s" msgstr "Cho-roinn %1$s post o %3$s" -#: src/Navigation/Notifications/Factory/Notification.php:239 -#: src/Navigation/Notifications/Factory/Notification.php:309 +#: src/Navigation/Notifications/Factory/Notification.php:225 +#: src/Navigation/Notifications/Factory/Notification.php:295 #, php-format msgid "%1$s shared the post %2$s" msgstr "Cho-roinn %1$s am post %2$s" -#: src/Navigation/Notifications/Factory/Notification.php:241 -#: src/Navigation/Notifications/Factory/Notification.php:311 +#: src/Navigation/Notifications/Factory/Notification.php:227 +#: src/Navigation/Notifications/Factory/Notification.php:297 #, php-format msgid "%1$s shared a post" msgstr "Cho-roinn %1$s post" -#: src/Navigation/Notifications/Factory/Notification.php:249 +#: src/Navigation/Notifications/Factory/Notification.php:235 #, php-format msgid "%1$s wants to attend your event %2$s" msgstr "Bu mhath le %1$s a bhith an làthair aig an tachartas %2$s agad" -#: src/Navigation/Notifications/Factory/Notification.php:256 +#: src/Navigation/Notifications/Factory/Notification.php:242 #, php-format msgid "%1$s does not want to attend your event %2$s" msgstr "Cha bu mhath le %1$s a bhith an làthair aig an tachartas %2$s agad" -#: src/Navigation/Notifications/Factory/Notification.php:263 +#: src/Navigation/Notifications/Factory/Notification.php:249 #, php-format msgid "%1$s maybe wants to attend your event %2$s" msgstr "’S dòcha gum bu mhath le %1$s a bhith an làthair aig an tachartas %2$s agad" -#: src/Navigation/Notifications/Factory/Notification.php:270 +#: src/Navigation/Notifications/Factory/Notification.php:256 #, php-format msgid "%1$s tagged you on %2$s" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:274 +#: src/Navigation/Notifications/Factory/Notification.php:260 #, php-format msgid "%1$s replied to you on %2$s" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:278 +#: src/Navigation/Notifications/Factory/Notification.php:264 #, php-format msgid "%1$s commented in your thread %2$s" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:282 +#: src/Navigation/Notifications/Factory/Notification.php:268 #, php-format msgid "%1$s commented on your comment %2$s" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:289 +#: src/Navigation/Notifications/Factory/Notification.php:275 #, php-format msgid "%1$s commented in their thread %2$s" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:291 +#: src/Navigation/Notifications/Factory/Notification.php:277 #, php-format msgid "%1$s commented in their thread" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:293 +#: src/Navigation/Notifications/Factory/Notification.php:279 #, php-format msgid "%1$s commented in the thread %2$s from %3$s" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:295 +#: src/Navigation/Notifications/Factory/Notification.php:281 #, php-format msgid "%1$s commented in the thread from %3$s" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:300 +#: src/Navigation/Notifications/Factory/Notification.php:286 #, php-format msgid "%1$s commented on your thread %2$s" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:225 -#: src/Navigation/Notifications/Repository/Notify.php:754 +#: src/Navigation/Notifications/Repository/Notify.php:211 +#: src/Navigation/Notifications/Repository/Notify.php:740 msgid "[Friendica:Notify]" msgstr "[Friendica:Brath]" -#: src/Navigation/Notifications/Repository/Notify.php:293 +#: src/Navigation/Notifications/Repository/Notify.php:279 #, php-format msgid "%s New mail received at %s" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:295 +#: src/Navigation/Notifications/Repository/Notify.php:281 #, php-format msgid "%1$s sent you a new private message at %2$s." msgstr "Chuir %1$s teachdaireachd phrìobhaideach ùr thugad aig %2$s." -#: src/Navigation/Notifications/Repository/Notify.php:296 +#: src/Navigation/Notifications/Repository/Notify.php:282 msgid "a private message" msgstr "teachdaireachd phrìobhaideach" -#: src/Navigation/Notifications/Repository/Notify.php:296 +#: src/Navigation/Notifications/Repository/Notify.php:282 #, php-format msgid "%1$s sent you %2$s." msgstr "Chuir %1$s %2$s thugad." -#: src/Navigation/Notifications/Repository/Notify.php:298 +#: src/Navigation/Notifications/Repository/Notify.php:284 #, php-format msgid "Please visit %s to view and/or reply to your private messages." msgstr "Tadhail air %s a shealltainn agus/no a’ freagairt dha na teachdaireachdan prìobhaideach agad." -#: src/Navigation/Notifications/Repository/Notify.php:328 +#: src/Navigation/Notifications/Repository/Notify.php:314 #, php-format msgid "%1$s commented on %2$s's %3$s %4$s" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:333 +#: src/Navigation/Notifications/Repository/Notify.php:319 #, php-format msgid "%1$s commented on your %2$s %3$s" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:337 +#: src/Navigation/Notifications/Repository/Notify.php:323 #, php-format msgid "%1$s commented on their %2$s %3$s" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:341 -#: src/Navigation/Notifications/Repository/Notify.php:788 +#: src/Navigation/Notifications/Repository/Notify.php:327 +#: src/Navigation/Notifications/Repository/Notify.php:774 #, php-format msgid "%1$s Comment to conversation #%2$d by %3$s" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:343 +#: src/Navigation/Notifications/Repository/Notify.php:329 #, php-format msgid "%s commented on an item/conversation you have been following." msgstr "Chuir %s beachd ri nì/còmhradh air a bheil thu a’ leantainn." -#: src/Navigation/Notifications/Repository/Notify.php:347 -#: src/Navigation/Notifications/Repository/Notify.php:362 -#: src/Navigation/Notifications/Repository/Notify.php:814 +#: src/Navigation/Notifications/Repository/Notify.php:333 +#: src/Navigation/Notifications/Repository/Notify.php:348 +#: src/Navigation/Notifications/Repository/Notify.php:800 #, php-format msgid "Please visit %s to view and/or reply to the conversation." msgstr "Tadhail air %s a shealltainn agus/no a’ freagairt dhan chòmhradh." -#: src/Navigation/Notifications/Repository/Notify.php:354 +#: src/Navigation/Notifications/Repository/Notify.php:340 #, php-format msgid "%s %s posted to your profile wall" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:356 +#: src/Navigation/Notifications/Repository/Notify.php:342 #, php-format msgid "%1$s posted to your profile wall at %2$s" msgstr "Chuir %1$s post ri balla na pròifil agad aig %2$s" -#: src/Navigation/Notifications/Repository/Notify.php:357 +#: src/Navigation/Notifications/Repository/Notify.php:343 #, php-format msgid "%1$s posted to [url=%2$s]your wall[/url]" msgstr "Chuir %1$s post ris [url=%2$s]a’ bhalla agad[/url]" -#: src/Navigation/Notifications/Repository/Notify.php:370 +#: src/Navigation/Notifications/Repository/Notify.php:356 #, php-format msgid "%s Introduction received" msgstr "%s Fhuair thu cur an aithne" -#: src/Navigation/Notifications/Repository/Notify.php:372 +#: src/Navigation/Notifications/Repository/Notify.php:358 #, php-format msgid "You've received an introduction from '%1$s' at %2$s" msgstr "Fhuair thu cur an aithne o “%1$s” aig %2$s" -#: src/Navigation/Notifications/Repository/Notify.php:373 +#: src/Navigation/Notifications/Repository/Notify.php:359 #, php-format msgid "You've received [url=%1$s]an introduction[/url] from %2$s." msgstr "Fhuair thu [url=%1$s]cur an aithne[/url] o %2$s." -#: src/Navigation/Notifications/Repository/Notify.php:378 -#: src/Navigation/Notifications/Repository/Notify.php:424 +#: src/Navigation/Notifications/Repository/Notify.php:364 +#: src/Navigation/Notifications/Repository/Notify.php:410 #, php-format msgid "You may visit their profile at %s" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:380 +#: src/Navigation/Notifications/Repository/Notify.php:366 #, php-format msgid "Please visit %s to approve or reject the introduction." msgstr "Tadhail air %s a ghabhail ris no a dhiùltadh a’ chuir an aithne." -#: src/Navigation/Notifications/Repository/Notify.php:387 +#: src/Navigation/Notifications/Repository/Notify.php:373 #, php-format msgid "%s A new person is sharing with you" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:389 -#: src/Navigation/Notifications/Repository/Notify.php:390 +#: src/Navigation/Notifications/Repository/Notify.php:375 +#: src/Navigation/Notifications/Repository/Notify.php:376 #, php-format msgid "%1$s is sharing with you at %2$s" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:397 +#: src/Navigation/Notifications/Repository/Notify.php:383 #, php-format msgid "%s You have a new follower" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:399 -#: src/Navigation/Notifications/Repository/Notify.php:400 +#: src/Navigation/Notifications/Repository/Notify.php:385 +#: src/Navigation/Notifications/Repository/Notify.php:386 #, php-format msgid "You have a new follower at %2$s : %1$s" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:413 +#: src/Navigation/Notifications/Repository/Notify.php:399 #, php-format msgid "%s Friend suggestion received" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:415 +#: src/Navigation/Notifications/Repository/Notify.php:401 #, php-format msgid "You've received a friend suggestion from '%1$s' at %2$s" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:416 +#: src/Navigation/Notifications/Repository/Notify.php:402 #, php-format msgid "" "You've received [url=%1$s]a friend suggestion[/url] for %2$s from %3$s." msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:422 +#: src/Navigation/Notifications/Repository/Notify.php:408 msgid "Name:" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:423 +#: src/Navigation/Notifications/Repository/Notify.php:409 msgid "Photo:" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:426 +#: src/Navigation/Notifications/Repository/Notify.php:412 #, php-format msgid "Please visit %s to approve or reject the suggestion." msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:434 -#: src/Navigation/Notifications/Repository/Notify.php:449 +#: src/Navigation/Notifications/Repository/Notify.php:420 +#: src/Navigation/Notifications/Repository/Notify.php:435 #, php-format msgid "%s Connection accepted" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:436 -#: src/Navigation/Notifications/Repository/Notify.php:451 +#: src/Navigation/Notifications/Repository/Notify.php:422 +#: src/Navigation/Notifications/Repository/Notify.php:437 #, php-format msgid "'%1$s' has accepted your connection request at %2$s" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:437 -#: src/Navigation/Notifications/Repository/Notify.php:452 +#: src/Navigation/Notifications/Repository/Notify.php:423 +#: src/Navigation/Notifications/Repository/Notify.php:438 #, php-format msgid "%2$s has accepted your [url=%1$s]connection request[/url]." msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:442 +#: src/Navigation/Notifications/Repository/Notify.php:428 msgid "" "You are now mutual friends and may exchange status updates, photos, and " "email without restriction." msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:444 +#: src/Navigation/Notifications/Repository/Notify.php:430 #, php-format msgid "Please visit %s if you wish to make any changes to this relationship." msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:457 +#: src/Navigation/Notifications/Repository/Notify.php:443 #, php-format msgid "" "'%1$s' has chosen to accept you a fan, which restricts some forms of " @@ -12318,34 +12284,34 @@ msgid "" "automatically." msgstr "Ghabh “%1$s” riut ’nad dhealasach is cuingichidh sin an conaltradh – can teachdaireachdan prìobhaideach is cuid dhen cho-luadar air a’ phròifil. Mas e duilleag cuideigin chliùitich no duilleag coimhearsnachd a th’ ann, chaidh na roghainnean seo a chur an sàs gu fèin-obrachail." -#: src/Navigation/Notifications/Repository/Notify.php:459 +#: src/Navigation/Notifications/Repository/Notify.php:445 #, php-format msgid "" "'%1$s' may choose to extend this into a two-way or more permissive " "relationship in the future." msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:461 +#: src/Navigation/Notifications/Repository/Notify.php:447 #, php-format msgid "Please visit %s if you wish to make any changes to this relationship." msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:471 +#: src/Navigation/Notifications/Repository/Notify.php:457 msgid "registration request" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:473 +#: src/Navigation/Notifications/Repository/Notify.php:459 #, php-format msgid "You've received a registration request from '%1$s' at %2$s" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:474 +#: src/Navigation/Notifications/Repository/Notify.php:460 #, php-format msgid "You've received a [url=%1$s]registration request[/url] from %2$s." msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:479 -#: src/Navigation/Notifications/Repository/Notify.php:500 +#: src/Navigation/Notifications/Repository/Notify.php:465 +#: src/Navigation/Notifications/Repository/Notify.php:486 #, php-format msgid "" "Display Name:\t%s\n" @@ -12353,288 +12319,288 @@ msgid "" "Login Name:\t%s (%s)" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:485 +#: src/Navigation/Notifications/Repository/Notify.php:471 #, php-format msgid "Please visit %s to approve or reject the request." msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:492 +#: src/Navigation/Notifications/Repository/Notify.php:478 msgid "new registration" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:494 +#: src/Navigation/Notifications/Repository/Notify.php:480 #, php-format msgid "You've received a new registration from '%1$s' at %2$s" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:495 +#: src/Navigation/Notifications/Repository/Notify.php:481 #, php-format msgid "You've received a [url=%1$s]new registration[/url] from %2$s." msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:506 +#: src/Navigation/Notifications/Repository/Notify.php:492 #, php-format msgid "Please visit %s to have a look at the new registration." msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:782 +#: src/Navigation/Notifications/Repository/Notify.php:768 #, php-format msgid "%s %s tagged you" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:785 +#: src/Navigation/Notifications/Repository/Notify.php:771 #, php-format msgid "%s %s shared a new post" msgstr "Cho-roinn %s%s post ùr" -#: src/Navigation/Notifications/Repository/Notify.php:793 +#: src/Navigation/Notifications/Repository/Notify.php:779 #, php-format msgid "%1$s %2$s liked your post #%3$d" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:796 +#: src/Navigation/Notifications/Repository/Notify.php:782 #, php-format msgid "%1$s %2$s liked your comment on #%3$d" msgstr "" -#: src/Object/EMail/ItemCCEMail.php:42 +#: src/Object/EMail/ItemCCEMail.php:28 #, php-format msgid "" "This message was sent to you by %s, a member of the Friendica social " "network." msgstr "" -#: src/Object/EMail/ItemCCEMail.php:44 +#: src/Object/EMail/ItemCCEMail.php:30 #, php-format msgid "You may visit them online at %s" msgstr "" -#: src/Object/EMail/ItemCCEMail.php:45 +#: src/Object/EMail/ItemCCEMail.php:31 msgid "" "Please contact the sender by replying to this post if you do not wish to " "receive these messages." msgstr "" -#: src/Object/EMail/ItemCCEMail.php:49 +#: src/Object/EMail/ItemCCEMail.php:35 #, php-format msgid "%s posted an update." msgstr "" -#: src/Object/Post.php:138 +#: src/Object/Post.php:124 msgid "Private Message" msgstr "Teachdaireachd phrìobhaideach" -#: src/Object/Post.php:142 +#: src/Object/Post.php:128 msgid "Public Message" msgstr "Teachdaireachd phoblach" -#: src/Object/Post.php:146 +#: src/Object/Post.php:132 msgid "Unlisted Message" msgstr "Teachdaireachd fhalaichte o liostaichean" -#: src/Object/Post.php:182 +#: src/Object/Post.php:168 msgid "This entry was edited" msgstr "Chaidh an nì seo a dheasachadh" -#: src/Object/Post.php:210 +#: src/Object/Post.php:196 msgid "Connector Message" msgstr "Teachdaireachd ceangladair" -#: src/Object/Post.php:239 src/Object/Post.php:241 +#: src/Object/Post.php:225 src/Object/Post.php:227 msgid "Edit" msgstr "Deasaich" -#: src/Object/Post.php:275 +#: src/Object/Post.php:261 msgid "Delete globally" msgstr "Sguab às sa cho-nasgadh" -#: src/Object/Post.php:275 +#: src/Object/Post.php:261 msgid "Remove locally" msgstr "Thoir air falbh gu h-ionadail" -#: src/Object/Post.php:282 +#: src/Object/Post.php:268 #, php-format msgid "Block %s" msgstr "Bac %s" -#: src/Object/Post.php:287 +#: src/Object/Post.php:273 #, php-format msgid "Ignore %s" msgstr "" -#: src/Object/Post.php:292 +#: src/Object/Post.php:278 #, php-format msgid "Collapse %s" msgstr "" -#: src/Object/Post.php:296 +#: src/Object/Post.php:282 msgid "Report post" msgstr "" -#: src/Object/Post.php:307 +#: src/Object/Post.php:293 msgid "Save to folder" msgstr "Sàbhail gu pasgan" -#: src/Object/Post.php:347 +#: src/Object/Post.php:333 msgid "I will attend" msgstr "Bidh mi an làthair" -#: src/Object/Post.php:347 +#: src/Object/Post.php:333 msgid "I will not attend" msgstr "Cha bhi mi ann" -#: src/Object/Post.php:347 +#: src/Object/Post.php:333 msgid "I might attend" msgstr "Dh’fhaoidte gum bi mi an làthair" -#: src/Object/Post.php:394 +#: src/Object/Post.php:380 msgid "Ignore thread" msgstr "Leig seachad an snàithlean" -#: src/Object/Post.php:395 +#: src/Object/Post.php:381 msgid "Unignore thread" msgstr "Na leig seachad an snàithlean tuilleadh" -#: src/Object/Post.php:396 +#: src/Object/Post.php:382 msgid "Toggle ignore status" msgstr "Toglaich staid na leigeil seachad" -#: src/Object/Post.php:406 +#: src/Object/Post.php:392 msgid "Add star" msgstr "Cuir rionnag ris" -#: src/Object/Post.php:407 +#: src/Object/Post.php:393 msgid "Remove star" msgstr "Thoir an rionnag air falbh" -#: src/Object/Post.php:408 +#: src/Object/Post.php:394 msgid "Toggle star status" msgstr "Toglaich staid na rionnaige" -#: src/Object/Post.php:419 +#: src/Object/Post.php:405 msgid "Pin" msgstr "Prìnich" -#: src/Object/Post.php:420 +#: src/Object/Post.php:406 msgid "Unpin" msgstr "Dì-phrìnich" -#: src/Object/Post.php:421 +#: src/Object/Post.php:407 msgid "Toggle pin status" msgstr "Toglaich staid a’ phrìneachaidh" -#: src/Object/Post.php:424 +#: src/Object/Post.php:410 msgid "Pinned" msgstr "Prìnichte" -#: src/Object/Post.php:429 +#: src/Object/Post.php:415 msgid "Add tag" msgstr "Cuir taga ris" -#: src/Object/Post.php:444 +#: src/Object/Post.php:430 msgid "Quote share this" msgstr "Co-roinn seo le iomradh" -#: src/Object/Post.php:444 +#: src/Object/Post.php:430 msgid "Quote Share" msgstr "Iomradh" -#: src/Object/Post.php:447 +#: src/Object/Post.php:433 msgid "Reshare this" msgstr "Co-roinn seo às ùr" -#: src/Object/Post.php:447 +#: src/Object/Post.php:433 msgid "Reshare" msgstr "Co-roinn" -#: src/Object/Post.php:448 +#: src/Object/Post.php:434 msgid "Cancel your Reshare" msgstr "Sguir dhen cho-roinneadh agad" -#: src/Object/Post.php:448 +#: src/Object/Post.php:434 msgid "Unshare" msgstr "Na co-roinn" -#: src/Object/Post.php:492 +#: src/Object/Post.php:478 #, php-format msgid "%s (Received %s)" msgstr "%s (air fhaighinn %s)" -#: src/Object/Post.php:498 +#: src/Object/Post.php:484 msgid "Comment this item on your system" msgstr "Thoir beachd ris an nì seo san t-siostam agad" -#: src/Object/Post.php:498 +#: src/Object/Post.php:484 msgid "Remote comment" msgstr "Beachd cèin" -#: src/Object/Post.php:520 +#: src/Object/Post.php:506 msgid "Share via ..." msgstr "Co-roinn slighe…" -#: src/Object/Post.php:520 +#: src/Object/Post.php:506 msgid "Share via external services" msgstr "Co-roinn slighe seirbheise cèine" -#: src/Object/Post.php:527 +#: src/Object/Post.php:513 msgid "Unknown parent" msgstr "" -#: src/Object/Post.php:531 +#: src/Object/Post.php:517 #, php-format msgid "in reply to %s" msgstr "" -#: src/Object/Post.php:533 +#: src/Object/Post.php:519 msgid "Parent is probably private or not federated." msgstr "" -#: src/Object/Post.php:557 +#: src/Object/Post.php:543 msgid "to" msgstr "gu" -#: src/Object/Post.php:558 +#: src/Object/Post.php:544 msgid "via" msgstr "slighe" -#: src/Object/Post.php:559 +#: src/Object/Post.php:545 msgid "Wall-to-Wall" msgstr "Balla gu balla" -#: src/Object/Post.php:560 +#: src/Object/Post.php:546 msgid "via Wall-To-Wall:" msgstr "slighe balla bu balla:" -#: src/Object/Post.php:613 +#: src/Object/Post.php:599 #, php-format msgid "Reply to %s" msgstr "Freagair gu %s" -#: src/Object/Post.php:616 +#: src/Object/Post.php:602 msgid "More" msgstr "Barrachd" -#: src/Object/Post.php:635 +#: src/Object/Post.php:621 msgid "Notifier task is pending" msgstr "" -#: src/Object/Post.php:636 +#: src/Object/Post.php:622 msgid "Delivery to remote servers is pending" msgstr "" -#: src/Object/Post.php:637 +#: src/Object/Post.php:623 msgid "Delivery to remote servers is underway" msgstr "" -#: src/Object/Post.php:638 +#: src/Object/Post.php:624 msgid "Delivery to remote servers is mostly done" msgstr "" -#: src/Object/Post.php:639 +#: src/Object/Post.php:625 msgid "Delivery to remote servers is done" msgstr "" -#: src/Object/Post.php:661 +#: src/Object/Post.php:647 #, php-format msgid "%d comment" msgid_plural "%d comments" @@ -12643,485 +12609,467 @@ msgstr[1] "%d bheachd" msgstr[2] "%d beachdan" msgstr[3] "%d beachd" -#: src/Object/Post.php:662 +#: src/Object/Post.php:648 msgid "Show more" msgstr "Seall barrachd dheth" -#: src/Object/Post.php:663 +#: src/Object/Post.php:649 msgid "Show fewer" msgstr "Seall nas lugha dheth" -#: src/Object/Post.php:700 +#: src/Object/Post.php:686 #, php-format msgid "Reshared by: %s" msgstr "’Ga cho-roinneadh le: %s " -#: src/Object/Post.php:705 +#: src/Object/Post.php:691 #, php-format msgid "Viewed by: %s" msgstr "Air a choimhead air le: %s" -#: src/Object/Post.php:710 +#: src/Object/Post.php:696 #, php-format msgid "Read by: %s" msgstr "" -#: src/Object/Post.php:715 +#: src/Object/Post.php:701 #, php-format msgid "Liked by: %s" msgstr "’S toil le %s seo" -#: src/Object/Post.php:720 +#: src/Object/Post.php:706 #, php-format msgid "Disliked by: %s" msgstr "Cha toil le %s seo" -#: src/Object/Post.php:725 +#: src/Object/Post.php:711 #, php-format msgid "Attended by: %s" msgstr "An làthair: %s" -#: src/Object/Post.php:730 +#: src/Object/Post.php:716 #, php-format msgid "Maybe attended by: %s" msgstr "An làthair ’s dòcha: %s" -#: src/Object/Post.php:735 +#: src/Object/Post.php:721 #, php-format msgid "Not attended by: %s" msgstr "Gun a bhith an làthair: %s" -#: src/Object/Post.php:740 +#: src/Object/Post.php:726 #, php-format msgid "Commented by: %s" msgstr "" -#: src/Object/Post.php:745 +#: src/Object/Post.php:731 #, php-format msgid "Reacted with %s by: %s" msgstr "Chaidh freagairt le %s le: %s" -#: src/Object/Post.php:768 +#: src/Object/Post.php:754 #, php-format msgid "Quote shared by: %s" msgstr "" -#: src/Protocol/ActivityPub/Receiver.php:571 +#: src/Protocol/ActivityPub/Receiver.php:557 msgid "Chat" msgstr "" -#: src/Protocol/Delivery.php:544 +#: src/Protocol/Delivery.php:530 msgid "(no subject)" msgstr "(gun chuspair)" -#: src/Protocol/OStatus.php:1392 -#, php-format -msgid "%s is now following %s." -msgstr "Tha %s a’ leantainn %s a-nis." - -#: src/Protocol/OStatus.php:1393 -msgid "following" -msgstr "" - -#: src/Protocol/OStatus.php:1396 -#, php-format -msgid "%s stopped following %s." -msgstr "Chan eil %s a’ leantainn %s tuilleadh." - -#: src/Protocol/OStatus.php:1397 -msgid "stopped following" -msgstr "" - -#: src/Render/FriendicaSmartyEngine.php:56 +#: src/Render/FriendicaSmartyEngine.php:42 #, php-format msgid "The folder %s must be writable by webserver." msgstr "Ceumaidh cead sgrìobhaidh dhan phasgan %s a bhith aig an fhrithealaiche-lìn." -#: src/Security/Authentication.php:214 +#: src/Security/Authentication.php:200 msgid "Login failed." msgstr "Dh’fhàillig leis a’ chlàradh a-steach." -#: src/Security/Authentication.php:259 +#: src/Security/Authentication.php:245 msgid "Login failed. Please check your credentials." msgstr "Dh’fhàillig leis a’ chlàradh a-steach. Thoir sùil air an teisteas agad." -#: src/Security/Authentication.php:373 +#: src/Security/Authentication.php:359 #, php-format msgid "Welcome %s" msgstr "Fàilte ort, %s" -#: src/Security/Authentication.php:374 +#: src/Security/Authentication.php:360 msgid "Please upload a profile photo." msgstr "An luchdaich thu suas dealbh pròifile?" -#: src/Security/OpenWebAuth.php:163 +#: src/Security/OpenWebAuth.php:149 #, php-format msgid "OpenWebAuth: %1$s welcomes %2$s" msgstr "OpenWebAuth: Tha %1$s a’ cur fàilte air %2$s" -#: src/Util/EMailer/MailBuilder.php:260 +#: src/Util/EMailer/MailBuilder.php:246 msgid "Friendica Notification" msgstr "Brath Friendica" -#: src/Util/EMailer/NotifyMailBuilder.php:78 -#: src/Util/EMailer/SystemMailBuilder.php:54 +#: src/Util/EMailer/NotifyMailBuilder.php:64 +#: src/Util/EMailer/SystemMailBuilder.php:40 #, php-format msgid "%1$s, %2$s Administrator" msgstr "%1$s, rianaire %2$s" -#: src/Util/EMailer/NotifyMailBuilder.php:80 -#: src/Util/EMailer/SystemMailBuilder.php:56 +#: src/Util/EMailer/NotifyMailBuilder.php:66 +#: src/Util/EMailer/SystemMailBuilder.php:42 #, php-format msgid "%s Administrator" msgstr "Rianaire %s" -#: src/Util/EMailer/NotifyMailBuilder.php:193 -#: src/Util/EMailer/NotifyMailBuilder.php:217 -#: src/Util/EMailer/SystemMailBuilder.php:101 -#: src/Util/EMailer/SystemMailBuilder.php:118 +#: src/Util/EMailer/NotifyMailBuilder.php:179 +#: src/Util/EMailer/NotifyMailBuilder.php:203 +#: src/Util/EMailer/SystemMailBuilder.php:87 +#: src/Util/EMailer/SystemMailBuilder.php:104 msgid "thanks" msgstr "mòran taing" -#: src/Util/Temporal.php:172 +#: src/Util/Temporal.php:158 msgid "YYYY-MM-DD or MM-DD" msgstr "YYYY-MM-DD no MM-DD" -#: src/Util/Temporal.php:280 +#: src/Util/Temporal.php:266 #, php-format msgid "Time zone: %s Change in Settings" msgstr "Roinn-tìde: %s Atharraich i sna roghainnean" -#: src/Util/Temporal.php:320 src/Util/Temporal.php:329 +#: src/Util/Temporal.php:306 src/Util/Temporal.php:315 msgid "never" msgstr "chan ann idir" -#: src/Util/Temporal.php:343 +#: src/Util/Temporal.php:329 msgid "less than a second ago" msgstr "nas lugha na diog air ais" -#: src/Util/Temporal.php:352 +#: src/Util/Temporal.php:338 msgid "year" msgstr "bhliadhna" -#: src/Util/Temporal.php:352 +#: src/Util/Temporal.php:338 msgid "years" msgstr "bliadhna(ichean)" -#: src/Util/Temporal.php:353 +#: src/Util/Temporal.php:339 msgid "months" msgstr "mìos(an)" -#: src/Util/Temporal.php:354 +#: src/Util/Temporal.php:340 msgid "weeks" msgstr "seachdain(ean)" -#: src/Util/Temporal.php:355 +#: src/Util/Temporal.php:341 msgid "days" msgstr "là(ithean)" -#: src/Util/Temporal.php:356 +#: src/Util/Temporal.php:342 msgid "hour" msgstr "uair a thìde" -#: src/Util/Temporal.php:356 +#: src/Util/Temporal.php:342 msgid "hours" msgstr "uair(ean) a thìde" -#: src/Util/Temporal.php:357 +#: src/Util/Temporal.php:343 msgid "minute" msgstr "mhionaid" -#: src/Util/Temporal.php:357 +#: src/Util/Temporal.php:343 msgid "minutes" msgstr "mionaid(ean)" -#: src/Util/Temporal.php:358 +#: src/Util/Temporal.php:344 msgid "second" msgstr "dhiog" -#: src/Util/Temporal.php:358 +#: src/Util/Temporal.php:344 msgid "seconds" msgstr "diog(an)" -#: src/Util/Temporal.php:367 +#: src/Util/Temporal.php:353 #, php-format msgid "in %1$d %2$s" msgstr "an ceann %1$d %2$s" -#: src/Util/Temporal.php:370 +#: src/Util/Temporal.php:356 #, php-format msgid "%1$d %2$s ago" msgstr "%1$d %2$s air ais" -#: src/Worker/PushSubscription.php:110 +#: src/Worker/PushSubscription.php:96 msgid "Notification from Friendica" msgstr "Brath o Friendica" -#: src/Worker/PushSubscription.php:111 +#: src/Worker/PushSubscription.php:97 msgid "Empty Post" msgstr "Post falamh" -#: view/theme/duepuntozero/config.php:68 +#: view/theme/duepuntozero/config.php:56 msgid "default" msgstr "bunaiteach" -#: view/theme/duepuntozero/config.php:69 +#: view/theme/duepuntozero/config.php:57 msgid "greenzero" msgstr "" -#: view/theme/duepuntozero/config.php:70 +#: view/theme/duepuntozero/config.php:58 msgid "purplezero" msgstr "" -#: view/theme/duepuntozero/config.php:71 +#: view/theme/duepuntozero/config.php:59 msgid "easterbunny" msgstr "" -#: view/theme/duepuntozero/config.php:72 +#: view/theme/duepuntozero/config.php:60 msgid "darkzero" msgstr "" -#: view/theme/duepuntozero/config.php:73 +#: view/theme/duepuntozero/config.php:61 msgid "comix" msgstr "" -#: view/theme/duepuntozero/config.php:74 +#: view/theme/duepuntozero/config.php:62 msgid "slackr" msgstr "" -#: view/theme/duepuntozero/config.php:87 +#: view/theme/duepuntozero/config.php:75 msgid "Variations" msgstr "Fiamhan" -#: view/theme/frio/config.php:146 +#: view/theme/frio/config.php:134 msgid "Note" msgstr "An aire" -#: view/theme/frio/config.php:146 +#: view/theme/frio/config.php:134 msgid "Check image permissions if all users are allowed to see the image" msgstr "Thoir sùil air ceadan an deilbh ma dh’fhaodas a h-uile cleachdaiche an dealbh fhaicinn" -#: view/theme/frio/config.php:152 +#: view/theme/frio/config.php:140 msgid "Appearance" msgstr "" -#: view/theme/frio/config.php:153 +#: view/theme/frio/config.php:141 msgid "Accent color" msgstr "" -#: view/theme/frio/config.php:153 +#: view/theme/frio/config.php:141 msgid "Blue" msgstr "Gorm" -#: view/theme/frio/config.php:153 +#: view/theme/frio/config.php:141 msgid "Red" msgstr "Dearg" -#: view/theme/frio/config.php:153 +#: view/theme/frio/config.php:141 msgid "Purple" msgstr "Purpaidh" -#: view/theme/frio/config.php:153 +#: view/theme/frio/config.php:141 msgid "Green" msgstr "Uaine" -#: view/theme/frio/config.php:153 +#: view/theme/frio/config.php:141 msgid "Pink" msgstr "Pinc" -#: view/theme/frio/config.php:154 +#: view/theme/frio/config.php:142 msgid "Copy or paste schemestring" msgstr "Dèan lethbhreac no cuir ann sreang sgeama" -#: view/theme/frio/config.php:154 +#: view/theme/frio/config.php:142 msgid "" "You can copy this string to share your theme with others. Pasting here " "applies the schemestring" msgstr "’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:155 +#: view/theme/frio/config.php:143 msgid "Navigation bar background color" msgstr "Dath cùlaibh bàr na seòladaireachd" -#: view/theme/frio/config.php:156 +#: view/theme/frio/config.php:144 msgid "Navigation bar icon color " msgstr "Dath ìomhaigheagan bàr na seòladaireachd " -#: view/theme/frio/config.php:157 +#: view/theme/frio/config.php:145 msgid "Link color" msgstr "Dath nan ceanglaichean" -#: view/theme/frio/config.php:158 +#: view/theme/frio/config.php:146 msgid "Set the background color" msgstr "Suidhich dath a’ chùlaibh" -#: view/theme/frio/config.php:159 +#: view/theme/frio/config.php:147 msgid "Content background opacity" msgstr "Trìd-dhoilleireachd cùlaibh na susbainte" -#: view/theme/frio/config.php:160 +#: view/theme/frio/config.php:148 msgid "Set the background image" msgstr "Suidhich dealbh a’ chùlaibh" -#: view/theme/frio/config.php:161 +#: view/theme/frio/config.php:149 msgid "Background image style" msgstr "Stoidhle dealbh a’ chùlaibh" -#: view/theme/frio/config.php:164 +#: view/theme/frio/config.php:152 msgid "Always open Compose page" msgstr "Fosgail duilleag an sgrìobhaidh an-còmhnaidh" -#: view/theme/frio/config.php:164 +#: view/theme/frio/config.php:152 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:168 +#: view/theme/frio/config.php:156 msgid "Login page background image" msgstr "" -#: view/theme/frio/config.php:172 +#: view/theme/frio/config.php:160 msgid "Login page background color" msgstr "" -#: view/theme/frio/config.php:172 +#: view/theme/frio/config.php:160 msgid "Leave background image and color empty for theme defaults" msgstr "Fàg dealbh ’s dath a’ chùlaibh bàn do bhun-roghainnean an ùrlair" -#: view/theme/frio/php/Image.php:39 +#: view/theme/frio/php/Image.php:27 msgid "Top Banner" msgstr "" -#: view/theme/frio/php/Image.php:39 +#: view/theme/frio/php/Image.php:27 msgid "" "Resize image to the width of the screen and show background color below on " "long pages." msgstr "" -#: view/theme/frio/php/Image.php:40 +#: view/theme/frio/php/Image.php:28 msgid "Full screen" msgstr "" -#: view/theme/frio/php/Image.php:40 +#: view/theme/frio/php/Image.php:28 msgid "" "Resize image to fill entire screen, clipping either the right or the bottom." msgstr "" -#: view/theme/frio/php/Image.php:41 +#: view/theme/frio/php/Image.php:29 msgid "Single row mosaic" msgstr "" -#: view/theme/frio/php/Image.php:41 +#: view/theme/frio/php/Image.php:29 msgid "" "Resize image to repeat it on a single row, either vertical or horizontal." msgstr "" -#: view/theme/frio/php/Image.php:42 +#: view/theme/frio/php/Image.php:30 msgid "Mosaic" msgstr "" -#: view/theme/frio/php/Image.php:42 +#: view/theme/frio/php/Image.php:30 msgid "Repeat image to fill the screen." msgstr "" -#: view/theme/frio/php/default.php:82 view/theme/frio/php/standard.php:40 +#: view/theme/frio/php/default.php:70 view/theme/frio/php/standard.php:28 msgid "Skip to main content" msgstr "" -#: view/theme/frio/php/default.php:153 view/theme/frio/php/standard.php:75 +#: view/theme/frio/php/default.php:141 view/theme/frio/php/standard.php:63 msgid "Back to top" msgstr "" -#: view/theme/frio/php/scheme.php:105 +#: view/theme/frio/php/scheme.php:93 msgid "Light" msgstr "" -#: view/theme/frio/php/scheme.php:106 +#: view/theme/frio/php/scheme.php:94 msgid "Dark" msgstr "" -#: view/theme/frio/php/scheme.php:107 +#: view/theme/frio/php/scheme.php:95 msgid "Black" msgstr "" -#: view/theme/frio/php/scheme.php:118 +#: view/theme/frio/php/scheme.php:106 msgid "Custom" msgstr "Gnàthaichte" -#: view/theme/frio/theme.php:214 +#: view/theme/frio/theme.php:202 msgid "Guest" msgstr "" -#: view/theme/frio/theme.php:217 +#: view/theme/frio/theme.php:205 msgid "Visitor" msgstr "" -#: view/theme/quattro/config.php:89 +#: view/theme/quattro/config.php:77 msgid "Alignment" msgstr "" -#: view/theme/quattro/config.php:89 +#: view/theme/quattro/config.php:77 msgid "Left" msgstr "" -#: view/theme/quattro/config.php:89 +#: view/theme/quattro/config.php:77 msgid "Center" msgstr "" -#: view/theme/quattro/config.php:90 +#: view/theme/quattro/config.php:78 msgid "Color scheme" msgstr "" -#: view/theme/quattro/config.php:91 +#: view/theme/quattro/config.php:79 msgid "Posts font size" msgstr "" -#: view/theme/quattro/config.php:92 +#: view/theme/quattro/config.php:80 msgid "Textareas font size" msgstr "" -#: view/theme/vier/config.php:91 +#: view/theme/vier/config.php:79 msgid "Comma separated list of helper groups" msgstr "" -#: view/theme/vier/config.php:131 +#: view/theme/vier/config.php:119 msgid "don't show" msgstr "" -#: view/theme/vier/config.php:131 +#: view/theme/vier/config.php:119 msgid "show" msgstr "" -#: view/theme/vier/config.php:137 +#: view/theme/vier/config.php:125 msgid "Set style" msgstr "" -#: view/theme/vier/config.php:138 +#: view/theme/vier/config.php:126 msgid "Community Pages" msgstr "" -#: view/theme/vier/config.php:139 view/theme/vier/theme.php:148 +#: view/theme/vier/config.php:127 view/theme/vier/theme.php:136 msgid "Community Profiles" msgstr "" -#: view/theme/vier/config.php:140 +#: view/theme/vier/config.php:128 msgid "Help or @NewHere ?" msgstr "" -#: view/theme/vier/config.php:141 view/theme/vier/theme.php:319 +#: view/theme/vier/config.php:129 view/theme/vier/theme.php:307 msgid "Connect Services" msgstr "" -#: view/theme/vier/config.php:142 +#: view/theme/vier/config.php:130 msgid "Find Friends" msgstr "" -#: view/theme/vier/config.php:143 view/theme/vier/theme.php:175 +#: view/theme/vier/config.php:131 view/theme/vier/theme.php:163 msgid "Last users" msgstr "" -#: view/theme/vier/theme.php:234 +#: view/theme/vier/theme.php:222 msgid "Quick Start" msgstr "Grad-tòiseachadh" diff --git a/view/lang/gd/strings.php b/view/lang/gd/strings.php index 529c9795f5..71d9a4c6d2 100644 --- a/view/lang/gd/strings.php +++ b/view/lang/gd/strings.php @@ -832,7 +832,6 @@ $a->strings['An author or name was not found.'] = 'Cha deach an t-ùghdar no ain $a->strings['No browser URL could be matched to this address.'] = 'Cha b’ urrainn dhuinn URL a’ bhrabhsair a mhaidseadh ris an t-seòladh seo.'; $a->strings['Unable to match @-style Identity Address with a known protocol or email contact.'] = 'Tha b’ urrainn dhuinn an seòladh-aithne san stoidhle @ a mhaidseadh le pròtacal as aithne dhuinn no neach-aithne puist-d.'; $a->strings['Use mailto: in front of address to force email check.'] = 'Cleachd mailto: ron t-seòladh airson sgrùdadh nam post-d a sparradh.'; -$a->strings['The profile address specified belongs to a network which has been disabled on this site.'] = 'Tha seòladh na pròifil a shònraich thu a’ buntainn ri lìonra a chaidh a chur à comas air an làrach seo.'; $a->strings['Limited profile. This person will be unable to receive direct/personal notifications from you.'] = 'Pròifil chuingichte. Chan fhaigh an neach seo brathan dìreach/pearsanta uat.'; $a->strings['Unable to retrieve contact information.'] = 'Cha d’ fhuair sinn grèim air fiosrachadh an neach-aithne.'; $a->strings['l F d, Y \@ g:i A \G\M\TP (e)'] = 'l, d F Y \@ g:i a \G\M\TP (e)'; @@ -858,7 +857,6 @@ $a->strings['Show map'] = 'Seall am mapa'; $a->strings['Hide map'] = 'Falaich am mapa'; $a->strings['%s\'s birthday'] = 'Cò-là breith aig %s'; $a->strings['Happy Birthday %s'] = 'Co-là breith sona dhut, %s'; -$a->strings['Detected languages in this post:\n%s'] = 'Na cànanan dhan a mhothaich sinn sa phost seo:\n%s'; $a->strings['activity'] = 'gnìomhachd'; $a->strings['comment'] = 'beachd'; $a->strings['post'] = 'post'; @@ -1247,8 +1245,6 @@ $a->strings['Posts per user on community page'] = 'Postaichean gach cleachdaiche $a->strings['Enable Mail support'] = 'Cuir taic ri post-d an comas'; $a->strings['Enable built-in mail support to poll IMAP folders and to reply via mail.'] = 'Cuir an comas an taic ri post-d a thig ’na bhroinn airson pasganan IMAP a cheasnachadh agus freagairt le post-d.'; $a->strings['Mail support can\'t be enabled because the PHP IMAP module is not installed.'] = '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.'; -$a->strings['Enable OStatus support'] = 'Cuir an taic ri OStatus an comas'; -$a->strings['Enable built-in OStatus (StatusNet, GNU Social etc.) compatibility. All communications in OStatus are public.'] = 'Cuir an comas a’ cho-chòrdalachd ri OStatus (StatusNet, GNU Social is msaa.) a thig ’na bhroinn. Bidh gach conaltradh slighe OStatus poblach.'; $a->strings['Diaspora support can\'t be enabled because Friendica was installed into a sub directory.'] = 'Chan urrainn dhuinn an taic ri diaspora* a chur an comas on a chaidh Friendica a stàladh ann am fo-phasgan.'; $a->strings['Enable Diaspora support'] = 'Cuir taic ri diaspora* an comas'; $a->strings['Enable built-in Diaspora network compatibility for communicating with diaspora servers.'] = 'Cuir an comas a’ cho-chòrdalachd lìonraidh le diaspora* a thig ’na bhroinn airson conaltradh le frithealaichean diaspora*.'; @@ -1290,7 +1286,6 @@ $a->strings['When the database cleanup is enabled, this defines the days after w $a->strings['Lifespan of unclaimed items'] = 'Faid-bheatha nan nithean gun tagairt'; $a->strings['When the database cleanup is enabled, this defines the days after which unclaimed remote items (mostly content from the relay) will be deleted. Default value is 90 days. Defaults to the general lifespan value of remote items if set to 0.'] = '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.'; $a->strings['Lifespan of raw conversation data'] = 'Faid-bheatha dàta amh nan còmhraidhean'; -$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.'] = '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.'; $a->strings['Maximum numbers of comments per post'] = 'An àireamh as motha de bheachdan ri post'; $a->strings['How much comments should be shown for each post? Default value is 100.'] = 'Co mheud beachd a thèid a shealltainn do gach post? ’S e 100 a tha sa bhun-roghainn.'; $a->strings['Maximum numbers of comments per post on the display page'] = 'An àireamh as motha de bheachdan ri post air duilleag na sealltainn'; @@ -1581,7 +1576,6 @@ $a->strings['Submit Request'] = 'Cuir an t-iarrtas a-null'; $a->strings['You already added this contact.'] = 'Chuir thu an neach-aithne seo ris mu thràth.'; $a->strings['The network type couldn\'t be detected. Contact can\'t be added.'] = 'Cha do mhothaich sinn do sheòrsa an lìonraidh. Cha b’ urrainn dhuinn an neach-aithne a chur ris.'; $a->strings['Diaspora support isn\'t enabled. Contact can\'t be added.'] = 'Chan eil taic ri diaspora* an comas. Cha b’ urrainn dhuinn an neach-aithne a chur ris.'; -$a->strings['OStatus support is disabled. Contact can\'t be added.'] = 'Chan eil taic ri OStatus an comas. Cha b’ urrainn dhuinn an neach-aithne a chur ris.'; $a->strings['Please answer the following:'] = 'Freagair seo:'; $a->strings['Your Identity Address:'] = 'Seòladh do dhearbh-aithne:'; $a->strings['Profile URL'] = 'URL na pròifile'; @@ -2116,10 +2110,6 @@ $a->strings['Incomplete request data'] = 'Dàta iarrtais neo-choileanta'; $a->strings['Please copy the following authentication code into your application and close this window: %s'] = 'Cuir lethbhreac dhen chòd dearbhaidh seo san aplacaid agad is dùin an uinneag seo: %s'; $a->strings['Invalid data or unknown client'] = 'Dàta mì-dhligheach no cliant nach aithne dhuinn'; $a->strings['Unsupported or missing grant type'] = 'Seòrsa ceadachaidh gun taic ris no a dhìth'; -$a->strings['Resubscribing to OStatus contacts'] = 'A’ fo-sgrìobhadh a-rithist air luchd-aithne OStatus'; -$a->strings['Keep this window open until done.'] = 'Cùm an uinneag seo fosgailte gus am bi e deiseil.'; -$a->strings['✔ Done'] = '✔ Deiseil'; -$a->strings['No OStatus contacts to resubscribe to.'] = 'Chan eil neach-aithne OStatus ann airson fo-sgrìobhadh air a-rithist.'; $a->strings['Subscribing to contacts'] = 'Fo-sgrìobhadh air luchd-aithne'; $a->strings['No contact provided.'] = 'Cha deach neach-aithne a thoirt seachad.'; $a->strings['Couldn\'t fetch information for contact.'] = 'Cha d’ fhuair sinn grèim air an fhiosrachadh conaltraidh.'; @@ -2131,6 +2121,7 @@ $a->strings['Done'] = 'Deiseil'; $a->strings['success'] = 'chaidh leis'; $a->strings['failed'] = 'dh’fhàillig leis'; $a->strings['ignored'] = 'chaidh a leigeil seachad'; +$a->strings['Keep this window open until done.'] = 'Cùm an uinneag seo fosgailte gus am bi e deiseil.'; $a->strings['The Photo is not available.'] = 'Chan eil an dealbh ri fhaighinn.'; $a->strings['The Photo with id %s is not available.'] = 'Chan eil an dealbh air a bheil an id %s ri fhaighinn.'; $a->strings['Invalid external resource with url %s.'] = 'Goireas mì-dhligheach air an taobh a-muigh leis an url %s.'; @@ -2154,9 +2145,9 @@ $a->strings['Collection (%s)'] = 'Cruinneachadh (%s)'; $a->strings['Followers (%s)'] = 'Luchd-leantainn (%s)'; $a->strings['%d more'] = '%d eile'; $a->strings['No contacts.'] = 'Chan eil neach-aithne ann.'; -$a->strings['%s\'s timeline'] = 'An loidhne-ama aig %s'; $a->strings['%s\'s posts'] = 'Na postaichean aig %s'; $a->strings['%s\'s comments'] = 'Na beachdan aig %s'; +$a->strings['%s\'s timeline'] = 'An loidhne-ama aig %s'; $a->strings['Image exceeds size limit of %s'] = 'Tha an dealbh nas motha na tha ceadaichte dhe %s'; $a->strings['Image upload didn\'t complete, please try again'] = 'Cha deach luchdadh suas an deilbh a choileanadh, feuch ris a-rithist'; $a->strings['Image file is missing'] = 'Tha faidhle an deilbh a dhìth'; @@ -2207,7 +2198,6 @@ $a->strings['Addon Settings'] = 'Roghainnean nan tuilleadan'; $a->strings['No Addon settings configured'] = 'Cha deach roghainnean tuilleadain a rèiteachadh'; $a->strings['Failed to connect with email account using the settings provided.'] = 'Cha deach leinn ceangal a dhèanamh leis a’ chunntas puist-d a’ cleachdadh nan roghainnean a chaidh a thoirt seachad.'; $a->strings['Diaspora (Socialhome, Hubzilla)'] = 'Diaspora* (Socialhome, Hubzilla)'; -$a->strings['OStatus (GNU Social)'] = 'OStatus (GNU Social)'; $a->strings['Email access is disabled on this site.'] = 'Tha an t-inntrigeadh le post-d à comas dhan làrach seo.'; $a->strings['None'] = 'Chan eil gin'; $a->strings['General Social Media Settings'] = 'Roghainnean coitcheann nam meadhanan sòisealta'; @@ -2225,7 +2215,6 @@ $a->strings['When activated, the title of the attached link will be added as a t $a->strings['When activated, added links at the end of the post react the same way as added links in the web interface.'] = 'Nuair a bhios seo an gnìomh, bidh an t-aon ghiùlan aig ceanglaichean a thèid a chur ri bonn puist ’s a tha aig ceanglaichean a thèid a chur ris san eadar-aghaidh-lìn.'; $a->strings['Your legacy ActivityPub/GNU Social account'] = 'An cunntas ActivityPub/GNU Social dìleabach agad'; $a->strings['If you enter your old account name from an ActivityPub based system or your GNU Social/Statusnet account name here (in the format user@domain.tld), your contacts will be added automatically. The field will be emptied when done.'] = 'Ma chuireas tu ainm seann-chunntais ris o shiostam stèidhichte air ActivityPub no ainm do chunntais GNU Social/Statusnet an-seo (san fhòrmat cleachdaiche@àrainn.tld), thèid an luchd-aithne agad a chur ris gu fèin-obrachail. Thèid an raon fhalamhachadh nuair a bhios sin deiseil.'; -$a->strings['Repair OStatus subscriptions'] = 'Càraich fo-sgrìobhaidhean OStatus'; $a->strings['Email/Mailbox Setup'] = 'Suidheachadh a’ phuist-d/a’ bhogsa-phuist'; $a->strings['If you wish to communicate with email contacts using this service (optional), please specify how to connect to your mailbox.'] = 'Ma tha thu airson an t-seirbheis seo a chleachdadh airson conaltradh le luchd-aithne air a’ post-d (gu roghainneil), sònraich an dòigh air a nì thu ceangal leis a’ bhogsa-phuist agad.'; $a->strings['Last successful email check:'] = 'An turas mu dheireadh a chaidh leinn sùil a thoirt air a’ phost-d:'; @@ -2392,8 +2381,6 @@ $a->strings['Maybe attended by: %s'] = 'An làthair ’s dòcha: %s'; $a->strings['Not attended by: %s'] = 'Gun a bhith an làthair: %s'; $a->strings['Reacted with %s by: %s'] = 'Chaidh freagairt le %s le: %s'; $a->strings['(no subject)'] = '(gun chuspair)'; -$a->strings['%s is now following %s.'] = 'Tha %s a’ leantainn %s a-nis.'; -$a->strings['%s stopped following %s.'] = 'Chan eil %s a’ leantainn %s tuilleadh.'; $a->strings['The folder %s must be writable by webserver.'] = 'Ceumaidh cead sgrìobhaidh dhan phasgan %s a bhith aig an fhrithealaiche-lìn.'; $a->strings['Login failed.'] = 'Dh’fhàillig leis a’ chlàradh a-steach.'; $a->strings['Login failed. Please check your credentials.'] = 'Dh’fhàillig leis a’ chlàradh a-steach. Thoir sùil air an teisteas agad.'; diff --git a/view/lang/hu/messages.po b/view/lang/hu/messages.po index 95e92eaf3d..dfdb8959d2 100644 --- a/view/lang/hu/messages.po +++ b/view/lang/hu/messages.po @@ -1,8 +1,7 @@ # FRIENDICA Distributed Social Network -# SPDX-FileCopyrightText: Copyright (C) 2010-2024, the Friendica project -# -# SPDX-License-Identifier: AGPL-3.0-or-later -# +# Copyright (C) 2010-2024, the Friendica project +# This file is distributed under the same license as the Friendica package. +# # Translators: # Balázs Meskó , 2024 # Balázs Úr, 2020-2024 @@ -14,7 +13,7 @@ msgid "" msgstr "" "Project-Id-Version: friendica\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-08-11 06:43+0000\n" +"POT-Creation-Date: 2024-10-07 20:46+0000\n" "PO-Revision-Date: 2011-05-05 10:19+0000\n" "Last-Translator: Balázs Úr, 2020-2024\n" "Language-Team: Hungarian (http://app.transifex.com/Friendica/friendica/language/hu/)\n" @@ -24,77 +23,77 @@ msgstr "" "Language: hu\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: mod/item.php:101 mod/item.php:104 mod/item.php:171 mod/item.php:174 +#: mod/item.php:89 mod/item.php:92 mod/item.php:159 mod/item.php:162 msgid "Unable to locate original post." msgstr "Nem lehet megtalálni az eredeti bejegyzést." -#: mod/item.php:139 +#: mod/item.php:127 msgid "Post updated." msgstr "Bejegyzés frissítve." -#: mod/item.php:204 mod/item.php:208 +#: mod/item.php:192 mod/item.php:196 msgid "Item wasn't stored." msgstr "Az elem nem lett eltárolva." -#: mod/item.php:218 +#: mod/item.php:206 msgid "Item couldn't be fetched." msgstr "Az elemet nem sikerült lekérni." -#: mod/item.php:262 mod/item.php:266 +#: mod/item.php:250 mod/item.php:254 msgid "Empty post discarded." msgstr "Az üres bejegyzés elvetve." -#: mod/item.php:437 src/Module/Admin/Themes/Details.php:45 -#: src/Module/Admin/Themes/Index.php:65 src/Module/Debug/ItemBody.php:42 -#: src/Module/Debug/ItemBody.php:57 src/Module/Item/Feed.php:80 +#: mod/item.php:425 src/Module/Admin/Themes/Details.php:31 +#: src/Module/Admin/Themes/Index.php:51 src/Module/Debug/ItemBody.php:28 +#: src/Module/Debug/ItemBody.php:43 src/Module/Item/Feed.php:66 msgid "Item not found." msgstr "Az elem nem található." -#: mod/item.php:461 mod/message.php:66 mod/message.php:112 mod/notes.php:45 -#: mod/photos.php:147 mod/photos.php:663 src/Model/Event.php:520 -#: src/Module/Attach.php:55 src/Module/BaseApi.php:103 -#: src/Module/BaseNotifications.php:98 src/Module/BaseSettings.php:50 -#: src/Module/Calendar/Event/API.php:88 src/Module/Calendar/Event/Form.php:84 -#: src/Module/Calendar/Export.php:82 src/Module/Calendar/Show.php:82 -#: src/Module/Circle.php:41 src/Module/Circle.php:84 -#: src/Module/Contact/Advanced.php:60 src/Module/Contact/Follow.php:87 -#: src/Module/Contact/Follow.php:160 src/Module/Contact/MatchInterests.php:87 -#: src/Module/Contact/Suggestions.php:54 src/Module/Contact/Unfollow.php:66 -#: src/Module/Contact/Unfollow.php:80 src/Module/Contact/Unfollow.php:112 -#: src/Module/FollowConfirm.php:38 src/Module/FriendSuggest.php:57 -#: src/Module/Invite.php:42 src/Module/Invite.php:131 -#: src/Module/Notifications/Notification.php:76 -#: src/Module/Notifications/Notification.php:107 -#: src/Module/OStatus/Repair.php:60 src/Module/OStatus/Subscribe.php:68 -#: src/Module/Post/Edit.php:76 src/Module/Profile/Common.php:75 -#: src/Module/Profile/Contacts.php:78 src/Module/Profile/Photos.php:92 -#: src/Module/Profile/Schedule.php:39 src/Module/Profile/Schedule.php:56 -#: src/Module/Register.php:84 src/Module/Register.php:97 -#: src/Module/Register.php:213 src/Module/Register.php:252 -#: src/Module/Search/Directory.php:37 src/Module/Settings/Account.php:50 -#: src/Module/Settings/Account.php:391 src/Module/Settings/Channels.php:66 -#: src/Module/Settings/Channels.php:141 src/Module/Settings/Delegation.php:90 -#: src/Module/Settings/Display.php:90 src/Module/Settings/Display.php:197 -#: src/Module/Settings/Profile/Photo/Crop.php:165 -#: src/Module/Settings/Profile/Photo/Index.php:110 -#: src/Module/Settings/RemoveMe.php:119 src/Module/Settings/UserExport.php:78 -#: src/Module/Settings/UserExport.php:114 -#: src/Module/Settings/UserExport.php:213 -#: src/Module/Settings/UserExport.php:233 -#: src/Module/Settings/UserExport.php:298 src/Module/User/Delegation.php:154 -#: src/Module/User/Import.php:85 src/Module/User/Import.php:92 +#: mod/item.php:449 mod/message.php:54 mod/message.php:100 mod/notes.php:33 +#: mod/photos.php:135 mod/photos.php:627 src/Model/Event.php:506 +#: src/Module/Attach.php:41 src/Module/BaseApi.php:89 +#: src/Module/BaseNotifications.php:84 src/Module/BaseSettings.php:36 +#: src/Module/Calendar/Event/API.php:74 src/Module/Calendar/Event/Form.php:70 +#: src/Module/Calendar/Export.php:68 src/Module/Calendar/Show.php:68 +#: src/Module/Circle.php:27 src/Module/Circle.php:70 +#: src/Module/Contact/Advanced.php:46 src/Module/Contact/Follow.php:73 +#: src/Module/Contact/Follow.php:141 src/Module/Contact/MatchInterests.php:73 +#: src/Module/Contact/Suggestions.php:40 src/Module/Contact/Unfollow.php:52 +#: src/Module/Contact/Unfollow.php:66 src/Module/Contact/Unfollow.php:98 +#: src/Module/FollowConfirm.php:24 src/Module/FriendSuggest.php:43 +#: src/Module/Invite.php:28 src/Module/Invite.php:117 +#: src/Module/Notifications/Notification.php:62 +#: src/Module/Notifications/Notification.php:93 +#: src/Module/OStatus/Subscribe.php:54 src/Module/Post/Edit.php:62 +#: src/Module/Profile/Common.php:61 src/Module/Profile/Contacts.php:64 +#: src/Module/Profile/Photos.php:78 src/Module/Profile/Schedule.php:25 +#: src/Module/Profile/Schedule.php:42 src/Module/Register.php:70 +#: src/Module/Register.php:83 src/Module/Register.php:199 +#: src/Module/Register.php:238 src/Module/Search/Directory.php:23 +#: src/Module/Settings/Account.php:36 src/Module/Settings/Account.php:377 +#: src/Module/Settings/Channels.php:52 src/Module/Settings/Channels.php:127 +#: src/Module/Settings/Delegation.php:76 src/Module/Settings/Display.php:76 +#: src/Module/Settings/Display.php:183 +#: src/Module/Settings/Profile/Photo/Crop.php:151 +#: src/Module/Settings/Profile/Photo/Index.php:96 +#: src/Module/Settings/RemoveMe.php:105 src/Module/Settings/UserExport.php:64 +#: src/Module/Settings/UserExport.php:100 +#: src/Module/Settings/UserExport.php:199 +#: src/Module/Settings/UserExport.php:219 +#: src/Module/Settings/UserExport.php:284 src/Module/User/Delegation.php:140 +#: src/Module/User/Import.php:71 src/Module/User/Import.php:78 msgid "Permission denied." msgstr "Hozzáférés megtagadva." -#: mod/lostpass.php:40 +#: mod/lostpass.php:28 msgid "No valid account found." msgstr "Nem található érvényes fiók." -#: mod/lostpass.php:52 +#: mod/lostpass.php:40 msgid "Password reset request issued. Check your email." msgstr "A jelszó-visszaállítási kérés el lett küldve. Nézze meg a leveleit." -#: mod/lostpass.php:58 +#: mod/lostpass.php:46 #, php-format msgid "" "\n" @@ -110,7 +109,7 @@ msgid "" "\t\tissued this request." msgstr "\n\t\tKedves %1$s!\n\t\t\tNemrég kérés érkezett a „%2$s” oldalról a fiókja jelszavának\n\t\tvisszaállítására. A kérés megerősítése érdekében kattintson a lenti\n\t\tellenőrző hivatkozásra, vagy illessze be a webböngészője címsávjába.\n\n\t\tHa NEM Ön kérte ezt a változtatást, akkor NE kövesse a megadott\n\t\thivatkozást, illetve hagyja figyelmen kívül és/vagy törölje ezt az\n\t\te-mailt. A kérés hamarosan le fog járni.\n\n\t\tA jelszava nem lesz megváltoztatva, hacsak nem tudjuk ellenőrizni, hogy\n\t\tÖn indította ezt a kérést." -#: mod/lostpass.php:69 +#: mod/lostpass.php:57 #, php-format msgid "" "\n" @@ -127,70 +126,70 @@ msgid "" "\t\tLogin Name:\t%3$s" msgstr "\n\t\tKövesse ezt a hivatkozást a személyazonossága ellenőrzéséhez:\n\n\t\t%1$s\n\n\t\tEzután kapni fog egy követő üzenetet, amely az új jelszavát tartalmazza.\n\t\tA jelszót a fiókja beállításainak oldalán változtathatja meg, miután bejelentkezett.\n\n\t\tA bejelentkezés részletei a következők:\n\n\t\tOldal címe:\t%2$s\n\t\tBejelentkezési név:\t%3$s" -#: mod/lostpass.php:84 +#: mod/lostpass.php:72 #, php-format msgid "Password reset requested at %s" msgstr "Jelszó-visszaállítás kérve itt: %s" -#: mod/lostpass.php:100 +#: mod/lostpass.php:88 msgid "" "Request could not be verified. (You may have previously submitted it.) " "Password reset failed." msgstr "A kérést nem sikerült ellenőrizni (lehet, hogy korábban már elküldte). A jelszó-visszaállítás sikertelen." -#: mod/lostpass.php:113 +#: mod/lostpass.php:101 msgid "Request has expired, please make a new one." msgstr "A kérés lejárt, készítsen egy újat." -#: mod/lostpass.php:128 +#: mod/lostpass.php:116 msgid "Forgot your Password?" msgstr "Elfelejtette a jelszavát?" -#: mod/lostpass.php:129 +#: mod/lostpass.php:117 msgid "" "Enter your email address and submit to have your password reset. Then check " "your email for further instructions." msgstr "Adja meg az e-mail-címét, és küldje el a jelszó-visszaállítás kéréséhez. Azután nézze meg a postafiókját a további utasításokért." -#: mod/lostpass.php:130 src/Module/Security/Login.php:164 +#: mod/lostpass.php:118 src/Module/Security/Login.php:150 msgid "Nickname or Email: " msgstr "Becenév vagy e-mail-cím: " -#: mod/lostpass.php:131 +#: mod/lostpass.php:119 msgid "Reset" msgstr "Visszaállítás" -#: mod/lostpass.php:146 src/Module/Security/Login.php:176 +#: mod/lostpass.php:134 src/Module/Security/Login.php:162 msgid "Password Reset" msgstr "Jelszó visszaállítása" -#: mod/lostpass.php:147 +#: mod/lostpass.php:135 msgid "Your password has been reset as requested." msgstr "A jelszava vissza lett állítva a kérés alapján." -#: mod/lostpass.php:148 +#: mod/lostpass.php:136 msgid "Your new password is" msgstr "Az új jelszava" -#: mod/lostpass.php:149 +#: mod/lostpass.php:137 msgid "Save or copy your new password - and then" msgstr "Mentse el vagy másolja le az új jelszavát – majd" -#: mod/lostpass.php:150 +#: mod/lostpass.php:138 msgid "click here to login" msgstr "kattintson ide a bejelentkezéshez" -#: mod/lostpass.php:151 +#: mod/lostpass.php:139 msgid "" "Your password may be changed from the Settings page after " "successful login." msgstr "A jelszava megváltoztatható a Beállítások oldalon, miután sikeresen bejelentkezett." -#: mod/lostpass.php:155 +#: mod/lostpass.php:143 msgid "Your password has been reset." msgstr "A jelszava vissza lett állítva." -#: mod/lostpass.php:158 +#: mod/lostpass.php:146 #, php-format msgid "" "\n" @@ -201,7 +200,7 @@ msgid "" "\t\t" msgstr "\n\t\t\tKedves %1$s!\n\t\t\t\tA jelszava vissza lett állítva a kérés alapján. Őrizze meg ezt az\n\t\t\tinformációt a feljegyzéséhez (vagy változtassa meg a jelszót azonnal\n\t\t\tvalami olyanra, amelyre emlékezni fog).\n\t\t" -#: mod/lostpass.php:164 +#: mod/lostpass.php:152 #, php-format msgid "" "\n" @@ -215,2415 +214,2415 @@ msgid "" "\t\t" msgstr "\n\t\t\tA bejelentkezés részletei a következők:\n\n\t\t\tOldal címe:\t%1$s\n\t\t\tBejelentkezési név:\t%2$s\n\t\t\tJelszó:\t%3$s\n\n\t\t\tMegváltoztathatja a jelszót a fiókbeállítások oldalon, miután bejelentkezett.\n\t\t" -#: mod/lostpass.php:176 +#: mod/lostpass.php:164 #, php-format msgid "Your password has been changed at %s" msgstr "A jelszava meg lett változtatva itt: %s" -#: mod/message.php:45 mod/message.php:127 src/Content/Nav.php:321 +#: mod/message.php:33 mod/message.php:115 src/Content/Nav.php:307 msgid "New Message" msgstr "Új üzenet" -#: mod/message.php:81 +#: mod/message.php:69 msgid "No recipient selected." msgstr "Nincs címzett kiválasztva." -#: mod/message.php:86 +#: mod/message.php:74 msgid "Unable to locate contact information." msgstr "Nem lehet megtalálni a partner információit." -#: mod/message.php:90 +#: mod/message.php:78 msgid "Message could not be sent." msgstr "Az üzenetet nem sikerült elküldeni." -#: mod/message.php:94 +#: mod/message.php:82 msgid "Message collection failure." msgstr "Üzenet-összegyűjtési hiba." -#: mod/message.php:121 src/Module/Notifications/Introductions.php:141 -#: src/Module/Notifications/Introductions.php:176 -#: src/Module/Notifications/Notification.php:85 +#: mod/message.php:109 src/Module/Notifications/Introductions.php:127 +#: src/Module/Notifications/Introductions.php:162 +#: src/Module/Notifications/Notification.php:71 msgid "Discard" msgstr "Elvetés" -#: mod/message.php:134 src/Content/Nav.php:318 view/theme/frio/theme.php:244 +#: mod/message.php:122 src/Content/Nav.php:304 view/theme/frio/theme.php:232 msgid "Messages" msgstr "Üzenetek" -#: mod/message.php:147 +#: mod/message.php:135 msgid "Conversation not found." msgstr "A beszélgetés nem található." -#: mod/message.php:152 +#: mod/message.php:140 msgid "Message was not deleted." msgstr "Az üzenet nem lett törölve." -#: mod/message.php:167 +#: mod/message.php:155 msgid "Conversation was not removed." msgstr "A beszélgetés nem lett eltávolítva." -#: mod/message.php:180 mod/message.php:285 +#: mod/message.php:168 mod/message.php:273 msgid "Please enter a link URL:" msgstr "Írjon be egy hivatkozás URL-t:" -#: mod/message.php:189 +#: mod/message.php:177 msgid "Send Private Message" msgstr "Személyes üzenet küldése" -#: mod/message.php:190 mod/message.php:345 -#: src/Module/Privacy/PermissionTooltip.php:132 +#: mod/message.php:178 mod/message.php:333 +#: src/Module/Privacy/PermissionTooltip.php:118 msgid "To:" msgstr "Címzett:" -#: mod/message.php:191 mod/message.php:346 +#: mod/message.php:179 mod/message.php:334 msgid "Subject:" msgstr "Tárgy:" -#: mod/message.php:195 mod/message.php:349 src/Module/Invite.php:171 +#: mod/message.php:183 mod/message.php:337 src/Module/Invite.php:157 msgid "Your message:" msgstr "Az üzenete:" -#: mod/message.php:198 mod/message.php:353 src/Content/Conversation.php:369 -#: src/Module/Post/Edit.php:131 +#: mod/message.php:186 mod/message.php:341 src/Content/Conversation.php:355 +#: src/Module/Post/Edit.php:117 msgid "Upload photo" msgstr "Fénykép feltöltése" -#: mod/message.php:199 mod/message.php:354 src/Module/Post/Edit.php:135 +#: mod/message.php:187 mod/message.php:342 src/Module/Post/Edit.php:121 msgid "Insert web link" msgstr "Webhivatkozás beszúrása" -#: mod/message.php:200 mod/message.php:356 mod/photos.php:1291 -#: src/Content/Conversation.php:400 src/Content/Conversation.php:1576 -#: src/Module/Item/Compose.php:213 src/Module/Post/Edit.php:145 -#: src/Object/Post.php:618 +#: mod/message.php:188 mod/message.php:344 mod/photos.php:1255 +#: src/Content/Conversation.php:386 src/Content/Conversation.php:1562 +#: src/Module/Item/Compose.php:199 src/Module/Post/Edit.php:131 +#: src/Object/Post.php:604 msgid "Please wait" msgstr "Kis türelmet" -#: mod/message.php:201 mod/message.php:355 mod/photos.php:694 -#: mod/photos.php:814 mod/photos.php:1091 mod/photos.php:1132 -#: mod/photos.php:1188 mod/photos.php:1268 -#: src/Module/Calendar/Event/Form.php:250 src/Module/Contact/Advanced.php:132 -#: src/Module/Contact/Profile.php:384 -#: src/Module/Debug/ActivityPubConversion.php:146 -#: src/Module/Debug/Babel.php:321 src/Module/Debug/Localtime.php:64 -#: src/Module/Debug/Probe.php:54 src/Module/Debug/WebFinger.php:51 -#: src/Module/FriendSuggest.php:145 src/Module/Install.php:234 -#: src/Module/Install.php:274 src/Module/Install.php:309 -#: src/Module/Invite.php:178 src/Module/Item/Compose.php:196 -#: src/Module/Moderation/Item/Source.php:85 -#: src/Module/Moderation/Report/Create.php:168 -#: src/Module/Moderation/Report/Create.php:183 -#: src/Module/Moderation/Report/Create.php:211 -#: src/Module/Moderation/Report/Create.php:263 -#: src/Module/Profile/Profile.php:276 -#: src/Module/Settings/Profile/Index.php:262 -#: src/Module/Settings/Server/Action.php:79 src/Module/User/Delegation.php:189 -#: src/Object/Post.php:1159 view/theme/duepuntozero/config.php:85 -#: view/theme/frio/config.php:150 view/theme/quattro/config.php:87 -#: view/theme/vier/config.php:135 +#: mod/message.php:189 mod/message.php:343 mod/photos.php:658 +#: mod/photos.php:778 mod/photos.php:1055 mod/photos.php:1096 +#: mod/photos.php:1152 mod/photos.php:1232 +#: src/Module/Calendar/Event/Form.php:236 src/Module/Contact/Advanced.php:118 +#: src/Module/Contact/Profile.php:370 +#: src/Module/Debug/ActivityPubConversion.php:132 +#: src/Module/Debug/Babel.php:307 src/Module/Debug/Localtime.php:50 +#: src/Module/Debug/Probe.php:40 src/Module/Debug/WebFinger.php:37 +#: src/Module/FriendSuggest.php:131 src/Module/Install.php:220 +#: src/Module/Install.php:260 src/Module/Install.php:295 +#: src/Module/Invite.php:164 src/Module/Item/Compose.php:182 +#: src/Module/Moderation/Item/Source.php:71 +#: src/Module/Moderation/Report/Create.php:154 +#: src/Module/Moderation/Report/Create.php:169 +#: src/Module/Moderation/Report/Create.php:197 +#: src/Module/Moderation/Report/Create.php:249 +#: src/Module/Profile/Profile.php:262 +#: src/Module/Settings/Profile/Index.php:248 +#: src/Module/Settings/Server/Action.php:65 src/Module/User/Delegation.php:175 +#: src/Object/Post.php:1145 view/theme/duepuntozero/config.php:73 +#: view/theme/frio/config.php:138 view/theme/quattro/config.php:75 +#: view/theme/vier/config.php:123 msgid "Submit" msgstr "Elküldés" -#: mod/message.php:222 +#: mod/message.php:210 msgid "No messages." msgstr "Nincsenek üzenetek." -#: mod/message.php:278 +#: mod/message.php:266 msgid "Message not available." msgstr "Az üzenet nem érhető el." -#: mod/message.php:322 +#: mod/message.php:310 msgid "Delete message" msgstr "Üzenet törlése" -#: mod/message.php:324 mod/message.php:453 +#: mod/message.php:312 mod/message.php:441 msgid "D, d M Y - g:i A" msgstr "Y. M. j., D. – H:i" -#: mod/message.php:339 mod/message.php:450 +#: mod/message.php:327 mod/message.php:438 msgid "Delete conversation" msgstr "Beszélgetés törlése" -#: mod/message.php:341 +#: mod/message.php:329 msgid "" "No secure communications available. You may be able to " "respond from the sender's profile page." msgstr "Nem érhető el biztonságos kommunikáció. Esetleg válaszolhat a küldő profiloldaláról." -#: mod/message.php:344 +#: mod/message.php:332 msgid "Send Reply" msgstr "Válasz küldése" -#: mod/message.php:424 +#: mod/message.php:412 #, php-format msgid "Unknown sender - %s" msgstr "Ismeretlen küldő – %s" -#: mod/message.php:426 +#: mod/message.php:414 #, php-format msgid "You and %s" msgstr "Ön és %s" -#: mod/message.php:428 +#: mod/message.php:416 #, php-format msgid "%s and You" msgstr "%s és Ön" -#: mod/message.php:456 +#: mod/message.php:444 #, php-format msgid "%d message" msgid_plural "%d messages" msgstr[0] "%d üzenet" msgstr[1] "%d üzenet" -#: mod/notes.php:52 src/Module/BaseProfile.php:108 +#: mod/notes.php:40 src/Module/BaseProfile.php:94 msgid "Personal Notes" msgstr "Személyes jegyzetek" -#: mod/notes.php:56 +#: mod/notes.php:44 msgid "Personal notes are visible only by yourself." msgstr "A személyes jegyzetek csak az Ön számára láthatók." -#: mod/notes.php:57 src/Content/Text/HTML.php:861 -#: src/Module/Admin/Storage.php:142 src/Module/Filer/SaveTag.php:74 -#: src/Module/Post/Edit.php:129 src/Module/Settings/Channels.php:229 +#: mod/notes.php:45 src/Content/Text/HTML.php:847 +#: src/Module/Admin/Storage.php:128 src/Module/Filer/SaveTag.php:60 +#: src/Module/Post/Edit.php:115 src/Module/Settings/Channels.php:215 msgid "Save" msgstr "Mentés" -#: mod/photos.php:66 mod/photos.php:129 mod/photos.php:573 -#: src/Model/Event.php:512 src/Model/Profile.php:227 -#: src/Module/Calendar/Export.php:74 src/Module/Calendar/Show.php:74 -#: src/Module/DFRN/Poll.php:43 src/Module/Feed.php:66 src/Module/HCard.php:51 -#: src/Module/Profile/Common.php:62 src/Module/Profile/Common.php:71 -#: src/Module/Profile/Contacts.php:64 src/Module/Profile/Contacts.php:72 -#: src/Module/Profile/Conversations.php:91 src/Module/Profile/Media.php:56 -#: src/Module/Profile/Photos.php:83 src/Module/Profile/RemoteFollow.php:71 -#: src/Module/Register.php:274 +#: mod/photos.php:54 mod/photos.php:117 mod/photos.php:537 +#: src/Model/Event.php:498 src/Model/Profile.php:213 +#: src/Module/Calendar/Export.php:60 src/Module/Calendar/Show.php:60 +#: src/Module/Feed.php:52 src/Module/HCard.php:37 +#: src/Module/Profile/Common.php:48 src/Module/Profile/Common.php:57 +#: src/Module/Profile/Contacts.php:50 src/Module/Profile/Contacts.php:58 +#: src/Module/Profile/Conversations.php:77 src/Module/Profile/Media.php:42 +#: src/Module/Profile/Photos.php:69 src/Module/Profile/RemoteFollow.php:57 +#: src/Module/Register.php:260 msgid "User not found." msgstr "A felhasználó nem található." -#: mod/photos.php:103 src/Module/BaseProfile.php:68 -#: src/Module/Profile/Photos.php:375 +#: mod/photos.php:91 src/Module/BaseProfile.php:54 +#: src/Module/Profile/Photos.php:361 msgid "Photo Albums" msgstr "Fényképalbumok" -#: mod/photos.php:104 src/Module/Profile/Photos.php:376 -#: src/Module/Profile/Photos.php:396 +#: mod/photos.php:92 src/Module/Profile/Photos.php:362 +#: src/Module/Profile/Photos.php:382 msgid "Recent Photos" msgstr "Legutóbbi fényképek" -#: mod/photos.php:106 mod/photos.php:862 src/Module/Profile/Photos.php:378 -#: src/Module/Profile/Photos.php:398 +#: mod/photos.php:94 mod/photos.php:826 src/Module/Profile/Photos.php:364 +#: src/Module/Profile/Photos.php:384 msgid "Upload New Photos" msgstr "Új fényképek feltöltése" -#: mod/photos.php:118 src/Module/BaseSettings.php:72 -#: src/Module/Profile/Photos.php:359 +#: mod/photos.php:106 src/Module/BaseSettings.php:58 +#: src/Module/Profile/Photos.php:345 msgid "everybody" msgstr "mindenki" -#: mod/photos.php:154 +#: mod/photos.php:142 msgid "Contact information unavailable" msgstr "A partner információi nem érhetők el" -#: mod/photos.php:183 +#: mod/photos.php:171 msgid "Album not found." msgstr "Az album nem található." -#: mod/photos.php:239 +#: mod/photos.php:227 msgid "Album successfully deleted" msgstr "Az album sikeresen törölve" -#: mod/photos.php:241 +#: mod/photos.php:229 msgid "Album was empty." msgstr "Az album üres volt." -#: mod/photos.php:272 +#: mod/photos.php:260 msgid "Failed to delete the photo." msgstr "Nem sikerült törölni a fényképet." -#: mod/photos.php:540 +#: mod/photos.php:504 msgid "a photo" msgstr "egy fényképen" -#: mod/photos.php:540 +#: mod/photos.php:504 #, 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:577 src/Module/Conversation/Community.php:160 -#: src/Module/Directory.php:49 src/Module/Profile/Photos.php:293 -#: src/Module/Search/Index.php:65 +#: mod/photos.php:541 src/Module/Conversation/Community.php:148 +#: src/Module/Directory.php:35 src/Module/Profile/Photos.php:279 +#: src/Module/Search/Index.php:51 msgid "Public access denied." msgstr "Nyilvános hozzáférés megtagadva." -#: mod/photos.php:582 +#: mod/photos.php:546 msgid "No photos selected" msgstr "Nincsenek fényképek kijelölve" -#: mod/photos.php:710 +#: mod/photos.php:674 #, php-format msgid "The maximum accepted image size is %s" msgstr "A legnagyobb elfogadott képméret %s" -#: mod/photos.php:717 +#: mod/photos.php:681 msgid "Upload Photos" msgstr "Fényképek feltöltése" -#: mod/photos.php:721 mod/photos.php:810 +#: mod/photos.php:685 mod/photos.php:774 msgid "New album name: " msgstr "Új album neve: " -#: mod/photos.php:722 +#: mod/photos.php:686 msgid "or select existing album:" msgstr "vagy meglévő album kiválasztása:" -#: mod/photos.php:723 +#: mod/photos.php:687 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:726 mod/photos.php:1087 src/Content/Conversation.php:402 -#: src/Module/Calendar/Event/Form.php:253 src/Module/Post/Edit.php:183 +#: mod/photos.php:690 mod/photos.php:1051 src/Content/Conversation.php:388 +#: src/Module/Calendar/Event/Form.php:239 src/Module/Post/Edit.php:169 msgid "Permissions" msgstr "Jogosultságok" -#: mod/photos.php:791 +#: mod/photos.php:755 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:792 mod/photos.php:815 +#: mod/photos.php:756 mod/photos.php:779 msgid "Delete Album" msgstr "Album törlése" -#: mod/photos.php:793 mod/photos.php:893 src/Content/Conversation.php:417 -#: src/Module/Contact/Follow.php:173 src/Module/Contact/Revoke.php:106 -#: src/Module/Contact/Unfollow.php:126 -#: src/Module/Media/Attachment/Browser.php:77 -#: src/Module/Media/Photo/Browser.php:88 src/Module/Post/Edit.php:167 -#: src/Module/Post/Tag/Remove.php:109 src/Module/Profile/RemoteFollow.php:134 -#: src/Module/Security/TwoFactor/SignOut.php:125 +#: mod/photos.php:757 mod/photos.php:857 src/Content/Conversation.php:403 +#: src/Module/Contact/Follow.php:154 src/Module/Contact/Revoke.php:92 +#: src/Module/Contact/Unfollow.php:112 +#: src/Module/Media/Attachment/Browser.php:63 +#: src/Module/Media/Photo/Browser.php:74 src/Module/Post/Edit.php:153 +#: src/Module/Post/Tag/Remove.php:95 src/Module/Profile/RemoteFollow.php:120 +#: src/Module/Security/TwoFactor/SignOut.php:111 msgid "Cancel" msgstr "Mégse" -#: mod/photos.php:819 +#: mod/photos.php:783 msgid "Edit Album" msgstr "Album szerkesztése" -#: mod/photos.php:820 +#: mod/photos.php:784 msgid "Drop Album" msgstr "Album eldobása" -#: mod/photos.php:824 +#: mod/photos.php:788 msgid "Show Newest First" msgstr "Legújabb megjelenítése először" -#: mod/photos.php:826 +#: mod/photos.php:790 msgid "Show Oldest First" msgstr "Legrégebbi megjelenítése először" -#: mod/photos.php:847 src/Module/Profile/Photos.php:346 +#: mod/photos.php:811 src/Module/Profile/Photos.php:332 msgid "View Photo" msgstr "Fénykép megtekintése" -#: mod/photos.php:879 +#: mod/photos.php:843 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:881 +#: mod/photos.php:845 msgid "Photo not available" msgstr "A fénykép nem érhető el" -#: mod/photos.php:891 +#: mod/photos.php:855 msgid "Do you really want to delete this photo?" msgstr "Valóban törölni szeretné ezt a fényképet?" -#: mod/photos.php:892 mod/photos.php:1092 +#: mod/photos.php:856 mod/photos.php:1056 msgid "Delete Photo" msgstr "Fénykép törlése" -#: mod/photos.php:990 +#: mod/photos.php:954 msgid "View photo" msgstr "Fénykép megtekintése" -#: mod/photos.php:992 +#: mod/photos.php:956 msgid "Edit photo" msgstr "Fénykép szerkesztése" -#: mod/photos.php:993 +#: mod/photos.php:957 msgid "Delete photo" msgstr "Fénykép törlése" -#: mod/photos.php:994 +#: mod/photos.php:958 msgid "Use as profile photo" msgstr "Használat profilfényképként" -#: mod/photos.php:1001 +#: mod/photos.php:965 msgid "Private Photo" msgstr "Személyes fénykép" -#: mod/photos.php:1007 +#: mod/photos.php:971 msgid "View Full Size" msgstr "Teljes méret megtekintése" -#: mod/photos.php:1060 +#: mod/photos.php:1024 msgid "Tags: " msgstr "Címkék: " -#: mod/photos.php:1063 +#: mod/photos.php:1027 msgid "[Select tags to remove]" msgstr "[Eltávolítandó címkék kiválasztása]" -#: mod/photos.php:1078 +#: mod/photos.php:1042 msgid "New album name" msgstr "Új album neve" -#: mod/photos.php:1079 +#: mod/photos.php:1043 msgid "Caption" msgstr "Felirat" -#: mod/photos.php:1080 +#: mod/photos.php:1044 msgid "Add a Tag" msgstr "Címke hozzáadása" -#: mod/photos.php:1080 +#: mod/photos.php:1044 msgid "" "Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping" msgstr "Példa: @bob, @Barbara_Jensen, @jim@example.com, #Budapest, #kemping" -#: mod/photos.php:1081 +#: mod/photos.php:1045 msgid "Do not rotate" msgstr "Ne forgassa el" -#: mod/photos.php:1082 +#: mod/photos.php:1046 msgid "Rotate CW (right)" msgstr "Forgatás jobbra" -#: mod/photos.php:1083 +#: mod/photos.php:1047 msgid "Rotate CCW (left)" msgstr "Forgatás balra" -#: mod/photos.php:1129 mod/photos.php:1185 mod/photos.php:1265 -#: src/Module/Contact.php:625 src/Module/Item/Compose.php:195 -#: src/Object/Post.php:1156 +#: mod/photos.php:1093 mod/photos.php:1149 mod/photos.php:1229 +#: src/Module/Contact.php:600 src/Module/Item/Compose.php:181 +#: src/Object/Post.php:1142 msgid "This is you" msgstr "Ez Ön" -#: mod/photos.php:1131 mod/photos.php:1187 mod/photos.php:1267 -#: src/Module/Moderation/Reports.php:116 src/Object/Post.php:612 -#: src/Object/Post.php:1158 +#: mod/photos.php:1095 mod/photos.php:1151 mod/photos.php:1231 +#: src/Module/Moderation/Reports.php:102 src/Object/Post.php:598 +#: src/Object/Post.php:1144 msgid "Comment" msgstr "Hozzászólás" -#: mod/photos.php:1133 mod/photos.php:1189 mod/photos.php:1269 -#: src/Content/Conversation.php:414 src/Module/Calendar/Event/Form.php:248 -#: src/Module/Item/Compose.php:208 src/Module/Post/Edit.php:165 -#: src/Object/Post.php:1172 +#: mod/photos.php:1097 mod/photos.php:1153 mod/photos.php:1233 +#: src/Content/Conversation.php:400 src/Module/Calendar/Event/Form.php:234 +#: src/Module/Item/Compose.php:194 src/Module/Post/Edit.php:151 +#: src/Object/Post.php:1158 msgid "Preview" msgstr "Előnézet" -#: mod/photos.php:1134 src/Content/Conversation.php:368 -#: src/Module/Post/Edit.php:130 src/Object/Post.php:1160 +#: mod/photos.php:1098 src/Content/Conversation.php:354 +#: src/Module/Post/Edit.php:116 src/Object/Post.php:1146 msgid "Loading..." msgstr "Betöltés…" -#: mod/photos.php:1226 src/Content/Conversation.php:1498 -#: src/Object/Post.php:274 +#: mod/photos.php:1190 src/Content/Conversation.php:1484 +#: src/Object/Post.php:260 msgid "Select" msgstr "Kiválasztás" -#: mod/photos.php:1227 src/Content/Conversation.php:1499 -#: src/Module/Moderation/Users/Active.php:136 -#: src/Module/Moderation/Users/Blocked.php:136 -#: src/Module/Moderation/Users/Index.php:151 -#: src/Module/Settings/Connectors.php:254 -#: src/Module/Settings/Server/Index.php:109 +#: mod/photos.php:1191 src/Content/Conversation.php:1485 +#: src/Module/Moderation/Users/Active.php:122 +#: src/Module/Moderation/Users/Blocked.php:122 +#: src/Module/Moderation/Users/Index.php:137 +#: src/Module/Settings/Connectors.php:233 +#: src/Module/Settings/Server/Index.php:95 msgid "Delete" msgstr "Törlés" -#: mod/photos.php:1288 src/Object/Post.php:440 +#: mod/photos.php:1252 src/Object/Post.php:426 msgid "Like" msgstr "Tetszik" -#: mod/photos.php:1289 src/Object/Post.php:440 +#: mod/photos.php:1253 src/Object/Post.php:426 msgid "I like this (toggle)" msgstr "Ezt kedvelem (átváltás)" -#: mod/photos.php:1290 src/Object/Post.php:441 +#: mod/photos.php:1254 src/Object/Post.php:427 msgid "Dislike" msgstr "Nem tetszik" -#: mod/photos.php:1292 src/Object/Post.php:441 +#: mod/photos.php:1256 src/Object/Post.php:427 msgid "I don't like this (toggle)" msgstr "Ezt nem kedvelem (átváltás)" -#: mod/photos.php:1314 +#: mod/photos.php:1278 msgid "Map" msgstr "Térkép" -#: src/App.php:446 +#: src/App.php:432 msgid "No system theme config value set." msgstr "Nincs rendszertéma beállítási érték megadva." -#: src/App.php:554 +#: src/App.php:540 msgid "Apologies but the website is unavailable at the moment." msgstr "Elnézést, de a weboldal jelenleg nem érhető el." -#: src/App/Page.php:250 +#: src/App/Page.php:236 msgid "Delete this item?" msgstr "Törli ezt az elemet?" -#: src/App/Page.php:251 +#: src/App/Page.php:237 msgid "" "Block this author? They won't be able to follow you nor see your public " "posts, and you won't be able to see their posts and their notifications." msgstr "Tiltja ezt a szerzőt? Nem lesz képes követni Önt, és a nyilvános bejegyzéseit sem látja, valamint Ön sem lesz képes megtekinteni az ő bejegyzéseit és értesítéseit." -#: src/App/Page.php:252 +#: src/App/Page.php:238 msgid "" "Ignore this author? You won't be able to see their posts and their " "notifications." msgstr "Mellőzi ezt a szerzőt? Nem lesz képes megtekinteni az ő bejegyzéseit és értesítéseit." -#: src/App/Page.php:253 +#: src/App/Page.php:239 msgid "Collapse this author's posts?" msgstr "Összecsukja ennek a szerzőnek a bejegyzéseit?" -#: src/App/Page.php:254 +#: src/App/Page.php:240 msgid "Ignore this author's server?" msgstr "Mellőzi ennek a szerzőnek a kiszolgálóját?" -#: src/App/Page.php:255 src/Module/Settings/Server/Action.php:61 -#: src/Module/Settings/Server/Index.php:108 +#: src/App/Page.php:241 src/Module/Settings/Server/Action.php:47 +#: src/Module/Settings/Server/Index.php:94 msgid "" "You won't see any content from this server including reshares in your " "Network page, the community pages and individual conversations." msgstr "Nem fog látni semmilyen tartalmat erről a kiszolgálóról, beleértve a hálózat oldalon, a közösségi oldalakon és az egyéni beszélgetésekben lévő újra megosztásokat is." -#: src/App/Page.php:257 +#: src/App/Page.php:243 msgid "Like not successful" msgstr "A kedvelés sikertelen" -#: src/App/Page.php:258 +#: src/App/Page.php:244 msgid "Dislike not successful" msgstr "A nem kedvelés sikertelen" -#: src/App/Page.php:259 +#: src/App/Page.php:245 msgid "Sharing not successful" msgstr "A megosztás sikertelen" -#: src/App/Page.php:260 +#: src/App/Page.php:246 msgid "Attendance unsuccessful" msgstr "A részvétel sikertelen" -#: src/App/Page.php:261 +#: src/App/Page.php:247 msgid "Backend error" msgstr "Háttérprogram hiba" -#: src/App/Page.php:262 +#: src/App/Page.php:248 msgid "Network error" msgstr "Hálózati hiba" -#: src/App/Page.php:265 +#: src/App/Page.php:251 msgid "Drop files here to upload" msgstr "Dobja ide a fájlokat a feltöltéséhez" -#: src/App/Page.php:266 +#: src/App/Page.php:252 msgid "Your browser does not support drag and drop file uploads." msgstr "A böngészője nem támogatja a fogd és vidd fájlfeltöltéseket." -#: src/App/Page.php:267 +#: src/App/Page.php:253 msgid "" "Please use the fallback form below to upload your files like in the olden " "days." msgstr "Használja az alábbi tartalék űrlapot a fájlok feltöltéséhez, mint a régi időkben." -#: src/App/Page.php:268 +#: src/App/Page.php:254 msgid "File is too big ({{filesize}}MiB). Max filesize: {{maxFilesize}}MiB." msgstr "A fájl túl nagy ({{filesize}} MiB). A legnagyobb fájlméret: {{maxFilesize}} MiB." -#: src/App/Page.php:269 +#: src/App/Page.php:255 msgid "You can't upload files of this type." msgstr "Nem tud ilyen típusú fájlokat feltölteni." -#: src/App/Page.php:270 +#: src/App/Page.php:256 msgid "Server responded with {{statusCode}} code." msgstr "A kiszolgáló {{statusCode}} állapotkóddal válaszolt." -#: src/App/Page.php:271 +#: src/App/Page.php:257 msgid "Cancel upload" msgstr "Feltöltés megszakítása" -#: src/App/Page.php:272 +#: src/App/Page.php:258 msgid "Upload canceled." msgstr "A feltöltés megszakítva." -#: src/App/Page.php:273 +#: src/App/Page.php:259 msgid "Are you sure you want to cancel this upload?" msgstr "Biztosan meg szeretné szakítani ezt a feltöltést?" -#: src/App/Page.php:274 +#: src/App/Page.php:260 msgid "Remove file" msgstr "Fájl eltávolítása" -#: src/App/Page.php:275 +#: src/App/Page.php:261 msgid "You can't upload any more files." msgstr "Nem tud több fájlt feltölteni." -#: src/App/Page.php:353 +#: src/App/Page.php:339 msgid "toggle mobile" msgstr "váltás mobilra" -#: src/App/Router.php:309 +#: src/App/Router.php:295 #, php-format msgid "Method not allowed for this module. Allowed method(s): %s" msgstr "A módszer nem engedélyezett ennél a modulnál. Az engedélyezett módszerek: %s" -#: src/App/Router.php:311 src/Module/HTTPException/PageNotFound.php:49 -#: src/Module/Stats.php:63 +#: src/App/Router.php:297 src/Module/HTTPException/PageNotFound.php:35 +#: src/Module/Stats.php:49 msgid "Page not found." msgstr "Az oldal nem található." -#: src/App/Router.php:323 +#: src/App/Router.php:309 msgid "You must be logged in to use addons. " msgstr "Bejelentkezve kell lennie a bővítmények használatához." -#: src/BaseModule.php:407 +#: src/BaseModule.php:393 msgid "" "The form security token was not correct. This probably happened because the " "form has been opened for too long (>3 hours) before submitting it." msgstr "Az űrlap biztonsági tokenje nem volt helyes. Ez valószínűleg azért történt, mert az űrlapot túl hosszan tartották nyitva (>3 óra), mielőtt elküldték volna." -#: src/BaseModule.php:434 +#: src/BaseModule.php:420 msgid "All contacts" msgstr "Összes partner" -#: src/BaseModule.php:439 src/Content/Conversation/Factory/Channel.php:46 -#: src/Content/Widget.php:240 src/Core/ACL.php:195 src/Module/Contact.php:420 -#: src/Module/Privacy/PermissionTooltip.php:164 -#: src/Module/Privacy/PermissionTooltip.php:186 -#: src/Module/Settings/Channels.php:160 +#: src/BaseModule.php:425 src/Content/Conversation/Factory/Channel.php:32 +#: src/Content/Widget.php:218 src/Core/ACL.php:181 src/Module/Contact.php:395 +#: src/Module/Privacy/PermissionTooltip.php:150 +#: src/Module/Privacy/PermissionTooltip.php:172 +#: src/Module/Settings/Channels.php:146 msgid "Followers" msgstr "Követők" -#: src/BaseModule.php:444 src/Content/Widget.php:241 -#: src/Module/Contact.php:423 src/Module/Settings/Channels.php:159 +#: src/BaseModule.php:430 src/Content/Widget.php:219 +#: src/Module/Contact.php:398 src/Module/Settings/Channels.php:145 msgid "Following" msgstr "Követés" -#: src/BaseModule.php:449 src/Content/Widget.php:242 -#: src/Module/Contact.php:426 +#: src/BaseModule.php:435 src/Content/Widget.php:220 +#: src/Module/Contact.php:401 msgid "Mutual friends" msgstr "Kölcsönösen ismerősök" -#: src/BaseModule.php:457 +#: src/BaseModule.php:443 msgid "Common" msgstr "Közös" -#: src/Console/Addon.php:175 src/Console/Addon.php:199 +#: src/Console/Addon.php:161 src/Console/Addon.php:185 msgid "Addon not found" msgstr "A bővítmény nem található" -#: src/Console/Addon.php:179 +#: src/Console/Addon.php:165 msgid "Addon already enabled" msgstr "A bővítmény már engedélyezve van" -#: src/Console/Addon.php:203 +#: src/Console/Addon.php:189 msgid "Addon already disabled" msgstr "A bővítmény már le van tiltva" -#: src/Console/ArchiveContact.php:106 +#: src/Console/ArchiveContact.php:92 #, php-format msgid "Could not find any unarchived contact entry for this URL (%s)" msgstr "Nem sikerült találni egyetlen archiválatlan partnerbejegyzést sem erről az URL-ről (%s)" -#: src/Console/ArchiveContact.php:109 +#: src/Console/ArchiveContact.php:95 msgid "The contact entries have been archived" msgstr "A partnerbejegyzések archiválva lettek" -#: src/Console/ClearAvatarCache.php:87 +#: src/Console/ClearAvatarCache.php:73 msgid "" "The avatar cache needs to be disabled in local.config.php to use this " "command." msgstr "" -#: src/Console/GlobalCommunityBlock.php:96 -#: src/Module/Moderation/Blocklist/Contact.php:65 +#: src/Console/GlobalCommunityBlock.php:82 +#: src/Module/Moderation/Blocklist/Contact.php:51 #, php-format msgid "Could not find any contact entry for this URL (%s)" msgstr "Nem sikerült találni egyetlen partnerbejegyzést sem erről az URL-ről (%s)" -#: src/Console/GlobalCommunityBlock.php:101 -#: src/Module/Moderation/Blocklist/Contact.php:82 +#: src/Console/GlobalCommunityBlock.php:87 +#: src/Module/Moderation/Blocklist/Contact.php:68 msgid "The contact has been blocked from the node" msgstr "A partner tiltva lett a csomópontról" -#: src/Console/MergeContacts.php:75 +#: src/Console/MergeContacts.php:61 #, php-format msgid "%d %s, %d duplicates." msgstr "%d %s, %d kettőzés." -#: src/Console/MergeContacts.php:78 +#: src/Console/MergeContacts.php:64 #, php-format msgid "uri-id is empty for contact %s." msgstr "Az URI-azonosító üres %s partnernél." -#: src/Console/MergeContacts.php:91 +#: src/Console/MergeContacts.php:77 #, php-format msgid "No valid first contact found for uri-id %d." msgstr "Nem található érvényes első partner a(z) %d. URI-azonosítóhoz." -#: src/Console/MergeContacts.php:102 +#: src/Console/MergeContacts.php:88 #, php-format msgid "Wrong duplicate found for uri-id %d in %d (url: %s != %s)." msgstr "Hibás kettőzés található a(z) %d. URI-azonosítónál ebben: %d (URL: %s != %s)." -#: src/Console/MergeContacts.php:106 +#: src/Console/MergeContacts.php:92 #, php-format msgid "Wrong duplicate found for uri-id %d in %d (nurl: %s != %s)." msgstr "Hibás kettőzés található a(z) %d. URI-azonosítónál ebben: %d (NURL: %s != %s)." -#: src/Console/MergeContacts.php:142 +#: src/Console/MergeContacts.php:128 #, php-format msgid "Deletion of id %d failed" msgstr "A(z) %d. azonosító törlése sikertelen" -#: src/Console/MergeContacts.php:144 +#: src/Console/MergeContacts.php:130 #, php-format msgid "Deletion of id %d was successful" msgstr "A(z) %d. azonosító törlése sikeres volt" -#: src/Console/MergeContacts.php:150 +#: src/Console/MergeContacts.php:136 #, php-format msgid "Updating \"%s\" in \"%s\" from %d to %d" msgstr "„%s” frissítése ebben: „%s”, %d. értéktől %d. értékig" -#: src/Console/MergeContacts.php:152 +#: src/Console/MergeContacts.php:138 msgid " - found" msgstr " – megtalálva" -#: src/Console/MergeContacts.php:159 +#: src/Console/MergeContacts.php:145 msgid " - failed" msgstr " – sikertelen" -#: src/Console/MergeContacts.php:161 +#: src/Console/MergeContacts.php:147 msgid " - success" msgstr " – sikeres" -#: src/Console/MergeContacts.php:165 +#: src/Console/MergeContacts.php:151 msgid " - deleted" msgstr " – törölve" -#: src/Console/MergeContacts.php:168 +#: src/Console/MergeContacts.php:154 msgid " - done" msgstr " – kész" -#: src/Console/MoveToAvatarCache.php:91 +#: src/Console/MoveToAvatarCache.php:77 msgid "The avatar cache needs to be enabled to use this command." msgstr "A profilkép gyorsítótárának engedélyezve kell lennie a parancs használatához." -#: src/Console/MoveToAvatarCache.php:109 +#: src/Console/MoveToAvatarCache.php:95 #, php-format msgid "no resource in photo %s" msgstr "nincs erőforrás a(z) %s fényképen" -#: src/Console/MoveToAvatarCache.php:137 +#: src/Console/MoveToAvatarCache.php:123 #, php-format msgid "no photo with id %s" msgstr "nincs %s azonosítóval rendelkező fénykép" -#: src/Console/MoveToAvatarCache.php:146 +#: src/Console/MoveToAvatarCache.php:132 #, php-format msgid "no image data for photo with id %s" msgstr "nincsenek képadatok a(z) %s azonosítóval rendelkező fényképnél" -#: src/Console/MoveToAvatarCache.php:155 +#: src/Console/MoveToAvatarCache.php:141 #, php-format msgid "invalid image for id %s" msgstr "érvénytelen kép a(z) %s azonosítónál" -#: src/Console/MoveToAvatarCache.php:168 +#: src/Console/MoveToAvatarCache.php:154 #, php-format msgid "Quit on invalid photo %s" msgstr "Kilépés az érvénytelen %s fényképnél" -#: src/Console/PostUpdate.php:87 +#: src/Console/PostUpdate.php:73 #, php-format msgid "Post update version number has been set to %s." msgstr "A bejegyzésfrissítés verziószáma erre lett beállítva: %s." -#: src/Console/PostUpdate.php:95 +#: src/Console/PostUpdate.php:81 msgid "Check for pending update actions." msgstr "Függőben lévő frissítési műveletek ellenőrzése." -#: src/Console/PostUpdate.php:97 +#: src/Console/PostUpdate.php:83 msgid "Done." msgstr "Kész." -#: src/Console/PostUpdate.php:99 +#: src/Console/PostUpdate.php:85 msgid "Execute pending post updates." msgstr "Függőben lévő bejegyzésfrissítések végrehajtása." -#: src/Console/PostUpdate.php:105 +#: src/Console/PostUpdate.php:91 msgid "All pending post updates are done." msgstr "Az összes függőben lévő bejegyzésfrissítés kész." -#: src/Console/User.php:158 src/Console/User.php:246 +#: src/Console/User.php:144 src/Console/User.php:232 msgid "Enter user nickname: " msgstr "Felhasználó becenevének megadása: " -#: src/Console/User.php:182 src/Model/User.php:847 -#: src/Module/Api/Twitter/ContactEndpoint.php:74 -#: src/Module/Moderation/Users/Active.php:71 -#: src/Module/Moderation/Users/Blocked.php:71 -#: src/Module/Moderation/Users/Index.php:78 -#: src/Module/Moderation/Users/Pending.php:67 +#: src/Console/User.php:168 src/Model/User.php:831 +#: src/Module/Api/Twitter/ContactEndpoint.php:60 +#: src/Module/Moderation/Users/Active.php:57 +#: src/Module/Moderation/Users/Blocked.php:57 +#: src/Module/Moderation/Users/Index.php:64 +#: src/Module/Moderation/Users/Pending.php:53 msgid "User not found" msgstr "A felhasználó nem található" -#: src/Console/User.php:202 +#: src/Console/User.php:188 msgid "Enter new password: " msgstr "Új jelszó megadása: " -#: src/Console/User.php:210 src/Module/Security/PasswordTooLong.php:69 -#: src/Module/Settings/Account.php:75 +#: src/Console/User.php:196 src/Module/Security/PasswordTooLong.php:55 +#: src/Module/Settings/Account.php:61 msgid "Password update failed. Please try again." msgstr "A jelszó frissítése sikertelen. Próbálja újra." -#: src/Console/User.php:213 src/Module/Security/PasswordTooLong.php:72 -#: src/Module/Settings/Account.php:78 +#: src/Console/User.php:199 src/Module/Security/PasswordTooLong.php:58 +#: src/Module/Settings/Account.php:64 msgid "Password changed." msgstr "A jelszó megváltoztatva." -#: src/Console/User.php:238 +#: src/Console/User.php:224 msgid "Enter user name: " msgstr "Felhasználónév megadása: " -#: src/Console/User.php:254 +#: src/Console/User.php:240 msgid "Enter user email address: " msgstr "Felhasználó e-mail-címének megadása: " -#: src/Console/User.php:262 +#: src/Console/User.php:248 msgid "Enter a language (optional): " msgstr "Nyelv megadása (elhagyható): " -#: src/Console/User.php:267 +#: src/Console/User.php:253 msgid "Enter URL of an image to use as avatar (optional): " msgstr "Adja meg a profilképként használandó kép URL-jét (elhagyható): " -#: src/Console/User.php:292 +#: src/Console/User.php:278 msgid "User is not pending." msgstr "A felhasználó nincs függőben." -#: src/Console/User.php:324 +#: src/Console/User.php:310 msgid "User has already been marked for deletion." msgstr "A felhasználó már meg lett jelölve törlésre." -#: src/Console/User.php:329 +#: src/Console/User.php:315 #, php-format msgid "Type \"yes\" to delete %s" msgstr "Írja be a „yes” szót %s törléséhez" -#: src/Console/User.php:331 +#: src/Console/User.php:317 msgid "Deletion aborted." msgstr "Törlés megszakítva." -#: src/Console/User.php:456 +#: src/Console/User.php:442 msgid "Enter category: " msgstr "Kategória megadása: " -#: src/Console/User.php:466 +#: src/Console/User.php:452 msgid "Enter key: " msgstr "Kulcs megadása: " -#: src/Console/User.php:500 +#: src/Console/User.php:486 msgid "Enter value: " msgstr "Érték megadása: " -#: src/Content/BoundariesPager.php:116 src/Content/Pager.php:171 +#: src/Content/BoundariesPager.php:102 src/Content/Pager.php:157 msgid "newer" msgstr "soha" -#: src/Content/BoundariesPager.php:124 src/Content/Pager.php:176 +#: src/Content/BoundariesPager.php:110 src/Content/Pager.php:162 msgid "older" msgstr "régebbi" -#: src/Content/ContactSelector.php:51 +#: src/Content/ContactSelector.php:37 msgid "Frequently" msgstr "Gyakran" -#: src/Content/ContactSelector.php:52 +#: src/Content/ContactSelector.php:38 msgid "Hourly" msgstr "Óránként" -#: src/Content/ContactSelector.php:53 +#: src/Content/ContactSelector.php:39 msgid "Twice daily" msgstr "Naponta kétszer" -#: src/Content/ContactSelector.php:54 +#: src/Content/ContactSelector.php:40 msgid "Daily" msgstr "Naponta" -#: src/Content/ContactSelector.php:55 +#: src/Content/ContactSelector.php:41 msgid "Weekly" msgstr "Hetente" -#: src/Content/ContactSelector.php:56 +#: src/Content/ContactSelector.php:42 msgid "Monthly" msgstr "Havonta" -#: src/Content/ContactSelector.php:126 +#: src/Content/ContactSelector.php:112 msgid "DFRN" msgstr "DFRN" -#: src/Content/ContactSelector.php:127 +#: src/Content/ContactSelector.php:113 msgid "OStatus" msgstr "OStatus" -#: src/Content/ContactSelector.php:128 +#: src/Content/ContactSelector.php:114 msgid "RSS/Atom" msgstr "RSS/Atom" -#: src/Content/ContactSelector.php:129 -#: src/Module/Moderation/Users/Active.php:126 -#: src/Module/Moderation/Users/Blocked.php:126 -#: src/Module/Moderation/Users/Create.php:72 -#: src/Module/Moderation/Users/Deleted.php:83 -#: src/Module/Moderation/Users/Index.php:140 -#: src/Module/Moderation/Users/Index.php:160 -#: src/Module/Moderation/Users/Pending.php:99 +#: src/Content/ContactSelector.php:115 +#: src/Module/Moderation/Users/Active.php:112 +#: src/Module/Moderation/Users/Blocked.php:112 +#: src/Module/Moderation/Users/Create.php:58 +#: src/Module/Moderation/Users/Deleted.php:69 +#: src/Module/Moderation/Users/Index.php:126 +#: src/Module/Moderation/Users/Index.php:146 +#: src/Module/Moderation/Users/Pending.php:85 msgid "Email" msgstr "E-mail" -#: src/Content/ContactSelector.php:130 src/Module/Debug/Babel.php:315 +#: src/Content/ContactSelector.php:116 src/Module/Debug/Babel.php:301 msgid "Diaspora" msgstr "Diaspora" -#: src/Content/ContactSelector.php:131 +#: src/Content/ContactSelector.php:117 msgid "Zot!" msgstr "Zot!" -#: src/Content/ContactSelector.php:132 +#: src/Content/ContactSelector.php:118 msgid "LinkedIn" msgstr "LinkedIn" -#: src/Content/ContactSelector.php:133 +#: src/Content/ContactSelector.php:119 msgid "XMPP/IM" msgstr "XMPP/IM" -#: src/Content/ContactSelector.php:134 +#: src/Content/ContactSelector.php:120 msgid "MySpace" msgstr "MySpace" -#: src/Content/ContactSelector.php:135 +#: src/Content/ContactSelector.php:121 msgid "Google+" msgstr "Google+" -#: src/Content/ContactSelector.php:136 +#: src/Content/ContactSelector.php:122 msgid "pump.io" msgstr "pump.io" -#: src/Content/ContactSelector.php:137 +#: src/Content/ContactSelector.php:123 msgid "Twitter" msgstr "Twitter" -#: src/Content/ContactSelector.php:138 +#: src/Content/ContactSelector.php:124 msgid "Discourse" msgstr "Discourse" -#: src/Content/ContactSelector.php:139 +#: src/Content/ContactSelector.php:125 msgid "Diaspora Connector" msgstr "Diaspora összekötő" -#: src/Content/ContactSelector.php:140 +#: src/Content/ContactSelector.php:126 msgid "GNU Social Connector" msgstr "GNU Social összekötő" -#: src/Content/ContactSelector.php:141 +#: src/Content/ContactSelector.php:127 msgid "ActivityPub" msgstr "ActivityPub" -#: src/Content/ContactSelector.php:142 +#: src/Content/ContactSelector.php:128 msgid "pnut" msgstr "pnut" -#: src/Content/ContactSelector.php:143 +#: src/Content/ContactSelector.php:129 msgid "Tumblr" msgstr "Tumblr" -#: src/Content/ContactSelector.php:144 +#: src/Content/ContactSelector.php:130 msgid "Bluesky" msgstr "Bluesky" -#: src/Content/ContactSelector.php:180 +#: src/Content/ContactSelector.php:166 #, php-format msgid "%s (via %s)" msgstr "%s (ezen keresztül: %s)" -#: src/Content/Conversation.php:226 +#: src/Content/Conversation.php:212 msgid "and" msgstr "és" -#: src/Content/Conversation.php:229 +#: src/Content/Conversation.php:215 #, php-format msgid "and %d other people" msgstr "és %d más személy" -#: src/Content/Conversation.php:235 +#: src/Content/Conversation.php:221 #, php-format msgid "%2$s likes this." msgid_plural "%2$s like this." msgstr[0] "%2$s kedveli ezt." msgstr[1] "%2$s kedveli ezt." -#: src/Content/Conversation.php:237 +#: src/Content/Conversation.php:223 #, php-format msgid "%2$s doesn't like this." msgid_plural "%2$s don't like this." msgstr[0] "%2$s nem kedveli ezt." msgstr[1] "%2$s nem kedveli ezt." -#: src/Content/Conversation.php:239 +#: src/Content/Conversation.php:225 #, php-format msgid "%2$s attends." msgid_plural "%2$s attend." msgstr[0] "%2$s részt vesz." msgstr[1] "%2$s részt vesz." -#: src/Content/Conversation.php:241 +#: src/Content/Conversation.php:227 #, php-format msgid "%2$s doesn't attend." msgid_plural "%2$s don't attend." msgstr[0] "%2$s nem vesz részt." msgstr[1] "%2$s nem vesz részt." -#: src/Content/Conversation.php:243 +#: src/Content/Conversation.php:229 #, php-format msgid "%2$s attends maybe." msgid_plural "%2$s attend maybe." msgstr[0] "%2$s talán részt vesz." msgstr[1] "%2$s talán részt vesz." -#: src/Content/Conversation.php:245 +#: src/Content/Conversation.php:231 #, php-format msgid "%2$s reshared this." msgid_plural "%2$s reshared this." msgstr[0] "%2$s újra megosztotta ezt." msgstr[1] "%2$s újra megosztotta ezt." -#: src/Content/Conversation.php:276 +#: src/Content/Conversation.php:262 #, php-format msgid " likes this" msgid_plural " like this" msgstr[0] " kedveli ezt" msgstr[1] " kedveli ezt" -#: src/Content/Conversation.php:279 +#: src/Content/Conversation.php:265 #, php-format msgid " doesn't like this" msgid_plural " don't like this" msgstr[0] " nem kedveli ezt" msgstr[1] " nem kedveli ezt" -#: src/Content/Conversation.php:282 +#: src/Content/Conversation.php:268 #, php-format msgid " attends" msgid_plural " attend" msgstr[0] " részt vesz" msgstr[1] " részt vesz" -#: src/Content/Conversation.php:285 +#: src/Content/Conversation.php:271 #, php-format msgid " doesn't attend" msgid_plural " don't attend" msgstr[0] " nem vesz részt" msgstr[1] " nem vesz részt" -#: src/Content/Conversation.php:288 +#: src/Content/Conversation.php:274 #, php-format msgid " attends maybe" msgid_plural " attend maybe" msgstr[0] " talán részt vesz" msgstr[1] " talán részt vesz" -#: src/Content/Conversation.php:291 +#: src/Content/Conversation.php:277 #, php-format msgid " reshared this" msgid_plural " reshared this" msgstr[0] " újra megosztotta ezt" msgstr[1] " újra megosztotta ezt" -#: src/Content/Conversation.php:337 +#: src/Content/Conversation.php:323 msgid "Visible to everybody" msgstr "Látható mindenkinek" -#: src/Content/Conversation.php:338 src/Module/Item/Compose.php:207 -#: src/Object/Post.php:1171 +#: src/Content/Conversation.php:324 src/Module/Item/Compose.php:193 +#: src/Object/Post.php:1157 msgid "Please enter a image/video/audio/webpage URL:" msgstr "Írjon be egy kép, videó, hang vagy weboldal URL-t:" -#: src/Content/Conversation.php:339 +#: src/Content/Conversation.php:325 msgid "Tag term:" msgstr "Címkézési kifejezés:" -#: src/Content/Conversation.php:340 src/Module/Filer/SaveTag.php:73 +#: src/Content/Conversation.php:326 src/Module/Filer/SaveTag.php:59 msgid "Save to Folder:" msgstr "Mentés mappába:" -#: src/Content/Conversation.php:341 +#: src/Content/Conversation.php:327 msgid "Where are you right now?" msgstr "Hol van most éppen?" -#: src/Content/Conversation.php:342 +#: src/Content/Conversation.php:328 msgid "Delete item(s)?" msgstr "Törli az elemeket?" -#: src/Content/Conversation.php:354 src/Module/Item/Compose.php:182 +#: src/Content/Conversation.php:340 src/Module/Item/Compose.php:168 msgid "Created at" msgstr "Létrehozva" -#: src/Content/Conversation.php:364 +#: src/Content/Conversation.php:350 msgid "New Post" msgstr "Új bejegyzés" -#: src/Content/Conversation.php:367 +#: src/Content/Conversation.php:353 msgid "Share" msgstr "Megosztás" -#: src/Content/Conversation.php:370 src/Module/Post/Edit.php:132 +#: src/Content/Conversation.php:356 src/Module/Post/Edit.php:118 msgid "upload photo" msgstr "fénykép feltöltése" -#: src/Content/Conversation.php:371 src/Module/Post/Edit.php:133 +#: src/Content/Conversation.php:357 src/Module/Post/Edit.php:119 msgid "Attach file" msgstr "Fájl csatolása" -#: src/Content/Conversation.php:372 src/Module/Post/Edit.php:134 +#: src/Content/Conversation.php:358 src/Module/Post/Edit.php:120 msgid "attach file" msgstr "fájl csatolása" -#: src/Content/Conversation.php:373 src/Module/Item/Compose.php:197 -#: src/Module/Post/Edit.php:171 src/Object/Post.php:1161 +#: src/Content/Conversation.php:359 src/Module/Item/Compose.php:183 +#: src/Module/Post/Edit.php:157 src/Object/Post.php:1147 msgid "Bold" msgstr "Félkövér" -#: src/Content/Conversation.php:374 src/Module/Item/Compose.php:198 -#: src/Module/Post/Edit.php:172 src/Object/Post.php:1162 +#: src/Content/Conversation.php:360 src/Module/Item/Compose.php:184 +#: src/Module/Post/Edit.php:158 src/Object/Post.php:1148 msgid "Italic" msgstr "Dőlt" -#: src/Content/Conversation.php:375 src/Module/Item/Compose.php:199 -#: src/Module/Post/Edit.php:173 src/Object/Post.php:1163 +#: src/Content/Conversation.php:361 src/Module/Item/Compose.php:185 +#: src/Module/Post/Edit.php:159 src/Object/Post.php:1149 msgid "Underline" msgstr "Aláhúzott" -#: src/Content/Conversation.php:376 src/Module/Item/Compose.php:200 -#: src/Module/Post/Edit.php:174 src/Object/Post.php:1165 +#: src/Content/Conversation.php:362 src/Module/Item/Compose.php:186 +#: src/Module/Post/Edit.php:160 src/Object/Post.php:1151 msgid "Quote" msgstr "Idézet" -#: src/Content/Conversation.php:377 src/Module/Item/Compose.php:201 -#: src/Module/Post/Edit.php:175 src/Object/Post.php:1166 +#: src/Content/Conversation.php:363 src/Module/Item/Compose.php:187 +#: src/Module/Post/Edit.php:161 src/Object/Post.php:1152 msgid "Add emojis" msgstr "Emodzsik hozzáadása" -#: src/Content/Conversation.php:378 src/Module/Item/Compose.php:202 -#: src/Object/Post.php:1164 +#: src/Content/Conversation.php:364 src/Module/Item/Compose.php:188 +#: src/Object/Post.php:1150 msgid "Content Warning" msgstr "Tartalom figyelmeztetés" -#: src/Content/Conversation.php:379 src/Module/Item/Compose.php:203 -#: src/Module/Post/Edit.php:176 src/Object/Post.php:1167 +#: src/Content/Conversation.php:365 src/Module/Item/Compose.php:189 +#: src/Module/Post/Edit.php:162 src/Object/Post.php:1153 msgid "Code" msgstr "Kód" -#: src/Content/Conversation.php:380 src/Module/Item/Compose.php:204 -#: src/Object/Post.php:1168 +#: src/Content/Conversation.php:366 src/Module/Item/Compose.php:190 +#: src/Object/Post.php:1154 msgid "Image" msgstr "Kép" -#: src/Content/Conversation.php:381 src/Module/Item/Compose.php:205 -#: src/Module/Post/Edit.php:177 src/Object/Post.php:1169 +#: src/Content/Conversation.php:367 src/Module/Item/Compose.php:191 +#: src/Module/Post/Edit.php:163 src/Object/Post.php:1155 msgid "Link" msgstr "Hivatkozás" -#: src/Content/Conversation.php:382 src/Module/Item/Compose.php:206 -#: src/Module/Post/Edit.php:178 src/Object/Post.php:1170 +#: src/Content/Conversation.php:368 src/Module/Item/Compose.php:192 +#: src/Module/Post/Edit.php:164 src/Object/Post.php:1156 msgid "Link or Media" msgstr "Hivatkozás vagy média" -#: src/Content/Conversation.php:383 +#: src/Content/Conversation.php:369 msgid "Video" msgstr "Videó" -#: src/Content/Conversation.php:384 src/Module/Item/Compose.php:209 -#: src/Module/Post/Edit.php:141 +#: src/Content/Conversation.php:370 src/Module/Item/Compose.php:195 +#: src/Module/Post/Edit.php:127 msgid "Set your location" msgstr "Az Ön helyének beállítása" -#: src/Content/Conversation.php:385 src/Module/Post/Edit.php:142 +#: src/Content/Conversation.php:371 src/Module/Post/Edit.php:128 msgid "set location" msgstr "hely beállítása" -#: src/Content/Conversation.php:386 src/Module/Post/Edit.php:143 +#: src/Content/Conversation.php:372 src/Module/Post/Edit.php:129 msgid "Clear browser location" msgstr "Böngésző helyének törlése" -#: src/Content/Conversation.php:387 src/Module/Post/Edit.php:144 +#: src/Content/Conversation.php:373 src/Module/Post/Edit.php:130 msgid "clear location" msgstr "hely törlése" -#: src/Content/Conversation.php:389 src/Module/Item/Compose.php:214 -#: src/Module/Post/Edit.php:157 +#: src/Content/Conversation.php:375 src/Module/Item/Compose.php:200 +#: src/Module/Post/Edit.php:143 msgid "Set title" msgstr "Cím beállítása" -#: src/Content/Conversation.php:391 src/Module/Item/Compose.php:215 -#: src/Module/Post/Edit.php:159 +#: src/Content/Conversation.php:377 src/Module/Item/Compose.php:201 +#: src/Module/Post/Edit.php:145 msgid "Categories (comma-separated list)" msgstr "Kategóriák (vesszővel elválasztott lista)" -#: src/Content/Conversation.php:396 src/Module/Item/Compose.php:231 +#: src/Content/Conversation.php:382 src/Module/Item/Compose.php:217 msgid "Scheduled at" msgstr "Ütemezve ekkor" -#: src/Content/Conversation.php:401 src/Module/Post/Edit.php:146 +#: src/Content/Conversation.php:387 src/Module/Post/Edit.php:132 msgid "Permission settings" msgstr "Jogosultsági beállítások" -#: src/Content/Conversation.php:410 src/Module/Post/Edit.php:155 +#: src/Content/Conversation.php:396 src/Module/Post/Edit.php:141 msgid "Public post" msgstr "Nyilvános bejegyzés" -#: src/Content/Conversation.php:424 src/Content/Widget/VCard.php:131 -#: src/Model/Profile.php:476 src/Module/Admin/Logs/View.php:94 -#: src/Module/Post/Edit.php:181 +#: src/Content/Conversation.php:410 src/Content/Widget/VCard.php:117 +#: src/Model/Profile.php:462 src/Module/Admin/Logs/View.php:80 +#: src/Module/Post/Edit.php:167 msgid "Message" msgstr "Üzenet" -#: src/Content/Conversation.php:425 src/Module/Post/Edit.php:182 -#: src/Module/Settings/TwoFactor/Trusted.php:143 +#: src/Content/Conversation.php:411 src/Module/Post/Edit.php:168 +#: src/Module/Settings/TwoFactor/Trusted.php:129 msgid "Browser" msgstr "Böngésző" -#: src/Content/Conversation.php:427 src/Module/Post/Edit.php:185 +#: src/Content/Conversation.php:413 src/Module/Post/Edit.php:171 msgid "Open Compose page" msgstr "Írás oldal megnyitása" -#: src/Content/Conversation.php:594 +#: src/Content/Conversation.php:580 msgid "remove" msgstr "eltávolítás" -#: src/Content/Conversation.php:598 +#: src/Content/Conversation.php:584 msgid "Delete Selected Items" msgstr "Kijelölt elemek törlése" -#: src/Content/Conversation.php:726 src/Content/Conversation.php:729 -#: src/Content/Conversation.php:732 src/Content/Conversation.php:735 -#: src/Content/Conversation.php:738 +#: src/Content/Conversation.php:712 src/Content/Conversation.php:715 +#: src/Content/Conversation.php:718 src/Content/Conversation.php:721 +#: src/Content/Conversation.php:724 #, php-format msgid "You had been addressed (%s)." msgstr "Önt megszólították (%s)." -#: src/Content/Conversation.php:741 +#: src/Content/Conversation.php:727 #, php-format msgid "You are following %s." msgstr "Ön követi őt: %s." -#: src/Content/Conversation.php:746 +#: src/Content/Conversation.php:732 #, php-format msgid "You subscribed to %s." msgstr "Ön feliratkozott erre: %s." -#: src/Content/Conversation.php:748 +#: src/Content/Conversation.php:734 msgid "You subscribed to one or more tags in this post." msgstr "Ön feliratkozott egy vagy több címkére ebben a bejegyzésben." -#: src/Content/Conversation.php:768 +#: src/Content/Conversation.php:754 #, php-format msgid "%s reshared this." msgstr "%s újra megosztotta ezt." -#: src/Content/Conversation.php:770 +#: src/Content/Conversation.php:756 msgid "Reshared" msgstr "Újra megosztva" -#: src/Content/Conversation.php:770 +#: src/Content/Conversation.php:756 #, php-format msgid "Reshared by %s <%s>" msgstr "%s <%s> újra megosztotta" -#: src/Content/Conversation.php:773 +#: src/Content/Conversation.php:759 #, php-format msgid "%s is participating in this thread." msgstr "%s részt vesz ebben a szálban." -#: src/Content/Conversation.php:776 +#: src/Content/Conversation.php:762 msgid "Stored for general reasons" msgstr "Általános okokból tárolva" -#: src/Content/Conversation.php:779 +#: src/Content/Conversation.php:765 msgid "Global post" msgstr "Globális bejegyzés" -#: src/Content/Conversation.php:782 +#: src/Content/Conversation.php:768 msgid "Sent via an relay server" msgstr "Elküldve egy továbbító kiszolgálón keresztül" -#: src/Content/Conversation.php:782 +#: src/Content/Conversation.php:768 #, php-format msgid "Sent via the relay server %s <%s>" msgstr "Elküldve a(z) %s <%s> továbbító kiszolgálón keresztül" -#: src/Content/Conversation.php:785 +#: src/Content/Conversation.php:771 msgid "Fetched" msgstr "Lekérve" -#: src/Content/Conversation.php:785 +#: src/Content/Conversation.php:771 #, php-format msgid "Fetched because of %s <%s>" msgstr "Lekérve %s <%s> miatt" -#: src/Content/Conversation.php:788 +#: src/Content/Conversation.php:774 msgid "Stored because of a child post to complete this thread." msgstr "Eltárolva egy gyermekbejegyzés miatt, hogy befejezze ezt a szálat." -#: src/Content/Conversation.php:791 +#: src/Content/Conversation.php:777 msgid "Local delivery" msgstr "Helyi kézbesítés" -#: src/Content/Conversation.php:794 +#: src/Content/Conversation.php:780 msgid "Stored because of your activity (like, comment, star, ...)" msgstr "Eltárolva az Ön tevékenysége miatt (kedvelés, hozzászólás, csillagozás stb.)" -#: src/Content/Conversation.php:797 +#: src/Content/Conversation.php:783 msgid "Distributed" msgstr "Elosztott" -#: src/Content/Conversation.php:800 +#: src/Content/Conversation.php:786 msgid "Pushed to us" msgstr "Leküldve nekünk" -#: src/Content/Conversation.php:1518 src/Object/Post.php:261 +#: src/Content/Conversation.php:1504 src/Object/Post.php:247 msgid "Pinned item" msgstr "Kitűzött elem" -#: src/Content/Conversation.php:1535 src/Object/Post.php:555 -#: src/Object/Post.php:556 +#: src/Content/Conversation.php:1521 src/Object/Post.php:541 +#: src/Object/Post.php:542 #, php-format msgid "View %s's profile @ %s" msgstr "%s profiljának megtekintése ezen: %s" -#: src/Content/Conversation.php:1549 src/Object/Post.php:543 +#: src/Content/Conversation.php:1535 src/Object/Post.php:529 msgid "Categories:" msgstr "Kategóriák:" -#: src/Content/Conversation.php:1550 src/Object/Post.php:544 +#: src/Content/Conversation.php:1536 src/Object/Post.php:530 msgid "Filed under:" msgstr "Iktatva itt:" -#: src/Content/Conversation.php:1558 src/Object/Post.php:570 +#: src/Content/Conversation.php:1544 src/Object/Post.php:556 #, php-format msgid "%s from %s" msgstr "%s tőle: %s" -#: src/Content/Conversation.php:1574 +#: src/Content/Conversation.php:1560 msgid "View in context" msgstr "Megtekintés környezetben" -#: src/Content/Conversation/Factory/Channel.php:42 +#: src/Content/Conversation/Factory/Channel.php:28 msgid "For you" msgstr "Önnek" -#: src/Content/Conversation/Factory/Channel.php:42 +#: src/Content/Conversation/Factory/Channel.php:28 msgid "Posts from contacts you interact with and who interact with you" msgstr "Azoktól a partnerektől származó bejegyzések, akikkel kapcsolatba kerül és akik kapcsolatba kerülnek Önnel" -#: src/Content/Conversation/Factory/Channel.php:43 +#: src/Content/Conversation/Factory/Channel.php:29 msgid "Discover" msgstr "Felfedezés" -#: src/Content/Conversation/Factory/Channel.php:43 +#: src/Content/Conversation/Factory/Channel.php:29 msgid "Posts from accounts that you don't follow, but that you might like." msgstr "Az olyan fiókokból származó bejegyzések, amelyeket nem követ, de kedvelheti azokat." -#: src/Content/Conversation/Factory/Channel.php:44 +#: src/Content/Conversation/Factory/Channel.php:30 msgid "What's Hot" msgstr "Mi a menő" -#: src/Content/Conversation/Factory/Channel.php:44 +#: src/Content/Conversation/Factory/Channel.php:30 msgid "Posts with a lot of interactions" msgstr "Sok interakcióval rendelkező bejegyzések" -#: src/Content/Conversation/Factory/Channel.php:45 +#: src/Content/Conversation/Factory/Channel.php:31 #, php-format msgid "Posts in %s" msgstr "Bejegyzések ebben: %s" -#: src/Content/Conversation/Factory/Channel.php:46 +#: src/Content/Conversation/Factory/Channel.php:32 msgid "Posts from your followers that you don't follow" msgstr "Az olyan követőitől származó bejegyzések, akiket nem követ" -#: src/Content/Conversation/Factory/Channel.php:47 +#: src/Content/Conversation/Factory/Channel.php:33 msgid "Sharers of sharers" msgstr "Megosztók megosztói" -#: src/Content/Conversation/Factory/Channel.php:47 +#: src/Content/Conversation/Factory/Channel.php:33 msgid "Posts from accounts that are followed by accounts that you follow" msgstr "Az Ön által követett fiókok által követett fiókokból származó bejegyzések" -#: src/Content/Conversation/Factory/Channel.php:48 +#: src/Content/Conversation/Factory/Channel.php:34 msgid "Quiet sharers" msgstr "Csendes megosztók" -#: src/Content/Conversation/Factory/Channel.php:48 +#: src/Content/Conversation/Factory/Channel.php:34 msgid "Posts from accounts that you follow but who don't post very often" msgstr "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:199 src/Module/Settings/Channels.php:220 +#: src/Content/Conversation/Factory/Channel.php:35 +#: src/Module/Settings/Channels.php:185 src/Module/Settings/Channels.php:206 msgid "Images" msgstr "Képek" -#: src/Content/Conversation/Factory/Channel.php:49 +#: src/Content/Conversation/Factory/Channel.php:35 msgid "Posts with images" msgstr "Képekkel rendelkező bejegyzések" -#: src/Content/Conversation/Factory/Channel.php:50 -#: src/Module/Settings/Channels.php:201 src/Module/Settings/Channels.php:222 +#: src/Content/Conversation/Factory/Channel.php:36 +#: src/Module/Settings/Channels.php:187 src/Module/Settings/Channels.php:208 msgid "Audio" msgstr "Hang" -#: src/Content/Conversation/Factory/Channel.php:50 +#: src/Content/Conversation/Factory/Channel.php:36 msgid "Posts with audio" msgstr "Hanggal rendelkező bejegyzések" -#: src/Content/Conversation/Factory/Channel.php:51 -#: src/Module/Settings/Channels.php:200 src/Module/Settings/Channels.php:221 +#: src/Content/Conversation/Factory/Channel.php:37 +#: src/Module/Settings/Channels.php:186 src/Module/Settings/Channels.php:207 msgid "Videos" msgstr "Videók" -#: src/Content/Conversation/Factory/Channel.php:51 +#: src/Content/Conversation/Factory/Channel.php:37 msgid "Posts with videos" msgstr "Videókkal rendelkező bejegyzések" -#: src/Content/Conversation/Factory/Community.php:43 +#: src/Content/Conversation/Factory/Community.php:29 msgid "Local Community" msgstr "Helyi közösség" -#: src/Content/Conversation/Factory/Community.php:43 +#: src/Content/Conversation/Factory/Community.php:29 msgid "Posts from local users on this server" msgstr "Bejegyzések a kiszolgálón lévő helyi felhasználóktól" -#: src/Content/Conversation/Factory/Community.php:47 -#: src/Module/Settings/Channels.php:150 src/Module/Settings/Channels.php:155 +#: src/Content/Conversation/Factory/Community.php:33 +#: src/Module/Settings/Channels.php:136 src/Module/Settings/Channels.php:141 msgid "Global Community" msgstr "Globális közösség" -#: src/Content/Conversation/Factory/Community.php:47 +#: src/Content/Conversation/Factory/Community.php:33 msgid "Posts from users of the whole federated network" msgstr "Bejegyzések a teljes föderált hálózat felhasználóitól" -#: src/Content/Conversation/Factory/Network.php:38 -#: src/Module/Settings/Channels.php:156 +#: src/Content/Conversation/Factory/Network.php:24 +#: src/Module/Settings/Channels.php:142 msgid "Latest Activity" msgstr "Legutóbbi tevékenység" -#: src/Content/Conversation/Factory/Network.php:38 +#: src/Content/Conversation/Factory/Network.php:24 msgid "Sort by latest activity" msgstr "Rendezés a legutóbbi tevékenység szerint" -#: src/Content/Conversation/Factory/Network.php:39 -#: src/Module/Settings/Channels.php:157 +#: src/Content/Conversation/Factory/Network.php:25 +#: src/Module/Settings/Channels.php:143 msgid "Latest Posts" msgstr "Legutóbbi bejegyzések" -#: src/Content/Conversation/Factory/Network.php:39 +#: src/Content/Conversation/Factory/Network.php:25 msgid "Sort by post received date" msgstr "Rendezés a bejegyzés érkezési dátuma szerint" -#: src/Content/Conversation/Factory/Network.php:40 -#: src/Module/Settings/Channels.php:158 +#: src/Content/Conversation/Factory/Network.php:26 +#: src/Module/Settings/Channels.php:144 msgid "Latest Creation" msgstr "Legutóbbi létrehozás" -#: src/Content/Conversation/Factory/Network.php:40 +#: src/Content/Conversation/Factory/Network.php:26 msgid "Sort by post creation date" msgstr "Rendezés a bejegyzés létrehozási dátuma szerint" -#: src/Content/Conversation/Factory/Network.php:41 -#: src/Module/Settings/Profile/Index.php:265 +#: src/Content/Conversation/Factory/Network.php:27 +#: src/Module/Settings/Profile/Index.php:251 msgid "Personal" msgstr "Személyes" -#: src/Content/Conversation/Factory/Network.php:41 +#: src/Content/Conversation/Factory/Network.php:27 msgid "Posts that mention or involve you" msgstr "Bejegyzések, amelyek említik vagy tartalmazzák Önt" -#: src/Content/Conversation/Factory/Network.php:42 src/Object/Post.php:411 +#: src/Content/Conversation/Factory/Network.php:28 src/Object/Post.php:397 msgid "Starred" msgstr "Csillagozott" -#: src/Content/Conversation/Factory/Network.php:42 +#: src/Content/Conversation/Factory/Network.php:28 msgid "Favourite Posts" msgstr "Kedvenc bejegyzések" -#: src/Content/Feature.php:107 +#: src/Content/Feature.php:93 msgid "General Features" msgstr "Általános funkciók" -#: src/Content/Feature.php:109 +#: src/Content/Feature.php:95 msgid "Photo Location" msgstr "Fénykép helye" -#: src/Content/Feature.php:109 +#: src/Content/Feature.php:95 msgid "" "Photo metadata is normally stripped. This extracts the location (if present)" " prior to stripping metadata and links it to a map." msgstr "A fénykép metaadatai általában ki vannak törölve. Ez kinyeri a helyet (ha meg van adva) a metaadatok törlése előtt, és hivatkozást készít rá egy térképen." -#: src/Content/Feature.php:110 +#: src/Content/Feature.php:96 msgid "Display the community in the navigation" msgstr "A közösség megjelenítése a navigációban" -#: src/Content/Feature.php:110 +#: src/Content/Feature.php:96 msgid "" "If enabled, the community can be accessed via the navigation menu. " "Independent from this setting, the community timelines can always be " "accessed via the channels." msgstr "Ha engedélyezve van, akkor a közösség elérhető a navigációs menün keresztül. Ettől a beállítástól függetlenül a közösség idővonalai mindig elérhetők a csatornákon keresztül." -#: src/Content/Feature.php:115 +#: src/Content/Feature.php:101 msgid "Post Composition Features" msgstr "Bejegyzés-összeállítási funkciók" -#: src/Content/Feature.php:116 +#: src/Content/Feature.php:102 msgid "Explicit Mentions" msgstr "Közvetlen említések" -#: src/Content/Feature.php:116 +#: src/Content/Feature.php:102 msgid "" "Add explicit mentions to comment box for manual control over who gets " "mentioned in replies." msgstr "Közvetlen említések hozzáadása a hozzászólásmezőhöz kézi vezérléssel, hogy ki lesz megemlítve a válaszokban." -#: src/Content/Feature.php:117 +#: src/Content/Feature.php:103 msgid "Add an abstract from ActivityPub content warnings" msgstr "Kivonat hozzáadása az ActivityPub tartalomfigyelmeztetéseiből" -#: src/Content/Feature.php:117 +#: src/Content/Feature.php:103 msgid "" "Add an abstract when commenting on ActivityPub posts with a content warning." " Abstracts are displayed as content warning on systems like Mastodon or " "Pleroma." msgstr "Kivonat hozzáadása a tartalomfigyelmeztetéssel rendelkező ActivityPub bejegyzéseknél történő hozzászóláskor. A kivonatok tartalomfigyelmeztetésként jelennek meg az olyan rendszerekben, mint a Mastodon vagy a Pleroma." -#: src/Content/Feature.php:122 +#: src/Content/Feature.php:108 msgid "Post/Comment Tools" msgstr "Bejegyzés és hozzászólás eszközök" -#: src/Content/Feature.php:123 +#: src/Content/Feature.php:109 msgid "Post Categories" msgstr "Bejegyzéskategóriák" -#: src/Content/Feature.php:123 +#: src/Content/Feature.php:109 msgid "Add categories to your posts" msgstr "Kategóriák hozzáadása a bejegyzéseihez." -#: src/Content/Feature.php:128 +#: src/Content/Feature.php:114 msgid "Network Widgets" msgstr "Hálózat felületi elemek" -#: src/Content/Feature.php:129 src/Content/Widget.php:216 -#: src/Model/Circle.php:601 src/Module/Contact.php:406 -#: src/Module/Welcome.php:76 +#: src/Content/Feature.php:115 src/Content/Widget.php:194 +#: src/Model/Circle.php:587 src/Module/Contact.php:381 +#: src/Module/Welcome.php:62 msgid "Circles" msgstr "Körök" -#: src/Content/Feature.php:129 +#: src/Content/Feature.php:115 msgid "" "Display posts that have been created by accounts of the selected circle." msgstr "Azon bejegyzések megjelenítése, amelyeket a kiválasztott kör fiókjai hoztak létre." -#: src/Content/Feature.php:130 src/Content/GroupManager.php:147 -#: src/Content/Nav.php:278 src/Content/Text/HTML.php:882 -#: src/Content/Widget.php:538 src/Model/User.php:1413 +#: src/Content/Feature.php:116 src/Content/GroupManager.php:133 +#: src/Content/Nav.php:264 src/Content/Text/HTML.php:868 +#: src/Content/Widget.php:516 src/Model/User.php:1390 msgid "Groups" msgstr "Csoportok" -#: src/Content/Feature.php:130 +#: src/Content/Feature.php:116 msgid "Display posts that have been distributed by the selected group." msgstr "Azon bejegyzések megjelenítése, amelyeket a kiválasztott csoport terjeszt." -#: src/Content/Feature.php:131 src/Content/Widget.php:507 +#: src/Content/Feature.php:117 src/Content/Widget.php:485 msgid "Archives" msgstr "Archívumok" -#: src/Content/Feature.php:131 +#: src/Content/Feature.php:117 msgid "Display an archive where posts can be selected by month and year." msgstr "Egy olyan archívum megjelenítése, ahol a bejegyzések kiválaszthatók hónap és év szerint." -#: src/Content/Feature.php:132 src/Content/Widget.php:289 +#: src/Content/Feature.php:118 src/Content/Widget.php:267 msgid "Protocols" msgstr "Protokollok" -#: src/Content/Feature.php:132 +#: src/Content/Feature.php:118 msgid "Display posts with the selected protocols." msgstr "A kiválasztott protokollokkal rendelkező bejegyzések megjelenítése." -#: src/Content/Feature.php:133 src/Content/Widget.php:544 -#: src/Module/Settings/Account.php:447 +#: src/Content/Feature.php:119 src/Content/Widget.php:522 +#: src/Module/Settings/Account.php:433 msgid "Account Types" msgstr "Fióktípusok" -#: src/Content/Feature.php:133 +#: src/Content/Feature.php:119 msgid "Display posts done by accounts with the selected account type." msgstr "A kiválasztott fióktípussal rendelkező fiókok által készített bejegyzések megjelenítése." -#: src/Content/Feature.php:134 src/Content/Widget.php:593 -#: src/Module/Admin/Site.php:474 src/Module/BaseSettings.php:125 -#: src/Module/Settings/Channels.php:225 src/Module/Settings/Display.php:315 +#: src/Content/Feature.php:120 src/Content/Widget.php:571 +#: src/Module/Admin/Site.php:464 src/Module/BaseSettings.php:111 +#: src/Module/Settings/Channels.php:211 src/Module/Settings/Display.php:301 msgid "Channels" msgstr "Csatornák" -#: src/Content/Feature.php:134 +#: src/Content/Feature.php:120 msgid "Display posts in the system channels and user defined channels." msgstr "Bejegyzések megjelenítése a rendszercsatornákon és a felhasználó által meghatározott csatornákon." -#: src/Content/Feature.php:135 src/Content/Widget/SavedSearches.php:60 +#: src/Content/Feature.php:121 src/Content/Widget/SavedSearches.php:46 msgid "Saved Searches" msgstr "Mentett keresések" -#: src/Content/Feature.php:135 +#: src/Content/Feature.php:121 msgid "Display posts that contain subscribed hashtags." msgstr "A feliratkozott kettős keresztes címkéket tartalmazó bejegyzések megjelenítése." -#: src/Content/Feature.php:136 src/Content/Widget.php:319 +#: src/Content/Feature.php:122 src/Content/Widget.php:297 msgid "Saved Folders" msgstr "Mentett mappák" -#: src/Content/Feature.php:136 +#: src/Content/Feature.php:122 msgid "Display a list of folders in which posts are stored." msgstr "Azon mappák listájának megjelenítése, amelyekben bejegyzések vannak tárolva." -#: src/Content/Feature.php:137 src/Module/Conversation/Timeline.php:200 +#: src/Content/Feature.php:123 src/Module/Conversation/Timeline.php:186 msgid "Own Contacts" msgstr "Saját partnerek" -#: src/Content/Feature.php:137 +#: src/Content/Feature.php:123 msgid "" "Include or exclude posts from subscribed accounts. This widget is not " "visible on all channels." msgstr "A feliratkozott fiókokból származó bejegyzések felvétele vagy kizárása. Ez a felületi elem nem látható az összes csatornán." -#: src/Content/Feature.php:138 +#: src/Content/Feature.php:124 msgid "Trending Tags" msgstr "Népszerű címkék" -#: src/Content/Feature.php:138 +#: src/Content/Feature.php:124 msgid "Display a list of the most popular tags in recent public posts." msgstr "A legutóbbi nyilvános bejegyzésekben lévő legnépszerűbb címkék listájának megjelenítése." -#: src/Content/Feature.php:143 +#: src/Content/Feature.php:129 msgid "Advanced Profile Settings" msgstr "Speciális profilbeállítások" -#: src/Content/Feature.php:144 +#: src/Content/Feature.php:130 msgid "Tag Cloud" msgstr "Címkefelhő" -#: src/Content/Feature.php:144 +#: src/Content/Feature.php:130 msgid "Provide a personal tag cloud on your profile page" msgstr "Személyes címkefelhő biztosítása a profiloldalán." -#: src/Content/Feature.php:145 +#: src/Content/Feature.php:131 msgid "Display Membership Date" msgstr "Tagsági dátum megjelenítése" -#: src/Content/Feature.php:145 +#: src/Content/Feature.php:131 msgid "Display membership date in profile" msgstr "Tagsági dátum megjelenítése a profilban." -#: src/Content/Feature.php:150 +#: src/Content/Feature.php:136 msgid "Advanced Calendar Settings" msgstr "Speciális naptárbeállítások" -#: src/Content/Feature.php:151 +#: src/Content/Feature.php:137 msgid "Allow anonymous access to your calendar" msgstr "Névtelen hozzáférés engedélyezése a naptárához" -#: src/Content/Feature.php:151 +#: src/Content/Feature.php:137 msgid "" "Allows anonymous visitors to consult your calendar and your public events. " "Contact birthday events are private to you." msgstr "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:149 +#: src/Content/GroupManager.php:135 msgid "External link to group" msgstr "Külső hivatkozás a csoporthoz" -#: src/Content/GroupManager.php:153 src/Content/Widget.php:513 +#: src/Content/GroupManager.php:139 src/Content/Widget.php:491 msgid "show less" msgstr "kevesebb megjelenítése" -#: src/Content/GroupManager.php:154 src/Content/Widget.php:411 -#: src/Content/Widget.php:514 +#: src/Content/GroupManager.php:140 src/Content/Widget.php:389 +#: src/Content/Widget.php:492 msgid "show more" msgstr "több megjelenítése" -#: src/Content/GroupManager.php:155 +#: src/Content/GroupManager.php:141 msgid "Create new group" msgstr "Új csoport létrehozása" -#: src/Content/Item.php:331 src/Model/Item.php:3304 +#: src/Content/Item.php:317 src/Model/Item.php:3272 msgid "event" msgstr "esemény" -#: src/Content/Item.php:334 src/Content/Item.php:344 +#: src/Content/Item.php:320 src/Content/Item.php:330 msgid "status" msgstr "állapot" -#: src/Content/Item.php:340 src/Model/Item.php:3306 -#: src/Module/Post/Tag/Add.php:123 +#: src/Content/Item.php:326 src/Model/Item.php:3274 +#: src/Module/Post/Tag/Add.php:109 msgid "photo" msgstr "fénykép" -#: src/Content/Item.php:354 src/Module/Post/Tag/Add.php:141 +#: src/Content/Item.php:340 src/Module/Post/Tag/Add.php:127 #, php-format msgid "%1$s tagged %2$s's %3$s with %4$s" msgstr "%1$s megjelölte %2$s %3$s vele: %4$s" -#: src/Content/Item.php:428 view/theme/frio/theme.php:265 +#: src/Content/Item.php:414 view/theme/frio/theme.php:253 msgid "Follow Thread" msgstr "Szál követése" -#: src/Content/Item.php:429 src/Model/Contact.php:1256 +#: src/Content/Item.php:415 src/Model/Contact.php:1249 msgid "View Status" msgstr "Állapot megtekintése" -#: src/Content/Item.php:430 src/Content/Item.php:453 -#: src/Model/Contact.php:1191 src/Model/Contact.php:1247 -#: src/Model/Contact.php:1257 src/Module/Directory.php:158 -#: src/Module/Settings/Profile/Index.php:264 +#: src/Content/Item.php:416 src/Content/Item.php:439 +#: src/Model/Contact.php:1184 src/Model/Contact.php:1240 +#: src/Model/Contact.php:1250 src/Module/Directory.php:144 +#: src/Module/Settings/Profile/Index.php:250 msgid "View Profile" msgstr "Profil megtekintése" -#: src/Content/Item.php:431 src/Model/Contact.php:1258 +#: src/Content/Item.php:417 src/Model/Contact.php:1251 msgid "View Photos" msgstr "Fényképek megtekintése" -#: src/Content/Item.php:432 src/Model/Contact.php:1225 -#: src/Model/Profile.php:461 +#: src/Content/Item.php:418 src/Model/Contact.php:1218 +#: src/Model/Profile.php:447 msgid "Network Posts" msgstr "Hálózati bejegyzések" -#: src/Content/Item.php:433 src/Model/Contact.php:1249 -#: src/Model/Contact.php:1260 +#: src/Content/Item.php:419 src/Model/Contact.php:1242 +#: src/Model/Contact.php:1253 msgid "View Contact" msgstr "Partner megtekintése" -#: src/Content/Item.php:434 src/Model/Contact.php:1261 +#: src/Content/Item.php:420 src/Model/Contact.php:1254 msgid "Send PM" msgstr "Személyes üzenet küldése" -#: src/Content/Item.php:435 src/Module/Contact.php:474 -#: src/Module/Contact/Profile.php:532 -#: src/Module/Moderation/Blocklist/Contact.php:116 -#: src/Module/Moderation/Users/Active.php:137 -#: src/Module/Moderation/Users/Index.php:152 +#: src/Content/Item.php:421 src/Module/Contact.php:449 +#: src/Module/Contact/Profile.php:518 +#: src/Module/Moderation/Blocklist/Contact.php:102 +#: src/Module/Moderation/Users/Active.php:123 +#: src/Module/Moderation/Users/Index.php:138 msgid "Block" msgstr "Tiltás" -#: src/Content/Item.php:436 src/Module/Contact.php:475 -#: src/Module/Contact/Profile.php:540 -#: src/Module/Notifications/Introductions.php:140 -#: src/Module/Notifications/Introductions.php:212 -#: src/Module/Notifications/Notification.php:89 +#: src/Content/Item.php:422 src/Module/Contact.php:450 +#: src/Module/Contact/Profile.php:526 +#: src/Module/Notifications/Introductions.php:126 +#: src/Module/Notifications/Introductions.php:198 +#: src/Module/Notifications/Notification.php:75 msgid "Ignore" msgstr "Mellőzés" -#: src/Content/Item.php:437 src/Module/Contact.php:476 -#: src/Module/Contact/Profile.php:548 +#: src/Content/Item.php:423 src/Module/Contact.php:451 +#: src/Module/Contact/Profile.php:534 msgid "Collapse" msgstr "Összecsukás" -#: src/Content/Item.php:438 src/Object/Post.php:302 +#: src/Content/Item.php:424 src/Object/Post.php:288 #, php-format msgid "Ignore %s server" msgstr "A(z) %s kiszolgáló mellőzése" -#: src/Content/Item.php:442 src/Module/Settings/Channels.php:202 -#: src/Module/Settings/Channels.php:223 src/Object/Post.php:516 +#: src/Content/Item.php:428 src/Module/Settings/Channels.php:188 +#: src/Module/Settings/Channels.php:209 src/Object/Post.php:502 msgid "Languages" msgstr "Nyelvek" -#: src/Content/Item.php:445 src/Object/Post.php:596 +#: src/Content/Item.php:431 src/Object/Post.php:582 msgid "Search Text" msgstr "Szöveg keresése" -#: src/Content/Item.php:450 src/Content/Widget.php:80 -#: src/Model/Contact.php:1250 src/Model/Contact.php:1262 -#: src/Module/Contact/Follow.php:167 view/theme/vier/theme.php:195 +#: src/Content/Item.php:436 src/Content/Widget.php:66 +#: src/Model/Contact.php:1243 src/Model/Contact.php:1255 +#: src/Module/Contact/Follow.php:148 view/theme/vier/theme.php:183 msgid "Connect/Follow" msgstr "Kapcsolódás vagy követés" -#: src/Content/Item.php:884 +#: src/Content/Item.php:870 msgid "Unable to fetch user." msgstr "Nem lehet lekérni a felhasználót." -#: src/Content/Nav.php:121 +#: src/Content/Nav.php:107 msgid "Nothing new here" msgstr "Semmi új nincs itt" -#: src/Content/Nav.php:125 src/Module/Special/HTTPException.php:77 +#: src/Content/Nav.php:111 src/Module/Special/HTTPException.php:63 msgid "Go back" msgstr "Vissza" -#: src/Content/Nav.php:126 +#: src/Content/Nav.php:112 msgid "Clear notifications" msgstr "Értesítések törlése" -#: src/Content/Nav.php:127 src/Content/Text/HTML.php:869 +#: src/Content/Nav.php:113 src/Content/Text/HTML.php:855 msgid "@name, !group, #tags, content" msgstr "@név, !csoport, #címkék, tartalom" -#: src/Content/Nav.php:222 src/Module/Security/Login.php:161 +#: src/Content/Nav.php:208 src/Module/Security/Login.php:147 msgid "Logout" msgstr "Kijelentkezés" -#: src/Content/Nav.php:222 +#: src/Content/Nav.php:208 msgid "End this session" msgstr "Munkamenet befejezése" -#: src/Content/Nav.php:224 src/Module/Bookmarklet.php:44 -#: src/Module/Security/Login.php:162 +#: src/Content/Nav.php:210 src/Module/Bookmarklet.php:30 +#: src/Module/Security/Login.php:148 msgid "Login" msgstr "Bejelentkezés" -#: src/Content/Nav.php:224 +#: src/Content/Nav.php:210 msgid "Sign in" msgstr "Bejelentkezés" -#: src/Content/Nav.php:229 src/Module/BaseProfile.php:57 -#: src/Module/Contact.php:518 +#: src/Content/Nav.php:215 src/Module/BaseProfile.php:43 +#: src/Module/Contact.php:493 msgid "Conversations" msgstr "Beszélgetések" -#: src/Content/Nav.php:229 +#: src/Content/Nav.php:215 msgid "Conversations you started" 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:510 -#: src/Module/Contact/Profile.php:439 src/Module/Profile/Profile.php:270 -#: src/Module/Welcome.php:57 view/theme/frio/theme.php:233 +#: src/Content/Nav.php:216 src/Module/BaseProfile.php:35 +#: src/Module/BaseSettings.php:84 src/Module/Contact.php:485 +#: src/Module/Contact/Profile.php:425 src/Module/Profile/Profile.php:256 +#: src/Module/Welcome.php:43 view/theme/frio/theme.php:221 msgid "Profile" msgstr "Profil" -#: src/Content/Nav.php:230 view/theme/frio/theme.php:233 +#: src/Content/Nav.php:216 view/theme/frio/theme.php:221 msgid "Your profile page" msgstr "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:237 +#: src/Content/Nav.php:217 src/Module/BaseProfile.php:51 +#: src/Module/Media/Photo/Browser.php:60 view/theme/frio/theme.php:225 msgid "Photos" msgstr "Fényképek" -#: src/Content/Nav.php:231 view/theme/frio/theme.php:237 +#: src/Content/Nav.php:217 view/theme/frio/theme.php:225 msgid "Your photos" msgstr "Az Ön fényképei" -#: src/Content/Nav.php:232 src/Module/BaseProfile.php:73 -#: src/Module/BaseProfile.php:76 src/Module/Contact.php:534 -#: view/theme/frio/theme.php:238 +#: src/Content/Nav.php:218 src/Module/BaseProfile.php:59 +#: src/Module/BaseProfile.php:62 src/Module/Contact.php:509 +#: view/theme/frio/theme.php:226 msgid "Media" msgstr "Média" -#: src/Content/Nav.php:232 view/theme/frio/theme.php:238 +#: src/Content/Nav.php:218 view/theme/frio/theme.php:226 msgid "Your postings with media" msgstr "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:239 -#: view/theme/frio/theme.php:243 +#: src/Content/Nav.php:219 src/Content/Nav.php:279 +#: src/Module/BaseProfile.php:71 src/Module/BaseProfile.php:74 +#: src/Module/BaseProfile.php:82 src/Module/BaseProfile.php:85 +#: src/Module/Settings/Display.php:302 view/theme/frio/theme.php:227 +#: view/theme/frio/theme.php:231 msgid "Calendar" msgstr "Naptár" -#: src/Content/Nav.php:233 view/theme/frio/theme.php:239 +#: src/Content/Nav.php:219 view/theme/frio/theme.php:227 msgid "Your calendar" msgstr "Az Ön naptára" -#: src/Content/Nav.php:234 +#: src/Content/Nav.php:220 msgid "Personal notes" msgstr "Személyes jegyzetek" -#: src/Content/Nav.php:234 +#: src/Content/Nav.php:220 msgid "Your personal notes" msgstr "Az Ön személyes jegyzetei" -#: src/Content/Nav.php:251 src/Content/Nav.php:308 +#: src/Content/Nav.php:237 src/Content/Nav.php:294 msgid "Home" msgstr "Kezdőlap" -#: src/Content/Nav.php:251 src/Module/Settings/OAuth.php:73 +#: src/Content/Nav.php:237 src/Module/Settings/OAuth.php:59 msgid "Home Page" msgstr "Kezdőlap" -#: src/Content/Nav.php:255 src/Module/Register.php:175 -#: src/Module/Security/Login.php:128 +#: src/Content/Nav.php:241 src/Module/Register.php:161 +#: src/Module/Security/Login.php:114 msgid "Register" msgstr "Regisztráció" -#: src/Content/Nav.php:255 +#: src/Content/Nav.php:241 msgid "Create an account" msgstr "Fiók létrehozása" -#: src/Content/Nav.php:261 src/Module/Help.php:67 -#: src/Module/Settings/TwoFactor/AppSpecific.php:132 -#: src/Module/Settings/TwoFactor/Index.php:139 -#: src/Module/Settings/TwoFactor/Recovery.php:110 -#: src/Module/Settings/TwoFactor/Verify.php:149 view/theme/vier/theme.php:240 +#: src/Content/Nav.php:247 src/Module/Help.php:53 +#: src/Module/Settings/TwoFactor/AppSpecific.php:118 +#: src/Module/Settings/TwoFactor/Index.php:125 +#: src/Module/Settings/TwoFactor/Recovery.php:96 +#: src/Module/Settings/TwoFactor/Verify.php:135 view/theme/vier/theme.php:228 msgid "Help" msgstr "Súgó" -#: src/Content/Nav.php:261 +#: src/Content/Nav.php:247 msgid "Help and documentation" msgstr "Súgó és dokumentáció" -#: src/Content/Nav.php:265 +#: src/Content/Nav.php:251 msgid "Apps" msgstr "Alkalmazások" -#: src/Content/Nav.php:265 +#: src/Content/Nav.php:251 msgid "Addon applications, utilities, games" msgstr "Bővítményalkalmazások, segédprogramok és játékok" -#: src/Content/Nav.php:269 src/Content/Text/HTML.php:867 -#: src/Module/Admin/Logs/View.php:88 src/Module/Search/Index.php:112 +#: src/Content/Nav.php:255 src/Content/Text/HTML.php:853 +#: src/Module/Admin/Logs/View.php:74 src/Module/Search/Index.php:98 msgid "Search" msgstr "Keresés" -#: src/Content/Nav.php:269 +#: src/Content/Nav.php:255 msgid "Search site content" msgstr "Oldaltartalom keresése" -#: src/Content/Nav.php:272 src/Content/Text/HTML.php:876 +#: src/Content/Nav.php:258 src/Content/Text/HTML.php:862 msgid "Full Text" msgstr "Teljes szöveg" -#: src/Content/Nav.php:273 src/Content/Text/HTML.php:877 -#: src/Content/Widget/TagCloud.php:68 +#: src/Content/Nav.php:259 src/Content/Text/HTML.php:863 +#: src/Content/Widget/TagCloud.php:54 msgid "Tags" msgstr "Címkék" -#: src/Content/Nav.php:274 src/Content/Nav.php:329 -#: src/Content/Text/HTML.php:878 src/Module/BaseProfile.php:127 -#: src/Module/BaseProfile.php:130 src/Module/Contact.php:432 -#: src/Module/Contact.php:542 view/theme/frio/theme.php:246 +#: src/Content/Nav.php:260 src/Content/Nav.php:315 +#: src/Content/Text/HTML.php:864 src/Module/BaseProfile.php:113 +#: src/Module/BaseProfile.php:116 src/Module/Contact.php:407 +#: src/Module/Contact.php:517 view/theme/frio/theme.php:234 msgid "Contacts" msgstr "Partnerek" -#: src/Content/Nav.php:289 +#: src/Content/Nav.php:275 msgid "Community" msgstr "Közösség" -#: src/Content/Nav.php:289 +#: src/Content/Nav.php:275 msgid "Conversations on this and other servers" msgstr "Beszélgetések ezen és más kiszolgálókon" -#: src/Content/Nav.php:296 +#: src/Content/Nav.php:282 msgid "Directory" msgstr "Könyvtár" -#: src/Content/Nav.php:296 +#: src/Content/Nav.php:282 msgid "People directory" msgstr "Emberek könyvtár" -#: src/Content/Nav.php:298 src/Module/BaseAdmin.php:85 -#: src/Module/BaseModeration.php:108 +#: src/Content/Nav.php:284 src/Module/BaseAdmin.php:71 +#: src/Module/BaseModeration.php:94 msgid "Information" msgstr "Információk" -#: src/Content/Nav.php:298 +#: src/Content/Nav.php:284 msgid "Information about this friendica instance" msgstr "Információk erről a Friendica példányról" -#: src/Content/Nav.php:301 src/Module/Admin/Tos.php:78 -#: src/Module/BaseAdmin.php:95 src/Module/Register.php:183 -#: src/Module/Tos.php:101 +#: src/Content/Nav.php:287 src/Module/Admin/Tos.php:64 +#: src/Module/BaseAdmin.php:81 src/Module/Register.php:169 +#: src/Module/Tos.php:87 msgid "Terms of Service" msgstr "Használati feltételek" -#: src/Content/Nav.php:301 +#: src/Content/Nav.php:287 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:242 +#: src/Content/Nav.php:292 view/theme/frio/theme.php:230 msgid "Network" msgstr "Hálózat" -#: src/Content/Nav.php:306 view/theme/frio/theme.php:242 +#: src/Content/Nav.php:292 view/theme/frio/theme.php:230 msgid "Conversations from your friends" msgstr "Ismerősökkel való beszélgetések" -#: src/Content/Nav.php:308 view/theme/frio/theme.php:232 +#: src/Content/Nav.php:294 view/theme/frio/theme.php:220 msgid "Your posts and conversations" msgstr "Az Ön bejegyzései és beszélgetései" -#: src/Content/Nav.php:312 +#: src/Content/Nav.php:298 msgid "Introductions" msgstr "Bemutatkozások" -#: src/Content/Nav.php:312 +#: src/Content/Nav.php:298 msgid "Friend Requests" msgstr "Ismerőskérések" -#: src/Content/Nav.php:313 src/Module/BaseNotifications.php:149 -#: src/Module/Notifications/Introductions.php:75 +#: src/Content/Nav.php:299 src/Module/BaseNotifications.php:135 +#: src/Module/Notifications/Introductions.php:61 msgid "Notifications" msgstr "Értesítések" -#: src/Content/Nav.php:314 +#: src/Content/Nav.php:300 msgid "See all notifications" msgstr "Összes értesítés megtekintése" -#: src/Content/Nav.php:315 src/Module/Settings/Connectors.php:254 +#: src/Content/Nav.php:301 src/Module/Settings/Connectors.php:233 msgid "Mark as seen" msgstr "Megjelölés olvasottként" -#: src/Content/Nav.php:315 +#: src/Content/Nav.php:301 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:244 +#: src/Content/Nav.php:304 view/theme/frio/theme.php:232 msgid "Private mail" msgstr "Személyes levél" -#: src/Content/Nav.php:319 +#: src/Content/Nav.php:305 msgid "Inbox" msgstr "Beérkezett üzenetek" -#: src/Content/Nav.php:320 +#: src/Content/Nav.php:306 msgid "Outbox" msgstr "Elküldött üzenetek" -#: src/Content/Nav.php:324 +#: src/Content/Nav.php:310 msgid "Accounts" msgstr "Fiókok" -#: src/Content/Nav.php:324 +#: src/Content/Nav.php:310 msgid "Manage other pages" msgstr "Más oldalak kezelése" -#: src/Content/Nav.php:327 src/Module/Admin/Addons/Details.php:114 -#: src/Module/Admin/Themes/Details.php:99 src/Module/BaseSettings.php:182 -#: src/Module/Welcome.php:52 view/theme/frio/theme.php:245 +#: src/Content/Nav.php:313 src/Module/Admin/Addons/Details.php:100 +#: src/Module/Admin/Themes/Details.php:85 src/Module/BaseSettings.php:168 +#: src/Module/Welcome.php:38 view/theme/frio/theme.php:233 msgid "Settings" msgstr "Beállítások" -#: src/Content/Nav.php:327 view/theme/frio/theme.php:245 +#: src/Content/Nav.php:313 view/theme/frio/theme.php:233 msgid "Account settings" msgstr "Fiókbeállítások" -#: src/Content/Nav.php:329 view/theme/frio/theme.php:246 +#: src/Content/Nav.php:315 view/theme/frio/theme.php:234 msgid "Manage/edit friends and contacts" msgstr "Ismerősök és partnerek kezelése vagy szerkesztése" -#: src/Content/Nav.php:334 src/Module/BaseAdmin.php:119 +#: src/Content/Nav.php:320 src/Module/BaseAdmin.php:105 msgid "Admin" msgstr "Adminisztráció" -#: src/Content/Nav.php:334 +#: src/Content/Nav.php:320 msgid "Site setup and configuration" msgstr "Oldal beállítása és konfigurálás" -#: src/Content/Nav.php:335 src/Module/BaseModeration.php:128 -#: src/Module/Moderation/Blocklist/Contact.php:110 -#: src/Module/Moderation/Blocklist/Server/Add.php:121 -#: src/Module/Moderation/Blocklist/Server/Import.php:118 -#: src/Module/Moderation/Blocklist/Server/Index.php:95 -#: src/Module/Moderation/Item/Delete.php:61 -#: src/Module/Moderation/Reports.php:110 src/Module/Moderation/Summary.php:75 -#: src/Module/Moderation/Users/Active.php:133 -#: src/Module/Moderation/Users/Blocked.php:133 -#: src/Module/Moderation/Users/Deleted.php:80 -#: src/Module/Moderation/Users/Index.php:147 +#: src/Content/Nav.php:321 src/Module/BaseModeration.php:114 +#: src/Module/Moderation/Blocklist/Contact.php:96 +#: src/Module/Moderation/Blocklist/Server/Add.php:107 +#: src/Module/Moderation/Blocklist/Server/Import.php:102 +#: src/Module/Moderation/Blocklist/Server/Index.php:81 +#: src/Module/Moderation/Item/Delete.php:47 +#: src/Module/Moderation/Reports.php:96 src/Module/Moderation/Summary.php:61 +#: src/Module/Moderation/Users/Active.php:119 +#: src/Module/Moderation/Users/Blocked.php:119 +#: src/Module/Moderation/Users/Deleted.php:66 +#: src/Module/Moderation/Users/Index.php:133 msgid "Moderation" msgstr "Moderálás" -#: src/Content/Nav.php:335 +#: src/Content/Nav.php:321 msgid "Content and user moderation" msgstr "Tartalom- és felhasználómoderálás" -#: src/Content/Nav.php:338 +#: src/Content/Nav.php:324 msgid "Navigation" msgstr "Navigáció" -#: src/Content/Nav.php:338 +#: src/Content/Nav.php:324 msgid "Site map" msgstr "Oldaltérkép" -#: src/Content/Pager.php:216 +#: src/Content/Pager.php:202 msgid "first" msgstr "első" -#: src/Content/Pager.php:221 +#: src/Content/Pager.php:207 msgid "prev" msgstr "előző" -#: src/Content/Pager.php:276 +#: src/Content/Pager.php:262 msgid "next" msgstr "következő" -#: src/Content/Pager.php:281 +#: src/Content/Pager.php:267 msgid "last" msgstr "utolsó" -#: src/Content/Text/BBCode.php:704 src/Content/Text/BBCode.php:1880 -#: src/Content/Text/BBCode.php:1881 +#: src/Content/Text/BBCode.php:689 src/Content/Text/BBCode.php:1862 +#: src/Content/Text/BBCode.php:1863 msgid "Image/photo" msgstr "Kép vagy fénykép" -#: src/Content/Text/BBCode.php:922 +#: src/Content/Text/BBCode.php:907 #, php-format msgid "%2$s %3$s" msgstr "%2$s %3$s" -#: src/Content/Text/BBCode.php:947 src/Model/Item.php:4060 -#: src/Model/Item.php:4066 src/Model/Item.php:4067 +#: src/Content/Text/BBCode.php:929 src/Model/Item.php:4028 +#: src/Model/Item.php:4034 src/Model/Item.php:4035 msgid "Link to source" msgstr "Hivatkozás a forráshoz" -#: src/Content/Text/BBCode.php:1761 src/Content/Text/HTML.php:906 +#: src/Content/Text/BBCode.php:1743 src/Content/Text/HTML.php:892 msgid "Click to open/close" msgstr "Kattintson a megnyitáshoz vagy bezáráshoz" -#: src/Content/Text/BBCode.php:1816 +#: src/Content/Text/BBCode.php:1798 msgid "$1 wrote:" msgstr "$1 írta:" -#: src/Content/Text/BBCode.php:1890 src/Content/Text/BBCode.php:1891 +#: src/Content/Text/BBCode.php:1872 src/Content/Text/BBCode.php:1873 msgid "Encrypted content" msgstr "Titkosított tartalom" -#: src/Content/Text/BBCode.php:2223 +#: src/Content/Text/BBCode.php:2205 msgid "Invalid source protocol" msgstr "Érvénytelen forrásprotokoll" -#: src/Content/Text/BBCode.php:2242 +#: src/Content/Text/BBCode.php:2224 msgid "Invalid link protocol" msgstr "Érvénytelen hivatkozási protokoll" -#: src/Content/Text/HTML.php:784 +#: src/Content/Text/HTML.php:770 msgid "Loading more entries..." msgstr "További bejegyzések betöltése…" -#: src/Content/Text/HTML.php:785 +#: src/Content/Text/HTML.php:771 msgid "The end" msgstr "Vége" -#: src/Content/Text/HTML.php:861 src/Content/Widget/VCard.php:127 -#: src/Model/Profile.php:470 src/Module/Contact/Profile.php:492 +#: src/Content/Text/HTML.php:847 src/Content/Widget/VCard.php:113 +#: src/Model/Profile.php:456 src/Module/Contact/Profile.php:478 msgid "Follow" msgstr "Követés" -#: src/Content/Widget.php:51 +#: src/Content/Widget.php:37 msgid "Add New Contact" msgstr "Új partner hozzáadása" -#: src/Content/Widget.php:52 +#: src/Content/Widget.php:38 msgid "Enter address or web location" msgstr "Cím vagy webhely megadása" -#: src/Content/Widget.php:53 +#: src/Content/Widget.php:39 msgid "Example: bob@example.com, http://example.com/barbara" msgstr "Példa: bob@example.com, http://example.com/barbara" -#: src/Content/Widget.php:55 +#: src/Content/Widget.php:41 msgid "Connect" msgstr "Kapcsolódás" -#: src/Content/Widget.php:72 +#: src/Content/Widget.php:58 #, php-format msgid "%d invitation available" msgid_plural "%d invitations available" msgstr[0] "%d meghívás érhető el" msgstr[1] "%d meghívás érhető el" -#: src/Content/Widget.php:78 view/theme/vier/theme.php:193 +#: src/Content/Widget.php:64 view/theme/vier/theme.php:181 msgid "Find People" msgstr "Emberek keresése" -#: src/Content/Widget.php:79 view/theme/vier/theme.php:194 +#: src/Content/Widget.php:65 view/theme/vier/theme.php:182 msgid "Enter name or interest" msgstr "Név vagy érdeklődés beírása" -#: src/Content/Widget.php:81 view/theme/vier/theme.php:196 +#: src/Content/Widget.php:67 view/theme/vier/theme.php:184 msgid "Examples: Robert Morgenstein, Fishing" msgstr "Példák: Szabó János, Halászat" -#: src/Content/Widget.php:82 src/Module/Contact.php:466 -#: src/Module/Directory.php:97 view/theme/vier/theme.php:197 +#: src/Content/Widget.php:68 src/Module/Contact.php:441 +#: src/Module/Directory.php:83 view/theme/vier/theme.php:185 msgid "Find" msgstr "Keresés" -#: src/Content/Widget.php:83 src/Module/Contact/Suggestions.php:73 -#: view/theme/vier/theme.php:198 +#: src/Content/Widget.php:69 src/Module/Contact/Suggestions.php:59 +#: view/theme/vier/theme.php:186 msgid "Friend Suggestions" msgstr "Ismerős javaslatok" -#: src/Content/Widget.php:84 view/theme/vier/theme.php:199 +#: src/Content/Widget.php:70 view/theme/vier/theme.php:187 msgid "Similar Interests" msgstr "Hasonló érdeklődések" -#: src/Content/Widget.php:85 view/theme/vier/theme.php:200 +#: src/Content/Widget.php:71 view/theme/vier/theme.php:188 msgid "Random Profile" msgstr "Véletlen profil" -#: src/Content/Widget.php:86 view/theme/vier/theme.php:201 +#: src/Content/Widget.php:72 view/theme/vier/theme.php:189 msgid "Invite Friends" msgstr "Ismerősök meghívása" -#: src/Content/Widget.php:87 src/Module/Directory.php:89 -#: view/theme/vier/theme.php:202 +#: src/Content/Widget.php:73 src/Module/Directory.php:75 +#: view/theme/vier/theme.php:190 msgid "Global Directory" msgstr "Globális könyvtár" -#: src/Content/Widget.php:89 view/theme/vier/theme.php:204 +#: src/Content/Widget.php:75 view/theme/vier/theme.php:192 msgid "Local Directory" msgstr "Helyi könyvtár" -#: src/Content/Widget.php:218 +#: src/Content/Widget.php:196 msgid "Everyone" msgstr "Mindenki" -#: src/Content/Widget.php:243 src/Module/Contact.php:429 +#: src/Content/Widget.php:221 src/Module/Contact.php:404 msgid "No relationship" msgstr "Nincs kapcsolat" -#: src/Content/Widget.php:248 +#: src/Content/Widget.php:226 msgid "Relationships" msgstr "Kapcsolatok" -#: src/Content/Widget.php:250 src/Module/Circle.php:294 -#: src/Module/Contact.php:350 +#: src/Content/Widget.php:228 src/Module/Circle.php:280 +#: src/Module/Contact.php:325 msgid "All Contacts" msgstr "Összes partner" -#: src/Content/Widget.php:291 +#: src/Content/Widget.php:269 msgid "All Protocols" msgstr "Összes protokoll" -#: src/Content/Widget.php:321 src/Content/Widget.php:352 +#: src/Content/Widget.php:299 src/Content/Widget.php:330 msgid "Everything" msgstr "Minden" -#: src/Content/Widget.php:350 +#: src/Content/Widget.php:328 msgid "Categories" msgstr "Kategóriák" -#: src/Content/Widget.php:407 +#: src/Content/Widget.php:385 #, 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:515 +#: src/Content/Widget.php:493 msgid "On this date" msgstr "Ezen a napon" -#: src/Content/Widget.php:535 +#: src/Content/Widget.php:513 msgid "Persons" msgstr "Személyek" -#: src/Content/Widget.php:536 +#: src/Content/Widget.php:514 msgid "Organisations" msgstr "Szervezetek" -#: src/Content/Widget.php:537 src/Model/Contact.php:1754 +#: src/Content/Widget.php:515 src/Model/Contact.php:1747 msgid "News" msgstr "Hírek" -#: src/Content/Widget.php:539 +#: src/Content/Widget.php:517 msgid "Relays" msgstr "Továbbítók" -#: src/Content/Widget.php:546 src/Module/Moderation/BaseUsers.php:69 +#: src/Content/Widget.php:524 src/Module/Moderation/BaseUsers.php:56 msgid "All" msgstr "Összes" -#: src/Content/Widget/CalendarExport.php:56 +#: src/Content/Widget/CalendarExport.php:42 msgid "Export" msgstr "Exportálás" -#: src/Content/Widget/CalendarExport.php:57 +#: src/Content/Widget/CalendarExport.php:43 msgid "Export calendar as ical" msgstr "Naptár exportálása iCal-ként" -#: src/Content/Widget/CalendarExport.php:58 +#: src/Content/Widget/CalendarExport.php:44 msgid "Export calendar as csv" msgstr "Naptár exportálása CSV-ként" -#: src/Content/Widget/ContactBlock.php:79 +#: src/Content/Widget/ContactBlock.php:65 msgid "No contacts" msgstr "Nincsenek partnerek" -#: src/Content/Widget/ContactBlock.php:110 +#: src/Content/Widget/ContactBlock.php:96 #, php-format msgid "%d Contact" msgid_plural "%d Contacts" msgstr[0] "%d partner" msgstr[1] "%d partner" -#: src/Content/Widget/ContactBlock.php:127 +#: src/Content/Widget/ContactBlock.php:113 msgid "View Contacts" msgstr "Partnerek megtekintése" -#: src/Content/Widget/SavedSearches.php:47 +#: src/Content/Widget/SavedSearches.php:33 msgid "Remove term" msgstr "Kifejezés eltávolítása" -#: src/Content/Widget/TrendingTags.php:53 +#: src/Content/Widget/TrendingTags.php:39 #, php-format msgid "Trending Tags (last %d hour)" msgid_plural "Trending Tags (last %d hours)" msgstr[0] "Népszerű címkék (legutóbbi %d óra)" msgstr[1] "Népszerű címkék (legutóbbi %d óra)" -#: src/Content/Widget/TrendingTags.php:54 +#: src/Content/Widget/TrendingTags.php:40 msgid "More Trending Tags" msgstr "További népszerű címkék" -#: src/Content/Widget/VCard.php:105 src/Model/Contact.php:1219 -#: src/Model/Profile.php:455 +#: src/Content/Widget/VCard.php:91 src/Model/Contact.php:1212 +#: src/Model/Profile.php:441 msgid "Post to group" msgstr "Beküldés csoportba" -#: src/Content/Widget/VCard.php:110 src/Model/Contact.php:1223 -#: src/Model/Profile.php:459 src/Module/Moderation/Item/Source.php:91 +#: src/Content/Widget/VCard.php:96 src/Model/Contact.php:1216 +#: src/Model/Profile.php:445 src/Module/Moderation/Item/Source.php:77 msgid "Mention" msgstr "Említés" -#: src/Content/Widget/VCard.php:120 src/Model/Profile.php:374 -#: src/Module/Contact/Profile.php:428 src/Module/Profile/Profile.php:201 +#: src/Content/Widget/VCard.php:106 src/Model/Profile.php:360 +#: src/Module/Contact/Profile.php:414 src/Module/Profile/Profile.php:187 msgid "XMPP:" msgstr "XMPP:" -#: src/Content/Widget/VCard.php:121 src/Model/Profile.php:375 -#: src/Module/Contact/Profile.php:430 src/Module/Profile/Profile.php:205 +#: src/Content/Widget/VCard.php:107 src/Model/Profile.php:361 +#: src/Module/Contact/Profile.php:416 src/Module/Profile/Profile.php:191 msgid "Matrix:" msgstr "Mátrix:" -#: src/Content/Widget/VCard.php:122 src/Model/Event.php:82 -#: src/Model/Event.php:109 src/Model/Event.php:471 src/Model/Event.php:960 -#: src/Model/Profile.php:369 src/Module/Contact/Profile.php:426 -#: src/Module/Directory.php:148 src/Module/Notifications/Introductions.php:193 -#: src/Module/Profile/Profile.php:223 +#: src/Content/Widget/VCard.php:108 src/Model/Event.php:68 +#: src/Model/Event.php:95 src/Model/Event.php:457 src/Model/Event.php:946 +#: src/Model/Profile.php:355 src/Module/Contact/Profile.php:412 +#: src/Module/Directory.php:134 src/Module/Notifications/Introductions.php:179 +#: src/Module/Profile/Profile.php:209 msgid "Location:" msgstr "Hely:" -#: src/Content/Widget/VCard.php:125 src/Model/Profile.php:483 -#: src/Module/Notifications/Introductions.php:207 +#: src/Content/Widget/VCard.php:111 src/Model/Profile.php:469 +#: src/Module/Notifications/Introductions.php:193 msgid "Network:" msgstr "Hálózat:" -#: src/Content/Widget/VCard.php:129 src/Model/Contact.php:1251 -#: src/Model/Contact.php:1263 src/Model/Profile.php:472 -#: src/Module/Contact/Profile.php:484 +#: src/Content/Widget/VCard.php:115 src/Model/Contact.php:1244 +#: src/Model/Contact.php:1256 src/Model/Profile.php:458 +#: src/Module/Contact/Profile.php:470 msgid "Unfollow" msgstr "Követés megszüntetése" -#: src/Content/Widget/VCard.php:135 src/Model/Contact.php:1221 -#: src/Model/Profile.php:457 +#: src/Content/Widget/VCard.php:121 src/Model/Contact.php:1214 +#: src/Model/Profile.php:443 msgid "View group" msgstr "Csoport megtekintése" -#: src/Core/ACL.php:166 src/Module/Profile/Profile.php:271 +#: src/Core/ACL.php:152 src/Module/Profile/Profile.php:257 msgid "Yourself" msgstr "Önmaga" -#: src/Core/ACL.php:202 src/Module/Privacy/PermissionTooltip.php:170 -#: src/Module/Privacy/PermissionTooltip.php:192 +#: src/Core/ACL.php:188 src/Module/Privacy/PermissionTooltip.php:156 +#: src/Module/Privacy/PermissionTooltip.php:178 msgid "Mutuals" msgstr "Kölcsönösen ismerősök" -#: src/Core/ACL.php:294 +#: src/Core/ACL.php:280 msgid "Post to Email" msgstr "Beküldés e-mailbe" -#: src/Core/ACL.php:321 src/Module/Privacy/PermissionTooltip.php:117 -#: src/Module/Privacy/PermissionTooltip.php:231 +#: src/Core/ACL.php:307 src/Module/Privacy/PermissionTooltip.php:103 +#: src/Module/Privacy/PermissionTooltip.php:217 msgid "Public" msgstr "Nyilvános" -#: src/Core/ACL.php:322 +#: src/Core/ACL.php:308 msgid "" "This content will be shown to all your followers and can be seen in the " "community pages and by anyone with its link." msgstr "Ez a tartalom meg fog jelenni az összes követőjének, és látható lesz a közösségi oldalakon, valamint bárki számára a hivatkozásával." -#: src/Core/ACL.php:323 src/Module/Privacy/PermissionTooltip.php:119 +#: src/Core/ACL.php:309 src/Module/Privacy/PermissionTooltip.php:105 msgid "Limited/Private" msgstr "Korlátozott vagy személyes" -#: src/Core/ACL.php:324 +#: src/Core/ACL.php:310 msgid "" "This content will be shown only to the people in the first box, to the " "exception of the people mentioned in the second box. It won't appear " "anywhere public." msgstr "Ez a tartalom csak az első mezőben lévő embereknek fog megjelenni, kivéve a második mezőben említett embereknek. Nem jelenik meg sehol sem nyilvánosan." -#: src/Core/ACL.php:324 +#: src/Core/ACL.php:310 msgid "" "Start typing the name of a contact or a circle to show a filtered list. You " "can also mention the special circles \"Followers\" and \"Mutuals\"." msgstr "Kezdje el gépelni egy partner vagy kör nevét egy szűrt lista megjelenítéséhez. Megemlítheti a „Követők” és a „Kölcsönösen ismerősök” különleges köröket is." -#: src/Core/ACL.php:325 +#: src/Core/ACL.php:311 msgid "Show to:" msgstr "Megjelenítés nekik:" -#: src/Core/ACL.php:326 +#: src/Core/ACL.php:312 msgid "Except to:" msgstr "Kivéve nekik:" -#: src/Core/ACL.php:327 src/Module/Post/Edit.php:154 +#: src/Core/ACL.php:313 src/Module/Post/Edit.php:140 msgid "CC: email addresses" msgstr "Másolat: e-mail-címek" -#: src/Core/ACL.php:328 src/Module/Post/Edit.php:160 +#: src/Core/ACL.php:314 src/Module/Post/Edit.php:146 msgid "Example: bob@example.com, mary@example.com" msgstr "Példa: bob@example.com, mary@example.com" -#: src/Core/ACL.php:329 +#: src/Core/ACL.php:315 msgid "Connectors" msgstr "Összekötők" -#: src/Core/Installer.php:180 +#: src/Core/Installer.php:166 msgid "" "The database configuration file \"config/local.config.php\" could not be " "written. Please use the enclosed text to create a configuration file in your" " web server root." msgstr "A „config/local.config.php” adatbázis-beállítófájlt nem sikerült írni. Használja a mellékelt szöveget egy beállítófájl létrehozásához a webkiszolgáló gyökerében." -#: src/Core/Installer.php:197 +#: src/Core/Installer.php:183 msgid "" "You may need to import the file \"database.sql\" manually using phpmyadmin " "or mysql." msgstr "Lehet, hogy kézzel kell importálnia a „database.sql” fájlt phpMyAdmin vagy MySQL használatával." -#: src/Core/Installer.php:198 src/Module/Install.php:207 -#: src/Module/Install.php:350 +#: src/Core/Installer.php:184 src/Module/Install.php:193 +#: src/Module/Install.php:336 msgid "Please see the file \"doc/INSTALL.md\"." msgstr "Nézze meg a „doc/INSTALL.md” fájlt." -#: src/Core/Installer.php:259 +#: src/Core/Installer.php:245 msgid "Could not find a command line version of PHP in the web server PATH." msgstr "Nem sikerült megtalálni a PHP parancssori verzióját a webkiszolgáló PATH környezeti változójában." -#: src/Core/Installer.php:260 +#: src/Core/Installer.php:246 msgid "" "If you don't have a command line version of PHP installed on your server, " "you will not be able to run the background processing. See 'Setup the worker'" msgstr "Ha nincs telepítve a PHP parancssori verziója a kiszolgálóján, akkor nem lesz képes futtatni a háttérfeldolgozást. Nézze meg a Setup the worker szakaszt a dokumentációban (angol nyelven)." -#: src/Core/Installer.php:265 +#: src/Core/Installer.php:251 msgid "PHP executable path" msgstr "PHP végrehajtható útvonala" -#: src/Core/Installer.php:265 +#: src/Core/Installer.php:251 msgid "" "Enter full path to php executable. You can leave this blank to continue the " "installation." msgstr "A teljes útvonal megadása a PHP végrehajthatóhoz. Ezt üresen hagyhatja a telepítés folytatásához." -#: src/Core/Installer.php:270 +#: src/Core/Installer.php:256 msgid "Command line PHP" msgstr "Parancssori PHP" -#: src/Core/Installer.php:279 +#: src/Core/Installer.php:265 msgid "PHP executable is not the php cli binary (could be cgi-fgci version)" msgstr "A PHP végrehajtható nem a PHP parancssori bináris (lehet cgi-fgci verzió)" -#: src/Core/Installer.php:280 +#: src/Core/Installer.php:266 msgid "Found PHP version: " msgstr "Megtalált PHP-verzió: " -#: src/Core/Installer.php:282 +#: src/Core/Installer.php:268 msgid "PHP cli binary" msgstr "PHP parancssori bináris" -#: src/Core/Installer.php:295 +#: src/Core/Installer.php:281 msgid "" "The command line version of PHP on your system does not have " "\"register_argc_argv\" enabled." msgstr "A rendszerén lévő PHP parancssori verziójában a „register_argc_argv” nincs engedélyezve." -#: src/Core/Installer.php:296 +#: src/Core/Installer.php:282 msgid "This is required for message delivery to work." msgstr "Ez ahhoz szükséges, hogy az üzenetkézbesítés működjön." -#: src/Core/Installer.php:301 +#: src/Core/Installer.php:287 msgid "PHP register_argc_argv" msgstr "PHP register_argc_argv" -#: src/Core/Installer.php:333 +#: src/Core/Installer.php:319 msgid "" "Error: the \"openssl_pkey_new\" function on this system is not able to " "generate encryption keys" msgstr "Hiba: az „openssl_pkey_new” függvény ezen a rendszeren nem képes titkosítási kulcsokat előállítani" -#: src/Core/Installer.php:334 +#: src/Core/Installer.php:320 msgid "" "If running under Windows, please see " "\"http://www.php.net/manual/en/openssl.installation.php\"." msgstr "Ha Windows alatt fut, akkor nézze meg a „http://www.php.net/manual/en/openssl.installation.php” dokumentációt." -#: src/Core/Installer.php:337 +#: src/Core/Installer.php:323 msgid "Generate encryption keys" msgstr "Titkosítási kulcsok előállítása" -#: src/Core/Installer.php:388 +#: src/Core/Installer.php:374 msgid "" "Error: Apache webserver mod-rewrite module is required but not installed." msgstr "Hiba: az Apache webkiszolgáló mod-rewrite modulja szükséges, de nincs telepítve." -#: src/Core/Installer.php:392 +#: src/Core/Installer.php:378 msgid "Apache mod_rewrite module" msgstr "Apache mod_rewrite modul" -#: src/Core/Installer.php:398 +#: src/Core/Installer.php:384 msgid "Error: PDO or MySQLi PHP module required but not installed." msgstr "Hiba: a PDO vagy a MySQLi PHP-modul szükséges, de nincs telepítve." -#: src/Core/Installer.php:402 +#: src/Core/Installer.php:388 msgid "Error: The MySQL driver for PDO is not installed." msgstr "Hiba: a PDO-hoz szükséges MySQL illesztőprogram nincs telepítve." -#: src/Core/Installer.php:405 +#: src/Core/Installer.php:391 msgid "PDO or MySQLi PHP module" msgstr "PDO vagy MySQLi PHP-modul" -#: src/Core/Installer.php:411 +#: src/Core/Installer.php:397 msgid "Error: The IntlChar module is not installed." msgstr "Hiba: az IntlChar modul nincs telepítve." -#: src/Core/Installer.php:414 +#: src/Core/Installer.php:400 msgid "IntlChar PHP module" msgstr "IntlChar PHP-modul" -#: src/Core/Installer.php:422 +#: src/Core/Installer.php:408 msgid "Error, XML PHP module required but not installed." msgstr "Hiba: az XML PHP-modul szükséges, de nincs telepítve." -#: src/Core/Installer.php:426 +#: src/Core/Installer.php:412 msgid "XML PHP module" msgstr "XML PHP-modul" -#: src/Core/Installer.php:429 +#: src/Core/Installer.php:415 msgid "libCurl PHP module" msgstr "libCurl PHP-modul" -#: src/Core/Installer.php:430 +#: src/Core/Installer.php:416 msgid "Error: libCURL PHP module required but not installed." msgstr "Hiba: az libCURL PHP-modul szükséges, de nincs telepítve." -#: src/Core/Installer.php:436 +#: src/Core/Installer.php:422 msgid "GD graphics PHP module" msgstr "GD grafikai PHP-modul" -#: src/Core/Installer.php:437 +#: src/Core/Installer.php:423 msgid "" "Error: GD graphics PHP module with JPEG support required but not installed." msgstr "Hiba: a JPEG támogatással rendelkező GD grafikai PHP-modul szükséges, de nincs telepítve." -#: src/Core/Installer.php:443 +#: src/Core/Installer.php:429 msgid "OpenSSL PHP module" msgstr "OpenSSL PHP-modul" -#: src/Core/Installer.php:444 +#: src/Core/Installer.php:430 msgid "Error: openssl PHP module required but not installed." msgstr "Hiba: az OpenSSL PHP-modul szükséges, de nincs telepítve." -#: src/Core/Installer.php:450 +#: src/Core/Installer.php:436 msgid "mb_string PHP module" msgstr "mb_string PHP-modul" -#: src/Core/Installer.php:451 +#: src/Core/Installer.php:437 msgid "Error: mb_string PHP module required but not installed." msgstr "Hiba: az mb_string PHP-modul szükséges, de nincs telepítve." -#: src/Core/Installer.php:457 +#: src/Core/Installer.php:443 msgid "iconv PHP module" msgstr "iconv PHP-modul" -#: src/Core/Installer.php:458 +#: src/Core/Installer.php:444 msgid "Error: iconv PHP module required but not installed." msgstr "Hiba: az iconv PHP-modul szükséges, de nincs telepítve." -#: src/Core/Installer.php:464 +#: src/Core/Installer.php:450 msgid "POSIX PHP module" msgstr "POSIX PHP-modul" -#: src/Core/Installer.php:465 +#: src/Core/Installer.php:451 msgid "Error: POSIX PHP module required but not installed." msgstr "Hiba: a POSIX PHP-modul szükséges, de nincs telepítve." -#: src/Core/Installer.php:471 +#: src/Core/Installer.php:457 msgid "Program execution functions" msgstr "Programvégrehajtási funkciók" -#: src/Core/Installer.php:472 +#: src/Core/Installer.php:458 msgid "" "Error: Program execution functions (proc_open) required but not enabled." msgstr "Hiba: a programvégrehajtási funkciók (proc_open) szükségesek, de nincsenek engedélyezve." -#: src/Core/Installer.php:478 +#: src/Core/Installer.php:464 msgid "JSON PHP module" msgstr "JSON PHP-modul" -#: src/Core/Installer.php:479 +#: src/Core/Installer.php:465 msgid "Error: JSON PHP module required but not installed." msgstr "Hiba: a JSON PHP-modul szükséges, de nincs telepítve." -#: src/Core/Installer.php:485 +#: src/Core/Installer.php:471 msgid "File Information PHP module" msgstr "Fájlinformációk PHP-modul" -#: src/Core/Installer.php:486 +#: src/Core/Installer.php:472 msgid "Error: File Information PHP module required but not installed." msgstr "Hiba: a fájlinformációk PHP-modul szükséges, de nincs telepítve." -#: src/Core/Installer.php:492 +#: src/Core/Installer.php:478 msgid "GNU Multiple Precision PHP module" msgstr "GNU Multiple Precision PHP-modul" -#: src/Core/Installer.php:493 +#: src/Core/Installer.php:479 msgid "Error: GNU Multiple Precision PHP module required but not installed." msgstr "Hiba: a GNU Multiple Precision PHP-modul szükséges, de nincs telepítve." -#: src/Core/Installer.php:499 +#: src/Core/Installer.php:485 msgid "IDN Functions PHP module" msgstr "IDN-függvények PHP-modul" -#: src/Core/Installer.php:500 +#: src/Core/Installer.php:486 msgid "Error: IDN Functions PHP module required but not installed." msgstr "Hiba: az IDN-függvények PHP-modul szükséges, de nincs telepítve." -#: src/Core/Installer.php:523 +#: src/Core/Installer.php:509 msgid "" "The web installer needs to be able to create a file called " "\"local.config.php\" in the \"config\" folder of your web server and it is " "unable to do so." msgstr "A webes telepítőnek képesnek kell lennie létrehozni egy „local.config.php” nevű fájlt a webkiszolgáló „config” mappájában, és ezt nem lehet megtenni." -#: src/Core/Installer.php:524 +#: src/Core/Installer.php:510 msgid "" "This is most often a permission setting, as the web server may not be able " "to write files in your folder - even if you can." msgstr "Ez leggyakrabban jogosultsági beállítás, mivel előfordulhat, hogy a webkiszolgáló nem képes fájlokat írni a mappájába, annak ellenére, hogy Ön tud." -#: src/Core/Installer.php:525 +#: src/Core/Installer.php:511 msgid "" "At the end of this procedure, we will give you a text to save in a file " "named local.config.php in your Friendica \"config\" folder." msgstr "Ezen eljárás végén adni fogunk Önnek egy szöveget, hogy elmentse egy „local.config.php” nevű fájlba a Friendica „config” mappájában." -#: src/Core/Installer.php:526 +#: src/Core/Installer.php:512 msgid "" "You can alternatively skip this procedure and perform a manual installation." " Please see the file \"doc/INSTALL.md\" for instructions." msgstr "Alternatívaként kihagyhatja ezt az eljárást, és végezhet kézi telepítést. Az utasításokért nézze meg a „doc/INSTALL.txt” fájlt." -#: src/Core/Installer.php:529 +#: src/Core/Installer.php:515 msgid "config/local.config.php is writable" msgstr "a config/local.config.php írható" -#: src/Core/Installer.php:549 +#: src/Core/Installer.php:535 msgid "" "Friendica uses the Smarty3 template engine to render its web views. Smarty3 " "compiles templates to PHP to speed up rendering." msgstr "A Friendica a Smarty3 sablonmotort használja a webes nézetei megjelenítéséhez. A Smarty3 lefordítja a sablonokat PHP-ra a megjelenítés felgyorsításához." -#: src/Core/Installer.php:550 +#: src/Core/Installer.php:536 msgid "" "In order to store these compiled templates, the web server needs to have " "write access to the directory view/smarty3/ under the Friendica top level " "folder." msgstr "A lefordított sablonok tárolása érdekében a webkiszolgálónak írási hozzáférésre van szüksége a Friendica felső szintű mappája alatti „view/smarty3/” könyvtárhoz." -#: src/Core/Installer.php:551 +#: src/Core/Installer.php:537 msgid "" "Please ensure that the user that your web server runs as (e.g. www-data) has" " write access to this folder." msgstr "Biztosítsa, hogy a webkiszolgálót futtató felhasználónak (például www-data) legyen írási hozzáférése ehhez a mappához." -#: src/Core/Installer.php:552 +#: src/Core/Installer.php:538 msgid "" "Note: as a security measure, you should give the web server write access to " "view/smarty3/ only--not the template files (.tpl) that it contains." msgstr "Megjegyzés: biztonsági intézkedésként csak a „view/smarty3/” mappához kell írási hozzáférést adnia a webkiszolgálónak, nem azokhoz a sablonfájlokhoz (.tpl), amelyeket tartalmaz." -#: src/Core/Installer.php:555 +#: src/Core/Installer.php:541 msgid "view/smarty3 is writable" msgstr "A „view/smarty3” írható" -#: src/Core/Installer.php:583 +#: src/Core/Installer.php:569 msgid "" "Url rewrite in .htaccess seems not working. Make sure you copied .htaccess-" "dist to .htaccess." msgstr "Úgy tűnik, hogy a .htaccess fájlban lévő URL átírás nem működik. Győződjön meg arról, hogy lemásolta-e a .htaccess-dist fájlt .htaccess néven." -#: src/Core/Installer.php:584 +#: src/Core/Installer.php:570 msgid "" "In some circumstances (like running inside containers), you can skip this " "error." msgstr "Bizonyos körülmények között (például konténereken belül való futtatáskor) átugorhatja ezt a hibát." -#: src/Core/Installer.php:586 +#: src/Core/Installer.php:572 msgid "Error message from Curl when fetching" msgstr "Hibaüzenet a cURL-től a lekéréskor" -#: src/Core/Installer.php:592 +#: src/Core/Installer.php:578 msgid "Url rewrite is working" msgstr "Az URL átírás működik" -#: src/Core/Installer.php:621 +#: src/Core/Installer.php:607 msgid "" "The detection of TLS to secure the communication between the browser and the" " new Friendica server failed." msgstr "Nem sikerült a TLS felismerése a böngésző és a Friendica kiszolgálója közötti kommunikáció biztonságossá tételéhez." -#: src/Core/Installer.php:622 +#: src/Core/Installer.php:608 msgid "" "It is highly encouraged to use Friendica only over a secure connection as " "sensitive information like passwords will be transmitted." msgstr "Erősen ajánlott a Friendica kiszolgálót csak biztonságos kapcsolaton keresztül használni, mivel olyan érzékeny információk kerülnek továbbításra, mint például a jelszavak." -#: src/Core/Installer.php:623 +#: src/Core/Installer.php:609 msgid "Please ensure that the connection to the server is secure." msgstr "Győződjön meg arról, hogy a kiszolgálóval való kapcsolat biztonságos." -#: src/Core/Installer.php:624 +#: src/Core/Installer.php:610 msgid "No TLS detected" msgstr "Nincs TLS felismerve" -#: src/Core/Installer.php:626 +#: src/Core/Installer.php:612 msgid "TLS detected" msgstr "TLS felismerve" -#: src/Core/Installer.php:643 +#: src/Core/Installer.php:629 msgid "ImageMagick PHP extension is not installed" msgstr "Az ImageMagick PHP-kiterjesztés nincs telepítve" -#: src/Core/Installer.php:645 +#: src/Core/Installer.php:631 msgid "ImageMagick PHP extension is installed" msgstr "Az ImageMagick PHP-kiterjesztés telepítve van" -#: src/Core/Installer.php:666 +#: src/Core/Installer.php:652 msgid "Database already in use." msgstr "Az adatbázis már használatban van." -#: src/Core/Installer.php:671 +#: src/Core/Installer.php:657 msgid "Could not connect to database." msgstr "Nem sikerült kapcsolódni az adatbázishoz." -#: src/Core/L10n.php:444 src/Model/Item.php:2348 +#: src/Core/L10n.php:430 src/Model/Item.php:2315 msgid "Undetermined" msgstr "Nem meghatározott" -#: src/Core/L10n.php:451 +#: src/Core/L10n.php:437 #, php-format msgid "%s (%s)" msgstr "%s (%s)" -#: src/Core/L10n.php:499 src/Model/Event.php:430 -#: src/Module/Settings/Display.php:284 +#: src/Core/L10n.php:485 src/Model/Event.php:416 +#: src/Module/Settings/Display.php:270 msgid "Monday" msgstr "Hétfő" -#: src/Core/L10n.php:499 src/Model/Event.php:431 -#: src/Module/Settings/Display.php:285 +#: src/Core/L10n.php:485 src/Model/Event.php:417 +#: src/Module/Settings/Display.php:271 msgid "Tuesday" msgstr "Kedd" -#: src/Core/L10n.php:499 src/Model/Event.php:432 -#: src/Module/Settings/Display.php:286 +#: src/Core/L10n.php:485 src/Model/Event.php:418 +#: src/Module/Settings/Display.php:272 msgid "Wednesday" msgstr "Szerda" -#: src/Core/L10n.php:499 src/Model/Event.php:433 -#: src/Module/Settings/Display.php:287 +#: src/Core/L10n.php:485 src/Model/Event.php:419 +#: src/Module/Settings/Display.php:273 msgid "Thursday" msgstr "Csütörtök" -#: src/Core/L10n.php:499 src/Model/Event.php:434 -#: src/Module/Settings/Display.php:288 +#: src/Core/L10n.php:485 src/Model/Event.php:420 +#: src/Module/Settings/Display.php:274 msgid "Friday" msgstr "Péntek" -#: src/Core/L10n.php:499 src/Model/Event.php:435 -#: src/Module/Settings/Display.php:289 +#: src/Core/L10n.php:485 src/Model/Event.php:421 +#: src/Module/Settings/Display.php:275 msgid "Saturday" msgstr "Szombat" -#: src/Core/L10n.php:499 src/Model/Event.php:429 -#: src/Module/Settings/Display.php:283 +#: src/Core/L10n.php:485 src/Model/Event.php:415 +#: src/Module/Settings/Display.php:269 msgid "Sunday" msgstr "Vasárnap" -#: src/Core/L10n.php:503 src/Model/Event.php:450 +#: src/Core/L10n.php:489 src/Model/Event.php:436 msgid "January" msgstr "Január" -#: src/Core/L10n.php:503 src/Model/Event.php:451 +#: src/Core/L10n.php:489 src/Model/Event.php:437 msgid "February" msgstr "Február" -#: src/Core/L10n.php:503 src/Model/Event.php:452 +#: src/Core/L10n.php:489 src/Model/Event.php:438 msgid "March" msgstr "Március" -#: src/Core/L10n.php:503 src/Model/Event.php:453 +#: src/Core/L10n.php:489 src/Model/Event.php:439 msgid "April" msgstr "Április" -#: src/Core/L10n.php:503 src/Core/L10n.php:522 src/Model/Event.php:441 +#: src/Core/L10n.php:489 src/Core/L10n.php:508 src/Model/Event.php:427 msgid "May" msgstr "Május" -#: src/Core/L10n.php:503 src/Model/Event.php:454 +#: src/Core/L10n.php:489 src/Model/Event.php:440 msgid "June" msgstr "Június" -#: src/Core/L10n.php:503 src/Model/Event.php:455 +#: src/Core/L10n.php:489 src/Model/Event.php:441 msgid "July" msgstr "Július" -#: src/Core/L10n.php:503 src/Model/Event.php:456 +#: src/Core/L10n.php:489 src/Model/Event.php:442 msgid "August" msgstr "Augusztus" -#: src/Core/L10n.php:503 src/Model/Event.php:457 +#: src/Core/L10n.php:489 src/Model/Event.php:443 msgid "September" msgstr "Szeptember" -#: src/Core/L10n.php:503 src/Model/Event.php:458 +#: src/Core/L10n.php:489 src/Model/Event.php:444 msgid "October" msgstr "Október" -#: src/Core/L10n.php:503 src/Model/Event.php:459 +#: src/Core/L10n.php:489 src/Model/Event.php:445 msgid "November" msgstr "November" -#: src/Core/L10n.php:503 src/Model/Event.php:460 +#: src/Core/L10n.php:489 src/Model/Event.php:446 msgid "December" msgstr "December" -#: src/Core/L10n.php:518 src/Model/Event.php:422 +#: src/Core/L10n.php:504 src/Model/Event.php:408 msgid "Mon" msgstr "Hét" -#: src/Core/L10n.php:518 src/Model/Event.php:423 +#: src/Core/L10n.php:504 src/Model/Event.php:409 msgid "Tue" msgstr "Ked" -#: src/Core/L10n.php:518 src/Model/Event.php:424 +#: src/Core/L10n.php:504 src/Model/Event.php:410 msgid "Wed" msgstr "Sze" -#: src/Core/L10n.php:518 src/Model/Event.php:425 +#: src/Core/L10n.php:504 src/Model/Event.php:411 msgid "Thu" msgstr "Csü" -#: src/Core/L10n.php:518 src/Model/Event.php:426 +#: src/Core/L10n.php:504 src/Model/Event.php:412 msgid "Fri" msgstr "Pén" -#: src/Core/L10n.php:518 src/Model/Event.php:427 +#: src/Core/L10n.php:504 src/Model/Event.php:413 msgid "Sat" msgstr "Szo" -#: src/Core/L10n.php:518 src/Model/Event.php:421 +#: src/Core/L10n.php:504 src/Model/Event.php:407 msgid "Sun" msgstr "Vas" -#: src/Core/L10n.php:522 src/Model/Event.php:437 +#: src/Core/L10n.php:508 src/Model/Event.php:423 msgid "Jan" msgstr "Jan" -#: src/Core/L10n.php:522 src/Model/Event.php:438 +#: src/Core/L10n.php:508 src/Model/Event.php:424 msgid "Feb" msgstr "Feb" -#: src/Core/L10n.php:522 src/Model/Event.php:439 +#: src/Core/L10n.php:508 src/Model/Event.php:425 msgid "Mar" msgstr "Már" -#: src/Core/L10n.php:522 src/Model/Event.php:440 +#: src/Core/L10n.php:508 src/Model/Event.php:426 msgid "Apr" msgstr "Ápr" -#: src/Core/L10n.php:522 src/Model/Event.php:442 +#: src/Core/L10n.php:508 src/Model/Event.php:428 msgid "Jun" msgstr "Jún" -#: src/Core/L10n.php:522 src/Model/Event.php:443 +#: src/Core/L10n.php:508 src/Model/Event.php:429 msgid "Jul" msgstr "Júl" -#: src/Core/L10n.php:522 src/Model/Event.php:444 +#: src/Core/L10n.php:508 src/Model/Event.php:430 msgid "Aug" msgstr "Aug" -#: src/Core/L10n.php:522 +#: src/Core/L10n.php:508 msgid "Sep" msgstr "Sze" -#: src/Core/L10n.php:522 src/Model/Event.php:446 +#: src/Core/L10n.php:508 src/Model/Event.php:432 msgid "Oct" msgstr "Okt" -#: src/Core/L10n.php:522 src/Model/Event.php:447 +#: src/Core/L10n.php:508 src/Model/Event.php:433 msgid "Nov" msgstr "Nov" -#: src/Core/L10n.php:522 src/Model/Event.php:448 +#: src/Core/L10n.php:508 src/Model/Event.php:434 msgid "Dec" msgstr "Dec" -#: src/Core/Logger/Util/LoggerSettingsCheck.php:60 +#: src/Core/Logger/Util/LoggerSettingsCheck.php:46 #, php-format msgid "The logfile '%s' is not usable. No logging possible (error: '%s')" msgstr "A(z) „%s” naplófájl nem használható. Nem lehetséges a naplózás (hiba: „%s”)." -#: src/Core/Logger/Util/LoggerSettingsCheck.php:85 +#: src/Core/Logger/Util/LoggerSettingsCheck.php:71 #, php-format msgid "" "The debug logfile '%s' is not usable. No logging possible (error: '%s')" msgstr "A(z) „%s” hibakeresési naplófájl nem használható. Nem lehetséges a naplózás (hiba: „%s”)." -#: src/Core/Renderer.php:92 src/Core/Renderer.php:121 -#: src/Core/Renderer.php:150 src/Core/Renderer.php:184 -#: src/Render/FriendicaSmartyEngine.php:60 +#: src/Core/Renderer.php:78 src/Core/Renderer.php:107 +#: src/Core/Renderer.php:136 src/Core/Renderer.php:170 +#: src/Render/FriendicaSmartyEngine.php:46 msgid "" "Friendica can't display this page at the moment, please contact the " "administrator." msgstr "A Friendica jelenleg nem tudja megjeleníteni ezt az oldalt. Vegye fel a kapcsolatot a rendszergazdával." -#: src/Core/Renderer.php:146 +#: src/Core/Renderer.php:132 msgid "template engine cannot be registered without a name." msgstr "a sablonmotort nem lehet regisztrálni név nélkül." -#: src/Core/Renderer.php:180 +#: src/Core/Renderer.php:166 msgid "template engine is not registered!" msgstr "a sablonmotor nincs regisztrálva!" -#: src/Core/Storage/Type/FilesystemConfig.php:78 +#: src/Core/Storage/Type/FilesystemConfig.php:64 msgid "Storage base path" msgstr "Tároló alapútvonala" -#: src/Core/Storage/Type/FilesystemConfig.php:80 +#: src/Core/Storage/Type/FilesystemConfig.php:66 msgid "" "Folder where uploaded files are saved. For maximum security, This should be " "a path outside web server folder tree" msgstr "Az a mappa, ahova a feltöltött fájlok mentve lesznek. A legnagyobb biztonság érdekében ennek a webkiszolgáló mappafáján kívüli útvonalnak kell lennie." -#: src/Core/Storage/Type/FilesystemConfig.php:93 +#: src/Core/Storage/Type/FilesystemConfig.php:79 msgid "Enter a valid existing folder" msgstr "Adjon meg egy érvényes, létező mappát" -#: src/Core/Update.php:80 +#: src/Core/Update.php:66 #, php-format msgid "" "Updates from version %s are not supported. Please update at least to version" " 2021.01 and wait until the postupdate finished version 1383." msgstr "A korábbi %s verzióról való frissítések nem támogatottak. Frissítsen legalább a 2021.01-es verzióra, és várja meg, amíg a bejegyzésfrissítés befejezi az 1383-as verziót." -#: src/Core/Update.php:91 +#: src/Core/Update.php:77 #, php-format msgid "" "Updates from postupdate version %s are not supported. Please update at least" " to version 2021.01 and wait until the postupdate finished version 1383." msgstr "A korábbi %s bejegyzésfrissítési verzióról való frissítések nem támogatottak. Frissítsen legalább a 2021.01-es verzióra, és várja meg, amíg a bejegyzésfrissítés befejezi az 1383-as verziót." -#: src/Core/Update.php:183 +#: src/Core/Update.php:169 #, php-format msgid "%s: executing pre update %d" msgstr "%s: %d előfrissítés végrehajtása" -#: src/Core/Update.php:225 +#: src/Core/Update.php:211 #, php-format msgid "%s: executing post update %d" msgstr "%s: %d bejegyzésfrissítés végrehajtása" -#: src/Core/Update.php:299 +#: src/Core/Update.php:285 #, php-format msgid "Update %s failed. See error logs." msgstr "A(z) %s frissítés sikertelen. Nézze meg a hibanaplókat." -#: src/Core/Update.php:339 +#: src/Core/Update.php:325 #, php-format msgid "" "\n" @@ -3176,49 +3175,49 @@ msgid "" "\t\t\t\tfriendica developer if you can not help me on your own. My database might be invalid." msgstr "\n\t\t\t\tA Friendica fejlesztői nemrég kiadták a(z) %s frissítést, de amikor\n\t\t\t\tmegpróbáltam telepíteni, valami nagyon elromlott.\n\t\t\t\tEzt hamarosan javítani kell, és én nem tudom egyedül elvégezni.\n\t\t\t\tVegye fel a kapcsolatot egy Friendica fejlesztővel, ha egyedül nem\n\t\t\t\ttud nekem segíteni. Az adatbázisunk érvénytelen lehet." -#: src/Core/Update.php:345 +#: src/Core/Update.php:331 #, php-format msgid "The error message is\\n[pre]%s[/pre]" msgstr "A hibaüzenet a következő:\\n[pre]%s[/pre]" -#: src/Core/Update.php:349 src/Core/Update.php:377 +#: src/Core/Update.php:335 src/Core/Update.php:363 msgid "[Friendica Notify] Database update" msgstr "[Friendica értesítés] Adatbázis-frissítés" -#: src/Core/Update.php:371 +#: src/Core/Update.php:357 #, php-format msgid "" "\n" "\t\t\t\tThe friendica database was successfully updated from %s to %s." msgstr "\n\t\t\t\tA Friendica adatbázisa sikeresen frissítve lett: %s → %s." -#: src/Database/DBStructure.php:57 +#: src/Database/DBStructure.php:43 #, php-format msgid "The database version had been set to %s." msgstr "Az adatbázis verziója %s értékre lett állítva." -#: src/Database/DBStructure.php:82 +#: src/Database/DBStructure.php:68 #, php-format msgid "" "The post update is at version %d, it has to be at %d to safely drop the " "tables." msgstr "A bejegyzésfrissítés %d. verziónál van. %d. verziónál kell lennie a táblák biztonságos eldobásához." -#: src/Database/DBStructure.php:95 +#: src/Database/DBStructure.php:81 msgid "No unused tables found." msgstr "Nem találhatók nem használt táblák." -#: src/Database/DBStructure.php:100 +#: src/Database/DBStructure.php:86 msgid "" "These tables are not used for friendica and will be deleted when you execute" " \"dbstructure drop -e\":" msgstr "Ezek a táblák nincsenek használatban a Friendica programnál, és törölve lesznek, ha lefuttatja a „dbstructure drop -e” parancsot:" -#: src/Database/DBStructure.php:137 +#: src/Database/DBStructure.php:123 msgid "There are no tables on MyISAM or InnoDB with the Antelope file format." msgstr "Nincsenek Antelope fájlformátummal rendelkező táblák MyISAM vagy InnoDB motorokon." -#: src/Database/DBStructure.php:161 +#: src/Database/DBStructure.php:147 #, php-format msgid "" "\n" @@ -3226,658 +3225,654 @@ msgid "" "%s\n" msgstr "\nHiba (%d) történt az adatbázis frissítése során:\n%s\n" -#: src/Database/DBStructure.php:164 +#: src/Database/DBStructure.php:150 msgid "Errors encountered performing database changes: " msgstr "Hibák történtek az adatbázis változtatásainak végrehajtásakor: " -#: src/Database/DBStructure.php:232 +#: src/Database/DBStructure.php:218 msgid "Another database update is currently running." msgstr "Egy másik adatbázis-frissítés is fut jelenleg." -#: src/Database/DBStructure.php:236 +#: src/Database/DBStructure.php:222 #, php-format msgid "%s: Database update" msgstr "%s: adatbázis-frissítés" -#: src/Database/DBStructure.php:493 +#: src/Database/DBStructure.php:479 #, php-format msgid "%s: updating %s table." msgstr "%s: a(z) %s tábla frissítése." -#: src/Factory/Api/Mastodon/Error.php:42 +#: src/Factory/Api/Mastodon/Error.php:28 msgid "Record not found" msgstr "A rekord nem található" -#: src/Factory/Api/Mastodon/Error.php:49 +#: src/Factory/Api/Mastodon/Error.php:35 msgid "Unprocessable Entity" msgstr "Feldolgozhatatlan entitás" -#: src/Factory/Api/Mastodon/Error.php:56 +#: src/Factory/Api/Mastodon/Error.php:42 msgid "Unauthorized" msgstr "Nem engedélyezett" -#: src/Factory/Api/Mastodon/Error.php:62 +#: src/Factory/Api/Mastodon/Error.php:48 msgid "" "Token is not authorized with a valid user or is missing a required scope" msgstr "A token nincs felhatalmazva egy érvényes felhasználóval, vagy hiányzik a szükséges hatókör" -#: src/Factory/Api/Mastodon/Error.php:69 +#: src/Factory/Api/Mastodon/Error.php:55 msgid "Internal Server Error" msgstr "Belső kiszolgálóhiba" -#: src/LegacyModule.php:63 +#: src/LegacyModule.php:49 #, php-format msgid "Legacy module file not found: %s" msgstr "Az örökölt modulfájl nem található: %s" -#: src/Model/Circle.php:106 +#: src/Model/Circle.php:92 msgid "" "A deleted circle with this name was revived. Existing item permissions " "may apply to this circle and any future members. If this is" " not what you intended, please create another circle with a different name." msgstr "Egy ilyen névvel rendelkező törölt kör újraéledt. Lehet, hogy a meglévő elemjogosultságok alkalmazva lesznek erre a körre és bármely jövőbeli tagjaira. Ha ez nem az, amit szeretett volna, akkor hozzon létre egy másik kört eltérő névvel." -#: src/Model/Circle.php:544 +#: src/Model/Circle.php:530 msgid "Everybody" msgstr "Mindenki" -#: src/Model/Circle.php:563 +#: src/Model/Circle.php:549 msgid "edit" msgstr "szerkesztés" -#: src/Model/Circle.php:600 +#: src/Model/Circle.php:586 msgid "add" msgstr "hozzáadás" -#: src/Model/Circle.php:605 +#: src/Model/Circle.php:591 msgid "Edit circle" msgstr "Kör szerkesztése" -#: src/Model/Circle.php:606 src/Module/Circle.php:195 +#: src/Model/Circle.php:592 src/Module/Circle.php:181 msgid "Contacts not in any circle" msgstr "Egyetlen körben sem lévő partnerek" -#: src/Model/Circle.php:608 +#: src/Model/Circle.php:594 msgid "Create a new circle" msgstr "Új kör létrehozása" -#: src/Model/Circle.php:609 src/Module/Circle.php:180 -#: src/Module/Circle.php:203 src/Module/Circle.php:278 +#: src/Model/Circle.php:595 src/Module/Circle.php:166 +#: src/Module/Circle.php:189 src/Module/Circle.php:264 msgid "Circle Name: " msgstr "Kör neve: " -#: src/Model/Circle.php:610 +#: src/Model/Circle.php:596 msgid "Edit circles" msgstr "Körök szerkesztése" -#: src/Model/Contact.php:1270 src/Module/Moderation/Users/Pending.php:102 -#: src/Module/Notifications/Introductions.php:138 -#: src/Module/Notifications/Introductions.php:210 +#: src/Model/Contact.php:1263 src/Module/Moderation/Users/Pending.php:88 +#: src/Module/Notifications/Introductions.php:124 +#: src/Module/Notifications/Introductions.php:196 msgid "Approve" msgstr "Jóváhagyás" -#: src/Model/Contact.php:1750 +#: src/Model/Contact.php:1743 msgid "Organisation" msgstr "Szervezet" -#: src/Model/Contact.php:1758 +#: src/Model/Contact.php:1751 msgid "Group" msgstr "Csoport" -#: src/Model/Contact.php:1762 src/Module/Moderation/BaseUsers.php:131 +#: src/Model/Contact.php:1755 src/Module/Moderation/BaseUsers.php:120 msgid "Relay" msgstr "Továbbítás" -#: src/Model/Contact.php:3084 +#: src/Model/Contact.php:3070 msgid "Disallowed profile URL." msgstr "Nem engedélyezett profil URL." -#: src/Model/Contact.php:3089 src/Module/Friendica.php:100 +#: src/Model/Contact.php:3075 src/Module/Friendica.php:86 msgid "Blocked domain" msgstr "Tiltott tartomány" -#: src/Model/Contact.php:3094 +#: src/Model/Contact.php:3080 msgid "Connect URL missing." msgstr "A kapcsolódási URL hiányzik." -#: src/Model/Contact.php:3103 +#: src/Model/Contact.php:3089 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:3121 +#: src/Model/Contact.php:3107 #, 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:3138 +#: src/Model/Contact.php:3124 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:3145 +#: src/Model/Contact.php:3131 msgid "The profile address specified does not provide adequate information." msgstr "A megadott profilcím nem biztosít elegendő információt." -#: src/Model/Contact.php:3147 +#: src/Model/Contact.php:3133 msgid "No compatible communication protocols or feeds were discovered." msgstr "Nem lettek megfelelő kommunikációs protokollok vagy hírforrások felfedezve." -#: src/Model/Contact.php:3150 +#: src/Model/Contact.php:3136 msgid "An author or name was not found." msgstr "Egy szerző vagy név nem található." -#: src/Model/Contact.php:3153 +#: src/Model/Contact.php:3139 msgid "No browser URL could be matched to this address." msgstr "Egyetlen böngésző URL-t sem sikerült illeszteni ehhez a címhez." -#: src/Model/Contact.php:3156 +#: src/Model/Contact.php:3142 msgid "" "Unable to match @-style Identity Address with a known protocol or email " "contact." msgstr "Nem lehet illeszteni @-stílusú személyazonosság-címet egy ismert protokollal vagy e-mailes partnerrel." -#: src/Model/Contact.php:3157 +#: src/Model/Contact.php:3143 msgid "Use mailto: in front of address to force email check." msgstr "Használja a mailto: előtagot a cím előtt az e-mail-ellenőrzés kényszerítéséhez." -#: src/Model/Contact.php:3163 -msgid "" -"The profile address specified belongs to a network which has been disabled " -"on this site." -msgstr "A megadott profilcím egy olyan hálózathoz tartozik, amely le lett tiltva ezen az oldalon." - -#: src/Model/Contact.php:3168 +#: src/Model/Contact.php:3149 msgid "" "Limited profile. This person will be unable to receive direct/personal " "notifications from you." msgstr "Korlátozott profil. Ez a személy nem lesz képes közvetlen vagy személyes értesítéseket fogadni Öntől." -#: src/Model/Contact.php:3234 +#: src/Model/Contact.php:3208 msgid "Unable to retrieve contact information." msgstr "Nem lehet lekérni a partner információit." -#: src/Model/Event.php:54 +#: src/Model/Event.php:40 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:942 +#: src/Model/Event.php:61 src/Model/Event.php:78 src/Model/Event.php:455 +#: src/Model/Event.php:928 msgid "Starts:" msgstr "Kezdődik:" -#: src/Model/Event.php:78 src/Model/Event.php:98 src/Model/Event.php:470 -#: src/Model/Event.php:946 +#: src/Model/Event.php:64 src/Model/Event.php:84 src/Model/Event.php:456 +#: src/Model/Event.php:932 msgid "Finishes:" msgstr "Befejeződik:" -#: src/Model/Event.php:419 +#: src/Model/Event.php:405 msgid "all-day" msgstr "egész nap" -#: src/Model/Event.php:445 +#: src/Model/Event.php:431 msgid "Sept" msgstr "Szept" -#: src/Model/Event.php:462 src/Module/Calendar/Show.php:128 -#: src/Util/Temporal.php:343 +#: src/Model/Event.php:448 src/Module/Calendar/Show.php:114 +#: src/Util/Temporal.php:329 msgid "today" msgstr "ma" -#: src/Model/Event.php:463 src/Module/Calendar/Show.php:129 -#: src/Module/Settings/Display.php:294 src/Util/Temporal.php:353 +#: src/Model/Event.php:449 src/Module/Calendar/Show.php:115 +#: src/Module/Settings/Display.php:280 src/Util/Temporal.php:339 msgid "month" msgstr "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/Model/Event.php:450 src/Module/Calendar/Show.php:116 +#: src/Module/Settings/Display.php:281 src/Util/Temporal.php:340 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/Model/Event.php:451 src/Module/Calendar/Show.php:117 +#: src/Module/Settings/Display.php:282 src/Util/Temporal.php:341 msgid "day" msgstr "nap" -#: src/Model/Event.php:467 +#: src/Model/Event.php:453 msgid "No events to display" msgstr "Nincsenek megjelenítendő események" -#: src/Model/Event.php:516 src/Module/DFRN/Poll.php:47 src/Module/Feed.php:70 -#: src/Module/Update/Profile.php:56 +#: src/Model/Event.php:502 src/Module/Feed.php:56 +#: src/Module/Update/Profile.php:42 msgid "Access to this profile has been restricted." msgstr "A profilhoz való hozzáférés korlátozva lett." -#: src/Model/Event.php:558 src/Module/Calendar/Event/Show.php:67 +#: src/Model/Event.php:544 src/Module/Calendar/Event/Show.php:53 msgid "Event not found." msgstr "Az esemény nem található." -#: src/Model/Event.php:637 +#: src/Model/Event.php:623 msgid "l, F j" msgstr "F j., l" -#: src/Model/Event.php:664 +#: src/Model/Event.php:650 msgid "Edit event" msgstr "Esemény szerkesztése" -#: src/Model/Event.php:665 +#: src/Model/Event.php:651 msgid "Duplicate event" msgstr "Esemény kettőzése" -#: src/Model/Event.php:666 +#: src/Model/Event.php:652 msgid "Delete event" msgstr "Esemény törlése" -#: src/Model/Event.php:896 src/Module/Debug/Localtime.php:38 +#: src/Model/Event.php:882 src/Module/Debug/Localtime.php:24 msgid "l F d, Y \\@ g:i A" msgstr "Y. F j., l, H:i" -#: src/Model/Event.php:897 +#: src/Model/Event.php:883 msgid "D g:i A" msgstr "D H:i" -#: src/Model/Event.php:898 +#: src/Model/Event.php:884 msgid "g:i A" msgstr "H:i" -#: src/Model/Event.php:961 src/Model/Event.php:963 +#: src/Model/Event.php:947 src/Model/Event.php:949 msgid "Show map" msgstr "Térkép megjelenítése" -#: src/Model/Event.php:962 +#: src/Model/Event.php:948 msgid "Hide map" msgstr "Térkép elrejtése" -#: src/Model/Event.php:1055 +#: src/Model/Event.php:1041 #, php-format msgid "%s's birthday" msgstr "%s születésnapja" -#: src/Model/Event.php:1056 +#: src/Model/Event.php:1042 #, php-format msgid "Happy Birthday %s" msgstr "Boldog születésnapot, %s" -#: src/Model/Item.php:2355 +#: src/Model/Item.php:2322 #, php-format msgid "%s (%s - %s): %s" msgstr "%s (%s – %s): %s" -#: src/Model/Item.php:2357 +#: src/Model/Item.php:2324 #, php-format msgid "%s (%s): %s" msgstr "%s (%s): %s" -#: src/Model/Item.php:2360 +#: src/Model/Item.php:2327 #, php-format -msgid "Detected languages in this post:\\n%s" -msgstr "A bejegyzésben felismert nyelvek:\\n%s" +msgid "" +"Detected languages in this post:\n" +"%s" +msgstr "" -#: src/Model/Item.php:3308 +#: src/Model/Item.php:3276 msgid "activity" msgstr "tevékenység" -#: src/Model/Item.php:3310 +#: src/Model/Item.php:3278 msgid "comment" msgstr "hozzászólás" -#: src/Model/Item.php:3313 src/Module/Post/Tag/Add.php:123 +#: src/Model/Item.php:3281 src/Module/Post/Tag/Add.php:109 msgid "post" msgstr "bejegyzés" -#: src/Model/Item.php:3483 +#: src/Model/Item.php:3451 #, php-format msgid "%s is blocked" msgstr "%s tiltva van" -#: src/Model/Item.php:3485 +#: src/Model/Item.php:3453 #, php-format msgid "%s is ignored" msgstr "%s mellőzve van" -#: src/Model/Item.php:3487 +#: src/Model/Item.php:3455 #, php-format msgid "Content from %s is collapsed" msgstr "A(z) %s helyről származó tartalom összecsukva" -#: src/Model/Item.php:3491 +#: src/Model/Item.php:3459 msgid "Sensitive content" msgstr "Érzékeny tartalom" -#: src/Model/Item.php:3960 +#: src/Model/Item.php:3928 msgid "bytes" msgstr "bájt" -#: src/Model/Item.php:3991 +#: src/Model/Item.php:3959 #, 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:3993 +#: src/Model/Item.php:3961 #, 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:3998 +#: src/Model/Item.php:3966 #, 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:4000 +#: src/Model/Item.php:3968 #, php-format msgid "%d voter." msgid_plural "%d voters." msgstr[0] "%d szavazó." msgstr[1] "%d szavazó." -#: src/Model/Item.php:4002 +#: src/Model/Item.php:3970 #, php-format msgid "Poll end: %s" msgstr "Szavazás vége: %s" -#: src/Model/Item.php:4043 src/Model/Item.php:4044 +#: src/Model/Item.php:4011 src/Model/Item.php:4012 msgid "View on separate page" msgstr "Megtekintés külön oldalon" -#: src/Model/Mail.php:135 +#: src/Model/Mail.php:121 msgid "[no subject]" msgstr "[nincs tárgy]" -#: src/Model/Photo.php:1198 src/Module/Media/Photo/Upload.php:168 +#: src/Model/Photo.php:1194 src/Module/Media/Photo/Upload.php:154 msgid "Wall Photos" msgstr "Falfényképek" -#: src/Model/Profile.php:357 src/Module/Profile/Profile.php:285 -#: src/Module/Profile/Profile.php:287 +#: src/Model/Profile.php:343 src/Module/Profile/Profile.php:271 +#: src/Module/Profile/Profile.php:273 msgid "Edit profile" msgstr "Profil szerkesztése" -#: src/Model/Profile.php:359 +#: src/Model/Profile.php:345 msgid "Change profile photo" msgstr "Profilfénykép megváltoztatása" -#: src/Model/Profile.php:372 src/Module/Directory.php:153 -#: src/Module/Profile/Profile.php:211 +#: src/Model/Profile.php:358 src/Module/Directory.php:139 +#: src/Module/Profile/Profile.php:197 msgid "Homepage:" msgstr "Honlap:" -#: src/Model/Profile.php:373 src/Module/Contact/Profile.php:432 -#: src/Module/Notifications/Introductions.php:195 +#: src/Model/Profile.php:359 src/Module/Contact/Profile.php:418 +#: src/Module/Notifications/Introductions.php:181 msgid "About:" msgstr "Névjegy:" -#: src/Model/Profile.php:474 +#: src/Model/Profile.php:460 msgid "Atom feed" msgstr "Atom hírforrás" -#: src/Model/Profile.php:481 +#: src/Model/Profile.php:467 msgid "This website has been verified to belong to the same person." msgstr "Ez a weboldal ellenőrizve lett, hogy ugyanahhoz a személyhez tartozik." -#: src/Model/Profile.php:532 +#: src/Model/Profile.php:518 msgid "F d" msgstr "F j." -#: src/Model/Profile.php:596 src/Model/Profile.php:677 +#: src/Model/Profile.php:582 src/Model/Profile.php:663 msgid "[today]" msgstr "[ma]" -#: src/Model/Profile.php:605 +#: src/Model/Profile.php:591 msgid "Birthday Reminders" msgstr "Születésnapi emlékeztetők" -#: src/Model/Profile.php:606 +#: src/Model/Profile.php:592 msgid "Birthdays this week:" msgstr "Születésnapok ezen a héten:" -#: src/Model/Profile.php:622 +#: src/Model/Profile.php:608 msgid "g A l F d" msgstr "F j., l, H" -#: src/Model/Profile.php:664 +#: src/Model/Profile.php:650 msgid "[No description]" msgstr "[Nincs leírás]" -#: src/Model/Profile.php:690 +#: src/Model/Profile.php:676 msgid "Event Reminders" msgstr "Eseményemlékeztetők" -#: src/Model/Profile.php:691 +#: src/Model/Profile.php:677 msgid "Upcoming events the next 7 days:" msgstr "Közelgő események a következő 7 napon:" -#: src/Model/Profile.php:803 +#: src/Model/Profile.php:789 msgid "Hometown:" msgstr "Szülőváros:" -#: src/Model/Profile.php:804 +#: src/Model/Profile.php:790 msgid "Marital Status:" msgstr "Családi állapot:" -#: src/Model/Profile.php:805 +#: src/Model/Profile.php:791 msgid "With:" msgstr "Ezzel:" -#: src/Model/Profile.php:806 +#: src/Model/Profile.php:792 msgid "Since:" msgstr "Ekkortól:" -#: src/Model/Profile.php:807 +#: src/Model/Profile.php:793 msgid "Sexual Preference:" msgstr "Szexuális irányultság:" -#: src/Model/Profile.php:808 +#: src/Model/Profile.php:794 msgid "Political Views:" msgstr "Politikai nézetek:" -#: src/Model/Profile.php:809 +#: src/Model/Profile.php:795 msgid "Religious Views:" msgstr "Vallási néztek:" -#: src/Model/Profile.php:810 +#: src/Model/Profile.php:796 msgid "Likes:" msgstr "Kedvelések:" -#: src/Model/Profile.php:811 +#: src/Model/Profile.php:797 msgid "Dislikes:" msgstr "Nem kedvelések:" -#: src/Model/Profile.php:812 +#: src/Model/Profile.php:798 msgid "Title/Description:" msgstr "Cím vagy leírás:" -#: src/Model/Profile.php:813 src/Module/Admin/Summary.php:197 -#: src/Module/Moderation/Report/Create.php:280 -#: src/Module/Moderation/Summary.php:76 +#: src/Model/Profile.php:799 src/Module/Admin/Summary.php:183 +#: src/Module/Moderation/Report/Create.php:266 +#: src/Module/Moderation/Summary.php:62 msgid "Summary" msgstr "Összefoglaló" -#: src/Model/Profile.php:814 +#: src/Model/Profile.php:800 msgid "Musical interests" msgstr "Zenei érdeklődések" -#: src/Model/Profile.php:815 +#: src/Model/Profile.php:801 msgid "Books, literature" msgstr "Könyvek, irodalom" -#: src/Model/Profile.php:816 +#: src/Model/Profile.php:802 msgid "Television" msgstr "Televízió" -#: src/Model/Profile.php:817 +#: src/Model/Profile.php:803 msgid "Film/dance/culture/entertainment" msgstr "Film, tánc, kultúra, szórakozás" -#: src/Model/Profile.php:818 +#: src/Model/Profile.php:804 msgid "Hobbies/Interests" msgstr "Hobbik, érdeklődések" -#: src/Model/Profile.php:819 +#: src/Model/Profile.php:805 msgid "Love/romance" msgstr "Szerelem, romantika" -#: src/Model/Profile.php:820 +#: src/Model/Profile.php:806 msgid "Work/employment" msgstr "Munka, foglalkoztatás" -#: src/Model/Profile.php:821 +#: src/Model/Profile.php:807 msgid "School/education" msgstr "Iskola, oktatás" -#: src/Model/Profile.php:822 +#: src/Model/Profile.php:808 msgid "Contact information and Social Networks" msgstr "Partnerinformációk és közösségi hálózatok" -#: src/Model/Profile.php:870 +#: src/Model/Profile.php:856 #, php-format msgid "Responsible account: %s" msgstr "Felelős fiók: %s" -#: src/Model/User.php:233 src/Model/User.php:1326 +#: src/Model/User.php:217 src/Model/User.php:1310 msgid "SERIOUS ERROR: Generation of security keys failed." msgstr "SÚLYOS HIBA: a biztonsági kulcsok előállítása nem sikerült." -#: src/Model/User.php:756 src/Model/User.php:789 +#: src/Model/User.php:740 src/Model/User.php:773 msgid "Login failed" msgstr "Bejelentkezés sikertelen" -#: src/Model/User.php:821 +#: src/Model/User.php:805 msgid "Not enough information to authenticate" msgstr "Nincs elegendő információ a hitelesítéshez" -#: src/Model/User.php:946 +#: src/Model/User.php:930 msgid "Password can't be empty" msgstr "A jelszó nem lehet üres" -#: src/Model/User.php:988 +#: src/Model/User.php:972 msgid "Empty passwords are not allowed." msgstr "Az üres jelszavak nem megengedettek." -#: src/Model/User.php:992 +#: src/Model/User.php:976 msgid "" "The new password has been exposed in a public data dump, please choose " "another." msgstr "Az új jelszót közzétették egy nyilvános adattárban. Válasszon egy másikat." -#: src/Model/User.php:996 +#: src/Model/User.php:980 msgid "The password length is limited to 72 characters." msgstr "A jelszó hossza 72 karakterre van korlátozva." -#: src/Model/User.php:1000 +#: src/Model/User.php:984 msgid "The password can't contain white spaces nor accentuated letters" msgstr "A jelszó nem tartalmazhat üres karaktereket vagy ékezetes betűket" -#: src/Model/User.php:1209 +#: src/Model/User.php:1193 msgid "Passwords do not match. Password unchanged." msgstr "A jelszavak nem egyeznek. A jelszó változatlan maradt." -#: src/Model/User.php:1216 +#: src/Model/User.php:1200 msgid "An invitation is required." msgstr "Egy meghívás szükséges." -#: src/Model/User.php:1220 +#: src/Model/User.php:1204 msgid "Invitation could not be verified." msgstr "A meghívást nem sikerült ellenőrizni." -#: src/Model/User.php:1228 +#: src/Model/User.php:1212 msgid "Invalid OpenID url" msgstr "Érvénytelen OpenID URL" -#: src/Model/User.php:1241 src/Security/Authentication.php:228 +#: src/Model/User.php:1225 src/Security/Authentication.php:214 msgid "" "We encountered a problem while logging in with the OpenID you provided. " "Please check the correct spelling of the ID." msgstr "Problémába ütköztünk a megadott OpenID-val történő bejelentkezés közben. Ellenőrizze az azonosító helyesírását." -#: src/Model/User.php:1241 src/Security/Authentication.php:228 +#: src/Model/User.php:1225 src/Security/Authentication.php:214 msgid "The error message was:" msgstr "A hibaüzenet ez volt:" -#: src/Model/User.php:1247 +#: src/Model/User.php:1231 msgid "Please enter the required information." msgstr "Adja meg a szükséges információkat." -#: src/Model/User.php:1261 +#: src/Model/User.php:1245 #, php-format msgid "" "system.username_min_length (%s) and system.username_max_length (%s) are " "excluding each other, swapping values." msgstr "A system.username_min_length (%s) és a system.username_max_length (%s) kizárják egymást, értékek felcserélése." -#: src/Model/User.php:1268 +#: src/Model/User.php:1252 #, php-format msgid "Username should be at least %s character." msgid_plural "Username should be at least %s characters." msgstr[0] "A felhasználónévnek legalább %s karakternek kell lennie." msgstr[1] "A felhasználónévnek legalább %s karakternek kell lennie." -#: src/Model/User.php:1272 +#: src/Model/User.php:1256 #, php-format msgid "Username should be at most %s character." msgid_plural "Username should be at most %s characters." msgstr[0] "A felhasználónévnek legfeljebb %s karakternek kell lennie." msgstr[1] "A felhasználónévnek legfeljebb %s karakternek kell lennie." -#: src/Model/User.php:1280 +#: src/Model/User.php:1264 msgid "That doesn't appear to be your full (First Last) name." msgstr "Úgy tűnik, hogy ez nem a teljes neve (vezetéknév és keresztnév)." -#: src/Model/User.php:1285 +#: src/Model/User.php:1269 msgid "Your email domain is not among those allowed on this site." msgstr "Az e-mail tartománya nem tartozik azok közé, amelyek megengedettek ezen az oldalon." -#: src/Model/User.php:1289 +#: src/Model/User.php:1273 msgid "Not a valid email address." msgstr "Nem érvényes e-mail-cím." -#: src/Model/User.php:1292 +#: src/Model/User.php:1276 msgid "The nickname was blocked from registration by the nodes admin." msgstr "A becenevet a csomópont adminisztrátora tiltotta a regisztrációtól." -#: src/Model/User.php:1296 src/Model/User.php:1302 +#: src/Model/User.php:1280 src/Model/User.php:1286 msgid "Cannot use that email." msgstr "Nem lehet használni azt az e-mail-címet." -#: src/Model/User.php:1308 +#: src/Model/User.php:1292 msgid "Your nickname can only contain a-z, 0-9 and _." msgstr "A becenév csak a-z, 0-9 és _ karaktereket tartalmazhat." -#: src/Model/User.php:1316 src/Model/User.php:1373 +#: src/Model/User.php:1300 src/Model/User.php:1350 msgid "Nickname is already registered. Please choose another." msgstr "A becenév már regisztrálva van. Válasszon egy másikat." -#: src/Model/User.php:1360 src/Model/User.php:1364 +#: src/Model/User.php:1337 src/Model/User.php:1341 msgid "An error occurred during registration. Please try again." msgstr "Hiba történt a regisztráció során. Próbálja újra." -#: src/Model/User.php:1387 +#: src/Model/User.php:1364 msgid "An error occurred creating your default profile. Please try again." msgstr "Hiba történt az alapértelmezett profil létrehozásakor. Próbálja újra." -#: src/Model/User.php:1394 +#: src/Model/User.php:1371 msgid "An error occurred creating your self contact. Please try again." msgstr "Hiba történt a saját partnere létrehozásakor. Próbálja újra." -#: src/Model/User.php:1399 +#: src/Model/User.php:1376 msgid "Friends" msgstr "Ismerősök" -#: src/Model/User.php:1403 +#: src/Model/User.php:1380 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:1445 +#: src/Model/User.php:1428 msgid "Profile Photos" msgstr "Profilfényképek" -#: src/Model/User.php:1633 +#: src/Model/User.php:1616 #, php-format msgid "" "\n" @@ -3885,7 +3880,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:1636 +#: src/Model/User.php:1619 #, php-format msgid "" "\n" @@ -3916,12 +3911,12 @@ msgid "" "\t\tThank you and welcome to %4$s." 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:1668 src/Model/User.php:1774 +#: src/Model/User.php:1651 src/Model/User.php:1757 #, php-format msgid "Registration details for %s" msgstr "Regisztrációs részletek ehhez: %s" -#: src/Model/User.php:1688 +#: src/Model/User.php:1671 #, php-format msgid "" "\n" @@ -3936,12 +3931,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:1707 +#: src/Model/User.php:1690 #, php-format msgid "Registration at %s" msgstr "Regisztráció itt: %s" -#: src/Model/User.php:1731 +#: src/Model/User.php:1714 #, php-format msgid "" "\n" @@ -3950,7 +3945,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:1739 +#: src/Model/User.php:1722 #, php-format msgid "" "\n" @@ -3981,93 +3976,91 @@ msgid "" "\t\t\tThank you and welcome to %2$s." 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:1801 +#: src/Model/User.php:1784 msgid "" "User with delegates can't be removed, please remove delegate users first" 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 +#: src/Module/Admin/Addons/Details.php:51 msgid "Addon not found." msgstr "A bővítmény nem található." -#: src/Module/Admin/Addons/Details.php:76 src/Module/Admin/Addons/Index.php:55 +#: src/Module/Admin/Addons/Details.php:62 src/Module/Admin/Addons/Index.php:41 #, php-format msgid "Addon %s disabled." msgstr "A(z) „%s” bővítmény letiltva." -#: src/Module/Admin/Addons/Details.php:79 src/Module/Admin/Addons/Index.php:57 +#: src/Module/Admin/Addons/Details.php:65 src/Module/Admin/Addons/Index.php:43 #, php-format msgid "Addon %s enabled." msgstr "A(z) „%s” bővítmény engedélyezve." -#: src/Module/Admin/Addons/Details.php:88 -#: src/Module/Admin/Themes/Details.php:52 +#: src/Module/Admin/Addons/Details.php:74 +#: src/Module/Admin/Themes/Details.php:38 msgid "Disable" msgstr "Letiltás" -#: src/Module/Admin/Addons/Details.php:91 -#: src/Module/Admin/Themes/Details.php:55 src/Module/Settings/Display.php:340 +#: src/Module/Admin/Addons/Details.php:77 +#: src/Module/Admin/Themes/Details.php:41 src/Module/Settings/Display.php:326 msgid "Enable" msgstr "Engedélyezés" -#: src/Module/Admin/Addons/Details.php:111 -#: src/Module/Admin/Addons/Index.php:73 src/Module/Admin/Federation.php:220 -#: src/Module/Admin/Logs/Settings.php:88 src/Module/Admin/Logs/View.php:85 -#: src/Module/Admin/Queue.php:73 src/Module/Admin/Site.php:457 -#: src/Module/Admin/Storage.php:138 src/Module/Admin/Summary.php:196 -#: src/Module/Admin/Themes/Details.php:96 -#: src/Module/Admin/Themes/Index.php:117 src/Module/Admin/Tos.php:77 -#: src/Module/Moderation/Users/Create.php:61 -#: src/Module/Moderation/Users/Pending.php:96 +#: src/Module/Admin/Addons/Details.php:97 src/Module/Admin/Addons/Index.php:59 +#: src/Module/Admin/Federation.php:206 src/Module/Admin/Logs/Settings.php:74 +#: src/Module/Admin/Logs/View.php:71 src/Module/Admin/Queue.php:59 +#: src/Module/Admin/Site.php:447 src/Module/Admin/Storage.php:124 +#: src/Module/Admin/Summary.php:182 src/Module/Admin/Themes/Details.php:82 +#: src/Module/Admin/Themes/Index.php:103 src/Module/Admin/Tos.php:63 +#: src/Module/Moderation/Users/Create.php:47 +#: src/Module/Moderation/Users/Pending.php:82 msgid "Administration" msgstr "Adminisztráció" -#: src/Module/Admin/Addons/Details.php:112 -#: src/Module/Admin/Addons/Index.php:74 src/Module/BaseAdmin.php:92 -#: src/Module/BaseSettings.php:139 +#: src/Module/Admin/Addons/Details.php:98 src/Module/Admin/Addons/Index.php:60 +#: src/Module/BaseAdmin.php:78 src/Module/BaseSettings.php:125 msgid "Addons" msgstr "Bővítmények" -#: src/Module/Admin/Addons/Details.php:113 -#: src/Module/Admin/Themes/Details.php:98 +#: src/Module/Admin/Addons/Details.php:99 +#: src/Module/Admin/Themes/Details.php:84 msgid "Toggle" msgstr "Átváltás" -#: src/Module/Admin/Addons/Details.php:120 -#: src/Module/Admin/Themes/Details.php:106 +#: src/Module/Admin/Addons/Details.php:106 +#: src/Module/Admin/Themes/Details.php:92 msgid "Author: " msgstr "Szerző: " -#: src/Module/Admin/Addons/Details.php:121 -#: src/Module/Admin/Themes/Details.php:107 +#: src/Module/Admin/Addons/Details.php:107 +#: src/Module/Admin/Themes/Details.php:93 msgid "Maintainer: " msgstr "Karbantartó: " -#: src/Module/Admin/Addons/Index.php:48 +#: src/Module/Admin/Addons/Index.php:34 msgid "Addons reloaded" msgstr "Bővítmények újratöltve" -#: src/Module/Admin/Addons/Index.php:59 +#: src/Module/Admin/Addons/Index.php:45 #, php-format msgid "Addon %s failed to install." msgstr "A(z) „%s” bővítmény telepítése sikertelen." -#: src/Module/Admin/Addons/Index.php:75 src/Module/Admin/Features.php:83 -#: src/Module/Admin/Logs/Settings.php:90 src/Module/Admin/Site.php:460 -#: src/Module/Admin/Themes/Index.php:119 src/Module/Admin/Tos.php:86 -#: src/Module/Settings/Account.php:563 src/Module/Settings/Addons.php:78 -#: src/Module/Settings/Connectors.php:163 -#: src/Module/Settings/Connectors.php:256 -#: src/Module/Settings/Delegation.php:193 src/Module/Settings/Display.php:309 -#: src/Module/Settings/Features.php:75 +#: src/Module/Admin/Addons/Index.php:61 src/Module/Admin/Features.php:69 +#: src/Module/Admin/Logs/Settings.php:76 src/Module/Admin/Site.php:450 +#: src/Module/Admin/Themes/Index.php:105 src/Module/Admin/Tos.php:72 +#: src/Module/Settings/Account.php:549 src/Module/Settings/Addons.php:64 +#: src/Module/Settings/Connectors.php:149 +#: src/Module/Settings/Connectors.php:235 +#: src/Module/Settings/Delegation.php:179 src/Module/Settings/Display.php:295 +#: src/Module/Settings/Features.php:61 msgid "Save Settings" msgstr "Beállítások mentése" -#: src/Module/Admin/Addons/Index.php:76 +#: src/Module/Admin/Addons/Index.php:62 msgid "Reload active addons" msgstr "Bekapcsolt bővítmények újratöltése" -#: src/Module/Admin/Addons/Index.php:80 +#: src/Module/Admin/Addons/Index.php:66 #, php-format msgid "" "There are currently no addons available on your node. You can find the " @@ -4075,158 +4068,158 @@ msgid "" " the open addon registry at %2$s" msgstr "Jelenleg nem érhetők el bővítmények az Ön csomópontján. A hivatalos bővítménytároló megtalálható a %1$s oldalon, és esetleg egyéb érdekes bővítményeket is találhat a %2$s címen elérhető nyílt bővítményjegyzékben." -#: src/Module/Admin/DBSync.php:51 +#: src/Module/Admin/DBSync.php:37 msgid "Update has been marked successful" msgstr "A frissítés sikeresen meg lett jelölve" -#: src/Module/Admin/DBSync.php:59 +#: src/Module/Admin/DBSync.php:45 #, php-format msgid "Database structure update %s was successfully applied." msgstr "A(z) %s adatbázisszerkezet-frissítés sikeresen alkalmazva." -#: src/Module/Admin/DBSync.php:61 +#: src/Module/Admin/DBSync.php:47 #, php-format msgid "Executing of database structure update %s failed with error: %s" msgstr "A(z) %s adatbázisszerkezet-frissítés végrehajtása meghiúsult ezzel a hibával: %s" -#: src/Module/Admin/DBSync.php:76 +#: src/Module/Admin/DBSync.php:62 #, php-format msgid "Executing %s failed with error: %s" msgstr "A(z) %s végrehajtása meghiúsult ezzel a hibával: %s" -#: src/Module/Admin/DBSync.php:78 +#: src/Module/Admin/DBSync.php:64 #, php-format msgid "Update %s was successfully applied." msgstr "A(z) %s frissítés sikeresen alkalmazva." -#: src/Module/Admin/DBSync.php:81 +#: src/Module/Admin/DBSync.php:67 #, php-format msgid "Update %s did not return a status. Unknown if it succeeded." msgstr "A(z) %s frissítés nem adott vissza állapotot. Nem tudni, hogy sikerült-e." -#: src/Module/Admin/DBSync.php:84 +#: src/Module/Admin/DBSync.php:70 #, php-format msgid "There was no additional update function %s that needed to be called." msgstr "Nem volt további frissítési funkció, %s amelyet meg kellett hívni." -#: src/Module/Admin/DBSync.php:105 +#: src/Module/Admin/DBSync.php:91 msgid "No failed updates." msgstr "Nincsenek sikertelen frissítések." -#: src/Module/Admin/DBSync.php:106 +#: src/Module/Admin/DBSync.php:92 msgid "Check database structure" msgstr "Adatbázis-szerkezet ellenőrzése" -#: src/Module/Admin/DBSync.php:110 +#: src/Module/Admin/DBSync.php:96 msgid "Failed Updates" msgstr "Sikertelen frissítések" -#: src/Module/Admin/DBSync.php:111 +#: src/Module/Admin/DBSync.php:97 msgid "" "This does not include updates prior to 1139, which did not return a status." msgstr "Ez nem tartalmazza az 1139 előtti frissítéseket, amelyek nem adtak vissza állapotot." -#: src/Module/Admin/DBSync.php:112 +#: src/Module/Admin/DBSync.php:98 msgid "Mark success (if update was manually applied)" msgstr "Megjelölés sikeresként (ha a frissítés kézzel lett alkalmazva)" -#: src/Module/Admin/DBSync.php:113 +#: src/Module/Admin/DBSync.php:99 msgid "Attempt to execute this update step automatically" msgstr "Próbálja meg automatikusan végrehajtani ezt a frissítési lépést" -#: src/Module/Admin/Features.php:67 -#: src/Module/Notifications/Introductions.php:150 -#: src/Module/OAuth/Acknowledge.php:55 src/Module/Register.php:138 -#: src/Module/Settings/TwoFactor/Trusted.php:129 +#: src/Module/Admin/Features.php:53 +#: src/Module/Notifications/Introductions.php:136 +#: src/Module/OAuth/Acknowledge.php:41 src/Module/Register.php:124 +#: src/Module/Settings/TwoFactor/Trusted.php:115 msgid "No" msgstr "Nem" -#: src/Module/Admin/Features.php:67 src/Module/Contact/Revoke.php:105 -#: src/Module/Notifications/Introductions.php:150 -#: src/Module/OAuth/Acknowledge.php:54 src/Module/Register.php:137 -#: src/Module/Settings/TwoFactor/Trusted.php:129 +#: src/Module/Admin/Features.php:53 src/Module/Contact/Revoke.php:91 +#: src/Module/Notifications/Introductions.php:136 +#: src/Module/OAuth/Acknowledge.php:40 src/Module/Register.php:123 +#: src/Module/Settings/TwoFactor/Trusted.php:115 msgid "Yes" msgstr "Igen" -#: src/Module/Admin/Features.php:67 +#: src/Module/Admin/Features.php:53 msgid "Locked" msgstr "Zárolva" -#: src/Module/Admin/Features.php:81 +#: src/Module/Admin/Features.php:67 msgid "Manage Additional Features" msgstr "További funkciók kezelése" -#: src/Module/Admin/Federation.php:82 -#: src/Module/Moderation/Report/Create.php:191 -#: src/Module/Moderation/Report/Create.php:316 +#: src/Module/Admin/Federation.php:68 +#: src/Module/Moderation/Report/Create.php:177 +#: src/Module/Moderation/Report/Create.php:302 msgid "Other" msgstr "Egyéb" -#: src/Module/Admin/Federation.php:160 src/Module/Admin/Federation.php:408 +#: src/Module/Admin/Federation.php:146 src/Module/Admin/Federation.php:394 msgid "unknown" msgstr "ismeretlen" -#: src/Module/Admin/Federation.php:193 +#: src/Module/Admin/Federation.php:179 #, php-format msgid "%2$s total system" msgid_plural "%2$s total systems" msgstr[0] "%2$s rendszer összesen" msgstr[1] "%2$s rendszer összesen" -#: src/Module/Admin/Federation.php:194 +#: src/Module/Admin/Federation.php:180 #, php-format msgid "%2$s active user last month" msgid_plural "%2$s active users last month" msgstr[0] "%2$s aktív felhasználó az elmúlt hónapban" msgstr[1] "%2$s aktív felhasználó az elmúlt hónapban" -#: src/Module/Admin/Federation.php:195 +#: src/Module/Admin/Federation.php:181 #, php-format msgid "%2$s active user last six months" msgid_plural "%2$s active users last six months" msgstr[0] "%2$s aktív felhasználó az elmúlt hat hónapban" msgstr[1] "%2$s aktív felhasználó az elmúlt hat hónapban" -#: src/Module/Admin/Federation.php:196 +#: src/Module/Admin/Federation.php:182 #, php-format msgid "%2$s registered user" msgid_plural "%2$s registered users" msgstr[0] "%2$s regisztrált felhasználó" msgstr[1] "%2$s regisztrált felhasználó" -#: src/Module/Admin/Federation.php:197 +#: src/Module/Admin/Federation.php:183 #, php-format msgid "%2$s locally created post or comment" msgid_plural "%2$s locally created posts and comments" msgstr[0] "%2$s helyileg létrehozott bejegyzés vagy hozzászólás" msgstr[1] "%2$s helyileg létrehozott bejegyzés és hozzászólás" -#: src/Module/Admin/Federation.php:200 +#: src/Module/Admin/Federation.php:186 #, php-format msgid "%2$s post per user" msgid_plural "%2$s posts per user" msgstr[0] "%2$s bejegyzés felhasználónként" msgstr[1] "%2$s bejegyzés felhasználónként" -#: src/Module/Admin/Federation.php:205 +#: src/Module/Admin/Federation.php:191 #, php-format msgid "%2$s user per system" msgid_plural "%2$s users per system" msgstr[0] "%2$s felhasználó rendszerenként" msgstr[1] "%2$s felhasználó rendszerenként" -#: src/Module/Admin/Federation.php:215 +#: src/Module/Admin/Federation.php:201 msgid "" "This page offers you some numbers to the known part of the federated social " "network your Friendica node is part of. These numbers are not complete but " "only reflect the part of the network your node is aware of." msgstr "Ez az oldal néhány számadatot nyújt a föderált közösségi hálózat azon ismert részéhez, amelynek része az Ön Friendica csomópontja. Ezek a számok nem teljesek, hanem csak a hálózat azon részét tükrözik, amelyről a csomópontja tud." -#: src/Module/Admin/Federation.php:221 src/Module/BaseAdmin.php:87 +#: src/Module/Admin/Federation.php:207 src/Module/BaseAdmin.php:73 msgid "Federation Statistics" msgstr "Föderációs statisztikák" -#: src/Module/Admin/Federation.php:224 +#: src/Module/Admin/Federation.php:210 #, php-format msgid "" "Currently this node is aware of %2$s node (%3$s active users last month, " @@ -4239,58 +4232,58 @@ msgid_plural "" msgstr[0] "Jelenleg erről a csomópontról %2$s csomópontnak van tudomása (%3$s aktív felhasználóval az elmúlt hónapban, %4$s aktív felhasználóval az elmúlt hat hónapban, összesen %5$s regisztrált felhasználóval) a következő platformokról:" msgstr[1] "Jelenleg erről a csomópontról %2$s csomópontnak van tudomása (%3$s aktív felhasználóval az elmúlt hónapban, %4$s aktív felhasználóval az elmúlt hat hónapban, összesen %5$s regisztrált felhasználóval) a következő platformokról:" -#: src/Module/Admin/Logs/Settings.php:47 +#: src/Module/Admin/Logs/Settings.php:33 #, php-format msgid "The logfile '%s' is not writable. No logging possible" msgstr "A(z) „%s” naplófájl nem írható. A naplózás nem lehetséges." -#: src/Module/Admin/Logs/Settings.php:80 +#: src/Module/Admin/Logs/Settings.php:66 msgid "PHP log currently enabled." msgstr "A PHP-naplózás jelenleg engedélyezve van." -#: src/Module/Admin/Logs/Settings.php:82 +#: src/Module/Admin/Logs/Settings.php:68 msgid "PHP log currently disabled." msgstr "A PHP-naplózás jelenleg le van tiltva." -#: src/Module/Admin/Logs/Settings.php:89 src/Module/BaseAdmin.php:102 -#: src/Module/BaseAdmin.php:103 +#: src/Module/Admin/Logs/Settings.php:75 src/Module/BaseAdmin.php:88 +#: src/Module/BaseAdmin.php:89 msgid "Logs" msgstr "Naplók" -#: src/Module/Admin/Logs/Settings.php:91 +#: src/Module/Admin/Logs/Settings.php:77 msgid "Clear" msgstr "Törlés" -#: src/Module/Admin/Logs/Settings.php:94 +#: src/Module/Admin/Logs/Settings.php:80 msgid "Enable Debugging" msgstr "Hibakeresés engedélyezése" -#: src/Module/Admin/Logs/Settings.php:94 src/Module/Admin/Logs/Settings.php:95 -#: src/Module/Admin/Logs/Settings.php:96 src/Module/Admin/Site.php:480 -#: src/Module/Admin/Site.php:488 +#: src/Module/Admin/Logs/Settings.php:80 src/Module/Admin/Logs/Settings.php:81 +#: src/Module/Admin/Logs/Settings.php:82 src/Module/Admin/Site.php:470 +#: src/Module/Admin/Site.php:478 msgid "" "Read-only because it is set by an environment variable" msgstr "Csak olvasható, mert egy környezeti változó állítja be" -#: src/Module/Admin/Logs/Settings.php:95 +#: src/Module/Admin/Logs/Settings.php:81 msgid "Log file" msgstr "Naplófájl" -#: src/Module/Admin/Logs/Settings.php:95 +#: src/Module/Admin/Logs/Settings.php:81 msgid "" "Must be writable by web server. Relative to your Friendica top-level " "directory." msgstr "Írhatónak kell lennie a webkiszolgáló által. Relatívan kell megadni a Friendica felső szintű könyvtárához képest." -#: src/Module/Admin/Logs/Settings.php:96 +#: src/Module/Admin/Logs/Settings.php:82 msgid "Log level" msgstr "Naplózási szint" -#: src/Module/Admin/Logs/Settings.php:98 +#: src/Module/Admin/Logs/Settings.php:84 msgid "PHP logging" msgstr "PHP-naplózás" -#: src/Module/Admin/Logs/Settings.php:99 +#: src/Module/Admin/Logs/Settings.php:85 msgid "" "To temporarily enable logging of PHP errors and warnings you can prepend the" " following to the index.php file of your installation. The filename set in " @@ -4299,402 +4292,407 @@ msgid "" "'display_errors' is to enable these options, set to '0' to disable them." msgstr "A PHP hibák és figyelmeztetések naplózásának átmeneti engedélyezéséhez beszúrhatja a következőket a telepítése index.php fájljának elejére. Az „error_log” sorban beállított fájlnév relatív a Friendica felső szintű könyvtárához képest, és írhatónak kell lennie a webkiszolgáló által. A „log_errors” és a „display_errors” beállítások „1” értéke a beállítások engedélyezéséhez kell. Állítsa „0” értékre a letiltásukhoz." -#: src/Module/Admin/Logs/View.php:72 +#: src/Module/Admin/Logs/View.php:58 #, php-format msgid "" "Error trying to open %1$s log file.
Check to see if " "file %1$s exist and is readable." msgstr "Hiba a(z) %1$s naplófájl megnyitási kísérlete során.
Ellenőrizze, hogy a(z) „%1$s” fájl létezik-e és olvasható-e." -#: src/Module/Admin/Logs/View.php:81 +#: src/Module/Admin/Logs/View.php:67 #, php-format msgid "" "Couldn't open %1$s log file.
Check to see if file %1$s " "is readable." msgstr "Nem sikerült megnyitni a(z) %1$s naplófájlt.
Ellenőrizze, hogy a(z) „%1$s” fájl olvasható-e." -#: src/Module/Admin/Logs/View.php:86 src/Module/BaseAdmin.php:104 +#: src/Module/Admin/Logs/View.php:72 src/Module/BaseAdmin.php:90 msgid "View Logs" msgstr "Naplók megtekintése" -#: src/Module/Admin/Logs/View.php:89 +#: src/Module/Admin/Logs/View.php:75 msgid "Search in logs" msgstr "Keresés a naplókban" -#: src/Module/Admin/Logs/View.php:90 -#: src/Module/Notifications/Notifications.php:146 +#: src/Module/Admin/Logs/View.php:76 +#: src/Module/Notifications/Notifications.php:132 msgid "Show all" msgstr "Összes megjelenítése" -#: src/Module/Admin/Logs/View.php:91 +#: src/Module/Admin/Logs/View.php:77 msgid "Date" msgstr "Dátum" -#: src/Module/Admin/Logs/View.php:92 +#: src/Module/Admin/Logs/View.php:78 msgid "Level" msgstr "Szint" -#: src/Module/Admin/Logs/View.php:93 +#: src/Module/Admin/Logs/View.php:79 msgid "Context" msgstr "Környezet" -#: src/Module/Admin/Logs/View.php:95 +#: src/Module/Admin/Logs/View.php:81 msgid "ALL" msgstr "Összes" -#: src/Module/Admin/Logs/View.php:96 +#: src/Module/Admin/Logs/View.php:82 msgid "View details" msgstr "Részletek megtekintése" -#: src/Module/Admin/Logs/View.php:97 +#: src/Module/Admin/Logs/View.php:83 msgid "Click to view details" msgstr "Kattintson a részletek megtekintéséhez" -#: src/Module/Admin/Logs/View.php:98 src/Module/Calendar/Event/Form.php:207 +#: src/Module/Admin/Logs/View.php:84 src/Module/Calendar/Event/Form.php:193 msgid "Event details" msgstr "Esemény részletei" -#: src/Module/Admin/Logs/View.php:99 +#: src/Module/Admin/Logs/View.php:85 msgid "Data" msgstr "Adatok" -#: src/Module/Admin/Logs/View.php:100 -#: src/Module/Debug/ActivityPubConversion.php:63 +#: src/Module/Admin/Logs/View.php:86 +#: src/Module/Debug/ActivityPubConversion.php:49 msgid "Source" msgstr "Forrás" -#: src/Module/Admin/Logs/View.php:101 +#: src/Module/Admin/Logs/View.php:87 msgid "File" msgstr "Fájl" -#: src/Module/Admin/Logs/View.php:102 +#: src/Module/Admin/Logs/View.php:88 msgid "Line" msgstr "Sor" -#: src/Module/Admin/Logs/View.php:103 +#: src/Module/Admin/Logs/View.php:89 msgid "Function" msgstr "Függvény" -#: src/Module/Admin/Logs/View.php:104 +#: src/Module/Admin/Logs/View.php:90 msgid "UID" msgstr "UID" -#: src/Module/Admin/Logs/View.php:105 +#: src/Module/Admin/Logs/View.php:91 msgid "Process ID" msgstr "Folyamatazonosító" -#: src/Module/Admin/Logs/View.php:106 +#: src/Module/Admin/Logs/View.php:92 msgid "Close" msgstr "Bezárás" -#: src/Module/Admin/Queue.php:50 +#: src/Module/Admin/Queue.php:36 msgid "Inspect Deferred Worker Queue" msgstr "Elhalasztott feldolgozó várakozási sorának vizsgálata" -#: src/Module/Admin/Queue.php:51 +#: src/Module/Admin/Queue.php:37 msgid "" "This page lists the deferred worker jobs. This are jobs that couldn't be " "executed at the first time." msgstr "Ez az oldal az elhalasztott feldolgozó feladatokat sorolja fel. Ezek azok a feladatok, amelyeket nem sikerült végrehajtani első alkalommal." -#: src/Module/Admin/Queue.php:54 +#: src/Module/Admin/Queue.php:40 msgid "Inspect Worker Queue" msgstr "Feldolgozó várakozási sorának vizsgálata" -#: src/Module/Admin/Queue.php:55 +#: src/Module/Admin/Queue.php:41 msgid "" "This page lists the currently queued worker jobs. These jobs are handled by " "the worker cronjob you've set up during install." msgstr "Ez az oldal a jelenleg sorba állított feldolgozó feladatokat sorolja fel. Ezeket a feladatokat a feldolgozó cron-feladata kezeli, amelyet a telepítés során állított be." -#: src/Module/Admin/Queue.php:76 +#: src/Module/Admin/Queue.php:62 msgid "ID" msgstr "Azonosító" -#: src/Module/Admin/Queue.php:77 +#: src/Module/Admin/Queue.php:63 msgid "Command" msgstr "Parancs" -#: src/Module/Admin/Queue.php:78 +#: src/Module/Admin/Queue.php:64 msgid "Job Parameters" msgstr "Feladat paraméterei" -#: src/Module/Admin/Queue.php:79 src/Module/Moderation/Reports.php:116 -#: src/Module/Settings/OAuth.php:74 +#: src/Module/Admin/Queue.php:65 src/Module/Moderation/Reports.php:102 +#: src/Module/Settings/OAuth.php:60 msgid "Created" msgstr "Létrehozva" -#: src/Module/Admin/Queue.php:80 +#: src/Module/Admin/Queue.php:66 msgid "Next Try" msgstr "Következő próba" -#: src/Module/Admin/Queue.php:81 +#: src/Module/Admin/Queue.php:67 msgid "Priority" msgstr "Prioritás" -#: src/Module/Admin/Site.php:244 +#: src/Module/Admin/Site.php:230 +#, php-format +msgid "%s is no valid input for maximum media size" +msgstr "" + +#: src/Module/Admin/Site.php:235 #, 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:372 src/Module/Settings/Display.php:215 +#: src/Module/Admin/Site.php:362 src/Module/Settings/Display.php:201 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:389 src/Module/Settings/Display.php:225 +#: src/Module/Admin/Site.php:379 src/Module/Settings/Display.php:211 #, php-format msgid "%s - (Experimental)" msgstr "%s – (kísérleti)" -#: src/Module/Admin/Site.php:401 +#: src/Module/Admin/Site.php:391 msgid "No community page" msgstr "Nincs közösségi oldal" -#: src/Module/Admin/Site.php:402 +#: src/Module/Admin/Site.php:392 msgid "No community page for visitors" msgstr "Nincs közösségi oldal a látogatóknak" -#: src/Module/Admin/Site.php:403 +#: src/Module/Admin/Site.php:393 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:404 +#: src/Module/Admin/Site.php:394 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:405 +#: src/Module/Admin/Site.php:395 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:411 +#: src/Module/Admin/Site.php:401 msgid "Multi user instance" msgstr "Többfelhasználós példány" -#: src/Module/Admin/Site.php:434 +#: src/Module/Admin/Site.php:424 msgid "Closed" msgstr "Lezárva" -#: src/Module/Admin/Site.php:435 +#: src/Module/Admin/Site.php:425 msgid "Requires approval" msgstr "Jóváhagyást igényel" -#: src/Module/Admin/Site.php:436 +#: src/Module/Admin/Site.php:426 msgid "Open" msgstr "Nyitott" -#: src/Module/Admin/Site.php:440 +#: src/Module/Admin/Site.php:430 msgid "Don't check" msgstr "Ne ellenőrizze" -#: src/Module/Admin/Site.php:441 +#: src/Module/Admin/Site.php:431 msgid "check the stable version" msgstr "a stabil verzió ellenőrzése" -#: src/Module/Admin/Site.php:442 +#: src/Module/Admin/Site.php:432 msgid "check the development version" msgstr "a fejlesztői verzió ellenőrzése" -#: src/Module/Admin/Site.php:446 +#: src/Module/Admin/Site.php:436 msgid "none" msgstr "nincs" -#: src/Module/Admin/Site.php:447 +#: src/Module/Admin/Site.php:437 msgid "Local contacts" msgstr "Helyi partnerek" -#: src/Module/Admin/Site.php:448 +#: src/Module/Admin/Site.php:438 msgid "Interactors" msgstr "Interaktorok" -#: src/Module/Admin/Site.php:458 src/Module/BaseAdmin.php:90 +#: src/Module/Admin/Site.php:448 src/Module/BaseAdmin.php:76 msgid "Site" msgstr "Oldal" -#: src/Module/Admin/Site.php:459 +#: src/Module/Admin/Site.php:449 msgid "General Information" msgstr "Általános információk" -#: src/Module/Admin/Site.php:461 +#: src/Module/Admin/Site.php:451 msgid "Republish users to directory" msgstr "Felhasználók újra közzé tétele a könyvtárba" -#: src/Module/Admin/Site.php:462 src/Module/Register.php:159 +#: src/Module/Admin/Site.php:452 src/Module/Register.php:145 msgid "Registration" msgstr "Regisztráció" -#: src/Module/Admin/Site.php:463 +#: src/Module/Admin/Site.php:453 msgid "File upload" msgstr "Fájlfeltöltés" -#: src/Module/Admin/Site.php:464 +#: src/Module/Admin/Site.php:454 msgid "Policies" msgstr "Irányelvek" -#: src/Module/Admin/Site.php:465 src/Module/Calendar/Event/Form.php:252 -#: src/Module/Contact.php:553 src/Module/Profile/Profile.php:278 +#: src/Module/Admin/Site.php:455 src/Module/Calendar/Event/Form.php:238 +#: src/Module/Contact.php:528 src/Module/Profile/Profile.php:264 msgid "Advanced" msgstr "Speciális" -#: src/Module/Admin/Site.php:466 +#: src/Module/Admin/Site.php:456 msgid "Auto Discovered Contact Directory" msgstr "Automatikusan felfedezett partnerkönyvtár" -#: src/Module/Admin/Site.php:467 +#: src/Module/Admin/Site.php:457 msgid "Performance" msgstr "Teljesítmény" -#: src/Module/Admin/Site.php:468 +#: src/Module/Admin/Site.php:458 msgid "Worker" msgstr "Feldolgozó" -#: src/Module/Admin/Site.php:469 +#: src/Module/Admin/Site.php:459 msgid "Message Relay" msgstr "Üzenettovábbítás" -#: src/Module/Admin/Site.php:470 +#: src/Module/Admin/Site.php:460 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:471 +#: src/Module/Admin/Site.php:461 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:472 +#: src/Module/Admin/Site.php:462 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:475 +#: src/Module/Admin/Site.php:465 msgid "Relocate Node" msgstr "Csomópont áthelyezése" -#: src/Module/Admin/Site.php:476 +#: src/Module/Admin/Site.php:466 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:477 +#: src/Module/Admin/Site.php:467 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:480 +#: src/Module/Admin/Site.php:470 msgid "Site name" msgstr "Oldal neve" -#: src/Module/Admin/Site.php:481 +#: src/Module/Admin/Site.php:471 msgid "Sender Email" msgstr "Küldő e-mail-címe" -#: src/Module/Admin/Site.php:481 +#: src/Module/Admin/Site.php:471 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:482 +#: src/Module/Admin/Site.php:472 msgid "Name of the system actor" msgstr "A rendszer szereplőjének neve" -#: src/Module/Admin/Site.php:482 +#: src/Module/Admin/Site.php:472 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:483 +#: src/Module/Admin/Site.php:473 msgid "Banner/Logo" msgstr "Reklámcsík vagy logó" -#: src/Module/Admin/Site.php:484 +#: src/Module/Admin/Site.php:474 msgid "Email Banner/Logo" msgstr "E-mail reklámcsík vagy logó" -#: src/Module/Admin/Site.php:485 +#: src/Module/Admin/Site.php:475 msgid "Shortcut icon" msgstr "Böngészőikon" -#: src/Module/Admin/Site.php:485 +#: src/Module/Admin/Site.php:475 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:486 +#: src/Module/Admin/Site.php:476 msgid "Touch icon" msgstr "Érintő ikon" -#: src/Module/Admin/Site.php:486 +#: src/Module/Admin/Site.php:476 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:487 +#: src/Module/Admin/Site.php:477 msgid "Additional Info" msgstr "További információk" -#: src/Module/Admin/Site.php:487 +#: src/Module/Admin/Site.php:477 #, 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:488 +#: src/Module/Admin/Site.php:478 msgid "System language" msgstr "Rendszer nyelve" -#: src/Module/Admin/Site.php:489 +#: src/Module/Admin/Site.php:479 msgid "System theme" msgstr "Rendszer témája" -#: src/Module/Admin/Site.php:489 +#: src/Module/Admin/Site.php:479 #, 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:490 +#: src/Module/Admin/Site.php:480 msgid "Mobile system theme" msgstr "Mobilrendszer témája" -#: src/Module/Admin/Site.php:490 +#: src/Module/Admin/Site.php:480 msgid "Theme for mobile devices" msgstr "Téma a mobil eszközökhöz." -#: src/Module/Admin/Site.php:491 +#: src/Module/Admin/Site.php:481 msgid "Force SSL" msgstr "SSL kényszerítése" -#: src/Module/Admin/Site.php:491 +#: src/Module/Admin/Site.php:481 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:492 +#: src/Module/Admin/Site.php:482 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:492 +#: src/Module/Admin/Site.php:482 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:493 +#: src/Module/Admin/Site.php:483 msgid "Single user instance" msgstr "Egyfelhasználós példány" -#: src/Module/Admin/Site.php:493 +#: src/Module/Admin/Site.php:483 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:495 +#: src/Module/Admin/Site.php:485 msgid "Maximum image size" msgstr "Legnagyobb képméret" -#: src/Module/Admin/Site.php:495 +#: src/Module/Admin/Site.php:485 #, 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" @@ -4702,35 +4700,47 @@ 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:499 +#: src/Module/Admin/Site.php:489 msgid "Maximum image length" msgstr "Legnagyobb képhossz" -#: src/Module/Admin/Site.php:499 +#: src/Module/Admin/Site.php:489 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:500 +#: src/Module/Admin/Site.php:490 msgid "JPEG image quality" msgstr "JPEG-képek minősége" -#: src/Module/Admin/Site.php:500 +#: src/Module/Admin/Site.php:490 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:502 +#: src/Module/Admin/Site.php:491 +msgid "Maximum media file size" +msgstr "" + +#: src/Module/Admin/Site.php:491 +#, php-format +msgid "" +"Maximum size in bytes of uploaded media files. Default is 0, which means no limits. You can put k, m, or g behind the desired value for KiB, MiB, GiB, respectively.\n" +"\t\t\t\t\t\t\t\t\t\t\t\t\tThe value of upload_max_filesize in your PHP.ini needs be set to at least the desired limit.\n" +"\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:496 msgid "Register policy" msgstr "Regisztrációs irányelv" -#: src/Module/Admin/Site.php:503 +#: src/Module/Admin/Site.php:497 msgid "Maximum Users" msgstr "Legtöbb felhasználó" -#: src/Module/Admin/Site.php:503 +#: src/Module/Admin/Site.php:497 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 " @@ -4738,167 +4748,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:504 +#: src/Module/Admin/Site.php:498 msgid "Maximum Daily Registrations" msgstr "Legtöbb napi regisztráció" -#: src/Module/Admin/Site.php:504 +#: src/Module/Admin/Site.php:498 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:505 +#: src/Module/Admin/Site.php:499 msgid "Register text" msgstr "Regisztrációs szöveg" -#: src/Module/Admin/Site.php:505 +#: src/Module/Admin/Site.php:499 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:506 +#: src/Module/Admin/Site.php:500 msgid "Forbidden Nicknames" msgstr "Tiltott becenevek" -#: src/Module/Admin/Site.php:506 +#: src/Module/Admin/Site.php:500 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:507 +#: src/Module/Admin/Site.php:501 msgid "Accounts abandoned after x days" msgstr "Fiókok elhagyottak X nap után" -#: src/Module/Admin/Site.php:507 +#: src/Module/Admin/Site.php:501 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:508 +#: src/Module/Admin/Site.php:502 msgid "Allowed friend domains" msgstr "Engedélyezett ismerőstartományok" -#: src/Module/Admin/Site.php:508 +#: src/Module/Admin/Site.php:502 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:509 +#: src/Module/Admin/Site.php:503 msgid "Allowed email domains" msgstr "Engedélyezett e-mail-tartományok" -#: src/Module/Admin/Site.php:509 +#: src/Module/Admin/Site.php:503 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:510 +#: src/Module/Admin/Site.php:504 msgid "Disallowed email domains" msgstr "Nem engedélyezett e-mail-tartományok" -#: src/Module/Admin/Site.php:510 +#: src/Module/Admin/Site.php:504 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 +#: src/Module/Admin/Site.php:505 msgid "No OEmbed rich content" msgstr "Nincs OEmbed gazdag tartalom" -#: src/Module/Admin/Site.php:511 +#: src/Module/Admin/Site.php:505 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:512 +#: src/Module/Admin/Site.php:506 msgid "Trusted third-party domains" msgstr "Megbízható harmadik fél tartományok" -#: src/Module/Admin/Site.php:512 +#: src/Module/Admin/Site.php:506 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:513 +#: src/Module/Admin/Site.php:507 msgid "Block public" msgstr "Nyilvános tiltása" -#: src/Module/Admin/Site.php:513 +#: src/Module/Admin/Site.php:507 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:514 +#: src/Module/Admin/Site.php:508 msgid "Force publish" msgstr "Közzététel kényszerítése" -#: src/Module/Admin/Site.php:514 +#: src/Module/Admin/Site.php:508 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:514 +#: src/Module/Admin/Site.php:508 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:515 +#: src/Module/Admin/Site.php:509 msgid "Global directory URL" msgstr "Globális könyvtár URL" -#: src/Module/Admin/Site.php:515 +#: src/Module/Admin/Site.php:509 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:516 +#: src/Module/Admin/Site.php:510 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:516 +#: src/Module/Admin/Site.php:510 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:517 +#: src/Module/Admin/Site.php:511 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:517 +#: src/Module/Admin/Site.php:511 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:518 +#: src/Module/Admin/Site.php:512 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:518 +#: src/Module/Admin/Site.php:512 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:519 +#: src/Module/Admin/Site.php:513 msgid "Don't embed private images in posts" msgstr "Ne ágyazzon be személyes képeket a bejegyzésekbe" -#: src/Module/Admin/Site.php:519 +#: src/Module/Admin/Site.php:513 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 " @@ -4906,11 +4916,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:520 +#: src/Module/Admin/Site.php:514 msgid "Explicit Content" msgstr "Felnőtteknek szánt tartalom" -#: src/Module/Admin/Site.php:520 +#: src/Module/Admin/Site.php:514 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 " @@ -4919,329 +4929,319 @@ 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:521 +#: src/Module/Admin/Site.php:515 msgid "Only local search" msgstr "Csak helyi keresés" -#: src/Module/Admin/Site.php:521 +#: src/Module/Admin/Site.php:515 msgid "" "Blocks search for users who are not logged in to prevent crawlers from " "blocking your system." 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:522 +#: src/Module/Admin/Site.php:516 msgid "Blocked tags for trending tags" msgstr "Letiltott címkék a népszerű címkéknél" -#: src/Module/Admin/Site.php:522 +#: src/Module/Admin/Site.php:516 msgid "" "Comma separated list of hashtags that shouldn't be displayed in the trending" " tags." 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:523 +#: src/Module/Admin/Site.php:517 msgid "Cache contact avatars" msgstr "Partnerprofilképek gyorsítótárazása" -#: src/Module/Admin/Site.php:523 +#: src/Module/Admin/Site.php:517 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:524 +#: src/Module/Admin/Site.php:518 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:524 +#: src/Module/Admin/Site.php:518 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:525 +#: src/Module/Admin/Site.php:519 msgid "Allow Users to set up relay channels" msgstr "Továbbító csatornák beállításának engedélyezése a felhasználóknak" -#: src/Module/Admin/Site.php:525 +#: src/Module/Admin/Site.php:519 msgid "" "If enabled, it is possible to create relay users that are used to reshare " "content based on user defined channels." 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:526 +#: src/Module/Admin/Site.php:520 msgid "Adjust the feed poll frequency" msgstr "A hírforrás lekérdezési gyakoriságának beállítása" -#: src/Module/Admin/Site.php:526 +#: src/Module/Admin/Site.php:520 msgid "Automatically detect and set the best feed poll frequency." msgstr "A legjobb hírforrás-lekérdezési gyakoriság automatikus felismerése és beállítása." -#: src/Module/Admin/Site.php:527 +#: src/Module/Admin/Site.php:521 msgid "Minimum poll interval" msgstr "Legkisebb lekérdezési időköz" -#: src/Module/Admin/Site.php:527 +#: src/Module/Admin/Site.php:521 msgid "" "Minimal distance in minutes between two polls for mail and feed contacts. " "Reasonable values are between 1 and 59." 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:528 +#: src/Module/Admin/Site.php:522 msgid "Enable multiple registrations" msgstr "Többszörös regisztrációk engedélyezése" -#: src/Module/Admin/Site.php:528 +#: src/Module/Admin/Site.php:522 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:529 +#: src/Module/Admin/Site.php:523 msgid "Enable OpenID" msgstr "OpenID engedélyezése" -#: src/Module/Admin/Site.php:529 +#: src/Module/Admin/Site.php:523 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:530 +#: src/Module/Admin/Site.php:524 msgid "Enable full name check" msgstr "Teljes név ellenőrzésének engedélyezése" -#: src/Module/Admin/Site.php:530 +#: src/Module/Admin/Site.php:524 msgid "" "Prevents users from registering with a display name with fewer than two " "parts separated by spaces." 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:531 +#: src/Module/Admin/Site.php:525 msgid "Email administrators on new registration" msgstr "E-mail küldése az adminisztrátoroknak új regisztrációkor" -#: src/Module/Admin/Site.php:531 +#: src/Module/Admin/Site.php:525 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:532 +#: src/Module/Admin/Site.php:526 msgid "Community pages for visitors" msgstr "Közösségi oldalak a látogatók számára" -#: src/Module/Admin/Site.php:532 +#: src/Module/Admin/Site.php:526 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:533 +#: src/Module/Admin/Site.php:527 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:533 +#: src/Module/Admin/Site.php:527 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 "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:534 +#: src/Module/Admin/Site.php:528 msgid "Posts per server on community page" msgstr "Kiszolgálónkénti bejegyzések a közösségi oldalon" -#: src/Module/Admin/Site.php:534 +#: src/Module/Admin/Site.php:528 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 "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:536 +#: src/Module/Admin/Site.php:530 msgid "Enable Mail support" msgstr "Levelezési támogatás engedélyezése" -#: src/Module/Admin/Site.php:536 +#: src/Module/Admin/Site.php:530 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:537 +#: src/Module/Admin/Site.php:531 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:538 -msgid "Enable OStatus support" -msgstr "OStatus támogatás engedélyezése" - -#: src/Module/Admin/Site.php:538 -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:540 +#: src/Module/Admin/Site.php:533 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:541 +#: src/Module/Admin/Site.php:534 msgid "Enable Diaspora support" msgstr "Diaspora támogatás engedélyezése" -#: src/Module/Admin/Site.php:541 +#: src/Module/Admin/Site.php:534 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:542 +#: src/Module/Admin/Site.php:535 msgid "Verify SSL" msgstr "SSL ellenőrzése" -#: src/Module/Admin/Site.php:542 +#: src/Module/Admin/Site.php:535 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:543 +#: src/Module/Admin/Site.php:536 msgid "Proxy user" msgstr "Proxy felhasználó" -#: src/Module/Admin/Site.php:543 +#: src/Module/Admin/Site.php:536 msgid "User name for the proxy server." msgstr "Felhasználónév a proxy-kiszolgálóhoz." -#: src/Module/Admin/Site.php:544 +#: src/Module/Admin/Site.php:537 msgid "Proxy URL" msgstr "Proxy URL" -#: src/Module/Admin/Site.php:544 +#: src/Module/Admin/Site.php:537 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:545 +#: src/Module/Admin/Site.php:538 msgid "Network timeout" msgstr "Hálózati időkorlát" -#: src/Module/Admin/Site.php:545 +#: src/Module/Admin/Site.php:538 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:546 +#: src/Module/Admin/Site.php:539 msgid "Maximum Load Average" msgstr "Legnagyobb terhelésátlag" -#: src/Module/Admin/Site.php:546 +#: src/Module/Admin/Site.php:539 #, 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:547 +#: src/Module/Admin/Site.php:540 msgid "Minimal Memory" msgstr "Legkevesebb memória" -#: src/Module/Admin/Site.php:547 +#: src/Module/Admin/Site.php:540 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:548 +#: src/Module/Admin/Site.php:541 msgid "Periodically optimize tables" msgstr "Táblák időszakos optimalizálása" -#: src/Module/Admin/Site.php:548 +#: src/Module/Admin/Site.php:541 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:550 +#: src/Module/Admin/Site.php:543 msgid "Discover followers/followings from contacts" msgstr "Követők vagy követések felfedezése a partnerekből" -#: src/Module/Admin/Site.php:550 +#: src/Module/Admin/Site.php:543 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:551 +#: src/Module/Admin/Site.php:544 msgid "None - deactivated" msgstr "Nincs: ki van kapcsolva." -#: src/Module/Admin/Site.php:552 +#: src/Module/Admin/Site.php:545 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:553 +#: src/Module/Admin/Site.php:546 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:555 +#: src/Module/Admin/Site.php:548 msgid "Only update contacts/servers with local data" msgstr "Csak helyi adatokkal rendelkező partnerek vagy kiszolgálók frissítése" -#: src/Module/Admin/Site.php:555 +#: src/Module/Admin/Site.php:548 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 "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:556 +#: src/Module/Admin/Site.php:549 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:556 +#: src/Module/Admin/Site.php:549 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:558 +#: src/Module/Admin/Site.php:551 msgid "Discover contacts from other servers" msgstr "Partnerek felfedezése más kiszolgálókról" -#: src/Module/Admin/Site.php:558 +#: src/Module/Admin/Site.php:551 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 "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:559 +#: src/Module/Admin/Site.php:552 msgid "Days between requery" msgstr "Ismételt lekérdezések közti napok" -#: src/Module/Admin/Site.php:559 +#: src/Module/Admin/Site.php:552 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 "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:560 +#: src/Module/Admin/Site.php:553 msgid "Search the local directory" msgstr "A helyi könyvtár keresése" -#: src/Module/Admin/Site.php:560 +#: src/Module/Admin/Site.php:553 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:562 +#: src/Module/Admin/Site.php:555 msgid "Publish server information" msgstr "Kiszolgálóinformációk közzététele" -#: src/Module/Admin/Site.php:562 +#: src/Module/Admin/Site.php:555 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 " @@ -5249,50 +5249,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:564 +#: src/Module/Admin/Site.php:557 msgid "Check upstream version" msgstr "Távoli verzió ellenőrzése" -#: src/Module/Admin/Site.php:564 +#: src/Module/Admin/Site.php:557 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:565 +#: src/Module/Admin/Site.php:558 msgid "Suppress Tags" msgstr "Címkék letiltása" -#: src/Module/Admin/Site.php:565 +#: src/Module/Admin/Site.php:558 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:566 +#: src/Module/Admin/Site.php:559 msgid "Clean database" msgstr "Adatbázis tisztítása" -#: src/Module/Admin/Site.php:566 +#: src/Module/Admin/Site.php:559 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:567 +#: src/Module/Admin/Site.php:560 msgid "Lifespan of remote items" msgstr "Távoli elemek élettartama" -#: src/Module/Admin/Site.php:567 +#: src/Module/Admin/Site.php:560 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:568 +#: src/Module/Admin/Site.php:561 msgid "Lifespan of unclaimed items" msgstr "Nem igényelt elemek élettartama" -#: src/Module/Admin/Site.php:568 +#: src/Module/Admin/Site.php:561 msgid "" "When the database cleanup is enabled, this defines the days after which " "unclaimed remote items (mostly content from the relay) will be deleted. " @@ -5300,185 +5300,184 @@ 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:569 +#: src/Module/Admin/Site.php:562 msgid "Lifespan of raw conversation data" msgstr "Nyers beszélgetési adatok élettartama" -#: src/Module/Admin/Site.php:569 +#: src/Module/Admin/Site.php:562 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." +"The conversation data is used for ActivityPub, 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:570 +#: src/Module/Admin/Site.php:563 msgid "Maximum numbers of comments per post" msgstr "Bejegyzésenkénti hozzászólások legnagyobb száma" -#: src/Module/Admin/Site.php:570 +#: src/Module/Admin/Site.php:563 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:571 +#: src/Module/Admin/Site.php:564 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:571 +#: src/Module/Admin/Site.php:564 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:572 +#: src/Module/Admin/Site.php:565 msgid "Items per page" msgstr "Oldalankénti elemek" -#: src/Module/Admin/Site.php:572 +#: src/Module/Admin/Site.php:565 msgid "" "Number of items per page in stream pages (network, community, " "profile/contact statuses, search)." msgstr "Oldalankénti elemek száma az adatfolyam oldalakon (hálózat, közösség, profil- vagy partnerállapotok, keresés)." -#: src/Module/Admin/Site.php:573 +#: src/Module/Admin/Site.php:566 msgid "Items per page for mobile devices" msgstr "Oldalankénti elemek száma mobil eszközöknél" -#: src/Module/Admin/Site.php:573 +#: src/Module/Admin/Site.php:566 msgid "" "Number of items per page in stream pages (network, community, " "profile/contact statuses, search) for mobile devices." msgstr "Oldalankénti elemek száma az adatfolyam oldalakon (hálózat, közösség, profil- vagy partnerállapotok, keresés) mobil eszközöknél." -#: src/Module/Admin/Site.php:574 +#: src/Module/Admin/Site.php:567 msgid "Temp path" msgstr "Ideiglenes mappa útvonala" -#: src/Module/Admin/Site.php:574 +#: src/Module/Admin/Site.php:567 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:575 +#: src/Module/Admin/Site.php:568 msgid "Only search in tags" msgstr "Keresés csak címkékben" -#: src/Module/Admin/Site.php:575 +#: src/Module/Admin/Site.php:568 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:576 +#: src/Module/Admin/Site.php:569 msgid "Limited search scope" msgstr "Korlátozott keresési hatókör" -#: src/Module/Admin/Site.php:576 +#: src/Module/Admin/Site.php:569 msgid "" "If enabled, searches will only be performed in the data used for the " "channels and not in all posts." msgstr "Ha engedélyezve van, akkor a keresések csak a csatornákhoz használt adatokban lesznek végrehajtva, nem az összes bejegyzésben." -#: src/Module/Admin/Site.php:577 +#: src/Module/Admin/Site.php:570 msgid "Maximum age of items in the search table" msgstr "A keresési táblában lévő elemek legnagyobb életkora" -#: src/Module/Admin/Site.php:577 +#: src/Module/Admin/Site.php:570 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 "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:578 +#: src/Module/Admin/Site.php:571 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:578 +#: src/Module/Admin/Site.php:571 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:579 +#: src/Module/Admin/Site.php:572 msgid "Process \"view\" activities" msgstr "„Megtekintés” tevékenységek feldolgozása" -#: src/Module/Admin/Site.php:579 +#: src/Module/Admin/Site.php:572 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 "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:580 +#: src/Module/Admin/Site.php:573 msgid "Days, after which a contact is archived" msgstr "Napok, amely után a partner archiválásra kerül" -#: src/Module/Admin/Site.php:580 +#: src/Module/Admin/Site.php:573 msgid "" "Number of days that we try to deliver content or to update the contact data " "before we archive a contact." 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:582 +#: src/Module/Admin/Site.php:575 msgid "Maximum number of parallel workers" msgstr "Párhuzamos feldolgozók legnagyobb száma" -#: src/Module/Admin/Site.php:582 +#: src/Module/Admin/Site.php:575 #, 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:583 +#: src/Module/Admin/Site.php:576 msgid "Maximum load for workers" msgstr "Feldolgozók legnagyobb terhelése" -#: src/Module/Admin/Site.php:583 +#: src/Module/Admin/Site.php:576 msgid "Maximum load that causes a cooldown before each worker function call." 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:584 +#: src/Module/Admin/Site.php:577 msgid "Enable fastlane" msgstr "Prioritásos sor engedélyezése" -#: src/Module/Admin/Site.php:584 +#: src/Module/Admin/Site.php:577 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:585 +#: src/Module/Admin/Site.php:578 msgid "Decoupled receiver" msgstr "Szétválasztott fogadó" -#: src/Module/Admin/Site.php:585 +#: src/Module/Admin/Site.php:578 msgid "" "Decouple incoming ActivityPub posts by processing them in the background via" " a worker process. Only enable this on fast systems." 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:586 +#: src/Module/Admin/Site.php:579 msgid "Cron interval" msgstr "Cron időköz" -#: src/Module/Admin/Site.php:586 +#: src/Module/Admin/Site.php:579 msgid "Minimal period in minutes between two calls of the \"Cron\" worker job." msgstr "Legkisebb időtartam percben a „Cron” feldolgozófeladat két hívása között." -#: src/Module/Admin/Site.php:587 +#: src/Module/Admin/Site.php:580 msgid "Worker defer limit" msgstr "Feldolgozó halasztási korlátja" -#: src/Module/Admin/Site.php:587 +#: src/Module/Admin/Site.php:580 msgid "" "Per default the systems tries delivering for 15 times before dropping it." 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:588 +#: src/Module/Admin/Site.php:581 msgid "Worker fetch limit" msgstr "Feldolgozó lekérési korlátja" -#: src/Module/Admin/Site.php:588 +#: src/Module/Admin/Site.php:581 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" @@ -5486,214 +5485,214 @@ msgid "" "system." 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:590 +#: src/Module/Admin/Site.php:583 msgid "Direct relay transfer" msgstr "Közvetlen továbbító-átvitel" -#: src/Module/Admin/Site.php:590 +#: src/Module/Admin/Site.php:583 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:591 +#: src/Module/Admin/Site.php:584 msgid "Relay scope" msgstr "Továbbítás hatóköre" -#: src/Module/Admin/Site.php:591 +#: src/Module/Admin/Site.php:584 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:591 src/Module/Contact/Profile.php:328 -#: src/Module/Settings/TwoFactor/Index.php:146 +#: src/Module/Admin/Site.php:584 src/Module/Contact/Profile.php:314 +#: src/Module/Settings/TwoFactor/Index.php:132 msgid "Disabled" msgstr "Letiltva" -#: src/Module/Admin/Site.php:591 +#: src/Module/Admin/Site.php:584 msgid "all" msgstr "összes" -#: src/Module/Admin/Site.php:591 +#: src/Module/Admin/Site.php:584 msgid "tags" msgstr "címkék" -#: src/Module/Admin/Site.php:592 +#: src/Module/Admin/Site.php:585 msgid "Server tags" msgstr "Kiszolgálócímkék" -#: src/Module/Admin/Site.php:592 +#: src/Module/Admin/Site.php:585 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:593 +#: src/Module/Admin/Site.php:586 msgid "Deny Server tags" msgstr "Kiszolgálócímkék megtagadása" -#: src/Module/Admin/Site.php:593 +#: src/Module/Admin/Site.php:586 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:594 +#: src/Module/Admin/Site.php:587 msgid "Maximum amount of tags" msgstr "Címkék legnagyobb száma" -#: src/Module/Admin/Site.php:594 +#: src/Module/Admin/Site.php:587 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 "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:595 +#: src/Module/Admin/Site.php:588 msgid "Allow user tags" msgstr "Felhasználói címkék engedélyezése" -#: src/Module/Admin/Site.php:595 +#: src/Module/Admin/Site.php:588 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:596 +#: src/Module/Admin/Site.php:589 msgid "Deny undetected languages" msgstr "Fel nem ismert nyelvek megtagadása" -#: src/Module/Admin/Site.php:596 +#: src/Module/Admin/Site.php:589 msgid "If enabled, posts with undetected languages will be rejected." msgstr "Ha engedélyezve van, akkor a fel nem ismert nyelveket tartalmazó bejegyzések visszautasításra kerülnek." -#: src/Module/Admin/Site.php:597 +#: src/Module/Admin/Site.php:590 msgid "Language Quality" msgstr "Nyelvi minőség" -#: src/Module/Admin/Site.php:597 +#: src/Module/Admin/Site.php:590 msgid "The minimum language quality that is required to accept the post." msgstr "A bejegyzés elfogadásához szükséges legkisebb nyelvi minőség." -#: src/Module/Admin/Site.php:598 +#: src/Module/Admin/Site.php:591 msgid "Number of languages for the language detection" msgstr "Nyelvek száma a nyelvfelismeréshez" -#: src/Module/Admin/Site.php:598 +#: src/Module/Admin/Site.php:591 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 "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:600 +#: src/Module/Admin/Site.php:593 msgid "Maximum age of channel" msgstr "Csatorna legnagyobb életkora" -#: src/Module/Admin/Site.php:600 +#: src/Module/Admin/Site.php:593 msgid "" "This defines the maximum age in hours of items that should be displayed in " "channels. This affects the channel performance." 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:601 +#: src/Module/Admin/Site.php:594 msgid "Maximum number of channel posts" msgstr "Csatornabejegyzések legnagyobb száma" -#: src/Module/Admin/Site.php:601 +#: src/Module/Admin/Site.php:594 msgid "" "For performance reasons, the channels use a dedicated table to store " "content. The higher the value the slower the channels." 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:602 +#: src/Module/Admin/Site.php:595 msgid "Interaction score days" msgstr "Interakció-pontszám napjai" -#: src/Module/Admin/Site.php:602 +#: src/Module/Admin/Site.php:595 msgid "Number of days that are used to calculate the interaction score." msgstr "Az interakció-pontszám kiszámításához használt napok száma." -#: src/Module/Admin/Site.php:603 +#: src/Module/Admin/Site.php:596 msgid "Maximum number of posts per author" msgstr "Szerzőnkénti bejegyzések legnagyobb száma" -#: src/Module/Admin/Site.php:603 +#: src/Module/Admin/Site.php:596 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 "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:604 +#: src/Module/Admin/Site.php:597 msgid "Sharer interaction days" msgstr "Megosztó interakciós napjai" -#: src/Module/Admin/Site.php:604 +#: src/Module/Admin/Site.php:597 msgid "" "Number of days of the last interaction that are used to define which sharers" " are used for the \"sharers of sharers\" channel." 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:607 +#: src/Module/Admin/Site.php:600 msgid "Start Relocation" msgstr "Áthelyezés indítása" -#: src/Module/Admin/Storage.php:46 +#: src/Module/Admin/Storage.php:32 #, php-format msgid "Storage backend, %s is invalid." msgstr "Tároló háttérprogram, a(z) %s érvénytelen." -#: src/Module/Admin/Storage.php:73 +#: src/Module/Admin/Storage.php:59 #, php-format msgid "Storage backend %s error: %s" msgstr "Tároló háttérprogram (%s) hiba: %s" -#: src/Module/Admin/Storage.php:84 src/Module/Admin/Storage.php:87 +#: src/Module/Admin/Storage.php:70 src/Module/Admin/Storage.php:73 msgid "Invalid storage backend setting value." msgstr "Érvénytelen tároló-háttérprogram beállítási érték." -#: src/Module/Admin/Storage.php:139 +#: src/Module/Admin/Storage.php:125 msgid "Current Storage Backend" msgstr "Jelenlegi tároló háttérprogram" -#: src/Module/Admin/Storage.php:140 +#: src/Module/Admin/Storage.php:126 msgid "Storage Configuration" msgstr "Tároló beállításai" -#: src/Module/Admin/Storage.php:141 src/Module/BaseAdmin.php:91 +#: src/Module/Admin/Storage.php:127 src/Module/BaseAdmin.php:77 msgid "Storage" msgstr "Tároló" -#: src/Module/Admin/Storage.php:143 +#: src/Module/Admin/Storage.php:129 msgid "Save & Use storage backend" msgstr "Mentés és a tároló háttérprogram használata" -#: src/Module/Admin/Storage.php:144 +#: src/Module/Admin/Storage.php:130 msgid "Use storage backend" msgstr "Tároló háttérprogram használata" -#: src/Module/Admin/Storage.php:145 +#: src/Module/Admin/Storage.php:131 msgid "Save & Reload" msgstr "Mentés és újratöltés" -#: src/Module/Admin/Storage.php:146 +#: src/Module/Admin/Storage.php:132 msgid "This backend doesn't have custom settings" msgstr "Ennek a háttérprogramnak nincsenek egyéni beállításai" -#: src/Module/Admin/Storage.php:148 +#: src/Module/Admin/Storage.php:134 msgid "" "Changing the current backend is prohibited because it is set by an " "environment variable" msgstr "A jelenlegi háttérprogram megváltoztatása tiltva van, mivel azt egy környezeti változó állítja be" -#: src/Module/Admin/Storage.php:150 +#: src/Module/Admin/Storage.php:136 msgid "Database (legacy)" msgstr "Adatbázis (örökölt)" -#: src/Module/Admin/Summary.php:55 +#: src/Module/Admin/Summary.php:41 #, php-format msgid "Template engine (%s) error: %s" msgstr "Sablonmotor (%s) hiba: %s" -#: src/Module/Admin/Summary.php:59 +#: src/Module/Admin/Summary.php:45 #, php-format msgid "" "Your DB still runs with MyISAM tables. You should change the engine type to " @@ -5704,7 +5703,7 @@ msgid "" " an automatic conversion.
" msgstr "Az adatbázisa még mindig MyISAM táblákkal fut. Meg kell változtatnia a motor típusát InnoDB-re. Mivel a Friendica a jövőben olyan funkciókat fog használni, amely csak InnoDB használatával érhető el, ezért meg kell változtatnia! Nézze meg ezt az útmutatót, amely hasznos lehet a táblamotorok átalakításához. Használhatja a Friendica telepítésének php bin/console.php dbstructure toinnodb parancsát is az automatikus átalakításhoz.
" -#: src/Module/Admin/Summary.php:64 +#: src/Module/Admin/Summary.php:50 #, php-format msgid "" "Your DB still runs with InnoDB tables in the Antelope file format. You " @@ -5715,7 +5714,7 @@ msgid "" " installation for an automatic conversion.
" msgstr "Az adatbázisa még mindig Antelope fájlformátumban lévő InnoDB táblákkal fut. Meg kell változtatnia a fájlformátumot Barracudára. A Friendica olyan funkciókat használ, amelyeket az Antelope fájlformátum nem biztosít. Nézze meg ezt az útmutatót, amely hasznos lehet a táblamotorok átalakításához. Használhatja a Friendica telepítésének php bin/console.php dbstructure toinnodb parancsát is az automatikus átalakításhoz.
" -#: src/Module/Admin/Summary.php:74 +#: src/Module/Admin/Summary.php:60 #, php-format msgid "" "Your table_definition_cache is too low (%d). This can lead to the database " @@ -5723,46 +5722,46 @@ msgid "" " to %d. See here for more information.
" msgstr "A table_definition_cache értéke túl alacsony (%d). Ez a „Prepared statement needs to be re-prepared” adatbázishibához vezethet. Állítsa legalább %d értékre. További információkért nézze meg ezt.
" -#: src/Module/Admin/Summary.php:85 +#: src/Module/Admin/Summary.php:71 #, php-format msgid "" "There is a new version of Friendica available for download. Your current " "version is %1$s, upstream version is %2$s" msgstr "Elérhető a Friendica új verziója a letöltéshez. A jelenlegi verziója %1$s, a távoli verzió %2$s." -#: src/Module/Admin/Summary.php:94 +#: src/Module/Admin/Summary.php:80 msgid "" "The database update failed. Please run \"php bin/console.php dbstructure " "update\" from the command line and have a look at the errors that might " "appear." msgstr "Az adatbázis frissítése sikertelen. Futtassa a „php bin/console.php dbstructure update” parancsot a parancssorból, és nézze meg a hibákat, amelyek esetleg megjelennek." -#: src/Module/Admin/Summary.php:98 +#: src/Module/Admin/Summary.php:84 msgid "" "The last update failed. Please run \"php bin/console.php dbstructure " "update\" from the command line and have a look at the errors that might " "appear. (Some of the errors are possibly inside the logfile.)" msgstr "A legutóbbi frissítés sikertelen. Futtassa a „php bin/console.php dbstructure update” parancsot a parancssorból, és nézze meg a hibákat, amelyek esetleg megjelennek (néhány hiba valószínűleg a naplófájlban lesz)." -#: src/Module/Admin/Summary.php:102 +#: src/Module/Admin/Summary.php:88 msgid "" "The system.url entry is missing. This is a low level setting and can lead to" " unexpected behavior. Please add a valid entry as soon as possible in the " "config file or per console command!" msgstr "A system.url bejegyzés hiányzik. Ez egy alacsony szintű beállítás, és váratlan viselkedéshez vezethet. Adjon meg egy érvényes bejegyzést a lehető leghamarabb a beállítófájlban vagy konzolparancsonként!" -#: src/Module/Admin/Summary.php:107 +#: src/Module/Admin/Summary.php:93 msgid "The worker was never executed. Please check your database structure!" msgstr "A feldolgozó sosem lett végrehajtva. Ellenőrizze az adatbázis szerkezetét!" -#: src/Module/Admin/Summary.php:109 +#: src/Module/Admin/Summary.php:95 #, php-format msgid "" "The last worker execution was on %s UTC. This is older than one hour. Please" " check your crontab settings." msgstr "Az utolsó feldolgozó-végrehajtás ideje %s volt (UTC szerint). Ez régebbi mint egy óra. Ellenőrizze a cron-feladat beállításait." -#: src/Module/Admin/Summary.php:114 +#: src/Module/Admin/Summary.php:100 #, php-format msgid "" "Friendica's configuration now is stored in config/local.config.php, please " @@ -5771,7 +5770,7 @@ msgid "" "help with the transition." msgstr "A Friendica beállításai most a „config/local.config.php” fájlban vannak eltárolva. Másolja le a „config/local-sample.config.php” fájlt, és helyezze át a beállításokat a .htconfig.php fájlból. Az átvitelhez való segítségért nézze meg a beállítások súgóoldalát." -#: src/Module/Admin/Summary.php:118 +#: src/Module/Admin/Summary.php:104 #, php-format msgid "" "Friendica's configuration now is stored in config/local.config.php, please " @@ -5780,7 +5779,7 @@ msgid "" "page for help with the transition." msgstr "A Friendica beállításai most a „config/local.config.php” fájlban vannak eltárolva. Másolja le a „config/local-sample.config.php” fájlt, és helyezze át a beállításokat a config/local.ini.php fájlból. Az átvitelhez való segítségért nézze meg a beállítások súgóoldalát." -#: src/Module/Admin/Summary.php:124 +#: src/Module/Admin/Summary.php:110 #, php-format msgid "" "%s is not reachable on your system. This is a severe " @@ -5788,107 +5787,107 @@ msgid "" "href=\"%s\">the installation page for help." msgstr "A %s nem érhető el a rendszeréről. Ez súlyos beállítási probléma, amely megakadályozza a kiszolgálók közti kommunikációt. Nézze meg a telepítési oldalt a segítségért." -#: src/Module/Admin/Summary.php:148 +#: src/Module/Admin/Summary.php:134 #, php-format msgid "" "Friendica's system.basepath was updated from '%s' to '%s'. Please remove the" " system.basepath from your db to avoid differences." msgstr "A Friendica „system.basepath” beállítása frissítve lett „%s” értékről „%s” értékre. Távolítsa el a „system.basepath” beállítást az adatbázisából az eltérések elkerüléséhez." -#: src/Module/Admin/Summary.php:156 +#: src/Module/Admin/Summary.php:142 #, php-format msgid "" "Friendica's current system.basepath '%s' is wrong and the config file '%s' " "isn't used." msgstr "A Friendica jelenlegi „system.basepath” értéke („%s”) hibás, és a(z) „%s” beállítófájl nincs használva." -#: src/Module/Admin/Summary.php:164 +#: src/Module/Admin/Summary.php:150 #, php-format msgid "" "Friendica's current system.basepath '%s' is not equal to the config file " "'%s'. Please fix your configuration." msgstr "A Friendica jelenlegi „system.basepath” értéke („%s”) nem azonos a(z) „%s” beállítófájlban lévővel. Javítsa a beállításokat." -#: src/Module/Admin/Summary.php:175 +#: src/Module/Admin/Summary.php:161 msgid "Message queues" msgstr "Üzenet várakozási sorai" -#: src/Module/Admin/Summary.php:181 +#: src/Module/Admin/Summary.php:167 msgid "Server Settings" msgstr "Kiszolgálóbeállítások" -#: src/Module/Admin/Summary.php:199 +#: src/Module/Admin/Summary.php:185 msgid "Version" msgstr "Verzió" -#: src/Module/Admin/Summary.php:203 +#: src/Module/Admin/Summary.php:189 msgid "Active addons" msgstr "Bekapcsolt bővítmények" -#: src/Module/Admin/Themes/Details.php:63 src/Module/Admin/Themes/Index.php:71 +#: src/Module/Admin/Themes/Details.php:49 src/Module/Admin/Themes/Index.php:57 #, php-format msgid "Theme %s disabled." msgstr "A(z) „%s” téma letiltva." -#: src/Module/Admin/Themes/Details.php:65 src/Module/Admin/Themes/Index.php:73 +#: src/Module/Admin/Themes/Details.php:51 src/Module/Admin/Themes/Index.php:59 #, php-format msgid "Theme %s successfully enabled." msgstr "A(z) „%s” téma sikeresen engedélyezve." -#: src/Module/Admin/Themes/Details.php:67 src/Module/Admin/Themes/Index.php:75 +#: src/Module/Admin/Themes/Details.php:53 src/Module/Admin/Themes/Index.php:61 #, php-format msgid "Theme %s failed to install." msgstr "A(z) „%s” téma telepítése sikertelen." -#: src/Module/Admin/Themes/Details.php:89 +#: src/Module/Admin/Themes/Details.php:75 msgid "Screenshot" msgstr "Képernyőkép" -#: src/Module/Admin/Themes/Details.php:97 -#: src/Module/Admin/Themes/Index.php:118 src/Module/BaseAdmin.php:93 +#: src/Module/Admin/Themes/Details.php:83 +#: src/Module/Admin/Themes/Index.php:104 src/Module/BaseAdmin.php:79 msgid "Themes" msgstr "Témák" -#: src/Module/Admin/Themes/Embed.php:80 +#: src/Module/Admin/Themes/Embed.php:66 msgid "Unknown theme." msgstr "Ismeretlen téma." -#: src/Module/Admin/Themes/Index.php:57 +#: src/Module/Admin/Themes/Index.php:43 msgid "Themes reloaded" msgstr "Témák újratöltve" -#: src/Module/Admin/Themes/Index.php:120 +#: src/Module/Admin/Themes/Index.php:106 msgid "Reload active themes" msgstr "Bekapcsolt témák újratöltése" -#: src/Module/Admin/Themes/Index.php:124 +#: src/Module/Admin/Themes/Index.php:110 #, php-format msgid "No themes found on the system. They should be placed in %1$s" msgstr "Nem találhatók témák a rendszeren. A témákat a %1$s könyvtárba kell elhelyezni." -#: src/Module/Admin/Themes/Index.php:125 +#: src/Module/Admin/Themes/Index.php:111 msgid "[Experimental]" msgstr "[Kísérleti]" -#: src/Module/Admin/Themes/Index.php:126 +#: src/Module/Admin/Themes/Index.php:112 msgid "[Unsupported]" msgstr "[Nem támogatott]" -#: src/Module/Admin/Tos.php:79 +#: src/Module/Admin/Tos.php:65 msgid "Display Terms of Service" msgstr "Használati feltételek megjelenítése" -#: src/Module/Admin/Tos.php:79 +#: src/Module/Admin/Tos.php:65 msgid "" "Enable the Terms of Service page. If this is enabled a link to the terms " "will be added to the registration form and the general information page." msgstr "A használati feltételek oldal engedélyezése. Ha ez engedélyezve van, akkor a használati feltételekre mutató hivatkozás hozzá lesz adva a regisztrációs űrlaphoz és az általános információk oldalához." -#: src/Module/Admin/Tos.php:80 +#: src/Module/Admin/Tos.php:66 msgid "Display Privacy Statement" msgstr "Adatvédelmi nyilatkozatok megjelenítése" -#: src/Module/Admin/Tos.php:80 +#: src/Module/Admin/Tos.php:66 #, php-format msgid "" "Show some informations regarding the needed information to operate the node " @@ -5896,167 +5895,167 @@ msgid "" "noreferrer\">EU-GDPR." msgstr "Néhány információ megjelenítése a csomópont üzemeltetésére vonatkozó szükséges információkról, például az EU-GDPR szerint." -#: src/Module/Admin/Tos.php:81 +#: src/Module/Admin/Tos.php:67 msgid "Privacy Statement Preview" msgstr "Adatvédelmi nyilatkozat előnézete" -#: src/Module/Admin/Tos.php:83 +#: src/Module/Admin/Tos.php:69 msgid "The Terms of Service" msgstr "A használati feltételek" -#: src/Module/Admin/Tos.php:83 +#: src/Module/Admin/Tos.php:69 msgid "" "Enter the Terms of Service for your node here. You can use BBCode. Headers " "of sections should be [h2] and below." msgstr "Itt adja meg a csomópontja használati feltételeit. Használhat BBCode formázást is. A szakaszok címeinek [h2] vagy az alattiaknak kell lenniük." -#: src/Module/Admin/Tos.php:84 +#: src/Module/Admin/Tos.php:70 msgid "The rules" msgstr "A szabályok" -#: src/Module/Admin/Tos.php:84 +#: src/Module/Admin/Tos.php:70 msgid "Enter your system rules here. Each line represents one rule." msgstr "Itt adja meg a rendszer szabályait. Minden sor egy szabályt jelent." -#: src/Module/Api/ApiResponse.php:293 +#: src/Module/Api/ApiResponse.php:279 #, php-format msgid "API endpoint %s %s is not implemented but might be in the future." msgstr "A(z) %s %s API-végpont nincs megvalósítva, de a jövőben megvalósításra kerülhet." -#: src/Module/Api/Mastodon/Apps.php:73 +#: src/Module/Api/Mastodon/Apps.php:59 msgid "Missing parameters" msgstr "Hiányzó paraméterek" -#: src/Module/Api/Mastodon/Statuses/Bookmark.php:50 +#: src/Module/Api/Mastodon/Statuses/Bookmark.php:36 msgid "Only starting posts can be bookmarked" msgstr "Csak a kezdeti bejegyzéseket lehet könyvjelzőzni" -#: src/Module/Api/Mastodon/Statuses/Mute.php:51 +#: src/Module/Api/Mastodon/Statuses/Mute.php:37 msgid "Only starting posts can be muted" msgstr "Csak a kezdeti bejegyzéseket lehet némítani" -#: src/Module/Api/Mastodon/Statuses/Reblog.php:58 +#: src/Module/Api/Mastodon/Statuses/Reblog.php:44 #, php-format msgid "Posts from %s can't be shared" msgstr "%s bejegyzéseit nem lehet megosztani" -#: src/Module/Api/Mastodon/Statuses/Unbookmark.php:51 +#: src/Module/Api/Mastodon/Statuses/Unbookmark.php:37 msgid "Only starting posts can be unbookmarked" msgstr "Csak a kezdeti bejegyzéseket lehet kivenni a könyvjelzőkből" -#: src/Module/Api/Mastodon/Statuses/Unmute.php:51 +#: src/Module/Api/Mastodon/Statuses/Unmute.php:37 msgid "Only starting posts can be unmuted" msgstr "Csak a kezdeti bejegyzéseket némítását lehet megszüntetni" -#: src/Module/Api/Mastodon/Statuses/Unreblog.php:64 +#: src/Module/Api/Mastodon/Statuses/Unreblog.php:50 #, php-format msgid "Posts from %s can't be unshared" msgstr "%s bejegyzéseinek megosztását nem lehet visszavonni" -#: src/Module/Api/Twitter/ContactEndpoint.php:66 +#: src/Module/Api/Twitter/ContactEndpoint.php:52 msgid "Contact not found" msgstr "A partner nem található" -#: src/Module/Apps.php:62 +#: src/Module/Apps.php:48 msgid "No installed applications." msgstr "Nincsenek telepített alkalmazások." -#: src/Module/Apps.php:67 +#: src/Module/Apps.php:53 msgid "Applications" msgstr "Alkalmazások" -#: src/Module/Attach.php:49 src/Module/Attach.php:61 +#: src/Module/Attach.php:35 src/Module/Attach.php:47 msgid "Item was not found." msgstr "Az elem nem található." -#: src/Module/BaseAdmin.php:54 src/Module/BaseAdmin.php:58 -#: src/Module/BaseModeration.php:77 src/Module/BaseModeration.php:81 +#: src/Module/BaseAdmin.php:40 src/Module/BaseAdmin.php:44 +#: src/Module/BaseModeration.php:63 src/Module/BaseModeration.php:67 msgid "Please login to continue." msgstr "Jelentkezzen be a folytatáshoz." -#: src/Module/BaseAdmin.php:63 +#: src/Module/BaseAdmin.php:49 msgid "You don't have access to administration pages." msgstr "Nincs hozzáférése az adminisztrációs oldalakhoz." -#: src/Module/BaseAdmin.php:67 +#: src/Module/BaseAdmin.php:53 msgid "" "Submanaged account can't access the administration pages. Please log back in" " as the main account." msgstr "Az alkezelt fiókok nem férhetnek hozzá az adminisztrációs oldalakhoz. Jelentkezzen vissza a fő fiókkal." -#: src/Module/BaseAdmin.php:86 src/Module/BaseModeration.php:109 +#: src/Module/BaseAdmin.php:72 src/Module/BaseModeration.php:95 msgid "Overview" msgstr "Áttekintő" -#: src/Module/BaseAdmin.php:89 src/Module/BaseModeration.php:112 +#: src/Module/BaseAdmin.php:75 src/Module/BaseModeration.php:98 msgid "Configuration" msgstr "Beállítás" -#: src/Module/BaseAdmin.php:94 src/Module/BaseSettings.php:110 +#: src/Module/BaseAdmin.php:80 src/Module/BaseSettings.php:96 msgid "Additional features" msgstr "További funkciók" -#: src/Module/BaseAdmin.php:97 +#: src/Module/BaseAdmin.php:83 msgid "Database" msgstr "Adatbázis" -#: src/Module/BaseAdmin.php:98 +#: src/Module/BaseAdmin.php:84 msgid "DB updates" msgstr "Adatbázis-frissítések" -#: src/Module/BaseAdmin.php:99 +#: src/Module/BaseAdmin.php:85 msgid "Inspect Deferred Workers" msgstr "Elhalasztott feldolgozók vizsgálata" -#: src/Module/BaseAdmin.php:100 +#: src/Module/BaseAdmin.php:86 msgid "Inspect worker Queue" msgstr "Feldolgozó várakozási sorának vizsgálata" -#: src/Module/BaseAdmin.php:106 src/Module/BaseModeration.php:120 +#: src/Module/BaseAdmin.php:92 src/Module/BaseModeration.php:106 msgid "Diagnostics" msgstr "Diagnosztika" -#: src/Module/BaseAdmin.php:107 +#: src/Module/BaseAdmin.php:93 msgid "PHP Info" msgstr "PHP-információk" -#: src/Module/BaseAdmin.php:108 +#: src/Module/BaseAdmin.php:94 msgid "probe address" msgstr "Cím szondázása" -#: src/Module/BaseAdmin.php:109 +#: src/Module/BaseAdmin.php:95 msgid "check webfinger" msgstr "WebFinger ellenőrzése" -#: src/Module/BaseAdmin.php:110 +#: src/Module/BaseAdmin.php:96 msgid "Babel" msgstr "Babel" -#: src/Module/BaseAdmin.php:111 src/Module/Debug/ActivityPubConversion.php:143 +#: src/Module/BaseAdmin.php:97 src/Module/Debug/ActivityPubConversion.php:129 msgid "ActivityPub Conversion" msgstr "ActivityPub beszélgetés" -#: src/Module/BaseAdmin.php:120 +#: src/Module/BaseAdmin.php:106 msgid "Addon Features" msgstr "Bővítményszolgáltatások" -#: src/Module/BaseAdmin.php:121 src/Module/BaseModeration.php:129 +#: src/Module/BaseAdmin.php:107 src/Module/BaseModeration.php:115 msgid "User registrations waiting for confirmation" msgstr "Megerősítésre váró felhasználói regisztrációk" -#: src/Module/BaseApi.php:455 src/Module/BaseApi.php:471 -#: src/Module/BaseApi.php:487 +#: src/Module/BaseApi.php:441 src/Module/BaseApi.php:457 +#: src/Module/BaseApi.php:473 msgid "Too Many Requests" msgstr "Túl sok kérés" -#: src/Module/BaseApi.php:456 +#: src/Module/BaseApi.php:442 #, php-format msgid "Daily posting limit of %d post reached. The post was rejected." msgid_plural "Daily posting limit of %d posts reached. The post was rejected." msgstr[0] "A napi %d bejegyzésből álló beküldési korlát elérve. A bejegyzés vissza lett utasítva." msgstr[1] "A napi %d bejegyzésből álló beküldési korlát elérve. A bejegyzés vissza lett utasítva." -#: src/Module/BaseApi.php:472 +#: src/Module/BaseApi.php:458 #, php-format msgid "Weekly posting limit of %d post reached. The post was rejected." msgid_plural "" @@ -6064,7 +6063,7 @@ msgid_plural "" msgstr[0] "A heti %d bejegyzésből álló beküldési korlát elérve. A bejegyzés vissza lett utasítva." msgstr[1] "A heti %d bejegyzésből álló beküldési korlát elérve. A bejegyzés vissza lett utasítva." -#: src/Module/BaseApi.php:488 +#: src/Module/BaseApi.php:474 #, php-format msgid "Monthly posting limit of %d post reached. The post was rejected." msgid_plural "" @@ -6072,84 +6071,84 @@ msgid_plural "" msgstr[0] "A havi %d bejegyzésből álló beküldési korlát elérve. A bejegyzés vissza lett utasítva." msgstr[1] "A havi %d bejegyzésből álló beküldési korlát elérve. A bejegyzés vissza lett utasítva." -#: src/Module/BaseModeration.php:86 +#: src/Module/BaseModeration.php:72 msgid "You don't have access to moderation pages." msgstr "Nincs hozzáférése a moderálási oldalakhoz." -#: src/Module/BaseModeration.php:90 +#: src/Module/BaseModeration.php:76 msgid "" "Submanaged account can't access the moderation pages. Please log back in as " "the main account." msgstr "Az alkezelt fiókok nem férhetnek hozzá a moderálási oldalakhoz. Jelentkezzen vissza a fő fiókkal." -#: src/Module/BaseModeration.php:110 src/Module/Moderation/Reports.php:115 +#: src/Module/BaseModeration.php:96 src/Module/Moderation/Reports.php:101 msgid "Reports" msgstr "Jelentések" -#: src/Module/BaseModeration.php:113 src/Module/Moderation/Users/Index.php:148 -#: src/Module/Moderation/Users/Index.php:158 +#: src/Module/BaseModeration.php:99 src/Module/Moderation/Users/Index.php:134 +#: src/Module/Moderation/Users/Index.php:144 msgid "Users" msgstr "Felhasználók" -#: src/Module/BaseModeration.php:115 +#: src/Module/BaseModeration.php:101 msgid "Tools" msgstr "Eszközök" -#: src/Module/BaseModeration.php:116 +#: src/Module/BaseModeration.php:102 msgid "Contact Blocklist" msgstr "Partnertiltólista" -#: src/Module/BaseModeration.php:117 +#: src/Module/BaseModeration.php:103 msgid "Server Blocklist" msgstr "Kiszolgáló-tiltólista" -#: src/Module/BaseModeration.php:118 src/Module/Moderation/Item/Delete.php:62 +#: src/Module/BaseModeration.php:104 src/Module/Moderation/Item/Delete.php:48 msgid "Delete Item" msgstr "Elem törlése" -#: src/Module/BaseModeration.php:121 src/Module/Moderation/Item/Source.php:82 +#: src/Module/BaseModeration.php:107 src/Module/Moderation/Item/Source.php:68 msgid "Item Source" msgstr "Elem forrása" -#: src/Module/BaseProfile.php:52 src/Module/Contact.php:513 +#: src/Module/BaseProfile.php:38 src/Module/Contact.php:488 msgid "Profile Details" msgstr "Profil részletei" -#: src/Module/BaseProfile.php:60 +#: src/Module/BaseProfile.php:46 msgid "Conversations started" msgstr "Beszélgetések elkezdve" -#: src/Module/BaseProfile.php:111 +#: src/Module/BaseProfile.php:97 msgid "Only You Can See This" msgstr "Csak Ön láthatja ezt" -#: src/Module/BaseProfile.php:116 src/Module/Profile/Schedule.php:81 +#: src/Module/BaseProfile.php:102 src/Module/Profile/Schedule.php:67 msgid "Scheduled Posts" msgstr "Ütemezett bejegyzések" -#: src/Module/BaseProfile.php:119 +#: src/Module/BaseProfile.php:105 msgid "Posts that are scheduled for publishing" msgstr "Bejegyzések, amelyek közzétételre vannak üzemezve" -#: src/Module/BaseProfile.php:138 src/Module/BaseProfile.php:141 +#: src/Module/BaseProfile.php:124 src/Module/BaseProfile.php:127 msgid "Tips for New Members" msgstr "Tippek új tagoknak" -#: src/Module/BaseSearch.php:71 +#: src/Module/BaseSearch.php:57 #, php-format msgid "People Search - %s" msgstr "Emberek keresése – %s" -#: src/Module/BaseSearch.php:75 +#: src/Module/BaseSearch.php:61 #, php-format msgid "Group Search - %s" msgstr "Csoportkeresés – %s" -#: src/Module/BaseSearch.php:121 src/Module/Contact/MatchInterests.php:140 +#: src/Module/BaseSearch.php:107 src/Module/Contact/MatchInterests.php:136 msgid "No matches" msgstr "Nincs találat" -#: src/Module/BaseSearch.php:147 +#: src/Module/BaseSearch.php:133 #, php-format msgid "" "%d result was filtered out because your node blocks the domain it is " @@ -6162,832 +6161,828 @@ msgid_plural "" msgstr[0] "%d találat ki lett szűrve, mert az Ön csomópontja tiltja azt a tartományt, amelyen az regisztrálva van. A Névjegy oldalon felülvizsgálhatja azon tartományok listáját, amelyet a csomópontja jelenleg letilt." msgstr[1] "%d találat ki lett szűrve, mert az Ön csomópontja tiltja azt a tartományt, amelyen azok regisztrálva vannak. A Névjegy oldalon felülvizsgálhatja azon tartományok listáját, amelyet a csomópontja jelenleg letilt." -#: src/Module/BaseSettings.php:78 +#: src/Module/BaseSettings.php:64 msgid "Account" msgstr "Fiók" -#: src/Module/BaseSettings.php:85 src/Module/Security/TwoFactor/Verify.php:96 -#: src/Module/Settings/TwoFactor/Index.php:138 +#: src/Module/BaseSettings.php:71 src/Module/Security/TwoFactor/Verify.php:82 +#: src/Module/Settings/TwoFactor/Index.php:124 msgid "Two-factor authentication" msgstr "Kétlépcsős hitelesítés" -#: src/Module/BaseSettings.php:118 +#: src/Module/BaseSettings.php:104 msgid "Display" msgstr "Megjelenítés" -#: src/Module/BaseSettings.php:132 src/Module/Settings/Connectors.php:213 +#: src/Module/BaseSettings.php:118 src/Module/Settings/Connectors.php:195 msgid "Social Networks" msgstr "Közösségi hálózatok" -#: src/Module/BaseSettings.php:146 src/Module/Settings/Delegation.php:194 +#: src/Module/BaseSettings.php:132 src/Module/Settings/Delegation.php:180 msgid "Manage Accounts" msgstr "Fiókok kezelése" -#: src/Module/BaseSettings.php:153 +#: src/Module/BaseSettings.php:139 msgid "Connected apps" msgstr "Kapcsolt alkalmazások" -#: src/Module/BaseSettings.php:160 +#: src/Module/BaseSettings.php:146 msgid "Remote servers" msgstr "Távoli kiszolgálók" -#: src/Module/BaseSettings.php:167 src/Module/Settings/UserExport.php:98 +#: src/Module/BaseSettings.php:153 src/Module/Settings/UserExport.php:84 msgid "Export personal data" msgstr "Személyes adatok exportálása" -#: src/Module/BaseSettings.php:174 +#: src/Module/BaseSettings.php:160 msgid "Remove account" msgstr "Fiók eltávolítása" -#: src/Module/Bookmarklet.php:54 +#: src/Module/Bookmarklet.php:40 msgid "This page is missing a url parameter." msgstr "Erről az oldalról hiányzik egy URL paraméter." -#: src/Module/Bookmarklet.php:66 +#: src/Module/Bookmarklet.php:52 msgid "The post was created" msgstr "A bejegyzés létrejött" -#: src/Module/Calendar/Event/API.php:100 src/Module/Calendar/Event/API.php:135 -#: src/Module/Calendar/Event/Form.php:80 +#: src/Module/Calendar/Event/API.php:86 src/Module/Calendar/Event/API.php:121 +#: src/Module/Calendar/Event/Form.php:66 msgid "Invalid Request" msgstr "Érvénytelen kérés" -#: src/Module/Calendar/Event/API.php:109 +#: src/Module/Calendar/Event/API.php:95 msgid "Event id is missing." msgstr "Az eseményazonosító hiányzik." -#: src/Module/Calendar/Event/API.php:131 +#: src/Module/Calendar/Event/API.php:117 msgid "Failed to remove event" msgstr "Nem sikerült eltávolítani az eseményt" -#: src/Module/Calendar/Event/API.php:187 src/Module/Calendar/Event/API.php:189 +#: src/Module/Calendar/Event/API.php:173 src/Module/Calendar/Event/API.php:175 msgid "Event can not end before it has started." msgstr "Az esemény nem fejeződhet be, mielőtt elkezdődött volna." -#: src/Module/Calendar/Event/API.php:196 src/Module/Calendar/Event/API.php:198 +#: src/Module/Calendar/Event/API.php:182 src/Module/Calendar/Event/API.php:184 msgid "Event title and start time are required." msgstr "Az esemény címe és a kezdési idő kötelező." -#: src/Module/Calendar/Event/Form.php:208 +#: src/Module/Calendar/Event/Form.php:194 msgid "Starting date and Title are required." msgstr "A kezdési dátum és a cím kötelező." -#: src/Module/Calendar/Event/Form.php:209 -#: src/Module/Calendar/Event/Form.php:214 +#: src/Module/Calendar/Event/Form.php:195 +#: src/Module/Calendar/Event/Form.php:200 msgid "Event Starts:" msgstr "Esemény kezdete:" -#: src/Module/Calendar/Event/Form.php:209 -#: src/Module/Calendar/Event/Form.php:237 src/Module/Debug/Probe.php:59 -#: src/Module/Install.php:201 src/Module/Install.php:227 -#: src/Module/Install.php:232 src/Module/Install.php:246 -#: src/Module/Install.php:255 src/Module/Install.php:260 -#: src/Module/Install.php:266 src/Module/Install.php:271 -#: src/Module/Install.php:285 src/Module/Install.php:298 -#: src/Module/Install.php:325 -#: src/Module/Moderation/Blocklist/Server/Add.php:136 -#: src/Module/Moderation/Blocklist/Server/Add.php:138 -#: src/Module/Moderation/Blocklist/Server/Import.php:129 -#: src/Module/Moderation/Blocklist/Server/Index.php:86 -#: src/Module/Moderation/Blocklist/Server/Index.php:87 -#: src/Module/Moderation/Blocklist/Server/Index.php:115 -#: src/Module/Moderation/Blocklist/Server/Index.php:116 -#: src/Module/Moderation/Item/Delete.php:67 src/Module/Register.php:155 -#: src/Module/Security/TwoFactor/Verify.php:101 -#: src/Module/Settings/Channels.php:190 src/Module/Settings/Channels.php:211 -#: src/Module/Settings/TwoFactor/Index.php:161 -#: src/Module/Settings/TwoFactor/Verify.php:158 +#: src/Module/Calendar/Event/Form.php:195 +#: src/Module/Calendar/Event/Form.php:223 src/Module/Debug/Probe.php:45 +#: src/Module/Install.php:187 src/Module/Install.php:213 +#: src/Module/Install.php:218 src/Module/Install.php:232 +#: src/Module/Install.php:241 src/Module/Install.php:246 +#: src/Module/Install.php:252 src/Module/Install.php:257 +#: src/Module/Install.php:271 src/Module/Install.php:284 +#: src/Module/Install.php:311 +#: src/Module/Moderation/Blocklist/Server/Add.php:122 +#: src/Module/Moderation/Blocklist/Server/Add.php:124 +#: src/Module/Moderation/Blocklist/Server/Import.php:113 +#: src/Module/Moderation/Blocklist/Server/Index.php:72 +#: src/Module/Moderation/Blocklist/Server/Index.php:73 +#: src/Module/Moderation/Blocklist/Server/Index.php:101 +#: src/Module/Moderation/Blocklist/Server/Index.php:102 +#: src/Module/Moderation/Item/Delete.php:53 src/Module/Register.php:141 +#: src/Module/Security/TwoFactor/Verify.php:87 +#: src/Module/Settings/Channels.php:176 src/Module/Settings/Channels.php:197 +#: src/Module/Settings/TwoFactor/Index.php:147 +#: src/Module/Settings/TwoFactor/Verify.php:144 msgid "Required" msgstr "Kötelező" -#: src/Module/Calendar/Event/Form.php:223 -#: src/Module/Calendar/Event/Form.php:247 +#: src/Module/Calendar/Event/Form.php:209 +#: src/Module/Calendar/Event/Form.php:233 msgid "Finish date/time is not known or not relevant" msgstr "A befejezési dátum vagy idő nem ismert vagy nem fontos" -#: src/Module/Calendar/Event/Form.php:225 -#: src/Module/Calendar/Event/Form.php:230 +#: src/Module/Calendar/Event/Form.php:211 +#: src/Module/Calendar/Event/Form.php:216 msgid "Event Finishes:" msgstr "Esemény befejezése:" -#: src/Module/Calendar/Event/Form.php:237 -#: src/Module/Calendar/Event/Form.php:243 +#: src/Module/Calendar/Event/Form.php:223 +#: src/Module/Calendar/Event/Form.php:229 msgid "Title (BBCode not allowed)" msgstr "Cím (BBCode nem engedélyezett)" -#: src/Module/Calendar/Event/Form.php:239 +#: src/Module/Calendar/Event/Form.php:225 msgid "Description (BBCode allowed)" msgstr "Leírás (BBCode engedélyezett)" -#: src/Module/Calendar/Event/Form.php:241 +#: src/Module/Calendar/Event/Form.php:227 msgid "Location (BBCode not allowed)" msgstr "Hely (BBCode nem engedélyezett)" -#: src/Module/Calendar/Event/Form.php:244 -#: src/Module/Calendar/Event/Form.php:245 +#: src/Module/Calendar/Event/Form.php:230 +#: src/Module/Calendar/Event/Form.php:231 msgid "Share this event" msgstr "Az esemény megosztása" -#: src/Module/Calendar/Event/Form.php:251 src/Module/Profile/Profile.php:277 +#: src/Module/Calendar/Event/Form.php:237 src/Module/Profile/Profile.php:263 msgid "Basic" msgstr "Alap" -#: src/Module/Calendar/Export.php:94 +#: src/Module/Calendar/Export.php:80 msgid "This calendar format is not supported" msgstr "Ez a naptárformátum nem támogatott" -#: src/Module/Calendar/Export.php:96 +#: src/Module/Calendar/Export.php:82 msgid "No exportable data found" msgstr "Nem található exportálható adat" -#: src/Module/Calendar/Export.php:113 +#: src/Module/Calendar/Export.php:99 msgid "calendar" msgstr "naptár" -#: src/Module/Calendar/Show.php:124 +#: src/Module/Calendar/Show.php:110 msgid "Events" msgstr "Események" -#: src/Module/Calendar/Show.php:125 +#: src/Module/Calendar/Show.php:111 msgid "View" msgstr "Nézet" -#: src/Module/Calendar/Show.php:126 +#: src/Module/Calendar/Show.php:112 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:118 src/Module/Settings/Display.php:283 msgid "list" msgstr "lista" -#: src/Module/Circle.php:57 +#: src/Module/Circle.php:43 msgid "Could not create circle." msgstr "Nem sikerült létrehozni a kört." -#: src/Module/Circle.php:68 src/Module/Circle.php:216 -#: src/Module/Circle.php:240 +#: src/Module/Circle.php:54 src/Module/Circle.php:202 +#: src/Module/Circle.php:226 msgid "Circle not found." msgstr "A kör nem található." -#: src/Module/Circle.php:74 +#: src/Module/Circle.php:60 msgid "Circle name was not changed." msgstr "A kör neve nem változott meg." -#: src/Module/Circle.php:92 +#: src/Module/Circle.php:78 msgid "Unknown circle." msgstr "Ismeretlen kör." -#: src/Module/Circle.php:98 src/Module/Circle.php:107 -#: src/Module/Contact/Advanced.php:70 src/Module/Contact/Advanced.php:109 -#: src/Module/Contact/Contacts.php:71 src/Module/Contact/Conversations.php:86 -#: src/Module/Contact/Conversations.php:91 -#: src/Module/Contact/Conversations.php:96 src/Module/Contact/Media.php:61 -#: src/Module/Contact/Posts.php:78 src/Module/Contact/Posts.php:83 -#: src/Module/Contact/Posts.php:88 src/Module/Contact/Profile.php:159 -#: src/Module/Contact/Profile.php:164 src/Module/Contact/Profile.php:183 -#: src/Module/Contact/Redir.php:91 src/Module/Contact/Redir.php:145 -#: src/Module/FriendSuggest.php:71 src/Module/FriendSuggest.php:109 +#: src/Module/Circle.php:84 src/Module/Circle.php:93 +#: src/Module/Contact/Advanced.php:56 src/Module/Contact/Advanced.php:95 +#: src/Module/Contact/Contacts.php:57 src/Module/Contact/Conversations.php:72 +#: src/Module/Contact/Conversations.php:77 +#: src/Module/Contact/Conversations.php:82 src/Module/Contact/Media.php:47 +#: src/Module/Contact/Posts.php:64 src/Module/Contact/Posts.php:69 +#: src/Module/Contact/Posts.php:74 src/Module/Contact/Profile.php:145 +#: src/Module/Contact/Profile.php:150 src/Module/Contact/Profile.php:169 +#: src/Module/Contact/Redir.php:77 src/Module/Contact/Redir.php:131 +#: src/Module/FriendSuggest.php:57 src/Module/FriendSuggest.php:95 msgid "Contact not found." msgstr "A partner nem található." -#: src/Module/Circle.php:102 src/Module/Contact/Contacts.php:66 +#: src/Module/Circle.php:88 src/Module/Contact/Contacts.php:52 msgid "Invalid contact." msgstr "Érvénytelen partner." -#: src/Module/Circle.php:111 src/Module/Contact/Revoke.php:70 +#: src/Module/Circle.php:97 src/Module/Contact/Revoke.php:56 msgid "Contact is deleted." msgstr "A partner törölve." -#: src/Module/Circle.php:117 +#: src/Module/Circle.php:103 msgid "Unable to add the contact to the circle." msgstr "Nem lehet hozzáadni a partnert a körhöz." -#: src/Module/Circle.php:120 +#: src/Module/Circle.php:106 msgid "Contact successfully added to circle." msgstr "A partner sikeresen hozzáadva a körhöz." -#: src/Module/Circle.php:124 +#: src/Module/Circle.php:110 msgid "Unable to remove the contact from the circle." msgstr "Nem lehet eltávolítani a partnert a körből." -#: src/Module/Circle.php:127 +#: src/Module/Circle.php:113 msgid "Contact successfully removed from circle." msgstr "A partner sikeresen eltávolítva a körből." -#: src/Module/Circle.php:131 +#: src/Module/Circle.php:117 msgid "Bad request." msgstr "Hibás kérés." -#: src/Module/Circle.php:172 +#: src/Module/Circle.php:158 msgid "Save Circle" msgstr "Kör mentése" -#: src/Module/Circle.php:173 +#: src/Module/Circle.php:159 msgid "Filter" msgstr "Szűrő" -#: src/Module/Circle.php:179 +#: src/Module/Circle.php:165 msgid "Create a circle of contacts/friends." msgstr "Partnerek vagy ismerősök körének létrehozása." -#: src/Module/Circle.php:221 +#: src/Module/Circle.php:207 msgid "Unable to remove circle." msgstr "Nem lehet eltávolítani a kört." -#: src/Module/Circle.php:272 +#: src/Module/Circle.php:258 msgid "Delete Circle" msgstr "Kör törlése" -#: src/Module/Circle.php:282 +#: src/Module/Circle.php:268 msgid "Edit Circle Name" msgstr "Kör nevének szerkesztése" -#: src/Module/Circle.php:292 +#: src/Module/Circle.php:278 msgid "Members" msgstr "Tagok" -#: src/Module/Circle.php:295 +#: src/Module/Circle.php:281 msgid "Circle is empty" msgstr "A kör üres" -#: src/Module/Circle.php:311 +#: src/Module/Circle.php:297 msgid "Remove contact from circle" msgstr "Partner eltávolítása a körből" -#: src/Module/Circle.php:334 +#: src/Module/Circle.php:320 msgid "Click on a contact to add or remove." msgstr "Kattintson egy partnerre a hozzáadáshoz vagy eltávolításhoz." -#: src/Module/Circle.php:351 +#: src/Module/Circle.php:337 msgid "Add contact to circle" msgstr "Partner hozzáadása a körhöz" -#: src/Module/Contact.php:102 +#: src/Module/Contact.php:88 #, php-format msgid "%d contact edited." msgid_plural "%d contacts edited." msgstr[0] "%d partner szerkesztve." msgstr[1] "%d partner szerkesztve." -#: src/Module/Contact.php:353 +#: src/Module/Contact.php:328 msgid "Show all contacts" msgstr "Összes partner megjelenítése" -#: src/Module/Contact.php:358 src/Module/Contact.php:437 -#: src/Module/Moderation/BaseUsers.php:85 +#: src/Module/Contact.php:333 src/Module/Contact.php:412 +#: src/Module/Moderation/BaseUsers.php:72 msgid "Pending" msgstr "Függőben" -#: src/Module/Contact.php:361 +#: src/Module/Contact.php:336 msgid "Only show pending contacts" msgstr "Csak a függőben lévő partnerek megjelenítése" -#: src/Module/Contact.php:366 src/Module/Contact.php:440 -#: src/Module/Moderation/BaseUsers.php:93 +#: src/Module/Contact.php:341 src/Module/Contact.php:415 +#: src/Module/Moderation/BaseUsers.php:80 msgid "Blocked" msgstr "Tiltva" -#: src/Module/Contact.php:369 +#: src/Module/Contact.php:344 msgid "Only show blocked contacts" msgstr "Csak a tiltott partnerek megjelenítése" -#: src/Module/Contact.php:374 src/Module/Contact.php:446 -#: src/Module/Settings/Server/Index.php:107 src/Object/Post.php:399 +#: src/Module/Contact.php:349 src/Module/Contact.php:421 +#: src/Module/Settings/Server/Index.php:93 src/Object/Post.php:385 msgid "Ignored" msgstr "Mellőzve" -#: src/Module/Contact.php:377 +#: src/Module/Contact.php:352 msgid "Only show ignored contacts" msgstr "Csak a mellőzött partnerek megjelenítése" -#: src/Module/Contact.php:382 src/Module/Contact.php:449 +#: src/Module/Contact.php:357 src/Module/Contact.php:424 msgid "Collapsed" msgstr "Összecsukva" -#: src/Module/Contact.php:385 +#: src/Module/Contact.php:360 msgid "Only show collapsed contacts" msgstr "Csak az összecsukott partnerek megjelenítése" -#: src/Module/Contact.php:390 src/Module/Contact.php:452 +#: src/Module/Contact.php:365 src/Module/Contact.php:427 msgid "Archived" msgstr "Archiválva" -#: src/Module/Contact.php:393 +#: src/Module/Contact.php:368 msgid "Only show archived contacts" msgstr "Csak az archivált partnerek megjelenítése" -#: src/Module/Contact.php:398 src/Module/Contact.php:443 +#: src/Module/Contact.php:373 src/Module/Contact.php:418 msgid "Hidden" msgstr "Rejtett" -#: src/Module/Contact.php:401 +#: src/Module/Contact.php:376 msgid "Only show hidden contacts" msgstr "Csak a rejtett partnerek megjelenítése" -#: src/Module/Contact.php:409 +#: src/Module/Contact.php:384 msgid "Organize your contact circles" msgstr "Partnerkörök szervezése" -#: src/Module/Contact.php:464 +#: src/Module/Contact.php:439 msgid "Search your contacts" msgstr "Partnerek keresése" -#: src/Module/Contact.php:465 src/Module/Search/Index.php:207 +#: src/Module/Contact.php:440 src/Module/Search/Index.php:193 #, php-format msgid "Results for: %s" msgstr "Találatok erre: %s" -#: src/Module/Contact.php:473 +#: src/Module/Contact.php:448 msgid "Update" msgstr "Frissítés" -#: src/Module/Contact.php:474 src/Module/Contact/Profile.php:532 -#: src/Module/Moderation/Blocklist/Contact.php:117 -#: src/Module/Moderation/Users/Blocked.php:138 -#: src/Module/Moderation/Users/Index.php:154 +#: src/Module/Contact.php:449 src/Module/Contact/Profile.php:518 +#: src/Module/Moderation/Blocklist/Contact.php:103 +#: src/Module/Moderation/Users/Blocked.php:124 +#: src/Module/Moderation/Users/Index.php:140 msgid "Unblock" msgstr "Tiltás feloldása" -#: src/Module/Contact.php:475 src/Module/Contact/Profile.php:540 +#: src/Module/Contact.php:450 src/Module/Contact/Profile.php:526 msgid "Unignore" msgstr "Mellőzés feloldása" -#: src/Module/Contact.php:476 src/Module/Contact/Profile.php:548 +#: src/Module/Contact.php:451 src/Module/Contact/Profile.php:534 msgid "Uncollapse" msgstr "Összecsukás megszüntetése" -#: src/Module/Contact.php:478 +#: src/Module/Contact.php:453 msgid "Batch Actions" msgstr "Tömeges műveletek" -#: src/Module/Contact.php:521 +#: src/Module/Contact.php:496 msgid "Conversations started by this contact" msgstr "A partner által elkezdett beszélgetések" -#: src/Module/Contact.php:526 +#: src/Module/Contact.php:501 msgid "Posts and Comments" msgstr "Bejegyzések és hozzászólások" -#: src/Module/Contact.php:529 +#: src/Module/Contact.php:504 msgid "Individual Posts and Replies" msgstr "Egyéni bejegyzések és válaszok" -#: src/Module/Contact.php:537 +#: src/Module/Contact.php:512 msgid "Posts containing media objects" msgstr "Médiaobjektumokat tartalmazó bejegyzések" -#: src/Module/Contact.php:545 +#: src/Module/Contact.php:520 msgid "View all known contacts" msgstr "Összes ismert partner megtekintése" -#: src/Module/Contact.php:556 +#: src/Module/Contact.php:531 msgid "Advanced Contact Settings" msgstr "Speciális partnerbeállítások" -#: src/Module/Contact.php:592 +#: src/Module/Contact.php:567 msgid "Mutual Friendship" msgstr "Kölcsönös ismeretség" -#: src/Module/Contact.php:596 +#: src/Module/Contact.php:571 msgid "is a fan of yours" msgstr "az Ön rajongója" -#: src/Module/Contact.php:600 +#: src/Module/Contact.php:575 msgid "you are a fan of" msgstr "Ön rajong érte:" -#: src/Module/Contact.php:618 +#: src/Module/Contact.php:593 msgid "Pending outgoing contact request" msgstr "Függőben lévő kimenő partnerkérés" -#: src/Module/Contact.php:620 +#: src/Module/Contact.php:595 msgid "Pending incoming contact request" msgstr "Függőben lévő bejövő partnerkérés" -#: src/Module/Contact.php:633 src/Module/Contact/Profile.php:391 +#: src/Module/Contact.php:608 src/Module/Contact/Profile.php:377 #, php-format msgid "Visit %s's profile [%s]" msgstr "%s profiljának megtekintése [%s]" -#: src/Module/Contact/Advanced.php:99 +#: src/Module/Contact/Advanced.php:85 msgid "Contact update failed." msgstr "A partner frissítése sikertelen." -#: src/Module/Contact/Advanced.php:130 +#: src/Module/Contact/Advanced.php:116 msgid "Return to contact editor" msgstr "Visszatérés a partnerszerkesztőhöz" -#: src/Module/Contact/Advanced.php:134 -#: src/Module/Moderation/Blocklist/Contact.php:122 -#: src/Module/Moderation/Reports.php:116 -#: src/Module/Moderation/Users/Active.php:126 -#: src/Module/Moderation/Users/Blocked.php:126 -#: src/Module/Moderation/Users/Create.php:70 -#: src/Module/Moderation/Users/Deleted.php:83 -#: src/Module/Moderation/Users/Index.php:140 -#: src/Module/Moderation/Users/Index.php:160 -#: src/Module/Moderation/Users/Pending.php:99 src/Module/Settings/OAuth.php:72 +#: src/Module/Contact/Advanced.php:120 +#: src/Module/Moderation/Blocklist/Contact.php:108 +#: src/Module/Moderation/Reports.php:102 +#: src/Module/Moderation/Users/Active.php:112 +#: src/Module/Moderation/Users/Blocked.php:112 +#: src/Module/Moderation/Users/Create.php:56 +#: src/Module/Moderation/Users/Deleted.php:69 +#: src/Module/Moderation/Users/Index.php:126 +#: src/Module/Moderation/Users/Index.php:146 +#: src/Module/Moderation/Users/Pending.php:85 src/Module/Settings/OAuth.php:58 msgid "Name" msgstr "Név" -#: src/Module/Contact/Advanced.php:135 +#: src/Module/Contact/Advanced.php:121 msgid "Account Nickname" msgstr "Fiók beceneve" -#: src/Module/Contact/Advanced.php:136 +#: src/Module/Contact/Advanced.php:122 msgid "Account URL" msgstr "Fiók URL" -#: src/Module/Contact/Advanced.php:137 +#: src/Module/Contact/Advanced.php:123 msgid "Poll/Feed URL" msgstr "Lekérés vagy hírforrás URL" -#: src/Module/Contact/Advanced.php:138 +#: src/Module/Contact/Advanced.php:124 msgid "New photo from this URL" msgstr "Új fénykép erről az URL-ről" -#: src/Module/Contact/Contacts.php:89 +#: src/Module/Contact/Contacts.php:75 msgid "No known contacts." msgstr "Nincsenek ismert partnerek." -#: src/Module/Contact/Contacts.php:103 src/Module/Profile/Common.php:128 +#: src/Module/Contact/Contacts.php:89 src/Module/Profile/Common.php:114 msgid "No common contacts." msgstr "Nincsenek közös partnerek." -#: src/Module/Contact/Contacts.php:115 src/Module/Profile/Contacts.php:135 +#: src/Module/Contact/Contacts.php:101 src/Module/Profile/Contacts.php:121 #, php-format msgid "Follower (%s)" msgid_plural "Followers (%s)" msgstr[0] "Követő (%s)" msgstr[1] "Követők (%s)" -#: src/Module/Contact/Contacts.php:119 src/Module/Profile/Contacts.php:138 +#: src/Module/Contact/Contacts.php:105 src/Module/Profile/Contacts.php:124 #, php-format msgid "Following (%s)" msgid_plural "Following (%s)" msgstr[0] "Követés (%s)" msgstr[1] "Követés (%s)" -#: src/Module/Contact/Contacts.php:123 src/Module/Profile/Contacts.php:141 +#: src/Module/Contact/Contacts.php:109 src/Module/Profile/Contacts.php:127 #, php-format msgid "Mutual friend (%s)" msgid_plural "Mutual friends (%s)" msgstr[0] "Kölcsönösen ismerősök (%s)" msgstr[1] "Kölcsönösen ismerősök (%s)" -#: src/Module/Contact/Contacts.php:125 src/Module/Profile/Contacts.php:143 +#: src/Module/Contact/Contacts.php:111 src/Module/Profile/Contacts.php:129 #, php-format msgid "These contacts both follow and are followed by %s." msgstr "Ezeket a partnereket %s követi és ők is követik őt." -#: src/Module/Contact/Contacts.php:131 src/Module/Profile/Common.php:116 +#: src/Module/Contact/Contacts.php:117 src/Module/Profile/Common.php:102 #, php-format msgid "Common contact (%s)" msgid_plural "Common contacts (%s)" msgstr[0] "Közös partner (%s)" msgstr[1] "Közös partnerek (%s)" -#: src/Module/Contact/Contacts.php:133 src/Module/Profile/Common.php:118 +#: src/Module/Contact/Contacts.php:119 src/Module/Profile/Common.php:104 #, php-format msgid "" "Both %s and yourself have publicly interacted with these " "contacts (follow, comment or likes on public posts)." msgstr "%s és Ön is nyilvánosan kapcsolatba léptek ezekkel a partnerekkel (követés, hozzászólás vagy kedvelések a nyilvános bejegyzéseknél)." -#: src/Module/Contact/Contacts.php:139 src/Module/Profile/Contacts.php:149 +#: src/Module/Contact/Contacts.php:125 src/Module/Profile/Contacts.php:135 #, php-format msgid "Contact (%s)" msgid_plural "Contacts (%s)" msgstr[0] "Partner (%s)" msgstr[1] "Partnerek (%s)" -#: src/Module/Contact/Follow.php:70 src/Module/Contact/Redir.php:59 -#: src/Module/Contact/Redir.php:220 src/Module/Conversation/Community.php:166 -#: src/Module/Debug/ItemBody.php:38 src/Module/Diaspora/Receive.php:59 -#: src/Module/Item/Display.php:96 src/Module/Item/Feed.php:59 -#: src/Module/Item/Follow.php:41 src/Module/Item/Ignore.php:41 -#: src/Module/Item/Language.php:53 src/Module/Item/Pin.php:41 -#: src/Module/Item/Pin.php:56 src/Module/Item/Searchtext.php:53 -#: src/Module/Item/Star.php:42 src/Module/Update/Display.php:37 +#: src/Module/Contact/Follow.php:56 src/Module/Contact/Redir.php:45 +#: src/Module/Contact/Redir.php:206 src/Module/Conversation/Community.php:154 +#: src/Module/Debug/ItemBody.php:24 src/Module/Diaspora/Receive.php:45 +#: src/Module/Item/Display.php:82 src/Module/Item/Feed.php:45 +#: src/Module/Item/Follow.php:27 src/Module/Item/Ignore.php:27 +#: src/Module/Item/Language.php:39 src/Module/Item/Pin.php:27 +#: src/Module/Item/Pin.php:42 src/Module/Item/Searchtext.php:39 +#: src/Module/Item/Star.php:28 src/Module/Update/Display.php:23 msgid "Access denied." msgstr "Hozzáférés megtagadva." -#: src/Module/Contact/Follow.php:105 src/Module/Contact/Unfollow.php:125 -#: src/Module/Profile/RemoteFollow.php:133 +#: src/Module/Contact/Follow.php:91 src/Module/Contact/Unfollow.php:111 +#: src/Module/Profile/RemoteFollow.php:119 msgid "Submit Request" msgstr "Kérés elküldése" -#: src/Module/Contact/Follow.php:115 +#: src/Module/Contact/Follow.php:101 msgid "You already added this contact." msgstr "Már hozzáadta ezt a partnert." -#: src/Module/Contact/Follow.php:130 +#: src/Module/Contact/Follow.php:116 msgid "The network type couldn't be detected. Contact can't be added." msgstr "A hálózat típusát nem sikerült felismerni. A partnert nem lehet hozzáadni." -#: src/Module/Contact/Follow.php:138 +#: src/Module/Contact/Follow.php:124 msgid "Diaspora support isn't enabled. Contact can't be added." msgstr "A Diaspora támogatása nincs engedélyezve. A partnert nem lehet hozzáadni." -#: src/Module/Contact/Follow.php:143 -msgid "OStatus support is disabled. Contact can't be added." -msgstr "Az OStatus támogatása le van tiltva. A partnert nem lehet hozzáadni." - -#: src/Module/Contact/Follow.php:168 src/Module/Profile/RemoteFollow.php:132 +#: src/Module/Contact/Follow.php:149 src/Module/Profile/RemoteFollow.php:118 msgid "Please answer the following:" msgstr "Válaszoljon a következőre:" -#: src/Module/Contact/Follow.php:169 src/Module/Contact/Unfollow.php:123 +#: src/Module/Contact/Follow.php:150 src/Module/Contact/Unfollow.php:109 msgid "Your Identity Address:" msgstr "Az Ön személyazonosság-címe:" -#: src/Module/Contact/Follow.php:170 src/Module/Contact/Profile.php:422 -#: src/Module/Contact/Unfollow.php:129 -#: src/Module/Moderation/Blocklist/Contact.php:131 -#: src/Module/Moderation/Reports.php:123 -#: src/Module/Notifications/Introductions.php:135 -#: src/Module/Notifications/Introductions.php:204 +#: src/Module/Contact/Follow.php:151 src/Module/Contact/Profile.php:408 +#: src/Module/Contact/Unfollow.php:115 +#: src/Module/Moderation/Blocklist/Contact.php:117 +#: src/Module/Moderation/Reports.php:109 +#: src/Module/Notifications/Introductions.php:121 +#: src/Module/Notifications/Introductions.php:190 msgid "Profile URL" msgstr "Profil URL" -#: src/Module/Contact/Follow.php:171 src/Module/Contact/Profile.php:434 -#: src/Module/Notifications/Introductions.php:197 -#: src/Module/Profile/Profile.php:236 +#: src/Module/Contact/Follow.php:152 src/Module/Contact/Profile.php:420 +#: src/Module/Notifications/Introductions.php:183 +#: src/Module/Profile/Profile.php:222 msgid "Tags:" msgstr "Címkék:" -#: src/Module/Contact/Follow.php:182 +#: src/Module/Contact/Follow.php:163 #, php-format msgid "%s knows you" msgstr "%s ismeri Önt" -#: src/Module/Contact/Follow.php:183 +#: src/Module/Contact/Follow.php:164 msgid "Add a personal note:" msgstr "Személyes jegyzet hozzáadása:" -#: src/Module/Contact/Follow.php:192 src/Module/Contact/Unfollow.php:138 +#: src/Module/Contact/Follow.php:173 src/Module/Contact/Unfollow.php:124 msgid "Posts and Replies" msgstr "Bejegyzések és válaszok" -#: src/Module/Contact/Follow.php:221 +#: src/Module/Contact/Follow.php:202 msgid "The contact could not be added." msgstr "A partnert nem sikerült hozzáadni." -#: src/Module/Contact/MatchInterests.php:95 -#: src/Module/Media/Attachment/Upload.php:77 -#: src/Module/Media/Attachment/Upload.php:82 -#: src/Module/Media/Photo/Upload.php:81 src/Module/Media/Photo/Upload.php:86 -#: src/Module/Media/Photo/Upload.php:135 +#: src/Module/Contact/MatchInterests.php:81 +#: src/Module/Media/Attachment/Upload.php:63 +#: src/Module/Media/Attachment/Upload.php:68 +#: src/Module/Media/Photo/Upload.php:67 src/Module/Media/Photo/Upload.php:72 +#: src/Module/Media/Photo/Upload.php:121 msgid "Invalid request." msgstr "Érvénytelen kérés." -#: src/Module/Contact/MatchInterests.php:102 +#: src/Module/Contact/MatchInterests.php:88 msgid "No keywords to match. Please add keywords to your profile." msgstr "Nincs illesztendő kulcsszó. Adjon kulcsszavakat a profiljához." -#: src/Module/Contact/MatchInterests.php:145 +#: src/Module/Contact/MatchInterests.php:141 msgid "Profile Match" msgstr "Profilegyezés" -#: src/Module/Contact/Profile.php:145 +#: src/Module/Contact/Profile.php:131 msgid "Failed to update contact record." msgstr "Nem sikerült frissíteni a partner rekordját." -#: src/Module/Contact/Profile.php:209 +#: src/Module/Contact/Profile.php:195 msgid "Contact has been unblocked" msgstr "A partner tiltása fel lett oldva" -#: src/Module/Contact/Profile.php:213 +#: src/Module/Contact/Profile.php:199 msgid "Contact has been blocked" msgstr "A partner tiltva lett" -#: src/Module/Contact/Profile.php:225 +#: src/Module/Contact/Profile.php:211 msgid "Contact has been unignored" msgstr "A partner mellőzése fel lett oldva" -#: src/Module/Contact/Profile.php:229 +#: src/Module/Contact/Profile.php:215 msgid "Contact has been ignored" msgstr "A partner mellőzve lett" -#: src/Module/Contact/Profile.php:241 +#: src/Module/Contact/Profile.php:227 msgid "Contact has been uncollapsed" msgstr "A partner összecsukása meg lett szüntetve" -#: src/Module/Contact/Profile.php:245 +#: src/Module/Contact/Profile.php:231 msgid "Contact has been collapsed" msgstr "A partner össze lett csukva" -#: src/Module/Contact/Profile.php:273 +#: src/Module/Contact/Profile.php:259 #, php-format msgid "You are mutual friends with %s" msgstr "Ön kölcsönösen ismerős %s partnerrel" -#: src/Module/Contact/Profile.php:274 +#: src/Module/Contact/Profile.php:260 #, php-format msgid "You are sharing with %s" msgstr "Ön megoszt %s partnerrel" -#: src/Module/Contact/Profile.php:275 +#: src/Module/Contact/Profile.php:261 #, php-format msgid "%s is sharing with you" msgstr "%s megoszt Önnel" -#: src/Module/Contact/Profile.php:291 +#: src/Module/Contact/Profile.php:277 msgid "Private communications are not available for this contact." msgstr "A személyes kommunikációk nem érhetők el ennél a partnernél." -#: src/Module/Contact/Profile.php:301 +#: src/Module/Contact/Profile.php:287 msgid "This contact is on a server you ignored." msgstr "Ez a partner olyan kiszolgálón van, amelyet mellőzött." -#: src/Module/Contact/Profile.php:304 +#: src/Module/Contact/Profile.php:290 msgid "Never" msgstr "Soha" -#: src/Module/Contact/Profile.php:307 +#: src/Module/Contact/Profile.php:293 msgid "(Update was not successful)" msgstr "(a frissítés nem volt sikeres)" -#: src/Module/Contact/Profile.php:307 +#: src/Module/Contact/Profile.php:293 msgid "(Update was successful)" msgstr "(a frissítés sikeres volt)" -#: src/Module/Contact/Profile.php:309 src/Module/Contact/Profile.php:503 +#: src/Module/Contact/Profile.php:295 src/Module/Contact/Profile.php:489 msgid "Suggest friends" msgstr "Ismerősök ajánlása" -#: src/Module/Contact/Profile.php:313 +#: src/Module/Contact/Profile.php:299 #, php-format msgid "Network type: %s" msgstr "Hálózat típusa: %s" -#: src/Module/Contact/Profile.php:318 +#: src/Module/Contact/Profile.php:304 msgid "Communications lost with this contact!" msgstr "A kommunikációk megszakadtak ezzel a partnerrel!" -#: src/Module/Contact/Profile.php:324 +#: src/Module/Contact/Profile.php:310 msgid "Fetch further information for feeds" msgstr "További információk lekérése a hírforrásokhoz" -#: src/Module/Contact/Profile.php:326 +#: src/Module/Contact/Profile.php:312 msgid "" "Fetch information like preview pictures, title and teaser from the feed " "item. You can activate this if the feed doesn't contain much text. Keywords " "are taken from the meta header in the feed item and are posted as hash tags." msgstr "Információk lekérése a hírforrás eleméből, mint például előnézeti képek, cím és előzetes. Akkor kapcsolhatja be ezt, ha a hírforrás nem tartalmaz sok szöveget. A kulcsszavak a hírforrás elemében lévő metafejlécéből lesznek kiszedve, és kettős keresztes címkékként lesznek beküldve." -#: src/Module/Contact/Profile.php:329 +#: src/Module/Contact/Profile.php:315 msgid "Fetch information" msgstr "Információk lekérése" -#: src/Module/Contact/Profile.php:330 +#: src/Module/Contact/Profile.php:316 msgid "Fetch keywords" msgstr "Kulcsszavak lekérése" -#: src/Module/Contact/Profile.php:331 +#: src/Module/Contact/Profile.php:317 msgid "Fetch information and keywords" msgstr "Információk és kulcsszavak lekérése" -#: src/Module/Contact/Profile.php:341 src/Module/Contact/Profile.php:346 -#: src/Module/Contact/Profile.php:351 src/Module/Contact/Profile.php:357 +#: src/Module/Contact/Profile.php:327 src/Module/Contact/Profile.php:332 +#: src/Module/Contact/Profile.php:337 src/Module/Contact/Profile.php:343 msgid "No mirroring" msgstr "Nincs tükrözés" -#: src/Module/Contact/Profile.php:342 src/Module/Contact/Profile.php:352 -#: src/Module/Contact/Profile.php:358 +#: src/Module/Contact/Profile.php:328 src/Module/Contact/Profile.php:338 +#: src/Module/Contact/Profile.php:344 msgid "Mirror as my own posting" msgstr "Tükrözés saját beküldésként" -#: src/Module/Contact/Profile.php:347 src/Module/Contact/Profile.php:353 +#: src/Module/Contact/Profile.php:333 src/Module/Contact/Profile.php:339 msgid "Native reshare" msgstr "Natív újra megosztás" -#: src/Module/Contact/Profile.php:373 +#: src/Module/Contact/Profile.php:359 msgid "Contact Information / Notes" msgstr "Partner információ vagy jegyzetek" -#: src/Module/Contact/Profile.php:374 +#: src/Module/Contact/Profile.php:360 msgid "Contact Settings" msgstr "Partnerbeállítások" -#: src/Module/Contact/Profile.php:382 +#: src/Module/Contact/Profile.php:368 msgid "Contact" msgstr "Partner" -#: src/Module/Contact/Profile.php:386 +#: src/Module/Contact/Profile.php:372 msgid "Their personal note" msgstr "A személyes jegyzeteik" -#: src/Module/Contact/Profile.php:388 +#: src/Module/Contact/Profile.php:374 msgid "Edit contact notes" msgstr "Partner jegyzeteinek szerkesztése" -#: src/Module/Contact/Profile.php:392 +#: src/Module/Contact/Profile.php:378 msgid "Block/Unblock contact" msgstr "Partner tiltása vagy tiltásának feloldása" -#: src/Module/Contact/Profile.php:393 -#: src/Module/Moderation/Report/Create.php:293 +#: src/Module/Contact/Profile.php:379 +#: src/Module/Moderation/Report/Create.php:279 msgid "Ignore contact" msgstr "Partner mellőzése" -#: src/Module/Contact/Profile.php:394 +#: src/Module/Contact/Profile.php:380 msgid "View conversations" msgstr "Beszélgetések megtekintése" -#: src/Module/Contact/Profile.php:399 +#: src/Module/Contact/Profile.php:385 msgid "Last update:" msgstr "Utolsó frissítés:" -#: src/Module/Contact/Profile.php:401 +#: src/Module/Contact/Profile.php:387 msgid "Update public posts" msgstr "Nyilvános bejegyzések frissítése" -#: src/Module/Contact/Profile.php:403 src/Module/Contact/Profile.php:513 +#: src/Module/Contact/Profile.php:389 src/Module/Contact/Profile.php:499 msgid "Update now" msgstr "Frissítés most" -#: src/Module/Contact/Profile.php:405 +#: src/Module/Contact/Profile.php:391 msgid "Awaiting connection acknowledge" msgstr "Várakozás a kapcsolat nyugtázására" -#: src/Module/Contact/Profile.php:406 +#: src/Module/Contact/Profile.php:392 msgid "Currently blocked" msgstr "Jelenleg tiltva" -#: src/Module/Contact/Profile.php:407 +#: src/Module/Contact/Profile.php:393 msgid "Currently ignored" msgstr "Jelenleg mellőzve" -#: src/Module/Contact/Profile.php:408 +#: src/Module/Contact/Profile.php:394 msgid "Currently collapsed" msgstr "Jelenleg összecsukva" -#: src/Module/Contact/Profile.php:409 +#: src/Module/Contact/Profile.php:395 msgid "Currently archived" msgstr "Jelenleg archiválva" -#: src/Module/Contact/Profile.php:412 +#: src/Module/Contact/Profile.php:398 msgid "Manage remote servers" msgstr "Távoli kiszolgálók kezelése" -#: src/Module/Contact/Profile.php:414 -#: src/Module/Notifications/Introductions.php:198 +#: src/Module/Contact/Profile.php:400 +#: src/Module/Notifications/Introductions.php:184 msgid "Hide this contact from others" msgstr "A partner elrejtése mások elől" -#: src/Module/Contact/Profile.php:414 +#: src/Module/Contact/Profile.php:400 msgid "" "Replies/likes to your public posts may still be visible" msgstr "A nyilvános bejegyzéseire adott válaszok vagy kedvelések továbbra is láthatóak lehetnek." -#: src/Module/Contact/Profile.php:415 +#: src/Module/Contact/Profile.php:401 msgid "Notification for new posts" msgstr "Értesítés új bejegyzéseknél" -#: src/Module/Contact/Profile.php:415 +#: src/Module/Contact/Profile.php:401 msgid "Send a notification of every new post of this contact" msgstr "Értesítés küldése a partner minden új bejegyzéséről." -#: src/Module/Contact/Profile.php:417 +#: src/Module/Contact/Profile.php:403 msgid "Keyword Deny List" msgstr "Kulcsszavas tiltólista" -#: src/Module/Contact/Profile.php:417 +#: src/Module/Contact/Profile.php:403 msgid "" "Comma separated list of keywords that should not be converted to hashtags, " "when \"Fetch information and keywords\" is selected" msgstr "Kulcsszavak vesszővel elválasztott listája, amelyeket nem szabad kettős keresztes címkékké átalakítani, ha az „Információk és kulcsszavak lekérése” ki van jelölve." -#: src/Module/Contact/Profile.php:435 -#: src/Module/Settings/TwoFactor/Index.php:160 +#: src/Module/Contact/Profile.php:421 +#: src/Module/Settings/TwoFactor/Index.php:146 msgid "Actions" msgstr "Műveletek" -#: src/Module/Contact/Profile.php:437 -#: src/Module/Settings/TwoFactor/Index.php:140 view/theme/frio/theme.php:232 +#: src/Module/Contact/Profile.php:423 +#: src/Module/Settings/TwoFactor/Index.php:126 view/theme/frio/theme.php:220 msgid "Status" msgstr "Állapot" -#: src/Module/Contact/Profile.php:443 +#: src/Module/Contact/Profile.php:429 msgid "Mirror postings from this contact" msgstr "Beküldés tükrözése ettől a partnertől" -#: src/Module/Contact/Profile.php:445 +#: src/Module/Contact/Profile.php:431 msgid "" "Mark this contact as remote_self, this will cause friendica to repost new " "entries from this contact." msgstr "A partner megjelölése távoli önmagaként. Ezt azt fogja okozni, hogy a Friendica újraküldi az ettől a partnertől származó új bejegyzéseket." -#: src/Module/Contact/Profile.php:448 +#: src/Module/Contact/Profile.php:434 msgid "Channel Settings" msgstr "Csatorna beállításai" -#: src/Module/Contact/Profile.php:449 +#: src/Module/Contact/Profile.php:435 msgid "Frequency of this contact in relevant channels" msgstr "A partner gyakorisága a kapcsolódó csatornákban" -#: src/Module/Contact/Profile.php:450 +#: src/Module/Contact/Profile.php:436 msgid "" "Depending on the type of the channel not all posts from this contact are " "displayed. By default, posts need to have a minimum amount of interactions " @@ -6997,706 +6992,706 @@ msgid "" "block or hide the contact completely." msgstr "A csatorna típusától függően nem minden bejegyzés jelenik meg ettől a partnertől. Alapértelmezetten a bejegyzéseknek minimális számú interakcióval (hozzászólások, kedvelések) kell rendelkezniük ahhoz, hogy megjelenjenek a csatornákon. Másrészt lehetnek olyan partnerek is, akik elárasztják a csatornát, így előfordulhat, hogy csak néhány bejegyzésüket szeretné látni. Vagy egyáltalán nem szeretné látni a tartalmaikat, de nem szeretné teljesen letiltani vagy elrejteni a partnert." -#: src/Module/Contact/Profile.php:451 +#: src/Module/Contact/Profile.php:437 msgid "Default frequency" msgstr "Alapértelmezett gyakoriság" -#: src/Module/Contact/Profile.php:451 +#: src/Module/Contact/Profile.php:437 msgid "" "Posts by this contact are displayed in the \"for you\" channel if you " "interact often with this contact or if a post reached some level of " "interaction." msgstr "Ennek a partnernek a bejegyzései akkor jelennek meg az „Önnek” csatornán, ha gyakran lép kapcsolatba ezzel a partnerrel, vagy ha egy bejegyzés elért egy bizonyos interakciós szintet." -#: src/Module/Contact/Profile.php:452 +#: src/Module/Contact/Profile.php:438 msgid "Display all posts of this contact" msgstr "A partner összes bejegyzésének megjelenítése" -#: src/Module/Contact/Profile.php:452 +#: src/Module/Contact/Profile.php:438 msgid "All posts from this contact will appear on the \"for you\" channel" msgstr "Ennek a partnernek az összes bejegyzése megjelenik az „Önnek” csatornán." -#: src/Module/Contact/Profile.php:453 +#: src/Module/Contact/Profile.php:439 msgid "Display only few posts" msgstr "Csak néhány bejegyzés megjelenítése" -#: src/Module/Contact/Profile.php:453 +#: src/Module/Contact/Profile.php:439 msgid "" "When a contact creates a lot of posts in a short period, this setting " "reduces the number of displayed posts in every channel." msgstr "Ha egy partner rövid időn belül sok bejegyzést hoz létre, akkor ez a beállítás csökkenti a megjelenített bejegyzések számát minden csatornán." -#: src/Module/Contact/Profile.php:454 +#: src/Module/Contact/Profile.php:440 msgid "Never display posts" msgstr "Soha se jelenítsen meg bejegyzéseket" -#: src/Module/Contact/Profile.php:454 +#: src/Module/Contact/Profile.php:440 msgid "Posts from this contact will never be displayed in any channel" msgstr "Ennek a partnernek a bejegyzései soha sem jelennek meg semmilyen csatornán." -#: src/Module/Contact/Profile.php:455 +#: src/Module/Contact/Profile.php:441 msgid "Channel Only" msgstr "Csak csatorna" -#: src/Module/Contact/Profile.php:455 +#: src/Module/Contact/Profile.php:441 msgid "" "If enabled, posts from this contact will only appear in channels and network" " streams in circles, but not in the general network stream." msgstr "Ha engedélyezve van, akkor az ettől a partnertől származó bejegyzések csak a körökben lévő csatornákon és hálózati adatfolyamokon jelennek meg, de az általános hálózati adatfolyamban nem." -#: src/Module/Contact/Profile.php:523 +#: src/Module/Contact/Profile.php:509 msgid "Refetch contact data" msgstr "Partneradatok ismételt lekérése" -#: src/Module/Contact/Profile.php:534 +#: src/Module/Contact/Profile.php:520 msgid "Toggle Blocked status" msgstr "Tiltott állapot átváltása" -#: src/Module/Contact/Profile.php:542 +#: src/Module/Contact/Profile.php:528 msgid "Toggle Ignored status" msgstr "Mellőzött állapot átváltása" -#: src/Module/Contact/Profile.php:550 +#: src/Module/Contact/Profile.php:536 msgid "Toggle Collapsed status" msgstr "Összecsukott állapot átváltása" -#: src/Module/Contact/Profile.php:557 src/Module/Contact/Revoke.php:103 +#: src/Module/Contact/Profile.php:543 src/Module/Contact/Revoke.php:89 msgid "Revoke Follow" msgstr "Követés visszavonása" -#: src/Module/Contact/Profile.php:559 +#: src/Module/Contact/Profile.php:545 msgid "Revoke the follow from this contact" msgstr "A követés visszavonása ettől a partnertől" -#: src/Module/Contact/Redir.php:139 +#: src/Module/Contact/Redir.php:125 msgid "Bad Request." msgstr "Hibás kérés." -#: src/Module/Contact/Revoke.php:74 +#: src/Module/Contact/Revoke.php:60 msgid "Contact is being deleted." msgstr "A partner törlésre került." -#: src/Module/Contact/Revoke.php:88 +#: src/Module/Contact/Revoke.php:74 msgid "Follow was successfully revoked." msgstr "A követés sikeresen vissza lett vonva." -#: src/Module/Contact/Revoke.php:104 +#: src/Module/Contact/Revoke.php:90 msgid "" "Do you really want to revoke this contact's follow? This cannot be undone " "and they will have to manually follow you back again." msgstr "Valóban vissza szeretné vonni ennek a partnernek a követését? Ezt a műveletet nem lehet visszavonni, és a partnernek kézzel kell majd újra követnie Önt." -#: src/Module/Contact/Suggestions.php:62 +#: src/Module/Contact/Suggestions.php:48 msgid "" "No suggestions available. If this is a new site, please try again in 24 " "hours." msgstr "Nem érhetők el javaslatok. Ha ez egy új oldal, akkor próbálja újra 24 óra múlva." -#: src/Module/Contact/Unfollow.php:98 src/Module/Contact/Unfollow.php:167 +#: src/Module/Contact/Unfollow.php:84 src/Module/Contact/Unfollow.php:153 msgid "You aren't following this contact." msgstr "Ön nem követi ezt a partnert." -#: src/Module/Contact/Unfollow.php:103 +#: src/Module/Contact/Unfollow.php:89 msgid "Unfollowing is currently not supported by your network." msgstr "A követés megszüntetését jelenleg nem támogatja a hálózata." -#: src/Module/Contact/Unfollow.php:121 +#: src/Module/Contact/Unfollow.php:107 msgid "Disconnect/Unfollow" msgstr "Leválasztás vagy követés megszüntetése" -#: src/Module/Contact/Unfollow.php:175 +#: src/Module/Contact/Unfollow.php:161 msgid "Contact was successfully unfollowed" msgstr "A partner követése sikeresen meg lett szüntetve" -#: src/Module/Contact/Unfollow.php:178 +#: src/Module/Contact/Unfollow.php:164 msgid "Unable to unfollow this contact, please contact your administrator" msgstr "Nem lehet megszüntetni ennek a partnernek a követését, vegye fel a kapcsolatot az adminisztrátorral" -#: src/Module/Conversation/Channel.php:139 -#: src/Module/Conversation/Community.php:126 src/Module/Search/Index.php:152 -#: src/Module/Search/Index.php:194 +#: src/Module/Conversation/Channel.php:125 +#: src/Module/Conversation/Community.php:114 src/Module/Search/Index.php:138 +#: src/Module/Search/Index.php:180 msgid "No results." msgstr "Nincs találat." -#: src/Module/Conversation/Channel.php:177 +#: src/Module/Conversation/Channel.php:163 msgid "Channel not available." msgstr "A csatorna nem érhető el." -#: src/Module/Conversation/Community.php:92 +#: src/Module/Conversation/Community.php:80 msgid "" "This community stream shows all public posts received by this node. They may" " not reflect the opinions of this node’s users." msgstr "Ez a közösségi adatfolyam megjeleníti az összes nyilvános bejegyzést, amelyet ez a csomópont megkapott. Előfordulhat, hogy azok nem tükrözik ezen csomópont felhasználóinak véleményét." -#: src/Module/Conversation/Community.php:180 +#: src/Module/Conversation/Community.php:168 msgid "Community option not available." msgstr "A közösségi beállítás nem érhető el." -#: src/Module/Conversation/Community.php:196 +#: src/Module/Conversation/Community.php:184 msgid "Not available." msgstr "Nem érhető el." -#: src/Module/Conversation/Network.php:216 +#: src/Module/Conversation/Network.php:202 msgid "No such circle" msgstr "Nincs ilyen kör" -#: src/Module/Conversation/Network.php:220 +#: src/Module/Conversation/Network.php:206 #, php-format msgid "Circle: %s" msgstr "Kör: %s" -#: src/Module/Conversation/Network.php:239 +#: src/Module/Conversation/Network.php:226 #, php-format msgid "Error %d (%s) while fetching the timeline." msgstr "Hiba %d (%s) az idővonal lekérése során." -#: src/Module/Conversation/Network.php:316 +#: src/Module/Conversation/Network.php:304 msgid "Network feed not available." msgstr "A hálózati hírforrás nem érhető el." -#: src/Module/Conversation/Timeline.php:204 +#: src/Module/Conversation/Timeline.php:190 msgid "Include" msgstr "Tartalmazás" -#: src/Module/Conversation/Timeline.php:205 +#: src/Module/Conversation/Timeline.php:191 msgid "Hide" msgstr "Elrejtés" -#: src/Module/Credits.php:44 +#: src/Module/Credits.php:30 msgid "Credits" msgstr "Köszönetnyilvánítás" -#: src/Module/Credits.php:45 +#: src/Module/Credits.php:31 msgid "" "Friendica is a community project, that would not be possible without the " "help of many people. Here is a list of those who have contributed to the " "code or the translation of Friendica. Thank you all!" msgstr "A Friendica egy közösségi projekt, amely nem lehetne lehetséges a sok ember segítsége nélkül. Itt van azok listája, akik közreműködtek a kódban vagy a Friendica fordításában. Köszönet mindannyiuknak!" -#: src/Module/Debug/ActivityPubConversion.php:59 +#: src/Module/Debug/ActivityPubConversion.php:45 msgid "Formatted" msgstr "Formázott" -#: src/Module/Debug/ActivityPubConversion.php:71 +#: src/Module/Debug/ActivityPubConversion.php:57 msgid "Activity" msgstr "Tevékenység" -#: src/Module/Debug/ActivityPubConversion.php:123 +#: src/Module/Debug/ActivityPubConversion.php:109 msgid "Object data" msgstr "Objektum adatai" -#: src/Module/Debug/ActivityPubConversion.php:130 +#: src/Module/Debug/ActivityPubConversion.php:116 msgid "Result Item" msgstr "Eredményelem" -#: src/Module/Debug/ActivityPubConversion.php:135 -#: src/Module/Debug/Babel.php:300 src/Module/Moderation/Item/Source.php:93 -#: src/Module/Security/TwoFactor/Verify.php:98 +#: src/Module/Debug/ActivityPubConversion.php:121 +#: src/Module/Debug/Babel.php:286 src/Module/Moderation/Item/Source.php:79 +#: src/Module/Security/TwoFactor/Verify.php:84 msgid "Error" msgid_plural "Errors" msgstr[0] "Hiba" msgstr[1] "Hibák" -#: src/Module/Debug/ActivityPubConversion.php:144 +#: src/Module/Debug/ActivityPubConversion.php:130 msgid "Source activity" msgstr "Forrástevékenység" -#: src/Module/Debug/Babel.php:58 +#: src/Module/Debug/Babel.php:44 msgid "Source input" msgstr "Forrás bevitele" -#: src/Module/Debug/Babel.php:64 +#: src/Module/Debug/Babel.php:50 msgid "BBCode::toPlaintext" msgstr "BBCode::toPlaintext" -#: src/Module/Debug/Babel.php:70 +#: src/Module/Debug/Babel.php:56 msgid "BBCode::convert (raw HTML)" msgstr "BBCode::convert (nyers HTML)" -#: src/Module/Debug/Babel.php:75 +#: src/Module/Debug/Babel.php:61 msgid "BBCode::convert (hex)" msgstr "BBCode::convert (hexa)" -#: src/Module/Debug/Babel.php:80 +#: src/Module/Debug/Babel.php:66 msgid "BBCode::convert" msgstr "BBCode::convert" -#: src/Module/Debug/Babel.php:86 +#: src/Module/Debug/Babel.php:72 msgid "BBCode::convert => HTML::toBBCode" msgstr "BBCode::convert => HTML::toBBCode" -#: src/Module/Debug/Babel.php:92 +#: src/Module/Debug/Babel.php:78 msgid "BBCode::toMarkdown" msgstr "BBCode::toMarkdown" -#: src/Module/Debug/Babel.php:98 +#: src/Module/Debug/Babel.php:84 msgid "BBCode::toMarkdown => Markdown::convert (raw HTML)" msgstr "BBCode::toMarkdown => Markdown::convert (nyers HTML)" -#: src/Module/Debug/Babel.php:102 +#: src/Module/Debug/Babel.php:88 msgid "BBCode::toMarkdown => Markdown::convert" msgstr "BBCode::toMarkdown => Markdown::convert" -#: src/Module/Debug/Babel.php:108 +#: src/Module/Debug/Babel.php:94 msgid "BBCode::toMarkdown => Markdown::toBBCode" msgstr "BBCode::toMarkdown => Markdown::toBBCode" -#: src/Module/Debug/Babel.php:114 +#: src/Module/Debug/Babel.php:100 msgid "BBCode::toMarkdown => Markdown::convert => HTML::toBBCode" msgstr "BBCode::toMarkdown => Markdown::convert => HTML::toBBCode" -#: src/Module/Debug/Babel.php:122 +#: src/Module/Debug/Babel.php:108 msgid "Item Body" msgstr "Elem törzse" -#: src/Module/Debug/Babel.php:126 +#: src/Module/Debug/Babel.php:112 msgid "Item Tags" msgstr "Elem címkéi" -#: src/Module/Debug/Babel.php:132 +#: src/Module/Debug/Babel.php:118 msgid "PageInfo::appendToBody" msgstr "PageInfo::appendToBody" -#: src/Module/Debug/Babel.php:137 +#: src/Module/Debug/Babel.php:123 msgid "PageInfo::appendToBody => BBCode::convert (raw HTML)" msgstr "PageInfo::appendToBody => BBCode::convert (nyers HTML)" -#: src/Module/Debug/Babel.php:141 +#: src/Module/Debug/Babel.php:127 msgid "PageInfo::appendToBody => BBCode::convert" msgstr "PageInfo::appendToBody => BBCode::convert" -#: src/Module/Debug/Babel.php:148 +#: src/Module/Debug/Babel.php:134 msgid "Source input (Diaspora format)" msgstr "Forrás bevitele (Diaspora formátum)" -#: src/Module/Debug/Babel.php:157 +#: src/Module/Debug/Babel.php:143 msgid "Source input (Markdown)" msgstr "Forrás bevitele (Markdown)" -#: src/Module/Debug/Babel.php:163 +#: src/Module/Debug/Babel.php:149 msgid "Markdown::convert (raw HTML)" msgstr "Markdown::convert (nyers HTML)" -#: src/Module/Debug/Babel.php:168 +#: src/Module/Debug/Babel.php:154 msgid "Markdown::convert" msgstr "Markdown::convert" -#: src/Module/Debug/Babel.php:174 +#: src/Module/Debug/Babel.php:160 msgid "Markdown::toBBCode" msgstr "Markdown::toBBCode" -#: src/Module/Debug/Babel.php:181 +#: src/Module/Debug/Babel.php:167 msgid "Raw HTML input" msgstr "Nyers HTML bevitel" -#: src/Module/Debug/Babel.php:186 +#: src/Module/Debug/Babel.php:172 msgid "HTML Input" msgstr "HTML bevitel" -#: src/Module/Debug/Babel.php:193 +#: src/Module/Debug/Babel.php:179 msgid "HTML Purified (raw)" msgstr "HTML megtisztítva (nyers)" -#: src/Module/Debug/Babel.php:198 +#: src/Module/Debug/Babel.php:184 msgid "HTML Purified (hex)" msgstr "HTML megtisztítva (hexa)" -#: src/Module/Debug/Babel.php:203 +#: src/Module/Debug/Babel.php:189 msgid "HTML Purified" msgstr "HTML megtisztítva" -#: src/Module/Debug/Babel.php:209 +#: src/Module/Debug/Babel.php:195 msgid "HTML::toBBCode" msgstr "HTML::toBBCode" -#: src/Module/Debug/Babel.php:215 +#: src/Module/Debug/Babel.php:201 msgid "HTML::toBBCode => BBCode::convert" msgstr "HTML::toBBCode => BBCode::convert" -#: src/Module/Debug/Babel.php:220 +#: src/Module/Debug/Babel.php:206 msgid "HTML::toBBCode => BBCode::convert (raw HTML)" msgstr "HTML::toBBCode => BBCode::convert (nyers HTML)" -#: src/Module/Debug/Babel.php:226 +#: src/Module/Debug/Babel.php:212 msgid "HTML::toBBCode => BBCode::toPlaintext" msgstr "HTML::toBBCode => BBCode::toPlaintext" -#: src/Module/Debug/Babel.php:232 +#: src/Module/Debug/Babel.php:218 msgid "HTML::toMarkdown" msgstr "HTML::toMarkdown" -#: src/Module/Debug/Babel.php:238 +#: src/Module/Debug/Babel.php:224 msgid "HTML::toPlaintext" msgstr "HTML::toPlaintext" -#: src/Module/Debug/Babel.php:244 +#: src/Module/Debug/Babel.php:230 msgid "HTML::toPlaintext (compact)" msgstr "HTML::toPlaintext (tömör)" -#: src/Module/Debug/Babel.php:262 +#: src/Module/Debug/Babel.php:248 msgid "Decoded post" msgstr "Dekódolt bejegyzés" -#: src/Module/Debug/Babel.php:283 +#: src/Module/Debug/Babel.php:269 msgid "Post array before expand entities" msgstr "A bejegyzéstömb az entitások kiterjesztése előtt" -#: src/Module/Debug/Babel.php:290 +#: src/Module/Debug/Babel.php:276 msgid "Post converted" msgstr "Bejegyzés átalakítva" -#: src/Module/Debug/Babel.php:295 +#: src/Module/Debug/Babel.php:281 msgid "Converted body" msgstr "Átalakított törzs" -#: src/Module/Debug/Babel.php:301 +#: src/Module/Debug/Babel.php:287 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:311 +#: src/Module/Debug/Babel.php:297 msgid "Babel Diagnostic" msgstr "Babel diagnosztika" -#: src/Module/Debug/Babel.php:313 +#: src/Module/Debug/Babel.php:299 msgid "Source text" msgstr "Forrásszöveg" -#: src/Module/Debug/Babel.php:314 +#: src/Module/Debug/Babel.php:300 msgid "BBCode" msgstr "BBCode" -#: src/Module/Debug/Babel.php:316 +#: src/Module/Debug/Babel.php:302 msgid "Markdown" msgstr "Markdown" -#: src/Module/Debug/Babel.php:317 +#: src/Module/Debug/Babel.php:303 msgid "HTML" msgstr "HTML" -#: src/Module/Debug/Babel.php:319 +#: src/Module/Debug/Babel.php:305 msgid "Twitter Source / Tweet URL (requires API key)" msgstr "Twitter forrás vagy Tweet URL (API-kulcsot igényel)" -#: src/Module/Debug/Feed.php:53 src/Module/Filer/SaveTag.php:47 -#: src/Module/Settings/Profile/Index.php:180 +#: src/Module/Debug/Feed.php:39 src/Module/Filer/SaveTag.php:33 +#: src/Module/Settings/Profile/Index.php:166 msgid "You must be logged in to use this module" msgstr "Bejelentkezve kell lennie a modul használatához" -#: src/Module/Debug/Feed.php:78 +#: src/Module/Debug/Feed.php:64 msgid "Source URL" msgstr "Forrás URL" -#: src/Module/Debug/Localtime.php:49 +#: src/Module/Debug/Localtime.php:35 msgid "Time Conversion" msgstr "Időátalakítás" -#: src/Module/Debug/Localtime.php:50 +#: src/Module/Debug/Localtime.php:36 msgid "" "Friendica provides this service for sharing events with other networks and " "friends in unknown timezones." msgstr "A Friendica ezt a szolgáltatást az ismeretlen időzónákban lévő más hálózatokkal és ismerősökkel történő események megosztásához biztosítja." -#: src/Module/Debug/Localtime.php:51 +#: src/Module/Debug/Localtime.php:37 #, php-format msgid "UTC time: %s" msgstr "UTC idő: %s" -#: src/Module/Debug/Localtime.php:54 +#: src/Module/Debug/Localtime.php:40 #, php-format msgid "Current timezone: %s" msgstr "Jelenlegi időzóna: %s" -#: src/Module/Debug/Localtime.php:58 +#: src/Module/Debug/Localtime.php:44 #, php-format msgid "Converted localtime: %s" msgstr "Átalakított helyi idő: %s" -#: src/Module/Debug/Localtime.php:62 +#: src/Module/Debug/Localtime.php:48 msgid "Please select your timezone:" msgstr "Válassza ki az időzónáját:" -#: src/Module/Debug/Probe.php:38 src/Module/Debug/WebFinger.php:37 +#: src/Module/Debug/Probe.php:24 src/Module/Debug/WebFinger.php:23 msgid "Only logged in users are permitted to perform a probing." msgstr "Csak bejelentkezett felhasználóknak engedélyezett a szondázás végrehajtása." -#: src/Module/Debug/Probe.php:52 +#: src/Module/Debug/Probe.php:38 msgid "Probe Diagnostic" msgstr "Szondázási diagnosztika" -#: src/Module/Debug/Probe.php:53 +#: src/Module/Debug/Probe.php:39 msgid "Output" msgstr "Kimenet" -#: src/Module/Debug/Probe.php:56 +#: src/Module/Debug/Probe.php:42 msgid "Lookup address" msgstr "Keresési cím" -#: src/Module/Debug/WebFinger.php:50 +#: src/Module/Debug/WebFinger.php:36 msgid "Webfinger Diagnostic" msgstr "WebFinger diagnosztika" -#: src/Module/Debug/WebFinger.php:52 +#: src/Module/Debug/WebFinger.php:38 msgid "Lookup address:" msgstr "Keresési cím:" -#: src/Module/Directory.php:75 +#: src/Module/Directory.php:61 msgid "No entries (some entries may be hidden)." msgstr "Nincsenek bejegyzések (néhány bejegyzés rejtve lehet)." -#: src/Module/Directory.php:91 +#: src/Module/Directory.php:77 msgid "Find on this site" msgstr "Keresés ezen az oldalon" -#: src/Module/Directory.php:93 +#: src/Module/Directory.php:79 msgid "Results for:" msgstr "Találat erre:" -#: src/Module/Directory.php:95 +#: src/Module/Directory.php:81 msgid "Site Directory" msgstr "Oldal könyvtára" -#: src/Module/Filer/RemoveTag.php:105 +#: src/Module/Filer/RemoveTag.php:91 msgid "Item was not deleted" msgstr "Az elem nem lett törölve" -#: src/Module/Filer/RemoveTag.php:115 +#: src/Module/Filer/RemoveTag.php:101 msgid "Item was not removed" msgstr "Az elem nem lett eltávolítva" -#: src/Module/Filer/SaveTag.php:73 +#: src/Module/Filer/SaveTag.php:59 msgid "- select -" msgstr "– válasszon –" -#: src/Module/FriendSuggest.php:82 +#: src/Module/FriendSuggest.php:68 msgid "Suggested contact not found." msgstr "Az ajánlott partner nem található." -#: src/Module/FriendSuggest.php:100 +#: src/Module/FriendSuggest.php:86 msgid "Friend suggestion sent." msgstr "Az ismerősajánlás elküldve." -#: src/Module/FriendSuggest.php:137 +#: src/Module/FriendSuggest.php:123 msgid "Suggest Friends" msgstr "Ismerősök ajánlása" -#: src/Module/FriendSuggest.php:140 +#: src/Module/FriendSuggest.php:126 #, php-format msgid "Suggest a friend for %s" msgstr "Ismerős ajánlása %s számára" -#: src/Module/Friendica.php:81 +#: src/Module/Friendica.php:67 msgid "Installed addons/apps:" msgstr "Telepített bővítmények vagy alkalmazások:" -#: src/Module/Friendica.php:86 +#: src/Module/Friendica.php:72 msgid "No installed addons/apps" msgstr "Nincsenek telepített bővítmények vagy alkalmazások" -#: src/Module/Friendica.php:91 +#: src/Module/Friendica.php:77 #, php-format msgid "Read about the Terms of Service of this node." msgstr "Olvassa el ennek a csomópontnak a használati feltételeit." -#: src/Module/Friendica.php:98 +#: src/Module/Friendica.php:84 msgid "On this server the following remote servers are blocked." msgstr "Ezen a kiszolgálón a következő távoli kiszolgálók vannak tiltva." -#: src/Module/Friendica.php:101 -#: src/Module/Moderation/Blocklist/Server/Index.php:87 -#: src/Module/Moderation/Blocklist/Server/Index.php:111 -#: src/Module/Settings/Channels.php:232 +#: src/Module/Friendica.php:87 +#: src/Module/Moderation/Blocklist/Server/Index.php:73 +#: src/Module/Moderation/Blocklist/Server/Index.php:97 +#: src/Module/Settings/Channels.php:218 msgid "Reason for the block" msgstr "A tiltás oka" -#: src/Module/Friendica.php:103 +#: src/Module/Friendica.php:89 msgid "Download this list in CSV format" msgstr "A lista letöltése CSV formátumban" -#: src/Module/Friendica.php:117 +#: src/Module/Friendica.php:103 #, php-format msgid "" "This is Friendica, version %s that is running at the web location %s. The " "database version is %s, the post update version is %s." msgstr "Ez egy %s verziójú Friendica, amely a %s helyen fut a weben. Az adatbázis verziója %s, a bejegyzésfrissítés verziója %s." -#: src/Module/Friendica.php:122 +#: src/Module/Friendica.php:108 msgid "" "Please visit Friendi.ca to learn more " "about the Friendica project." msgstr "Látogassa meg a Friendi.ca oldalt, hogy többet tudjon meg a Friendica projektről." -#: src/Module/Friendica.php:123 +#: src/Module/Friendica.php:109 msgid "Bug reports and issues: please visit" msgstr "Hibák és problémák jelentéséhez látogassa meg" -#: src/Module/Friendica.php:123 +#: src/Module/Friendica.php:109 msgid "the bugtracker at github" msgstr "a GitHubon lévő hibakövetőt" -#: src/Module/Friendica.php:124 +#: src/Module/Friendica.php:110 msgid "Suggestions, praise, etc. - please email \"info\" at \"friendi - dot - ca" msgstr "Javaslatokat, dicséretet és egyebeket az „info” kukac friendi pont ca címre küldhet." -#: src/Module/HCard.php:45 +#: src/Module/HCard.php:31 msgid "No profile" msgstr "Nincs profil" -#: src/Module/HTTPException/MethodNotAllowed.php:31 +#: src/Module/HTTPException/MethodNotAllowed.php:17 msgid "Method Not Allowed." msgstr "A módszer nem engedélyezett." -#: src/Module/Help.php:60 +#: src/Module/Help.php:46 msgid "Help:" msgstr "Súgó:" -#: src/Module/Home.php:66 +#: src/Module/Home.php:52 #, php-format msgid "Welcome to %s" msgstr "Üdvözli a(z) %s!" -#: src/Module/Install.php:189 +#: src/Module/Install.php:175 msgid "Friendica Communications Server - Setup" msgstr "Friendica kommunikációs kiszolgáló – Beállítás" -#: src/Module/Install.php:200 +#: src/Module/Install.php:186 msgid "System check" msgstr "Rendszerellenőrzés" -#: src/Module/Install.php:202 src/Module/Install.php:247 -#: src/Module/Install.php:326 +#: src/Module/Install.php:188 src/Module/Install.php:233 +#: src/Module/Install.php:312 msgid "Requirement not satisfied" msgstr "A követelmény nincs kielégítve" -#: src/Module/Install.php:203 +#: src/Module/Install.php:189 msgid "Optional requirement not satisfied" msgstr "A választható követelmény nincs kielégítve" -#: src/Module/Install.php:204 +#: src/Module/Install.php:190 msgid "OK" msgstr "Rendben" -#: src/Module/Install.php:208 +#: src/Module/Install.php:194 msgid "Next" msgstr "Következő" -#: src/Module/Install.php:209 +#: src/Module/Install.php:195 msgid "Check again" msgstr "Ellenőrzés újra" -#: src/Module/Install.php:222 +#: src/Module/Install.php:208 msgid "Base settings" msgstr "Alapvető beállítások" -#: src/Module/Install.php:224 +#: src/Module/Install.php:210 msgid "Base path to installation" msgstr "Alap útvonal a telepítéshez" -#: src/Module/Install.php:226 +#: src/Module/Install.php:212 msgid "" "If the system cannot detect the correct path to your installation, enter the" " correct path here. This setting should only be set if you are using a " "restricted system and symbolic links to your webroot." msgstr "Ha a rendszer nem tudja felismerni a helyes útvonalat a telepítéshez, akkor itt adja meg a helyes útvonalat. Ezt a beállítást csak akkor kell megadni, ha korlátozott rendszert és a webgyökérre mutató szimbolikus hivatkozásokat használ." -#: src/Module/Install.php:229 +#: src/Module/Install.php:215 msgid "The Friendica system URL" msgstr "A Friendica rendszer URL-je" -#: src/Module/Install.php:231 +#: src/Module/Install.php:217 msgid "" "Overwrite this field in case the system URL determination isn't right, " "otherwise leave it as is." msgstr "Abban az esetben írja felül ezt a mezőt, ha a rendszer URL-meghatározása nem megfelelő, egyébként hagyja változatlanul." -#: src/Module/Install.php:242 +#: src/Module/Install.php:228 msgid "Database connection" msgstr "Adatbázis-kapcsolat" -#: src/Module/Install.php:243 +#: src/Module/Install.php:229 msgid "" "In order to install Friendica we need to know how to connect to your " "database." msgstr "A Friendica telepítése érdekében tudnunk kell, hogy hogyan kell kapcsolódni az adatbázisához." -#: src/Module/Install.php:244 +#: src/Module/Install.php:230 msgid "" "Please contact your hosting provider or site administrator if you have " "questions about these settings." msgstr "Vegye fel a kapcsolatot a tárhelyszolgáltatóval vagy az oldal adminisztrátorával, ha kérdései vannak ezekkel a beállításokkal kapcsolatban." -#: src/Module/Install.php:245 +#: src/Module/Install.php:231 msgid "" "The database you specify below should already exist. If it does not, please " "create it before continuing." msgstr "A lent megadott adatbázisnak már léteznie kell. Ha még nem létezik, akkor hozza létre a folytatás előtt." -#: src/Module/Install.php:252 +#: src/Module/Install.php:238 msgid "Database Server Name" msgstr "Adatbázis-kiszolgáló neve" -#: src/Module/Install.php:257 +#: src/Module/Install.php:243 msgid "Database Login Name" msgstr "Adatbázis bejelentkezési neve" -#: src/Module/Install.php:263 +#: src/Module/Install.php:249 msgid "Database Login Password" msgstr "Adatbázis bejelentkezési jelszava" -#: src/Module/Install.php:265 +#: src/Module/Install.php:251 msgid "For security reasons the password must not be empty" msgstr "Biztonsági okokból a jelszó nem lehet üres" -#: src/Module/Install.php:268 +#: src/Module/Install.php:254 msgid "Database Name" msgstr "Adatbázis neve" -#: src/Module/Install.php:272 src/Module/Install.php:300 +#: src/Module/Install.php:258 src/Module/Install.php:286 msgid "Please select a default timezone for your website" msgstr "Válasszon egy alapértelmezett időzónát a weboldalához" -#: src/Module/Install.php:287 +#: src/Module/Install.php:273 msgid "Site settings" msgstr "Oldalbeállítások" -#: src/Module/Install.php:295 +#: src/Module/Install.php:281 msgid "Site administrator email address" msgstr "Oldal adminisztrátorának e-mail-címe" -#: src/Module/Install.php:297 +#: src/Module/Install.php:283 msgid "" "Your account email address must match this in order to use the web admin " "panel." msgstr "A fiókja e-mail-címének egyeznie kell ezzel a webes adminisztrátori panel használata érdekében." -#: src/Module/Install.php:304 +#: src/Module/Install.php:290 msgid "System Language:" msgstr "Rendszer nyelve:" -#: src/Module/Install.php:306 +#: src/Module/Install.php:292 msgid "" "Set the default language for your Friendica installation interface and to " "send emails." msgstr "Az alapértelmezett nyelv beállítása a Friendica telepítésnek felületéhez és az e-mailek küldéséhez." -#: src/Module/Install.php:318 +#: src/Module/Install.php:304 msgid "Your Friendica site database has been installed." msgstr "A Friendica oldalának adatbázisa telepítve lett." -#: src/Module/Install.php:328 +#: src/Module/Install.php:314 msgid "Installation finished" msgstr "A telepítés befejeződött" -#: src/Module/Install.php:348 +#: src/Module/Install.php:334 msgid "

What next

" msgstr "

Mi következik?

" -#: src/Module/Install.php:349 +#: src/Module/Install.php:335 msgid "" "IMPORTANT: You will need to [manually] setup a scheduled task for the " "worker." msgstr "FONTOS: be kell állítania [kézzel] egy ütemezett feladatot a feldolgozóhoz." -#: src/Module/Install.php:352 +#: src/Module/Install.php:338 #, php-format msgid "" "Go to your new Friendica node registration page " @@ -7704,40 +7699,40 @@ msgid "" " administrator email. This will allow you to enter the site admin panel." msgstr "Menjen az új Friendica csomópont regisztrációs oldalára, és regisztráljon új felhasználóként. Ne felejtse el ugyanazt az e-mail-címet használni, mint amelyet adminisztrátori e-mail-címként adott meg. Ez lehetővé fogja tenni az oldal adminisztrátori paneljére történő belépést." -#: src/Module/Invite.php:57 +#: src/Module/Invite.php:43 msgid "Total invitation limit exceeded." msgstr "Az összes meghívás korlátja túllépve." -#: src/Module/Invite.php:82 +#: src/Module/Invite.php:68 #, php-format msgid "%s : Not a valid email address." msgstr "%s: nem érvényes e-mail-cím." -#: src/Module/Invite.php:108 +#: src/Module/Invite.php:94 msgid "Please join us on Friendica" msgstr "Csatlakozzon hozzánk a Friendica hálózatán" -#: src/Module/Invite.php:117 +#: src/Module/Invite.php:103 msgid "Invitation limit exceeded. Please contact your site administrator." msgstr "A meghíváskorlát túllépve. Vegye fel a kapcsolatot az oldal adminisztrátorával." -#: src/Module/Invite.php:121 +#: src/Module/Invite.php:107 #, php-format msgid "%s : Message delivery failed." msgstr "%s: az üzenetkézbesítés sikertelen." -#: src/Module/Invite.php:125 +#: src/Module/Invite.php:111 #, php-format msgid "%d message sent." msgid_plural "%d messages sent." msgstr[0] "%d üzenet elküldve." msgstr[1] "%d üzenet elküldve." -#: src/Module/Invite.php:143 +#: src/Module/Invite.php:129 msgid "You have no more invitations available" msgstr "Nincs több elérhető meghívása" -#: src/Module/Invite.php:150 +#: src/Module/Invite.php:136 #, php-format msgid "" "Visit %s for a list of public sites that you can join. Friendica members on " @@ -7745,14 +7740,14 @@ msgid "" " other social networks." msgstr "Látogassa meg a %s oldalt azon nyilvános oldalak listájáért, amelyekhez csatlakozhat. A egyéb oldalakon lévő Friendica-tagok mindegyike tud egymással kapcsolódni, valamint számos más közösségi hálózat tagjaival is." -#: src/Module/Invite.php:152 +#: src/Module/Invite.php:138 #, php-format msgid "" "To accept this invitation, please visit and register at %s or any other " "public Friendica website." msgstr "A meghívás elfogadásához látogasson el és regisztráljon a(z) %s címen vagy bármely más nyilvános Friendica weboldalon." -#: src/Module/Invite.php:153 +#: src/Module/Invite.php:139 #, php-format msgid "" "Friendica sites all inter-connect to create a huge privacy-enhanced social " @@ -7761,337 +7756,337 @@ msgid "" "sites you can join." msgstr "A Friendica oldalak mindegyike össze van kapcsolva, hogy egy hatalmas, fokozott magánszféra-védelemmel ellátott közösségi hálót hozzanak létre, amelyet a tagjai birtokolnak és vezérelnek. A tagok képesek sok hagyományos közösségi hálózathoz is kapcsolódni. Nézze meg a(z) %s oldalt azon alternatív Friendica oldalak listájáért, amelyekhez csatlakozhat." -#: src/Module/Invite.php:157 +#: src/Module/Invite.php:143 msgid "" "Our apologies. This system is not currently configured to connect with other" " public sites or invite members." msgstr "Elnézést kérünk. Ez a rendszer jelenleg nem úgy van beállítva, hogy más nyilvános oldalakhoz kapcsolódjon vagy tagokat hívjon meg." -#: src/Module/Invite.php:160 +#: src/Module/Invite.php:146 msgid "" "Friendica sites all inter-connect to create a huge privacy-enhanced social " "web that is owned and controlled by its members. They can also connect with " "many traditional social networks." msgstr "A Friendica oldalak mindegyike össze van kapcsolva, hogy egy hatalmas, fokozott magánszféra-védelemmel ellátott közösségi hálót hozzanak létre, amelyet a tagjai birtokolnak és vezérelnek. A tagok képesek sok hagyományos közösségi hálózathoz is kapcsolódni." -#: src/Module/Invite.php:159 +#: src/Module/Invite.php:145 #, php-format msgid "To accept this invitation, please visit and register at %s." msgstr "A meghívás elfogadásához látogasson el és regisztráljon a(z) %s címen." -#: src/Module/Invite.php:167 +#: src/Module/Invite.php:153 msgid "Send invitations" msgstr "Meghívások küldése" -#: src/Module/Invite.php:168 +#: src/Module/Invite.php:154 msgid "Enter email addresses, one per line:" msgstr "Adja meg az e-mail-címeket, soronként egyet:" -#: src/Module/Invite.php:172 +#: src/Module/Invite.php:158 msgid "" "You are cordially invited to join me and other close friends on Friendica - " "and help us to create a better social web." msgstr "Szeretettel meghívom Önt, hogy csatlakozzon hozzám és más közeli ismerősökhöz a Friendica hálózatán – és segítsen nekünk egy jobb közösségi hálót létrehozni." -#: src/Module/Invite.php:174 +#: src/Module/Invite.php:160 msgid "You will need to supply this invitation code: $invite_code" msgstr "Meg kell majd adnia ezt a meghívási kódot: $invite_code" -#: src/Module/Invite.php:174 +#: src/Module/Invite.php:160 msgid "" "Once you have registered, please connect with me via my profile page at:" msgstr "Miután regisztrált, lépjen velem kapcsolatba a profiloldalamon keresztül itt:" -#: src/Module/Invite.php:176 +#: src/Module/Invite.php:162 msgid "" "For more information about the Friendica project and why we feel it is " "important, please visit http://friendi.ca" msgstr "A Friendica projekttel kapcsolatos további információkért, valamint hogy miért tartjuk ezt fontosnak, látogasson el a https://friendi.ca/ oldalra." -#: src/Module/Item/Compose.php:94 +#: src/Module/Item/Compose.php:80 msgid "Please enter a post body." msgstr "Adjon meg egy bejegyzéstörzset." -#: src/Module/Item/Compose.php:105 +#: src/Module/Item/Compose.php:91 msgid "This feature is only available with the frio theme." msgstr "Ez a funkció csak a frio témával érhető el." -#: src/Module/Item/Compose.php:129 +#: src/Module/Item/Compose.php:115 msgid "Compose new personal note" msgstr "Új személyes jegyzet írása" -#: src/Module/Item/Compose.php:138 +#: src/Module/Item/Compose.php:124 msgid "Compose new post" msgstr "Új bejegyzés írása" -#: src/Module/Item/Compose.php:194 +#: src/Module/Item/Compose.php:180 msgid "Visibility" msgstr "Láthatóság" -#: src/Module/Item/Compose.php:210 +#: src/Module/Item/Compose.php:196 msgid "Clear the location" msgstr "A hely törlése" -#: src/Module/Item/Compose.php:211 +#: src/Module/Item/Compose.php:197 msgid "Location services are unavailable on your device" msgstr "A helymeghatározó szolgáltatások nem érhetők el az Ön eszközén" -#: src/Module/Item/Compose.php:212 +#: src/Module/Item/Compose.php:198 msgid "" "Location services are disabled. Please check the website's permissions on " "your device" msgstr "A helymeghatározó szolgáltatások le vannak tiltva. Ellenőrizze a weboldal jogosultságait az Ön eszközén" -#: src/Module/Item/Compose.php:218 +#: src/Module/Item/Compose.php:204 msgid "" "You can make this page always open when you use the New Post button in the " "Theme Customization settings." msgstr "Mindig megnyitottá teheti ezt az oldalt, ha a téma személyre szabási beállításaiban lévő új bejegyzés gombot használja." -#: src/Module/Item/Feed.php:86 +#: src/Module/Item/Feed.php:72 msgid "The feed for this item is unavailable." msgstr "Ennek az elemnek a hírforrása nem érhető el." -#: src/Module/Item/Follow.php:51 +#: src/Module/Item/Follow.php:37 msgid "Unable to follow this item." msgstr "Nem lehet követni ezt az elemet." -#: src/Module/Maintenance.php:48 src/Module/Maintenance.php:53 +#: src/Module/Maintenance.php:34 src/Module/Maintenance.php:39 msgid "System down for maintenance" msgstr "A rendszer le van kapcsolva a karbantartáshoz" -#: src/Module/Maintenance.php:54 +#: src/Module/Maintenance.php:40 msgid "" "This Friendica node is currently in maintenance mode, either automatically " "because it is self-updating or manually by the node administrator. This " "condition should be temporary, please come back in a few minutes." msgstr "Ez a Friendica csomópont jelenleg karbantartási módban van, vagy automatikusan, mert épp önmagát frissíti, vagy kézileg a csomópont adminisztrátora által. Ennek az állapotnak átmenetinek kell lennie, jöjjön vissza néhány perc múlva." -#: src/Module/Manifest.php:40 +#: src/Module/Manifest.php:26 msgid "A Decentralized Social Network" msgstr "Egy decentralizált közösségi hálózat" -#: src/Module/Media/Attachment/Browser.php:58 -#: src/Module/Media/Photo/Browser.php:59 +#: src/Module/Media/Attachment/Browser.php:44 +#: src/Module/Media/Photo/Browser.php:45 msgid "You need to be logged in to access this page." msgstr "Bejelentkezve kell lennie az oldalhoz való hozzáféréshez." -#: src/Module/Media/Attachment/Browser.php:74 +#: src/Module/Media/Attachment/Browser.php:60 msgid "Files" msgstr "Fájlok" -#: src/Module/Media/Attachment/Browser.php:79 -#: src/Module/Media/Photo/Browser.php:90 -#: src/Module/Settings/Profile/Photo/Index.php:127 +#: src/Module/Media/Attachment/Browser.php:65 +#: src/Module/Media/Photo/Browser.php:76 +#: src/Module/Settings/Profile/Photo/Index.php:113 msgid "Upload" msgstr "Feltöltés" -#: src/Module/Media/Attachment/Upload.php:97 +#: src/Module/Media/Attachment/Upload.php:83 msgid "Sorry, maybe your upload is bigger than the PHP configuration allows" msgstr "Elnézést, talán a feltöltése nagyobb annál, amit a PHP beállítása megenged" -#: src/Module/Media/Attachment/Upload.php:97 +#: src/Module/Media/Attachment/Upload.php:83 msgid "Or - did you try to upload an empty file?" msgstr "Vagy – egy üres fájlt próbált meg feltölteni?" -#: src/Module/Media/Attachment/Upload.php:104 +#: src/Module/Media/Attachment/Upload.php:90 #, php-format msgid "File exceeds size limit of %s" msgstr "A fájl meghaladja a beállított %s méretkorlátot" -#: src/Module/Media/Attachment/Upload.php:114 +#: src/Module/Media/Attachment/Upload.php:100 msgid "File upload failed." msgstr "A fájl feltöltése sikertelen." -#: src/Module/Media/Photo/Upload.php:150 src/Module/Media/Photo/Upload.php:151 -#: src/Module/Profile/Photos.php:215 -#: src/Module/Settings/Profile/Photo/Index.php:67 +#: src/Module/Media/Photo/Upload.php:136 src/Module/Media/Photo/Upload.php:137 +#: src/Module/Profile/Photos.php:201 +#: src/Module/Settings/Profile/Photo/Index.php:53 msgid "Unable to process image." msgstr "Nem lehet feldolgozni a képet." -#: src/Module/Media/Photo/Upload.php:176 src/Module/Profile/Photos.php:235 -#: src/Module/Settings/Profile/Photo/Index.php:94 +#: src/Module/Media/Photo/Upload.php:162 src/Module/Profile/Photos.php:221 +#: src/Module/Settings/Profile/Photo/Index.php:80 msgid "Image upload failed." msgstr "A kép feltöltése sikertelen." -#: src/Module/Moderation/BaseUsers.php:72 +#: src/Module/Moderation/BaseUsers.php:59 msgid "List of all users" msgstr "Összes felhasználó listája" -#: src/Module/Moderation/BaseUsers.php:77 +#: src/Module/Moderation/BaseUsers.php:64 msgid "Active" msgstr "Aktív" -#: src/Module/Moderation/BaseUsers.php:80 +#: src/Module/Moderation/BaseUsers.php:67 msgid "List of active accounts" msgstr "Aktív fiókok listája" -#: src/Module/Moderation/BaseUsers.php:88 +#: src/Module/Moderation/BaseUsers.php:75 msgid "List of pending registrations" msgstr "Függőben lévő regisztrációk listája" -#: src/Module/Moderation/BaseUsers.php:96 +#: src/Module/Moderation/BaseUsers.php:83 msgid "List of blocked users" msgstr "Tiltott felhasználók listája" -#: src/Module/Moderation/BaseUsers.php:101 +#: src/Module/Moderation/BaseUsers.php:88 msgid "Deleted" msgstr "Törölve" -#: src/Module/Moderation/BaseUsers.php:104 +#: src/Module/Moderation/BaseUsers.php:91 msgid "List of pending user deletions" msgstr "Függőben lévő felhasználó-törlések listája" -#: src/Module/Moderation/BaseUsers.php:119 src/Module/Settings/Account.php:487 +#: src/Module/Moderation/BaseUsers.php:108 src/Module/Settings/Account.php:473 msgid "Normal Account Page" msgstr "Normál fiókoldal" -#: src/Module/Moderation/BaseUsers.php:120 src/Module/Settings/Account.php:494 +#: src/Module/Moderation/BaseUsers.php:109 src/Module/Settings/Account.php:480 msgid "Soapbox Page" msgstr "Szappantartó oldal" -#: src/Module/Moderation/BaseUsers.php:121 src/Module/Settings/Account.php:501 +#: src/Module/Moderation/BaseUsers.php:110 src/Module/Settings/Account.php:487 msgid "Public Group" msgstr "Nyilvános csoport" -#: src/Module/Moderation/BaseUsers.php:122 src/Module/Settings/Account.php:508 +#: src/Module/Moderation/BaseUsers.php:111 src/Module/Settings/Account.php:494 msgid "Public Group - Restricted" msgstr "Nyilvános csoport – korlátozott" -#: src/Module/Moderation/BaseUsers.php:123 src/Module/Settings/Account.php:515 +#: src/Module/Moderation/BaseUsers.php:112 src/Module/Settings/Account.php:501 msgid "Automatic Friend Page" msgstr "Automatikus ismerős oldal" -#: src/Module/Moderation/BaseUsers.php:124 +#: src/Module/Moderation/BaseUsers.php:113 msgid "Private Group" msgstr "Személyes csoport" -#: src/Module/Moderation/BaseUsers.php:127 -#: src/Module/Moderation/Summary.php:53 src/Module/Settings/Account.php:458 +#: src/Module/Moderation/BaseUsers.php:116 +#: src/Module/Moderation/Summary.php:39 src/Module/Settings/Account.php:444 msgid "Personal Page" msgstr "Személyes oldal" -#: src/Module/Moderation/BaseUsers.php:128 -#: src/Module/Moderation/Summary.php:54 src/Module/Settings/Account.php:465 +#: src/Module/Moderation/BaseUsers.php:117 +#: src/Module/Moderation/Summary.php:40 src/Module/Settings/Account.php:451 msgid "Organisation Page" msgstr "Szervezeti oldal" -#: src/Module/Moderation/BaseUsers.php:129 -#: src/Module/Moderation/Summary.php:55 src/Module/Settings/Account.php:472 +#: src/Module/Moderation/BaseUsers.php:118 +#: src/Module/Moderation/Summary.php:41 src/Module/Settings/Account.php:458 msgid "News Page" msgstr "Hírek oldal" -#: src/Module/Moderation/BaseUsers.php:130 -#: src/Module/Moderation/Summary.php:56 src/Module/Settings/Account.php:479 +#: src/Module/Moderation/BaseUsers.php:119 +#: src/Module/Moderation/Summary.php:42 src/Module/Settings/Account.php:465 msgid "Community Group" msgstr "Közösségi csoport" -#: src/Module/Moderation/Blocklist/Contact.php:70 +#: src/Module/Moderation/Blocklist/Contact.php:56 msgid "You can't block a local contact, please block the user instead" msgstr "Nem tilthat egy helyi partnert, inkább a felhasználót tiltsa" -#: src/Module/Moderation/Blocklist/Contact.php:89 +#: src/Module/Moderation/Blocklist/Contact.php:75 #, php-format msgid "%s contact unblocked" msgid_plural "%s contacts unblocked" msgstr[0] "%s partner tiltása feloldva" msgstr[1] "%s partner tiltása feloldva" -#: src/Module/Moderation/Blocklist/Contact.php:111 +#: src/Module/Moderation/Blocklist/Contact.php:97 msgid "Remote Contact Blocklist" msgstr "Távoli partnerek tiltólistája" -#: src/Module/Moderation/Blocklist/Contact.php:112 +#: src/Module/Moderation/Blocklist/Contact.php:98 msgid "" "This page allows you to prevent any message from a remote contact to reach " "your node." msgstr "Ez az oldal lehetővé teszi, hogy megakadályozzon egy távoli partnertől származó minden üzenetet, amely elérné a csomópontját." -#: src/Module/Moderation/Blocklist/Contact.php:113 +#: src/Module/Moderation/Blocklist/Contact.php:99 msgid "Block Remote Contact" msgstr "Távoli partner tiltása" -#: src/Module/Moderation/Blocklist/Contact.php:114 -#: src/Module/Moderation/Users/Active.php:135 -#: src/Module/Moderation/Users/Blocked.php:135 -#: src/Module/Moderation/Users/Index.php:149 -#: src/Module/Moderation/Users/Pending.php:98 +#: src/Module/Moderation/Blocklist/Contact.php:100 +#: src/Module/Moderation/Users/Active.php:121 +#: src/Module/Moderation/Users/Blocked.php:121 +#: src/Module/Moderation/Users/Index.php:135 +#: src/Module/Moderation/Users/Pending.php:84 msgid "select all" msgstr "összes kijelölése" -#: src/Module/Moderation/Blocklist/Contact.php:115 +#: src/Module/Moderation/Blocklist/Contact.php:101 msgid "select none" msgstr "kijelölés törlése" -#: src/Module/Moderation/Blocklist/Contact.php:118 +#: src/Module/Moderation/Blocklist/Contact.php:104 msgid "No remote contact is blocked from this node." msgstr "Nincs olyan távoli partner, aki tiltva lenne erről a csomópontról." -#: src/Module/Moderation/Blocklist/Contact.php:120 +#: src/Module/Moderation/Blocklist/Contact.php:106 msgid "Blocked Remote Contacts" msgstr "Tiltott távoli partnerek" -#: src/Module/Moderation/Blocklist/Contact.php:121 +#: src/Module/Moderation/Blocklist/Contact.php:107 msgid "Block New Remote Contact" msgstr "Új távoli partner tiltása" -#: src/Module/Moderation/Blocklist/Contact.php:122 -#: src/Module/Moderation/Reports.php:116 +#: src/Module/Moderation/Blocklist/Contact.php:108 +#: src/Module/Moderation/Reports.php:102 msgid "Photo" msgstr "Fénykép" -#: src/Module/Moderation/Blocklist/Contact.php:122 +#: src/Module/Moderation/Blocklist/Contact.php:108 msgid "Reason" msgstr "Indok" -#: src/Module/Moderation/Blocklist/Contact.php:128 +#: src/Module/Moderation/Blocklist/Contact.php:114 #, php-format msgid "%s total blocked contact" msgid_plural "%s total blocked contacts" msgstr[0] "Összesen %s tiltott partner" msgstr[1] "Összesen %s tiltott partner" -#: src/Module/Moderation/Blocklist/Contact.php:131 +#: src/Module/Moderation/Blocklist/Contact.php:117 msgid "URL of the remote contact to block." msgstr "A tiltandó távoli partner URL-je." -#: src/Module/Moderation/Blocklist/Contact.php:132 +#: src/Module/Moderation/Blocklist/Contact.php:118 msgid "Also purge contact" msgstr "Távolítsa el a partnert is" -#: src/Module/Moderation/Blocklist/Contact.php:132 +#: src/Module/Moderation/Blocklist/Contact.php:118 msgid "" "Removes all content related to this contact from the node. Keeps the contact" " record. This action cannot be undone." msgstr "Eltávolítja az ehhez a partnerhez kapcsolódó összes partnert a csomópontról. Megtartja a partner rekordját. Ezt a műveletet nem lehet visszavonni." -#: src/Module/Moderation/Blocklist/Contact.php:133 -#: src/Module/Moderation/Blocklist/Server/Import.php:124 +#: src/Module/Moderation/Blocklist/Contact.php:119 +#: src/Module/Moderation/Blocklist/Server/Import.php:108 msgid "Block Reason" msgstr "Tiltás oka" -#: src/Module/Moderation/Blocklist/Server/Add.php:80 +#: src/Module/Moderation/Blocklist/Server/Add.php:66 msgid "Server domain pattern added to the blocklist." msgstr "A tiltólistához hozzáadott kiszolgáló tartománymintája." -#: src/Module/Moderation/Blocklist/Server/Add.php:88 +#: src/Module/Moderation/Blocklist/Server/Add.php:74 #, php-format msgid "%s server scheduled to be purged." msgid_plural "%s servers scheduled to be purged." msgstr[0] "%s kiszolgáló van ütemezve eltávolításra." msgstr[1] "%s kiszolgáló van ütemezve eltávolításra." -#: src/Module/Moderation/Blocklist/Server/Add.php:120 -#: src/Module/Moderation/Blocklist/Server/Import.php:117 +#: src/Module/Moderation/Blocklist/Server/Add.php:106 +#: src/Module/Moderation/Blocklist/Server/Import.php:101 msgid "← Return to the list" msgstr "← Vissza a listához" -#: src/Module/Moderation/Blocklist/Server/Add.php:122 +#: src/Module/Moderation/Blocklist/Server/Add.php:108 msgid "Block A New Server Domain Pattern" msgstr "Új kiszolgálótartomány-minta tiltása" -#: src/Module/Moderation/Blocklist/Server/Add.php:123 -#: src/Module/Moderation/Blocklist/Server/Index.php:99 +#: src/Module/Moderation/Blocklist/Server/Add.php:109 +#: src/Module/Moderation/Blocklist/Server/Index.php:85 msgid "" "

The server domain pattern syntax is case-insensitive shell wildcard, comprising the following special characters:

\n" "
    \n" @@ -8100,57 +8095,57 @@ msgid "" "
" msgstr "

A kiszolgálótartomány-minta szintaxisa kis- és nagybetű-érzéketlen parancsértelmezői helyettesítő karakter, amely a következő különleges karakterekből áll:

\n
    \n\t
  • *: Tetszőleges számú karakter
  • \n\t
  • ?: Egy önálló karakter
  • \n
" -#: src/Module/Moderation/Blocklist/Server/Add.php:128 -#: src/Module/Moderation/Blocklist/Server/Index.php:107 +#: src/Module/Moderation/Blocklist/Server/Add.php:114 +#: src/Module/Moderation/Blocklist/Server/Index.php:93 msgid "Check pattern" msgstr "Minta ellenőrzése" -#: src/Module/Moderation/Blocklist/Server/Add.php:129 +#: src/Module/Moderation/Blocklist/Server/Add.php:115 msgid "Matching known servers" msgstr "Illeszkedő ismert kiszolgálók" -#: src/Module/Moderation/Blocklist/Server/Add.php:130 -#: src/Module/Settings/Server/Action.php:76 -#: src/Module/Settings/Server/Index.php:106 +#: src/Module/Moderation/Blocklist/Server/Add.php:116 +#: src/Module/Settings/Server/Action.php:62 +#: src/Module/Settings/Server/Index.php:92 msgid "Server Name" msgstr "Kiszolgáló neve" -#: src/Module/Moderation/Blocklist/Server/Add.php:131 +#: src/Module/Moderation/Blocklist/Server/Add.php:117 msgid "Server Domain" msgstr "Kiszolgáló tartománya" -#: src/Module/Moderation/Blocklist/Server/Add.php:132 +#: src/Module/Moderation/Blocklist/Server/Add.php:118 msgid "Known Contacts" msgstr "Ismert partnerek" -#: src/Module/Moderation/Blocklist/Server/Add.php:133 +#: src/Module/Moderation/Blocklist/Server/Add.php:119 #, php-format msgid "%d known server" msgid_plural "%d known servers" msgstr[0] "%d ismert kiszolgáló" msgstr[1] "%d ismert kiszolgáló" -#: src/Module/Moderation/Blocklist/Server/Add.php:134 +#: src/Module/Moderation/Blocklist/Server/Add.php:120 msgid "Add pattern to the blocklist" msgstr "Minta hozzáadása a tiltólistához" -#: src/Module/Moderation/Blocklist/Server/Add.php:136 -#: src/Module/Moderation/Blocklist/Server/Index.php:116 +#: src/Module/Moderation/Blocklist/Server/Add.php:122 +#: src/Module/Moderation/Blocklist/Server/Index.php:102 msgid "Server Domain Pattern" msgstr "Kiszolgálótartomány-minta" -#: src/Module/Moderation/Blocklist/Server/Add.php:136 -#: src/Module/Moderation/Blocklist/Server/Index.php:116 +#: src/Module/Moderation/Blocklist/Server/Add.php:122 +#: src/Module/Moderation/Blocklist/Server/Index.php:102 msgid "" "The domain pattern of the new server to add to the blocklist. Do not include" " the protocol." msgstr "A tiltólistához hozzáadandó új kiszolgáló tartományának mintája. Ne tegye bele a protokollt." -#: src/Module/Moderation/Blocklist/Server/Add.php:137 +#: src/Module/Moderation/Blocklist/Server/Add.php:123 msgid "Purge server" msgstr "Kiszolgáló eltávolítása" -#: src/Module/Moderation/Blocklist/Server/Add.php:137 +#: src/Module/Moderation/Blocklist/Server/Add.php:123 msgid "" "Also purges all the locally stored content authored by the known contacts " "registered on that server. Keeps the contacts and the server records. This " @@ -8162,301 +8157,301 @@ msgid_plural "" msgstr[0] "Eltávolítja az összes olyan helyileg tárolt tartalmat is, amelyet az adott kiszolgálón regisztrált ismert partnerek hoztak létre. Megtartja a partnereket és a kiszolgáló rekordjait. Ezt a művelet nem lehet visszavonni." msgstr[1] "Eltávolítja az összes olyan helyileg tárolt tartalmat is, amelyet az adott kiszolgálókon regisztrált ismert partnerek hoztak létre. Megtartja a partnereket és a kiszolgálók rekordjait. Ezt a művelet nem lehet visszavonni." -#: src/Module/Moderation/Blocklist/Server/Add.php:138 +#: src/Module/Moderation/Blocklist/Server/Add.php:124 msgid "Block reason" msgstr "Tiltás oka" -#: src/Module/Moderation/Blocklist/Server/Add.php:138 +#: src/Module/Moderation/Blocklist/Server/Add.php:124 msgid "" "The reason why you blocked this server domain pattern. This reason will be " "shown publicly in the server information page." msgstr "Az ok, amiért kitiltotta ezt a kiszolgálótartomány-mintát. Az ok nyilvánosan meg lesz jelenítve a kiszolgáló információs oldalán." -#: src/Module/Moderation/Blocklist/Server/Import.php:74 -#: src/Module/Moderation/Blocklist/Server/Import.php:83 +#: src/Module/Moderation/Blocklist/Server/Import.php:60 +#: src/Module/Moderation/Blocklist/Server/Import.php:67 msgid "Error importing pattern file" msgstr "Hiba a mintafájl importálásakor" -#: src/Module/Moderation/Blocklist/Server/Import.php:89 +#: src/Module/Moderation/Blocklist/Server/Import.php:74 msgid "Local blocklist replaced with the provided file." msgstr "A helyi tiltólista le lett cserélve a megadott fájllal." -#: src/Module/Moderation/Blocklist/Server/Import.php:93 +#: src/Module/Moderation/Blocklist/Server/Import.php:78 #, php-format msgid "%d pattern was added to the local blocklist." msgid_plural "%d patterns were added to the local blocklist." msgstr[0] "%d minta lett hozzáadva a helyi tiltólistához." msgstr[1] "%d minta lett hozzáadva a helyi tiltólistához." -#: src/Module/Moderation/Blocklist/Server/Import.php:95 +#: src/Module/Moderation/Blocklist/Server/Import.php:80 msgid "No pattern was added to the local blocklist." msgstr "Nem lett minta hozzáadva a helyi tiltólistához." -#: src/Module/Moderation/Blocklist/Server/Import.php:119 +#: src/Module/Moderation/Blocklist/Server/Import.php:103 msgid "Import a Server Domain Pattern Blocklist" msgstr "Kiszolgálótartomány-minta tiltólista importálása" -#: src/Module/Moderation/Blocklist/Server/Import.php:120 +#: src/Module/Moderation/Blocklist/Server/Import.php:104 msgid "" "

This file can be downloaded from the /friendica path of any " "Friendica server.

" msgstr "

Ez a fájl letölthető bármely Friendica kiszolgáló /friendica útvonaláról.

" -#: src/Module/Moderation/Blocklist/Server/Import.php:121 -#: src/Module/Moderation/Blocklist/Server/Index.php:106 +#: src/Module/Moderation/Blocklist/Server/Import.php:105 +#: src/Module/Moderation/Blocklist/Server/Index.php:92 msgid "Upload file" msgstr "Fájl feltöltése" -#: src/Module/Moderation/Blocklist/Server/Import.php:122 +#: src/Module/Moderation/Blocklist/Server/Import.php:106 msgid "Patterns to import" msgstr "Importálandó minták" -#: src/Module/Moderation/Blocklist/Server/Import.php:123 +#: src/Module/Moderation/Blocklist/Server/Import.php:107 msgid "Domain Pattern" msgstr "Tartományminta" -#: src/Module/Moderation/Blocklist/Server/Import.php:125 +#: src/Module/Moderation/Blocklist/Server/Import.php:109 msgid "Import Mode" msgstr "Mód importálása" -#: src/Module/Moderation/Blocklist/Server/Import.php:126 +#: src/Module/Moderation/Blocklist/Server/Import.php:110 msgid "Import Patterns" msgstr "Minták importálása" -#: src/Module/Moderation/Blocklist/Server/Import.php:127 +#: src/Module/Moderation/Blocklist/Server/Import.php:111 #, php-format msgid "%d total pattern" msgid_plural "%d total patterns" msgstr[0] "%d minta összesen" msgstr[1] "%d minta összesen" -#: src/Module/Moderation/Blocklist/Server/Import.php:129 -#: src/Module/Moderation/Blocklist/Server/Index.php:115 +#: src/Module/Moderation/Blocklist/Server/Import.php:113 +#: src/Module/Moderation/Blocklist/Server/Index.php:101 msgid "Server domain pattern blocklist CSV file" msgstr "Kiszolgálótartomány-minta tiltólista CSV-fájl" -#: src/Module/Moderation/Blocklist/Server/Import.php:130 +#: src/Module/Moderation/Blocklist/Server/Import.php:114 msgid "Append" msgstr "Hozzáfűzés" -#: src/Module/Moderation/Blocklist/Server/Import.php:130 +#: src/Module/Moderation/Blocklist/Server/Import.php:114 msgid "" "Imports patterns from the file that weren't already existing in the current " "blocklist." msgstr "Olyan mintákat importál a fájlból, amelyek még nem léteztek a jelenlegi tiltólistán." -#: src/Module/Moderation/Blocklist/Server/Import.php:131 +#: src/Module/Moderation/Blocklist/Server/Import.php:115 msgid "Replace" msgstr "Csere" -#: src/Module/Moderation/Blocklist/Server/Import.php:131 +#: src/Module/Moderation/Blocklist/Server/Import.php:115 msgid "Replaces the current blocklist by the imported patterns." msgstr "Lecseréli a jelenlegi tiltólistát az importált mintákkal." -#: src/Module/Moderation/Blocklist/Server/Index.php:86 -#: src/Module/Moderation/Blocklist/Server/Index.php:110 -#: src/Module/Settings/Channels.php:231 +#: src/Module/Moderation/Blocklist/Server/Index.php:72 +#: src/Module/Moderation/Blocklist/Server/Index.php:96 +#: src/Module/Settings/Channels.php:217 msgid "Blocked server domain pattern" msgstr "Tiltott kiszolgálótartomány-minta" -#: src/Module/Moderation/Blocklist/Server/Index.php:88 +#: src/Module/Moderation/Blocklist/Server/Index.php:74 msgid "Delete server domain pattern" msgstr "Kiszolgálótartomány-minta törlése" -#: src/Module/Moderation/Blocklist/Server/Index.php:88 +#: src/Module/Moderation/Blocklist/Server/Index.php:74 msgid "Check to delete this entry from the blocklist" msgstr "Jelölje be a bejegyzés tiltólistából való törléséhez" -#: src/Module/Moderation/Blocklist/Server/Index.php:96 +#: src/Module/Moderation/Blocklist/Server/Index.php:82 msgid "Server Domain Pattern Blocklist" msgstr "Kiszolgálótartomány-minta tiltólistája" -#: src/Module/Moderation/Blocklist/Server/Index.php:97 +#: src/Module/Moderation/Blocklist/Server/Index.php:83 msgid "" "This page can be used to define a blocklist of server domain patterns from " "the federated network that are not allowed to interact with your node. For " "each domain pattern you should also provide the reason why you block it." msgstr "Ez az oldal használható a föderált hálózatból származó azon kiszolgálótartomány-minták tiltólistájának meghatározásához, amelyeknek nem engedélyezett kapcsolatba lépniük az Ön csomópontjával. Minden egyes tartománymintához meg kell adnia az indokot is, hogy miért tiltja azt." -#: src/Module/Moderation/Blocklist/Server/Index.php:98 +#: src/Module/Moderation/Blocklist/Server/Index.php:84 msgid "" "The list of blocked server domain patterns will be made publically available" " on the /friendica page so that your users and " "people investigating communication problems can find the reason easily." msgstr "A tiltott kiszolgálótartomány-minták listája nyilvánosan elérhetővé lesz téve a /friendica oldalon, azért hogy a kommunikációs problémákat kivizsgáló felhasználók és emberek egyszerűen megtalálják az okot." -#: src/Module/Moderation/Blocklist/Server/Index.php:104 +#: src/Module/Moderation/Blocklist/Server/Index.php:90 msgid "Import server domain pattern blocklist" msgstr "Kiszolgálótartomány-minta tiltólistájának importálása" -#: src/Module/Moderation/Blocklist/Server/Index.php:105 +#: src/Module/Moderation/Blocklist/Server/Index.php:91 msgid "Add new entry to the blocklist" msgstr "Új bejegyzés hozzáadása a tiltólistához" -#: src/Module/Moderation/Blocklist/Server/Index.php:108 +#: src/Module/Moderation/Blocklist/Server/Index.php:94 msgid "Save changes to the blocklist" msgstr "Változtatások mentése a tiltólistába" -#: src/Module/Moderation/Blocklist/Server/Index.php:109 +#: src/Module/Moderation/Blocklist/Server/Index.php:95 msgid "Current Entries in the Blocklist" msgstr "Jelenlegi bejegyzések a tiltólistán" -#: src/Module/Moderation/Blocklist/Server/Index.php:112 +#: src/Module/Moderation/Blocklist/Server/Index.php:98 msgid "Delete entry from the blocklist" msgstr "Bejegyzés törlése a tiltólistáról" -#: src/Module/Moderation/Blocklist/Server/Index.php:113 +#: src/Module/Moderation/Blocklist/Server/Index.php:99 msgid "Delete entry from the blocklist?" msgstr "Törli a bejegyzést a tiltólistáról?" -#: src/Module/Moderation/Item/Delete.php:50 +#: src/Module/Moderation/Item/Delete.php:36 msgid "Item marked for deletion." msgstr "Az elem megjelölve törlésre." -#: src/Module/Moderation/Item/Delete.php:63 +#: src/Module/Moderation/Item/Delete.php:49 msgid "Delete this Item" msgstr "Az elem törlése" -#: src/Module/Moderation/Item/Delete.php:64 +#: src/Module/Moderation/Item/Delete.php:50 msgid "" "On this page you can delete an item from your node. If the item is a top " "level posting, the entire thread will be deleted." msgstr "Ezen az oldalon törölhet egy elemet a csomópontjáról. Ha az elem egy felső szintű beküldés, akkor a teljes szál törlésre fog kerülni." -#: src/Module/Moderation/Item/Delete.php:65 +#: src/Module/Moderation/Item/Delete.php:51 msgid "" "You need to know the GUID of the item. You can find it e.g. by looking at " "the display URL. The last part of http://example.com/display/123456 is the " "GUID, here 123456." msgstr "Tudnia kell az elem GUID értékét. Ezt megtalálhatja például a megjelenített URL-re tekintve. A http://example.com/display/123456 utolsó része a GUID, itt az 123456." -#: src/Module/Moderation/Item/Delete.php:67 +#: src/Module/Moderation/Item/Delete.php:53 msgid "GUID" msgstr "GUID" -#: src/Module/Moderation/Item/Delete.php:67 +#: src/Module/Moderation/Item/Delete.php:53 msgid "The GUID of the item you want to delete." msgstr "Annak az elemnek GUID értéke, amelyet törölni szeretne." -#: src/Module/Moderation/Item/Source.php:83 +#: src/Module/Moderation/Item/Source.php:69 msgid "Item Id" msgstr "Elemazonosító" -#: src/Module/Moderation/Item/Source.php:84 +#: src/Module/Moderation/Item/Source.php:70 msgid "Item URI" msgstr "Elem URI" -#: src/Module/Moderation/Item/Source.php:86 +#: src/Module/Moderation/Item/Source.php:72 msgid "Terms" msgstr "Kifejezések" -#: src/Module/Moderation/Item/Source.php:87 +#: src/Module/Moderation/Item/Source.php:73 msgid "Tag" msgstr "Címke" -#: src/Module/Moderation/Item/Source.php:88 -#: src/Module/Moderation/Users/Active.php:126 -#: src/Module/Moderation/Users/Blocked.php:126 -#: src/Module/Moderation/Users/Index.php:140 +#: src/Module/Moderation/Item/Source.php:74 +#: src/Module/Moderation/Users/Active.php:112 +#: src/Module/Moderation/Users/Blocked.php:112 +#: src/Module/Moderation/Users/Index.php:126 msgid "Type" msgstr "Típus" -#: src/Module/Moderation/Item/Source.php:89 +#: src/Module/Moderation/Item/Source.php:75 msgid "Term" msgstr "Kifejezés" -#: src/Module/Moderation/Item/Source.php:90 +#: src/Module/Moderation/Item/Source.php:76 msgid "URL" msgstr "URL" -#: src/Module/Moderation/Item/Source.php:92 +#: src/Module/Moderation/Item/Source.php:78 msgid "Implicit Mention" msgstr "Implicit említés" -#: src/Module/Moderation/Item/Source.php:94 +#: src/Module/Moderation/Item/Source.php:80 msgid "Item not found" msgstr "Az elem nem található" -#: src/Module/Moderation/Item/Source.php:95 +#: src/Module/Moderation/Item/Source.php:81 msgid "No source recorded" msgstr "Nincs forrás rögzítve" -#: src/Module/Moderation/Item/Source.php:96 +#: src/Module/Moderation/Item/Source.php:82 msgid "" "Please make sure the debug.store_source config key is set in " "config/local.config.php for future items to have sources." msgstr "Győződjön meg arról, hogy a debug.store_source beállítási kulcs be van-e állítva a config/local.config.php fájlban, hogy a jövőbeli elemek forrásokkal rendelkezzenek." -#: src/Module/Moderation/Item/Source.php:98 +#: src/Module/Moderation/Item/Source.php:84 msgid "Item Guid" msgstr "Elem GUID értéke" -#: src/Module/Moderation/Report/Create.php:95 +#: src/Module/Moderation/Report/Create.php:81 msgid "Contact not found or their server is already blocked on this node." msgstr "A partner nem található, vagy a kiszolgálója már tiltva van ezen a csomóponton." -#: src/Module/Moderation/Report/Create.php:136 +#: src/Module/Moderation/Report/Create.php:122 msgid "Please login to access this page." msgstr "Jelentkezzen be az oldal eléréséhez." -#: src/Module/Moderation/Report/Create.php:165 -#: src/Module/Moderation/Report/Create.php:180 -#: src/Module/Moderation/Report/Create.php:208 -#: src/Module/Moderation/Report/Create.php:260 -#: src/Module/Moderation/Report/Create.php:279 +#: src/Module/Moderation/Report/Create.php:151 +#: src/Module/Moderation/Report/Create.php:166 +#: src/Module/Moderation/Report/Create.php:194 +#: src/Module/Moderation/Report/Create.php:246 +#: src/Module/Moderation/Report/Create.php:265 msgid "Create Moderation Report" msgstr "Moderálási jelentés létrehozása" -#: src/Module/Moderation/Report/Create.php:166 +#: src/Module/Moderation/Report/Create.php:152 msgid "Pick Contact" msgstr "Partner kiválasztása" -#: src/Module/Moderation/Report/Create.php:167 +#: src/Module/Moderation/Report/Create.php:153 msgid "" "Please enter below the contact address or profile URL you would like to " "create a moderation report about." msgstr "Adja meg lent a partner címét vagy a profiljának URL-jét, amelyről moderálási jelentést szeretne létrehozni." -#: src/Module/Moderation/Report/Create.php:171 +#: src/Module/Moderation/Report/Create.php:157 msgid "Contact address/URL" msgstr "Partner címe vagy URL-je" -#: src/Module/Moderation/Report/Create.php:181 +#: src/Module/Moderation/Report/Create.php:167 msgid "Pick Category" msgstr "Kategória kiválasztása" -#: src/Module/Moderation/Report/Create.php:182 +#: src/Module/Moderation/Report/Create.php:168 msgid "Please pick below the category of your report." msgstr "Válassza ki lent a jelentés kategóriáját." -#: src/Module/Moderation/Report/Create.php:186 -#: src/Module/Moderation/Report/Create.php:311 +#: src/Module/Moderation/Report/Create.php:172 +#: src/Module/Moderation/Report/Create.php:297 msgid "Spam" msgstr "Kéretlen üzenet" -#: src/Module/Moderation/Report/Create.php:186 +#: src/Module/Moderation/Report/Create.php:172 msgid "" "This contact is publishing many repeated/overly long posts/replies or " "advertising their product/websites in otherwise irrelevant conversations." msgstr "Ez a partner sok ismétlődő vagy túl hosszú bejegyzést vagy választ tesz közzé, illetve egyébként nem kapcsolódó beszélgetésekben reklámozza a termékét vagy weboldalait." -#: src/Module/Moderation/Report/Create.php:187 -#: src/Module/Moderation/Report/Create.php:312 +#: src/Module/Moderation/Report/Create.php:173 +#: src/Module/Moderation/Report/Create.php:298 msgid "Illegal Content" msgstr "Illegális tartalom" -#: src/Module/Moderation/Report/Create.php:187 +#: src/Module/Moderation/Report/Create.php:173 msgid "" "This contact is publishing content that is considered illegal in this node's" " hosting juridiction." msgstr "Ez a partner olyan tartalmat tesz közzé, amely a csomópont tárhelyének joghatósága szerint illegálisnak minősül." -#: src/Module/Moderation/Report/Create.php:188 -#: src/Module/Moderation/Report/Create.php:313 +#: src/Module/Moderation/Report/Create.php:174 +#: src/Module/Moderation/Report/Create.php:299 msgid "Community Safety" msgstr "Közösségi biztonság" -#: src/Module/Moderation/Report/Create.php:188 +#: src/Module/Moderation/Report/Create.php:174 msgid "" "This contact aggravated you or other people, by being provocative or " "insensitive, intentionally or not. This includes disclosing people's private" @@ -8464,12 +8459,12 @@ msgid "" "replies." msgstr "Ez a partner provokációval vagy érzéketlenséggel, szándékosan vagy akaratlanul, de felbosszantotta Önt vagy másokat. Ebbe beletartozik az emberek személyes adatainak felfedése (doxolás), fenyegetések vagy sértő képek közzététele a bejegyzésekben vagy válaszokban." -#: src/Module/Moderation/Report/Create.php:189 -#: src/Module/Moderation/Report/Create.php:314 +#: src/Module/Moderation/Report/Create.php:175 +#: src/Module/Moderation/Report/Create.php:300 msgid "Unwanted Content/Behavior" msgstr "Nemkívánatos tartalom vagy viselkedés" -#: src/Module/Moderation/Report/Create.php:189 +#: src/Module/Moderation/Report/Create.php:175 msgid "" "This contact has repeatedly published content irrelevant to the node's theme" " or is openly criticizing the node's administration/moderation without " @@ -8477,89 +8472,89 @@ msgid "" "nitpicking on a sensitive topic." msgstr "Ez a partner ismételten a csomópont témájához nem kapcsolódó tartalmakat tesz közzé, nyíltan kritizálja a csomópont adminisztrációját és moderálását, anélkül hogy például közvetlenül kapcsolatba lépett volna az érintettekkel, vagy ismételten feszeget egy érzékeny témát." -#: src/Module/Moderation/Report/Create.php:190 -#: src/Module/Moderation/Report/Create.php:315 +#: src/Module/Moderation/Report/Create.php:176 +#: src/Module/Moderation/Report/Create.php:301 msgid "Rules Violation" msgstr "Szabályok megszegése" -#: src/Module/Moderation/Report/Create.php:190 +#: src/Module/Moderation/Report/Create.php:176 msgid "" "This contact violated one or more rules of this node. You will be able to " "pick which one(s) in the next step." msgstr "Ez a partner megszegte a csomópont egy vagy több szabályát. A következő lépésben kiválaszthatja, hogy melyeket." -#: src/Module/Moderation/Report/Create.php:191 +#: src/Module/Moderation/Report/Create.php:177 msgid "" "Please elaborate below why you submitted this report. The more details you " "provide, the better your report can be handled." msgstr "Az alábbiakban részletezze, hogy miért küldte be ezt a jelentést. Minél több részletet ad meg, annál jobban lehet kezelni a jelentését." -#: src/Module/Moderation/Report/Create.php:193 +#: src/Module/Moderation/Report/Create.php:179 msgid "Additional Information" msgstr "További információk" -#: src/Module/Moderation/Report/Create.php:193 +#: src/Module/Moderation/Report/Create.php:179 msgid "" "Please provide any additional information relevant to this particular " "report. You will be able to attach posts by this contact in the next step, " "but any context is welcome." msgstr "Adjon meg bármilyen további információt, amely az adott jelentéssel kapcsolatos. A következő lépésben csatolhatja az ettől a partnertől származó bejegyzéseket, de bármilyen további információt is szívesen fogadunk." -#: src/Module/Moderation/Report/Create.php:209 +#: src/Module/Moderation/Report/Create.php:195 msgid "Pick Rules" msgstr "Szabályok kiválasztása" -#: src/Module/Moderation/Report/Create.php:210 +#: src/Module/Moderation/Report/Create.php:196 msgid "Please pick below the node rules you believe this contact violated." msgstr "Válassza ki az alábbiakban azokat a csomópontszabályokat, amelyeket Ön szerint a partner megszegett." -#: src/Module/Moderation/Report/Create.php:261 +#: src/Module/Moderation/Report/Create.php:247 msgid "Pick Posts" msgstr "Bejegyzések kiválasztása" -#: src/Module/Moderation/Report/Create.php:262 +#: src/Module/Moderation/Report/Create.php:248 msgid "Please optionally pick posts to attach to your report." msgstr "Esetlegesen válassza ki a jelentéséhez csatolandó bejegyzéseket." -#: src/Module/Moderation/Report/Create.php:281 +#: src/Module/Moderation/Report/Create.php:267 msgid "Submit Report" msgstr "Jelentés elküldése" -#: src/Module/Moderation/Report/Create.php:282 +#: src/Module/Moderation/Report/Create.php:268 msgid "Further Action" msgstr "További művelet" -#: src/Module/Moderation/Report/Create.php:283 +#: src/Module/Moderation/Report/Create.php:269 msgid "" "You can also perform one of the following action on the contact you " "reported:" msgstr "Az alábbi műveletek egyikét is végrehajthatja a jelentett partnerrel kapcsolatban:" -#: src/Module/Moderation/Report/Create.php:291 +#: src/Module/Moderation/Report/Create.php:277 msgid "Nothing" msgstr "Semmi" -#: src/Module/Moderation/Report/Create.php:292 +#: src/Module/Moderation/Report/Create.php:278 msgid "Collapse contact" msgstr "Partner összecsukása" -#: src/Module/Moderation/Report/Create.php:292 +#: src/Module/Moderation/Report/Create.php:278 msgid "" "Their posts and replies will keep appearing in your Network page but their " "content will be collapsed by default." msgstr "A bejegyzéseik és válaszaik továbbra is megjelennek a hálózat oldalon, de a tartalmuk alapértelmezetten össze lesz csukva." -#: src/Module/Moderation/Report/Create.php:293 +#: src/Module/Moderation/Report/Create.php:279 msgid "" "Their posts won't appear in your Network page anymore, but their replies can" " appear in forum threads. They still can follow you." msgstr "A bejegyzéseik nem jelennek meg többé a hálózat oldalon, de a válaszaik megjelenhetnek a fórum szálaiban. Továbbra is követhetik Önt." -#: src/Module/Moderation/Report/Create.php:294 +#: src/Module/Moderation/Report/Create.php:280 msgid "Block contact" msgstr "Partner tiltása" -#: src/Module/Moderation/Report/Create.php:294 +#: src/Module/Moderation/Report/Create.php:280 msgid "" "Their posts won't appear in your Network page anymore, but their replies can" " appear in forum threads, with their content collapsed by default. They " @@ -8567,708 +8562,694 @@ msgid "" "means." msgstr "A bejegyzéseik nem jelennek meg többé a hálózat oldalon, de a válaszaik megjelenhetnek a fórum szálaiban alapértelmezetten összecsukott tartalommal. Nem követhetik Önt, de más módon továbbra is hozzáférhetnek az Ön nyilvános bejegyzéseihez." -#: src/Module/Moderation/Report/Create.php:297 +#: src/Module/Moderation/Report/Create.php:283 msgid "Forward report" msgstr "Jelentés továbbítása" -#: src/Module/Moderation/Report/Create.php:297 +#: src/Module/Moderation/Report/Create.php:283 msgid "Would you ike to forward this report to the remote server?" msgstr "Szeretné továbbítani ezt a jelentést a távoli kiszolgálóra?" -#: src/Module/Moderation/Report/Create.php:330 +#: src/Module/Moderation/Report/Create.php:316 msgid "1. Pick a contact" msgstr "1. Partner kiválasztása" -#: src/Module/Moderation/Report/Create.php:331 +#: src/Module/Moderation/Report/Create.php:317 msgid "2. Pick a category" msgstr "2. Kategória kiválasztása" -#: src/Module/Moderation/Report/Create.php:332 +#: src/Module/Moderation/Report/Create.php:318 msgid "2a. Pick rules" msgstr "2a. Szabályok kiválasztása" -#: src/Module/Moderation/Report/Create.php:333 +#: src/Module/Moderation/Report/Create.php:319 msgid "2b. Add comment" msgstr "2b. Megjegyzés hozzáadása" -#: src/Module/Moderation/Report/Create.php:334 +#: src/Module/Moderation/Report/Create.php:320 msgid "3. Pick posts" msgstr "3. Bejegyzések kiválasztása" -#: src/Module/Moderation/Reports.php:111 +#: src/Module/Moderation/Reports.php:97 msgid "List of reports" msgstr "Jelentések listája" -#: src/Module/Moderation/Reports.php:112 +#: src/Module/Moderation/Reports.php:98 msgid "This page display reports created by our or remote users." msgstr "Ez az oldal a saját vagy a távoli felhasználók által létrehozott jelentéseket jeleníti meg." -#: src/Module/Moderation/Reports.php:113 +#: src/Module/Moderation/Reports.php:99 msgid "No report exists at this node." msgstr "Nem létezik jelentés ezen a csomóponton." -#: src/Module/Moderation/Reports.php:116 +#: src/Module/Moderation/Reports.php:102 msgid "Category" msgstr "Kategória" -#: src/Module/Moderation/Reports.php:120 +#: src/Module/Moderation/Reports.php:106 #, php-format msgid "%s total report" msgid_plural "%s total reports" msgstr[0] "%s jelentés összesen" msgstr[1] "%s jelentés összesen" -#: src/Module/Moderation/Reports.php:123 +#: src/Module/Moderation/Reports.php:109 msgid "URL of the reported contact." msgstr "A jelentett partner URL-je." -#: src/Module/Moderation/Summary.php:57 src/Module/Settings/Account.php:436 +#: src/Module/Moderation/Summary.php:43 src/Module/Settings/Account.php:422 msgid "Channel Relay" msgstr "Csatornatovábbítás" -#: src/Module/Moderation/Summary.php:77 +#: src/Module/Moderation/Summary.php:63 msgid "Registered users" msgstr "Regisztrált felhasználók" -#: src/Module/Moderation/Summary.php:79 +#: src/Module/Moderation/Summary.php:65 msgid "Pending registrations" msgstr "Függőben lévő regisztrációk" -#: src/Module/Moderation/Users/Active.php:43 -#: src/Module/Moderation/Users/Index.php:43 +#: src/Module/Moderation/Users/Active.php:29 +#: src/Module/Moderation/Users/Index.php:29 #, php-format msgid "%s user blocked" msgid_plural "%s users blocked" msgstr[0] "%s felhasználó tiltva" msgstr[1] "%s felhasználó tiltva" -#: src/Module/Moderation/Users/Active.php:51 -#: src/Module/Moderation/Users/Active.php:85 -#: src/Module/Moderation/Users/Blocked.php:51 -#: src/Module/Moderation/Users/Blocked.php:85 -#: src/Module/Moderation/Users/Index.php:58 -#: src/Module/Moderation/Users/Index.php:92 +#: src/Module/Moderation/Users/Active.php:37 +#: src/Module/Moderation/Users/Active.php:71 +#: src/Module/Moderation/Users/Blocked.php:37 +#: src/Module/Moderation/Users/Blocked.php:71 +#: src/Module/Moderation/Users/Index.php:44 +#: src/Module/Moderation/Users/Index.php:78 msgid "You can't remove yourself" msgstr "Nem távolíthatja el önmagát" -#: src/Module/Moderation/Users/Active.php:55 -#: src/Module/Moderation/Users/Blocked.php:55 -#: src/Module/Moderation/Users/Index.php:62 +#: src/Module/Moderation/Users/Active.php:41 +#: src/Module/Moderation/Users/Blocked.php:41 +#: src/Module/Moderation/Users/Index.php:48 #, php-format msgid "%s user deleted" msgid_plural "%s users deleted" msgstr[0] "%s felhasználó törölve" msgstr[1] "%s felhasználó törölve" -#: src/Module/Moderation/Users/Active.php:83 -#: src/Module/Moderation/Users/Blocked.php:83 -#: src/Module/Moderation/Users/Index.php:90 +#: src/Module/Moderation/Users/Active.php:69 +#: src/Module/Moderation/Users/Blocked.php:69 +#: src/Module/Moderation/Users/Index.php:76 #, php-format msgid "User \"%s\" deleted" msgstr "„%s” felhasználó törölve" -#: src/Module/Moderation/Users/Active.php:93 -#: src/Module/Moderation/Users/Index.php:100 +#: src/Module/Moderation/Users/Active.php:79 +#: src/Module/Moderation/Users/Index.php:86 #, php-format msgid "User \"%s\" blocked" msgstr "„%s” felhasználó tiltva" -#: src/Module/Moderation/Users/Active.php:126 -#: src/Module/Moderation/Users/Blocked.php:126 -#: src/Module/Moderation/Users/Deleted.php:83 -#: src/Module/Moderation/Users/Index.php:140 -#: src/Module/Moderation/Users/Index.php:160 +#: src/Module/Moderation/Users/Active.php:112 +#: src/Module/Moderation/Users/Blocked.php:112 +#: src/Module/Moderation/Users/Deleted.php:69 +#: src/Module/Moderation/Users/Index.php:126 +#: src/Module/Moderation/Users/Index.php:146 msgid "Register date" msgstr "Regisztráció dátuma" -#: src/Module/Moderation/Users/Active.php:126 -#: src/Module/Moderation/Users/Blocked.php:126 -#: src/Module/Moderation/Users/Deleted.php:83 -#: src/Module/Moderation/Users/Index.php:140 -#: src/Module/Moderation/Users/Index.php:160 +#: src/Module/Moderation/Users/Active.php:112 +#: src/Module/Moderation/Users/Blocked.php:112 +#: src/Module/Moderation/Users/Deleted.php:69 +#: src/Module/Moderation/Users/Index.php:126 +#: src/Module/Moderation/Users/Index.php:146 msgid "Last login" msgstr "Utolsó bejelentkezés" -#: src/Module/Moderation/Users/Active.php:126 -#: src/Module/Moderation/Users/Blocked.php:126 -#: src/Module/Moderation/Users/Deleted.php:83 -#: src/Module/Moderation/Users/Index.php:140 -#: src/Module/Moderation/Users/Index.php:160 +#: src/Module/Moderation/Users/Active.php:112 +#: src/Module/Moderation/Users/Blocked.php:112 +#: src/Module/Moderation/Users/Deleted.php:69 +#: src/Module/Moderation/Users/Index.php:126 +#: src/Module/Moderation/Users/Index.php:146 msgid "Last public item" msgstr "Utolsó nyilvános elem" -#: src/Module/Moderation/Users/Active.php:134 +#: src/Module/Moderation/Users/Active.php:120 msgid "Active Accounts" msgstr "Aktív fiókok" -#: src/Module/Moderation/Users/Active.php:138 -#: src/Module/Moderation/Users/Blocked.php:137 -#: src/Module/Moderation/Users/Index.php:153 +#: src/Module/Moderation/Users/Active.php:124 +#: src/Module/Moderation/Users/Blocked.php:123 +#: src/Module/Moderation/Users/Index.php:139 msgid "User blocked" msgstr "Felhasználó tiltva" -#: src/Module/Moderation/Users/Active.php:139 -#: src/Module/Moderation/Users/Blocked.php:139 -#: src/Module/Moderation/Users/Index.php:155 +#: src/Module/Moderation/Users/Active.php:125 +#: src/Module/Moderation/Users/Blocked.php:125 +#: src/Module/Moderation/Users/Index.php:141 msgid "Site admin" msgstr "Oldal adminisztrátor" -#: src/Module/Moderation/Users/Active.php:140 -#: src/Module/Moderation/Users/Blocked.php:140 -#: src/Module/Moderation/Users/Index.php:156 +#: src/Module/Moderation/Users/Active.php:126 +#: src/Module/Moderation/Users/Blocked.php:126 +#: src/Module/Moderation/Users/Index.php:142 msgid "Account expired" msgstr "A fiók lejárt" -#: src/Module/Moderation/Users/Active.php:141 -#: src/Module/Moderation/Users/Index.php:159 +#: src/Module/Moderation/Users/Active.php:127 +#: src/Module/Moderation/Users/Index.php:145 msgid "Create a new user" msgstr "Új felhasználó létrehozása" -#: src/Module/Moderation/Users/Active.php:147 -#: src/Module/Moderation/Users/Blocked.php:146 -#: src/Module/Moderation/Users/Index.php:165 +#: src/Module/Moderation/Users/Active.php:133 +#: src/Module/Moderation/Users/Blocked.php:132 +#: src/Module/Moderation/Users/Index.php:151 msgid "" "Selected users will be deleted!\\n\\nEverything these users had posted on " "this site will be permanently deleted!\\n\\nAre you sure?" msgstr "A kijelölt felhasználók törölve lesznek!\\n\\nMinden, amit ezek a felhasználók erre az oldalra beküldtek, véglegesen törölve lesz!\\n\\nBiztos benne?" -#: src/Module/Moderation/Users/Active.php:148 -#: src/Module/Moderation/Users/Blocked.php:147 -#: src/Module/Moderation/Users/Index.php:166 +#: src/Module/Moderation/Users/Active.php:134 +#: src/Module/Moderation/Users/Blocked.php:133 +#: src/Module/Moderation/Users/Index.php:152 msgid "" "The user {0} will be deleted!\\n\\nEverything this user has posted on this " "site will be permanently deleted!\\n\\nAre you sure?" msgstr "{0} felhasználó törölve lesz!\\n\\nMinden, amit ez a felhasználó erre az oldalra beküldött, véglegesen törölve lesz!\\n\\nBiztos benne?" -#: src/Module/Moderation/Users/Blocked.php:43 -#: src/Module/Moderation/Users/Index.php:50 +#: src/Module/Moderation/Users/Blocked.php:29 +#: src/Module/Moderation/Users/Index.php:36 #, php-format msgid "%s user unblocked" msgid_plural "%s users unblocked" msgstr[0] "%s felhasználó tiltása feloldva" msgstr[1] "%s felhasználó tiltása feloldva" -#: src/Module/Moderation/Users/Blocked.php:92 -#: src/Module/Moderation/Users/Index.php:106 +#: src/Module/Moderation/Users/Blocked.php:78 +#: src/Module/Moderation/Users/Index.php:92 #, php-format msgid "User \"%s\" unblocked" msgstr "„%s” felhasználó tiltása feloldva" -#: src/Module/Moderation/Users/Blocked.php:134 +#: src/Module/Moderation/Users/Blocked.php:120 msgid "Blocked Users" msgstr "Tiltott felhasználók" -#: src/Module/Moderation/Users/Create.php:62 +#: src/Module/Moderation/Users/Create.php:48 msgid "New User" msgstr "Új felhasználó" -#: src/Module/Moderation/Users/Create.php:63 +#: src/Module/Moderation/Users/Create.php:49 msgid "Add User" msgstr "Felhasználó hozzáadása" -#: src/Module/Moderation/Users/Create.php:70 +#: src/Module/Moderation/Users/Create.php:56 msgid "Name of the new user." msgstr "Az új felhasználó neve." -#: src/Module/Moderation/Users/Create.php:71 +#: src/Module/Moderation/Users/Create.php:57 msgid "Nickname" msgstr "Becenév" -#: src/Module/Moderation/Users/Create.php:71 +#: src/Module/Moderation/Users/Create.php:57 msgid "Nickname of the new user." msgstr "Az új felhasználó beceneve." -#: src/Module/Moderation/Users/Create.php:72 +#: src/Module/Moderation/Users/Create.php:58 msgid "Email address of the new user." msgstr "Az új felhasználó e-mail-címe." -#: src/Module/Moderation/Users/Deleted.php:81 +#: src/Module/Moderation/Users/Deleted.php:67 msgid "Users awaiting permanent deletion" msgstr "Végleges törlésre váró felhasználók" -#: src/Module/Moderation/Users/Deleted.php:83 -#: src/Module/Moderation/Users/Index.php:160 +#: src/Module/Moderation/Users/Deleted.php:69 +#: src/Module/Moderation/Users/Index.php:146 msgid "Permanent deletion" msgstr "Végleges törlés" -#: src/Module/Moderation/Users/Index.php:150 +#: src/Module/Moderation/Users/Index.php:136 msgid "User waiting for permanent deletion" msgstr "Végleges törlésre váró felhasználó" -#: src/Module/Moderation/Users/Pending.php:44 +#: src/Module/Moderation/Users/Pending.php:30 #, php-format msgid "%s user approved" msgid_plural "%s users approved" msgstr[0] "%s felhasználó jóváhagyva" msgstr[1] "%s felhasználó jóváhagyva" -#: src/Module/Moderation/Users/Pending.php:51 +#: src/Module/Moderation/Users/Pending.php:37 #, php-format msgid "%s registration revoked" msgid_plural "%s registrations revoked" msgstr[0] "%s regisztráció visszavonva" msgstr[1] "%s regisztráció visszavonva" -#: src/Module/Moderation/Users/Pending.php:76 +#: src/Module/Moderation/Users/Pending.php:62 msgid "Account approved." msgstr "Fiók jóváhagyva." -#: src/Module/Moderation/Users/Pending.php:82 +#: src/Module/Moderation/Users/Pending.php:68 msgid "Registration revoked" msgstr "Regisztráció visszavonva" -#: src/Module/Moderation/Users/Pending.php:97 +#: src/Module/Moderation/Users/Pending.php:83 msgid "User registrations awaiting review" msgstr "Felülvizsgálatra váró felhasználói regisztrációk" -#: src/Module/Moderation/Users/Pending.php:99 +#: src/Module/Moderation/Users/Pending.php:85 msgid "Request date" msgstr "Kérés dátuma" -#: src/Module/Moderation/Users/Pending.php:100 +#: src/Module/Moderation/Users/Pending.php:86 msgid "No registrations." msgstr "Nincsenek regisztrációk." -#: src/Module/Moderation/Users/Pending.php:101 +#: src/Module/Moderation/Users/Pending.php:87 msgid "Note from the user" msgstr "Jegyzet a felhasználótól" -#: src/Module/Moderation/Users/Pending.php:103 +#: src/Module/Moderation/Users/Pending.php:89 msgid "Deny" msgstr "Elutasítás" -#: src/Module/Notifications/Introductions.php:105 +#: src/Module/Notifications/Introductions.php:91 msgid "Show Ignored Requests" msgstr "Mellőzött kérések megjelenítése" -#: src/Module/Notifications/Introductions.php:105 +#: src/Module/Notifications/Introductions.php:91 msgid "Hide Ignored Requests" msgstr "Mellőzött kérések elrejtése" -#: src/Module/Notifications/Introductions.php:121 -#: src/Module/Notifications/Introductions.php:184 +#: src/Module/Notifications/Introductions.php:107 +#: src/Module/Notifications/Introductions.php:170 msgid "Notification type:" msgstr "Értesítés típusa:" -#: src/Module/Notifications/Introductions.php:124 +#: src/Module/Notifications/Introductions.php:110 msgid "Suggested by:" msgstr "Ajánlotta:" -#: src/Module/Notifications/Introductions.php:149 +#: src/Module/Notifications/Introductions.php:135 msgid "Claims to be known to you: " msgstr "Azt állítja, hogy Ön ismeri: " -#: src/Module/Notifications/Introductions.php:158 +#: src/Module/Notifications/Introductions.php:144 msgid "Shall your connection be bidirectional or not?" msgstr "Legyen a kapcsolata kétirányú vagy sem?" -#: src/Module/Notifications/Introductions.php:159 +#: src/Module/Notifications/Introductions.php:145 #, php-format msgid "" "Accepting %s as a friend allows %s to subscribe to your posts, and you will " "also receive updates from them in your news feed." msgstr "%s ismerősként való elfogadása lehetővé teszi %s számára, hogy feliratkozzon a bejegyzéseire, és Ön is frissítéseket fog kapni tőle a hírforrásában." -#: src/Module/Notifications/Introductions.php:160 +#: src/Module/Notifications/Introductions.php:146 #, php-format msgid "" "Accepting %s as a subscriber allows them to subscribe to your posts, but you" " will not receive updates from them in your news feed." msgstr "%s feliratkozóként való elfogadása lehetővé teszi számára, hogy feliratkozzon a bejegyzéseire, de Ön nem fog frissítéseket kapni tőle a hírforrásában." -#: src/Module/Notifications/Introductions.php:162 +#: src/Module/Notifications/Introductions.php:148 msgid "Friend" msgstr "Ismerős" -#: src/Module/Notifications/Introductions.php:163 +#: src/Module/Notifications/Introductions.php:149 msgid "Subscriber" msgstr "Feliratkozó" -#: src/Module/Notifications/Introductions.php:222 +#: src/Module/Notifications/Introductions.php:208 msgid "No introductions." msgstr "Nincsenek bemutatkozások." -#: src/Module/Notifications/Introductions.php:223 -#: src/Module/Notifications/Notifications.php:141 +#: src/Module/Notifications/Introductions.php:209 +#: src/Module/Notifications/Notifications.php:127 #, php-format msgid "No more %s notifications." msgstr "Nincs több %s értesítés." -#: src/Module/Notifications/Notification.php:135 +#: src/Module/Notifications/Notification.php:121 msgid "You must be logged in to show this page." msgstr "Bejelentkezve kell lennie az oldal megtekintéséhez." -#: src/Module/Notifications/Notifications.php:66 +#: src/Module/Notifications/Notifications.php:52 msgid "Network Notifications" msgstr "Hálózati értesítések" -#: src/Module/Notifications/Notifications.php:72 +#: src/Module/Notifications/Notifications.php:58 msgid "System Notifications" msgstr "Rendszerértesítések" -#: src/Module/Notifications/Notifications.php:78 +#: src/Module/Notifications/Notifications.php:64 msgid "Personal Notifications" msgstr "Személyes értesítések" -#: src/Module/Notifications/Notifications.php:84 +#: src/Module/Notifications/Notifications.php:70 msgid "Home Notifications" msgstr "Saját értesítések" -#: src/Module/Notifications/Notifications.php:146 +#: src/Module/Notifications/Notifications.php:132 msgid "Show unread" msgstr "Olvasatlanok megjelenítése" -#: src/Module/Notifications/Ping.php:220 +#: src/Module/Notifications/Ping.php:206 msgid "{0} requested registration" msgstr "{0} regisztrációt kért" -#: src/Module/Notifications/Ping.php:229 +#: src/Module/Notifications/Ping.php:215 #, php-format msgid "{0} and %d others requested registration" msgstr "{0} és még %d személy regisztrációt kért" -#: src/Module/OAuth/Acknowledge.php:51 +#: src/Module/OAuth/Acknowledge.php:37 msgid "Authorize application connection" msgstr "Alkalmazáskapcsolat felhatalmazása" -#: src/Module/OAuth/Acknowledge.php:53 +#: src/Module/OAuth/Acknowledge.php:39 msgid "" "Do you want to authorize this application to access your posts and contacts," " and/or create new posts for you?" msgstr "Szeretné felhatalmazni ezt az alkalmazást, hogy hozzáférjen a bejegyzéseihez és a partnereihez, és/vagy új bejegyzéseket hozzon létre Önnek?" -#: src/Module/OAuth/Authorize.php:54 +#: src/Module/OAuth/Authorize.php:40 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:75 +#: src/Module/OAuth/Authorize.php:45 src/Module/OAuth/Token.php:61 msgid "Incomplete request data" msgstr "Befejezetlen kérésadat" -#: src/Module/OAuth/Authorize.php:106 +#: src/Module/OAuth/Authorize.php:92 #, php-format msgid "" "Please copy the following authentication code into your application and " "close this window: %s" msgstr "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:80 +#: src/Module/OAuth/Token.php:66 msgid "Invalid data or unknown client" msgstr "Érvénytelen adatok vagy ismeretlen ügyfél" -#: src/Module/OAuth/Token.php:105 +#: src/Module/OAuth/Token.php:91 msgid "Unsupported or missing grant type" msgstr "Nem támogatott vagy hiányzó felhatalmazástípus" -#: src/Module/OStatus/Repair.php:83 -msgid "Resubscribing to OStatus contacts" -msgstr "Újrafeliratkozás az OStatus partnerekre" - -#: src/Module/OStatus/Repair.php:84 src/Module/OStatus/Subscribe.php:160 -msgid "Keep this window open until done." -msgstr "Tartsa nyitva ezt az ablakot, amíg el nem készül." - -#: src/Module/OStatus/Repair.php:85 -msgid "✔ Done" -msgstr "✔ Kész" - -#: src/Module/OStatus/Repair.php:86 -msgid "No OStatus contacts to resubscribe to." -msgstr "Nincsenek OStatus partnerek, hogy újra feliratkozzon rájuk." - -#: src/Module/OStatus/Subscribe.php:72 +#: src/Module/OStatus/Subscribe.php:58 msgid "Subscribing to contacts" msgstr "Feliratkozás a partnerekre" -#: src/Module/OStatus/Subscribe.php:81 +#: src/Module/OStatus/Subscribe.php:67 msgid "No contact provided." msgstr "Nincs partner megadva." -#: src/Module/OStatus/Subscribe.php:87 +#: src/Module/OStatus/Subscribe.php:73 msgid "Couldn't fetch information for contact." msgstr "Nem sikerült lekérni a partner információit." -#: src/Module/OStatus/Subscribe.php:98 +#: src/Module/OStatus/Subscribe.php:84 msgid "Couldn't fetch friends for contact." msgstr "Nem sikerült lekérni a partner ismerőseit." -#: src/Module/OStatus/Subscribe.php:104 src/Module/OStatus/Subscribe.php:115 +#: src/Module/OStatus/Subscribe.php:90 src/Module/OStatus/Subscribe.php:101 msgid "Couldn't fetch following contacts." msgstr "Nem sikerült lekérni a következő partnereket." -#: src/Module/OStatus/Subscribe.php:110 +#: src/Module/OStatus/Subscribe.php:96 msgid "Couldn't fetch remote profile." msgstr "Nem sikerült lekérni a távoli profilt." -#: src/Module/OStatus/Subscribe.php:120 +#: src/Module/OStatus/Subscribe.php:106 msgid "Unsupported network" msgstr "Nem támogatott hálózat" -#: src/Module/OStatus/Subscribe.php:136 +#: src/Module/OStatus/Subscribe.php:122 msgid "Done" msgstr "Kész" -#: src/Module/OStatus/Subscribe.php:150 +#: src/Module/OStatus/Subscribe.php:136 msgid "success" msgstr "sikeres" -#: src/Module/OStatus/Subscribe.php:152 +#: src/Module/OStatus/Subscribe.php:138 msgid "failed" msgstr "sikertelen" -#: src/Module/OStatus/Subscribe.php:155 +#: src/Module/OStatus/Subscribe.php:141 msgid "ignored" msgstr "mellőzve" -#: src/Module/Photo.php:122 +#: src/Module/OStatus/Subscribe.php:146 +msgid "Keep this window open until done." +msgstr "Tartsa nyitva ezt az ablakot, amíg el nem készül." + +#: src/Module/Photo.php:108 msgid "The Photo is not available." msgstr "A fénykép nem érhető el." -#: src/Module/Photo.php:147 +#: src/Module/Photo.php:133 #, 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:188 +#: src/Module/Photo.php:174 #, 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:190 +#: src/Module/Photo.php:176 #, php-format msgid "Invalid photo with id %s." msgstr "Érvénytelen %s azonosítóval rendelkező fénykép." -#: src/Module/Post/Edit.php:82 src/Module/Post/Edit.php:96 +#: src/Module/Post/Edit.php:68 src/Module/Post/Edit.php:82 msgid "Post not found." msgstr "A bejegyzés nem található." -#: src/Module/Post/Edit.php:102 +#: src/Module/Post/Edit.php:88 msgid "Edit post" msgstr "Bejegyzés szerkesztése" -#: src/Module/Post/Edit.php:136 +#: src/Module/Post/Edit.php:122 msgid "web link" msgstr "webhivatkozás" -#: src/Module/Post/Edit.php:137 +#: src/Module/Post/Edit.php:123 msgid "Insert video link" msgstr "Videohivatkozás beszúrása" -#: src/Module/Post/Edit.php:138 +#: src/Module/Post/Edit.php:124 msgid "video link" msgstr "videohivatkozás" -#: src/Module/Post/Edit.php:139 +#: src/Module/Post/Edit.php:125 msgid "Insert audio link" msgstr "Hanghivatkozás beszúrása" -#: src/Module/Post/Edit.php:140 +#: src/Module/Post/Edit.php:126 msgid "audio link" msgstr "hanghivatkozás" -#: src/Module/Post/Tag/Remove.php:106 +#: src/Module/Post/Tag/Remove.php:92 msgid "Remove Item Tag" msgstr "Elem címkéjének eltávolítása" -#: src/Module/Post/Tag/Remove.php:107 +#: src/Module/Post/Tag/Remove.php:93 msgid "Select a tag to remove: " msgstr "Eltávolítandó címke kiválasztása: " -#: src/Module/Post/Tag/Remove.php:108 -#: src/Module/Settings/TwoFactor/Trusted.php:147 +#: src/Module/Post/Tag/Remove.php:94 +#: src/Module/Settings/TwoFactor/Trusted.php:133 msgid "Remove" msgstr "Eltávolítás" -#: src/Module/Privacy/PermissionTooltip.php:71 +#: src/Module/Privacy/PermissionTooltip.php:57 #, php-format msgid "Wrong type \"%s\", expected one of: %s" msgstr "Hibás típus: „%s”, a következők egyike várt: %s" -#: src/Module/Privacy/PermissionTooltip.php:101 +#: src/Module/Privacy/PermissionTooltip.php:87 msgid "Model not found" msgstr "A modell nem található" -#: src/Module/Privacy/PermissionTooltip.php:118 +#: src/Module/Privacy/PermissionTooltip.php:104 msgid "Unlisted" msgstr "Listázatlan" -#: src/Module/Privacy/PermissionTooltip.php:124 +#: src/Module/Privacy/PermissionTooltip.php:110 msgid "Remote privacy information not available." msgstr "A távoli adatvédelmi információk nem érhetők el." -#: src/Module/Privacy/PermissionTooltip.php:131 +#: src/Module/Privacy/PermissionTooltip.php:117 msgid "Visible to:" msgstr "Látható nekik:" -#: src/Module/Privacy/PermissionTooltip.php:133 +#: src/Module/Privacy/PermissionTooltip.php:119 msgid "CC:" msgstr "Másolat:" -#: src/Module/Privacy/PermissionTooltip.php:134 +#: src/Module/Privacy/PermissionTooltip.php:120 msgid "BCC:" msgstr "Rejtett másolat:" -#: src/Module/Privacy/PermissionTooltip.php:135 +#: src/Module/Privacy/PermissionTooltip.php:121 msgid "Audience:" msgstr "Célközönség:" -#: src/Module/Privacy/PermissionTooltip.php:136 +#: src/Module/Privacy/PermissionTooltip.php:122 msgid "Attributed To:" msgstr "Neki tulajdonítható:" -#: src/Module/Privacy/PermissionTooltip.php:234 +#: src/Module/Privacy/PermissionTooltip.php:220 #, php-format msgid "Collection (%s)" msgstr "Gyűjtemény (%s)" -#: src/Module/Privacy/PermissionTooltip.php:238 +#: src/Module/Privacy/PermissionTooltip.php:224 #, php-format msgid "Followers (%s)" msgstr "Követők (%s)" -#: src/Module/Privacy/PermissionTooltip.php:255 +#: src/Module/Privacy/PermissionTooltip.php:241 #, php-format msgid "%d more" msgstr "%d további" -#: src/Module/Profile/Contacts.php:159 +#: src/Module/Profile/Contacts.php:145 msgid "No contacts." msgstr "Nincsenek partnerek." -#: src/Module/Profile/Conversations.php:106 -#: src/Module/Profile/Conversations.php:109 src/Module/Profile/Profile.php:353 -#: src/Module/Profile/Profile.php:356 src/Protocol/Feed.php:1114 -#: src/Protocol/OStatus.php:1011 -#, php-format -msgid "%s's timeline" -msgstr "%s idővonala" - -#: src/Module/Profile/Conversations.php:107 src/Module/Profile/Profile.php:354 -#: src/Protocol/Feed.php:1118 src/Protocol/OStatus.php:1016 +#: src/Module/Profile/Conversations.php:92 src/Module/Profile/Profile.php:339 +#: src/Protocol/Feed.php:1097 #, php-format msgid "%s's posts" msgstr "%s bejegyzései" -#: src/Module/Profile/Conversations.php:108 src/Module/Profile/Profile.php:355 -#: src/Protocol/Feed.php:1121 src/Protocol/OStatus.php:1020 +#: src/Module/Profile/Conversations.php:93 src/Module/Profile/Profile.php:340 +#: src/Protocol/Feed.php:1100 #, 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:192 -#: src/Module/Settings/Profile/Photo/Index.php:58 +#: src/Module/Profile/Conversations.php:94 src/Module/Profile/Profile.php:341 +#: src/Protocol/Feed.php:1093 +#, php-format +msgid "%s's timeline" +msgstr "%s idővonala" + +#: src/Module/Profile/Photos.php:150 src/Module/Profile/Photos.php:153 +#: src/Module/Profile/Photos.php:178 +#: src/Module/Settings/Profile/Photo/Index.php:44 #, php-format msgid "Image exceeds size limit of %s" msgstr "A kép meghaladja a beállított %s méretkorlátot" -#: src/Module/Profile/Photos.php:170 +#: src/Module/Profile/Photos.php:156 msgid "Image upload didn't complete, please try again" msgstr "A kép feltöltése nem fejeződött be, próbálja újra" -#: src/Module/Profile/Photos.php:173 +#: src/Module/Profile/Photos.php:159 msgid "Image file is missing" msgstr "A képfájl hiányzik" -#: src/Module/Profile/Photos.php:178 +#: src/Module/Profile/Photos.php:164 msgid "" "Server can't accept new file upload at this time, please contact your " "administrator" msgstr "A kiszolgáló jelenleg nem tud új fájlfeltöltést fogadni, vegye fel a kapcsolatot a rendszergazdával" -#: src/Module/Profile/Photos.php:200 +#: src/Module/Profile/Photos.php:186 msgid "Image file is empty." msgstr "A képfájl üres." -#: src/Module/Profile/Photos.php:352 +#: src/Module/Profile/Photos.php:338 msgid "View Album" msgstr "Album megtekintése" -#: src/Module/Profile/Profile.php:114 src/Module/Profile/Restricted.php:50 +#: src/Module/Profile/Profile.php:100 src/Module/Profile/Restricted.php:36 msgid "Profile not found." msgstr "A profil nem található." -#: src/Module/Profile/Profile.php:160 +#: src/Module/Profile/Profile.php:146 #, php-format msgid "" "You're currently viewing your profile as %s Cancel" msgstr "A profilját jelenleg %s nevében nézi Mégse" -#: src/Module/Profile/Profile.php:169 +#: src/Module/Profile/Profile.php:155 msgid "Full Name:" msgstr "Teljes név:" -#: src/Module/Profile/Profile.php:174 +#: src/Module/Profile/Profile.php:160 msgid "Member since:" msgstr "Ekkortól tag:" -#: src/Module/Profile/Profile.php:180 +#: src/Module/Profile/Profile.php:166 msgid "j F, Y" msgstr "Y. F j." -#: src/Module/Profile/Profile.php:181 +#: src/Module/Profile/Profile.php:167 msgid "j F" msgstr "F j." -#: src/Module/Profile/Profile.php:189 src/Util/Temporal.php:168 +#: src/Module/Profile/Profile.php:175 src/Util/Temporal.php:154 msgid "Birthday:" msgstr "Születésnap:" -#: src/Module/Profile/Profile.php:192 -#: src/Module/Settings/Profile/Index.php:296 src/Util/Temporal.php:170 +#: src/Module/Profile/Profile.php:178 +#: src/Module/Settings/Profile/Index.php:282 src/Util/Temporal.php:156 msgid "Age: " msgstr "Életkor: " -#: src/Module/Profile/Profile.php:192 -#: src/Module/Settings/Profile/Index.php:296 src/Util/Temporal.php:170 +#: src/Module/Profile/Profile.php:178 +#: src/Module/Settings/Profile/Index.php:282 src/Util/Temporal.php:156 #, php-format msgid "%d year old" msgid_plural "%d years old" msgstr[0] "%d éves" msgstr[1] "%d éves" -#: src/Module/Profile/Profile.php:197 -#: src/Module/Settings/Profile/Index.php:289 +#: src/Module/Profile/Profile.php:183 +#: src/Module/Settings/Profile/Index.php:275 msgid "Description:" msgstr "Leírás:" -#: src/Module/Profile/Profile.php:263 +#: src/Module/Profile/Profile.php:249 msgid "Groups:" msgstr "Csoportok:" -#: src/Module/Profile/Profile.php:275 +#: src/Module/Profile/Profile.php:261 msgid "View profile as:" msgstr "Profil megtekintése másként:" -#: src/Module/Profile/Profile.php:292 +#: src/Module/Profile/Profile.php:278 msgid "View as" msgstr "Megtekintés másként" -#: src/Module/Profile/RemoteFollow.php:82 +#: src/Module/Profile/RemoteFollow.php:68 msgid "Profile unavailable." msgstr "A profil nem érhető el." -#: src/Module/Profile/RemoteFollow.php:88 +#: src/Module/Profile/RemoteFollow.php:74 msgid "Invalid locator" msgstr "Érvénytelen kereső" -#: src/Module/Profile/RemoteFollow.php:95 +#: src/Module/Profile/RemoteFollow.php:81 msgid "The provided profile link doesn't seem to be valid" msgstr "A megadott profilhivatkozás nem tűnik érvényesnek" -#: src/Module/Profile/RemoteFollow.php:100 +#: src/Module/Profile/RemoteFollow.php:86 msgid "" "Remote subscription can't be done for your network. Please subscribe " "directly on your system." msgstr "A távoli feliratkozást nem lehet elvégezni az Ön hálózatánál. Iratkozzon fel közvetlenül a saját rendszerén." -#: src/Module/Profile/RemoteFollow.php:128 +#: src/Module/Profile/RemoteFollow.php:114 msgid "Friend/Connection Request" msgstr "Ismerős- vagy kapcsolódási kérés" -#: src/Module/Profile/RemoteFollow.php:129 +#: src/Module/Profile/RemoteFollow.php:115 #, php-format msgid "" "Enter your Webfinger address (user@domain.tld) or profile URL here. If this " @@ -9276,579 +9257,579 @@ msgid "" " or %s directly on your system." msgstr "Adja meg itt a WebFinger-címét (felhasználó@tartomány.tld) vagy a profil URL-jét. Ha ezt nem támogatja a rendszere, akkor fel kell iratkoznia a(z) %s vagy a(z) %s címre közvetlenül a rendszerén." -#: src/Module/Profile/RemoteFollow.php:130 +#: src/Module/Profile/RemoteFollow.php:116 #, php-format msgid "" "If you are not yet a member of the free social web, follow " "this link to find a public Friendica node and join us today." msgstr "Ha még nem tagja a szabad közösségi hálónak, akkor kövesse ezt a hivatkozást egy nyilvános Friendica csomópont kereséséhez, és csatlakozzon hozzánk még ma." -#: src/Module/Profile/RemoteFollow.php:131 +#: src/Module/Profile/RemoteFollow.php:117 msgid "Your Webfinger address or profile URL:" msgstr "A WebFinger-címe vagy profil URL-je:" -#: src/Module/Profile/Restricted.php:59 +#: src/Module/Profile/Restricted.php:45 msgid "Restricted profile" msgstr "Korlátozott profil" -#: src/Module/Profile/Restricted.php:60 +#: src/Module/Profile/Restricted.php:46 msgid "" "This profile has been restricted which prevents access to their public " "content from anonymous visitors." msgstr "Ez a profil korlátozva lett, ami megakadályozza, hogy a névtelen látogatók hozzáférjenek a nyilvános tartalmához." -#: src/Module/Profile/Schedule.php:83 +#: src/Module/Profile/Schedule.php:69 msgid "Scheduled" msgstr "Ütemezett" -#: src/Module/Profile/Schedule.php:84 +#: src/Module/Profile/Schedule.php:70 msgid "Content" msgstr "Tartalom" -#: src/Module/Profile/Schedule.php:85 +#: src/Module/Profile/Schedule.php:71 msgid "Remove post" msgstr "Bejegyzés eltávolítása" -#: src/Module/Register.php:91 +#: src/Module/Register.php:77 msgid "Only parent users can create additional accounts." msgstr "Csak fölérendelt felhasználók hozhatnak létre további fiókokat." -#: src/Module/Register.php:106 src/Module/User/Import.php:112 +#: src/Module/Register.php:92 src/Module/User/Import.php:98 msgid "" "This site has exceeded the number of allowed daily account registrations. " "Please try again tomorrow." msgstr "Ez az oldal túllépte a fiókregisztrációk naponta megengedett számát. Próbálja újra holnap." -#: src/Module/Register.php:123 +#: src/Module/Register.php:109 msgid "" "You may (optionally) fill in this form via OpenID by supplying your OpenID " "and clicking \"Register\"." msgstr "Kitöltheti ezt az űrlapot OpenID használatán keresztül is az OpenID azonosítója megadásával és „Regisztráció” gombra kattintva (nem kötelező)." -#: src/Module/Register.php:124 +#: src/Module/Register.php:110 msgid "" "If you are not familiar with OpenID, please leave that field blank and fill " "in the rest of the items." msgstr "Ha nem ismeri az OpenID-t, akkor hagyja a mezőt üresen, és töltse ki a többi elemet." -#: src/Module/Register.php:125 +#: src/Module/Register.php:111 msgid "Your OpenID (optional): " msgstr "Az Ön OpenID-ja (opcionális): " -#: src/Module/Register.php:134 +#: src/Module/Register.php:120 msgid "Include your profile in member directory?" msgstr "Felveszi a profilját a tagkönyvtárba?" -#: src/Module/Register.php:155 +#: src/Module/Register.php:141 msgid "Note for the admin" msgstr "Jegyzet az adminisztrátornak" -#: src/Module/Register.php:155 +#: src/Module/Register.php:141 msgid "Leave a message for the admin, why you want to join this node" msgstr "Hagyjon üzenetet az adminisztrátornak, hogy miért szeretne ehhez a csomóponthoz csatlakozni" -#: src/Module/Register.php:156 +#: src/Module/Register.php:142 msgid "Membership on this site is by invitation only." msgstr "Ezen az oldalon a tagság csak meghívás alapján van." -#: src/Module/Register.php:157 +#: src/Module/Register.php:143 msgid "Your invitation code: " msgstr "A meghívási kódja: " -#: src/Module/Register.php:165 +#: src/Module/Register.php:151 msgid "Your Display Name (as you would like it to be displayed on this system" msgstr "A megjelenített neve (ahogyan szeretné, hogy megjelenjen ezen a rendszeren)" -#: src/Module/Register.php:166 +#: src/Module/Register.php:152 msgid "" "Your Email Address: (Initial information will be send there, so this has to " "be an existing address.)" msgstr "Az e-mail-címe (a kezdeti információk ide lesznek elküldve, szóval ennek létező címnek kell lennie):" -#: src/Module/Register.php:167 +#: src/Module/Register.php:153 msgid "Please repeat your e-mail address:" msgstr "Ismételje meg az e-mail-címét:" -#: src/Module/Register.php:169 src/Module/Security/PasswordTooLong.php:100 -#: src/Module/Settings/Account.php:569 +#: src/Module/Register.php:155 src/Module/Security/PasswordTooLong.php:86 +#: src/Module/Settings/Account.php:555 msgid "New Password:" msgstr "Új jelszó:" -#: src/Module/Register.php:169 +#: src/Module/Register.php:155 msgid "Leave empty for an auto generated password." msgstr "Hagyja üresen egy automatikusan előállított jelszóhoz." -#: src/Module/Register.php:170 src/Module/Security/PasswordTooLong.php:101 -#: src/Module/Settings/Account.php:570 +#: src/Module/Register.php:156 src/Module/Security/PasswordTooLong.php:87 +#: src/Module/Settings/Account.php:556 msgid "Confirm:" msgstr "Megerősítés:" -#: src/Module/Register.php:171 +#: src/Module/Register.php:157 #, php-format msgid "" "Choose a profile nickname. This must begin with a text character. Your " "profile address on this site will then be \"nickname@%s\"." msgstr "Válasszon profilbecenevet. Ennek betűvel kell kezdődnie. Ezután a profilcíme ezen az oldalon „becenév@%s” lesz." -#: src/Module/Register.php:172 +#: src/Module/Register.php:158 msgid "Choose a nickname: " msgstr "Becenév választása: " -#: src/Module/Register.php:180 src/Module/User/Import.php:118 +#: src/Module/Register.php:166 src/Module/User/Import.php:104 msgid "Import" msgstr "Importálás" -#: src/Module/Register.php:181 +#: src/Module/Register.php:167 msgid "Import your profile to this friendica instance" msgstr "A profilja importálása erre a Friendica példányra" -#: src/Module/Register.php:188 +#: src/Module/Register.php:174 msgid "Note: This node explicitly contains adult content" msgstr "Megjegyzés: ez a csomópont kifejezetten tartalmaz felnőtt tartalmat" -#: src/Module/Register.php:190 src/Module/Settings/Delegation.php:181 +#: src/Module/Register.php:176 src/Module/Settings/Delegation.php:167 msgid "Parent Password:" msgstr "Fölérendelt jelszó:" -#: src/Module/Register.php:190 src/Module/Settings/Delegation.php:181 +#: src/Module/Register.php:176 src/Module/Settings/Delegation.php:167 msgid "" "Please enter the password of the parent account to legitimize your request." msgstr "Adja meg a fölérendelt fiók jelszavát a kérése törvényesítéséhez." -#: src/Module/Register.php:219 +#: src/Module/Register.php:205 msgid "Password doesn't match." msgstr "A jelszó nem egyezik." -#: src/Module/Register.php:225 +#: src/Module/Register.php:211 msgid "Please enter your password." msgstr "Adja meg a jelszavát." -#: src/Module/Register.php:267 +#: src/Module/Register.php:253 msgid "You have entered too much information." msgstr "Túl sok információt adott meg." -#: src/Module/Register.php:290 +#: src/Module/Register.php:276 msgid "Please enter the identical mail address in the second field." msgstr "Adja meg a megegyező e-mail-címet a második mezőben." -#: src/Module/Register.php:298 +#: src/Module/Register.php:284 msgid "Nickname cannot start with a digit." msgstr "A becenév nem kezdődhet számmal." -#: src/Module/Register.php:300 +#: src/Module/Register.php:286 msgid "Nickname can only contain US-ASCII characters." msgstr "A becenév csak US-ASCII karaktereket tartalmazhat." -#: src/Module/Register.php:329 +#: src/Module/Register.php:315 msgid "The additional account was created." msgstr "A további fiók létre lett hozva." -#: src/Module/Register.php:354 +#: src/Module/Register.php:340 msgid "" "Registration successful. Please check your email for further instructions." msgstr "A regisztráció sikerült. Nézze meg a postafiókját a további utasításokért." -#: src/Module/Register.php:361 +#: src/Module/Register.php:347 #, php-format msgid "" "Failed to send email message. Here your accout details:
login: %s
" "password: %s

You can change your password after login." msgstr "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." -#: src/Module/Register.php:367 +#: src/Module/Register.php:353 msgid "Registration successful." msgstr "A regisztráció sikerült." -#: src/Module/Register.php:376 src/Module/Register.php:383 -#: src/Module/Register.php:393 +#: src/Module/Register.php:362 src/Module/Register.php:369 +#: src/Module/Register.php:379 msgid "Your registration can not be processed." msgstr "A regisztrációját nem lehet feldolgozni." -#: src/Module/Register.php:382 +#: src/Module/Register.php:368 msgid "You have to leave a request note for the admin." msgstr "Hagynia kell egy kérelmi jegyzetet az adminisztrátornak." -#: src/Module/Register.php:392 +#: src/Module/Register.php:378 msgid "An internal error occured." msgstr "Belső hiba történt." -#: src/Module/Register.php:414 +#: src/Module/Register.php:400 msgid "Your registration is pending approval by the site owner." msgstr "A regisztrációja jóváhagyásra vár az oldal tulajdonosától." -#: src/Module/Search/Acl.php:78 +#: src/Module/Search/Acl.php:64 msgid "You must be logged in to use this module." msgstr "Bejelentkezve kell lennie a modul használatához." -#: src/Module/Search/Index.php:69 +#: src/Module/Search/Index.php:55 msgid "Only logged in users are permitted to perform a search." msgstr "Csak bejelentkezett felhasználóknak engedélyezett a keresés végrehajtása." -#: src/Module/Search/Index.php:89 +#: src/Module/Search/Index.php:75 msgid "Only one search per minute is permitted for not logged in users." msgstr "Percenként csak egy keresés engedélyezett a nem bejelentkezett felhasználóknak." -#: src/Module/Search/Index.php:205 +#: src/Module/Search/Index.php:191 #, php-format msgid "Items tagged with: %s" msgstr "Ezzel címkézett elemek: %s" -#: src/Module/Search/Saved.php:63 +#: src/Module/Search/Saved.php:49 msgid "Search term was not saved." msgstr "A keresési kifejezés nem lett elmentve." -#: src/Module/Search/Saved.php:66 +#: src/Module/Search/Saved.php:52 msgid "Search term already saved." msgstr "A keresési kifejezés már el van mentve." -#: src/Module/Search/Saved.php:72 +#: src/Module/Search/Saved.php:58 msgid "Search term was not removed." msgstr "A keresési kifejezés nem lett eltávolítva." -#: src/Module/Security/Login.php:127 +#: src/Module/Security/Login.php:113 msgid "Create a New Account" msgstr "Új fiók létrehozása" -#: src/Module/Security/Login.php:146 +#: src/Module/Security/Login.php:132 msgid "Your OpenID: " msgstr "Az Ön OpenID-ja: " -#: src/Module/Security/Login.php:149 +#: src/Module/Security/Login.php:135 msgid "" "Please enter your username and password to add the OpenID to your existing " "account." msgstr "Adja meg a felhasználónevét és a jelszavát, hogy hozzáadja az OpenID azonosítóját a meglévő fiókjához." -#: src/Module/Security/Login.php:151 +#: src/Module/Security/Login.php:137 msgid "Or login using OpenID: " msgstr "Vagy bejelentkezés OpenID használatával: " -#: src/Module/Security/Login.php:165 +#: src/Module/Security/Login.php:151 msgid "Password: " msgstr "Jelszó: " -#: src/Module/Security/Login.php:166 +#: src/Module/Security/Login.php:152 msgid "Remember me" msgstr "Emlékezzen rám" -#: src/Module/Security/Login.php:175 +#: src/Module/Security/Login.php:161 msgid "Forgot your password?" msgstr "Elfelejtette a jelszavát?" -#: src/Module/Security/Login.php:178 +#: src/Module/Security/Login.php:164 msgid "Website Terms of Service" msgstr "Weboldal használati feltételei" -#: src/Module/Security/Login.php:179 +#: src/Module/Security/Login.php:165 msgid "terms of service" msgstr "használati feltételek" -#: src/Module/Security/Login.php:181 +#: src/Module/Security/Login.php:167 msgid "Website Privacy Policy" msgstr "Weboldal adatvédelmi irányelvei" -#: src/Module/Security/Login.php:182 +#: src/Module/Security/Login.php:168 msgid "privacy policy" msgstr "adatvédelmi irányelv" -#: src/Module/Security/Logout.php:89 -#: src/Module/Security/TwoFactor/SignOut.php:78 -#: src/Module/Security/TwoFactor/SignOut.php:86 -#: src/Module/Security/TwoFactor/SignOut.php:108 -#: src/Module/Security/TwoFactor/SignOut.php:115 +#: src/Module/Security/Logout.php:75 +#: src/Module/Security/TwoFactor/SignOut.php:64 +#: src/Module/Security/TwoFactor/SignOut.php:72 +#: src/Module/Security/TwoFactor/SignOut.php:94 +#: src/Module/Security/TwoFactor/SignOut.php:101 msgid "Logged out." msgstr "Kijelentkezve." -#: src/Module/Security/OpenID.php:54 +#: src/Module/Security/OpenID.php:40 msgid "OpenID protocol error. No ID returned" msgstr "OpenID protokollhiba. Nem lett azonosító visszaadva" -#: src/Module/Security/OpenID.php:90 +#: src/Module/Security/OpenID.php:76 msgid "" "Account not found. Please login to your existing account to add the OpenID " "to it." msgstr "A fiók nem található. Jelentkezzen be a meglévő fiókjába, hogy hozzáadja az OpenID-t ahhoz." -#: src/Module/Security/OpenID.php:92 +#: src/Module/Security/OpenID.php:78 msgid "" "Account not found. Please register a new account or login to your existing " "account to add the OpenID to it." msgstr "A fiók nem található. Regisztráljon új fiókot vagy jelentkezzen be a meglévő fiókjába, hogy hozzáadja az OpenID-t ahhoz." -#: src/Module/Security/PasswordTooLong.php:57 -#: src/Module/Settings/Account.php:67 +#: src/Module/Security/PasswordTooLong.php:43 +#: src/Module/Settings/Account.php:53 msgid "Passwords do not match." msgstr "A jelszavak nem egyeznek." -#: src/Module/Security/PasswordTooLong.php:64 +#: src/Module/Security/PasswordTooLong.php:50 msgid "Password does not need changing." msgstr "A jelszót nem kell megváltoztatni." -#: src/Module/Security/PasswordTooLong.php:77 -#: src/Module/Settings/Account.php:81 +#: src/Module/Security/PasswordTooLong.php:63 +#: src/Module/Settings/Account.php:67 msgid "Password unchanged." msgstr "A jelszó nincs megváltoztatva." -#: src/Module/Security/PasswordTooLong.php:91 +#: src/Module/Security/PasswordTooLong.php:77 msgid "Password Too Long" msgstr "A jelszó túl hosszú" -#: src/Module/Security/PasswordTooLong.php:92 +#: src/Module/Security/PasswordTooLong.php:78 msgid "" "Since version 2022.09, we've realized that any password longer than 72 " "characters is truncated during hashing. To prevent any confusion about this " "behavior, please update your password to be fewer or equal to 72 characters." msgstr "A 2022.09-es verzió óta rájöttünk, hogy a 72 karakternél hosszabb jelszavak a kivonatolás során le lesznek vágva. Az ezzel a viselkedéssel kapcsolatos félreértések elkerülése érdekében arra kérjük, frissítse jelszavát úgy, hogy az legfeljebb 72 karakterből álljon." -#: src/Module/Security/PasswordTooLong.php:93 +#: src/Module/Security/PasswordTooLong.php:79 msgid "Update Password" msgstr "Jelszó frissítése" -#: src/Module/Security/PasswordTooLong.php:99 -#: src/Module/Settings/Account.php:571 +#: src/Module/Security/PasswordTooLong.php:85 +#: src/Module/Settings/Account.php:557 msgid "Current Password:" msgstr "Jelenlegi jelszó:" -#: src/Module/Security/PasswordTooLong.php:99 -#: src/Module/Settings/Account.php:571 +#: src/Module/Security/PasswordTooLong.php:85 +#: src/Module/Settings/Account.php:557 msgid "Your current password to confirm the changes" msgstr "A jelenlegi jelszava a változtatások megerősítéséhez" -#: src/Module/Security/PasswordTooLong.php:100 -#: src/Module/Settings/Account.php:555 +#: src/Module/Security/PasswordTooLong.php:86 +#: src/Module/Settings/Account.php:541 msgid "" "Allowed characters are a-z, A-Z, 0-9 and special characters except white " "spaces and accentuated letters." msgstr "Az engedélyezett karakterek az a-z, A-Z, 0-9 tartományokban lévők és a különleges karakterek, kivéve az üres karaktereket és az ékezetes betűket." -#: src/Module/Security/PasswordTooLong.php:100 -#: src/Module/Settings/Account.php:556 +#: src/Module/Security/PasswordTooLong.php:86 +#: src/Module/Settings/Account.php:542 msgid "Password length is limited to 72 characters." msgstr "A jelszó hossza 72 karakterre van korlátozva." -#: src/Module/Security/TwoFactor/Recovery.php:74 +#: src/Module/Security/TwoFactor/Recovery.php:60 #, php-format msgid "Remaining recovery codes: %d" msgstr "Hátralévő visszaszerzési kódok: %d" -#: src/Module/Security/TwoFactor/Recovery.php:80 -#: src/Module/Security/TwoFactor/Verify.php:77 -#: src/Module/Settings/TwoFactor/Verify.php:98 +#: src/Module/Security/TwoFactor/Recovery.php:66 +#: src/Module/Security/TwoFactor/Verify.php:63 +#: src/Module/Settings/TwoFactor/Verify.php:84 msgid "Invalid code, please retry." msgstr "Érvénytelen kód, próbálja újra." -#: src/Module/Security/TwoFactor/Recovery.php:99 +#: src/Module/Security/TwoFactor/Recovery.php:85 msgid "Two-factor recovery" msgstr "Kétlépcsős visszaszerzés" -#: src/Module/Security/TwoFactor/Recovery.php:100 +#: src/Module/Security/TwoFactor/Recovery.php:86 msgid "" "

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

" msgstr "

Megadhatja az egyszeri visszaszerzési kódjai egyikét abban az esetben, ha elvesztette a hozzáférést a mobil eszközéhez.

" -#: src/Module/Security/TwoFactor/Recovery.php:101 +#: src/Module/Security/TwoFactor/Recovery.php:87 #, php-format msgid "Don’t have your phone? Enter a two-factor recovery code" msgstr "Nincs meg a telefonja? Adjon meg egy kétlépcsős visszaszerzési kódot" -#: src/Module/Security/TwoFactor/Recovery.php:102 +#: src/Module/Security/TwoFactor/Recovery.php:88 msgid "Please enter a recovery code" msgstr "Adjon meg egy visszaszerzési kódot" -#: src/Module/Security/TwoFactor/Recovery.php:103 +#: src/Module/Security/TwoFactor/Recovery.php:89 msgid "Submit recovery code and complete login" msgstr "Visszaszerzési kód elküldése és a bejelentkezés befejezése" -#: src/Module/Security/TwoFactor/SignOut.php:122 +#: src/Module/Security/TwoFactor/SignOut.php:108 msgid "Sign out of this browser?" msgstr "Kijelentkezni ebből a böngészőből?" -#: src/Module/Security/TwoFactor/SignOut.php:123 +#: src/Module/Security/TwoFactor/SignOut.php:109 msgid "" "

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

" msgstr "

Ha megbízik ebben a böngészőben, akkor a következő bejelentkezéskor nem kéri Öntől az ellenőrző kódot.

" -#: src/Module/Security/TwoFactor/SignOut.php:124 +#: src/Module/Security/TwoFactor/SignOut.php:110 msgid "Sign out" msgstr "Kijelentkezés" -#: src/Module/Security/TwoFactor/SignOut.php:126 +#: src/Module/Security/TwoFactor/SignOut.php:112 msgid "Trust and sign out" msgstr "Megbízás és kijelentkezés" -#: src/Module/Security/TwoFactor/Trust.php:96 +#: src/Module/Security/TwoFactor/Trust.php:82 msgid "Couldn't save browser to Cookie." msgstr "Nem sikerült elmenteni a böngészőt a sütibe." -#: src/Module/Security/TwoFactor/Trust.php:141 +#: src/Module/Security/TwoFactor/Trust.php:127 msgid "Trust this browser?" msgstr "Megbízik ebben a böngészőben?" -#: src/Module/Security/TwoFactor/Trust.php:142 +#: src/Module/Security/TwoFactor/Trust.php:128 msgid "" "

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

" msgstr "

Ha azt választja, hogy megbízik ebben a böngészőben, akkor a következő bejelentkezéskor nem kéri Öntől az ellenőrző kódot.

" -#: src/Module/Security/TwoFactor/Trust.php:143 +#: src/Module/Security/TwoFactor/Trust.php:129 msgid "Not now" msgstr "Most nem" -#: src/Module/Security/TwoFactor/Trust.php:144 +#: src/Module/Security/TwoFactor/Trust.php:130 msgid "Don't trust" msgstr "Ne bízzon meg" -#: src/Module/Security/TwoFactor/Trust.php:145 +#: src/Module/Security/TwoFactor/Trust.php:131 msgid "Trust" msgstr "Megbízás" -#: src/Module/Security/TwoFactor/Verify.php:97 +#: src/Module/Security/TwoFactor/Verify.php:83 msgid "" "

Open the two-factor authentication app on your device to get an " "authentication code and verify your identity.

" msgstr "

Nyissa meg a kétlépcsős hitelesítés alkalmazást az eszközén, hogy megkapjon egy hitelesítő kódot és ellenőrizze a személyazonosságát.

" -#: src/Module/Security/TwoFactor/Verify.php:100 +#: src/Module/Security/TwoFactor/Verify.php:86 #, php-format msgid "" "If you do not have access to your authentication code you can use a two-factor recovery code." msgstr "Ha nem fér hozzá a hitelesítési kódjához, akkor használhat egy kétlépcsős visszaszerzési kódot." -#: src/Module/Security/TwoFactor/Verify.php:101 -#: src/Module/Settings/TwoFactor/Verify.php:158 +#: src/Module/Security/TwoFactor/Verify.php:87 +#: src/Module/Settings/TwoFactor/Verify.php:144 msgid "Please enter a code from your authentication app" msgstr "Adjon meg egy kódot a hitelesítő alkalmazásából" -#: src/Module/Security/TwoFactor/Verify.php:102 +#: src/Module/Security/TwoFactor/Verify.php:88 msgid "Verify code and complete login" msgstr "Kód ellenőrzése és a bejelentkezés befejezése" -#: src/Module/Settings/Account.php:96 +#: src/Module/Settings/Account.php:82 msgid "Please use a shorter name." msgstr "Használjon rövidebb nevet." -#: src/Module/Settings/Account.php:99 +#: src/Module/Settings/Account.php:85 msgid "Name too short." msgstr "A név túl rövid." -#: src/Module/Settings/Account.php:108 +#: src/Module/Settings/Account.php:94 msgid "Wrong Password." msgstr "Hibás jelszó." -#: src/Module/Settings/Account.php:113 +#: src/Module/Settings/Account.php:99 msgid "Invalid email." msgstr "Érvénytelen e-mail-cím." -#: src/Module/Settings/Account.php:117 +#: src/Module/Settings/Account.php:103 msgid "Cannot change to that email." msgstr "Nem lehet megváltoztatni arra az e-mail-címre." -#: src/Module/Settings/Account.php:146 src/Module/Settings/Account.php:195 -#: src/Module/Settings/Account.php:216 src/Module/Settings/Account.php:300 -#: src/Module/Settings/Account.php:329 +#: src/Module/Settings/Account.php:132 src/Module/Settings/Account.php:181 +#: src/Module/Settings/Account.php:202 src/Module/Settings/Account.php:286 +#: src/Module/Settings/Account.php:315 msgid "Settings were not updated." msgstr "A beállítások nem lettek frissítve." -#: src/Module/Settings/Account.php:347 +#: src/Module/Settings/Account.php:333 msgid "Contact CSV file upload error" msgstr "Partner CSV-fájl feltöltési hiba" -#: src/Module/Settings/Account.php:366 +#: src/Module/Settings/Account.php:352 msgid "Importing Contacts done" msgstr "A partnerek importálása kész" -#: src/Module/Settings/Account.php:379 +#: src/Module/Settings/Account.php:365 msgid "Relocate message has been send to your contacts" msgstr "Az áthelyezési üzenet el lett küldve a partnereknek" -#: src/Module/Settings/Account.php:396 +#: src/Module/Settings/Account.php:382 msgid "Unable to find your profile. Please contact your admin." msgstr "Nem található a profilja. Vegye fel a kapcsolatot a rendszergazdával." -#: src/Module/Settings/Account.php:438 +#: src/Module/Settings/Account.php:424 msgid "" "Account for a service that automatically shares content based on user " "defined channels." msgstr "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:448 +#: src/Module/Settings/Account.php:434 msgid "Personal Page Subtypes" msgstr "Személyes oldal altípusai" -#: src/Module/Settings/Account.php:449 +#: src/Module/Settings/Account.php:435 msgid "Community Group Subtypes" msgstr "Közösségi csoport altípusai" -#: src/Module/Settings/Account.php:460 +#: src/Module/Settings/Account.php:446 msgid "Account for a personal profile." msgstr "Egy személyes profil fiókja." -#: src/Module/Settings/Account.php:467 +#: src/Module/Settings/Account.php:453 msgid "" "Account for an organisation that automatically approves contact requests as " "\"Followers\"." msgstr "Egy szervezet fiókja, amely automatikusan jóváhagyja a partnerkéréseket, mint például a „követőket”." -#: src/Module/Settings/Account.php:474 +#: src/Module/Settings/Account.php:460 msgid "" "Account for a news reflector that automatically approves contact requests as" " \"Followers\"." msgstr "Egy hírportál fiókja, amely automatikusan jóváhagyja a partnerkéréseket, mint például a „követőket”." -#: src/Module/Settings/Account.php:481 +#: src/Module/Settings/Account.php:467 msgid "Account for community discussions." msgstr "Közösségi beszélgetések fiókja." -#: src/Module/Settings/Account.php:489 +#: src/Module/Settings/Account.php:475 msgid "" "Account for a regular personal profile that requires manual approval of " "\"Friends\" and \"Followers\"." msgstr "Egy szokásos személyes profil fiókja, amely az „ismerősök” és a „követők” kézi jóváhagyását igényli." -#: src/Module/Settings/Account.php:496 +#: src/Module/Settings/Account.php:482 msgid "" "Account for a public profile that automatically approves contact requests as" " \"Followers\"." msgstr "Egy nyilvános profil fiókja, amely automatikusan jóváhagyja a partnerkéréseket, mint például a „követőket”." -#: src/Module/Settings/Account.php:503 +#: src/Module/Settings/Account.php:489 msgid "Automatically approves all contact requests." msgstr "Automatikusan jóváhagyja az összes partnerkérést." -#: src/Module/Settings/Account.php:510 +#: src/Module/Settings/Account.php:496 msgid "Contact requests have to be manually approved." msgstr "A partnerkéréseket kézzel kell jóváhagyni." -#: src/Module/Settings/Account.php:517 +#: src/Module/Settings/Account.php:503 msgid "" "Account for a popular profile that automatically approves contact requests " "as \"Friends\"." msgstr "Egy népszerű profil fiókja, amely automatikusan jóváhagyja a partnerkéréseket, mint például az „ismerősöket”." -#: src/Module/Settings/Account.php:522 +#: src/Module/Settings/Account.php:508 msgid "Private Group [Experimental]" msgstr "Személyes csoport [kísérleti]" -#: src/Module/Settings/Account.php:524 +#: src/Module/Settings/Account.php:510 msgid "Requires manual approval of contact requests." msgstr "A partnerkérések kézi jóváhagyását igényli." -#: src/Module/Settings/Account.php:533 +#: src/Module/Settings/Account.php:519 msgid "OpenID:" msgstr "OpenID:" -#: src/Module/Settings/Account.php:533 +#: src/Module/Settings/Account.php:519 msgid "(Optional) Allow this OpenID to login to this account." msgstr "(Kihagyható) Lehetővé teszi ezen OpenID számára, hogy bejelentkezzen ebbe a fiókba." -#: src/Module/Settings/Account.php:541 +#: src/Module/Settings/Account.php:527 msgid "Publish your profile in your local site directory?" msgstr "Közzéteszi a profilját a helyi oldal könyvtárában?" -#: src/Module/Settings/Account.php:541 +#: src/Module/Settings/Account.php:527 #, php-format msgid "" "Your profile will be published in this node's local " @@ -9856,94 +9837,94 @@ msgid "" " system settings." msgstr "A profilja közzé lesz téve ennek a csomópontnak a helyi könyvtárában. A profilrészletei esetleg nyilvánosan láthatóak lehetnek a rendszerbeállításoktól függően." -#: src/Module/Settings/Account.php:547 +#: src/Module/Settings/Account.php:533 #, php-format msgid "" "Your profile will also be published in the global friendica directories " "(e.g. %s)." msgstr "A profilja közzé lesz téve a globális Friendica könyvtárakban is (például itt: %s)." -#: src/Module/Settings/Account.php:560 +#: src/Module/Settings/Account.php:546 msgid "Account Settings" msgstr "Fiókbeállítások" -#: src/Module/Settings/Account.php:561 +#: src/Module/Settings/Account.php:547 #, php-format msgid "Your Identity Address is '%s' or '%s'." msgstr "Az Ön személyazonosság-címe „%s” vagy „%s”." -#: src/Module/Settings/Account.php:568 +#: src/Module/Settings/Account.php:554 msgid "Password Settings" msgstr "Jelszóbeállítások" -#: src/Module/Settings/Account.php:570 +#: src/Module/Settings/Account.php:556 msgid "Leave password fields blank unless changing" msgstr "Hagyja üresen a jelszómezőket, különben megváltozik" -#: src/Module/Settings/Account.php:572 +#: src/Module/Settings/Account.php:558 msgid "Password:" msgstr "Jelszó:" -#: src/Module/Settings/Account.php:572 +#: src/Module/Settings/Account.php:558 msgid "Your current password to confirm the changes of the email address" msgstr "A jelenlegi jelszava az e-mail-címe megváltoztatásának megerősítéséhez" -#: src/Module/Settings/Account.php:575 +#: src/Module/Settings/Account.php:561 msgid "Delete OpenID URL" msgstr "OpenID URL törlése" -#: src/Module/Settings/Account.php:577 +#: src/Module/Settings/Account.php:563 msgid "Basic Settings" msgstr "Alapvető beállítások" -#: src/Module/Settings/Account.php:578 -#: src/Module/Settings/Profile/Index.php:288 +#: src/Module/Settings/Account.php:564 +#: src/Module/Settings/Profile/Index.php:274 msgid "Display name:" msgstr "Megjelenített név:" -#: src/Module/Settings/Account.php:579 +#: src/Module/Settings/Account.php:565 msgid "Email Address:" msgstr "E-mail-cím:" -#: src/Module/Settings/Account.php:580 +#: src/Module/Settings/Account.php:566 msgid "Your Timezone:" msgstr "Az Ön időzónája:" -#: src/Module/Settings/Account.php:581 +#: src/Module/Settings/Account.php:567 msgid "Your Language:" msgstr "Az Ön nyelve:" -#: src/Module/Settings/Account.php:581 +#: src/Module/Settings/Account.php:567 msgid "" "Set the language we use to show you friendica interface and to send you " "emails" msgstr "Annak a nyelvnek a beállítása, amelyet a Friendica felületének megjelenítéséhez és a levelek küldéséhez használunk" -#: src/Module/Settings/Account.php:582 +#: src/Module/Settings/Account.php:568 msgid "Default Post Location:" msgstr "Alapértelmezett bejegyzésküldési hely:" -#: src/Module/Settings/Account.php:583 +#: src/Module/Settings/Account.php:569 msgid "Use Browser Location:" msgstr "Böngésző helyének használata:" -#: src/Module/Settings/Account.php:585 +#: src/Module/Settings/Account.php:571 msgid "Security and Privacy Settings" msgstr "Biztonsági és adatvédelmi beállítások" -#: src/Module/Settings/Account.php:587 +#: src/Module/Settings/Account.php:573 msgid "Maximum Friend Requests/Day:" msgstr "Legtöbb ismerőskérés naponta:" -#: src/Module/Settings/Account.php:587 +#: src/Module/Settings/Account.php:573 msgid "(to prevent spam abuse)" msgstr "(a kéretlen üzenettel való visszaélés elkerüléséhez)" -#: src/Module/Settings/Account.php:589 +#: src/Module/Settings/Account.php:575 msgid "Allow your profile to be searchable globally?" msgstr "Engedélyezi, hogy a profilja globálisan kereshető legyen?" -#: src/Module/Settings/Account.php:589 +#: src/Module/Settings/Account.php:575 msgid "" "Activate this setting if you want others to easily find and follow you. Your" " profile will be searchable on remote systems. This setting also determines " @@ -9951,43 +9932,43 @@ msgid "" "indexed or not." msgstr "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." -#: src/Module/Settings/Account.php:590 +#: src/Module/Settings/Account.php:576 msgid "Hide your contact/friend list from viewers of your profile?" msgstr "Elrejti a partnerlistáját vagy ismerőslistáját a profilja megtekintői elől?" -#: src/Module/Settings/Account.php:590 +#: src/Module/Settings/Account.php:576 msgid "" "A list of your contacts is displayed on your profile page. Activate this " "option to disable the display of your contact list." msgstr "A partnereinek listája a profiloldalán van megjelenítve. Kapcsolja be ezt a beállítást, hogy letiltsa a partnerlistája megjelenítését." -#: src/Module/Settings/Account.php:591 +#: src/Module/Settings/Account.php:577 msgid "Hide your public content from anonymous viewers" msgstr "Nyilvános tartalom elrejtése a névtelen megtekintők elől" -#: src/Module/Settings/Account.php:591 +#: src/Module/Settings/Account.php:577 msgid "" "Anonymous visitors will only see your basic profile details. Your public " "posts and replies will still be freely accessible on the remote servers of " "your followers and through relays." msgstr "A névtelen látogatók csak az alapvető profilrészleteit fogják látni. A nyilvános bejegyzései és válaszai továbbra is szabadon elérhetőek lesznek a követői távoli kiszolgálóin és a továbbítókon keresztül." -#: src/Module/Settings/Account.php:592 +#: src/Module/Settings/Account.php:578 msgid "Make public posts unlisted" msgstr "Nyilvános bejegyzések felsorolatlanná tétele" -#: src/Module/Settings/Account.php:592 +#: src/Module/Settings/Account.php:578 msgid "" "Your public posts will not appear on the community pages or in search " "results, nor be sent to relay servers. However they can still appear on " "public feeds on remote servers." msgstr "A nyilvános bejegyzései nem fognak megjelenni a közösségi oldalakon vagy a keresési találatokban, és nem lesznek elküldve az átjátszó kiszolgálóknak. Azonban továbbra is megjelenhetnek a nyilvános hírforrásokban a távoli kiszolgálókon." -#: src/Module/Settings/Account.php:593 +#: src/Module/Settings/Account.php:579 msgid "Make all posted pictures accessible" msgstr "Az összes beküldött fénykép elérhetővé tétele" -#: src/Module/Settings/Account.php:593 +#: src/Module/Settings/Account.php:579 msgid "" "This option makes every posted picture accessible via the direct link. This " "is a workaround for the problem that most other networks can't handle " @@ -9995,352 +9976,352 @@ msgid "" "public on your photo albums though." msgstr "Ez a beállítás elérhetővé tesz minden egyes beküldött fényképet a közvetlen hivatkozáson keresztül. Ez egy kerülőmegoldás arra a problémára, hogy a legtöbb más hálózat nem tudja kezelni a fényképek jogosultságait. A nem nyilvános fényképek továbbra sem lesznek láthatóak a nyilvánosság számára a fényképalbumán keresztül." -#: src/Module/Settings/Account.php:594 +#: src/Module/Settings/Account.php:580 msgid "Allow friends to post to your profile page?" msgstr "Engedélyezi az ismerősöknek, hogy beküldjenek a profiloldalára?" -#: src/Module/Settings/Account.php:594 +#: src/Module/Settings/Account.php:580 msgid "" "Your contacts may write posts on your profile wall. These posts will be " "distributed to your contacts" msgstr "A partnerei bejegyzéseket írhatnak az Ön profilfalára. Ezek a bejegyzések továbbítva lesznek a partnereinek." -#: src/Module/Settings/Account.php:595 +#: src/Module/Settings/Account.php:581 msgid "Allow friends to tag your posts?" msgstr "Engedélyezi az ismerőseinek, hogy címkézzék a bejegyzéseit?" -#: src/Module/Settings/Account.php:595 +#: src/Module/Settings/Account.php:581 msgid "Your contacts can add additional tags to your posts." msgstr "A partnerei további címkéket adhatnak a bejegyzéseihez." -#: src/Module/Settings/Account.php:596 +#: src/Module/Settings/Account.php:582 msgid "Default privacy circle for new contacts" msgstr "Alapértelmezett adatvédelmi kör az új partnerekhez" -#: src/Module/Settings/Account.php:597 +#: src/Module/Settings/Account.php:583 msgid "Default privacy circle for new group contacts" msgstr "Alapértelmezett adatvédelmi kör az új csoportpartnerekhez" -#: src/Module/Settings/Account.php:598 +#: src/Module/Settings/Account.php:584 msgid "Default Post Permissions" msgstr "Alapértelmezett bejegyzés-jogosultságok" -#: src/Module/Settings/Account.php:602 +#: src/Module/Settings/Account.php:588 msgid "Expiration settings" msgstr "Lejárati jogosultságok" -#: src/Module/Settings/Account.php:603 +#: src/Module/Settings/Account.php:589 msgid "Automatically expire posts after this many days:" msgstr "Bejegyzések automatikus lejárata ennyi nap után:" -#: src/Module/Settings/Account.php:603 +#: src/Module/Settings/Account.php:589 msgid "If empty, posts will not expire. Expired posts will be deleted" msgstr "Ha üres, akkor a bejegyzések nem járnak le. A lejárt bejegyzések törölve lesznek." -#: src/Module/Settings/Account.php:604 +#: src/Module/Settings/Account.php:590 msgid "Expire posts" msgstr "Bejegyzések lejárata" -#: src/Module/Settings/Account.php:604 +#: src/Module/Settings/Account.php:590 msgid "When activated, posts and comments will be expired." msgstr "Ha be van kapcsolva, akkor a bejegyzések és a hozzászólások le fognak járni." -#: src/Module/Settings/Account.php:605 +#: src/Module/Settings/Account.php:591 msgid "Expire personal notes" msgstr "Személyes jegyzetek lejárata" -#: src/Module/Settings/Account.php:605 +#: src/Module/Settings/Account.php:591 msgid "" "When activated, the personal notes on your profile page will be expired." msgstr "Ha be van kapcsolva, akkor a profiloldalán lévő személyes jegyzetek le fognak járni." -#: src/Module/Settings/Account.php:606 +#: src/Module/Settings/Account.php:592 msgid "Expire starred posts" msgstr "Csillagozott bejegyzések lejárata" -#: src/Module/Settings/Account.php:606 +#: src/Module/Settings/Account.php:592 msgid "" "Starring posts keeps them from being expired. That behaviour is overwritten " "by this setting." msgstr "A bejegyzések csillagozása megakadályozza azok lejáratát. Ez a viselkedés felülírható ezzel a beállítással." -#: src/Module/Settings/Account.php:607 +#: src/Module/Settings/Account.php:593 msgid "Only expire posts by others" msgstr "Csak a másoktól származó bejegyzések lejárata" -#: src/Module/Settings/Account.php:607 +#: src/Module/Settings/Account.php:593 msgid "" "When activated, your own posts never expire. Then the settings above are " "only valid for posts you received." msgstr "Ha be van kapcsolva, akkor a saját bejegyzései sosem járnak le. Ekkor a fenti beállítás csak azokra a bejegyzésekre érvényes, amelyeket megkap." -#: src/Module/Settings/Account.php:610 +#: src/Module/Settings/Account.php:596 msgid "Notification Settings" msgstr "Értesítési beállítások" -#: src/Module/Settings/Account.php:611 +#: src/Module/Settings/Account.php:597 msgid "Send a notification email when:" msgstr "Értesítési e-mail küldése a következő esetekben:" -#: src/Module/Settings/Account.php:612 +#: src/Module/Settings/Account.php:598 msgid "You receive an introduction" msgstr "Egy bemutatkozást fogad" -#: src/Module/Settings/Account.php:613 +#: src/Module/Settings/Account.php:599 msgid "Your introductions are confirmed" msgstr "A bemutatkozásait jóváhagyták" -#: src/Module/Settings/Account.php:614 +#: src/Module/Settings/Account.php:600 msgid "Someone writes on your profile wall" msgstr "Valaki ír a profilfalára" -#: src/Module/Settings/Account.php:615 +#: src/Module/Settings/Account.php:601 msgid "Someone writes a followup comment" msgstr "Valaki egy követő hozzászólást ír" -#: src/Module/Settings/Account.php:616 +#: src/Module/Settings/Account.php:602 msgid "You receive a private message" msgstr "Személyes üzenetet kap" -#: src/Module/Settings/Account.php:617 +#: src/Module/Settings/Account.php:603 msgid "You receive a friend suggestion" msgstr "Ismerősajánlást kap" -#: src/Module/Settings/Account.php:618 +#: src/Module/Settings/Account.php:604 msgid "You are tagged in a post" msgstr "Megjelölték egy bejegyzésben" -#: src/Module/Settings/Account.php:620 +#: src/Module/Settings/Account.php:606 msgid "Create a desktop notification when:" msgstr "Asztali értesítés létrehozása ekkor:" -#: src/Module/Settings/Account.php:621 +#: src/Module/Settings/Account.php:607 msgid "Someone tagged you" msgstr "Valaki megjelölte Önt" -#: src/Module/Settings/Account.php:622 +#: src/Module/Settings/Account.php:608 msgid "Someone directly commented on your post" msgstr "Valaki közvetlenül hozzászólt a bejegyzéséhez" -#: src/Module/Settings/Account.php:623 +#: src/Module/Settings/Account.php:609 msgid "Someone liked your content" msgstr "Valaki kedvelte az Ön tartalmát" -#: src/Module/Settings/Account.php:623 src/Module/Settings/Account.php:624 +#: src/Module/Settings/Account.php:609 src/Module/Settings/Account.php:610 msgid "Can only be enabled, when the direct comment notification is enabled." msgstr "Csak akkor engedélyezhető, ha a közvetlen hozzászólási értesítés engedélyezve van." -#: src/Module/Settings/Account.php:624 +#: src/Module/Settings/Account.php:610 msgid "Someone shared your content" msgstr "Valaki megosztotta az Ön tartalmát" -#: src/Module/Settings/Account.php:625 +#: src/Module/Settings/Account.php:611 msgid "Someone commented in your thread" msgstr "Valaki hozzászólt az Ön szálában" -#: src/Module/Settings/Account.php:626 +#: src/Module/Settings/Account.php:612 msgid "Someone commented in a thread where you commented" msgstr "Valaki hozzászólt egy olyan szálban, ahol Ön hozzászólt" -#: src/Module/Settings/Account.php:627 +#: src/Module/Settings/Account.php:613 msgid "Someone commented in a thread where you interacted" msgstr "Valaki hozzászólt egy olyan szálban, ahol Ön interakcióba került" -#: src/Module/Settings/Account.php:629 +#: src/Module/Settings/Account.php:615 msgid "Activate desktop notifications" msgstr "Asztali értesítések bekapcsolása" -#: src/Module/Settings/Account.php:629 +#: src/Module/Settings/Account.php:615 msgid "Show desktop popup on new notifications" msgstr "Felugró üzenet megjelenítése az asztalon új értesítések esetén." -#: src/Module/Settings/Account.php:633 +#: src/Module/Settings/Account.php:619 msgid "Text-only notification emails" msgstr "Csak szöveges értesítési e-mailek" -#: src/Module/Settings/Account.php:635 +#: src/Module/Settings/Account.php:621 msgid "Send text only notification emails, without the html part" msgstr "Csak szöveges értesítési e-mailek küldése a HTML rész nélkül." -#: src/Module/Settings/Account.php:639 +#: src/Module/Settings/Account.php:625 msgid "Show detailled notifications" msgstr "Részletes értesítések megjelenítése" -#: src/Module/Settings/Account.php:641 +#: src/Module/Settings/Account.php:627 msgid "" "Per default, notifications are condensed to a single notification per item. " "When enabled every notification is displayed." msgstr "Alapértelmezetten az értesítések elemenként egyetlen értesítésbe vannak összevonva. Ha engedélyezve van, akkor minden értesítés megjelenik." -#: src/Module/Settings/Account.php:645 +#: src/Module/Settings/Account.php:631 msgid "Show notifications of ignored contacts" msgstr "Mellőzött partnerek értesítéseinek megjelenítése" -#: src/Module/Settings/Account.php:647 +#: src/Module/Settings/Account.php:633 msgid "" "You don't see posts from ignored contacts. But you still see their comments." " This setting controls if you want to still receive regular notifications " "that are caused by ignored contacts or not." msgstr "Nem látja a mellőzött partnerektől érkező bejegyzéseket. Viszont továbbra is látja a hozzászólásaikat. Ez a beállítás azt vezérli, hogy továbbra is szeretne-e olyan normál értesítéseket kapni vagy sem, amelyeket mellőzött partnerek okoznak." -#: src/Module/Settings/Account.php:650 +#: src/Module/Settings/Account.php:636 msgid "Advanced Account/Page Type Settings" msgstr "Speciális fióktípus vagy oldaltípus beállítások" -#: src/Module/Settings/Account.php:651 +#: src/Module/Settings/Account.php:637 msgid "Change the behaviour of this account for special situations" msgstr "A fiók viselkedésének megváltoztatása bizonyos helyzetekre." -#: src/Module/Settings/Account.php:654 +#: src/Module/Settings/Account.php:640 msgid "Import Contacts" msgstr "Partnerek importálása" -#: src/Module/Settings/Account.php:655 +#: src/Module/Settings/Account.php:641 msgid "" "Upload a CSV file that contains the handle of your followed accounts in the " "first column you exported from the old account." msgstr "Töltsön fel egy olyan CSV-fájlt, amely a követett fiókok kezelőjét tartalmazza az első oszlopban, ahogy a régi fiókból exportálta." -#: src/Module/Settings/Account.php:656 +#: src/Module/Settings/Account.php:642 msgid "Upload File" msgstr "Fájl feltöltése" -#: src/Module/Settings/Account.php:659 +#: src/Module/Settings/Account.php:645 msgid "Relocate" msgstr "Áthelyezés" -#: src/Module/Settings/Account.php:660 +#: src/Module/Settings/Account.php:646 msgid "" "If you have moved this profile from another server, and some of your " "contacts don't receive your updates, try pushing this button." msgstr "Ha áthelyezte ezt a profilt egy másik kiszolgálóról, és néhány partnere nem kapta meg a frissítéseket, akkor próbálja meg megnyomni ezt a gombot." -#: src/Module/Settings/Account.php:661 +#: src/Module/Settings/Account.php:647 msgid "Resend relocate message to contacts" msgstr "Áthelyezési üzenet küldése a partnereknek" -#: src/Module/Settings/Addons.php:86 +#: src/Module/Settings/Addons.php:72 msgid "Addon Settings" msgstr "Bővítménybeállítások" -#: src/Module/Settings/Addons.php:87 +#: src/Module/Settings/Addons.php:73 msgid "No Addon settings configured" msgstr "Nincsenek bővítménybeállítások meghatározva" -#: src/Module/Settings/Channels.php:148 +#: src/Module/Settings/Channels.php:134 msgid "" "This page can be used to define the channels that will automatically be " "reshared by your account." msgstr "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:153 +#: src/Module/Settings/Channels.php:139 msgid "This page can be used to define your own channels." msgstr "Ez az oldal használható a saját csatornák meghatározásához." -#: src/Module/Settings/Channels.php:182 +#: src/Module/Settings/Channels.php:168 msgid "Publish" msgstr "Közzététel" -#: src/Module/Settings/Channels.php:182 +#: src/Module/Settings/Channels.php:168 msgid "" "When selected, the channel results are reshared. This only works for public " "ActivityPub posts from the public timeline or the user defined circles." msgstr "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:190 src/Module/Settings/Channels.php:211 -#: src/Module/Settings/Display.php:338 +#: src/Module/Settings/Channels.php:176 src/Module/Settings/Channels.php:197 +#: src/Module/Settings/Display.php:324 msgid "Label" msgstr "Címke" -#: src/Module/Settings/Channels.php:191 src/Module/Settings/Channels.php:212 -#: src/Module/Settings/Display.php:339 -#: src/Module/Settings/TwoFactor/AppSpecific.php:137 +#: src/Module/Settings/Channels.php:177 src/Module/Settings/Channels.php:198 +#: src/Module/Settings/Display.php:325 +#: src/Module/Settings/TwoFactor/AppSpecific.php:123 msgid "Description" msgstr "Leírás" -#: src/Module/Settings/Channels.php:192 src/Module/Settings/Channels.php:213 +#: src/Module/Settings/Channels.php:178 src/Module/Settings/Channels.php:199 msgid "Access Key" msgstr "Hívóbetű" -#: src/Module/Settings/Channels.php:193 src/Module/Settings/Channels.php:214 +#: src/Module/Settings/Channels.php:179 src/Module/Settings/Channels.php:200 msgid "Circle/Channel" msgstr "Kör vagy csatorna" -#: src/Module/Settings/Channels.php:194 src/Module/Settings/Channels.php:215 +#: src/Module/Settings/Channels.php:180 src/Module/Settings/Channels.php:201 msgid "Include Tags" msgstr "Címkék felvétele" -#: src/Module/Settings/Channels.php:195 src/Module/Settings/Channels.php:216 +#: src/Module/Settings/Channels.php:181 src/Module/Settings/Channels.php:202 msgid "Exclude Tags" msgstr "Címkék kizárása" -#: src/Module/Settings/Channels.php:196 src/Module/Settings/Channels.php:217 +#: src/Module/Settings/Channels.php:182 src/Module/Settings/Channels.php:203 msgid "Minimum Size" msgstr "Legkisebb méret" -#: src/Module/Settings/Channels.php:197 src/Module/Settings/Channels.php:218 +#: src/Module/Settings/Channels.php:183 src/Module/Settings/Channels.php:204 msgid "Maximum Size" msgstr "Legnagyobb méret" -#: src/Module/Settings/Channels.php:198 src/Module/Settings/Channels.php:219 +#: src/Module/Settings/Channels.php:184 src/Module/Settings/Channels.php:205 msgid "Full Text Search" msgstr "Teljes szöveges keresés" -#: src/Module/Settings/Channels.php:202 src/Module/Settings/Channels.php:223 +#: src/Module/Settings/Channels.php:188 src/Module/Settings/Channels.php:209 msgid "Select all languages that you want to see in this channel." msgstr "Válassza ki az összes nyelvet, amelyet látni szeretne ezen a csatornán." -#: src/Module/Settings/Channels.php:204 +#: src/Module/Settings/Channels.php:190 msgid "Delete channel" msgstr "Csatorna törlése" -#: src/Module/Settings/Channels.php:204 +#: src/Module/Settings/Channels.php:190 msgid "Check to delete this entry from the channel list" msgstr "Jelölje be a bejegyzés csatornalistából való törléséhez" -#: src/Module/Settings/Channels.php:211 +#: src/Module/Settings/Channels.php:197 msgid "Short name for the channel. It is displayed on the channels widget." msgstr "A csatorna rövid neve. Ez a csatornák felületi elemen jelenik meg." -#: src/Module/Settings/Channels.php:212 +#: src/Module/Settings/Channels.php:198 msgid "This should describe the content of the channel in a few word." msgstr "Ennek néhány szóban le kell írnia a csatorna tartalmát." -#: src/Module/Settings/Channels.php:213 +#: src/Module/Settings/Channels.php:199 msgid "" "When you want to access this channel via an access key, you can define it " "here. Pay attention to not use an already used one." msgstr "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:214 +#: src/Module/Settings/Channels.php:200 msgid "Select a circle or channel, that your channel should be based on." msgstr "Válasszon egy kört vagy csatornát, amelyen a csatornájának alapulnia kell." -#: src/Module/Settings/Channels.php:215 +#: src/Module/Settings/Channels.php:201 msgid "" "Comma separated list of tags. A post will be used when it contains any of " "the listed tags." msgstr "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:216 +#: src/Module/Settings/Channels.php:202 msgid "" "Comma separated list of tags. If a post contain any of these tags, then it " "will not be part of nthis channel." msgstr "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:217 +#: src/Module/Settings/Channels.php:203 msgid "" "Minimum post size. Leave empty for no minimum size. The size is calculated " "without links, attached posts, mentions or hashtags." msgstr "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:218 +#: src/Module/Settings/Channels.php:204 msgid "" "Maximum post size. Leave empty for no maximum size. The size is calculated " "without links, attached posts, mentions or hashtags." msgstr "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:219 +#: src/Module/Settings/Channels.php:205 #, php-format msgid "" "Search terms for the body, supports the \"boolean mode\" operators from " @@ -10348,600 +10329,589 @@ msgid "" "keywords: %s" 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:220 +#: src/Module/Settings/Channels.php:206 msgid "Check to display images in the channel." msgstr "Jelölje be a csatornában lévő képek megjelenítéséhez." -#: src/Module/Settings/Channels.php:221 +#: src/Module/Settings/Channels.php:207 msgid "Check to display videos in the channel." msgstr "Jelölje be a csatornában lévő videók megjelenítéséhez." -#: src/Module/Settings/Channels.php:222 +#: src/Module/Settings/Channels.php:208 msgid "Check to display audio in the channel." msgstr "Jelölje be a csatornában lévő hangok megjelenítéséhez." -#: src/Module/Settings/Channels.php:227 +#: src/Module/Settings/Channels.php:213 msgid "Add new entry to the channel list" msgstr "Új bejegyzés hozzáadása a csatornalistához" -#: src/Module/Settings/Channels.php:228 +#: src/Module/Settings/Channels.php:214 msgid "Add" msgstr "Hozzáadás" -#: src/Module/Settings/Channels.php:230 +#: src/Module/Settings/Channels.php:216 msgid "Current Entries in the channel list" msgstr "Jelenlegi bejegyzések a csatornalistában" -#: src/Module/Settings/Channels.php:233 +#: src/Module/Settings/Channels.php:219 msgid "Delete entry from the channel list" msgstr "Bejegyzés törlése a csatornalistáról" -#: src/Module/Settings/Channels.php:234 +#: src/Module/Settings/Channels.php:220 msgid "Delete entry from the channel list?" msgstr "Törli a bejegyzést a csatornalistáról?" -#: src/Module/Settings/Connectors.php:122 +#: src/Module/Settings/Connectors.php:108 msgid "Failed to connect with email account using the settings provided." msgstr "Nem sikerült kapcsolódni a megadott beállításokat használó e-mail-fiókkal." -#: src/Module/Settings/Connectors.php:169 -#: src/Module/Settings/Connectors.php:170 +#: src/Module/Settings/Connectors.php:155 +#: src/Module/Settings/Connectors.php:156 msgid "Diaspora (Socialhome, Hubzilla)" msgstr "Diaspora (Socialhome, Hubzilla)" -#: src/Module/Settings/Connectors.php:169 -#: src/Module/Settings/Connectors.php:173 +#: src/Module/Settings/Connectors.php:155 #, php-format msgid "Built-in support for %s connectivity is enabled" msgstr "A(z) %s összekapcsolhatóságának beépített támogatása engedélyezve" -#: src/Module/Settings/Connectors.php:170 -#: src/Module/Settings/Connectors.php:172 +#: src/Module/Settings/Connectors.php:156 #, php-format msgid "Built-in support for %s connectivity is disabled" msgstr "A(z) %s összekapcsolhatóságának beépített támogatása letiltva" -#: src/Module/Settings/Connectors.php:172 -#: src/Module/Settings/Connectors.php:173 -msgid "OStatus (GNU Social)" -msgstr "OStatus (GNU Social)" - -#: src/Module/Settings/Connectors.php:185 +#: src/Module/Settings/Connectors.php:167 msgid "Email access is disabled on this site." msgstr "Az e-mailes hozzáférés le van tiltva ezen az oldalon." -#: src/Module/Settings/Connectors.php:200 -#: src/Module/Settings/Connectors.php:254 +#: src/Module/Settings/Connectors.php:182 +#: src/Module/Settings/Connectors.php:233 msgid "None" msgstr "Nincs" -#: src/Module/Settings/Connectors.php:204 +#: src/Module/Settings/Connectors.php:186 msgid "Default (Mastodon will display the title and a link to the post)" msgstr "Alapértelmezett (a Mastodon megjeleníti a címet és a bejegyzésre mutató hivatkozást)" -#: src/Module/Settings/Connectors.php:205 +#: src/Module/Settings/Connectors.php:187 msgid "" "Use the summary (Mastodon and some others will treat it as content warning)" msgstr "Az összefoglaló használata (a Mastodon és néhányan egyéb tartalomfigyelmeztetésként fogja kezelni)" -#: src/Module/Settings/Connectors.php:206 +#: src/Module/Settings/Connectors.php:188 msgid "Embed the title in the body" msgstr "A cím beágyazása a törzsbe" -#: src/Module/Settings/Connectors.php:218 +#: src/Module/Settings/Connectors.php:199 msgid "General Social Media Settings" msgstr "Általános közösségimédia-beállítások" -#: src/Module/Settings/Connectors.php:221 +#: src/Module/Settings/Connectors.php:202 msgid "Followed content scope" msgstr "Követett tartalom hatóköre" -#: src/Module/Settings/Connectors.php:223 +#: src/Module/Settings/Connectors.php:204 msgid "" "By default, conversations in which your follows participated but didn't " "start will be shown in your timeline. You can turn this behavior off, or " "expand it to the conversations in which your follows liked a post." msgstr "Alapértelmezetten az idővonalán megjelennek azok a beszélgetések, amelyekben a követői részt vettek, de nem ők indították el. Ezt a viselkedést kikapcsolhatja, vagy kiterjesztheti azokra a beszélgetésekre, amelyekben a követőinek tetszett egy bejegyzés." -#: src/Module/Settings/Connectors.php:225 +#: src/Module/Settings/Connectors.php:206 msgid "Only conversations my follows started" msgstr "Csak a követőim által indított beszélgetések" -#: src/Module/Settings/Connectors.php:226 +#: src/Module/Settings/Connectors.php:207 msgid "Conversations my follows started or commented on (default)" msgstr "A követőim által indított vagy hozzászólt beszélgetések (alapértelmezett)" -#: src/Module/Settings/Connectors.php:227 +#: src/Module/Settings/Connectors.php:208 msgid "Any conversation my follows interacted with, including likes" msgstr "A követőim által interakcióba került beszélgetések, beleértve a kedveléseket is" -#: src/Module/Settings/Connectors.php:230 +#: src/Module/Settings/Connectors.php:211 msgid "Collapse sensitive posts" msgstr "Érzékeny bejegyzések összecsukása" -#: src/Module/Settings/Connectors.php:230 +#: src/Module/Settings/Connectors.php:211 msgid "" "If a post is marked as \"sensitive\", it will be displayed in a collapsed " "state, if this option is enabled." msgstr "Ha egy bejegyzés „érzékenyként” van jelölve, akkor az összecsukott állapotban jelenik meg, ha ez a beállítás engedélyezve van." -#: src/Module/Settings/Connectors.php:231 +#: src/Module/Settings/Connectors.php:212 msgid "Enable intelligent shortening" msgstr "Intelligens rövidítés engedélyezése" -#: src/Module/Settings/Connectors.php:231 +#: src/Module/Settings/Connectors.php:212 msgid "" "Normally the system tries to find the best link to add to shortened posts. " "If disabled, every shortened post will always point to the original " "friendica post." msgstr "Általában a rendszer megpróbálja megkeresni a legjobb hivatkozást a rövidített bejegyzésekhez történő hozzáadáshoz. Ha le van tiltva, akkor minden egyes rövidített bejegyzés mindig az eredeti Friendica bejegyzésre fog mutatni." -#: src/Module/Settings/Connectors.php:232 +#: src/Module/Settings/Connectors.php:213 msgid "Enable simple text shortening" msgstr "Egyszerű szövegrövidítés engedélyezése" -#: src/Module/Settings/Connectors.php:232 +#: src/Module/Settings/Connectors.php:213 msgid "" "Normally the system shortens posts at the next line feed. If this option is " "enabled then the system will shorten the text at the maximum character " "limit." msgstr "Általában a rendszer lerövidíti a bejegyzéseket a következő soremelésnél. Ha ez a beállítás engedélyezve van, akkor a rendszer a legnagyobb karakterkorlátnál fogja rövidíteni a szöveget." -#: src/Module/Settings/Connectors.php:233 +#: src/Module/Settings/Connectors.php:214 msgid "Attach the link title" msgstr "A hivatkozás címének csatolása" -#: src/Module/Settings/Connectors.php:233 +#: src/Module/Settings/Connectors.php:214 msgid "" "When activated, the title of the attached link will be added as a title on " "posts to Diaspora. This is mostly helpful with \"remote-self\" contacts that" " share feed content." msgstr "Ha be van kapcsolva, akkor a csatolt hivatkozás címe címként lesz hozzáadva a Diaspora hálózatra küldött bejegyzéseknél. Ez többnyire az olyan „távoli önmaga” partnerekkel hasznos, amelyek megosztják a hírforrás tartalmát." -#: src/Module/Settings/Connectors.php:234 +#: src/Module/Settings/Connectors.php:215 msgid "API: Use spoiler field as title" msgstr "API: a spoiler mező használata címként" -#: src/Module/Settings/Connectors.php:234 +#: src/Module/Settings/Connectors.php:215 msgid "" "When activated, the \"spoiler_text\" field in the API will be used for the " "title on standalone posts. When deactivated it will be used for spoiler " "text. For comments it will always be used for spoiler text." msgstr "Ha aktiválva van, akkor az API-ban lévő „spoiler_text” mező lesz használva az önálló bejegyzések címeként. Ha ki van kapcsolva, akkor a spoiler szövegéhez lesz használva. A megjegyzéseknél mindig a spoiler szövegéhez lesz használva." -#: src/Module/Settings/Connectors.php:235 +#: src/Module/Settings/Connectors.php:216 msgid "API: Automatically links at the end of the post as attached posts" msgstr "API: automatikusan a bejegyzés végéhez kapcsolja csatolt bejegyzésként" -#: src/Module/Settings/Connectors.php:235 +#: src/Module/Settings/Connectors.php:216 msgid "" "When activated, added links at the end of the post react the same way as " "added links in the web interface." msgstr "Ha aktiválva van, akkor a bejegyzés végéhez hozzáadott hivatkozások ugyanúgy reagálnak, mint a webes felületen hozzáadott hivatkozások." -#: src/Module/Settings/Connectors.php:236 +#: src/Module/Settings/Connectors.php:217 msgid "Article Mode" msgstr "Cikk mód" -#: src/Module/Settings/Connectors.php:236 +#: src/Module/Settings/Connectors.php:217 msgid "" "Controls how posts with titles are transmitted. Mastodon and its forks don't" " display the content of these posts if the post is created in the correct " "(default) way." msgstr "Azt vezérli, hogy a címekkel rendelkező bejegyzések hogyan kerülnek továbbításra. A Mastodon és elágaztatásai nem jelenítik meg ezeknek a bejegyzéseknek a tartalmát, ha a bejegyzést a megfelelő (alapértelmezett) módon hozták létre." -#: src/Module/Settings/Connectors.php:237 +#: src/Module/Settings/Connectors.php:218 msgid "Your legacy ActivityPub/GNU Social account" msgstr "Az örökölt ActivityPub/GNU Social fiókja" -#: src/Module/Settings/Connectors.php:237 +#: src/Module/Settings/Connectors.php:218 msgid "" "If you enter your old account name from an ActivityPub based system or your " "GNU Social/Statusnet account name here (in the format user@domain.tld), your" " contacts will be added automatically. The field will be emptied when done." msgstr "Ha megadja itt a régi, egy ActivityPub alapú rendszerből származó fiókja nevét, illetve a GNU Social vagy Statusnet fiókja nevét (felhasználó@tartomány.tld formátumban), akkor a partnerei automatikusan hozzá lesznek adva. A mező ki lesz ürítve, ha elkészült." -#: src/Module/Settings/Connectors.php:239 -msgid "Repair OStatus subscriptions" -msgstr "OStatus feliratkozások javítása" - -#: src/Module/Settings/Connectors.php:243 +#: src/Module/Settings/Connectors.php:222 msgid "Email/Mailbox Setup" msgstr "E-mail vagy postafiók-beállítások" -#: src/Module/Settings/Connectors.php:244 +#: src/Module/Settings/Connectors.php:223 msgid "" "If you wish to communicate with email contacts using this service " "(optional), please specify how to connect to your mailbox." msgstr "Ha e-mailes partnerekkel szeretne kommunikálni ezen szolgáltatás használatával (opcionális), akkor adja meg, hogy hogyan kell kapcsolódni a postafiókjához." -#: src/Module/Settings/Connectors.php:245 +#: src/Module/Settings/Connectors.php:224 msgid "Last successful email check:" msgstr "Legutóbbi sikeres e-mail-ellenőrzés:" -#: src/Module/Settings/Connectors.php:247 +#: src/Module/Settings/Connectors.php:226 msgid "IMAP server name:" msgstr "IMAP-kiszolgáló neve:" -#: src/Module/Settings/Connectors.php:248 +#: src/Module/Settings/Connectors.php:227 msgid "IMAP port:" msgstr "IMAP port:" -#: src/Module/Settings/Connectors.php:249 +#: src/Module/Settings/Connectors.php:228 msgid "Security:" msgstr "Biztonság:" -#: src/Module/Settings/Connectors.php:250 +#: src/Module/Settings/Connectors.php:229 msgid "Email login name:" msgstr "E-mail bejelentkezési neve:" -#: src/Module/Settings/Connectors.php:251 +#: src/Module/Settings/Connectors.php:230 msgid "Email password:" msgstr "E-mail jelszava:" -#: src/Module/Settings/Connectors.php:252 +#: src/Module/Settings/Connectors.php:231 msgid "Reply-to address:" msgstr "Válaszcím:" -#: src/Module/Settings/Connectors.php:253 +#: src/Module/Settings/Connectors.php:232 msgid "Send public posts to all email contacts:" msgstr "Nyilvános bejegyzések küldése az összes e-mail partnernek:" -#: src/Module/Settings/Connectors.php:254 +#: src/Module/Settings/Connectors.php:233 msgid "Action after import:" msgstr "Importálás utáni művelet:" -#: src/Module/Settings/Connectors.php:254 +#: src/Module/Settings/Connectors.php:233 msgid "Move to folder" msgstr "Áthelyezés mappába" -#: src/Module/Settings/Connectors.php:255 +#: src/Module/Settings/Connectors.php:234 msgid "Move to folder:" msgstr "Áthelyezés mappába:" -#: src/Module/Settings/Delegation.php:73 +#: src/Module/Settings/Delegation.php:59 msgid "Delegation successfully granted." msgstr "A meghatalmazás sikeresen megadva." -#: src/Module/Settings/Delegation.php:75 +#: src/Module/Settings/Delegation.php:61 msgid "Parent user not found, unavailable or password doesn't match." msgstr "A fölérendelt felhasználó nem található, nem érhető el vagy a jelszó nem egyezik." -#: src/Module/Settings/Delegation.php:79 +#: src/Module/Settings/Delegation.php:65 msgid "Delegation successfully revoked." msgstr "A meghatalmazás sikeresen visszavonva." -#: src/Module/Settings/Delegation.php:98 -#: src/Module/Settings/Delegation.php:120 +#: src/Module/Settings/Delegation.php:84 +#: src/Module/Settings/Delegation.php:106 msgid "" "Delegated administrators can view but not change delegation permissions." msgstr "A meghatalmazott adminisztrátorok megtekinthetik, de nem változtathatják meg a meghatalmazás jogosultságait." -#: src/Module/Settings/Delegation.php:112 +#: src/Module/Settings/Delegation.php:98 msgid "Delegate user not found." msgstr "A meghatalmazott felhasználó nem található." -#: src/Module/Settings/Delegation.php:169 +#: src/Module/Settings/Delegation.php:155 msgid "No parent user" msgstr "Nincs fölérendelt felhasználó" -#: src/Module/Settings/Delegation.php:180 -#: src/Module/Settings/Delegation.php:191 +#: src/Module/Settings/Delegation.php:166 +#: src/Module/Settings/Delegation.php:177 msgid "Parent User" msgstr "Fölérendelt felhasználó" -#: src/Module/Settings/Delegation.php:188 +#: src/Module/Settings/Delegation.php:174 msgid "Additional Accounts" msgstr "További fiókok" -#: src/Module/Settings/Delegation.php:189 +#: src/Module/Settings/Delegation.php:175 msgid "" "Register additional accounts that are automatically connected to your " "existing account so you can manage them from this account." msgstr "További fiókok regisztrálása, amelyek automatikusan hozzá vannak kapcsolva a meglévő fiókjához, így ebből a fiókból kezelheti azokat." -#: src/Module/Settings/Delegation.php:190 +#: src/Module/Settings/Delegation.php:176 msgid "Register an additional account" msgstr "További fiók regisztrálása" -#: src/Module/Settings/Delegation.php:192 +#: src/Module/Settings/Delegation.php:178 msgid "" "Parent users have total control about this account, including the account " "settings. Please double check whom you give this access." msgstr "A fölérendelt felhasználóknak teljes ellenőrzése van ezen fiók fölött, beleértve a fiók beállításait is. Ellenőrizze még egyszer, hogy kinek ad hozzáférést." -#: src/Module/Settings/Delegation.php:195 +#: src/Module/Settings/Delegation.php:181 msgid "Delegates" msgstr "Meghatalmazottak" -#: src/Module/Settings/Delegation.php:196 +#: src/Module/Settings/Delegation.php:182 msgid "" "Delegates are able to manage all aspects of this account/page except for " "basic account settings. Please do not delegate your personal account to " "anybody that you do not trust completely." msgstr "A meghatalmazottak képesek ezen fiókot vagy oldalt minden szempontból kezelni, kivéve az alapvető fiókbeállításokat. Ne hatalmazzon meg senki mást a személyes fiókja kezeléséhez, akiben nem bízik meg teljes mértékben." -#: src/Module/Settings/Delegation.php:197 +#: src/Module/Settings/Delegation.php:183 msgid "Existing Page Delegates" msgstr "Meglévő oldalmeghatalmazottak" -#: src/Module/Settings/Delegation.php:198 +#: src/Module/Settings/Delegation.php:184 msgid "Potential Delegates" msgstr "Lehetséges meghatalmazottak" -#: src/Module/Settings/Delegation.php:199 +#: src/Module/Settings/Delegation.php:185 msgid "No entries." msgstr "Nincsenek bejegyzések." -#: src/Module/Settings/Display.php:183 +#: src/Module/Settings/Display.php:169 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:209 #, php-format msgid "%s - (Unsupported)" msgstr "%s – (nem támogatott)" -#: src/Module/Settings/Display.php:260 +#: src/Module/Settings/Display.php:246 msgid "No preview" msgstr "Nincs előnézet" -#: src/Module/Settings/Display.php:261 +#: src/Module/Settings/Display.php:247 msgid "No image" msgstr "Nincs kép" -#: src/Module/Settings/Display.php:262 +#: src/Module/Settings/Display.php:248 msgid "Small Image" msgstr "Kis kép" -#: src/Module/Settings/Display.php:263 +#: src/Module/Settings/Display.php:249 msgid "Large Image" msgstr "Nagy kép" -#: src/Module/Settings/Display.php:308 +#: src/Module/Settings/Display.php:294 msgid "Display Settings" msgstr "Megjelenítési beállítások" -#: src/Module/Settings/Display.php:310 +#: src/Module/Settings/Display.php:296 msgid "General Theme Settings" msgstr "Általános témabeállítások" -#: src/Module/Settings/Display.php:311 +#: src/Module/Settings/Display.php:297 msgid "Custom Theme Settings" msgstr "Egyéni témabeállítások" -#: src/Module/Settings/Display.php:312 +#: src/Module/Settings/Display.php:298 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:151 view/theme/quattro/config.php:88 -#: view/theme/vier/config.php:136 +#: src/Module/Settings/Display.php:299 view/theme/duepuntozero/config.php:74 +#: view/theme/frio/config.php:139 view/theme/quattro/config.php:76 +#: view/theme/vier/config.php:124 msgid "Theme settings" msgstr "Témabeállítások" -#: src/Module/Settings/Display.php:314 +#: src/Module/Settings/Display.php:300 msgid "Timelines" msgstr "Idővonalak" -#: src/Module/Settings/Display.php:321 +#: src/Module/Settings/Display.php:307 msgid "Display Theme:" msgstr "Megjelenítés témája:" -#: src/Module/Settings/Display.php:322 +#: src/Module/Settings/Display.php:308 msgid "Mobile Theme:" msgstr "Mobil téma:" -#: src/Module/Settings/Display.php:325 +#: src/Module/Settings/Display.php:311 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:311 src/Module/Settings/Display.php:312 msgid "Maximum of 100 items" msgstr "Legfeljebb 100 elem" -#: src/Module/Settings/Display.php:326 +#: src/Module/Settings/Display.php:312 msgid "Number of items to display per page when viewed from mobile device:" msgstr "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:313 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:313 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:314 msgid "Display emoticons" msgstr "Hangulatjelek megjelenítése" -#: src/Module/Settings/Display.php:328 +#: src/Module/Settings/Display.php:314 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:315 msgid "Infinite scroll" msgstr "Végtelen görgetés" -#: src/Module/Settings/Display.php:329 +#: src/Module/Settings/Display.php:315 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:316 msgid "Enable Smart Threading" msgstr "Intelligens szálkezelés engedélyezése" -#: src/Module/Settings/Display.php:330 +#: src/Module/Settings/Display.php:316 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:317 msgid "Display the Dislike feature" msgstr "A nem tetszik funkció megjelenítése" -#: src/Module/Settings/Display.php:331 +#: src/Module/Settings/Display.php:317 msgid "" "Display the Dislike button and dislike reactions on posts and comments." msgstr "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:318 msgid "Display the resharer" msgstr "Az újramegosztó megjelenítése" -#: src/Module/Settings/Display.php:332 +#: src/Module/Settings/Display.php:318 msgid "Display the first resharer as icon and text on a reshared item." msgstr "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:319 msgid "Stay local" msgstr "Maradjon helyi" -#: src/Module/Settings/Display.php:333 +#: src/Module/Settings/Display.php:319 msgid "Don't go to a remote system when following a contact link." msgstr "Ne menjen távoli rendszerre, ha egy partnerhivatkozást követ." -#: src/Module/Settings/Display.php:334 +#: src/Module/Settings/Display.php:320 msgid "Show the post deletion checkbox" msgstr "A bejegyzéstörlés jelölőnégyzet megjelenítése" -#: src/Module/Settings/Display.php:334 +#: src/Module/Settings/Display.php:320 msgid "Display the checkbox for the post deletion on the network page." msgstr "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:321 msgid "DIsplay the event list" msgstr "Az eseménylista megjelenítése" -#: src/Module/Settings/Display.php:335 +#: src/Module/Settings/Display.php:321 msgid "Display the birthday reminder and event list on the network page." msgstr "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:322 msgid "Link preview mode" msgstr "Hivatkozás-előnézeti mód" -#: src/Module/Settings/Display.php:336 +#: src/Module/Settings/Display.php:322 msgid "Appearance of the link preview that is added to each post with a link." msgstr "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:327 msgid "Bookmark" msgstr "Könyvjelző" -#: src/Module/Settings/Display.php:343 +#: src/Module/Settings/Display.php:329 msgid "" "Enable timelines that you want to see in the channels widget. Bookmark " "timelines that you want to see in the top menu." msgstr "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:331 msgid "Channel languages:" msgstr "Csatorna nyelvei:" -#: src/Module/Settings/Display.php:345 +#: src/Module/Settings/Display.php:331 msgid "Select all languages that you want to see in your channels." msgstr "Válassza ki az összes nyelvet, amelyet látni szeretne a csatornáiban." -#: src/Module/Settings/Display.php:347 +#: src/Module/Settings/Display.php:333 msgid "Beginning of week:" msgstr "A hét kezdete:" -#: src/Module/Settings/Display.php:348 +#: src/Module/Settings/Display.php:334 msgid "Default calendar view:" msgstr "Alapértelmezett naptárnézet:" -#: src/Module/Settings/Features.php:73 +#: src/Module/Settings/Features.php:59 msgid "Additional Features" msgstr "További funkciók" -#: src/Module/Settings/OAuth.php:71 +#: src/Module/Settings/OAuth.php:57 msgid "Connected Apps" msgstr "Kapcsolt alkalmazások" -#: src/Module/Settings/OAuth.php:75 +#: src/Module/Settings/OAuth.php:61 msgid "Remove authorization" msgstr "Felhatalmazás eltávolítása" -#: src/Module/Settings/Profile/Index.php:116 +#: src/Module/Settings/Profile/Index.php:102 msgid "Display Name is required." msgstr "A megjelenített név kötelező." -#: src/Module/Settings/Profile/Index.php:170 +#: src/Module/Settings/Profile/Index.php:156 msgid "Profile couldn't be updated." msgstr "A profilt nem sikerült frissíteni." -#: src/Module/Settings/Profile/Index.php:210 -#: src/Module/Settings/Profile/Index.php:231 +#: src/Module/Settings/Profile/Index.php:196 +#: src/Module/Settings/Profile/Index.php:217 msgid "Label:" msgstr "Címke:" -#: src/Module/Settings/Profile/Index.php:211 -#: src/Module/Settings/Profile/Index.php:232 +#: src/Module/Settings/Profile/Index.php:197 +#: src/Module/Settings/Profile/Index.php:218 msgid "Value:" msgstr "Érték:" -#: src/Module/Settings/Profile/Index.php:222 -#: src/Module/Settings/Profile/Index.php:243 +#: src/Module/Settings/Profile/Index.php:208 +#: src/Module/Settings/Profile/Index.php:229 msgid "Field Permissions" msgstr "Mező jogosultságai" -#: src/Module/Settings/Profile/Index.php:223 -#: src/Module/Settings/Profile/Index.php:244 +#: src/Module/Settings/Profile/Index.php:209 +#: src/Module/Settings/Profile/Index.php:230 msgid "(click to open/close)" msgstr "(kattintson a megnyitáshoz vagy bezáráshoz)" -#: src/Module/Settings/Profile/Index.php:229 +#: src/Module/Settings/Profile/Index.php:215 msgid "Add a new profile field" msgstr "Új profilmező hozzáadása" -#: src/Module/Settings/Profile/Index.php:252 +#: src/Module/Settings/Profile/Index.php:238 msgid "" "The homepage is verified. A rel=\"me\" link back to your Friendica profile " "page was found on the homepage." msgstr "A honlap ellenőrizve. A Friendica profiloldalára visszamutató rel=\"me\" hivatkozás található a honlapon." -#: src/Module/Settings/Profile/Index.php:254 +#: src/Module/Settings/Profile/Index.php:240 #, php-format msgid "" "To verify your homepage, add a rel=\"me\" link to it, pointing to your " "profile URL (%s)." msgstr "A honlapja ellenőrzéséhez adjon hozzá egy rel=\"me\" hivatkozást a honlapjához, amely a profilja URL-jére mutat (%s)." -#: src/Module/Settings/Profile/Index.php:260 +#: src/Module/Settings/Profile/Index.php:246 msgid "Profile Actions" msgstr "Profilműveletek" -#: src/Module/Settings/Profile/Index.php:261 +#: src/Module/Settings/Profile/Index.php:247 msgid "Edit Profile Details" msgstr "Profil részleteinek szerkesztése" -#: src/Module/Settings/Profile/Index.php:263 +#: src/Module/Settings/Profile/Index.php:249 msgid "Change Profile Photo" msgstr "Profilfénykép megváltoztatása" -#: src/Module/Settings/Profile/Index.php:266 +#: src/Module/Settings/Profile/Index.php:252 msgid "Profile picture" msgstr "Profilfénykép" -#: src/Module/Settings/Profile/Index.php:267 +#: src/Module/Settings/Profile/Index.php:253 msgid "Location" msgstr "Hely" -#: src/Module/Settings/Profile/Index.php:268 src/Util/Temporal.php:97 -#: src/Util/Temporal.php:99 +#: src/Module/Settings/Profile/Index.php:254 src/Util/Temporal.php:83 +#: src/Util/Temporal.php:85 msgid "Miscellaneous" msgstr "Egyebek" -#: src/Module/Settings/Profile/Index.php:269 +#: src/Module/Settings/Profile/Index.php:255 msgid "Custom Profile Fields" msgstr "Egyéni profilmezők" -#: src/Module/Settings/Profile/Index.php:270 src/Module/Welcome.php:58 +#: src/Module/Settings/Profile/Index.php:256 src/Module/Welcome.php:44 msgid "Upload Profile Photo" msgstr "Profilfénykép feltöltése" -#: src/Module/Settings/Profile/Index.php:271 +#: src/Module/Settings/Profile/Index.php:257 #, php-format msgid "" "

Custom fields appear on your profile page.

\n" @@ -10951,396 +10921,396 @@ msgid "" "\t\t\t\t

Non-public fields can only be seen by the selected Friendica contacts or the Friendica contacts in the selected circles.

" msgstr "

Az egyéni mezők a profiloldalán jelennek meg\n\t\t\t\t

Használhat BBCode formázásokat a mező értékeiben.

\n\t\t\t\t

Átrendezheti a mező címének húzásával.

\n\t\t\t\t

Törölje ki a címkemezőt egy egyéni mező eltávolításához.

\n\t\t\t\t

A nem nyilvános mezőket csak a kijelölt Friendica partnerek vagy a kijelölt körökben lévő Friendica partnerek láthatják.

" -#: src/Module/Settings/Profile/Index.php:291 +#: src/Module/Settings/Profile/Index.php:277 msgid "Street Address:" msgstr "Utca, házszám:" -#: src/Module/Settings/Profile/Index.php:292 +#: src/Module/Settings/Profile/Index.php:278 msgid "Locality/City:" msgstr "Helység vagy város:" -#: src/Module/Settings/Profile/Index.php:293 +#: src/Module/Settings/Profile/Index.php:279 msgid "Region/State:" msgstr "Régió vagy állam:" -#: src/Module/Settings/Profile/Index.php:294 +#: src/Module/Settings/Profile/Index.php:280 msgid "Postal/Zip Code:" msgstr "Irányítószám:" -#: src/Module/Settings/Profile/Index.php:295 +#: src/Module/Settings/Profile/Index.php:281 msgid "Country:" msgstr "Ország:" -#: src/Module/Settings/Profile/Index.php:297 +#: src/Module/Settings/Profile/Index.php:283 msgid "XMPP (Jabber) address:" msgstr "XMPP (Jabber) cím:" -#: src/Module/Settings/Profile/Index.php:297 +#: src/Module/Settings/Profile/Index.php:283 msgid "" "The XMPP address will be published so that people can follow you there." msgstr "Az XMPP-cím közzé lesz téve, hogy az emberek képesek legyenek ott követni Önt." -#: src/Module/Settings/Profile/Index.php:298 +#: src/Module/Settings/Profile/Index.php:284 msgid "Matrix (Element) address:" msgstr "Mátrix (Element) cím:" -#: src/Module/Settings/Profile/Index.php:298 +#: src/Module/Settings/Profile/Index.php:284 msgid "" "The Matrix address will be published so that people can follow you there." msgstr "A Mátrix-cím közzé lesz téve, hogy az emberek képesek legyenek ott követni Önt." -#: src/Module/Settings/Profile/Index.php:299 +#: src/Module/Settings/Profile/Index.php:285 msgid "Homepage URL:" msgstr "Honlap URL:" -#: src/Module/Settings/Profile/Index.php:300 +#: src/Module/Settings/Profile/Index.php:286 msgid "Public Keywords:" msgstr "Nyilvános kulcsszavak:" -#: src/Module/Settings/Profile/Index.php:300 +#: src/Module/Settings/Profile/Index.php:286 msgid "(Used for suggesting potential friends, can be seen by others)" msgstr "(Lehetséges ismerősök ajánlásához lesz használva, mások is láthatják)" -#: src/Module/Settings/Profile/Index.php:301 +#: src/Module/Settings/Profile/Index.php:287 msgid "Private Keywords:" msgstr "Személyes kulcsszavak:" -#: src/Module/Settings/Profile/Index.php:301 +#: src/Module/Settings/Profile/Index.php:287 msgid "(Used for searching profiles, never shown to others)" 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:100 +#: src/Module/Settings/Profile/Photo/Crop.php:93 +#: src/Module/Settings/Profile/Photo/Crop.php:111 +#: src/Module/Settings/Profile/Photo/Crop.php:129 +#: src/Module/Settings/Profile/Photo/Index.php:86 #, php-format msgid "Image size reduction [%s] failed." msgstr "A kép méretének csökkentése [%s] sikertelen." -#: src/Module/Settings/Profile/Photo/Crop.php:150 +#: src/Module/Settings/Profile/Photo/Crop.php:136 msgid "" "Shift-reload the page or clear browser cache if the new photo does not " "display immediately." msgstr "Töltse újra az oldalt a Shift billentyű lenyomása közben, vagy törölje a böngésző gyorsítótárát, ha az új fénykép nem jelenik meg azonnal." -#: src/Module/Settings/Profile/Photo/Crop.php:155 +#: src/Module/Settings/Profile/Photo/Crop.php:141 msgid "Unable to process image" msgstr "Nem lehet feldolgozni a képet" -#: src/Module/Settings/Profile/Photo/Crop.php:174 +#: src/Module/Settings/Profile/Photo/Crop.php:160 msgid "Photo not found." msgstr "A fénykép nem található." -#: src/Module/Settings/Profile/Photo/Crop.php:196 +#: src/Module/Settings/Profile/Photo/Crop.php:182 msgid "Profile picture successfully updated." msgstr "A profilfénykép sikeresen frissítve." -#: src/Module/Settings/Profile/Photo/Crop.php:222 -#: src/Module/Settings/Profile/Photo/Crop.php:226 +#: src/Module/Settings/Profile/Photo/Crop.php:208 +#: src/Module/Settings/Profile/Photo/Crop.php:212 msgid "Crop Image" msgstr "Kép levágása" -#: src/Module/Settings/Profile/Photo/Crop.php:223 +#: src/Module/Settings/Profile/Photo/Crop.php:209 msgid "Please adjust the image cropping for optimum viewing." msgstr "Igazítsa a kép levágását az optimális megtekintéshez." -#: src/Module/Settings/Profile/Photo/Crop.php:225 +#: src/Module/Settings/Profile/Photo/Crop.php:211 msgid "Use Image As Is" msgstr "Kép használata, ahogy van" -#: src/Module/Settings/Profile/Photo/Index.php:46 +#: src/Module/Settings/Profile/Photo/Index.php:32 msgid "Missing uploaded image." msgstr "Hiányzó feltöltött kép." -#: src/Module/Settings/Profile/Photo/Index.php:123 +#: src/Module/Settings/Profile/Photo/Index.php:109 msgid "Profile Picture Settings" msgstr "Profilfénykép beállításai" -#: src/Module/Settings/Profile/Photo/Index.php:124 +#: src/Module/Settings/Profile/Photo/Index.php:110 msgid "Current Profile Picture" msgstr "Jelenlegi profilfénykép" -#: src/Module/Settings/Profile/Photo/Index.php:125 +#: src/Module/Settings/Profile/Photo/Index.php:111 msgid "Upload Profile Picture" msgstr "Profilfénykép feltöltése" -#: src/Module/Settings/Profile/Photo/Index.php:126 +#: src/Module/Settings/Profile/Photo/Index.php:112 msgid "Upload Picture:" msgstr "Fénykép feltöltése:" -#: src/Module/Settings/Profile/Photo/Index.php:131 +#: src/Module/Settings/Profile/Photo/Index.php:117 msgid "or" msgstr "vagy" -#: src/Module/Settings/Profile/Photo/Index.php:133 +#: src/Module/Settings/Profile/Photo/Index.php:119 msgid "skip this step" msgstr "ezen lépés kihagyása" -#: src/Module/Settings/Profile/Photo/Index.php:135 +#: src/Module/Settings/Profile/Photo/Index.php:121 msgid "select a photo from your photo albums" msgstr "fénykép kiválasztása a fényképalbumából" -#: src/Module/Settings/RemoveMe.php:76 +#: src/Module/Settings/RemoveMe.php:62 msgid "" "There was a validation error, please make sure you're logged in with the " "account you want to remove and try again." msgstr "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 +#: src/Module/Settings/RemoveMe.php:62 msgid "If this error persists, please contact your administrator." 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 -#: src/Navigation/Notifications/Repository/Notify.php:492 +#: src/Module/Settings/RemoveMe.php:76 +#: src/Navigation/Notifications/Repository/Notify.php:457 +#: src/Navigation/Notifications/Repository/Notify.php:478 msgid "[Friendica System Notify]" msgstr "[Friendica rendszerértesítés]" -#: src/Module/Settings/RemoveMe.php:90 +#: src/Module/Settings/RemoveMe.php:76 msgid "User deleted their account" msgstr "A felhasználó törölte a fiókját" -#: src/Module/Settings/RemoveMe.php:91 +#: src/Module/Settings/RemoveMe.php:77 msgid "" "On your Friendica node an user deleted their account. Please ensure that " "their data is removed from the backups." msgstr "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." -#: src/Module/Settings/RemoveMe.php:92 +#: src/Module/Settings/RemoveMe.php:78 #, php-format msgid "The user id is %d" msgstr "A felhasználó-azonosító %d" -#: src/Module/Settings/RemoveMe.php:105 +#: src/Module/Settings/RemoveMe.php:91 msgid "Your account has been successfully removed. Bye bye!" msgstr "A fiókja sikeresen el lett távolítva. Viszlát!" -#: src/Module/Settings/RemoveMe.php:130 +#: src/Module/Settings/RemoveMe.php:116 msgid "Remove My Account" msgstr "Saját fiók eltávolítása" -#: src/Module/Settings/RemoveMe.php:131 +#: src/Module/Settings/RemoveMe.php:117 msgid "" "This will completely remove your account. Once this has been done it is not " "recoverable." msgstr "Ez teljesen el fogja távolítani a fiókját. Miután ez megtörtént, nem lesz visszaállítható." -#: src/Module/Settings/RemoveMe.php:136 +#: src/Module/Settings/RemoveMe.php:122 msgid "Please enter your password for verification:" msgstr "Adja meg a jelszavát az ellenőrzéshez:" -#: src/Module/Settings/Server/Action.php:60 +#: src/Module/Settings/Server/Action.php:46 msgid "Do you want to ignore this server?" msgstr "Szeretné mellőzni ezt a kiszolgálót?" -#: src/Module/Settings/Server/Action.php:64 +#: src/Module/Settings/Server/Action.php:50 msgid "Do you want to unignore this server?" msgstr "Szeretné megszüntetni ennek a kiszolgálónak a mellőzését?" -#: src/Module/Settings/Server/Action.php:74 -#: src/Module/Settings/Server/Index.php:104 +#: src/Module/Settings/Server/Action.php:60 +#: src/Module/Settings/Server/Index.php:90 msgid "Remote server settings" msgstr "Távoli kiszolgáló beállításai" -#: src/Module/Settings/Server/Action.php:77 +#: src/Module/Settings/Server/Action.php:63 msgid "Server URL" msgstr "Kiszolgáló URL" -#: src/Module/Settings/Server/Index.php:78 +#: src/Module/Settings/Server/Index.php:64 msgid "Settings saved" msgstr "Beállítások elmentve" -#: src/Module/Settings/Server/Index.php:105 +#: src/Module/Settings/Server/Index.php:91 msgid "" "Here you can find all the remote servers you have taken individual " "moderation actions against. For a list of servers your node has blocked, " "please check out the Information page." msgstr "Itt találhatja meg az összes olyan távoli kiszolgálót, amelyekkel szemben egyéni moderálási műveleteket hajtott végre. A csomópontja által tiltott kiszolgálók listájáért nézze meg az Információk oldalt." -#: src/Module/Settings/Server/Index.php:110 +#: src/Module/Settings/Server/Index.php:96 msgid "Delete all your settings for the remote server" msgstr "Az Ön összes beállításának törlése a távoli kiszolgálónál" -#: src/Module/Settings/Server/Index.php:111 +#: src/Module/Settings/Server/Index.php:97 msgid "Save changes" msgstr "Változtatások mentése" -#: src/Module/Settings/TwoFactor/AppSpecific.php:69 -#: src/Module/Settings/TwoFactor/Recovery.php:67 -#: src/Module/Settings/TwoFactor/Trusted.php:70 -#: src/Module/Settings/TwoFactor/Verify.php:72 +#: src/Module/Settings/TwoFactor/AppSpecific.php:55 +#: src/Module/Settings/TwoFactor/Recovery.php:53 +#: src/Module/Settings/TwoFactor/Trusted.php:56 +#: src/Module/Settings/TwoFactor/Verify.php:58 msgid "Please enter your password to access this page." msgstr "Adja meg a jelszavát az oldal eléréséhez." -#: src/Module/Settings/TwoFactor/AppSpecific.php:87 +#: src/Module/Settings/TwoFactor/AppSpecific.php:73 msgid "App-specific password generation failed: The description is empty." msgstr "Az alkalmazásfüggő jelszó előállítása sikertelen: a leírás üres." -#: src/Module/Settings/TwoFactor/AppSpecific.php:90 +#: src/Module/Settings/TwoFactor/AppSpecific.php:76 msgid "" "App-specific password generation failed: This description already exists." msgstr "Az alkalmazásfüggő jelszó előállítása sikertelen: a leírás már létezik." -#: src/Module/Settings/TwoFactor/AppSpecific.php:94 +#: src/Module/Settings/TwoFactor/AppSpecific.php:80 msgid "New app-specific password generated." msgstr "Az új alkalmazásfüggő jelszó előállítva." -#: src/Module/Settings/TwoFactor/AppSpecific.php:100 +#: src/Module/Settings/TwoFactor/AppSpecific.php:86 msgid "App-specific passwords successfully revoked." msgstr "Az alkalmazásfüggő jelszavak sikeresen visszavonva." -#: src/Module/Settings/TwoFactor/AppSpecific.php:110 +#: src/Module/Settings/TwoFactor/AppSpecific.php:96 msgid "App-specific password successfully revoked." msgstr "Az alkalmazásfüggő jelszó sikeresen visszavonva." -#: src/Module/Settings/TwoFactor/AppSpecific.php:131 +#: src/Module/Settings/TwoFactor/AppSpecific.php:117 msgid "Two-factor app-specific passwords" msgstr "Kétlépcsős alkalmazásfüggő jelszavak" -#: src/Module/Settings/TwoFactor/AppSpecific.php:133 +#: src/Module/Settings/TwoFactor/AppSpecific.php:119 msgid "" "

App-specific passwords are randomly generated passwords used instead your" " regular password to authenticate your account on third-party applications " "that don't support two-factor authentication.

" msgstr "

Az alkalmazásfüggő jelszavak az Ön szokásos jelszava helyett használt véletlenszerűen előállított jelszavak, hogy hitelesítsék a fiókját az olyan harmadik féltől származó alkalmazásoknál, amelyek nem támogatják a kétlépcsős hitelesítést.

" -#: src/Module/Settings/TwoFactor/AppSpecific.php:134 +#: src/Module/Settings/TwoFactor/AppSpecific.php:120 msgid "" "Make sure to copy your new app-specific password now. You won’t be able to " "see it again!" msgstr "Győződjön meg arról, hogy lemásolta-e most az új alkalmazásfüggő jelszavát. Nem fogja tudni újra megnézni a jelszót!" -#: src/Module/Settings/TwoFactor/AppSpecific.php:138 +#: src/Module/Settings/TwoFactor/AppSpecific.php:124 msgid "Last Used" msgstr "Legutóbb használt" -#: src/Module/Settings/TwoFactor/AppSpecific.php:139 +#: src/Module/Settings/TwoFactor/AppSpecific.php:125 msgid "Revoke" msgstr "Visszavonás" -#: src/Module/Settings/TwoFactor/AppSpecific.php:140 +#: src/Module/Settings/TwoFactor/AppSpecific.php:126 msgid "Revoke All" msgstr "Összes visszavonása" -#: src/Module/Settings/TwoFactor/AppSpecific.php:143 +#: src/Module/Settings/TwoFactor/AppSpecific.php:129 msgid "" "When you generate a new app-specific password, you must use it right away, " "it will be shown to you once after you generate it." msgstr "Ha új alkalmazásfüggő jelszót állít elő, akkor azonnal fel kell használnia. Akkor lesz megjelenítve Önnek, miután előállította azt." -#: src/Module/Settings/TwoFactor/AppSpecific.php:144 +#: src/Module/Settings/TwoFactor/AppSpecific.php:130 msgid "Generate new app-specific password" msgstr "Új alkalmazásfüggő jelszó előállítása" -#: src/Module/Settings/TwoFactor/AppSpecific.php:145 +#: src/Module/Settings/TwoFactor/AppSpecific.php:131 msgid "Friendiqa on my Fairphone 2..." msgstr "Friendiqa a Fairphone 2 készülékemen…" -#: src/Module/Settings/TwoFactor/AppSpecific.php:146 +#: src/Module/Settings/TwoFactor/AppSpecific.php:132 msgid "Generate" msgstr "Előállítás" -#: src/Module/Settings/TwoFactor/Index.php:88 +#: src/Module/Settings/TwoFactor/Index.php:74 msgid "Two-factor authentication successfully disabled." msgstr "A kétlépcsős hitelesítés sikeresen letiltva." -#: src/Module/Settings/TwoFactor/Index.php:141 +#: src/Module/Settings/TwoFactor/Index.php:127 msgid "" "

Use an application on a mobile device to get two-factor authentication " "codes when prompted on login.

" msgstr "

Egy alkalmazás használata egy mobil eszközön, hogy megkapja a kétlépcsős hitelesítés kódjait, ha a bejelentkezéskor kérik.

" -#: src/Module/Settings/TwoFactor/Index.php:145 +#: src/Module/Settings/TwoFactor/Index.php:131 msgid "Authenticator app" msgstr "Hitelesítő alkalmazás" -#: src/Module/Settings/TwoFactor/Index.php:146 +#: src/Module/Settings/TwoFactor/Index.php:132 msgid "Configured" msgstr "Beállítva" -#: src/Module/Settings/TwoFactor/Index.php:146 +#: src/Module/Settings/TwoFactor/Index.php:132 msgid "Not Configured" msgstr "Nincs beállítva" -#: src/Module/Settings/TwoFactor/Index.php:147 +#: src/Module/Settings/TwoFactor/Index.php:133 msgid "

You haven't finished configuring your authenticator app.

" msgstr "

Nem fejezte be a hitelesítő alkalmazása beállítását.

" -#: src/Module/Settings/TwoFactor/Index.php:148 +#: src/Module/Settings/TwoFactor/Index.php:134 msgid "

Your authenticator app is correctly configured.

" msgstr "

A hitelesítő alkalmazása megfelelően be van állítva.

" -#: src/Module/Settings/TwoFactor/Index.php:150 +#: src/Module/Settings/TwoFactor/Index.php:136 msgid "Recovery codes" msgstr "Visszaszerzési kódok" -#: src/Module/Settings/TwoFactor/Index.php:151 +#: src/Module/Settings/TwoFactor/Index.php:137 msgid "Remaining valid codes" msgstr "Hátralévő érvényes kódok" -#: src/Module/Settings/TwoFactor/Index.php:153 +#: src/Module/Settings/TwoFactor/Index.php:139 msgid "" "

These one-use codes can replace an authenticator app code in case you " "have lost access to it.

" msgstr "

Ezek az egyszer használható kódok helyettesíthetnek egy hitelesítő alkalmazás kódot abban az esetben, ha elveszíti a hozzáférést ahhoz.

" -#: src/Module/Settings/TwoFactor/Index.php:155 +#: src/Module/Settings/TwoFactor/Index.php:141 msgid "App-specific passwords" msgstr "Alkalmazásfüggő jelszavak" -#: src/Module/Settings/TwoFactor/Index.php:156 +#: src/Module/Settings/TwoFactor/Index.php:142 msgid "Generated app-specific passwords" msgstr "Előállított alkalmazásfüggő jelszavak" -#: src/Module/Settings/TwoFactor/Index.php:158 +#: src/Module/Settings/TwoFactor/Index.php:144 msgid "" "

These randomly generated passwords allow you to authenticate on apps not " "supporting two-factor authentication.

" msgstr "

Ezek a véletlenszerűen előállított jelszavak lehetővé teszik, hogy olyan alkalmazásoknál hitelesítsen, amelyek nem támogatják a kétlépcsős hitelesítést.

" -#: src/Module/Settings/TwoFactor/Index.php:161 +#: src/Module/Settings/TwoFactor/Index.php:147 msgid "Current password:" msgstr "Jelenlegi jelszó:" -#: src/Module/Settings/TwoFactor/Index.php:161 +#: src/Module/Settings/TwoFactor/Index.php:147 msgid "" "You need to provide your current password to change two-factor " "authentication settings." msgstr "Meg kell adnia a jelenlegi jelszavát a kétlépcsős hitelesítési beállítások megváltoztatásához." -#: src/Module/Settings/TwoFactor/Index.php:162 +#: src/Module/Settings/TwoFactor/Index.php:148 msgid "Enable two-factor authentication" msgstr "Kétlépcsős hitelesítés engedélyezése" -#: src/Module/Settings/TwoFactor/Index.php:163 +#: src/Module/Settings/TwoFactor/Index.php:149 msgid "Disable two-factor authentication" msgstr "Kétlépcsős hitelesítés letiltása" -#: src/Module/Settings/TwoFactor/Index.php:164 +#: src/Module/Settings/TwoFactor/Index.php:150 msgid "Show recovery codes" msgstr "Visszaszerzési kódok megjelenítése" -#: src/Module/Settings/TwoFactor/Index.php:165 +#: src/Module/Settings/TwoFactor/Index.php:151 msgid "Manage app-specific passwords" msgstr "Alkalmazásfüggő jelszavak kezelése" -#: src/Module/Settings/TwoFactor/Index.php:166 +#: src/Module/Settings/TwoFactor/Index.php:152 msgid "Manage trusted browsers" msgstr "Megbízható böngészők kezelése" -#: src/Module/Settings/TwoFactor/Index.php:167 +#: src/Module/Settings/TwoFactor/Index.php:153 msgid "Finish app configuration" msgstr "Alkalmazás beállításának befejezése" -#: src/Module/Settings/TwoFactor/Recovery.php:83 +#: src/Module/Settings/TwoFactor/Recovery.php:69 msgid "New recovery codes successfully generated." msgstr "Az új visszaszerzési kódok sikeresen előállítva." -#: src/Module/Settings/TwoFactor/Recovery.php:109 +#: src/Module/Settings/TwoFactor/Recovery.php:95 msgid "Two-factor recovery codes" msgstr "Kétlépcsős visszaszerzési kódok" -#: src/Module/Settings/TwoFactor/Recovery.php:111 +#: src/Module/Settings/TwoFactor/Recovery.php:97 msgid "" "

Recovery codes can be used to access your account in the event you lose " "access to your device and cannot receive two-factor authentication " @@ -11349,68 +11319,68 @@ msgid "" "account.

" msgstr "

A visszaszerzési kódok használhatók a fiókjához való hozzáféréséhez abban az esetben, ha elveszti a hozzáférést az eszközéhez, és nem tud kétlépcsős hitelesítési kódokat fogadni.

Tegye ezeket biztonságos helyre! Ha elveszti az eszközét és nincsenek meg a visszaszerzési kódjai, akkor el fogja veszíteni a fiókjához való hozzáférést.

" -#: src/Module/Settings/TwoFactor/Recovery.php:113 +#: src/Module/Settings/TwoFactor/Recovery.php:99 msgid "" "When you generate new recovery codes, you must copy the new codes. Your old " "codes won’t work anymore." msgstr "Ha új visszaszerzési kódokat állít elő, akkor le kell másolnia az új kódokat. A régi kódjai többé nem fognak működni." -#: src/Module/Settings/TwoFactor/Recovery.php:114 +#: src/Module/Settings/TwoFactor/Recovery.php:100 msgid "Generate new recovery codes" msgstr "Új visszaszerzési kódok előállítása" -#: src/Module/Settings/TwoFactor/Recovery.php:116 +#: src/Module/Settings/TwoFactor/Recovery.php:102 msgid "Next: Verification" msgstr "Következő: ellenőrzés" -#: src/Module/Settings/TwoFactor/Trusted.php:87 +#: src/Module/Settings/TwoFactor/Trusted.php:73 msgid "Trusted browsers successfully removed." msgstr "A megbízható böngészők sikeresen eltávolítva." -#: src/Module/Settings/TwoFactor/Trusted.php:97 +#: src/Module/Settings/TwoFactor/Trusted.php:83 msgid "Trusted browser successfully removed." msgstr "A megbízható böngésző sikeresen eltávolítva." -#: src/Module/Settings/TwoFactor/Trusted.php:139 +#: src/Module/Settings/TwoFactor/Trusted.php:125 msgid "Two-factor Trusted Browsers" msgstr "Kétlépcsős megbízható böngészők" -#: src/Module/Settings/TwoFactor/Trusted.php:140 +#: src/Module/Settings/TwoFactor/Trusted.php:126 msgid "" "Trusted browsers are individual browsers you chose to skip two-factor " "authentication to access Friendica. Please use this feature sparingly, as it" " can negate the benefit of two-factor authentication." msgstr "A megbízható böngészők azok az egyéni böngészők, amelyeknél a kétlépcsős hitelesítés kihagyását választotta a Friendica alkalmazáshoz való hozzáféréshez. Lehetőleg mellőzze ennek a funkciónak a használatát, mivel ez megszüntetheti a kétlépcsős hitelesítés előnyeit." -#: src/Module/Settings/TwoFactor/Trusted.php:141 +#: src/Module/Settings/TwoFactor/Trusted.php:127 msgid "Device" msgstr "Eszköz" -#: src/Module/Settings/TwoFactor/Trusted.php:142 +#: src/Module/Settings/TwoFactor/Trusted.php:128 msgid "OS" msgstr "Operációs rendszer" -#: src/Module/Settings/TwoFactor/Trusted.php:144 +#: src/Module/Settings/TwoFactor/Trusted.php:130 msgid "Trusted" msgstr "Megbízható" -#: src/Module/Settings/TwoFactor/Trusted.php:145 +#: src/Module/Settings/TwoFactor/Trusted.php:131 msgid "Created At" msgstr "Létrehozva:" -#: src/Module/Settings/TwoFactor/Trusted.php:146 +#: src/Module/Settings/TwoFactor/Trusted.php:132 msgid "Last Use" msgstr "Utolsó használat" -#: src/Module/Settings/TwoFactor/Trusted.php:148 +#: src/Module/Settings/TwoFactor/Trusted.php:134 msgid "Remove All" msgstr "Összes eltávolítása" -#: src/Module/Settings/TwoFactor/Verify.php:94 +#: src/Module/Settings/TwoFactor/Verify.php:80 msgid "Two-factor authentication successfully activated." msgstr "A kétlépcsős hitelesítés sikeresen bekapcsolva." -#: src/Module/Settings/TwoFactor/Verify.php:128 +#: src/Module/Settings/TwoFactor/Verify.php:114 #, php-format msgid "" "

Or you can submit the authentication settings manually:

\n" @@ -11430,105 +11400,105 @@ msgid "" "" msgstr "

Vagy elküldheti a hitelesítési beállításokat kézzel:

\n
\n\t
Kibocsájtó
\n\t
%s
\n\t
Fiók neve
\n\t
%s
\n\t
Titkos kulcs
\n\t
%s
\n\t
Típus
\n\t
Időalapú
\n\t
Számjegyek száma
\n\t
6
\n\t
Kivonatoló algoritmus
\n\t
SHA-1
\n
" -#: src/Module/Settings/TwoFactor/Verify.php:148 +#: src/Module/Settings/TwoFactor/Verify.php:134 msgid "Two-factor code verification" msgstr "Kétlépcsős kód ellenőrzése" -#: src/Module/Settings/TwoFactor/Verify.php:150 +#: src/Module/Settings/TwoFactor/Verify.php:136 msgid "" "

Please scan this QR Code with your authenticator app and submit the " "provided code.

" msgstr "

Olvassa be ezt a QR-kódot a hitelesítő alkalmazásával, és küldje el a megkapott kódot.

" -#: src/Module/Settings/TwoFactor/Verify.php:152 +#: src/Module/Settings/TwoFactor/Verify.php:138 #, php-format msgid "" "

Or you can open the following URL in your mobile device:

%s

" msgstr "

Vagy megnyithatja a következő URL-t a mobil eszközén:

%s

" -#: src/Module/Settings/TwoFactor/Verify.php:159 +#: src/Module/Settings/TwoFactor/Verify.php:145 msgid "Verify code and enable two-factor authentication" msgstr "Kód ellenőrzése és a kétlépcsős hitelesítés engedélyezése" -#: src/Module/Settings/UserExport.php:90 +#: src/Module/Settings/UserExport.php:76 msgid "Export account" msgstr "Fiók exportálása" -#: src/Module/Settings/UserExport.php:90 +#: src/Module/Settings/UserExport.php:76 msgid "" "Export your account info and contacts. Use this to make a backup of your " "account and/or to move it to another server." msgstr "Fiókinformációk és partnerek exportálása. A fiókjáról történő biztonsági mentés készítéséhez és/vagy egy másik kiszolgálóra való áthelyezéséhez használja ezt." -#: src/Module/Settings/UserExport.php:91 +#: src/Module/Settings/UserExport.php:77 msgid "Export all" msgstr "Összes exportálása" -#: src/Module/Settings/UserExport.php:91 +#: src/Module/Settings/UserExport.php:77 msgid "" "Export your account info, contacts and all your items as json. Could be a " "very big file, and could take a lot of time. Use this to make a full backup " "of your account (photos are not exported)" msgstr "Fiókinformációk, partnerek és az összes elem exportálása JSON-formátumban. nagyon nagy fájl is lehet, és sokáig eltarthat. A fiókja teljes biztonsági mentésének elkészítéséhez használja ezt (a fényképek nem lesznek exportálva)." -#: src/Module/Settings/UserExport.php:92 +#: src/Module/Settings/UserExport.php:78 msgid "Export Contacts to CSV" msgstr "Partnerek exportálása CSV-fájlba" -#: src/Module/Settings/UserExport.php:92 +#: src/Module/Settings/UserExport.php:78 msgid "" "Export the list of the accounts you are following as CSV file. Compatible to" " e.g. Mastodon." msgstr "A követett fiókok listájának exportálása CSV-fájlként. Kompatibilis például a Mastodonnal." -#: src/Module/Special/DisplayNotFound.php:35 +#: src/Module/Special/DisplayNotFound.php:21 msgid "The top-level post isn't visible." msgstr "A felső szintű bejegyzés nem látható." -#: src/Module/Special/DisplayNotFound.php:36 +#: src/Module/Special/DisplayNotFound.php:22 msgid "The top-level post was deleted." msgstr "A felső szintű bejegyzés törölve lett." -#: src/Module/Special/DisplayNotFound.php:37 +#: src/Module/Special/DisplayNotFound.php:23 msgid "" "This node has blocked the top-level author or the author of the shared post." msgstr "Ez a csomópont letiltotta a felső szintű szerzőt vagy a megosztott bejegyzés szerzőjét." -#: src/Module/Special/DisplayNotFound.php:38 +#: src/Module/Special/DisplayNotFound.php:24 msgid "" "You have ignored or blocked the top-level author or the author of the shared" " post." msgstr "Ön mellőzte vagy letiltotta a felső szintű szerzőt vagy a megosztott bejegyzés szerzőjét." -#: src/Module/Special/DisplayNotFound.php:39 +#: src/Module/Special/DisplayNotFound.php:25 msgid "" "You have ignored the top-level author's server or the shared post author's " "server." msgstr "Ön mellőzte a felső szintű szerző kiszolgálóját vagy a megosztott bejegyzés szerzőjének kiszolgálóját." -#: src/Module/Special/DisplayNotFound.php:45 +#: src/Module/Special/DisplayNotFound.php:31 msgid "Conversation Not Found" msgstr "A beszélgetés nem található" -#: src/Module/Special/DisplayNotFound.php:46 +#: src/Module/Special/DisplayNotFound.php:32 msgid "Unfortunately, the requested conversation isn't available to you." msgstr "Sajnos a kért beszélgetés nem érhető el az Ön számára." -#: src/Module/Special/DisplayNotFound.php:47 +#: src/Module/Special/DisplayNotFound.php:33 msgid "Possible reasons include:" msgstr "A lehetséges okok a következők:" -#: src/Module/Special/HTTPException.php:78 +#: src/Module/Special/HTTPException.php:64 msgid "Stack trace:" msgstr "Veremkiíratás:" -#: src/Module/Special/HTTPException.php:83 +#: src/Module/Special/HTTPException.php:69 #, php-format msgid "Exception thrown in %s:%d" msgstr "Kivétel történt itt: %s:%d" -#: src/Module/Tos.php:58 src/Module/Tos.php:107 +#: src/Module/Tos.php:44 src/Module/Tos.php:93 msgid "" "At the time of registration, and for providing communications between the " "user account and their contacts, the user has to provide a display name (pen" @@ -11541,14 +11511,14 @@ msgid "" "settings, it is not necessary for communication." msgstr "A regisztrációkor, valamint a felhasználói fiók és a partnerei között történő kommunikáció biztosításához a felhasználónak biztosítania kell egy megjelenített nevet (álnevet), egy felhasználónevet (becenevet) és egy működő e-mail-címet. A nevek hozzáférhetőek lesznek a fiók profiloldalán az oldal bármely látogatója számára, még akkor is, ha más profilrészletek nem jelennek meg. Az e-mail-cím csak az interakciókkal kapcsolatos felhasználói értesítések küldéséhez lesz használva, de nem lesz láthatóan megjelenítve. A fiók felsorolása a csomópont felhasználói könyvtárában vagy a globális felhasználói könyvtárban választható, és a felhasználói beállításokban szabályozható. Ez nem szükséges a kommunikációhoz." -#: src/Module/Tos.php:59 src/Module/Tos.php:108 +#: src/Module/Tos.php:45 src/Module/Tos.php:94 msgid "" "This data is required for communication and is passed on to the nodes of the" " communication partners and is stored there. Users can enter additional " "private data that may be transmitted to the communication partners accounts." msgstr "Ezek az adatok a kommunikációhoz szükségesek, és átadásra kerül a kommunikációs partnerek csomópontjainak, valamint el is lesznek tárolva ott. A felhasználók megadhatnak további személyes adatokat, amelyek szintén átvitelre kerülhetnek a kommunikációs partnerek fiókjaiba." -#: src/Module/Tos.php:60 src/Module/Tos.php:109 +#: src/Module/Tos.php:46 src/Module/Tos.php:95 #, php-format msgid "" "At any point in time a logged in user can export their account data from the" @@ -11559,121 +11529,121 @@ msgid "" "from the nodes of the communication partners." msgstr "Egy bejelentkezett felhasználó bármely időpontban exportálhatja a fiókja adatait a fiók beállításaiból. Ha a felhasználó törölni szeretné a fiókját, akkor azt megteheti a %1$s/settings/removeme oldalon. A fiók törlése végleges lesz. Az adatok törlése kérve lesz a kommunikációs partnerek csomópontjairól is." -#: src/Module/Tos.php:63 src/Module/Tos.php:106 +#: src/Module/Tos.php:49 src/Module/Tos.php:92 msgid "Privacy Statement" msgstr "Adatvédelmi nyilatkozat" -#: src/Module/Tos.php:103 +#: src/Module/Tos.php:89 msgid "Rules" msgstr "Szabályok" -#: src/Module/Update/Display.php:45 +#: src/Module/Update/Display.php:31 msgid "Parameter uri_id is missing." msgstr "Az uri_id paraméter hiányzik." -#: src/Module/Update/Display.php:55 +#: src/Module/Update/Display.php:41 msgid "The requested item doesn't exist or has been deleted." msgstr "A kért elem nem létezik vagy törölték." -#: src/Module/User/Delegation.php:146 +#: src/Module/User/Delegation.php:132 #, php-format msgid "You are now logged in as %s" msgstr "Most a következő néven van bejelentkezve: %s" -#: src/Module/User/Delegation.php:185 +#: src/Module/User/Delegation.php:171 msgid "Switch between your accounts" msgstr "Váltás a fiókjai között" -#: src/Module/User/Delegation.php:186 +#: src/Module/User/Delegation.php:172 msgid "Manage your accounts" msgstr "Fiókok kezelése" -#: src/Module/User/Delegation.php:187 +#: src/Module/User/Delegation.php:173 msgid "" "Toggle between different identities or community/group pages which share " "your account details or which you have been granted \"manage\" permissions" msgstr "Váltás a különböző személyazonosságok vagy közösségi és csoportoldalak között, amelyek megosztják a fiókja részleteit, vagy amelyeket „kezelés” jogosultságokkal ruházott fel" -#: src/Module/User/Delegation.php:188 +#: src/Module/User/Delegation.php:174 msgid "Select an identity to manage: " msgstr "A kezelendő személyazonosság kiválasztása: " -#: src/Module/User/Import.php:104 +#: src/Module/User/Import.php:90 msgid "User imports on closed servers can only be done by an administrator." msgstr "A lezárt kiszolgálókon történő felhasználó-importálásokat csak egy adminisztrátor végezheti el." -#: src/Module/User/Import.php:120 +#: src/Module/User/Import.php:106 msgid "Move account" msgstr "Fiók áthelyezése" -#: src/Module/User/Import.php:121 +#: src/Module/User/Import.php:107 msgid "You can import an account from another Friendica server." msgstr "Importálhat egy fiókot egy másik Friendica kiszolgálóról." -#: src/Module/User/Import.php:122 +#: src/Module/User/Import.php:108 msgid "" "You need to export your account from the old server and upload it here. We " "will recreate your old account here with all your contacts. We will try also" " to inform your friends that you moved here." msgstr "Exportálnia kell a fiókját a régi kiszolgálóról, és fel kell töltenie ide. Itt újra létre fogjuk hozni a régi fiókját az összes partnerével. Megpróbáljuk tájékoztatni az ismerőseit arról is, hogy átköltözött ide." -#: src/Module/User/Import.php:123 +#: src/Module/User/Import.php:109 msgid "" "This feature is experimental. We can't import contacts from the OStatus " "network (GNU Social/Statusnet) or from Diaspora" msgstr "Ez a funkció kísérleti. Nem tudunk partnereket importálni az OStatus hálózatból (GNU Social/Statusnet) vagy Diaspora hálózatból." -#: src/Module/User/Import.php:124 +#: src/Module/User/Import.php:110 msgid "Account file" msgstr "Fiókfájl" -#: src/Module/User/Import.php:124 +#: src/Module/User/Import.php:110 msgid "" "To export your account, go to \"Settings->Export your personal data\" and " "select \"Export account\"" msgstr "A fiókja exportálásához menjen a „Beállítások → Személyes adatok exportálása” oldalra, és válassza a „Fiók exportálása” lehetőséget." -#: src/Module/User/Import.php:218 +#: src/Module/User/Import.php:204 msgid "Error decoding account file" msgstr "Hiba a fiókfájl dekódolásakor" -#: src/Module/User/Import.php:223 +#: src/Module/User/Import.php:209 msgid "Error! No version data in file! This is not a Friendica account file?" msgstr "Hiba! Nincsenek verzióadatok a fájlban! Ez nem Friendica fiókfájl?" -#: src/Module/User/Import.php:231 +#: src/Module/User/Import.php:217 #, php-format msgid "User '%s' already exists on this server!" msgstr "„%s” felhasználó már létezik ezen a kiszolgálón!" -#: src/Module/User/Import.php:268 +#: src/Module/User/Import.php:254 msgid "User creation error" msgstr "Felhasználó-létrehozási hiba" -#: src/Module/User/Import.php:317 +#: src/Module/User/Import.php:303 #, php-format msgid "%d contact not imported" msgid_plural "%d contacts not imported" msgstr[0] "%d partner nincs importálva" msgstr[1] "%d partner nincs importálva" -#: src/Module/User/Import.php:366 +#: src/Module/User/Import.php:352 msgid "User profile creation error" msgstr "Felhasználóiprofil-létrehozási hiba" -#: src/Module/User/Import.php:417 +#: src/Module/User/Import.php:403 msgid "Done. You can now login with your username and password" msgstr "Kész. Most már bejelentkezhet a felhasználónevével és a jelszavával." -#: src/Module/Welcome.php:44 +#: src/Module/Welcome.php:30 msgid "Welcome to Friendica" msgstr "Üdvözli a Friendica!" -#: src/Module/Welcome.php:45 +#: src/Module/Welcome.php:31 msgid "New Member Checklist" msgstr "Új tag ellenőrzőlistája" -#: src/Module/Welcome.php:46 +#: src/Module/Welcome.php:32 msgid "" "We would like to offer some tips and links to help make your experience " "enjoyable. Click any item to visit the relevant page. A link to this page " @@ -11681,33 +11651,33 @@ msgid "" "registration and then will quietly disappear." msgstr "Tippeket és hivatkozásokat szeretnénk ajánlani, hogy élvezhetővé tegyük az alkalmazás használatát. Kattintson bármelyik elemre a kapcsolódó oldal megtekintéséhez. Az erre az oldalra mutató hivatkozás a kezdőlapjáról érhető el a kezdeti regisztrációt követő két héten belül, azután csendben eltűnik." -#: src/Module/Welcome.php:48 +#: src/Module/Welcome.php:34 msgid "Getting Started" msgstr "Kezdeti lépések" -#: src/Module/Welcome.php:49 +#: src/Module/Welcome.php:35 msgid "Friendica Walk-Through" msgstr "Friendica útmutató" -#: src/Module/Welcome.php:50 +#: src/Module/Welcome.php:36 msgid "" "On your Quick Start page - find a brief introduction to your " "profile and network tabs, make some new connections, and find some groups to" " join." msgstr "A Gyors kezdés oldalon találhat egy rövid bemutatót a profil és hálózati lapokról, új kapcsolatok létesítésről, valamint találhat néhány csoportot, amelyekhez csatlakozhat." -#: src/Module/Welcome.php:53 +#: src/Module/Welcome.php:39 msgid "Go to Your Settings" msgstr "Ugrás a beállításaihoz" -#: src/Module/Welcome.php:54 +#: src/Module/Welcome.php:40 msgid "" "On your Settings page - change your initial password. Also make a " "note of your Identity Address. This looks just like an email address - and " "will be useful in making friends on the free social web." msgstr "A Beállítások oldalon változtathatja meg a kezdeti jelszavát. Szintén itt talál egy megjegyzést a személyazonosság-címével kapcsolatban. Ez úgy néz ki mint egy e-mail-cím, és hasznos lesz a szabad közösségi hálón az ismerősök kereséséhez." -#: src/Module/Welcome.php:55 +#: src/Module/Welcome.php:41 msgid "" "Review the other settings, particularly the privacy settings. An unpublished" " directory listing is like having an unlisted phone number. In general, you " @@ -11715,77 +11685,77 @@ msgid "" "potential friends know exactly how to find you." msgstr "Vizsgálja felül az egyéb beállításokat is, különösen az adatvédelmi beállításokat. Egy nem közzétett könyvtárlistázás olyan, mint ha egy nyilvánosságra nem hozott telefonszáma lenne. Általában valószínűleg közzé kell tennie a listázását, hacsak az ismerősei és a lehetséges ismerősei nem tudják pontosan, hogy hogyan találják meg Önt." -#: src/Module/Welcome.php:59 +#: src/Module/Welcome.php:45 msgid "" "Upload a profile photo if you have not done so already. Studies have shown " "that people with real photos of themselves are ten times more likely to make" " friends than people who do not." msgstr "Töltsön fel profilfényképet, ha ezt még nem tette meg. A tanulmányok kimutatták, hogy a saját magukról valódi fényképpel rendelkező emberek tízszer valószínűbben találnak ismerősöket mint azok az emberek, akiknek nincs profilfényképük." -#: src/Module/Welcome.php:60 +#: src/Module/Welcome.php:46 msgid "Edit Your Profile" msgstr "A profil szerkesztése" -#: src/Module/Welcome.php:61 +#: src/Module/Welcome.php:47 msgid "" "Edit your default profile to your liking. Review the " "settings for hiding your list of friends and hiding the profile from unknown" " visitors." msgstr "Szerkessze az alapértelmezett profilját a kedve szerint. Vizsgálja felül a beállításokat az ismerősök listájának elrejtéséhez és a profiljának az ismeretlen látogatók elől történő elrejtéséhez." -#: src/Module/Welcome.php:62 +#: src/Module/Welcome.php:48 msgid "Profile Keywords" msgstr "Profil kulcsszavai" -#: src/Module/Welcome.php:63 +#: src/Module/Welcome.php:49 msgid "" "Set some public keywords for your profile which describe your interests. We " "may be able to find other people with similar interests and suggest " "friendships." msgstr "Állítson be néhány nyilvános kulcsszót a profiljához, amely bemutatja az érdeklődési köreit. Képesek lehetünk megtalálni a hasonló érdeklődéssel rendelkező más embereket, és ajánlhatunk ismeretségeket." -#: src/Module/Welcome.php:65 +#: src/Module/Welcome.php:51 msgid "Connecting" msgstr "Kapcsolatépítés" -#: src/Module/Welcome.php:67 +#: src/Module/Welcome.php:53 msgid "Importing Emails" msgstr "E-mailek importálása" -#: src/Module/Welcome.php:68 +#: src/Module/Welcome.php:54 msgid "" "Enter your email access information on your Connector Settings page if you " "wish to import and interact with friends or mailing lists from your email " "INBOX" msgstr "Adja meg az e-mail-címéhez való hozzáférés információt az összekötő beállításainak oldalán, ha a postafiókja beérkező üzeneteiből szeretne ismerősöket vagy levelezési listákat importálni, valamint velük kapcsolatba lépni." -#: src/Module/Welcome.php:69 +#: src/Module/Welcome.php:55 msgid "Go to Your Contacts Page" msgstr "Ugrás a partnerek oldalára" -#: src/Module/Welcome.php:70 +#: src/Module/Welcome.php:56 msgid "" "Your Contacts page is your gateway to managing friendships and connecting " "with friends on other networks. Typically you enter their address or site " "URL in the Add New Contact dialog." msgstr "A partnerek oldal az átjáró az ismeretségek kezeléséhez és a más hálózatokon lévő ismerősökkel történő kapcsolatfelvételhez. Jellemzően csak be kell írnia a címüket vagy az oldal URL-jét az Új partner hozzáadása párbeszédablakba." -#: src/Module/Welcome.php:71 +#: src/Module/Welcome.php:57 msgid "Go to Your Site's Directory" msgstr "Ugrás az oldal könyvtárához" -#: src/Module/Welcome.php:72 +#: src/Module/Welcome.php:58 msgid "" "The Directory page lets you find other people in this network or other " "federated sites. Look for a Connect or Follow link on " "their profile page. Provide your own Identity Address if requested." msgstr "A könyvtárak oldal lehetővé teszi más emberek keresését ezen a hálózaton vagy más föderált oldalakon. Keresse meg a Kapcsolódás vagy a Követés hivatkozást a profiloldalukon. Adja meg a saját személyazonosság-címét, ha kérik." -#: src/Module/Welcome.php:73 +#: src/Module/Welcome.php:59 msgid "Finding New People" msgstr "Új emberek keresése" -#: src/Module/Welcome.php:74 +#: src/Module/Welcome.php:60 msgid "" "On the side panel of the Contacts page are several tools to find new " "friends. We can match people by interest, look up people by name or " @@ -11794,412 +11764,408 @@ msgid "" "hours." msgstr "A partnerek oldal oldalsávjában számos eszköz található új ismerősök kereséséhez. Találhatunk embereket az érdeklődésük szerint, kereshetünk embereket név vagy érdeklődés szerint, valamint ajánlásokat adhatunk a hálózati kapcsolatok alapján. Egy teljesen új oldalon az ismerősök ajánlásai általában 24 órán belül kezdenek megjelenni." -#: src/Module/Welcome.php:77 +#: src/Module/Welcome.php:63 msgid "Add Your Contacts To Circle" msgstr "Partnerek hozzáadása a körhöz" -#: src/Module/Welcome.php:78 +#: src/Module/Welcome.php:64 msgid "" "Once you have made some friends, organize them into private conversation " "circles from the sidebar of your Contacts page and then you can interact " "with each circle privately on your Network page." msgstr "Miután szerezett néhány ismerőst, szervezze őket személyes beszélgetési körökbe a partnerek oldal oldalsávján keresztül, és ezután személyes módon léphet kapcsolatba minden egyes körrel a hálózat oldalon." -#: src/Module/Welcome.php:80 +#: src/Module/Welcome.php:66 msgid "Why Aren't My Posts Public?" msgstr "Miért nem nyilvánosak a bejegyzéseim?" -#: src/Module/Welcome.php:81 +#: src/Module/Welcome.php:67 msgid "" "Friendica respects your privacy. By default, your posts will only show up to" " people you've added as friends. For more information, see the help section " "from the link above." msgstr "A Friendica tiszteletben tartja a magánszférát. Alapértelmezetten a bejegyzései csak azoknak az embereknek jelennek meg, akiket ismerősként felvett. További információkért nézze meg a súgószakaszt a fenti hivatkozáson keresztül." -#: src/Module/Welcome.php:83 +#: src/Module/Welcome.php:69 msgid "Getting Help" msgstr "Segítség kérése" -#: src/Module/Welcome.php:84 +#: src/Module/Welcome.php:70 msgid "Go to the Help Section" msgstr "Ugrás a súgószakaszhoz" -#: src/Module/Welcome.php:85 +#: src/Module/Welcome.php:71 msgid "" "Our help pages may be consulted for detail on other program" " features and resources." msgstr "A súgó oldalaink további részleteket közölhetnek a program egyéb funkcióiról és erőforrásairól." -#: src/Navigation/Notifications/Factory/FormattedNavNotification.php:161 +#: src/Navigation/Notifications/Factory/FormattedNavNotification.php:147 msgid "{0} wants to follow you" msgstr "{0} követni szeretné Önt" -#: src/Navigation/Notifications/Factory/FormattedNavNotification.php:163 +#: src/Navigation/Notifications/Factory/FormattedNavNotification.php:149 msgid "{0} has started following you" msgstr "{0} elkezdte követni Önt" -#: src/Navigation/Notifications/Factory/FormattedNotify.php:96 +#: src/Navigation/Notifications/Factory/FormattedNotify.php:82 #, php-format msgid "%s liked %s's post" msgstr "%s kedvelte %s bejegyzését" -#: src/Navigation/Notifications/Factory/FormattedNotify.php:108 +#: src/Navigation/Notifications/Factory/FormattedNotify.php:94 #, php-format msgid "%s disliked %s's post" msgstr "%s nem kedvelte %s bejegyzését" -#: src/Navigation/Notifications/Factory/FormattedNotify.php:120 +#: src/Navigation/Notifications/Factory/FormattedNotify.php:106 #, php-format msgid "%s is attending %s's event" msgstr "%s részt vesz %s eseményén" -#: src/Navigation/Notifications/Factory/FormattedNotify.php:132 +#: src/Navigation/Notifications/Factory/FormattedNotify.php:118 #, php-format msgid "%s is not attending %s's event" msgstr "%s nem vesz részt %s eseményén" -#: src/Navigation/Notifications/Factory/FormattedNotify.php:144 +#: src/Navigation/Notifications/Factory/FormattedNotify.php:130 #, php-format msgid "%s may attending %s's event" msgstr "%s talán részt vesz %s eseményén" -#: src/Navigation/Notifications/Factory/FormattedNotify.php:174 +#: src/Navigation/Notifications/Factory/FormattedNotify.php:160 #, php-format msgid "%s is now friends with %s" msgstr "%s és %s mostantól ismerősök" -#: src/Navigation/Notifications/Factory/FormattedNotify.php:341 -#: src/Navigation/Notifications/Factory/FormattedNotify.php:379 +#: src/Navigation/Notifications/Factory/FormattedNotify.php:327 +#: src/Navigation/Notifications/Factory/FormattedNotify.php:365 #, php-format msgid "%s commented on %s's post" msgstr "%s hozzászólt %s bejegyzéséhez" -#: src/Navigation/Notifications/Factory/FormattedNotify.php:378 +#: src/Navigation/Notifications/Factory/FormattedNotify.php:364 #, php-format msgid "%s created a new post" msgstr "%s létrehozott egy új bejegyzést" -#: src/Navigation/Notifications/Factory/Introduction.php:132 +#: src/Navigation/Notifications/Factory/Introduction.php:118 msgid "Friend Suggestion" msgstr "Ismerősajánlás" -#: src/Navigation/Notifications/Factory/Introduction.php:158 +#: src/Navigation/Notifications/Factory/Introduction.php:144 msgid "Friend/Connect Request" msgstr "Ismerős vagy kapcsolódási kérés" -#: src/Navigation/Notifications/Factory/Introduction.php:158 -msgid "New Follower" -msgstr "Új követő" - -#: src/Navigation/Notifications/Factory/Notification.php:134 +#: src/Navigation/Notifications/Factory/Notification.php:120 #, php-format msgid "%1$s wants to follow you" msgstr "%1$s követni szeretné Önt" -#: src/Navigation/Notifications/Factory/Notification.php:136 +#: src/Navigation/Notifications/Factory/Notification.php:122 #, php-format msgid "%1$s has started following you" msgstr "%1$s elkezdte követni Önt" -#: src/Navigation/Notifications/Factory/Notification.php:208 +#: src/Navigation/Notifications/Factory/Notification.php:194 #, php-format msgid "%1$s liked your comment on %2$s" msgstr "%1$s kedvelte az Ön hozzászólását ehhez: %2$s" -#: src/Navigation/Notifications/Factory/Notification.php:211 +#: src/Navigation/Notifications/Factory/Notification.php:197 #, php-format msgid "%1$s liked your post %2$s" msgstr "%1$s kedvelte az Ön %2$s bejegyzését" -#: src/Navigation/Notifications/Factory/Notification.php:218 +#: src/Navigation/Notifications/Factory/Notification.php:204 #, php-format msgid "%1$s disliked your comment on %2$s" msgstr "%1$s nem kedvelte az Ön hozzászólását ehhez: %2$s" -#: src/Navigation/Notifications/Factory/Notification.php:221 +#: src/Navigation/Notifications/Factory/Notification.php:207 #, php-format msgid "%1$s disliked your post %2$s" msgstr "%1$s nem kedvelte az Ön %2$s bejegyzését" -#: src/Navigation/Notifications/Factory/Notification.php:228 +#: src/Navigation/Notifications/Factory/Notification.php:214 #, php-format msgid "%1$s shared your comment %2$s" msgstr "%1$s megosztotta az Ön %2$s hozzászólását" -#: src/Navigation/Notifications/Factory/Notification.php:231 -#: src/Navigation/Notifications/Factory/Notification.php:316 +#: src/Navigation/Notifications/Factory/Notification.php:217 +#: src/Navigation/Notifications/Factory/Notification.php:302 #, php-format msgid "%1$s shared your post %2$s" msgstr "%1$s megosztotta az Ön %2$s bejegyzését" -#: src/Navigation/Notifications/Factory/Notification.php:235 -#: src/Navigation/Notifications/Factory/Notification.php:305 +#: src/Navigation/Notifications/Factory/Notification.php:221 +#: src/Navigation/Notifications/Factory/Notification.php:291 #, php-format msgid "%1$s shared the post %2$s from %3$s" msgstr "%1$s megosztott egy %3$s által közzétett %2$s bejegyzést" -#: src/Navigation/Notifications/Factory/Notification.php:237 -#: src/Navigation/Notifications/Factory/Notification.php:307 +#: src/Navigation/Notifications/Factory/Notification.php:223 +#: src/Navigation/Notifications/Factory/Notification.php:293 #, php-format msgid "%1$s shared a post from %3$s" msgstr "%1$s megosztott egy %3$s által közzétett bejegyzést" -#: src/Navigation/Notifications/Factory/Notification.php:239 -#: src/Navigation/Notifications/Factory/Notification.php:309 +#: src/Navigation/Notifications/Factory/Notification.php:225 +#: src/Navigation/Notifications/Factory/Notification.php:295 #, php-format msgid "%1$s shared the post %2$s" msgstr "%1$s megosztotta a(z) %2$s bejegyzést" -#: src/Navigation/Notifications/Factory/Notification.php:241 -#: src/Navigation/Notifications/Factory/Notification.php:311 +#: src/Navigation/Notifications/Factory/Notification.php:227 +#: src/Navigation/Notifications/Factory/Notification.php:297 #, php-format msgid "%1$s shared a post" msgstr "%1$s megosztott egy bejegyzést" -#: src/Navigation/Notifications/Factory/Notification.php:249 +#: src/Navigation/Notifications/Factory/Notification.php:235 #, php-format msgid "%1$s wants to attend your event %2$s" msgstr "%1$s szeretne részt venni az Ön %2$s eseményén" -#: src/Navigation/Notifications/Factory/Notification.php:256 +#: src/Navigation/Notifications/Factory/Notification.php:242 #, php-format msgid "%1$s does not want to attend your event %2$s" msgstr "%1$s nem szeretne részt venni az Ön %2$s eseményén" -#: src/Navigation/Notifications/Factory/Notification.php:263 +#: src/Navigation/Notifications/Factory/Notification.php:249 #, php-format msgid "%1$s maybe wants to attend your event %2$s" msgstr "%1$s talán szeretne részt venni az Ön %2$s eseményén" -#: src/Navigation/Notifications/Factory/Notification.php:270 +#: src/Navigation/Notifications/Factory/Notification.php:256 #, php-format msgid "%1$s tagged you on %2$s" msgstr "%1$s megjelölte Önt ezen: %2$s" -#: src/Navigation/Notifications/Factory/Notification.php:274 +#: src/Navigation/Notifications/Factory/Notification.php:260 #, php-format msgid "%1$s replied to you on %2$s" msgstr "%1$s válaszolt Önnek ezen: %2$s" -#: src/Navigation/Notifications/Factory/Notification.php:278 +#: src/Navigation/Notifications/Factory/Notification.php:264 #, php-format msgid "%1$s commented in your thread %2$s" msgstr "%1$s hozzászólt az Ön %2$s szálában" -#: src/Navigation/Notifications/Factory/Notification.php:282 +#: src/Navigation/Notifications/Factory/Notification.php:268 #, php-format msgid "%1$s commented on your comment %2$s" msgstr "%1$s hozzászólt az Ön %2$s hozzászólásánál" -#: src/Navigation/Notifications/Factory/Notification.php:289 +#: src/Navigation/Notifications/Factory/Notification.php:275 #, php-format msgid "%1$s commented in their thread %2$s" msgstr "%1$s hozzászólt az ő %2$s szálában" -#: src/Navigation/Notifications/Factory/Notification.php:291 +#: src/Navigation/Notifications/Factory/Notification.php:277 #, php-format msgid "%1$s commented in their thread" msgstr "%1$s hozzászólt az ő szálában" -#: src/Navigation/Notifications/Factory/Notification.php:293 +#: src/Navigation/Notifications/Factory/Notification.php:279 #, php-format msgid "%1$s commented in the thread %2$s from %3$s" msgstr "%1$s hozzászólt egy %3$s által közzétett %2$s szálában" -#: src/Navigation/Notifications/Factory/Notification.php:295 +#: src/Navigation/Notifications/Factory/Notification.php:281 #, php-format msgid "%1$s commented in the thread from %3$s" msgstr "%1$s hozzászólt egy %3$s által közzétett szálában" -#: src/Navigation/Notifications/Factory/Notification.php:300 +#: src/Navigation/Notifications/Factory/Notification.php:286 #, php-format msgid "%1$s commented on your thread %2$s" msgstr "%1$s hozzászólt az Ön %2$s szálánál" -#: src/Navigation/Notifications/Repository/Notify.php:225 -#: src/Navigation/Notifications/Repository/Notify.php:754 +#: src/Navigation/Notifications/Repository/Notify.php:211 +#: src/Navigation/Notifications/Repository/Notify.php:740 msgid "[Friendica:Notify]" msgstr "[Friendica: értesítés]" -#: src/Navigation/Notifications/Repository/Notify.php:293 +#: src/Navigation/Notifications/Repository/Notify.php:279 #, php-format msgid "%s New mail received at %s" msgstr "%s Új levél érkezett ekkor: %s" -#: src/Navigation/Notifications/Repository/Notify.php:295 +#: src/Navigation/Notifications/Repository/Notify.php:281 #, php-format msgid "%1$s sent you a new private message at %2$s." msgstr "%1$s személyes üzenetet küldött ekkor: %2$s." -#: src/Navigation/Notifications/Repository/Notify.php:296 +#: src/Navigation/Notifications/Repository/Notify.php:282 msgid "a private message" msgstr "egy személyes üzenetet" -#: src/Navigation/Notifications/Repository/Notify.php:296 +#: src/Navigation/Notifications/Repository/Notify.php:282 #, php-format msgid "%1$s sent you %2$s." msgstr "%1$s küldött Önnek %2$s." -#: src/Navigation/Notifications/Repository/Notify.php:298 +#: src/Navigation/Notifications/Repository/Notify.php:284 #, php-format msgid "Please visit %s to view and/or reply to your private messages." msgstr "Látogassa meg a(z) %s oldalt a személyes üzenete megtekintéséhez és/vagy megválaszolásához." -#: src/Navigation/Notifications/Repository/Notify.php:328 +#: src/Navigation/Notifications/Repository/Notify.php:314 #, php-format msgid "%1$s commented on %2$s's %3$s %4$s" msgstr "%1$s hozzászólt egy %2$s által megosztott %3$s kapcsán: %4$s" -#: src/Navigation/Notifications/Repository/Notify.php:333 +#: src/Navigation/Notifications/Repository/Notify.php:319 #, php-format msgid "%1$s commented on your %2$s %3$s" msgstr "%1$s hozzászólt egy vele megosztott %2$s kapcsán: %3$s" -#: src/Navigation/Notifications/Repository/Notify.php:337 +#: src/Navigation/Notifications/Repository/Notify.php:323 #, php-format msgid "%1$s commented on their %2$s %3$s" msgstr "%1$s hozzászólt egy saját %2$s kapcsán: %3$s" -#: src/Navigation/Notifications/Repository/Notify.php:341 -#: src/Navigation/Notifications/Repository/Notify.php:788 +#: src/Navigation/Notifications/Repository/Notify.php:327 +#: src/Navigation/Notifications/Repository/Notify.php:774 #, php-format msgid "%1$s Comment to conversation #%2$d by %3$s" msgstr "%1$s Hozzászólás a #%2$d beszélgetéshez %3$s által" -#: src/Navigation/Notifications/Repository/Notify.php:343 +#: src/Navigation/Notifications/Repository/Notify.php:329 #, php-format msgid "%s commented on an item/conversation you have been following." msgstr "%s hozzászólt egy olyan elemhez vagy beszélgetéshez, amelyet Ön követ." -#: src/Navigation/Notifications/Repository/Notify.php:347 -#: src/Navigation/Notifications/Repository/Notify.php:362 -#: src/Navigation/Notifications/Repository/Notify.php:814 +#: src/Navigation/Notifications/Repository/Notify.php:333 +#: src/Navigation/Notifications/Repository/Notify.php:348 +#: src/Navigation/Notifications/Repository/Notify.php:800 #, php-format msgid "Please visit %s to view and/or reply to the conversation." msgstr "Látogassa meg a %s oldalt a beszélgetés megtekintéséhez és/vagy megválaszolásához." -#: src/Navigation/Notifications/Repository/Notify.php:354 +#: src/Navigation/Notifications/Repository/Notify.php:340 #, php-format msgid "%s %s posted to your profile wall" msgstr "%s %s bejegyzést írt az Ön profilfalára" -#: src/Navigation/Notifications/Repository/Notify.php:356 +#: src/Navigation/Notifications/Repository/Notify.php:342 #, php-format msgid "%1$s posted to your profile wall at %2$s" msgstr "%1$s bejegyzést írt az Ön profilfalára itt: %2$s" -#: src/Navigation/Notifications/Repository/Notify.php:357 +#: src/Navigation/Notifications/Repository/Notify.php:343 #, php-format msgid "%1$s posted to [url=%2$s]your wall[/url]" msgstr "%1$s bejegyzést írt [url=%2$s]az Ön falára[/url]" -#: src/Navigation/Notifications/Repository/Notify.php:370 +#: src/Navigation/Notifications/Repository/Notify.php:356 #, php-format msgid "%s Introduction received" msgstr "%s Bemutatkozás érkezett" -#: src/Navigation/Notifications/Repository/Notify.php:372 +#: src/Navigation/Notifications/Repository/Notify.php:358 #, php-format msgid "You've received an introduction from '%1$s' at %2$s" msgstr "Kapott egy %1$s által elküldött bemutatkozását itt: %2$s" -#: src/Navigation/Notifications/Repository/Notify.php:373 +#: src/Navigation/Notifications/Repository/Notify.php:359 #, php-format msgid "You've received [url=%1$s]an introduction[/url] from %2$s." msgstr "Kapott egy %2$s által elküldött [url=%1$s]bemutatkozást[/url]." -#: src/Navigation/Notifications/Repository/Notify.php:378 -#: src/Navigation/Notifications/Repository/Notify.php:424 +#: src/Navigation/Notifications/Repository/Notify.php:364 +#: src/Navigation/Notifications/Repository/Notify.php:410 #, php-format msgid "You may visit their profile at %s" msgstr "Meglátogathatja a profilját itt: %s" -#: src/Navigation/Notifications/Repository/Notify.php:380 +#: src/Navigation/Notifications/Repository/Notify.php:366 #, php-format msgid "Please visit %s to approve or reject the introduction." msgstr "Látogassa meg a(z) %s oldalt a bemutatkozás jóváhagyásához vagy visszautasításához." -#: src/Navigation/Notifications/Repository/Notify.php:387 +#: src/Navigation/Notifications/Repository/Notify.php:373 #, php-format msgid "%s A new person is sharing with you" msgstr "%s Egy új személy megoszt Önnel" -#: src/Navigation/Notifications/Repository/Notify.php:389 -#: src/Navigation/Notifications/Repository/Notify.php:390 +#: src/Navigation/Notifications/Repository/Notify.php:375 +#: src/Navigation/Notifications/Repository/Notify.php:376 #, php-format msgid "%1$s is sharing with you at %2$s" msgstr "%1$s megoszt Önnel itt: %2$s" -#: src/Navigation/Notifications/Repository/Notify.php:397 +#: src/Navigation/Notifications/Repository/Notify.php:383 #, php-format msgid "%s You have a new follower" msgstr "%s Van egy új követője" -#: src/Navigation/Notifications/Repository/Notify.php:399 -#: src/Navigation/Notifications/Repository/Notify.php:400 +#: src/Navigation/Notifications/Repository/Notify.php:385 +#: src/Navigation/Notifications/Repository/Notify.php:386 #, php-format msgid "You have a new follower at %2$s : %1$s" msgstr "Van egy új követője, %1$s itt: %2$s" -#: src/Navigation/Notifications/Repository/Notify.php:413 +#: src/Navigation/Notifications/Repository/Notify.php:399 #, php-format msgid "%s Friend suggestion received" msgstr "%s Ismerősajánlás érkezett" -#: src/Navigation/Notifications/Repository/Notify.php:415 +#: src/Navigation/Notifications/Repository/Notify.php:401 #, php-format msgid "You've received a friend suggestion from '%1$s' at %2$s" msgstr "Kapott egy %1$s által elküldött ismerősajánlást itt: %2$s" -#: src/Navigation/Notifications/Repository/Notify.php:416 +#: src/Navigation/Notifications/Repository/Notify.php:402 #, php-format msgid "" "You've received [url=%1$s]a friend suggestion[/url] for %2$s from %3$s." msgstr "Kapott egy %3$s által elküldött [url=%1$s]ismerősajánlást[/url] %2$s partnerhez." -#: src/Navigation/Notifications/Repository/Notify.php:422 +#: src/Navigation/Notifications/Repository/Notify.php:408 msgid "Name:" msgstr "Név:" -#: src/Navigation/Notifications/Repository/Notify.php:423 +#: src/Navigation/Notifications/Repository/Notify.php:409 msgid "Photo:" msgstr "Fénykép:" -#: src/Navigation/Notifications/Repository/Notify.php:426 +#: src/Navigation/Notifications/Repository/Notify.php:412 #, php-format msgid "Please visit %s to approve or reject the suggestion." msgstr "Látogassa meg a(z) %s oldalt az ajánlás jóváhagyásához vagy visszautasításához." -#: src/Navigation/Notifications/Repository/Notify.php:434 -#: src/Navigation/Notifications/Repository/Notify.php:449 +#: src/Navigation/Notifications/Repository/Notify.php:420 +#: src/Navigation/Notifications/Repository/Notify.php:435 #, php-format msgid "%s Connection accepted" msgstr "%s Kapcsolat elfogadva" -#: src/Navigation/Notifications/Repository/Notify.php:436 -#: src/Navigation/Notifications/Repository/Notify.php:451 +#: src/Navigation/Notifications/Repository/Notify.php:422 +#: src/Navigation/Notifications/Repository/Notify.php:437 #, php-format msgid "'%1$s' has accepted your connection request at %2$s" msgstr "%1$s elfogadta a kapcsolódási kérését itt: %2$s" -#: src/Navigation/Notifications/Repository/Notify.php:437 -#: src/Navigation/Notifications/Repository/Notify.php:452 +#: src/Navigation/Notifications/Repository/Notify.php:423 +#: src/Navigation/Notifications/Repository/Notify.php:438 #, php-format msgid "%2$s has accepted your [url=%1$s]connection request[/url]." msgstr "%2$s elfogadta a [url=%1$s]kapcsolódási kérését[/url]." -#: src/Navigation/Notifications/Repository/Notify.php:442 +#: src/Navigation/Notifications/Repository/Notify.php:428 msgid "" "You are now mutual friends and may exchange status updates, photos, and " "email without restriction." msgstr "Önök most már kölcsönösen ismerősök, és korlátozások nélkül megoszthatják az állapotfrissítéseiket, fényképeiket és az e-mail-címüket egymással." -#: src/Navigation/Notifications/Repository/Notify.php:444 +#: src/Navigation/Notifications/Repository/Notify.php:430 #, php-format msgid "Please visit %s if you wish to make any changes to this relationship." msgstr "Látogassa meg a(z) %s oldalt, ha bármilyen változtatást szeretne tenni ebben a kapcsolatban." -#: src/Navigation/Notifications/Repository/Notify.php:457 +#: src/Navigation/Notifications/Repository/Notify.php:443 #, php-format msgid "" "'%1$s' has chosen to accept you a fan, which restricts some forms of " @@ -12208,34 +12174,34 @@ msgid "" "automatically." msgstr "%1$s úgy döntött, hogy elfogadja Önt rajongóként, ami korlátozza a kommunikáció néhány formáját, mint például a személyes üzenet küldését és néhány profil-interakciót. Ha ez egy híres ember vagy egy közösségi oldal, akkor ezek a beállítások automatikusan alkalmazva lettek." -#: src/Navigation/Notifications/Repository/Notify.php:459 +#: src/Navigation/Notifications/Repository/Notify.php:445 #, php-format msgid "" "'%1$s' may choose to extend this into a two-way or more permissive " "relationship in the future." msgstr "%1$s dönthet úgy, hogy kiterjeszti ezt egy kétirányú vagy egy megengedőbb kapcsolattá a jövőben." -#: src/Navigation/Notifications/Repository/Notify.php:461 +#: src/Navigation/Notifications/Repository/Notify.php:447 #, php-format msgid "Please visit %s if you wish to make any changes to this relationship." msgstr "Látogassa meg a(z) %s oldalt, ha bármilyen változtatást szeretne tenni ebben a kapcsolatban." -#: src/Navigation/Notifications/Repository/Notify.php:471 +#: src/Navigation/Notifications/Repository/Notify.php:457 msgid "registration request" msgstr "regisztrációs kérés" -#: src/Navigation/Notifications/Repository/Notify.php:473 +#: src/Navigation/Notifications/Repository/Notify.php:459 #, php-format msgid "You've received a registration request from '%1$s' at %2$s" msgstr "Kapott egy regisztrációs kérést „%1$s” partnertől itt: %2$s" -#: src/Navigation/Notifications/Repository/Notify.php:474 +#: src/Navigation/Notifications/Repository/Notify.php:460 #, php-format msgid "You've received a [url=%1$s]registration request[/url] from %2$s." msgstr "Kapott egy %2$s által elküldött [url=%1$s]regisztrációs kérést[/url]." -#: src/Navigation/Notifications/Repository/Notify.php:479 -#: src/Navigation/Notifications/Repository/Notify.php:500 +#: src/Navigation/Notifications/Repository/Notify.php:465 +#: src/Navigation/Notifications/Repository/Notify.php:486 #, php-format msgid "" "Display Name:\t%s\n" @@ -12243,773 +12209,755 @@ msgid "" "Login Name:\t%s (%s)" 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 +#: src/Navigation/Notifications/Repository/Notify.php:471 #, php-format msgid "Please visit %s to approve or reject the request." msgstr "Látogassa meg a(z) %s oldalt a kérés jóváhagyásához vagy visszautasításához." -#: src/Navigation/Notifications/Repository/Notify.php:492 +#: src/Navigation/Notifications/Repository/Notify.php:478 msgid "new registration" msgstr "új regisztráció" -#: src/Navigation/Notifications/Repository/Notify.php:494 +#: src/Navigation/Notifications/Repository/Notify.php:480 #, php-format msgid "You've received a new registration from '%1$s' at %2$s" msgstr "Kapott egy új regisztrációs kérést „%1$s” partnertől itt: %2$s" -#: src/Navigation/Notifications/Repository/Notify.php:495 +#: src/Navigation/Notifications/Repository/Notify.php:481 #, php-format msgid "You've received a [url=%1$s]new registration[/url] from %2$s." msgstr "Kapott egy %2$s által elküldött [url=%1$s]új regisztrációt[/url]." -#: src/Navigation/Notifications/Repository/Notify.php:506 +#: src/Navigation/Notifications/Repository/Notify.php:492 #, php-format msgid "Please visit %s to have a look at the new registration." msgstr "Látogassa meg a(z) %s oldal, hogy egy pillantást vessen az új regisztrációra." -#: src/Navigation/Notifications/Repository/Notify.php:782 +#: src/Navigation/Notifications/Repository/Notify.php:768 #, php-format msgid "%s %s tagged you" msgstr "%s %s megjelölte Önt" -#: src/Navigation/Notifications/Repository/Notify.php:785 +#: src/Navigation/Notifications/Repository/Notify.php:771 #, php-format msgid "%s %s shared a new post" msgstr "%s %s megosztott egy új bejegyzést" -#: src/Navigation/Notifications/Repository/Notify.php:793 +#: src/Navigation/Notifications/Repository/Notify.php:779 #, php-format msgid "%1$s %2$s liked your post #%3$d" msgstr "%1$s %2$s kedvelte az Ön #%3$d bejegyzését" -#: src/Navigation/Notifications/Repository/Notify.php:796 +#: src/Navigation/Notifications/Repository/Notify.php:782 #, php-format msgid "%1$s %2$s liked your comment on #%3$d" msgstr "%1$s %2$s kedvelte az Ön hozzászólását ehhez: #%3$d" -#: src/Object/EMail/ItemCCEMail.php:42 +#: src/Object/EMail/ItemCCEMail.php:28 #, php-format msgid "" "This message was sent to you by %s, a member of the Friendica social " "network." msgstr "Ezt az üzenetet %s, a Friendica közösségi hálózatának tagja küldte Önnek." -#: src/Object/EMail/ItemCCEMail.php:44 +#: src/Object/EMail/ItemCCEMail.php:30 #, php-format msgid "You may visit them online at %s" msgstr "Meglátogathatja őket az interneten ezen a címen: %s" -#: src/Object/EMail/ItemCCEMail.php:45 +#: src/Object/EMail/ItemCCEMail.php:31 msgid "" "Please contact the sender by replying to this post if you do not wish to " "receive these messages." msgstr "Vegye fel a kapcsolatot a küldővel erre a bejegyzésre válaszolva, ha nem szeretné megkapni ezeket az üzeneteket." -#: src/Object/EMail/ItemCCEMail.php:49 +#: src/Object/EMail/ItemCCEMail.php:35 #, php-format msgid "%s posted an update." msgstr "%s frissítést küldött." -#: src/Object/Post.php:138 +#: src/Object/Post.php:124 msgid "Private Message" msgstr "Személyes üzenet" -#: src/Object/Post.php:142 +#: src/Object/Post.php:128 msgid "Public Message" msgstr "Nyilvános üzenet" -#: src/Object/Post.php:146 +#: src/Object/Post.php:132 msgid "Unlisted Message" msgstr "Listázatlan üzenet" -#: src/Object/Post.php:182 +#: src/Object/Post.php:168 msgid "This entry was edited" msgstr "Ezt a bejegyzést szerkesztették" -#: src/Object/Post.php:210 +#: src/Object/Post.php:196 msgid "Connector Message" msgstr "Csatlakozóüzenet" -#: src/Object/Post.php:239 src/Object/Post.php:241 +#: src/Object/Post.php:225 src/Object/Post.php:227 msgid "Edit" msgstr "Szerkesztés" -#: src/Object/Post.php:275 +#: src/Object/Post.php:261 msgid "Delete globally" msgstr "Törlés globálisan" -#: src/Object/Post.php:275 +#: src/Object/Post.php:261 msgid "Remove locally" msgstr "Eltávolítás helyileg" -#: src/Object/Post.php:282 +#: src/Object/Post.php:268 #, php-format msgid "Block %s" msgstr "%s tiltása" -#: src/Object/Post.php:287 +#: src/Object/Post.php:273 #, php-format msgid "Ignore %s" msgstr "%s mellőzése" -#: src/Object/Post.php:292 +#: src/Object/Post.php:278 #, php-format msgid "Collapse %s" msgstr "%s összecsukása" -#: src/Object/Post.php:296 +#: src/Object/Post.php:282 msgid "Report post" msgstr "Bejegyzés jelentése" -#: src/Object/Post.php:307 +#: src/Object/Post.php:293 msgid "Save to folder" msgstr "Mentés mappába" -#: src/Object/Post.php:347 +#: src/Object/Post.php:333 msgid "I will attend" msgstr "Részt veszek" -#: src/Object/Post.php:347 +#: src/Object/Post.php:333 msgid "I will not attend" msgstr "Nem veszek részt" -#: src/Object/Post.php:347 +#: src/Object/Post.php:333 msgid "I might attend" msgstr "Talán részt veszek" -#: src/Object/Post.php:394 +#: src/Object/Post.php:380 msgid "Ignore thread" msgstr "Szál mellőzése" -#: src/Object/Post.php:395 +#: src/Object/Post.php:381 msgid "Unignore thread" msgstr "Szál mellőzésének megszüntetése" -#: src/Object/Post.php:396 +#: src/Object/Post.php:382 msgid "Toggle ignore status" msgstr "Mellőzési állapot átváltása" -#: src/Object/Post.php:406 +#: src/Object/Post.php:392 msgid "Add star" msgstr "Csillag hozzáadása" -#: src/Object/Post.php:407 +#: src/Object/Post.php:393 msgid "Remove star" msgstr "Csillag eltávolítása" -#: src/Object/Post.php:408 +#: src/Object/Post.php:394 msgid "Toggle star status" msgstr "Csillagállapot átváltása" -#: src/Object/Post.php:419 +#: src/Object/Post.php:405 msgid "Pin" msgstr "Kitűzés" -#: src/Object/Post.php:420 +#: src/Object/Post.php:406 msgid "Unpin" msgstr "Kitűzés megszüntetése" -#: src/Object/Post.php:421 +#: src/Object/Post.php:407 msgid "Toggle pin status" msgstr "Kitűzés állapotának átváltása" -#: src/Object/Post.php:424 +#: src/Object/Post.php:410 msgid "Pinned" msgstr "Kitűzve" -#: src/Object/Post.php:429 +#: src/Object/Post.php:415 msgid "Add tag" msgstr "Címke hozzáadása" -#: src/Object/Post.php:444 +#: src/Object/Post.php:430 msgid "Quote share this" msgstr "Idézett megosztás" -#: src/Object/Post.php:444 +#: src/Object/Post.php:430 msgid "Quote Share" msgstr "Idézett megosztás" -#: src/Object/Post.php:447 +#: src/Object/Post.php:433 msgid "Reshare this" msgstr "Újra megosztás" -#: src/Object/Post.php:447 +#: src/Object/Post.php:433 msgid "Reshare" msgstr "Újra megosztás" -#: src/Object/Post.php:448 +#: src/Object/Post.php:434 msgid "Cancel your Reshare" msgstr "Újra megosztás megszakítása" -#: src/Object/Post.php:448 +#: src/Object/Post.php:434 msgid "Unshare" msgstr "Megosztás megszüntetése" -#: src/Object/Post.php:492 +#: src/Object/Post.php:478 #, php-format msgid "%s (Received %s)" msgstr "%s (fogadva: %s)" -#: src/Object/Post.php:498 +#: src/Object/Post.php:484 msgid "Comment this item on your system" msgstr "Hozzászólás az elemhez a saját rendszerén" -#: src/Object/Post.php:498 +#: src/Object/Post.php:484 msgid "Remote comment" msgstr "Távoli hozzászólás" -#: src/Object/Post.php:520 +#: src/Object/Post.php:506 msgid "Share via ..." msgstr "Megosztás ezen keresztül…" -#: src/Object/Post.php:520 +#: src/Object/Post.php:506 msgid "Share via external services" msgstr "Megosztás külső szolgáltatásokon keresztül" -#: src/Object/Post.php:527 +#: src/Object/Post.php:513 msgid "Unknown parent" msgstr "Ismeretlen szülő" -#: src/Object/Post.php:531 +#: src/Object/Post.php:517 #, php-format msgid "in reply to %s" msgstr "válasz a következőre: %s" -#: src/Object/Post.php:533 +#: src/Object/Post.php:519 msgid "Parent is probably private or not federated." msgstr "A szülő valószínűleg személyes vagy nem föderált." -#: src/Object/Post.php:557 +#: src/Object/Post.php:543 msgid "to" msgstr "ide:" -#: src/Object/Post.php:558 +#: src/Object/Post.php:544 msgid "via" msgstr "ezen keresztül:" -#: src/Object/Post.php:559 +#: src/Object/Post.php:545 msgid "Wall-to-Wall" msgstr "Falról-falra" -#: src/Object/Post.php:560 +#: src/Object/Post.php:546 msgid "via Wall-To-Wall:" msgstr "falról-falra szolgáltatáson keresztül:" -#: src/Object/Post.php:613 +#: src/Object/Post.php:599 #, php-format msgid "Reply to %s" msgstr "Válasz erre: %s" -#: src/Object/Post.php:616 +#: src/Object/Post.php:602 msgid "More" msgstr "Több" -#: src/Object/Post.php:635 +#: src/Object/Post.php:621 msgid "Notifier task is pending" msgstr "Az értesítőfeladat függőben van" -#: src/Object/Post.php:636 +#: src/Object/Post.php:622 msgid "Delivery to remote servers is pending" msgstr "A távoli kiszolgálókra történő kézbesítés függőben van" -#: src/Object/Post.php:637 +#: src/Object/Post.php:623 msgid "Delivery to remote servers is underway" msgstr "A távoli kiszolgálókra történő kézbesítés úton van" -#: src/Object/Post.php:638 +#: src/Object/Post.php:624 msgid "Delivery to remote servers is mostly done" msgstr "A távoli kiszolgálókra történő kézbesítés többnyire készen van" -#: src/Object/Post.php:639 +#: src/Object/Post.php:625 msgid "Delivery to remote servers is done" msgstr "A távoli kiszolgálókra történő kézbesítés készen van" -#: src/Object/Post.php:661 +#: src/Object/Post.php:647 #, php-format msgid "%d comment" msgid_plural "%d comments" msgstr[0] "%d hozzászólás" msgstr[1] "%d hozzászólás" -#: src/Object/Post.php:662 +#: src/Object/Post.php:648 msgid "Show more" msgstr "Több megjelenítése" -#: src/Object/Post.php:663 +#: src/Object/Post.php:649 msgid "Show fewer" msgstr "Kevesebb megjelenítése" -#: src/Object/Post.php:700 +#: src/Object/Post.php:686 #, php-format msgid "Reshared by: %s" msgstr "Újra megosztotta: %s" -#: src/Object/Post.php:705 +#: src/Object/Post.php:691 #, php-format msgid "Viewed by: %s" msgstr "Megtekintette: %s" -#: src/Object/Post.php:710 +#: src/Object/Post.php:696 #, php-format msgid "Read by: %s" msgstr "Olvasta: %s" -#: src/Object/Post.php:715 +#: src/Object/Post.php:701 #, php-format msgid "Liked by: %s" msgstr "Kedvelte: %s" -#: src/Object/Post.php:720 +#: src/Object/Post.php:706 #, php-format msgid "Disliked by: %s" msgstr "Nem kedvelte: %s" -#: src/Object/Post.php:725 +#: src/Object/Post.php:711 #, php-format msgid "Attended by: %s" msgstr "Részt vett: %s" -#: src/Object/Post.php:730 +#: src/Object/Post.php:716 #, php-format msgid "Maybe attended by: %s" msgstr "Talán részt vett: %s" -#: src/Object/Post.php:735 +#: src/Object/Post.php:721 #, php-format msgid "Not attended by: %s" msgstr "Nem vett részt: %s" -#: src/Object/Post.php:740 +#: src/Object/Post.php:726 #, php-format msgid "Commented by: %s" msgstr "Hozzászólt: %s" -#: src/Object/Post.php:745 +#: src/Object/Post.php:731 #, php-format msgid "Reacted with %s by: %s" msgstr "Reagált ezzel: %s: %s" -#: src/Object/Post.php:768 +#: src/Object/Post.php:754 #, php-format msgid "Quote shared by: %s" msgstr "Idézetten osztott meg: %s" -#: src/Protocol/ActivityPub/Receiver.php:571 +#: src/Protocol/ActivityPub/Receiver.php:557 msgid "Chat" msgstr "Csevegés" -#: src/Protocol/Delivery.php:544 +#: src/Protocol/Delivery.php:530 msgid "(no subject)" msgstr "(nincs tárgy)" -#: src/Protocol/OStatus.php:1392 -#, php-format -msgid "%s is now following %s." -msgstr "%s mostantól követi %s partnert." - -#: src/Protocol/OStatus.php:1393 -msgid "following" -msgstr "követés" - -#: src/Protocol/OStatus.php:1396 -#, php-format -msgid "%s stopped following %s." -msgstr "%s leállította %s követését." - -#: src/Protocol/OStatus.php:1397 -msgid "stopped following" -msgstr "követés leállítva" - -#: src/Render/FriendicaSmartyEngine.php:56 +#: src/Render/FriendicaSmartyEngine.php:42 #, php-format msgid "The folder %s must be writable by webserver." msgstr "A „%s” mappának írhatónak kell lennie a webkiszolgáló által." -#: src/Security/Authentication.php:214 +#: src/Security/Authentication.php:200 msgid "Login failed." msgstr "Bejelentkezés sikertelen." -#: src/Security/Authentication.php:259 +#: src/Security/Authentication.php:245 msgid "Login failed. Please check your credentials." msgstr "Bejelentkezés sikertelen. Ellenőrizze a hitelesítési adatait." -#: src/Security/Authentication.php:373 +#: src/Security/Authentication.php:359 #, php-format msgid "Welcome %s" msgstr "Üdvözöljük, %s!" -#: src/Security/Authentication.php:374 +#: src/Security/Authentication.php:360 msgid "Please upload a profile photo." msgstr "Töltsön fel egy profilfényképet." -#: src/Security/OpenWebAuth.php:163 +#: src/Security/OpenWebAuth.php:149 #, php-format msgid "OpenWebAuth: %1$s welcomes %2$s" msgstr "OpenWebAuth: %1$s üdvözli őt: %2$s" -#: src/Util/EMailer/MailBuilder.php:260 +#: src/Util/EMailer/MailBuilder.php:246 msgid "Friendica Notification" msgstr "Friendica értesítés" -#: src/Util/EMailer/NotifyMailBuilder.php:78 -#: src/Util/EMailer/SystemMailBuilder.php:54 +#: src/Util/EMailer/NotifyMailBuilder.php:64 +#: src/Util/EMailer/SystemMailBuilder.php:40 #, php-format msgid "%1$s, %2$s Administrator" msgstr "%1$s, a(z) %2$s adminisztrátora" -#: src/Util/EMailer/NotifyMailBuilder.php:80 -#: src/Util/EMailer/SystemMailBuilder.php:56 +#: src/Util/EMailer/NotifyMailBuilder.php:66 +#: src/Util/EMailer/SystemMailBuilder.php:42 #, php-format msgid "%s Administrator" msgstr "A(z) %s adminisztrátora" -#: src/Util/EMailer/NotifyMailBuilder.php:193 -#: src/Util/EMailer/NotifyMailBuilder.php:217 -#: src/Util/EMailer/SystemMailBuilder.php:101 -#: src/Util/EMailer/SystemMailBuilder.php:118 +#: src/Util/EMailer/NotifyMailBuilder.php:179 +#: src/Util/EMailer/NotifyMailBuilder.php:203 +#: src/Util/EMailer/SystemMailBuilder.php:87 +#: src/Util/EMailer/SystemMailBuilder.php:104 msgid "thanks" msgstr "köszönet" -#: src/Util/Temporal.php:172 +#: src/Util/Temporal.php:158 msgid "YYYY-MM-DD or MM-DD" msgstr "YYYY-MM-DD vagy MM-DD" -#: src/Util/Temporal.php:280 +#: src/Util/Temporal.php:266 #, php-format msgid "Time zone: %s Change in Settings" msgstr "Időzóna: %s Megváltoztatás a beállításokban" -#: src/Util/Temporal.php:320 src/Util/Temporal.php:329 +#: src/Util/Temporal.php:306 src/Util/Temporal.php:315 msgid "never" msgstr "soha" -#: src/Util/Temporal.php:343 +#: src/Util/Temporal.php:329 msgid "less than a second ago" msgstr "kevesebb mint egy másodperce" -#: src/Util/Temporal.php:352 +#: src/Util/Temporal.php:338 msgid "year" msgstr "év" -#: src/Util/Temporal.php:352 +#: src/Util/Temporal.php:338 msgid "years" msgstr "év" -#: src/Util/Temporal.php:353 +#: src/Util/Temporal.php:339 msgid "months" msgstr "hónap" -#: src/Util/Temporal.php:354 +#: src/Util/Temporal.php:340 msgid "weeks" msgstr "hét" -#: src/Util/Temporal.php:355 +#: src/Util/Temporal.php:341 msgid "days" msgstr "nap" -#: src/Util/Temporal.php:356 +#: src/Util/Temporal.php:342 msgid "hour" msgstr "óra" -#: src/Util/Temporal.php:356 +#: src/Util/Temporal.php:342 msgid "hours" msgstr "óra" -#: src/Util/Temporal.php:357 +#: src/Util/Temporal.php:343 msgid "minute" msgstr "perc" -#: src/Util/Temporal.php:357 +#: src/Util/Temporal.php:343 msgid "minutes" msgstr "perc" -#: src/Util/Temporal.php:358 +#: src/Util/Temporal.php:344 msgid "second" msgstr "másodperc" -#: src/Util/Temporal.php:358 +#: src/Util/Temporal.php:344 msgid "seconds" msgstr "másodperc" -#: src/Util/Temporal.php:367 +#: src/Util/Temporal.php:353 #, php-format msgid "in %1$d %2$s" msgstr "%1$d %2$s múlva" -#: src/Util/Temporal.php:370 +#: src/Util/Temporal.php:356 #, php-format msgid "%1$d %2$s ago" msgstr "%1$d %2$s óta" -#: src/Worker/PushSubscription.php:110 +#: src/Worker/PushSubscription.php:96 msgid "Notification from Friendica" msgstr "Értesítés a Friendicától" -#: src/Worker/PushSubscription.php:111 +#: src/Worker/PushSubscription.php:97 msgid "Empty Post" msgstr "Üres bejegyzés" -#: view/theme/duepuntozero/config.php:68 +#: view/theme/duepuntozero/config.php:56 msgid "default" msgstr "alapértelmezett" -#: view/theme/duepuntozero/config.php:69 +#: view/theme/duepuntozero/config.php:57 msgid "greenzero" msgstr "zöld nulla" -#: view/theme/duepuntozero/config.php:70 +#: view/theme/duepuntozero/config.php:58 msgid "purplezero" msgstr "lila nulla" -#: view/theme/duepuntozero/config.php:71 +#: view/theme/duepuntozero/config.php:59 msgid "easterbunny" msgstr "húsvéti nyúl" -#: view/theme/duepuntozero/config.php:72 +#: view/theme/duepuntozero/config.php:60 msgid "darkzero" msgstr "sötét nulla" -#: view/theme/duepuntozero/config.php:73 +#: view/theme/duepuntozero/config.php:61 msgid "comix" msgstr "comix" -#: view/theme/duepuntozero/config.php:74 +#: view/theme/duepuntozero/config.php:62 msgid "slackr" msgstr "slackr" -#: view/theme/duepuntozero/config.php:87 +#: view/theme/duepuntozero/config.php:75 msgid "Variations" msgstr "Variációk" -#: view/theme/frio/config.php:146 +#: view/theme/frio/config.php:134 msgid "Note" msgstr "Jegyzet" -#: view/theme/frio/config.php:146 +#: view/theme/frio/config.php:134 msgid "Check image permissions if all users are allowed to see the image" msgstr "Ellenőrizze a kép jogosultságait, hogy minden felhasználó képes-e megtekinteni a képet." -#: view/theme/frio/config.php:152 +#: view/theme/frio/config.php:140 msgid "Appearance" msgstr "Megjelenés" -#: view/theme/frio/config.php:153 +#: view/theme/frio/config.php:141 msgid "Accent color" msgstr "Kiemelőszín" -#: view/theme/frio/config.php:153 +#: view/theme/frio/config.php:141 msgid "Blue" msgstr "Kék" -#: view/theme/frio/config.php:153 +#: view/theme/frio/config.php:141 msgid "Red" msgstr "Piros" -#: view/theme/frio/config.php:153 +#: view/theme/frio/config.php:141 msgid "Purple" msgstr "Lila" -#: view/theme/frio/config.php:153 +#: view/theme/frio/config.php:141 msgid "Green" msgstr "Zöld" -#: view/theme/frio/config.php:153 +#: view/theme/frio/config.php:141 msgid "Pink" msgstr "Rózsaszín" -#: view/theme/frio/config.php:154 +#: view/theme/frio/config.php:142 msgid "Copy or paste schemestring" msgstr "Sémakarakterlánc másolása vagy beillesztése" -#: view/theme/frio/config.php:154 +#: view/theme/frio/config.php:142 msgid "" "You can copy this string to share your theme with others. Pasting here " "applies the schemestring" msgstr "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:155 +#: view/theme/frio/config.php:143 msgid "Navigation bar background color" msgstr "Navigációs sáv háttérszíne" -#: view/theme/frio/config.php:156 +#: view/theme/frio/config.php:144 msgid "Navigation bar icon color " msgstr "Navigációs sáv ikonszíne " -#: view/theme/frio/config.php:157 +#: view/theme/frio/config.php:145 msgid "Link color" msgstr "Hivatkozás színe" -#: view/theme/frio/config.php:158 +#: view/theme/frio/config.php:146 msgid "Set the background color" msgstr "Háttérszín beállítása" -#: view/theme/frio/config.php:159 +#: view/theme/frio/config.php:147 msgid "Content background opacity" msgstr "Tartalom hátterének átlátszatlansága" -#: view/theme/frio/config.php:160 +#: view/theme/frio/config.php:148 msgid "Set the background image" msgstr "A háttérkép beállítása" -#: view/theme/frio/config.php:161 +#: view/theme/frio/config.php:149 msgid "Background image style" msgstr "Háttérkép stílusa" -#: view/theme/frio/config.php:164 +#: view/theme/frio/config.php:152 msgid "Always open Compose page" msgstr "Mindig az írás oldal megnyitása" -#: view/theme/frio/config.php:164 +#: view/theme/frio/config.php:152 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:168 +#: view/theme/frio/config.php:156 msgid "Login page background image" msgstr "Bejelentkezési oldal háttérképe" -#: view/theme/frio/config.php:172 +#: view/theme/frio/config.php:160 msgid "Login page background color" msgstr "Bejelentkezési oldal háttérszíne" -#: view/theme/frio/config.php:172 +#: view/theme/frio/config.php:160 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" -#: view/theme/frio/php/Image.php:39 +#: view/theme/frio/php/Image.php:27 msgid "Top Banner" msgstr "Felső reklámcsík" -#: view/theme/frio/php/Image.php:39 +#: view/theme/frio/php/Image.php:27 msgid "" "Resize image to the width of the screen and show background color below on " "long pages." msgstr "Kép átméretezése a képernyő szélességéhez, és a lenti háttérszín megjelenítése hosszú oldalakon." -#: view/theme/frio/php/Image.php:40 +#: view/theme/frio/php/Image.php:28 msgid "Full screen" msgstr "Teljes képernyő" -#: view/theme/frio/php/Image.php:40 +#: view/theme/frio/php/Image.php:28 msgid "" "Resize image to fill entire screen, clipping either the right or the bottom." msgstr "Kép átméretezése a teljes képernyő kitöltéséhez, levágva a jobb szélét vagy az alját." -#: view/theme/frio/php/Image.php:41 +#: view/theme/frio/php/Image.php:29 msgid "Single row mosaic" msgstr "Egysoros mozaik" -#: view/theme/frio/php/Image.php:41 +#: view/theme/frio/php/Image.php:29 msgid "" "Resize image to repeat it on a single row, either vertical or horizontal." msgstr "Kép átméretezése az egy sorban való ismétléshez, függőlegesen vagy vízszintesen." -#: view/theme/frio/php/Image.php:42 +#: view/theme/frio/php/Image.php:30 msgid "Mosaic" msgstr "Mozaik" -#: view/theme/frio/php/Image.php:42 +#: view/theme/frio/php/Image.php:30 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:82 view/theme/frio/php/standard.php:40 +#: view/theme/frio/php/default.php:70 view/theme/frio/php/standard.php:28 msgid "Skip to main content" msgstr "Kihagyás a fő tartalomhoz" -#: view/theme/frio/php/default.php:153 view/theme/frio/php/standard.php:75 +#: view/theme/frio/php/default.php:141 view/theme/frio/php/standard.php:63 msgid "Back to top" msgstr "Vissza a tetejére" -#: view/theme/frio/php/scheme.php:105 +#: view/theme/frio/php/scheme.php:93 msgid "Light" msgstr "Világos" -#: view/theme/frio/php/scheme.php:106 +#: view/theme/frio/php/scheme.php:94 msgid "Dark" msgstr "Sötét" -#: view/theme/frio/php/scheme.php:107 +#: view/theme/frio/php/scheme.php:95 msgid "Black" msgstr "Fekete" -#: view/theme/frio/php/scheme.php:118 +#: view/theme/frio/php/scheme.php:106 msgid "Custom" msgstr "Egyéni" -#: view/theme/frio/theme.php:214 +#: view/theme/frio/theme.php:202 msgid "Guest" msgstr "Vendég" -#: view/theme/frio/theme.php:217 +#: view/theme/frio/theme.php:205 msgid "Visitor" msgstr "Látogató" -#: view/theme/quattro/config.php:89 +#: view/theme/quattro/config.php:77 msgid "Alignment" msgstr "Igazítás" -#: view/theme/quattro/config.php:89 +#: view/theme/quattro/config.php:77 msgid "Left" msgstr "Balra" -#: view/theme/quattro/config.php:89 +#: view/theme/quattro/config.php:77 msgid "Center" msgstr "Középre" -#: view/theme/quattro/config.php:90 +#: view/theme/quattro/config.php:78 msgid "Color scheme" msgstr "Színséma" -#: view/theme/quattro/config.php:91 +#: view/theme/quattro/config.php:79 msgid "Posts font size" msgstr "Bejegyzések betűmérete" -#: view/theme/quattro/config.php:92 +#: view/theme/quattro/config.php:80 msgid "Textareas font size" msgstr "Szövegdobozok betűmérete" -#: view/theme/vier/config.php:91 +#: view/theme/vier/config.php:79 msgid "Comma separated list of helper groups" msgstr "Segítő csoportok vesszővel elválasztott listája" -#: view/theme/vier/config.php:131 +#: view/theme/vier/config.php:119 msgid "don't show" msgstr "ne jelenítse meg" -#: view/theme/vier/config.php:131 +#: view/theme/vier/config.php:119 msgid "show" msgstr "megjelenítés" -#: view/theme/vier/config.php:137 +#: view/theme/vier/config.php:125 msgid "Set style" msgstr "Stílus beállítása" -#: view/theme/vier/config.php:138 +#: view/theme/vier/config.php:126 msgid "Community Pages" msgstr "Közösségi oldalak" -#: view/theme/vier/config.php:139 view/theme/vier/theme.php:148 +#: view/theme/vier/config.php:127 view/theme/vier/theme.php:136 msgid "Community Profiles" msgstr "Közösségi profilok" -#: view/theme/vier/config.php:140 +#: view/theme/vier/config.php:128 msgid "Help or @NewHere ?" msgstr "Súgó vagy @NewHere?" -#: view/theme/vier/config.php:141 view/theme/vier/theme.php:319 +#: view/theme/vier/config.php:129 view/theme/vier/theme.php:307 msgid "Connect Services" msgstr "Szolgáltatások hozzákapcsolása" -#: view/theme/vier/config.php:142 +#: view/theme/vier/config.php:130 msgid "Find Friends" msgstr "Ismerősök keresése" -#: view/theme/vier/config.php:143 view/theme/vier/theme.php:175 +#: view/theme/vier/config.php:131 view/theme/vier/theme.php:163 msgid "Last users" msgstr "Utolsó felhasználók" -#: view/theme/vier/theme.php:234 +#: view/theme/vier/theme.php:222 msgid "Quick Start" msgstr "Gyors kezdés" diff --git a/view/lang/hu/strings.php b/view/lang/hu/strings.php index 8760a1bfbf..33fa674d86 100644 --- a/view/lang/hu/strings.php +++ b/view/lang/hu/strings.php @@ -850,7 +850,6 @@ $a->strings['An author or name was not found.'] = 'Egy szerző vagy név nem tal $a->strings['No browser URL could be matched to this address.'] = 'Egyetlen böngésző URL-t sem sikerült illeszteni ehhez a címhez.'; $a->strings['Unable to match @-style Identity Address with a known protocol or email contact.'] = 'Nem lehet illeszteni @-stílusú személyazonosság-címet egy ismert protokollal vagy e-mailes partnerrel.'; $a->strings['Use mailto: in front of address to force email check.'] = 'Használja a mailto: előtagot a cím előtt az e-mail-ellenőrzés kényszerítéséhez.'; -$a->strings['The profile address specified belongs to a network which has been disabled on this site.'] = 'A megadott profilcím egy olyan hálózathoz tartozik, amely le lett tiltva ezen az oldalon.'; $a->strings['Limited profile. This person will be unable to receive direct/personal notifications from you.'] = 'Korlátozott profil. Ez a személy nem lesz képes közvetlen vagy személyes értesítéseket fogadni Öntől.'; $a->strings['Unable to retrieve contact information.'] = 'Nem lehet lekérni a partner információit.'; $a->strings['l F d, Y \@ g:i A \G\M\TP (e)'] = 'Y. F j., l, H:i \G\M\TP (e)'; @@ -878,7 +877,6 @@ $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'; $a->strings['post'] = 'bejegyzés'; @@ -1371,8 +1369,6 @@ $a->strings['The maximum number of posts per server on the global community page $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.'; -$a->strings['Enable OStatus support'] = 'OStatus támogatás engedélyezése'; -$a->strings['Enable built-in OStatus (StatusNet, GNU Social etc.) compatibility. All communications in OStatus are public.'] = '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.'; $a->strings['Diaspora support can\'t be enabled because Friendica was installed into a sub directory.'] = 'A Diaspora támogatást nem lehet engedélyezni, mert a Friendica egy alkönyvtárba lett telepítve.'; $a->strings['Enable Diaspora support'] = 'Diaspora támogatás engedélyezése'; $a->strings['Enable built-in Diaspora network compatibility for communicating with diaspora servers.'] = 'A beépített Diaspora hálózati kompatibilitás engedélyezése a Diaspora kiszolgálókkal való kommunikációhoz.'; @@ -1418,7 +1414,6 @@ $a->strings['When the database cleanup is enabled, this defines the days after w $a->strings['Lifespan of unclaimed items'] = 'Nem igényelt elemek élettartama'; $a->strings['When the database cleanup is enabled, this defines the days after which unclaimed remote items (mostly content from the relay) will be deleted. Default value is 90 days. Defaults to the general lifespan value of remote items if set to 0.'] = '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.'; $a->strings['Lifespan of raw conversation data'] = 'Nyers beszélgetési adatok élettartama'; -$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.'] = '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.'; $a->strings['Maximum numbers of comments per post'] = 'Bejegyzésenkénti hozzászólások legnagyobb száma'; $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'; @@ -1733,7 +1728,6 @@ $a->strings['Submit Request'] = 'Kérés elküldése'; $a->strings['You already added this contact.'] = 'Már hozzáadta ezt a partnert.'; $a->strings['The network type couldn\'t be detected. Contact can\'t be added.'] = 'A hálózat típusát nem sikerült felismerni. A partnert nem lehet hozzáadni.'; $a->strings['Diaspora support isn\'t enabled. Contact can\'t be added.'] = 'A Diaspora támogatása nincs engedélyezve. A partnert nem lehet hozzáadni.'; -$a->strings['OStatus support is disabled. Contact can\'t be added.'] = 'Az OStatus támogatása le van tiltva. A partnert nem lehet hozzáadni.'; $a->strings['Please answer the following:'] = 'Válaszoljon a következőre:'; $a->strings['Your Identity Address:'] = 'Az Ön személyazonosság-címe:'; $a->strings['Profile URL'] = 'Profil URL'; @@ -2269,10 +2263,6 @@ $a->strings['Incomplete request data'] = 'Befejezetlen kérésadat'; $a->strings['Please copy the following authentication code into your application and close this window: %s'] = 'Másolja be a következő hitelesítési kódot az alkalmazásába, és zárja be ezt az ablakot: %s'; $a->strings['Invalid data or unknown client'] = 'Érvénytelen adatok vagy ismeretlen ügyfél'; $a->strings['Unsupported or missing grant type'] = 'Nem támogatott vagy hiányzó felhatalmazástípus'; -$a->strings['Resubscribing to OStatus contacts'] = 'Újrafeliratkozás az OStatus partnerekre'; -$a->strings['Keep this window open until done.'] = 'Tartsa nyitva ezt az ablakot, amíg el nem készül.'; -$a->strings['✔ Done'] = '✔ Kész'; -$a->strings['No OStatus contacts to resubscribe to.'] = 'Nincsenek OStatus partnerek, hogy újra feliratkozzon rájuk.'; $a->strings['Subscribing to contacts'] = 'Feliratkozás a partnerekre'; $a->strings['No contact provided.'] = 'Nincs partner megadva.'; $a->strings['Couldn\'t fetch information for contact.'] = 'Nem sikerült lekérni a partner információit.'; @@ -2284,6 +2274,7 @@ $a->strings['Done'] = 'Kész'; $a->strings['success'] = 'sikeres'; $a->strings['failed'] = 'sikertelen'; $a->strings['ignored'] = 'mellőzve'; +$a->strings['Keep this window open until done.'] = 'Tartsa nyitva ezt az ablakot, amíg el nem készül.'; $a->strings['The Photo is not available.'] = 'A fénykép nem érhető el.'; $a->strings['The Photo with id %s is not available.'] = 'A(z) %s azonosítóval rendelkező fénykép nem érhető el.'; $a->strings['Invalid external resource with url %s.'] = 'Érvénytelen külső erőforrás a(z) %s URL-lel.'; @@ -2311,9 +2302,9 @@ $a->strings['Collection (%s)'] = 'Gyűjtemény (%s)'; $a->strings['Followers (%s)'] = 'Követők (%s)'; $a->strings['%d more'] = '%d további'; $a->strings['No contacts.'] = 'Nincsenek partnerek.'; -$a->strings['%s\'s timeline'] = '%s idővonala'; $a->strings['%s\'s posts'] = '%s bejegyzései'; $a->strings['%s\'s comments'] = '%s hozzászólásai'; +$a->strings['%s\'s timeline'] = '%s idővonala'; $a->strings['Image exceeds size limit of %s'] = 'A kép meghaladja a beállított %s méretkorlátot'; $a->strings['Image upload didn\'t complete, please try again'] = 'A kép feltöltése nem fejeződött be, próbálja újra'; $a->strings['Image file is missing'] = 'A képfájl hiányzik'; @@ -2587,7 +2578,6 @@ $a->strings['Failed to connect with email account using the settings provided.'] $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'; $a->strings['Built-in support for %s connectivity is disabled'] = 'A(z) %s összekapcsolhatóságának beépített támogatása letiltva'; -$a->strings['OStatus (GNU Social)'] = 'OStatus (GNU Social)'; $a->strings['Email access is disabled on this site.'] = 'Az e-mailes hozzáférés le van tiltva ezen az oldalon.'; $a->strings['None'] = 'Nincs'; $a->strings['Default (Mastodon will display the title and a link to the post)'] = 'Alapértelmezett (a Mastodon megjeleníti a címet és a bejegyzésre mutató hivatkozást)'; @@ -2615,7 +2605,6 @@ $a->strings['Article Mode'] = 'Cikk mód'; $a->strings['Controls how posts with titles are transmitted. Mastodon and its forks don\'t display the content of these posts if the post is created in the correct (default) way.'] = 'Azt vezérli, hogy a címekkel rendelkező bejegyzések hogyan kerülnek továbbításra. A Mastodon és elágaztatásai nem jelenítik meg ezeknek a bejegyzéseknek a tartalmát, ha a bejegyzést a megfelelő (alapértelmezett) módon hozták létre.'; $a->strings['Your legacy ActivityPub/GNU Social account'] = 'Az örökölt ActivityPub/GNU Social fiókja'; $a->strings['If you enter your old account name from an ActivityPub based system or your GNU Social/Statusnet account name here (in the format user@domain.tld), your contacts will be added automatically. The field will be emptied when done.'] = 'Ha megadja itt a régi, egy ActivityPub alapú rendszerből származó fiókja nevét, illetve a GNU Social vagy Statusnet fiókja nevét (felhasználó@tartomány.tld formátumban), akkor a partnerei automatikusan hozzá lesznek adva. A mező ki lesz ürítve, ha elkészült.'; -$a->strings['Repair OStatus subscriptions'] = 'OStatus feliratkozások javítása'; $a->strings['Email/Mailbox Setup'] = 'E-mail vagy postafiók-beállítások'; $a->strings['If you wish to communicate with email contacts using this service (optional), please specify how to connect to your mailbox.'] = 'Ha e-mailes partnerekkel szeretne kommunikálni ezen szolgáltatás használatával (opcionális), akkor adja meg, hogy hogyan kell kapcsolódni a postafiókjához.'; $a->strings['Last successful email check:'] = 'Legutóbbi sikeres e-mail-ellenőrzés:'; @@ -2939,7 +2928,6 @@ $a->strings['%s commented on %s\'s post'] = '%s hozzászólt %s bejegyzéséhez' $a->strings['%s created a new post'] = '%s létrehozott egy új bejegyzést'; $a->strings['Friend Suggestion'] = 'Ismerősajánlás'; $a->strings['Friend/Connect Request'] = 'Ismerős vagy kapcsolódási kérés'; -$a->strings['New Follower'] = 'Új követő'; $a->strings['%1$s wants to follow you'] = '%1$s követni szeretné Önt'; $a->strings['%1$s has started following you'] = '%1$s elkezdte követni Önt'; $a->strings['%1$s liked your comment on %2$s'] = '%1$s kedvelte az Ön hozzászólását ehhez: %2$s'; @@ -3094,10 +3082,6 @@ $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'; -$a->strings['%s stopped following %s.'] = '%s leállította %s követését.'; -$a->strings['stopped following'] = 'követés leállítva'; $a->strings['The folder %s must be writable by webserver.'] = 'A „%s” mappának írhatónak kell lennie a webkiszolgáló által.'; $a->strings['Login failed.'] = 'Bejelentkezés sikertelen.'; $a->strings['Login failed. Please check your credentials.'] = 'Bejelentkezés sikertelen. Ellenőrizze a hitelesítési adatait.'; diff --git a/view/lang/is/messages.po b/view/lang/is/messages.po index 13f6ef30f0..0b3167751b 100644 --- a/view/lang/is/messages.po +++ b/view/lang/is/messages.po @@ -1,8 +1,7 @@ # FRIENDICA Distributed Social Network -# SPDX-FileCopyrightText: Copyright (C) 2010-2024, the Friendica project -# -# SPDX-License-Identifier: AGPL-3.0-or-later -# +# Copyright (C) 2010-2024, the Friendica project +# This file is distributed under the same license as the Friendica package. +# # Translators: # 33b3403388a6619423bbfe91dc9e4663_ed82b2f, 2012 # 33b3403388a6619423bbfe91dc9e4663_ed82b2f, 2012 @@ -17,7 +16,7 @@ msgid "" msgstr "" "Project-Id-Version: friendica\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-05-15 12:16+0000\n" +"POT-Creation-Date: 2024-10-07 20:46+0000\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" @@ -27,77 +26,77 @@ msgstr "" "Language: is\n" "Plural-Forms: nplurals=2; plural=(n % 10 != 1 || n % 100 == 11);\n" -#: mod/item.php:101 mod/item.php:104 mod/item.php:171 mod/item.php:174 +#: mod/item.php:89 mod/item.php:92 mod/item.php:159 mod/item.php:162 msgid "Unable to locate original post." msgstr "Ekki tókst að finna upphaflega færslu." -#: mod/item.php:139 +#: mod/item.php:127 msgid "Post updated." msgstr "" -#: mod/item.php:204 mod/item.php:208 +#: mod/item.php:192 mod/item.php:196 msgid "Item wasn't stored." msgstr "" -#: mod/item.php:218 +#: mod/item.php:206 msgid "Item couldn't be fetched." msgstr "" -#: mod/item.php:260 mod/item.php:264 +#: mod/item.php:250 mod/item.php:254 msgid "Empty post discarded." msgstr "Tóm færsla eytt." -#: mod/item.php:435 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 +#: mod/item.php:425 src/Module/Admin/Themes/Details.php:31 +#: src/Module/Admin/Themes/Index.php:51 src/Module/Debug/ItemBody.php:28 +#: src/Module/Debug/ItemBody.php:43 src/Module/Item/Feed.php:66 msgid "Item not found." msgstr "Atriði fannst ekki." -#: mod/item.php:459 mod/message.php:66 mod/message.php:112 mod/notes.php:45 -#: mod/photos.php:146 mod/photos.php:662 src/Model/Event.php:520 -#: src/Module/Attach.php:55 src/Module/BaseApi.php:103 -#: src/Module/BaseNotifications.php:98 src/Module/BaseSettings.php:50 -#: src/Module/Calendar/Event/API.php:88 src/Module/Calendar/Event/Form.php:84 -#: src/Module/Calendar/Export.php:82 src/Module/Calendar/Show.php:82 -#: src/Module/Circle.php:41 src/Module/Circle.php:84 -#: src/Module/Contact/Advanced.php:60 src/Module/Contact/Follow.php:87 -#: src/Module/Contact/Follow.php:160 src/Module/Contact/MatchInterests.php:87 -#: src/Module/Contact/Suggestions.php:54 src/Module/Contact/Unfollow.php:66 -#: src/Module/Contact/Unfollow.php:80 src/Module/Contact/Unfollow.php:112 -#: src/Module/FollowConfirm.php:38 src/Module/FriendSuggest.php:57 -#: src/Module/Invite.php:42 src/Module/Invite.php:131 -#: src/Module/Notifications/Notification.php:76 -#: src/Module/Notifications/Notification.php:107 -#: src/Module/OStatus/Repair.php:60 src/Module/OStatus/Subscribe.php:68 -#: src/Module/Post/Edit.php:76 src/Module/Profile/Common.php:75 -#: src/Module/Profile/Contacts.php:78 src/Module/Profile/Photos.php:92 -#: src/Module/Profile/Schedule.php:39 src/Module/Profile/Schedule.php:56 -#: src/Module/Register.php:78 src/Module/Register.php:91 -#: src/Module/Register.php:207 src/Module/Register.php:246 -#: src/Module/Search/Directory.php:37 src/Module/Settings/Account.php:50 -#: src/Module/Settings/Account.php:386 src/Module/Settings/Channels.php:66 -#: src/Module/Settings/Channels.php:141 src/Module/Settings/Delegation.php:90 -#: src/Module/Settings/Display.php:90 src/Module/Settings/Display.php:197 -#: src/Module/Settings/Profile/Photo/Crop.php:165 -#: src/Module/Settings/Profile/Photo/Index.php:110 -#: src/Module/Settings/RemoveMe.php:119 src/Module/Settings/UserExport.php:78 -#: src/Module/Settings/UserExport.php:114 -#: src/Module/Settings/UserExport.php:213 -#: src/Module/Settings/UserExport.php:233 -#: src/Module/Settings/UserExport.php:298 src/Module/User/Delegation.php:154 -#: src/Module/User/Import.php:85 src/Module/User/Import.php:92 +#: mod/item.php:449 mod/message.php:54 mod/message.php:100 mod/notes.php:33 +#: mod/photos.php:135 mod/photos.php:627 src/Model/Event.php:506 +#: src/Module/Attach.php:41 src/Module/BaseApi.php:89 +#: src/Module/BaseNotifications.php:84 src/Module/BaseSettings.php:36 +#: src/Module/Calendar/Event/API.php:74 src/Module/Calendar/Event/Form.php:70 +#: src/Module/Calendar/Export.php:68 src/Module/Calendar/Show.php:68 +#: src/Module/Circle.php:27 src/Module/Circle.php:70 +#: src/Module/Contact/Advanced.php:46 src/Module/Contact/Follow.php:73 +#: src/Module/Contact/Follow.php:141 src/Module/Contact/MatchInterests.php:73 +#: src/Module/Contact/Suggestions.php:40 src/Module/Contact/Unfollow.php:52 +#: src/Module/Contact/Unfollow.php:66 src/Module/Contact/Unfollow.php:98 +#: src/Module/FollowConfirm.php:24 src/Module/FriendSuggest.php:43 +#: src/Module/Invite.php:28 src/Module/Invite.php:117 +#: src/Module/Notifications/Notification.php:62 +#: src/Module/Notifications/Notification.php:93 +#: src/Module/OStatus/Subscribe.php:54 src/Module/Post/Edit.php:62 +#: src/Module/Profile/Common.php:61 src/Module/Profile/Contacts.php:64 +#: src/Module/Profile/Photos.php:78 src/Module/Profile/Schedule.php:25 +#: src/Module/Profile/Schedule.php:42 src/Module/Register.php:70 +#: src/Module/Register.php:83 src/Module/Register.php:199 +#: src/Module/Register.php:238 src/Module/Search/Directory.php:23 +#: src/Module/Settings/Account.php:36 src/Module/Settings/Account.php:377 +#: src/Module/Settings/Channels.php:52 src/Module/Settings/Channels.php:127 +#: src/Module/Settings/Delegation.php:76 src/Module/Settings/Display.php:76 +#: src/Module/Settings/Display.php:183 +#: src/Module/Settings/Profile/Photo/Crop.php:151 +#: src/Module/Settings/Profile/Photo/Index.php:96 +#: src/Module/Settings/RemoveMe.php:105 src/Module/Settings/UserExport.php:64 +#: src/Module/Settings/UserExport.php:100 +#: src/Module/Settings/UserExport.php:199 +#: src/Module/Settings/UserExport.php:219 +#: src/Module/Settings/UserExport.php:284 src/Module/User/Delegation.php:140 +#: src/Module/User/Import.php:71 src/Module/User/Import.php:78 msgid "Permission denied." msgstr "Heimild ekki veitt." -#: mod/lostpass.php:40 +#: mod/lostpass.php:28 msgid "No valid account found." msgstr "Engin gildur aðgangur fannst." -#: mod/lostpass.php:52 +#: mod/lostpass.php:40 msgid "Password reset request issued. Check your email." msgstr "Gefin var beiðni um breytingu á lykilorði. Opnaðu tölvupóstinn þinn." -#: mod/lostpass.php:58 +#: mod/lostpass.php:46 #, php-format msgid "" "\n" @@ -113,7 +112,7 @@ msgid "" "\t\tissued this request." msgstr "" -#: mod/lostpass.php:69 +#: mod/lostpass.php:57 #, php-format msgid "" "\n" @@ -130,70 +129,70 @@ msgid "" "\t\tLogin Name:\t%3$s" msgstr "" -#: mod/lostpass.php:84 +#: mod/lostpass.php:72 #, php-format msgid "Password reset requested at %s" msgstr "Beðið var um endurstillingu lykilorðs %s" -#: mod/lostpass.php:100 +#: mod/lostpass.php:88 msgid "" "Request could not be verified. (You may have previously submitted it.) " "Password reset failed." msgstr "Ekki var hægt að sannreyna beiðni. (Það getur verið að þú hafir þegar verið búin/n að senda hana.) Endurstilling á lykilorði tókst ekki." -#: mod/lostpass.php:113 +#: mod/lostpass.php:101 msgid "Request has expired, please make a new one." msgstr "" -#: mod/lostpass.php:128 +#: mod/lostpass.php:116 msgid "Forgot your Password?" msgstr "Gleymdir þú lykilorði þínu?" -#: mod/lostpass.php:129 +#: mod/lostpass.php:117 msgid "" "Enter your email address and submit to have your password reset. Then check " "your email for further instructions." msgstr "Sláðu inn tölvupóstfangið þitt til að endurstilla aðgangsorðið og fá leiðbeiningar sendar með tölvupósti." -#: mod/lostpass.php:130 src/Module/Security/Login.php:160 +#: mod/lostpass.php:118 src/Module/Security/Login.php:150 msgid "Nickname or Email: " msgstr "Gælunafn eða tölvupóstfang: " -#: mod/lostpass.php:131 +#: mod/lostpass.php:119 msgid "Reset" msgstr "Endurstilla" -#: mod/lostpass.php:146 src/Module/Security/Login.php:172 +#: mod/lostpass.php:134 src/Module/Security/Login.php:162 msgid "Password Reset" msgstr "Endurstilling aðgangsorðs" -#: mod/lostpass.php:147 +#: mod/lostpass.php:135 msgid "Your password has been reset as requested." msgstr "Aðgangsorðið þitt hefur verið endurstilt." -#: mod/lostpass.php:148 +#: mod/lostpass.php:136 msgid "Your new password is" msgstr "Nýja aðgangsorð þitt er " -#: mod/lostpass.php:149 +#: mod/lostpass.php:137 msgid "Save or copy your new password - and then" msgstr "Vistaðu eða afritaðu nýja aðgangsorðið - og" -#: mod/lostpass.php:150 +#: mod/lostpass.php:138 msgid "click here to login" msgstr "smelltu síðan hér til að skrá þig inn" -#: mod/lostpass.php:151 +#: mod/lostpass.php:139 msgid "" "Your password may be changed from the Settings page after " "successful login." msgstr "Þú getur breytt aðgangsorðinu þínu á Stillingar síðunni eftir að þú hefur skráð þig inn." -#: mod/lostpass.php:155 +#: mod/lostpass.php:143 msgid "Your password has been reset." msgstr "" -#: mod/lostpass.php:158 +#: mod/lostpass.php:146 #, php-format msgid "" "\n" @@ -204,7 +203,7 @@ msgid "" "\t\t" msgstr "" -#: mod/lostpass.php:164 +#: mod/lostpass.php:152 #, php-format msgid "" "\n" @@ -218,2408 +217,2415 @@ msgid "" "\t\t" msgstr "" -#: mod/lostpass.php:176 +#: mod/lostpass.php:164 #, php-format msgid "Your password has been changed at %s" msgstr "Aðgangsorðinu þínu var breytt í %s" -#: mod/message.php:45 mod/message.php:127 src/Content/Nav.php:321 +#: mod/message.php:33 mod/message.php:115 src/Content/Nav.php:307 msgid "New Message" msgstr "Ný skilaboð" -#: mod/message.php:81 +#: mod/message.php:69 msgid "No recipient selected." msgstr "Engir viðtakendur valdir." -#: mod/message.php:86 +#: mod/message.php:74 msgid "Unable to locate contact information." msgstr "Ekki tókst að staðsetja tengiliðs upplýsingar." -#: mod/message.php:90 +#: mod/message.php:78 msgid "Message could not be sent." msgstr "Ekki tókst að senda skilaboð." -#: mod/message.php:94 +#: mod/message.php:82 msgid "Message collection failure." msgstr "Ekki tókst að sækja skilaboð." -#: mod/message.php:121 src/Module/Notifications/Introductions.php:135 -#: src/Module/Notifications/Introductions.php:170 -#: src/Module/Notifications/Notification.php:85 +#: mod/message.php:109 src/Module/Notifications/Introductions.php:127 +#: src/Module/Notifications/Introductions.php:162 +#: src/Module/Notifications/Notification.php:71 msgid "Discard" msgstr "Henda" -#: mod/message.php:134 src/Content/Nav.php:318 view/theme/frio/theme.php:244 +#: mod/message.php:122 src/Content/Nav.php:304 view/theme/frio/theme.php:232 msgid "Messages" msgstr "Skilaboð" -#: mod/message.php:147 +#: mod/message.php:135 msgid "Conversation not found." msgstr "" -#: mod/message.php:152 +#: mod/message.php:140 msgid "Message was not deleted." msgstr "" -#: mod/message.php:167 +#: mod/message.php:155 msgid "Conversation was not removed." msgstr "" -#: mod/message.php:180 mod/message.php:285 +#: mod/message.php:168 mod/message.php:273 msgid "Please enter a link URL:" msgstr "Sláðu inn slóð:" -#: mod/message.php:189 +#: mod/message.php:177 msgid "Send Private Message" msgstr "Senda einkaskilaboð" -#: mod/message.php:190 mod/message.php:345 -#: src/Module/Privacy/PermissionTooltip.php:132 +#: mod/message.php:178 mod/message.php:333 +#: src/Module/Privacy/PermissionTooltip.php:118 msgid "To:" msgstr "Til:" -#: mod/message.php:191 mod/message.php:346 +#: mod/message.php:179 mod/message.php:334 msgid "Subject:" msgstr "Efni:" -#: mod/message.php:195 mod/message.php:349 src/Module/Invite.php:171 +#: mod/message.php:183 mod/message.php:337 src/Module/Invite.php:157 msgid "Your message:" msgstr "Skilaboðin:" -#: mod/message.php:198 mod/message.php:353 src/Content/Conversation.php:369 -#: src/Module/Post/Edit.php:131 +#: mod/message.php:186 mod/message.php:341 src/Content/Conversation.php:355 +#: src/Module/Post/Edit.php:117 msgid "Upload photo" msgstr "Hlaða upp mynd" -#: mod/message.php:199 mod/message.php:354 src/Module/Post/Edit.php:135 +#: mod/message.php:187 mod/message.php:342 src/Module/Post/Edit.php:121 msgid "Insert web link" msgstr "Setja inn vefslóð" -#: mod/message.php:200 mod/message.php:356 mod/photos.php:1290 -#: src/Content/Conversation.php:400 src/Content/Conversation.php:1576 -#: src/Module/Item/Compose.php:213 src/Module/Post/Edit.php:145 -#: src/Object/Post.php:618 +#: mod/message.php:188 mod/message.php:344 mod/photos.php:1255 +#: src/Content/Conversation.php:386 src/Content/Conversation.php:1562 +#: src/Module/Item/Compose.php:199 src/Module/Post/Edit.php:131 +#: src/Object/Post.php:604 msgid "Please wait" msgstr "Hinkraðu aðeins" -#: mod/message.php:201 mod/message.php:355 mod/photos.php:693 -#: mod/photos.php:813 mod/photos.php:1090 mod/photos.php:1131 -#: mod/photos.php:1187 mod/photos.php:1267 -#: src/Module/Calendar/Event/Form.php:250 src/Module/Contact/Advanced.php:132 +#: mod/message.php:189 mod/message.php:343 mod/photos.php:658 +#: mod/photos.php:778 mod/photos.php:1055 mod/photos.php:1096 +#: mod/photos.php:1152 mod/photos.php:1232 +#: src/Module/Calendar/Event/Form.php:236 src/Module/Contact/Advanced.php:118 #: src/Module/Contact/Profile.php:370 -#: src/Module/Debug/ActivityPubConversion.php:140 -#: 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 -#: src/Module/Invite.php:178 src/Module/Item/Compose.php:196 -#: src/Module/Moderation/Item/Source.php:79 -#: src/Module/Moderation/Report/Create.php:168 -#: src/Module/Moderation/Report/Create.php:183 -#: src/Module/Moderation/Report/Create.php:211 -#: src/Module/Moderation/Report/Create.php:263 -#: src/Module/Profile/Profile.php: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:1159 view/theme/duepuntozero/config.php:85 -#: view/theme/frio/config.php:150 view/theme/quattro/config.php:87 -#: view/theme/vier/config.php:135 +#: src/Module/Debug/ActivityPubConversion.php:132 +#: src/Module/Debug/Babel.php:307 src/Module/Debug/Localtime.php:50 +#: src/Module/Debug/Probe.php:40 src/Module/Debug/WebFinger.php:37 +#: src/Module/FriendSuggest.php:131 src/Module/Install.php:220 +#: src/Module/Install.php:260 src/Module/Install.php:295 +#: src/Module/Invite.php:164 src/Module/Item/Compose.php:182 +#: src/Module/Moderation/Item/Source.php:71 +#: src/Module/Moderation/Report/Create.php:154 +#: src/Module/Moderation/Report/Create.php:169 +#: src/Module/Moderation/Report/Create.php:197 +#: src/Module/Moderation/Report/Create.php:249 +#: src/Module/Profile/Profile.php:262 +#: src/Module/Settings/Profile/Index.php:248 +#: src/Module/Settings/Server/Action.php:65 src/Module/User/Delegation.php:175 +#: src/Object/Post.php:1145 view/theme/duepuntozero/config.php:73 +#: view/theme/frio/config.php:138 view/theme/quattro/config.php:75 +#: view/theme/vier/config.php:123 msgid "Submit" msgstr "Senda inn" -#: mod/message.php:222 +#: mod/message.php:210 msgid "No messages." msgstr "Engin skilaboð." -#: mod/message.php:278 +#: mod/message.php:266 msgid "Message not available." msgstr "Ekki næst í skilaboð." -#: mod/message.php:322 +#: mod/message.php:310 msgid "Delete message" msgstr "Eyða skilaboðum" -#: mod/message.php:324 mod/message.php:453 +#: mod/message.php:312 mod/message.php:441 msgid "D, d M Y - g:i A" msgstr "D, d. M Y - g:i A" -#: mod/message.php:339 mod/message.php:450 +#: mod/message.php:327 mod/message.php:438 msgid "Delete conversation" msgstr "Eyða samtali" -#: mod/message.php:341 +#: mod/message.php:329 msgid "" "No secure communications available. You may be able to " "respond from the sender's profile page." msgstr "" -#: mod/message.php:344 +#: mod/message.php:332 msgid "Send Reply" msgstr "Senda svar" -#: mod/message.php:424 +#: mod/message.php:412 #, php-format msgid "Unknown sender - %s" msgstr "Óþekktur sendandi - %s" -#: mod/message.php:426 +#: mod/message.php:414 #, php-format msgid "You and %s" msgstr "Þú og %s" -#: mod/message.php:428 +#: mod/message.php:416 #, php-format msgid "%s and You" msgstr "%s og þú" -#: mod/message.php:456 +#: mod/message.php:444 #, php-format msgid "%d message" msgid_plural "%d messages" msgstr[0] "%d skilaboð" msgstr[1] "%d skilaboð" -#: mod/notes.php:52 src/Module/BaseProfile.php:108 +#: mod/notes.php:40 src/Module/BaseProfile.php:94 msgid "Personal Notes" msgstr "Persónulegar glósur" -#: mod/notes.php:56 +#: mod/notes.php:44 msgid "Personal notes are visible only by yourself." msgstr "" -#: mod/notes.php:57 src/Content/Text/HTML.php:861 -#: src/Module/Admin/Storage.php:142 src/Module/Filer/SaveTag.php:74 -#: src/Module/Post/Edit.php:129 src/Module/Settings/Channels.php:229 +#: mod/notes.php:45 src/Content/Text/HTML.php:847 +#: src/Module/Admin/Storage.php:128 src/Module/Filer/SaveTag.php:60 +#: src/Module/Post/Edit.php:115 src/Module/Settings/Channels.php:215 msgid "Save" msgstr "Vista" -#: mod/photos.php:65 mod/photos.php:128 mod/photos.php:572 -#: src/Model/Event.php:512 src/Model/Profile.php:234 -#: src/Module/Calendar/Export.php:74 src/Module/Calendar/Show.php:74 -#: src/Module/DFRN/Poll.php:43 src/Module/Feed.php:64 src/Module/HCard.php:51 -#: src/Module/Profile/Common.php:62 src/Module/Profile/Common.php:71 -#: src/Module/Profile/Contacts.php:64 src/Module/Profile/Contacts.php:72 -#: src/Module/Profile/Conversations.php:91 src/Module/Profile/Media.php:56 -#: src/Module/Profile/Photos.php:83 src/Module/Profile/RemoteFollow.php:71 -#: src/Module/Register.php:268 +#: mod/photos.php:54 mod/photos.php:117 mod/photos.php:537 +#: src/Model/Event.php:498 src/Model/Profile.php:213 +#: src/Module/Calendar/Export.php:60 src/Module/Calendar/Show.php:60 +#: src/Module/Feed.php:52 src/Module/HCard.php:37 +#: src/Module/Profile/Common.php:48 src/Module/Profile/Common.php:57 +#: src/Module/Profile/Contacts.php:50 src/Module/Profile/Contacts.php:58 +#: src/Module/Profile/Conversations.php:77 src/Module/Profile/Media.php:42 +#: src/Module/Profile/Photos.php:69 src/Module/Profile/RemoteFollow.php:57 +#: src/Module/Register.php:260 msgid "User not found." msgstr "" -#: mod/photos.php:102 src/Module/BaseProfile.php:68 -#: src/Module/Profile/Photos.php:375 +#: mod/photos.php:91 src/Module/BaseProfile.php:54 +#: src/Module/Profile/Photos.php:361 msgid "Photo Albums" msgstr "Myndabækur" -#: mod/photos.php:103 src/Module/Profile/Photos.php:376 -#: src/Module/Profile/Photos.php:396 +#: mod/photos.php:92 src/Module/Profile/Photos.php:362 +#: src/Module/Profile/Photos.php:382 msgid "Recent Photos" msgstr "Nýlegar myndir" -#: mod/photos.php:105 mod/photos.php:861 src/Module/Profile/Photos.php:378 -#: src/Module/Profile/Photos.php:398 +#: mod/photos.php:94 mod/photos.php:826 src/Module/Profile/Photos.php:364 +#: src/Module/Profile/Photos.php:384 msgid "Upload New Photos" msgstr "Hlaða upp nýjum myndum" -#: mod/photos.php:117 src/Module/BaseSettings.php:72 -#: src/Module/Profile/Photos.php:359 +#: mod/photos.php:106 src/Module/BaseSettings.php:58 +#: src/Module/Profile/Photos.php:345 msgid "everybody" msgstr "allir" -#: mod/photos.php:153 +#: mod/photos.php:142 msgid "Contact information unavailable" msgstr "Tengiliða upplýsingar ekki til" -#: mod/photos.php:182 +#: mod/photos.php:171 msgid "Album not found." msgstr "Myndabók finnst ekki." -#: mod/photos.php:238 +#: mod/photos.php:227 msgid "Album successfully deleted" msgstr "" -#: mod/photos.php:240 +#: mod/photos.php:229 msgid "Album was empty." msgstr "" -#: mod/photos.php:271 +#: mod/photos.php:260 msgid "Failed to delete the photo." msgstr "" -#: mod/photos.php:539 +#: mod/photos.php:504 msgid "a photo" msgstr "mynd" -#: mod/photos.php:539 +#: mod/photos.php:504 #, 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:576 src/Module/Conversation/Community.php:160 -#: src/Module/Directory.php:48 src/Module/Profile/Photos.php:293 -#: src/Module/Search/Index.php:65 +#: mod/photos.php:541 src/Module/Conversation/Community.php:148 +#: src/Module/Directory.php:35 src/Module/Profile/Photos.php:279 +#: src/Module/Search/Index.php:51 msgid "Public access denied." msgstr "Opinber aðgangur ekki veittur." -#: mod/photos.php:581 +#: mod/photos.php:546 msgid "No photos selected" msgstr "Engar myndir valdar" -#: mod/photos.php:709 +#: mod/photos.php:674 #, php-format msgid "The maximum accepted image size is %s" msgstr "" -#: mod/photos.php:716 +#: mod/photos.php:681 msgid "Upload Photos" msgstr "Hlaða upp myndum" -#: mod/photos.php:720 mod/photos.php:809 +#: mod/photos.php:685 mod/photos.php:774 msgid "New album name: " msgstr "Nýtt nafn myndbókar:" -#: mod/photos.php:721 +#: mod/photos.php:686 msgid "or select existing album:" msgstr "" -#: mod/photos.php:722 +#: mod/photos.php:687 msgid "Do not show a status post for this upload" msgstr "Ekki sýna færslu fyrir þessari upphölun" -#: mod/photos.php:725 mod/photos.php:1086 src/Content/Conversation.php:402 -#: src/Module/Calendar/Event/Form.php:253 src/Module/Post/Edit.php:183 +#: mod/photos.php:690 mod/photos.php:1051 src/Content/Conversation.php:388 +#: src/Module/Calendar/Event/Form.php:239 src/Module/Post/Edit.php:169 msgid "Permissions" msgstr "Aðgangsheimildir" -#: mod/photos.php:790 +#: mod/photos.php:755 msgid "Do you really want to delete this photo album and all its photos?" msgstr "" -#: mod/photos.php:791 mod/photos.php:814 +#: mod/photos.php:756 mod/photos.php:779 msgid "Delete Album" msgstr "Fjarlægja myndabók" -#: mod/photos.php:792 mod/photos.php:892 src/Content/Conversation.php:417 -#: 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 -#: src/Module/Media/Photo/Browser.php:88 src/Module/Post/Edit.php:167 -#: src/Module/Post/Tag/Remove.php:109 src/Module/Profile/RemoteFollow.php:134 -#: src/Module/Security/TwoFactor/SignOut.php:125 +#: mod/photos.php:757 mod/photos.php:857 src/Content/Conversation.php:403 +#: src/Module/Contact/Follow.php:154 src/Module/Contact/Revoke.php:92 +#: src/Module/Contact/Unfollow.php:112 +#: src/Module/Media/Attachment/Browser.php:63 +#: src/Module/Media/Photo/Browser.php:74 src/Module/Post/Edit.php:153 +#: src/Module/Post/Tag/Remove.php:95 src/Module/Profile/RemoteFollow.php:120 +#: src/Module/Security/TwoFactor/SignOut.php:111 msgid "Cancel" msgstr "Hætta við" -#: mod/photos.php:818 +#: mod/photos.php:783 msgid "Edit Album" msgstr "Breyta myndbók" -#: mod/photos.php:819 +#: mod/photos.php:784 msgid "Drop Album" msgstr "" -#: mod/photos.php:823 +#: mod/photos.php:788 msgid "Show Newest First" msgstr "Birta nýjast fyrst" -#: mod/photos.php:825 +#: mod/photos.php:790 msgid "Show Oldest First" msgstr "Birta elsta fyrst" -#: mod/photos.php:846 src/Module/Profile/Photos.php:346 +#: mod/photos.php:811 src/Module/Profile/Photos.php:332 msgid "View Photo" msgstr "Skoða mynd" -#: mod/photos.php:878 +#: mod/photos.php:843 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:880 +#: mod/photos.php:845 msgid "Photo not available" msgstr "Mynd ekki til" -#: mod/photos.php:890 +#: mod/photos.php:855 msgid "Do you really want to delete this photo?" msgstr "" -#: mod/photos.php:891 mod/photos.php:1091 +#: mod/photos.php:856 mod/photos.php:1056 msgid "Delete Photo" msgstr "Fjarlægja mynd" -#: mod/photos.php:989 +#: mod/photos.php:954 msgid "View photo" msgstr "Birta mynd" -#: mod/photos.php:991 +#: mod/photos.php:956 msgid "Edit photo" msgstr "Breyta mynd" -#: mod/photos.php:992 +#: mod/photos.php:957 msgid "Delete photo" msgstr "" -#: mod/photos.php:993 +#: mod/photos.php:958 msgid "Use as profile photo" msgstr "Nota sem forsíðu mynd" -#: mod/photos.php:1000 +#: mod/photos.php:965 msgid "Private Photo" msgstr "" -#: mod/photos.php:1006 +#: mod/photos.php:971 msgid "View Full Size" msgstr "Skoða í fullri stærð" -#: mod/photos.php:1059 +#: mod/photos.php:1024 msgid "Tags: " msgstr "Merki:" -#: mod/photos.php:1062 +#: mod/photos.php:1027 msgid "[Select tags to remove]" msgstr "" -#: mod/photos.php:1077 +#: mod/photos.php:1042 msgid "New album name" msgstr "Nýtt nafn myndbókar" -#: mod/photos.php:1078 +#: mod/photos.php:1043 msgid "Caption" msgstr "Yfirskrift" -#: mod/photos.php:1079 +#: mod/photos.php:1044 msgid "Add a Tag" msgstr "Bæta við merki" -#: mod/photos.php:1079 +#: mod/photos.php:1044 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:1080 +#: mod/photos.php:1045 msgid "Do not rotate" msgstr "Ekki snúa" -#: mod/photos.php:1081 +#: mod/photos.php:1046 msgid "Rotate CW (right)" msgstr "Snúa réttsælis (hægri)" -#: mod/photos.php:1082 +#: mod/photos.php:1047 msgid "Rotate CCW (left)" msgstr "Snúa rangsælis (vinstri)" -#: mod/photos.php:1128 mod/photos.php:1184 mod/photos.php:1264 -#: src/Module/Contact.php:618 src/Module/Item/Compose.php:195 -#: src/Object/Post.php:1156 +#: mod/photos.php:1093 mod/photos.php:1149 mod/photos.php:1229 +#: src/Module/Contact.php:600 src/Module/Item/Compose.php:181 +#: src/Object/Post.php:1142 msgid "This is you" msgstr "Þetta ert þú" -#: mod/photos.php:1130 mod/photos.php:1186 mod/photos.php:1266 -#: src/Module/Moderation/Reports.php:110 src/Object/Post.php:612 -#: src/Object/Post.php:1158 +#: mod/photos.php:1095 mod/photos.php:1151 mod/photos.php:1231 +#: src/Module/Moderation/Reports.php:102 src/Object/Post.php:598 +#: src/Object/Post.php:1144 msgid "Comment" msgstr "Athugasemd" -#: mod/photos.php:1132 mod/photos.php:1188 mod/photos.php:1268 -#: src/Content/Conversation.php:414 src/Module/Calendar/Event/Form.php:248 -#: src/Module/Item/Compose.php:208 src/Module/Post/Edit.php:165 -#: src/Object/Post.php:1172 +#: mod/photos.php:1097 mod/photos.php:1153 mod/photos.php:1233 +#: src/Content/Conversation.php:400 src/Module/Calendar/Event/Form.php:234 +#: src/Module/Item/Compose.php:194 src/Module/Post/Edit.php:151 +#: src/Object/Post.php:1158 msgid "Preview" msgstr "Forskoðun" -#: mod/photos.php:1133 src/Content/Conversation.php:368 -#: src/Module/Post/Edit.php:130 src/Object/Post.php:1160 +#: mod/photos.php:1098 src/Content/Conversation.php:354 +#: src/Module/Post/Edit.php:116 src/Object/Post.php:1146 msgid "Loading..." msgstr "" -#: mod/photos.php:1225 src/Content/Conversation.php:1498 -#: src/Object/Post.php:274 +#: mod/photos.php:1190 src/Content/Conversation.php:1484 +#: src/Object/Post.php:260 msgid "Select" msgstr "Velja" -#: mod/photos.php:1226 src/Content/Conversation.php:1499 -#: src/Module/Moderation/Users/Active.php:136 -#: src/Module/Moderation/Users/Blocked.php:136 -#: src/Module/Moderation/Users/Index.php:151 -#: src/Module/Settings/Connectors.php:244 -#: src/Module/Settings/Server/Index.php:109 +#: mod/photos.php:1191 src/Content/Conversation.php:1485 +#: src/Module/Moderation/Users/Active.php:122 +#: src/Module/Moderation/Users/Blocked.php:122 +#: src/Module/Moderation/Users/Index.php:137 +#: src/Module/Settings/Connectors.php:233 +#: src/Module/Settings/Server/Index.php:95 msgid "Delete" msgstr "Eyða" -#: mod/photos.php:1287 src/Object/Post.php:440 +#: mod/photos.php:1252 src/Object/Post.php:426 msgid "Like" msgstr "" -#: mod/photos.php:1288 src/Object/Post.php:440 +#: mod/photos.php:1253 src/Object/Post.php:426 msgid "I like this (toggle)" msgstr "Mér líkar þetta (kveikja/slökkva)" -#: mod/photos.php:1289 src/Object/Post.php:441 +#: mod/photos.php:1254 src/Object/Post.php:427 msgid "Dislike" msgstr "" -#: mod/photos.php:1291 src/Object/Post.php:441 +#: mod/photos.php:1256 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:1313 +#: mod/photos.php:1278 msgid "Map" msgstr "Landakort" -#: src/App.php:438 +#: src/App.php:432 msgid "No system theme config value set." msgstr "" -#: src/App.php:546 +#: src/App.php:540 msgid "Apologies but the website is unavailable at the moment." msgstr "" -#: src/App/Page.php:250 +#: src/App/Page.php:236 msgid "Delete this item?" msgstr "Eyða þessu atriði?" -#: src/App/Page.php:251 +#: src/App/Page.php:237 msgid "" "Block this author? They won't be able to follow you nor see your public " "posts, and you won't be able to see their posts and their notifications." msgstr "" -#: src/App/Page.php:252 +#: src/App/Page.php:238 msgid "" "Ignore this author? You won't be able to see their posts and their " "notifications." msgstr "" -#: src/App/Page.php:253 +#: src/App/Page.php:239 msgid "Collapse this author's posts?" msgstr "" -#: src/App/Page.php:254 +#: src/App/Page.php:240 msgid "Ignore this author's server?" msgstr "" -#: src/App/Page.php:255 src/Module/Settings/Server/Action.php:61 -#: src/Module/Settings/Server/Index.php:108 +#: src/App/Page.php:241 src/Module/Settings/Server/Action.php:47 +#: src/Module/Settings/Server/Index.php:94 msgid "" "You won't see any content from this server including reshares in your " "Network page, the community pages and individual conversations." msgstr "" -#: src/App/Page.php:257 +#: src/App/Page.php:243 msgid "Like not successful" msgstr "" -#: src/App/Page.php:258 +#: src/App/Page.php:244 msgid "Dislike not successful" msgstr "" -#: src/App/Page.php:259 +#: src/App/Page.php:245 msgid "Sharing not successful" msgstr "" -#: src/App/Page.php:260 +#: src/App/Page.php:246 msgid "Attendance unsuccessful" msgstr "" -#: src/App/Page.php:261 +#: src/App/Page.php:247 msgid "Backend error" msgstr "" -#: src/App/Page.php:262 +#: src/App/Page.php:248 msgid "Network error" msgstr "" -#: src/App/Page.php:265 +#: src/App/Page.php:251 msgid "Drop files here to upload" msgstr "" -#: src/App/Page.php:266 +#: src/App/Page.php:252 msgid "Your browser does not support drag and drop file uploads." msgstr "" -#: src/App/Page.php:267 +#: src/App/Page.php:253 msgid "" "Please use the fallback form below to upload your files like in the olden " "days." msgstr "" -#: src/App/Page.php:268 +#: src/App/Page.php:254 msgid "File is too big ({{filesize}}MiB). Max filesize: {{maxFilesize}}MiB." msgstr "" -#: src/App/Page.php:269 +#: src/App/Page.php:255 msgid "You can't upload files of this type." msgstr "" -#: src/App/Page.php:270 +#: src/App/Page.php:256 msgid "Server responded with {{statusCode}} code." msgstr "" -#: src/App/Page.php:271 +#: src/App/Page.php:257 msgid "Cancel upload" msgstr "" -#: src/App/Page.php:272 +#: src/App/Page.php:258 msgid "Upload canceled." msgstr "" -#: src/App/Page.php:273 +#: src/App/Page.php:259 msgid "Are you sure you want to cancel this upload?" msgstr "" -#: src/App/Page.php:274 +#: src/App/Page.php:260 msgid "Remove file" msgstr "" -#: src/App/Page.php:275 +#: src/App/Page.php:261 msgid "You can't upload any more files." msgstr "" -#: src/App/Page.php:353 +#: src/App/Page.php:339 msgid "toggle mobile" msgstr "" -#: src/App/Router.php:309 +#: src/App/Router.php:295 #, php-format msgid "Method not allowed for this module. Allowed method(s): %s" msgstr "" -#: src/App/Router.php:311 src/Module/HTTPException/PageNotFound.php:49 +#: src/App/Router.php:297 src/Module/HTTPException/PageNotFound.php:35 +#: src/Module/Stats.php:49 msgid "Page not found." msgstr "Síða fannst ekki." -#: src/App/Router.php:323 +#: src/App/Router.php:309 msgid "You must be logged in to use addons. " msgstr "Þú verður að vera skráður inn til að geta notað viðbætur. " -#: src/BaseModule.php:407 +#: src/BaseModule.php:393 msgid "" "The form security token was not correct. This probably happened because the " "form has been opened for too long (>3 hours) before submitting it." msgstr "" -#: src/BaseModule.php:434 +#: src/BaseModule.php:420 msgid "All contacts" msgstr "" -#: src/BaseModule.php:439 src/Content/Conversation/Factory/Channel.php:46 -#: src/Content/Widget.php:240 src/Core/ACL.php:195 src/Module/Contact.php:414 -#: src/Module/Privacy/PermissionTooltip.php:164 -#: src/Module/Privacy/PermissionTooltip.php:186 -#: src/Module/Settings/Channels.php:160 +#: src/BaseModule.php:425 src/Content/Conversation/Factory/Channel.php:32 +#: src/Content/Widget.php:218 src/Core/ACL.php:181 src/Module/Contact.php:395 +#: src/Module/Privacy/PermissionTooltip.php:150 +#: src/Module/Privacy/PermissionTooltip.php:172 +#: src/Module/Settings/Channels.php:146 msgid "Followers" msgstr "" -#: src/BaseModule.php:444 src/Content/Widget.php:241 -#: src/Module/Contact.php:417 src/Module/Settings/Channels.php:159 +#: src/BaseModule.php:430 src/Content/Widget.php:219 +#: src/Module/Contact.php:398 src/Module/Settings/Channels.php:145 msgid "Following" msgstr "" -#: src/BaseModule.php:449 src/Content/Widget.php:242 -#: src/Module/Contact.php:420 +#: src/BaseModule.php:435 src/Content/Widget.php:220 +#: src/Module/Contact.php:401 msgid "Mutual friends" msgstr "" -#: src/BaseModule.php:457 +#: src/BaseModule.php:443 msgid "Common" msgstr "" -#: src/Console/Addon.php:175 src/Console/Addon.php:199 +#: src/Console/Addon.php:161 src/Console/Addon.php:185 msgid "Addon not found" msgstr "" -#: src/Console/Addon.php:179 +#: src/Console/Addon.php:165 msgid "Addon already enabled" msgstr "" -#: src/Console/Addon.php:203 +#: src/Console/Addon.php:189 msgid "Addon already disabled" msgstr "" -#: src/Console/ArchiveContact.php:106 +#: src/Console/ArchiveContact.php:92 #, php-format msgid "Could not find any unarchived contact entry for this URL (%s)" msgstr "" -#: src/Console/ArchiveContact.php:109 +#: src/Console/ArchiveContact.php:95 msgid "The contact entries have been archived" msgstr "" -#: src/Console/GlobalCommunityBlock.php:96 -#: src/Module/Moderation/Blocklist/Contact.php:65 +#: src/Console/ClearAvatarCache.php:73 +msgid "" +"The avatar cache needs to be disabled in local.config.php to use this " +"command." +msgstr "" + +#: src/Console/GlobalCommunityBlock.php:82 +#: src/Module/Moderation/Blocklist/Contact.php:51 #, php-format msgid "Could not find any contact entry for this URL (%s)" msgstr "" -#: src/Console/GlobalCommunityBlock.php:101 -#: src/Module/Moderation/Blocklist/Contact.php:82 +#: src/Console/GlobalCommunityBlock.php:87 +#: src/Module/Moderation/Blocklist/Contact.php:68 msgid "The contact has been blocked from the node" msgstr "" -#: src/Console/MergeContacts.php:75 +#: src/Console/MergeContacts.php:61 #, php-format msgid "%d %s, %d duplicates." msgstr "" -#: src/Console/MergeContacts.php:78 +#: src/Console/MergeContacts.php:64 #, php-format msgid "uri-id is empty for contact %s." msgstr "" -#: src/Console/MergeContacts.php:91 +#: src/Console/MergeContacts.php:77 #, php-format msgid "No valid first contact found for uri-id %d." msgstr "" -#: src/Console/MergeContacts.php:102 +#: src/Console/MergeContacts.php:88 #, php-format msgid "Wrong duplicate found for uri-id %d in %d (url: %s != %s)." msgstr "" -#: src/Console/MergeContacts.php:106 +#: src/Console/MergeContacts.php:92 #, php-format msgid "Wrong duplicate found for uri-id %d in %d (nurl: %s != %s)." msgstr "" -#: src/Console/MergeContacts.php:142 +#: src/Console/MergeContacts.php:128 #, php-format msgid "Deletion of id %d failed" msgstr "" -#: src/Console/MergeContacts.php:144 +#: src/Console/MergeContacts.php:130 #, php-format msgid "Deletion of id %d was successful" msgstr "" -#: src/Console/MergeContacts.php:150 +#: src/Console/MergeContacts.php:136 #, php-format msgid "Updating \"%s\" in \"%s\" from %d to %d" msgstr "" -#: src/Console/MergeContacts.php:152 +#: src/Console/MergeContacts.php:138 msgid " - found" msgstr "" -#: src/Console/MergeContacts.php:159 +#: src/Console/MergeContacts.php:145 msgid " - failed" msgstr "" -#: src/Console/MergeContacts.php:161 +#: src/Console/MergeContacts.php:147 msgid " - success" msgstr "" -#: src/Console/MergeContacts.php:165 +#: src/Console/MergeContacts.php:151 msgid " - deleted" msgstr "" -#: src/Console/MergeContacts.php:168 +#: src/Console/MergeContacts.php:154 msgid " - done" msgstr "" -#: src/Console/MoveToAvatarCache.php:91 +#: src/Console/MoveToAvatarCache.php:77 msgid "The avatar cache needs to be enabled to use this command." msgstr "" -#: src/Console/MoveToAvatarCache.php:109 +#: src/Console/MoveToAvatarCache.php:95 #, php-format msgid "no resource in photo %s" msgstr "" -#: src/Console/MoveToAvatarCache.php:137 +#: src/Console/MoveToAvatarCache.php:123 #, php-format msgid "no photo with id %s" msgstr "" -#: src/Console/MoveToAvatarCache.php:146 +#: src/Console/MoveToAvatarCache.php:132 #, php-format msgid "no image data for photo with id %s" msgstr "" -#: src/Console/MoveToAvatarCache.php:155 +#: src/Console/MoveToAvatarCache.php:141 #, php-format msgid "invalid image for id %s" msgstr "" -#: src/Console/MoveToAvatarCache.php:168 +#: src/Console/MoveToAvatarCache.php:154 #, php-format msgid "Quit on invalid photo %s" msgstr "" -#: src/Console/PostUpdate.php:87 +#: src/Console/PostUpdate.php:73 #, php-format msgid "Post update version number has been set to %s." msgstr "" -#: src/Console/PostUpdate.php:95 +#: src/Console/PostUpdate.php:81 msgid "Check for pending update actions." msgstr "" -#: src/Console/PostUpdate.php:97 +#: src/Console/PostUpdate.php:83 msgid "Done." msgstr "" -#: src/Console/PostUpdate.php:99 +#: src/Console/PostUpdate.php:85 msgid "Execute pending post updates." msgstr "" -#: src/Console/PostUpdate.php:105 +#: src/Console/PostUpdate.php:91 msgid "All pending post updates are done." msgstr "" -#: src/Console/User.php:158 src/Console/User.php:246 +#: src/Console/User.php:144 src/Console/User.php:232 msgid "Enter user nickname: " msgstr "" -#: src/Console/User.php:182 src/Model/User.php:824 -#: src/Module/Api/Twitter/ContactEndpoint.php:74 -#: src/Module/Moderation/Users/Active.php:71 -#: src/Module/Moderation/Users/Blocked.php:71 -#: src/Module/Moderation/Users/Index.php:78 -#: src/Module/Moderation/Users/Pending.php:67 +#: src/Console/User.php:168 src/Model/User.php:831 +#: src/Module/Api/Twitter/ContactEndpoint.php:60 +#: src/Module/Moderation/Users/Active.php:57 +#: src/Module/Moderation/Users/Blocked.php:57 +#: src/Module/Moderation/Users/Index.php:64 +#: src/Module/Moderation/Users/Pending.php:53 msgid "User not found" msgstr "Notandi fannst ekki" -#: src/Console/User.php:202 +#: src/Console/User.php:188 msgid "Enter new password: " msgstr "Settu inn nýtt lykilorð: " -#: src/Console/User.php:210 src/Module/Security/PasswordTooLong.php:69 -#: src/Module/Settings/Account.php:75 +#: src/Console/User.php:196 src/Module/Security/PasswordTooLong.php:55 +#: src/Module/Settings/Account.php:61 msgid "Password update failed. Please try again." msgstr "Uppfærsla á aðgangsorði tókst ekki. Reyndu aftur." -#: src/Console/User.php:213 src/Module/Security/PasswordTooLong.php:72 -#: src/Module/Settings/Account.php:78 +#: src/Console/User.php:199 src/Module/Security/PasswordTooLong.php:58 +#: src/Module/Settings/Account.php:64 msgid "Password changed." msgstr "Aðgangsorði breytt." -#: src/Console/User.php:238 +#: src/Console/User.php:224 msgid "Enter user name: " msgstr "" -#: src/Console/User.php:254 +#: src/Console/User.php:240 msgid "Enter user email address: " msgstr "" -#: src/Console/User.php:262 +#: src/Console/User.php:248 msgid "Enter a language (optional): " msgstr "" -#: src/Console/User.php:267 +#: src/Console/User.php:253 msgid "Enter URL of an image to use as avatar (optional): " msgstr "" -#: src/Console/User.php:292 +#: src/Console/User.php:278 msgid "User is not pending." msgstr "" -#: src/Console/User.php:324 +#: src/Console/User.php:310 msgid "User has already been marked for deletion." msgstr "" -#: src/Console/User.php:329 +#: src/Console/User.php:315 #, php-format msgid "Type \"yes\" to delete %s" msgstr "" -#: src/Console/User.php:331 +#: src/Console/User.php:317 msgid "Deletion aborted." msgstr "" -#: src/Console/User.php:456 +#: src/Console/User.php:442 msgid "Enter category: " msgstr "" -#: src/Console/User.php:466 +#: src/Console/User.php:452 msgid "Enter key: " msgstr "" -#: src/Console/User.php:500 +#: src/Console/User.php:486 msgid "Enter value: " msgstr "" -#: src/Content/BoundariesPager.php:116 src/Content/Pager.php:171 +#: src/Content/BoundariesPager.php:102 src/Content/Pager.php:157 msgid "newer" msgstr "nýrri" -#: src/Content/BoundariesPager.php:124 src/Content/Pager.php:176 +#: src/Content/BoundariesPager.php:110 src/Content/Pager.php:162 msgid "older" msgstr "eldri" -#: src/Content/ContactSelector.php:51 +#: src/Content/ContactSelector.php:37 msgid "Frequently" msgstr "Oft" -#: src/Content/ContactSelector.php:52 +#: src/Content/ContactSelector.php:38 msgid "Hourly" msgstr "Á klukkustundar fresti" -#: src/Content/ContactSelector.php:53 +#: src/Content/ContactSelector.php:39 msgid "Twice daily" msgstr "Tvisvar á dag" -#: src/Content/ContactSelector.php:54 +#: src/Content/ContactSelector.php:40 msgid "Daily" msgstr "Daglega" -#: src/Content/ContactSelector.php:55 +#: src/Content/ContactSelector.php:41 msgid "Weekly" msgstr "Vikulega" -#: src/Content/ContactSelector.php:56 +#: src/Content/ContactSelector.php:42 msgid "Monthly" msgstr "Mánaðarlega" -#: src/Content/ContactSelector.php:126 +#: src/Content/ContactSelector.php:112 msgid "DFRN" msgstr "" -#: src/Content/ContactSelector.php:127 +#: src/Content/ContactSelector.php:113 msgid "OStatus" msgstr "OStatus" -#: src/Content/ContactSelector.php:128 +#: src/Content/ContactSelector.php:114 msgid "RSS/Atom" msgstr "RSS / Atom" -#: src/Content/ContactSelector.php:129 -#: src/Module/Moderation/Users/Active.php:126 -#: src/Module/Moderation/Users/Blocked.php:126 -#: src/Module/Moderation/Users/Create.php:72 -#: src/Module/Moderation/Users/Deleted.php:83 -#: src/Module/Moderation/Users/Index.php:140 -#: src/Module/Moderation/Users/Index.php:160 -#: src/Module/Moderation/Users/Pending.php:99 +#: src/Content/ContactSelector.php:115 +#: src/Module/Moderation/Users/Active.php:112 +#: src/Module/Moderation/Users/Blocked.php:112 +#: src/Module/Moderation/Users/Create.php:58 +#: src/Module/Moderation/Users/Deleted.php:69 +#: src/Module/Moderation/Users/Index.php:126 +#: src/Module/Moderation/Users/Index.php:146 +#: src/Module/Moderation/Users/Pending.php:85 msgid "Email" msgstr "Tölvupóstur" -#: src/Content/ContactSelector.php:130 src/Module/Debug/Babel.php:309 +#: src/Content/ContactSelector.php:116 src/Module/Debug/Babel.php:301 msgid "Diaspora" msgstr "Diaspora" -#: src/Content/ContactSelector.php:131 +#: src/Content/ContactSelector.php:117 msgid "Zot!" msgstr "Zot!" -#: src/Content/ContactSelector.php:132 +#: src/Content/ContactSelector.php:118 msgid "LinkedIn" msgstr "LinkedIn" -#: src/Content/ContactSelector.php:133 +#: src/Content/ContactSelector.php:119 msgid "XMPP/IM" msgstr "XMPP/IM" -#: src/Content/ContactSelector.php:134 +#: src/Content/ContactSelector.php:120 msgid "MySpace" msgstr "MySpace" -#: src/Content/ContactSelector.php:135 +#: src/Content/ContactSelector.php:121 msgid "Google+" msgstr "Google+" -#: src/Content/ContactSelector.php:136 +#: src/Content/ContactSelector.php:122 msgid "pump.io" msgstr "pump.io" -#: src/Content/ContactSelector.php:137 +#: src/Content/ContactSelector.php:123 msgid "Twitter" msgstr "Twitter" -#: src/Content/ContactSelector.php:138 +#: src/Content/ContactSelector.php:124 msgid "Discourse" msgstr "" -#: src/Content/ContactSelector.php:139 +#: src/Content/ContactSelector.php:125 msgid "Diaspora Connector" msgstr "Diaspora tenging" -#: src/Content/ContactSelector.php:140 +#: src/Content/ContactSelector.php:126 msgid "GNU Social Connector" msgstr "GNU Social tenging" -#: src/Content/ContactSelector.php:141 +#: src/Content/ContactSelector.php:127 msgid "ActivityPub" msgstr "" -#: src/Content/ContactSelector.php:142 +#: src/Content/ContactSelector.php:128 msgid "pnut" msgstr "pnut" -#: src/Content/ContactSelector.php:143 +#: src/Content/ContactSelector.php:129 msgid "Tumblr" msgstr "" -#: src/Content/ContactSelector.php:144 +#: src/Content/ContactSelector.php:130 msgid "Bluesky" msgstr "" -#: src/Content/ContactSelector.php:180 +#: src/Content/ContactSelector.php:166 #, php-format msgid "%s (via %s)" msgstr "" -#: src/Content/Conversation.php:226 +#: src/Content/Conversation.php:212 msgid "and" msgstr "og" -#: src/Content/Conversation.php:229 +#: src/Content/Conversation.php:215 #, php-format msgid "and %d other people" msgstr "og %d öðrum" -#: src/Content/Conversation.php:235 +#: src/Content/Conversation.php:221 #, php-format msgid "%2$s likes this." msgid_plural "%2$s like this." msgstr[0] "" msgstr[1] "" -#: src/Content/Conversation.php:237 +#: src/Content/Conversation.php:223 #, php-format msgid "%2$s doesn't like this." msgid_plural "%2$s don't like this." msgstr[0] "" msgstr[1] "" -#: src/Content/Conversation.php:239 +#: src/Content/Conversation.php:225 #, php-format msgid "%2$s attends." msgid_plural "%2$s attend." msgstr[0] "" msgstr[1] "" -#: src/Content/Conversation.php:241 +#: src/Content/Conversation.php:227 #, php-format msgid "%2$s doesn't attend." msgid_plural "%2$s don't attend." msgstr[0] "" msgstr[1] "" -#: src/Content/Conversation.php:243 +#: src/Content/Conversation.php:229 #, php-format msgid "%2$s attends maybe." msgid_plural "%2$s attend maybe." msgstr[0] "" msgstr[1] "" -#: src/Content/Conversation.php:245 +#: src/Content/Conversation.php:231 #, php-format msgid "%2$s reshared this." msgid_plural "%2$s reshared this." msgstr[0] "" msgstr[1] "" -#: src/Content/Conversation.php:276 +#: src/Content/Conversation.php:262 #, php-format msgid " likes this" msgid_plural " like this" msgstr[0] "" msgstr[1] "" -#: src/Content/Conversation.php:279 +#: src/Content/Conversation.php:265 #, php-format msgid " doesn't like this" msgid_plural " don't like this" msgstr[0] "" msgstr[1] "" -#: src/Content/Conversation.php:282 +#: src/Content/Conversation.php:268 #, php-format msgid " attends" msgid_plural " attend" msgstr[0] "" msgstr[1] "" -#: src/Content/Conversation.php:285 +#: src/Content/Conversation.php:271 #, php-format msgid " doesn't attend" msgid_plural " don't attend" msgstr[0] "" msgstr[1] "" -#: src/Content/Conversation.php:288 +#: src/Content/Conversation.php:274 #, php-format msgid " attends maybe" msgid_plural " attend maybe" msgstr[0] "" msgstr[1] "" -#: src/Content/Conversation.php:291 +#: src/Content/Conversation.php:277 #, php-format msgid " reshared this" msgid_plural " reshared this" msgstr[0] "" msgstr[1] "" -#: src/Content/Conversation.php:337 +#: src/Content/Conversation.php:323 msgid "Visible to everybody" msgstr "Sjáanlegt öllum" -#: src/Content/Conversation.php:338 src/Module/Item/Compose.php:207 -#: src/Object/Post.php:1171 +#: src/Content/Conversation.php:324 src/Module/Item/Compose.php:193 +#: src/Object/Post.php:1157 msgid "Please enter a image/video/audio/webpage URL:" msgstr "" -#: src/Content/Conversation.php:339 +#: src/Content/Conversation.php:325 msgid "Tag term:" msgstr "Merka með:" -#: src/Content/Conversation.php:340 src/Module/Filer/SaveTag.php:73 +#: src/Content/Conversation.php:326 src/Module/Filer/SaveTag.php:59 msgid "Save to Folder:" msgstr "Vista í möppu:" -#: src/Content/Conversation.php:341 +#: src/Content/Conversation.php:327 msgid "Where are you right now?" msgstr "Hvar ert þú núna?" -#: src/Content/Conversation.php:342 +#: src/Content/Conversation.php:328 msgid "Delete item(s)?" msgstr "Eyða atriði/atriðum?" -#: src/Content/Conversation.php:354 src/Module/Item/Compose.php:182 +#: src/Content/Conversation.php:340 src/Module/Item/Compose.php:168 msgid "Created at" msgstr "" -#: src/Content/Conversation.php:364 +#: src/Content/Conversation.php:350 msgid "New Post" msgstr "Ný færsla" -#: src/Content/Conversation.php:367 +#: src/Content/Conversation.php:353 msgid "Share" msgstr "Deila" -#: src/Content/Conversation.php:370 src/Module/Post/Edit.php:132 +#: src/Content/Conversation.php:356 src/Module/Post/Edit.php:118 msgid "upload photo" msgstr "Hlaða upp mynd" -#: src/Content/Conversation.php:371 src/Module/Post/Edit.php:133 +#: src/Content/Conversation.php:357 src/Module/Post/Edit.php:119 msgid "Attach file" msgstr "Bæta við skrá" -#: src/Content/Conversation.php:372 src/Module/Post/Edit.php:134 +#: src/Content/Conversation.php:358 src/Module/Post/Edit.php:120 msgid "attach file" msgstr "Hengja skrá við" -#: src/Content/Conversation.php:373 src/Module/Item/Compose.php:197 -#: src/Module/Post/Edit.php:171 src/Object/Post.php:1161 +#: src/Content/Conversation.php:359 src/Module/Item/Compose.php:183 +#: src/Module/Post/Edit.php:157 src/Object/Post.php:1147 msgid "Bold" msgstr "Feitletrað" -#: src/Content/Conversation.php:374 src/Module/Item/Compose.php:198 -#: src/Module/Post/Edit.php:172 src/Object/Post.php:1162 +#: src/Content/Conversation.php:360 src/Module/Item/Compose.php:184 +#: src/Module/Post/Edit.php:158 src/Object/Post.php:1148 msgid "Italic" msgstr "Skáletrað" -#: src/Content/Conversation.php:375 src/Module/Item/Compose.php:199 -#: src/Module/Post/Edit.php:173 src/Object/Post.php:1163 +#: src/Content/Conversation.php:361 src/Module/Item/Compose.php:185 +#: src/Module/Post/Edit.php:159 src/Object/Post.php:1149 msgid "Underline" msgstr "Undirstrikað" -#: src/Content/Conversation.php:376 src/Module/Item/Compose.php:200 -#: src/Module/Post/Edit.php:174 src/Object/Post.php:1165 +#: src/Content/Conversation.php:362 src/Module/Item/Compose.php:186 +#: src/Module/Post/Edit.php:160 src/Object/Post.php:1151 msgid "Quote" msgstr "Gæsalappir" -#: src/Content/Conversation.php:377 src/Module/Item/Compose.php:201 -#: src/Module/Post/Edit.php:175 src/Object/Post.php:1166 +#: src/Content/Conversation.php:363 src/Module/Item/Compose.php:187 +#: src/Module/Post/Edit.php:161 src/Object/Post.php:1152 msgid "Add emojis" msgstr "" -#: src/Content/Conversation.php:378 src/Module/Item/Compose.php:202 -#: src/Object/Post.php:1164 +#: src/Content/Conversation.php:364 src/Module/Item/Compose.php:188 +#: src/Object/Post.php:1150 msgid "Content Warning" msgstr "" -#: src/Content/Conversation.php:379 src/Module/Item/Compose.php:203 -#: src/Module/Post/Edit.php:176 src/Object/Post.php:1167 +#: src/Content/Conversation.php:365 src/Module/Item/Compose.php:189 +#: src/Module/Post/Edit.php:162 src/Object/Post.php:1153 msgid "Code" msgstr "Kóði" -#: src/Content/Conversation.php:380 src/Module/Item/Compose.php:204 -#: src/Object/Post.php:1168 +#: src/Content/Conversation.php:366 src/Module/Item/Compose.php:190 +#: src/Object/Post.php:1154 msgid "Image" msgstr "Mynd" -#: src/Content/Conversation.php:381 src/Module/Item/Compose.php:205 -#: src/Module/Post/Edit.php:177 src/Object/Post.php:1169 +#: src/Content/Conversation.php:367 src/Module/Item/Compose.php:191 +#: src/Module/Post/Edit.php:163 src/Object/Post.php:1155 msgid "Link" msgstr "Tengill" -#: src/Content/Conversation.php:382 src/Module/Item/Compose.php:206 -#: src/Module/Post/Edit.php:178 src/Object/Post.php:1170 +#: src/Content/Conversation.php:368 src/Module/Item/Compose.php:192 +#: src/Module/Post/Edit.php:164 src/Object/Post.php:1156 msgid "Link or Media" msgstr "" -#: src/Content/Conversation.php:383 +#: src/Content/Conversation.php:369 msgid "Video" msgstr "" -#: src/Content/Conversation.php:384 src/Module/Item/Compose.php:209 -#: src/Module/Post/Edit.php:141 +#: src/Content/Conversation.php:370 src/Module/Item/Compose.php:195 +#: src/Module/Post/Edit.php:127 msgid "Set your location" msgstr "Veldu staðsetningu þína" -#: src/Content/Conversation.php:385 src/Module/Post/Edit.php:142 +#: src/Content/Conversation.php:371 src/Module/Post/Edit.php:128 msgid "set location" msgstr "stilla staðsetningu" -#: src/Content/Conversation.php:386 src/Module/Post/Edit.php:143 +#: src/Content/Conversation.php:372 src/Module/Post/Edit.php:129 msgid "Clear browser location" msgstr "Hreinsa staðsetningu í vafra" -#: src/Content/Conversation.php:387 src/Module/Post/Edit.php:144 +#: src/Content/Conversation.php:373 src/Module/Post/Edit.php:130 msgid "clear location" msgstr "hreinsa staðsetningu" -#: src/Content/Conversation.php:389 src/Module/Item/Compose.php:214 -#: src/Module/Post/Edit.php:157 +#: src/Content/Conversation.php:375 src/Module/Item/Compose.php:200 +#: src/Module/Post/Edit.php:143 msgid "Set title" msgstr "Setja titil" -#: src/Content/Conversation.php:391 src/Module/Item/Compose.php:215 -#: src/Module/Post/Edit.php:159 +#: src/Content/Conversation.php:377 src/Module/Item/Compose.php:201 +#: src/Module/Post/Edit.php:145 msgid "Categories (comma-separated list)" msgstr "Flokkar (listi aðskilinn með kommum)" -#: src/Content/Conversation.php:396 src/Module/Item/Compose.php:231 +#: src/Content/Conversation.php:382 src/Module/Item/Compose.php:217 msgid "Scheduled at" msgstr "" -#: src/Content/Conversation.php:401 src/Module/Post/Edit.php:146 +#: src/Content/Conversation.php:387 src/Module/Post/Edit.php:132 msgid "Permission settings" msgstr "Stillingar aðgangsheimilda" -#: src/Content/Conversation.php:410 src/Module/Post/Edit.php:155 +#: src/Content/Conversation.php:396 src/Module/Post/Edit.php:141 msgid "Public post" msgstr "Opinber færsla" -#: src/Content/Conversation.php:424 src/Content/Widget/VCard.php:131 -#: src/Model/Profile.php:483 src/Module/Admin/Logs/View.php:94 -#: src/Module/Post/Edit.php:181 +#: src/Content/Conversation.php:410 src/Content/Widget/VCard.php:117 +#: src/Model/Profile.php:462 src/Module/Admin/Logs/View.php:80 +#: src/Module/Post/Edit.php:167 msgid "Message" msgstr "Skilaboð" -#: src/Content/Conversation.php:425 src/Module/Post/Edit.php:182 -#: src/Module/Settings/TwoFactor/Trusted.php:143 +#: src/Content/Conversation.php:411 src/Module/Post/Edit.php:168 +#: src/Module/Settings/TwoFactor/Trusted.php:129 msgid "Browser" msgstr "Vafri" -#: src/Content/Conversation.php:427 src/Module/Post/Edit.php:185 +#: src/Content/Conversation.php:413 src/Module/Post/Edit.php:171 msgid "Open Compose page" msgstr "" -#: src/Content/Conversation.php:594 +#: src/Content/Conversation.php:580 msgid "remove" msgstr "fjarlægja" -#: src/Content/Conversation.php:598 +#: src/Content/Conversation.php:584 msgid "Delete Selected Items" msgstr "Eyða völdum færslum" -#: src/Content/Conversation.php:726 src/Content/Conversation.php:729 -#: src/Content/Conversation.php:732 src/Content/Conversation.php:735 -#: src/Content/Conversation.php:738 +#: src/Content/Conversation.php:712 src/Content/Conversation.php:715 +#: src/Content/Conversation.php:718 src/Content/Conversation.php:721 +#: src/Content/Conversation.php:724 #, php-format msgid "You had been addressed (%s)." msgstr "" -#: src/Content/Conversation.php:741 +#: src/Content/Conversation.php:727 #, php-format msgid "You are following %s." msgstr "" -#: src/Content/Conversation.php:746 +#: src/Content/Conversation.php:732 #, php-format msgid "You subscribed to %s." msgstr "" -#: src/Content/Conversation.php:748 +#: src/Content/Conversation.php:734 msgid "You subscribed to one or more tags in this post." msgstr "" -#: src/Content/Conversation.php:768 +#: src/Content/Conversation.php:754 #, php-format msgid "%s reshared this." msgstr "" -#: src/Content/Conversation.php:770 +#: src/Content/Conversation.php:756 msgid "Reshared" msgstr "" -#: src/Content/Conversation.php:770 +#: src/Content/Conversation.php:756 #, php-format msgid "Reshared by %s <%s>" msgstr "" -#: src/Content/Conversation.php:773 +#: src/Content/Conversation.php:759 #, php-format msgid "%s is participating in this thread." msgstr "" -#: src/Content/Conversation.php:776 +#: src/Content/Conversation.php:762 msgid "Stored for general reasons" msgstr "" -#: src/Content/Conversation.php:779 +#: src/Content/Conversation.php:765 msgid "Global post" msgstr "" -#: src/Content/Conversation.php:782 +#: src/Content/Conversation.php:768 msgid "Sent via an relay server" msgstr "" -#: src/Content/Conversation.php:782 +#: src/Content/Conversation.php:768 #, php-format msgid "Sent via the relay server %s <%s>" msgstr "" -#: src/Content/Conversation.php:785 +#: src/Content/Conversation.php:771 msgid "Fetched" msgstr "" -#: src/Content/Conversation.php:785 +#: src/Content/Conversation.php:771 #, php-format msgid "Fetched because of %s <%s>" msgstr "" -#: src/Content/Conversation.php:788 +#: src/Content/Conversation.php:774 msgid "Stored because of a child post to complete this thread." msgstr "" -#: src/Content/Conversation.php:791 +#: src/Content/Conversation.php:777 msgid "Local delivery" msgstr "" -#: src/Content/Conversation.php:794 +#: src/Content/Conversation.php:780 msgid "Stored because of your activity (like, comment, star, ...)" msgstr "" -#: src/Content/Conversation.php:797 +#: src/Content/Conversation.php:783 msgid "Distributed" msgstr "" -#: src/Content/Conversation.php:800 +#: src/Content/Conversation.php:786 msgid "Pushed to us" msgstr "" -#: src/Content/Conversation.php:1518 src/Object/Post.php:261 +#: src/Content/Conversation.php:1504 src/Object/Post.php:247 msgid "Pinned item" msgstr "" -#: src/Content/Conversation.php:1535 src/Object/Post.php:555 -#: src/Object/Post.php:556 +#: src/Content/Conversation.php:1521 src/Object/Post.php:541 +#: src/Object/Post.php:542 #, php-format msgid "View %s's profile @ %s" msgstr "Birta forsíðu %s hjá %s" -#: src/Content/Conversation.php:1549 src/Object/Post.php:543 +#: src/Content/Conversation.php:1535 src/Object/Post.php:529 msgid "Categories:" msgstr "Flokkar:" -#: src/Content/Conversation.php:1550 src/Object/Post.php:544 +#: src/Content/Conversation.php:1536 src/Object/Post.php:530 msgid "Filed under:" msgstr "Skráð undir:" -#: src/Content/Conversation.php:1558 src/Object/Post.php:570 +#: src/Content/Conversation.php:1544 src/Object/Post.php:556 #, php-format msgid "%s from %s" msgstr "%s til %s" -#: src/Content/Conversation.php:1574 +#: src/Content/Conversation.php:1560 msgid "View in context" msgstr "Birta í samhengi" -#: src/Content/Conversation/Factory/Channel.php:42 +#: src/Content/Conversation/Factory/Channel.php:28 msgid "For you" msgstr "" -#: src/Content/Conversation/Factory/Channel.php:42 +#: src/Content/Conversation/Factory/Channel.php:28 msgid "Posts from contacts you interact with and who interact with you" msgstr "" -#: src/Content/Conversation/Factory/Channel.php:43 +#: src/Content/Conversation/Factory/Channel.php:29 msgid "Discover" msgstr "" -#: src/Content/Conversation/Factory/Channel.php:43 +#: src/Content/Conversation/Factory/Channel.php:29 msgid "Posts from accounts that you don't follow, but that you might like." msgstr "" -#: src/Content/Conversation/Factory/Channel.php:44 +#: src/Content/Conversation/Factory/Channel.php:30 msgid "What's Hot" msgstr "" -#: src/Content/Conversation/Factory/Channel.php:44 +#: src/Content/Conversation/Factory/Channel.php:30 msgid "Posts with a lot of interactions" msgstr "" -#: src/Content/Conversation/Factory/Channel.php:45 +#: src/Content/Conversation/Factory/Channel.php:31 #, php-format msgid "Posts in %s" msgstr "" -#: src/Content/Conversation/Factory/Channel.php:46 +#: src/Content/Conversation/Factory/Channel.php:32 msgid "Posts from your followers that you don't follow" msgstr "" -#: src/Content/Conversation/Factory/Channel.php:47 +#: src/Content/Conversation/Factory/Channel.php:33 msgid "Sharers of sharers" msgstr "" -#: src/Content/Conversation/Factory/Channel.php:47 +#: src/Content/Conversation/Factory/Channel.php:33 msgid "Posts from accounts that are followed by accounts that you follow" msgstr "" -#: src/Content/Conversation/Factory/Channel.php:48 +#: src/Content/Conversation/Factory/Channel.php:34 msgid "Quiet sharers" msgstr "" -#: src/Content/Conversation/Factory/Channel.php:48 +#: src/Content/Conversation/Factory/Channel.php:34 msgid "Posts from accounts that you follow but who don't post very often" msgstr "" -#: src/Content/Conversation/Factory/Channel.php:49 -#: src/Module/Settings/Channels.php:199 src/Module/Settings/Channels.php:220 +#: src/Content/Conversation/Factory/Channel.php:35 +#: src/Module/Settings/Channels.php:185 src/Module/Settings/Channels.php:206 msgid "Images" msgstr "" -#: src/Content/Conversation/Factory/Channel.php:49 +#: src/Content/Conversation/Factory/Channel.php:35 msgid "Posts with images" msgstr "" -#: src/Content/Conversation/Factory/Channel.php:50 -#: src/Module/Settings/Channels.php:201 src/Module/Settings/Channels.php:222 +#: src/Content/Conversation/Factory/Channel.php:36 +#: src/Module/Settings/Channels.php:187 src/Module/Settings/Channels.php:208 msgid "Audio" msgstr "" -#: src/Content/Conversation/Factory/Channel.php:50 +#: src/Content/Conversation/Factory/Channel.php:36 msgid "Posts with audio" msgstr "" -#: src/Content/Conversation/Factory/Channel.php:51 -#: src/Module/Settings/Channels.php:200 src/Module/Settings/Channels.php:221 +#: src/Content/Conversation/Factory/Channel.php:37 +#: src/Module/Settings/Channels.php:186 src/Module/Settings/Channels.php:207 msgid "Videos" msgstr "" -#: src/Content/Conversation/Factory/Channel.php:51 +#: src/Content/Conversation/Factory/Channel.php:37 msgid "Posts with videos" msgstr "" -#: src/Content/Conversation/Factory/Community.php:43 +#: src/Content/Conversation/Factory/Community.php:29 msgid "Local Community" msgstr "" -#: src/Content/Conversation/Factory/Community.php:43 +#: src/Content/Conversation/Factory/Community.php:29 msgid "Posts from local users on this server" msgstr "" -#: src/Content/Conversation/Factory/Community.php:47 -#: src/Module/Settings/Channels.php:150 src/Module/Settings/Channels.php:155 +#: src/Content/Conversation/Factory/Community.php:33 +#: src/Module/Settings/Channels.php:136 src/Module/Settings/Channels.php:141 msgid "Global Community" msgstr "" -#: src/Content/Conversation/Factory/Community.php:47 +#: src/Content/Conversation/Factory/Community.php:33 msgid "Posts from users of the whole federated network" msgstr "" -#: src/Content/Conversation/Factory/Network.php:38 -#: src/Module/Settings/Channels.php:156 +#: src/Content/Conversation/Factory/Network.php:24 +#: src/Module/Settings/Channels.php:142 msgid "Latest Activity" msgstr "" -#: src/Content/Conversation/Factory/Network.php:38 +#: src/Content/Conversation/Factory/Network.php:24 msgid "Sort by latest activity" msgstr "" -#: src/Content/Conversation/Factory/Network.php:39 -#: src/Module/Settings/Channels.php:157 +#: src/Content/Conversation/Factory/Network.php:25 +#: src/Module/Settings/Channels.php:143 msgid "Latest Posts" msgstr "" -#: src/Content/Conversation/Factory/Network.php:39 +#: src/Content/Conversation/Factory/Network.php:25 msgid "Sort by post received date" msgstr "" -#: src/Content/Conversation/Factory/Network.php:40 -#: src/Module/Settings/Channels.php:158 +#: src/Content/Conversation/Factory/Network.php:26 +#: src/Module/Settings/Channels.php:144 msgid "Latest Creation" msgstr "" -#: src/Content/Conversation/Factory/Network.php:40 +#: src/Content/Conversation/Factory/Network.php:26 msgid "Sort by post creation date" msgstr "" -#: src/Content/Conversation/Factory/Network.php:41 -#: src/Module/Settings/Profile/Index.php:260 +#: src/Content/Conversation/Factory/Network.php:27 +#: src/Module/Settings/Profile/Index.php:251 msgid "Personal" msgstr "Einka" -#: src/Content/Conversation/Factory/Network.php:41 +#: src/Content/Conversation/Factory/Network.php:27 msgid "Posts that mention or involve you" msgstr "Færslur sem tengjast þér" -#: src/Content/Conversation/Factory/Network.php:42 src/Object/Post.php:411 +#: src/Content/Conversation/Factory/Network.php:28 src/Object/Post.php:397 msgid "Starred" msgstr "Stjörnumerkt" -#: src/Content/Conversation/Factory/Network.php:42 +#: src/Content/Conversation/Factory/Network.php:28 msgid "Favourite Posts" msgstr "Uppáhalds færslur" -#: src/Content/Feature.php:107 +#: src/Content/Feature.php:93 msgid "General Features" msgstr "Almennir eiginleikar" -#: src/Content/Feature.php:109 +#: src/Content/Feature.php:95 msgid "Photo Location" msgstr "Staðsetning ljósmyndar" -#: src/Content/Feature.php:109 +#: src/Content/Feature.php:95 msgid "" "Photo metadata is normally stripped. This extracts the location (if present)" " prior to stripping metadata and links it to a map." msgstr "" -#: src/Content/Feature.php:110 +#: src/Content/Feature.php:96 msgid "Display the community in the navigation" msgstr "" -#: src/Content/Feature.php:110 +#: src/Content/Feature.php:96 msgid "" "If enabled, the community can be accessed via the navigation menu. " "Independent from this setting, the community timelines can always be " "accessed via the channels." msgstr "" -#: src/Content/Feature.php:115 +#: src/Content/Feature.php:101 msgid "Post Composition Features" msgstr "" -#: src/Content/Feature.php:116 +#: src/Content/Feature.php:102 msgid "Explicit Mentions" msgstr "" -#: src/Content/Feature.php:116 +#: src/Content/Feature.php:102 msgid "" "Add explicit mentions to comment box for manual control over who gets " "mentioned in replies." msgstr "" -#: src/Content/Feature.php:117 +#: src/Content/Feature.php:103 msgid "Add an abstract from ActivityPub content warnings" msgstr "" -#: src/Content/Feature.php:117 +#: src/Content/Feature.php:103 msgid "" "Add an abstract when commenting on ActivityPub posts with a content warning." " Abstracts are displayed as content warning on systems like Mastodon or " "Pleroma." msgstr "" -#: src/Content/Feature.php:122 +#: src/Content/Feature.php:108 msgid "Post/Comment Tools" msgstr "" -#: src/Content/Feature.php:123 +#: src/Content/Feature.php:109 msgid "Post Categories" msgstr "" -#: src/Content/Feature.php:123 +#: src/Content/Feature.php:109 msgid "Add categories to your posts" msgstr "" -#: src/Content/Feature.php:128 +#: src/Content/Feature.php:114 msgid "Network Widgets" msgstr "" -#: src/Content/Feature.php:129 src/Content/Widget.php:216 -#: src/Model/Circle.php:601 src/Module/Contact.php:400 -#: src/Module/Welcome.php:76 +#: src/Content/Feature.php:115 src/Content/Widget.php:194 +#: src/Model/Circle.php:587 src/Module/Contact.php:381 +#: src/Module/Welcome.php:62 msgid "Circles" msgstr "" -#: src/Content/Feature.php:129 +#: src/Content/Feature.php:115 msgid "" "Display posts that have been created by accounts of the selected circle." msgstr "" -#: src/Content/Feature.php:130 src/Content/GroupManager.php:147 -#: src/Content/Nav.php:278 src/Content/Text/HTML.php:882 -#: src/Content/Widget.php:538 src/Model/User.php:1390 +#: src/Content/Feature.php:116 src/Content/GroupManager.php:133 +#: src/Content/Nav.php:264 src/Content/Text/HTML.php:868 +#: src/Content/Widget.php:516 src/Model/User.php:1390 msgid "Groups" msgstr "" -#: src/Content/Feature.php:130 +#: src/Content/Feature.php:116 msgid "Display posts that have been distributed by the selected group." msgstr "" -#: src/Content/Feature.php:131 src/Content/Widget.php:507 +#: src/Content/Feature.php:117 src/Content/Widget.php:485 msgid "Archives" msgstr "Safnskrár" -#: src/Content/Feature.php:131 +#: src/Content/Feature.php:117 msgid "Display an archive where posts can be selected by month and year." msgstr "" -#: src/Content/Feature.php:132 src/Content/Widget.php:289 +#: src/Content/Feature.php:118 src/Content/Widget.php:267 msgid "Protocols" msgstr "" -#: src/Content/Feature.php:132 +#: src/Content/Feature.php:118 msgid "Display posts with the selected protocols." msgstr "" -#: src/Content/Feature.php:133 src/Content/Widget.php:544 -#: src/Module/Settings/Account.php:442 +#: src/Content/Feature.php:119 src/Content/Widget.php:522 +#: src/Module/Settings/Account.php:433 msgid "Account Types" msgstr "Gerðir notendaaðganga" -#: src/Content/Feature.php:133 +#: src/Content/Feature.php:119 msgid "Display posts done by accounts with the selected account type." msgstr "" -#: src/Content/Feature.php:134 src/Content/Widget.php:593 -#: src/Module/Admin/Site.php:472 src/Module/BaseSettings.php:125 -#: src/Module/Settings/Channels.php:225 src/Module/Settings/Display.php:315 +#: src/Content/Feature.php:120 src/Content/Widget.php:571 +#: src/Module/Admin/Site.php:464 src/Module/BaseSettings.php:111 +#: src/Module/Settings/Channels.php:211 src/Module/Settings/Display.php:301 msgid "Channels" msgstr "" -#: src/Content/Feature.php:134 +#: src/Content/Feature.php:120 msgid "Display posts in the system channels and user defined channels." msgstr "" -#: src/Content/Feature.php:135 src/Content/Widget/SavedSearches.php:60 +#: src/Content/Feature.php:121 src/Content/Widget/SavedSearches.php:46 msgid "Saved Searches" msgstr "Vistaðar leitir" -#: src/Content/Feature.php:135 +#: src/Content/Feature.php:121 msgid "Display posts that contain subscribed hashtags." msgstr "" -#: src/Content/Feature.php:136 src/Content/Widget.php:319 +#: src/Content/Feature.php:122 src/Content/Widget.php:297 msgid "Saved Folders" msgstr "Vistaðar möppur" -#: src/Content/Feature.php:136 +#: src/Content/Feature.php:122 msgid "Display a list of folders in which posts are stored." msgstr "" -#: src/Content/Feature.php:137 src/Module/Conversation/Timeline.php:199 +#: src/Content/Feature.php:123 src/Module/Conversation/Timeline.php:186 msgid "Own Contacts" msgstr "" -#: src/Content/Feature.php:137 +#: src/Content/Feature.php:123 msgid "" "Include or exclude posts from subscribed accounts. This widget is not " "visible on all channels." msgstr "" -#: src/Content/Feature.php:138 +#: src/Content/Feature.php:124 msgid "Trending Tags" msgstr "" -#: src/Content/Feature.php:138 +#: src/Content/Feature.php:124 msgid "Display a list of the most popular tags in recent public posts." msgstr "" -#: src/Content/Feature.php:143 +#: src/Content/Feature.php:129 msgid "Advanced Profile Settings" msgstr "" -#: src/Content/Feature.php:144 +#: src/Content/Feature.php:130 msgid "Tag Cloud" msgstr "Merkjaský" -#: src/Content/Feature.php:144 +#: src/Content/Feature.php:130 msgid "Provide a personal tag cloud on your profile page" msgstr "" -#: src/Content/Feature.php:145 +#: src/Content/Feature.php:131 msgid "Display Membership Date" msgstr "" -#: src/Content/Feature.php:145 +#: src/Content/Feature.php:131 msgid "Display membership date in profile" msgstr "" -#: src/Content/Feature.php:150 +#: src/Content/Feature.php:136 msgid "Advanced Calendar Settings" msgstr "" -#: src/Content/Feature.php:151 +#: src/Content/Feature.php:137 msgid "Allow anonymous access to your calendar" msgstr "" -#: src/Content/Feature.php:151 +#: src/Content/Feature.php:137 msgid "" "Allows anonymous visitors to consult your calendar and your public events. " "Contact birthday events are private to you." msgstr "" -#: src/Content/GroupManager.php:149 +#: src/Content/GroupManager.php:135 msgid "External link to group" msgstr "" -#: src/Content/GroupManager.php:153 src/Content/Widget.php:513 +#: src/Content/GroupManager.php:139 src/Content/Widget.php:491 msgid "show less" msgstr "" -#: src/Content/GroupManager.php:154 src/Content/Widget.php:411 -#: src/Content/Widget.php:514 +#: src/Content/GroupManager.php:140 src/Content/Widget.php:389 +#: src/Content/Widget.php:492 msgid "show more" msgstr "birta meira" -#: src/Content/GroupManager.php:155 +#: src/Content/GroupManager.php:141 msgid "Create new group" msgstr "" -#: src/Content/Item.php:331 src/Model/Item.php:3256 +#: src/Content/Item.php:317 src/Model/Item.php:3272 msgid "event" msgstr "atburður" -#: src/Content/Item.php:334 src/Content/Item.php:344 +#: src/Content/Item.php:320 src/Content/Item.php:330 msgid "status" msgstr "staða" -#: src/Content/Item.php:340 src/Model/Item.php:3258 -#: src/Module/Post/Tag/Add.php:123 +#: src/Content/Item.php:326 src/Model/Item.php:3274 +#: src/Module/Post/Tag/Add.php:109 msgid "photo" msgstr "mynd" -#: src/Content/Item.php:354 src/Module/Post/Tag/Add.php:141 +#: src/Content/Item.php:340 src/Module/Post/Tag/Add.php:127 #, php-format msgid "%1$s tagged %2$s's %3$s with %4$s" msgstr "%1$s merkti %2$s's %3$s með %4$s" -#: src/Content/Item.php:428 view/theme/frio/theme.php:265 +#: src/Content/Item.php:414 view/theme/frio/theme.php:253 msgid "Follow Thread" msgstr "Fylgja þræði" -#: src/Content/Item.php:429 src/Model/Contact.php:1233 +#: src/Content/Item.php:415 src/Model/Contact.php:1249 msgid "View Status" msgstr "Skoða stöðu" -#: src/Content/Item.php:430 src/Content/Item.php:453 -#: src/Model/Contact.php:1168 src/Model/Contact.php:1224 -#: src/Model/Contact.php:1234 src/Module/Directory.php:157 -#: src/Module/Settings/Profile/Index.php:259 +#: src/Content/Item.php:416 src/Content/Item.php:439 +#: src/Model/Contact.php:1184 src/Model/Contact.php:1240 +#: src/Model/Contact.php:1250 src/Module/Directory.php:144 +#: src/Module/Settings/Profile/Index.php:250 msgid "View Profile" msgstr "Skoða forsíðu" -#: src/Content/Item.php:431 src/Model/Contact.php:1235 +#: src/Content/Item.php:417 src/Model/Contact.php:1251 msgid "View Photos" msgstr "Skoða myndir" -#: src/Content/Item.php:432 src/Model/Contact.php:1202 -#: src/Model/Profile.php:468 +#: src/Content/Item.php:418 src/Model/Contact.php:1218 +#: src/Model/Profile.php:447 msgid "Network Posts" msgstr "Færslur á neti" -#: src/Content/Item.php:433 src/Model/Contact.php:1226 -#: src/Model/Contact.php:1237 +#: src/Content/Item.php:419 src/Model/Contact.php:1242 +#: src/Model/Contact.php:1253 msgid "View Contact" msgstr "Skoða tengilið" -#: src/Content/Item.php:434 src/Model/Contact.php:1238 +#: src/Content/Item.php:420 src/Model/Contact.php:1254 msgid "Send PM" msgstr "Senda einkaboð" -#: src/Content/Item.php:435 src/Module/Contact.php:467 +#: src/Content/Item.php:421 src/Module/Contact.php:449 #: src/Module/Contact/Profile.php:518 -#: src/Module/Moderation/Blocklist/Contact.php:116 -#: src/Module/Moderation/Users/Active.php:137 -#: src/Module/Moderation/Users/Index.php:152 +#: src/Module/Moderation/Blocklist/Contact.php:102 +#: src/Module/Moderation/Users/Active.php:123 +#: src/Module/Moderation/Users/Index.php:138 msgid "Block" msgstr "Útiloka" -#: src/Content/Item.php:436 src/Module/Contact.php:468 +#: src/Content/Item.php:422 src/Module/Contact.php:450 #: src/Module/Contact/Profile.php:526 -#: src/Module/Notifications/Introductions.php:134 -#: src/Module/Notifications/Introductions.php:206 -#: src/Module/Notifications/Notification.php:89 +#: src/Module/Notifications/Introductions.php:126 +#: src/Module/Notifications/Introductions.php:198 +#: src/Module/Notifications/Notification.php:75 msgid "Ignore" msgstr "Hunsa" -#: src/Content/Item.php:437 src/Module/Contact.php:469 +#: src/Content/Item.php:423 src/Module/Contact.php:451 #: src/Module/Contact/Profile.php:534 msgid "Collapse" msgstr "" -#: src/Content/Item.php:438 src/Object/Post.php:302 +#: src/Content/Item.php:424 src/Object/Post.php:288 #, php-format msgid "Ignore %s server" msgstr "" -#: src/Content/Item.php:442 src/Module/Settings/Channels.php:202 -#: src/Module/Settings/Channels.php:223 src/Object/Post.php:516 +#: src/Content/Item.php:428 src/Module/Settings/Channels.php:188 +#: src/Module/Settings/Channels.php:209 src/Object/Post.php:502 msgid "Languages" msgstr "" -#: src/Content/Item.php:445 src/Object/Post.php:596 +#: src/Content/Item.php:431 src/Object/Post.php:582 msgid "Search Text" msgstr "" -#: src/Content/Item.php:450 src/Content/Widget.php:80 -#: src/Model/Contact.php:1227 src/Model/Contact.php:1239 -#: src/Module/Contact/Follow.php:167 view/theme/vier/theme.php:195 +#: src/Content/Item.php:436 src/Content/Widget.php:66 +#: src/Model/Contact.php:1243 src/Model/Contact.php:1255 +#: src/Module/Contact/Follow.php:148 view/theme/vier/theme.php:183 msgid "Connect/Follow" msgstr "Tengjast/fylgja" -#: src/Content/Item.php:884 +#: src/Content/Item.php:870 msgid "Unable to fetch user." msgstr "" -#: src/Content/Nav.php:121 +#: src/Content/Nav.php:107 msgid "Nothing new here" msgstr "Ekkert nýtt hér" -#: src/Content/Nav.php:125 src/Module/Special/HTTPException.php:77 +#: src/Content/Nav.php:111 src/Module/Special/HTTPException.php:63 msgid "Go back" msgstr "" -#: src/Content/Nav.php:126 +#: src/Content/Nav.php:112 msgid "Clear notifications" msgstr "Hreinsa tilkynningar" -#: src/Content/Nav.php:127 src/Content/Text/HTML.php:869 +#: src/Content/Nav.php:113 src/Content/Text/HTML.php:855 msgid "@name, !group, #tags, content" msgstr "" -#: src/Content/Nav.php:222 src/Module/Security/Login.php:157 +#: src/Content/Nav.php:208 src/Module/Security/Login.php:147 msgid "Logout" msgstr "Útskráning" -#: src/Content/Nav.php:222 +#: src/Content/Nav.php:208 msgid "End this session" msgstr "Loka þessu innliti" -#: src/Content/Nav.php:224 src/Module/Bookmarklet.php:44 -#: src/Module/Security/Login.php:158 +#: src/Content/Nav.php:210 src/Module/Bookmarklet.php:30 +#: src/Module/Security/Login.php:148 msgid "Login" msgstr "Innskráning" -#: src/Content/Nav.php:224 +#: src/Content/Nav.php:210 msgid "Sign in" msgstr "Innskrá" -#: src/Content/Nav.php:229 src/Module/BaseProfile.php:57 -#: src/Module/Contact.php:511 +#: src/Content/Nav.php:215 src/Module/BaseProfile.php:43 +#: src/Module/Contact.php:493 msgid "Conversations" msgstr "" -#: src/Content/Nav.php:229 +#: src/Content/Nav.php:215 msgid "Conversations you started" msgstr "" -#: src/Content/Nav.php:230 src/Module/BaseProfile.php:49 -#: src/Module/BaseSettings.php:98 src/Module/Contact.php:503 -#: src/Module/Contact/Profile.php:425 src/Module/Profile/Profile.php:268 -#: src/Module/Welcome.php:57 view/theme/frio/theme.php:233 +#: src/Content/Nav.php:216 src/Module/BaseProfile.php:35 +#: src/Module/BaseSettings.php:84 src/Module/Contact.php:485 +#: src/Module/Contact/Profile.php:425 src/Module/Profile/Profile.php:256 +#: src/Module/Welcome.php:43 view/theme/frio/theme.php:221 msgid "Profile" msgstr "Forsíða" -#: src/Content/Nav.php:230 view/theme/frio/theme.php:233 +#: src/Content/Nav.php:216 view/theme/frio/theme.php:221 msgid "Your profile page" msgstr "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:237 +#: src/Content/Nav.php:217 src/Module/BaseProfile.php:51 +#: src/Module/Media/Photo/Browser.php:60 view/theme/frio/theme.php:225 msgid "Photos" msgstr "Myndir" -#: src/Content/Nav.php:231 view/theme/frio/theme.php:237 +#: src/Content/Nav.php:217 view/theme/frio/theme.php:225 msgid "Your photos" msgstr "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:238 +#: src/Content/Nav.php:218 src/Module/BaseProfile.php:59 +#: src/Module/BaseProfile.php:62 src/Module/Contact.php:509 +#: view/theme/frio/theme.php:226 msgid "Media" msgstr "" -#: src/Content/Nav.php:232 view/theme/frio/theme.php:238 +#: src/Content/Nav.php:218 view/theme/frio/theme.php:226 msgid "Your postings with media" msgstr "" -#: src/Content/Nav.php:233 src/Content/Nav.php:293 -#: src/Module/BaseProfile.php:85 src/Module/BaseProfile.php:88 -#: src/Module/BaseProfile.php:96 src/Module/BaseProfile.php:99 -#: src/Module/Settings/Display.php:316 view/theme/frio/theme.php:239 -#: view/theme/frio/theme.php:243 +#: src/Content/Nav.php:219 src/Content/Nav.php:279 +#: src/Module/BaseProfile.php:71 src/Module/BaseProfile.php:74 +#: src/Module/BaseProfile.php:82 src/Module/BaseProfile.php:85 +#: src/Module/Settings/Display.php:302 view/theme/frio/theme.php:227 +#: view/theme/frio/theme.php:231 msgid "Calendar" msgstr "Dagatal" -#: src/Content/Nav.php:233 view/theme/frio/theme.php:239 +#: src/Content/Nav.php:219 view/theme/frio/theme.php:227 msgid "Your calendar" msgstr "" -#: src/Content/Nav.php:234 +#: src/Content/Nav.php:220 msgid "Personal notes" msgstr "Einkaglósur" -#: src/Content/Nav.php:234 +#: src/Content/Nav.php:220 msgid "Your personal notes" msgstr "Einkaglósurnar þínar" -#: src/Content/Nav.php:251 src/Content/Nav.php:308 +#: src/Content/Nav.php:237 src/Content/Nav.php:294 msgid "Home" msgstr "Heim" -#: src/Content/Nav.php:251 src/Module/Settings/OAuth.php:73 +#: src/Content/Nav.php:237 src/Module/Settings/OAuth.php:59 msgid "Home Page" msgstr "Heimasíða" -#: src/Content/Nav.php:255 src/Module/Register.php:169 -#: src/Module/Security/Login.php:124 +#: src/Content/Nav.php:241 src/Module/Register.php:161 +#: src/Module/Security/Login.php:114 msgid "Register" msgstr "Nýskrá" -#: src/Content/Nav.php:255 +#: src/Content/Nav.php:241 msgid "Create an account" msgstr "Stofna notanda" -#: src/Content/Nav.php:261 src/Module/Help.php:67 -#: src/Module/Settings/TwoFactor/AppSpecific.php:132 -#: src/Module/Settings/TwoFactor/Index.php:139 -#: src/Module/Settings/TwoFactor/Recovery.php:110 -#: src/Module/Settings/TwoFactor/Verify.php:149 view/theme/vier/theme.php:240 +#: src/Content/Nav.php:247 src/Module/Help.php:53 +#: src/Module/Settings/TwoFactor/AppSpecific.php:118 +#: src/Module/Settings/TwoFactor/Index.php:125 +#: src/Module/Settings/TwoFactor/Recovery.php:96 +#: src/Module/Settings/TwoFactor/Verify.php:135 view/theme/vier/theme.php:228 msgid "Help" msgstr "Hjálp" -#: src/Content/Nav.php:261 +#: src/Content/Nav.php:247 msgid "Help and documentation" msgstr "Hjálp og leiðbeiningar" -#: src/Content/Nav.php:265 +#: src/Content/Nav.php:251 msgid "Apps" msgstr "Forrit" -#: src/Content/Nav.php:265 +#: src/Content/Nav.php:251 msgid "Addon applications, utilities, games" msgstr "Viðbótarforrit, nytjatól, leikir" -#: src/Content/Nav.php:269 src/Content/Text/HTML.php:867 -#: src/Module/Admin/Logs/View.php:88 src/Module/Search/Index.php:112 +#: src/Content/Nav.php:255 src/Content/Text/HTML.php:853 +#: src/Module/Admin/Logs/View.php:74 src/Module/Search/Index.php:98 msgid "Search" msgstr "Leita" -#: src/Content/Nav.php:269 +#: src/Content/Nav.php:255 msgid "Search site content" msgstr "Leita í efni á vef" -#: src/Content/Nav.php:272 src/Content/Text/HTML.php:876 +#: src/Content/Nav.php:258 src/Content/Text/HTML.php:862 msgid "Full Text" msgstr "Allur textinn" -#: src/Content/Nav.php:273 src/Content/Text/HTML.php:877 -#: src/Content/Widget/TagCloud.php:68 +#: src/Content/Nav.php:259 src/Content/Text/HTML.php:863 +#: src/Content/Widget/TagCloud.php:54 msgid "Tags" msgstr "Merki" -#: src/Content/Nav.php:274 src/Content/Nav.php:329 -#: src/Content/Text/HTML.php:878 src/Module/BaseProfile.php:127 -#: src/Module/BaseProfile.php:130 src/Module/Contact.php:426 -#: src/Module/Contact.php:535 view/theme/frio/theme.php:246 +#: src/Content/Nav.php:260 src/Content/Nav.php:315 +#: src/Content/Text/HTML.php:864 src/Module/BaseProfile.php:113 +#: src/Module/BaseProfile.php:116 src/Module/Contact.php:407 +#: src/Module/Contact.php:517 view/theme/frio/theme.php:234 msgid "Contacts" msgstr "Tengiliðir" -#: src/Content/Nav.php:289 +#: src/Content/Nav.php:275 msgid "Community" msgstr "Samfélag" -#: src/Content/Nav.php:289 +#: src/Content/Nav.php:275 msgid "Conversations on this and other servers" msgstr "" -#: src/Content/Nav.php:296 +#: src/Content/Nav.php:282 msgid "Directory" msgstr "Mappa" -#: src/Content/Nav.php:296 +#: src/Content/Nav.php:282 msgid "People directory" msgstr "Nafnaskrá" -#: src/Content/Nav.php:298 src/Module/BaseAdmin.php:85 -#: src/Module/BaseModeration.php:108 +#: src/Content/Nav.php:284 src/Module/BaseAdmin.php:71 +#: src/Module/BaseModeration.php:94 msgid "Information" msgstr "Upplýsingar" -#: src/Content/Nav.php:298 +#: src/Content/Nav.php:284 msgid "Information about this friendica instance" msgstr "Upplýsingar um þetta tilvik Friendica" -#: src/Content/Nav.php:301 src/Module/Admin/Tos.php:78 -#: src/Module/BaseAdmin.php:95 src/Module/Register.php:177 -#: src/Module/Tos.php:101 +#: src/Content/Nav.php:287 src/Module/Admin/Tos.php:64 +#: src/Module/BaseAdmin.php:81 src/Module/Register.php:169 +#: src/Module/Tos.php:87 msgid "Terms of Service" msgstr "Þjónustuskilmálar" -#: src/Content/Nav.php:301 +#: src/Content/Nav.php:287 msgid "Terms of Service of this Friendica instance" msgstr "" -#: src/Content/Nav.php:306 view/theme/frio/theme.php:242 +#: src/Content/Nav.php:292 view/theme/frio/theme.php:230 msgid "Network" msgstr "Samfélag" -#: src/Content/Nav.php:306 view/theme/frio/theme.php:242 +#: src/Content/Nav.php:292 view/theme/frio/theme.php:230 msgid "Conversations from your friends" msgstr "Samtöl frá vinum" -#: src/Content/Nav.php:308 view/theme/frio/theme.php:232 +#: src/Content/Nav.php:294 view/theme/frio/theme.php:220 msgid "Your posts and conversations" msgstr "Samtölin þín" -#: src/Content/Nav.php:312 +#: src/Content/Nav.php:298 msgid "Introductions" msgstr "Kynningar" -#: src/Content/Nav.php:312 +#: src/Content/Nav.php:298 msgid "Friend Requests" msgstr "Vinabeiðnir" -#: src/Content/Nav.php:313 src/Module/BaseNotifications.php:149 -#: src/Module/Notifications/Introductions.php:75 +#: src/Content/Nav.php:299 src/Module/BaseNotifications.php:135 +#: src/Module/Notifications/Introductions.php:61 msgid "Notifications" msgstr "Tilkynningar" -#: src/Content/Nav.php:314 +#: src/Content/Nav.php:300 msgid "See all notifications" msgstr "Sjá allar tilkynningar" -#: src/Content/Nav.php:315 src/Module/Settings/Connectors.php:244 +#: src/Content/Nav.php:301 src/Module/Settings/Connectors.php:233 msgid "Mark as seen" msgstr "Merka sem séð" -#: src/Content/Nav.php:315 +#: src/Content/Nav.php:301 msgid "Mark all system notifications as seen" msgstr "" -#: src/Content/Nav.php:318 view/theme/frio/theme.php:244 +#: src/Content/Nav.php:304 view/theme/frio/theme.php:232 msgid "Private mail" msgstr "Einka skilaboð" -#: src/Content/Nav.php:319 +#: src/Content/Nav.php:305 msgid "Inbox" msgstr "Innhólf" -#: src/Content/Nav.php:320 +#: src/Content/Nav.php:306 msgid "Outbox" msgstr "Úthólf" -#: src/Content/Nav.php:324 +#: src/Content/Nav.php:310 msgid "Accounts" msgstr "" -#: src/Content/Nav.php:324 +#: src/Content/Nav.php:310 msgid "Manage other pages" msgstr "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:245 +#: src/Content/Nav.php:313 src/Module/Admin/Addons/Details.php:100 +#: src/Module/Admin/Themes/Details.php:85 src/Module/BaseSettings.php:168 +#: src/Module/Welcome.php:38 view/theme/frio/theme.php:233 msgid "Settings" msgstr "Stillingar" -#: src/Content/Nav.php:327 view/theme/frio/theme.php:245 +#: src/Content/Nav.php:313 view/theme/frio/theme.php:233 msgid "Account settings" msgstr "Stillingar aðgangsreiknings" -#: src/Content/Nav.php:329 view/theme/frio/theme.php:246 +#: src/Content/Nav.php:315 view/theme/frio/theme.php:234 msgid "Manage/edit friends and contacts" msgstr "Sýsla með vini og tengiliði" -#: src/Content/Nav.php:334 src/Module/BaseAdmin.php:119 +#: src/Content/Nav.php:320 src/Module/BaseAdmin.php:105 msgid "Admin" msgstr "Stjórnandi" -#: src/Content/Nav.php:334 +#: src/Content/Nav.php:320 msgid "Site setup and configuration" msgstr "Uppsetning og stillingar vefsvæðis" -#: src/Content/Nav.php:335 src/Module/BaseModeration.php:128 -#: src/Module/Moderation/Blocklist/Contact.php:110 -#: src/Module/Moderation/Blocklist/Server/Add.php:121 -#: src/Module/Moderation/Blocklist/Server/Import.php:118 -#: src/Module/Moderation/Blocklist/Server/Index.php:95 -#: src/Module/Moderation/Item/Delete.php:61 -#: src/Module/Moderation/Reports.php:104 src/Module/Moderation/Summary.php:75 -#: src/Module/Moderation/Users/Active.php:133 -#: src/Module/Moderation/Users/Blocked.php:133 -#: src/Module/Moderation/Users/Deleted.php:80 -#: src/Module/Moderation/Users/Index.php:147 +#: src/Content/Nav.php:321 src/Module/BaseModeration.php:114 +#: src/Module/Moderation/Blocklist/Contact.php:96 +#: src/Module/Moderation/Blocklist/Server/Add.php:107 +#: src/Module/Moderation/Blocklist/Server/Import.php:102 +#: src/Module/Moderation/Blocklist/Server/Index.php:81 +#: src/Module/Moderation/Item/Delete.php:47 +#: src/Module/Moderation/Reports.php:96 src/Module/Moderation/Summary.php:61 +#: src/Module/Moderation/Users/Active.php:119 +#: src/Module/Moderation/Users/Blocked.php:119 +#: src/Module/Moderation/Users/Deleted.php:66 +#: src/Module/Moderation/Users/Index.php:133 msgid "Moderation" msgstr "" -#: src/Content/Nav.php:335 +#: src/Content/Nav.php:321 msgid "Content and user moderation" msgstr "" -#: src/Content/Nav.php:338 +#: src/Content/Nav.php:324 msgid "Navigation" msgstr "Yfirsýn" -#: src/Content/Nav.php:338 +#: src/Content/Nav.php:324 msgid "Site map" msgstr "Yfirlit um vefsvæði" -#: src/Content/Pager.php:216 +#: src/Content/Pager.php:202 msgid "first" msgstr "fremsta" -#: src/Content/Pager.php:221 +#: src/Content/Pager.php:207 msgid "prev" msgstr "á undan" -#: src/Content/Pager.php:276 +#: src/Content/Pager.php:262 msgid "next" msgstr "næsta" -#: src/Content/Pager.php:281 +#: src/Content/Pager.php:267 msgid "last" msgstr "síðasta" -#: src/Content/Text/BBCode.php:702 src/Content/Text/BBCode.php:1878 -#: src/Content/Text/BBCode.php:1879 +#: src/Content/Text/BBCode.php:689 src/Content/Text/BBCode.php:1862 +#: src/Content/Text/BBCode.php:1863 msgid "Image/photo" msgstr "Mynd" -#: src/Content/Text/BBCode.php:920 +#: src/Content/Text/BBCode.php:907 #, php-format msgid "%2$s %3$s" msgstr "" -#: src/Content/Text/BBCode.php:945 src/Model/Item.php:4012 -#: src/Model/Item.php:4018 src/Model/Item.php:4019 +#: src/Content/Text/BBCode.php:929 src/Model/Item.php:4028 +#: src/Model/Item.php:4034 src/Model/Item.php:4035 msgid "Link to source" msgstr "" -#: src/Content/Text/BBCode.php:1759 src/Content/Text/HTML.php:906 +#: src/Content/Text/BBCode.php:1743 src/Content/Text/HTML.php:892 msgid "Click to open/close" msgstr "Smelltu til að opna/loka" -#: src/Content/Text/BBCode.php:1814 +#: src/Content/Text/BBCode.php:1798 msgid "$1 wrote:" msgstr "$1 skrifaði:" -#: src/Content/Text/BBCode.php:1888 src/Content/Text/BBCode.php:1889 +#: src/Content/Text/BBCode.php:1872 src/Content/Text/BBCode.php:1873 msgid "Encrypted content" msgstr "Dulritað efni" -#: src/Content/Text/BBCode.php:2194 +#: src/Content/Text/BBCode.php:2205 msgid "Invalid source protocol" msgstr "" -#: src/Content/Text/BBCode.php:2213 +#: src/Content/Text/BBCode.php:2224 msgid "Invalid link protocol" msgstr "" -#: src/Content/Text/HTML.php:784 +#: src/Content/Text/HTML.php:770 msgid "Loading more entries..." msgstr "Hleð inn fleiri færslum..." -#: src/Content/Text/HTML.php:785 +#: src/Content/Text/HTML.php:771 msgid "The end" msgstr "Endir" -#: src/Content/Text/HTML.php:861 src/Content/Widget/VCard.php:127 -#: src/Model/Profile.php:477 src/Module/Contact/Profile.php:478 +#: src/Content/Text/HTML.php:847 src/Content/Widget/VCard.php:113 +#: src/Model/Profile.php:456 src/Module/Contact/Profile.php:478 msgid "Follow" msgstr "Fylgja" -#: src/Content/Widget.php:51 +#: src/Content/Widget.php:37 msgid "Add New Contact" msgstr "Bæta við tengilið" -#: src/Content/Widget.php:52 +#: src/Content/Widget.php:38 msgid "Enter address or web location" msgstr "Settu inn slóð" -#: src/Content/Widget.php:53 +#: src/Content/Widget.php:39 msgid "Example: bob@example.com, http://example.com/barbara" msgstr "Dæmi: gudmundur@simnet.is, http://simnet.is/gudmundur" -#: src/Content/Widget.php:55 +#: src/Content/Widget.php:41 msgid "Connect" msgstr "Tengjast" -#: src/Content/Widget.php:72 +#: src/Content/Widget.php:58 #, php-format msgid "%d invitation available" msgid_plural "%d invitations available" msgstr[0] "%d boðskort í boði" msgstr[1] "%d boðskort í boði" -#: src/Content/Widget.php:78 view/theme/vier/theme.php:193 +#: src/Content/Widget.php:64 view/theme/vier/theme.php:181 msgid "Find People" msgstr "Finna fólk" -#: src/Content/Widget.php:79 view/theme/vier/theme.php:194 +#: src/Content/Widget.php:65 view/theme/vier/theme.php:182 msgid "Enter name or interest" msgstr "Settu inn nafn eða áhugamál" -#: src/Content/Widget.php:81 view/theme/vier/theme.php:196 +#: src/Content/Widget.php:67 view/theme/vier/theme.php:184 msgid "Examples: Robert Morgenstein, Fishing" msgstr "Dæmi: Jón Jónsson, Veiði" -#: src/Content/Widget.php:82 src/Module/Contact.php:460 -#: src/Module/Directory.php:96 view/theme/vier/theme.php:197 +#: src/Content/Widget.php:68 src/Module/Contact.php:441 +#: src/Module/Directory.php:83 view/theme/vier/theme.php:185 msgid "Find" msgstr "Finna" -#: src/Content/Widget.php:83 src/Module/Contact/Suggestions.php:73 -#: view/theme/vier/theme.php:198 +#: src/Content/Widget.php:69 src/Module/Contact/Suggestions.php:59 +#: view/theme/vier/theme.php:186 msgid "Friend Suggestions" msgstr "Vina uppástungur" -#: src/Content/Widget.php:84 view/theme/vier/theme.php:199 +#: src/Content/Widget.php:70 view/theme/vier/theme.php:187 msgid "Similar Interests" msgstr "Svipuð áhugamál" -#: src/Content/Widget.php:85 view/theme/vier/theme.php:200 +#: src/Content/Widget.php:71 view/theme/vier/theme.php:188 msgid "Random Profile" msgstr "Forsíða af handahófi" -#: src/Content/Widget.php:86 view/theme/vier/theme.php:201 +#: src/Content/Widget.php:72 view/theme/vier/theme.php:189 msgid "Invite Friends" msgstr "Bjóða vinum aðgang" -#: src/Content/Widget.php:87 src/Module/Directory.php:88 -#: view/theme/vier/theme.php:202 +#: src/Content/Widget.php:73 src/Module/Directory.php:75 +#: view/theme/vier/theme.php:190 msgid "Global Directory" msgstr "Alheimstengiliðaskrá" -#: src/Content/Widget.php:89 view/theme/vier/theme.php:204 +#: src/Content/Widget.php:75 view/theme/vier/theme.php:192 msgid "Local Directory" msgstr "Staðvær mappa" -#: src/Content/Widget.php:218 +#: src/Content/Widget.php:196 msgid "Everyone" msgstr "" -#: src/Content/Widget.php:243 src/Module/Contact.php:423 +#: src/Content/Widget.php:221 src/Module/Contact.php:404 msgid "No relationship" msgstr "" -#: src/Content/Widget.php:248 +#: src/Content/Widget.php:226 msgid "Relationships" msgstr "" -#: src/Content/Widget.php:250 src/Module/Circle.php:294 -#: src/Module/Contact.php:344 +#: src/Content/Widget.php:228 src/Module/Circle.php:280 +#: src/Module/Contact.php:325 msgid "All Contacts" msgstr "Allir tengiliðir" -#: src/Content/Widget.php:291 +#: src/Content/Widget.php:269 msgid "All Protocols" msgstr "" -#: src/Content/Widget.php:321 src/Content/Widget.php:352 +#: src/Content/Widget.php:299 src/Content/Widget.php:330 msgid "Everything" msgstr "Allt" -#: src/Content/Widget.php:350 +#: src/Content/Widget.php:328 msgid "Categories" msgstr "Flokkar" -#: src/Content/Widget.php:407 +#: src/Content/Widget.php:385 #, 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:515 +#: src/Content/Widget.php:493 msgid "On this date" msgstr "" -#: src/Content/Widget.php:535 +#: src/Content/Widget.php:513 msgid "Persons" msgstr "" -#: src/Content/Widget.php:536 +#: src/Content/Widget.php:514 msgid "Organisations" msgstr "" -#: src/Content/Widget.php:537 src/Model/Contact.php:1729 +#: src/Content/Widget.php:515 src/Model/Contact.php:1747 msgid "News" msgstr "Fréttir" -#: src/Content/Widget.php:539 +#: src/Content/Widget.php:517 msgid "Relays" msgstr "" -#: src/Content/Widget.php:546 src/Module/Moderation/BaseUsers.php:69 +#: src/Content/Widget.php:524 src/Module/Moderation/BaseUsers.php:56 msgid "All" msgstr "" -#: src/Content/Widget/CalendarExport.php:56 +#: src/Content/Widget/CalendarExport.php:42 msgid "Export" msgstr "Flytja út" -#: src/Content/Widget/CalendarExport.php:57 +#: src/Content/Widget/CalendarExport.php:43 msgid "Export calendar as ical" msgstr "Flytja dagatal út sem ICAL" -#: src/Content/Widget/CalendarExport.php:58 +#: src/Content/Widget/CalendarExport.php:44 msgid "Export calendar as csv" msgstr "Flytja dagatal út sem CSV" -#: src/Content/Widget/ContactBlock.php:79 +#: src/Content/Widget/ContactBlock.php:65 msgid "No contacts" msgstr "Engir tengiliðir" -#: src/Content/Widget/ContactBlock.php:110 +#: src/Content/Widget/ContactBlock.php:96 #, php-format msgid "%d Contact" msgid_plural "%d Contacts" msgstr[0] "%d tengiliður" msgstr[1] "%d tengiliðir" -#: src/Content/Widget/ContactBlock.php:127 +#: src/Content/Widget/ContactBlock.php:113 msgid "View Contacts" msgstr "Skoða tengiliði" -#: src/Content/Widget/SavedSearches.php:47 +#: src/Content/Widget/SavedSearches.php:33 msgid "Remove term" msgstr "Fjarlæga gildi" -#: src/Content/Widget/TrendingTags.php:53 +#: src/Content/Widget/TrendingTags.php:39 #, php-format msgid "Trending Tags (last %d hour)" msgid_plural "Trending Tags (last %d hours)" msgstr[0] "" msgstr[1] "" -#: src/Content/Widget/TrendingTags.php:54 +#: src/Content/Widget/TrendingTags.php:40 msgid "More Trending Tags" msgstr "" -#: src/Content/Widget/VCard.php:105 src/Model/Contact.php:1196 -#: src/Model/Profile.php:462 +#: src/Content/Widget/VCard.php:91 src/Model/Contact.php:1212 +#: src/Model/Profile.php:441 msgid "Post to group" msgstr "" -#: src/Content/Widget/VCard.php:110 src/Model/Contact.php:1200 -#: src/Model/Profile.php:466 src/Module/Moderation/Item/Source.php:85 +#: src/Content/Widget/VCard.php:96 src/Model/Contact.php:1216 +#: src/Model/Profile.php:445 src/Module/Moderation/Item/Source.php:77 msgid "Mention" msgstr "" -#: src/Content/Widget/VCard.php:120 src/Model/Profile.php:381 -#: src/Module/Contact/Profile.php:414 src/Module/Profile/Profile.php:199 +#: src/Content/Widget/VCard.php:106 src/Model/Profile.php:360 +#: src/Module/Contact/Profile.php:414 src/Module/Profile/Profile.php:187 msgid "XMPP:" msgstr "XMPP:" -#: src/Content/Widget/VCard.php:121 src/Model/Profile.php:382 -#: src/Module/Contact/Profile.php:416 src/Module/Profile/Profile.php:203 +#: src/Content/Widget/VCard.php:107 src/Model/Profile.php:361 +#: src/Module/Contact/Profile.php:416 src/Module/Profile/Profile.php:191 msgid "Matrix:" msgstr "" -#: src/Content/Widget/VCard.php:122 src/Model/Event.php:82 -#: src/Model/Event.php:109 src/Model/Event.php:471 src/Model/Event.php:960 -#: src/Model/Profile.php:376 src/Module/Contact/Profile.php:412 -#: src/Module/Directory.php:147 src/Module/Notifications/Introductions.php:187 -#: src/Module/Profile/Profile.php:221 +#: src/Content/Widget/VCard.php:108 src/Model/Event.php:68 +#: src/Model/Event.php:95 src/Model/Event.php:457 src/Model/Event.php:946 +#: src/Model/Profile.php:355 src/Module/Contact/Profile.php:412 +#: src/Module/Directory.php:134 src/Module/Notifications/Introductions.php:179 +#: src/Module/Profile/Profile.php:209 msgid "Location:" msgstr "Staðsetning:" -#: src/Content/Widget/VCard.php:125 src/Model/Profile.php:490 -#: src/Module/Notifications/Introductions.php:201 +#: src/Content/Widget/VCard.php:111 src/Model/Profile.php:469 +#: src/Module/Notifications/Introductions.php:193 msgid "Network:" msgstr "Netkerfi:" -#: src/Content/Widget/VCard.php:129 src/Model/Contact.php:1228 -#: src/Model/Contact.php:1240 src/Model/Profile.php:479 +#: src/Content/Widget/VCard.php:115 src/Model/Contact.php:1244 +#: src/Model/Contact.php:1256 src/Model/Profile.php:458 #: src/Module/Contact/Profile.php:470 msgid "Unfollow" msgstr "" -#: src/Content/Widget/VCard.php:135 src/Model/Contact.php:1198 -#: src/Model/Profile.php:464 +#: src/Content/Widget/VCard.php:121 src/Model/Contact.php:1214 +#: src/Model/Profile.php:443 msgid "View group" msgstr "" -#: src/Core/ACL.php:166 src/Module/Profile/Profile.php:269 +#: src/Core/ACL.php:152 src/Module/Profile/Profile.php:257 msgid "Yourself" msgstr "" -#: src/Core/ACL.php:202 src/Module/Privacy/PermissionTooltip.php:170 -#: src/Module/Privacy/PermissionTooltip.php:192 +#: src/Core/ACL.php:188 src/Module/Privacy/PermissionTooltip.php:156 +#: src/Module/Privacy/PermissionTooltip.php:178 msgid "Mutuals" msgstr "" -#: src/Core/ACL.php:294 +#: src/Core/ACL.php:280 msgid "Post to Email" msgstr "Senda skilaboð á tölvupóst" -#: src/Core/ACL.php:321 src/Module/Privacy/PermissionTooltip.php:117 -#: src/Module/Privacy/PermissionTooltip.php:231 +#: src/Core/ACL.php:307 src/Module/Privacy/PermissionTooltip.php:103 +#: src/Module/Privacy/PermissionTooltip.php:217 msgid "Public" msgstr "" -#: src/Core/ACL.php:322 +#: src/Core/ACL.php:308 msgid "" "This content will be shown to all your followers and can be seen in the " "community pages and by anyone with its link." msgstr "" -#: src/Core/ACL.php:323 src/Module/Privacy/PermissionTooltip.php:119 +#: src/Core/ACL.php:309 src/Module/Privacy/PermissionTooltip.php:105 msgid "Limited/Private" msgstr "" -#: src/Core/ACL.php:324 +#: src/Core/ACL.php:310 msgid "" "This content will be shown only to the people in the first box, to the " "exception of the people mentioned in the second box. It won't appear " "anywhere public." msgstr "" -#: src/Core/ACL.php:324 +#: src/Core/ACL.php:310 msgid "" "Start typing the name of a contact or a circle to show a filtered list. You " "can also mention the special circles \"Followers\" and \"Mutuals\"." msgstr "" -#: src/Core/ACL.php:325 +#: src/Core/ACL.php:311 msgid "Show to:" msgstr "" -#: src/Core/ACL.php:326 +#: src/Core/ACL.php:312 msgid "Except to:" msgstr "" -#: src/Core/ACL.php:327 src/Module/Post/Edit.php:154 +#: src/Core/ACL.php:313 src/Module/Post/Edit.php:140 msgid "CC: email addresses" msgstr "CC: tölvupóstfang" -#: src/Core/ACL.php:328 src/Module/Post/Edit.php:160 +#: src/Core/ACL.php:314 src/Module/Post/Edit.php:146 msgid "Example: bob@example.com, mary@example.com" msgstr "Dæmi: bibbi@vefur.is, mgga@vefur.is" -#: src/Core/ACL.php:329 +#: src/Core/ACL.php:315 msgid "Connectors" msgstr "" -#: src/Core/Installer.php:180 +#: src/Core/Installer.php:166 msgid "" "The database configuration file \"config/local.config.php\" could not be " "written. Please use the enclosed text to create a configuration file in your" " web server root." msgstr "" -#: src/Core/Installer.php:197 +#: src/Core/Installer.php:183 msgid "" "You may need to import the file \"database.sql\" manually using phpmyadmin " "or mysql." msgstr "Þú þarft mögulega að keyra inn skránna \"database.sql\" handvirkt með phpmyadmin eða mysql." -#: src/Core/Installer.php:198 src/Module/Install.php:207 -#: src/Module/Install.php:350 +#: src/Core/Installer.php:184 src/Module/Install.php:193 +#: src/Module/Install.php:336 msgid "Please see the file \"doc/INSTALL.md\"." msgstr "" -#: src/Core/Installer.php:259 +#: src/Core/Installer.php:245 msgid "Could not find a command line version of PHP in the web server PATH." msgstr "Gat ekki fundið skipanalínu útgáfu af PHP í vefþjóns PATH." -#: src/Core/Installer.php:260 +#: src/Core/Installer.php:246 msgid "" "If you don't have a command line version of PHP installed on your server, " "you will not be able to run the background processing. See 'Setup the worker'" msgstr "" -#: src/Core/Installer.php:265 +#: src/Core/Installer.php:251 msgid "PHP executable path" msgstr "PHP keyrslu slóð" -#: src/Core/Installer.php:265 +#: src/Core/Installer.php:251 msgid "" "Enter full path to php executable. You can leave this blank to continue the " "installation." msgstr "" -#: src/Core/Installer.php:270 +#: src/Core/Installer.php:256 msgid "Command line PHP" msgstr "Skipanalínu PHP" -#: src/Core/Installer.php:279 +#: src/Core/Installer.php:265 msgid "PHP executable is not the php cli binary (could be cgi-fgci version)" msgstr "" -#: src/Core/Installer.php:280 +#: src/Core/Installer.php:266 msgid "Found PHP version: " msgstr "Fann PHP útgáfu: " -#: src/Core/Installer.php:282 +#: src/Core/Installer.php:268 msgid "PHP cli binary" msgstr "" -#: src/Core/Installer.php:295 +#: src/Core/Installer.php:281 msgid "" "The command line version of PHP on your system does not have " "\"register_argc_argv\" enabled." msgstr "Skipanalínu útgáfa af PHP á vefþjóninum hefur ekki kveikt á \"register_argc_argv\"." -#: src/Core/Installer.php:296 +#: src/Core/Installer.php:282 msgid "This is required for message delivery to work." msgstr "Þetta er skilyrt fyrir því að skilaboð komist til skila." -#: src/Core/Installer.php:301 +#: src/Core/Installer.php:287 msgid "PHP register_argc_argv" msgstr "" -#: src/Core/Installer.php:333 +#: src/Core/Installer.php:319 msgid "" "Error: the \"openssl_pkey_new\" function on this system is not able to " "generate encryption keys" msgstr "Villa: Stefjan \"openssl_pkey_new\" á vefþjóninum getur ekki stofnað dulkóðunar lykla" -#: src/Core/Installer.php:334 +#: src/Core/Installer.php:320 msgid "" "If running under Windows, please see " "\"http://www.php.net/manual/en/openssl.installation.php\"." msgstr "Ef keyrt er á Window, skoðaðu þá \"http://www.php.net/manual/en/openssl.installation.php\"." -#: src/Core/Installer.php:337 +#: src/Core/Installer.php:323 msgid "Generate encryption keys" msgstr "Búa til dulkóðunar lykla" -#: src/Core/Installer.php:388 +#: src/Core/Installer.php:374 msgid "" "Error: Apache webserver mod-rewrite module is required but not installed." msgstr "Villa: Apache vefþjóns eining mod-rewrite er skilyrði og er ekki uppsett. " -#: src/Core/Installer.php:392 +#: src/Core/Installer.php:378 msgid "Apache mod_rewrite module" msgstr "Apache mod_rewrite eining" -#: src/Core/Installer.php:398 +#: src/Core/Installer.php:384 msgid "Error: PDO or MySQLi PHP module required but not installed." msgstr "" -#: src/Core/Installer.php:402 +#: src/Core/Installer.php:388 msgid "Error: The MySQL driver for PDO is not installed." msgstr "" -#: src/Core/Installer.php:405 +#: src/Core/Installer.php:391 msgid "PDO or MySQLi PHP module" msgstr "" -#: src/Core/Installer.php:411 +#: src/Core/Installer.php:397 msgid "Error: The IntlChar module is not installed." msgstr "" -#: src/Core/Installer.php:414 +#: src/Core/Installer.php:400 msgid "IntlChar PHP module" msgstr "" -#: src/Core/Installer.php:422 +#: src/Core/Installer.php:408 msgid "Error, XML PHP module required but not installed." msgstr "" -#: src/Core/Installer.php:426 +#: src/Core/Installer.php:412 msgid "XML PHP module" msgstr "" -#: src/Core/Installer.php:429 +#: src/Core/Installer.php:415 msgid "libCurl PHP module" msgstr "libCurl PHP eining" -#: src/Core/Installer.php:430 +#: src/Core/Installer.php:416 msgid "Error: libCURL PHP module required but not installed." msgstr "Villa: libCurl PHP eining er skilyrði og er ekki uppsett." -#: src/Core/Installer.php:436 +#: src/Core/Installer.php:422 msgid "GD graphics PHP module" msgstr "GD graphics PHP eining" -#: src/Core/Installer.php:437 +#: src/Core/Installer.php:423 msgid "" "Error: GD graphics PHP module with JPEG support required but not installed." msgstr "Villa: GD graphics PHP eining með JPEG stuðningi er skilyrði og er ekki uppsett." -#: src/Core/Installer.php:443 +#: src/Core/Installer.php:429 msgid "OpenSSL PHP module" msgstr "OpenSSL PHP eining" -#: src/Core/Installer.php:444 +#: src/Core/Installer.php:430 msgid "Error: openssl PHP module required but not installed." msgstr "Villa: openssl PHP eining skilyrði og er ekki uppsett." -#: src/Core/Installer.php:450 +#: src/Core/Installer.php:436 msgid "mb_string PHP module" msgstr "mb_string PHP eining" -#: src/Core/Installer.php:451 +#: src/Core/Installer.php:437 msgid "Error: mb_string PHP module required but not installed." msgstr "Villa: mb_string PHP eining skilyrði en ekki uppsett." -#: src/Core/Installer.php:457 +#: src/Core/Installer.php:443 msgid "iconv PHP module" msgstr "" -#: src/Core/Installer.php:458 +#: src/Core/Installer.php:444 msgid "Error: iconv PHP module required but not installed." msgstr "" -#: src/Core/Installer.php:464 +#: src/Core/Installer.php:450 msgid "POSIX PHP module" msgstr "" -#: src/Core/Installer.php:465 +#: src/Core/Installer.php:451 msgid "Error: POSIX PHP module required but not installed." msgstr "" -#: src/Core/Installer.php:471 +#: src/Core/Installer.php:457 msgid "Program execution functions" msgstr "" -#: src/Core/Installer.php:472 +#: src/Core/Installer.php:458 msgid "" "Error: Program execution functions (proc_open) required but not enabled." msgstr "" -#: src/Core/Installer.php:478 +#: src/Core/Installer.php:464 msgid "JSON PHP module" msgstr "" -#: src/Core/Installer.php:479 +#: src/Core/Installer.php:465 msgid "Error: JSON PHP module required but not installed." msgstr "" -#: src/Core/Installer.php:485 +#: src/Core/Installer.php:471 msgid "File Information PHP module" msgstr "" -#: src/Core/Installer.php:486 +#: src/Core/Installer.php:472 msgid "Error: File Information PHP module required but not installed." msgstr "" -#: src/Core/Installer.php:492 +#: src/Core/Installer.php:478 msgid "GNU Multiple Precision PHP module" msgstr "" -#: src/Core/Installer.php:493 +#: src/Core/Installer.php:479 msgid "Error: GNU Multiple Precision PHP module required but not installed." msgstr "" -#: src/Core/Installer.php:499 +#: src/Core/Installer.php:485 msgid "IDN Functions PHP module" msgstr "" -#: src/Core/Installer.php:500 +#: src/Core/Installer.php:486 msgid "Error: IDN Functions PHP module required but not installed." msgstr "" -#: src/Core/Installer.php:523 +#: src/Core/Installer.php:509 msgid "" "The web installer needs to be able to create a file called " "\"local.config.php\" in the \"config\" folder of your web server and it is " "unable to do so." msgstr "" -#: src/Core/Installer.php:524 +#: src/Core/Installer.php:510 msgid "" "This is most often a permission setting, as the web server may not be able " "to write files in your folder - even if you can." msgstr "Þetta er oftast aðgangsstýringa stilling, þar sem vefþjónninn getur ekki skrifað út skrár í skráarsafnið - þó þú getir það." -#: src/Core/Installer.php:525 +#: src/Core/Installer.php:511 msgid "" "At the end of this procedure, we will give you a text to save in a file " "named local.config.php in your Friendica \"config\" folder." msgstr "" -#: src/Core/Installer.php:526 +#: src/Core/Installer.php:512 msgid "" "You can alternatively skip this procedure and perform a manual installation." " Please see the file \"doc/INSTALL.md\" for instructions." msgstr "" -#: src/Core/Installer.php:529 +#: src/Core/Installer.php:515 msgid "config/local.config.php is writable" msgstr "" -#: src/Core/Installer.php:549 +#: src/Core/Installer.php:535 msgid "" "Friendica uses the Smarty3 template engine to render its web views. Smarty3 " "compiles templates to PHP to speed up rendering." msgstr "" -#: src/Core/Installer.php:550 +#: src/Core/Installer.php:536 msgid "" "In order to store these compiled templates, the web server needs to have " "write access to the directory view/smarty3/ under the Friendica top level " "folder." msgstr "" -#: src/Core/Installer.php:551 +#: src/Core/Installer.php:537 msgid "" "Please ensure that the user that your web server runs as (e.g. www-data) has" " write access to this folder." msgstr "" -#: src/Core/Installer.php:552 +#: src/Core/Installer.php:538 msgid "" "Note: as a security measure, you should give the web server write access to " "view/smarty3/ only--not the template files (.tpl) that it contains." msgstr "" -#: src/Core/Installer.php:555 +#: src/Core/Installer.php:541 msgid "view/smarty3 is writable" msgstr "" -#: src/Core/Installer.php:583 +#: src/Core/Installer.php:569 msgid "" "Url rewrite in .htaccess seems not working. Make sure you copied .htaccess-" "dist to .htaccess." msgstr "" -#: src/Core/Installer.php:584 +#: src/Core/Installer.php:570 msgid "" "In some circumstances (like running inside containers), you can skip this " "error." msgstr "" -#: src/Core/Installer.php:586 +#: src/Core/Installer.php:572 msgid "Error message from Curl when fetching" msgstr "" -#: src/Core/Installer.php:592 +#: src/Core/Installer.php:578 msgid "Url rewrite is working" msgstr "" -#: src/Core/Installer.php:621 +#: src/Core/Installer.php:607 msgid "" "The detection of TLS to secure the communication between the browser and the" " new Friendica server failed." msgstr "" -#: src/Core/Installer.php:622 +#: src/Core/Installer.php:608 msgid "" "It is highly encouraged to use Friendica only over a secure connection as " "sensitive information like passwords will be transmitted." msgstr "" -#: src/Core/Installer.php:623 +#: src/Core/Installer.php:609 msgid "Please ensure that the connection to the server is secure." msgstr "" -#: src/Core/Installer.php:624 +#: src/Core/Installer.php:610 msgid "No TLS detected" msgstr "" -#: src/Core/Installer.php:626 +#: src/Core/Installer.php:612 msgid "TLS detected" msgstr "" -#: src/Core/Installer.php:643 +#: src/Core/Installer.php:629 msgid "ImageMagick PHP extension is not installed" msgstr "" -#: src/Core/Installer.php:645 +#: src/Core/Installer.php:631 msgid "ImageMagick PHP extension is installed" msgstr "" -#: src/Core/Installer.php:666 +#: src/Core/Installer.php:652 msgid "Database already in use." msgstr "Gagnagrunnur er þegar í notkun." -#: src/Core/Installer.php:671 +#: src/Core/Installer.php:657 msgid "Could not connect to database." msgstr "Gat ekki tengst gagnagrunn." -#: src/Core/L10n.php:444 src/Model/Item.php:2300 +#: src/Core/L10n.php:430 src/Model/Item.php:2315 msgid "Undetermined" msgstr "" -#: src/Core/L10n.php:451 +#: src/Core/L10n.php:437 #, php-format msgid "%s (%s)" msgstr "" -#: src/Core/L10n.php:499 src/Model/Event.php:430 -#: src/Module/Settings/Display.php:284 +#: src/Core/L10n.php:485 src/Model/Event.php:416 +#: src/Module/Settings/Display.php:270 msgid "Monday" msgstr "Mánudagur" -#: src/Core/L10n.php:499 src/Model/Event.php:431 -#: src/Module/Settings/Display.php:285 +#: src/Core/L10n.php:485 src/Model/Event.php:417 +#: src/Module/Settings/Display.php:271 msgid "Tuesday" msgstr "Þriðjudagur" -#: src/Core/L10n.php:499 src/Model/Event.php:432 -#: src/Module/Settings/Display.php:286 +#: src/Core/L10n.php:485 src/Model/Event.php:418 +#: src/Module/Settings/Display.php:272 msgid "Wednesday" msgstr "Miðvikudagur" -#: src/Core/L10n.php:499 src/Model/Event.php:433 -#: src/Module/Settings/Display.php:287 +#: src/Core/L10n.php:485 src/Model/Event.php:419 +#: src/Module/Settings/Display.php:273 msgid "Thursday" msgstr "Fimmtudagur" -#: src/Core/L10n.php:499 src/Model/Event.php:434 -#: src/Module/Settings/Display.php:288 +#: src/Core/L10n.php:485 src/Model/Event.php:420 +#: src/Module/Settings/Display.php:274 msgid "Friday" msgstr "Föstudagur" -#: src/Core/L10n.php:499 src/Model/Event.php:435 -#: src/Module/Settings/Display.php:289 +#: src/Core/L10n.php:485 src/Model/Event.php:421 +#: src/Module/Settings/Display.php:275 msgid "Saturday" msgstr "Laugardagur" -#: src/Core/L10n.php:499 src/Model/Event.php:429 -#: src/Module/Settings/Display.php:283 +#: src/Core/L10n.php:485 src/Model/Event.php:415 +#: src/Module/Settings/Display.php:269 msgid "Sunday" msgstr "Sunnudagur" -#: src/Core/L10n.php:503 src/Model/Event.php:450 +#: src/Core/L10n.php:489 src/Model/Event.php:436 msgid "January" msgstr "Janúar" -#: src/Core/L10n.php:503 src/Model/Event.php:451 +#: src/Core/L10n.php:489 src/Model/Event.php:437 msgid "February" msgstr "Febrúar" -#: src/Core/L10n.php:503 src/Model/Event.php:452 +#: src/Core/L10n.php:489 src/Model/Event.php:438 msgid "March" msgstr "Mars" -#: src/Core/L10n.php:503 src/Model/Event.php:453 +#: src/Core/L10n.php:489 src/Model/Event.php:439 msgid "April" msgstr "Apríl" -#: src/Core/L10n.php:503 src/Core/L10n.php:522 src/Model/Event.php:441 +#: src/Core/L10n.php:489 src/Core/L10n.php:508 src/Model/Event.php:427 msgid "May" msgstr "Maí" -#: src/Core/L10n.php:503 src/Model/Event.php:454 +#: src/Core/L10n.php:489 src/Model/Event.php:440 msgid "June" msgstr "Júní" -#: src/Core/L10n.php:503 src/Model/Event.php:455 +#: src/Core/L10n.php:489 src/Model/Event.php:441 msgid "July" msgstr "Júlí" -#: src/Core/L10n.php:503 src/Model/Event.php:456 +#: src/Core/L10n.php:489 src/Model/Event.php:442 msgid "August" msgstr "Ágúst" -#: src/Core/L10n.php:503 src/Model/Event.php:457 +#: src/Core/L10n.php:489 src/Model/Event.php:443 msgid "September" msgstr "September" -#: src/Core/L10n.php:503 src/Model/Event.php:458 +#: src/Core/L10n.php:489 src/Model/Event.php:444 msgid "October" msgstr "Október" -#: src/Core/L10n.php:503 src/Model/Event.php:459 +#: src/Core/L10n.php:489 src/Model/Event.php:445 msgid "November" msgstr "Nóvember" -#: src/Core/L10n.php:503 src/Model/Event.php:460 +#: src/Core/L10n.php:489 src/Model/Event.php:446 msgid "December" msgstr "Desember" -#: src/Core/L10n.php:518 src/Model/Event.php:422 +#: src/Core/L10n.php:504 src/Model/Event.php:408 msgid "Mon" msgstr "Mán" -#: src/Core/L10n.php:518 src/Model/Event.php:423 +#: src/Core/L10n.php:504 src/Model/Event.php:409 msgid "Tue" msgstr "Þri" -#: src/Core/L10n.php:518 src/Model/Event.php:424 +#: src/Core/L10n.php:504 src/Model/Event.php:410 msgid "Wed" msgstr "Mið" -#: src/Core/L10n.php:518 src/Model/Event.php:425 +#: src/Core/L10n.php:504 src/Model/Event.php:411 msgid "Thu" msgstr "Fim" -#: src/Core/L10n.php:518 src/Model/Event.php:426 +#: src/Core/L10n.php:504 src/Model/Event.php:412 msgid "Fri" msgstr "Fös" -#: src/Core/L10n.php:518 src/Model/Event.php:427 +#: src/Core/L10n.php:504 src/Model/Event.php:413 msgid "Sat" msgstr "Lau" -#: src/Core/L10n.php:518 src/Model/Event.php:421 +#: src/Core/L10n.php:504 src/Model/Event.php:407 msgid "Sun" msgstr "Sun" -#: src/Core/L10n.php:522 src/Model/Event.php:437 +#: src/Core/L10n.php:508 src/Model/Event.php:423 msgid "Jan" msgstr "Jan" -#: src/Core/L10n.php:522 src/Model/Event.php:438 +#: src/Core/L10n.php:508 src/Model/Event.php:424 msgid "Feb" msgstr "Feb" -#: src/Core/L10n.php:522 src/Model/Event.php:439 +#: src/Core/L10n.php:508 src/Model/Event.php:425 msgid "Mar" msgstr "Mar" -#: src/Core/L10n.php:522 src/Model/Event.php:440 +#: src/Core/L10n.php:508 src/Model/Event.php:426 msgid "Apr" msgstr "Apr" -#: src/Core/L10n.php:522 src/Model/Event.php:442 +#: src/Core/L10n.php:508 src/Model/Event.php:428 msgid "Jun" msgstr "Jún" -#: src/Core/L10n.php:522 src/Model/Event.php:443 +#: src/Core/L10n.php:508 src/Model/Event.php:429 msgid "Jul" msgstr "Júl" -#: src/Core/L10n.php:522 src/Model/Event.php:444 +#: src/Core/L10n.php:508 src/Model/Event.php:430 msgid "Aug" msgstr "Ágú" -#: src/Core/L10n.php:522 +#: src/Core/L10n.php:508 msgid "Sep" msgstr "sep" -#: src/Core/L10n.php:522 src/Model/Event.php:446 +#: src/Core/L10n.php:508 src/Model/Event.php:432 msgid "Oct" msgstr "Okt" -#: src/Core/L10n.php:522 src/Model/Event.php:447 +#: src/Core/L10n.php:508 src/Model/Event.php:433 msgid "Nov" msgstr "Nóv" -#: src/Core/L10n.php:522 src/Model/Event.php:448 +#: src/Core/L10n.php:508 src/Model/Event.php:434 msgid "Dec" msgstr "Des" -#: src/Core/Logger/Util/LoggerSettingsCheck.php:60 +#: src/Core/Logger/Util/LoggerSettingsCheck.php:46 #, php-format msgid "The logfile '%s' is not usable. No logging possible (error: '%s')" msgstr "" -#: src/Core/Logger/Util/LoggerSettingsCheck.php:85 +#: src/Core/Logger/Util/LoggerSettingsCheck.php:71 #, php-format msgid "" "The debug logfile '%s' is not usable. No logging possible (error: '%s')" msgstr "" -#: src/Core/Renderer.php:92 src/Core/Renderer.php:121 -#: src/Core/Renderer.php:150 src/Core/Renderer.php:184 -#: src/Render/FriendicaSmartyEngine.php:60 +#: src/Core/Renderer.php:78 src/Core/Renderer.php:107 +#: src/Core/Renderer.php:136 src/Core/Renderer.php:170 +#: src/Render/FriendicaSmartyEngine.php:46 msgid "" "Friendica can't display this page at the moment, please contact the " "administrator." msgstr "" -#: src/Core/Renderer.php:146 +#: src/Core/Renderer.php:132 msgid "template engine cannot be registered without a name." msgstr "" -#: src/Core/Renderer.php:180 +#: src/Core/Renderer.php:166 msgid "template engine is not registered!" msgstr "" -#: src/Core/Storage/Type/FilesystemConfig.php:78 +#: src/Core/Storage/Type/FilesystemConfig.php:64 msgid "Storage base path" msgstr "" -#: src/Core/Storage/Type/FilesystemConfig.php:80 +#: src/Core/Storage/Type/FilesystemConfig.php:66 msgid "" "Folder where uploaded files are saved. For maximum security, This should be " "a path outside web server folder tree" msgstr "" -#: src/Core/Storage/Type/FilesystemConfig.php:93 +#: src/Core/Storage/Type/FilesystemConfig.php:79 msgid "Enter a valid existing folder" msgstr "" -#: src/Core/Update.php:80 +#: src/Core/Update.php:66 #, php-format msgid "" "Updates from version %s are not supported. Please update at least to version" " 2021.01 and wait until the postupdate finished version 1383." msgstr "" -#: src/Core/Update.php:91 +#: src/Core/Update.php:77 #, php-format msgid "" "Updates from postupdate version %s are not supported. Please update at least" " to version 2021.01 and wait until the postupdate finished version 1383." msgstr "" -#: src/Core/Update.php:183 +#: src/Core/Update.php:169 #, php-format msgid "%s: executing pre update %d" msgstr "" -#: src/Core/Update.php:225 +#: src/Core/Update.php:211 #, php-format msgid "%s: executing post update %d" msgstr "" -#: src/Core/Update.php:299 +#: src/Core/Update.php:285 #, php-format msgid "Update %s failed. See error logs." msgstr "Uppfærsla á %s mistókst. Skoðaðu villuannál." -#: src/Core/Update.php:339 +#: src/Core/Update.php:325 #, php-format msgid "" "\n" @@ -3172,49 +3178,49 @@ msgid "" "\t\t\t\tfriendica developer if you can not help me on your own. My database might be invalid." msgstr "" -#: src/Core/Update.php:345 +#: src/Core/Update.php:331 #, php-format msgid "The error message is\\n[pre]%s[/pre]" msgstr "" -#: src/Core/Update.php:349 src/Core/Update.php:377 +#: src/Core/Update.php:335 src/Core/Update.php:363 msgid "[Friendica Notify] Database update" msgstr "" -#: src/Core/Update.php:371 +#: src/Core/Update.php:357 #, php-format msgid "" "\n" "\t\t\t\tThe friendica database was successfully updated from %s to %s." msgstr "" -#: src/Database/DBStructure.php:57 +#: src/Database/DBStructure.php:43 #, php-format msgid "The database version had been set to %s." msgstr "" -#: src/Database/DBStructure.php:82 +#: src/Database/DBStructure.php:68 #, php-format msgid "" "The post update is at version %d, it has to be at %d to safely drop the " "tables." msgstr "" -#: src/Database/DBStructure.php:95 +#: src/Database/DBStructure.php:81 msgid "No unused tables found." msgstr "" -#: src/Database/DBStructure.php:100 +#: src/Database/DBStructure.php:86 msgid "" "These tables are not used for friendica and will be deleted when you execute" " \"dbstructure drop -e\":" msgstr "" -#: src/Database/DBStructure.php:137 +#: src/Database/DBStructure.php:123 msgid "There are no tables on MyISAM or InnoDB with the Antelope file format." msgstr "" -#: src/Database/DBStructure.php:161 +#: src/Database/DBStructure.php:147 #, php-format msgid "" "\n" @@ -3222,629 +3228,625 @@ msgid "" "%s\n" msgstr "" -#: src/Database/DBStructure.php:164 +#: src/Database/DBStructure.php:150 msgid "Errors encountered performing database changes: " msgstr "" -#: src/Database/DBStructure.php:232 +#: src/Database/DBStructure.php:218 msgid "Another database update is currently running." msgstr "" -#: src/Database/DBStructure.php:236 +#: src/Database/DBStructure.php:222 #, php-format msgid "%s: Database update" msgstr "" -#: src/Database/DBStructure.php:493 +#: src/Database/DBStructure.php:479 #, php-format msgid "%s: updating %s table." msgstr "" -#: src/Factory/Api/Mastodon/Error.php:42 +#: src/Factory/Api/Mastodon/Error.php:28 msgid "Record not found" msgstr "" -#: src/Factory/Api/Mastodon/Error.php:49 +#: src/Factory/Api/Mastodon/Error.php:35 msgid "Unprocessable Entity" msgstr "" -#: src/Factory/Api/Mastodon/Error.php:56 +#: src/Factory/Api/Mastodon/Error.php:42 msgid "Unauthorized" msgstr "" -#: src/Factory/Api/Mastodon/Error.php:62 +#: src/Factory/Api/Mastodon/Error.php:48 msgid "" "Token is not authorized with a valid user or is missing a required scope" msgstr "" -#: src/Factory/Api/Mastodon/Error.php:69 +#: src/Factory/Api/Mastodon/Error.php:55 msgid "Internal Server Error" msgstr "" -#: src/LegacyModule.php:63 +#: src/LegacyModule.php:49 #, php-format msgid "Legacy module file not found: %s" msgstr "" -#: src/Model/Circle.php:106 +#: src/Model/Circle.php:92 msgid "" "A deleted circle with this name was revived. Existing item permissions " "may apply to this circle and any future members. If this is" " not what you intended, please create another circle with a different name." msgstr "" -#: src/Model/Circle.php:544 +#: src/Model/Circle.php:530 msgid "Everybody" msgstr "Allir" -#: src/Model/Circle.php:563 +#: src/Model/Circle.php:549 msgid "edit" msgstr "breyta" -#: src/Model/Circle.php:600 +#: src/Model/Circle.php:586 msgid "add" msgstr "bæta við" -#: src/Model/Circle.php:605 +#: src/Model/Circle.php:591 msgid "Edit circle" msgstr "" -#: src/Model/Circle.php:606 src/Module/Circle.php:195 +#: src/Model/Circle.php:592 src/Module/Circle.php:181 msgid "Contacts not in any circle" msgstr "" -#: src/Model/Circle.php:608 +#: src/Model/Circle.php:594 msgid "Create a new circle" msgstr "" -#: src/Model/Circle.php:609 src/Module/Circle.php:180 -#: src/Module/Circle.php:203 src/Module/Circle.php:278 +#: src/Model/Circle.php:595 src/Module/Circle.php:166 +#: src/Module/Circle.php:189 src/Module/Circle.php:264 msgid "Circle Name: " msgstr "" -#: src/Model/Circle.php:610 +#: src/Model/Circle.php:596 msgid "Edit circles" msgstr "" -#: src/Model/Contact.php:1247 src/Module/Moderation/Users/Pending.php:102 -#: src/Module/Notifications/Introductions.php:132 -#: src/Module/Notifications/Introductions.php:204 +#: src/Model/Contact.php:1263 src/Module/Moderation/Users/Pending.php:88 +#: src/Module/Notifications/Introductions.php:124 +#: src/Module/Notifications/Introductions.php:196 msgid "Approve" msgstr "Samþykkja" -#: src/Model/Contact.php:1725 +#: src/Model/Contact.php:1743 msgid "Organisation" msgstr "" -#: src/Model/Contact.php:1733 +#: src/Model/Contact.php:1751 msgid "Group" msgstr "" -#: src/Model/Contact.php:1737 src/Module/Moderation/BaseUsers.php:131 +#: src/Model/Contact.php:1755 src/Module/Moderation/BaseUsers.php:120 msgid "Relay" msgstr "" -#: src/Model/Contact.php:3046 +#: src/Model/Contact.php:3070 msgid "Disallowed profile URL." msgstr "Óleyfileg forsíðu slóð." -#: src/Model/Contact.php:3051 src/Module/Friendica.php:100 +#: src/Model/Contact.php:3075 src/Module/Friendica.php:86 msgid "Blocked domain" msgstr "Útilokað lén" -#: src/Model/Contact.php:3056 +#: src/Model/Contact.php:3080 msgid "Connect URL missing." msgstr "Tengislóð vantar." -#: src/Model/Contact.php:3065 +#: src/Model/Contact.php:3089 msgid "" "The contact could not be added. Please check the relevant network " "credentials in your Settings -> Social Networks page." msgstr "" -#: src/Model/Contact.php:3083 +#: src/Model/Contact.php:3107 #, php-format msgid "Expected network %s does not match actual network %s" msgstr "" -#: src/Model/Contact.php:3100 +#: src/Model/Contact.php:3124 msgid "This seems to be a relay account. They can't be followed by users." msgstr "" -#: src/Model/Contact.php:3107 +#: src/Model/Contact.php:3131 msgid "The profile address specified does not provide adequate information." msgstr "Uppgefin forsíðuslóð inniheldur ekki nægilegar upplýsingar." -#: src/Model/Contact.php:3109 +#: src/Model/Contact.php:3133 msgid "No compatible communication protocols or feeds were discovered." msgstr "Engir samhæfðir samskiptastaðlar né fréttastraumar fundust." -#: src/Model/Contact.php:3112 +#: src/Model/Contact.php:3136 msgid "An author or name was not found." msgstr "Höfundur eða nafn fannst ekki." -#: src/Model/Contact.php:3115 +#: src/Model/Contact.php:3139 msgid "No browser URL could be matched to this address." msgstr "Engin vefslóð passaði við þetta vistfang." -#: src/Model/Contact.php:3118 +#: src/Model/Contact.php:3142 msgid "" "Unable to match @-style Identity Address with a known protocol or email " "contact." msgstr "" -#: src/Model/Contact.php:3119 +#: src/Model/Contact.php:3143 msgid "Use mailto: in front of address to force email check." msgstr "" -#: src/Model/Contact.php:3125 -msgid "" -"The profile address specified belongs to a network which has been disabled " -"on this site." -msgstr "Þessi forsíðu slóð tilheyrir neti sem er bannað á þessum vef." - -#: src/Model/Contact.php:3130 +#: src/Model/Contact.php:3149 msgid "" "Limited profile. This person will be unable to receive direct/personal " "notifications from you." msgstr "Takmörkuð forsíða. Þessi tengiliður mun ekki getað tekið á móti beinum/einka tilkynningum frá þér." -#: src/Model/Contact.php:3196 +#: src/Model/Contact.php:3208 msgid "Unable to retrieve contact information." msgstr "Ekki hægt að sækja tengiliðs upplýsingar." -#: src/Model/Event.php:54 +#: src/Model/Event.php:40 msgid "l F d, Y \\@ g:i A \\G\\M\\TP (e)" msgstr "" -#: src/Model/Event.php:75 src/Model/Event.php:92 src/Model/Event.php:469 -#: src/Model/Event.php:942 +#: src/Model/Event.php:61 src/Model/Event.php:78 src/Model/Event.php:455 +#: src/Model/Event.php:928 msgid "Starts:" msgstr "Byrjar:" -#: src/Model/Event.php:78 src/Model/Event.php:98 src/Model/Event.php:470 -#: src/Model/Event.php:946 +#: src/Model/Event.php:64 src/Model/Event.php:84 src/Model/Event.php:456 +#: src/Model/Event.php:932 msgid "Finishes:" msgstr "Endar:" -#: src/Model/Event.php:419 +#: src/Model/Event.php:405 msgid "all-day" msgstr "allan-daginn" -#: src/Model/Event.php:445 +#: src/Model/Event.php:431 msgid "Sept" msgstr "Sept" -#: src/Model/Event.php:462 src/Module/Calendar/Show.php:128 -#: src/Util/Temporal.php:343 +#: src/Model/Event.php:448 src/Module/Calendar/Show.php:114 +#: src/Util/Temporal.php:329 msgid "today" msgstr "í dag" -#: src/Model/Event.php:463 src/Module/Calendar/Show.php:129 -#: src/Module/Settings/Display.php:294 src/Util/Temporal.php:353 +#: src/Model/Event.php:449 src/Module/Calendar/Show.php:115 +#: src/Module/Settings/Display.php:280 src/Util/Temporal.php:339 msgid "month" msgstr "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/Model/Event.php:450 src/Module/Calendar/Show.php:116 +#: src/Module/Settings/Display.php:281 src/Util/Temporal.php:340 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/Model/Event.php:451 src/Module/Calendar/Show.php:117 +#: src/Module/Settings/Display.php:282 src/Util/Temporal.php:341 msgid "day" msgstr "dagur" -#: src/Model/Event.php:467 +#: src/Model/Event.php:453 msgid "No events to display" msgstr "Engir atburðir til að birta" -#: src/Model/Event.php:516 src/Module/DFRN/Poll.php:47 src/Module/Feed.php:68 -#: src/Module/Update/Profile.php:56 +#: src/Model/Event.php:502 src/Module/Feed.php:56 +#: src/Module/Update/Profile.php:42 msgid "Access to this profile has been restricted." msgstr "Aðgangur að þessari forsíðu hefur verið heftur." -#: src/Model/Event.php:558 src/Module/Calendar/Event/Show.php:67 +#: src/Model/Event.php:544 src/Module/Calendar/Event/Show.php:53 msgid "Event not found." msgstr "" -#: src/Model/Event.php:637 +#: src/Model/Event.php:623 msgid "l, F j" msgstr "l, F j" -#: src/Model/Event.php:664 +#: src/Model/Event.php:650 msgid "Edit event" msgstr "Breyta atburð" -#: src/Model/Event.php:665 +#: src/Model/Event.php:651 msgid "Duplicate event" msgstr "Tvítaka atburð" -#: src/Model/Event.php:666 +#: src/Model/Event.php:652 msgid "Delete event" msgstr "Eyða atburði" -#: src/Model/Event.php:896 src/Module/Debug/Localtime.php:38 +#: src/Model/Event.php:882 src/Module/Debug/Localtime.php:24 msgid "l F d, Y \\@ g:i A" msgstr "l F d, Y \\@ g:i A" -#: src/Model/Event.php:897 +#: src/Model/Event.php:883 msgid "D g:i A" msgstr "D g:i A" -#: src/Model/Event.php:898 +#: src/Model/Event.php:884 msgid "g:i A" msgstr "g:i A" -#: src/Model/Event.php:961 src/Model/Event.php:963 +#: src/Model/Event.php:947 src/Model/Event.php:949 msgid "Show map" msgstr "Birta kort" -#: src/Model/Event.php:962 +#: src/Model/Event.php:948 msgid "Hide map" msgstr "Fela kort" -#: src/Model/Event.php:1055 +#: src/Model/Event.php:1041 #, php-format msgid "%s's birthday" msgstr "Afmælisdagur %s" -#: src/Model/Event.php:1056 +#: src/Model/Event.php:1042 #, php-format msgid "Happy Birthday %s" msgstr "Til hamingju með afmælið %s" -#: src/Model/Item.php:2307 +#: src/Model/Item.php:2322 #, php-format msgid "%s (%s - %s): %s" msgstr "" -#: src/Model/Item.php:2309 +#: src/Model/Item.php:2324 #, php-format msgid "%s (%s): %s" msgstr "" -#: src/Model/Item.php:2312 +#: src/Model/Item.php:2327 #, php-format -msgid "Detected languages in this post:\\n%s" +msgid "" +"Detected languages in this post:\n" +"%s" msgstr "" -#: src/Model/Item.php:3260 +#: src/Model/Item.php:3276 msgid "activity" msgstr "virkni" -#: src/Model/Item.php:3262 +#: src/Model/Item.php:3278 msgid "comment" msgstr "" -#: src/Model/Item.php:3265 src/Module/Post/Tag/Add.php:123 +#: src/Model/Item.php:3281 src/Module/Post/Tag/Add.php:109 msgid "post" msgstr "senda" -#: src/Model/Item.php:3435 +#: src/Model/Item.php:3451 #, php-format msgid "%s is blocked" msgstr "" -#: src/Model/Item.php:3437 +#: src/Model/Item.php:3453 #, php-format msgid "%s is ignored" msgstr "" -#: src/Model/Item.php:3439 +#: src/Model/Item.php:3455 #, php-format msgid "Content from %s is collapsed" msgstr "" -#: src/Model/Item.php:3443 +#: src/Model/Item.php:3459 msgid "Sensitive content" msgstr "" -#: src/Model/Item.php:3912 +#: src/Model/Item.php:3928 msgid "bytes" msgstr "bæti" -#: src/Model/Item.php:3943 +#: src/Model/Item.php:3959 #, 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:3945 +#: src/Model/Item.php:3961 #, php-format msgid "%2$s (%1$d vote)" msgid_plural "%2$s (%1$d votes)" msgstr[0] "" msgstr[1] "" -#: src/Model/Item.php:3950 +#: src/Model/Item.php:3966 #, php-format msgid "%d voter. Poll end: %s" msgid_plural "%d voters. Poll end: %s" msgstr[0] "" msgstr[1] "" -#: src/Model/Item.php:3952 +#: src/Model/Item.php:3968 #, php-format msgid "%d voter." msgid_plural "%d voters." msgstr[0] "" msgstr[1] "" -#: src/Model/Item.php:3954 +#: src/Model/Item.php:3970 #, php-format msgid "Poll end: %s" msgstr "" -#: src/Model/Item.php:3995 src/Model/Item.php:3996 +#: src/Model/Item.php:4011 src/Model/Item.php:4012 msgid "View on separate page" msgstr "Skoða á sérstakri síðu" -#: src/Model/Mail.php:135 +#: src/Model/Mail.php:121 msgid "[no subject]" msgstr "[ekkert efni]" -#: src/Model/Photo.php:1198 src/Module/Media/Photo/Upload.php:168 +#: src/Model/Photo.php:1194 src/Module/Media/Photo/Upload.php:154 msgid "Wall Photos" msgstr "Veggmyndir" -#: src/Model/Profile.php:364 src/Module/Profile/Profile.php:283 -#: src/Module/Profile/Profile.php:285 +#: src/Model/Profile.php:343 src/Module/Profile/Profile.php:271 +#: src/Module/Profile/Profile.php:273 msgid "Edit profile" msgstr "Breyta forsíðu" -#: src/Model/Profile.php:366 +#: src/Model/Profile.php:345 msgid "Change profile photo" msgstr "Breyta forsíðumynd" -#: src/Model/Profile.php:379 src/Module/Directory.php:152 -#: src/Module/Profile/Profile.php:209 +#: src/Model/Profile.php:358 src/Module/Directory.php:139 +#: src/Module/Profile/Profile.php:197 msgid "Homepage:" msgstr "Heimasíða:" -#: src/Model/Profile.php:380 src/Module/Contact/Profile.php:418 -#: src/Module/Notifications/Introductions.php:189 +#: src/Model/Profile.php:359 src/Module/Contact/Profile.php:418 +#: src/Module/Notifications/Introductions.php:181 msgid "About:" msgstr "Um:" -#: src/Model/Profile.php:481 +#: src/Model/Profile.php:460 msgid "Atom feed" msgstr "Atom fréttaveita" -#: src/Model/Profile.php:488 +#: src/Model/Profile.php:467 msgid "This website has been verified to belong to the same person." msgstr "" -#: src/Model/Profile.php:539 +#: src/Model/Profile.php:518 msgid "F d" msgstr "F d" -#: src/Model/Profile.php:603 src/Model/Profile.php:680 +#: src/Model/Profile.php:582 src/Model/Profile.php:663 msgid "[today]" msgstr "[í dag]" -#: src/Model/Profile.php:612 +#: src/Model/Profile.php:591 msgid "Birthday Reminders" msgstr "Afmælisáminningar" -#: src/Model/Profile.php:613 +#: src/Model/Profile.php:592 msgid "Birthdays this week:" msgstr "Afmæli í þessari viku:" -#: src/Model/Profile.php:629 +#: src/Model/Profile.php:608 msgid "g A l F d" msgstr "g A l F d" -#: src/Model/Profile.php:667 +#: src/Model/Profile.php:650 msgid "[No description]" msgstr "[Engin lýsing]" -#: src/Model/Profile.php:693 +#: src/Model/Profile.php:676 msgid "Event Reminders" msgstr "Atburðaáminningar" -#: src/Model/Profile.php:694 +#: src/Model/Profile.php:677 msgid "Upcoming events the next 7 days:" msgstr "" -#: src/Model/Profile.php:882 -#, php-format -msgid "OpenWebAuth: %1$s welcomes %2$s" -msgstr "" - -#: src/Model/Profile.php:1022 +#: src/Model/Profile.php:789 msgid "Hometown:" msgstr "Heimabær:" -#: src/Model/Profile.php:1023 +#: src/Model/Profile.php:790 msgid "Marital Status:" msgstr "" -#: src/Model/Profile.php:1024 +#: src/Model/Profile.php:791 msgid "With:" msgstr "" -#: src/Model/Profile.php:1025 +#: src/Model/Profile.php:792 msgid "Since:" msgstr "" -#: src/Model/Profile.php:1026 +#: src/Model/Profile.php:793 msgid "Sexual Preference:" msgstr "Kynhneigð:" -#: src/Model/Profile.php:1027 +#: src/Model/Profile.php:794 msgid "Political Views:" msgstr "Stórnmálaskoðanir:" -#: src/Model/Profile.php:1028 +#: src/Model/Profile.php:795 msgid "Religious Views:" msgstr "Trúarskoðanir" -#: src/Model/Profile.php:1029 +#: src/Model/Profile.php:796 msgid "Likes:" msgstr "Líkar:" -#: src/Model/Profile.php:1030 +#: src/Model/Profile.php:797 msgid "Dislikes:" msgstr "Mislíkar:" -#: src/Model/Profile.php:1031 +#: src/Model/Profile.php:798 msgid "Title/Description:" msgstr "Starfsheiti/Lýsing:" -#: src/Model/Profile.php:1032 src/Module/Admin/Summary.php:197 -#: src/Module/Moderation/Report/Create.php:280 -#: src/Module/Moderation/Summary.php:76 +#: src/Model/Profile.php:799 src/Module/Admin/Summary.php:183 +#: src/Module/Moderation/Report/Create.php:266 +#: src/Module/Moderation/Summary.php:62 msgid "Summary" msgstr "Samantekt" -#: src/Model/Profile.php:1033 +#: src/Model/Profile.php:800 msgid "Musical interests" msgstr "Tónlistarsmekkur" -#: src/Model/Profile.php:1034 +#: src/Model/Profile.php:801 msgid "Books, literature" msgstr "Bækur, bókmenntir" -#: src/Model/Profile.php:1035 +#: src/Model/Profile.php:802 msgid "Television" msgstr "Sjónvarp" -#: src/Model/Profile.php:1036 +#: src/Model/Profile.php:803 msgid "Film/dance/culture/entertainment" msgstr "Kvikmyndir/dans/menning/afþreying" -#: src/Model/Profile.php:1037 +#: src/Model/Profile.php:804 msgid "Hobbies/Interests" msgstr "Áhugamál" -#: src/Model/Profile.php:1038 +#: src/Model/Profile.php:805 msgid "Love/romance" msgstr "Ást/rómantík" -#: src/Model/Profile.php:1039 +#: src/Model/Profile.php:806 msgid "Work/employment" msgstr "Atvinna:" -#: src/Model/Profile.php:1040 +#: src/Model/Profile.php:807 msgid "School/education" msgstr "Skóli/menntun" -#: src/Model/Profile.php:1041 +#: src/Model/Profile.php:808 msgid "Contact information and Social Networks" msgstr "Tengiliðaupplýsingar og samfélagsnet" -#: src/Model/User.php:233 src/Model/User.php:1303 +#: src/Model/Profile.php:856 +#, php-format +msgid "Responsible account: %s" +msgstr "" + +#: src/Model/User.php:217 src/Model/User.php:1310 msgid "SERIOUS ERROR: Generation of security keys failed." msgstr "VERULEGA ALVARLEG VILLA: Stofnun á öryggislyklum tókst ekki." -#: src/Model/User.php:733 src/Model/User.php:766 +#: src/Model/User.php:740 src/Model/User.php:773 msgid "Login failed" msgstr "Innskráning mistókst" -#: src/Model/User.php:798 +#: src/Model/User.php:805 msgid "Not enough information to authenticate" msgstr "" -#: src/Model/User.php:923 +#: src/Model/User.php:930 msgid "Password can't be empty" msgstr "Lykilorð getur ekki verið autt" -#: src/Model/User.php:965 +#: src/Model/User.php:972 msgid "Empty passwords are not allowed." msgstr "" -#: src/Model/User.php:969 +#: src/Model/User.php:976 msgid "" "The new password has been exposed in a public data dump, please choose " "another." msgstr "" -#: src/Model/User.php:973 +#: src/Model/User.php:980 msgid "The password length is limited to 72 characters." msgstr "" -#: src/Model/User.php:977 +#: src/Model/User.php:984 msgid "The password can't contain white spaces nor accentuated letters" msgstr "" -#: src/Model/User.php:1186 +#: src/Model/User.php:1193 msgid "Passwords do not match. Password unchanged." msgstr "Aðgangsorð ber ekki saman. Aðgangsorð óbreytt." -#: src/Model/User.php:1193 +#: src/Model/User.php:1200 msgid "An invitation is required." msgstr "Boðskort er skilyrði." -#: src/Model/User.php:1197 +#: src/Model/User.php:1204 msgid "Invitation could not be verified." msgstr "Ekki hægt að sannreyna boðskort." -#: src/Model/User.php:1205 +#: src/Model/User.php:1212 msgid "Invalid OpenID url" msgstr "OpenID slóð ekki til" -#: src/Model/User.php:1218 src/Security/Authentication.php:230 +#: src/Model/User.php:1225 src/Security/Authentication.php:214 msgid "" "We encountered a problem while logging in with the OpenID you provided. " "Please check the correct spelling of the ID." msgstr "" -#: src/Model/User.php:1218 src/Security/Authentication.php:230 +#: src/Model/User.php:1225 src/Security/Authentication.php:214 msgid "The error message was:" msgstr "Villumeldingin var:" -#: src/Model/User.php:1224 +#: src/Model/User.php:1231 msgid "Please enter the required information." msgstr "Settu inn umbeðnar upplýsingar." -#: src/Model/User.php:1238 +#: src/Model/User.php:1245 #, 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:1245 +#: src/Model/User.php:1252 #, 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:1249 +#: src/Model/User.php:1256 #, 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:1257 +#: src/Model/User.php:1264 msgid "That doesn't appear to be your full (First Last) name." msgstr "Þetta virðist ekki vera fullt nafn (Jón Jónsson)." -#: src/Model/User.php:1262 +#: src/Model/User.php:1269 msgid "Your email domain is not among those allowed on this site." msgstr "Póstþjónninn er ekki í lista yfir leyfða póstþjóna á þessum vef." -#: src/Model/User.php:1266 +#: src/Model/User.php:1273 msgid "Not a valid email address." msgstr "Ekki tækt tölvupóstfang." -#: src/Model/User.php:1269 +#: src/Model/User.php:1276 msgid "The nickname was blocked from registration by the nodes admin." msgstr "" -#: src/Model/User.php:1273 src/Model/User.php:1279 +#: src/Model/User.php:1280 src/Model/User.php:1286 msgid "Cannot use that email." msgstr "Ekki hægt að nota þetta póstfang." -#: src/Model/User.php:1285 +#: src/Model/User.php:1292 msgid "Your nickname can only contain a-z, 0-9 and _." msgstr "" -#: src/Model/User.php:1293 src/Model/User.php:1350 +#: src/Model/User.php:1300 src/Model/User.php:1350 msgid "Nickname is already registered. Please choose another." msgstr "Gælunafn þegar skráð. Veldu annað." @@ -3869,11 +3871,11 @@ msgid "" "An error occurred creating your default contact circle. Please try again." msgstr "" -#: src/Model/User.php:1422 +#: src/Model/User.php:1428 msgid "Profile Photos" msgstr "Forsíðumyndir" -#: src/Model/User.php:1604 +#: src/Model/User.php:1616 #, php-format msgid "" "\n" @@ -3881,7 +3883,7 @@ msgid "" "\t\t\tthe administrator of %2$s has set up an account for you." msgstr "" -#: src/Model/User.php:1607 +#: src/Model/User.php:1619 #, php-format msgid "" "\n" @@ -3912,12 +3914,12 @@ msgid "" "\t\tThank you and welcome to %4$s." msgstr "" -#: src/Model/User.php:1639 src/Model/User.php:1745 +#: src/Model/User.php:1651 src/Model/User.php:1757 #, php-format msgid "Registration details for %s" msgstr "Nýskráningar upplýsingar fyrir %s" -#: src/Model/User.php:1659 +#: src/Model/User.php:1671 #, php-format msgid "" "\n" @@ -3932,12 +3934,12 @@ msgid "" "\t\t" msgstr "" -#: src/Model/User.php:1678 +#: src/Model/User.php:1690 #, php-format msgid "Registration at %s" msgstr "" -#: src/Model/User.php:1702 +#: src/Model/User.php:1714 #, php-format msgid "" "\n" @@ -3946,7 +3948,7 @@ msgid "" "\t\t\t" msgstr "" -#: src/Model/User.php:1710 +#: src/Model/User.php:1722 #, php-format msgid "" "\n" @@ -3977,93 +3979,91 @@ msgid "" "\t\t\tThank you and welcome to %2$s." msgstr "" -#: src/Model/User.php:1772 +#: src/Model/User.php:1784 msgid "" "User with delegates can't be removed, please remove delegate users first" msgstr "" -#: src/Module/Admin/Addons/Details.php:65 +#: src/Module/Admin/Addons/Details.php:51 msgid "Addon not found." msgstr "" -#: src/Module/Admin/Addons/Details.php:76 src/Module/Admin/Addons/Index.php:49 +#: src/Module/Admin/Addons/Details.php:62 src/Module/Admin/Addons/Index.php:41 #, php-format msgid "Addon %s disabled." msgstr "" -#: src/Module/Admin/Addons/Details.php:79 src/Module/Admin/Addons/Index.php:51 +#: src/Module/Admin/Addons/Details.php:65 src/Module/Admin/Addons/Index.php:43 #, php-format msgid "Addon %s enabled." msgstr "" -#: src/Module/Admin/Addons/Details.php:88 -#: src/Module/Admin/Themes/Details.php:46 +#: src/Module/Admin/Addons/Details.php:74 +#: src/Module/Admin/Themes/Details.php:38 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/Addons/Details.php:77 +#: src/Module/Admin/Themes/Details.php:41 src/Module/Settings/Display.php:326 msgid "Enable" msgstr "Virkja" -#: src/Module/Admin/Addons/Details.php:111 -#: src/Module/Admin/Addons/Index.php:67 src/Module/Admin/Federation.php:220 -#: src/Module/Admin/Logs/Settings.php:88 src/Module/Admin/Logs/View.php:85 -#: src/Module/Admin/Queue.php:73 src/Module/Admin/Site.php:455 -#: 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 -#: src/Module/Moderation/Users/Pending.php:96 +#: src/Module/Admin/Addons/Details.php:97 src/Module/Admin/Addons/Index.php:59 +#: src/Module/Admin/Federation.php:206 src/Module/Admin/Logs/Settings.php:74 +#: src/Module/Admin/Logs/View.php:71 src/Module/Admin/Queue.php:59 +#: src/Module/Admin/Site.php:447 src/Module/Admin/Storage.php:124 +#: src/Module/Admin/Summary.php:182 src/Module/Admin/Themes/Details.php:82 +#: src/Module/Admin/Themes/Index.php:103 src/Module/Admin/Tos.php:63 +#: src/Module/Moderation/Users/Create.php:47 +#: src/Module/Moderation/Users/Pending.php:82 msgid "Administration" msgstr "Stjórnun" -#: src/Module/Admin/Addons/Details.php:112 -#: src/Module/Admin/Addons/Index.php:68 src/Module/BaseAdmin.php:92 -#: src/Module/BaseSettings.php:139 +#: src/Module/Admin/Addons/Details.php:98 src/Module/Admin/Addons/Index.php:60 +#: src/Module/BaseAdmin.php:78 src/Module/BaseSettings.php:125 msgid "Addons" msgstr "Forritsviðbætur" -#: src/Module/Admin/Addons/Details.php:113 -#: src/Module/Admin/Themes/Details.php:92 +#: src/Module/Admin/Addons/Details.php:99 +#: src/Module/Admin/Themes/Details.php:84 msgid "Toggle" msgstr "Skipta" -#: src/Module/Admin/Addons/Details.php:120 -#: src/Module/Admin/Themes/Details.php:100 +#: src/Module/Admin/Addons/Details.php:106 +#: src/Module/Admin/Themes/Details.php:92 msgid "Author: " msgstr "Höfundur:" -#: src/Module/Admin/Addons/Details.php:121 -#: src/Module/Admin/Themes/Details.php:101 +#: src/Module/Admin/Addons/Details.php:107 +#: src/Module/Admin/Themes/Details.php:93 msgid "Maintainer: " msgstr "Umsjónarmaður: " -#: src/Module/Admin/Addons/Index.php:42 +#: src/Module/Admin/Addons/Index.php:34 msgid "Addons reloaded" msgstr "" -#: src/Module/Admin/Addons/Index.php:53 +#: src/Module/Admin/Addons/Index.php:45 #, php-format msgid "Addon %s failed to install." msgstr "" -#: src/Module/Admin/Addons/Index.php:69 src/Module/Admin/Features.php:83 -#: src/Module/Admin/Logs/Settings.php:90 src/Module/Admin/Site.php:458 -#: src/Module/Admin/Themes/Index.php:113 src/Module/Admin/Tos.php:86 -#: src/Module/Settings/Account.php:558 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/Features.php:75 +#: src/Module/Admin/Addons/Index.php:61 src/Module/Admin/Features.php:69 +#: src/Module/Admin/Logs/Settings.php:76 src/Module/Admin/Site.php:450 +#: src/Module/Admin/Themes/Index.php:105 src/Module/Admin/Tos.php:72 +#: src/Module/Settings/Account.php:549 src/Module/Settings/Addons.php:64 +#: src/Module/Settings/Connectors.php:149 +#: src/Module/Settings/Connectors.php:235 +#: src/Module/Settings/Delegation.php:179 src/Module/Settings/Display.php:295 +#: src/Module/Settings/Features.php:61 msgid "Save Settings" msgstr "Vista stillingar" -#: src/Module/Admin/Addons/Index.php:70 +#: src/Module/Admin/Addons/Index.php:62 msgid "Reload active addons" msgstr "" -#: src/Module/Admin/Addons/Index.php:74 +#: src/Module/Admin/Addons/Index.php:66 #, php-format msgid "" "There are currently no addons available on your node. You can find the " @@ -4071,158 +4071,158 @@ msgid "" " the open addon registry at %2$s" msgstr "" -#: src/Module/Admin/DBSync.php:51 +#: src/Module/Admin/DBSync.php:37 msgid "Update has been marked successful" msgstr "Uppfærsla merkt sem tókst" -#: src/Module/Admin/DBSync.php:59 +#: src/Module/Admin/DBSync.php:45 #, php-format msgid "Database structure update %s was successfully applied." msgstr "" -#: src/Module/Admin/DBSync.php:61 +#: src/Module/Admin/DBSync.php:47 #, php-format msgid "Executing of database structure update %s failed with error: %s" msgstr "" -#: src/Module/Admin/DBSync.php:76 +#: src/Module/Admin/DBSync.php:62 #, php-format msgid "Executing %s failed with error: %s" msgstr "" -#: src/Module/Admin/DBSync.php:78 +#: src/Module/Admin/DBSync.php:64 #, php-format msgid "Update %s was successfully applied." msgstr "Uppfærsla %s framkvæmd." -#: src/Module/Admin/DBSync.php:81 +#: src/Module/Admin/DBSync.php:67 #, php-format msgid "Update %s did not return a status. Unknown if it succeeded." msgstr "Uppfærsla %s skilaði ekki gildi. Óvíst hvort tókst." -#: src/Module/Admin/DBSync.php:84 +#: src/Module/Admin/DBSync.php:70 #, php-format msgid "There was no additional update function %s that needed to be called." msgstr "" -#: src/Module/Admin/DBSync.php:105 +#: src/Module/Admin/DBSync.php:91 msgid "No failed updates." msgstr "Engar uppfærslur mistókust." -#: src/Module/Admin/DBSync.php:106 +#: src/Module/Admin/DBSync.php:92 msgid "Check database structure" msgstr "" -#: src/Module/Admin/DBSync.php:110 +#: src/Module/Admin/DBSync.php:96 msgid "Failed Updates" msgstr "Uppfærslur sem mistókust" -#: src/Module/Admin/DBSync.php:111 +#: src/Module/Admin/DBSync.php:97 msgid "" "This does not include updates prior to 1139, which did not return a status." msgstr "Þetta á ekki við uppfærslur fyrir 1139, þær skiluðu ekki lokastöðu." -#: src/Module/Admin/DBSync.php:112 +#: src/Module/Admin/DBSync.php:98 msgid "Mark success (if update was manually applied)" msgstr "Merkja sem tókst (ef uppfærsla var framkvæmd handvirkt)" -#: src/Module/Admin/DBSync.php:113 +#: src/Module/Admin/DBSync.php:99 msgid "Attempt to execute this update step automatically" msgstr "Framkvæma þessa uppfærslu sjálfkrafa" -#: src/Module/Admin/Features.php:67 -#: src/Module/Notifications/Introductions.php:144 -#: src/Module/OAuth/Acknowledge.php:55 src/Module/Register.php:132 -#: src/Module/Settings/TwoFactor/Trusted.php:129 +#: src/Module/Admin/Features.php:53 +#: src/Module/Notifications/Introductions.php:136 +#: src/Module/OAuth/Acknowledge.php:41 src/Module/Register.php:124 +#: src/Module/Settings/TwoFactor/Trusted.php:115 msgid "No" msgstr "Nei" -#: src/Module/Admin/Features.php:67 src/Module/Contact/Revoke.php:108 -#: src/Module/Notifications/Introductions.php:144 -#: src/Module/OAuth/Acknowledge.php:54 src/Module/Register.php:131 -#: src/Module/Settings/TwoFactor/Trusted.php:129 +#: src/Module/Admin/Features.php:53 src/Module/Contact/Revoke.php:91 +#: src/Module/Notifications/Introductions.php:136 +#: src/Module/OAuth/Acknowledge.php:40 src/Module/Register.php:123 +#: src/Module/Settings/TwoFactor/Trusted.php:115 msgid "Yes" msgstr "Já" -#: src/Module/Admin/Features.php:67 +#: src/Module/Admin/Features.php:53 msgid "Locked" msgstr "" -#: src/Module/Admin/Features.php:81 +#: src/Module/Admin/Features.php:67 msgid "Manage Additional Features" msgstr "" -#: src/Module/Admin/Federation.php:82 -#: src/Module/Moderation/Report/Create.php:191 -#: src/Module/Moderation/Report/Create.php:316 +#: src/Module/Admin/Federation.php:68 +#: src/Module/Moderation/Report/Create.php:177 +#: src/Module/Moderation/Report/Create.php:302 msgid "Other" msgstr "Annað" -#: src/Module/Admin/Federation.php:160 src/Module/Admin/Federation.php:408 +#: src/Module/Admin/Federation.php:146 src/Module/Admin/Federation.php:394 msgid "unknown" msgstr "óþekkt" -#: src/Module/Admin/Federation.php:193 +#: src/Module/Admin/Federation.php:179 #, php-format msgid "%2$s total system" msgid_plural "%2$s total systems" msgstr[0] "" msgstr[1] "" -#: src/Module/Admin/Federation.php:194 +#: src/Module/Admin/Federation.php:180 #, php-format msgid "%2$s active user last month" msgid_plural "%2$s active users last month" msgstr[0] "" msgstr[1] "" -#: src/Module/Admin/Federation.php:195 +#: src/Module/Admin/Federation.php:181 #, php-format msgid "%2$s active user last six months" msgid_plural "%2$s active users last six months" msgstr[0] "" msgstr[1] "" -#: src/Module/Admin/Federation.php:196 +#: src/Module/Admin/Federation.php:182 #, php-format msgid "%2$s registered user" msgid_plural "%2$s registered users" msgstr[0] "" msgstr[1] "" -#: src/Module/Admin/Federation.php:197 +#: src/Module/Admin/Federation.php:183 #, php-format msgid "%2$s locally created post or comment" msgid_plural "%2$s locally created posts and comments" msgstr[0] "" msgstr[1] "" -#: src/Module/Admin/Federation.php:200 +#: src/Module/Admin/Federation.php:186 #, php-format msgid "%2$s post per user" msgid_plural "%2$s posts per user" msgstr[0] "" msgstr[1] "" -#: src/Module/Admin/Federation.php:205 +#: src/Module/Admin/Federation.php:191 #, php-format msgid "%2$s user per system" msgid_plural "%2$s users per system" msgstr[0] "" msgstr[1] "" -#: src/Module/Admin/Federation.php:215 +#: src/Module/Admin/Federation.php:201 msgid "" "This page offers you some numbers to the known part of the federated social " "network your Friendica node is part of. These numbers are not complete but " "only reflect the part of the network your node is aware of." msgstr "" -#: src/Module/Admin/Federation.php:221 src/Module/BaseAdmin.php:87 +#: src/Module/Admin/Federation.php:207 src/Module/BaseAdmin.php:73 msgid "Federation Statistics" msgstr "Tölfræði þjónasambands" -#: src/Module/Admin/Federation.php:224 +#: src/Module/Admin/Federation.php:210 #, php-format msgid "" "Currently this node is aware of %2$s node (%3$s active users last month, " @@ -4235,58 +4235,58 @@ msgid_plural "" msgstr[0] "" msgstr[1] "" -#: src/Module/Admin/Logs/Settings.php:47 +#: src/Module/Admin/Logs/Settings.php:33 #, php-format msgid "The logfile '%s' is not writable. No logging possible" msgstr "" -#: src/Module/Admin/Logs/Settings.php:80 +#: src/Module/Admin/Logs/Settings.php:66 msgid "PHP log currently enabled." msgstr "" -#: src/Module/Admin/Logs/Settings.php:82 +#: src/Module/Admin/Logs/Settings.php:68 msgid "PHP log currently disabled." msgstr "" -#: src/Module/Admin/Logs/Settings.php:89 src/Module/BaseAdmin.php:102 -#: src/Module/BaseAdmin.php:103 +#: src/Module/Admin/Logs/Settings.php:75 src/Module/BaseAdmin.php:88 +#: src/Module/BaseAdmin.php:89 msgid "Logs" msgstr "Atburðaskrá" -#: src/Module/Admin/Logs/Settings.php:91 +#: src/Module/Admin/Logs/Settings.php:77 msgid "Clear" msgstr "Hreinsa" -#: src/Module/Admin/Logs/Settings.php:94 +#: src/Module/Admin/Logs/Settings.php:80 msgid "Enable Debugging" msgstr "" -#: src/Module/Admin/Logs/Settings.php:94 src/Module/Admin/Logs/Settings.php:95 -#: src/Module/Admin/Logs/Settings.php:96 src/Module/Admin/Site.php:478 -#: src/Module/Admin/Site.php:486 +#: src/Module/Admin/Logs/Settings.php:80 src/Module/Admin/Logs/Settings.php:81 +#: src/Module/Admin/Logs/Settings.php:82 src/Module/Admin/Site.php:470 +#: src/Module/Admin/Site.php:478 msgid "" "Read-only because it is set by an environment variable" msgstr "" -#: src/Module/Admin/Logs/Settings.php:95 +#: src/Module/Admin/Logs/Settings.php:81 msgid "Log file" msgstr "Atburðaskrá" -#: src/Module/Admin/Logs/Settings.php:95 +#: src/Module/Admin/Logs/Settings.php:81 msgid "" "Must be writable by web server. Relative to your Friendica top-level " "directory." msgstr "Vefþjónn verður að hafa skrifréttindi. Afstætt við Friendica rótar skráarsafn." -#: src/Module/Admin/Logs/Settings.php:96 +#: src/Module/Admin/Logs/Settings.php:82 msgid "Log level" msgstr "Stig atburðaskráningar" -#: src/Module/Admin/Logs/Settings.php:98 +#: src/Module/Admin/Logs/Settings.php:84 msgid "PHP logging" msgstr "" -#: src/Module/Admin/Logs/Settings.php:99 +#: src/Module/Admin/Logs/Settings.php:85 msgid "" "To temporarily enable logging of PHP errors and warnings you can prepend the" " following to the index.php file of your installation. The filename set in " @@ -4295,402 +4295,407 @@ msgid "" "'display_errors' is to enable these options, set to '0' to disable them." msgstr "" -#: src/Module/Admin/Logs/View.php:72 +#: src/Module/Admin/Logs/View.php:58 #, php-format msgid "" "Error trying to open %1$s log file.
Check to see if " "file %1$s exist and is readable." msgstr "" -#: src/Module/Admin/Logs/View.php:81 +#: src/Module/Admin/Logs/View.php:67 #, php-format msgid "" "Couldn't open %1$s log file.
Check to see if file %1$s " "is readable." msgstr "" -#: src/Module/Admin/Logs/View.php:86 src/Module/BaseAdmin.php:104 +#: src/Module/Admin/Logs/View.php:72 src/Module/BaseAdmin.php:90 msgid "View Logs" msgstr "Skoða atburðaskrár" -#: src/Module/Admin/Logs/View.php:89 +#: src/Module/Admin/Logs/View.php:75 msgid "Search in logs" msgstr "" -#: src/Module/Admin/Logs/View.php:90 -#: src/Module/Notifications/Notifications.php:140 +#: src/Module/Admin/Logs/View.php:76 +#: src/Module/Notifications/Notifications.php:132 msgid "Show all" msgstr "Birta allt" -#: src/Module/Admin/Logs/View.php:91 +#: src/Module/Admin/Logs/View.php:77 msgid "Date" msgstr "" -#: src/Module/Admin/Logs/View.php:92 +#: src/Module/Admin/Logs/View.php:78 msgid "Level" msgstr "" -#: src/Module/Admin/Logs/View.php:93 +#: src/Module/Admin/Logs/View.php:79 msgid "Context" msgstr "" -#: src/Module/Admin/Logs/View.php:95 +#: src/Module/Admin/Logs/View.php:81 msgid "ALL" msgstr "" -#: src/Module/Admin/Logs/View.php:96 +#: src/Module/Admin/Logs/View.php:82 msgid "View details" msgstr "" -#: src/Module/Admin/Logs/View.php:97 +#: src/Module/Admin/Logs/View.php:83 msgid "Click to view details" msgstr "" -#: src/Module/Admin/Logs/View.php:98 src/Module/Calendar/Event/Form.php:207 +#: src/Module/Admin/Logs/View.php:84 src/Module/Calendar/Event/Form.php:193 msgid "Event details" msgstr "Nánar um atburð" -#: src/Module/Admin/Logs/View.php:99 +#: src/Module/Admin/Logs/View.php:85 msgid "Data" msgstr "" -#: src/Module/Admin/Logs/View.php:100 -#: src/Module/Debug/ActivityPubConversion.php:57 +#: src/Module/Admin/Logs/View.php:86 +#: src/Module/Debug/ActivityPubConversion.php:49 msgid "Source" msgstr "" -#: src/Module/Admin/Logs/View.php:101 +#: src/Module/Admin/Logs/View.php:87 msgid "File" msgstr "" -#: src/Module/Admin/Logs/View.php:102 +#: src/Module/Admin/Logs/View.php:88 msgid "Line" msgstr "" -#: src/Module/Admin/Logs/View.php:103 +#: src/Module/Admin/Logs/View.php:89 msgid "Function" msgstr "" -#: src/Module/Admin/Logs/View.php:104 +#: src/Module/Admin/Logs/View.php:90 msgid "UID" msgstr "" -#: src/Module/Admin/Logs/View.php:105 +#: src/Module/Admin/Logs/View.php:91 msgid "Process ID" msgstr "" -#: src/Module/Admin/Logs/View.php:106 +#: src/Module/Admin/Logs/View.php:92 msgid "Close" msgstr "" -#: src/Module/Admin/Queue.php:50 +#: src/Module/Admin/Queue.php:36 msgid "Inspect Deferred Worker Queue" msgstr "" -#: src/Module/Admin/Queue.php:51 +#: src/Module/Admin/Queue.php:37 msgid "" "This page lists the deferred worker jobs. This are jobs that couldn't be " "executed at the first time." msgstr "" -#: src/Module/Admin/Queue.php:54 +#: src/Module/Admin/Queue.php:40 msgid "Inspect Worker Queue" msgstr "" -#: src/Module/Admin/Queue.php:55 +#: src/Module/Admin/Queue.php:41 msgid "" "This page lists the currently queued worker jobs. These jobs are handled by " "the worker cronjob you've set up during install." msgstr "" -#: src/Module/Admin/Queue.php:76 +#: src/Module/Admin/Queue.php:62 msgid "ID" msgstr "Auðkenni (ID)" -#: src/Module/Admin/Queue.php:77 +#: src/Module/Admin/Queue.php:63 msgid "Command" msgstr "" -#: src/Module/Admin/Queue.php:78 +#: src/Module/Admin/Queue.php:64 msgid "Job Parameters" msgstr "" -#: src/Module/Admin/Queue.php:79 src/Module/Moderation/Reports.php:110 -#: src/Module/Settings/OAuth.php:74 +#: src/Module/Admin/Queue.php:65 src/Module/Moderation/Reports.php:102 +#: src/Module/Settings/OAuth.php:60 msgid "Created" msgstr "Búið til" -#: src/Module/Admin/Queue.php:80 +#: src/Module/Admin/Queue.php:66 msgid "Next Try" msgstr "" -#: src/Module/Admin/Queue.php:81 +#: src/Module/Admin/Queue.php:67 msgid "Priority" msgstr "" -#: src/Module/Admin/Site.php:243 +#: src/Module/Admin/Site.php:230 +#, php-format +msgid "%s is no valid input for maximum media size" +msgstr "" + +#: src/Module/Admin/Site.php:235 #, 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:362 src/Module/Settings/Display.php:201 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:379 src/Module/Settings/Display.php:211 #, php-format msgid "%s - (Experimental)" msgstr "%s - (á tilraunastigi)" -#: src/Module/Admin/Site.php:399 +#: src/Module/Admin/Site.php:391 msgid "No community page" msgstr "" -#: src/Module/Admin/Site.php:400 +#: src/Module/Admin/Site.php:392 msgid "No community page for visitors" msgstr "" -#: src/Module/Admin/Site.php:401 +#: src/Module/Admin/Site.php:393 msgid "Public postings from users of this site" msgstr "" -#: src/Module/Admin/Site.php:402 +#: src/Module/Admin/Site.php:394 msgid "Public postings from the federated network" msgstr "" -#: src/Module/Admin/Site.php:403 +#: src/Module/Admin/Site.php:395 msgid "Public postings from local users and the federated network" msgstr "" -#: src/Module/Admin/Site.php:409 +#: src/Module/Admin/Site.php:401 msgid "Multi user instance" msgstr "" -#: src/Module/Admin/Site.php:432 +#: src/Module/Admin/Site.php:424 msgid "Closed" msgstr "Lokað" -#: src/Module/Admin/Site.php:433 +#: src/Module/Admin/Site.php:425 msgid "Requires approval" msgstr "Þarf samþykki" -#: src/Module/Admin/Site.php:434 +#: src/Module/Admin/Site.php:426 msgid "Open" msgstr "Opið" -#: src/Module/Admin/Site.php:438 +#: src/Module/Admin/Site.php:430 msgid "Don't check" msgstr "" -#: src/Module/Admin/Site.php:439 +#: src/Module/Admin/Site.php:431 msgid "check the stable version" msgstr "" -#: src/Module/Admin/Site.php:440 +#: src/Module/Admin/Site.php:432 msgid "check the development version" msgstr "" -#: src/Module/Admin/Site.php:444 +#: src/Module/Admin/Site.php:436 msgid "none" msgstr "" -#: src/Module/Admin/Site.php:445 +#: src/Module/Admin/Site.php:437 msgid "Local contacts" msgstr "" -#: src/Module/Admin/Site.php:446 +#: src/Module/Admin/Site.php:438 msgid "Interactors" msgstr "" -#: src/Module/Admin/Site.php:456 src/Module/BaseAdmin.php:90 +#: src/Module/Admin/Site.php:448 src/Module/BaseAdmin.php:76 msgid "Site" msgstr "Vefur" -#: src/Module/Admin/Site.php:457 +#: src/Module/Admin/Site.php:449 msgid "General Information" msgstr "" -#: src/Module/Admin/Site.php:459 +#: src/Module/Admin/Site.php:451 msgid "Republish users to directory" msgstr "" -#: src/Module/Admin/Site.php:460 src/Module/Register.php:153 +#: src/Module/Admin/Site.php:452 src/Module/Register.php:145 msgid "Registration" msgstr "Nýskráning" -#: src/Module/Admin/Site.php:461 +#: src/Module/Admin/Site.php:453 msgid "File upload" msgstr "Hlaða upp skrá" -#: src/Module/Admin/Site.php:462 +#: src/Module/Admin/Site.php:454 msgid "Policies" msgstr "Stefna" -#: src/Module/Admin/Site.php:463 src/Module/Calendar/Event/Form.php:252 -#: src/Module/Contact.php:546 src/Module/Profile/Profile.php:276 +#: src/Module/Admin/Site.php:455 src/Module/Calendar/Event/Form.php:238 +#: src/Module/Contact.php:528 src/Module/Profile/Profile.php:264 msgid "Advanced" msgstr "Flóknari" -#: src/Module/Admin/Site.php:464 +#: src/Module/Admin/Site.php:456 msgid "Auto Discovered Contact Directory" msgstr "" -#: src/Module/Admin/Site.php:465 +#: src/Module/Admin/Site.php:457 msgid "Performance" msgstr "Afköst" -#: src/Module/Admin/Site.php:466 +#: src/Module/Admin/Site.php:458 msgid "Worker" msgstr "" -#: src/Module/Admin/Site.php:467 +#: src/Module/Admin/Site.php:459 msgid "Message Relay" msgstr "" -#: src/Module/Admin/Site.php:468 +#: src/Module/Admin/Site.php:460 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:461 msgid "The system is not subscribed to any relays at the moment." msgstr "" -#: src/Module/Admin/Site.php:470 +#: src/Module/Admin/Site.php:462 msgid "The system is currently subscribed to the following relays:" msgstr "" -#: src/Module/Admin/Site.php:473 +#: src/Module/Admin/Site.php:465 msgid "Relocate Node" msgstr "" -#: src/Module/Admin/Site.php:474 +#: src/Module/Admin/Site.php:466 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:467 msgid "(Friendica directory)# bin/console relocate https://newdomain.com" msgstr "" -#: src/Module/Admin/Site.php:478 +#: src/Module/Admin/Site.php:470 msgid "Site name" msgstr "Nafn vefsvæðis" -#: src/Module/Admin/Site.php:479 +#: src/Module/Admin/Site.php:471 msgid "Sender Email" msgstr "Tölvupóstfang sendanda" -#: src/Module/Admin/Site.php:479 +#: src/Module/Admin/Site.php:471 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:472 msgid "Name of the system actor" msgstr "" -#: src/Module/Admin/Site.php:480 +#: src/Module/Admin/Site.php:472 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:473 msgid "Banner/Logo" msgstr "Borði/Merki" -#: src/Module/Admin/Site.php:482 +#: src/Module/Admin/Site.php:474 msgid "Email Banner/Logo" msgstr "" -#: src/Module/Admin/Site.php:483 +#: src/Module/Admin/Site.php:475 msgid "Shortcut icon" msgstr "Táknmynd flýtivísunar" -#: src/Module/Admin/Site.php:483 +#: src/Module/Admin/Site.php:475 msgid "Link to an icon that will be used for browsers." msgstr "" -#: src/Module/Admin/Site.php:484 +#: src/Module/Admin/Site.php:476 msgid "Touch icon" msgstr "" -#: src/Module/Admin/Site.php:484 +#: src/Module/Admin/Site.php:476 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:477 msgid "Additional Info" msgstr "Viðbótarupplýsingar" -#: src/Module/Admin/Site.php:485 +#: src/Module/Admin/Site.php:477 #, 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:478 msgid "System language" msgstr "Tungumál kerfis" -#: src/Module/Admin/Site.php:487 +#: src/Module/Admin/Site.php:479 msgid "System theme" msgstr "Þema kerfis" -#: src/Module/Admin/Site.php:487 +#: src/Module/Admin/Site.php:479 #, 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:480 msgid "Mobile system theme" msgstr "" -#: src/Module/Admin/Site.php:488 +#: src/Module/Admin/Site.php:480 msgid "Theme for mobile devices" msgstr "" -#: src/Module/Admin/Site.php:489 +#: src/Module/Admin/Site.php:481 msgid "Force SSL" msgstr "Þvinga SSL" -#: src/Module/Admin/Site.php:489 +#: src/Module/Admin/Site.php:481 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:482 msgid "Show help entry from navigation menu" msgstr "" -#: src/Module/Admin/Site.php:490 +#: src/Module/Admin/Site.php:482 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:483 msgid "Single user instance" msgstr "" -#: src/Module/Admin/Site.php:491 +#: src/Module/Admin/Site.php:483 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:485 msgid "Maximum image size" msgstr "Mesta stærð mynda" -#: src/Module/Admin/Site.php:493 +#: src/Module/Admin/Site.php:485 #, 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" @@ -4698,35 +4703,47 @@ 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:489 msgid "Maximum image length" msgstr "" -#: src/Module/Admin/Site.php:497 +#: src/Module/Admin/Site.php:489 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:490 msgid "JPEG image quality" msgstr "JPEG myndgæði" -#: src/Module/Admin/Site.php:498 +#: src/Module/Admin/Site.php:490 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:491 +msgid "Maximum media file size" +msgstr "" + +#: src/Module/Admin/Site.php:491 +#, php-format +msgid "" +"Maximum size in bytes of uploaded media files. Default is 0, which means no limits. You can put k, m, or g behind the desired value for KiB, MiB, GiB, respectively.\n" +"\t\t\t\t\t\t\t\t\t\t\t\t\tThe value of upload_max_filesize in your PHP.ini needs be set to at least the desired limit.\n" +"\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:496 msgid "Register policy" msgstr "Stefna varðandi nýskráningar" -#: src/Module/Admin/Site.php:501 +#: src/Module/Admin/Site.php:497 msgid "Maximum Users" msgstr "" -#: src/Module/Admin/Site.php:501 +#: src/Module/Admin/Site.php:497 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 " @@ -4734,167 +4751,167 @@ msgid "" "not when the policy is set to approval." msgstr "" -#: src/Module/Admin/Site.php:502 +#: src/Module/Admin/Site.php:498 msgid "Maximum Daily Registrations" msgstr "" -#: src/Module/Admin/Site.php:502 +#: src/Module/Admin/Site.php:498 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:499 msgid "Register text" msgstr "Texti við nýskráningu" -#: src/Module/Admin/Site.php:503 +#: src/Module/Admin/Site.php:499 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:500 msgid "Forbidden Nicknames" msgstr "" -#: src/Module/Admin/Site.php:504 +#: src/Module/Admin/Site.php:500 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:501 msgid "Accounts abandoned after x days" msgstr "Yfirgefnir notendur eftir x daga" -#: src/Module/Admin/Site.php:505 +#: src/Module/Admin/Site.php:501 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:502 msgid "Allowed friend domains" msgstr "Leyfð lén vina" -#: src/Module/Admin/Site.php:506 +#: src/Module/Admin/Site.php:502 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:503 msgid "Allowed email domains" msgstr "Leyfð tölvupóstfangalén" -#: src/Module/Admin/Site.php:507 +#: src/Module/Admin/Site.php:503 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:504 msgid "Disallowed email domains" msgstr "" -#: src/Module/Admin/Site.php:508 +#: src/Module/Admin/Site.php:504 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:509 +#: src/Module/Admin/Site.php:505 msgid "No OEmbed rich content" msgstr "" -#: src/Module/Admin/Site.php:509 +#: src/Module/Admin/Site.php:505 msgid "" "Don't show the rich content (e.g. embedded PDF), except from the domains " "listed below." msgstr "" -#: src/Module/Admin/Site.php:510 +#: src/Module/Admin/Site.php:506 msgid "Trusted third-party domains" msgstr "" -#: src/Module/Admin/Site.php:510 +#: src/Module/Admin/Site.php:506 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:511 +#: src/Module/Admin/Site.php:507 msgid "Block public" msgstr "Loka á opinberar færslur" -#: src/Module/Admin/Site.php:511 +#: src/Module/Admin/Site.php:507 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:512 +#: src/Module/Admin/Site.php:508 msgid "Force publish" msgstr "Skylda að vera í tengiliðalista" -#: src/Module/Admin/Site.php:512 +#: src/Module/Admin/Site.php:508 msgid "" "Check to force all profiles on this site to be listed in the site directory." msgstr "" -#: src/Module/Admin/Site.php:512 +#: src/Module/Admin/Site.php:508 msgid "Enabling this may violate privacy laws like the GDPR" msgstr "" -#: src/Module/Admin/Site.php:513 +#: src/Module/Admin/Site.php:509 msgid "Global directory URL" msgstr "" -#: src/Module/Admin/Site.php:513 +#: src/Module/Admin/Site.php:509 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:514 +#: src/Module/Admin/Site.php:510 msgid "Private posts by default for new users" msgstr "" -#: src/Module/Admin/Site.php:514 +#: src/Module/Admin/Site.php:510 msgid "" "Set default post permissions for all new members to the default privacy " "circle rather than public." msgstr "" -#: src/Module/Admin/Site.php:515 +#: src/Module/Admin/Site.php:511 msgid "Don't include post content in email notifications" msgstr "" -#: src/Module/Admin/Site.php:515 +#: src/Module/Admin/Site.php:511 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:516 +#: src/Module/Admin/Site.php:512 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:516 +#: src/Module/Admin/Site.php:512 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:517 +#: src/Module/Admin/Site.php:513 msgid "Don't embed private images in posts" msgstr "" -#: src/Module/Admin/Site.php:517 +#: src/Module/Admin/Site.php:513 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 " @@ -4902,11 +4919,11 @@ msgid "" "while." msgstr "" -#: src/Module/Admin/Site.php:518 +#: src/Module/Admin/Site.php:514 msgid "Explicit Content" msgstr "" -#: src/Module/Admin/Site.php:518 +#: src/Module/Admin/Site.php:514 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 " @@ -4915,329 +4932,319 @@ msgid "" "will be shown at the user registration page." msgstr "" -#: src/Module/Admin/Site.php:519 +#: src/Module/Admin/Site.php:515 msgid "Only local search" msgstr "" -#: src/Module/Admin/Site.php:519 +#: src/Module/Admin/Site.php:515 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:516 msgid "Blocked tags for trending tags" msgstr "" -#: src/Module/Admin/Site.php:520 +#: src/Module/Admin/Site.php:516 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:517 msgid "Cache contact avatars" msgstr "" -#: src/Module/Admin/Site.php:521 +#: src/Module/Admin/Site.php:517 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:518 msgid "Allow Users to set remote_self" msgstr "" -#: src/Module/Admin/Site.php:522 +#: src/Module/Admin/Site.php:518 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:519 msgid "Allow Users to set up relay channels" msgstr "" -#: src/Module/Admin/Site.php:523 +#: src/Module/Admin/Site.php:519 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:520 msgid "Adjust the feed poll frequency" msgstr "" -#: src/Module/Admin/Site.php:524 +#: src/Module/Admin/Site.php:520 msgid "Automatically detect and set the best feed poll frequency." msgstr "" -#: src/Module/Admin/Site.php:525 +#: src/Module/Admin/Site.php:521 msgid "Minimum poll interval" msgstr "" -#: src/Module/Admin/Site.php:525 +#: src/Module/Admin/Site.php:521 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:522 msgid "Enable multiple registrations" msgstr "" -#: src/Module/Admin/Site.php:526 +#: src/Module/Admin/Site.php:522 msgid "Enable users to register additional accounts for use as pages." msgstr "" -#: src/Module/Admin/Site.php:527 +#: src/Module/Admin/Site.php:523 msgid "Enable OpenID" msgstr "" -#: src/Module/Admin/Site.php:527 +#: src/Module/Admin/Site.php:523 msgid "Enable OpenID support for registration and logins." msgstr "" -#: src/Module/Admin/Site.php:528 +#: src/Module/Admin/Site.php:524 msgid "Enable full name check" msgstr "" -#: src/Module/Admin/Site.php:528 +#: src/Module/Admin/Site.php:524 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:525 msgid "Email administrators on new registration" msgstr "" -#: src/Module/Admin/Site.php:529 +#: src/Module/Admin/Site.php:525 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:526 msgid "Community pages for visitors" msgstr "" -#: src/Module/Admin/Site.php:530 +#: src/Module/Admin/Site.php:526 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:527 msgid "Posts per user on community page" msgstr "" -#: src/Module/Admin/Site.php:531 +#: src/Module/Admin/Site.php:527 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:528 msgid "Posts per server on community page" msgstr "" -#: src/Module/Admin/Site.php:532 +#: src/Module/Admin/Site.php:528 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:530 msgid "Enable Mail support" msgstr "" -#: src/Module/Admin/Site.php:534 +#: src/Module/Admin/Site.php:530 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:531 msgid "" "Mail support can't be enabled because the PHP IMAP module is not installed." msgstr "" -#: src/Module/Admin/Site.php:536 -msgid "Enable OStatus support" -msgstr "" - -#: src/Module/Admin/Site.php:536 -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:533 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:534 msgid "Enable Diaspora support" msgstr "Leyfa Diaspora tengingar" -#: src/Module/Admin/Site.php:539 +#: src/Module/Admin/Site.php:534 msgid "" "Enable built-in Diaspora network compatibility for communicating with " "diaspora servers." msgstr "" -#: src/Module/Admin/Site.php:540 +#: src/Module/Admin/Site.php:535 msgid "Verify SSL" msgstr "Sannreyna SSL" -#: src/Module/Admin/Site.php:540 +#: src/Module/Admin/Site.php:535 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:536 msgid "Proxy user" msgstr "Proxy notandi" -#: src/Module/Admin/Site.php:541 +#: src/Module/Admin/Site.php:536 msgid "User name for the proxy server." msgstr "" -#: src/Module/Admin/Site.php:542 +#: src/Module/Admin/Site.php:537 msgid "Proxy URL" msgstr "Proxy slóð" -#: src/Module/Admin/Site.php:542 +#: src/Module/Admin/Site.php:537 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:538 msgid "Network timeout" msgstr "Net tími útrunninn" -#: src/Module/Admin/Site.php:543 +#: src/Module/Admin/Site.php:538 msgid "Value is in seconds. Set to 0 for unlimited (not recommended)." msgstr "" -#: src/Module/Admin/Site.php:544 +#: src/Module/Admin/Site.php:539 msgid "Maximum Load Average" msgstr "Mesta meðaltals álag" -#: src/Module/Admin/Site.php:544 +#: src/Module/Admin/Site.php:539 #, 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:540 msgid "Minimal Memory" msgstr "" -#: src/Module/Admin/Site.php:545 +#: src/Module/Admin/Site.php:540 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:541 msgid "Periodically optimize tables" msgstr "" -#: src/Module/Admin/Site.php:546 +#: src/Module/Admin/Site.php:541 msgid "Periodically optimize tables like the cache and the workerqueue" msgstr "" -#: src/Module/Admin/Site.php:548 +#: src/Module/Admin/Site.php:543 msgid "Discover followers/followings from contacts" msgstr "" -#: src/Module/Admin/Site.php:548 +#: src/Module/Admin/Site.php:543 msgid "" "If enabled, contacts are checked for their followers and following contacts." msgstr "" -#: src/Module/Admin/Site.php:549 +#: src/Module/Admin/Site.php:544 msgid "None - deactivated" msgstr "" -#: src/Module/Admin/Site.php:550 +#: src/Module/Admin/Site.php:545 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:546 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:548 msgid "Only update contacts/servers with local data" msgstr "" -#: src/Module/Admin/Site.php:553 +#: src/Module/Admin/Site.php:548 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:549 msgid "Synchronize the contacts with the directory server" msgstr "" -#: src/Module/Admin/Site.php:554 +#: src/Module/Admin/Site.php:549 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:551 msgid "Discover contacts from other servers" msgstr "" -#: src/Module/Admin/Site.php:556 +#: src/Module/Admin/Site.php:551 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:552 msgid "Days between requery" msgstr "" -#: src/Module/Admin/Site.php:557 +#: src/Module/Admin/Site.php:552 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:553 msgid "Search the local directory" msgstr "" -#: src/Module/Admin/Site.php:558 +#: src/Module/Admin/Site.php:553 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:555 msgid "Publish server information" msgstr "" -#: src/Module/Admin/Site.php:560 +#: src/Module/Admin/Site.php:555 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 " @@ -5245,50 +5252,50 @@ msgid "" " href=\"http://the-federation.info/\">the-federation.info for details." msgstr "" -#: src/Module/Admin/Site.php:562 +#: src/Module/Admin/Site.php:557 msgid "Check upstream version" msgstr "" -#: src/Module/Admin/Site.php:562 +#: src/Module/Admin/Site.php:557 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:558 msgid "Suppress Tags" msgstr "" -#: src/Module/Admin/Site.php:563 +#: src/Module/Admin/Site.php:558 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:559 msgid "Clean database" msgstr "" -#: src/Module/Admin/Site.php:564 +#: src/Module/Admin/Site.php:559 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:560 msgid "Lifespan of remote items" msgstr "Líftími fjartengdra atriða" -#: src/Module/Admin/Site.php:565 +#: src/Module/Admin/Site.php:560 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:561 msgid "Lifespan of unclaimed items" msgstr "" -#: src/Module/Admin/Site.php:566 +#: src/Module/Admin/Site.php:561 msgid "" "When the database cleanup is enabled, this defines the days after which " "unclaimed remote items (mostly content from the relay) will be deleted. " @@ -5296,175 +5303,184 @@ msgid "" "items if set to 0." msgstr "" -#: src/Module/Admin/Site.php:567 +#: src/Module/Admin/Site.php:562 msgid "Lifespan of raw conversation data" msgstr "" -#: src/Module/Admin/Site.php:567 +#: src/Module/Admin/Site.php:562 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." +"The conversation data is used for ActivityPub, 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:563 msgid "Maximum numbers of comments per post" msgstr "" -#: src/Module/Admin/Site.php:568 +#: src/Module/Admin/Site.php:563 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:564 msgid "Maximum numbers of comments per post on the display page" msgstr "" -#: src/Module/Admin/Site.php:569 +#: src/Module/Admin/Site.php:564 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:565 msgid "Items per page" msgstr "" -#: src/Module/Admin/Site.php:570 +#: src/Module/Admin/Site.php:565 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:566 msgid "Items per page for mobile devices" msgstr "" -#: src/Module/Admin/Site.php:571 +#: src/Module/Admin/Site.php:566 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:567 msgid "Temp path" msgstr "" -#: src/Module/Admin/Site.php:572 +#: src/Module/Admin/Site.php:567 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:568 msgid "Only search in tags" msgstr "" -#: src/Module/Admin/Site.php:573 +#: src/Module/Admin/Site.php:568 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:569 +msgid "Limited search scope" +msgstr "" + +#: src/Module/Admin/Site.php:569 +msgid "" +"If enabled, searches will only be performed in the data used for the " +"channels and not in all posts." +msgstr "" + +#: src/Module/Admin/Site.php:570 msgid "Maximum age of items in the search table" msgstr "" -#: src/Module/Admin/Site.php:574 +#: src/Module/Admin/Site.php:570 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:571 msgid "Generate counts per contact circle when calculating network count" msgstr "" -#: src/Module/Admin/Site.php:575 +#: src/Module/Admin/Site.php:571 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:572 msgid "Process \"view\" activities" msgstr "" -#: src/Module/Admin/Site.php:576 +#: src/Module/Admin/Site.php:572 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:573 msgid "Days, after which a contact is archived" msgstr "" -#: src/Module/Admin/Site.php:577 +#: src/Module/Admin/Site.php:573 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:575 msgid "Maximum number of parallel workers" msgstr "" -#: src/Module/Admin/Site.php:579 +#: src/Module/Admin/Site.php:575 #, 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:576 msgid "Maximum load for workers" msgstr "" -#: src/Module/Admin/Site.php:580 +#: src/Module/Admin/Site.php:576 msgid "Maximum load that causes a cooldown before each worker function call." msgstr "" -#: src/Module/Admin/Site.php:581 +#: src/Module/Admin/Site.php:577 msgid "Enable fastlane" msgstr "" -#: src/Module/Admin/Site.php:581 +#: src/Module/Admin/Site.php:577 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:578 msgid "Decoupled receiver" msgstr "" -#: src/Module/Admin/Site.php:582 +#: src/Module/Admin/Site.php:578 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:579 msgid "Cron interval" msgstr "" -#: src/Module/Admin/Site.php:583 +#: src/Module/Admin/Site.php:579 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:580 msgid "Worker defer limit" msgstr "" -#: src/Module/Admin/Site.php:584 +#: src/Module/Admin/Site.php:580 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:581 msgid "Worker fetch limit" msgstr "" -#: src/Module/Admin/Site.php:585 +#: src/Module/Admin/Site.php:581 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" @@ -5472,214 +5488,214 @@ msgid "" "system." msgstr "" -#: src/Module/Admin/Site.php:587 +#: src/Module/Admin/Site.php:583 msgid "Direct relay transfer" msgstr "" -#: src/Module/Admin/Site.php:587 +#: src/Module/Admin/Site.php:583 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:584 msgid "Relay scope" msgstr "" -#: src/Module/Admin/Site.php:588 +#: src/Module/Admin/Site.php:584 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:314 -#: src/Module/Settings/TwoFactor/Index.php:146 +#: src/Module/Admin/Site.php:584 src/Module/Contact/Profile.php:314 +#: src/Module/Settings/TwoFactor/Index.php:132 msgid "Disabled" msgstr "Óvirkt" -#: src/Module/Admin/Site.php:588 +#: src/Module/Admin/Site.php:584 msgid "all" msgstr "allt" -#: src/Module/Admin/Site.php:588 +#: src/Module/Admin/Site.php:584 msgid "tags" msgstr "merki" -#: src/Module/Admin/Site.php:589 +#: src/Module/Admin/Site.php:585 msgid "Server tags" msgstr "" -#: src/Module/Admin/Site.php:589 +#: src/Module/Admin/Site.php:585 msgid "Comma separated list of tags for the \"tags\" subscription." msgstr "" -#: src/Module/Admin/Site.php:590 +#: src/Module/Admin/Site.php:586 msgid "Deny Server tags" msgstr "" -#: src/Module/Admin/Site.php:590 +#: src/Module/Admin/Site.php:586 msgid "Comma separated list of tags that are rejected." msgstr "" -#: src/Module/Admin/Site.php:591 +#: src/Module/Admin/Site.php:587 msgid "Maximum amount of tags" msgstr "" -#: src/Module/Admin/Site.php:591 +#: src/Module/Admin/Site.php:587 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:588 msgid "Allow user tags" msgstr "" -#: src/Module/Admin/Site.php:592 +#: src/Module/Admin/Site.php:588 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:589 msgid "Deny undetected languages" msgstr "" -#: src/Module/Admin/Site.php:593 +#: src/Module/Admin/Site.php:589 msgid "If enabled, posts with undetected languages will be rejected." msgstr "" -#: src/Module/Admin/Site.php:594 +#: src/Module/Admin/Site.php:590 msgid "Language Quality" msgstr "" -#: src/Module/Admin/Site.php:594 +#: src/Module/Admin/Site.php:590 msgid "The minimum language quality that is required to accept the post." msgstr "" -#: src/Module/Admin/Site.php:595 +#: src/Module/Admin/Site.php:591 msgid "Number of languages for the language detection" msgstr "" -#: src/Module/Admin/Site.php:595 +#: src/Module/Admin/Site.php:591 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:593 msgid "Maximum age of channel" msgstr "" -#: src/Module/Admin/Site.php:597 +#: src/Module/Admin/Site.php:593 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:594 msgid "Maximum number of channel posts" msgstr "" -#: src/Module/Admin/Site.php:598 +#: src/Module/Admin/Site.php:594 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:595 msgid "Interaction score days" msgstr "" -#: src/Module/Admin/Site.php:599 +#: src/Module/Admin/Site.php:595 msgid "Number of days that are used to calculate the interaction score." msgstr "" -#: src/Module/Admin/Site.php:600 +#: src/Module/Admin/Site.php:596 msgid "Maximum number of posts per author" msgstr "" -#: src/Module/Admin/Site.php:600 +#: src/Module/Admin/Site.php:596 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:597 msgid "Sharer interaction days" msgstr "" -#: src/Module/Admin/Site.php:601 +#: src/Module/Admin/Site.php:597 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:600 msgid "Start Relocation" msgstr "" -#: src/Module/Admin/Storage.php:46 +#: src/Module/Admin/Storage.php:32 #, php-format msgid "Storage backend, %s is invalid." msgstr "" -#: src/Module/Admin/Storage.php:73 +#: src/Module/Admin/Storage.php:59 #, php-format msgid "Storage backend %s error: %s" msgstr "" -#: src/Module/Admin/Storage.php:84 src/Module/Admin/Storage.php:87 +#: src/Module/Admin/Storage.php:70 src/Module/Admin/Storage.php:73 msgid "Invalid storage backend setting value." msgstr "" -#: src/Module/Admin/Storage.php:139 +#: src/Module/Admin/Storage.php:125 msgid "Current Storage Backend" msgstr "" -#: src/Module/Admin/Storage.php:140 +#: src/Module/Admin/Storage.php:126 msgid "Storage Configuration" msgstr "" -#: src/Module/Admin/Storage.php:141 src/Module/BaseAdmin.php:91 +#: src/Module/Admin/Storage.php:127 src/Module/BaseAdmin.php:77 msgid "Storage" msgstr "" -#: src/Module/Admin/Storage.php:143 +#: src/Module/Admin/Storage.php:129 msgid "Save & Use storage backend" msgstr "" -#: src/Module/Admin/Storage.php:144 +#: src/Module/Admin/Storage.php:130 msgid "Use storage backend" msgstr "" -#: src/Module/Admin/Storage.php:145 +#: src/Module/Admin/Storage.php:131 msgid "Save & Reload" msgstr "" -#: src/Module/Admin/Storage.php:146 +#: src/Module/Admin/Storage.php:132 msgid "This backend doesn't have custom settings" msgstr "" -#: src/Module/Admin/Storage.php:148 +#: src/Module/Admin/Storage.php:134 msgid "" "Changing the current backend is prohibited because it is set by an " "environment variable" msgstr "" -#: src/Module/Admin/Storage.php:150 +#: src/Module/Admin/Storage.php:136 msgid "Database (legacy)" msgstr "" -#: src/Module/Admin/Summary.php:55 +#: src/Module/Admin/Summary.php:41 #, php-format msgid "Template engine (%s) error: %s" msgstr "" -#: src/Module/Admin/Summary.php:59 +#: src/Module/Admin/Summary.php:45 #, php-format msgid "" "Your DB still runs with MyISAM tables. You should change the engine type to " @@ -5690,7 +5706,7 @@ msgid "" " an automatic conversion.
" msgstr "" -#: src/Module/Admin/Summary.php:64 +#: src/Module/Admin/Summary.php:50 #, php-format msgid "" "Your DB still runs with InnoDB tables in the Antelope file format. You " @@ -5701,7 +5717,7 @@ msgid "" " installation for an automatic conversion.
" msgstr "" -#: src/Module/Admin/Summary.php:74 +#: src/Module/Admin/Summary.php:60 #, php-format msgid "" "Your table_definition_cache is too low (%d). This can lead to the database " @@ -5709,46 +5725,46 @@ msgid "" " to %d. See here for more information.
" msgstr "" -#: src/Module/Admin/Summary.php:85 +#: src/Module/Admin/Summary.php:71 #, php-format msgid "" "There is a new version of Friendica available for download. Your current " "version is %1$s, upstream version is %2$s" msgstr "" -#: src/Module/Admin/Summary.php:94 +#: src/Module/Admin/Summary.php:80 msgid "" "The database update failed. Please run \"php bin/console.php dbstructure " "update\" from the command line and have a look at the errors that might " "appear." msgstr "" -#: src/Module/Admin/Summary.php:98 +#: src/Module/Admin/Summary.php:84 msgid "" "The last update failed. Please run \"php bin/console.php dbstructure " "update\" from the command line and have a look at the errors that might " "appear. (Some of the errors are possibly inside the logfile.)" msgstr "" -#: src/Module/Admin/Summary.php:102 +#: src/Module/Admin/Summary.php:88 msgid "" "The system.url entry is missing. This is a low level setting and can lead to" " unexpected behavior. Please add a valid entry as soon as possible in the " "config file or per console command!" msgstr "" -#: src/Module/Admin/Summary.php:107 +#: src/Module/Admin/Summary.php:93 msgid "The worker was never executed. Please check your database structure!" msgstr "" -#: src/Module/Admin/Summary.php:109 +#: src/Module/Admin/Summary.php:95 #, php-format msgid "" "The last worker execution was on %s UTC. This is older than one hour. Please" " check your crontab settings." msgstr "" -#: src/Module/Admin/Summary.php:114 +#: src/Module/Admin/Summary.php:100 #, php-format msgid "" "Friendica's configuration now is stored in config/local.config.php, please " @@ -5757,7 +5773,7 @@ msgid "" "help with the transition." msgstr "" -#: src/Module/Admin/Summary.php:118 +#: src/Module/Admin/Summary.php:104 #, php-format msgid "" "Friendica's configuration now is stored in config/local.config.php, please " @@ -5766,7 +5782,7 @@ msgid "" "page for help with the transition." msgstr "" -#: src/Module/Admin/Summary.php:124 +#: src/Module/Admin/Summary.php:110 #, php-format msgid "" "%s is not reachable on your system. This is a severe " @@ -5774,107 +5790,107 @@ msgid "" "href=\"%s\">the installation page for help." msgstr "" -#: src/Module/Admin/Summary.php:148 +#: src/Module/Admin/Summary.php:134 #, php-format msgid "" "Friendica's system.basepath was updated from '%s' to '%s'. Please remove the" " system.basepath from your db to avoid differences." msgstr "" -#: src/Module/Admin/Summary.php:156 +#: src/Module/Admin/Summary.php:142 #, php-format msgid "" "Friendica's current system.basepath '%s' is wrong and the config file '%s' " "isn't used." msgstr "" -#: src/Module/Admin/Summary.php:164 +#: src/Module/Admin/Summary.php:150 #, php-format msgid "" "Friendica's current system.basepath '%s' is not equal to the config file " "'%s'. Please fix your configuration." msgstr "" -#: src/Module/Admin/Summary.php:175 +#: src/Module/Admin/Summary.php:161 msgid "Message queues" msgstr "" -#: src/Module/Admin/Summary.php:181 +#: src/Module/Admin/Summary.php:167 msgid "Server Settings" msgstr "" -#: src/Module/Admin/Summary.php:199 +#: src/Module/Admin/Summary.php:185 msgid "Version" msgstr "Útgáfunúmer" -#: src/Module/Admin/Summary.php:203 +#: src/Module/Admin/Summary.php:189 msgid "Active addons" msgstr "" -#: src/Module/Admin/Themes/Details.php:57 src/Module/Admin/Themes/Index.php:65 +#: src/Module/Admin/Themes/Details.php:49 src/Module/Admin/Themes/Index.php:57 #, php-format msgid "Theme %s disabled." msgstr "" -#: src/Module/Admin/Themes/Details.php:59 src/Module/Admin/Themes/Index.php:67 +#: src/Module/Admin/Themes/Details.php:51 src/Module/Admin/Themes/Index.php:59 #, php-format msgid "Theme %s successfully enabled." msgstr "" -#: src/Module/Admin/Themes/Details.php:61 src/Module/Admin/Themes/Index.php:69 +#: src/Module/Admin/Themes/Details.php:53 src/Module/Admin/Themes/Index.php:61 #, php-format msgid "Theme %s failed to install." msgstr "" -#: src/Module/Admin/Themes/Details.php:83 +#: src/Module/Admin/Themes/Details.php:75 msgid "Screenshot" msgstr "Skjámynd" -#: src/Module/Admin/Themes/Details.php:91 -#: src/Module/Admin/Themes/Index.php:112 src/Module/BaseAdmin.php:93 +#: src/Module/Admin/Themes/Details.php:83 +#: src/Module/Admin/Themes/Index.php:104 src/Module/BaseAdmin.php:79 msgid "Themes" msgstr "Þemu" -#: src/Module/Admin/Themes/Embed.php:80 +#: src/Module/Admin/Themes/Embed.php:66 msgid "Unknown theme." msgstr "" -#: src/Module/Admin/Themes/Index.php:51 +#: src/Module/Admin/Themes/Index.php:43 msgid "Themes reloaded" msgstr "" -#: src/Module/Admin/Themes/Index.php:114 +#: src/Module/Admin/Themes/Index.php:106 msgid "Reload active themes" msgstr "" -#: src/Module/Admin/Themes/Index.php:118 +#: src/Module/Admin/Themes/Index.php:110 #, php-format msgid "No themes found on the system. They should be placed in %1$s" msgstr "" -#: src/Module/Admin/Themes/Index.php:119 +#: src/Module/Admin/Themes/Index.php:111 msgid "[Experimental]" msgstr "[Á tilraunastigi]" -#: src/Module/Admin/Themes/Index.php:120 +#: src/Module/Admin/Themes/Index.php:112 msgid "[Unsupported]" msgstr "[Óstutt]" -#: src/Module/Admin/Tos.php:79 +#: src/Module/Admin/Tos.php:65 msgid "Display Terms of Service" msgstr "" -#: src/Module/Admin/Tos.php:79 +#: src/Module/Admin/Tos.php:65 msgid "" "Enable the Terms of Service page. If this is enabled a link to the terms " "will be added to the registration form and the general information page." msgstr "" -#: src/Module/Admin/Tos.php:80 +#: src/Module/Admin/Tos.php:66 msgid "Display Privacy Statement" msgstr "" -#: src/Module/Admin/Tos.php:80 +#: src/Module/Admin/Tos.php:66 #, php-format msgid "" "Show some informations regarding the needed information to operate the node " @@ -5882,167 +5898,167 @@ msgid "" "noreferrer\">EU-GDPR." msgstr "" -#: src/Module/Admin/Tos.php:81 +#: src/Module/Admin/Tos.php:67 msgid "Privacy Statement Preview" msgstr "" -#: src/Module/Admin/Tos.php:83 +#: src/Module/Admin/Tos.php:69 msgid "The Terms of Service" msgstr "" -#: src/Module/Admin/Tos.php:83 +#: src/Module/Admin/Tos.php:69 msgid "" "Enter the Terms of Service for your node here. You can use BBCode. Headers " "of sections should be [h2] and below." msgstr "" -#: src/Module/Admin/Tos.php:84 +#: src/Module/Admin/Tos.php:70 msgid "The rules" msgstr "" -#: src/Module/Admin/Tos.php:84 +#: src/Module/Admin/Tos.php:70 msgid "Enter your system rules here. Each line represents one rule." msgstr "" -#: src/Module/Api/ApiResponse.php:293 +#: src/Module/Api/ApiResponse.php:279 #, php-format msgid "API endpoint %s %s is not implemented but might be in the future." msgstr "" -#: src/Module/Api/Mastodon/Apps.php:73 +#: src/Module/Api/Mastodon/Apps.php:59 msgid "Missing parameters" msgstr "" -#: src/Module/Api/Mastodon/Statuses/Bookmark.php:50 +#: src/Module/Api/Mastodon/Statuses/Bookmark.php:36 msgid "Only starting posts can be bookmarked" msgstr "" -#: src/Module/Api/Mastodon/Statuses/Mute.php:51 +#: src/Module/Api/Mastodon/Statuses/Mute.php:37 msgid "Only starting posts can be muted" msgstr "" -#: src/Module/Api/Mastodon/Statuses/Reblog.php:58 +#: src/Module/Api/Mastodon/Statuses/Reblog.php:44 #, php-format msgid "Posts from %s can't be shared" msgstr "" -#: src/Module/Api/Mastodon/Statuses/Unbookmark.php:51 +#: src/Module/Api/Mastodon/Statuses/Unbookmark.php:37 msgid "Only starting posts can be unbookmarked" msgstr "" -#: src/Module/Api/Mastodon/Statuses/Unmute.php:51 +#: src/Module/Api/Mastodon/Statuses/Unmute.php:37 msgid "Only starting posts can be unmuted" msgstr "" -#: src/Module/Api/Mastodon/Statuses/Unreblog.php:64 +#: src/Module/Api/Mastodon/Statuses/Unreblog.php:50 #, php-format msgid "Posts from %s can't be unshared" msgstr "" -#: src/Module/Api/Twitter/ContactEndpoint.php:66 +#: src/Module/Api/Twitter/ContactEndpoint.php:52 msgid "Contact not found" msgstr "" -#: src/Module/Apps.php:62 +#: src/Module/Apps.php:48 msgid "No installed applications." msgstr "Engin uppsett forrit" -#: src/Module/Apps.php:67 +#: src/Module/Apps.php:53 msgid "Applications" msgstr "Forrit" -#: src/Module/Attach.php:49 src/Module/Attach.php:61 +#: src/Module/Attach.php:35 src/Module/Attach.php:47 msgid "Item was not found." msgstr "Atriði fannst ekki" -#: src/Module/BaseAdmin.php:54 src/Module/BaseAdmin.php:58 -#: src/Module/BaseModeration.php:77 src/Module/BaseModeration.php:81 +#: src/Module/BaseAdmin.php:40 src/Module/BaseAdmin.php:44 +#: src/Module/BaseModeration.php:63 src/Module/BaseModeration.php:67 msgid "Please login to continue." msgstr "Skráðu þig inn til að halda áfram." -#: src/Module/BaseAdmin.php:63 +#: src/Module/BaseAdmin.php:49 msgid "You don't have access to administration pages." msgstr "" -#: src/Module/BaseAdmin.php:67 +#: src/Module/BaseAdmin.php:53 msgid "" "Submanaged account can't access the administration pages. Please log back in" " as the main account." msgstr "" -#: src/Module/BaseAdmin.php:86 src/Module/BaseModeration.php:109 +#: src/Module/BaseAdmin.php:72 src/Module/BaseModeration.php:95 msgid "Overview" msgstr "Yfirlit" -#: src/Module/BaseAdmin.php:89 src/Module/BaseModeration.php:112 +#: src/Module/BaseAdmin.php:75 src/Module/BaseModeration.php:98 msgid "Configuration" msgstr "Uppsetning" -#: src/Module/BaseAdmin.php:94 src/Module/BaseSettings.php:110 +#: src/Module/BaseAdmin.php:80 src/Module/BaseSettings.php:96 msgid "Additional features" msgstr "Viðbótareiginleikar" -#: src/Module/BaseAdmin.php:97 +#: src/Module/BaseAdmin.php:83 msgid "Database" msgstr "Gagnagrunnur" -#: src/Module/BaseAdmin.php:98 +#: src/Module/BaseAdmin.php:84 msgid "DB updates" msgstr "Gagnagrunnsuppfærslur" -#: src/Module/BaseAdmin.php:99 +#: src/Module/BaseAdmin.php:85 msgid "Inspect Deferred Workers" msgstr "" -#: src/Module/BaseAdmin.php:100 +#: src/Module/BaseAdmin.php:86 msgid "Inspect worker Queue" msgstr "" -#: src/Module/BaseAdmin.php:106 src/Module/BaseModeration.php:120 +#: src/Module/BaseAdmin.php:92 src/Module/BaseModeration.php:106 msgid "Diagnostics" msgstr "Bilanagreining" -#: src/Module/BaseAdmin.php:107 +#: src/Module/BaseAdmin.php:93 msgid "PHP Info" msgstr "PHP-upplýsingar" -#: src/Module/BaseAdmin.php:108 +#: src/Module/BaseAdmin.php:94 msgid "probe address" msgstr "finna vistfang" -#: src/Module/BaseAdmin.php:109 +#: src/Module/BaseAdmin.php:95 msgid "check webfinger" msgstr "" -#: src/Module/BaseAdmin.php:110 +#: src/Module/BaseAdmin.php:96 msgid "Babel" msgstr "" -#: src/Module/BaseAdmin.php:111 src/Module/Debug/ActivityPubConversion.php:137 +#: src/Module/BaseAdmin.php:97 src/Module/Debug/ActivityPubConversion.php:129 msgid "ActivityPub Conversion" msgstr "" -#: src/Module/BaseAdmin.php:120 +#: src/Module/BaseAdmin.php:106 msgid "Addon Features" msgstr "Eiginleikar forritsviðbótar" -#: src/Module/BaseAdmin.php:121 src/Module/BaseModeration.php:129 +#: src/Module/BaseAdmin.php:107 src/Module/BaseModeration.php:115 msgid "User registrations waiting for confirmation" msgstr "Notenda nýskráningar bíða samþykkis" -#: src/Module/BaseApi.php:455 src/Module/BaseApi.php:471 -#: src/Module/BaseApi.php:487 +#: src/Module/BaseApi.php:441 src/Module/BaseApi.php:457 +#: src/Module/BaseApi.php:473 msgid "Too Many Requests" msgstr "" -#: src/Module/BaseApi.php:456 +#: src/Module/BaseApi.php:442 #, php-format msgid "Daily posting limit of %d post reached. The post was rejected." msgid_plural "Daily posting limit of %d posts reached. The post was rejected." msgstr[0] "" msgstr[1] "" -#: src/Module/BaseApi.php:472 +#: src/Module/BaseApi.php:458 #, php-format msgid "Weekly posting limit of %d post reached. The post was rejected." msgid_plural "" @@ -6050,7 +6066,7 @@ msgid_plural "" msgstr[0] "" msgstr[1] "" -#: src/Module/BaseApi.php:488 +#: src/Module/BaseApi.php:474 #, php-format msgid "Monthly posting limit of %d post reached. The post was rejected." msgid_plural "" @@ -6058,84 +6074,84 @@ msgid_plural "" msgstr[0] "" msgstr[1] "" -#: src/Module/BaseModeration.php:86 +#: src/Module/BaseModeration.php:72 msgid "You don't have access to moderation pages." msgstr "" -#: src/Module/BaseModeration.php:90 +#: src/Module/BaseModeration.php:76 msgid "" "Submanaged account can't access the moderation pages. Please log back in as " "the main account." msgstr "" -#: src/Module/BaseModeration.php:110 src/Module/Moderation/Reports.php:109 +#: src/Module/BaseModeration.php:96 src/Module/Moderation/Reports.php:101 msgid "Reports" msgstr "" -#: src/Module/BaseModeration.php:113 src/Module/Moderation/Users/Index.php:148 -#: src/Module/Moderation/Users/Index.php:158 +#: src/Module/BaseModeration.php:99 src/Module/Moderation/Users/Index.php:134 +#: src/Module/Moderation/Users/Index.php:144 msgid "Users" msgstr "Notendur" -#: src/Module/BaseModeration.php:115 +#: src/Module/BaseModeration.php:101 msgid "Tools" msgstr "Verkfæri" -#: src/Module/BaseModeration.php:116 +#: src/Module/BaseModeration.php:102 msgid "Contact Blocklist" msgstr "Svartur listi tengiliðar" -#: src/Module/BaseModeration.php:117 +#: src/Module/BaseModeration.php:103 msgid "Server Blocklist" msgstr "Svartur listi vefþjóns" -#: src/Module/BaseModeration.php:118 src/Module/Moderation/Item/Delete.php:62 +#: src/Module/BaseModeration.php:104 src/Module/Moderation/Item/Delete.php:48 msgid "Delete Item" msgstr "Eyða atriði" -#: src/Module/BaseModeration.php:121 src/Module/Moderation/Item/Source.php:76 +#: src/Module/BaseModeration.php:107 src/Module/Moderation/Item/Source.php:68 msgid "Item Source" msgstr "" -#: src/Module/BaseProfile.php:52 src/Module/Contact.php:506 +#: src/Module/BaseProfile.php:38 src/Module/Contact.php:488 msgid "Profile Details" msgstr "Forsíðu upplýsingar" -#: src/Module/BaseProfile.php:60 +#: src/Module/BaseProfile.php:46 msgid "Conversations started" msgstr "" -#: src/Module/BaseProfile.php:111 +#: src/Module/BaseProfile.php:97 msgid "Only You Can See This" msgstr "Aðeins þú sérð þetta" -#: src/Module/BaseProfile.php:116 src/Module/Profile/Schedule.php:81 +#: src/Module/BaseProfile.php:102 src/Module/Profile/Schedule.php:67 msgid "Scheduled Posts" msgstr "" -#: src/Module/BaseProfile.php:119 +#: src/Module/BaseProfile.php:105 msgid "Posts that are scheduled for publishing" msgstr "" -#: src/Module/BaseProfile.php:138 src/Module/BaseProfile.php:141 +#: src/Module/BaseProfile.php:124 src/Module/BaseProfile.php:127 msgid "Tips for New Members" msgstr "Ábendingar fyrir nýja notendur" -#: src/Module/BaseSearch.php:71 +#: src/Module/BaseSearch.php:57 #, php-format msgid "People Search - %s" msgstr "Leita að fólki - %s" -#: src/Module/BaseSearch.php:75 +#: src/Module/BaseSearch.php:61 #, php-format msgid "Group Search - %s" msgstr "" -#: src/Module/BaseSearch.php:121 src/Module/Contact/MatchInterests.php:140 +#: src/Module/BaseSearch.php:107 src/Module/Contact/MatchInterests.php:136 msgid "No matches" msgstr "Engar leitarniðurstöður" -#: src/Module/BaseSearch.php:147 +#: src/Module/BaseSearch.php:133 #, php-format msgid "" "%d result was filtered out because your node blocks the domain it is " @@ -6148,594 +6164,590 @@ msgid_plural "" msgstr[0] "" msgstr[1] "" -#: src/Module/BaseSettings.php:78 +#: src/Module/BaseSettings.php:64 msgid "Account" msgstr "Notandi" -#: src/Module/BaseSettings.php:85 src/Module/Security/TwoFactor/Verify.php:96 -#: src/Module/Settings/TwoFactor/Index.php:138 +#: src/Module/BaseSettings.php:71 src/Module/Security/TwoFactor/Verify.php:82 +#: src/Module/Settings/TwoFactor/Index.php:124 msgid "Two-factor authentication" msgstr "" -#: src/Module/BaseSettings.php:118 +#: src/Module/BaseSettings.php:104 msgid "Display" msgstr "Birting" -#: src/Module/BaseSettings.php:132 src/Module/Settings/Connectors.php:204 +#: src/Module/BaseSettings.php:118 src/Module/Settings/Connectors.php:195 msgid "Social Networks" msgstr "Samfélagsnet" -#: src/Module/BaseSettings.php:146 src/Module/Settings/Delegation.php:194 +#: src/Module/BaseSettings.php:132 src/Module/Settings/Delegation.php:180 msgid "Manage Accounts" msgstr "" -#: src/Module/BaseSettings.php:153 +#: src/Module/BaseSettings.php:139 msgid "Connected apps" msgstr "Tengd forrit" -#: src/Module/BaseSettings.php:160 +#: src/Module/BaseSettings.php:146 msgid "Remote servers" msgstr "" -#: src/Module/BaseSettings.php:167 src/Module/Settings/UserExport.php:98 +#: src/Module/BaseSettings.php:153 src/Module/Settings/UserExport.php:84 msgid "Export personal data" msgstr "Sækja persónuleg gögn" -#: src/Module/BaseSettings.php:174 +#: src/Module/BaseSettings.php:160 msgid "Remove account" msgstr "Henda tengilið" -#: src/Module/Bookmarklet.php:54 +#: src/Module/Bookmarklet.php:40 msgid "This page is missing a url parameter." msgstr "" -#: src/Module/Bookmarklet.php:66 +#: src/Module/Bookmarklet.php:52 msgid "The post was created" msgstr "" -#: src/Module/Calendar/Event/API.php:100 src/Module/Calendar/Event/API.php:135 -#: src/Module/Calendar/Event/Form.php:80 +#: src/Module/Calendar/Event/API.php:86 src/Module/Calendar/Event/API.php:121 +#: src/Module/Calendar/Event/Form.php:66 msgid "Invalid Request" msgstr "" -#: src/Module/Calendar/Event/API.php:109 +#: src/Module/Calendar/Event/API.php:95 msgid "Event id is missing." msgstr "" -#: src/Module/Calendar/Event/API.php:131 +#: src/Module/Calendar/Event/API.php:117 msgid "Failed to remove event" msgstr "" -#: src/Module/Calendar/Event/API.php:187 src/Module/Calendar/Event/API.php:189 +#: src/Module/Calendar/Event/API.php:173 src/Module/Calendar/Event/API.php:175 msgid "Event can not end before it has started." msgstr "" -#: src/Module/Calendar/Event/API.php:196 src/Module/Calendar/Event/API.php:198 +#: src/Module/Calendar/Event/API.php:182 src/Module/Calendar/Event/API.php:184 msgid "Event title and start time are required." msgstr "" -#: src/Module/Calendar/Event/Form.php:208 +#: src/Module/Calendar/Event/Form.php:194 msgid "Starting date and Title are required." msgstr "" -#: src/Module/Calendar/Event/Form.php:209 -#: src/Module/Calendar/Event/Form.php:214 +#: src/Module/Calendar/Event/Form.php:195 +#: src/Module/Calendar/Event/Form.php:200 msgid "Event Starts:" msgstr "Atburður hefst:" -#: src/Module/Calendar/Event/Form.php:209 -#: src/Module/Calendar/Event/Form.php:237 src/Module/Debug/Probe.php:59 -#: src/Module/Install.php:201 src/Module/Install.php:227 -#: src/Module/Install.php:232 src/Module/Install.php:246 -#: src/Module/Install.php:255 src/Module/Install.php:260 -#: src/Module/Install.php:266 src/Module/Install.php:271 -#: src/Module/Install.php:285 src/Module/Install.php:298 -#: src/Module/Install.php:325 -#: src/Module/Moderation/Blocklist/Server/Add.php:136 -#: src/Module/Moderation/Blocklist/Server/Add.php:138 -#: src/Module/Moderation/Blocklist/Server/Import.php:129 -#: src/Module/Moderation/Blocklist/Server/Index.php:86 -#: src/Module/Moderation/Blocklist/Server/Index.php:87 -#: src/Module/Moderation/Blocklist/Server/Index.php:115 -#: src/Module/Moderation/Blocklist/Server/Index.php:116 -#: src/Module/Moderation/Item/Delete.php:67 src/Module/Register.php:149 -#: src/Module/Security/TwoFactor/Verify.php:101 -#: src/Module/Settings/Channels.php:190 src/Module/Settings/Channels.php:211 -#: src/Module/Settings/TwoFactor/Index.php:161 -#: src/Module/Settings/TwoFactor/Verify.php:158 +#: src/Module/Calendar/Event/Form.php:195 +#: src/Module/Calendar/Event/Form.php:223 src/Module/Debug/Probe.php:45 +#: src/Module/Install.php:187 src/Module/Install.php:213 +#: src/Module/Install.php:218 src/Module/Install.php:232 +#: src/Module/Install.php:241 src/Module/Install.php:246 +#: src/Module/Install.php:252 src/Module/Install.php:257 +#: src/Module/Install.php:271 src/Module/Install.php:284 +#: src/Module/Install.php:311 +#: src/Module/Moderation/Blocklist/Server/Add.php:122 +#: src/Module/Moderation/Blocklist/Server/Add.php:124 +#: src/Module/Moderation/Blocklist/Server/Import.php:113 +#: src/Module/Moderation/Blocklist/Server/Index.php:72 +#: src/Module/Moderation/Blocklist/Server/Index.php:73 +#: src/Module/Moderation/Blocklist/Server/Index.php:101 +#: src/Module/Moderation/Blocklist/Server/Index.php:102 +#: src/Module/Moderation/Item/Delete.php:53 src/Module/Register.php:141 +#: src/Module/Security/TwoFactor/Verify.php:87 +#: src/Module/Settings/Channels.php:176 src/Module/Settings/Channels.php:197 +#: src/Module/Settings/TwoFactor/Index.php:147 +#: src/Module/Settings/TwoFactor/Verify.php:144 msgid "Required" msgstr "Nauðsynlegt" -#: src/Module/Calendar/Event/Form.php:223 -#: src/Module/Calendar/Event/Form.php:247 +#: src/Module/Calendar/Event/Form.php:209 +#: src/Module/Calendar/Event/Form.php:233 msgid "Finish date/time is not known or not relevant" msgstr "Loka dagsetning/tímasetning ekki vituð eða skiptir ekki máli" -#: src/Module/Calendar/Event/Form.php:225 -#: src/Module/Calendar/Event/Form.php:230 +#: src/Module/Calendar/Event/Form.php:211 +#: src/Module/Calendar/Event/Form.php:216 msgid "Event Finishes:" msgstr "Atburður klárar:" -#: src/Module/Calendar/Event/Form.php:237 -#: src/Module/Calendar/Event/Form.php:243 +#: src/Module/Calendar/Event/Form.php:223 +#: src/Module/Calendar/Event/Form.php:229 msgid "Title (BBCode not allowed)" msgstr "" -#: src/Module/Calendar/Event/Form.php:239 +#: src/Module/Calendar/Event/Form.php:225 msgid "Description (BBCode allowed)" msgstr "" -#: src/Module/Calendar/Event/Form.php:241 +#: src/Module/Calendar/Event/Form.php:227 msgid "Location (BBCode not allowed)" msgstr "" -#: src/Module/Calendar/Event/Form.php:244 -#: src/Module/Calendar/Event/Form.php:245 +#: src/Module/Calendar/Event/Form.php:230 +#: src/Module/Calendar/Event/Form.php:231 msgid "Share this event" msgstr "Deila þessum atburði" -#: src/Module/Calendar/Event/Form.php:251 src/Module/Profile/Profile.php:275 +#: src/Module/Calendar/Event/Form.php:237 src/Module/Profile/Profile.php:263 msgid "Basic" msgstr "Einfalt" -#: src/Module/Calendar/Export.php:94 +#: src/Module/Calendar/Export.php:80 msgid "This calendar format is not supported" msgstr "" -#: src/Module/Calendar/Export.php:96 +#: src/Module/Calendar/Export.php:82 msgid "No exportable data found" msgstr "" -#: src/Module/Calendar/Export.php:113 +#: src/Module/Calendar/Export.php:99 msgid "calendar" msgstr "dagatal" -#: src/Module/Calendar/Show.php:124 +#: src/Module/Calendar/Show.php:110 msgid "Events" msgstr "Atburðir" -#: src/Module/Calendar/Show.php:125 +#: src/Module/Calendar/Show.php:111 msgid "View" msgstr "Skoða" -#: src/Module/Calendar/Show.php:126 +#: src/Module/Calendar/Show.php:112 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:118 src/Module/Settings/Display.php:283 msgid "list" msgstr "listi" -#: src/Module/Circle.php:57 +#: src/Module/Circle.php:43 msgid "Could not create circle." msgstr "" -#: src/Module/Circle.php:68 src/Module/Circle.php:216 -#: src/Module/Circle.php:240 +#: src/Module/Circle.php:54 src/Module/Circle.php:202 +#: src/Module/Circle.php:226 msgid "Circle not found." msgstr "" -#: src/Module/Circle.php:74 +#: src/Module/Circle.php:60 msgid "Circle name was not changed." msgstr "" -#: src/Module/Circle.php:92 +#: src/Module/Circle.php:78 msgid "Unknown circle." msgstr "" -#: src/Module/Circle.php:98 src/Module/Circle.php:107 -#: src/Module/Contact/Advanced.php:70 src/Module/Contact/Advanced.php:109 -#: src/Module/Contact/Contacts.php:71 src/Module/Contact/Conversations.php:86 -#: src/Module/Contact/Conversations.php:91 -#: src/Module/Contact/Conversations.php:96 src/Module/Contact/Media.php:61 -#: src/Module/Contact/Posts.php:78 src/Module/Contact/Posts.php:83 -#: src/Module/Contact/Posts.php:88 src/Module/Contact/Profile.php:159 -#: src/Module/Contact/Profile.php:164 src/Module/Contact/Profile.php:169 -#: src/Module/Contact/Redir.php:95 src/Module/Contact/Redir.php:141 -#: src/Module/FriendSuggest.php:71 src/Module/FriendSuggest.php:109 +#: src/Module/Circle.php:84 src/Module/Circle.php:93 +#: src/Module/Contact/Advanced.php:56 src/Module/Contact/Advanced.php:95 +#: src/Module/Contact/Contacts.php:57 src/Module/Contact/Conversations.php:72 +#: src/Module/Contact/Conversations.php:77 +#: src/Module/Contact/Conversations.php:82 src/Module/Contact/Media.php:47 +#: src/Module/Contact/Posts.php:64 src/Module/Contact/Posts.php:69 +#: src/Module/Contact/Posts.php:74 src/Module/Contact/Profile.php:145 +#: src/Module/Contact/Profile.php:150 src/Module/Contact/Profile.php:169 +#: src/Module/Contact/Redir.php:77 src/Module/Contact/Redir.php:131 +#: src/Module/FriendSuggest.php:57 src/Module/FriendSuggest.php:95 msgid "Contact not found." msgstr "Tengiliður fannst ekki." -#: src/Module/Circle.php:102 src/Module/Contact/Contacts.php:66 +#: src/Module/Circle.php:88 src/Module/Contact/Contacts.php:52 msgid "Invalid contact." msgstr "Ógildur tengiliður." -#: src/Module/Circle.php:111 src/Module/Contact/Revoke.php:73 +#: src/Module/Circle.php:97 src/Module/Contact/Revoke.php:56 msgid "Contact is deleted." msgstr "" -#: src/Module/Circle.php:117 +#: src/Module/Circle.php:103 msgid "Unable to add the contact to the circle." msgstr "" -#: src/Module/Circle.php:120 +#: src/Module/Circle.php:106 msgid "Contact successfully added to circle." msgstr "" -#: src/Module/Circle.php:124 +#: src/Module/Circle.php:110 msgid "Unable to remove the contact from the circle." msgstr "" -#: src/Module/Circle.php:127 +#: src/Module/Circle.php:113 msgid "Contact successfully removed from circle." msgstr "" -#: src/Module/Circle.php:131 +#: src/Module/Circle.php:117 msgid "Bad request." msgstr "" -#: src/Module/Circle.php:172 +#: src/Module/Circle.php:158 msgid "Save Circle" msgstr "" -#: src/Module/Circle.php:173 +#: src/Module/Circle.php:159 msgid "Filter" msgstr "" -#: src/Module/Circle.php:179 +#: src/Module/Circle.php:165 msgid "Create a circle of contacts/friends." msgstr "" -#: src/Module/Circle.php:221 +#: src/Module/Circle.php:207 msgid "Unable to remove circle." msgstr "" -#: src/Module/Circle.php:272 +#: src/Module/Circle.php:258 msgid "Delete Circle" msgstr "" -#: src/Module/Circle.php:282 +#: src/Module/Circle.php:268 msgid "Edit Circle Name" msgstr "" -#: src/Module/Circle.php:292 +#: src/Module/Circle.php:278 msgid "Members" msgstr "Meðlimir" -#: src/Module/Circle.php:295 +#: src/Module/Circle.php:281 msgid "Circle is empty" msgstr "" -#: src/Module/Circle.php:311 +#: src/Module/Circle.php:297 msgid "Remove contact from circle" msgstr "" -#: src/Module/Circle.php:334 +#: src/Module/Circle.php:320 msgid "Click on a contact to add or remove." msgstr "Ýttu á tengilið til að bæta við hóp eða taka úr hóp." -#: src/Module/Circle.php:351 +#: src/Module/Circle.php:337 msgid "Add contact to circle" msgstr "" -#: src/Module/Contact.php:96 +#: src/Module/Contact.php:88 #, php-format msgid "%d contact edited." msgid_plural "%d contacts edited." msgstr[0] "" msgstr[1] "" -#: src/Module/Contact.php:347 +#: src/Module/Contact.php:328 msgid "Show all contacts" msgstr "Sýna alla tengiliði" -#: src/Module/Contact.php:352 src/Module/Contact.php:431 -#: src/Module/Moderation/BaseUsers.php:85 +#: src/Module/Contact.php:333 src/Module/Contact.php:412 +#: src/Module/Moderation/BaseUsers.php:72 msgid "Pending" msgstr "" -#: src/Module/Contact.php:355 +#: src/Module/Contact.php:336 msgid "Only show pending contacts" msgstr "" -#: src/Module/Contact.php:360 src/Module/Contact.php:434 -#: src/Module/Moderation/BaseUsers.php:93 +#: src/Module/Contact.php:341 src/Module/Contact.php:415 +#: src/Module/Moderation/BaseUsers.php:80 msgid "Blocked" msgstr "Útilokað" -#: src/Module/Contact.php:363 +#: src/Module/Contact.php:344 msgid "Only show blocked contacts" msgstr "" -#: src/Module/Contact.php:368 src/Module/Contact.php:440 -#: src/Module/Settings/Server/Index.php:107 src/Object/Post.php:399 +#: src/Module/Contact.php:349 src/Module/Contact.php:421 +#: src/Module/Settings/Server/Index.php:93 src/Object/Post.php:385 msgid "Ignored" msgstr "Hunsa" -#: src/Module/Contact.php:371 +#: src/Module/Contact.php:352 msgid "Only show ignored contacts" msgstr "" -#: src/Module/Contact.php:376 src/Module/Contact.php:443 +#: src/Module/Contact.php:357 src/Module/Contact.php:424 msgid "Collapsed" msgstr "" -#: src/Module/Contact.php:379 +#: src/Module/Contact.php:360 msgid "Only show collapsed contacts" msgstr "" -#: src/Module/Contact.php:384 src/Module/Contact.php:446 +#: src/Module/Contact.php:365 src/Module/Contact.php:427 msgid "Archived" msgstr "Í geymslu" -#: src/Module/Contact.php:387 +#: src/Module/Contact.php:368 msgid "Only show archived contacts" msgstr "Aðeins sýna geymda tengiliði" -#: src/Module/Contact.php:392 src/Module/Contact.php:437 +#: src/Module/Contact.php:373 src/Module/Contact.php:418 msgid "Hidden" msgstr "Falinn" -#: src/Module/Contact.php:395 +#: src/Module/Contact.php:376 msgid "Only show hidden contacts" msgstr "Aðeins sýna falda tengiliði" -#: src/Module/Contact.php:403 +#: src/Module/Contact.php:384 msgid "Organize your contact circles" msgstr "" -#: src/Module/Contact.php:458 +#: src/Module/Contact.php:439 msgid "Search your contacts" msgstr "Leita í þínum vinum" -#: src/Module/Contact.php:459 src/Module/Search/Index.php:207 +#: src/Module/Contact.php:440 src/Module/Search/Index.php:193 #, php-format msgid "Results for: %s" msgstr "Niðurstöður fyrir: %s" -#: src/Module/Contact.php:466 +#: src/Module/Contact.php:448 msgid "Update" msgstr "Uppfæra" -#: src/Module/Contact.php:467 src/Module/Contact/Profile.php:518 -#: src/Module/Moderation/Blocklist/Contact.php:117 -#: src/Module/Moderation/Users/Blocked.php:138 -#: src/Module/Moderation/Users/Index.php:154 +#: src/Module/Contact.php:449 src/Module/Contact/Profile.php:518 +#: src/Module/Moderation/Blocklist/Contact.php:103 +#: src/Module/Moderation/Users/Blocked.php:124 +#: src/Module/Moderation/Users/Index.php:140 msgid "Unblock" msgstr "Afbanna" -#: src/Module/Contact.php:468 src/Module/Contact/Profile.php:526 +#: src/Module/Contact.php:450 src/Module/Contact/Profile.php:526 msgid "Unignore" msgstr "Byrja að fylgjast með á ný" -#: src/Module/Contact.php:469 src/Module/Contact/Profile.php:534 +#: src/Module/Contact.php:451 src/Module/Contact/Profile.php:534 msgid "Uncollapse" msgstr "" -#: src/Module/Contact.php:471 +#: src/Module/Contact.php:453 msgid "Batch Actions" msgstr "Magnaðgerðir" -#: src/Module/Contact.php:514 +#: src/Module/Contact.php:496 msgid "Conversations started by this contact" msgstr "" -#: src/Module/Contact.php:519 +#: src/Module/Contact.php:501 msgid "Posts and Comments" msgstr "" -#: src/Module/Contact.php:522 +#: src/Module/Contact.php:504 msgid "Individual Posts and Replies" msgstr "" -#: src/Module/Contact.php:530 +#: src/Module/Contact.php:512 msgid "Posts containing media objects" msgstr "" -#: src/Module/Contact.php:538 +#: src/Module/Contact.php:520 msgid "View all known contacts" msgstr "" -#: src/Module/Contact.php:549 +#: src/Module/Contact.php:531 msgid "Advanced Contact Settings" msgstr "" -#: src/Module/Contact.php:585 +#: src/Module/Contact.php:567 msgid "Mutual Friendship" msgstr "Sameiginlegur vinskapur" -#: src/Module/Contact.php:589 +#: src/Module/Contact.php:571 msgid "is a fan of yours" msgstr "er fylgjandi þinn" -#: src/Module/Contact.php:593 +#: src/Module/Contact.php:575 msgid "you are a fan of" msgstr "þú er fylgjandi" -#: src/Module/Contact.php:611 +#: src/Module/Contact.php:593 msgid "Pending outgoing contact request" msgstr "" -#: src/Module/Contact.php:613 +#: src/Module/Contact.php:595 msgid "Pending incoming contact request" msgstr "" -#: src/Module/Contact.php:626 src/Module/Contact/Profile.php:377 +#: src/Module/Contact.php:608 src/Module/Contact/Profile.php:377 #, php-format msgid "Visit %s's profile [%s]" msgstr "Heimsækja forsíðu %s [%s]" -#: src/Module/Contact/Advanced.php:99 +#: src/Module/Contact/Advanced.php:85 msgid "Contact update failed." msgstr "Uppfærsla tengiliðs mistókst." -#: src/Module/Contact/Advanced.php:130 +#: src/Module/Contact/Advanced.php:116 msgid "Return to contact editor" msgstr "Fara til baka í tengiliðasýsl" -#: src/Module/Contact/Advanced.php:134 -#: src/Module/Moderation/Blocklist/Contact.php:122 -#: src/Module/Moderation/Reports.php:110 -#: src/Module/Moderation/Users/Active.php:126 -#: src/Module/Moderation/Users/Blocked.php:126 -#: src/Module/Moderation/Users/Create.php:70 -#: src/Module/Moderation/Users/Deleted.php:83 -#: src/Module/Moderation/Users/Index.php:140 -#: src/Module/Moderation/Users/Index.php:160 -#: src/Module/Moderation/Users/Pending.php:99 src/Module/Settings/OAuth.php:72 +#: src/Module/Contact/Advanced.php:120 +#: src/Module/Moderation/Blocklist/Contact.php:108 +#: src/Module/Moderation/Reports.php:102 +#: src/Module/Moderation/Users/Active.php:112 +#: src/Module/Moderation/Users/Blocked.php:112 +#: src/Module/Moderation/Users/Create.php:56 +#: src/Module/Moderation/Users/Deleted.php:69 +#: src/Module/Moderation/Users/Index.php:126 +#: src/Module/Moderation/Users/Index.php:146 +#: src/Module/Moderation/Users/Pending.php:85 src/Module/Settings/OAuth.php:58 msgid "Name" msgstr "Nafn" -#: src/Module/Contact/Advanced.php:135 +#: src/Module/Contact/Advanced.php:121 msgid "Account Nickname" msgstr "Gælunafn notanda" -#: src/Module/Contact/Advanced.php:136 +#: src/Module/Contact/Advanced.php:122 msgid "Account URL" msgstr "Heimasíða notanda" -#: src/Module/Contact/Advanced.php:137 +#: src/Module/Contact/Advanced.php:123 msgid "Poll/Feed URL" msgstr "Slóð á könnun/fréttastraum" -#: src/Module/Contact/Advanced.php:138 +#: src/Module/Contact/Advanced.php:124 msgid "New photo from this URL" msgstr "Ný mynd frá slóð" -#: src/Module/Contact/Contacts.php:89 +#: src/Module/Contact/Contacts.php:75 msgid "No known contacts." msgstr "" -#: src/Module/Contact/Contacts.php:103 src/Module/Profile/Common.php:128 +#: src/Module/Contact/Contacts.php:89 src/Module/Profile/Common.php:114 msgid "No common contacts." msgstr "" -#: src/Module/Contact/Contacts.php:115 src/Module/Profile/Contacts.php:135 +#: src/Module/Contact/Contacts.php:101 src/Module/Profile/Contacts.php:121 #, php-format msgid "Follower (%s)" msgid_plural "Followers (%s)" msgstr[0] "" msgstr[1] "" -#: src/Module/Contact/Contacts.php:119 src/Module/Profile/Contacts.php:138 +#: src/Module/Contact/Contacts.php:105 src/Module/Profile/Contacts.php:124 #, php-format msgid "Following (%s)" msgid_plural "Following (%s)" msgstr[0] "" msgstr[1] "" -#: src/Module/Contact/Contacts.php:123 src/Module/Profile/Contacts.php:141 +#: src/Module/Contact/Contacts.php:109 src/Module/Profile/Contacts.php:127 #, php-format msgid "Mutual friend (%s)" msgid_plural "Mutual friends (%s)" msgstr[0] "" msgstr[1] "" -#: src/Module/Contact/Contacts.php:125 src/Module/Profile/Contacts.php:143 +#: src/Module/Contact/Contacts.php:111 src/Module/Profile/Contacts.php:129 #, php-format msgid "These contacts both follow and are followed by %s." msgstr "" -#: src/Module/Contact/Contacts.php:131 src/Module/Profile/Common.php:116 +#: src/Module/Contact/Contacts.php:117 src/Module/Profile/Common.php:102 #, php-format msgid "Common contact (%s)" msgid_plural "Common contacts (%s)" msgstr[0] "" msgstr[1] "" -#: src/Module/Contact/Contacts.php:133 src/Module/Profile/Common.php:118 +#: src/Module/Contact/Contacts.php:119 src/Module/Profile/Common.php:104 #, php-format msgid "" "Both %s and yourself have publicly interacted with these " "contacts (follow, comment or likes on public posts)." msgstr "" -#: src/Module/Contact/Contacts.php:139 src/Module/Profile/Contacts.php:149 +#: src/Module/Contact/Contacts.php:125 src/Module/Profile/Contacts.php:135 #, php-format msgid "Contact (%s)" msgid_plural "Contacts (%s)" msgstr[0] "" msgstr[1] "" -#: src/Module/Contact/Follow.php:70 src/Module/Contact/Redir.php:63 -#: src/Module/Contact/Redir.php:223 src/Module/Conversation/Community.php:166 -#: src/Module/Debug/ItemBody.php:38 src/Module/Diaspora/Receive.php:57 -#: src/Module/Item/Display.php:96 src/Module/Item/Feed.php:59 -#: src/Module/Item/Follow.php:41 src/Module/Item/Ignore.php:41 -#: src/Module/Item/Language.php:53 src/Module/Item/Pin.php:41 -#: src/Module/Item/Pin.php:56 src/Module/Item/Searchtext.php:53 -#: src/Module/Item/Star.php:42 src/Module/Update/Display.php:37 +#: src/Module/Contact/Follow.php:56 src/Module/Contact/Redir.php:45 +#: src/Module/Contact/Redir.php:206 src/Module/Conversation/Community.php:154 +#: src/Module/Debug/ItemBody.php:24 src/Module/Diaspora/Receive.php:45 +#: src/Module/Item/Display.php:82 src/Module/Item/Feed.php:45 +#: src/Module/Item/Follow.php:27 src/Module/Item/Ignore.php:27 +#: src/Module/Item/Language.php:39 src/Module/Item/Pin.php:27 +#: src/Module/Item/Pin.php:42 src/Module/Item/Searchtext.php:39 +#: src/Module/Item/Star.php:28 src/Module/Update/Display.php:23 msgid "Access denied." msgstr "Aðgangi hafnað." -#: src/Module/Contact/Follow.php:105 src/Module/Contact/Unfollow.php:125 -#: src/Module/Profile/RemoteFollow.php:133 +#: src/Module/Contact/Follow.php:91 src/Module/Contact/Unfollow.php:111 +#: src/Module/Profile/RemoteFollow.php:119 msgid "Submit Request" msgstr "Senda beiðni" -#: src/Module/Contact/Follow.php:115 +#: src/Module/Contact/Follow.php:101 msgid "You already added this contact." msgstr "" -#: src/Module/Contact/Follow.php:130 +#: src/Module/Contact/Follow.php:116 msgid "The network type couldn't be detected. Contact can't be added." msgstr "" -#: src/Module/Contact/Follow.php:138 +#: src/Module/Contact/Follow.php:124 msgid "Diaspora support isn't enabled. Contact can't be added." msgstr "" -#: src/Module/Contact/Follow.php:143 -msgid "OStatus support is disabled. Contact can't be added." -msgstr "" - -#: src/Module/Contact/Follow.php:168 src/Module/Profile/RemoteFollow.php:132 +#: src/Module/Contact/Follow.php:149 src/Module/Profile/RemoteFollow.php:118 msgid "Please answer the following:" msgstr "Vinnsamlegast svaraðu eftirfarandi:" -#: src/Module/Contact/Follow.php:169 src/Module/Contact/Unfollow.php:123 +#: src/Module/Contact/Follow.php:150 src/Module/Contact/Unfollow.php:109 msgid "Your Identity Address:" msgstr "Auðkennisnetfang þitt:" -#: src/Module/Contact/Follow.php:170 src/Module/Contact/Profile.php:408 -#: src/Module/Contact/Unfollow.php:129 -#: src/Module/Moderation/Blocklist/Contact.php:131 -#: src/Module/Moderation/Reports.php:117 -#: src/Module/Notifications/Introductions.php:129 -#: src/Module/Notifications/Introductions.php:198 +#: src/Module/Contact/Follow.php:151 src/Module/Contact/Profile.php:408 +#: src/Module/Contact/Unfollow.php:115 +#: src/Module/Moderation/Blocklist/Contact.php:117 +#: src/Module/Moderation/Reports.php:109 +#: src/Module/Notifications/Introductions.php:121 +#: src/Module/Notifications/Introductions.php:190 msgid "Profile URL" msgstr "Slóð á forsíðu" -#: src/Module/Contact/Follow.php:171 src/Module/Contact/Profile.php:420 -#: src/Module/Notifications/Introductions.php:191 -#: src/Module/Profile/Profile.php:234 +#: src/Module/Contact/Follow.php:152 src/Module/Contact/Profile.php:420 +#: src/Module/Notifications/Introductions.php:183 +#: src/Module/Profile/Profile.php:222 msgid "Tags:" msgstr "Merki:" -#: src/Module/Contact/Follow.php:182 +#: src/Module/Contact/Follow.php:163 #, php-format msgid "%s knows you" msgstr "" -#: src/Module/Contact/Follow.php:183 +#: src/Module/Contact/Follow.php:164 msgid "Add a personal note:" msgstr "Bæta við persónulegri athugasemd" -#: src/Module/Contact/Follow.php:192 src/Module/Contact/Unfollow.php:138 +#: src/Module/Contact/Follow.php:173 src/Module/Contact/Unfollow.php:124 msgid "Posts and Replies" msgstr "" -#: src/Module/Contact/Follow.php:221 +#: src/Module/Contact/Follow.php:202 msgid "The contact could not be added." msgstr "" -#: src/Module/Contact/MatchInterests.php:95 -#: src/Module/Media/Attachment/Upload.php:77 -#: src/Module/Media/Attachment/Upload.php:82 -#: src/Module/Media/Photo/Upload.php:81 src/Module/Media/Photo/Upload.php:86 -#: src/Module/Media/Photo/Upload.php:135 +#: src/Module/Contact/MatchInterests.php:81 +#: src/Module/Media/Attachment/Upload.php:63 +#: src/Module/Media/Attachment/Upload.php:68 +#: src/Module/Media/Photo/Upload.php:67 src/Module/Media/Photo/Upload.php:72 +#: src/Module/Media/Photo/Upload.php:121 msgid "Invalid request." msgstr "Ógild fyrirspurn." -#: src/Module/Contact/MatchInterests.php:102 +#: src/Module/Contact/MatchInterests.php:88 msgid "No keywords to match. Please add keywords to your profile." msgstr "" -#: src/Module/Contact/MatchInterests.php:145 +#: src/Module/Contact/MatchInterests.php:141 msgid "Profile Match" msgstr "Forsíða fannst" -#: src/Module/Contact/Profile.php:145 +#: src/Module/Contact/Profile.php:131 msgid "Failed to update contact record." msgstr "Ekki tókst að uppfæra tengiliðs skrá." @@ -6873,7 +6885,7 @@ msgid "Block/Unblock contact" msgstr "útiloka/opna á tengilið" #: src/Module/Contact/Profile.php:379 -#: src/Module/Moderation/Report/Create.php:293 +#: src/Module/Moderation/Report/Create.php:279 msgid "Ignore contact" msgstr "Hunsa tengilið" @@ -6918,7 +6930,7 @@ msgid "Manage remote servers" msgstr "" #: src/Module/Contact/Profile.php:400 -#: src/Module/Notifications/Introductions.php:192 +#: src/Module/Notifications/Introductions.php:184 msgid "Hide this contact from others" msgstr "Gera þennan notanda ósýnilegan öðrum" @@ -6946,12 +6958,12 @@ msgid "" msgstr "" #: src/Module/Contact/Profile.php:421 -#: src/Module/Settings/TwoFactor/Index.php:160 +#: src/Module/Settings/TwoFactor/Index.php:146 msgid "Actions" msgstr "Aðgerðir" #: src/Module/Contact/Profile.php:423 -#: src/Module/Settings/TwoFactor/Index.php:140 view/theme/frio/theme.php:232 +#: src/Module/Settings/TwoFactor/Index.php:126 view/theme/frio/theme.php:220 msgid "Status" msgstr "Staða" @@ -7026,8 +7038,8 @@ msgstr "" #: src/Module/Contact/Profile.php:441 msgid "" -"If enabled, posts from this contact will only appear in channels, but not in" -" the network stream." +"If enabled, posts from this contact will only appear in channels and network" +" streams in circles, but not in the general network stream." msgstr "" #: src/Module/Contact/Profile.php:509 @@ -7046,7 +7058,7 @@ msgstr "" msgid "Toggle Collapsed status" msgstr "" -#: src/Module/Contact/Profile.php:543 src/Module/Contact/Revoke.php:106 +#: src/Module/Contact/Profile.php:543 src/Module/Contact/Revoke.php:89 msgid "Revoke Follow" msgstr "" @@ -7054,639 +7066,635 @@ msgstr "" msgid "Revoke the follow from this contact" msgstr "" -#: src/Module/Contact/Redir.php:135 src/Module/Contact/Redir.php:187 +#: src/Module/Contact/Redir.php:125 msgid "Bad Request." msgstr "" -#: src/Module/Contact/Revoke.php:63 -msgid "Unknown contact." -msgstr "" - -#: src/Module/Contact/Revoke.php:77 +#: src/Module/Contact/Revoke.php:60 msgid "Contact is being deleted." msgstr "" -#: src/Module/Contact/Revoke.php:91 +#: src/Module/Contact/Revoke.php:74 msgid "Follow was successfully revoked." msgstr "" -#: src/Module/Contact/Revoke.php:107 +#: src/Module/Contact/Revoke.php:90 msgid "" "Do you really want to revoke this contact's follow? This cannot be undone " "and they will have to manually follow you back again." msgstr "" -#: src/Module/Contact/Suggestions.php:62 +#: src/Module/Contact/Suggestions.php:48 msgid "" "No suggestions available. If this is a new site, please try again in 24 " "hours." msgstr "Engar uppástungur tiltækar. Ef þetta er nýr vefur, reyndu þá aftur eftir um 24 klukkustundir." -#: src/Module/Contact/Unfollow.php:98 src/Module/Contact/Unfollow.php:167 +#: src/Module/Contact/Unfollow.php:84 src/Module/Contact/Unfollow.php:153 msgid "You aren't following this contact." msgstr "" -#: src/Module/Contact/Unfollow.php:103 +#: src/Module/Contact/Unfollow.php:89 msgid "Unfollowing is currently not supported by your network." msgstr "" -#: src/Module/Contact/Unfollow.php:121 +#: src/Module/Contact/Unfollow.php:107 msgid "Disconnect/Unfollow" msgstr "" -#: src/Module/Contact/Unfollow.php:175 +#: src/Module/Contact/Unfollow.php:161 msgid "Contact was successfully unfollowed" msgstr "" -#: src/Module/Contact/Unfollow.php:178 +#: src/Module/Contact/Unfollow.php:164 msgid "Unable to unfollow this contact, please contact your administrator" msgstr "" -#: src/Module/Conversation/Channel.php:139 -#: src/Module/Conversation/Community.php:126 src/Module/Search/Index.php:152 -#: src/Module/Search/Index.php:194 +#: src/Module/Conversation/Channel.php:125 +#: src/Module/Conversation/Community.php:114 src/Module/Search/Index.php:138 +#: src/Module/Search/Index.php:180 msgid "No results." msgstr "Engar leitarniðurstöður." -#: src/Module/Conversation/Channel.php:177 +#: src/Module/Conversation/Channel.php:163 msgid "Channel not available." msgstr "" -#: src/Module/Conversation/Community.php:92 +#: src/Module/Conversation/Community.php:80 msgid "" "This community stream shows all public posts received by this node. They may" " not reflect the opinions of this node’s users." msgstr "" -#: src/Module/Conversation/Community.php:180 +#: src/Module/Conversation/Community.php:168 msgid "Community option not available." msgstr "" -#: src/Module/Conversation/Community.php:196 +#: src/Module/Conversation/Community.php:184 msgid "Not available." msgstr "Ekki tiltækt." -#: src/Module/Conversation/Network.php:214 +#: src/Module/Conversation/Network.php:202 msgid "No such circle" msgstr "" -#: src/Module/Conversation/Network.php:218 +#: src/Module/Conversation/Network.php:206 #, php-format msgid "Circle: %s" msgstr "" -#: src/Module/Conversation/Network.php:237 +#: src/Module/Conversation/Network.php:226 #, php-format msgid "Error %d (%s) while fetching the timeline." msgstr "" -#: src/Module/Conversation/Network.php:314 +#: src/Module/Conversation/Network.php:304 msgid "Network feed not available." msgstr "" -#: src/Module/Conversation/Timeline.php:203 +#: src/Module/Conversation/Timeline.php:190 msgid "Include" msgstr "" -#: src/Module/Conversation/Timeline.php:204 +#: src/Module/Conversation/Timeline.php:191 msgid "Hide" msgstr "" -#: src/Module/Credits.php:44 +#: src/Module/Credits.php:30 msgid "Credits" msgstr "Þakkir" -#: src/Module/Credits.php:45 +#: src/Module/Credits.php:31 msgid "" "Friendica is a community project, that would not be possible without the " "help of many people. Here is a list of those who have contributed to the " "code or the translation of Friendica. Thank you all!" msgstr "" -#: src/Module/Debug/ActivityPubConversion.php:53 +#: src/Module/Debug/ActivityPubConversion.php:45 msgid "Formatted" msgstr "" -#: src/Module/Debug/ActivityPubConversion.php:65 +#: src/Module/Debug/ActivityPubConversion.php:57 msgid "Activity" msgstr "" -#: src/Module/Debug/ActivityPubConversion.php:117 +#: src/Module/Debug/ActivityPubConversion.php:109 msgid "Object data" msgstr "" -#: src/Module/Debug/ActivityPubConversion.php:124 +#: src/Module/Debug/ActivityPubConversion.php:116 msgid "Result Item" msgstr "" -#: src/Module/Debug/ActivityPubConversion.php:129 -#: src/Module/Debug/Babel.php:294 src/Module/Moderation/Item/Source.php:87 -#: src/Module/Security/TwoFactor/Verify.php:98 +#: src/Module/Debug/ActivityPubConversion.php:121 +#: src/Module/Debug/Babel.php:286 src/Module/Moderation/Item/Source.php:79 +#: src/Module/Security/TwoFactor/Verify.php:84 msgid "Error" msgid_plural "Errors" msgstr[0] "" msgstr[1] "" -#: src/Module/Debug/ActivityPubConversion.php:138 +#: src/Module/Debug/ActivityPubConversion.php:130 msgid "Source activity" msgstr "" -#: src/Module/Debug/Babel.php:52 +#: src/Module/Debug/Babel.php:44 msgid "Source input" msgstr "" -#: src/Module/Debug/Babel.php:58 +#: src/Module/Debug/Babel.php:50 msgid "BBCode::toPlaintext" msgstr "" -#: src/Module/Debug/Babel.php:64 +#: src/Module/Debug/Babel.php:56 msgid "BBCode::convert (raw HTML)" msgstr "" -#: src/Module/Debug/Babel.php:69 +#: src/Module/Debug/Babel.php:61 msgid "BBCode::convert (hex)" msgstr "" -#: src/Module/Debug/Babel.php:74 +#: src/Module/Debug/Babel.php:66 msgid "BBCode::convert" msgstr "" -#: src/Module/Debug/Babel.php:80 +#: src/Module/Debug/Babel.php:72 msgid "BBCode::convert => HTML::toBBCode" msgstr "" -#: src/Module/Debug/Babel.php:86 +#: src/Module/Debug/Babel.php:78 msgid "BBCode::toMarkdown" msgstr "" -#: src/Module/Debug/Babel.php:92 +#: src/Module/Debug/Babel.php:84 msgid "BBCode::toMarkdown => Markdown::convert (raw HTML)" msgstr "" -#: src/Module/Debug/Babel.php:96 +#: src/Module/Debug/Babel.php:88 msgid "BBCode::toMarkdown => Markdown::convert" msgstr "" -#: src/Module/Debug/Babel.php:102 +#: src/Module/Debug/Babel.php:94 msgid "BBCode::toMarkdown => Markdown::toBBCode" msgstr "" -#: src/Module/Debug/Babel.php:108 +#: src/Module/Debug/Babel.php:100 msgid "BBCode::toMarkdown => Markdown::convert => HTML::toBBCode" msgstr "" -#: src/Module/Debug/Babel.php:116 +#: src/Module/Debug/Babel.php:108 msgid "Item Body" msgstr "" -#: src/Module/Debug/Babel.php:120 +#: src/Module/Debug/Babel.php:112 msgid "Item Tags" msgstr "" -#: src/Module/Debug/Babel.php:126 +#: src/Module/Debug/Babel.php:118 msgid "PageInfo::appendToBody" msgstr "" -#: src/Module/Debug/Babel.php:131 +#: src/Module/Debug/Babel.php:123 msgid "PageInfo::appendToBody => BBCode::convert (raw HTML)" msgstr "" -#: src/Module/Debug/Babel.php:135 +#: src/Module/Debug/Babel.php:127 msgid "PageInfo::appendToBody => BBCode::convert" msgstr "" -#: src/Module/Debug/Babel.php:142 +#: src/Module/Debug/Babel.php:134 msgid "Source input (Diaspora format)" msgstr "" -#: src/Module/Debug/Babel.php:151 +#: src/Module/Debug/Babel.php:143 msgid "Source input (Markdown)" msgstr "" -#: src/Module/Debug/Babel.php:157 +#: src/Module/Debug/Babel.php:149 msgid "Markdown::convert (raw HTML)" msgstr "" -#: src/Module/Debug/Babel.php:162 +#: src/Module/Debug/Babel.php:154 msgid "Markdown::convert" msgstr "" -#: src/Module/Debug/Babel.php:168 +#: src/Module/Debug/Babel.php:160 msgid "Markdown::toBBCode" msgstr "Markdown::toBBCode" -#: src/Module/Debug/Babel.php:175 +#: src/Module/Debug/Babel.php:167 msgid "Raw HTML input" msgstr "Hrátt HTML-ílag" -#: src/Module/Debug/Babel.php:180 +#: src/Module/Debug/Babel.php:172 msgid "HTML Input" msgstr "HTML Input" -#: src/Module/Debug/Babel.php:187 +#: src/Module/Debug/Babel.php:179 msgid "HTML Purified (raw)" msgstr "" -#: src/Module/Debug/Babel.php:192 +#: src/Module/Debug/Babel.php:184 msgid "HTML Purified (hex)" msgstr "" -#: src/Module/Debug/Babel.php:197 +#: src/Module/Debug/Babel.php:189 msgid "HTML Purified" msgstr "" -#: src/Module/Debug/Babel.php:203 +#: src/Module/Debug/Babel.php:195 msgid "HTML::toBBCode" msgstr "HTML::toBBCode" -#: src/Module/Debug/Babel.php:209 +#: src/Module/Debug/Babel.php:201 msgid "HTML::toBBCode => BBCode::convert" msgstr "" -#: src/Module/Debug/Babel.php:214 +#: src/Module/Debug/Babel.php:206 msgid "HTML::toBBCode => BBCode::convert (raw HTML)" msgstr "" -#: src/Module/Debug/Babel.php:220 +#: src/Module/Debug/Babel.php:212 msgid "HTML::toBBCode => BBCode::toPlaintext" msgstr "" -#: src/Module/Debug/Babel.php:226 +#: src/Module/Debug/Babel.php:218 msgid "HTML::toMarkdown" msgstr "" -#: src/Module/Debug/Babel.php:232 +#: src/Module/Debug/Babel.php:224 msgid "HTML::toPlaintext" msgstr "HTML::toPlaintext" -#: src/Module/Debug/Babel.php:238 +#: src/Module/Debug/Babel.php:230 msgid "HTML::toPlaintext (compact)" msgstr "" -#: src/Module/Debug/Babel.php:256 +#: src/Module/Debug/Babel.php:248 msgid "Decoded post" msgstr "" -#: src/Module/Debug/Babel.php:277 +#: src/Module/Debug/Babel.php:269 msgid "Post array before expand entities" msgstr "" -#: src/Module/Debug/Babel.php:284 +#: src/Module/Debug/Babel.php:276 msgid "Post converted" msgstr "" -#: src/Module/Debug/Babel.php:289 +#: src/Module/Debug/Babel.php:281 msgid "Converted body" msgstr "" -#: src/Module/Debug/Babel.php:295 +#: src/Module/Debug/Babel.php:287 msgid "Twitter addon is absent from the addon/ folder." msgstr "" -#: src/Module/Debug/Babel.php:305 +#: src/Module/Debug/Babel.php:297 msgid "Babel Diagnostic" msgstr "" -#: src/Module/Debug/Babel.php:307 +#: src/Module/Debug/Babel.php:299 msgid "Source text" msgstr "Frumtexti" -#: src/Module/Debug/Babel.php:308 +#: src/Module/Debug/Babel.php:300 msgid "BBCode" msgstr "BBCode" -#: src/Module/Debug/Babel.php:310 +#: src/Module/Debug/Babel.php:302 msgid "Markdown" msgstr "Markdown" -#: src/Module/Debug/Babel.php:311 +#: src/Module/Debug/Babel.php:303 msgid "HTML" msgstr "HTML" -#: src/Module/Debug/Babel.php:313 +#: src/Module/Debug/Babel.php:305 msgid "Twitter Source / Tweet URL (requires API key)" msgstr "" -#: src/Module/Debug/Feed.php:53 src/Module/Filer/SaveTag.php:47 -#: src/Module/Settings/Profile/Index.php:177 +#: src/Module/Debug/Feed.php:39 src/Module/Filer/SaveTag.php:33 +#: src/Module/Settings/Profile/Index.php:166 msgid "You must be logged in to use this module" msgstr "" -#: src/Module/Debug/Feed.php:78 +#: src/Module/Debug/Feed.php:64 msgid "Source URL" msgstr "Upprunaslóð" -#: src/Module/Debug/Localtime.php:49 +#: src/Module/Debug/Localtime.php:35 msgid "Time Conversion" msgstr "Tíma leiðréttir" -#: src/Module/Debug/Localtime.php:50 +#: src/Module/Debug/Localtime.php:36 msgid "" "Friendica provides this service for sharing events with other networks and " "friends in unknown timezones." msgstr "Friendica veitir þessa þjónustu til að deila atburðum milli neta og vina í óþekktum tímabeltum." -#: src/Module/Debug/Localtime.php:51 +#: src/Module/Debug/Localtime.php:37 #, php-format msgid "UTC time: %s" msgstr "Máltími: %s" -#: src/Module/Debug/Localtime.php:54 +#: src/Module/Debug/Localtime.php:40 #, php-format msgid "Current timezone: %s" msgstr "Núverandi tímabelti: %s" -#: src/Module/Debug/Localtime.php:58 +#: src/Module/Debug/Localtime.php:44 #, php-format msgid "Converted localtime: %s" msgstr "Umbreyttur staðartími: %s" -#: src/Module/Debug/Localtime.php:62 +#: src/Module/Debug/Localtime.php:48 msgid "Please select your timezone:" msgstr "Veldu tímabeltið þitt:" -#: src/Module/Debug/Probe.php:38 src/Module/Debug/WebFinger.php:37 +#: src/Module/Debug/Probe.php:24 src/Module/Debug/WebFinger.php:23 msgid "Only logged in users are permitted to perform a probing." msgstr "" -#: src/Module/Debug/Probe.php:52 +#: src/Module/Debug/Probe.php:38 msgid "Probe Diagnostic" msgstr "" -#: src/Module/Debug/Probe.php:53 +#: src/Module/Debug/Probe.php:39 msgid "Output" msgstr "" -#: src/Module/Debug/Probe.php:56 +#: src/Module/Debug/Probe.php:42 msgid "Lookup address" msgstr "" -#: src/Module/Debug/WebFinger.php:50 +#: src/Module/Debug/WebFinger.php:36 msgid "Webfinger Diagnostic" msgstr "" -#: src/Module/Debug/WebFinger.php:52 +#: src/Module/Debug/WebFinger.php:38 msgid "Lookup address:" msgstr "" -#: src/Module/Directory.php:74 +#: src/Module/Directory.php:61 msgid "No entries (some entries may be hidden)." msgstr "Engar færslur (sumar geta verið faldar)." -#: src/Module/Directory.php:90 +#: src/Module/Directory.php:77 msgid "Find on this site" msgstr "Leita á þessum vef" -#: src/Module/Directory.php:92 +#: src/Module/Directory.php:79 msgid "Results for:" msgstr "Niðurstöður fyrir:" -#: src/Module/Directory.php:94 +#: src/Module/Directory.php:81 msgid "Site Directory" msgstr "Skrá yfir tengiliði á þessum vef" -#: src/Module/Filer/RemoveTag.php:105 +#: src/Module/Filer/RemoveTag.php:91 msgid "Item was not deleted" msgstr "" -#: src/Module/Filer/RemoveTag.php:115 +#: src/Module/Filer/RemoveTag.php:101 msgid "Item was not removed" msgstr "" -#: src/Module/Filer/SaveTag.php:73 +#: src/Module/Filer/SaveTag.php:59 msgid "- select -" msgstr "- veldu -" -#: src/Module/FriendSuggest.php:82 +#: src/Module/FriendSuggest.php:68 msgid "Suggested contact not found." msgstr "" -#: src/Module/FriendSuggest.php:100 +#: src/Module/FriendSuggest.php:86 msgid "Friend suggestion sent." msgstr "Vina tillaga send" -#: src/Module/FriendSuggest.php:137 +#: src/Module/FriendSuggest.php:123 msgid "Suggest Friends" msgstr "Stinga uppá vinum" -#: src/Module/FriendSuggest.php:140 +#: src/Module/FriendSuggest.php:126 #, php-format msgid "Suggest a friend for %s" msgstr "Stinga uppá vin fyrir %s" -#: src/Module/Friendica.php:81 +#: src/Module/Friendica.php:67 msgid "Installed addons/apps:" msgstr "" -#: src/Module/Friendica.php:86 +#: src/Module/Friendica.php:72 msgid "No installed addons/apps" msgstr "" -#: src/Module/Friendica.php:91 +#: src/Module/Friendica.php:77 #, php-format msgid "Read about the Terms of Service of this node." msgstr "" -#: src/Module/Friendica.php:98 +#: src/Module/Friendica.php:84 msgid "On this server the following remote servers are blocked." msgstr "" -#: src/Module/Friendica.php:101 -#: src/Module/Moderation/Blocklist/Server/Index.php:87 -#: src/Module/Moderation/Blocklist/Server/Index.php:111 -#: src/Module/Settings/Channels.php:232 +#: src/Module/Friendica.php:87 +#: src/Module/Moderation/Blocklist/Server/Index.php:73 +#: src/Module/Moderation/Blocklist/Server/Index.php:97 +#: src/Module/Settings/Channels.php:218 msgid "Reason for the block" msgstr "" -#: src/Module/Friendica.php:103 +#: src/Module/Friendica.php:89 msgid "Download this list in CSV format" msgstr "" -#: src/Module/Friendica.php:117 +#: src/Module/Friendica.php:103 #, php-format msgid "" "This is Friendica, version %s that is running at the web location %s. The " "database version is %s, the post update version is %s." msgstr "" -#: src/Module/Friendica.php:122 +#: src/Module/Friendica.php:108 msgid "" "Please visit Friendi.ca to learn more " "about the Friendica project." msgstr "" -#: src/Module/Friendica.php:123 +#: src/Module/Friendica.php:109 msgid "Bug reports and issues: please visit" msgstr "Villu tilkynningar og vandamál: endilega skoða" -#: src/Module/Friendica.php:123 +#: src/Module/Friendica.php:109 msgid "the bugtracker at github" msgstr "villuskráningu á GitHub" -#: src/Module/Friendica.php:124 +#: src/Module/Friendica.php:110 msgid "Suggestions, praise, etc. - please email \"info\" at \"friendi - dot - ca" msgstr "" -#: src/Module/HCard.php:45 +#: src/Module/HCard.php:31 msgid "No profile" msgstr "Engin forsíða" -#: src/Module/HTTPException/MethodNotAllowed.php:31 +#: src/Module/HTTPException/MethodNotAllowed.php:17 msgid "Method Not Allowed." msgstr "" -#: src/Module/Help.php:60 +#: src/Module/Help.php:46 msgid "Help:" msgstr "Hjálp:" -#: src/Module/Home.php:63 +#: src/Module/Home.php:52 #, php-format msgid "Welcome to %s" msgstr "Velkomin í %s" -#: src/Module/Install.php:189 +#: src/Module/Install.php:175 msgid "Friendica Communications Server - Setup" msgstr "" -#: src/Module/Install.php:200 +#: src/Module/Install.php:186 msgid "System check" msgstr "Kerfis prófun" -#: src/Module/Install.php:202 src/Module/Install.php:247 -#: src/Module/Install.php:326 +#: src/Module/Install.php:188 src/Module/Install.php:233 +#: src/Module/Install.php:312 msgid "Requirement not satisfied" msgstr "" -#: src/Module/Install.php:203 +#: src/Module/Install.php:189 msgid "Optional requirement not satisfied" msgstr "" -#: src/Module/Install.php:204 +#: src/Module/Install.php:190 msgid "OK" msgstr "" -#: src/Module/Install.php:208 +#: src/Module/Install.php:194 msgid "Next" msgstr "Næsta" -#: src/Module/Install.php:209 +#: src/Module/Install.php:195 msgid "Check again" msgstr "Prófa aftur" -#: src/Module/Install.php:222 +#: src/Module/Install.php:208 msgid "Base settings" msgstr "" -#: src/Module/Install.php:224 +#: src/Module/Install.php:210 msgid "Base path to installation" msgstr "" -#: src/Module/Install.php:226 +#: src/Module/Install.php:212 msgid "" "If the system cannot detect the correct path to your installation, enter the" " correct path here. This setting should only be set if you are using a " "restricted system and symbolic links to your webroot." msgstr "" -#: src/Module/Install.php:229 +#: src/Module/Install.php:215 msgid "The Friendica system URL" msgstr "" -#: src/Module/Install.php:231 +#: src/Module/Install.php:217 msgid "" "Overwrite this field in case the system URL determination isn't right, " "otherwise leave it as is." msgstr "" -#: src/Module/Install.php:242 +#: src/Module/Install.php:228 msgid "Database connection" msgstr "Gangagrunns tenging" -#: src/Module/Install.php:243 +#: src/Module/Install.php:229 msgid "" "In order to install Friendica we need to know how to connect to your " "database." msgstr "Til að setja upp Friendica þurfum við að vita hvernig á að tengjast gagnagrunninum þínum." -#: src/Module/Install.php:244 +#: src/Module/Install.php:230 msgid "" "Please contact your hosting provider or site administrator if you have " "questions about these settings." msgstr "Hafðu samband við hýsingaraðilann þinn eða kerfisstjóra ef þú hefur spurningar varðandi þessar stillingar." -#: src/Module/Install.php:245 +#: src/Module/Install.php:231 msgid "" "The database you specify below should already exist. If it does not, please " "create it before continuing." msgstr "Gagnagrunnurinn sem þú bendir á þarf þegar að vera til. Ef ekki þá þarf að stofna hann áður en haldið er áfram." -#: src/Module/Install.php:252 +#: src/Module/Install.php:238 msgid "Database Server Name" msgstr "Vélanafn gagangrunns" -#: src/Module/Install.php:257 +#: src/Module/Install.php:243 msgid "Database Login Name" msgstr "Notendanafn í gagnagrunn" -#: src/Module/Install.php:263 +#: src/Module/Install.php:249 msgid "Database Login Password" msgstr "Aðgangsorð í gagnagrunns" -#: src/Module/Install.php:265 +#: src/Module/Install.php:251 msgid "For security reasons the password must not be empty" msgstr "" -#: src/Module/Install.php:268 +#: src/Module/Install.php:254 msgid "Database Name" msgstr "Nafn gagnagrunns" -#: src/Module/Install.php:272 src/Module/Install.php:300 +#: src/Module/Install.php:258 src/Module/Install.php:286 msgid "Please select a default timezone for your website" msgstr "Veldu sjálfgefið tímabelti fyrir vefsíðuna" -#: src/Module/Install.php:287 +#: src/Module/Install.php:273 msgid "Site settings" msgstr "Stillingar vefsvæðis" -#: src/Module/Install.php:295 +#: src/Module/Install.php:281 msgid "Site administrator email address" msgstr "Tölvupóstfang kerfisstjóra vefsvæðis" -#: src/Module/Install.php:297 +#: src/Module/Install.php:283 msgid "" "Your account email address must match this in order to use the web admin " "panel." msgstr "Póstfang aðgangsins þíns verður að passa við þetta til að hægt sé að nota umsýsluvefviðmótið." -#: src/Module/Install.php:304 +#: src/Module/Install.php:290 msgid "System Language:" msgstr "Tungumál kerfis:" -#: src/Module/Install.php:306 +#: src/Module/Install.php:292 msgid "" "Set the default language for your Friendica installation interface and to " "send emails." msgstr "" -#: src/Module/Install.php:318 +#: src/Module/Install.php:304 msgid "Your Friendica site database has been installed." msgstr "Friendica gagnagrunnurinn þinn hefur verið uppsettur." -#: src/Module/Install.php:328 +#: src/Module/Install.php:314 msgid "Installation finished" msgstr "" -#: src/Module/Install.php:348 +#: src/Module/Install.php:334 msgid "

What next

" msgstr "" -#: src/Module/Install.php:349 +#: src/Module/Install.php:335 msgid "" "IMPORTANT: You will need to [manually] setup a scheduled task for the " "worker." msgstr "" -#: src/Module/Install.php:352 +#: src/Module/Install.php:338 #, php-format msgid "" "Go to your new Friendica node registration page " @@ -7694,40 +7702,40 @@ msgid "" " administrator email. This will allow you to enter the site admin panel." msgstr "" -#: src/Module/Invite.php:57 +#: src/Module/Invite.php:43 msgid "Total invitation limit exceeded." msgstr "" -#: src/Module/Invite.php:82 +#: src/Module/Invite.php:68 #, php-format msgid "%s : Not a valid email address." msgstr "%s : Ekki gilt tölvupóstfang." -#: src/Module/Invite.php:108 +#: src/Module/Invite.php:94 msgid "Please join us on Friendica" msgstr "Komdu í hópinn á Friendica" -#: src/Module/Invite.php:117 +#: src/Module/Invite.php:103 msgid "Invitation limit exceeded. Please contact your site administrator." msgstr "" -#: src/Module/Invite.php:121 +#: src/Module/Invite.php:107 #, php-format msgid "%s : Message delivery failed." msgstr "%s : Skilaboð komust ekki til skila." -#: src/Module/Invite.php:125 +#: src/Module/Invite.php:111 #, php-format msgid "%d message sent." msgid_plural "%d messages sent." msgstr[0] "%d skilaboð send." msgstr[1] "%d skilaboð send" -#: src/Module/Invite.php:143 +#: src/Module/Invite.php:129 msgid "You have no more invitations available" msgstr "Þú hefur ekki fleiri boðskort." -#: src/Module/Invite.php:150 +#: src/Module/Invite.php:136 #, php-format msgid "" "Visit %s for a list of public sites that you can join. Friendica members on " @@ -7735,14 +7743,14 @@ msgid "" " other social networks." msgstr "" -#: src/Module/Invite.php:152 +#: src/Module/Invite.php:138 #, php-format msgid "" "To accept this invitation, please visit and register at %s or any other " "public Friendica website." msgstr "" -#: src/Module/Invite.php:153 +#: src/Module/Invite.php:139 #, php-format msgid "" "Friendica sites all inter-connect to create a huge privacy-enhanced social " @@ -7751,337 +7759,337 @@ msgid "" "sites you can join." msgstr "" -#: src/Module/Invite.php:157 +#: src/Module/Invite.php:143 msgid "" "Our apologies. This system is not currently configured to connect with other" " public sites or invite members." msgstr "" -#: src/Module/Invite.php:160 +#: src/Module/Invite.php:146 msgid "" "Friendica sites all inter-connect to create a huge privacy-enhanced social " "web that is owned and controlled by its members. They can also connect with " "many traditional social networks." msgstr "" -#: src/Module/Invite.php:159 +#: src/Module/Invite.php:145 #, php-format msgid "To accept this invitation, please visit and register at %s." msgstr "" -#: src/Module/Invite.php:167 +#: src/Module/Invite.php:153 msgid "Send invitations" msgstr "Senda kynningar" -#: src/Module/Invite.php:168 +#: src/Module/Invite.php:154 msgid "Enter email addresses, one per line:" msgstr "Settu inn tölvupóstföng, eitt í hverja línu:" -#: src/Module/Invite.php:172 +#: src/Module/Invite.php:158 msgid "" "You are cordially invited to join me and other close friends on Friendica - " "and help us to create a better social web." msgstr "" -#: src/Module/Invite.php:174 +#: src/Module/Invite.php:160 msgid "You will need to supply this invitation code: $invite_code" msgstr "Þú þarft að nota eftirfarandi boðskorta auðkenni: $invite_code" -#: src/Module/Invite.php:174 +#: src/Module/Invite.php:160 msgid "" "Once you have registered, please connect with me via my profile page at:" msgstr "Þegar þú hefur nýskráð þig, hafðu samband við mig gegnum síðuna mína á:" -#: src/Module/Invite.php:176 +#: src/Module/Invite.php:162 msgid "" "For more information about the Friendica project and why we feel it is " "important, please visit http://friendi.ca" msgstr "" -#: src/Module/Item/Compose.php:94 +#: src/Module/Item/Compose.php:80 msgid "Please enter a post body." msgstr "" -#: src/Module/Item/Compose.php:105 +#: src/Module/Item/Compose.php:91 msgid "This feature is only available with the frio theme." msgstr "" -#: src/Module/Item/Compose.php:129 +#: src/Module/Item/Compose.php:115 msgid "Compose new personal note" msgstr "" -#: src/Module/Item/Compose.php:138 +#: src/Module/Item/Compose.php:124 msgid "Compose new post" msgstr "" -#: src/Module/Item/Compose.php:194 +#: src/Module/Item/Compose.php:180 msgid "Visibility" msgstr "" -#: src/Module/Item/Compose.php:210 +#: src/Module/Item/Compose.php:196 msgid "Clear the location" msgstr "" -#: src/Module/Item/Compose.php:211 +#: src/Module/Item/Compose.php:197 msgid "Location services are unavailable on your device" msgstr "" -#: src/Module/Item/Compose.php:212 +#: src/Module/Item/Compose.php:198 msgid "" "Location services are disabled. Please check the website's permissions on " "your device" msgstr "" -#: src/Module/Item/Compose.php:218 +#: src/Module/Item/Compose.php:204 msgid "" "You can make this page always open when you use the New Post button in the " "Theme Customization settings." msgstr "" -#: src/Module/Item/Feed.php:86 +#: src/Module/Item/Feed.php:72 msgid "The feed for this item is unavailable." msgstr "" -#: src/Module/Item/Follow.php:51 +#: src/Module/Item/Follow.php:37 msgid "Unable to follow this item." msgstr "" -#: src/Module/Maintenance.php:48 src/Module/Maintenance.php:53 +#: src/Module/Maintenance.php:34 src/Module/Maintenance.php:39 msgid "System down for maintenance" msgstr "Kerfið er óvirkt vegna viðhalds" -#: src/Module/Maintenance.php:54 +#: src/Module/Maintenance.php:40 msgid "" "This Friendica node is currently in maintenance mode, either automatically " "because it is self-updating or manually by the node administrator. This " "condition should be temporary, please come back in a few minutes." msgstr "" -#: src/Module/Manifest.php:40 +#: src/Module/Manifest.php:26 msgid "A Decentralized Social Network" msgstr "" -#: src/Module/Media/Attachment/Browser.php:58 -#: src/Module/Media/Photo/Browser.php:59 +#: src/Module/Media/Attachment/Browser.php:44 +#: src/Module/Media/Photo/Browser.php:45 msgid "You need to be logged in to access this page." msgstr "" -#: src/Module/Media/Attachment/Browser.php:74 +#: src/Module/Media/Attachment/Browser.php:60 msgid "Files" msgstr "Skrár" -#: src/Module/Media/Attachment/Browser.php:79 -#: src/Module/Media/Photo/Browser.php:90 -#: src/Module/Settings/Profile/Photo/Index.php:127 +#: src/Module/Media/Attachment/Browser.php:65 +#: src/Module/Media/Photo/Browser.php:76 +#: src/Module/Settings/Profile/Photo/Index.php:113 msgid "Upload" msgstr "Senda inn" -#: src/Module/Media/Attachment/Upload.php:97 +#: src/Module/Media/Attachment/Upload.php:83 msgid "Sorry, maybe your upload is bigger than the PHP configuration allows" msgstr "" -#: src/Module/Media/Attachment/Upload.php:97 +#: src/Module/Media/Attachment/Upload.php:83 msgid "Or - did you try to upload an empty file?" msgstr "Eða - reyndirðu að senda inn tóma skrá?" -#: src/Module/Media/Attachment/Upload.php:104 +#: src/Module/Media/Attachment/Upload.php:90 #, php-format msgid "File exceeds size limit of %s" msgstr "Skrá fer leyfileg takmörk sem eru %s" -#: src/Module/Media/Attachment/Upload.php:114 +#: src/Module/Media/Attachment/Upload.php:100 msgid "File upload failed." msgstr "Skráar upphlöðun mistókst." -#: src/Module/Media/Photo/Upload.php:150 src/Module/Media/Photo/Upload.php:151 -#: src/Module/Profile/Photos.php:215 -#: src/Module/Settings/Profile/Photo/Index.php:67 +#: src/Module/Media/Photo/Upload.php:136 src/Module/Media/Photo/Upload.php:137 +#: src/Module/Profile/Photos.php:201 +#: src/Module/Settings/Profile/Photo/Index.php:53 msgid "Unable to process image." msgstr "Ekki mögulegt afgreiða mynd" -#: src/Module/Media/Photo/Upload.php:176 src/Module/Profile/Photos.php:235 -#: src/Module/Settings/Profile/Photo/Index.php:94 +#: src/Module/Media/Photo/Upload.php:162 src/Module/Profile/Photos.php:221 +#: src/Module/Settings/Profile/Photo/Index.php:80 msgid "Image upload failed." msgstr "Ekki hægt að hlaða upp mynd." -#: src/Module/Moderation/BaseUsers.php:72 +#: src/Module/Moderation/BaseUsers.php:59 msgid "List of all users" msgstr "" -#: src/Module/Moderation/BaseUsers.php:77 +#: src/Module/Moderation/BaseUsers.php:64 msgid "Active" msgstr "" -#: src/Module/Moderation/BaseUsers.php:80 +#: src/Module/Moderation/BaseUsers.php:67 msgid "List of active accounts" msgstr "" -#: src/Module/Moderation/BaseUsers.php:88 +#: src/Module/Moderation/BaseUsers.php:75 msgid "List of pending registrations" msgstr "" -#: src/Module/Moderation/BaseUsers.php:96 +#: src/Module/Moderation/BaseUsers.php:83 msgid "List of blocked users" msgstr "" -#: src/Module/Moderation/BaseUsers.php:101 +#: src/Module/Moderation/BaseUsers.php:88 msgid "Deleted" msgstr "" -#: src/Module/Moderation/BaseUsers.php:104 +#: src/Module/Moderation/BaseUsers.php:91 msgid "List of pending user deletions" msgstr "" -#: src/Module/Moderation/BaseUsers.php:119 src/Module/Settings/Account.php:482 +#: src/Module/Moderation/BaseUsers.php:108 src/Module/Settings/Account.php:473 msgid "Normal Account Page" msgstr "" -#: src/Module/Moderation/BaseUsers.php:120 src/Module/Settings/Account.php:489 +#: src/Module/Moderation/BaseUsers.php:109 src/Module/Settings/Account.php:480 msgid "Soapbox Page" msgstr "" -#: src/Module/Moderation/BaseUsers.php:121 src/Module/Settings/Account.php:496 +#: src/Module/Moderation/BaseUsers.php:110 src/Module/Settings/Account.php:487 msgid "Public Group" msgstr "" -#: src/Module/Moderation/BaseUsers.php:122 src/Module/Settings/Account.php:503 +#: src/Module/Moderation/BaseUsers.php:111 src/Module/Settings/Account.php:494 msgid "Public Group - Restricted" msgstr "" -#: src/Module/Moderation/BaseUsers.php:123 src/Module/Settings/Account.php:510 +#: src/Module/Moderation/BaseUsers.php:112 src/Module/Settings/Account.php:501 msgid "Automatic Friend Page" msgstr "" -#: src/Module/Moderation/BaseUsers.php:124 +#: src/Module/Moderation/BaseUsers.php:113 msgid "Private Group" msgstr "" -#: src/Module/Moderation/BaseUsers.php:127 -#: src/Module/Moderation/Summary.php:53 src/Module/Settings/Account.php:453 +#: src/Module/Moderation/BaseUsers.php:116 +#: src/Module/Moderation/Summary.php:39 src/Module/Settings/Account.php:444 msgid "Personal Page" msgstr "" -#: src/Module/Moderation/BaseUsers.php:128 -#: src/Module/Moderation/Summary.php:54 src/Module/Settings/Account.php:460 +#: src/Module/Moderation/BaseUsers.php:117 +#: src/Module/Moderation/Summary.php:40 src/Module/Settings/Account.php:451 msgid "Organisation Page" msgstr "" -#: src/Module/Moderation/BaseUsers.php:129 -#: src/Module/Moderation/Summary.php:55 src/Module/Settings/Account.php:467 +#: src/Module/Moderation/BaseUsers.php:118 +#: src/Module/Moderation/Summary.php:41 src/Module/Settings/Account.php:458 msgid "News Page" msgstr "" -#: src/Module/Moderation/BaseUsers.php:130 -#: src/Module/Moderation/Summary.php:56 src/Module/Settings/Account.php:474 +#: src/Module/Moderation/BaseUsers.php:119 +#: src/Module/Moderation/Summary.php:42 src/Module/Settings/Account.php:465 msgid "Community Group" msgstr "" -#: src/Module/Moderation/Blocklist/Contact.php:70 +#: src/Module/Moderation/Blocklist/Contact.php:56 msgid "You can't block a local contact, please block the user instead" msgstr "" -#: src/Module/Moderation/Blocklist/Contact.php:89 +#: src/Module/Moderation/Blocklist/Contact.php:75 #, php-format msgid "%s contact unblocked" msgid_plural "%s contacts unblocked" msgstr[0] "" msgstr[1] "" -#: src/Module/Moderation/Blocklist/Contact.php:111 +#: src/Module/Moderation/Blocklist/Contact.php:97 msgid "Remote Contact Blocklist" msgstr "" -#: src/Module/Moderation/Blocklist/Contact.php:112 +#: src/Module/Moderation/Blocklist/Contact.php:98 msgid "" "This page allows you to prevent any message from a remote contact to reach " "your node." msgstr "" -#: src/Module/Moderation/Blocklist/Contact.php:113 +#: src/Module/Moderation/Blocklist/Contact.php:99 msgid "Block Remote Contact" msgstr "Útiloka fjartengdan tengilið" -#: src/Module/Moderation/Blocklist/Contact.php:114 -#: src/Module/Moderation/Users/Active.php:135 -#: src/Module/Moderation/Users/Blocked.php:135 -#: src/Module/Moderation/Users/Index.php:149 -#: src/Module/Moderation/Users/Pending.php:98 +#: src/Module/Moderation/Blocklist/Contact.php:100 +#: src/Module/Moderation/Users/Active.php:121 +#: src/Module/Moderation/Users/Blocked.php:121 +#: src/Module/Moderation/Users/Index.php:135 +#: src/Module/Moderation/Users/Pending.php:84 msgid "select all" msgstr "velja alla" -#: src/Module/Moderation/Blocklist/Contact.php:115 +#: src/Module/Moderation/Blocklist/Contact.php:101 msgid "select none" msgstr "velja ekkert" -#: src/Module/Moderation/Blocklist/Contact.php:118 +#: src/Module/Moderation/Blocklist/Contact.php:104 msgid "No remote contact is blocked from this node." msgstr "" -#: src/Module/Moderation/Blocklist/Contact.php:120 +#: src/Module/Moderation/Blocklist/Contact.php:106 msgid "Blocked Remote Contacts" msgstr "Útilokaðir fjartengdir tengiliðir" -#: src/Module/Moderation/Blocklist/Contact.php:121 +#: src/Module/Moderation/Blocklist/Contact.php:107 msgid "Block New Remote Contact" msgstr "Útiloka nýjan fjartengdan tengilið" -#: src/Module/Moderation/Blocklist/Contact.php:122 -#: src/Module/Moderation/Reports.php:110 +#: src/Module/Moderation/Blocklist/Contact.php:108 +#: src/Module/Moderation/Reports.php:102 msgid "Photo" msgstr "Ljósmynd" -#: src/Module/Moderation/Blocklist/Contact.php:122 +#: src/Module/Moderation/Blocklist/Contact.php:108 msgid "Reason" msgstr "" -#: src/Module/Moderation/Blocklist/Contact.php:128 +#: src/Module/Moderation/Blocklist/Contact.php:114 #, php-format msgid "%s total blocked contact" msgid_plural "%s total blocked contacts" msgstr[0] "" msgstr[1] "" -#: src/Module/Moderation/Blocklist/Contact.php:131 +#: src/Module/Moderation/Blocklist/Contact.php:117 msgid "URL of the remote contact to block." msgstr "" -#: src/Module/Moderation/Blocklist/Contact.php:132 +#: src/Module/Moderation/Blocklist/Contact.php:118 msgid "Also purge contact" msgstr "" -#: src/Module/Moderation/Blocklist/Contact.php:132 +#: src/Module/Moderation/Blocklist/Contact.php:118 msgid "" "Removes all content related to this contact from the node. Keeps the contact" " record. This action cannot be undone." msgstr "" -#: src/Module/Moderation/Blocklist/Contact.php:133 -#: src/Module/Moderation/Blocklist/Server/Import.php:124 +#: src/Module/Moderation/Blocklist/Contact.php:119 +#: src/Module/Moderation/Blocklist/Server/Import.php:108 msgid "Block Reason" msgstr "" -#: src/Module/Moderation/Blocklist/Server/Add.php:80 +#: src/Module/Moderation/Blocklist/Server/Add.php:66 msgid "Server domain pattern added to the blocklist." msgstr "" -#: src/Module/Moderation/Blocklist/Server/Add.php:88 +#: src/Module/Moderation/Blocklist/Server/Add.php:74 #, php-format msgid "%s server scheduled to be purged." msgid_plural "%s servers scheduled to be purged." msgstr[0] "" msgstr[1] "" -#: src/Module/Moderation/Blocklist/Server/Add.php:120 -#: src/Module/Moderation/Blocklist/Server/Import.php:117 +#: src/Module/Moderation/Blocklist/Server/Add.php:106 +#: src/Module/Moderation/Blocklist/Server/Import.php:101 msgid "← Return to the list" msgstr "" -#: src/Module/Moderation/Blocklist/Server/Add.php:122 +#: src/Module/Moderation/Blocklist/Server/Add.php:108 msgid "Block A New Server Domain Pattern" msgstr "" -#: src/Module/Moderation/Blocklist/Server/Add.php:123 -#: src/Module/Moderation/Blocklist/Server/Index.php:99 +#: src/Module/Moderation/Blocklist/Server/Add.php:109 +#: src/Module/Moderation/Blocklist/Server/Index.php:85 msgid "" "

The server domain pattern syntax is case-insensitive shell wildcard, comprising the following special characters:

\n" "
    \n" @@ -8090,57 +8098,57 @@ msgid "" "
" msgstr "" -#: src/Module/Moderation/Blocklist/Server/Add.php:128 -#: src/Module/Moderation/Blocklist/Server/Index.php:107 +#: src/Module/Moderation/Blocklist/Server/Add.php:114 +#: src/Module/Moderation/Blocklist/Server/Index.php:93 msgid "Check pattern" msgstr "" -#: src/Module/Moderation/Blocklist/Server/Add.php:129 +#: src/Module/Moderation/Blocklist/Server/Add.php:115 msgid "Matching known servers" msgstr "" -#: src/Module/Moderation/Blocklist/Server/Add.php:130 -#: src/Module/Settings/Server/Action.php:76 -#: src/Module/Settings/Server/Index.php:106 +#: src/Module/Moderation/Blocklist/Server/Add.php:116 +#: src/Module/Settings/Server/Action.php:62 +#: src/Module/Settings/Server/Index.php:92 msgid "Server Name" msgstr "" -#: src/Module/Moderation/Blocklist/Server/Add.php:131 +#: src/Module/Moderation/Blocklist/Server/Add.php:117 msgid "Server Domain" msgstr "" -#: src/Module/Moderation/Blocklist/Server/Add.php:132 +#: src/Module/Moderation/Blocklist/Server/Add.php:118 msgid "Known Contacts" msgstr "" -#: src/Module/Moderation/Blocklist/Server/Add.php:133 +#: src/Module/Moderation/Blocklist/Server/Add.php:119 #, php-format msgid "%d known server" msgid_plural "%d known servers" msgstr[0] "" msgstr[1] "" -#: src/Module/Moderation/Blocklist/Server/Add.php:134 +#: src/Module/Moderation/Blocklist/Server/Add.php:120 msgid "Add pattern to the blocklist" msgstr "" -#: src/Module/Moderation/Blocklist/Server/Add.php:136 -#: src/Module/Moderation/Blocklist/Server/Index.php:116 +#: src/Module/Moderation/Blocklist/Server/Add.php:122 +#: src/Module/Moderation/Blocklist/Server/Index.php:102 msgid "Server Domain Pattern" msgstr "" -#: src/Module/Moderation/Blocklist/Server/Add.php:136 -#: src/Module/Moderation/Blocklist/Server/Index.php:116 +#: src/Module/Moderation/Blocklist/Server/Add.php:122 +#: src/Module/Moderation/Blocklist/Server/Index.php:102 msgid "" "The domain pattern of the new server to add to the blocklist. Do not include" " the protocol." msgstr "" -#: src/Module/Moderation/Blocklist/Server/Add.php:137 +#: src/Module/Moderation/Blocklist/Server/Add.php:123 msgid "Purge server" msgstr "" -#: src/Module/Moderation/Blocklist/Server/Add.php:137 +#: src/Module/Moderation/Blocklist/Server/Add.php:123 msgid "" "Also purges all the locally stored content authored by the known contacts " "registered on that server. Keeps the contacts and the server records. This " @@ -8152,301 +8160,301 @@ msgid_plural "" msgstr[0] "" msgstr[1] "" -#: src/Module/Moderation/Blocklist/Server/Add.php:138 +#: src/Module/Moderation/Blocklist/Server/Add.php:124 msgid "Block reason" msgstr "Ástæða fyrir útilokun" -#: src/Module/Moderation/Blocklist/Server/Add.php:138 +#: src/Module/Moderation/Blocklist/Server/Add.php:124 msgid "" "The reason why you blocked this server domain pattern. This reason will be " "shown publicly in the server information page." msgstr "" -#: src/Module/Moderation/Blocklist/Server/Import.php:74 -#: src/Module/Moderation/Blocklist/Server/Import.php:83 +#: src/Module/Moderation/Blocklist/Server/Import.php:60 +#: src/Module/Moderation/Blocklist/Server/Import.php:67 msgid "Error importing pattern file" msgstr "" -#: src/Module/Moderation/Blocklist/Server/Import.php:89 +#: src/Module/Moderation/Blocklist/Server/Import.php:74 msgid "Local blocklist replaced with the provided file." msgstr "" -#: src/Module/Moderation/Blocklist/Server/Import.php:93 +#: src/Module/Moderation/Blocklist/Server/Import.php:78 #, php-format msgid "%d pattern was added to the local blocklist." msgid_plural "%d patterns were added to the local blocklist." msgstr[0] "" msgstr[1] "" -#: src/Module/Moderation/Blocklist/Server/Import.php:95 +#: src/Module/Moderation/Blocklist/Server/Import.php:80 msgid "No pattern was added to the local blocklist." msgstr "" -#: src/Module/Moderation/Blocklist/Server/Import.php:119 +#: src/Module/Moderation/Blocklist/Server/Import.php:103 msgid "Import a Server Domain Pattern Blocklist" msgstr "" -#: src/Module/Moderation/Blocklist/Server/Import.php:120 +#: src/Module/Moderation/Blocklist/Server/Import.php:104 msgid "" "

This file can be downloaded from the /friendica path of any " "Friendica server.

" msgstr "" -#: src/Module/Moderation/Blocklist/Server/Import.php:121 -#: src/Module/Moderation/Blocklist/Server/Index.php:106 +#: src/Module/Moderation/Blocklist/Server/Import.php:105 +#: src/Module/Moderation/Blocklist/Server/Index.php:92 msgid "Upload file" msgstr "" -#: src/Module/Moderation/Blocklist/Server/Import.php:122 +#: src/Module/Moderation/Blocklist/Server/Import.php:106 msgid "Patterns to import" msgstr "" -#: src/Module/Moderation/Blocklist/Server/Import.php:123 +#: src/Module/Moderation/Blocklist/Server/Import.php:107 msgid "Domain Pattern" msgstr "" -#: src/Module/Moderation/Blocklist/Server/Import.php:125 +#: src/Module/Moderation/Blocklist/Server/Import.php:109 msgid "Import Mode" msgstr "" -#: src/Module/Moderation/Blocklist/Server/Import.php:126 +#: src/Module/Moderation/Blocklist/Server/Import.php:110 msgid "Import Patterns" msgstr "" -#: src/Module/Moderation/Blocklist/Server/Import.php:127 +#: src/Module/Moderation/Blocklist/Server/Import.php:111 #, php-format msgid "%d total pattern" msgid_plural "%d total patterns" msgstr[0] "" msgstr[1] "" -#: src/Module/Moderation/Blocklist/Server/Import.php:129 -#: src/Module/Moderation/Blocklist/Server/Index.php:115 +#: src/Module/Moderation/Blocklist/Server/Import.php:113 +#: src/Module/Moderation/Blocklist/Server/Index.php:101 msgid "Server domain pattern blocklist CSV file" msgstr "" -#: src/Module/Moderation/Blocklist/Server/Import.php:130 +#: src/Module/Moderation/Blocklist/Server/Import.php:114 msgid "Append" msgstr "" -#: src/Module/Moderation/Blocklist/Server/Import.php:130 +#: src/Module/Moderation/Blocklist/Server/Import.php:114 msgid "" "Imports patterns from the file that weren't already existing in the current " "blocklist." msgstr "" -#: src/Module/Moderation/Blocklist/Server/Import.php:131 +#: src/Module/Moderation/Blocklist/Server/Import.php:115 msgid "Replace" msgstr "" -#: src/Module/Moderation/Blocklist/Server/Import.php:131 +#: src/Module/Moderation/Blocklist/Server/Import.php:115 msgid "Replaces the current blocklist by the imported patterns." msgstr "" -#: src/Module/Moderation/Blocklist/Server/Index.php:86 -#: src/Module/Moderation/Blocklist/Server/Index.php:110 -#: src/Module/Settings/Channels.php:231 +#: src/Module/Moderation/Blocklist/Server/Index.php:72 +#: src/Module/Moderation/Blocklist/Server/Index.php:96 +#: src/Module/Settings/Channels.php:217 msgid "Blocked server domain pattern" msgstr "" -#: src/Module/Moderation/Blocklist/Server/Index.php:88 +#: src/Module/Moderation/Blocklist/Server/Index.php:74 msgid "Delete server domain pattern" msgstr "" -#: src/Module/Moderation/Blocklist/Server/Index.php:88 +#: src/Module/Moderation/Blocklist/Server/Index.php:74 msgid "Check to delete this entry from the blocklist" msgstr "" -#: src/Module/Moderation/Blocklist/Server/Index.php:96 +#: src/Module/Moderation/Blocklist/Server/Index.php:82 msgid "Server Domain Pattern Blocklist" msgstr "" -#: src/Module/Moderation/Blocklist/Server/Index.php:97 +#: src/Module/Moderation/Blocklist/Server/Index.php:83 msgid "" "This page can be used to define a blocklist of server domain patterns from " "the federated network that are not allowed to interact with your node. For " "each domain pattern you should also provide the reason why you block it." msgstr "" -#: src/Module/Moderation/Blocklist/Server/Index.php:98 +#: src/Module/Moderation/Blocklist/Server/Index.php:84 msgid "" "The list of blocked server domain patterns will be made publically available" " on the /friendica page so that your users and " "people investigating communication problems can find the reason easily." msgstr "" -#: src/Module/Moderation/Blocklist/Server/Index.php:104 +#: src/Module/Moderation/Blocklist/Server/Index.php:90 msgid "Import server domain pattern blocklist" msgstr "" -#: src/Module/Moderation/Blocklist/Server/Index.php:105 +#: src/Module/Moderation/Blocklist/Server/Index.php:91 msgid "Add new entry to the blocklist" msgstr "" -#: src/Module/Moderation/Blocklist/Server/Index.php:108 +#: src/Module/Moderation/Blocklist/Server/Index.php:94 msgid "Save changes to the blocklist" msgstr "" -#: src/Module/Moderation/Blocklist/Server/Index.php:109 +#: src/Module/Moderation/Blocklist/Server/Index.php:95 msgid "Current Entries in the Blocklist" msgstr "" -#: src/Module/Moderation/Blocklist/Server/Index.php:112 +#: src/Module/Moderation/Blocklist/Server/Index.php:98 msgid "Delete entry from the blocklist" msgstr "" -#: src/Module/Moderation/Blocklist/Server/Index.php:113 +#: src/Module/Moderation/Blocklist/Server/Index.php:99 msgid "Delete entry from the blocklist?" msgstr "" -#: src/Module/Moderation/Item/Delete.php:50 +#: src/Module/Moderation/Item/Delete.php:36 msgid "Item marked for deletion." msgstr "Atriði merkt til eyðingar." -#: src/Module/Moderation/Item/Delete.php:63 +#: src/Module/Moderation/Item/Delete.php:49 msgid "Delete this Item" msgstr "Eyða þessu atriði" -#: src/Module/Moderation/Item/Delete.php:64 +#: src/Module/Moderation/Item/Delete.php:50 msgid "" "On this page you can delete an item from your node. If the item is a top " "level posting, the entire thread will be deleted." msgstr "" -#: src/Module/Moderation/Item/Delete.php:65 +#: src/Module/Moderation/Item/Delete.php:51 msgid "" "You need to know the GUID of the item. You can find it e.g. by looking at " "the display URL. The last part of http://example.com/display/123456 is the " "GUID, here 123456." msgstr "" -#: src/Module/Moderation/Item/Delete.php:67 +#: src/Module/Moderation/Item/Delete.php:53 msgid "GUID" msgstr "" -#: src/Module/Moderation/Item/Delete.php:67 +#: src/Module/Moderation/Item/Delete.php:53 msgid "The GUID of the item you want to delete." msgstr "" -#: src/Module/Moderation/Item/Source.php:77 +#: src/Module/Moderation/Item/Source.php:69 msgid "Item Id" msgstr "" -#: src/Module/Moderation/Item/Source.php:78 +#: src/Module/Moderation/Item/Source.php:70 msgid "Item URI" msgstr "" -#: src/Module/Moderation/Item/Source.php:80 +#: src/Module/Moderation/Item/Source.php:72 msgid "Terms" msgstr "" -#: src/Module/Moderation/Item/Source.php:81 +#: src/Module/Moderation/Item/Source.php:73 msgid "Tag" msgstr "" -#: src/Module/Moderation/Item/Source.php:82 -#: src/Module/Moderation/Users/Active.php:126 -#: src/Module/Moderation/Users/Blocked.php:126 -#: src/Module/Moderation/Users/Index.php:140 +#: src/Module/Moderation/Item/Source.php:74 +#: src/Module/Moderation/Users/Active.php:112 +#: src/Module/Moderation/Users/Blocked.php:112 +#: src/Module/Moderation/Users/Index.php:126 msgid "Type" msgstr "Tegund" -#: src/Module/Moderation/Item/Source.php:83 +#: src/Module/Moderation/Item/Source.php:75 msgid "Term" msgstr "" -#: src/Module/Moderation/Item/Source.php:84 +#: src/Module/Moderation/Item/Source.php:76 msgid "URL" msgstr "" -#: src/Module/Moderation/Item/Source.php:86 +#: src/Module/Moderation/Item/Source.php:78 msgid "Implicit Mention" msgstr "" -#: src/Module/Moderation/Item/Source.php:88 +#: src/Module/Moderation/Item/Source.php:80 msgid "Item not found" msgstr "Atriði fannst ekki" -#: src/Module/Moderation/Item/Source.php:89 +#: src/Module/Moderation/Item/Source.php:81 msgid "No source recorded" msgstr "" -#: src/Module/Moderation/Item/Source.php:90 +#: src/Module/Moderation/Item/Source.php:82 msgid "" "Please make sure the debug.store_source config key is set in " "config/local.config.php for future items to have sources." msgstr "" -#: src/Module/Moderation/Item/Source.php:92 +#: src/Module/Moderation/Item/Source.php:84 msgid "Item Guid" msgstr "" -#: src/Module/Moderation/Report/Create.php:95 +#: src/Module/Moderation/Report/Create.php:81 msgid "Contact not found or their server is already blocked on this node." msgstr "" -#: src/Module/Moderation/Report/Create.php:136 +#: src/Module/Moderation/Report/Create.php:122 msgid "Please login to access this page." msgstr "" -#: src/Module/Moderation/Report/Create.php:165 -#: src/Module/Moderation/Report/Create.php:180 -#: src/Module/Moderation/Report/Create.php:208 -#: src/Module/Moderation/Report/Create.php:260 -#: src/Module/Moderation/Report/Create.php:279 +#: src/Module/Moderation/Report/Create.php:151 +#: src/Module/Moderation/Report/Create.php:166 +#: src/Module/Moderation/Report/Create.php:194 +#: src/Module/Moderation/Report/Create.php:246 +#: src/Module/Moderation/Report/Create.php:265 msgid "Create Moderation Report" msgstr "" -#: src/Module/Moderation/Report/Create.php:166 +#: src/Module/Moderation/Report/Create.php:152 msgid "Pick Contact" msgstr "" -#: src/Module/Moderation/Report/Create.php:167 +#: src/Module/Moderation/Report/Create.php:153 msgid "" "Please enter below the contact address or profile URL you would like to " "create a moderation report about." msgstr "" -#: src/Module/Moderation/Report/Create.php:171 +#: src/Module/Moderation/Report/Create.php:157 msgid "Contact address/URL" msgstr "" -#: src/Module/Moderation/Report/Create.php:181 +#: src/Module/Moderation/Report/Create.php:167 msgid "Pick Category" msgstr "" -#: src/Module/Moderation/Report/Create.php:182 +#: src/Module/Moderation/Report/Create.php:168 msgid "Please pick below the category of your report." msgstr "" -#: src/Module/Moderation/Report/Create.php:186 -#: src/Module/Moderation/Report/Create.php:311 +#: src/Module/Moderation/Report/Create.php:172 +#: src/Module/Moderation/Report/Create.php:297 msgid "Spam" msgstr "" -#: src/Module/Moderation/Report/Create.php:186 +#: src/Module/Moderation/Report/Create.php:172 msgid "" "This contact is publishing many repeated/overly long posts/replies or " "advertising their product/websites in otherwise irrelevant conversations." msgstr "" -#: src/Module/Moderation/Report/Create.php:187 -#: src/Module/Moderation/Report/Create.php:312 +#: src/Module/Moderation/Report/Create.php:173 +#: src/Module/Moderation/Report/Create.php:298 msgid "Illegal Content" msgstr "" -#: src/Module/Moderation/Report/Create.php:187 +#: src/Module/Moderation/Report/Create.php:173 msgid "" "This contact is publishing content that is considered illegal in this node's" " hosting juridiction." msgstr "" -#: src/Module/Moderation/Report/Create.php:188 -#: src/Module/Moderation/Report/Create.php:313 +#: src/Module/Moderation/Report/Create.php:174 +#: src/Module/Moderation/Report/Create.php:299 msgid "Community Safety" msgstr "" -#: src/Module/Moderation/Report/Create.php:188 +#: src/Module/Moderation/Report/Create.php:174 msgid "" "This contact aggravated you or other people, by being provocative or " "insensitive, intentionally or not. This includes disclosing people's private" @@ -8454,12 +8462,12 @@ msgid "" "replies." msgstr "" -#: src/Module/Moderation/Report/Create.php:189 -#: src/Module/Moderation/Report/Create.php:314 +#: src/Module/Moderation/Report/Create.php:175 +#: src/Module/Moderation/Report/Create.php:300 msgid "Unwanted Content/Behavior" msgstr "" -#: src/Module/Moderation/Report/Create.php:189 +#: src/Module/Moderation/Report/Create.php:175 msgid "" "This contact has repeatedly published content irrelevant to the node's theme" " or is openly criticizing the node's administration/moderation without " @@ -8467,89 +8475,89 @@ msgid "" "nitpicking on a sensitive topic." msgstr "" -#: src/Module/Moderation/Report/Create.php:190 -#: src/Module/Moderation/Report/Create.php:315 +#: src/Module/Moderation/Report/Create.php:176 +#: src/Module/Moderation/Report/Create.php:301 msgid "Rules Violation" msgstr "" -#: src/Module/Moderation/Report/Create.php:190 +#: src/Module/Moderation/Report/Create.php:176 msgid "" "This contact violated one or more rules of this node. You will be able to " "pick which one(s) in the next step." msgstr "" -#: src/Module/Moderation/Report/Create.php:191 +#: src/Module/Moderation/Report/Create.php:177 msgid "" "Please elaborate below why you submitted this report. The more details you " "provide, the better your report can be handled." msgstr "" -#: src/Module/Moderation/Report/Create.php:193 +#: src/Module/Moderation/Report/Create.php:179 msgid "Additional Information" msgstr "" -#: src/Module/Moderation/Report/Create.php:193 +#: src/Module/Moderation/Report/Create.php:179 msgid "" "Please provide any additional information relevant to this particular " "report. You will be able to attach posts by this contact in the next step, " "but any context is welcome." msgstr "" -#: src/Module/Moderation/Report/Create.php:209 +#: src/Module/Moderation/Report/Create.php:195 msgid "Pick Rules" msgstr "" -#: src/Module/Moderation/Report/Create.php:210 +#: src/Module/Moderation/Report/Create.php:196 msgid "Please pick below the node rules you believe this contact violated." msgstr "" -#: src/Module/Moderation/Report/Create.php:261 +#: src/Module/Moderation/Report/Create.php:247 msgid "Pick Posts" msgstr "" -#: src/Module/Moderation/Report/Create.php:262 +#: src/Module/Moderation/Report/Create.php:248 msgid "Please optionally pick posts to attach to your report." msgstr "" -#: src/Module/Moderation/Report/Create.php:281 +#: src/Module/Moderation/Report/Create.php:267 msgid "Submit Report" msgstr "" -#: src/Module/Moderation/Report/Create.php:282 +#: src/Module/Moderation/Report/Create.php:268 msgid "Further Action" msgstr "" -#: src/Module/Moderation/Report/Create.php:283 +#: src/Module/Moderation/Report/Create.php:269 msgid "" "You can also perform one of the following action on the contact you " "reported:" msgstr "" -#: src/Module/Moderation/Report/Create.php:291 +#: src/Module/Moderation/Report/Create.php:277 msgid "Nothing" msgstr "" -#: src/Module/Moderation/Report/Create.php:292 +#: src/Module/Moderation/Report/Create.php:278 msgid "Collapse contact" msgstr "" -#: src/Module/Moderation/Report/Create.php:292 +#: src/Module/Moderation/Report/Create.php:278 msgid "" "Their posts and replies will keep appearing in your Network page but their " "content will be collapsed by default." msgstr "" -#: src/Module/Moderation/Report/Create.php:293 +#: src/Module/Moderation/Report/Create.php:279 msgid "" "Their posts won't appear in your Network page anymore, but their replies can" " appear in forum threads. They still can follow you." msgstr "" -#: src/Module/Moderation/Report/Create.php:294 +#: src/Module/Moderation/Report/Create.php:280 msgid "Block contact" msgstr "" -#: src/Module/Moderation/Report/Create.php:294 +#: src/Module/Moderation/Report/Create.php:280 msgid "" "Their posts won't appear in your Network page anymore, but their replies can" " appear in forum threads, with their content collapsed by default. They " @@ -8557,708 +8565,694 @@ msgid "" "means." msgstr "" -#: src/Module/Moderation/Report/Create.php:297 +#: src/Module/Moderation/Report/Create.php:283 msgid "Forward report" msgstr "" -#: src/Module/Moderation/Report/Create.php:297 +#: src/Module/Moderation/Report/Create.php:283 msgid "Would you ike to forward this report to the remote server?" msgstr "" -#: src/Module/Moderation/Report/Create.php:330 +#: src/Module/Moderation/Report/Create.php:316 msgid "1. Pick a contact" msgstr "" -#: src/Module/Moderation/Report/Create.php:331 +#: src/Module/Moderation/Report/Create.php:317 msgid "2. Pick a category" msgstr "" -#: src/Module/Moderation/Report/Create.php:332 +#: src/Module/Moderation/Report/Create.php:318 msgid "2a. Pick rules" msgstr "" -#: src/Module/Moderation/Report/Create.php:333 +#: src/Module/Moderation/Report/Create.php:319 msgid "2b. Add comment" msgstr "" -#: src/Module/Moderation/Report/Create.php:334 +#: src/Module/Moderation/Report/Create.php:320 msgid "3. Pick posts" msgstr "" -#: src/Module/Moderation/Reports.php:105 +#: src/Module/Moderation/Reports.php:97 msgid "List of reports" msgstr "" -#: src/Module/Moderation/Reports.php:106 +#: src/Module/Moderation/Reports.php:98 msgid "This page display reports created by our or remote users." msgstr "" -#: src/Module/Moderation/Reports.php:107 +#: src/Module/Moderation/Reports.php:99 msgid "No report exists at this node." msgstr "" -#: src/Module/Moderation/Reports.php:110 +#: src/Module/Moderation/Reports.php:102 msgid "Category" msgstr "" -#: src/Module/Moderation/Reports.php:114 +#: src/Module/Moderation/Reports.php:106 #, php-format msgid "%s total report" msgid_plural "%s total reports" msgstr[0] "" msgstr[1] "" -#: src/Module/Moderation/Reports.php:117 +#: src/Module/Moderation/Reports.php:109 msgid "URL of the reported contact." msgstr "" -#: src/Module/Moderation/Summary.php:57 src/Module/Settings/Account.php:431 +#: src/Module/Moderation/Summary.php:43 src/Module/Settings/Account.php:422 msgid "Channel Relay" msgstr "" -#: src/Module/Moderation/Summary.php:77 +#: src/Module/Moderation/Summary.php:63 msgid "Registered users" msgstr "Skráðir notendur" -#: src/Module/Moderation/Summary.php:79 +#: src/Module/Moderation/Summary.php:65 msgid "Pending registrations" msgstr "Nýskráningar í bið" -#: src/Module/Moderation/Users/Active.php:43 -#: src/Module/Moderation/Users/Index.php:43 +#: src/Module/Moderation/Users/Active.php:29 +#: src/Module/Moderation/Users/Index.php:29 #, php-format msgid "%s user blocked" msgid_plural "%s users blocked" msgstr[0] "" msgstr[1] "" -#: src/Module/Moderation/Users/Active.php:51 -#: src/Module/Moderation/Users/Active.php:85 -#: src/Module/Moderation/Users/Blocked.php:51 -#: src/Module/Moderation/Users/Blocked.php:85 -#: src/Module/Moderation/Users/Index.php:58 -#: src/Module/Moderation/Users/Index.php:92 +#: src/Module/Moderation/Users/Active.php:37 +#: src/Module/Moderation/Users/Active.php:71 +#: src/Module/Moderation/Users/Blocked.php:37 +#: src/Module/Moderation/Users/Blocked.php:71 +#: src/Module/Moderation/Users/Index.php:44 +#: src/Module/Moderation/Users/Index.php:78 msgid "You can't remove yourself" msgstr "" -#: src/Module/Moderation/Users/Active.php:55 -#: src/Module/Moderation/Users/Blocked.php:55 -#: src/Module/Moderation/Users/Index.php:62 +#: src/Module/Moderation/Users/Active.php:41 +#: src/Module/Moderation/Users/Blocked.php:41 +#: src/Module/Moderation/Users/Index.php:48 #, php-format msgid "%s user deleted" msgid_plural "%s users deleted" msgstr[0] "%s notanda eytt" msgstr[1] "%s notendum eytt" -#: src/Module/Moderation/Users/Active.php:83 -#: src/Module/Moderation/Users/Blocked.php:83 -#: src/Module/Moderation/Users/Index.php:90 +#: src/Module/Moderation/Users/Active.php:69 +#: src/Module/Moderation/Users/Blocked.php:69 +#: src/Module/Moderation/Users/Index.php:76 #, php-format msgid "User \"%s\" deleted" msgstr "" -#: src/Module/Moderation/Users/Active.php:93 -#: src/Module/Moderation/Users/Index.php:100 +#: src/Module/Moderation/Users/Active.php:79 +#: src/Module/Moderation/Users/Index.php:86 #, php-format msgid "User \"%s\" blocked" msgstr "" -#: src/Module/Moderation/Users/Active.php:126 -#: src/Module/Moderation/Users/Blocked.php:126 -#: src/Module/Moderation/Users/Deleted.php:83 -#: src/Module/Moderation/Users/Index.php:140 -#: src/Module/Moderation/Users/Index.php:160 +#: src/Module/Moderation/Users/Active.php:112 +#: src/Module/Moderation/Users/Blocked.php:112 +#: src/Module/Moderation/Users/Deleted.php:69 +#: src/Module/Moderation/Users/Index.php:126 +#: src/Module/Moderation/Users/Index.php:146 msgid "Register date" msgstr "Skráningardagur" -#: src/Module/Moderation/Users/Active.php:126 -#: src/Module/Moderation/Users/Blocked.php:126 -#: src/Module/Moderation/Users/Deleted.php:83 -#: src/Module/Moderation/Users/Index.php:140 -#: src/Module/Moderation/Users/Index.php:160 +#: src/Module/Moderation/Users/Active.php:112 +#: src/Module/Moderation/Users/Blocked.php:112 +#: src/Module/Moderation/Users/Deleted.php:69 +#: src/Module/Moderation/Users/Index.php:126 +#: src/Module/Moderation/Users/Index.php:146 msgid "Last login" msgstr "Síðast innskráður" -#: src/Module/Moderation/Users/Active.php:126 -#: src/Module/Moderation/Users/Blocked.php:126 -#: src/Module/Moderation/Users/Deleted.php:83 -#: src/Module/Moderation/Users/Index.php:140 -#: src/Module/Moderation/Users/Index.php:160 +#: src/Module/Moderation/Users/Active.php:112 +#: src/Module/Moderation/Users/Blocked.php:112 +#: src/Module/Moderation/Users/Deleted.php:69 +#: src/Module/Moderation/Users/Index.php:126 +#: src/Module/Moderation/Users/Index.php:146 msgid "Last public item" msgstr "" -#: src/Module/Moderation/Users/Active.php:134 +#: src/Module/Moderation/Users/Active.php:120 msgid "Active Accounts" msgstr "" -#: src/Module/Moderation/Users/Active.php:138 -#: src/Module/Moderation/Users/Blocked.php:137 -#: src/Module/Moderation/Users/Index.php:153 +#: src/Module/Moderation/Users/Active.php:124 +#: src/Module/Moderation/Users/Blocked.php:123 +#: src/Module/Moderation/Users/Index.php:139 msgid "User blocked" msgstr "" -#: src/Module/Moderation/Users/Active.php:139 -#: src/Module/Moderation/Users/Blocked.php:139 -#: src/Module/Moderation/Users/Index.php:155 +#: src/Module/Moderation/Users/Active.php:125 +#: src/Module/Moderation/Users/Blocked.php:125 +#: src/Module/Moderation/Users/Index.php:141 msgid "Site admin" msgstr "Vefstjóri" -#: src/Module/Moderation/Users/Active.php:140 -#: src/Module/Moderation/Users/Blocked.php:140 -#: src/Module/Moderation/Users/Index.php:156 +#: src/Module/Moderation/Users/Active.php:126 +#: src/Module/Moderation/Users/Blocked.php:126 +#: src/Module/Moderation/Users/Index.php:142 msgid "Account expired" msgstr "Notandaaðgangur útrunninn" -#: src/Module/Moderation/Users/Active.php:141 -#: src/Module/Moderation/Users/Index.php:159 +#: src/Module/Moderation/Users/Active.php:127 +#: src/Module/Moderation/Users/Index.php:145 msgid "Create a new user" msgstr "" -#: src/Module/Moderation/Users/Active.php:147 -#: src/Module/Moderation/Users/Blocked.php:146 -#: src/Module/Moderation/Users/Index.php:165 +#: src/Module/Moderation/Users/Active.php:133 +#: src/Module/Moderation/Users/Blocked.php:132 +#: src/Module/Moderation/Users/Index.php:151 msgid "" "Selected users will be deleted!\\n\\nEverything these users had posted on " "this site will be permanently deleted!\\n\\nAre you sure?" msgstr "Valdir notendur verður eytt!\\n\\nAllt sem þessir notendur hafa deilt á þessum vef verður varanlega eytt!\\n\\nErtu alveg viss?" -#: src/Module/Moderation/Users/Active.php:148 -#: src/Module/Moderation/Users/Blocked.php:147 -#: src/Module/Moderation/Users/Index.php:166 +#: src/Module/Moderation/Users/Active.php:134 +#: src/Module/Moderation/Users/Blocked.php:133 +#: src/Module/Moderation/Users/Index.php:152 msgid "" "The user {0} will be deleted!\\n\\nEverything this user has posted on this " "site will be permanently deleted!\\n\\nAre you sure?" msgstr "Notandinn {0} verður eytt!\\n\\nAllt sem þessi notandi hefur deilt á þessum vef veður varanlega eytt!\\n\\nErtu alveg viss?" -#: src/Module/Moderation/Users/Blocked.php:43 -#: src/Module/Moderation/Users/Index.php:50 +#: src/Module/Moderation/Users/Blocked.php:29 +#: src/Module/Moderation/Users/Index.php:36 #, php-format msgid "%s user unblocked" msgid_plural "%s users unblocked" msgstr[0] "" msgstr[1] "" -#: src/Module/Moderation/Users/Blocked.php:92 -#: src/Module/Moderation/Users/Index.php:106 +#: src/Module/Moderation/Users/Blocked.php:78 +#: src/Module/Moderation/Users/Index.php:92 #, php-format msgid "User \"%s\" unblocked" msgstr "" -#: src/Module/Moderation/Users/Blocked.php:134 +#: src/Module/Moderation/Users/Blocked.php:120 msgid "Blocked Users" msgstr "" -#: src/Module/Moderation/Users/Create.php:62 +#: src/Module/Moderation/Users/Create.php:48 msgid "New User" msgstr "Nýr notandi" -#: src/Module/Moderation/Users/Create.php:63 +#: src/Module/Moderation/Users/Create.php:49 msgid "Add User" msgstr "Bæta við notanda" -#: src/Module/Moderation/Users/Create.php:70 +#: src/Module/Moderation/Users/Create.php:56 msgid "Name of the new user." msgstr "" -#: src/Module/Moderation/Users/Create.php:71 +#: src/Module/Moderation/Users/Create.php:57 msgid "Nickname" msgstr "Stuttnefni" -#: src/Module/Moderation/Users/Create.php:71 +#: src/Module/Moderation/Users/Create.php:57 msgid "Nickname of the new user." msgstr "" -#: src/Module/Moderation/Users/Create.php:72 +#: src/Module/Moderation/Users/Create.php:58 msgid "Email address of the new user." msgstr "" -#: src/Module/Moderation/Users/Deleted.php:81 +#: src/Module/Moderation/Users/Deleted.php:67 msgid "Users awaiting permanent deletion" msgstr "" -#: src/Module/Moderation/Users/Deleted.php:83 -#: src/Module/Moderation/Users/Index.php:160 +#: src/Module/Moderation/Users/Deleted.php:69 +#: src/Module/Moderation/Users/Index.php:146 msgid "Permanent deletion" msgstr "" -#: src/Module/Moderation/Users/Index.php:150 +#: src/Module/Moderation/Users/Index.php:136 msgid "User waiting for permanent deletion" msgstr "" -#: src/Module/Moderation/Users/Pending.php:44 +#: src/Module/Moderation/Users/Pending.php:30 #, php-format msgid "%s user approved" msgid_plural "%s users approved" msgstr[0] "" msgstr[1] "" -#: src/Module/Moderation/Users/Pending.php:51 +#: src/Module/Moderation/Users/Pending.php:37 #, php-format msgid "%s registration revoked" msgid_plural "%s registrations revoked" msgstr[0] "" msgstr[1] "" -#: src/Module/Moderation/Users/Pending.php:76 +#: src/Module/Moderation/Users/Pending.php:62 msgid "Account approved." msgstr "Notandi samþykktur." -#: src/Module/Moderation/Users/Pending.php:82 +#: src/Module/Moderation/Users/Pending.php:68 msgid "Registration revoked" msgstr "" -#: src/Module/Moderation/Users/Pending.php:97 +#: src/Module/Moderation/Users/Pending.php:83 msgid "User registrations awaiting review" msgstr "" -#: src/Module/Moderation/Users/Pending.php:99 +#: src/Module/Moderation/Users/Pending.php:85 msgid "Request date" msgstr "Dagsetning beiðnar" -#: src/Module/Moderation/Users/Pending.php:100 +#: src/Module/Moderation/Users/Pending.php:86 msgid "No registrations." msgstr "Engin skráning" -#: src/Module/Moderation/Users/Pending.php:101 +#: src/Module/Moderation/Users/Pending.php:87 msgid "Note from the user" msgstr "" -#: src/Module/Moderation/Users/Pending.php:103 +#: src/Module/Moderation/Users/Pending.php:89 msgid "Deny" msgstr "Hafnað" -#: src/Module/Notifications/Introductions.php:99 +#: src/Module/Notifications/Introductions.php:91 msgid "Show Ignored Requests" msgstr "Sýna hunsaðar beiðnir" -#: src/Module/Notifications/Introductions.php:99 +#: src/Module/Notifications/Introductions.php:91 msgid "Hide Ignored Requests" msgstr "Fela hunsaðar beiðnir" -#: src/Module/Notifications/Introductions.php:115 -#: src/Module/Notifications/Introductions.php:178 +#: src/Module/Notifications/Introductions.php:107 +#: src/Module/Notifications/Introductions.php:170 msgid "Notification type:" msgstr "" -#: src/Module/Notifications/Introductions.php:118 +#: src/Module/Notifications/Introductions.php:110 msgid "Suggested by:" msgstr "" -#: src/Module/Notifications/Introductions.php:143 +#: src/Module/Notifications/Introductions.php:135 msgid "Claims to be known to you: " msgstr "Þykist þekkja þig:" -#: src/Module/Notifications/Introductions.php:152 +#: src/Module/Notifications/Introductions.php:144 msgid "Shall your connection be bidirectional or not?" msgstr "" -#: src/Module/Notifications/Introductions.php:153 +#: src/Module/Notifications/Introductions.php:145 #, php-format msgid "" "Accepting %s as a friend allows %s to subscribe to your posts, and you will " "also receive updates from them in your news feed." msgstr "" -#: src/Module/Notifications/Introductions.php:154 +#: src/Module/Notifications/Introductions.php:146 #, php-format msgid "" "Accepting %s as a subscriber allows them to subscribe to your posts, but you" " will not receive updates from them in your news feed." msgstr "" -#: src/Module/Notifications/Introductions.php:156 +#: src/Module/Notifications/Introductions.php:148 msgid "Friend" msgstr "Vin" -#: src/Module/Notifications/Introductions.php:157 +#: src/Module/Notifications/Introductions.php:149 msgid "Subscriber" msgstr "Áskrifandi" -#: src/Module/Notifications/Introductions.php:216 +#: src/Module/Notifications/Introductions.php:208 msgid "No introductions." msgstr "Engar kynningar." -#: src/Module/Notifications/Introductions.php:217 -#: src/Module/Notifications/Notifications.php:135 +#: src/Module/Notifications/Introductions.php:209 +#: src/Module/Notifications/Notifications.php:127 #, php-format msgid "No more %s notifications." msgstr "Ekki fleiri %s tilkynningar." -#: src/Module/Notifications/Notification.php:135 +#: src/Module/Notifications/Notification.php:121 msgid "You must be logged in to show this page." msgstr "" -#: src/Module/Notifications/Notifications.php:66 +#: src/Module/Notifications/Notifications.php:52 msgid "Network Notifications" msgstr "Tilkynningar á neti" -#: src/Module/Notifications/Notifications.php:72 +#: src/Module/Notifications/Notifications.php:58 msgid "System Notifications" msgstr "Kerfistilkynningar" -#: src/Module/Notifications/Notifications.php:78 +#: src/Module/Notifications/Notifications.php:64 msgid "Personal Notifications" msgstr "Einkatilkynningar." -#: src/Module/Notifications/Notifications.php:84 +#: src/Module/Notifications/Notifications.php:70 msgid "Home Notifications" msgstr "Tilkynningar frá heimasvæði" -#: src/Module/Notifications/Notifications.php:140 +#: src/Module/Notifications/Notifications.php:132 msgid "Show unread" msgstr "Birta ólesið" -#: src/Module/Notifications/Ping.php:220 +#: src/Module/Notifications/Ping.php:206 msgid "{0} requested registration" msgstr "{0} óskaði eftir skráningu" -#: src/Module/Notifications/Ping.php:229 +#: src/Module/Notifications/Ping.php:215 #, php-format msgid "{0} and %d others requested registration" msgstr "" -#: src/Module/OAuth/Acknowledge.php:51 +#: src/Module/OAuth/Acknowledge.php:37 msgid "Authorize application connection" msgstr "Leyfa forriti að tengjast" -#: src/Module/OAuth/Acknowledge.php:53 +#: src/Module/OAuth/Acknowledge.php:39 msgid "" "Do you want to authorize this application to access your posts and contacts," " and/or create new posts for you?" msgstr "Vilt þú leyfa þessu forriti að hafa aðgang að færslum og tengiliðum, og/eða stofna nýjar færslur fyrir þig?" -#: src/Module/OAuth/Authorize.php:54 +#: src/Module/OAuth/Authorize.php:40 msgid "Unsupported or missing response type" msgstr "" -#: src/Module/OAuth/Authorize.php:59 src/Module/OAuth/Token.php:75 +#: src/Module/OAuth/Authorize.php:45 src/Module/OAuth/Token.php:61 msgid "Incomplete request data" msgstr "" -#: src/Module/OAuth/Authorize.php:106 +#: src/Module/OAuth/Authorize.php:92 #, php-format msgid "" "Please copy the following authentication code into your application and " "close this window: %s" msgstr "" -#: src/Module/OAuth/Token.php:80 +#: src/Module/OAuth/Token.php:66 msgid "Invalid data or unknown client" msgstr "" -#: src/Module/OAuth/Token.php:105 +#: src/Module/OAuth/Token.php:91 msgid "Unsupported or missing grant type" msgstr "" -#: src/Module/OStatus/Repair.php:83 -msgid "Resubscribing to OStatus contacts" -msgstr "" - -#: src/Module/OStatus/Repair.php:84 src/Module/OStatus/Subscribe.php:160 -msgid "Keep this window open until done." -msgstr "Halda þessum glugga opnum þar til öllu er lokið." - -#: src/Module/OStatus/Repair.php:85 -msgid "✔ Done" -msgstr "" - -#: src/Module/OStatus/Repair.php:86 -msgid "No OStatus contacts to resubscribe to." -msgstr "" - -#: src/Module/OStatus/Subscribe.php:72 +#: src/Module/OStatus/Subscribe.php:58 msgid "Subscribing to contacts" msgstr "" -#: src/Module/OStatus/Subscribe.php:81 +#: src/Module/OStatus/Subscribe.php:67 msgid "No contact provided." msgstr "Enginn tengiliður uppgefinn." -#: src/Module/OStatus/Subscribe.php:87 +#: src/Module/OStatus/Subscribe.php:73 msgid "Couldn't fetch information for contact." msgstr "" -#: src/Module/OStatus/Subscribe.php:98 +#: src/Module/OStatus/Subscribe.php:84 msgid "Couldn't fetch friends for contact." msgstr "" -#: src/Module/OStatus/Subscribe.php:104 src/Module/OStatus/Subscribe.php:115 +#: src/Module/OStatus/Subscribe.php:90 src/Module/OStatus/Subscribe.php:101 msgid "Couldn't fetch following contacts." msgstr "" -#: src/Module/OStatus/Subscribe.php:110 +#: src/Module/OStatus/Subscribe.php:96 msgid "Couldn't fetch remote profile." msgstr "" -#: src/Module/OStatus/Subscribe.php:120 +#: src/Module/OStatus/Subscribe.php:106 msgid "Unsupported network" msgstr "" -#: src/Module/OStatus/Subscribe.php:136 +#: src/Module/OStatus/Subscribe.php:122 msgid "Done" msgstr "Lokið" -#: src/Module/OStatus/Subscribe.php:150 +#: src/Module/OStatus/Subscribe.php:136 msgid "success" msgstr "tókst" -#: src/Module/OStatus/Subscribe.php:152 +#: src/Module/OStatus/Subscribe.php:138 msgid "failed" msgstr "mistókst" -#: src/Module/OStatus/Subscribe.php:155 +#: src/Module/OStatus/Subscribe.php:141 msgid "ignored" msgstr "hunsað" -#: src/Module/Photo.php:124 +#: src/Module/OStatus/Subscribe.php:146 +msgid "Keep this window open until done." +msgstr "Halda þessum glugga opnum þar til öllu er lokið." + +#: src/Module/Photo.php:108 msgid "The Photo is not available." msgstr "" -#: src/Module/Photo.php:149 +#: src/Module/Photo.php:133 #, php-format msgid "The Photo with id %s is not available." msgstr "" -#: src/Module/Photo.php:190 +#: src/Module/Photo.php:174 #, php-format msgid "Invalid external resource with url %s." msgstr "" -#: src/Module/Photo.php:192 +#: src/Module/Photo.php:176 #, php-format msgid "Invalid photo with id %s." msgstr "" -#: src/Module/Post/Edit.php:82 src/Module/Post/Edit.php:96 +#: src/Module/Post/Edit.php:68 src/Module/Post/Edit.php:82 msgid "Post not found." msgstr "" -#: src/Module/Post/Edit.php:102 +#: src/Module/Post/Edit.php:88 msgid "Edit post" msgstr "Breyta skilaboðum" -#: src/Module/Post/Edit.php:136 +#: src/Module/Post/Edit.php:122 msgid "web link" msgstr "vefslóð" -#: src/Module/Post/Edit.php:137 +#: src/Module/Post/Edit.php:123 msgid "Insert video link" msgstr "Setja inn slóð á myndskeið" -#: src/Module/Post/Edit.php:138 +#: src/Module/Post/Edit.php:124 msgid "video link" msgstr "slóð á myndskeið" -#: src/Module/Post/Edit.php:139 +#: src/Module/Post/Edit.php:125 msgid "Insert audio link" msgstr "Setja inn slóð á hljóðskrá" -#: src/Module/Post/Edit.php:140 +#: src/Module/Post/Edit.php:126 msgid "audio link" msgstr "slóð á hljóðskrá" -#: src/Module/Post/Tag/Remove.php:106 +#: src/Module/Post/Tag/Remove.php:92 msgid "Remove Item Tag" msgstr "Fjarlægja merki " -#: src/Module/Post/Tag/Remove.php:107 +#: src/Module/Post/Tag/Remove.php:93 msgid "Select a tag to remove: " msgstr "Veldu merki til að fjarlægja:" -#: src/Module/Post/Tag/Remove.php:108 -#: src/Module/Settings/TwoFactor/Trusted.php:147 +#: src/Module/Post/Tag/Remove.php:94 +#: src/Module/Settings/TwoFactor/Trusted.php:133 msgid "Remove" msgstr "Fjarlægja" -#: src/Module/Privacy/PermissionTooltip.php:71 +#: src/Module/Privacy/PermissionTooltip.php:57 #, php-format msgid "Wrong type \"%s\", expected one of: %s" msgstr "" -#: src/Module/Privacy/PermissionTooltip.php:101 +#: src/Module/Privacy/PermissionTooltip.php:87 msgid "Model not found" msgstr "" -#: src/Module/Privacy/PermissionTooltip.php:118 +#: src/Module/Privacy/PermissionTooltip.php:104 msgid "Unlisted" msgstr "" -#: src/Module/Privacy/PermissionTooltip.php:124 +#: src/Module/Privacy/PermissionTooltip.php:110 msgid "Remote privacy information not available." msgstr "Persónuverndarupplýsingar ekki fyrir hendi á fjartengdum vefþjóni." -#: src/Module/Privacy/PermissionTooltip.php:131 +#: src/Module/Privacy/PermissionTooltip.php:117 msgid "Visible to:" msgstr "Sýnilegt eftirfarandi:" -#: src/Module/Privacy/PermissionTooltip.php:133 +#: src/Module/Privacy/PermissionTooltip.php:119 msgid "CC:" msgstr "" -#: src/Module/Privacy/PermissionTooltip.php:134 +#: src/Module/Privacy/PermissionTooltip.php:120 msgid "BCC:" msgstr "" -#: src/Module/Privacy/PermissionTooltip.php:135 +#: src/Module/Privacy/PermissionTooltip.php:121 msgid "Audience:" msgstr "" -#: src/Module/Privacy/PermissionTooltip.php:136 +#: src/Module/Privacy/PermissionTooltip.php:122 msgid "Attributed To:" msgstr "" -#: src/Module/Privacy/PermissionTooltip.php:234 +#: src/Module/Privacy/PermissionTooltip.php:220 #, php-format msgid "Collection (%s)" msgstr "" -#: src/Module/Privacy/PermissionTooltip.php:238 +#: src/Module/Privacy/PermissionTooltip.php:224 #, php-format msgid "Followers (%s)" msgstr "" -#: src/Module/Privacy/PermissionTooltip.php:255 +#: src/Module/Privacy/PermissionTooltip.php:241 #, php-format msgid "%d more" msgstr "" -#: src/Module/Profile/Contacts.php:159 +#: src/Module/Profile/Contacts.php:145 msgid "No contacts." msgstr "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:1095 -#: src/Protocol/OStatus.php:1011 -#, 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:1099 src/Protocol/OStatus.php:1016 +#: src/Module/Profile/Conversations.php:92 src/Module/Profile/Profile.php:339 +#: src/Protocol/Feed.php:1097 #, 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:1102 src/Protocol/OStatus.php:1020 +#: src/Module/Profile/Conversations.php:93 src/Module/Profile/Profile.php:340 +#: src/Protocol/Feed.php:1100 #, 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:192 -#: src/Module/Settings/Profile/Photo/Index.php:58 +#: src/Module/Profile/Conversations.php:94 src/Module/Profile/Profile.php:341 +#: src/Protocol/Feed.php:1093 +#, php-format +msgid "%s's timeline" +msgstr "Tímalína fyrir %s" + +#: src/Module/Profile/Photos.php:150 src/Module/Profile/Photos.php:153 +#: src/Module/Profile/Photos.php:178 +#: src/Module/Settings/Profile/Photo/Index.php:44 #, php-format msgid "Image exceeds size limit of %s" msgstr "" -#: src/Module/Profile/Photos.php:170 +#: src/Module/Profile/Photos.php:156 msgid "Image upload didn't complete, please try again" msgstr "" -#: src/Module/Profile/Photos.php:173 +#: src/Module/Profile/Photos.php:159 msgid "Image file is missing" msgstr "Myndskrá vantar" -#: src/Module/Profile/Photos.php:178 +#: src/Module/Profile/Photos.php:164 msgid "" "Server can't accept new file upload at this time, please contact your " "administrator" msgstr "" -#: src/Module/Profile/Photos.php:200 +#: src/Module/Profile/Photos.php:186 msgid "Image file is empty." msgstr "Mynda skrá er tóm." -#: src/Module/Profile/Photos.php:352 +#: src/Module/Profile/Photos.php:338 msgid "View Album" msgstr "Skoða myndabók" -#: src/Module/Profile/Profile.php:112 src/Module/Profile/Restricted.php:50 +#: src/Module/Profile/Profile.php:100 src/Module/Profile/Restricted.php:36 msgid "Profile not found." msgstr "Forsíða fannst ekki." -#: src/Module/Profile/Profile.php:158 +#: src/Module/Profile/Profile.php:146 #, php-format msgid "" "You're currently viewing your profile as %s Cancel" msgstr "" -#: src/Module/Profile/Profile.php:167 +#: src/Module/Profile/Profile.php:155 msgid "Full Name:" msgstr "Fullt nafn:" -#: src/Module/Profile/Profile.php:172 +#: src/Module/Profile/Profile.php:160 msgid "Member since:" msgstr "Meðlimur síðan:" -#: src/Module/Profile/Profile.php:178 +#: src/Module/Profile/Profile.php:166 msgid "j F, Y" msgstr "j F, Y" -#: src/Module/Profile/Profile.php:179 +#: src/Module/Profile/Profile.php:167 msgid "j F" msgstr "j F" -#: src/Module/Profile/Profile.php:187 src/Util/Temporal.php:168 +#: src/Module/Profile/Profile.php:175 src/Util/Temporal.php:154 msgid "Birthday:" msgstr "Afmælisdagur:" -#: src/Module/Profile/Profile.php:190 -#: src/Module/Settings/Profile/Index.php:291 src/Util/Temporal.php:170 +#: src/Module/Profile/Profile.php:178 +#: src/Module/Settings/Profile/Index.php:282 src/Util/Temporal.php:156 msgid "Age: " msgstr "Aldur: " -#: src/Module/Profile/Profile.php:190 -#: src/Module/Settings/Profile/Index.php:291 src/Util/Temporal.php:170 +#: src/Module/Profile/Profile.php:178 +#: src/Module/Settings/Profile/Index.php:282 src/Util/Temporal.php:156 #, php-format msgid "%d year old" msgid_plural "%d years old" msgstr[0] "" msgstr[1] "" -#: src/Module/Profile/Profile.php:195 -#: src/Module/Settings/Profile/Index.php:284 +#: src/Module/Profile/Profile.php:183 +#: src/Module/Settings/Profile/Index.php:275 msgid "Description:" msgstr "Lýsing:" -#: src/Module/Profile/Profile.php:261 +#: src/Module/Profile/Profile.php:249 msgid "Groups:" msgstr "" -#: src/Module/Profile/Profile.php:273 +#: src/Module/Profile/Profile.php:261 msgid "View profile as:" msgstr "" -#: src/Module/Profile/Profile.php:290 +#: src/Module/Profile/Profile.php:278 msgid "View as" msgstr "" -#: src/Module/Profile/RemoteFollow.php:82 +#: src/Module/Profile/RemoteFollow.php:68 msgid "Profile unavailable." msgstr "Ekki hægt að sækja forsíðu" -#: src/Module/Profile/RemoteFollow.php:88 +#: src/Module/Profile/RemoteFollow.php:74 msgid "Invalid locator" msgstr "Ógild staðsetning" -#: src/Module/Profile/RemoteFollow.php:95 +#: src/Module/Profile/RemoteFollow.php:81 msgid "The provided profile link doesn't seem to be valid" msgstr "" -#: src/Module/Profile/RemoteFollow.php:100 +#: src/Module/Profile/RemoteFollow.php:86 msgid "" "Remote subscription can't be done for your network. Please subscribe " "directly on your system." msgstr "" -#: src/Module/Profile/RemoteFollow.php:128 +#: src/Module/Profile/RemoteFollow.php:114 msgid "Friend/Connection Request" msgstr "Vinabeiðni/Tengibeiðni" -#: src/Module/Profile/RemoteFollow.php:129 +#: src/Module/Profile/RemoteFollow.php:115 #, php-format msgid "" "Enter your Webfinger address (user@domain.tld) or profile URL here. If this " @@ -9266,579 +9260,579 @@ msgid "" " or %s directly on your system." msgstr "" -#: src/Module/Profile/RemoteFollow.php:130 +#: src/Module/Profile/RemoteFollow.php:116 #, php-format msgid "" "If you are not yet a member of the free social web, follow " "this link to find a public Friendica node and join us today." msgstr "" -#: src/Module/Profile/RemoteFollow.php:131 +#: src/Module/Profile/RemoteFollow.php:117 msgid "Your Webfinger address or profile URL:" msgstr "" -#: src/Module/Profile/Restricted.php:59 +#: src/Module/Profile/Restricted.php:45 msgid "Restricted profile" msgstr "" -#: src/Module/Profile/Restricted.php:60 +#: src/Module/Profile/Restricted.php:46 msgid "" "This profile has been restricted which prevents access to their public " "content from anonymous visitors." msgstr "" -#: src/Module/Profile/Schedule.php:83 +#: src/Module/Profile/Schedule.php:69 msgid "Scheduled" msgstr "" -#: src/Module/Profile/Schedule.php:84 +#: src/Module/Profile/Schedule.php:70 msgid "Content" msgstr "" -#: src/Module/Profile/Schedule.php:85 +#: src/Module/Profile/Schedule.php:71 msgid "Remove post" msgstr "" -#: src/Module/Register.php:85 +#: src/Module/Register.php:77 msgid "Only parent users can create additional accounts." msgstr "" -#: src/Module/Register.php:100 src/Module/User/Import.php:112 +#: src/Module/Register.php:92 src/Module/User/Import.php:98 msgid "" "This site has exceeded the number of allowed daily account registrations. " "Please try again tomorrow." msgstr "Þessi vefur hefur náð hámarks fjölda daglegra nýskráninga. Reyndu aftur á morgun." -#: src/Module/Register.php:117 +#: src/Module/Register.php:109 msgid "" "You may (optionally) fill in this form via OpenID by supplying your OpenID " "and clicking \"Register\"." msgstr "" -#: src/Module/Register.php:118 +#: src/Module/Register.php:110 msgid "" "If you are not familiar with OpenID, please leave that field blank and fill " "in the rest of the items." msgstr "Ef þú veist ekki hvað OpenID er, skildu þá þetta svæði eftir tómt en fylltu í restin af svæðunum." -#: src/Module/Register.php:119 +#: src/Module/Register.php:111 msgid "Your OpenID (optional): " msgstr "Þitt OpenID (valfrjálst):" -#: src/Module/Register.php:128 +#: src/Module/Register.php:120 msgid "Include your profile in member directory?" msgstr "Á forsíðan þín að sjást í notendalistanum?" -#: src/Module/Register.php:149 +#: src/Module/Register.php:141 msgid "Note for the admin" msgstr "" -#: src/Module/Register.php:149 +#: src/Module/Register.php:141 msgid "Leave a message for the admin, why you want to join this node" msgstr "" -#: src/Module/Register.php:150 +#: src/Module/Register.php:142 msgid "Membership on this site is by invitation only." msgstr "Aðild að þessum vef er " -#: src/Module/Register.php:151 +#: src/Module/Register.php:143 msgid "Your invitation code: " msgstr "" -#: src/Module/Register.php:159 +#: src/Module/Register.php:151 msgid "Your Display Name (as you would like it to be displayed on this system" msgstr "" -#: src/Module/Register.php:160 +#: src/Module/Register.php:152 msgid "" "Your Email Address: (Initial information will be send there, so this has to " "be an existing address.)" msgstr "" -#: src/Module/Register.php:161 +#: src/Module/Register.php:153 msgid "Please repeat your e-mail address:" msgstr "" -#: src/Module/Register.php:163 src/Module/Security/PasswordTooLong.php:100 -#: src/Module/Settings/Account.php:564 +#: src/Module/Register.php:155 src/Module/Security/PasswordTooLong.php:86 +#: src/Module/Settings/Account.php:555 msgid "New Password:" msgstr "Nýtt aðgangsorð:" -#: src/Module/Register.php:163 +#: src/Module/Register.php:155 msgid "Leave empty for an auto generated password." msgstr "" -#: src/Module/Register.php:164 src/Module/Security/PasswordTooLong.php:101 -#: src/Module/Settings/Account.php:565 +#: src/Module/Register.php:156 src/Module/Security/PasswordTooLong.php:87 +#: src/Module/Settings/Account.php:556 msgid "Confirm:" msgstr "Staðfesta:" -#: src/Module/Register.php:165 +#: src/Module/Register.php:157 #, php-format msgid "" "Choose a profile nickname. This must begin with a text character. Your " "profile address on this site will then be \"nickname@%s\"." msgstr "" -#: src/Module/Register.php:166 +#: src/Module/Register.php:158 msgid "Choose a nickname: " msgstr "Veldu gælunafn:" -#: src/Module/Register.php:174 src/Module/User/Import.php:118 +#: src/Module/Register.php:166 src/Module/User/Import.php:104 msgid "Import" msgstr "Flytja inn" -#: src/Module/Register.php:175 +#: src/Module/Register.php:167 msgid "Import your profile to this friendica instance" msgstr "" -#: src/Module/Register.php:182 +#: src/Module/Register.php:174 msgid "Note: This node explicitly contains adult content" msgstr "" -#: src/Module/Register.php:184 src/Module/Settings/Delegation.php:181 +#: src/Module/Register.php:176 src/Module/Settings/Delegation.php:167 msgid "Parent Password:" msgstr "" -#: src/Module/Register.php:184 src/Module/Settings/Delegation.php:181 +#: src/Module/Register.php:176 src/Module/Settings/Delegation.php:167 msgid "" "Please enter the password of the parent account to legitimize your request." msgstr "" -#: src/Module/Register.php:213 +#: src/Module/Register.php:205 msgid "Password doesn't match." msgstr "" -#: src/Module/Register.php:219 +#: src/Module/Register.php:211 msgid "Please enter your password." msgstr "" -#: src/Module/Register.php:261 +#: src/Module/Register.php:253 msgid "You have entered too much information." msgstr "" -#: src/Module/Register.php:284 +#: src/Module/Register.php:276 msgid "Please enter the identical mail address in the second field." msgstr "" -#: src/Module/Register.php:292 +#: src/Module/Register.php:284 msgid "Nickname cannot start with a digit." msgstr "" -#: src/Module/Register.php:294 +#: src/Module/Register.php:286 msgid "Nickname can only contain US-ASCII characters." msgstr "" -#: src/Module/Register.php:323 +#: src/Module/Register.php:315 msgid "The additional account was created." msgstr "" -#: src/Module/Register.php:348 +#: src/Module/Register.php:340 msgid "" "Registration successful. Please check your email for further instructions." msgstr "Nýskráning tóks. Frekari fyrirmæli voru send í tölvupósti." -#: src/Module/Register.php:355 +#: src/Module/Register.php:347 #, php-format msgid "" "Failed to send email message. Here your accout details:
login: %s
" "password: %s

You can change your password after login." msgstr "" -#: src/Module/Register.php:361 +#: src/Module/Register.php:353 msgid "Registration successful." msgstr "Nýskráning tókst." -#: src/Module/Register.php:370 src/Module/Register.php:377 -#: src/Module/Register.php:387 +#: src/Module/Register.php:362 src/Module/Register.php:369 +#: src/Module/Register.php:379 msgid "Your registration can not be processed." msgstr "Skráninguna þína er ekki hægt að vinna." -#: src/Module/Register.php:376 +#: src/Module/Register.php:368 msgid "You have to leave a request note for the admin." msgstr "" -#: src/Module/Register.php:386 +#: src/Module/Register.php:378 msgid "An internal error occured." msgstr "" -#: src/Module/Register.php:408 +#: src/Module/Register.php:400 msgid "Your registration is pending approval by the site owner." msgstr "Skráningin þín bíður samþykkis af eiganda síðunnar." -#: src/Module/Search/Acl.php:73 +#: src/Module/Search/Acl.php:64 msgid "You must be logged in to use this module." msgstr "" -#: src/Module/Search/Index.php:69 +#: src/Module/Search/Index.php:55 msgid "Only logged in users are permitted to perform a search." msgstr "Aðeins innskráðir notendur geta framkvæmt leit." -#: src/Module/Search/Index.php:89 +#: src/Module/Search/Index.php:75 msgid "Only one search per minute is permitted for not logged in users." msgstr "Notendur sem ekki eru innskráðir geta aðeins framkvæmt eina leit á mínútu." -#: src/Module/Search/Index.php:205 +#: src/Module/Search/Index.php:191 #, php-format msgid "Items tagged with: %s" msgstr "Atriði merkt með: %s" -#: src/Module/Search/Saved.php:59 +#: src/Module/Search/Saved.php:49 msgid "Search term was not saved." msgstr "" -#: src/Module/Search/Saved.php:62 +#: src/Module/Search/Saved.php:52 msgid "Search term already saved." msgstr "" -#: src/Module/Search/Saved.php:68 +#: src/Module/Search/Saved.php:58 msgid "Search term was not removed." msgstr "" -#: src/Module/Security/Login.php:123 +#: src/Module/Security/Login.php:113 msgid "Create a New Account" msgstr "Stofna nýjan notanda" -#: src/Module/Security/Login.php:142 +#: src/Module/Security/Login.php:132 msgid "Your OpenID: " msgstr "" -#: src/Module/Security/Login.php:145 +#: src/Module/Security/Login.php:135 msgid "" "Please enter your username and password to add the OpenID to your existing " "account." msgstr "" -#: src/Module/Security/Login.php:147 +#: src/Module/Security/Login.php:137 msgid "Or login using OpenID: " msgstr "Eða auðkenna með OpenID: " -#: src/Module/Security/Login.php:161 +#: src/Module/Security/Login.php:151 msgid "Password: " msgstr "Aðgangsorð: " -#: src/Module/Security/Login.php:162 +#: src/Module/Security/Login.php:152 msgid "Remember me" msgstr "Muna eftir mér" -#: src/Module/Security/Login.php:171 +#: src/Module/Security/Login.php:161 msgid "Forgot your password?" msgstr "Gleymt lykilorð?" -#: src/Module/Security/Login.php:174 +#: src/Module/Security/Login.php:164 msgid "Website Terms of Service" msgstr "Þjónustuskilmálar vefsvæðis" -#: src/Module/Security/Login.php:175 +#: src/Module/Security/Login.php:165 msgid "terms of service" msgstr "þjónustuskilmálar" -#: src/Module/Security/Login.php:177 +#: src/Module/Security/Login.php:167 msgid "Website Privacy Policy" msgstr "Persónuverndarstefna" -#: src/Module/Security/Login.php:178 +#: src/Module/Security/Login.php:168 msgid "privacy policy" msgstr "persónuverndarstefna" -#: src/Module/Security/Logout.php:84 -#: src/Module/Security/TwoFactor/SignOut.php:78 -#: src/Module/Security/TwoFactor/SignOut.php:86 -#: src/Module/Security/TwoFactor/SignOut.php:108 -#: src/Module/Security/TwoFactor/SignOut.php:115 +#: src/Module/Security/Logout.php:75 +#: src/Module/Security/TwoFactor/SignOut.php:64 +#: src/Module/Security/TwoFactor/SignOut.php:72 +#: src/Module/Security/TwoFactor/SignOut.php:94 +#: src/Module/Security/TwoFactor/SignOut.php:101 msgid "Logged out." msgstr "Skráður út." -#: src/Module/Security/OpenID.php:54 +#: src/Module/Security/OpenID.php:40 msgid "OpenID protocol error. No ID returned" msgstr "" -#: src/Module/Security/OpenID.php:90 +#: src/Module/Security/OpenID.php:76 msgid "" "Account not found. Please login to your existing account to add the OpenID " "to it." msgstr "" -#: src/Module/Security/OpenID.php:92 +#: src/Module/Security/OpenID.php:78 msgid "" "Account not found. Please register a new account or login to your existing " "account to add the OpenID to it." msgstr "" -#: src/Module/Security/PasswordTooLong.php:57 -#: src/Module/Settings/Account.php:67 +#: src/Module/Security/PasswordTooLong.php:43 +#: src/Module/Settings/Account.php:53 msgid "Passwords do not match." msgstr "" -#: src/Module/Security/PasswordTooLong.php:64 +#: src/Module/Security/PasswordTooLong.php:50 msgid "Password does not need changing." msgstr "" -#: src/Module/Security/PasswordTooLong.php:77 -#: src/Module/Settings/Account.php:81 +#: src/Module/Security/PasswordTooLong.php:63 +#: src/Module/Settings/Account.php:67 msgid "Password unchanged." msgstr "" -#: src/Module/Security/PasswordTooLong.php:91 +#: src/Module/Security/PasswordTooLong.php:77 msgid "Password Too Long" msgstr "" -#: src/Module/Security/PasswordTooLong.php:92 +#: src/Module/Security/PasswordTooLong.php:78 msgid "" "Since version 2022.09, we've realized that any password longer than 72 " "characters is truncated during hashing. To prevent any confusion about this " "behavior, please update your password to be fewer or equal to 72 characters." msgstr "" -#: src/Module/Security/PasswordTooLong.php:93 +#: src/Module/Security/PasswordTooLong.php:79 msgid "Update Password" msgstr "" -#: src/Module/Security/PasswordTooLong.php:99 -#: src/Module/Settings/Account.php:566 +#: src/Module/Security/PasswordTooLong.php:85 +#: src/Module/Settings/Account.php:557 msgid "Current Password:" msgstr "Núverandi lykilorð:" -#: src/Module/Security/PasswordTooLong.php:99 -#: src/Module/Settings/Account.php:566 +#: src/Module/Security/PasswordTooLong.php:85 +#: src/Module/Settings/Account.php:557 msgid "Your current password to confirm the changes" msgstr "" -#: src/Module/Security/PasswordTooLong.php:100 -#: src/Module/Settings/Account.php:550 +#: src/Module/Security/PasswordTooLong.php:86 +#: src/Module/Settings/Account.php:541 msgid "" "Allowed characters are a-z, A-Z, 0-9 and special characters except white " "spaces and accentuated letters." msgstr "" -#: src/Module/Security/PasswordTooLong.php:100 -#: src/Module/Settings/Account.php:551 +#: src/Module/Security/PasswordTooLong.php:86 +#: src/Module/Settings/Account.php:542 msgid "Password length is limited to 72 characters." msgstr "" -#: src/Module/Security/TwoFactor/Recovery.php:74 +#: src/Module/Security/TwoFactor/Recovery.php:60 #, php-format msgid "Remaining recovery codes: %d" msgstr "" -#: src/Module/Security/TwoFactor/Recovery.php:80 -#: src/Module/Security/TwoFactor/Verify.php:77 -#: src/Module/Settings/TwoFactor/Verify.php:98 +#: src/Module/Security/TwoFactor/Recovery.php:66 +#: src/Module/Security/TwoFactor/Verify.php:63 +#: src/Module/Settings/TwoFactor/Verify.php:84 msgid "Invalid code, please retry." msgstr "" -#: src/Module/Security/TwoFactor/Recovery.php:99 +#: src/Module/Security/TwoFactor/Recovery.php:85 msgid "Two-factor recovery" msgstr "" -#: src/Module/Security/TwoFactor/Recovery.php:100 +#: src/Module/Security/TwoFactor/Recovery.php:86 msgid "" "

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

" msgstr "" -#: src/Module/Security/TwoFactor/Recovery.php:101 +#: src/Module/Security/TwoFactor/Recovery.php:87 #, php-format msgid "Don’t have your phone? Enter a two-factor recovery code" msgstr "" -#: src/Module/Security/TwoFactor/Recovery.php:102 +#: src/Module/Security/TwoFactor/Recovery.php:88 msgid "Please enter a recovery code" msgstr "" -#: src/Module/Security/TwoFactor/Recovery.php:103 +#: src/Module/Security/TwoFactor/Recovery.php:89 msgid "Submit recovery code and complete login" msgstr "" -#: src/Module/Security/TwoFactor/SignOut.php:122 +#: src/Module/Security/TwoFactor/SignOut.php:108 msgid "Sign out of this browser?" msgstr "" -#: src/Module/Security/TwoFactor/SignOut.php:123 +#: src/Module/Security/TwoFactor/SignOut.php:109 msgid "" "

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

" msgstr "" -#: src/Module/Security/TwoFactor/SignOut.php:124 +#: src/Module/Security/TwoFactor/SignOut.php:110 msgid "Sign out" msgstr "" -#: src/Module/Security/TwoFactor/SignOut.php:126 +#: src/Module/Security/TwoFactor/SignOut.php:112 msgid "Trust and sign out" msgstr "" -#: src/Module/Security/TwoFactor/Trust.php:96 +#: src/Module/Security/TwoFactor/Trust.php:82 msgid "Couldn't save browser to Cookie." msgstr "" -#: src/Module/Security/TwoFactor/Trust.php:141 +#: src/Module/Security/TwoFactor/Trust.php:127 msgid "Trust this browser?" msgstr "" -#: src/Module/Security/TwoFactor/Trust.php:142 +#: src/Module/Security/TwoFactor/Trust.php:128 msgid "" "

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

" msgstr "" -#: src/Module/Security/TwoFactor/Trust.php:143 +#: src/Module/Security/TwoFactor/Trust.php:129 msgid "Not now" msgstr "" -#: src/Module/Security/TwoFactor/Trust.php:144 +#: src/Module/Security/TwoFactor/Trust.php:130 msgid "Don't trust" msgstr "" -#: src/Module/Security/TwoFactor/Trust.php:145 +#: src/Module/Security/TwoFactor/Trust.php:131 msgid "Trust" msgstr "" -#: src/Module/Security/TwoFactor/Verify.php:97 +#: src/Module/Security/TwoFactor/Verify.php:83 msgid "" "

Open the two-factor authentication app on your device to get an " "authentication code and verify your identity.

" msgstr "" -#: src/Module/Security/TwoFactor/Verify.php:100 +#: src/Module/Security/TwoFactor/Verify.php:86 #, php-format msgid "" "If you do not have access to your authentication code you can use a two-factor recovery code." msgstr "" -#: src/Module/Security/TwoFactor/Verify.php:101 -#: src/Module/Settings/TwoFactor/Verify.php:158 +#: src/Module/Security/TwoFactor/Verify.php:87 +#: src/Module/Settings/TwoFactor/Verify.php:144 msgid "Please enter a code from your authentication app" msgstr "" -#: src/Module/Security/TwoFactor/Verify.php:102 +#: src/Module/Security/TwoFactor/Verify.php:88 msgid "Verify code and complete login" msgstr "" -#: src/Module/Settings/Account.php:96 +#: src/Module/Settings/Account.php:82 msgid "Please use a shorter name." msgstr "" -#: src/Module/Settings/Account.php:99 +#: src/Module/Settings/Account.php:85 msgid "Name too short." msgstr "" -#: src/Module/Settings/Account.php:108 +#: src/Module/Settings/Account.php:94 msgid "Wrong Password." msgstr "" -#: src/Module/Settings/Account.php:113 +#: src/Module/Settings/Account.php:99 msgid "Invalid email." msgstr "Ógilt tölvupóstfang." -#: src/Module/Settings/Account.php:117 +#: src/Module/Settings/Account.php:103 msgid "Cannot change to that email." msgstr "" -#: src/Module/Settings/Account.php:146 src/Module/Settings/Account.php:195 -#: src/Module/Settings/Account.php:216 src/Module/Settings/Account.php:300 -#: src/Module/Settings/Account.php:329 +#: src/Module/Settings/Account.php:132 src/Module/Settings/Account.php:181 +#: src/Module/Settings/Account.php:202 src/Module/Settings/Account.php:286 +#: src/Module/Settings/Account.php:315 msgid "Settings were not updated." msgstr "" -#: src/Module/Settings/Account.php:342 +#: src/Module/Settings/Account.php:333 msgid "Contact CSV file upload error" msgstr "" -#: src/Module/Settings/Account.php:361 +#: src/Module/Settings/Account.php:352 msgid "Importing Contacts done" msgstr "" -#: src/Module/Settings/Account.php:374 +#: src/Module/Settings/Account.php:365 msgid "Relocate message has been send to your contacts" msgstr "" -#: src/Module/Settings/Account.php:391 +#: src/Module/Settings/Account.php:382 msgid "Unable to find your profile. Please contact your admin." msgstr "" -#: src/Module/Settings/Account.php:433 +#: src/Module/Settings/Account.php:424 msgid "" "Account for a service that automatically shares content based on user " "defined channels." msgstr "" -#: src/Module/Settings/Account.php:443 +#: src/Module/Settings/Account.php:434 msgid "Personal Page Subtypes" msgstr "" -#: src/Module/Settings/Account.php:444 +#: src/Module/Settings/Account.php:435 msgid "Community Group Subtypes" msgstr "" -#: src/Module/Settings/Account.php:455 +#: src/Module/Settings/Account.php:446 msgid "Account for a personal profile." msgstr "" -#: src/Module/Settings/Account.php:462 +#: src/Module/Settings/Account.php:453 msgid "" "Account for an organisation that automatically approves contact requests as " "\"Followers\"." msgstr "" -#: src/Module/Settings/Account.php:469 +#: src/Module/Settings/Account.php:460 msgid "" "Account for a news reflector that automatically approves contact requests as" " \"Followers\"." msgstr "" -#: src/Module/Settings/Account.php:476 +#: src/Module/Settings/Account.php:467 msgid "Account for community discussions." msgstr "" -#: src/Module/Settings/Account.php:484 +#: src/Module/Settings/Account.php:475 msgid "" "Account for a regular personal profile that requires manual approval of " "\"Friends\" and \"Followers\"." msgstr "" -#: src/Module/Settings/Account.php:491 +#: src/Module/Settings/Account.php:482 msgid "" "Account for a public profile that automatically approves contact requests as" " \"Followers\"." msgstr "" -#: src/Module/Settings/Account.php:498 +#: src/Module/Settings/Account.php:489 msgid "Automatically approves all contact requests." msgstr "" -#: src/Module/Settings/Account.php:505 +#: src/Module/Settings/Account.php:496 msgid "Contact requests have to be manually approved." msgstr "" -#: src/Module/Settings/Account.php:512 +#: src/Module/Settings/Account.php:503 msgid "" "Account for a popular profile that automatically approves contact requests " "as \"Friends\"." msgstr "" -#: src/Module/Settings/Account.php:517 +#: src/Module/Settings/Account.php:508 msgid "Private Group [Experimental]" msgstr "" -#: src/Module/Settings/Account.php:519 +#: src/Module/Settings/Account.php:510 msgid "Requires manual approval of contact requests." msgstr "" -#: src/Module/Settings/Account.php:528 +#: src/Module/Settings/Account.php:519 msgid "OpenID:" msgstr "OpenID:" -#: src/Module/Settings/Account.php:528 +#: src/Module/Settings/Account.php:519 msgid "(Optional) Allow this OpenID to login to this account." msgstr "(Valfrjálst) Leyfa þessu OpenID til að auðkennast sem þessi notandi." -#: src/Module/Settings/Account.php:536 +#: src/Module/Settings/Account.php:527 msgid "Publish your profile in your local site directory?" msgstr "" -#: src/Module/Settings/Account.php:536 +#: src/Module/Settings/Account.php:527 #, php-format msgid "" "Your profile will be published in this node's local " @@ -9846,94 +9840,94 @@ msgid "" " system settings." msgstr "" -#: src/Module/Settings/Account.php:542 +#: src/Module/Settings/Account.php:533 #, php-format msgid "" "Your profile will also be published in the global friendica directories " "(e.g. %s)." msgstr "" -#: src/Module/Settings/Account.php:555 +#: src/Module/Settings/Account.php:546 msgid "Account Settings" msgstr "Stillingar aðgangs" -#: src/Module/Settings/Account.php:556 +#: src/Module/Settings/Account.php:547 #, php-format msgid "Your Identity Address is '%s' or '%s'." msgstr "" -#: src/Module/Settings/Account.php:563 +#: src/Module/Settings/Account.php:554 msgid "Password Settings" msgstr "Stillingar aðgangsorða" -#: src/Module/Settings/Account.php:565 +#: src/Module/Settings/Account.php:556 msgid "Leave password fields blank unless changing" msgstr "Hafðu aðgangsorða svæði tóm nema þegar verið er að breyta" -#: src/Module/Settings/Account.php:567 +#: src/Module/Settings/Account.php:558 msgid "Password:" msgstr "Lykilorð:" -#: src/Module/Settings/Account.php:567 +#: src/Module/Settings/Account.php:558 msgid "Your current password to confirm the changes of the email address" msgstr "" -#: src/Module/Settings/Account.php:570 +#: src/Module/Settings/Account.php:561 msgid "Delete OpenID URL" msgstr "" -#: src/Module/Settings/Account.php:572 +#: src/Module/Settings/Account.php:563 msgid "Basic Settings" msgstr "Grunnstillingar" -#: src/Module/Settings/Account.php:573 -#: src/Module/Settings/Profile/Index.php:283 +#: src/Module/Settings/Account.php:564 +#: src/Module/Settings/Profile/Index.php:274 msgid "Display name:" msgstr "" -#: src/Module/Settings/Account.php:574 +#: src/Module/Settings/Account.php:565 msgid "Email Address:" msgstr "Tölvupóstfang:" -#: src/Module/Settings/Account.php:575 +#: src/Module/Settings/Account.php:566 msgid "Your Timezone:" msgstr "Þitt tímabelti:" -#: src/Module/Settings/Account.php:576 +#: src/Module/Settings/Account.php:567 msgid "Your Language:" msgstr "Tungumálið þitt:" -#: src/Module/Settings/Account.php:576 +#: src/Module/Settings/Account.php:567 msgid "" "Set the language we use to show you friendica interface and to send you " "emails" msgstr "" -#: src/Module/Settings/Account.php:577 +#: src/Module/Settings/Account.php:568 msgid "Default Post Location:" msgstr "Sjálfgefin staðsetning færslu:" -#: src/Module/Settings/Account.php:578 +#: src/Module/Settings/Account.php:569 msgid "Use Browser Location:" msgstr "Nota vafra staðsetningu:" -#: src/Module/Settings/Account.php:580 +#: src/Module/Settings/Account.php:571 msgid "Security and Privacy Settings" msgstr "Öryggis og friðhelgistillingar" -#: src/Module/Settings/Account.php:582 +#: src/Module/Settings/Account.php:573 msgid "Maximum Friend Requests/Day:" msgstr "Hámarks vinabeiðnir á dag:" -#: src/Module/Settings/Account.php:582 +#: src/Module/Settings/Account.php:573 msgid "(to prevent spam abuse)" msgstr "(til að koma í veg fyrir rusl misnotkun)" -#: src/Module/Settings/Account.php:584 +#: src/Module/Settings/Account.php:575 msgid "Allow your profile to be searchable globally?" msgstr "" -#: src/Module/Settings/Account.php:584 +#: src/Module/Settings/Account.php:575 msgid "" "Activate this setting if you want others to easily find and follow you. Your" " profile will be searchable on remote systems. This setting also determines " @@ -9941,43 +9935,43 @@ msgid "" "indexed or not." msgstr "" -#: src/Module/Settings/Account.php:585 +#: src/Module/Settings/Account.php:576 msgid "Hide your contact/friend list from viewers of your profile?" msgstr "" -#: src/Module/Settings/Account.php:585 +#: src/Module/Settings/Account.php:576 msgid "" "A list of your contacts is displayed on your profile page. Activate this " "option to disable the display of your contact list." msgstr "" -#: src/Module/Settings/Account.php:586 +#: src/Module/Settings/Account.php:577 msgid "Hide your public content from anonymous viewers" msgstr "" -#: src/Module/Settings/Account.php:586 +#: src/Module/Settings/Account.php:577 msgid "" "Anonymous visitors will only see your basic profile details. Your public " "posts and replies will still be freely accessible on the remote servers of " "your followers and through relays." msgstr "" -#: src/Module/Settings/Account.php:587 +#: src/Module/Settings/Account.php:578 msgid "Make public posts unlisted" msgstr "" -#: src/Module/Settings/Account.php:587 +#: src/Module/Settings/Account.php:578 msgid "" "Your public posts will not appear on the community pages or in search " "results, nor be sent to relay servers. However they can still appear on " "public feeds on remote servers." msgstr "" -#: src/Module/Settings/Account.php:588 +#: src/Module/Settings/Account.php:579 msgid "Make all posted pictures accessible" msgstr "" -#: src/Module/Settings/Account.php:588 +#: src/Module/Settings/Account.php:579 msgid "" "This option makes every posted picture accessible via the direct link. This " "is a workaround for the problem that most other networks can't handle " @@ -9985,352 +9979,352 @@ msgid "" "public on your photo albums though." msgstr "" -#: src/Module/Settings/Account.php:589 +#: src/Module/Settings/Account.php:580 msgid "Allow friends to post to your profile page?" msgstr "Leyfa vinum að deila á forsíðuna þína?" -#: src/Module/Settings/Account.php:589 +#: src/Module/Settings/Account.php:580 msgid "" "Your contacts may write posts on your profile wall. These posts will be " "distributed to your contacts" msgstr "" -#: src/Module/Settings/Account.php:590 +#: src/Module/Settings/Account.php:581 msgid "Allow friends to tag your posts?" msgstr "Leyfa vinum að merkja færslurnar þínar?" -#: src/Module/Settings/Account.php:590 +#: src/Module/Settings/Account.php:581 msgid "Your contacts can add additional tags to your posts." msgstr "" -#: src/Module/Settings/Account.php:591 +#: src/Module/Settings/Account.php:582 msgid "Default privacy circle for new contacts" msgstr "" -#: src/Module/Settings/Account.php:592 +#: src/Module/Settings/Account.php:583 msgid "Default privacy circle for new group contacts" msgstr "" -#: src/Module/Settings/Account.php:593 +#: src/Module/Settings/Account.php:584 msgid "Default Post Permissions" msgstr "Sjálfgefnar aðgangstýring á færslum" -#: src/Module/Settings/Account.php:597 +#: src/Module/Settings/Account.php:588 msgid "Expiration settings" msgstr "" -#: src/Module/Settings/Account.php:598 +#: src/Module/Settings/Account.php:589 msgid "Automatically expire posts after this many days:" msgstr "Sjálfkrafa fyrna færslu eftir hvað marga daga:" -#: src/Module/Settings/Account.php:598 +#: src/Module/Settings/Account.php:589 msgid "If empty, posts will not expire. Expired posts will be deleted" msgstr "Tómar færslur renna ekki út. Útrunnum færslum er eytt" -#: src/Module/Settings/Account.php:599 +#: src/Module/Settings/Account.php:590 msgid "Expire posts" msgstr "" -#: src/Module/Settings/Account.php:599 +#: src/Module/Settings/Account.php:590 msgid "When activated, posts and comments will be expired." msgstr "" -#: src/Module/Settings/Account.php:600 +#: src/Module/Settings/Account.php:591 msgid "Expire personal notes" msgstr "" -#: src/Module/Settings/Account.php:600 +#: src/Module/Settings/Account.php:591 msgid "" "When activated, the personal notes on your profile page will be expired." msgstr "" -#: src/Module/Settings/Account.php:601 +#: src/Module/Settings/Account.php:592 msgid "Expire starred posts" msgstr "" -#: src/Module/Settings/Account.php:601 +#: src/Module/Settings/Account.php:592 msgid "" "Starring posts keeps them from being expired. That behaviour is overwritten " "by this setting." msgstr "" -#: src/Module/Settings/Account.php:602 +#: src/Module/Settings/Account.php:593 msgid "Only expire posts by others" msgstr "" -#: src/Module/Settings/Account.php:602 +#: src/Module/Settings/Account.php:593 msgid "" "When activated, your own posts never expire. Then the settings above are " "only valid for posts you received." msgstr "" -#: src/Module/Settings/Account.php:605 +#: src/Module/Settings/Account.php:596 msgid "Notification Settings" msgstr "Stillingar á tilkynningum" -#: src/Module/Settings/Account.php:606 +#: src/Module/Settings/Account.php:597 msgid "Send a notification email when:" msgstr "Senda tilkynningapóst þegar:" -#: src/Module/Settings/Account.php:607 +#: src/Module/Settings/Account.php:598 msgid "You receive an introduction" msgstr "Þú færð kynningu" -#: src/Module/Settings/Account.php:608 +#: src/Module/Settings/Account.php:599 msgid "Your introductions are confirmed" msgstr "Kynningarnar þínar eru samþykktar" -#: src/Module/Settings/Account.php:609 +#: src/Module/Settings/Account.php:600 msgid "Someone writes on your profile wall" msgstr "Einhver skrifar á vegginn þinn" -#: src/Module/Settings/Account.php:610 +#: src/Module/Settings/Account.php:601 msgid "Someone writes a followup comment" msgstr "Einhver skrifar athugasemd á færslu hjá þér" -#: src/Module/Settings/Account.php:611 +#: src/Module/Settings/Account.php:602 msgid "You receive a private message" msgstr "Þú færð einkaskilaboð" -#: src/Module/Settings/Account.php:612 +#: src/Module/Settings/Account.php:603 msgid "You receive a friend suggestion" msgstr "Þér hefur borist vina uppástunga" -#: src/Module/Settings/Account.php:613 +#: src/Module/Settings/Account.php:604 msgid "You are tagged in a post" msgstr "Þú varst merkt(ur) í færslu" -#: src/Module/Settings/Account.php:615 +#: src/Module/Settings/Account.php:606 msgid "Create a desktop notification when:" msgstr "" -#: src/Module/Settings/Account.php:616 +#: src/Module/Settings/Account.php:607 msgid "Someone tagged you" msgstr "" -#: src/Module/Settings/Account.php:617 +#: src/Module/Settings/Account.php:608 msgid "Someone directly commented on your post" msgstr "" -#: src/Module/Settings/Account.php:618 +#: src/Module/Settings/Account.php:609 msgid "Someone liked your content" msgstr "" -#: src/Module/Settings/Account.php:618 src/Module/Settings/Account.php:619 +#: src/Module/Settings/Account.php:609 src/Module/Settings/Account.php:610 msgid "Can only be enabled, when the direct comment notification is enabled." msgstr "" -#: src/Module/Settings/Account.php:619 +#: src/Module/Settings/Account.php:610 msgid "Someone shared your content" msgstr "" -#: src/Module/Settings/Account.php:620 +#: src/Module/Settings/Account.php:611 msgid "Someone commented in your thread" msgstr "" -#: src/Module/Settings/Account.php:621 +#: src/Module/Settings/Account.php:612 msgid "Someone commented in a thread where you commented" msgstr "" -#: src/Module/Settings/Account.php:622 +#: src/Module/Settings/Account.php:613 msgid "Someone commented in a thread where you interacted" msgstr "" -#: src/Module/Settings/Account.php:624 +#: src/Module/Settings/Account.php:615 msgid "Activate desktop notifications" msgstr "" -#: src/Module/Settings/Account.php:624 +#: src/Module/Settings/Account.php:615 msgid "Show desktop popup on new notifications" msgstr "" -#: src/Module/Settings/Account.php:628 +#: src/Module/Settings/Account.php:619 msgid "Text-only notification emails" msgstr "" -#: src/Module/Settings/Account.php:630 +#: src/Module/Settings/Account.php:621 msgid "Send text only notification emails, without the html part" msgstr "" -#: src/Module/Settings/Account.php:634 +#: src/Module/Settings/Account.php:625 msgid "Show detailled notifications" msgstr "" -#: src/Module/Settings/Account.php:636 +#: src/Module/Settings/Account.php:627 msgid "" "Per default, notifications are condensed to a single notification per item. " "When enabled every notification is displayed." msgstr "" -#: src/Module/Settings/Account.php:640 +#: src/Module/Settings/Account.php:631 msgid "Show notifications of ignored contacts" msgstr "" -#: src/Module/Settings/Account.php:642 +#: src/Module/Settings/Account.php:633 msgid "" "You don't see posts from ignored contacts. But you still see their comments." " This setting controls if you want to still receive regular notifications " "that are caused by ignored contacts or not." msgstr "" -#: src/Module/Settings/Account.php:645 +#: src/Module/Settings/Account.php:636 msgid "Advanced Account/Page Type Settings" msgstr "" -#: src/Module/Settings/Account.php:646 +#: src/Module/Settings/Account.php:637 msgid "Change the behaviour of this account for special situations" msgstr "" -#: src/Module/Settings/Account.php:649 +#: src/Module/Settings/Account.php:640 msgid "Import Contacts" msgstr "" -#: src/Module/Settings/Account.php:650 +#: src/Module/Settings/Account.php:641 msgid "" "Upload a CSV file that contains the handle of your followed accounts in the " "first column you exported from the old account." msgstr "" -#: src/Module/Settings/Account.php:651 +#: src/Module/Settings/Account.php:642 msgid "Upload File" msgstr "" -#: src/Module/Settings/Account.php:654 +#: src/Module/Settings/Account.php:645 msgid "Relocate" msgstr "Endurstaðsetja" -#: src/Module/Settings/Account.php:655 +#: src/Module/Settings/Account.php:646 msgid "" "If you have moved this profile from another server, and some of your " "contacts don't receive your updates, try pushing this button." msgstr "" -#: src/Module/Settings/Account.php:656 +#: src/Module/Settings/Account.php:647 msgid "Resend relocate message to contacts" msgstr "" -#: src/Module/Settings/Addons.php:86 +#: src/Module/Settings/Addons.php:72 msgid "Addon Settings" msgstr "" -#: src/Module/Settings/Addons.php:87 +#: src/Module/Settings/Addons.php:73 msgid "No Addon settings configured" msgstr "" -#: src/Module/Settings/Channels.php:148 +#: src/Module/Settings/Channels.php:134 msgid "" "This page can be used to define the channels that will automatically be " "reshared by your account." msgstr "" -#: src/Module/Settings/Channels.php:153 +#: src/Module/Settings/Channels.php:139 msgid "This page can be used to define your own channels." msgstr "" -#: src/Module/Settings/Channels.php:182 +#: src/Module/Settings/Channels.php:168 msgid "Publish" msgstr "" -#: src/Module/Settings/Channels.php:182 +#: src/Module/Settings/Channels.php:168 msgid "" "When selected, the channel results are reshared. This only works for public " "ActivityPub posts from the public timeline or the user defined circles." msgstr "" -#: src/Module/Settings/Channels.php:190 src/Module/Settings/Channels.php:211 -#: src/Module/Settings/Display.php:338 +#: src/Module/Settings/Channels.php:176 src/Module/Settings/Channels.php:197 +#: src/Module/Settings/Display.php:324 msgid "Label" msgstr "" -#: src/Module/Settings/Channels.php:191 src/Module/Settings/Channels.php:212 -#: src/Module/Settings/Display.php:339 -#: src/Module/Settings/TwoFactor/AppSpecific.php:137 +#: src/Module/Settings/Channels.php:177 src/Module/Settings/Channels.php:198 +#: src/Module/Settings/Display.php:325 +#: src/Module/Settings/TwoFactor/AppSpecific.php:123 msgid "Description" msgstr "" -#: src/Module/Settings/Channels.php:192 src/Module/Settings/Channels.php:213 +#: src/Module/Settings/Channels.php:178 src/Module/Settings/Channels.php:199 msgid "Access Key" msgstr "" -#: src/Module/Settings/Channels.php:193 src/Module/Settings/Channels.php:214 +#: src/Module/Settings/Channels.php:179 src/Module/Settings/Channels.php:200 msgid "Circle/Channel" msgstr "" -#: src/Module/Settings/Channels.php:194 src/Module/Settings/Channels.php:215 +#: src/Module/Settings/Channels.php:180 src/Module/Settings/Channels.php:201 msgid "Include Tags" msgstr "" -#: src/Module/Settings/Channels.php:195 src/Module/Settings/Channels.php:216 +#: src/Module/Settings/Channels.php:181 src/Module/Settings/Channels.php:202 msgid "Exclude Tags" msgstr "" -#: src/Module/Settings/Channels.php:196 src/Module/Settings/Channels.php:217 +#: src/Module/Settings/Channels.php:182 src/Module/Settings/Channels.php:203 msgid "Minimum Size" msgstr "" -#: src/Module/Settings/Channels.php:197 src/Module/Settings/Channels.php:218 +#: src/Module/Settings/Channels.php:183 src/Module/Settings/Channels.php:204 msgid "Maximum Size" msgstr "" -#: src/Module/Settings/Channels.php:198 src/Module/Settings/Channels.php:219 +#: src/Module/Settings/Channels.php:184 src/Module/Settings/Channels.php:205 msgid "Full Text Search" msgstr "" -#: src/Module/Settings/Channels.php:202 src/Module/Settings/Channels.php:223 +#: src/Module/Settings/Channels.php:188 src/Module/Settings/Channels.php:209 msgid "Select all languages that you want to see in this channel." msgstr "" -#: src/Module/Settings/Channels.php:204 +#: src/Module/Settings/Channels.php:190 msgid "Delete channel" msgstr "" -#: src/Module/Settings/Channels.php:204 +#: src/Module/Settings/Channels.php:190 msgid "Check to delete this entry from the channel list" msgstr "" -#: src/Module/Settings/Channels.php:211 +#: src/Module/Settings/Channels.php:197 msgid "Short name for the channel. It is displayed on the channels widget." msgstr "" -#: src/Module/Settings/Channels.php:212 +#: src/Module/Settings/Channels.php:198 msgid "This should describe the content of the channel in a few word." msgstr "" -#: src/Module/Settings/Channels.php:213 +#: src/Module/Settings/Channels.php:199 msgid "" "When you want to access this channel via an access key, you can define it " "here. Pay attention to not use an already used one." msgstr "" -#: src/Module/Settings/Channels.php:214 +#: src/Module/Settings/Channels.php:200 msgid "Select a circle or channel, that your channel should be based on." msgstr "" -#: src/Module/Settings/Channels.php:215 +#: src/Module/Settings/Channels.php:201 msgid "" "Comma separated list of tags. A post will be used when it contains any of " "the listed tags." msgstr "" -#: src/Module/Settings/Channels.php:216 +#: src/Module/Settings/Channels.php:202 msgid "" "Comma separated list of tags. If a post contain any of these tags, then it " "will not be part of nthis channel." msgstr "" -#: src/Module/Settings/Channels.php:217 +#: src/Module/Settings/Channels.php:203 msgid "" "Minimum post size. Leave empty for no minimum size. The size is calculated " "without links, attached posts, mentions or hashtags." msgstr "" -#: src/Module/Settings/Channels.php:218 +#: src/Module/Settings/Channels.php:204 msgid "" "Maximum post size. Leave empty for no maximum size. The size is calculated " "without links, attached posts, mentions or hashtags." msgstr "" -#: src/Module/Settings/Channels.php:219 +#: src/Module/Settings/Channels.php:205 #, php-format msgid "" "Search terms for the body, supports the \"boolean mode\" operators from " @@ -10338,576 +10332,589 @@ msgid "" "keywords: %s" msgstr "" -#: src/Module/Settings/Channels.php:220 +#: src/Module/Settings/Channels.php:206 msgid "Check to display images in the channel." msgstr "" -#: src/Module/Settings/Channels.php:221 +#: src/Module/Settings/Channels.php:207 msgid "Check to display videos in the channel." msgstr "" -#: src/Module/Settings/Channels.php:222 +#: src/Module/Settings/Channels.php:208 msgid "Check to display audio in the channel." msgstr "" -#: src/Module/Settings/Channels.php:227 +#: src/Module/Settings/Channels.php:213 msgid "Add new entry to the channel list" msgstr "" -#: src/Module/Settings/Channels.php:228 +#: src/Module/Settings/Channels.php:214 msgid "Add" msgstr "Bæta við" -#: src/Module/Settings/Channels.php:230 +#: src/Module/Settings/Channels.php:216 msgid "Current Entries in the channel list" msgstr "" -#: src/Module/Settings/Channels.php:233 +#: src/Module/Settings/Channels.php:219 msgid "Delete entry from the channel list" msgstr "" -#: src/Module/Settings/Channels.php:234 +#: src/Module/Settings/Channels.php:220 msgid "Delete entry from the channel list?" msgstr "" -#: src/Module/Settings/Connectors.php:120 +#: src/Module/Settings/Connectors.php:108 msgid "Failed to connect with email account using the settings provided." msgstr "Ekki tókst að tengjast við pósthólf með stillingum sem uppgefnar eru." -#: src/Module/Settings/Connectors.php:166 -#: src/Module/Settings/Connectors.php:167 +#: src/Module/Settings/Connectors.php:155 +#: src/Module/Settings/Connectors.php:156 msgid "Diaspora (Socialhome, Hubzilla)" msgstr "Diaspora (Socialhome, Hubzilla)" -#: src/Module/Settings/Connectors.php:166 -#: src/Module/Settings/Connectors.php:170 +#: src/Module/Settings/Connectors.php:155 #, php-format msgid "Built-in support for %s connectivity is enabled" msgstr "" -#: src/Module/Settings/Connectors.php:167 -#: src/Module/Settings/Connectors.php:169 +#: src/Module/Settings/Connectors.php:156 #, php-format msgid "Built-in support for %s connectivity is disabled" msgstr "" -#: src/Module/Settings/Connectors.php:169 -#: src/Module/Settings/Connectors.php:170 -msgid "OStatus (GNU Social)" -msgstr "" - -#: src/Module/Settings/Connectors.php:182 +#: src/Module/Settings/Connectors.php:167 msgid "Email access is disabled on this site." msgstr "Slökkt hefur verið á tölvupóst aðgang á þessum þjón." -#: src/Module/Settings/Connectors.php:197 -#: src/Module/Settings/Connectors.php:244 +#: src/Module/Settings/Connectors.php:182 +#: src/Module/Settings/Connectors.php:233 msgid "None" msgstr "Ekkert" -#: src/Module/Settings/Connectors.php:209 +#: src/Module/Settings/Connectors.php:186 +msgid "Default (Mastodon will display the title and a link to the post)" +msgstr "" + +#: src/Module/Settings/Connectors.php:187 +msgid "" +"Use the summary (Mastodon and some others will treat it as content warning)" +msgstr "" + +#: src/Module/Settings/Connectors.php:188 +msgid "Embed the title in the body" +msgstr "" + +#: src/Module/Settings/Connectors.php:199 msgid "General Social Media Settings" msgstr "Almennar stillingar samfélagsmiðla" -#: src/Module/Settings/Connectors.php:212 +#: src/Module/Settings/Connectors.php:202 msgid "Followed content scope" msgstr "" -#: src/Module/Settings/Connectors.php:214 +#: src/Module/Settings/Connectors.php:204 msgid "" "By default, conversations in which your follows participated but didn't " "start will be shown in your timeline. You can turn this behavior off, or " "expand it to the conversations in which your follows liked a post." msgstr "" -#: src/Module/Settings/Connectors.php:216 +#: src/Module/Settings/Connectors.php:206 msgid "Only conversations my follows started" msgstr "" -#: src/Module/Settings/Connectors.php:217 +#: src/Module/Settings/Connectors.php:207 msgid "Conversations my follows started or commented on (default)" msgstr "" -#: src/Module/Settings/Connectors.php:218 +#: src/Module/Settings/Connectors.php:208 msgid "Any conversation my follows interacted with, including likes" msgstr "" -#: src/Module/Settings/Connectors.php:221 +#: src/Module/Settings/Connectors.php:211 msgid "Collapse sensitive posts" msgstr "" -#: src/Module/Settings/Connectors.php:221 +#: src/Module/Settings/Connectors.php:211 msgid "" "If a post is marked as \"sensitive\", it will be displayed in a collapsed " "state, if this option is enabled." msgstr "" -#: src/Module/Settings/Connectors.php:222 +#: src/Module/Settings/Connectors.php:212 msgid "Enable intelligent shortening" msgstr "" -#: src/Module/Settings/Connectors.php:222 +#: src/Module/Settings/Connectors.php:212 msgid "" "Normally the system tries to find the best link to add to shortened posts. " "If disabled, every shortened post will always point to the original " "friendica post." msgstr "" -#: src/Module/Settings/Connectors.php:223 +#: src/Module/Settings/Connectors.php:213 msgid "Enable simple text shortening" msgstr "" -#: src/Module/Settings/Connectors.php:223 +#: src/Module/Settings/Connectors.php:213 msgid "" "Normally the system shortens posts at the next line feed. If this option is " "enabled then the system will shorten the text at the maximum character " "limit." msgstr "" -#: src/Module/Settings/Connectors.php:224 +#: src/Module/Settings/Connectors.php:214 msgid "Attach the link title" msgstr "" -#: src/Module/Settings/Connectors.php:224 +#: src/Module/Settings/Connectors.php:214 msgid "" "When activated, the title of the attached link will be added as a title on " "posts to Diaspora. This is mostly helpful with \"remote-self\" contacts that" " share feed content." msgstr "" -#: src/Module/Settings/Connectors.php:225 +#: src/Module/Settings/Connectors.php:215 msgid "API: Use spoiler field as title" msgstr "" -#: src/Module/Settings/Connectors.php:225 +#: src/Module/Settings/Connectors.php:215 msgid "" "When activated, the \"spoiler_text\" field in the API will be used for the " "title on standalone posts. When deactivated it will be used for spoiler " "text. For comments it will always be used for spoiler text." msgstr "" -#: src/Module/Settings/Connectors.php:226 +#: src/Module/Settings/Connectors.php:216 msgid "API: Automatically links at the end of the post as attached posts" msgstr "" -#: src/Module/Settings/Connectors.php:226 +#: src/Module/Settings/Connectors.php:216 msgid "" "When activated, added links at the end of the post react the same way as " "added links in the web interface." msgstr "" -#: src/Module/Settings/Connectors.php:227 +#: src/Module/Settings/Connectors.php:217 +msgid "Article Mode" +msgstr "" + +#: src/Module/Settings/Connectors.php:217 +msgid "" +"Controls how posts with titles are transmitted. Mastodon and its forks don't" +" display the content of these posts if the post is created in the correct " +"(default) way." +msgstr "" + +#: src/Module/Settings/Connectors.php:218 msgid "Your legacy ActivityPub/GNU Social account" msgstr "" -#: src/Module/Settings/Connectors.php:227 +#: src/Module/Settings/Connectors.php:218 msgid "" "If you enter your old account name from an ActivityPub based system or your " "GNU Social/Statusnet account name here (in the format user@domain.tld), your" " contacts will be added automatically. The field will be emptied when done." msgstr "" -#: src/Module/Settings/Connectors.php:229 -msgid "Repair OStatus subscriptions" -msgstr "" - -#: src/Module/Settings/Connectors.php:233 +#: src/Module/Settings/Connectors.php:222 msgid "Email/Mailbox Setup" msgstr "Tölvupóstur stilling" -#: src/Module/Settings/Connectors.php:234 +#: src/Module/Settings/Connectors.php:223 msgid "" "If you wish to communicate with email contacts using this service " "(optional), please specify how to connect to your mailbox." msgstr "Ef þú villt hafa samskipti við tölvupóststengiliði með þessari þjónustu (valfrjálst), skilgreindu þá hvernig á að tengjast póstfanginu þínu." -#: src/Module/Settings/Connectors.php:235 +#: src/Module/Settings/Connectors.php:224 msgid "Last successful email check:" msgstr "Síðasta prófun á tölvupóstfangi:" -#: src/Module/Settings/Connectors.php:237 +#: src/Module/Settings/Connectors.php:226 msgid "IMAP server name:" msgstr "IMAP þjónn:" -#: src/Module/Settings/Connectors.php:238 +#: src/Module/Settings/Connectors.php:227 msgid "IMAP port:" msgstr "IMAP port:" -#: src/Module/Settings/Connectors.php:239 +#: src/Module/Settings/Connectors.php:228 msgid "Security:" msgstr "Öryggi:" -#: src/Module/Settings/Connectors.php:240 +#: src/Module/Settings/Connectors.php:229 msgid "Email login name:" msgstr "Notandanafn tölvupóstfangs:" -#: src/Module/Settings/Connectors.php:241 +#: src/Module/Settings/Connectors.php:230 msgid "Email password:" msgstr "Lykilorð tölvupóstfangs:" -#: src/Module/Settings/Connectors.php:242 +#: src/Module/Settings/Connectors.php:231 msgid "Reply-to address:" msgstr "Svarpóstfang:" -#: src/Module/Settings/Connectors.php:243 +#: src/Module/Settings/Connectors.php:232 msgid "Send public posts to all email contacts:" msgstr "Senda opinberar færslur á alla tölvupóst viðtakendur:" -#: src/Module/Settings/Connectors.php:244 +#: src/Module/Settings/Connectors.php:233 msgid "Action after import:" msgstr "" -#: src/Module/Settings/Connectors.php:244 +#: src/Module/Settings/Connectors.php:233 msgid "Move to folder" msgstr "Flytja yfir í skrásafn" -#: src/Module/Settings/Connectors.php:245 +#: src/Module/Settings/Connectors.php:234 msgid "Move to folder:" msgstr "Flytja yfir í skrásafn:" -#: src/Module/Settings/Delegation.php:73 +#: src/Module/Settings/Delegation.php:59 msgid "Delegation successfully granted." msgstr "" -#: src/Module/Settings/Delegation.php:75 +#: src/Module/Settings/Delegation.php:61 msgid "Parent user not found, unavailable or password doesn't match." msgstr "" -#: src/Module/Settings/Delegation.php:79 +#: src/Module/Settings/Delegation.php:65 msgid "Delegation successfully revoked." msgstr "" -#: src/Module/Settings/Delegation.php:98 -#: src/Module/Settings/Delegation.php:120 +#: src/Module/Settings/Delegation.php:84 +#: src/Module/Settings/Delegation.php:106 msgid "" "Delegated administrators can view but not change delegation permissions." msgstr "" -#: src/Module/Settings/Delegation.php:112 +#: src/Module/Settings/Delegation.php:98 msgid "Delegate user not found." msgstr "" -#: src/Module/Settings/Delegation.php:169 +#: src/Module/Settings/Delegation.php:155 msgid "No parent user" msgstr "" -#: src/Module/Settings/Delegation.php:180 -#: src/Module/Settings/Delegation.php:191 +#: src/Module/Settings/Delegation.php:166 +#: src/Module/Settings/Delegation.php:177 msgid "Parent User" msgstr "" -#: src/Module/Settings/Delegation.php:188 +#: src/Module/Settings/Delegation.php:174 msgid "Additional Accounts" msgstr "" -#: src/Module/Settings/Delegation.php:189 +#: src/Module/Settings/Delegation.php:175 msgid "" "Register additional accounts that are automatically connected to your " "existing account so you can manage them from this account." msgstr "" -#: src/Module/Settings/Delegation.php:190 +#: src/Module/Settings/Delegation.php:176 msgid "Register an additional account" msgstr "" -#: src/Module/Settings/Delegation.php:192 +#: src/Module/Settings/Delegation.php:178 msgid "" "Parent users have total control about this account, including the account " "settings. Please double check whom you give this access." msgstr "" -#: src/Module/Settings/Delegation.php:195 +#: src/Module/Settings/Delegation.php:181 msgid "Delegates" msgstr "" -#: src/Module/Settings/Delegation.php:196 +#: src/Module/Settings/Delegation.php:182 msgid "" "Delegates are able to manage all aspects of this account/page except for " "basic account settings. Please do not delegate your personal account to " "anybody that you do not trust completely." msgstr "" -#: src/Module/Settings/Delegation.php:197 +#: src/Module/Settings/Delegation.php:183 msgid "Existing Page Delegates" msgstr "" -#: src/Module/Settings/Delegation.php:198 +#: src/Module/Settings/Delegation.php:184 msgid "Potential Delegates" msgstr "" -#: src/Module/Settings/Delegation.php:199 +#: src/Module/Settings/Delegation.php:185 msgid "No entries." msgstr "Engar færslur." -#: src/Module/Settings/Display.php:183 +#: src/Module/Settings/Display.php:169 msgid "The theme you chose isn't available." msgstr "" -#: src/Module/Settings/Display.php:223 +#: src/Module/Settings/Display.php:209 #, php-format msgid "%s - (Unsupported)" msgstr "%s - (ekki stutt)" -#: src/Module/Settings/Display.php:260 +#: src/Module/Settings/Display.php:246 msgid "No preview" msgstr "" -#: src/Module/Settings/Display.php:261 +#: src/Module/Settings/Display.php:247 msgid "No image" msgstr "" -#: src/Module/Settings/Display.php:262 +#: src/Module/Settings/Display.php:248 msgid "Small Image" msgstr "" -#: src/Module/Settings/Display.php:263 +#: src/Module/Settings/Display.php:249 msgid "Large Image" msgstr "" -#: src/Module/Settings/Display.php:308 +#: src/Module/Settings/Display.php:294 msgid "Display Settings" msgstr "Birtingarstillingar" -#: src/Module/Settings/Display.php:310 +#: src/Module/Settings/Display.php:296 msgid "General Theme Settings" msgstr "" -#: src/Module/Settings/Display.php:311 +#: src/Module/Settings/Display.php:297 msgid "Custom Theme Settings" msgstr "" -#: src/Module/Settings/Display.php:312 +#: src/Module/Settings/Display.php:298 msgid "Content Settings" msgstr "Stillingar efnis" -#: src/Module/Settings/Display.php:313 view/theme/duepuntozero/config.php:86 -#: view/theme/frio/config.php:151 view/theme/quattro/config.php:88 -#: view/theme/vier/config.php:136 +#: src/Module/Settings/Display.php:299 view/theme/duepuntozero/config.php:74 +#: view/theme/frio/config.php:139 view/theme/quattro/config.php:76 +#: view/theme/vier/config.php:124 msgid "Theme settings" msgstr "Þemastillingar" -#: src/Module/Settings/Display.php:314 +#: src/Module/Settings/Display.php:300 msgid "Timelines" msgstr "" -#: src/Module/Settings/Display.php:321 +#: src/Module/Settings/Display.php:307 msgid "Display Theme:" msgstr "Útlits þema:" -#: src/Module/Settings/Display.php:322 +#: src/Module/Settings/Display.php:308 msgid "Mobile Theme:" msgstr "Farsímaþema" -#: src/Module/Settings/Display.php:325 +#: src/Module/Settings/Display.php:311 msgid "Number of items to display per page:" msgstr "" -#: src/Module/Settings/Display.php:325 src/Module/Settings/Display.php:326 +#: src/Module/Settings/Display.php:311 src/Module/Settings/Display.php:312 msgid "Maximum of 100 items" msgstr "" -#: src/Module/Settings/Display.php:326 +#: src/Module/Settings/Display.php:312 msgid "Number of items to display per page when viewed from mobile device:" msgstr "" -#: src/Module/Settings/Display.php:327 +#: src/Module/Settings/Display.php:313 msgid "Update browser every xx seconds" msgstr "Endurhlaða vefsíðu á xx sekúndu fresti" -#: src/Module/Settings/Display.php:327 +#: src/Module/Settings/Display.php:313 msgid "Minimum of 10 seconds. Enter -1 to disable it." msgstr "" -#: src/Module/Settings/Display.php:328 +#: src/Module/Settings/Display.php:314 msgid "Display emoticons" msgstr "" -#: src/Module/Settings/Display.php:328 +#: src/Module/Settings/Display.php:314 msgid "When enabled, emoticons are replaced with matching symbols." msgstr "" -#: src/Module/Settings/Display.php:329 +#: src/Module/Settings/Display.php:315 msgid "Infinite scroll" msgstr "" -#: src/Module/Settings/Display.php:329 +#: src/Module/Settings/Display.php:315 msgid "Automatic fetch new items when reaching the page end." msgstr "" -#: src/Module/Settings/Display.php:330 +#: src/Module/Settings/Display.php:316 msgid "Enable Smart Threading" msgstr "" -#: src/Module/Settings/Display.php:330 +#: src/Module/Settings/Display.php:316 msgid "Enable the automatic suppression of extraneous thread indentation." msgstr "" -#: src/Module/Settings/Display.php:331 +#: src/Module/Settings/Display.php:317 msgid "Display the Dislike feature" msgstr "" -#: src/Module/Settings/Display.php:331 +#: src/Module/Settings/Display.php:317 msgid "" "Display the Dislike button and dislike reactions on posts and comments." msgstr "" -#: src/Module/Settings/Display.php:332 +#: src/Module/Settings/Display.php:318 msgid "Display the resharer" msgstr "" -#: src/Module/Settings/Display.php:332 +#: src/Module/Settings/Display.php:318 msgid "Display the first resharer as icon and text on a reshared item." msgstr "" -#: src/Module/Settings/Display.php:333 +#: src/Module/Settings/Display.php:319 msgid "Stay local" msgstr "" -#: src/Module/Settings/Display.php:333 +#: src/Module/Settings/Display.php:319 msgid "Don't go to a remote system when following a contact link." msgstr "" -#: src/Module/Settings/Display.php:334 +#: src/Module/Settings/Display.php:320 msgid "Show the post deletion checkbox" msgstr "" -#: src/Module/Settings/Display.php:334 +#: src/Module/Settings/Display.php:320 msgid "Display the checkbox for the post deletion on the network page." msgstr "" -#: src/Module/Settings/Display.php:335 +#: src/Module/Settings/Display.php:321 msgid "DIsplay the event list" msgstr "" -#: src/Module/Settings/Display.php:335 +#: src/Module/Settings/Display.php:321 msgid "Display the birthday reminder and event list on the network page." msgstr "" -#: src/Module/Settings/Display.php:336 +#: src/Module/Settings/Display.php:322 msgid "Link preview mode" msgstr "" -#: src/Module/Settings/Display.php:336 +#: src/Module/Settings/Display.php:322 msgid "Appearance of the link preview that is added to each post with a link." msgstr "" -#: src/Module/Settings/Display.php:341 +#: src/Module/Settings/Display.php:327 msgid "Bookmark" msgstr "" -#: src/Module/Settings/Display.php:343 +#: src/Module/Settings/Display.php:329 msgid "" "Enable timelines that you want to see in the channels widget. Bookmark " "timelines that you want to see in the top menu." msgstr "" -#: src/Module/Settings/Display.php:345 +#: src/Module/Settings/Display.php:331 msgid "Channel languages:" msgstr "" -#: src/Module/Settings/Display.php:345 +#: src/Module/Settings/Display.php:331 msgid "Select all languages that you want to see in your channels." msgstr "" -#: src/Module/Settings/Display.php:347 +#: src/Module/Settings/Display.php:333 msgid "Beginning of week:" msgstr "Upphaf viku:" -#: src/Module/Settings/Display.php:348 +#: src/Module/Settings/Display.php:334 msgid "Default calendar view:" msgstr "" -#: src/Module/Settings/Features.php:73 +#: src/Module/Settings/Features.php:59 msgid "Additional Features" msgstr "Viðbótareiginleikar" -#: src/Module/Settings/OAuth.php:71 +#: src/Module/Settings/OAuth.php:57 msgid "Connected Apps" msgstr "Tengd forrit" -#: src/Module/Settings/OAuth.php:75 +#: src/Module/Settings/OAuth.php:61 msgid "Remove authorization" msgstr "Fjarlæga auðkenningu" -#: src/Module/Settings/Profile/Index.php:116 +#: src/Module/Settings/Profile/Index.php:102 msgid "Display Name is required." msgstr "" -#: src/Module/Settings/Profile/Index.php:167 +#: src/Module/Settings/Profile/Index.php:156 msgid "Profile couldn't be updated." msgstr "" -#: src/Module/Settings/Profile/Index.php:205 -#: src/Module/Settings/Profile/Index.php:226 +#: src/Module/Settings/Profile/Index.php:196 +#: src/Module/Settings/Profile/Index.php:217 msgid "Label:" msgstr "" -#: src/Module/Settings/Profile/Index.php:206 -#: src/Module/Settings/Profile/Index.php:227 +#: src/Module/Settings/Profile/Index.php:197 +#: src/Module/Settings/Profile/Index.php:218 msgid "Value:" msgstr "" -#: src/Module/Settings/Profile/Index.php:217 -#: src/Module/Settings/Profile/Index.php:238 +#: src/Module/Settings/Profile/Index.php:208 +#: src/Module/Settings/Profile/Index.php:229 msgid "Field Permissions" msgstr "" -#: src/Module/Settings/Profile/Index.php:218 -#: src/Module/Settings/Profile/Index.php:239 +#: src/Module/Settings/Profile/Index.php:209 +#: src/Module/Settings/Profile/Index.php:230 msgid "(click to open/close)" msgstr "(ýttu á til að opna/loka)" -#: src/Module/Settings/Profile/Index.php:224 +#: src/Module/Settings/Profile/Index.php:215 msgid "Add a new profile field" msgstr "" -#: src/Module/Settings/Profile/Index.php:247 +#: src/Module/Settings/Profile/Index.php:238 msgid "" "The homepage is verified. A rel=\"me\" link back to your Friendica profile " "page was found on the homepage." msgstr "" -#: src/Module/Settings/Profile/Index.php:249 +#: src/Module/Settings/Profile/Index.php:240 #, php-format msgid "" "To verify your homepage, add a rel=\"me\" link to it, pointing to your " "profile URL (%s)." msgstr "" -#: src/Module/Settings/Profile/Index.php:255 +#: src/Module/Settings/Profile/Index.php:246 msgid "Profile Actions" msgstr "" -#: src/Module/Settings/Profile/Index.php:256 +#: src/Module/Settings/Profile/Index.php:247 msgid "Edit Profile Details" msgstr "Breyta forsíðu upplýsingum" -#: src/Module/Settings/Profile/Index.php:258 +#: src/Module/Settings/Profile/Index.php:249 msgid "Change Profile Photo" msgstr "Breyta forsíðumynd" -#: src/Module/Settings/Profile/Index.php:261 +#: src/Module/Settings/Profile/Index.php:252 msgid "Profile picture" msgstr "Notandamynd" -#: src/Module/Settings/Profile/Index.php:262 +#: src/Module/Settings/Profile/Index.php:253 msgid "Location" msgstr "Staðsetning" -#: src/Module/Settings/Profile/Index.php:263 src/Util/Temporal.php:97 -#: src/Util/Temporal.php:99 +#: src/Module/Settings/Profile/Index.php:254 src/Util/Temporal.php:83 +#: src/Util/Temporal.php:85 msgid "Miscellaneous" msgstr "Ýmislegt" -#: src/Module/Settings/Profile/Index.php:264 +#: src/Module/Settings/Profile/Index.php:255 msgid "Custom Profile Fields" msgstr "" -#: src/Module/Settings/Profile/Index.php:265 src/Module/Welcome.php:58 +#: src/Module/Settings/Profile/Index.php:256 src/Module/Welcome.php:44 msgid "Upload Profile Photo" msgstr "Hlaða upp forsíðu mynd" -#: src/Module/Settings/Profile/Index.php:266 +#: src/Module/Settings/Profile/Index.php:257 #, php-format msgid "" "

Custom fields appear on your profile page.

\n" @@ -10917,396 +10924,396 @@ msgid "" "\t\t\t\t

Non-public fields can only be seen by the selected Friendica contacts or the Friendica contacts in the selected circles.

" msgstr "" -#: src/Module/Settings/Profile/Index.php:286 +#: src/Module/Settings/Profile/Index.php:277 msgid "Street Address:" msgstr "Gata:" -#: src/Module/Settings/Profile/Index.php:287 +#: src/Module/Settings/Profile/Index.php:278 msgid "Locality/City:" msgstr "Bær/Borg:" -#: src/Module/Settings/Profile/Index.php:288 +#: src/Module/Settings/Profile/Index.php:279 msgid "Region/State:" msgstr "Svæði/Sýsla" -#: src/Module/Settings/Profile/Index.php:289 +#: src/Module/Settings/Profile/Index.php:280 msgid "Postal/Zip Code:" msgstr "Póstnúmer:" -#: src/Module/Settings/Profile/Index.php:290 +#: src/Module/Settings/Profile/Index.php:281 msgid "Country:" msgstr "Land:" -#: src/Module/Settings/Profile/Index.php:292 +#: src/Module/Settings/Profile/Index.php:283 msgid "XMPP (Jabber) address:" msgstr "XMPP (Jabber) vistfang:" -#: src/Module/Settings/Profile/Index.php:292 +#: src/Module/Settings/Profile/Index.php:283 msgid "" "The XMPP address will be published so that people can follow you there." msgstr "" -#: src/Module/Settings/Profile/Index.php:293 +#: src/Module/Settings/Profile/Index.php:284 msgid "Matrix (Element) address:" msgstr "" -#: src/Module/Settings/Profile/Index.php:293 +#: src/Module/Settings/Profile/Index.php:284 msgid "" "The Matrix address will be published so that people can follow you there." msgstr "" -#: src/Module/Settings/Profile/Index.php:294 +#: src/Module/Settings/Profile/Index.php:285 msgid "Homepage URL:" msgstr "Slóð heimasíðu:" -#: src/Module/Settings/Profile/Index.php:295 +#: src/Module/Settings/Profile/Index.php:286 msgid "Public Keywords:" msgstr "Opinber leitarorð:" -#: src/Module/Settings/Profile/Index.php:295 +#: src/Module/Settings/Profile/Index.php:286 msgid "(Used for suggesting potential friends, can be seen by others)" msgstr "(Notað til að stinga uppá mögulegum vinum, aðrir geta séð)" -#: src/Module/Settings/Profile/Index.php:296 +#: src/Module/Settings/Profile/Index.php:287 msgid "Private Keywords:" msgstr "Einka leitarorð:" -#: src/Module/Settings/Profile/Index.php:296 +#: src/Module/Settings/Profile/Index.php:287 msgid "(Used for searching profiles, never shown to others)" 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:100 +#: src/Module/Settings/Profile/Photo/Crop.php:93 +#: src/Module/Settings/Profile/Photo/Crop.php:111 +#: src/Module/Settings/Profile/Photo/Crop.php:129 +#: src/Module/Settings/Profile/Photo/Index.php:86 #, php-format msgid "Image size reduction [%s] failed." msgstr "Myndar minnkun [%s] tókst ekki." -#: src/Module/Settings/Profile/Photo/Crop.php:150 +#: src/Module/Settings/Profile/Photo/Crop.php:136 msgid "" "Shift-reload the page or clear browser cache if the new photo does not " "display immediately." msgstr "Ýta þarf á " -#: src/Module/Settings/Profile/Photo/Crop.php:155 +#: src/Module/Settings/Profile/Photo/Crop.php:141 msgid "Unable to process image" msgstr "Ekki tókst að vinna mynd" -#: src/Module/Settings/Profile/Photo/Crop.php:174 +#: src/Module/Settings/Profile/Photo/Crop.php:160 msgid "Photo not found." msgstr "" -#: src/Module/Settings/Profile/Photo/Crop.php:196 +#: src/Module/Settings/Profile/Photo/Crop.php:182 msgid "Profile picture successfully updated." msgstr "" -#: src/Module/Settings/Profile/Photo/Crop.php:222 -#: src/Module/Settings/Profile/Photo/Crop.php:226 +#: src/Module/Settings/Profile/Photo/Crop.php:208 +#: src/Module/Settings/Profile/Photo/Crop.php:212 msgid "Crop Image" msgstr "Skera af mynd" -#: src/Module/Settings/Profile/Photo/Crop.php:223 +#: src/Module/Settings/Profile/Photo/Crop.php:209 msgid "Please adjust the image cropping for optimum viewing." msgstr "Stilltu afskurð fyrir besta birtingu." -#: src/Module/Settings/Profile/Photo/Crop.php:225 +#: src/Module/Settings/Profile/Photo/Crop.php:211 msgid "Use Image As Is" msgstr "" -#: src/Module/Settings/Profile/Photo/Index.php:46 +#: src/Module/Settings/Profile/Photo/Index.php:32 msgid "Missing uploaded image." msgstr "" -#: src/Module/Settings/Profile/Photo/Index.php:123 +#: src/Module/Settings/Profile/Photo/Index.php:109 msgid "Profile Picture Settings" msgstr "" -#: src/Module/Settings/Profile/Photo/Index.php:124 +#: src/Module/Settings/Profile/Photo/Index.php:110 msgid "Current Profile Picture" msgstr "" -#: src/Module/Settings/Profile/Photo/Index.php:125 +#: src/Module/Settings/Profile/Photo/Index.php:111 msgid "Upload Profile Picture" msgstr "" -#: src/Module/Settings/Profile/Photo/Index.php:126 +#: src/Module/Settings/Profile/Photo/Index.php:112 msgid "Upload Picture:" msgstr "" -#: src/Module/Settings/Profile/Photo/Index.php:131 +#: src/Module/Settings/Profile/Photo/Index.php:117 msgid "or" msgstr "eða" -#: src/Module/Settings/Profile/Photo/Index.php:133 +#: src/Module/Settings/Profile/Photo/Index.php:119 msgid "skip this step" msgstr "sleppa þessu skrefi" -#: src/Module/Settings/Profile/Photo/Index.php:135 +#: src/Module/Settings/Profile/Photo/Index.php:121 msgid "select a photo from your photo albums" msgstr "velja mynd í myndabókum" -#: src/Module/Settings/RemoveMe.php:76 +#: src/Module/Settings/RemoveMe.php:62 msgid "" "There was a validation error, please make sure you're logged in with the " "account you want to remove and try again." msgstr "" -#: src/Module/Settings/RemoveMe.php:76 +#: src/Module/Settings/RemoveMe.php:62 msgid "If this error persists, please contact your administrator." msgstr "" -#: src/Module/Settings/RemoveMe.php:90 -#: src/Navigation/Notifications/Repository/Notify.php:471 -#: src/Navigation/Notifications/Repository/Notify.php:492 +#: src/Module/Settings/RemoveMe.php:76 +#: src/Navigation/Notifications/Repository/Notify.php:457 +#: src/Navigation/Notifications/Repository/Notify.php:478 msgid "[Friendica System Notify]" msgstr "" -#: src/Module/Settings/RemoveMe.php:90 +#: src/Module/Settings/RemoveMe.php:76 msgid "User deleted their account" msgstr "" -#: src/Module/Settings/RemoveMe.php:91 +#: src/Module/Settings/RemoveMe.php:77 msgid "" "On your Friendica node an user deleted their account. Please ensure that " "their data is removed from the backups." msgstr "" -#: src/Module/Settings/RemoveMe.php:92 +#: src/Module/Settings/RemoveMe.php:78 #, php-format msgid "The user id is %d" msgstr "" -#: src/Module/Settings/RemoveMe.php:105 +#: src/Module/Settings/RemoveMe.php:91 msgid "Your account has been successfully removed. Bye bye!" msgstr "" -#: src/Module/Settings/RemoveMe.php:130 +#: src/Module/Settings/RemoveMe.php:116 msgid "Remove My Account" msgstr "Eyða þessum notanda" -#: src/Module/Settings/RemoveMe.php:131 +#: src/Module/Settings/RemoveMe.php:117 msgid "" "This will completely remove your account. Once this has been done it is not " "recoverable." msgstr "Þetta mun algjörlega eyða notandanum. Þegar þetta hefur verið gert er þetta ekki afturkræft." -#: src/Module/Settings/RemoveMe.php:136 +#: src/Module/Settings/RemoveMe.php:122 msgid "Please enter your password for verification:" msgstr "Sláðu inn aðgangsorð yðar:" -#: src/Module/Settings/Server/Action.php:60 +#: src/Module/Settings/Server/Action.php:46 msgid "Do you want to ignore this server?" msgstr "" -#: src/Module/Settings/Server/Action.php:64 +#: src/Module/Settings/Server/Action.php:50 msgid "Do you want to unignore this server?" msgstr "" -#: src/Module/Settings/Server/Action.php:74 -#: src/Module/Settings/Server/Index.php:104 +#: src/Module/Settings/Server/Action.php:60 +#: src/Module/Settings/Server/Index.php:90 msgid "Remote server settings" msgstr "" -#: src/Module/Settings/Server/Action.php:77 +#: src/Module/Settings/Server/Action.php:63 msgid "Server URL" msgstr "" -#: src/Module/Settings/Server/Index.php:78 +#: src/Module/Settings/Server/Index.php:64 msgid "Settings saved" msgstr "" -#: src/Module/Settings/Server/Index.php:105 +#: src/Module/Settings/Server/Index.php:91 msgid "" "Here you can find all the remote servers you have taken individual " "moderation actions against. For a list of servers your node has blocked, " "please check out the Information page." msgstr "" -#: src/Module/Settings/Server/Index.php:110 +#: src/Module/Settings/Server/Index.php:96 msgid "Delete all your settings for the remote server" msgstr "" -#: src/Module/Settings/Server/Index.php:111 +#: src/Module/Settings/Server/Index.php:97 msgid "Save changes" msgstr "" -#: src/Module/Settings/TwoFactor/AppSpecific.php:69 -#: src/Module/Settings/TwoFactor/Recovery.php:67 -#: src/Module/Settings/TwoFactor/Trusted.php:70 -#: src/Module/Settings/TwoFactor/Verify.php:72 +#: src/Module/Settings/TwoFactor/AppSpecific.php:55 +#: src/Module/Settings/TwoFactor/Recovery.php:53 +#: src/Module/Settings/TwoFactor/Trusted.php:56 +#: src/Module/Settings/TwoFactor/Verify.php:58 msgid "Please enter your password to access this page." msgstr "" -#: src/Module/Settings/TwoFactor/AppSpecific.php:87 +#: src/Module/Settings/TwoFactor/AppSpecific.php:73 msgid "App-specific password generation failed: The description is empty." msgstr "" -#: src/Module/Settings/TwoFactor/AppSpecific.php:90 +#: src/Module/Settings/TwoFactor/AppSpecific.php:76 msgid "" "App-specific password generation failed: This description already exists." msgstr "" -#: src/Module/Settings/TwoFactor/AppSpecific.php:94 +#: src/Module/Settings/TwoFactor/AppSpecific.php:80 msgid "New app-specific password generated." msgstr "" -#: src/Module/Settings/TwoFactor/AppSpecific.php:100 +#: src/Module/Settings/TwoFactor/AppSpecific.php:86 msgid "App-specific passwords successfully revoked." msgstr "" -#: src/Module/Settings/TwoFactor/AppSpecific.php:110 +#: src/Module/Settings/TwoFactor/AppSpecific.php:96 msgid "App-specific password successfully revoked." msgstr "" -#: src/Module/Settings/TwoFactor/AppSpecific.php:131 +#: src/Module/Settings/TwoFactor/AppSpecific.php:117 msgid "Two-factor app-specific passwords" msgstr "" -#: src/Module/Settings/TwoFactor/AppSpecific.php:133 +#: src/Module/Settings/TwoFactor/AppSpecific.php:119 msgid "" "

App-specific passwords are randomly generated passwords used instead your" " regular password to authenticate your account on third-party applications " "that don't support two-factor authentication.

" msgstr "" -#: src/Module/Settings/TwoFactor/AppSpecific.php:134 +#: src/Module/Settings/TwoFactor/AppSpecific.php:120 msgid "" "Make sure to copy your new app-specific password now. You won’t be able to " "see it again!" msgstr "" -#: src/Module/Settings/TwoFactor/AppSpecific.php:138 +#: src/Module/Settings/TwoFactor/AppSpecific.php:124 msgid "Last Used" msgstr "" -#: src/Module/Settings/TwoFactor/AppSpecific.php:139 +#: src/Module/Settings/TwoFactor/AppSpecific.php:125 msgid "Revoke" msgstr "" -#: src/Module/Settings/TwoFactor/AppSpecific.php:140 +#: src/Module/Settings/TwoFactor/AppSpecific.php:126 msgid "Revoke All" msgstr "" -#: src/Module/Settings/TwoFactor/AppSpecific.php:143 +#: src/Module/Settings/TwoFactor/AppSpecific.php:129 msgid "" "When you generate a new app-specific password, you must use it right away, " "it will be shown to you once after you generate it." msgstr "" -#: src/Module/Settings/TwoFactor/AppSpecific.php:144 +#: src/Module/Settings/TwoFactor/AppSpecific.php:130 msgid "Generate new app-specific password" msgstr "" -#: src/Module/Settings/TwoFactor/AppSpecific.php:145 +#: src/Module/Settings/TwoFactor/AppSpecific.php:131 msgid "Friendiqa on my Fairphone 2..." msgstr "" -#: src/Module/Settings/TwoFactor/AppSpecific.php:146 +#: src/Module/Settings/TwoFactor/AppSpecific.php:132 msgid "Generate" msgstr "" -#: src/Module/Settings/TwoFactor/Index.php:88 +#: src/Module/Settings/TwoFactor/Index.php:74 msgid "Two-factor authentication successfully disabled." msgstr "" -#: src/Module/Settings/TwoFactor/Index.php:141 +#: src/Module/Settings/TwoFactor/Index.php:127 msgid "" "

Use an application on a mobile device to get two-factor authentication " "codes when prompted on login.

" msgstr "" -#: src/Module/Settings/TwoFactor/Index.php:145 +#: src/Module/Settings/TwoFactor/Index.php:131 msgid "Authenticator app" msgstr "" -#: src/Module/Settings/TwoFactor/Index.php:146 +#: src/Module/Settings/TwoFactor/Index.php:132 msgid "Configured" msgstr "" -#: src/Module/Settings/TwoFactor/Index.php:146 +#: src/Module/Settings/TwoFactor/Index.php:132 msgid "Not Configured" msgstr "" -#: src/Module/Settings/TwoFactor/Index.php:147 +#: src/Module/Settings/TwoFactor/Index.php:133 msgid "

You haven't finished configuring your authenticator app.

" msgstr "" -#: src/Module/Settings/TwoFactor/Index.php:148 +#: src/Module/Settings/TwoFactor/Index.php:134 msgid "

Your authenticator app is correctly configured.

" msgstr "" -#: src/Module/Settings/TwoFactor/Index.php:150 +#: src/Module/Settings/TwoFactor/Index.php:136 msgid "Recovery codes" msgstr "" -#: src/Module/Settings/TwoFactor/Index.php:151 +#: src/Module/Settings/TwoFactor/Index.php:137 msgid "Remaining valid codes" msgstr "" -#: src/Module/Settings/TwoFactor/Index.php:153 +#: src/Module/Settings/TwoFactor/Index.php:139 msgid "" "

These one-use codes can replace an authenticator app code in case you " "have lost access to it.

" msgstr "" -#: src/Module/Settings/TwoFactor/Index.php:155 +#: src/Module/Settings/TwoFactor/Index.php:141 msgid "App-specific passwords" msgstr "" -#: src/Module/Settings/TwoFactor/Index.php:156 +#: src/Module/Settings/TwoFactor/Index.php:142 msgid "Generated app-specific passwords" msgstr "" -#: src/Module/Settings/TwoFactor/Index.php:158 +#: src/Module/Settings/TwoFactor/Index.php:144 msgid "" "

These randomly generated passwords allow you to authenticate on apps not " "supporting two-factor authentication.

" msgstr "" -#: src/Module/Settings/TwoFactor/Index.php:161 +#: src/Module/Settings/TwoFactor/Index.php:147 msgid "Current password:" msgstr "" -#: src/Module/Settings/TwoFactor/Index.php:161 +#: src/Module/Settings/TwoFactor/Index.php:147 msgid "" "You need to provide your current password to change two-factor " "authentication settings." msgstr "" -#: src/Module/Settings/TwoFactor/Index.php:162 +#: src/Module/Settings/TwoFactor/Index.php:148 msgid "Enable two-factor authentication" msgstr "" -#: src/Module/Settings/TwoFactor/Index.php:163 +#: src/Module/Settings/TwoFactor/Index.php:149 msgid "Disable two-factor authentication" msgstr "" -#: src/Module/Settings/TwoFactor/Index.php:164 +#: src/Module/Settings/TwoFactor/Index.php:150 msgid "Show recovery codes" msgstr "" -#: src/Module/Settings/TwoFactor/Index.php:165 +#: src/Module/Settings/TwoFactor/Index.php:151 msgid "Manage app-specific passwords" msgstr "" -#: src/Module/Settings/TwoFactor/Index.php:166 +#: src/Module/Settings/TwoFactor/Index.php:152 msgid "Manage trusted browsers" msgstr "" -#: src/Module/Settings/TwoFactor/Index.php:167 +#: src/Module/Settings/TwoFactor/Index.php:153 msgid "Finish app configuration" msgstr "" -#: src/Module/Settings/TwoFactor/Recovery.php:83 +#: src/Module/Settings/TwoFactor/Recovery.php:69 msgid "New recovery codes successfully generated." msgstr "" -#: src/Module/Settings/TwoFactor/Recovery.php:109 +#: src/Module/Settings/TwoFactor/Recovery.php:95 msgid "Two-factor recovery codes" msgstr "" -#: src/Module/Settings/TwoFactor/Recovery.php:111 +#: src/Module/Settings/TwoFactor/Recovery.php:97 msgid "" "

Recovery codes can be used to access your account in the event you lose " "access to your device and cannot receive two-factor authentication " @@ -11315,68 +11322,68 @@ msgid "" "account.

" msgstr "" -#: src/Module/Settings/TwoFactor/Recovery.php:113 +#: src/Module/Settings/TwoFactor/Recovery.php:99 msgid "" "When you generate new recovery codes, you must copy the new codes. Your old " "codes won’t work anymore." msgstr "" -#: src/Module/Settings/TwoFactor/Recovery.php:114 +#: src/Module/Settings/TwoFactor/Recovery.php:100 msgid "Generate new recovery codes" msgstr "" -#: src/Module/Settings/TwoFactor/Recovery.php:116 +#: src/Module/Settings/TwoFactor/Recovery.php:102 msgid "Next: Verification" msgstr "" -#: src/Module/Settings/TwoFactor/Trusted.php:87 +#: src/Module/Settings/TwoFactor/Trusted.php:73 msgid "Trusted browsers successfully removed." msgstr "" -#: src/Module/Settings/TwoFactor/Trusted.php:97 +#: src/Module/Settings/TwoFactor/Trusted.php:83 msgid "Trusted browser successfully removed." msgstr "" -#: src/Module/Settings/TwoFactor/Trusted.php:139 +#: src/Module/Settings/TwoFactor/Trusted.php:125 msgid "Two-factor Trusted Browsers" msgstr "" -#: src/Module/Settings/TwoFactor/Trusted.php:140 +#: src/Module/Settings/TwoFactor/Trusted.php:126 msgid "" "Trusted browsers are individual browsers you chose to skip two-factor " "authentication to access Friendica. Please use this feature sparingly, as it" " can negate the benefit of two-factor authentication." msgstr "" -#: src/Module/Settings/TwoFactor/Trusted.php:141 +#: src/Module/Settings/TwoFactor/Trusted.php:127 msgid "Device" msgstr "" -#: src/Module/Settings/TwoFactor/Trusted.php:142 +#: src/Module/Settings/TwoFactor/Trusted.php:128 msgid "OS" msgstr "" -#: src/Module/Settings/TwoFactor/Trusted.php:144 +#: src/Module/Settings/TwoFactor/Trusted.php:130 msgid "Trusted" msgstr "" -#: src/Module/Settings/TwoFactor/Trusted.php:145 +#: src/Module/Settings/TwoFactor/Trusted.php:131 msgid "Created At" msgstr "" -#: src/Module/Settings/TwoFactor/Trusted.php:146 +#: src/Module/Settings/TwoFactor/Trusted.php:132 msgid "Last Use" msgstr "" -#: src/Module/Settings/TwoFactor/Trusted.php:148 +#: src/Module/Settings/TwoFactor/Trusted.php:134 msgid "Remove All" msgstr "" -#: src/Module/Settings/TwoFactor/Verify.php:94 +#: src/Module/Settings/TwoFactor/Verify.php:80 msgid "Two-factor authentication successfully activated." msgstr "" -#: src/Module/Settings/TwoFactor/Verify.php:128 +#: src/Module/Settings/TwoFactor/Verify.php:114 #, php-format msgid "" "

Or you can submit the authentication settings manually:

\n" @@ -11396,105 +11403,105 @@ msgid "" "" msgstr "" -#: src/Module/Settings/TwoFactor/Verify.php:148 +#: src/Module/Settings/TwoFactor/Verify.php:134 msgid "Two-factor code verification" msgstr "" -#: src/Module/Settings/TwoFactor/Verify.php:150 +#: src/Module/Settings/TwoFactor/Verify.php:136 msgid "" "

Please scan this QR Code with your authenticator app and submit the " "provided code.

" msgstr "" -#: src/Module/Settings/TwoFactor/Verify.php:152 +#: src/Module/Settings/TwoFactor/Verify.php:138 #, php-format msgid "" "

Or you can open the following URL in your mobile device:

%s

" msgstr "" -#: src/Module/Settings/TwoFactor/Verify.php:159 +#: src/Module/Settings/TwoFactor/Verify.php:145 msgid "Verify code and enable two-factor authentication" msgstr "" -#: src/Module/Settings/UserExport.php:90 +#: src/Module/Settings/UserExport.php:76 msgid "Export account" msgstr "Flytja út notandaaðgang" -#: src/Module/Settings/UserExport.php:90 +#: src/Module/Settings/UserExport.php:76 msgid "" "Export your account info and contacts. Use this to make a backup of your " "account and/or to move it to another server." msgstr "" -#: src/Module/Settings/UserExport.php:91 +#: src/Module/Settings/UserExport.php:77 msgid "Export all" msgstr "Flytja út allt" -#: src/Module/Settings/UserExport.php:91 +#: src/Module/Settings/UserExport.php:77 msgid "" "Export your account info, contacts and all your items as json. Could be a " "very big file, and could take a lot of time. Use this to make a full backup " "of your account (photos are not exported)" msgstr "" -#: src/Module/Settings/UserExport.php:92 +#: src/Module/Settings/UserExport.php:78 msgid "Export Contacts to CSV" msgstr "" -#: src/Module/Settings/UserExport.php:92 +#: src/Module/Settings/UserExport.php:78 msgid "" "Export the list of the accounts you are following as CSV file. Compatible to" " e.g. Mastodon." msgstr "" -#: src/Module/Special/DisplayNotFound.php:35 +#: src/Module/Special/DisplayNotFound.php:21 msgid "The top-level post isn't visible." msgstr "" -#: src/Module/Special/DisplayNotFound.php:36 +#: src/Module/Special/DisplayNotFound.php:22 msgid "The top-level post was deleted." msgstr "" -#: src/Module/Special/DisplayNotFound.php:37 +#: src/Module/Special/DisplayNotFound.php:23 msgid "" "This node has blocked the top-level author or the author of the shared post." msgstr "" -#: src/Module/Special/DisplayNotFound.php:38 +#: src/Module/Special/DisplayNotFound.php:24 msgid "" "You have ignored or blocked the top-level author or the author of the shared" " post." msgstr "" -#: src/Module/Special/DisplayNotFound.php:39 +#: src/Module/Special/DisplayNotFound.php:25 msgid "" "You have ignored the top-level author's server or the shared post author's " "server." msgstr "" -#: src/Module/Special/DisplayNotFound.php:45 +#: src/Module/Special/DisplayNotFound.php:31 msgid "Conversation Not Found" msgstr "" -#: src/Module/Special/DisplayNotFound.php:46 +#: src/Module/Special/DisplayNotFound.php:32 msgid "Unfortunately, the requested conversation isn't available to you." msgstr "" -#: src/Module/Special/DisplayNotFound.php:47 +#: src/Module/Special/DisplayNotFound.php:33 msgid "Possible reasons include:" msgstr "" -#: src/Module/Special/HTTPException.php:78 +#: src/Module/Special/HTTPException.php:64 msgid "Stack trace:" msgstr "" -#: src/Module/Special/HTTPException.php:83 +#: src/Module/Special/HTTPException.php:69 #, php-format msgid "Exception thrown in %s:%d" msgstr "" -#: src/Module/Tos.php:58 src/Module/Tos.php:107 +#: src/Module/Tos.php:44 src/Module/Tos.php:93 msgid "" "At the time of registration, and for providing communications between the " "user account and their contacts, the user has to provide a display name (pen" @@ -11507,14 +11514,14 @@ msgid "" "settings, it is not necessary for communication." msgstr "" -#: src/Module/Tos.php:59 src/Module/Tos.php:108 +#: src/Module/Tos.php:45 src/Module/Tos.php:94 msgid "" "This data is required for communication and is passed on to the nodes of the" " communication partners and is stored there. Users can enter additional " "private data that may be transmitted to the communication partners accounts." msgstr "" -#: src/Module/Tos.php:60 src/Module/Tos.php:109 +#: src/Module/Tos.php:46 src/Module/Tos.php:95 #, php-format msgid "" "At any point in time a logged in user can export their account data from the" @@ -11525,121 +11532,121 @@ msgid "" "from the nodes of the communication partners." msgstr "" -#: src/Module/Tos.php:63 src/Module/Tos.php:106 +#: src/Module/Tos.php:49 src/Module/Tos.php:92 msgid "Privacy Statement" msgstr "Yfirlýsing um gagnaleynd" -#: src/Module/Tos.php:103 +#: src/Module/Tos.php:89 msgid "Rules" msgstr "" -#: src/Module/Update/Display.php:45 +#: src/Module/Update/Display.php:31 msgid "Parameter uri_id is missing." msgstr "" -#: src/Module/Update/Display.php:55 +#: src/Module/Update/Display.php:41 msgid "The requested item doesn't exist or has been deleted." msgstr "" -#: src/Module/User/Delegation.php:146 +#: src/Module/User/Delegation.php:132 #, php-format msgid "You are now logged in as %s" msgstr "" -#: src/Module/User/Delegation.php:185 +#: src/Module/User/Delegation.php:171 msgid "Switch between your accounts" msgstr "" -#: src/Module/User/Delegation.php:186 +#: src/Module/User/Delegation.php:172 msgid "Manage your accounts" msgstr "" -#: src/Module/User/Delegation.php:187 +#: src/Module/User/Delegation.php:173 msgid "" "Toggle between different identities or community/group pages which share " "your account details or which you have been granted \"manage\" permissions" msgstr "Skipta á milli auðkenna eða hópa- / stjörnunotanda sem deila þínum aðgangs upplýsingum eða þér verið úthlutað \"umsýslu\" réttindum." -#: src/Module/User/Delegation.php:188 +#: src/Module/User/Delegation.php:174 msgid "Select an identity to manage: " msgstr "Veldu notanda til að sýsla með:" -#: src/Module/User/Import.php:104 +#: src/Module/User/Import.php:90 msgid "User imports on closed servers can only be done by an administrator." msgstr "" -#: src/Module/User/Import.php:120 +#: src/Module/User/Import.php:106 msgid "Move account" msgstr "Flytja aðgang" -#: src/Module/User/Import.php:121 +#: src/Module/User/Import.php:107 msgid "You can import an account from another Friendica server." msgstr "Þú getur flutt inn notandaaðgang frá öðrum Friendica-þjóni." -#: src/Module/User/Import.php:122 +#: src/Module/User/Import.php:108 msgid "" "You need to export your account from the old server and upload it here. We " "will recreate your old account here with all your contacts. We will try also" " to inform your friends that you moved here." msgstr "" -#: src/Module/User/Import.php:123 +#: src/Module/User/Import.php:109 msgid "" "This feature is experimental. We can't import contacts from the OStatus " "network (GNU Social/Statusnet) or from Diaspora" msgstr "" -#: src/Module/User/Import.php:124 +#: src/Module/User/Import.php:110 msgid "Account file" msgstr "Notandaaðgangsskrá" -#: src/Module/User/Import.php:124 +#: src/Module/User/Import.php:110 msgid "" "To export your account, go to \"Settings->Export your personal data\" and " "select \"Export account\"" msgstr "" -#: src/Module/User/Import.php:218 +#: src/Module/User/Import.php:204 msgid "Error decoding account file" msgstr "" -#: src/Module/User/Import.php:223 +#: src/Module/User/Import.php:209 msgid "Error! No version data in file! This is not a Friendica account file?" msgstr "" -#: src/Module/User/Import.php:231 +#: src/Module/User/Import.php:217 #, php-format msgid "User '%s' already exists on this server!" msgstr "" -#: src/Module/User/Import.php:268 +#: src/Module/User/Import.php:254 msgid "User creation error" msgstr "" -#: src/Module/User/Import.php:317 +#: src/Module/User/Import.php:303 #, php-format msgid "%d contact not imported" msgid_plural "%d contacts not imported" msgstr[0] "" msgstr[1] "" -#: src/Module/User/Import.php:366 +#: src/Module/User/Import.php:352 msgid "User profile creation error" msgstr "" -#: src/Module/User/Import.php:417 +#: src/Module/User/Import.php:403 msgid "Done. You can now login with your username and password" msgstr "" -#: src/Module/Welcome.php:44 +#: src/Module/Welcome.php:30 msgid "Welcome to Friendica" msgstr "Velkomin(n) á Friendica" -#: src/Module/Welcome.php:45 +#: src/Module/Welcome.php:31 msgid "New Member Checklist" msgstr "Gátlisti nýs notanda" -#: src/Module/Welcome.php:46 +#: src/Module/Welcome.php:32 msgid "" "We would like to offer some tips and links to help make your experience " "enjoyable. Click any item to visit the relevant page. A link to this page " @@ -11647,33 +11654,33 @@ msgid "" "registration and then will quietly disappear." msgstr "" -#: src/Module/Welcome.php:48 +#: src/Module/Welcome.php:34 msgid "Getting Started" msgstr "Til að komast í gang" -#: src/Module/Welcome.php:49 +#: src/Module/Welcome.php:35 msgid "Friendica Walk-Through" msgstr "Leiðarvísir Friendica" -#: src/Module/Welcome.php:50 +#: src/Module/Welcome.php:36 msgid "" "On your Quick Start page - find a brief introduction to your " "profile and network tabs, make some new connections, and find some groups to" " join." msgstr "" -#: src/Module/Welcome.php:53 +#: src/Module/Welcome.php:39 msgid "Go to Your Settings" msgstr "Farðu í stillingarnar þínar" -#: src/Module/Welcome.php:54 +#: src/Module/Welcome.php:40 msgid "" "On your Settings page - change your initial password. Also make a " "note of your Identity Address. This looks just like an email address - and " "will be useful in making friends on the free social web." msgstr "" -#: src/Module/Welcome.php:55 +#: src/Module/Welcome.php:41 msgid "" "Review the other settings, particularly the privacy settings. An unpublished" " directory listing is like having an unlisted phone number. In general, you " @@ -11681,77 +11688,77 @@ msgid "" "potential friends know exactly how to find you." msgstr "Yfirfarðu aðrar stillingar, sérstaklega gagnaleyndarstillingar. Óútgefin forsíða er einsog óskráð símanúmer. Sem þýðir að líklega viltu gefa út forsíðuna þína - nema að allir vinir þínir og tilvonandi vinir viti nákvæmlega hvernig á að finna þig." -#: src/Module/Welcome.php:59 +#: src/Module/Welcome.php:45 msgid "" "Upload a profile photo if you have not done so already. Studies have shown " "that people with real photos of themselves are ten times more likely to make" " friends than people who do not." msgstr "Að hlaða upp forsíðu mynd ef þú hefur ekki þegar gert það. Rannsóknir sýna að fólk sem hefur alvöru mynd af sér er tíu sinnum líklegra til að eignast vini en fólk sem ekki hefur mynd." -#: src/Module/Welcome.php:60 +#: src/Module/Welcome.php:46 msgid "Edit Your Profile" msgstr "Breyta forsíðunni þinni" -#: src/Module/Welcome.php:61 +#: src/Module/Welcome.php:47 msgid "" "Edit your default profile to your liking. Review the " "settings for hiding your list of friends and hiding the profile from unknown" " visitors." msgstr "Breyttu sjálfgefnu forsíðunni einsog þú villt. Yfirfarðu stillingu til að fela vinalista á forsíðu og stillingu til að fela forsíðu fyrir ókunnum." -#: src/Module/Welcome.php:62 +#: src/Module/Welcome.php:48 msgid "Profile Keywords" msgstr "Stikkorð notandans" -#: src/Module/Welcome.php:63 +#: src/Module/Welcome.php:49 msgid "" "Set some public keywords for your profile which describe your interests. We " "may be able to find other people with similar interests and suggest " "friendships." msgstr "" -#: src/Module/Welcome.php:65 +#: src/Module/Welcome.php:51 msgid "Connecting" msgstr "Tengist" -#: src/Module/Welcome.php:67 +#: src/Module/Welcome.php:53 msgid "Importing Emails" msgstr "Flyt inn pósta" -#: src/Module/Welcome.php:68 +#: src/Module/Welcome.php:54 msgid "" "Enter your email access information on your Connector Settings page if you " "wish to import and interact with friends or mailing lists from your email " "INBOX" msgstr "Fylltu út aðgangsupplýsingar póstfangsins þíns á Tengistillingasíðunni ef þú vilt sækja tölvupóst og eiga samskipti við vini eða póstlista úr innhólfi tölvupóstsins þíns" -#: src/Module/Welcome.php:69 +#: src/Module/Welcome.php:55 msgid "Go to Your Contacts Page" msgstr "Fara yfir á tengiliðasíðuna" -#: src/Module/Welcome.php:70 +#: src/Module/Welcome.php:56 msgid "" "Your Contacts page is your gateway to managing friendships and connecting " "with friends on other networks. Typically you enter their address or site " "URL in the Add New Contact dialog." msgstr "Tengiliðasíðan er gáttin þín til að sýsla með vinasambönd og tengjast við vini á öðrum netum. Oftast setur þú vistfang eða slóð þeirra í Bæta við tengilið glugganum." -#: src/Module/Welcome.php:71 +#: src/Module/Welcome.php:57 msgid "Go to Your Site's Directory" msgstr "" -#: src/Module/Welcome.php:72 +#: src/Module/Welcome.php:58 msgid "" "The Directory page lets you find other people in this network or other " "federated sites. Look for a Connect or Follow link on " "their profile page. Provide your own Identity Address if requested." msgstr "Tengiliðalistinn er góð leit til að finna fólk á samfélagsnetinu eða öðrum sambandsnetum. Leitaðu að Tengjast/Connect eða Fylgja/Follow tenglum á forsíðunni þeirra. Mögulega þarftu að gefa upp auðkennisslóðina þína." -#: src/Module/Welcome.php:73 +#: src/Module/Welcome.php:59 msgid "Finding New People" msgstr "Finna nýtt fólk" -#: src/Module/Welcome.php:74 +#: src/Module/Welcome.php:60 msgid "" "On the side panel of the Contacts page are several tools to find new " "friends. We can match people by interest, look up people by name or " @@ -11760,412 +11767,408 @@ msgid "" "hours." msgstr "" -#: src/Module/Welcome.php:77 +#: src/Module/Welcome.php:63 msgid "Add Your Contacts To Circle" msgstr "" -#: src/Module/Welcome.php:78 +#: src/Module/Welcome.php:64 msgid "" "Once you have made some friends, organize them into private conversation " "circles from the sidebar of your Contacts page and then you can interact " "with each circle privately on your Network page." msgstr "" -#: src/Module/Welcome.php:80 +#: src/Module/Welcome.php:66 msgid "Why Aren't My Posts Public?" msgstr "Hvers vegna eru færslurnar mínar ekki opinberar?" -#: src/Module/Welcome.php:81 +#: src/Module/Welcome.php:67 msgid "" "Friendica respects your privacy. By default, your posts will only show up to" " people you've added as friends. For more information, see the help section " "from the link above." msgstr "Friendica virðir gagnaleynd þína. Sjálfgefið er að færslurnar þínar birtast einungis þeim sem þú hefur bætt við sem vinum. Til að sjá nánari upplýsingar, skoðaðu þá hjálparhlutann með því að smella á tengilinn hér fyrir ofan." -#: src/Module/Welcome.php:83 +#: src/Module/Welcome.php:69 msgid "Getting Help" msgstr "Til að fá hjálp" -#: src/Module/Welcome.php:84 +#: src/Module/Welcome.php:70 msgid "Go to the Help Section" msgstr "Fara í hjálparhlutann" -#: src/Module/Welcome.php:85 +#: src/Module/Welcome.php:71 msgid "" "Our help pages may be consulted for detail on other program" " features and resources." msgstr "Hægt er að styðjast við Hjálp síðuna til að fá leiðbeiningar um aðra eiginleika." -#: src/Navigation/Notifications/Factory/FormattedNavNotification.php:161 +#: src/Navigation/Notifications/Factory/FormattedNavNotification.php:147 msgid "{0} wants to follow you" msgstr "" -#: src/Navigation/Notifications/Factory/FormattedNavNotification.php:163 +#: src/Navigation/Notifications/Factory/FormattedNavNotification.php:149 msgid "{0} has started following you" msgstr "" -#: src/Navigation/Notifications/Factory/FormattedNotify.php:96 +#: src/Navigation/Notifications/Factory/FormattedNotify.php:82 #, php-format msgid "%s liked %s's post" msgstr "%s líkaði færsla hjá %s" -#: src/Navigation/Notifications/Factory/FormattedNotify.php:108 +#: src/Navigation/Notifications/Factory/FormattedNotify.php:94 #, php-format msgid "%s disliked %s's post" msgstr "%s mislíkaði færsla hjá %s" -#: src/Navigation/Notifications/Factory/FormattedNotify.php:120 +#: src/Navigation/Notifications/Factory/FormattedNotify.php:106 #, php-format msgid "%s is attending %s's event" msgstr "" -#: src/Navigation/Notifications/Factory/FormattedNotify.php:132 +#: src/Navigation/Notifications/Factory/FormattedNotify.php:118 #, php-format msgid "%s is not attending %s's event" msgstr "" -#: src/Navigation/Notifications/Factory/FormattedNotify.php:144 +#: src/Navigation/Notifications/Factory/FormattedNotify.php:130 #, php-format msgid "%s may attending %s's event" msgstr "" -#: src/Navigation/Notifications/Factory/FormattedNotify.php:174 +#: src/Navigation/Notifications/Factory/FormattedNotify.php:160 #, php-format msgid "%s is now friends with %s" msgstr "%s er nú vinur %s" -#: src/Navigation/Notifications/Factory/FormattedNotify.php:341 -#: src/Navigation/Notifications/Factory/FormattedNotify.php:379 +#: src/Navigation/Notifications/Factory/FormattedNotify.php:327 +#: src/Navigation/Notifications/Factory/FormattedNotify.php:365 #, php-format msgid "%s commented on %s's post" msgstr "%s athugasemd við %s's færslu" -#: src/Navigation/Notifications/Factory/FormattedNotify.php:378 +#: src/Navigation/Notifications/Factory/FormattedNotify.php:364 #, php-format msgid "%s created a new post" msgstr "%s bjó til færslu" -#: src/Navigation/Notifications/Factory/Introduction.php:132 +#: src/Navigation/Notifications/Factory/Introduction.php:118 msgid "Friend Suggestion" msgstr "Vina tillaga" -#: src/Navigation/Notifications/Factory/Introduction.php:158 +#: src/Navigation/Notifications/Factory/Introduction.php:144 msgid "Friend/Connect Request" msgstr "Vinabeiðni/Tengibeiðni" -#: src/Navigation/Notifications/Factory/Introduction.php:158 -msgid "New Follower" -msgstr "Nýr fylgjandi" - -#: src/Navigation/Notifications/Factory/Notification.php:134 +#: src/Navigation/Notifications/Factory/Notification.php:120 #, php-format msgid "%1$s wants to follow you" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:136 +#: src/Navigation/Notifications/Factory/Notification.php:122 #, php-format msgid "%1$s has started following you" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:208 +#: src/Navigation/Notifications/Factory/Notification.php:194 #, php-format msgid "%1$s liked your comment on %2$s" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:211 +#: src/Navigation/Notifications/Factory/Notification.php:197 #, php-format msgid "%1$s liked your post %2$s" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:218 +#: src/Navigation/Notifications/Factory/Notification.php:204 #, php-format msgid "%1$s disliked your comment on %2$s" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:221 +#: src/Navigation/Notifications/Factory/Notification.php:207 #, php-format msgid "%1$s disliked your post %2$s" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:228 +#: src/Navigation/Notifications/Factory/Notification.php:214 #, php-format msgid "%1$s shared your comment %2$s" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:231 -#: src/Navigation/Notifications/Factory/Notification.php:316 +#: src/Navigation/Notifications/Factory/Notification.php:217 +#: src/Navigation/Notifications/Factory/Notification.php:302 #, php-format msgid "%1$s shared your post %2$s" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:235 -#: src/Navigation/Notifications/Factory/Notification.php:305 +#: src/Navigation/Notifications/Factory/Notification.php:221 +#: src/Navigation/Notifications/Factory/Notification.php:291 #, php-format msgid "%1$s shared the post %2$s from %3$s" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:237 -#: src/Navigation/Notifications/Factory/Notification.php:307 +#: src/Navigation/Notifications/Factory/Notification.php:223 +#: src/Navigation/Notifications/Factory/Notification.php:293 #, php-format msgid "%1$s shared a post from %3$s" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:239 -#: src/Navigation/Notifications/Factory/Notification.php:309 +#: src/Navigation/Notifications/Factory/Notification.php:225 +#: src/Navigation/Notifications/Factory/Notification.php:295 #, php-format msgid "%1$s shared the post %2$s" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:241 -#: src/Navigation/Notifications/Factory/Notification.php:311 +#: src/Navigation/Notifications/Factory/Notification.php:227 +#: src/Navigation/Notifications/Factory/Notification.php:297 #, php-format msgid "%1$s shared a post" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:249 +#: src/Navigation/Notifications/Factory/Notification.php:235 #, php-format msgid "%1$s wants to attend your event %2$s" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:256 +#: src/Navigation/Notifications/Factory/Notification.php:242 #, php-format msgid "%1$s does not want to attend your event %2$s" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:263 +#: src/Navigation/Notifications/Factory/Notification.php:249 #, php-format msgid "%1$s maybe wants to attend your event %2$s" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:270 +#: src/Navigation/Notifications/Factory/Notification.php:256 #, php-format msgid "%1$s tagged you on %2$s" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:274 +#: src/Navigation/Notifications/Factory/Notification.php:260 #, php-format msgid "%1$s replied to you on %2$s" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:278 +#: src/Navigation/Notifications/Factory/Notification.php:264 #, php-format msgid "%1$s commented in your thread %2$s" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:282 +#: src/Navigation/Notifications/Factory/Notification.php:268 #, php-format msgid "%1$s commented on your comment %2$s" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:289 +#: src/Navigation/Notifications/Factory/Notification.php:275 #, php-format msgid "%1$s commented in their thread %2$s" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:291 +#: src/Navigation/Notifications/Factory/Notification.php:277 #, php-format msgid "%1$s commented in their thread" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:293 +#: src/Navigation/Notifications/Factory/Notification.php:279 #, php-format msgid "%1$s commented in the thread %2$s from %3$s" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:295 +#: src/Navigation/Notifications/Factory/Notification.php:281 #, php-format msgid "%1$s commented in the thread from %3$s" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:300 +#: src/Navigation/Notifications/Factory/Notification.php:286 #, php-format msgid "%1$s commented on your thread %2$s" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:225 -#: src/Navigation/Notifications/Repository/Notify.php:754 +#: src/Navigation/Notifications/Repository/Notify.php:211 +#: src/Navigation/Notifications/Repository/Notify.php:740 msgid "[Friendica:Notify]" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:293 +#: src/Navigation/Notifications/Repository/Notify.php:279 #, php-format msgid "%s New mail received at %s" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:295 +#: src/Navigation/Notifications/Repository/Notify.php:281 #, php-format msgid "%1$s sent you a new private message at %2$s." msgstr "%1$s sendi þér ný einkaskilaboð %2$s." -#: src/Navigation/Notifications/Repository/Notify.php:296 +#: src/Navigation/Notifications/Repository/Notify.php:282 msgid "a private message" msgstr "einkaskilaboð" -#: src/Navigation/Notifications/Repository/Notify.php:296 +#: src/Navigation/Notifications/Repository/Notify.php:282 #, php-format msgid "%1$s sent you %2$s." msgstr "%1$s sendi þér %2$s." -#: src/Navigation/Notifications/Repository/Notify.php:298 +#: src/Navigation/Notifications/Repository/Notify.php:284 #, php-format msgid "Please visit %s to view and/or reply to your private messages." msgstr "Farðu á %s til að skoða og/eða svara einkaskilaboðunum þínum." -#: src/Navigation/Notifications/Repository/Notify.php:328 +#: src/Navigation/Notifications/Repository/Notify.php:314 #, php-format msgid "%1$s commented on %2$s's %3$s %4$s" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:333 +#: src/Navigation/Notifications/Repository/Notify.php:319 #, php-format msgid "%1$s commented on your %2$s %3$s" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:337 +#: src/Navigation/Notifications/Repository/Notify.php:323 #, php-format msgid "%1$s commented on their %2$s %3$s" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:341 -#: src/Navigation/Notifications/Repository/Notify.php:788 +#: src/Navigation/Notifications/Repository/Notify.php:327 +#: src/Navigation/Notifications/Repository/Notify.php:774 #, php-format msgid "%1$s Comment to conversation #%2$d by %3$s" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:343 +#: src/Navigation/Notifications/Repository/Notify.php:329 #, php-format msgid "%s commented on an item/conversation you have been following." msgstr "%s skrifaði athugasemd á færslu/samtal sem þú ert að fylgja." -#: src/Navigation/Notifications/Repository/Notify.php:347 -#: src/Navigation/Notifications/Repository/Notify.php:362 -#: src/Navigation/Notifications/Repository/Notify.php:814 +#: src/Navigation/Notifications/Repository/Notify.php:333 +#: src/Navigation/Notifications/Repository/Notify.php:348 +#: src/Navigation/Notifications/Repository/Notify.php:800 #, php-format msgid "Please visit %s to view and/or reply to the conversation." msgstr "Farðu á %s til að skoða og/eða svara samtali." -#: src/Navigation/Notifications/Repository/Notify.php:354 +#: src/Navigation/Notifications/Repository/Notify.php:340 #, php-format msgid "%s %s posted to your profile wall" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:356 +#: src/Navigation/Notifications/Repository/Notify.php:342 #, php-format msgid "%1$s posted to your profile wall at %2$s" msgstr "%1$s skrifaði á vegginn þinn %2$s" -#: src/Navigation/Notifications/Repository/Notify.php:357 +#: src/Navigation/Notifications/Repository/Notify.php:343 #, php-format msgid "%1$s posted to [url=%2$s]your wall[/url]" msgstr "%1$s skrifaði á [url=%2$s]vegginn þinn[/url]" -#: src/Navigation/Notifications/Repository/Notify.php:370 +#: src/Navigation/Notifications/Repository/Notify.php:356 #, php-format msgid "%s Introduction received" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:372 +#: src/Navigation/Notifications/Repository/Notify.php:358 #, php-format msgid "You've received an introduction from '%1$s' at %2$s" msgstr "Þú tókst við kynningu frá '%1$s', %2$s" -#: src/Navigation/Notifications/Repository/Notify.php:373 +#: src/Navigation/Notifications/Repository/Notify.php:359 #, php-format msgid "You've received [url=%1$s]an introduction[/url] from %2$s." msgstr "Þú tókst við [url=%1$s]kynningu[/url] frá %2$s." -#: src/Navigation/Notifications/Repository/Notify.php:378 -#: src/Navigation/Notifications/Repository/Notify.php:424 +#: src/Navigation/Notifications/Repository/Notify.php:364 +#: src/Navigation/Notifications/Repository/Notify.php:410 #, php-format msgid "You may visit their profile at %s" msgstr "Þú getur heimsótt síðuna þeirra á %s" -#: src/Navigation/Notifications/Repository/Notify.php:380 +#: src/Navigation/Notifications/Repository/Notify.php:366 #, php-format msgid "Please visit %s to approve or reject the introduction." msgstr "Farðu á %s til að samþykkja eða hunsa þessa kynningu." -#: src/Navigation/Notifications/Repository/Notify.php:387 +#: src/Navigation/Notifications/Repository/Notify.php:373 #, php-format msgid "%s A new person is sharing with you" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:389 -#: src/Navigation/Notifications/Repository/Notify.php:390 +#: src/Navigation/Notifications/Repository/Notify.php:375 +#: src/Navigation/Notifications/Repository/Notify.php:376 #, php-format msgid "%1$s is sharing with you at %2$s" msgstr "%1$s er að deila með þér, %2$s" -#: src/Navigation/Notifications/Repository/Notify.php:397 +#: src/Navigation/Notifications/Repository/Notify.php:383 #, php-format msgid "%s You have a new follower" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:399 -#: src/Navigation/Notifications/Repository/Notify.php:400 +#: src/Navigation/Notifications/Repository/Notify.php:385 +#: src/Navigation/Notifications/Repository/Notify.php:386 #, php-format msgid "You have a new follower at %2$s : %1$s" msgstr "Þú hefur nýjan fylgjanda á %2$s : %1$s" -#: src/Navigation/Notifications/Repository/Notify.php:413 +#: src/Navigation/Notifications/Repository/Notify.php:399 #, php-format msgid "%s Friend suggestion received" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:415 +#: src/Navigation/Notifications/Repository/Notify.php:401 #, php-format msgid "You've received a friend suggestion from '%1$s' at %2$s" msgstr "Þér hefur borist uppástunga um vin frá '%1$s' kl. %2$s" -#: src/Navigation/Notifications/Repository/Notify.php:416 +#: src/Navigation/Notifications/Repository/Notify.php:402 #, php-format msgid "" "You've received [url=%1$s]a friend suggestion[/url] for %2$s from %3$s." msgstr "Þér hefur borist [url=%1$s]uppástunga um vin[/url] fyrir %2$s frá %3$s." -#: src/Navigation/Notifications/Repository/Notify.php:422 +#: src/Navigation/Notifications/Repository/Notify.php:408 msgid "Name:" msgstr "Nafn:" -#: src/Navigation/Notifications/Repository/Notify.php:423 +#: src/Navigation/Notifications/Repository/Notify.php:409 msgid "Photo:" msgstr "Mynd:" -#: src/Navigation/Notifications/Repository/Notify.php:426 +#: src/Navigation/Notifications/Repository/Notify.php:412 #, php-format msgid "Please visit %s to approve or reject the suggestion." msgstr "Farðu á %s til að samþykkja eða hunsa þessa uppástungu." -#: src/Navigation/Notifications/Repository/Notify.php:434 -#: src/Navigation/Notifications/Repository/Notify.php:449 +#: src/Navigation/Notifications/Repository/Notify.php:420 +#: src/Navigation/Notifications/Repository/Notify.php:435 #, php-format msgid "%s Connection accepted" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:436 -#: src/Navigation/Notifications/Repository/Notify.php:451 +#: src/Navigation/Notifications/Repository/Notify.php:422 +#: src/Navigation/Notifications/Repository/Notify.php:437 #, php-format msgid "'%1$s' has accepted your connection request at %2$s" msgstr "'%1$s' samþykkti tengibeiðni þína %2$s" -#: src/Navigation/Notifications/Repository/Notify.php:437 -#: src/Navigation/Notifications/Repository/Notify.php:452 +#: src/Navigation/Notifications/Repository/Notify.php:423 +#: src/Navigation/Notifications/Repository/Notify.php:438 #, php-format msgid "%2$s has accepted your [url=%1$s]connection request[/url]." msgstr "%2$s samþykkti [url=%1$s]tengibeiðni þína[/url]." -#: src/Navigation/Notifications/Repository/Notify.php:442 +#: src/Navigation/Notifications/Repository/Notify.php:428 msgid "" "You are now mutual friends and may exchange status updates, photos, and " "email without restriction." msgstr "Þið eruð núna gagnkvæmir vinir og getið skipst á stöðuuppfærslum, myndum og tölvupósti án hindrana." -#: src/Navigation/Notifications/Repository/Notify.php:444 +#: src/Navigation/Notifications/Repository/Notify.php:430 #, php-format msgid "Please visit %s if you wish to make any changes to this relationship." msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:457 +#: src/Navigation/Notifications/Repository/Notify.php:443 #, php-format msgid "" "'%1$s' has chosen to accept you a fan, which restricts some forms of " @@ -12174,34 +12177,34 @@ msgid "" "automatically." msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:459 +#: src/Navigation/Notifications/Repository/Notify.php:445 #, php-format msgid "" "'%1$s' may choose to extend this into a two-way or more permissive " "relationship in the future." msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:461 +#: src/Navigation/Notifications/Repository/Notify.php:447 #, php-format msgid "Please visit %s if you wish to make any changes to this relationship." msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:471 +#: src/Navigation/Notifications/Repository/Notify.php:457 msgid "registration request" msgstr "beiðni um skráningu" -#: src/Navigation/Notifications/Repository/Notify.php:473 +#: src/Navigation/Notifications/Repository/Notify.php:459 #, php-format msgid "You've received a registration request from '%1$s' at %2$s" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:474 +#: src/Navigation/Notifications/Repository/Notify.php:460 #, php-format msgid "You've received a [url=%1$s]registration request[/url] from %2$s." msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:479 -#: src/Navigation/Notifications/Repository/Notify.php:500 +#: src/Navigation/Notifications/Repository/Notify.php:465 +#: src/Navigation/Notifications/Repository/Notify.php:486 #, php-format msgid "" "Display Name:\t%s\n" @@ -12209,768 +12212,755 @@ msgid "" "Login Name:\t%s (%s)" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:485 +#: src/Navigation/Notifications/Repository/Notify.php:471 #, php-format msgid "Please visit %s to approve or reject the request." msgstr "Farðu á %s til að samþykkja eða hunsa þessa beiðni." -#: src/Navigation/Notifications/Repository/Notify.php:492 +#: src/Navigation/Notifications/Repository/Notify.php:478 msgid "new registration" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:494 +#: src/Navigation/Notifications/Repository/Notify.php:480 #, php-format msgid "You've received a new registration from '%1$s' at %2$s" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:495 +#: src/Navigation/Notifications/Repository/Notify.php:481 #, php-format msgid "You've received a [url=%1$s]new registration[/url] from %2$s." msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:506 +#: src/Navigation/Notifications/Repository/Notify.php:492 #, php-format msgid "Please visit %s to have a look at the new registration." msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:782 +#: src/Navigation/Notifications/Repository/Notify.php:768 #, php-format msgid "%s %s tagged you" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:785 +#: src/Navigation/Notifications/Repository/Notify.php:771 #, php-format msgid "%s %s shared a new post" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:793 +#: src/Navigation/Notifications/Repository/Notify.php:779 #, php-format msgid "%1$s %2$s liked your post #%3$d" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:796 +#: src/Navigation/Notifications/Repository/Notify.php:782 #, php-format msgid "%1$s %2$s liked your comment on #%3$d" msgstr "" -#: src/Object/EMail/ItemCCEMail.php:42 +#: src/Object/EMail/ItemCCEMail.php:28 #, php-format msgid "" "This message was sent to you by %s, a member of the Friendica social " "network." msgstr "Skilaboðið sendi %s, notandi á Friendica samfélagsnetinu." -#: src/Object/EMail/ItemCCEMail.php:44 +#: src/Object/EMail/ItemCCEMail.php:30 #, php-format msgid "You may visit them online at %s" msgstr "Þú getur heimsótt þau á netinu á %s" -#: src/Object/EMail/ItemCCEMail.php:45 +#: src/Object/EMail/ItemCCEMail.php:31 msgid "" "Please contact the sender by replying to this post if you do not wish to " "receive these messages." msgstr "Hafðu samband við sendanda með því að svara á þessari færslu ef þú villt ekki fá þessi skilaboð." -#: src/Object/EMail/ItemCCEMail.php:49 +#: src/Object/EMail/ItemCCEMail.php:35 #, php-format msgid "%s posted an update." msgstr "%s hefur sent uppfærslu." -#: src/Object/Post.php:138 +#: src/Object/Post.php:124 msgid "Private Message" msgstr "Einkaskilaboð" -#: src/Object/Post.php:142 +#: src/Object/Post.php:128 msgid "Public Message" msgstr "" -#: src/Object/Post.php:146 +#: src/Object/Post.php:132 msgid "Unlisted Message" msgstr "" -#: src/Object/Post.php:182 +#: src/Object/Post.php:168 msgid "This entry was edited" msgstr "Þessari færslu var breytt" -#: src/Object/Post.php:210 +#: src/Object/Post.php:196 msgid "Connector Message" msgstr "" -#: src/Object/Post.php:239 src/Object/Post.php:241 +#: src/Object/Post.php:225 src/Object/Post.php:227 msgid "Edit" msgstr "Breyta" -#: src/Object/Post.php:275 +#: src/Object/Post.php:261 msgid "Delete globally" msgstr "" -#: src/Object/Post.php:275 +#: src/Object/Post.php:261 msgid "Remove locally" msgstr "" -#: src/Object/Post.php:282 +#: src/Object/Post.php:268 #, php-format msgid "Block %s" msgstr "" -#: src/Object/Post.php:287 +#: src/Object/Post.php:273 #, php-format msgid "Ignore %s" msgstr "" -#: src/Object/Post.php:292 +#: src/Object/Post.php:278 #, php-format msgid "Collapse %s" msgstr "" -#: src/Object/Post.php:296 +#: src/Object/Post.php:282 msgid "Report post" msgstr "" -#: src/Object/Post.php:307 +#: src/Object/Post.php:293 msgid "Save to folder" msgstr "" -#: src/Object/Post.php:347 +#: src/Object/Post.php:333 msgid "I will attend" msgstr "Ég mæti" -#: src/Object/Post.php:347 +#: src/Object/Post.php:333 msgid "I will not attend" msgstr "Ég mæti ekki" -#: src/Object/Post.php:347 +#: src/Object/Post.php:333 msgid "I might attend" msgstr "Ég gæti mætt" -#: src/Object/Post.php:394 +#: src/Object/Post.php:380 msgid "Ignore thread" msgstr "" -#: src/Object/Post.php:395 +#: src/Object/Post.php:381 msgid "Unignore thread" msgstr "" -#: src/Object/Post.php:396 +#: src/Object/Post.php:382 msgid "Toggle ignore status" msgstr "" -#: src/Object/Post.php:406 +#: src/Object/Post.php:392 msgid "Add star" msgstr "" -#: src/Object/Post.php:407 +#: src/Object/Post.php:393 msgid "Remove star" msgstr "" -#: src/Object/Post.php:408 +#: src/Object/Post.php:394 msgid "Toggle star status" msgstr "" -#: src/Object/Post.php:419 +#: src/Object/Post.php:405 msgid "Pin" msgstr "" -#: src/Object/Post.php:420 +#: src/Object/Post.php:406 msgid "Unpin" msgstr "" -#: src/Object/Post.php:421 +#: src/Object/Post.php:407 msgid "Toggle pin status" msgstr "" -#: src/Object/Post.php:424 +#: src/Object/Post.php:410 msgid "Pinned" msgstr "" -#: src/Object/Post.php:429 +#: src/Object/Post.php:415 msgid "Add tag" msgstr "" -#: src/Object/Post.php:444 +#: src/Object/Post.php:430 msgid "Quote share this" msgstr "" -#: src/Object/Post.php:444 +#: src/Object/Post.php:430 msgid "Quote Share" msgstr "" -#: src/Object/Post.php:447 +#: src/Object/Post.php:433 msgid "Reshare this" msgstr "" -#: src/Object/Post.php:447 +#: src/Object/Post.php:433 msgid "Reshare" msgstr "" -#: src/Object/Post.php:448 +#: src/Object/Post.php:434 msgid "Cancel your Reshare" msgstr "" -#: src/Object/Post.php:448 +#: src/Object/Post.php:434 msgid "Unshare" msgstr "" -#: src/Object/Post.php:492 +#: src/Object/Post.php:478 #, php-format msgid "%s (Received %s)" msgstr "" -#: src/Object/Post.php:498 +#: src/Object/Post.php:484 msgid "Comment this item on your system" msgstr "" -#: src/Object/Post.php:498 +#: src/Object/Post.php:484 msgid "Remote comment" msgstr "" -#: src/Object/Post.php:520 +#: src/Object/Post.php:506 msgid "Share via ..." msgstr "" -#: src/Object/Post.php:520 +#: src/Object/Post.php:506 msgid "Share via external services" msgstr "" -#: src/Object/Post.php:527 +#: src/Object/Post.php:513 msgid "Unknown parent" msgstr "" -#: src/Object/Post.php:531 +#: src/Object/Post.php:517 #, php-format msgid "in reply to %s" msgstr "" -#: src/Object/Post.php:533 +#: src/Object/Post.php:519 msgid "Parent is probably private or not federated." msgstr "" -#: src/Object/Post.php:557 +#: src/Object/Post.php:543 msgid "to" msgstr "við" -#: src/Object/Post.php:558 +#: src/Object/Post.php:544 msgid "via" msgstr "gegnum" -#: src/Object/Post.php:559 +#: src/Object/Post.php:545 msgid "Wall-to-Wall" msgstr "vegg við vegg" -#: src/Object/Post.php:560 +#: src/Object/Post.php:546 msgid "via Wall-To-Wall:" msgstr "gegnum vegg við vegg" -#: src/Object/Post.php:613 +#: src/Object/Post.php:599 #, php-format msgid "Reply to %s" msgstr "" -#: src/Object/Post.php:616 +#: src/Object/Post.php:602 msgid "More" msgstr "" -#: src/Object/Post.php:635 +#: src/Object/Post.php:621 msgid "Notifier task is pending" msgstr "" -#: src/Object/Post.php:636 +#: src/Object/Post.php:622 msgid "Delivery to remote servers is pending" msgstr "" -#: src/Object/Post.php:637 +#: src/Object/Post.php:623 msgid "Delivery to remote servers is underway" msgstr "" -#: src/Object/Post.php:638 +#: src/Object/Post.php:624 msgid "Delivery to remote servers is mostly done" msgstr "" -#: src/Object/Post.php:639 +#: src/Object/Post.php:625 msgid "Delivery to remote servers is done" msgstr "" -#: src/Object/Post.php:661 +#: src/Object/Post.php:647 #, php-format msgid "%d comment" msgid_plural "%d comments" msgstr[0] "%d ummæli" msgstr[1] "%d ummæli" -#: src/Object/Post.php:662 +#: src/Object/Post.php:648 msgid "Show more" msgstr "" -#: src/Object/Post.php:663 +#: src/Object/Post.php:649 msgid "Show fewer" msgstr "" -#: src/Object/Post.php:700 +#: src/Object/Post.php:686 #, php-format msgid "Reshared by: %s" msgstr "" -#: src/Object/Post.php:705 +#: src/Object/Post.php:691 #, php-format msgid "Viewed by: %s" msgstr "" -#: src/Object/Post.php:710 +#: src/Object/Post.php:696 #, php-format msgid "Read by: %s" msgstr "" -#: src/Object/Post.php:715 +#: src/Object/Post.php:701 #, php-format msgid "Liked by: %s" msgstr "" -#: src/Object/Post.php:720 +#: src/Object/Post.php:706 #, php-format msgid "Disliked by: %s" msgstr "" -#: src/Object/Post.php:725 +#: src/Object/Post.php:711 #, php-format msgid "Attended by: %s" msgstr "" -#: src/Object/Post.php:730 +#: src/Object/Post.php:716 #, php-format msgid "Maybe attended by: %s" msgstr "" -#: src/Object/Post.php:735 +#: src/Object/Post.php:721 #, php-format msgid "Not attended by: %s" msgstr "" -#: src/Object/Post.php:740 +#: src/Object/Post.php:726 #, php-format msgid "Commented by: %s" msgstr "" -#: src/Object/Post.php:745 +#: src/Object/Post.php:731 #, php-format msgid "Reacted with %s by: %s" msgstr "" -#: src/Object/Post.php:768 +#: src/Object/Post.php:754 #, php-format msgid "Quote shared by: %s" msgstr "" -#: src/Protocol/ActivityPub/Receiver.php:568 +#: src/Protocol/ActivityPub/Receiver.php:557 msgid "Chat" msgstr "" -#: src/Protocol/Delivery.php:544 +#: src/Protocol/Delivery.php:530 msgid "(no subject)" msgstr "" -#: src/Protocol/OStatus.php:1392 -#, php-format -msgid "%s is now following %s." -msgstr "%s fylgist núna með %s." - -#: src/Protocol/OStatus.php:1393 -msgid "following" -msgstr "fylgist með" - -#: src/Protocol/OStatus.php:1396 -#, php-format -msgid "%s stopped following %s." -msgstr "" - -#: src/Protocol/OStatus.php:1397 -msgid "stopped following" -msgstr "hætt að fylgja" - -#: src/Render/FriendicaSmartyEngine.php:56 +#: src/Render/FriendicaSmartyEngine.php:42 #, php-format msgid "The folder %s must be writable by webserver." msgstr "" -#: src/Security/Authentication.php:216 +#: src/Security/Authentication.php:200 msgid "Login failed." msgstr "Innskráning mistókst." -#: src/Security/Authentication.php:261 +#: src/Security/Authentication.php:245 msgid "Login failed. Please check your credentials." msgstr "" -#: src/Security/Authentication.php:375 +#: src/Security/Authentication.php:359 #, php-format msgid "Welcome %s" msgstr "" -#: src/Security/Authentication.php:376 +#: src/Security/Authentication.php:360 msgid "Please upload a profile photo." msgstr "Gerðu svo vel að hlaða inn forsíðumynd." -#: src/Util/EMailer/MailBuilder.php:260 +#: src/Security/OpenWebAuth.php:149 +#, php-format +msgid "OpenWebAuth: %1$s welcomes %2$s" +msgstr "" + +#: src/Util/EMailer/MailBuilder.php:246 msgid "Friendica Notification" msgstr "" -#: src/Util/EMailer/NotifyMailBuilder.php:78 -#: src/Util/EMailer/SystemMailBuilder.php:54 +#: src/Util/EMailer/NotifyMailBuilder.php:64 +#: src/Util/EMailer/SystemMailBuilder.php:40 #, php-format msgid "%1$s, %2$s Administrator" msgstr "" -#: src/Util/EMailer/NotifyMailBuilder.php:80 -#: src/Util/EMailer/SystemMailBuilder.php:56 +#: src/Util/EMailer/NotifyMailBuilder.php:66 +#: src/Util/EMailer/SystemMailBuilder.php:42 #, php-format msgid "%s Administrator" msgstr "" -#: src/Util/EMailer/NotifyMailBuilder.php:193 -#: src/Util/EMailer/NotifyMailBuilder.php:217 -#: src/Util/EMailer/SystemMailBuilder.php:101 -#: src/Util/EMailer/SystemMailBuilder.php:118 +#: src/Util/EMailer/NotifyMailBuilder.php:179 +#: src/Util/EMailer/NotifyMailBuilder.php:203 +#: src/Util/EMailer/SystemMailBuilder.php:87 +#: src/Util/EMailer/SystemMailBuilder.php:104 msgid "thanks" msgstr "" -#: src/Util/Temporal.php:172 +#: src/Util/Temporal.php:158 msgid "YYYY-MM-DD or MM-DD" msgstr "" -#: src/Util/Temporal.php:280 +#: src/Util/Temporal.php:266 #, php-format msgid "Time zone: %s Change in Settings" msgstr "" -#: src/Util/Temporal.php:320 src/Util/Temporal.php:329 +#: src/Util/Temporal.php:306 src/Util/Temporal.php:315 msgid "never" msgstr "" -#: src/Util/Temporal.php:343 +#: src/Util/Temporal.php:329 msgid "less than a second ago" msgstr "" -#: src/Util/Temporal.php:352 +#: src/Util/Temporal.php:338 msgid "year" msgstr "" -#: src/Util/Temporal.php:352 +#: src/Util/Temporal.php:338 msgid "years" msgstr "" -#: src/Util/Temporal.php:353 +#: src/Util/Temporal.php:339 msgid "months" msgstr "" -#: src/Util/Temporal.php:354 +#: src/Util/Temporal.php:340 msgid "weeks" msgstr "" -#: src/Util/Temporal.php:355 +#: src/Util/Temporal.php:341 msgid "days" msgstr "" -#: src/Util/Temporal.php:356 +#: src/Util/Temporal.php:342 msgid "hour" msgstr "" -#: src/Util/Temporal.php:356 +#: src/Util/Temporal.php:342 msgid "hours" msgstr "" -#: src/Util/Temporal.php:357 +#: src/Util/Temporal.php:343 msgid "minute" msgstr "" -#: src/Util/Temporal.php:357 +#: src/Util/Temporal.php:343 msgid "minutes" msgstr "" -#: src/Util/Temporal.php:358 +#: src/Util/Temporal.php:344 msgid "second" msgstr "" -#: src/Util/Temporal.php:358 +#: src/Util/Temporal.php:344 msgid "seconds" msgstr "" -#: src/Util/Temporal.php:367 +#: src/Util/Temporal.php:353 #, php-format msgid "in %1$d %2$s" msgstr "" -#: src/Util/Temporal.php:370 +#: src/Util/Temporal.php:356 #, php-format msgid "%1$d %2$s ago" msgstr "" -#: src/Worker/PushSubscription.php:110 +#: src/Worker/PushSubscription.php:96 msgid "Notification from Friendica" msgstr "" -#: src/Worker/PushSubscription.php:111 +#: src/Worker/PushSubscription.php:97 msgid "Empty Post" msgstr "" -#: view/theme/duepuntozero/config.php:68 +#: view/theme/duepuntozero/config.php:56 msgid "default" msgstr "" -#: view/theme/duepuntozero/config.php:69 +#: view/theme/duepuntozero/config.php:57 msgid "greenzero" msgstr "" -#: view/theme/duepuntozero/config.php:70 +#: view/theme/duepuntozero/config.php:58 msgid "purplezero" msgstr "" -#: view/theme/duepuntozero/config.php:71 +#: view/theme/duepuntozero/config.php:59 msgid "easterbunny" msgstr "" -#: view/theme/duepuntozero/config.php:72 +#: view/theme/duepuntozero/config.php:60 msgid "darkzero" msgstr "" -#: view/theme/duepuntozero/config.php:73 +#: view/theme/duepuntozero/config.php:61 msgid "comix" msgstr "" -#: view/theme/duepuntozero/config.php:74 +#: view/theme/duepuntozero/config.php:62 msgid "slackr" msgstr "" -#: view/theme/duepuntozero/config.php:87 +#: view/theme/duepuntozero/config.php:75 msgid "Variations" msgstr "" -#: view/theme/frio/config.php:146 +#: view/theme/frio/config.php:134 msgid "Note" msgstr "" -#: view/theme/frio/config.php:146 +#: view/theme/frio/config.php:134 msgid "Check image permissions if all users are allowed to see the image" msgstr "" -#: view/theme/frio/config.php:152 +#: view/theme/frio/config.php:140 msgid "Appearance" msgstr "" -#: view/theme/frio/config.php:153 +#: view/theme/frio/config.php:141 msgid "Accent color" msgstr "" -#: view/theme/frio/config.php:153 +#: view/theme/frio/config.php:141 msgid "Blue" msgstr "" -#: view/theme/frio/config.php:153 +#: view/theme/frio/config.php:141 msgid "Red" msgstr "" -#: view/theme/frio/config.php:153 +#: view/theme/frio/config.php:141 msgid "Purple" msgstr "" -#: view/theme/frio/config.php:153 +#: view/theme/frio/config.php:141 msgid "Green" msgstr "" -#: view/theme/frio/config.php:153 +#: view/theme/frio/config.php:141 msgid "Pink" msgstr "" -#: view/theme/frio/config.php:154 +#: view/theme/frio/config.php:142 msgid "Copy or paste schemestring" msgstr "" -#: view/theme/frio/config.php:154 +#: view/theme/frio/config.php:142 msgid "" "You can copy this string to share your theme with others. Pasting here " "applies the schemestring" msgstr "" -#: view/theme/frio/config.php:155 +#: view/theme/frio/config.php:143 msgid "Navigation bar background color" msgstr "" -#: view/theme/frio/config.php:156 +#: view/theme/frio/config.php:144 msgid "Navigation bar icon color " msgstr "" -#: view/theme/frio/config.php:157 +#: view/theme/frio/config.php:145 msgid "Link color" msgstr "" -#: view/theme/frio/config.php:158 +#: view/theme/frio/config.php:146 msgid "Set the background color" msgstr "" -#: view/theme/frio/config.php:159 +#: view/theme/frio/config.php:147 msgid "Content background opacity" msgstr "" -#: view/theme/frio/config.php:160 +#: view/theme/frio/config.php:148 msgid "Set the background image" msgstr "" -#: view/theme/frio/config.php:161 +#: view/theme/frio/config.php:149 msgid "Background image style" msgstr "" -#: view/theme/frio/config.php:164 +#: view/theme/frio/config.php:152 msgid "Always open Compose page" msgstr "" -#: view/theme/frio/config.php:164 +#: view/theme/frio/config.php:152 msgid "" "The New Post button always open the 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:168 +#: view/theme/frio/config.php:156 msgid "Login page background image" msgstr "" -#: view/theme/frio/config.php:172 +#: view/theme/frio/config.php:160 msgid "Login page background color" msgstr "" -#: view/theme/frio/config.php:172 +#: view/theme/frio/config.php:160 msgid "Leave background image and color empty for theme defaults" msgstr "" -#: view/theme/frio/php/Image.php:39 +#: view/theme/frio/php/Image.php:27 msgid "Top Banner" msgstr "" -#: view/theme/frio/php/Image.php:39 +#: view/theme/frio/php/Image.php:27 msgid "" "Resize image to the width of the screen and show background color below on " "long pages." msgstr "" -#: view/theme/frio/php/Image.php:40 +#: view/theme/frio/php/Image.php:28 msgid "Full screen" msgstr "" -#: view/theme/frio/php/Image.php:40 +#: view/theme/frio/php/Image.php:28 msgid "" "Resize image to fill entire screen, clipping either the right or the bottom." msgstr "" -#: view/theme/frio/php/Image.php:41 +#: view/theme/frio/php/Image.php:29 msgid "Single row mosaic" msgstr "" -#: view/theme/frio/php/Image.php:41 +#: view/theme/frio/php/Image.php:29 msgid "" "Resize image to repeat it on a single row, either vertical or horizontal." msgstr "" -#: view/theme/frio/php/Image.php:42 +#: view/theme/frio/php/Image.php:30 msgid "Mosaic" msgstr "" -#: view/theme/frio/php/Image.php:42 +#: view/theme/frio/php/Image.php:30 msgid "Repeat image to fill the screen." msgstr "" -#: view/theme/frio/php/default.php:82 view/theme/frio/php/standard.php:40 +#: view/theme/frio/php/default.php:70 view/theme/frio/php/standard.php:28 msgid "Skip to main content" msgstr "" -#: view/theme/frio/php/default.php:153 view/theme/frio/php/standard.php:75 +#: view/theme/frio/php/default.php:141 view/theme/frio/php/standard.php:63 msgid "Back to top" msgstr "" -#: view/theme/frio/php/scheme.php:105 +#: view/theme/frio/php/scheme.php:93 msgid "Light" msgstr "" -#: view/theme/frio/php/scheme.php:106 +#: view/theme/frio/php/scheme.php:94 msgid "Dark" msgstr "" -#: view/theme/frio/php/scheme.php:107 +#: view/theme/frio/php/scheme.php:95 msgid "Black" msgstr "" -#: view/theme/frio/php/scheme.php:118 +#: view/theme/frio/php/scheme.php:106 msgid "Custom" msgstr "" -#: view/theme/frio/theme.php:214 +#: view/theme/frio/theme.php:202 msgid "Guest" msgstr "" -#: view/theme/frio/theme.php:217 +#: view/theme/frio/theme.php:205 msgid "Visitor" msgstr "" -#: view/theme/quattro/config.php:89 +#: view/theme/quattro/config.php:77 msgid "Alignment" msgstr "" -#: view/theme/quattro/config.php:89 +#: view/theme/quattro/config.php:77 msgid "Left" msgstr "" -#: view/theme/quattro/config.php:89 +#: view/theme/quattro/config.php:77 msgid "Center" msgstr "" -#: view/theme/quattro/config.php:90 +#: view/theme/quattro/config.php:78 msgid "Color scheme" msgstr "" -#: view/theme/quattro/config.php:91 +#: view/theme/quattro/config.php:79 msgid "Posts font size" msgstr "" -#: view/theme/quattro/config.php:92 +#: view/theme/quattro/config.php:80 msgid "Textareas font size" msgstr "" -#: view/theme/vier/config.php:91 +#: view/theme/vier/config.php:79 msgid "Comma separated list of helper groups" msgstr "" -#: view/theme/vier/config.php:131 +#: view/theme/vier/config.php:119 msgid "don't show" msgstr "" -#: view/theme/vier/config.php:131 +#: view/theme/vier/config.php:119 msgid "show" msgstr "" -#: view/theme/vier/config.php:137 +#: view/theme/vier/config.php:125 msgid "Set style" msgstr "" -#: view/theme/vier/config.php:138 +#: view/theme/vier/config.php:126 msgid "Community Pages" msgstr "" -#: view/theme/vier/config.php:139 view/theme/vier/theme.php:148 +#: view/theme/vier/config.php:127 view/theme/vier/theme.php:136 msgid "Community Profiles" msgstr "" -#: view/theme/vier/config.php:140 +#: view/theme/vier/config.php:128 msgid "Help or @NewHere ?" msgstr "" -#: view/theme/vier/config.php:141 view/theme/vier/theme.php:319 +#: view/theme/vier/config.php:129 view/theme/vier/theme.php:307 msgid "Connect Services" msgstr "" -#: view/theme/vier/config.php:142 +#: view/theme/vier/config.php:130 msgid "Find Friends" msgstr "" -#: view/theme/vier/config.php:143 view/theme/vier/theme.php:175 +#: view/theme/vier/config.php:131 view/theme/vier/theme.php:163 msgid "Last users" msgstr "" -#: view/theme/vier/theme.php:234 +#: view/theme/vier/theme.php:222 msgid "Quick Start" msgstr "" diff --git a/view/lang/is/strings.php b/view/lang/is/strings.php index 543421ade4..99fec903a3 100644 --- a/view/lang/is/strings.php +++ b/view/lang/is/strings.php @@ -365,7 +365,6 @@ $a->strings['The profile address specified does not provide adequate information $a->strings['No compatible communication protocols or feeds were discovered.'] = 'Engir samhæfðir samskiptastaðlar né fréttastraumar fundust.'; $a->strings['An author or name was not found.'] = 'Höfundur eða nafn fannst ekki.'; $a->strings['No browser URL could be matched to this address.'] = 'Engin vefslóð passaði við þetta vistfang.'; -$a->strings['The profile address specified belongs to a network which has been disabled on this site.'] = 'Þessi forsíðu slóð tilheyrir neti sem er bannað á þessum vef.'; $a->strings['Limited profile. This person will be unable to receive direct/personal notifications from you.'] = 'Takmörkuð forsíða. Þessi tengiliður mun ekki getað tekið á móti beinum/einka tilkynningum frá þér.'; $a->strings['Unable to retrieve contact information.'] = 'Ekki hægt að sækja tengiliðs upplýsingar.'; $a->strings['Starts:'] = 'Byrjar:'; @@ -747,12 +746,12 @@ $a->strings['Show unread'] = 'Birta ólesið'; $a->strings['{0} requested registration'] = '{0} óskaði eftir skráningu'; $a->strings['Authorize application connection'] = 'Leyfa forriti að tengjast'; $a->strings['Do you want to authorize this application to access your posts and contacts, and/or create new posts for you?'] = 'Vilt þú leyfa þessu forriti að hafa aðgang að færslum og tengiliðum, og/eða stofna nýjar færslur fyrir þig?'; -$a->strings['Keep this window open until done.'] = 'Halda þessum glugga opnum þar til öllu er lokið.'; $a->strings['No contact provided.'] = 'Enginn tengiliður uppgefinn.'; $a->strings['Done'] = 'Lokið'; $a->strings['success'] = 'tókst'; $a->strings['failed'] = 'mistókst'; $a->strings['ignored'] = 'hunsað'; +$a->strings['Keep this window open until done.'] = 'Halda þessum glugga opnum þar til öllu er lokið.'; $a->strings['Edit post'] = 'Breyta skilaboðum'; $a->strings['web link'] = 'vefslóð'; $a->strings['Insert video link'] = 'Setja inn slóð á myndskeið'; @@ -765,9 +764,9 @@ $a->strings['Remove'] = 'Fjarlægja'; $a->strings['Remote privacy information not available.'] = 'Persónuverndarupplýsingar ekki fyrir hendi á fjartengdum vefþjóni.'; $a->strings['Visible to:'] = 'Sýnilegt eftirfarandi:'; $a->strings['No contacts.'] = 'Enginn tengiliður'; -$a->strings['%s\'s timeline'] = 'Tímalína fyrir %s'; $a->strings['%s\'s posts'] = 'Færslur frá %s'; $a->strings['%s\'s comments'] = 'Athugasemdir frá %s'; +$a->strings['%s\'s timeline'] = 'Tímalína fyrir %s'; $a->strings['Image file is missing'] = 'Myndskrá vantar'; $a->strings['Image file is empty.'] = 'Mynda skrá er tóm.'; $a->strings['View Album'] = 'Skoða myndabók'; @@ -936,7 +935,6 @@ $a->strings['%s commented on %s\'s post'] = '%s athugasemd við %s\'s færslu'; $a->strings['%s created a new post'] = '%s bjó til færslu'; $a->strings['Friend Suggestion'] = 'Vina tillaga'; $a->strings['Friend/Connect Request'] = 'Vinabeiðni/Tengibeiðni'; -$a->strings['New Follower'] = 'Nýr fylgjandi'; $a->strings['%1$s sent you a new private message at %2$s.'] = '%1$s sendi þér ný einkaskilaboð %2$s.'; $a->strings['a private message'] = 'einkaskilaboð'; $a->strings['%1$s sent you %2$s.'] = '%1$s sendi þér %2$s.'; @@ -979,8 +977,5 @@ $a->strings['%d comment'] = [ 0 => '%d ummæli', 1 => '%d ummæli', ]; -$a->strings['%s is now following %s.'] = '%s fylgist núna með %s.'; -$a->strings['following'] = 'fylgist með'; -$a->strings['stopped following'] = 'hætt að fylgja'; $a->strings['Login failed.'] = 'Innskráning mistókst.'; $a->strings['Please upload a profile photo.'] = 'Gerðu svo vel að hlaða inn forsíðumynd.'; diff --git a/view/lang/it/messages.po b/view/lang/it/messages.po index 19086dfbef..a3c3009baf 100644 --- a/view/lang/it/messages.po +++ b/view/lang/it/messages.po @@ -1,8 +1,7 @@ # FRIENDICA Distributed Social Network -# SPDX-FileCopyrightText: Copyright (C) 2010-2024, the Friendica project -# -# SPDX-License-Identifier: AGPL-3.0-or-later -# +# Copyright (C) 2010-2024, the Friendica project +# This file is distributed under the same license as the Friendica package. +# # Translators: # Elena , 2014 # fabrixxm , 2011 @@ -18,7 +17,7 @@ msgid "" msgstr "" "Project-Id-Version: friendica\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-05-15 12:16+0000\n" +"POT-Creation-Date: 2024-10-07 20:46+0000\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" @@ -28,77 +27,77 @@ msgstr "" "Language: it\n" "Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" -#: mod/item.php:101 mod/item.php:104 mod/item.php:171 mod/item.php:174 +#: mod/item.php:89 mod/item.php:92 mod/item.php:159 mod/item.php:162 msgid "Unable to locate original post." msgstr "Impossibile trovare il messaggio originale." -#: mod/item.php:139 +#: mod/item.php:127 msgid "Post updated." msgstr "Messaggio aggiornato." -#: mod/item.php:204 mod/item.php:208 +#: mod/item.php:192 mod/item.php:196 msgid "Item wasn't stored." msgstr "L'oggetto non è stato salvato." -#: mod/item.php:218 +#: mod/item.php:206 msgid "Item couldn't be fetched." msgstr "L'oggetto non può essere recuperato." -#: mod/item.php:260 mod/item.php:264 +#: mod/item.php:250 mod/item.php:254 msgid "Empty post discarded." msgstr "Messaggio vuoto scartato." -#: mod/item.php:435 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 +#: mod/item.php:425 src/Module/Admin/Themes/Details.php:31 +#: src/Module/Admin/Themes/Index.php:51 src/Module/Debug/ItemBody.php:28 +#: src/Module/Debug/ItemBody.php:43 src/Module/Item/Feed.php:66 msgid "Item not found." msgstr "Elemento non trovato." -#: mod/item.php:459 mod/message.php:66 mod/message.php:112 mod/notes.php:45 -#: mod/photos.php:146 mod/photos.php:662 src/Model/Event.php:520 -#: src/Module/Attach.php:55 src/Module/BaseApi.php:103 -#: src/Module/BaseNotifications.php:98 src/Module/BaseSettings.php:50 -#: src/Module/Calendar/Event/API.php:88 src/Module/Calendar/Event/Form.php:84 -#: src/Module/Calendar/Export.php:82 src/Module/Calendar/Show.php:82 -#: src/Module/Circle.php:41 src/Module/Circle.php:84 -#: src/Module/Contact/Advanced.php:60 src/Module/Contact/Follow.php:87 -#: src/Module/Contact/Follow.php:160 src/Module/Contact/MatchInterests.php:87 -#: src/Module/Contact/Suggestions.php:54 src/Module/Contact/Unfollow.php:66 -#: src/Module/Contact/Unfollow.php:80 src/Module/Contact/Unfollow.php:112 -#: src/Module/FollowConfirm.php:38 src/Module/FriendSuggest.php:57 -#: src/Module/Invite.php:42 src/Module/Invite.php:131 -#: src/Module/Notifications/Notification.php:76 -#: src/Module/Notifications/Notification.php:107 -#: src/Module/OStatus/Repair.php:60 src/Module/OStatus/Subscribe.php:68 -#: src/Module/Post/Edit.php:76 src/Module/Profile/Common.php:75 -#: src/Module/Profile/Contacts.php:78 src/Module/Profile/Photos.php:92 -#: src/Module/Profile/Schedule.php:39 src/Module/Profile/Schedule.php:56 -#: src/Module/Register.php:78 src/Module/Register.php:91 -#: src/Module/Register.php:207 src/Module/Register.php:246 -#: src/Module/Search/Directory.php:37 src/Module/Settings/Account.php:50 -#: src/Module/Settings/Account.php:386 src/Module/Settings/Channels.php:66 -#: src/Module/Settings/Channels.php:141 src/Module/Settings/Delegation.php:90 -#: src/Module/Settings/Display.php:90 src/Module/Settings/Display.php:197 -#: src/Module/Settings/Profile/Photo/Crop.php:165 -#: src/Module/Settings/Profile/Photo/Index.php:110 -#: src/Module/Settings/RemoveMe.php:119 src/Module/Settings/UserExport.php:78 -#: src/Module/Settings/UserExport.php:114 -#: src/Module/Settings/UserExport.php:213 -#: src/Module/Settings/UserExport.php:233 -#: src/Module/Settings/UserExport.php:298 src/Module/User/Delegation.php:154 -#: src/Module/User/Import.php:85 src/Module/User/Import.php:92 +#: mod/item.php:449 mod/message.php:54 mod/message.php:100 mod/notes.php:33 +#: mod/photos.php:135 mod/photos.php:627 src/Model/Event.php:506 +#: src/Module/Attach.php:41 src/Module/BaseApi.php:89 +#: src/Module/BaseNotifications.php:84 src/Module/BaseSettings.php:36 +#: src/Module/Calendar/Event/API.php:74 src/Module/Calendar/Event/Form.php:70 +#: src/Module/Calendar/Export.php:68 src/Module/Calendar/Show.php:68 +#: src/Module/Circle.php:27 src/Module/Circle.php:70 +#: src/Module/Contact/Advanced.php:46 src/Module/Contact/Follow.php:73 +#: src/Module/Contact/Follow.php:141 src/Module/Contact/MatchInterests.php:73 +#: src/Module/Contact/Suggestions.php:40 src/Module/Contact/Unfollow.php:52 +#: src/Module/Contact/Unfollow.php:66 src/Module/Contact/Unfollow.php:98 +#: src/Module/FollowConfirm.php:24 src/Module/FriendSuggest.php:43 +#: src/Module/Invite.php:28 src/Module/Invite.php:117 +#: src/Module/Notifications/Notification.php:62 +#: src/Module/Notifications/Notification.php:93 +#: src/Module/OStatus/Subscribe.php:54 src/Module/Post/Edit.php:62 +#: src/Module/Profile/Common.php:61 src/Module/Profile/Contacts.php:64 +#: src/Module/Profile/Photos.php:78 src/Module/Profile/Schedule.php:25 +#: src/Module/Profile/Schedule.php:42 src/Module/Register.php:70 +#: src/Module/Register.php:83 src/Module/Register.php:199 +#: src/Module/Register.php:238 src/Module/Search/Directory.php:23 +#: src/Module/Settings/Account.php:36 src/Module/Settings/Account.php:377 +#: src/Module/Settings/Channels.php:52 src/Module/Settings/Channels.php:127 +#: src/Module/Settings/Delegation.php:76 src/Module/Settings/Display.php:76 +#: src/Module/Settings/Display.php:183 +#: src/Module/Settings/Profile/Photo/Crop.php:151 +#: src/Module/Settings/Profile/Photo/Index.php:96 +#: src/Module/Settings/RemoveMe.php:105 src/Module/Settings/UserExport.php:64 +#: src/Module/Settings/UserExport.php:100 +#: src/Module/Settings/UserExport.php:199 +#: src/Module/Settings/UserExport.php:219 +#: src/Module/Settings/UserExport.php:284 src/Module/User/Delegation.php:140 +#: src/Module/User/Import.php:71 src/Module/User/Import.php:78 msgid "Permission denied." msgstr "Permesso negato." -#: mod/lostpass.php:40 +#: mod/lostpass.php:28 msgid "No valid account found." msgstr "Nessun account valido trovato." -#: mod/lostpass.php:52 +#: mod/lostpass.php:40 msgid "Password reset request issued. Check your email." msgstr "La richiesta per reimpostare la password è stata inviata. Controlla la tua email." -#: mod/lostpass.php:58 +#: mod/lostpass.php:46 #, php-format msgid "" "\n" @@ -114,7 +113,7 @@ msgid "" "\t\tissued this request." msgstr "\nGentile %1$s,\n\tabbiamo ricevuto su \"%2$s\" una richiesta di resettare la password del tuo account. Per confermare questa richiesta, selezionate il collegamento di conferma qui sotto o incollatelo nella barra indirizzo del vostro browser.\n\nSe NON hai richiesto questa modifica, NON selezionare il collegamento e ignora o cancella questa email.\n\nLa tua password non verrà modificata a meno che non possiamo verificare che tu abbia effettivamente richiesto la modifica." -#: mod/lostpass.php:69 +#: mod/lostpass.php:57 #, php-format msgid "" "\n" @@ -131,70 +130,70 @@ msgid "" "\t\tLogin Name:\t%3$s" msgstr "\nSegui questo collegamento per verificare la tua identità:\n\n%1$s\n\nRiceverai in un successivo messaggio la nuova password.\nPotrai cambiarla dalla pagina \"Impostazioni\" del tuo account dopo esserti autenticato.\n\nI dettagli del tuo account sono:\n\tIndirizzo del sito: %2$s\n\tNome utente: %3$s" -#: mod/lostpass.php:84 +#: mod/lostpass.php:72 #, php-format msgid "Password reset requested at %s" msgstr "Richiesta reimpostazione password su %s" -#: mod/lostpass.php:100 +#: mod/lostpass.php:88 msgid "" "Request could not be verified. (You may have previously submitted it.) " "Password reset failed." msgstr "La richiesta non può essere verificata. (Puoi averla già richiesta precedentemente). Reimpostazione password fallita." -#: mod/lostpass.php:113 +#: mod/lostpass.php:101 msgid "Request has expired, please make a new one." msgstr "La richiesta è scaduta, si prega di crearne una nuova." -#: mod/lostpass.php:128 +#: mod/lostpass.php:116 msgid "Forgot your Password?" msgstr "Hai dimenticato la password?" -#: mod/lostpass.php:129 +#: mod/lostpass.php:117 msgid "" "Enter your email address and submit to have your password reset. Then check " "your email for further instructions." msgstr "Inserisci il tuo indirizzo email per reimpostare la password." -#: mod/lostpass.php:130 src/Module/Security/Login.php:160 +#: mod/lostpass.php:118 src/Module/Security/Login.php:150 msgid "Nickname or Email: " msgstr "Nome utente o email: " -#: mod/lostpass.php:131 +#: mod/lostpass.php:119 msgid "Reset" msgstr "Reimposta" -#: mod/lostpass.php:146 src/Module/Security/Login.php:172 +#: mod/lostpass.php:134 src/Module/Security/Login.php:162 msgid "Password Reset" msgstr "Reimpostazione password" -#: mod/lostpass.php:147 +#: mod/lostpass.php:135 msgid "Your password has been reset as requested." msgstr "La tua password è stata reimpostata come richiesto." -#: mod/lostpass.php:148 +#: mod/lostpass.php:136 msgid "Your new password is" msgstr "La tua nuova password è" -#: mod/lostpass.php:149 +#: mod/lostpass.php:137 msgid "Save or copy your new password - and then" msgstr "Salva o copia la tua nuova password, quindi" -#: mod/lostpass.php:150 +#: mod/lostpass.php:138 msgid "click here to login" msgstr "clicca qui per entrare" -#: mod/lostpass.php:151 +#: mod/lostpass.php:139 msgid "" "Your password may be changed from the Settings page after " "successful login." msgstr "Puoi cambiare la tua password dalla pagina Impostazioni dopo aver effettuato l'accesso." -#: mod/lostpass.php:155 +#: mod/lostpass.php:143 msgid "Your password has been reset." msgstr "La tua password è stata reimpostata." -#: mod/lostpass.php:158 +#: mod/lostpass.php:146 #, php-format msgid "" "\n" @@ -205,7 +204,7 @@ msgid "" "\t\t" msgstr "\nGentile %1$s,\n\tLa tua password è stata modificata come richiesto.\nSalva questa password, o sostituiscila immediatamente con qualcosa che puoi ricordare." -#: mod/lostpass.php:164 +#: mod/lostpass.php:152 #, php-format msgid "" "\n" @@ -219,161 +218,161 @@ msgid "" "\t\t" msgstr "\nI dettagli del tuo account sono:\n\n\tIndirizzo del sito: %1$s\n\tNome utente: %2$s\n\tPassword: %3$s\n\nPuoi cambiare questa password dalla pagina \"Impostazioni\" del tuo account dopo esserti autenticato." -#: mod/lostpass.php:176 +#: mod/lostpass.php:164 #, php-format msgid "Your password has been changed at %s" msgstr "La tua password presso %s è stata cambiata" -#: mod/message.php:45 mod/message.php:127 src/Content/Nav.php:321 +#: mod/message.php:33 mod/message.php:115 src/Content/Nav.php:307 msgid "New Message" msgstr "Nuovo messaggio" -#: mod/message.php:81 +#: mod/message.php:69 msgid "No recipient selected." msgstr "Nessun destinatario selezionato." -#: mod/message.php:86 +#: mod/message.php:74 msgid "Unable to locate contact information." msgstr "Impossibile trovare le informazioni del contatto." -#: mod/message.php:90 +#: mod/message.php:78 msgid "Message could not be sent." msgstr "Il messaggio non può essere inviato." -#: mod/message.php:94 +#: mod/message.php:82 msgid "Message collection failure." msgstr "Errore recuperando il messaggio." -#: mod/message.php:121 src/Module/Notifications/Introductions.php:135 -#: src/Module/Notifications/Introductions.php:170 -#: src/Module/Notifications/Notification.php:85 +#: mod/message.php:109 src/Module/Notifications/Introductions.php:127 +#: src/Module/Notifications/Introductions.php:162 +#: src/Module/Notifications/Notification.php:71 msgid "Discard" msgstr "Scarta" -#: mod/message.php:134 src/Content/Nav.php:318 view/theme/frio/theme.php:244 +#: mod/message.php:122 src/Content/Nav.php:304 view/theme/frio/theme.php:232 msgid "Messages" msgstr "Messaggi" -#: mod/message.php:147 +#: mod/message.php:135 msgid "Conversation not found." msgstr "Conversazione non trovata." -#: mod/message.php:152 +#: mod/message.php:140 msgid "Message was not deleted." msgstr "Il messaggio non è stato eliminato." -#: mod/message.php:167 +#: mod/message.php:155 msgid "Conversation was not removed." msgstr "La conversazione non è stata rimossa." -#: mod/message.php:180 mod/message.php:285 +#: mod/message.php:168 mod/message.php:273 msgid "Please enter a link URL:" msgstr "Inserisci un collegamento URL:" -#: mod/message.php:189 +#: mod/message.php:177 msgid "Send Private Message" msgstr "Invia un messaggio privato" -#: mod/message.php:190 mod/message.php:345 -#: src/Module/Privacy/PermissionTooltip.php:132 +#: mod/message.php:178 mod/message.php:333 +#: src/Module/Privacy/PermissionTooltip.php:118 msgid "To:" msgstr "A:" -#: mod/message.php:191 mod/message.php:346 +#: mod/message.php:179 mod/message.php:334 msgid "Subject:" msgstr "Oggetto:" -#: mod/message.php:195 mod/message.php:349 src/Module/Invite.php:171 +#: mod/message.php:183 mod/message.php:337 src/Module/Invite.php:157 msgid "Your message:" msgstr "Il tuo messaggio:" -#: mod/message.php:198 mod/message.php:353 src/Content/Conversation.php:369 -#: src/Module/Post/Edit.php:131 +#: mod/message.php:186 mod/message.php:341 src/Content/Conversation.php:355 +#: src/Module/Post/Edit.php:117 msgid "Upload photo" msgstr "Carica foto" -#: mod/message.php:199 mod/message.php:354 src/Module/Post/Edit.php:135 +#: mod/message.php:187 mod/message.php:342 src/Module/Post/Edit.php:121 msgid "Insert web link" msgstr "Inserisci collegamento web" -#: mod/message.php:200 mod/message.php:356 mod/photos.php:1290 -#: src/Content/Conversation.php:400 src/Content/Conversation.php:1576 -#: src/Module/Item/Compose.php:213 src/Module/Post/Edit.php:145 -#: src/Object/Post.php:618 +#: mod/message.php:188 mod/message.php:344 mod/photos.php:1255 +#: src/Content/Conversation.php:386 src/Content/Conversation.php:1562 +#: src/Module/Item/Compose.php:199 src/Module/Post/Edit.php:131 +#: src/Object/Post.php:604 msgid "Please wait" msgstr "Attendi" -#: mod/message.php:201 mod/message.php:355 mod/photos.php:693 -#: mod/photos.php:813 mod/photos.php:1090 mod/photos.php:1131 -#: mod/photos.php:1187 mod/photos.php:1267 -#: src/Module/Calendar/Event/Form.php:250 src/Module/Contact/Advanced.php:132 +#: mod/message.php:189 mod/message.php:343 mod/photos.php:658 +#: mod/photos.php:778 mod/photos.php:1055 mod/photos.php:1096 +#: mod/photos.php:1152 mod/photos.php:1232 +#: src/Module/Calendar/Event/Form.php:236 src/Module/Contact/Advanced.php:118 #: src/Module/Contact/Profile.php:370 -#: src/Module/Debug/ActivityPubConversion.php:140 -#: 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 -#: src/Module/Invite.php:178 src/Module/Item/Compose.php:196 -#: src/Module/Moderation/Item/Source.php:79 -#: src/Module/Moderation/Report/Create.php:168 -#: src/Module/Moderation/Report/Create.php:183 -#: src/Module/Moderation/Report/Create.php:211 -#: src/Module/Moderation/Report/Create.php:263 -#: src/Module/Profile/Profile.php: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:1159 view/theme/duepuntozero/config.php:85 -#: view/theme/frio/config.php:150 view/theme/quattro/config.php:87 -#: view/theme/vier/config.php:135 +#: src/Module/Debug/ActivityPubConversion.php:132 +#: src/Module/Debug/Babel.php:307 src/Module/Debug/Localtime.php:50 +#: src/Module/Debug/Probe.php:40 src/Module/Debug/WebFinger.php:37 +#: src/Module/FriendSuggest.php:131 src/Module/Install.php:220 +#: src/Module/Install.php:260 src/Module/Install.php:295 +#: src/Module/Invite.php:164 src/Module/Item/Compose.php:182 +#: src/Module/Moderation/Item/Source.php:71 +#: src/Module/Moderation/Report/Create.php:154 +#: src/Module/Moderation/Report/Create.php:169 +#: src/Module/Moderation/Report/Create.php:197 +#: src/Module/Moderation/Report/Create.php:249 +#: src/Module/Profile/Profile.php:262 +#: src/Module/Settings/Profile/Index.php:248 +#: src/Module/Settings/Server/Action.php:65 src/Module/User/Delegation.php:175 +#: src/Object/Post.php:1145 view/theme/duepuntozero/config.php:73 +#: view/theme/frio/config.php:138 view/theme/quattro/config.php:75 +#: view/theme/vier/config.php:123 msgid "Submit" msgstr "Invia" -#: mod/message.php:222 +#: mod/message.php:210 msgid "No messages." msgstr "Nessun messaggio." -#: mod/message.php:278 +#: mod/message.php:266 msgid "Message not available." msgstr "Messaggio non disponibile." -#: mod/message.php:322 +#: mod/message.php:310 msgid "Delete message" msgstr "Elimina il messaggio" -#: mod/message.php:324 mod/message.php:453 +#: mod/message.php:312 mod/message.php:441 msgid "D, d M Y - g:i A" msgstr "D d M Y - G:i" -#: mod/message.php:339 mod/message.php:450 +#: mod/message.php:327 mod/message.php:438 msgid "Delete conversation" msgstr "Elimina la conversazione" -#: mod/message.php:341 +#: mod/message.php:329 msgid "" "No secure communications available. You may be able to " "respond from the sender's profile page." msgstr "Nessuna comunicazione sicura disponibile, Potresti essere in grado di rispondere dalla pagina del profilo del mittente." -#: mod/message.php:344 +#: mod/message.php:332 msgid "Send Reply" msgstr "Invia la risposta" -#: mod/message.php:424 +#: mod/message.php:412 #, php-format msgid "Unknown sender - %s" msgstr "Mittente sconosciuto - %s" -#: mod/message.php:426 +#: mod/message.php:414 #, php-format msgid "You and %s" msgstr "Tu e %s" -#: mod/message.php:428 +#: mod/message.php:416 #, php-format msgid "%s and You" msgstr "%s e Tu" -#: mod/message.php:456 +#: mod/message.php:444 #, php-format msgid "%d message" msgid_plural "%d messages" @@ -381,792 +380,799 @@ msgstr[0] "%d messaggio" msgstr[1] "%d messaggi" msgstr[2] "%d messaggi" -#: mod/notes.php:52 src/Module/BaseProfile.php:108 +#: mod/notes.php:40 src/Module/BaseProfile.php:94 msgid "Personal Notes" msgstr "Note personali" -#: mod/notes.php:56 +#: mod/notes.php:44 msgid "Personal notes are visible only by yourself." msgstr "Le note personali sono visibili solo da te." -#: mod/notes.php:57 src/Content/Text/HTML.php:861 -#: src/Module/Admin/Storage.php:142 src/Module/Filer/SaveTag.php:74 -#: src/Module/Post/Edit.php:129 src/Module/Settings/Channels.php:229 +#: mod/notes.php:45 src/Content/Text/HTML.php:847 +#: src/Module/Admin/Storage.php:128 src/Module/Filer/SaveTag.php:60 +#: src/Module/Post/Edit.php:115 src/Module/Settings/Channels.php:215 msgid "Save" msgstr "Salva" -#: mod/photos.php:65 mod/photos.php:128 mod/photos.php:572 -#: src/Model/Event.php:512 src/Model/Profile.php:234 -#: src/Module/Calendar/Export.php:74 src/Module/Calendar/Show.php:74 -#: src/Module/DFRN/Poll.php:43 src/Module/Feed.php:64 src/Module/HCard.php:51 -#: src/Module/Profile/Common.php:62 src/Module/Profile/Common.php:71 -#: src/Module/Profile/Contacts.php:64 src/Module/Profile/Contacts.php:72 -#: src/Module/Profile/Conversations.php:91 src/Module/Profile/Media.php:56 -#: src/Module/Profile/Photos.php:83 src/Module/Profile/RemoteFollow.php:71 -#: src/Module/Register.php:268 +#: mod/photos.php:54 mod/photos.php:117 mod/photos.php:537 +#: src/Model/Event.php:498 src/Model/Profile.php:213 +#: src/Module/Calendar/Export.php:60 src/Module/Calendar/Show.php:60 +#: src/Module/Feed.php:52 src/Module/HCard.php:37 +#: src/Module/Profile/Common.php:48 src/Module/Profile/Common.php:57 +#: src/Module/Profile/Contacts.php:50 src/Module/Profile/Contacts.php:58 +#: src/Module/Profile/Conversations.php:77 src/Module/Profile/Media.php:42 +#: src/Module/Profile/Photos.php:69 src/Module/Profile/RemoteFollow.php:57 +#: src/Module/Register.php:260 msgid "User not found." msgstr "Utente non trovato." -#: mod/photos.php:102 src/Module/BaseProfile.php:68 -#: src/Module/Profile/Photos.php:375 +#: mod/photos.php:91 src/Module/BaseProfile.php:54 +#: src/Module/Profile/Photos.php:361 msgid "Photo Albums" msgstr "Album foto" -#: mod/photos.php:103 src/Module/Profile/Photos.php:376 -#: src/Module/Profile/Photos.php:396 +#: mod/photos.php:92 src/Module/Profile/Photos.php:362 +#: src/Module/Profile/Photos.php:382 msgid "Recent Photos" msgstr "Foto recenti" -#: mod/photos.php:105 mod/photos.php:861 src/Module/Profile/Photos.php:378 -#: src/Module/Profile/Photos.php:398 +#: mod/photos.php:94 mod/photos.php:826 src/Module/Profile/Photos.php:364 +#: src/Module/Profile/Photos.php:384 msgid "Upload New Photos" msgstr "Carica nuove foto" -#: mod/photos.php:117 src/Module/BaseSettings.php:72 -#: src/Module/Profile/Photos.php:359 +#: mod/photos.php:106 src/Module/BaseSettings.php:58 +#: src/Module/Profile/Photos.php:345 msgid "everybody" msgstr "tutti" -#: mod/photos.php:153 +#: mod/photos.php:142 msgid "Contact information unavailable" msgstr "I dati di questo contatto non sono disponibili" -#: mod/photos.php:182 +#: mod/photos.php:171 msgid "Album not found." msgstr "Album non trovato." -#: mod/photos.php:238 +#: mod/photos.php:227 msgid "Album successfully deleted" msgstr "Album eliminato con successo" -#: mod/photos.php:240 +#: mod/photos.php:229 msgid "Album was empty." msgstr "L'album era vuoto." -#: mod/photos.php:271 +#: mod/photos.php:260 msgid "Failed to delete the photo." msgstr "Eliminazione della foto non riuscita." -#: mod/photos.php:539 +#: mod/photos.php:504 msgid "a photo" msgstr "una foto" -#: mod/photos.php:539 +#: mod/photos.php:504 #, 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:576 src/Module/Conversation/Community.php:160 -#: src/Module/Directory.php:48 src/Module/Profile/Photos.php:293 -#: src/Module/Search/Index.php:65 +#: mod/photos.php:541 src/Module/Conversation/Community.php:148 +#: src/Module/Directory.php:35 src/Module/Profile/Photos.php:279 +#: src/Module/Search/Index.php:51 msgid "Public access denied." msgstr "Accesso negato." -#: mod/photos.php:581 +#: mod/photos.php:546 msgid "No photos selected" msgstr "Nessuna foto selezionata" -#: mod/photos.php:709 +#: mod/photos.php:674 #, php-format msgid "The maximum accepted image size is %s" msgstr "" -#: mod/photos.php:716 +#: mod/photos.php:681 msgid "Upload Photos" msgstr "Carica foto" -#: mod/photos.php:720 mod/photos.php:809 +#: mod/photos.php:685 mod/photos.php:774 msgid "New album name: " msgstr "Nome nuovo album: " -#: mod/photos.php:721 +#: mod/photos.php:686 msgid "or select existing album:" msgstr "o seleziona un album esistente:" -#: mod/photos.php:722 +#: mod/photos.php:687 msgid "Do not show a status post for this upload" msgstr "Non creare un messaggio per questo upload" -#: mod/photos.php:725 mod/photos.php:1086 src/Content/Conversation.php:402 -#: src/Module/Calendar/Event/Form.php:253 src/Module/Post/Edit.php:183 +#: mod/photos.php:690 mod/photos.php:1051 src/Content/Conversation.php:388 +#: src/Module/Calendar/Event/Form.php:239 src/Module/Post/Edit.php:169 msgid "Permissions" msgstr "Permessi" -#: mod/photos.php:790 +#: mod/photos.php:755 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:791 mod/photos.php:814 +#: mod/photos.php:756 mod/photos.php:779 msgid "Delete Album" msgstr "Rimuovi album" -#: mod/photos.php:792 mod/photos.php:892 src/Content/Conversation.php:417 -#: 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 -#: src/Module/Media/Photo/Browser.php:88 src/Module/Post/Edit.php:167 -#: src/Module/Post/Tag/Remove.php:109 src/Module/Profile/RemoteFollow.php:134 -#: src/Module/Security/TwoFactor/SignOut.php:125 +#: mod/photos.php:757 mod/photos.php:857 src/Content/Conversation.php:403 +#: src/Module/Contact/Follow.php:154 src/Module/Contact/Revoke.php:92 +#: src/Module/Contact/Unfollow.php:112 +#: src/Module/Media/Attachment/Browser.php:63 +#: src/Module/Media/Photo/Browser.php:74 src/Module/Post/Edit.php:153 +#: src/Module/Post/Tag/Remove.php:95 src/Module/Profile/RemoteFollow.php:120 +#: src/Module/Security/TwoFactor/SignOut.php:111 msgid "Cancel" msgstr "Annulla" -#: mod/photos.php:818 +#: mod/photos.php:783 msgid "Edit Album" msgstr "Modifica album" -#: mod/photos.php:819 +#: mod/photos.php:784 msgid "Drop Album" msgstr "Elimina Album" -#: mod/photos.php:823 +#: mod/photos.php:788 msgid "Show Newest First" msgstr "Mostra nuove foto per prime" -#: mod/photos.php:825 +#: mod/photos.php:790 msgid "Show Oldest First" msgstr "Mostra vecchie foto per prime" -#: mod/photos.php:846 src/Module/Profile/Photos.php:346 +#: mod/photos.php:811 src/Module/Profile/Photos.php:332 msgid "View Photo" msgstr "Vedi foto" -#: mod/photos.php:878 +#: mod/photos.php:843 msgid "Permission denied. Access to this item may be restricted." msgstr "Permesso negato. L'accesso a questo elemento può essere limitato." -#: mod/photos.php:880 +#: mod/photos.php:845 msgid "Photo not available" msgstr "Foto non disponibile" -#: mod/photos.php:890 +#: mod/photos.php:855 msgid "Do you really want to delete this photo?" msgstr "Vuoi veramente cancellare questa foto?" -#: mod/photos.php:891 mod/photos.php:1091 +#: mod/photos.php:856 mod/photos.php:1056 msgid "Delete Photo" msgstr "Rimuovi foto" -#: mod/photos.php:989 +#: mod/photos.php:954 msgid "View photo" msgstr "Vedi foto" -#: mod/photos.php:991 +#: mod/photos.php:956 msgid "Edit photo" msgstr "Modifica foto" -#: mod/photos.php:992 +#: mod/photos.php:957 msgid "Delete photo" msgstr "Elimina foto" -#: mod/photos.php:993 +#: mod/photos.php:958 msgid "Use as profile photo" msgstr "Usa come foto del profilo" -#: mod/photos.php:1000 +#: mod/photos.php:965 msgid "Private Photo" msgstr "Foto privata" -#: mod/photos.php:1006 +#: mod/photos.php:971 msgid "View Full Size" msgstr "Vedi dimensione intera" -#: mod/photos.php:1059 +#: mod/photos.php:1024 msgid "Tags: " msgstr "Tag: " -#: mod/photos.php:1062 +#: mod/photos.php:1027 msgid "[Select tags to remove]" msgstr "[Seleziona tag da rimuovere]" -#: mod/photos.php:1077 +#: mod/photos.php:1042 msgid "New album name" msgstr "Nuovo nome dell'album" -#: mod/photos.php:1078 +#: mod/photos.php:1043 msgid "Caption" msgstr "Titolo" -#: mod/photos.php:1079 +#: mod/photos.php:1044 msgid "Add a Tag" msgstr "Aggiungi tag" -#: mod/photos.php:1079 +#: mod/photos.php:1044 msgid "" "Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping" msgstr "Esempio: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping" -#: mod/photos.php:1080 +#: mod/photos.php:1045 msgid "Do not rotate" msgstr "Non ruotare" -#: mod/photos.php:1081 +#: mod/photos.php:1046 msgid "Rotate CW (right)" msgstr "Ruota a destra" -#: mod/photos.php:1082 +#: mod/photos.php:1047 msgid "Rotate CCW (left)" msgstr "Ruota a sinistra" -#: mod/photos.php:1128 mod/photos.php:1184 mod/photos.php:1264 -#: src/Module/Contact.php:618 src/Module/Item/Compose.php:195 -#: src/Object/Post.php:1156 +#: mod/photos.php:1093 mod/photos.php:1149 mod/photos.php:1229 +#: src/Module/Contact.php:600 src/Module/Item/Compose.php:181 +#: src/Object/Post.php:1142 msgid "This is you" msgstr "Questo sei tu" -#: mod/photos.php:1130 mod/photos.php:1186 mod/photos.php:1266 -#: src/Module/Moderation/Reports.php:110 src/Object/Post.php:612 -#: src/Object/Post.php:1158 +#: mod/photos.php:1095 mod/photos.php:1151 mod/photos.php:1231 +#: src/Module/Moderation/Reports.php:102 src/Object/Post.php:598 +#: src/Object/Post.php:1144 msgid "Comment" msgstr "Commento" -#: mod/photos.php:1132 mod/photos.php:1188 mod/photos.php:1268 -#: src/Content/Conversation.php:414 src/Module/Calendar/Event/Form.php:248 -#: src/Module/Item/Compose.php:208 src/Module/Post/Edit.php:165 -#: src/Object/Post.php:1172 +#: mod/photos.php:1097 mod/photos.php:1153 mod/photos.php:1233 +#: src/Content/Conversation.php:400 src/Module/Calendar/Event/Form.php:234 +#: src/Module/Item/Compose.php:194 src/Module/Post/Edit.php:151 +#: src/Object/Post.php:1158 msgid "Preview" msgstr "Anteprima" -#: mod/photos.php:1133 src/Content/Conversation.php:368 -#: src/Module/Post/Edit.php:130 src/Object/Post.php:1160 +#: mod/photos.php:1098 src/Content/Conversation.php:354 +#: src/Module/Post/Edit.php:116 src/Object/Post.php:1146 msgid "Loading..." msgstr "Caricamento..." -#: mod/photos.php:1225 src/Content/Conversation.php:1498 -#: src/Object/Post.php:274 +#: mod/photos.php:1190 src/Content/Conversation.php:1484 +#: src/Object/Post.php:260 msgid "Select" msgstr "Seleziona" -#: mod/photos.php:1226 src/Content/Conversation.php:1499 -#: src/Module/Moderation/Users/Active.php:136 -#: src/Module/Moderation/Users/Blocked.php:136 -#: src/Module/Moderation/Users/Index.php:151 -#: src/Module/Settings/Connectors.php:244 -#: src/Module/Settings/Server/Index.php:109 +#: mod/photos.php:1191 src/Content/Conversation.php:1485 +#: src/Module/Moderation/Users/Active.php:122 +#: src/Module/Moderation/Users/Blocked.php:122 +#: src/Module/Moderation/Users/Index.php:137 +#: src/Module/Settings/Connectors.php:233 +#: src/Module/Settings/Server/Index.php:95 msgid "Delete" msgstr "Rimuovi" -#: mod/photos.php:1287 src/Object/Post.php:440 +#: mod/photos.php:1252 src/Object/Post.php:426 msgid "Like" msgstr "Mi Piace" -#: mod/photos.php:1288 src/Object/Post.php:440 +#: mod/photos.php:1253 src/Object/Post.php:426 msgid "I like this (toggle)" msgstr "Mi piace (clic per cambiare)" -#: mod/photos.php:1289 src/Object/Post.php:441 +#: mod/photos.php:1254 src/Object/Post.php:427 msgid "Dislike" msgstr "Non Mi Piace" -#: mod/photos.php:1291 src/Object/Post.php:441 +#: mod/photos.php:1256 src/Object/Post.php:427 msgid "I don't like this (toggle)" msgstr "Non mi piace (clic per cambiare)" -#: mod/photos.php:1313 +#: mod/photos.php:1278 msgid "Map" msgstr "Mappa" -#: src/App.php:438 +#: src/App.php:432 msgid "No system theme config value set." msgstr "Nessun tema di sistema impostato." -#: src/App.php:546 +#: src/App.php:540 msgid "Apologies but the website is unavailable at the moment." msgstr "Ci scusiamo, il sito non è disponibile al momento." -#: src/App/Page.php:250 +#: src/App/Page.php:236 msgid "Delete this item?" msgstr "Cancellare questo elemento?" -#: src/App/Page.php:251 +#: src/App/Page.php:237 msgid "" "Block this author? They won't be able to follow you nor see your public " "posts, and you won't be able to see their posts and their notifications." msgstr "Bloccare questo autore? Non saranno in grado di seguirti e nemmeno di vedere i tuoi post pubblici, e tu non sarai in grado di vedere i loro messaggi e le loro notifiche." -#: src/App/Page.php:252 +#: src/App/Page.php:238 msgid "" "Ignore this author? You won't be able to see their posts and their " "notifications." msgstr "" -#: src/App/Page.php:253 +#: src/App/Page.php:239 msgid "Collapse this author's posts?" msgstr "" -#: src/App/Page.php:254 +#: src/App/Page.php:240 msgid "Ignore this author's server?" msgstr "" -#: src/App/Page.php:255 src/Module/Settings/Server/Action.php:61 -#: src/Module/Settings/Server/Index.php:108 +#: src/App/Page.php:241 src/Module/Settings/Server/Action.php:47 +#: src/Module/Settings/Server/Index.php:94 msgid "" "You won't see any content from this server including reshares in your " "Network page, the community pages and individual conversations." msgstr "" -#: src/App/Page.php:257 +#: src/App/Page.php:243 msgid "Like not successful" msgstr "" -#: src/App/Page.php:258 +#: src/App/Page.php:244 msgid "Dislike not successful" msgstr "" -#: src/App/Page.php:259 +#: src/App/Page.php:245 msgid "Sharing not successful" msgstr "" -#: src/App/Page.php:260 +#: src/App/Page.php:246 msgid "Attendance unsuccessful" msgstr "" -#: src/App/Page.php:261 +#: src/App/Page.php:247 msgid "Backend error" msgstr "" -#: src/App/Page.php:262 +#: src/App/Page.php:248 msgid "Network error" msgstr "" -#: src/App/Page.php:265 +#: src/App/Page.php:251 msgid "Drop files here to upload" msgstr "" -#: src/App/Page.php:266 +#: src/App/Page.php:252 msgid "Your browser does not support drag and drop file uploads." msgstr "" -#: src/App/Page.php:267 +#: src/App/Page.php:253 msgid "" "Please use the fallback form below to upload your files like in the olden " "days." msgstr "" -#: src/App/Page.php:268 +#: src/App/Page.php:254 msgid "File is too big ({{filesize}}MiB). Max filesize: {{maxFilesize}}MiB." msgstr "" -#: src/App/Page.php:269 +#: src/App/Page.php:255 msgid "You can't upload files of this type." msgstr "" -#: src/App/Page.php:270 +#: src/App/Page.php:256 msgid "Server responded with {{statusCode}} code." msgstr "" -#: src/App/Page.php:271 +#: src/App/Page.php:257 msgid "Cancel upload" msgstr "" -#: src/App/Page.php:272 +#: src/App/Page.php:258 msgid "Upload canceled." msgstr "" -#: src/App/Page.php:273 +#: src/App/Page.php:259 msgid "Are you sure you want to cancel this upload?" msgstr "" -#: src/App/Page.php:274 +#: src/App/Page.php:260 msgid "Remove file" msgstr "" -#: src/App/Page.php:275 +#: src/App/Page.php:261 msgid "You can't upload any more files." msgstr "" -#: src/App/Page.php:353 +#: src/App/Page.php:339 msgid "toggle mobile" msgstr "commuta tema mobile" -#: src/App/Router.php:309 +#: src/App/Router.php:295 #, php-format msgid "Method not allowed for this module. Allowed method(s): %s" msgstr "Metodo non consentito per questo modulo. Metodo(i) consentiti: %s" -#: src/App/Router.php:311 src/Module/HTTPException/PageNotFound.php:49 +#: src/App/Router.php:297 src/Module/HTTPException/PageNotFound.php:35 +#: src/Module/Stats.php:49 msgid "Page not found." msgstr "Pagina non trovata." -#: src/App/Router.php:323 +#: src/App/Router.php:309 msgid "You must be logged in to use addons. " msgstr "Devi aver effettuato il login per usare i componenti aggiuntivi." -#: src/BaseModule.php:407 +#: src/BaseModule.php:393 msgid "" "The form security token was not correct. This probably happened because the " "form has been opened for too long (>3 hours) before submitting it." msgstr "Il token di sicurezza del modulo non era corretto. Probabilmente il modulo è rimasto aperto troppo a lungo (>3 ore) prima di inviarlo." -#: src/BaseModule.php:434 +#: src/BaseModule.php:420 msgid "All contacts" msgstr "Tutti i contatti" -#: src/BaseModule.php:439 src/Content/Conversation/Factory/Channel.php:46 -#: src/Content/Widget.php:240 src/Core/ACL.php:195 src/Module/Contact.php:414 -#: src/Module/Privacy/PermissionTooltip.php:164 -#: src/Module/Privacy/PermissionTooltip.php:186 -#: src/Module/Settings/Channels.php:160 +#: src/BaseModule.php:425 src/Content/Conversation/Factory/Channel.php:32 +#: src/Content/Widget.php:218 src/Core/ACL.php:181 src/Module/Contact.php:395 +#: src/Module/Privacy/PermissionTooltip.php:150 +#: src/Module/Privacy/PermissionTooltip.php:172 +#: src/Module/Settings/Channels.php:146 msgid "Followers" msgstr "Seguaci" -#: src/BaseModule.php:444 src/Content/Widget.php:241 -#: src/Module/Contact.php:417 src/Module/Settings/Channels.php:159 +#: src/BaseModule.php:430 src/Content/Widget.php:219 +#: src/Module/Contact.php:398 src/Module/Settings/Channels.php:145 msgid "Following" msgstr "Seguendo" -#: src/BaseModule.php:449 src/Content/Widget.php:242 -#: src/Module/Contact.php:420 +#: src/BaseModule.php:435 src/Content/Widget.php:220 +#: src/Module/Contact.php:401 msgid "Mutual friends" msgstr "" -#: src/BaseModule.php:457 +#: src/BaseModule.php:443 msgid "Common" msgstr "Comune" -#: src/Console/Addon.php:175 src/Console/Addon.php:199 +#: src/Console/Addon.php:161 src/Console/Addon.php:185 msgid "Addon not found" msgstr "Componente aggiuntivo non trovato" -#: src/Console/Addon.php:179 +#: src/Console/Addon.php:165 msgid "Addon already enabled" msgstr "Componente aggiuntivo già abilitato" -#: src/Console/Addon.php:203 +#: src/Console/Addon.php:189 msgid "Addon already disabled" msgstr "Componente aggiuntivo già disabilitato" -#: src/Console/ArchiveContact.php:106 +#: src/Console/ArchiveContact.php:92 #, php-format msgid "Could not find any unarchived contact entry for this URL (%s)" msgstr "Impossibile trovare contatti non archiviati a questo URL (%s)" -#: src/Console/ArchiveContact.php:109 +#: src/Console/ArchiveContact.php:95 msgid "The contact entries have been archived" msgstr "Il contatto è stato archiviato" -#: src/Console/GlobalCommunityBlock.php:96 -#: src/Module/Moderation/Blocklist/Contact.php:65 +#: src/Console/ClearAvatarCache.php:73 +msgid "" +"The avatar cache needs to be disabled in local.config.php to use this " +"command." +msgstr "" + +#: src/Console/GlobalCommunityBlock.php:82 +#: src/Module/Moderation/Blocklist/Contact.php:51 #, php-format msgid "Could not find any contact entry for this URL (%s)" msgstr "Impossibile trovare contatti a questo URL (%s)" -#: src/Console/GlobalCommunityBlock.php:101 -#: src/Module/Moderation/Blocklist/Contact.php:82 +#: src/Console/GlobalCommunityBlock.php:87 +#: src/Module/Moderation/Blocklist/Contact.php:68 msgid "The contact has been blocked from the node" msgstr "Il contatto è stato bloccato dal nodo" -#: src/Console/MergeContacts.php:75 +#: src/Console/MergeContacts.php:61 #, php-format msgid "%d %s, %d duplicates." msgstr "" -#: src/Console/MergeContacts.php:78 +#: src/Console/MergeContacts.php:64 #, php-format msgid "uri-id is empty for contact %s." msgstr "" -#: src/Console/MergeContacts.php:91 +#: src/Console/MergeContacts.php:77 #, php-format msgid "No valid first contact found for uri-id %d." msgstr "" -#: src/Console/MergeContacts.php:102 +#: src/Console/MergeContacts.php:88 #, php-format msgid "Wrong duplicate found for uri-id %d in %d (url: %s != %s)." msgstr "" -#: src/Console/MergeContacts.php:106 +#: src/Console/MergeContacts.php:92 #, php-format msgid "Wrong duplicate found for uri-id %d in %d (nurl: %s != %s)." msgstr "" -#: src/Console/MergeContacts.php:142 +#: src/Console/MergeContacts.php:128 #, php-format msgid "Deletion of id %d failed" msgstr "" -#: src/Console/MergeContacts.php:144 +#: src/Console/MergeContacts.php:130 #, php-format msgid "Deletion of id %d was successful" msgstr "" -#: src/Console/MergeContacts.php:150 +#: src/Console/MergeContacts.php:136 #, php-format msgid "Updating \"%s\" in \"%s\" from %d to %d" msgstr "" -#: src/Console/MergeContacts.php:152 +#: src/Console/MergeContacts.php:138 msgid " - found" msgstr "" -#: src/Console/MergeContacts.php:159 +#: src/Console/MergeContacts.php:145 msgid " - failed" msgstr "" -#: src/Console/MergeContacts.php:161 +#: src/Console/MergeContacts.php:147 msgid " - success" msgstr "" -#: src/Console/MergeContacts.php:165 +#: src/Console/MergeContacts.php:151 msgid " - deleted" msgstr "" -#: src/Console/MergeContacts.php:168 +#: src/Console/MergeContacts.php:154 msgid " - done" msgstr "" -#: src/Console/MoveToAvatarCache.php:91 +#: src/Console/MoveToAvatarCache.php:77 msgid "The avatar cache needs to be enabled to use this command." msgstr "" -#: src/Console/MoveToAvatarCache.php:109 +#: src/Console/MoveToAvatarCache.php:95 #, php-format msgid "no resource in photo %s" msgstr "" -#: src/Console/MoveToAvatarCache.php:137 +#: src/Console/MoveToAvatarCache.php:123 #, php-format msgid "no photo with id %s" msgstr "" -#: src/Console/MoveToAvatarCache.php:146 +#: src/Console/MoveToAvatarCache.php:132 #, php-format msgid "no image data for photo with id %s" msgstr "" -#: src/Console/MoveToAvatarCache.php:155 +#: src/Console/MoveToAvatarCache.php:141 #, php-format msgid "invalid image for id %s" msgstr "" -#: src/Console/MoveToAvatarCache.php:168 +#: src/Console/MoveToAvatarCache.php:154 #, php-format msgid "Quit on invalid photo %s" msgstr "" -#: src/Console/PostUpdate.php:87 +#: src/Console/PostUpdate.php:73 #, php-format msgid "Post update version number has been set to %s." msgstr "Il numero di versione post-aggiornamento è stato impostato a %s." -#: src/Console/PostUpdate.php:95 +#: src/Console/PostUpdate.php:81 msgid "Check for pending update actions." msgstr "Controlla le azioni di aggiornamento in sospeso." -#: src/Console/PostUpdate.php:97 +#: src/Console/PostUpdate.php:83 msgid "Done." msgstr "Fatto." -#: src/Console/PostUpdate.php:99 +#: src/Console/PostUpdate.php:85 msgid "Execute pending post updates." msgstr "Esegui le azioni post-aggiornamento in sospeso." -#: src/Console/PostUpdate.php:105 +#: src/Console/PostUpdate.php:91 msgid "All pending post updates are done." msgstr "Tutte le azioni post-aggiornamento sono state eseguite." -#: src/Console/User.php:158 src/Console/User.php:246 +#: src/Console/User.php:144 src/Console/User.php:232 msgid "Enter user nickname: " msgstr "Inserisci soprannome utente:" -#: src/Console/User.php:182 src/Model/User.php:824 -#: src/Module/Api/Twitter/ContactEndpoint.php:74 -#: src/Module/Moderation/Users/Active.php:71 -#: src/Module/Moderation/Users/Blocked.php:71 -#: src/Module/Moderation/Users/Index.php:78 -#: src/Module/Moderation/Users/Pending.php:67 +#: src/Console/User.php:168 src/Model/User.php:831 +#: src/Module/Api/Twitter/ContactEndpoint.php:60 +#: src/Module/Moderation/Users/Active.php:57 +#: src/Module/Moderation/Users/Blocked.php:57 +#: src/Module/Moderation/Users/Index.php:64 +#: src/Module/Moderation/Users/Pending.php:53 msgid "User not found" msgstr "Utente non trovato" -#: src/Console/User.php:202 +#: src/Console/User.php:188 msgid "Enter new password: " msgstr "Inserisci la nuova password:" -#: src/Console/User.php:210 src/Module/Security/PasswordTooLong.php:69 -#: src/Module/Settings/Account.php:75 +#: src/Console/User.php:196 src/Module/Security/PasswordTooLong.php:55 +#: src/Module/Settings/Account.php:61 msgid "Password update failed. Please try again." msgstr "Aggiornamento password fallito. Prova ancora." -#: src/Console/User.php:213 src/Module/Security/PasswordTooLong.php:72 -#: src/Module/Settings/Account.php:78 +#: src/Console/User.php:199 src/Module/Security/PasswordTooLong.php:58 +#: src/Module/Settings/Account.php:64 msgid "Password changed." msgstr "Password cambiata." -#: src/Console/User.php:238 +#: src/Console/User.php:224 msgid "Enter user name: " msgstr "Inserisci nome utente:" -#: src/Console/User.php:254 +#: src/Console/User.php:240 msgid "Enter user email address: " msgstr "Inserisci l'indirizzo email dell'utente:" -#: src/Console/User.php:262 +#: src/Console/User.php:248 msgid "Enter a language (optional): " msgstr "Inserisci lingua (facoltativo):" -#: src/Console/User.php:267 +#: src/Console/User.php:253 msgid "Enter URL of an image to use as avatar (optional): " msgstr "" -#: src/Console/User.php:292 +#: src/Console/User.php:278 msgid "User is not pending." msgstr "L'utente non è in sospeso." -#: src/Console/User.php:324 +#: src/Console/User.php:310 msgid "User has already been marked for deletion." msgstr "L'utente è già stato selezionato per l'eliminazione." -#: src/Console/User.php:329 +#: src/Console/User.php:315 #, php-format msgid "Type \"yes\" to delete %s" msgstr "Digita \"yes\" per eliminare %s" -#: src/Console/User.php:331 +#: src/Console/User.php:317 msgid "Deletion aborted." msgstr "Eliminazione interrotta." -#: src/Console/User.php:456 +#: src/Console/User.php:442 msgid "Enter category: " msgstr "Inserisci categoria:" -#: src/Console/User.php:466 +#: src/Console/User.php:452 msgid "Enter key: " msgstr "Inserisci chiave:" -#: src/Console/User.php:500 +#: src/Console/User.php:486 msgid "Enter value: " msgstr "Inserisci valore:" -#: src/Content/BoundariesPager.php:116 src/Content/Pager.php:171 +#: src/Content/BoundariesPager.php:102 src/Content/Pager.php:157 msgid "newer" msgstr "nuovi" -#: src/Content/BoundariesPager.php:124 src/Content/Pager.php:176 +#: src/Content/BoundariesPager.php:110 src/Content/Pager.php:162 msgid "older" msgstr "vecchi" -#: src/Content/ContactSelector.php:51 +#: src/Content/ContactSelector.php:37 msgid "Frequently" msgstr "Frequentemente" -#: src/Content/ContactSelector.php:52 +#: src/Content/ContactSelector.php:38 msgid "Hourly" msgstr "Ogni ora" -#: src/Content/ContactSelector.php:53 +#: src/Content/ContactSelector.php:39 msgid "Twice daily" msgstr "Due volte al dì" -#: src/Content/ContactSelector.php:54 +#: src/Content/ContactSelector.php:40 msgid "Daily" msgstr "Giornalmente" -#: src/Content/ContactSelector.php:55 +#: src/Content/ContactSelector.php:41 msgid "Weekly" msgstr "Settimanalmente" -#: src/Content/ContactSelector.php:56 +#: src/Content/ContactSelector.php:42 msgid "Monthly" msgstr "Mensilmente" -#: src/Content/ContactSelector.php:126 +#: src/Content/ContactSelector.php:112 msgid "DFRN" msgstr "DFRN" -#: src/Content/ContactSelector.php:127 +#: src/Content/ContactSelector.php:113 msgid "OStatus" msgstr "Ostatus" -#: src/Content/ContactSelector.php:128 +#: src/Content/ContactSelector.php:114 msgid "RSS/Atom" msgstr "RSS / Atom" -#: src/Content/ContactSelector.php:129 -#: src/Module/Moderation/Users/Active.php:126 -#: src/Module/Moderation/Users/Blocked.php:126 -#: src/Module/Moderation/Users/Create.php:72 -#: src/Module/Moderation/Users/Deleted.php:83 -#: src/Module/Moderation/Users/Index.php:140 -#: src/Module/Moderation/Users/Index.php:160 -#: src/Module/Moderation/Users/Pending.php:99 +#: src/Content/ContactSelector.php:115 +#: src/Module/Moderation/Users/Active.php:112 +#: src/Module/Moderation/Users/Blocked.php:112 +#: src/Module/Moderation/Users/Create.php:58 +#: src/Module/Moderation/Users/Deleted.php:69 +#: src/Module/Moderation/Users/Index.php:126 +#: src/Module/Moderation/Users/Index.php:146 +#: src/Module/Moderation/Users/Pending.php:85 msgid "Email" msgstr "Email" -#: src/Content/ContactSelector.php:130 src/Module/Debug/Babel.php:309 +#: src/Content/ContactSelector.php:116 src/Module/Debug/Babel.php:301 msgid "Diaspora" msgstr "Diaspora" -#: src/Content/ContactSelector.php:131 +#: src/Content/ContactSelector.php:117 msgid "Zot!" msgstr "Zot!" -#: src/Content/ContactSelector.php:132 +#: src/Content/ContactSelector.php:118 msgid "LinkedIn" msgstr "LinkedIn" -#: src/Content/ContactSelector.php:133 +#: src/Content/ContactSelector.php:119 msgid "XMPP/IM" msgstr "XMPP/IM" -#: src/Content/ContactSelector.php:134 +#: src/Content/ContactSelector.php:120 msgid "MySpace" msgstr "MySpace" -#: src/Content/ContactSelector.php:135 +#: src/Content/ContactSelector.php:121 msgid "Google+" msgstr "Google+" -#: src/Content/ContactSelector.php:136 +#: src/Content/ContactSelector.php:122 msgid "pump.io" msgstr "pump.io" -#: src/Content/ContactSelector.php:137 +#: src/Content/ContactSelector.php:123 msgid "Twitter" msgstr "Twitter" -#: src/Content/ContactSelector.php:138 +#: src/Content/ContactSelector.php:124 msgid "Discourse" msgstr "Discorso" -#: src/Content/ContactSelector.php:139 +#: src/Content/ContactSelector.php:125 msgid "Diaspora Connector" msgstr "Connettore Diaspora" -#: src/Content/ContactSelector.php:140 +#: src/Content/ContactSelector.php:126 msgid "GNU Social Connector" msgstr "Connettore GNU Social" -#: src/Content/ContactSelector.php:141 +#: src/Content/ContactSelector.php:127 msgid "ActivityPub" msgstr "ActivityPub" -#: src/Content/ContactSelector.php:142 +#: src/Content/ContactSelector.php:128 msgid "pnut" msgstr "pnut" -#: src/Content/ContactSelector.php:143 +#: src/Content/ContactSelector.php:129 msgid "Tumblr" msgstr "" -#: src/Content/ContactSelector.php:144 +#: src/Content/ContactSelector.php:130 msgid "Bluesky" msgstr "" -#: src/Content/ContactSelector.php:180 +#: src/Content/ContactSelector.php:166 #, php-format msgid "%s (via %s)" msgstr "%s (via %s)" -#: src/Content/Conversation.php:226 +#: src/Content/Conversation.php:212 msgid "and" msgstr "e" -#: src/Content/Conversation.php:229 +#: src/Content/Conversation.php:215 #, php-format msgid "and %d other people" msgstr "e altre %d persone" -#: src/Content/Conversation.php:235 +#: src/Content/Conversation.php:221 #, php-format msgid "%2$s likes this." msgid_plural "%2$s like this." @@ -1174,7 +1180,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: src/Content/Conversation.php:237 +#: src/Content/Conversation.php:223 #, php-format msgid "%2$s doesn't like this." msgid_plural "%2$s don't like this." @@ -1182,7 +1188,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: src/Content/Conversation.php:239 +#: src/Content/Conversation.php:225 #, php-format msgid "%2$s attends." msgid_plural "%2$s attend." @@ -1190,7 +1196,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: src/Content/Conversation.php:241 +#: src/Content/Conversation.php:227 #, php-format msgid "%2$s doesn't attend." msgid_plural "%2$s don't attend." @@ -1198,7 +1204,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: src/Content/Conversation.php:243 +#: src/Content/Conversation.php:229 #, php-format msgid "%2$s attends maybe." msgid_plural "%2$s attend maybe." @@ -1206,7 +1212,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: src/Content/Conversation.php:245 +#: src/Content/Conversation.php:231 #, php-format msgid "%2$s reshared this." msgid_plural "%2$s reshared this." @@ -1214,7 +1220,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: src/Content/Conversation.php:276 +#: src/Content/Conversation.php:262 #, php-format msgid " likes this" msgid_plural " like this" @@ -1222,7 +1228,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: src/Content/Conversation.php:279 +#: src/Content/Conversation.php:265 #, php-format msgid " doesn't like this" msgid_plural " don't like this" @@ -1230,7 +1236,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: src/Content/Conversation.php:282 +#: src/Content/Conversation.php:268 #, php-format msgid " attends" msgid_plural " attend" @@ -1238,7 +1244,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: src/Content/Conversation.php:285 +#: src/Content/Conversation.php:271 #, php-format msgid " doesn't attend" msgid_plural " don't attend" @@ -1246,7 +1252,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: src/Content/Conversation.php:288 +#: src/Content/Conversation.php:274 #, php-format msgid " attends maybe" msgid_plural " attend maybe" @@ -1254,7 +1260,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: src/Content/Conversation.php:291 +#: src/Content/Conversation.php:277 #, php-format msgid " reshared this" msgid_plural " reshared this" @@ -1262,1099 +1268,1099 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: src/Content/Conversation.php:337 +#: src/Content/Conversation.php:323 msgid "Visible to everybody" msgstr "Visibile a tutti" -#: src/Content/Conversation.php:338 src/Module/Item/Compose.php:207 -#: src/Object/Post.php:1171 +#: src/Content/Conversation.php:324 src/Module/Item/Compose.php:193 +#: src/Object/Post.php:1157 msgid "Please enter a image/video/audio/webpage URL:" msgstr "Inserisci l'indirizzo di una immagine, un video o una pagina web:" -#: src/Content/Conversation.php:339 +#: src/Content/Conversation.php:325 msgid "Tag term:" msgstr "Tag:" -#: src/Content/Conversation.php:340 src/Module/Filer/SaveTag.php:73 +#: src/Content/Conversation.php:326 src/Module/Filer/SaveTag.php:59 msgid "Save to Folder:" msgstr "Salva nella Cartella:" -#: src/Content/Conversation.php:341 +#: src/Content/Conversation.php:327 msgid "Where are you right now?" msgstr "Dove sei ora?" -#: src/Content/Conversation.php:342 +#: src/Content/Conversation.php:328 msgid "Delete item(s)?" msgstr "Cancellare questo elemento/i?" -#: src/Content/Conversation.php:354 src/Module/Item/Compose.php:182 +#: src/Content/Conversation.php:340 src/Module/Item/Compose.php:168 msgid "Created at" msgstr "" -#: src/Content/Conversation.php:364 +#: src/Content/Conversation.php:350 msgid "New Post" msgstr "Nuovo Messaggio" -#: src/Content/Conversation.php:367 +#: src/Content/Conversation.php:353 msgid "Share" msgstr "Condividi" -#: src/Content/Conversation.php:370 src/Module/Post/Edit.php:132 +#: src/Content/Conversation.php:356 src/Module/Post/Edit.php:118 msgid "upload photo" msgstr "carica foto" -#: src/Content/Conversation.php:371 src/Module/Post/Edit.php:133 +#: src/Content/Conversation.php:357 src/Module/Post/Edit.php:119 msgid "Attach file" msgstr "Allega file" -#: src/Content/Conversation.php:372 src/Module/Post/Edit.php:134 +#: src/Content/Conversation.php:358 src/Module/Post/Edit.php:120 msgid "attach file" msgstr "allega file" -#: src/Content/Conversation.php:373 src/Module/Item/Compose.php:197 -#: src/Module/Post/Edit.php:171 src/Object/Post.php:1161 +#: src/Content/Conversation.php:359 src/Module/Item/Compose.php:183 +#: src/Module/Post/Edit.php:157 src/Object/Post.php:1147 msgid "Bold" msgstr "Grassetto" -#: src/Content/Conversation.php:374 src/Module/Item/Compose.php:198 -#: src/Module/Post/Edit.php:172 src/Object/Post.php:1162 +#: src/Content/Conversation.php:360 src/Module/Item/Compose.php:184 +#: src/Module/Post/Edit.php:158 src/Object/Post.php:1148 msgid "Italic" msgstr "Corsivo" -#: src/Content/Conversation.php:375 src/Module/Item/Compose.php:199 -#: src/Module/Post/Edit.php:173 src/Object/Post.php:1163 +#: src/Content/Conversation.php:361 src/Module/Item/Compose.php:185 +#: src/Module/Post/Edit.php:159 src/Object/Post.php:1149 msgid "Underline" msgstr "Sottolineato" -#: src/Content/Conversation.php:376 src/Module/Item/Compose.php:200 -#: src/Module/Post/Edit.php:174 src/Object/Post.php:1165 +#: src/Content/Conversation.php:362 src/Module/Item/Compose.php:186 +#: src/Module/Post/Edit.php:160 src/Object/Post.php:1151 msgid "Quote" msgstr "Citazione" -#: src/Content/Conversation.php:377 src/Module/Item/Compose.php:201 -#: src/Module/Post/Edit.php:175 src/Object/Post.php:1166 +#: src/Content/Conversation.php:363 src/Module/Item/Compose.php:187 +#: src/Module/Post/Edit.php:161 src/Object/Post.php:1152 msgid "Add emojis" msgstr "" -#: src/Content/Conversation.php:378 src/Module/Item/Compose.php:202 -#: src/Object/Post.php:1164 +#: src/Content/Conversation.php:364 src/Module/Item/Compose.php:188 +#: src/Object/Post.php:1150 msgid "Content Warning" msgstr "" -#: src/Content/Conversation.php:379 src/Module/Item/Compose.php:203 -#: src/Module/Post/Edit.php:176 src/Object/Post.php:1167 +#: src/Content/Conversation.php:365 src/Module/Item/Compose.php:189 +#: src/Module/Post/Edit.php:162 src/Object/Post.php:1153 msgid "Code" msgstr "Codice" -#: src/Content/Conversation.php:380 src/Module/Item/Compose.php:204 -#: src/Object/Post.php:1168 +#: src/Content/Conversation.php:366 src/Module/Item/Compose.php:190 +#: src/Object/Post.php:1154 msgid "Image" msgstr "Immagine" -#: src/Content/Conversation.php:381 src/Module/Item/Compose.php:205 -#: src/Module/Post/Edit.php:177 src/Object/Post.php:1169 +#: src/Content/Conversation.php:367 src/Module/Item/Compose.php:191 +#: src/Module/Post/Edit.php:163 src/Object/Post.php:1155 msgid "Link" msgstr "Collegamento" -#: src/Content/Conversation.php:382 src/Module/Item/Compose.php:206 -#: src/Module/Post/Edit.php:178 src/Object/Post.php:1170 +#: src/Content/Conversation.php:368 src/Module/Item/Compose.php:192 +#: src/Module/Post/Edit.php:164 src/Object/Post.php:1156 msgid "Link or Media" msgstr "Collegamento o Media" -#: src/Content/Conversation.php:383 +#: src/Content/Conversation.php:369 msgid "Video" msgstr "Video" -#: src/Content/Conversation.php:384 src/Module/Item/Compose.php:209 -#: src/Module/Post/Edit.php:141 +#: src/Content/Conversation.php:370 src/Module/Item/Compose.php:195 +#: src/Module/Post/Edit.php:127 msgid "Set your location" msgstr "La tua posizione" -#: src/Content/Conversation.php:385 src/Module/Post/Edit.php:142 +#: src/Content/Conversation.php:371 src/Module/Post/Edit.php:128 msgid "set location" msgstr "posizione" -#: src/Content/Conversation.php:386 src/Module/Post/Edit.php:143 +#: src/Content/Conversation.php:372 src/Module/Post/Edit.php:129 msgid "Clear browser location" msgstr "Rimuovi la localizzazione data dal browser" -#: src/Content/Conversation.php:387 src/Module/Post/Edit.php:144 +#: src/Content/Conversation.php:373 src/Module/Post/Edit.php:130 msgid "clear location" msgstr "canc. pos." -#: src/Content/Conversation.php:389 src/Module/Item/Compose.php:214 -#: src/Module/Post/Edit.php:157 +#: src/Content/Conversation.php:375 src/Module/Item/Compose.php:200 +#: src/Module/Post/Edit.php:143 msgid "Set title" msgstr "Scegli un titolo" -#: src/Content/Conversation.php:391 src/Module/Item/Compose.php:215 -#: src/Module/Post/Edit.php:159 +#: src/Content/Conversation.php:377 src/Module/Item/Compose.php:201 +#: src/Module/Post/Edit.php:145 msgid "Categories (comma-separated list)" msgstr "Categorie (lista separata da virgola)" -#: src/Content/Conversation.php:396 src/Module/Item/Compose.php:231 +#: src/Content/Conversation.php:382 src/Module/Item/Compose.php:217 msgid "Scheduled at" msgstr "Programmato per" -#: src/Content/Conversation.php:401 src/Module/Post/Edit.php:146 +#: src/Content/Conversation.php:387 src/Module/Post/Edit.php:132 msgid "Permission settings" msgstr "Impostazioni permessi" -#: src/Content/Conversation.php:410 src/Module/Post/Edit.php:155 +#: src/Content/Conversation.php:396 src/Module/Post/Edit.php:141 msgid "Public post" msgstr "Messaggio pubblico" -#: src/Content/Conversation.php:424 src/Content/Widget/VCard.php:131 -#: src/Model/Profile.php:483 src/Module/Admin/Logs/View.php:94 -#: src/Module/Post/Edit.php:181 +#: src/Content/Conversation.php:410 src/Content/Widget/VCard.php:117 +#: src/Model/Profile.php:462 src/Module/Admin/Logs/View.php:80 +#: src/Module/Post/Edit.php:167 msgid "Message" msgstr "Messaggio" -#: src/Content/Conversation.php:425 src/Module/Post/Edit.php:182 -#: src/Module/Settings/TwoFactor/Trusted.php:143 +#: src/Content/Conversation.php:411 src/Module/Post/Edit.php:168 +#: src/Module/Settings/TwoFactor/Trusted.php:129 msgid "Browser" msgstr "Browser" -#: src/Content/Conversation.php:427 src/Module/Post/Edit.php:185 +#: src/Content/Conversation.php:413 src/Module/Post/Edit.php:171 msgid "Open Compose page" msgstr "Apri pagina di Composizione" -#: src/Content/Conversation.php:594 +#: src/Content/Conversation.php:580 msgid "remove" msgstr "rimuovi" -#: src/Content/Conversation.php:598 +#: src/Content/Conversation.php:584 msgid "Delete Selected Items" msgstr "Cancella elementi selezionati" -#: src/Content/Conversation.php:726 src/Content/Conversation.php:729 -#: src/Content/Conversation.php:732 src/Content/Conversation.php:735 -#: src/Content/Conversation.php:738 +#: src/Content/Conversation.php:712 src/Content/Conversation.php:715 +#: src/Content/Conversation.php:718 src/Content/Conversation.php:721 +#: src/Content/Conversation.php:724 #, php-format msgid "You had been addressed (%s)." msgstr "Sei stato nominato (%s)." -#: src/Content/Conversation.php:741 +#: src/Content/Conversation.php:727 #, php-format msgid "You are following %s." msgstr "Stai seguendo %s." -#: src/Content/Conversation.php:746 +#: src/Content/Conversation.php:732 #, php-format msgid "You subscribed to %s." msgstr "" -#: src/Content/Conversation.php:748 +#: src/Content/Conversation.php:734 msgid "You subscribed to one or more tags in this post." msgstr "" -#: src/Content/Conversation.php:768 +#: src/Content/Conversation.php:754 #, php-format msgid "%s reshared this." msgstr "%s ha ricondiviso questo." -#: src/Content/Conversation.php:770 +#: src/Content/Conversation.php:756 msgid "Reshared" msgstr "Ricondiviso" -#: src/Content/Conversation.php:770 +#: src/Content/Conversation.php:756 #, php-format msgid "Reshared by %s <%s>" msgstr "Ricondiviso da %s <%s>" -#: src/Content/Conversation.php:773 +#: src/Content/Conversation.php:759 #, php-format msgid "%s is participating in this thread." msgstr "%s partecipa in questa conversazione." -#: src/Content/Conversation.php:776 +#: src/Content/Conversation.php:762 msgid "Stored for general reasons" msgstr "" -#: src/Content/Conversation.php:779 +#: src/Content/Conversation.php:765 msgid "Global post" msgstr "" -#: src/Content/Conversation.php:782 +#: src/Content/Conversation.php:768 msgid "Sent via an relay server" msgstr "" -#: src/Content/Conversation.php:782 +#: src/Content/Conversation.php:768 #, php-format msgid "Sent via the relay server %s <%s>" msgstr "" -#: src/Content/Conversation.php:785 +#: src/Content/Conversation.php:771 msgid "Fetched" msgstr "Recuperato" -#: src/Content/Conversation.php:785 +#: src/Content/Conversation.php:771 #, php-format msgid "Fetched because of %s <%s>" msgstr "Recuperato a causa di %s <%s>" -#: src/Content/Conversation.php:788 +#: src/Content/Conversation.php:774 msgid "Stored because of a child post to complete this thread." msgstr "" -#: src/Content/Conversation.php:791 +#: src/Content/Conversation.php:777 msgid "Local delivery" msgstr "" -#: src/Content/Conversation.php:794 +#: src/Content/Conversation.php:780 msgid "Stored because of your activity (like, comment, star, ...)" msgstr "" -#: src/Content/Conversation.php:797 +#: src/Content/Conversation.php:783 msgid "Distributed" msgstr "" -#: src/Content/Conversation.php:800 +#: src/Content/Conversation.php:786 msgid "Pushed to us" msgstr "" -#: src/Content/Conversation.php:1518 src/Object/Post.php:261 +#: src/Content/Conversation.php:1504 src/Object/Post.php:247 msgid "Pinned item" msgstr "Oggetto in evidenza" -#: src/Content/Conversation.php:1535 src/Object/Post.php:555 -#: src/Object/Post.php:556 +#: src/Content/Conversation.php:1521 src/Object/Post.php:541 +#: src/Object/Post.php:542 #, php-format msgid "View %s's profile @ %s" msgstr "Vedi il profilo di %s @ %s" -#: src/Content/Conversation.php:1549 src/Object/Post.php:543 +#: src/Content/Conversation.php:1535 src/Object/Post.php:529 msgid "Categories:" msgstr "Categorie:" -#: src/Content/Conversation.php:1550 src/Object/Post.php:544 +#: src/Content/Conversation.php:1536 src/Object/Post.php:530 msgid "Filed under:" msgstr "Archiviato in:" -#: src/Content/Conversation.php:1558 src/Object/Post.php:570 +#: src/Content/Conversation.php:1544 src/Object/Post.php:556 #, php-format msgid "%s from %s" msgstr "%s da %s" -#: src/Content/Conversation.php:1574 +#: src/Content/Conversation.php:1560 msgid "View in context" msgstr "Vedi nel contesto" -#: src/Content/Conversation/Factory/Channel.php:42 +#: src/Content/Conversation/Factory/Channel.php:28 msgid "For you" msgstr "" -#: src/Content/Conversation/Factory/Channel.php:42 +#: src/Content/Conversation/Factory/Channel.php:28 msgid "Posts from contacts you interact with and who interact with you" msgstr "" -#: src/Content/Conversation/Factory/Channel.php:43 +#: src/Content/Conversation/Factory/Channel.php:29 msgid "Discover" msgstr "" -#: src/Content/Conversation/Factory/Channel.php:43 +#: src/Content/Conversation/Factory/Channel.php:29 msgid "Posts from accounts that you don't follow, but that you might like." msgstr "" -#: src/Content/Conversation/Factory/Channel.php:44 +#: src/Content/Conversation/Factory/Channel.php:30 msgid "What's Hot" msgstr "" -#: src/Content/Conversation/Factory/Channel.php:44 +#: src/Content/Conversation/Factory/Channel.php:30 msgid "Posts with a lot of interactions" msgstr "" -#: src/Content/Conversation/Factory/Channel.php:45 +#: src/Content/Conversation/Factory/Channel.php:31 #, php-format msgid "Posts in %s" msgstr "" -#: src/Content/Conversation/Factory/Channel.php:46 +#: src/Content/Conversation/Factory/Channel.php:32 msgid "Posts from your followers that you don't follow" msgstr "" -#: src/Content/Conversation/Factory/Channel.php:47 +#: src/Content/Conversation/Factory/Channel.php:33 msgid "Sharers of sharers" msgstr "" -#: src/Content/Conversation/Factory/Channel.php:47 +#: src/Content/Conversation/Factory/Channel.php:33 msgid "Posts from accounts that are followed by accounts that you follow" msgstr "" -#: src/Content/Conversation/Factory/Channel.php:48 +#: src/Content/Conversation/Factory/Channel.php:34 msgid "Quiet sharers" msgstr "" -#: src/Content/Conversation/Factory/Channel.php:48 +#: src/Content/Conversation/Factory/Channel.php:34 msgid "Posts from accounts that you follow but who don't post very often" msgstr "" -#: src/Content/Conversation/Factory/Channel.php:49 -#: src/Module/Settings/Channels.php:199 src/Module/Settings/Channels.php:220 +#: src/Content/Conversation/Factory/Channel.php:35 +#: src/Module/Settings/Channels.php:185 src/Module/Settings/Channels.php:206 msgid "Images" msgstr "" -#: src/Content/Conversation/Factory/Channel.php:49 +#: src/Content/Conversation/Factory/Channel.php:35 msgid "Posts with images" msgstr "" -#: src/Content/Conversation/Factory/Channel.php:50 -#: src/Module/Settings/Channels.php:201 src/Module/Settings/Channels.php:222 +#: src/Content/Conversation/Factory/Channel.php:36 +#: src/Module/Settings/Channels.php:187 src/Module/Settings/Channels.php:208 msgid "Audio" msgstr "" -#: src/Content/Conversation/Factory/Channel.php:50 +#: src/Content/Conversation/Factory/Channel.php:36 msgid "Posts with audio" msgstr "" -#: src/Content/Conversation/Factory/Channel.php:51 -#: src/Module/Settings/Channels.php:200 src/Module/Settings/Channels.php:221 +#: src/Content/Conversation/Factory/Channel.php:37 +#: src/Module/Settings/Channels.php:186 src/Module/Settings/Channels.php:207 msgid "Videos" msgstr "" -#: src/Content/Conversation/Factory/Channel.php:51 +#: src/Content/Conversation/Factory/Channel.php:37 msgid "Posts with videos" msgstr "" -#: src/Content/Conversation/Factory/Community.php:43 +#: src/Content/Conversation/Factory/Community.php:29 msgid "Local Community" msgstr "Comunità Locale" -#: src/Content/Conversation/Factory/Community.php:43 +#: src/Content/Conversation/Factory/Community.php:29 msgid "Posts from local users on this server" msgstr "Messaggi dagli utenti locali su questo sito" -#: src/Content/Conversation/Factory/Community.php:47 -#: src/Module/Settings/Channels.php:150 src/Module/Settings/Channels.php:155 +#: src/Content/Conversation/Factory/Community.php:33 +#: src/Module/Settings/Channels.php:136 src/Module/Settings/Channels.php:141 msgid "Global Community" msgstr "Comunità Globale" -#: src/Content/Conversation/Factory/Community.php:47 +#: src/Content/Conversation/Factory/Community.php:33 msgid "Posts from users of the whole federated network" msgstr "Messaggi dagli utenti della rete federata" -#: src/Content/Conversation/Factory/Network.php:38 -#: src/Module/Settings/Channels.php:156 +#: src/Content/Conversation/Factory/Network.php:24 +#: src/Module/Settings/Channels.php:142 msgid "Latest Activity" msgstr "Ultima Attività" -#: src/Content/Conversation/Factory/Network.php:38 +#: src/Content/Conversation/Factory/Network.php:24 msgid "Sort by latest activity" msgstr "Ordina per ultima attività" -#: src/Content/Conversation/Factory/Network.php:39 -#: src/Module/Settings/Channels.php:157 +#: src/Content/Conversation/Factory/Network.php:25 +#: src/Module/Settings/Channels.php:143 msgid "Latest Posts" msgstr "Ultimi Messaggi" -#: src/Content/Conversation/Factory/Network.php:39 +#: src/Content/Conversation/Factory/Network.php:25 msgid "Sort by post received date" msgstr "Ordina per data di ricezione del messaggio" -#: src/Content/Conversation/Factory/Network.php:40 -#: src/Module/Settings/Channels.php:158 +#: src/Content/Conversation/Factory/Network.php:26 +#: src/Module/Settings/Channels.php:144 msgid "Latest Creation" msgstr "" -#: src/Content/Conversation/Factory/Network.php:40 +#: src/Content/Conversation/Factory/Network.php:26 msgid "Sort by post creation date" msgstr "" -#: src/Content/Conversation/Factory/Network.php:41 -#: src/Module/Settings/Profile/Index.php:260 +#: src/Content/Conversation/Factory/Network.php:27 +#: src/Module/Settings/Profile/Index.php:251 msgid "Personal" msgstr "Personale" -#: src/Content/Conversation/Factory/Network.php:41 +#: src/Content/Conversation/Factory/Network.php:27 msgid "Posts that mention or involve you" msgstr "Messaggi che ti citano o coinvolgono" -#: src/Content/Conversation/Factory/Network.php:42 src/Object/Post.php:411 +#: src/Content/Conversation/Factory/Network.php:28 src/Object/Post.php:397 msgid "Starred" msgstr "Preferiti" -#: src/Content/Conversation/Factory/Network.php:42 +#: src/Content/Conversation/Factory/Network.php:28 msgid "Favourite Posts" msgstr "Messaggi preferiti" -#: src/Content/Feature.php:107 +#: src/Content/Feature.php:93 msgid "General Features" msgstr "Funzionalità generali" -#: src/Content/Feature.php:109 +#: src/Content/Feature.php:95 msgid "Photo Location" msgstr "Località Foto" -#: src/Content/Feature.php:109 +#: src/Content/Feature.php:95 msgid "" "Photo metadata is normally stripped. This extracts the location (if present)" " prior to stripping metadata and links it to a map." msgstr "I metadati delle foto vengono rimossi. Questa opzione estrae la località (se presenta) prima di rimuovere i metadati e la collega a una mappa." -#: src/Content/Feature.php:110 +#: src/Content/Feature.php:96 msgid "Display the community in the navigation" msgstr "" -#: src/Content/Feature.php:110 +#: src/Content/Feature.php:96 msgid "" "If enabled, the community can be accessed via the navigation menu. " "Independent from this setting, the community timelines can always be " "accessed via the channels." msgstr "" -#: src/Content/Feature.php:115 +#: src/Content/Feature.php:101 msgid "Post Composition Features" msgstr "Funzionalità di composizione dei messaggi" -#: src/Content/Feature.php:116 +#: src/Content/Feature.php:102 msgid "Explicit Mentions" msgstr "Menzioni Esplicite" -#: src/Content/Feature.php:116 +#: src/Content/Feature.php:102 msgid "" "Add explicit mentions to comment box for manual control over who gets " "mentioned in replies." msgstr "Aggiungi menzioni esplicite al riquadro di commento per avere un controllo manuale su chi viene menzionato nelle risposte. " -#: src/Content/Feature.php:117 +#: src/Content/Feature.php:103 msgid "Add an abstract from ActivityPub content warnings" msgstr "" -#: src/Content/Feature.php:117 +#: src/Content/Feature.php:103 msgid "" "Add an abstract when commenting on ActivityPub posts with a content warning." " Abstracts are displayed as content warning on systems like Mastodon or " "Pleroma." msgstr "" -#: src/Content/Feature.php:122 +#: src/Content/Feature.php:108 msgid "Post/Comment Tools" msgstr "Strumenti per messaggi/commenti" -#: src/Content/Feature.php:123 +#: src/Content/Feature.php:109 msgid "Post Categories" msgstr "Categorie Messaggi" -#: src/Content/Feature.php:123 +#: src/Content/Feature.php:109 msgid "Add categories to your posts" msgstr "Aggiungi categorie ai tuoi messaggi" -#: src/Content/Feature.php:128 +#: src/Content/Feature.php:114 msgid "Network Widgets" msgstr "" -#: src/Content/Feature.php:129 src/Content/Widget.php:216 -#: src/Model/Circle.php:601 src/Module/Contact.php:400 -#: src/Module/Welcome.php:76 +#: src/Content/Feature.php:115 src/Content/Widget.php:194 +#: src/Model/Circle.php:587 src/Module/Contact.php:381 +#: src/Module/Welcome.php:62 msgid "Circles" msgstr "" -#: src/Content/Feature.php:129 +#: src/Content/Feature.php:115 msgid "" "Display posts that have been created by accounts of the selected circle." msgstr "" -#: src/Content/Feature.php:130 src/Content/GroupManager.php:147 -#: src/Content/Nav.php:278 src/Content/Text/HTML.php:882 -#: src/Content/Widget.php:538 src/Model/User.php:1390 +#: src/Content/Feature.php:116 src/Content/GroupManager.php:133 +#: src/Content/Nav.php:264 src/Content/Text/HTML.php:868 +#: src/Content/Widget.php:516 src/Model/User.php:1390 msgid "Groups" msgstr "" -#: src/Content/Feature.php:130 +#: src/Content/Feature.php:116 msgid "Display posts that have been distributed by the selected group." msgstr "" -#: src/Content/Feature.php:131 src/Content/Widget.php:507 +#: src/Content/Feature.php:117 src/Content/Widget.php:485 msgid "Archives" msgstr "Archivi" -#: src/Content/Feature.php:131 +#: src/Content/Feature.php:117 msgid "Display an archive where posts can be selected by month and year." msgstr "" -#: src/Content/Feature.php:132 src/Content/Widget.php:289 +#: src/Content/Feature.php:118 src/Content/Widget.php:267 msgid "Protocols" msgstr "Protocolli" -#: src/Content/Feature.php:132 +#: src/Content/Feature.php:118 msgid "Display posts with the selected protocols." msgstr "" -#: src/Content/Feature.php:133 src/Content/Widget.php:544 -#: src/Module/Settings/Account.php:442 +#: src/Content/Feature.php:119 src/Content/Widget.php:522 +#: src/Module/Settings/Account.php:433 msgid "Account Types" msgstr "Tipi di Account" -#: src/Content/Feature.php:133 +#: src/Content/Feature.php:119 msgid "Display posts done by accounts with the selected account type." msgstr "" -#: src/Content/Feature.php:134 src/Content/Widget.php:593 -#: src/Module/Admin/Site.php:472 src/Module/BaseSettings.php:125 -#: src/Module/Settings/Channels.php:225 src/Module/Settings/Display.php:315 +#: src/Content/Feature.php:120 src/Content/Widget.php:571 +#: src/Module/Admin/Site.php:464 src/Module/BaseSettings.php:111 +#: src/Module/Settings/Channels.php:211 src/Module/Settings/Display.php:301 msgid "Channels" msgstr "" -#: src/Content/Feature.php:134 +#: src/Content/Feature.php:120 msgid "Display posts in the system channels and user defined channels." msgstr "" -#: src/Content/Feature.php:135 src/Content/Widget/SavedSearches.php:60 +#: src/Content/Feature.php:121 src/Content/Widget/SavedSearches.php:46 msgid "Saved Searches" msgstr "Ricerche salvate" -#: src/Content/Feature.php:135 +#: src/Content/Feature.php:121 msgid "Display posts that contain subscribed hashtags." msgstr "" -#: src/Content/Feature.php:136 src/Content/Widget.php:319 +#: src/Content/Feature.php:122 src/Content/Widget.php:297 msgid "Saved Folders" msgstr "Cartelle Salvate" -#: src/Content/Feature.php:136 +#: src/Content/Feature.php:122 msgid "Display a list of folders in which posts are stored." msgstr "" -#: src/Content/Feature.php:137 src/Module/Conversation/Timeline.php:199 +#: src/Content/Feature.php:123 src/Module/Conversation/Timeline.php:186 msgid "Own Contacts" msgstr "Propri Contatti" -#: src/Content/Feature.php:137 +#: src/Content/Feature.php:123 msgid "" "Include or exclude posts from subscribed accounts. This widget is not " "visible on all channels." msgstr "" -#: src/Content/Feature.php:138 +#: src/Content/Feature.php:124 msgid "Trending Tags" msgstr "Etichette di Tendenza" -#: src/Content/Feature.php:138 +#: src/Content/Feature.php:124 msgid "Display a list of the most popular tags in recent public posts." msgstr "" -#: src/Content/Feature.php:143 +#: src/Content/Feature.php:129 msgid "Advanced Profile Settings" msgstr "Impostazioni Avanzate Profilo" -#: src/Content/Feature.php:144 +#: src/Content/Feature.php:130 msgid "Tag Cloud" msgstr "Tag Cloud" -#: src/Content/Feature.php:144 +#: src/Content/Feature.php:130 msgid "Provide a personal tag cloud on your profile page" msgstr "Mostra una nuvola dei tag personali sulla tua pagina di profilo" -#: src/Content/Feature.php:145 +#: src/Content/Feature.php:131 msgid "Display Membership Date" msgstr "Mostra la Data di Registrazione" -#: src/Content/Feature.php:145 +#: src/Content/Feature.php:131 msgid "Display membership date in profile" msgstr "Mostra la data in cui ti sei registrato nel profilo" -#: src/Content/Feature.php:150 +#: src/Content/Feature.php:136 msgid "Advanced Calendar Settings" msgstr "" -#: src/Content/Feature.php:151 +#: src/Content/Feature.php:137 msgid "Allow anonymous access to your calendar" msgstr "" -#: src/Content/Feature.php:151 +#: src/Content/Feature.php:137 msgid "" "Allows anonymous visitors to consult your calendar and your public events. " "Contact birthday events are private to you." msgstr "" -#: src/Content/GroupManager.php:149 +#: src/Content/GroupManager.php:135 msgid "External link to group" msgstr "" -#: src/Content/GroupManager.php:153 src/Content/Widget.php:513 +#: src/Content/GroupManager.php:139 src/Content/Widget.php:491 msgid "show less" msgstr "mostra meno" -#: src/Content/GroupManager.php:154 src/Content/Widget.php:411 -#: src/Content/Widget.php:514 +#: src/Content/GroupManager.php:140 src/Content/Widget.php:389 +#: src/Content/Widget.php:492 msgid "show more" msgstr "mostra di più" -#: src/Content/GroupManager.php:155 +#: src/Content/GroupManager.php:141 msgid "Create new group" msgstr "" -#: src/Content/Item.php:331 src/Model/Item.php:3256 +#: src/Content/Item.php:317 src/Model/Item.php:3272 msgid "event" msgstr "l'evento" -#: src/Content/Item.php:334 src/Content/Item.php:344 +#: src/Content/Item.php:320 src/Content/Item.php:330 msgid "status" msgstr "stato" -#: src/Content/Item.php:340 src/Model/Item.php:3258 -#: src/Module/Post/Tag/Add.php:123 +#: src/Content/Item.php:326 src/Model/Item.php:3274 +#: src/Module/Post/Tag/Add.php:109 msgid "photo" msgstr "foto" -#: src/Content/Item.php:354 src/Module/Post/Tag/Add.php:141 +#: src/Content/Item.php:340 src/Module/Post/Tag/Add.php:127 #, php-format msgid "%1$s tagged %2$s's %3$s with %4$s" msgstr "%1$s ha taggato %3$s di %2$s con %4$s" -#: src/Content/Item.php:428 view/theme/frio/theme.php:265 +#: src/Content/Item.php:414 view/theme/frio/theme.php:253 msgid "Follow Thread" msgstr "Segui la discussione" -#: src/Content/Item.php:429 src/Model/Contact.php:1233 +#: src/Content/Item.php:415 src/Model/Contact.php:1249 msgid "View Status" msgstr "Visualizza stato" -#: src/Content/Item.php:430 src/Content/Item.php:453 -#: src/Model/Contact.php:1168 src/Model/Contact.php:1224 -#: src/Model/Contact.php:1234 src/Module/Directory.php:157 -#: src/Module/Settings/Profile/Index.php:259 +#: src/Content/Item.php:416 src/Content/Item.php:439 +#: src/Model/Contact.php:1184 src/Model/Contact.php:1240 +#: src/Model/Contact.php:1250 src/Module/Directory.php:144 +#: src/Module/Settings/Profile/Index.php:250 msgid "View Profile" msgstr "Visualizza profilo" -#: src/Content/Item.php:431 src/Model/Contact.php:1235 +#: src/Content/Item.php:417 src/Model/Contact.php:1251 msgid "View Photos" msgstr "Visualizza foto" -#: src/Content/Item.php:432 src/Model/Contact.php:1202 -#: src/Model/Profile.php:468 +#: src/Content/Item.php:418 src/Model/Contact.php:1218 +#: src/Model/Profile.php:447 msgid "Network Posts" msgstr "Messaggi della Rete" -#: src/Content/Item.php:433 src/Model/Contact.php:1226 -#: src/Model/Contact.php:1237 +#: src/Content/Item.php:419 src/Model/Contact.php:1242 +#: src/Model/Contact.php:1253 msgid "View Contact" msgstr "Mostra contatto" -#: src/Content/Item.php:434 src/Model/Contact.php:1238 +#: src/Content/Item.php:420 src/Model/Contact.php:1254 msgid "Send PM" msgstr "Invia messaggio privato" -#: src/Content/Item.php:435 src/Module/Contact.php:467 +#: src/Content/Item.php:421 src/Module/Contact.php:449 #: src/Module/Contact/Profile.php:518 -#: src/Module/Moderation/Blocklist/Contact.php:116 -#: src/Module/Moderation/Users/Active.php:137 -#: src/Module/Moderation/Users/Index.php:152 +#: src/Module/Moderation/Blocklist/Contact.php:102 +#: src/Module/Moderation/Users/Active.php:123 +#: src/Module/Moderation/Users/Index.php:138 msgid "Block" msgstr "Blocca" -#: src/Content/Item.php:436 src/Module/Contact.php:468 +#: src/Content/Item.php:422 src/Module/Contact.php:450 #: src/Module/Contact/Profile.php:526 -#: src/Module/Notifications/Introductions.php:134 -#: src/Module/Notifications/Introductions.php:206 -#: src/Module/Notifications/Notification.php:89 +#: src/Module/Notifications/Introductions.php:126 +#: src/Module/Notifications/Introductions.php:198 +#: src/Module/Notifications/Notification.php:75 msgid "Ignore" msgstr "Ignora" -#: src/Content/Item.php:437 src/Module/Contact.php:469 +#: src/Content/Item.php:423 src/Module/Contact.php:451 #: src/Module/Contact/Profile.php:534 msgid "Collapse" msgstr "" -#: src/Content/Item.php:438 src/Object/Post.php:302 +#: src/Content/Item.php:424 src/Object/Post.php:288 #, php-format msgid "Ignore %s server" msgstr "" -#: src/Content/Item.php:442 src/Module/Settings/Channels.php:202 -#: src/Module/Settings/Channels.php:223 src/Object/Post.php:516 +#: src/Content/Item.php:428 src/Module/Settings/Channels.php:188 +#: src/Module/Settings/Channels.php:209 src/Object/Post.php:502 msgid "Languages" msgstr "Lingue" -#: src/Content/Item.php:445 src/Object/Post.php:596 +#: src/Content/Item.php:431 src/Object/Post.php:582 msgid "Search Text" msgstr "" -#: src/Content/Item.php:450 src/Content/Widget.php:80 -#: src/Model/Contact.php:1227 src/Model/Contact.php:1239 -#: src/Module/Contact/Follow.php:167 view/theme/vier/theme.php:195 +#: src/Content/Item.php:436 src/Content/Widget.php:66 +#: src/Model/Contact.php:1243 src/Model/Contact.php:1255 +#: src/Module/Contact/Follow.php:148 view/theme/vier/theme.php:183 msgid "Connect/Follow" msgstr "Connetti/segui" -#: src/Content/Item.php:884 +#: src/Content/Item.php:870 msgid "Unable to fetch user." msgstr "" -#: src/Content/Nav.php:121 +#: src/Content/Nav.php:107 msgid "Nothing new here" msgstr "Niente di nuovo qui" -#: src/Content/Nav.php:125 src/Module/Special/HTTPException.php:77 +#: src/Content/Nav.php:111 src/Module/Special/HTTPException.php:63 msgid "Go back" msgstr "Torna indietro" -#: src/Content/Nav.php:126 +#: src/Content/Nav.php:112 msgid "Clear notifications" msgstr "Pulisci le notifiche" -#: src/Content/Nav.php:127 src/Content/Text/HTML.php:869 +#: src/Content/Nav.php:113 src/Content/Text/HTML.php:855 msgid "@name, !group, #tags, content" msgstr "" -#: src/Content/Nav.php:222 src/Module/Security/Login.php:157 +#: src/Content/Nav.php:208 src/Module/Security/Login.php:147 msgid "Logout" msgstr "Esci" -#: src/Content/Nav.php:222 +#: src/Content/Nav.php:208 msgid "End this session" msgstr "Finisci questa sessione" -#: src/Content/Nav.php:224 src/Module/Bookmarklet.php:44 -#: src/Module/Security/Login.php:158 +#: src/Content/Nav.php:210 src/Module/Bookmarklet.php:30 +#: src/Module/Security/Login.php:148 msgid "Login" msgstr "Accedi" -#: src/Content/Nav.php:224 +#: src/Content/Nav.php:210 msgid "Sign in" msgstr "Entra" -#: src/Content/Nav.php:229 src/Module/BaseProfile.php:57 -#: src/Module/Contact.php:511 +#: src/Content/Nav.php:215 src/Module/BaseProfile.php:43 +#: src/Module/Contact.php:493 msgid "Conversations" msgstr "" -#: src/Content/Nav.php:229 +#: src/Content/Nav.php:215 msgid "Conversations you started" msgstr "" -#: src/Content/Nav.php:230 src/Module/BaseProfile.php:49 -#: src/Module/BaseSettings.php:98 src/Module/Contact.php:503 -#: src/Module/Contact/Profile.php:425 src/Module/Profile/Profile.php:268 -#: src/Module/Welcome.php:57 view/theme/frio/theme.php:233 +#: src/Content/Nav.php:216 src/Module/BaseProfile.php:35 +#: src/Module/BaseSettings.php:84 src/Module/Contact.php:485 +#: src/Module/Contact/Profile.php:425 src/Module/Profile/Profile.php:256 +#: src/Module/Welcome.php:43 view/theme/frio/theme.php:221 msgid "Profile" msgstr "Profilo" -#: src/Content/Nav.php:230 view/theme/frio/theme.php:233 +#: src/Content/Nav.php:216 view/theme/frio/theme.php:221 msgid "Your profile page" msgstr "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:237 +#: src/Content/Nav.php:217 src/Module/BaseProfile.php:51 +#: src/Module/Media/Photo/Browser.php:60 view/theme/frio/theme.php:225 msgid "Photos" msgstr "Foto" -#: src/Content/Nav.php:231 view/theme/frio/theme.php:237 +#: src/Content/Nav.php:217 view/theme/frio/theme.php:225 msgid "Your photos" msgstr "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:238 +#: src/Content/Nav.php:218 src/Module/BaseProfile.php:59 +#: src/Module/BaseProfile.php:62 src/Module/Contact.php:509 +#: view/theme/frio/theme.php:226 msgid "Media" msgstr "Media" -#: src/Content/Nav.php:232 view/theme/frio/theme.php:238 +#: src/Content/Nav.php:218 view/theme/frio/theme.php:226 msgid "Your postings with media" msgstr "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:239 -#: view/theme/frio/theme.php:243 +#: src/Content/Nav.php:219 src/Content/Nav.php:279 +#: src/Module/BaseProfile.php:71 src/Module/BaseProfile.php:74 +#: src/Module/BaseProfile.php:82 src/Module/BaseProfile.php:85 +#: src/Module/Settings/Display.php:302 view/theme/frio/theme.php:227 +#: view/theme/frio/theme.php:231 msgid "Calendar" msgstr "Calendario" -#: src/Content/Nav.php:233 view/theme/frio/theme.php:239 +#: src/Content/Nav.php:219 view/theme/frio/theme.php:227 msgid "Your calendar" msgstr "" -#: src/Content/Nav.php:234 +#: src/Content/Nav.php:220 msgid "Personal notes" msgstr "Note personali" -#: src/Content/Nav.php:234 +#: src/Content/Nav.php:220 msgid "Your personal notes" msgstr "Le tue note personali" -#: src/Content/Nav.php:251 src/Content/Nav.php:308 +#: src/Content/Nav.php:237 src/Content/Nav.php:294 msgid "Home" msgstr "Home" -#: src/Content/Nav.php:251 src/Module/Settings/OAuth.php:73 +#: src/Content/Nav.php:237 src/Module/Settings/OAuth.php:59 msgid "Home Page" msgstr "Home Page" -#: src/Content/Nav.php:255 src/Module/Register.php:169 -#: src/Module/Security/Login.php:124 +#: src/Content/Nav.php:241 src/Module/Register.php:161 +#: src/Module/Security/Login.php:114 msgid "Register" msgstr "Registrati" -#: src/Content/Nav.php:255 +#: src/Content/Nav.php:241 msgid "Create an account" msgstr "Crea un account" -#: src/Content/Nav.php:261 src/Module/Help.php:67 -#: src/Module/Settings/TwoFactor/AppSpecific.php:132 -#: src/Module/Settings/TwoFactor/Index.php:139 -#: src/Module/Settings/TwoFactor/Recovery.php:110 -#: src/Module/Settings/TwoFactor/Verify.php:149 view/theme/vier/theme.php:240 +#: src/Content/Nav.php:247 src/Module/Help.php:53 +#: src/Module/Settings/TwoFactor/AppSpecific.php:118 +#: src/Module/Settings/TwoFactor/Index.php:125 +#: src/Module/Settings/TwoFactor/Recovery.php:96 +#: src/Module/Settings/TwoFactor/Verify.php:135 view/theme/vier/theme.php:228 msgid "Help" msgstr "Guida" -#: src/Content/Nav.php:261 +#: src/Content/Nav.php:247 msgid "Help and documentation" msgstr "Guida e documentazione" -#: src/Content/Nav.php:265 +#: src/Content/Nav.php:251 msgid "Apps" msgstr "Applicazioni" -#: src/Content/Nav.php:265 +#: src/Content/Nav.php:251 msgid "Addon applications, utilities, games" msgstr "Applicazioni, utilità e giochi aggiuntivi" -#: src/Content/Nav.php:269 src/Content/Text/HTML.php:867 -#: src/Module/Admin/Logs/View.php:88 src/Module/Search/Index.php:112 +#: src/Content/Nav.php:255 src/Content/Text/HTML.php:853 +#: src/Module/Admin/Logs/View.php:74 src/Module/Search/Index.php:98 msgid "Search" msgstr "Cerca" -#: src/Content/Nav.php:269 +#: src/Content/Nav.php:255 msgid "Search site content" msgstr "Cerca nel contenuto del sito" -#: src/Content/Nav.php:272 src/Content/Text/HTML.php:876 +#: src/Content/Nav.php:258 src/Content/Text/HTML.php:862 msgid "Full Text" msgstr "Testo Completo" -#: src/Content/Nav.php:273 src/Content/Text/HTML.php:877 -#: src/Content/Widget/TagCloud.php:68 +#: src/Content/Nav.php:259 src/Content/Text/HTML.php:863 +#: src/Content/Widget/TagCloud.php:54 msgid "Tags" msgstr "Tags:" -#: src/Content/Nav.php:274 src/Content/Nav.php:329 -#: src/Content/Text/HTML.php:878 src/Module/BaseProfile.php:127 -#: src/Module/BaseProfile.php:130 src/Module/Contact.php:426 -#: src/Module/Contact.php:535 view/theme/frio/theme.php:246 +#: src/Content/Nav.php:260 src/Content/Nav.php:315 +#: src/Content/Text/HTML.php:864 src/Module/BaseProfile.php:113 +#: src/Module/BaseProfile.php:116 src/Module/Contact.php:407 +#: src/Module/Contact.php:517 view/theme/frio/theme.php:234 msgid "Contacts" msgstr "Contatti" -#: src/Content/Nav.php:289 +#: src/Content/Nav.php:275 msgid "Community" msgstr "Comunità" -#: src/Content/Nav.php:289 +#: src/Content/Nav.php:275 msgid "Conversations on this and other servers" msgstr "Conversazioni su questo e su altri server" -#: src/Content/Nav.php:296 +#: src/Content/Nav.php:282 msgid "Directory" msgstr "Elenco" -#: src/Content/Nav.php:296 +#: src/Content/Nav.php:282 msgid "People directory" msgstr "Elenco delle persone" -#: src/Content/Nav.php:298 src/Module/BaseAdmin.php:85 -#: src/Module/BaseModeration.php:108 +#: src/Content/Nav.php:284 src/Module/BaseAdmin.php:71 +#: src/Module/BaseModeration.php:94 msgid "Information" msgstr "Informazioni" -#: src/Content/Nav.php:298 +#: src/Content/Nav.php:284 msgid "Information about this friendica instance" msgstr "Informazioni su questo server friendica" -#: src/Content/Nav.php:301 src/Module/Admin/Tos.php:78 -#: src/Module/BaseAdmin.php:95 src/Module/Register.php:177 -#: src/Module/Tos.php:101 +#: src/Content/Nav.php:287 src/Module/Admin/Tos.php:64 +#: src/Module/BaseAdmin.php:81 src/Module/Register.php:169 +#: src/Module/Tos.php:87 msgid "Terms of Service" msgstr "Termini di Servizio" -#: src/Content/Nav.php:301 +#: src/Content/Nav.php:287 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:242 +#: src/Content/Nav.php:292 view/theme/frio/theme.php:230 msgid "Network" msgstr "Rete" -#: src/Content/Nav.php:306 view/theme/frio/theme.php:242 +#: src/Content/Nav.php:292 view/theme/frio/theme.php:230 msgid "Conversations from your friends" msgstr "Conversazioni dai tuoi amici" -#: src/Content/Nav.php:308 view/theme/frio/theme.php:232 +#: src/Content/Nav.php:294 view/theme/frio/theme.php:220 msgid "Your posts and conversations" msgstr "I tuoi messaggi e le tue conversazioni" -#: src/Content/Nav.php:312 +#: src/Content/Nav.php:298 msgid "Introductions" msgstr "Presentazioni" -#: src/Content/Nav.php:312 +#: src/Content/Nav.php:298 msgid "Friend Requests" msgstr "Richieste di amicizia" -#: src/Content/Nav.php:313 src/Module/BaseNotifications.php:149 -#: src/Module/Notifications/Introductions.php:75 +#: src/Content/Nav.php:299 src/Module/BaseNotifications.php:135 +#: src/Module/Notifications/Introductions.php:61 msgid "Notifications" msgstr "Notifiche" -#: src/Content/Nav.php:314 +#: src/Content/Nav.php:300 msgid "See all notifications" msgstr "Vedi tutte le notifiche" -#: src/Content/Nav.php:315 src/Module/Settings/Connectors.php:244 +#: src/Content/Nav.php:301 src/Module/Settings/Connectors.php:233 msgid "Mark as seen" msgstr "Segna come letto" -#: src/Content/Nav.php:315 +#: src/Content/Nav.php:301 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:244 +#: src/Content/Nav.php:304 view/theme/frio/theme.php:232 msgid "Private mail" msgstr "Posta privata" -#: src/Content/Nav.php:319 +#: src/Content/Nav.php:305 msgid "Inbox" msgstr "In arrivo" -#: src/Content/Nav.php:320 +#: src/Content/Nav.php:306 msgid "Outbox" msgstr "Inviati" -#: src/Content/Nav.php:324 +#: src/Content/Nav.php:310 msgid "Accounts" msgstr "Account" -#: src/Content/Nav.php:324 +#: src/Content/Nav.php:310 msgid "Manage other pages" 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:245 +#: src/Content/Nav.php:313 src/Module/Admin/Addons/Details.php:100 +#: src/Module/Admin/Themes/Details.php:85 src/Module/BaseSettings.php:168 +#: src/Module/Welcome.php:38 view/theme/frio/theme.php:233 msgid "Settings" msgstr "Impostazioni" -#: src/Content/Nav.php:327 view/theme/frio/theme.php:245 +#: src/Content/Nav.php:313 view/theme/frio/theme.php:233 msgid "Account settings" msgstr "Parametri account" -#: src/Content/Nav.php:329 view/theme/frio/theme.php:246 +#: src/Content/Nav.php:315 view/theme/frio/theme.php:234 msgid "Manage/edit friends and contacts" msgstr "Gestisci/modifica amici e contatti" -#: src/Content/Nav.php:334 src/Module/BaseAdmin.php:119 +#: src/Content/Nav.php:320 src/Module/BaseAdmin.php:105 msgid "Admin" msgstr "Amministrazione" -#: src/Content/Nav.php:334 +#: src/Content/Nav.php:320 msgid "Site setup and configuration" msgstr "Configurazione del sito" -#: src/Content/Nav.php:335 src/Module/BaseModeration.php:128 -#: src/Module/Moderation/Blocklist/Contact.php:110 -#: src/Module/Moderation/Blocklist/Server/Add.php:121 -#: src/Module/Moderation/Blocklist/Server/Import.php:118 -#: src/Module/Moderation/Blocklist/Server/Index.php:95 -#: src/Module/Moderation/Item/Delete.php:61 -#: src/Module/Moderation/Reports.php:104 src/Module/Moderation/Summary.php:75 -#: src/Module/Moderation/Users/Active.php:133 -#: src/Module/Moderation/Users/Blocked.php:133 -#: src/Module/Moderation/Users/Deleted.php:80 -#: src/Module/Moderation/Users/Index.php:147 +#: src/Content/Nav.php:321 src/Module/BaseModeration.php:114 +#: src/Module/Moderation/Blocklist/Contact.php:96 +#: src/Module/Moderation/Blocklist/Server/Add.php:107 +#: src/Module/Moderation/Blocklist/Server/Import.php:102 +#: src/Module/Moderation/Blocklist/Server/Index.php:81 +#: src/Module/Moderation/Item/Delete.php:47 +#: src/Module/Moderation/Reports.php:96 src/Module/Moderation/Summary.php:61 +#: src/Module/Moderation/Users/Active.php:119 +#: src/Module/Moderation/Users/Blocked.php:119 +#: src/Module/Moderation/Users/Deleted.php:66 +#: src/Module/Moderation/Users/Index.php:133 msgid "Moderation" msgstr "" -#: src/Content/Nav.php:335 +#: src/Content/Nav.php:321 msgid "Content and user moderation" msgstr "" -#: src/Content/Nav.php:338 +#: src/Content/Nav.php:324 msgid "Navigation" msgstr "Navigazione" -#: src/Content/Nav.php:338 +#: src/Content/Nav.php:324 msgid "Site map" msgstr "Mappa del sito" -#: src/Content/Pager.php:216 +#: src/Content/Pager.php:202 msgid "first" msgstr "primo" -#: src/Content/Pager.php:221 +#: src/Content/Pager.php:207 msgid "prev" msgstr "prec" -#: src/Content/Pager.php:276 +#: src/Content/Pager.php:262 msgid "next" msgstr "succ" -#: src/Content/Pager.php:281 +#: src/Content/Pager.php:267 msgid "last" msgstr "ultimo" -#: src/Content/Text/BBCode.php:702 src/Content/Text/BBCode.php:1878 -#: src/Content/Text/BBCode.php:1879 +#: src/Content/Text/BBCode.php:689 src/Content/Text/BBCode.php:1862 +#: src/Content/Text/BBCode.php:1863 msgid "Image/photo" msgstr "Immagine/foto" -#: src/Content/Text/BBCode.php:920 +#: src/Content/Text/BBCode.php:907 #, php-format msgid "%2$s %3$s" msgstr "%2$s %3$s" -#: src/Content/Text/BBCode.php:945 src/Model/Item.php:4012 -#: src/Model/Item.php:4018 src/Model/Item.php:4019 +#: src/Content/Text/BBCode.php:929 src/Model/Item.php:4028 +#: src/Model/Item.php:4034 src/Model/Item.php:4035 msgid "Link to source" msgstr "Collegamento all'originale" -#: src/Content/Text/BBCode.php:1759 src/Content/Text/HTML.php:906 +#: src/Content/Text/BBCode.php:1743 src/Content/Text/HTML.php:892 msgid "Click to open/close" msgstr "Clicca per aprire/chiudere" -#: src/Content/Text/BBCode.php:1814 +#: src/Content/Text/BBCode.php:1798 msgid "$1 wrote:" msgstr "$1 ha scritto:" -#: src/Content/Text/BBCode.php:1888 src/Content/Text/BBCode.php:1889 +#: src/Content/Text/BBCode.php:1872 src/Content/Text/BBCode.php:1873 msgid "Encrypted content" msgstr "Contenuto criptato" -#: src/Content/Text/BBCode.php:2194 +#: src/Content/Text/BBCode.php:2205 msgid "Invalid source protocol" msgstr "Protocollo sorgente non valido" -#: src/Content/Text/BBCode.php:2213 +#: src/Content/Text/BBCode.php:2224 msgid "Invalid link protocol" msgstr "Protocollo collegamento non valido" -#: src/Content/Text/HTML.php:784 +#: src/Content/Text/HTML.php:770 msgid "Loading more entries..." msgstr "Carico più elementi..." -#: src/Content/Text/HTML.php:785 +#: src/Content/Text/HTML.php:771 msgid "The end" msgstr "Fine" -#: src/Content/Text/HTML.php:861 src/Content/Widget/VCard.php:127 -#: src/Model/Profile.php:477 src/Module/Contact/Profile.php:478 +#: src/Content/Text/HTML.php:847 src/Content/Widget/VCard.php:113 +#: src/Model/Profile.php:456 src/Module/Contact/Profile.php:478 msgid "Follow" msgstr "Segui" -#: src/Content/Widget.php:51 +#: src/Content/Widget.php:37 msgid "Add New Contact" msgstr "Aggiungi nuovo contatto" -#: src/Content/Widget.php:52 +#: src/Content/Widget.php:38 msgid "Enter address or web location" msgstr "Inserisci posizione o indirizzo web" -#: src/Content/Widget.php:53 +#: src/Content/Widget.php:39 msgid "Example: bob@example.com, http://example.com/barbara" msgstr "Esempio: bob@example.com, http://example.com/barbara" -#: src/Content/Widget.php:55 +#: src/Content/Widget.php:41 msgid "Connect" msgstr "Connetti" -#: src/Content/Widget.php:72 +#: src/Content/Widget.php:58 #, php-format msgid "%d invitation available" msgid_plural "%d invitations available" @@ -2362,79 +2368,79 @@ msgstr[0] "%d invito disponibile" msgstr[1] "%d inviti disponibili" msgstr[2] "%d inviti disponibili" -#: src/Content/Widget.php:78 view/theme/vier/theme.php:193 +#: src/Content/Widget.php:64 view/theme/vier/theme.php:181 msgid "Find People" msgstr "Trova persone" -#: src/Content/Widget.php:79 view/theme/vier/theme.php:194 +#: src/Content/Widget.php:65 view/theme/vier/theme.php:182 msgid "Enter name or interest" msgstr "Inserisci un nome o un interesse" -#: src/Content/Widget.php:81 view/theme/vier/theme.php:196 +#: src/Content/Widget.php:67 view/theme/vier/theme.php:184 msgid "Examples: Robert Morgenstein, Fishing" msgstr "Esempi: Mario Rossi, Pesca" -#: src/Content/Widget.php:82 src/Module/Contact.php:460 -#: src/Module/Directory.php:96 view/theme/vier/theme.php:197 +#: src/Content/Widget.php:68 src/Module/Contact.php:441 +#: src/Module/Directory.php:83 view/theme/vier/theme.php:185 msgid "Find" msgstr "Trova" -#: src/Content/Widget.php:83 src/Module/Contact/Suggestions.php:73 -#: view/theme/vier/theme.php:198 +#: src/Content/Widget.php:69 src/Module/Contact/Suggestions.php:59 +#: view/theme/vier/theme.php:186 msgid "Friend Suggestions" msgstr "Contatti suggeriti" -#: src/Content/Widget.php:84 view/theme/vier/theme.php:199 +#: src/Content/Widget.php:70 view/theme/vier/theme.php:187 msgid "Similar Interests" msgstr "Interessi simili" -#: src/Content/Widget.php:85 view/theme/vier/theme.php:200 +#: src/Content/Widget.php:71 view/theme/vier/theme.php:188 msgid "Random Profile" msgstr "Profilo Casuale" -#: src/Content/Widget.php:86 view/theme/vier/theme.php:201 +#: src/Content/Widget.php:72 view/theme/vier/theme.php:189 msgid "Invite Friends" msgstr "Invita amici" -#: src/Content/Widget.php:87 src/Module/Directory.php:88 -#: view/theme/vier/theme.php:202 +#: src/Content/Widget.php:73 src/Module/Directory.php:75 +#: view/theme/vier/theme.php:190 msgid "Global Directory" msgstr "Elenco globale" -#: src/Content/Widget.php:89 view/theme/vier/theme.php:204 +#: src/Content/Widget.php:75 view/theme/vier/theme.php:192 msgid "Local Directory" msgstr "Elenco Locale" -#: src/Content/Widget.php:218 +#: src/Content/Widget.php:196 msgid "Everyone" msgstr "Chiunque" -#: src/Content/Widget.php:243 src/Module/Contact.php:423 +#: src/Content/Widget.php:221 src/Module/Contact.php:404 msgid "No relationship" msgstr "" -#: src/Content/Widget.php:248 +#: src/Content/Widget.php:226 msgid "Relationships" msgstr "Relazioni" -#: src/Content/Widget.php:250 src/Module/Circle.php:294 -#: src/Module/Contact.php:344 +#: src/Content/Widget.php:228 src/Module/Circle.php:280 +#: src/Module/Contact.php:325 msgid "All Contacts" msgstr "Tutti i contatti" -#: src/Content/Widget.php:291 +#: src/Content/Widget.php:269 msgid "All Protocols" msgstr "Tutti i Protocolli" -#: src/Content/Widget.php:321 src/Content/Widget.php:352 +#: src/Content/Widget.php:299 src/Content/Widget.php:330 msgid "Everything" msgstr "Tutto" -#: src/Content/Widget.php:350 +#: src/Content/Widget.php:328 msgid "Categories" msgstr "Categorie" -#: src/Content/Widget.php:407 +#: src/Content/Widget.php:385 #, php-format msgid "%d contact in common" msgid_plural "%d contacts in common" @@ -2442,47 +2448,47 @@ msgstr[0] "%d contatto in comune" msgstr[1] "%d contatti in comune" msgstr[2] "%d contatti in comune" -#: src/Content/Widget.php:515 +#: src/Content/Widget.php:493 msgid "On this date" msgstr "" -#: src/Content/Widget.php:535 +#: src/Content/Widget.php:513 msgid "Persons" msgstr "Persone" -#: src/Content/Widget.php:536 +#: src/Content/Widget.php:514 msgid "Organisations" msgstr "Organizzazioni" -#: src/Content/Widget.php:537 src/Model/Contact.php:1729 +#: src/Content/Widget.php:515 src/Model/Contact.php:1747 msgid "News" msgstr "Notizie" -#: src/Content/Widget.php:539 +#: src/Content/Widget.php:517 msgid "Relays" msgstr "" -#: src/Content/Widget.php:546 src/Module/Moderation/BaseUsers.php:69 +#: src/Content/Widget.php:524 src/Module/Moderation/BaseUsers.php:56 msgid "All" msgstr "Tutto" -#: src/Content/Widget/CalendarExport.php:56 +#: src/Content/Widget/CalendarExport.php:42 msgid "Export" msgstr "Esporta" -#: src/Content/Widget/CalendarExport.php:57 +#: src/Content/Widget/CalendarExport.php:43 msgid "Export calendar as ical" msgstr "Esporta il calendario in formato ical" -#: src/Content/Widget/CalendarExport.php:58 +#: src/Content/Widget/CalendarExport.php:44 msgid "Export calendar as csv" msgstr "Esporta il calendario in formato csv" -#: src/Content/Widget/ContactBlock.php:79 +#: src/Content/Widget/ContactBlock.php:65 msgid "No contacts" msgstr "Nessun contatto" -#: src/Content/Widget/ContactBlock.php:110 +#: src/Content/Widget/ContactBlock.php:96 #, php-format msgid "%d Contact" msgid_plural "%d Contacts" @@ -2490,15 +2496,15 @@ msgstr[0] "%d contatto" msgstr[1] "%d contatti" msgstr[2] "%d contatti" -#: src/Content/Widget/ContactBlock.php:127 +#: src/Content/Widget/ContactBlock.php:113 msgid "View Contacts" msgstr "Visualizza i contatti" -#: src/Content/Widget/SavedSearches.php:47 +#: src/Content/Widget/SavedSearches.php:33 msgid "Remove term" msgstr "Rimuovi termine" -#: src/Content/Widget/TrendingTags.php:53 +#: src/Content/Widget/TrendingTags.php:39 #, php-format msgid "Trending Tags (last %d hour)" msgid_plural "Trending Tags (last %d hours)" @@ -2506,138 +2512,138 @@ msgstr[0] "Etichette di Tendenza (ultima %d ora)" msgstr[1] "Etichette di Tendenza (ultime %d ore)" msgstr[2] "Etichette di Tendenza (ultime %d ore)" -#: src/Content/Widget/TrendingTags.php:54 +#: src/Content/Widget/TrendingTags.php:40 msgid "More Trending Tags" msgstr "Più Etichette di Tendenza" -#: src/Content/Widget/VCard.php:105 src/Model/Contact.php:1196 -#: src/Model/Profile.php:462 +#: src/Content/Widget/VCard.php:91 src/Model/Contact.php:1212 +#: src/Model/Profile.php:441 msgid "Post to group" msgstr "" -#: src/Content/Widget/VCard.php:110 src/Model/Contact.php:1200 -#: src/Model/Profile.php:466 src/Module/Moderation/Item/Source.php:85 +#: src/Content/Widget/VCard.php:96 src/Model/Contact.php:1216 +#: src/Model/Profile.php:445 src/Module/Moderation/Item/Source.php:77 msgid "Mention" msgstr "Menzione" -#: src/Content/Widget/VCard.php:120 src/Model/Profile.php:381 -#: src/Module/Contact/Profile.php:414 src/Module/Profile/Profile.php:199 +#: src/Content/Widget/VCard.php:106 src/Model/Profile.php:360 +#: src/Module/Contact/Profile.php:414 src/Module/Profile/Profile.php:187 msgid "XMPP:" msgstr "XMPP:" -#: src/Content/Widget/VCard.php:121 src/Model/Profile.php:382 -#: src/Module/Contact/Profile.php:416 src/Module/Profile/Profile.php:203 +#: src/Content/Widget/VCard.php:107 src/Model/Profile.php:361 +#: src/Module/Contact/Profile.php:416 src/Module/Profile/Profile.php:191 msgid "Matrix:" msgstr "Matrix:" -#: src/Content/Widget/VCard.php:122 src/Model/Event.php:82 -#: src/Model/Event.php:109 src/Model/Event.php:471 src/Model/Event.php:960 -#: src/Model/Profile.php:376 src/Module/Contact/Profile.php:412 -#: src/Module/Directory.php:147 src/Module/Notifications/Introductions.php:187 -#: src/Module/Profile/Profile.php:221 +#: src/Content/Widget/VCard.php:108 src/Model/Event.php:68 +#: src/Model/Event.php:95 src/Model/Event.php:457 src/Model/Event.php:946 +#: src/Model/Profile.php:355 src/Module/Contact/Profile.php:412 +#: src/Module/Directory.php:134 src/Module/Notifications/Introductions.php:179 +#: src/Module/Profile/Profile.php:209 msgid "Location:" msgstr "Posizione:" -#: src/Content/Widget/VCard.php:125 src/Model/Profile.php:490 -#: src/Module/Notifications/Introductions.php:201 +#: src/Content/Widget/VCard.php:111 src/Model/Profile.php:469 +#: src/Module/Notifications/Introductions.php:193 msgid "Network:" msgstr "Rete:" -#: src/Content/Widget/VCard.php:129 src/Model/Contact.php:1228 -#: src/Model/Contact.php:1240 src/Model/Profile.php:479 +#: src/Content/Widget/VCard.php:115 src/Model/Contact.php:1244 +#: src/Model/Contact.php:1256 src/Model/Profile.php:458 #: src/Module/Contact/Profile.php:470 msgid "Unfollow" msgstr "Smetti di seguire" -#: src/Content/Widget/VCard.php:135 src/Model/Contact.php:1198 -#: src/Model/Profile.php:464 +#: src/Content/Widget/VCard.php:121 src/Model/Contact.php:1214 +#: src/Model/Profile.php:443 msgid "View group" msgstr "" -#: src/Core/ACL.php:166 src/Module/Profile/Profile.php:269 +#: src/Core/ACL.php:152 src/Module/Profile/Profile.php:257 msgid "Yourself" msgstr "Te stesso" -#: src/Core/ACL.php:202 src/Module/Privacy/PermissionTooltip.php:170 -#: src/Module/Privacy/PermissionTooltip.php:192 +#: src/Core/ACL.php:188 src/Module/Privacy/PermissionTooltip.php:156 +#: src/Module/Privacy/PermissionTooltip.php:178 msgid "Mutuals" msgstr "Amici reciproci" -#: src/Core/ACL.php:294 +#: src/Core/ACL.php:280 msgid "Post to Email" msgstr "Invia a email" -#: src/Core/ACL.php:321 src/Module/Privacy/PermissionTooltip.php:117 -#: src/Module/Privacy/PermissionTooltip.php:231 +#: src/Core/ACL.php:307 src/Module/Privacy/PermissionTooltip.php:103 +#: src/Module/Privacy/PermissionTooltip.php:217 msgid "Public" msgstr "Pubblico" -#: src/Core/ACL.php:322 +#: src/Core/ACL.php:308 msgid "" "This content will be shown to all your followers and can be seen in the " "community pages and by anyone with its link." msgstr "Questo contenuto sarà mostrato a tutti i tuoi seguaci e può essere visto nelle pagine della communità e da chiunque con questo collegamento." -#: src/Core/ACL.php:323 src/Module/Privacy/PermissionTooltip.php:119 +#: src/Core/ACL.php:309 src/Module/Privacy/PermissionTooltip.php:105 msgid "Limited/Private" msgstr "Limitato/Privato" -#: src/Core/ACL.php:324 +#: src/Core/ACL.php:310 msgid "" "This content will be shown only to the people in the first box, to the " "exception of the people mentioned in the second box. It won't appear " "anywhere public." msgstr "Questo contenuto sarà mostrato solo alle persone nel primo campo, ad eccezione delle persone menzionate nel secondo campo. Non apparirà da qualsiasi parte in pubblico." -#: src/Core/ACL.php:324 +#: src/Core/ACL.php:310 msgid "" "Start typing the name of a contact or a circle to show a filtered list. You " "can also mention the special circles \"Followers\" and \"Mutuals\"." msgstr "" -#: src/Core/ACL.php:325 +#: src/Core/ACL.php:311 msgid "Show to:" msgstr "Mostra a:" -#: src/Core/ACL.php:326 +#: src/Core/ACL.php:312 msgid "Except to:" msgstr "Ad eccezione di:" -#: src/Core/ACL.php:327 src/Module/Post/Edit.php:154 +#: src/Core/ACL.php:313 src/Module/Post/Edit.php:140 msgid "CC: email addresses" msgstr "CC: indirizzi email" -#: src/Core/ACL.php:328 src/Module/Post/Edit.php:160 +#: src/Core/ACL.php:314 src/Module/Post/Edit.php:146 msgid "Example: bob@example.com, mary@example.com" msgstr "Esempio: bob@example.com, mary@example.com" -#: src/Core/ACL.php:329 +#: src/Core/ACL.php:315 msgid "Connectors" msgstr "Connettori" -#: src/Core/Installer.php:180 +#: src/Core/Installer.php:166 msgid "" "The database configuration file \"config/local.config.php\" could not be " "written. Please use the enclosed text to create a configuration file in your" " web server root." msgstr "Il file di configurazione del database \"config/local.config.php\" non può essere scritto. Usa il testo allegato per creare un file di configurazione nell tuo server web." -#: src/Core/Installer.php:197 +#: src/Core/Installer.php:183 msgid "" "You may need to import the file \"database.sql\" manually using phpmyadmin " "or mysql." msgstr "Potresti dover importare il file \"database.sql\" manualmente con phpmyadmin o mysql" -#: src/Core/Installer.php:198 src/Module/Install.php:207 -#: src/Module/Install.php:350 +#: src/Core/Installer.php:184 src/Module/Install.php:193 +#: src/Module/Install.php:336 msgid "Please see the file \"doc/INSTALL.md\"." msgstr "Per favore leggi il file \"doc/INSTALL.md\"." -#: src/Core/Installer.php:259 +#: src/Core/Installer.php:245 msgid "Could not find a command line version of PHP in the web server PATH." msgstr "Non riesco a trovare la versione di PHP da riga di comando nel PATH del server web" -#: src/Core/Installer.php:260 +#: src/Core/Installer.php:246 msgid "" "If you don't have a command line version of PHP installed on your server, " "you will not be able to run the background processing. See 'Setup the worker'" msgstr "Se non hai una versione a riga di comando di PHP installata sul tuo server, non sarai in grado di eseguire i processi in background. Vedi 'Imposta i worker'" -#: src/Core/Installer.php:265 +#: src/Core/Installer.php:251 msgid "PHP executable path" msgstr "Percorso eseguibile PHP" -#: src/Core/Installer.php:265 +#: src/Core/Installer.php:251 msgid "" "Enter full path to php executable. You can leave this blank to continue the " "installation." msgstr "Inserisci il percorso completo all'eseguibile di php. Puoi lasciare bianco questo campo per continuare l'installazione." -#: src/Core/Installer.php:270 +#: src/Core/Installer.php:256 msgid "Command line PHP" msgstr "PHP da riga di comando" -#: src/Core/Installer.php:279 +#: src/Core/Installer.php:265 msgid "PHP executable is not the php cli binary (could be cgi-fgci version)" msgstr "L'eseguibile PHP non è il binario php cli (potrebbe essere la versione cgi-fcgi)" -#: src/Core/Installer.php:280 +#: src/Core/Installer.php:266 msgid "Found PHP version: " msgstr "Versione PHP:" -#: src/Core/Installer.php:282 +#: src/Core/Installer.php:268 msgid "PHP cli binary" msgstr "Binario PHP cli" -#: src/Core/Installer.php:295 +#: src/Core/Installer.php:281 msgid "" "The command line version of PHP on your system does not have " "\"register_argc_argv\" enabled." msgstr "La versione da riga di comando di PHP nel sistema non ha abilitato \"register_argc_argv\"." -#: src/Core/Installer.php:296 +#: src/Core/Installer.php:282 msgid "This is required for message delivery to work." msgstr "E' obbligatorio per far funzionare la consegna dei messaggi." -#: src/Core/Installer.php:301 +#: src/Core/Installer.php:287 msgid "PHP register_argc_argv" msgstr "PHP register_argc_argv" -#: src/Core/Installer.php:333 +#: src/Core/Installer.php:319 msgid "" "Error: the \"openssl_pkey_new\" function on this system is not able to " "generate encryption keys" msgstr "Errore: la funzione \"openssl_pkey_new\" in questo sistema non è in grado di generare le chiavi di criptazione" -#: src/Core/Installer.php:334 +#: src/Core/Installer.php:320 msgid "" "If running under Windows, please see " "\"http://www.php.net/manual/en/openssl.installation.php\"." msgstr "Se stai eseguendo friendika su windows, guarda \"http://www.php.net/manual/en/openssl.installation.php\"." -#: src/Core/Installer.php:337 +#: src/Core/Installer.php:323 msgid "Generate encryption keys" msgstr "Genera chiavi di criptazione" -#: src/Core/Installer.php:388 +#: src/Core/Installer.php:374 msgid "" "Error: Apache webserver mod-rewrite module is required but not installed." msgstr "Errore: E' il modulo mod-rewrite di Apache è richiesto, ma non risulta installato" -#: src/Core/Installer.php:392 +#: src/Core/Installer.php:378 msgid "Apache mod_rewrite module" msgstr "Modulo mod_rewrite di Apache" -#: src/Core/Installer.php:398 +#: src/Core/Installer.php:384 msgid "Error: PDO or MySQLi PHP module required but not installed." msgstr "Errore: uno dei due moduli PHP PDO o MySQLi è richiesto ma non installato." -#: src/Core/Installer.php:402 +#: src/Core/Installer.php:388 msgid "Error: The MySQL driver for PDO is not installed." msgstr "Errore: il driver MySQL per PDO non è installato." -#: src/Core/Installer.php:405 +#: src/Core/Installer.php:391 msgid "PDO or MySQLi PHP module" msgstr "modulo PHP PDO o MySQLi" -#: src/Core/Installer.php:411 +#: src/Core/Installer.php:397 msgid "Error: The IntlChar module is not installed." msgstr "" -#: src/Core/Installer.php:414 +#: src/Core/Installer.php:400 msgid "IntlChar PHP module" msgstr "" -#: src/Core/Installer.php:422 +#: src/Core/Installer.php:408 msgid "Error, XML PHP module required but not installed." msgstr "Errore, il modulo PHP XML è richiesto ma non installato." -#: src/Core/Installer.php:426 +#: src/Core/Installer.php:412 msgid "XML PHP module" msgstr "Modulo PHP XML" -#: src/Core/Installer.php:429 +#: src/Core/Installer.php:415 msgid "libCurl PHP module" msgstr "modulo PHP libCurl" -#: src/Core/Installer.php:430 +#: src/Core/Installer.php:416 msgid "Error: libCURL PHP module required but not installed." msgstr "Errore: il modulo libCURL di PHP è richiesto, ma non risulta installato." -#: src/Core/Installer.php:436 +#: src/Core/Installer.php:422 msgid "GD graphics PHP module" msgstr "modulo PHP GD graphics" -#: src/Core/Installer.php:437 +#: src/Core/Installer.php:423 msgid "" "Error: GD graphics PHP module with JPEG support required but not installed." msgstr "Errore: Il modulo GD graphics di PHP con supporto a JPEG è richiesto, ma non risulta installato." -#: src/Core/Installer.php:443 +#: src/Core/Installer.php:429 msgid "OpenSSL PHP module" msgstr "modulo PHP OpenSSL" -#: src/Core/Installer.php:444 +#: src/Core/Installer.php:430 msgid "Error: openssl PHP module required but not installed." msgstr "Errore: il modulo openssl di PHP è richiesto, ma non risulta installato." -#: src/Core/Installer.php:450 +#: src/Core/Installer.php:436 msgid "mb_string PHP module" msgstr "modulo PHP mb_string" -#: src/Core/Installer.php:451 +#: src/Core/Installer.php:437 msgid "Error: mb_string PHP module required but not installed." msgstr "Errore: il modulo PHP mb_string è richiesto, ma non risulta installato." -#: src/Core/Installer.php:457 +#: src/Core/Installer.php:443 msgid "iconv PHP module" msgstr "modulo PHP iconv" -#: src/Core/Installer.php:458 +#: src/Core/Installer.php:444 msgid "Error: iconv PHP module required but not installed." msgstr "Errore: il modulo PHP iconv è richiesto ma non installato." -#: src/Core/Installer.php:464 +#: src/Core/Installer.php:450 msgid "POSIX PHP module" msgstr "mooduo PHP POSIX" -#: src/Core/Installer.php:465 +#: src/Core/Installer.php:451 msgid "Error: POSIX PHP module required but not installed." msgstr "Errore, il modulo PHP POSIX è richiesto ma non installato." -#: src/Core/Installer.php:471 +#: src/Core/Installer.php:457 msgid "Program execution functions" msgstr "Funzioni di esecuzione del programma" -#: src/Core/Installer.php:472 +#: src/Core/Installer.php:458 msgid "" "Error: Program execution functions (proc_open) required but not enabled." msgstr "Errore: Funzioni di esecuzione programma (proc_open) richieste ma non abilitate." -#: src/Core/Installer.php:478 +#: src/Core/Installer.php:464 msgid "JSON PHP module" msgstr "modulo PHP JSON" -#: src/Core/Installer.php:479 +#: src/Core/Installer.php:465 msgid "Error: JSON PHP module required but not installed." msgstr "Errore: il modulo PHP JSON è richiesto ma non installato." -#: src/Core/Installer.php:485 +#: src/Core/Installer.php:471 msgid "File Information PHP module" msgstr "Modulo PHP File Information" -#: src/Core/Installer.php:486 +#: src/Core/Installer.php:472 msgid "Error: File Information PHP module required but not installed." msgstr "Errore: il modulo PHP File Information è richiesto ma non è installato." -#: src/Core/Installer.php:492 +#: src/Core/Installer.php:478 msgid "GNU Multiple Precision PHP module" msgstr "" -#: src/Core/Installer.php:493 +#: src/Core/Installer.php:479 msgid "Error: GNU Multiple Precision PHP module required but not installed." msgstr "" -#: src/Core/Installer.php:499 +#: src/Core/Installer.php:485 msgid "IDN Functions PHP module" msgstr "" -#: src/Core/Installer.php:500 +#: src/Core/Installer.php:486 msgid "Error: IDN Functions PHP module required but not installed." msgstr "" -#: src/Core/Installer.php:523 +#: src/Core/Installer.php:509 msgid "" "The web installer needs to be able to create a file called " "\"local.config.php\" in the \"config\" folder of your web server and it is " "unable to do so." msgstr "L'installer web deve essere in grado di creare un file chiamato \"local.config.php\" nella cartella \"config\" del tuo server web, ma non è in grado di farlo." -#: src/Core/Installer.php:524 +#: src/Core/Installer.php:510 msgid "" "This is most often a permission setting, as the web server may not be able " "to write files in your folder - even if you can." msgstr "Ciò è dovuto spesso a impostazioni di permessi, dato che il web server può non essere in grado di scrivere il file nella tua cartella, anche se tu puoi." -#: src/Core/Installer.php:525 +#: src/Core/Installer.php:511 msgid "" "At the end of this procedure, we will give you a text to save in a file " "named local.config.php in your Friendica \"config\" folder." msgstr "Alla fine di questa procedura, ti daremo un testo da salvare in un file chiamato \"local.config.php\" nella cartella \"config\" della tua installazione di Friendica." -#: src/Core/Installer.php:526 +#: src/Core/Installer.php:512 msgid "" "You can alternatively skip this procedure and perform a manual installation." " Please see the file \"doc/INSTALL.md\" for instructions." msgstr "Puoi in alternativa saltare questa procedura ed eseguire l'installazione manualmente. Vedi il file \"doc/INSTALL.md\" per le istruzioni." -#: src/Core/Installer.php:529 +#: src/Core/Installer.php:515 msgid "config/local.config.php is writable" msgstr "config/local.config.php è scrivibile" -#: src/Core/Installer.php:549 +#: src/Core/Installer.php:535 msgid "" "Friendica uses the Smarty3 template engine to render its web views. Smarty3 " "compiles templates to PHP to speed up rendering." msgstr "Friendica usa il motore di template Smarty3 per renderizzare le sue pagine web. Smarty3 compila i template in PHP per velocizzare il rendering." -#: src/Core/Installer.php:550 +#: src/Core/Installer.php:536 msgid "" "In order to store these compiled templates, the web server needs to have " "write access to the directory view/smarty3/ under the Friendica top level " "folder." msgstr "Per salvare questi template compilati, il server werb ha bisogno dell'accesso in scrittura alla cartella view/smarty3/ nella cartella principale dei Friendica." -#: src/Core/Installer.php:551 +#: src/Core/Installer.php:537 msgid "" "Please ensure that the user that your web server runs as (e.g. www-data) has" " write access to this folder." msgstr "Per favore, controlla che l'utente con cui il tuo server web gira (es www-data) ha accesso in scrittura a questa cartella." -#: src/Core/Installer.php:552 +#: src/Core/Installer.php:538 msgid "" "Note: as a security measure, you should give the web server write access to " "view/smarty3/ only--not the template files (.tpl) that it contains." msgstr "Nota: come misura di sicurezza, dovresti dare accesso in scrittura solo alla cartella view/smarty3, non ai template (.tpl) che contiene." -#: src/Core/Installer.php:555 +#: src/Core/Installer.php:541 msgid "view/smarty3 is writable" msgstr "view/smarty3 è scrivibile" -#: src/Core/Installer.php:583 +#: src/Core/Installer.php:569 msgid "" "Url rewrite in .htaccess seems not working. Make sure you copied .htaccess-" "dist to .htaccess." msgstr "La riscrittura degli url in .htaccess sembra non funzionare. Controlla di aver copiato .htaccess-dist in .htaccess." -#: src/Core/Installer.php:584 +#: src/Core/Installer.php:570 msgid "" "In some circumstances (like running inside containers), you can skip this " "error." msgstr "In alcune circostanze (come il funzionamento dentro a contenitori), puoi ignorare questo errore." -#: src/Core/Installer.php:586 +#: src/Core/Installer.php:572 msgid "Error message from Curl when fetching" msgstr "Messaggio di errore da Curl durante la richiesta" -#: src/Core/Installer.php:592 +#: src/Core/Installer.php:578 msgid "Url rewrite is working" msgstr "La riscrittura degli url funziona" -#: src/Core/Installer.php:621 +#: src/Core/Installer.php:607 msgid "" "The detection of TLS to secure the communication between the browser and the" " new Friendica server failed." msgstr "Il rilevamento di TLS per proteggere le comunicazioni tra il browser e il nuovo server Friendica è fallito." -#: src/Core/Installer.php:622 +#: src/Core/Installer.php:608 msgid "" "It is highly encouraged to use Friendica only over a secure connection as " "sensitive information like passwords will be transmitted." msgstr "È altamente incoraggiato usare Friendica solo attraverso una connessione sicura, dato che saranno trasmesse informazioni sensibili, come le password." -#: src/Core/Installer.php:623 +#: src/Core/Installer.php:609 msgid "Please ensure that the connection to the server is secure." msgstr "Assicurati che la connessione al server sia sicura." -#: src/Core/Installer.php:624 +#: src/Core/Installer.php:610 msgid "No TLS detected" msgstr "TLS non rlevato" -#: src/Core/Installer.php:626 +#: src/Core/Installer.php:612 msgid "TLS detected" msgstr "TLS rilevato" -#: src/Core/Installer.php:643 +#: src/Core/Installer.php:629 msgid "ImageMagick PHP extension is not installed" msgstr "L'estensione PHP ImageMagick non è installata" -#: src/Core/Installer.php:645 +#: src/Core/Installer.php:631 msgid "ImageMagick PHP extension is installed" msgstr "L'estensione PHP ImageMagick è installata" -#: src/Core/Installer.php:666 +#: src/Core/Installer.php:652 msgid "Database already in use." msgstr "Database già in uso." -#: src/Core/Installer.php:671 +#: src/Core/Installer.php:657 msgid "Could not connect to database." msgstr " Impossibile collegarsi con il database." -#: src/Core/L10n.php:444 src/Model/Item.php:2300 +#: src/Core/L10n.php:430 src/Model/Item.php:2315 msgid "Undetermined" msgstr "" -#: src/Core/L10n.php:451 +#: src/Core/L10n.php:437 #, php-format msgid "%s (%s)" msgstr "" -#: src/Core/L10n.php:499 src/Model/Event.php:430 -#: src/Module/Settings/Display.php:284 +#: src/Core/L10n.php:485 src/Model/Event.php:416 +#: src/Module/Settings/Display.php:270 msgid "Monday" msgstr "Lunedì" -#: src/Core/L10n.php:499 src/Model/Event.php:431 -#: src/Module/Settings/Display.php:285 +#: src/Core/L10n.php:485 src/Model/Event.php:417 +#: src/Module/Settings/Display.php:271 msgid "Tuesday" msgstr "Martedì" -#: src/Core/L10n.php:499 src/Model/Event.php:432 -#: src/Module/Settings/Display.php:286 +#: src/Core/L10n.php:485 src/Model/Event.php:418 +#: src/Module/Settings/Display.php:272 msgid "Wednesday" msgstr "Mercoledì" -#: src/Core/L10n.php:499 src/Model/Event.php:433 -#: src/Module/Settings/Display.php:287 +#: src/Core/L10n.php:485 src/Model/Event.php:419 +#: src/Module/Settings/Display.php:273 msgid "Thursday" msgstr "Giovedì" -#: src/Core/L10n.php:499 src/Model/Event.php:434 -#: src/Module/Settings/Display.php:288 +#: src/Core/L10n.php:485 src/Model/Event.php:420 +#: src/Module/Settings/Display.php:274 msgid "Friday" msgstr "Venerdì" -#: src/Core/L10n.php:499 src/Model/Event.php:435 -#: src/Module/Settings/Display.php:289 +#: src/Core/L10n.php:485 src/Model/Event.php:421 +#: src/Module/Settings/Display.php:275 msgid "Saturday" msgstr "Sabato" -#: src/Core/L10n.php:499 src/Model/Event.php:429 -#: src/Module/Settings/Display.php:283 +#: src/Core/L10n.php:485 src/Model/Event.php:415 +#: src/Module/Settings/Display.php:269 msgid "Sunday" msgstr "Domenica" -#: src/Core/L10n.php:503 src/Model/Event.php:450 +#: src/Core/L10n.php:489 src/Model/Event.php:436 msgid "January" msgstr "Gennaio" -#: src/Core/L10n.php:503 src/Model/Event.php:451 +#: src/Core/L10n.php:489 src/Model/Event.php:437 msgid "February" msgstr "Febbraio" -#: src/Core/L10n.php:503 src/Model/Event.php:452 +#: src/Core/L10n.php:489 src/Model/Event.php:438 msgid "March" msgstr "Marzo" -#: src/Core/L10n.php:503 src/Model/Event.php:453 +#: src/Core/L10n.php:489 src/Model/Event.php:439 msgid "April" msgstr "Aprile" -#: src/Core/L10n.php:503 src/Core/L10n.php:522 src/Model/Event.php:441 +#: src/Core/L10n.php:489 src/Core/L10n.php:508 src/Model/Event.php:427 msgid "May" msgstr "Maggio" -#: src/Core/L10n.php:503 src/Model/Event.php:454 +#: src/Core/L10n.php:489 src/Model/Event.php:440 msgid "June" msgstr "Giugno" -#: src/Core/L10n.php:503 src/Model/Event.php:455 +#: src/Core/L10n.php:489 src/Model/Event.php:441 msgid "July" msgstr "Luglio" -#: src/Core/L10n.php:503 src/Model/Event.php:456 +#: src/Core/L10n.php:489 src/Model/Event.php:442 msgid "August" msgstr "Agosto" -#: src/Core/L10n.php:503 src/Model/Event.php:457 +#: src/Core/L10n.php:489 src/Model/Event.php:443 msgid "September" msgstr "Settembre" -#: src/Core/L10n.php:503 src/Model/Event.php:458 +#: src/Core/L10n.php:489 src/Model/Event.php:444 msgid "October" msgstr "Ottobre" -#: src/Core/L10n.php:503 src/Model/Event.php:459 +#: src/Core/L10n.php:489 src/Model/Event.php:445 msgid "November" msgstr "Novembre" -#: src/Core/L10n.php:503 src/Model/Event.php:460 +#: src/Core/L10n.php:489 src/Model/Event.php:446 msgid "December" msgstr "Dicembre" -#: src/Core/L10n.php:518 src/Model/Event.php:422 +#: src/Core/L10n.php:504 src/Model/Event.php:408 msgid "Mon" msgstr "Lun" -#: src/Core/L10n.php:518 src/Model/Event.php:423 +#: src/Core/L10n.php:504 src/Model/Event.php:409 msgid "Tue" msgstr "Mar" -#: src/Core/L10n.php:518 src/Model/Event.php:424 +#: src/Core/L10n.php:504 src/Model/Event.php:410 msgid "Wed" msgstr "Mer" -#: src/Core/L10n.php:518 src/Model/Event.php:425 +#: src/Core/L10n.php:504 src/Model/Event.php:411 msgid "Thu" msgstr "Gio" -#: src/Core/L10n.php:518 src/Model/Event.php:426 +#: src/Core/L10n.php:504 src/Model/Event.php:412 msgid "Fri" msgstr "Ven" -#: src/Core/L10n.php:518 src/Model/Event.php:427 +#: src/Core/L10n.php:504 src/Model/Event.php:413 msgid "Sat" msgstr "Sab" -#: src/Core/L10n.php:518 src/Model/Event.php:421 +#: src/Core/L10n.php:504 src/Model/Event.php:407 msgid "Sun" msgstr "Dom" -#: src/Core/L10n.php:522 src/Model/Event.php:437 +#: src/Core/L10n.php:508 src/Model/Event.php:423 msgid "Jan" msgstr "Gen" -#: src/Core/L10n.php:522 src/Model/Event.php:438 +#: src/Core/L10n.php:508 src/Model/Event.php:424 msgid "Feb" msgstr "Feb" -#: src/Core/L10n.php:522 src/Model/Event.php:439 +#: src/Core/L10n.php:508 src/Model/Event.php:425 msgid "Mar" msgstr "Mar" -#: src/Core/L10n.php:522 src/Model/Event.php:440 +#: src/Core/L10n.php:508 src/Model/Event.php:426 msgid "Apr" msgstr "Apr" -#: src/Core/L10n.php:522 src/Model/Event.php:442 +#: src/Core/L10n.php:508 src/Model/Event.php:428 msgid "Jun" msgstr "Giu" -#: src/Core/L10n.php:522 src/Model/Event.php:443 +#: src/Core/L10n.php:508 src/Model/Event.php:429 msgid "Jul" msgstr "Lug" -#: src/Core/L10n.php:522 src/Model/Event.php:444 +#: src/Core/L10n.php:508 src/Model/Event.php:430 msgid "Aug" msgstr "Ago" -#: src/Core/L10n.php:522 +#: src/Core/L10n.php:508 msgid "Sep" msgstr "Set" -#: src/Core/L10n.php:522 src/Model/Event.php:446 +#: src/Core/L10n.php:508 src/Model/Event.php:432 msgid "Oct" msgstr "Ott" -#: src/Core/L10n.php:522 src/Model/Event.php:447 +#: src/Core/L10n.php:508 src/Model/Event.php:433 msgid "Nov" msgstr "Nov" -#: src/Core/L10n.php:522 src/Model/Event.php:448 +#: src/Core/L10n.php:508 src/Model/Event.php:434 msgid "Dec" msgstr "Dic" -#: src/Core/Logger/Util/LoggerSettingsCheck.php:60 +#: src/Core/Logger/Util/LoggerSettingsCheck.php:46 #, php-format msgid "The logfile '%s' is not usable. No logging possible (error: '%s')" msgstr "Il file di registro '%s' non è utilizzabile. Nessuna registrazione possibile (errore: '%s')" -#: src/Core/Logger/Util/LoggerSettingsCheck.php:85 +#: src/Core/Logger/Util/LoggerSettingsCheck.php:71 #, php-format msgid "" "The debug logfile '%s' is not usable. No logging possible (error: '%s')" msgstr "Il file di debug '%s' non è utilizzabile. Nessuna registrazione possibile (errore: '%s')" -#: src/Core/Renderer.php:92 src/Core/Renderer.php:121 -#: src/Core/Renderer.php:150 src/Core/Renderer.php:184 -#: src/Render/FriendicaSmartyEngine.php:60 +#: src/Core/Renderer.php:78 src/Core/Renderer.php:107 +#: src/Core/Renderer.php:136 src/Core/Renderer.php:170 +#: src/Render/FriendicaSmartyEngine.php:46 msgid "" "Friendica can't display this page at the moment, please contact the " "administrator." msgstr "Friendica non piò mostrare questa pagina al momento, per favore contatta l'amministratore." -#: src/Core/Renderer.php:146 +#: src/Core/Renderer.php:132 msgid "template engine cannot be registered without a name." msgstr "il motore di modelli non può essere registrato senza un nome." -#: src/Core/Renderer.php:180 +#: src/Core/Renderer.php:166 msgid "template engine is not registered!" msgstr "il motore di modelli non è registrato!" -#: src/Core/Storage/Type/FilesystemConfig.php:78 +#: src/Core/Storage/Type/FilesystemConfig.php:64 msgid "Storage base path" msgstr "Percorso base per lo storage" -#: src/Core/Storage/Type/FilesystemConfig.php:80 +#: src/Core/Storage/Type/FilesystemConfig.php:66 msgid "" "Folder where uploaded files are saved. For maximum security, This should be " "a path outside web server folder tree" msgstr "Cartella dove i file caricati vengono salvati. Per una maggiore sicurezza, questo dovrebbe essere un percorso separato dall'albero di cartelle servito dal server web." -#: src/Core/Storage/Type/FilesystemConfig.php:93 +#: src/Core/Storage/Type/FilesystemConfig.php:79 msgid "Enter a valid existing folder" msgstr "Inserisci una cartella valida ed esistente" -#: src/Core/Update.php:80 +#: src/Core/Update.php:66 #, php-format msgid "" "Updates from version %s are not supported. Please update at least to version" " 2021.01 and wait until the postupdate finished version 1383." msgstr "Gli aggiornamenti dalla versione %s non sono supportati. Per favore aggiorna almeno alla versione 2021.01 e attenti finchè il postupdate finisce alla versione 1383." -#: src/Core/Update.php:91 +#: src/Core/Update.php:77 #, php-format msgid "" "Updates from postupdate version %s are not supported. Please update at least" " to version 2021.01 and wait until the postupdate finished version 1383." msgstr "Gli aggiornamenti dal postupdate versione %s non sono supportati. Per favore aggiorna almeno alla versione 2021.01 e attenti finchè il postupdate finisce alla versione 1383." -#: src/Core/Update.php:183 +#: src/Core/Update.php:169 #, php-format msgid "%s: executing pre update %d" msgstr "%s: eseguendo pre aggiornamento %d" -#: src/Core/Update.php:225 +#: src/Core/Update.php:211 #, php-format msgid "%s: executing post update %d" msgstr "%s: eseguendo post aggiornamento %d" -#: src/Core/Update.php:299 +#: src/Core/Update.php:285 #, php-format msgid "Update %s failed. See error logs." msgstr "aggiornamento %s fallito. Guarda i log di errore." -#: src/Core/Update.php:339 +#: src/Core/Update.php:325 #, php-format msgid "" "\n" @@ -3190,49 +3196,49 @@ msgid "" "\t\t\t\tfriendica developer if you can not help me on your own. My database might be invalid." msgstr "\nGli sviluppatori di Friendica hanno rilasciato l'aggiornamento %s\nrecentemente, ma quando ho provato a installarlo, qualcosa è \nandato terribilmente storto.\nBisogna sistemare le cose e non posso farlo da solo.\nContatta uno sviluppatore se non sei in grado di aiutarmi. Il mio database potrebbe essere invalido." -#: src/Core/Update.php:345 +#: src/Core/Update.php:331 #, php-format msgid "The error message is\\n[pre]%s[/pre]" msgstr "Il messaggio di errore è\\n[pre]%s[/pre]" -#: src/Core/Update.php:349 src/Core/Update.php:377 +#: src/Core/Update.php:335 src/Core/Update.php:363 msgid "[Friendica Notify] Database update" msgstr "[Notifica di Friendica] Aggiornamento database" -#: src/Core/Update.php:371 +#: src/Core/Update.php:357 #, php-format msgid "" "\n" "\t\t\t\tThe friendica database was successfully updated from %s to %s." msgstr "" -#: src/Database/DBStructure.php:57 +#: src/Database/DBStructure.php:43 #, php-format msgid "The database version had been set to %s." msgstr "La versione del database è stata impostata come %s." -#: src/Database/DBStructure.php:82 +#: src/Database/DBStructure.php:68 #, php-format msgid "" "The post update is at version %d, it has to be at %d to safely drop the " "tables." msgstr "Il post aggiornamento è alla versione %d, deve essere a %d per fare il drop delle tabelle in sicurezza." -#: src/Database/DBStructure.php:95 +#: src/Database/DBStructure.php:81 msgid "No unused tables found." msgstr "Nessuna tabella inutilizzata trovata." -#: src/Database/DBStructure.php:100 +#: src/Database/DBStructure.php:86 msgid "" "These tables are not used for friendica and will be deleted when you execute" " \"dbstructure drop -e\":" msgstr "Queste tabelle non sono utilizzate da friendica e saranno eliminate quando eseguirai \"dbstructure drop -e\":" -#: src/Database/DBStructure.php:137 +#: src/Database/DBStructure.php:123 msgid "There are no tables on MyISAM or InnoDB with the Antelope file format." msgstr "Non ci sono tabelle su MyISAM o InnoDB con il formato file Antelope" -#: src/Database/DBStructure.php:161 +#: src/Database/DBStructure.php:147 #, php-format msgid "" "\n" @@ -3240,329 +3246,325 @@ msgid "" "%s\n" msgstr "\nErrore %d durante l'aggiornamento del database:\n%s\n" -#: src/Database/DBStructure.php:164 +#: src/Database/DBStructure.php:150 msgid "Errors encountered performing database changes: " msgstr "Errori riscontrati eseguendo le modifiche al database:" -#: src/Database/DBStructure.php:232 +#: src/Database/DBStructure.php:218 msgid "Another database update is currently running." msgstr "Un altro aggiornamento del database è attualmente in corso." -#: src/Database/DBStructure.php:236 +#: src/Database/DBStructure.php:222 #, php-format msgid "%s: Database update" msgstr "%s: Aggiornamento database" -#: src/Database/DBStructure.php:493 +#: src/Database/DBStructure.php:479 #, php-format msgid "%s: updating %s table." msgstr "%s: aggiornando la tabella %s." -#: src/Factory/Api/Mastodon/Error.php:42 +#: src/Factory/Api/Mastodon/Error.php:28 msgid "Record not found" msgstr "Voce non trovata" -#: src/Factory/Api/Mastodon/Error.php:49 +#: src/Factory/Api/Mastodon/Error.php:35 msgid "Unprocessable Entity" msgstr "Entità non processabile" -#: src/Factory/Api/Mastodon/Error.php:56 +#: src/Factory/Api/Mastodon/Error.php:42 msgid "Unauthorized" msgstr "Non autorizzato" -#: src/Factory/Api/Mastodon/Error.php:62 +#: src/Factory/Api/Mastodon/Error.php:48 msgid "" "Token is not authorized with a valid user or is missing a required scope" msgstr "Il token non è autorizzato con un utente valido o manca uno scopo richiesto" -#: src/Factory/Api/Mastodon/Error.php:69 +#: src/Factory/Api/Mastodon/Error.php:55 msgid "Internal Server Error" msgstr "Errore Interno del Server" -#: src/LegacyModule.php:63 +#: src/LegacyModule.php:49 #, php-format msgid "Legacy module file not found: %s" msgstr "File del modulo legacy non trovato: %s" -#: src/Model/Circle.php:106 +#: src/Model/Circle.php:92 msgid "" "A deleted circle with this name was revived. Existing item permissions " "may apply to this circle and any future members. If this is" " not what you intended, please create another circle with a different name." msgstr "" -#: src/Model/Circle.php:544 +#: src/Model/Circle.php:530 msgid "Everybody" msgstr "Tutti" -#: src/Model/Circle.php:563 +#: src/Model/Circle.php:549 msgid "edit" msgstr "modifica" -#: src/Model/Circle.php:600 +#: src/Model/Circle.php:586 msgid "add" msgstr "aggiungi" -#: src/Model/Circle.php:605 +#: src/Model/Circle.php:591 msgid "Edit circle" msgstr "" -#: src/Model/Circle.php:606 src/Module/Circle.php:195 +#: src/Model/Circle.php:592 src/Module/Circle.php:181 msgid "Contacts not in any circle" msgstr "" -#: src/Model/Circle.php:608 +#: src/Model/Circle.php:594 msgid "Create a new circle" msgstr "" -#: src/Model/Circle.php:609 src/Module/Circle.php:180 -#: src/Module/Circle.php:203 src/Module/Circle.php:278 +#: src/Model/Circle.php:595 src/Module/Circle.php:166 +#: src/Module/Circle.php:189 src/Module/Circle.php:264 msgid "Circle Name: " msgstr "" -#: src/Model/Circle.php:610 +#: src/Model/Circle.php:596 msgid "Edit circles" msgstr "" -#: src/Model/Contact.php:1247 src/Module/Moderation/Users/Pending.php:102 -#: src/Module/Notifications/Introductions.php:132 -#: src/Module/Notifications/Introductions.php:204 +#: src/Model/Contact.php:1263 src/Module/Moderation/Users/Pending.php:88 +#: src/Module/Notifications/Introductions.php:124 +#: src/Module/Notifications/Introductions.php:196 msgid "Approve" msgstr "Approva" -#: src/Model/Contact.php:1725 +#: src/Model/Contact.php:1743 msgid "Organisation" msgstr "Organizzazione" -#: src/Model/Contact.php:1733 +#: src/Model/Contact.php:1751 msgid "Group" msgstr "" -#: src/Model/Contact.php:1737 src/Module/Moderation/BaseUsers.php:131 +#: src/Model/Contact.php:1755 src/Module/Moderation/BaseUsers.php:120 msgid "Relay" msgstr "Relay" -#: src/Model/Contact.php:3046 +#: src/Model/Contact.php:3070 msgid "Disallowed profile URL." msgstr "Indirizzo profilo non permesso." -#: src/Model/Contact.php:3051 src/Module/Friendica.php:100 +#: src/Model/Contact.php:3075 src/Module/Friendica.php:86 msgid "Blocked domain" msgstr "Dominio bloccato" -#: src/Model/Contact.php:3056 +#: src/Model/Contact.php:3080 msgid "Connect URL missing." msgstr "URL di connessione mancante." -#: src/Model/Contact.php:3065 +#: src/Model/Contact.php:3089 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:3083 +#: src/Model/Contact.php:3107 #, php-format msgid "Expected network %s does not match actual network %s" msgstr "" -#: src/Model/Contact.php:3100 +#: src/Model/Contact.php:3124 msgid "This seems to be a relay account. They can't be followed by users." msgstr "" -#: src/Model/Contact.php:3107 +#: src/Model/Contact.php:3131 msgid "The profile address specified does not provide adequate information." msgstr "L'indirizzo del profilo specificato non fornisce adeguate informazioni." -#: src/Model/Contact.php:3109 +#: src/Model/Contact.php:3133 msgid "No compatible communication protocols or feeds were discovered." msgstr "Non sono stati trovati protocolli di comunicazione o feed compatibili." -#: src/Model/Contact.php:3112 +#: src/Model/Contact.php:3136 msgid "An author or name was not found." msgstr "Non è stato trovato un nome o un autore" -#: src/Model/Contact.php:3115 +#: src/Model/Contact.php:3139 msgid "No browser URL could be matched to this address." msgstr "Nessun URL può essere associato a questo indirizzo." -#: src/Model/Contact.php:3118 +#: src/Model/Contact.php:3142 msgid "" "Unable to match @-style Identity Address with a known protocol or email " "contact." msgstr "Impossibile l'indirizzo identità con un protocollo conosciuto o con un contatto email." -#: src/Model/Contact.php:3119 +#: src/Model/Contact.php:3143 msgid "Use mailto: in front of address to force email check." msgstr "Usa \"mailto:\" davanti all'indirizzo per forzare un controllo nelle email." -#: src/Model/Contact.php:3125 -msgid "" -"The profile address specified belongs to a network which has been disabled " -"on this site." -msgstr "L'indirizzo del profilo specificato appartiene a un network che è stato disabilitato su questo sito." - -#: src/Model/Contact.php:3130 +#: src/Model/Contact.php:3149 msgid "" "Limited profile. This person will be unable to receive direct/personal " "notifications from you." msgstr "Profilo limitato. Questa persona non sarà in grado di ricevere notifiche personali da te." -#: src/Model/Contact.php:3196 +#: src/Model/Contact.php:3208 msgid "Unable to retrieve contact information." msgstr "Impossibile recuperare informazioni sul contatto." -#: src/Model/Event.php:54 +#: src/Model/Event.php:40 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:942 +#: src/Model/Event.php:61 src/Model/Event.php:78 src/Model/Event.php:455 +#: src/Model/Event.php:928 msgid "Starts:" msgstr "Inizia:" -#: src/Model/Event.php:78 src/Model/Event.php:98 src/Model/Event.php:470 -#: src/Model/Event.php:946 +#: src/Model/Event.php:64 src/Model/Event.php:84 src/Model/Event.php:456 +#: src/Model/Event.php:932 msgid "Finishes:" msgstr "Finisce:" -#: src/Model/Event.php:419 +#: src/Model/Event.php:405 msgid "all-day" msgstr "tutto il giorno" -#: src/Model/Event.php:445 +#: src/Model/Event.php:431 msgid "Sept" msgstr "Set" -#: src/Model/Event.php:462 src/Module/Calendar/Show.php:128 -#: src/Util/Temporal.php:343 +#: src/Model/Event.php:448 src/Module/Calendar/Show.php:114 +#: src/Util/Temporal.php:329 msgid "today" msgstr "oggi" -#: src/Model/Event.php:463 src/Module/Calendar/Show.php:129 -#: src/Module/Settings/Display.php:294 src/Util/Temporal.php:353 +#: src/Model/Event.php:449 src/Module/Calendar/Show.php:115 +#: src/Module/Settings/Display.php:280 src/Util/Temporal.php:339 msgid "month" msgstr "mese" -#: src/Model/Event.php:464 src/Module/Calendar/Show.php:130 -#: src/Module/Settings/Display.php:295 src/Util/Temporal.php:354 +#: src/Model/Event.php:450 src/Module/Calendar/Show.php:116 +#: src/Module/Settings/Display.php:281 src/Util/Temporal.php:340 msgid "week" msgstr "settimana" -#: src/Model/Event.php:465 src/Module/Calendar/Show.php:131 -#: src/Module/Settings/Display.php:296 src/Util/Temporal.php:355 +#: src/Model/Event.php:451 src/Module/Calendar/Show.php:117 +#: src/Module/Settings/Display.php:282 src/Util/Temporal.php:341 msgid "day" msgstr "giorno" -#: src/Model/Event.php:467 +#: src/Model/Event.php:453 msgid "No events to display" msgstr "Nessun evento da mostrare" -#: src/Model/Event.php:516 src/Module/DFRN/Poll.php:47 src/Module/Feed.php:68 -#: src/Module/Update/Profile.php:56 +#: src/Model/Event.php:502 src/Module/Feed.php:56 +#: src/Module/Update/Profile.php:42 msgid "Access to this profile has been restricted." msgstr "L'accesso a questo profilo è stato limitato." -#: src/Model/Event.php:558 src/Module/Calendar/Event/Show.php:67 +#: src/Model/Event.php:544 src/Module/Calendar/Event/Show.php:53 msgid "Event not found." msgstr "" -#: src/Model/Event.php:637 +#: src/Model/Event.php:623 msgid "l, F j" msgstr "l j F" -#: src/Model/Event.php:664 +#: src/Model/Event.php:650 msgid "Edit event" msgstr "Modifica evento" -#: src/Model/Event.php:665 +#: src/Model/Event.php:651 msgid "Duplicate event" msgstr "Duplica evento" -#: src/Model/Event.php:666 +#: src/Model/Event.php:652 msgid "Delete event" msgstr "Elimina evento" -#: src/Model/Event.php:896 src/Module/Debug/Localtime.php:38 +#: src/Model/Event.php:882 src/Module/Debug/Localtime.php:24 msgid "l F d, Y \\@ g:i A" msgstr "l d F Y \\@ G:i" -#: src/Model/Event.php:897 +#: src/Model/Event.php:883 msgid "D g:i A" msgstr "D G:i" -#: src/Model/Event.php:898 +#: src/Model/Event.php:884 msgid "g:i A" msgstr "G:i" -#: src/Model/Event.php:961 src/Model/Event.php:963 +#: src/Model/Event.php:947 src/Model/Event.php:949 msgid "Show map" msgstr "Mostra mappa" -#: src/Model/Event.php:962 +#: src/Model/Event.php:948 msgid "Hide map" msgstr "Nascondi mappa" -#: src/Model/Event.php:1055 +#: src/Model/Event.php:1041 #, php-format msgid "%s's birthday" msgstr "Compleanno di %s" -#: src/Model/Event.php:1056 +#: src/Model/Event.php:1042 #, php-format msgid "Happy Birthday %s" msgstr "Buon compleanno %s" -#: src/Model/Item.php:2307 +#: src/Model/Item.php:2322 #, php-format msgid "%s (%s - %s): %s" msgstr "" -#: src/Model/Item.php:2309 +#: src/Model/Item.php:2324 #, php-format msgid "%s (%s): %s" msgstr "" -#: src/Model/Item.php:2312 +#: src/Model/Item.php:2327 #, php-format -msgid "Detected languages in this post:\\n%s" -msgstr "Lingue rilevate in questo messaggio:\\n%s" +msgid "" +"Detected languages in this post:\n" +"%s" +msgstr "" -#: src/Model/Item.php:3260 +#: src/Model/Item.php:3276 msgid "activity" msgstr "attività" -#: src/Model/Item.php:3262 +#: src/Model/Item.php:3278 msgid "comment" msgstr "commento" -#: src/Model/Item.php:3265 src/Module/Post/Tag/Add.php:123 +#: src/Model/Item.php:3281 src/Module/Post/Tag/Add.php:109 msgid "post" msgstr "messaggio" -#: src/Model/Item.php:3435 +#: src/Model/Item.php:3451 #, php-format msgid "%s is blocked" msgstr "" -#: src/Model/Item.php:3437 +#: src/Model/Item.php:3453 #, php-format msgid "%s is ignored" msgstr "" -#: src/Model/Item.php:3439 +#: src/Model/Item.php:3455 #, php-format msgid "Content from %s is collapsed" msgstr "" -#: src/Model/Item.php:3443 +#: src/Model/Item.php:3459 msgid "Sensitive content" msgstr "" -#: src/Model/Item.php:3912 +#: src/Model/Item.php:3928 msgid "bytes" msgstr "bytes" -#: src/Model/Item.php:3943 +#: src/Model/Item.php:3959 #, php-format msgid "%2$s (%3$d%%, %1$d vote)" msgid_plural "%2$s (%3$d%%, %1$d votes)" @@ -3570,7 +3572,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: src/Model/Item.php:3945 +#: src/Model/Item.php:3961 #, php-format msgid "%2$s (%1$d vote)" msgid_plural "%2$s (%1$d votes)" @@ -3578,7 +3580,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: src/Model/Item.php:3950 +#: src/Model/Item.php:3966 #, php-format msgid "%d voter. Poll end: %s" msgid_plural "%d voters. Poll end: %s" @@ -3586,7 +3588,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: src/Model/Item.php:3952 +#: src/Model/Item.php:3968 #, php-format msgid "%d voter." msgid_plural "%d voters." @@ -3594,241 +3596,241 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: src/Model/Item.php:3954 +#: src/Model/Item.php:3970 #, php-format msgid "Poll end: %s" msgstr "" -#: src/Model/Item.php:3995 src/Model/Item.php:3996 +#: src/Model/Item.php:4011 src/Model/Item.php:4012 msgid "View on separate page" msgstr "Vedi in una pagina separata" -#: src/Model/Mail.php:135 +#: src/Model/Mail.php:121 msgid "[no subject]" msgstr "[nessun oggetto]" -#: src/Model/Photo.php:1198 src/Module/Media/Photo/Upload.php:168 +#: src/Model/Photo.php:1194 src/Module/Media/Photo/Upload.php:154 msgid "Wall Photos" msgstr "Foto della bacheca" -#: src/Model/Profile.php:364 src/Module/Profile/Profile.php:283 -#: src/Module/Profile/Profile.php:285 +#: src/Model/Profile.php:343 src/Module/Profile/Profile.php:271 +#: src/Module/Profile/Profile.php:273 msgid "Edit profile" msgstr "Modifica il profilo" -#: src/Model/Profile.php:366 +#: src/Model/Profile.php:345 msgid "Change profile photo" msgstr "Cambia la foto del profilo" -#: src/Model/Profile.php:379 src/Module/Directory.php:152 -#: src/Module/Profile/Profile.php:209 +#: src/Model/Profile.php:358 src/Module/Directory.php:139 +#: src/Module/Profile/Profile.php:197 msgid "Homepage:" msgstr "Homepage:" -#: src/Model/Profile.php:380 src/Module/Contact/Profile.php:418 -#: src/Module/Notifications/Introductions.php:189 +#: src/Model/Profile.php:359 src/Module/Contact/Profile.php:418 +#: src/Module/Notifications/Introductions.php:181 msgid "About:" msgstr "Informazioni:" -#: src/Model/Profile.php:481 +#: src/Model/Profile.php:460 msgid "Atom feed" msgstr "Feed Atom" -#: src/Model/Profile.php:488 +#: src/Model/Profile.php:467 msgid "This website has been verified to belong to the same person." msgstr "" -#: src/Model/Profile.php:539 +#: src/Model/Profile.php:518 msgid "F d" msgstr "d F" -#: src/Model/Profile.php:603 src/Model/Profile.php:680 +#: src/Model/Profile.php:582 src/Model/Profile.php:663 msgid "[today]" msgstr "[oggi]" -#: src/Model/Profile.php:612 +#: src/Model/Profile.php:591 msgid "Birthday Reminders" msgstr "Promemoria compleanni" -#: src/Model/Profile.php:613 +#: src/Model/Profile.php:592 msgid "Birthdays this week:" msgstr "Compleanni questa settimana:" -#: src/Model/Profile.php:629 +#: src/Model/Profile.php:608 msgid "g A l F d" msgstr "g A l d F" -#: src/Model/Profile.php:667 +#: src/Model/Profile.php:650 msgid "[No description]" msgstr "[Nessuna descrizione]" -#: src/Model/Profile.php:693 +#: src/Model/Profile.php:676 msgid "Event Reminders" msgstr "Promemoria" -#: src/Model/Profile.php:694 +#: src/Model/Profile.php:677 msgid "Upcoming events the next 7 days:" msgstr "Eventi dei prossimi 7 giorni:" -#: src/Model/Profile.php:882 -#, php-format -msgid "OpenWebAuth: %1$s welcomes %2$s" -msgstr "OpenWebAuth: %1$s da il benvenuto a %2$s" - -#: src/Model/Profile.php:1022 +#: src/Model/Profile.php:789 msgid "Hometown:" msgstr "Paese natale:" -#: src/Model/Profile.php:1023 +#: src/Model/Profile.php:790 msgid "Marital Status:" msgstr "Stato Coniugale:" -#: src/Model/Profile.php:1024 +#: src/Model/Profile.php:791 msgid "With:" msgstr "Con:" -#: src/Model/Profile.php:1025 +#: src/Model/Profile.php:792 msgid "Since:" msgstr "Dal:" -#: src/Model/Profile.php:1026 +#: src/Model/Profile.php:793 msgid "Sexual Preference:" msgstr "Preferenze sessuali:" -#: src/Model/Profile.php:1027 +#: src/Model/Profile.php:794 msgid "Political Views:" msgstr "Orientamento politico:" -#: src/Model/Profile.php:1028 +#: src/Model/Profile.php:795 msgid "Religious Views:" msgstr "Orientamento religioso:" -#: src/Model/Profile.php:1029 +#: src/Model/Profile.php:796 msgid "Likes:" msgstr "Mi piace:" -#: src/Model/Profile.php:1030 +#: src/Model/Profile.php:797 msgid "Dislikes:" msgstr "Non mi piace:" -#: src/Model/Profile.php:1031 +#: src/Model/Profile.php:798 msgid "Title/Description:" msgstr "Breve descrizione (es. titolo, posizione, altro):" -#: src/Model/Profile.php:1032 src/Module/Admin/Summary.php:197 -#: src/Module/Moderation/Report/Create.php:280 -#: src/Module/Moderation/Summary.php:76 +#: src/Model/Profile.php:799 src/Module/Admin/Summary.php:183 +#: src/Module/Moderation/Report/Create.php:266 +#: src/Module/Moderation/Summary.php:62 msgid "Summary" msgstr "Sommario" -#: src/Model/Profile.php:1033 +#: src/Model/Profile.php:800 msgid "Musical interests" msgstr "Interessi musicali" -#: src/Model/Profile.php:1034 +#: src/Model/Profile.php:801 msgid "Books, literature" msgstr "Libri, letteratura" -#: src/Model/Profile.php:1035 +#: src/Model/Profile.php:802 msgid "Television" msgstr "Televisione" -#: src/Model/Profile.php:1036 +#: src/Model/Profile.php:803 msgid "Film/dance/culture/entertainment" msgstr "Film/danza/cultura/intrattenimento" -#: src/Model/Profile.php:1037 +#: src/Model/Profile.php:804 msgid "Hobbies/Interests" msgstr "Hobby/interessi" -#: src/Model/Profile.php:1038 +#: src/Model/Profile.php:805 msgid "Love/romance" msgstr "Amore" -#: src/Model/Profile.php:1039 +#: src/Model/Profile.php:806 msgid "Work/employment" msgstr "Lavoro/impiego" -#: src/Model/Profile.php:1040 +#: src/Model/Profile.php:807 msgid "School/education" msgstr "Scuola/educazione" -#: src/Model/Profile.php:1041 +#: src/Model/Profile.php:808 msgid "Contact information and Social Networks" msgstr "Informazioni su contatti e social network" -#: src/Model/User.php:233 src/Model/User.php:1303 +#: src/Model/Profile.php:856 +#, php-format +msgid "Responsible account: %s" +msgstr "" + +#: src/Model/User.php:217 src/Model/User.php:1310 msgid "SERIOUS ERROR: Generation of security keys failed." msgstr "ERRORE GRAVE: La generazione delle chiavi di sicurezza è fallita." -#: src/Model/User.php:733 src/Model/User.php:766 +#: src/Model/User.php:740 src/Model/User.php:773 msgid "Login failed" msgstr "Accesso fallito." -#: src/Model/User.php:798 +#: src/Model/User.php:805 msgid "Not enough information to authenticate" msgstr "Informazioni insufficienti per l'autenticazione" -#: src/Model/User.php:923 +#: src/Model/User.php:930 msgid "Password can't be empty" msgstr "La password non può essere vuota" -#: src/Model/User.php:965 +#: src/Model/User.php:972 msgid "Empty passwords are not allowed." msgstr "Password vuote non sono consentite." -#: src/Model/User.php:969 +#: src/Model/User.php:976 msgid "" "The new password has been exposed in a public data dump, please choose " "another." msgstr "La nuova password è stata esposta in un dump di dati pubblici, per favore scegline un'altra." -#: src/Model/User.php:973 +#: src/Model/User.php:980 msgid "The password length is limited to 72 characters." msgstr "" -#: src/Model/User.php:977 +#: src/Model/User.php:984 msgid "The password can't contain white spaces nor accentuated letters" msgstr "" -#: src/Model/User.php:1186 +#: src/Model/User.php:1193 msgid "Passwords do not match. Password unchanged." msgstr "Le password non corrispondono. Password non cambiata." -#: src/Model/User.php:1193 +#: src/Model/User.php:1200 msgid "An invitation is required." msgstr "E' richiesto un invito." -#: src/Model/User.php:1197 +#: src/Model/User.php:1204 msgid "Invitation could not be verified." msgstr "L'invito non può essere verificato." -#: src/Model/User.php:1205 +#: src/Model/User.php:1212 msgid "Invalid OpenID url" msgstr "Url OpenID non valido" -#: src/Model/User.php:1218 src/Security/Authentication.php:230 +#: src/Model/User.php:1225 src/Security/Authentication.php:214 msgid "" "We encountered a problem while logging in with the OpenID you provided. " "Please check the correct spelling of the ID." msgstr "Abbiamo incontrato un problema mentre contattavamo il server OpenID che ci hai fornito. Controlla di averlo scritto giusto." -#: src/Model/User.php:1218 src/Security/Authentication.php:230 +#: src/Model/User.php:1225 src/Security/Authentication.php:214 msgid "The error message was:" msgstr "Il messaggio riportato era:" -#: src/Model/User.php:1224 +#: src/Model/User.php:1231 msgid "Please enter the required information." msgstr "Inserisci le informazioni richieste." -#: src/Model/User.php:1238 +#: src/Model/User.php:1245 #, php-format msgid "" "system.username_min_length (%s) and system.username_max_length (%s) are " "excluding each other, swapping values." msgstr "system.username_min_length (%s) and system.username_max_length (%s) are excluding each other, swapping values." -#: src/Model/User.php:1245 +#: src/Model/User.php:1252 #, php-format msgid "Username should be at least %s character." msgid_plural "Username should be at least %s characters." @@ -3836,7 +3838,7 @@ msgstr[0] "Il nome utente dovrebbe essere lungo almeno %s carattere." msgstr[1] "Il nome utente dovrebbe essere lungo almeno %s caratteri." msgstr[2] "Il nome utente dovrebbe essere lungo almeno %s caratteri." -#: src/Model/User.php:1249 +#: src/Model/User.php:1256 #, php-format msgid "Username should be at most %s character." msgid_plural "Username should be at most %s characters." @@ -3844,31 +3846,31 @@ msgstr[0] "Il nome utente dovrebbe essere lungo al massimo %s carattere." msgstr[1] "Il nome utente dovrebbe essere lungo al massimo %s caratteri." msgstr[2] "Il nome utente dovrebbe essere lungo al massimo %s caratteri." -#: src/Model/User.php:1257 +#: src/Model/User.php:1264 msgid "That doesn't appear to be your full (First Last) name." msgstr "Questo non sembra essere il tuo nome completo (Nome Cognome)." -#: src/Model/User.php:1262 +#: src/Model/User.php:1269 msgid "Your email domain is not among those allowed on this site." msgstr "Il dominio della tua email non è tra quelli autorizzati su questo sito." -#: src/Model/User.php:1266 +#: src/Model/User.php:1273 msgid "Not a valid email address." msgstr "L'indirizzo email non è valido." -#: src/Model/User.php:1269 +#: src/Model/User.php:1276 msgid "The nickname was blocked from registration by the nodes admin." msgstr "Il nome utente non è utilizzabile in registrazione, per impostazione dell'amministratore del nodo." -#: src/Model/User.php:1273 src/Model/User.php:1279 +#: src/Model/User.php:1280 src/Model/User.php:1286 msgid "Cannot use that email." msgstr "Non puoi usare quell'email." -#: src/Model/User.php:1285 +#: src/Model/User.php:1292 msgid "Your nickname can only contain a-z, 0-9 and _." msgstr "Il tuo nome utente può contenere solo a-z, 0-9 e _." -#: src/Model/User.php:1293 src/Model/User.php:1350 +#: src/Model/User.php:1300 src/Model/User.php:1350 msgid "Nickname is already registered. Please choose another." msgstr "Nome utente già registrato. Scegline un altro." @@ -3893,11 +3895,11 @@ msgid "" "An error occurred creating your default contact circle. Please try again." msgstr "" -#: src/Model/User.php:1422 +#: src/Model/User.php:1428 msgid "Profile Photos" msgstr "Foto del profilo" -#: src/Model/User.php:1604 +#: src/Model/User.php:1616 #, php-format msgid "" "\n" @@ -3905,7 +3907,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:1607 +#: src/Model/User.php:1619 #, php-format msgid "" "\n" @@ -3936,12 +3938,12 @@ msgid "" "\t\tThank you and welcome to %4$s." msgstr "" -#: src/Model/User.php:1639 src/Model/User.php:1745 +#: src/Model/User.php:1651 src/Model/User.php:1757 #, php-format msgid "Registration details for %s" msgstr "Dettagli della registrazione di %s" -#: src/Model/User.php:1659 +#: src/Model/User.php:1671 #, php-format msgid "" "\n" @@ -3956,12 +3958,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:1678 +#: src/Model/User.php:1690 #, php-format msgid "Registration at %s" msgstr "Registrazione su %s" -#: src/Model/User.php:1702 +#: src/Model/User.php:1714 #, php-format msgid "" "\n" @@ -3970,7 +3972,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:1710 +#: src/Model/User.php:1722 #, php-format msgid "" "\n" @@ -4001,93 +4003,91 @@ msgid "" "\t\t\tThank you and welcome to %2$s." msgstr "" -#: src/Model/User.php:1772 +#: src/Model/User.php:1784 msgid "" "User with delegates can't be removed, please remove delegate users first" msgstr "" -#: src/Module/Admin/Addons/Details.php:65 +#: src/Module/Admin/Addons/Details.php:51 msgid "Addon not found." msgstr "Componente aggiuntivo non trovato." -#: src/Module/Admin/Addons/Details.php:76 src/Module/Admin/Addons/Index.php:49 +#: src/Module/Admin/Addons/Details.php:62 src/Module/Admin/Addons/Index.php:41 #, php-format msgid "Addon %s disabled." msgstr "Componente aggiuntivo %s disabilitato." -#: src/Module/Admin/Addons/Details.php:79 src/Module/Admin/Addons/Index.php:51 +#: src/Module/Admin/Addons/Details.php:65 src/Module/Admin/Addons/Index.php:43 #, php-format msgid "Addon %s enabled." msgstr "Componente aggiuntivo %s abilitato." -#: src/Module/Admin/Addons/Details.php:88 -#: src/Module/Admin/Themes/Details.php:46 +#: src/Module/Admin/Addons/Details.php:74 +#: src/Module/Admin/Themes/Details.php:38 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/Addons/Details.php:77 +#: src/Module/Admin/Themes/Details.php:41 src/Module/Settings/Display.php:326 msgid "Enable" msgstr "Abilita" -#: src/Module/Admin/Addons/Details.php:111 -#: src/Module/Admin/Addons/Index.php:67 src/Module/Admin/Federation.php:220 -#: src/Module/Admin/Logs/Settings.php:88 src/Module/Admin/Logs/View.php:85 -#: src/Module/Admin/Queue.php:73 src/Module/Admin/Site.php:455 -#: 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 -#: src/Module/Moderation/Users/Pending.php:96 +#: src/Module/Admin/Addons/Details.php:97 src/Module/Admin/Addons/Index.php:59 +#: src/Module/Admin/Federation.php:206 src/Module/Admin/Logs/Settings.php:74 +#: src/Module/Admin/Logs/View.php:71 src/Module/Admin/Queue.php:59 +#: src/Module/Admin/Site.php:447 src/Module/Admin/Storage.php:124 +#: src/Module/Admin/Summary.php:182 src/Module/Admin/Themes/Details.php:82 +#: src/Module/Admin/Themes/Index.php:103 src/Module/Admin/Tos.php:63 +#: src/Module/Moderation/Users/Create.php:47 +#: src/Module/Moderation/Users/Pending.php:82 msgid "Administration" msgstr "Amministrazione" -#: src/Module/Admin/Addons/Details.php:112 -#: src/Module/Admin/Addons/Index.php:68 src/Module/BaseAdmin.php:92 -#: src/Module/BaseSettings.php:139 +#: src/Module/Admin/Addons/Details.php:98 src/Module/Admin/Addons/Index.php:60 +#: src/Module/BaseAdmin.php:78 src/Module/BaseSettings.php:125 msgid "Addons" msgstr "Componenti aggiuntivi" -#: src/Module/Admin/Addons/Details.php:113 -#: src/Module/Admin/Themes/Details.php:92 +#: src/Module/Admin/Addons/Details.php:99 +#: src/Module/Admin/Themes/Details.php:84 msgid "Toggle" msgstr "Inverti" -#: src/Module/Admin/Addons/Details.php:120 -#: src/Module/Admin/Themes/Details.php:100 +#: src/Module/Admin/Addons/Details.php:106 +#: src/Module/Admin/Themes/Details.php:92 msgid "Author: " msgstr "Autore: " -#: src/Module/Admin/Addons/Details.php:121 -#: src/Module/Admin/Themes/Details.php:101 +#: src/Module/Admin/Addons/Details.php:107 +#: src/Module/Admin/Themes/Details.php:93 msgid "Maintainer: " msgstr "Manutentore: " -#: src/Module/Admin/Addons/Index.php:42 +#: src/Module/Admin/Addons/Index.php:34 msgid "Addons reloaded" msgstr "Componenti aggiuntivi ricaricati" -#: src/Module/Admin/Addons/Index.php:53 +#: src/Module/Admin/Addons/Index.php:45 #, php-format 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:83 -#: src/Module/Admin/Logs/Settings.php:90 src/Module/Admin/Site.php:458 -#: src/Module/Admin/Themes/Index.php:113 src/Module/Admin/Tos.php:86 -#: src/Module/Settings/Account.php:558 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/Features.php:75 +#: src/Module/Admin/Addons/Index.php:61 src/Module/Admin/Features.php:69 +#: src/Module/Admin/Logs/Settings.php:76 src/Module/Admin/Site.php:450 +#: src/Module/Admin/Themes/Index.php:105 src/Module/Admin/Tos.php:72 +#: src/Module/Settings/Account.php:549 src/Module/Settings/Addons.php:64 +#: src/Module/Settings/Connectors.php:149 +#: src/Module/Settings/Connectors.php:235 +#: src/Module/Settings/Delegation.php:179 src/Module/Settings/Display.php:295 +#: src/Module/Settings/Features.php:61 msgid "Save Settings" msgstr "Salva Impostazioni" -#: src/Module/Admin/Addons/Index.php:70 +#: src/Module/Admin/Addons/Index.php:62 msgid "Reload active addons" msgstr "Ricarica componenti aggiuntivi attivi." -#: src/Module/Admin/Addons/Index.php:74 +#: src/Module/Admin/Addons/Index.php:66 #, php-format msgid "" "There are currently no addons available on your node. You can find the " @@ -4095,98 +4095,98 @@ msgid "" " the open addon registry at %2$s" msgstr "Non sono disponibili componenti aggiuntivi sul tuo nodo. Puoi trovare il repository ufficiale dei componenti aggiuntivi su %1$s e potresti trovare altri componenti aggiuntivi interessanti nell'open addon repository su %2$s" -#: src/Module/Admin/DBSync.php:51 +#: src/Module/Admin/DBSync.php:37 msgid "Update has been marked successful" msgstr "L'aggiornamento è stato segnato come di successo" -#: src/Module/Admin/DBSync.php:59 +#: src/Module/Admin/DBSync.php:45 #, php-format msgid "Database structure update %s was successfully applied." msgstr "Aggiornamento struttura database %s applicata con successo." -#: src/Module/Admin/DBSync.php:61 +#: src/Module/Admin/DBSync.php:47 #, php-format msgid "Executing of database structure update %s failed with error: %s" msgstr "Aggiornamento struttura database %s fallita con errore: %s" -#: src/Module/Admin/DBSync.php:76 +#: src/Module/Admin/DBSync.php:62 #, php-format msgid "Executing %s failed with error: %s" msgstr "Esecuzione di %s fallita con errore: %s" -#: src/Module/Admin/DBSync.php:78 +#: src/Module/Admin/DBSync.php:64 #, php-format msgid "Update %s was successfully applied." msgstr "L'aggiornamento %s è stato applicato con successo" -#: src/Module/Admin/DBSync.php:81 +#: src/Module/Admin/DBSync.php:67 #, php-format msgid "Update %s did not return a status. Unknown if it succeeded." msgstr "L'aggiornamento %s non ha riportato uno stato. Non so se è andato a buon fine." -#: src/Module/Admin/DBSync.php:84 +#: src/Module/Admin/DBSync.php:70 #, php-format msgid "There was no additional update function %s that needed to be called." msgstr "Non ci sono altre funzioni di aggiornamento %s da richiamare." -#: src/Module/Admin/DBSync.php:105 +#: src/Module/Admin/DBSync.php:91 msgid "No failed updates." msgstr "Nessun aggiornamento fallito." -#: src/Module/Admin/DBSync.php:106 +#: src/Module/Admin/DBSync.php:92 msgid "Check database structure" msgstr "Controlla struttura database" -#: src/Module/Admin/DBSync.php:110 +#: src/Module/Admin/DBSync.php:96 msgid "Failed Updates" msgstr "Aggiornamenti falliti" -#: src/Module/Admin/DBSync.php:111 +#: src/Module/Admin/DBSync.php:97 msgid "" "This does not include updates prior to 1139, which did not return a status." msgstr "Questo non include gli aggiornamenti prima del 1139, che non ritornano lo stato." -#: src/Module/Admin/DBSync.php:112 +#: src/Module/Admin/DBSync.php:98 msgid "Mark success (if update was manually applied)" msgstr "Segna completato (se l'update è stato applicato manualmente)" -#: src/Module/Admin/DBSync.php:113 +#: src/Module/Admin/DBSync.php:99 msgid "Attempt to execute this update step automatically" msgstr "Cerco di eseguire questo aggiornamento in automatico" -#: src/Module/Admin/Features.php:67 -#: src/Module/Notifications/Introductions.php:144 -#: src/Module/OAuth/Acknowledge.php:55 src/Module/Register.php:132 -#: src/Module/Settings/TwoFactor/Trusted.php:129 +#: src/Module/Admin/Features.php:53 +#: src/Module/Notifications/Introductions.php:136 +#: src/Module/OAuth/Acknowledge.php:41 src/Module/Register.php:124 +#: src/Module/Settings/TwoFactor/Trusted.php:115 msgid "No" msgstr "No" -#: src/Module/Admin/Features.php:67 src/Module/Contact/Revoke.php:108 -#: src/Module/Notifications/Introductions.php:144 -#: src/Module/OAuth/Acknowledge.php:54 src/Module/Register.php:131 -#: src/Module/Settings/TwoFactor/Trusted.php:129 +#: src/Module/Admin/Features.php:53 src/Module/Contact/Revoke.php:91 +#: src/Module/Notifications/Introductions.php:136 +#: src/Module/OAuth/Acknowledge.php:40 src/Module/Register.php:123 +#: src/Module/Settings/TwoFactor/Trusted.php:115 msgid "Yes" msgstr "Si" -#: src/Module/Admin/Features.php:67 +#: src/Module/Admin/Features.php:53 msgid "Locked" msgstr "" -#: src/Module/Admin/Features.php:81 +#: src/Module/Admin/Features.php:67 msgid "Manage Additional Features" msgstr "Gestisci Funzionalità Aggiuntive" -#: src/Module/Admin/Federation.php:82 -#: src/Module/Moderation/Report/Create.php:191 -#: src/Module/Moderation/Report/Create.php:316 +#: src/Module/Admin/Federation.php:68 +#: src/Module/Moderation/Report/Create.php:177 +#: src/Module/Moderation/Report/Create.php:302 msgid "Other" msgstr "Altro" -#: src/Module/Admin/Federation.php:160 src/Module/Admin/Federation.php:408 +#: src/Module/Admin/Federation.php:146 src/Module/Admin/Federation.php:394 msgid "unknown" msgstr "sconosciuto" -#: src/Module/Admin/Federation.php:193 +#: src/Module/Admin/Federation.php:179 #, php-format msgid "%2$s total system" msgid_plural "%2$s total systems" @@ -4194,7 +4194,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: src/Module/Admin/Federation.php:194 +#: src/Module/Admin/Federation.php:180 #, php-format msgid "%2$s active user last month" msgid_plural "%2$s active users last month" @@ -4202,7 +4202,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: src/Module/Admin/Federation.php:195 +#: src/Module/Admin/Federation.php:181 #, php-format msgid "%2$s active user last six months" msgid_plural "%2$s active users last six months" @@ -4210,7 +4210,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: src/Module/Admin/Federation.php:196 +#: src/Module/Admin/Federation.php:182 #, php-format msgid "%2$s registered user" msgid_plural "%2$s registered users" @@ -4218,7 +4218,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: src/Module/Admin/Federation.php:197 +#: src/Module/Admin/Federation.php:183 #, php-format msgid "%2$s locally created post or comment" msgid_plural "%2$s locally created posts and comments" @@ -4226,7 +4226,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: src/Module/Admin/Federation.php:200 +#: src/Module/Admin/Federation.php:186 #, php-format msgid "%2$s post per user" msgid_plural "%2$s posts per user" @@ -4234,7 +4234,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: src/Module/Admin/Federation.php:205 +#: src/Module/Admin/Federation.php:191 #, php-format msgid "%2$s user per system" msgid_plural "%2$s users per system" @@ -4242,18 +4242,18 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: src/Module/Admin/Federation.php:215 +#: src/Module/Admin/Federation.php:201 msgid "" "This page offers you some numbers to the known part of the federated social " "network your Friendica node is part of. These numbers are not complete but " "only reflect the part of the network your node is aware of." msgstr "Questa pagina offre alcuni numeri riguardo la porzione del social network federato di cui il tuo nodo Friendica fa parte. Questi numeri non sono completi ma riflettono esclusivamente la porzione di rete di cui il tuo nodo e' a conoscenza." -#: src/Module/Admin/Federation.php:221 src/Module/BaseAdmin.php:87 +#: src/Module/Admin/Federation.php:207 src/Module/BaseAdmin.php:73 msgid "Federation Statistics" msgstr "Statistiche sulla Federazione" -#: src/Module/Admin/Federation.php:224 +#: src/Module/Admin/Federation.php:210 #, php-format msgid "" "Currently this node is aware of %2$s node (%3$s active users last month, " @@ -4267,58 +4267,58 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: src/Module/Admin/Logs/Settings.php:47 +#: src/Module/Admin/Logs/Settings.php:33 #, php-format msgid "The logfile '%s' is not writable. No logging possible" msgstr "Il file di registro '%s' non è scrivibile. Nessuna registrazione possibile" -#: src/Module/Admin/Logs/Settings.php:80 +#: src/Module/Admin/Logs/Settings.php:66 msgid "PHP log currently enabled." msgstr "Log PHP abilitato." -#: src/Module/Admin/Logs/Settings.php:82 +#: src/Module/Admin/Logs/Settings.php:68 msgid "PHP log currently disabled." msgstr "Log PHP disabilitato" -#: src/Module/Admin/Logs/Settings.php:89 src/Module/BaseAdmin.php:102 -#: src/Module/BaseAdmin.php:103 +#: src/Module/Admin/Logs/Settings.php:75 src/Module/BaseAdmin.php:88 +#: src/Module/BaseAdmin.php:89 msgid "Logs" msgstr "Log" -#: src/Module/Admin/Logs/Settings.php:91 +#: src/Module/Admin/Logs/Settings.php:77 msgid "Clear" msgstr "Pulisci" -#: src/Module/Admin/Logs/Settings.php:94 +#: src/Module/Admin/Logs/Settings.php:80 msgid "Enable Debugging" msgstr "Abilita Debugging" -#: src/Module/Admin/Logs/Settings.php:94 src/Module/Admin/Logs/Settings.php:95 -#: src/Module/Admin/Logs/Settings.php:96 src/Module/Admin/Site.php:478 -#: src/Module/Admin/Site.php:486 +#: src/Module/Admin/Logs/Settings.php:80 src/Module/Admin/Logs/Settings.php:81 +#: src/Module/Admin/Logs/Settings.php:82 src/Module/Admin/Site.php:470 +#: src/Module/Admin/Site.php:478 msgid "" "Read-only because it is set by an environment variable" msgstr "" -#: src/Module/Admin/Logs/Settings.php:95 +#: src/Module/Admin/Logs/Settings.php:81 msgid "Log file" msgstr "File di Log" -#: src/Module/Admin/Logs/Settings.php:95 +#: src/Module/Admin/Logs/Settings.php:81 msgid "" "Must be writable by web server. Relative to your Friendica top-level " "directory." msgstr "Il server web deve avere i permessi di scrittura. Relativo alla cartella di livello superiore di Friendica." -#: src/Module/Admin/Logs/Settings.php:96 +#: src/Module/Admin/Logs/Settings.php:82 msgid "Log level" msgstr "Livello di Log" -#: src/Module/Admin/Logs/Settings.php:98 +#: src/Module/Admin/Logs/Settings.php:84 msgid "PHP logging" msgstr "Log PHP" -#: src/Module/Admin/Logs/Settings.php:99 +#: src/Module/Admin/Logs/Settings.php:85 msgid "" "To temporarily enable logging of PHP errors and warnings you can prepend the" " following to the index.php file of your installation. The filename set in " @@ -4327,402 +4327,407 @@ msgid "" "'display_errors' is to enable these options, set to '0' to disable them." msgstr "Per abilitare temporaneamente il logging di errori e avvisi di PHP, puoi aggiungere le seguenti linee al file index.php della tua installazione. Il nome del file impostato in 'error_log' è relativo alla directory principale della tua installazione di Freidnica e deve essere scrivibile dal server web. L'opzione '1' di 'log_errors' e 'display_errors' server ad abilitare queste impostazioni. Metti '0' per disabilitarle." -#: src/Module/Admin/Logs/View.php:72 +#: src/Module/Admin/Logs/View.php:58 #, php-format msgid "" "Error trying to open %1$s log file.
Check to see if " "file %1$s exist and is readable." msgstr "Errore aprendo il file di registro %1$s.
Controlla se il file %1$s esiste ed è leggibile." -#: src/Module/Admin/Logs/View.php:81 +#: src/Module/Admin/Logs/View.php:67 #, php-format msgid "" "Couldn't open %1$s log file.
Check to see if file %1$s " "is readable." msgstr "Impossibile aprire il file di registro %1$s.
Controlla se il file %1$s è leggibile." -#: src/Module/Admin/Logs/View.php:86 src/Module/BaseAdmin.php:104 +#: src/Module/Admin/Logs/View.php:72 src/Module/BaseAdmin.php:90 msgid "View Logs" msgstr "Vedi i log" -#: src/Module/Admin/Logs/View.php:89 +#: src/Module/Admin/Logs/View.php:75 msgid "Search in logs" msgstr "Cerca nel registro" -#: src/Module/Admin/Logs/View.php:90 -#: src/Module/Notifications/Notifications.php:140 +#: src/Module/Admin/Logs/View.php:76 +#: src/Module/Notifications/Notifications.php:132 msgid "Show all" msgstr "Mostra tutti" -#: src/Module/Admin/Logs/View.php:91 +#: src/Module/Admin/Logs/View.php:77 msgid "Date" msgstr "Data" -#: src/Module/Admin/Logs/View.php:92 +#: src/Module/Admin/Logs/View.php:78 msgid "Level" msgstr "Livello" -#: src/Module/Admin/Logs/View.php:93 +#: src/Module/Admin/Logs/View.php:79 msgid "Context" msgstr "Contesto" -#: src/Module/Admin/Logs/View.php:95 +#: src/Module/Admin/Logs/View.php:81 msgid "ALL" msgstr "TUTTI" -#: src/Module/Admin/Logs/View.php:96 +#: src/Module/Admin/Logs/View.php:82 msgid "View details" msgstr "Vedi dettagli" -#: src/Module/Admin/Logs/View.php:97 +#: src/Module/Admin/Logs/View.php:83 msgid "Click to view details" msgstr "Clicca per vedere i dettagli" -#: src/Module/Admin/Logs/View.php:98 src/Module/Calendar/Event/Form.php:207 +#: src/Module/Admin/Logs/View.php:84 src/Module/Calendar/Event/Form.php:193 msgid "Event details" msgstr "Dettagli dell'evento" -#: src/Module/Admin/Logs/View.php:99 +#: src/Module/Admin/Logs/View.php:85 msgid "Data" msgstr "Dati" -#: src/Module/Admin/Logs/View.php:100 -#: src/Module/Debug/ActivityPubConversion.php:57 +#: src/Module/Admin/Logs/View.php:86 +#: src/Module/Debug/ActivityPubConversion.php:49 msgid "Source" msgstr "Sorgente" -#: src/Module/Admin/Logs/View.php:101 +#: src/Module/Admin/Logs/View.php:87 msgid "File" msgstr "File" -#: src/Module/Admin/Logs/View.php:102 +#: src/Module/Admin/Logs/View.php:88 msgid "Line" msgstr "Linea" -#: src/Module/Admin/Logs/View.php:103 +#: src/Module/Admin/Logs/View.php:89 msgid "Function" msgstr "Funzione" -#: src/Module/Admin/Logs/View.php:104 +#: src/Module/Admin/Logs/View.php:90 msgid "UID" msgstr "UID" -#: src/Module/Admin/Logs/View.php:105 +#: src/Module/Admin/Logs/View.php:91 msgid "Process ID" msgstr "ID Processo" -#: src/Module/Admin/Logs/View.php:106 +#: src/Module/Admin/Logs/View.php:92 msgid "Close" msgstr "Chiudi" -#: src/Module/Admin/Queue.php:50 +#: src/Module/Admin/Queue.php:36 msgid "Inspect Deferred Worker Queue" msgstr "Analizza la coda lavori rinviati" -#: src/Module/Admin/Queue.php:51 +#: src/Module/Admin/Queue.php:37 msgid "" "This page lists the deferred worker jobs. This are jobs that couldn't be " "executed at the first time." msgstr "Questa pagina elenca li lavori rinviati. Sono lavori che non è stato possibile eseguire al primo tentativo." -#: src/Module/Admin/Queue.php:54 +#: src/Module/Admin/Queue.php:40 msgid "Inspect Worker Queue" msgstr "Analizza coda lavori" -#: src/Module/Admin/Queue.php:55 +#: src/Module/Admin/Queue.php:41 msgid "" "This page lists the currently queued worker jobs. These jobs are handled by " "the worker cronjob you've set up during install." msgstr "Questa pagina elenca i lavori in coda. Questi lavori sono gestiti dal cron che hai impostato durante l'installazione." -#: src/Module/Admin/Queue.php:76 +#: src/Module/Admin/Queue.php:62 msgid "ID" msgstr "ID" -#: src/Module/Admin/Queue.php:77 +#: src/Module/Admin/Queue.php:63 msgid "Command" msgstr "Comando" -#: src/Module/Admin/Queue.php:78 +#: src/Module/Admin/Queue.php:64 msgid "Job Parameters" msgstr "Parametri lavoro" -#: src/Module/Admin/Queue.php:79 src/Module/Moderation/Reports.php:110 -#: src/Module/Settings/OAuth.php:74 +#: src/Module/Admin/Queue.php:65 src/Module/Moderation/Reports.php:102 +#: src/Module/Settings/OAuth.php:60 msgid "Created" msgstr "Creato" -#: src/Module/Admin/Queue.php:80 +#: src/Module/Admin/Queue.php:66 msgid "Next Try" msgstr "" -#: src/Module/Admin/Queue.php:81 +#: src/Module/Admin/Queue.php:67 msgid "Priority" msgstr "Priorità" -#: src/Module/Admin/Site.php:243 +#: src/Module/Admin/Site.php:230 +#, php-format +msgid "%s is no valid input for maximum media size" +msgstr "" + +#: src/Module/Admin/Site.php:235 #, 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:362 src/Module/Settings/Display.php:201 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:379 src/Module/Settings/Display.php:211 #, php-format msgid "%s - (Experimental)" msgstr "%s - (Sperimentale)" -#: src/Module/Admin/Site.php:399 +#: src/Module/Admin/Site.php:391 msgid "No community page" msgstr "Nessuna pagina Comunità" -#: src/Module/Admin/Site.php:400 +#: src/Module/Admin/Site.php:392 msgid "No community page for visitors" msgstr "" -#: src/Module/Admin/Site.php:401 +#: src/Module/Admin/Site.php:393 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:394 msgid "Public postings from the federated network" msgstr "Messaggi pubblici dalla rete federata" -#: src/Module/Admin/Site.php:403 +#: src/Module/Admin/Site.php:395 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:401 msgid "Multi user instance" msgstr "Istanza multi utente" -#: src/Module/Admin/Site.php:432 +#: src/Module/Admin/Site.php:424 msgid "Closed" msgstr "Chiusa" -#: src/Module/Admin/Site.php:433 +#: src/Module/Admin/Site.php:425 msgid "Requires approval" msgstr "Richiede l'approvazione" -#: src/Module/Admin/Site.php:434 +#: src/Module/Admin/Site.php:426 msgid "Open" msgstr "Aperta" -#: src/Module/Admin/Site.php:438 +#: src/Module/Admin/Site.php:430 msgid "Don't check" msgstr "Non controllare" -#: src/Module/Admin/Site.php:439 +#: src/Module/Admin/Site.php:431 msgid "check the stable version" msgstr "controlla la versione stabile" -#: src/Module/Admin/Site.php:440 +#: src/Module/Admin/Site.php:432 msgid "check the development version" msgstr "controlla la versione di sviluppo" -#: src/Module/Admin/Site.php:444 +#: src/Module/Admin/Site.php:436 msgid "none" msgstr "niente" -#: src/Module/Admin/Site.php:445 +#: src/Module/Admin/Site.php:437 msgid "Local contacts" msgstr "Contatti locali" -#: src/Module/Admin/Site.php:446 +#: src/Module/Admin/Site.php:438 msgid "Interactors" msgstr "Interlocutori" -#: src/Module/Admin/Site.php:456 src/Module/BaseAdmin.php:90 +#: src/Module/Admin/Site.php:448 src/Module/BaseAdmin.php:76 msgid "Site" msgstr "Sito" -#: src/Module/Admin/Site.php:457 +#: src/Module/Admin/Site.php:449 msgid "General Information" msgstr "Informazioni Generali" -#: src/Module/Admin/Site.php:459 +#: src/Module/Admin/Site.php:451 msgid "Republish users to directory" msgstr "Ripubblica gli utenti sulla directory" -#: src/Module/Admin/Site.php:460 src/Module/Register.php:153 +#: src/Module/Admin/Site.php:452 src/Module/Register.php:145 msgid "Registration" msgstr "Registrazione" -#: src/Module/Admin/Site.php:461 +#: src/Module/Admin/Site.php:453 msgid "File upload" msgstr "Caricamento file" -#: src/Module/Admin/Site.php:462 +#: src/Module/Admin/Site.php:454 msgid "Policies" msgstr "Politiche" -#: src/Module/Admin/Site.php:463 src/Module/Calendar/Event/Form.php:252 -#: src/Module/Contact.php:546 src/Module/Profile/Profile.php:276 +#: src/Module/Admin/Site.php:455 src/Module/Calendar/Event/Form.php:238 +#: src/Module/Contact.php:528 src/Module/Profile/Profile.php:264 msgid "Advanced" msgstr "Avanzate" -#: src/Module/Admin/Site.php:464 +#: src/Module/Admin/Site.php:456 msgid "Auto Discovered Contact Directory" msgstr "Elenco Contatti Scoperto Automaticamente" -#: src/Module/Admin/Site.php:465 +#: src/Module/Admin/Site.php:457 msgid "Performance" msgstr "Performance" -#: src/Module/Admin/Site.php:466 +#: src/Module/Admin/Site.php:458 msgid "Worker" msgstr "Worker" -#: src/Module/Admin/Site.php:467 +#: src/Module/Admin/Site.php:459 msgid "Message Relay" msgstr "Relay Messaggio" -#: src/Module/Admin/Site.php:468 +#: src/Module/Admin/Site.php:460 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:461 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:462 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:465 msgid "Relocate Node" msgstr "" -#: src/Module/Admin/Site.php:474 +#: src/Module/Admin/Site.php:466 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:467 msgid "(Friendica directory)# bin/console relocate https://newdomain.com" msgstr "" -#: src/Module/Admin/Site.php:478 +#: src/Module/Admin/Site.php:470 msgid "Site name" msgstr "Nome del sito" -#: src/Module/Admin/Site.php:479 +#: src/Module/Admin/Site.php:471 msgid "Sender Email" msgstr "Mittente email" -#: src/Module/Admin/Site.php:479 +#: src/Module/Admin/Site.php:471 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:472 msgid "Name of the system actor" msgstr "Nome dell'attore di sistema" -#: src/Module/Admin/Site.php:480 +#: src/Module/Admin/Site.php:472 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:473 msgid "Banner/Logo" msgstr "Banner/Logo" -#: src/Module/Admin/Site.php:482 +#: src/Module/Admin/Site.php:474 msgid "Email Banner/Logo" msgstr "Intestazione/Logo Email" -#: src/Module/Admin/Site.php:483 +#: src/Module/Admin/Site.php:475 msgid "Shortcut icon" msgstr "Icona shortcut" -#: src/Module/Admin/Site.php:483 +#: src/Module/Admin/Site.php:475 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:476 msgid "Touch icon" msgstr "Icona touch" -#: src/Module/Admin/Site.php:484 +#: src/Module/Admin/Site.php:476 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:477 msgid "Additional Info" msgstr "Informazioni aggiuntive" -#: src/Module/Admin/Site.php:485 +#: src/Module/Admin/Site.php:477 #, 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:478 msgid "System language" msgstr "Lingua di sistema" -#: src/Module/Admin/Site.php:487 +#: src/Module/Admin/Site.php:479 msgid "System theme" msgstr "Tema di sistema" -#: src/Module/Admin/Site.php:487 +#: src/Module/Admin/Site.php:479 #, 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:480 msgid "Mobile system theme" msgstr "Tema mobile di sistema" -#: src/Module/Admin/Site.php:488 +#: src/Module/Admin/Site.php:480 msgid "Theme for mobile devices" msgstr "Tema per dispositivi mobili" -#: src/Module/Admin/Site.php:489 +#: src/Module/Admin/Site.php:481 msgid "Force SSL" msgstr "Forza SSL" -#: src/Module/Admin/Site.php:489 +#: src/Module/Admin/Site.php:481 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:482 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:482 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:483 msgid "Single user instance" msgstr "Istanza a singolo utente" -#: src/Module/Admin/Site.php:491 +#: src/Module/Admin/Site.php:483 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:485 msgid "Maximum image size" msgstr "Massima dimensione immagini" -#: src/Module/Admin/Site.php:493 +#: src/Module/Admin/Site.php:485 #, 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" @@ -4730,35 +4735,47 @@ 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:489 msgid "Maximum image length" msgstr "Massima lunghezza immagine" -#: src/Module/Admin/Site.php:497 +#: src/Module/Admin/Site.php:489 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:490 msgid "JPEG image quality" msgstr "Qualità immagini JPEG" -#: src/Module/Admin/Site.php:498 +#: src/Module/Admin/Site.php:490 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:491 +msgid "Maximum media file size" +msgstr "" + +#: src/Module/Admin/Site.php:491 +#, php-format +msgid "" +"Maximum size in bytes of uploaded media files. Default is 0, which means no limits. You can put k, m, or g behind the desired value for KiB, MiB, GiB, respectively.\n" +"\t\t\t\t\t\t\t\t\t\t\t\t\tThe value of upload_max_filesize in your PHP.ini needs be set to at least the desired limit.\n" +"\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:496 msgid "Register policy" msgstr "Politica di registrazione" -#: src/Module/Admin/Site.php:501 +#: src/Module/Admin/Site.php:497 msgid "Maximum Users" msgstr "" -#: src/Module/Admin/Site.php:501 +#: src/Module/Admin/Site.php:497 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 " @@ -4766,167 +4783,167 @@ msgid "" "not when the policy is set to approval." msgstr "" -#: src/Module/Admin/Site.php:502 +#: src/Module/Admin/Site.php:498 msgid "Maximum Daily Registrations" msgstr "Massime registrazioni giornaliere" -#: src/Module/Admin/Site.php:502 +#: src/Module/Admin/Site.php:498 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:499 msgid "Register text" msgstr "Testo registrazione" -#: src/Module/Admin/Site.php:503 +#: src/Module/Admin/Site.php:499 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:500 msgid "Forbidden Nicknames" msgstr "Nomi utente Vietati" -#: src/Module/Admin/Site.php:504 +#: src/Module/Admin/Site.php:500 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:501 msgid "Accounts abandoned after x days" msgstr "Account abbandonati dopo x giorni" -#: src/Module/Admin/Site.php:505 +#: src/Module/Admin/Site.php:501 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:502 msgid "Allowed friend domains" msgstr "Domini amici consentiti" -#: src/Module/Admin/Site.php:506 +#: src/Module/Admin/Site.php:502 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:503 msgid "Allowed email domains" msgstr "Domini email consentiti" -#: src/Module/Admin/Site.php:507 +#: src/Module/Admin/Site.php:503 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:504 msgid "Disallowed email domains" msgstr "" -#: src/Module/Admin/Site.php:508 +#: src/Module/Admin/Site.php:504 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:509 +#: src/Module/Admin/Site.php:505 msgid "No OEmbed rich content" msgstr "Nessun contenuto ricco da OEmbed" -#: src/Module/Admin/Site.php:509 +#: src/Module/Admin/Site.php:505 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:510 +#: src/Module/Admin/Site.php:506 msgid "Trusted third-party domains" msgstr "Domini fidati di terze parti" -#: src/Module/Admin/Site.php:510 +#: src/Module/Admin/Site.php:506 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:511 +#: src/Module/Admin/Site.php:507 msgid "Block public" msgstr "Blocca pagine pubbliche" -#: src/Module/Admin/Site.php:511 +#: src/Module/Admin/Site.php:507 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:512 +#: src/Module/Admin/Site.php:508 msgid "Force publish" msgstr "Forza pubblicazione" -#: src/Module/Admin/Site.php:512 +#: src/Module/Admin/Site.php:508 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:512 +#: src/Module/Admin/Site.php:508 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:513 +#: src/Module/Admin/Site.php:509 msgid "Global directory URL" msgstr "URL della directory globale" -#: src/Module/Admin/Site.php:513 +#: src/Module/Admin/Site.php:509 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:514 +#: src/Module/Admin/Site.php:510 msgid "Private posts by default for new users" msgstr "Messaggi privati come impostazioni predefinita per i nuovi utenti" -#: src/Module/Admin/Site.php:514 +#: src/Module/Admin/Site.php:510 msgid "" "Set default post permissions for all new members to the default privacy " "circle rather than public." msgstr "" -#: src/Module/Admin/Site.php:515 +#: src/Module/Admin/Site.php:511 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:515 +#: src/Module/Admin/Site.php:511 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:516 +#: src/Module/Admin/Site.php:512 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:516 +#: src/Module/Admin/Site.php:512 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:517 +#: src/Module/Admin/Site.php:513 msgid "Don't embed private images in posts" msgstr "Non inglobare immagini private nei messaggi" -#: src/Module/Admin/Site.php:517 +#: src/Module/Admin/Site.php:513 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 " @@ -4934,11 +4951,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:518 +#: src/Module/Admin/Site.php:514 msgid "Explicit Content" msgstr "Contenuto Esplicito" -#: src/Module/Admin/Site.php:518 +#: src/Module/Admin/Site.php:514 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 " @@ -4947,329 +4964,319 @@ 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:519 +#: src/Module/Admin/Site.php:515 msgid "Only local search" msgstr "" -#: src/Module/Admin/Site.php:519 +#: src/Module/Admin/Site.php:515 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:516 msgid "Blocked tags for trending tags" msgstr "" -#: src/Module/Admin/Site.php:520 +#: src/Module/Admin/Site.php:516 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:517 msgid "Cache contact avatars" msgstr "" -#: src/Module/Admin/Site.php:521 +#: src/Module/Admin/Site.php:517 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:518 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:518 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:519 msgid "Allow Users to set up relay channels" msgstr "" -#: src/Module/Admin/Site.php:523 +#: src/Module/Admin/Site.php:519 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:520 msgid "Adjust the feed poll frequency" msgstr "" -#: src/Module/Admin/Site.php:524 +#: src/Module/Admin/Site.php:520 msgid "Automatically detect and set the best feed poll frequency." msgstr "" -#: src/Module/Admin/Site.php:525 +#: src/Module/Admin/Site.php:521 msgid "Minimum poll interval" msgstr "" -#: src/Module/Admin/Site.php:525 +#: src/Module/Admin/Site.php:521 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:522 msgid "Enable multiple registrations" msgstr "" -#: src/Module/Admin/Site.php:526 +#: src/Module/Admin/Site.php:522 msgid "Enable users to register additional accounts for use as pages." msgstr "" -#: src/Module/Admin/Site.php:527 +#: src/Module/Admin/Site.php:523 msgid "Enable OpenID" msgstr "" -#: src/Module/Admin/Site.php:527 +#: src/Module/Admin/Site.php:523 msgid "Enable OpenID support for registration and logins." msgstr "" -#: src/Module/Admin/Site.php:528 +#: src/Module/Admin/Site.php:524 msgid "Enable full name check" msgstr "" -#: src/Module/Admin/Site.php:528 +#: src/Module/Admin/Site.php:524 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:525 msgid "Email administrators on new registration" msgstr "" -#: src/Module/Admin/Site.php:529 +#: src/Module/Admin/Site.php:525 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:526 msgid "Community pages for visitors" msgstr "Pagina comunità per i visitatori" -#: src/Module/Admin/Site.php:530 +#: src/Module/Admin/Site.php:526 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:527 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:527 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:528 msgid "Posts per server on community page" msgstr "" -#: src/Module/Admin/Site.php:532 +#: src/Module/Admin/Site.php:528 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:530 msgid "Enable Mail support" msgstr "" -#: src/Module/Admin/Site.php:534 +#: src/Module/Admin/Site.php:530 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:531 msgid "" "Mail support can't be enabled because the PHP IMAP module is not installed." msgstr "" -#: src/Module/Admin/Site.php:536 -msgid "Enable OStatus support" -msgstr "" - -#: src/Module/Admin/Site.php:536 -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:533 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:534 msgid "Enable Diaspora support" msgstr "Abilita il supporto a Diaspora" -#: src/Module/Admin/Site.php:539 +#: src/Module/Admin/Site.php:534 msgid "" "Enable built-in Diaspora network compatibility for communicating with " "diaspora servers." msgstr "" -#: src/Module/Admin/Site.php:540 +#: src/Module/Admin/Site.php:535 msgid "Verify SSL" msgstr "Verifica SSL" -#: src/Module/Admin/Site.php:540 +#: src/Module/Admin/Site.php:535 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:536 msgid "Proxy user" msgstr "Utente Proxy" -#: src/Module/Admin/Site.php:541 +#: src/Module/Admin/Site.php:536 msgid "User name for the proxy server." msgstr "" -#: src/Module/Admin/Site.php:542 +#: src/Module/Admin/Site.php:537 msgid "Proxy URL" msgstr "URL Proxy" -#: src/Module/Admin/Site.php:542 +#: src/Module/Admin/Site.php:537 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:538 msgid "Network timeout" msgstr "Timeout rete" -#: src/Module/Admin/Site.php:543 +#: src/Module/Admin/Site.php:538 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:539 msgid "Maximum Load Average" msgstr "Massimo carico medio" -#: src/Module/Admin/Site.php:544 +#: src/Module/Admin/Site.php:539 #, 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:540 msgid "Minimal Memory" msgstr "Memoria Minima" -#: src/Module/Admin/Site.php:545 +#: src/Module/Admin/Site.php:540 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:541 msgid "Periodically optimize tables" msgstr "Ottimizza le tabelle periodicamente" -#: src/Module/Admin/Site.php:546 +#: src/Module/Admin/Site.php:541 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:543 msgid "Discover followers/followings from contacts" msgstr "Scopri seguiti/seguaci dai contatti" -#: src/Module/Admin/Site.php:548 +#: src/Module/Admin/Site.php:543 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:544 msgid "None - deactivated" msgstr "Nessuno - disattivato" -#: src/Module/Admin/Site.php:550 +#: src/Module/Admin/Site.php:545 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:546 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:548 msgid "Only update contacts/servers with local data" msgstr "" -#: src/Module/Admin/Site.php:553 +#: src/Module/Admin/Site.php:548 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:549 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:549 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:551 msgid "Discover contacts from other servers" msgstr "Trova contatti dagli altri server" -#: src/Module/Admin/Site.php:556 +#: src/Module/Admin/Site.php:551 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:552 msgid "Days between requery" msgstr "Giorni tra le richieste" -#: src/Module/Admin/Site.php:557 +#: src/Module/Admin/Site.php:552 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:553 msgid "Search the local directory" msgstr "Cerca la directory locale" -#: src/Module/Admin/Site.php:558 +#: src/Module/Admin/Site.php:553 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:555 msgid "Publish server information" msgstr "Pubblica informazioni server" -#: src/Module/Admin/Site.php:560 +#: src/Module/Admin/Site.php:555 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 " @@ -5277,50 +5284,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:557 msgid "Check upstream version" msgstr "Controlla versione upstream" -#: src/Module/Admin/Site.php:562 +#: src/Module/Admin/Site.php:557 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:558 msgid "Suppress Tags" msgstr "Sopprimi Tags" -#: src/Module/Admin/Site.php:563 +#: src/Module/Admin/Site.php:558 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:559 msgid "Clean database" msgstr "Pulisci database" -#: src/Module/Admin/Site.php:564 +#: src/Module/Admin/Site.php:559 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:560 msgid "Lifespan of remote items" msgstr "Durata della vita di oggetti remoti" -#: src/Module/Admin/Site.php:565 +#: src/Module/Admin/Site.php:560 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:561 msgid "Lifespan of unclaimed items" msgstr "Durata della vita di oggetti non reclamati" -#: src/Module/Admin/Site.php:566 +#: src/Module/Admin/Site.php:561 msgid "" "When the database cleanup is enabled, this defines the days after which " "unclaimed remote items (mostly content from the relay) will be deleted. " @@ -5328,175 +5335,184 @@ 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:562 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:562 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." +"The conversation data is used for ActivityPub, 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:563 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:563 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:564 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:564 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:565 msgid "Items per page" msgstr "" -#: src/Module/Admin/Site.php:570 +#: src/Module/Admin/Site.php:565 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:566 msgid "Items per page for mobile devices" msgstr "" -#: src/Module/Admin/Site.php:571 +#: src/Module/Admin/Site.php:566 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:567 msgid "Temp path" msgstr "Percorso file temporanei" -#: src/Module/Admin/Site.php:572 +#: src/Module/Admin/Site.php:567 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:568 msgid "Only search in tags" msgstr "Cerca solo nei tag" -#: src/Module/Admin/Site.php:573 +#: src/Module/Admin/Site.php:568 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:569 +msgid "Limited search scope" +msgstr "" + +#: src/Module/Admin/Site.php:569 +msgid "" +"If enabled, searches will only be performed in the data used for the " +"channels and not in all posts." +msgstr "" + +#: src/Module/Admin/Site.php:570 msgid "Maximum age of items in the search table" msgstr "" -#: src/Module/Admin/Site.php:574 +#: src/Module/Admin/Site.php:570 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:571 msgid "Generate counts per contact circle when calculating network count" msgstr "" -#: src/Module/Admin/Site.php:575 +#: src/Module/Admin/Site.php:571 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:572 msgid "Process \"view\" activities" msgstr "" -#: src/Module/Admin/Site.php:576 +#: src/Module/Admin/Site.php:572 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:573 msgid "Days, after which a contact is archived" msgstr "" -#: src/Module/Admin/Site.php:577 +#: src/Module/Admin/Site.php:573 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:575 msgid "Maximum number of parallel workers" msgstr "Massimo numero di lavori in parallelo" -#: src/Module/Admin/Site.php:579 +#: src/Module/Admin/Site.php:575 #, 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:576 msgid "Maximum load for workers" msgstr "" -#: src/Module/Admin/Site.php:580 +#: src/Module/Admin/Site.php:576 msgid "Maximum load that causes a cooldown before each worker function call." msgstr "" -#: src/Module/Admin/Site.php:581 +#: src/Module/Admin/Site.php:577 msgid "Enable fastlane" msgstr "Abilita fastlane" -#: src/Module/Admin/Site.php:581 +#: src/Module/Admin/Site.php:577 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:578 msgid "Decoupled receiver" msgstr "" -#: src/Module/Admin/Site.php:582 +#: src/Module/Admin/Site.php:578 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:579 msgid "Cron interval" msgstr "" -#: src/Module/Admin/Site.php:583 +#: src/Module/Admin/Site.php:579 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:580 msgid "Worker defer limit" msgstr "" -#: src/Module/Admin/Site.php:584 +#: src/Module/Admin/Site.php:580 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:581 msgid "Worker fetch limit" msgstr "" -#: src/Module/Admin/Site.php:585 +#: src/Module/Admin/Site.php:581 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" @@ -5504,214 +5520,214 @@ msgid "" "system." msgstr "" -#: src/Module/Admin/Site.php:587 +#: src/Module/Admin/Site.php:583 msgid "Direct relay transfer" msgstr "Trasferimento relay diretto" -#: src/Module/Admin/Site.php:587 +#: src/Module/Admin/Site.php:583 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:584 msgid "Relay scope" msgstr "Ambito del relay" -#: src/Module/Admin/Site.php:588 +#: src/Module/Admin/Site.php:584 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:314 -#: src/Module/Settings/TwoFactor/Index.php:146 +#: src/Module/Admin/Site.php:584 src/Module/Contact/Profile.php:314 +#: src/Module/Settings/TwoFactor/Index.php:132 msgid "Disabled" msgstr "Disabilitato" -#: src/Module/Admin/Site.php:588 +#: src/Module/Admin/Site.php:584 msgid "all" msgstr "tutti" -#: src/Module/Admin/Site.php:588 +#: src/Module/Admin/Site.php:584 msgid "tags" msgstr "tags" -#: src/Module/Admin/Site.php:589 +#: src/Module/Admin/Site.php:585 msgid "Server tags" msgstr "Tags server" -#: src/Module/Admin/Site.php:589 +#: src/Module/Admin/Site.php:585 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:586 msgid "Deny Server tags" msgstr "Etichette Negate del Server" -#: src/Module/Admin/Site.php:590 +#: src/Module/Admin/Site.php:586 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:587 msgid "Maximum amount of tags" msgstr "" -#: src/Module/Admin/Site.php:591 +#: src/Module/Admin/Site.php:587 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:588 msgid "Allow user tags" msgstr "Permetti tag utente" -#: src/Module/Admin/Site.php:592 +#: src/Module/Admin/Site.php:588 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:589 msgid "Deny undetected languages" msgstr "" -#: src/Module/Admin/Site.php:593 +#: src/Module/Admin/Site.php:589 msgid "If enabled, posts with undetected languages will be rejected." msgstr "" -#: src/Module/Admin/Site.php:594 +#: src/Module/Admin/Site.php:590 msgid "Language Quality" msgstr "" -#: src/Module/Admin/Site.php:594 +#: src/Module/Admin/Site.php:590 msgid "The minimum language quality that is required to accept the post." msgstr "" -#: src/Module/Admin/Site.php:595 +#: src/Module/Admin/Site.php:591 msgid "Number of languages for the language detection" msgstr "" -#: src/Module/Admin/Site.php:595 +#: src/Module/Admin/Site.php:591 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:593 msgid "Maximum age of channel" msgstr "" -#: src/Module/Admin/Site.php:597 +#: src/Module/Admin/Site.php:593 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:594 msgid "Maximum number of channel posts" msgstr "" -#: src/Module/Admin/Site.php:598 +#: src/Module/Admin/Site.php:594 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:595 msgid "Interaction score days" msgstr "" -#: src/Module/Admin/Site.php:599 +#: src/Module/Admin/Site.php:595 msgid "Number of days that are used to calculate the interaction score." msgstr "" -#: src/Module/Admin/Site.php:600 +#: src/Module/Admin/Site.php:596 msgid "Maximum number of posts per author" msgstr "" -#: src/Module/Admin/Site.php:600 +#: src/Module/Admin/Site.php:596 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:597 msgid "Sharer interaction days" msgstr "" -#: src/Module/Admin/Site.php:601 +#: src/Module/Admin/Site.php:597 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:600 msgid "Start Relocation" msgstr "Inizia il Trasloco" -#: src/Module/Admin/Storage.php:46 +#: src/Module/Admin/Storage.php:32 #, php-format msgid "Storage backend, %s is invalid." msgstr "" -#: src/Module/Admin/Storage.php:73 +#: src/Module/Admin/Storage.php:59 #, php-format msgid "Storage backend %s error: %s" msgstr "" -#: src/Module/Admin/Storage.php:84 src/Module/Admin/Storage.php:87 +#: src/Module/Admin/Storage.php:70 src/Module/Admin/Storage.php:73 msgid "Invalid storage backend setting value." msgstr "Valore dell'impostazione del backend di archiviazione non valido" -#: src/Module/Admin/Storage.php:139 +#: src/Module/Admin/Storage.php:125 msgid "Current Storage Backend" msgstr "" -#: src/Module/Admin/Storage.php:140 +#: src/Module/Admin/Storage.php:126 msgid "Storage Configuration" msgstr "" -#: src/Module/Admin/Storage.php:141 src/Module/BaseAdmin.php:91 +#: src/Module/Admin/Storage.php:127 src/Module/BaseAdmin.php:77 msgid "Storage" msgstr "" -#: src/Module/Admin/Storage.php:143 +#: src/Module/Admin/Storage.php:129 msgid "Save & Use storage backend" msgstr "" -#: src/Module/Admin/Storage.php:144 +#: src/Module/Admin/Storage.php:130 msgid "Use storage backend" msgstr "" -#: src/Module/Admin/Storage.php:145 +#: src/Module/Admin/Storage.php:131 msgid "Save & Reload" msgstr "" -#: src/Module/Admin/Storage.php:146 +#: src/Module/Admin/Storage.php:132 msgid "This backend doesn't have custom settings" msgstr "" -#: src/Module/Admin/Storage.php:148 +#: src/Module/Admin/Storage.php:134 msgid "" "Changing the current backend is prohibited because it is set by an " "environment variable" msgstr "" -#: src/Module/Admin/Storage.php:150 +#: src/Module/Admin/Storage.php:136 msgid "Database (legacy)" msgstr "Database (legacy)" -#: src/Module/Admin/Summary.php:55 +#: src/Module/Admin/Summary.php:41 #, php-format msgid "Template engine (%s) error: %s" msgstr "Errore del motore di modelli (%s): %s" -#: src/Module/Admin/Summary.php:59 +#: src/Module/Admin/Summary.php:45 #, php-format msgid "" "Your DB still runs with MyISAM tables. You should change the engine type to " @@ -5722,7 +5738,7 @@ msgid "" " an automatic conversion.
" msgstr "Stai ancora usando tabelle MyISAM. Dovresti cambiare il tipo motore a InnoDB. Siccome Friendica userà funzionalità specifiche di InnoDB nel futuro, dovresti modificarlo. Vedi quinel per una guida che può esserti utile nel convertire il motore delle tabelle. Puoi anche usare il comando php bin/console.php dbstructure toinnodb della tua installazione di Friendica per eseguire una conversione automatica.
" -#: src/Module/Admin/Summary.php:64 +#: src/Module/Admin/Summary.php:50 #, php-format msgid "" "Your DB still runs with InnoDB tables in the Antelope file format. You " @@ -5733,7 +5749,7 @@ msgid "" " installation for an automatic conversion.
" msgstr "Il tuo DB sta ancora eseguendo tabelle InnoDB con il formato file Antelope. Dovresti cambiare il formato file in Barracuda. Friendica utilizza funzionalità che non sono fornite dal formato Antelope. Guarda qui per una guida che potrebbe esserti utile per convertire il motore delle tabelle. Potresti anche utilizzare il comando php bin/console.php dbstructure toinnodb della tua installazione Friendica per una conversione automatica.
" -#: src/Module/Admin/Summary.php:74 +#: src/Module/Admin/Summary.php:60 #, php-format msgid "" "Your table_definition_cache is too low (%d). This can lead to the database " @@ -5741,46 +5757,46 @@ msgid "" " to %d. See here for more information.
" msgstr "La tua table_definition_cache è troppo piccola (%d). Questo può portare all'errore del database \"Prepared statement needs to be re-prepared\". Per favore impostala almeno a %d. Guarda qui per avere più informazioni.
" -#: src/Module/Admin/Summary.php:85 +#: src/Module/Admin/Summary.php:71 #, php-format msgid "" "There is a new version of Friendica available for download. Your current " "version is %1$s, upstream version is %2$s" msgstr "È disponibile per il download una nuova versione di Friendica. La tua versione è %1$s, la versione upstream è %2$s" -#: src/Module/Admin/Summary.php:94 +#: src/Module/Admin/Summary.php:80 msgid "" "The database update failed. Please run \"php bin/console.php dbstructure " "update\" from the command line and have a look at the errors that might " "appear." msgstr "L'aggiornamento del database è fallito. Esegui \"php bin/console.php dbstructure update\" dalla riga di comando per poter vedere gli eventuali errori che potrebbero apparire." -#: src/Module/Admin/Summary.php:98 +#: src/Module/Admin/Summary.php:84 msgid "" "The last update failed. Please run \"php bin/console.php dbstructure " "update\" from the command line and have a look at the errors that might " "appear. (Some of the errors are possibly inside the logfile.)" msgstr "L'ultimo aggiornamento non è riuscito. Per favore esegui \"php bin/console.php dbstructure update\" dal terminale e dai un'occhiata agli errori che potrebbe mostrare. (Alcuni di questi errori potrebbero essere nei file di log.)" -#: src/Module/Admin/Summary.php:102 +#: src/Module/Admin/Summary.php:88 msgid "" "The system.url entry is missing. This is a low level setting and can lead to" " unexpected behavior. Please add a valid entry as soon as possible in the " "config file or per console command!" msgstr "" -#: src/Module/Admin/Summary.php:107 +#: src/Module/Admin/Summary.php:93 msgid "The worker was never executed. Please check your database structure!" msgstr "Il worker non è mai stato eseguito. Controlla la struttura del tuo database!" -#: src/Module/Admin/Summary.php:109 +#: src/Module/Admin/Summary.php:95 #, php-format msgid "" "The last worker execution was on %s UTC. This is older than one hour. Please" " check your crontab settings." msgstr "L'ultima esecuzione del worker è stata alle %sUTC, ovvero più di un'ora fa. Controlla le impostazioni del tuo crontab." -#: src/Module/Admin/Summary.php:114 +#: src/Module/Admin/Summary.php:100 #, php-format msgid "" "Friendica's configuration now is stored in config/local.config.php, please " @@ -5789,7 +5805,7 @@ msgid "" "help with the transition." msgstr "La configurazione di Friendica è adesso salvata in config/local.config.php: copia config/local-sample.config.php e sposta la tua configurazione da .htconfig.php. Vedi la pagina della guida sulla Configurazione per avere aiuto con la transizione." -#: src/Module/Admin/Summary.php:118 +#: src/Module/Admin/Summary.php:104 #, php-format msgid "" "Friendica's configuration now is stored in config/local.config.php, please " @@ -5798,7 +5814,7 @@ msgid "" "page for help with the transition." msgstr "La configurazione di Friendica è adesso salvata in config/local.config.php: copia config/local-sample.config.php e sposta la tua configurazione da config/local.ini.php. Vedi la pagina della guida sulla Configurazione per avere aiuto con la transizione." -#: src/Module/Admin/Summary.php:124 +#: src/Module/Admin/Summary.php:110 #, php-format msgid "" "%s is not reachable on your system. This is a severe " @@ -5806,107 +5822,107 @@ msgid "" "href=\"%s\">the installation page for help." msgstr "%s non è raggiungibile sul tuo sistema. È un grave problema di configurazione che impedisce la comunicazione da server a server. Vedi la pagina sull'installazione per un aiuto." -#: src/Module/Admin/Summary.php:148 +#: src/Module/Admin/Summary.php:134 #, php-format msgid "" "Friendica's system.basepath was updated from '%s' to '%s'. Please remove the" " system.basepath from your db to avoid differences." msgstr "La system.basepath di Friendica è stata aggiornata da '%s' a '%s'. Per favore rimuovi la system.basepath dal tuo db per evitare differenze." -#: src/Module/Admin/Summary.php:156 +#: src/Module/Admin/Summary.php:142 #, php-format msgid "" "Friendica's current system.basepath '%s' is wrong and the config file '%s' " "isn't used." msgstr "L'attuale system.basepath di Friendica '%s' è errata e il file di configurazione '%s' non è utilizzato." -#: src/Module/Admin/Summary.php:164 +#: src/Module/Admin/Summary.php:150 #, php-format msgid "" "Friendica's current system.basepath '%s' is not equal to the config file " "'%s'. Please fix your configuration." msgstr "L'attuale system.basepath di Friendica '%s' non è uguale a quella del file di configurazione '%s'. Per favore correggi la tua configurazione." -#: src/Module/Admin/Summary.php:175 +#: src/Module/Admin/Summary.php:161 msgid "Message queues" msgstr "Code messaggi" -#: src/Module/Admin/Summary.php:181 +#: src/Module/Admin/Summary.php:167 msgid "Server Settings" msgstr "Impostazioni Server" -#: src/Module/Admin/Summary.php:199 +#: src/Module/Admin/Summary.php:185 msgid "Version" msgstr "Versione" -#: src/Module/Admin/Summary.php:203 +#: src/Module/Admin/Summary.php:189 msgid "Active addons" msgstr "Componenti aggiuntivi attivi" -#: src/Module/Admin/Themes/Details.php:57 src/Module/Admin/Themes/Index.php:65 +#: src/Module/Admin/Themes/Details.php:49 src/Module/Admin/Themes/Index.php:57 #, php-format msgid "Theme %s disabled." msgstr "Tema %s disabilitato." -#: src/Module/Admin/Themes/Details.php:59 src/Module/Admin/Themes/Index.php:67 +#: src/Module/Admin/Themes/Details.php:51 src/Module/Admin/Themes/Index.php:59 #, php-format msgid "Theme %s successfully enabled." msgstr "Tema %s abilitato con successo." -#: src/Module/Admin/Themes/Details.php:61 src/Module/Admin/Themes/Index.php:69 +#: src/Module/Admin/Themes/Details.php:53 src/Module/Admin/Themes/Index.php:61 #, php-format msgid "Theme %s failed to install." msgstr "Installazione del tema %s non riuscita." -#: src/Module/Admin/Themes/Details.php:83 +#: src/Module/Admin/Themes/Details.php:75 msgid "Screenshot" msgstr "Anteprima" -#: src/Module/Admin/Themes/Details.php:91 -#: src/Module/Admin/Themes/Index.php:112 src/Module/BaseAdmin.php:93 +#: src/Module/Admin/Themes/Details.php:83 +#: src/Module/Admin/Themes/Index.php:104 src/Module/BaseAdmin.php:79 msgid "Themes" msgstr "Temi" -#: src/Module/Admin/Themes/Embed.php:80 +#: src/Module/Admin/Themes/Embed.php:66 msgid "Unknown theme." msgstr "Tema sconosciuto." -#: src/Module/Admin/Themes/Index.php:51 +#: src/Module/Admin/Themes/Index.php:43 msgid "Themes reloaded" msgstr "Temi ricaricati" -#: src/Module/Admin/Themes/Index.php:114 +#: src/Module/Admin/Themes/Index.php:106 msgid "Reload active themes" msgstr "Ricarica i temi attivi" -#: src/Module/Admin/Themes/Index.php:118 +#: src/Module/Admin/Themes/Index.php:110 #, php-format msgid "No themes found on the system. They should be placed in %1$s" msgstr "Non sono stati trovati temi sul tuo sistema. Dovrebbero essere in %1$s" -#: src/Module/Admin/Themes/Index.php:119 +#: src/Module/Admin/Themes/Index.php:111 msgid "[Experimental]" msgstr "[Sperimentale]" -#: src/Module/Admin/Themes/Index.php:120 +#: src/Module/Admin/Themes/Index.php:112 msgid "[Unsupported]" msgstr "[Non supportato]" -#: src/Module/Admin/Tos.php:79 +#: src/Module/Admin/Tos.php:65 msgid "Display Terms of Service" msgstr "Mostra i Termini di Servizio" -#: src/Module/Admin/Tos.php:79 +#: src/Module/Admin/Tos.php:65 msgid "" "Enable the Terms of Service page. If this is enabled a link to the terms " "will be added to the registration form and the general information page." msgstr "Abilita la pagina dei Termini di Servizio. Se abilitato, un collegamento ai termini sarà aggiunto alla pagina di registrazione e nella pagina delle informazioni generali." -#: src/Module/Admin/Tos.php:80 +#: src/Module/Admin/Tos.php:66 msgid "Display Privacy Statement" msgstr "Visualizza l'Informativa sulla Privacy" -#: src/Module/Admin/Tos.php:80 +#: src/Module/Admin/Tos.php:66 #, php-format msgid "" "Show some informations regarding the needed information to operate the node " @@ -5914,160 +5930,160 @@ msgid "" "noreferrer\">EU-GDPR." msgstr "Mostra alcune informazioni richieste per gestire il nodo in accordo, per esempio, al GDPR." -#: src/Module/Admin/Tos.php:81 +#: src/Module/Admin/Tos.php:67 msgid "Privacy Statement Preview" msgstr "Anteprima Informativa sulla Privacy" -#: src/Module/Admin/Tos.php:83 +#: src/Module/Admin/Tos.php:69 msgid "The Terms of Service" msgstr "I Termini di Servizio" -#: src/Module/Admin/Tos.php:83 +#: src/Module/Admin/Tos.php:69 msgid "" "Enter the Terms of Service for your node here. You can use BBCode. Headers " "of sections should be [h2] and below." msgstr "Inserisci i Termini di Servizio del tuo nodo qui. Puoi usare BBCode. Le intestazioni delle sezioni dovrebbero partire da [h2]." -#: src/Module/Admin/Tos.php:84 +#: src/Module/Admin/Tos.php:70 msgid "The rules" msgstr "" -#: src/Module/Admin/Tos.php:84 +#: src/Module/Admin/Tos.php:70 msgid "Enter your system rules here. Each line represents one rule." msgstr "" -#: src/Module/Api/ApiResponse.php:293 +#: src/Module/Api/ApiResponse.php:279 #, php-format msgid "API endpoint %s %s is not implemented but might be in the future." msgstr "" -#: src/Module/Api/Mastodon/Apps.php:73 +#: src/Module/Api/Mastodon/Apps.php:59 msgid "Missing parameters" msgstr "Parametri mancanti" -#: src/Module/Api/Mastodon/Statuses/Bookmark.php:50 +#: src/Module/Api/Mastodon/Statuses/Bookmark.php:36 msgid "Only starting posts can be bookmarked" msgstr "Solo i messaggi iniziali possono essere aggiunti ai preferiti" -#: src/Module/Api/Mastodon/Statuses/Mute.php:51 +#: src/Module/Api/Mastodon/Statuses/Mute.php:37 msgid "Only starting posts can be muted" msgstr "Solo i messaggi iniziali possono essere silenziati" -#: src/Module/Api/Mastodon/Statuses/Reblog.php:58 +#: src/Module/Api/Mastodon/Statuses/Reblog.php:44 #, php-format msgid "Posts from %s can't be shared" msgstr "I messaggi da %s non possono essere condivisi" -#: src/Module/Api/Mastodon/Statuses/Unbookmark.php:51 +#: src/Module/Api/Mastodon/Statuses/Unbookmark.php:37 msgid "Only starting posts can be unbookmarked" msgstr "Solo i messaggi iniziali possono essere rimossi dai preferiti" -#: src/Module/Api/Mastodon/Statuses/Unmute.php:51 +#: src/Module/Api/Mastodon/Statuses/Unmute.php:37 msgid "Only starting posts can be unmuted" msgstr "Solo i messaggi iniziali possono essere de-silenziati" -#: src/Module/Api/Mastodon/Statuses/Unreblog.php:64 +#: src/Module/Api/Mastodon/Statuses/Unreblog.php:50 #, php-format msgid "Posts from %s can't be unshared" msgstr "I messaggi da %snon possono essere condivisi" -#: src/Module/Api/Twitter/ContactEndpoint.php:66 +#: src/Module/Api/Twitter/ContactEndpoint.php:52 msgid "Contact not found" msgstr "Contatto non trovato" -#: src/Module/Apps.php:62 +#: src/Module/Apps.php:48 msgid "No installed applications." msgstr "Nessuna applicazione installata." -#: src/Module/Apps.php:67 +#: src/Module/Apps.php:53 msgid "Applications" msgstr "Applicazioni" -#: src/Module/Attach.php:49 src/Module/Attach.php:61 +#: src/Module/Attach.php:35 src/Module/Attach.php:47 msgid "Item was not found." msgstr "Oggetto non trovato." -#: src/Module/BaseAdmin.php:54 src/Module/BaseAdmin.php:58 -#: src/Module/BaseModeration.php:77 src/Module/BaseModeration.php:81 +#: src/Module/BaseAdmin.php:40 src/Module/BaseAdmin.php:44 +#: src/Module/BaseModeration.php:63 src/Module/BaseModeration.php:67 msgid "Please login to continue." msgstr "Effettua il login per continuare." -#: src/Module/BaseAdmin.php:63 +#: src/Module/BaseAdmin.php:49 msgid "You don't have access to administration pages." msgstr "Non hai accesso alle pagine di amministrazione." -#: src/Module/BaseAdmin.php:67 +#: src/Module/BaseAdmin.php:53 msgid "" "Submanaged account can't access the administration pages. Please log back in" " as the main account." msgstr "Account sottogestiti non possono accedere alle pagine di amministrazione. Per favore autenticati con l'account principale." -#: src/Module/BaseAdmin.php:86 src/Module/BaseModeration.php:109 +#: src/Module/BaseAdmin.php:72 src/Module/BaseModeration.php:95 msgid "Overview" msgstr "Panoramica" -#: src/Module/BaseAdmin.php:89 src/Module/BaseModeration.php:112 +#: src/Module/BaseAdmin.php:75 src/Module/BaseModeration.php:98 msgid "Configuration" msgstr "Configurazione" -#: src/Module/BaseAdmin.php:94 src/Module/BaseSettings.php:110 +#: src/Module/BaseAdmin.php:80 src/Module/BaseSettings.php:96 msgid "Additional features" msgstr "Funzionalità aggiuntive" -#: src/Module/BaseAdmin.php:97 +#: src/Module/BaseAdmin.php:83 msgid "Database" msgstr "Database" -#: src/Module/BaseAdmin.php:98 +#: src/Module/BaseAdmin.php:84 msgid "DB updates" msgstr "Aggiornamenti Database" -#: src/Module/BaseAdmin.php:99 +#: src/Module/BaseAdmin.php:85 msgid "Inspect Deferred Workers" msgstr "Analizza i lavori rinviati" -#: src/Module/BaseAdmin.php:100 +#: src/Module/BaseAdmin.php:86 msgid "Inspect worker Queue" msgstr "Analizza coda lavori" -#: src/Module/BaseAdmin.php:106 src/Module/BaseModeration.php:120 +#: src/Module/BaseAdmin.php:92 src/Module/BaseModeration.php:106 msgid "Diagnostics" msgstr "Diagnostiche" -#: src/Module/BaseAdmin.php:107 +#: src/Module/BaseAdmin.php:93 msgid "PHP Info" msgstr "Info PHP" -#: src/Module/BaseAdmin.php:108 +#: src/Module/BaseAdmin.php:94 msgid "probe address" msgstr "controlla indirizzo" -#: src/Module/BaseAdmin.php:109 +#: src/Module/BaseAdmin.php:95 msgid "check webfinger" msgstr "verifica webfinger" -#: src/Module/BaseAdmin.php:110 +#: src/Module/BaseAdmin.php:96 msgid "Babel" msgstr "Babel" -#: src/Module/BaseAdmin.php:111 src/Module/Debug/ActivityPubConversion.php:137 +#: src/Module/BaseAdmin.php:97 src/Module/Debug/ActivityPubConversion.php:129 msgid "ActivityPub Conversion" msgstr "Conversione ActivityPub" -#: src/Module/BaseAdmin.php:120 +#: src/Module/BaseAdmin.php:106 msgid "Addon Features" msgstr "Funzionalità Componenti Aggiuntivi" -#: src/Module/BaseAdmin.php:121 src/Module/BaseModeration.php:129 +#: src/Module/BaseAdmin.php:107 src/Module/BaseModeration.php:115 msgid "User registrations waiting for confirmation" msgstr "Utenti registrati in attesa di conferma" -#: src/Module/BaseApi.php:455 src/Module/BaseApi.php:471 -#: src/Module/BaseApi.php:487 +#: src/Module/BaseApi.php:441 src/Module/BaseApi.php:457 +#: src/Module/BaseApi.php:473 msgid "Too Many Requests" msgstr "" -#: src/Module/BaseApi.php:456 +#: src/Module/BaseApi.php:442 #, php-format msgid "Daily posting limit of %d post reached. The post was rejected." msgid_plural "Daily posting limit of %d posts reached. The post was rejected." @@ -6075,7 +6091,7 @@ msgstr[0] "Limite giornaliero di %d messaggio raggiunto. Il messaggio è stato r msgstr[1] "Limite giornaliero di %d messaggi raggiunto. Il messaggio è stato rifiutato." msgstr[2] "Limite giornaliero di %d messaggi raggiunto. Il messaggio è stato rifiutato." -#: src/Module/BaseApi.php:472 +#: src/Module/BaseApi.php:458 #, php-format msgid "Weekly posting limit of %d post reached. The post was rejected." msgid_plural "" @@ -6084,7 +6100,7 @@ msgstr[0] "Limite settimanale di %d messaggio raggiunto. Il messaggio è stato r msgstr[1] "Limite settimanale di %d messaggi raggiunto. Il messaggio è stato rifiutato." msgstr[2] "Limite settimanale di %d messaggi raggiunto. Il messaggio è stato rifiutato." -#: src/Module/BaseApi.php:488 +#: src/Module/BaseApi.php:474 #, php-format msgid "Monthly posting limit of %d post reached. The post was rejected." msgid_plural "" @@ -6093,84 +6109,84 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: src/Module/BaseModeration.php:86 +#: src/Module/BaseModeration.php:72 msgid "You don't have access to moderation pages." msgstr "" -#: src/Module/BaseModeration.php:90 +#: src/Module/BaseModeration.php:76 msgid "" "Submanaged account can't access the moderation pages. Please log back in as " "the main account." msgstr "" -#: src/Module/BaseModeration.php:110 src/Module/Moderation/Reports.php:109 +#: src/Module/BaseModeration.php:96 src/Module/Moderation/Reports.php:101 msgid "Reports" msgstr "" -#: src/Module/BaseModeration.php:113 src/Module/Moderation/Users/Index.php:148 -#: src/Module/Moderation/Users/Index.php:158 +#: src/Module/BaseModeration.php:99 src/Module/Moderation/Users/Index.php:134 +#: src/Module/Moderation/Users/Index.php:144 msgid "Users" msgstr "Utenti" -#: src/Module/BaseModeration.php:115 +#: src/Module/BaseModeration.php:101 msgid "Tools" msgstr "Strumenti" -#: src/Module/BaseModeration.php:116 +#: src/Module/BaseModeration.php:102 msgid "Contact Blocklist" msgstr "Blocklist Contatti" -#: src/Module/BaseModeration.php:117 +#: src/Module/BaseModeration.php:103 msgid "Server Blocklist" msgstr "Server Blocklist" -#: src/Module/BaseModeration.php:118 src/Module/Moderation/Item/Delete.php:62 +#: src/Module/BaseModeration.php:104 src/Module/Moderation/Item/Delete.php:48 msgid "Delete Item" msgstr "Rimuovi elemento" -#: src/Module/BaseModeration.php:121 src/Module/Moderation/Item/Source.php:76 +#: src/Module/BaseModeration.php:107 src/Module/Moderation/Item/Source.php:68 msgid "Item Source" msgstr "Sorgente Oggetto" -#: src/Module/BaseProfile.php:52 src/Module/Contact.php:506 +#: src/Module/BaseProfile.php:38 src/Module/Contact.php:488 msgid "Profile Details" msgstr "Dettagli del profilo" -#: src/Module/BaseProfile.php:60 +#: src/Module/BaseProfile.php:46 msgid "Conversations started" msgstr "" -#: src/Module/BaseProfile.php:111 +#: src/Module/BaseProfile.php:97 msgid "Only You Can See This" msgstr "Solo tu puoi vedere questo" -#: src/Module/BaseProfile.php:116 src/Module/Profile/Schedule.php:81 +#: src/Module/BaseProfile.php:102 src/Module/Profile/Schedule.php:67 msgid "Scheduled Posts" msgstr "" -#: src/Module/BaseProfile.php:119 +#: src/Module/BaseProfile.php:105 msgid "Posts that are scheduled for publishing" msgstr "" -#: src/Module/BaseProfile.php:138 src/Module/BaseProfile.php:141 +#: src/Module/BaseProfile.php:124 src/Module/BaseProfile.php:127 msgid "Tips for New Members" msgstr "Consigli per i Nuovi Utenti" -#: src/Module/BaseSearch.php:71 +#: src/Module/BaseSearch.php:57 #, php-format msgid "People Search - %s" msgstr "Cerca persone - %s" -#: src/Module/BaseSearch.php:75 +#: src/Module/BaseSearch.php:61 #, php-format msgid "Group Search - %s" msgstr "" -#: src/Module/BaseSearch.php:121 src/Module/Contact/MatchInterests.php:140 +#: src/Module/BaseSearch.php:107 src/Module/Contact/MatchInterests.php:136 msgid "No matches" msgstr "Nessun risultato" -#: src/Module/BaseSearch.php:147 +#: src/Module/BaseSearch.php:133 #, php-format msgid "" "%d result was filtered out because your node blocks the domain it is " @@ -6184,267 +6200,267 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: src/Module/BaseSettings.php:78 +#: src/Module/BaseSettings.php:64 msgid "Account" msgstr "Account" -#: src/Module/BaseSettings.php:85 src/Module/Security/TwoFactor/Verify.php:96 -#: src/Module/Settings/TwoFactor/Index.php:138 +#: src/Module/BaseSettings.php:71 src/Module/Security/TwoFactor/Verify.php:82 +#: src/Module/Settings/TwoFactor/Index.php:124 msgid "Two-factor authentication" msgstr "Autenticazione a due fattori" -#: src/Module/BaseSettings.php:118 +#: src/Module/BaseSettings.php:104 msgid "Display" msgstr "Visualizzazione" -#: src/Module/BaseSettings.php:132 src/Module/Settings/Connectors.php:204 +#: src/Module/BaseSettings.php:118 src/Module/Settings/Connectors.php:195 msgid "Social Networks" msgstr "Social Networks" -#: src/Module/BaseSettings.php:146 src/Module/Settings/Delegation.php:194 +#: src/Module/BaseSettings.php:132 src/Module/Settings/Delegation.php:180 msgid "Manage Accounts" msgstr "Gestisci Account" -#: src/Module/BaseSettings.php:153 +#: src/Module/BaseSettings.php:139 msgid "Connected apps" msgstr "Applicazioni collegate" -#: src/Module/BaseSettings.php:160 +#: src/Module/BaseSettings.php:146 msgid "Remote servers" msgstr "" -#: src/Module/BaseSettings.php:167 src/Module/Settings/UserExport.php:98 +#: src/Module/BaseSettings.php:153 src/Module/Settings/UserExport.php:84 msgid "Export personal data" msgstr "Esporta dati personali" -#: src/Module/BaseSettings.php:174 +#: src/Module/BaseSettings.php:160 msgid "Remove account" msgstr "Rimuovi account" -#: src/Module/Bookmarklet.php:54 +#: src/Module/Bookmarklet.php:40 msgid "This page is missing a url parameter." msgstr "A questa pagina manca il parametro url." -#: src/Module/Bookmarklet.php:66 +#: src/Module/Bookmarklet.php:52 msgid "The post was created" msgstr "Il messaggio è stato creato" -#: src/Module/Calendar/Event/API.php:100 src/Module/Calendar/Event/API.php:135 -#: src/Module/Calendar/Event/Form.php:80 +#: src/Module/Calendar/Event/API.php:86 src/Module/Calendar/Event/API.php:121 +#: src/Module/Calendar/Event/Form.php:66 msgid "Invalid Request" msgstr "" -#: src/Module/Calendar/Event/API.php:109 +#: src/Module/Calendar/Event/API.php:95 msgid "Event id is missing." msgstr "" -#: src/Module/Calendar/Event/API.php:131 +#: src/Module/Calendar/Event/API.php:117 msgid "Failed to remove event" msgstr "Rimozione evento fallita." -#: src/Module/Calendar/Event/API.php:187 src/Module/Calendar/Event/API.php:189 +#: src/Module/Calendar/Event/API.php:173 src/Module/Calendar/Event/API.php:175 msgid "Event can not end before it has started." msgstr "Un evento non può finire prima di iniziare." -#: src/Module/Calendar/Event/API.php:196 src/Module/Calendar/Event/API.php:198 +#: src/Module/Calendar/Event/API.php:182 src/Module/Calendar/Event/API.php:184 msgid "Event title and start time are required." msgstr "Titolo e ora di inizio dell'evento sono richiesti." -#: src/Module/Calendar/Event/Form.php:208 +#: src/Module/Calendar/Event/Form.php:194 msgid "Starting date and Title are required." msgstr "La data di inizio e il titolo sono richiesti." -#: src/Module/Calendar/Event/Form.php:209 -#: src/Module/Calendar/Event/Form.php:214 +#: src/Module/Calendar/Event/Form.php:195 +#: src/Module/Calendar/Event/Form.php:200 msgid "Event Starts:" msgstr "L'evento inizia:" -#: src/Module/Calendar/Event/Form.php:209 -#: src/Module/Calendar/Event/Form.php:237 src/Module/Debug/Probe.php:59 -#: src/Module/Install.php:201 src/Module/Install.php:227 -#: src/Module/Install.php:232 src/Module/Install.php:246 -#: src/Module/Install.php:255 src/Module/Install.php:260 -#: src/Module/Install.php:266 src/Module/Install.php:271 -#: src/Module/Install.php:285 src/Module/Install.php:298 -#: src/Module/Install.php:325 -#: src/Module/Moderation/Blocklist/Server/Add.php:136 -#: src/Module/Moderation/Blocklist/Server/Add.php:138 -#: src/Module/Moderation/Blocklist/Server/Import.php:129 -#: src/Module/Moderation/Blocklist/Server/Index.php:86 -#: src/Module/Moderation/Blocklist/Server/Index.php:87 -#: src/Module/Moderation/Blocklist/Server/Index.php:115 -#: src/Module/Moderation/Blocklist/Server/Index.php:116 -#: src/Module/Moderation/Item/Delete.php:67 src/Module/Register.php:149 -#: src/Module/Security/TwoFactor/Verify.php:101 -#: src/Module/Settings/Channels.php:190 src/Module/Settings/Channels.php:211 -#: src/Module/Settings/TwoFactor/Index.php:161 -#: src/Module/Settings/TwoFactor/Verify.php:158 +#: src/Module/Calendar/Event/Form.php:195 +#: src/Module/Calendar/Event/Form.php:223 src/Module/Debug/Probe.php:45 +#: src/Module/Install.php:187 src/Module/Install.php:213 +#: src/Module/Install.php:218 src/Module/Install.php:232 +#: src/Module/Install.php:241 src/Module/Install.php:246 +#: src/Module/Install.php:252 src/Module/Install.php:257 +#: src/Module/Install.php:271 src/Module/Install.php:284 +#: src/Module/Install.php:311 +#: src/Module/Moderation/Blocklist/Server/Add.php:122 +#: src/Module/Moderation/Blocklist/Server/Add.php:124 +#: src/Module/Moderation/Blocklist/Server/Import.php:113 +#: src/Module/Moderation/Blocklist/Server/Index.php:72 +#: src/Module/Moderation/Blocklist/Server/Index.php:73 +#: src/Module/Moderation/Blocklist/Server/Index.php:101 +#: src/Module/Moderation/Blocklist/Server/Index.php:102 +#: src/Module/Moderation/Item/Delete.php:53 src/Module/Register.php:141 +#: src/Module/Security/TwoFactor/Verify.php:87 +#: src/Module/Settings/Channels.php:176 src/Module/Settings/Channels.php:197 +#: src/Module/Settings/TwoFactor/Index.php:147 +#: src/Module/Settings/TwoFactor/Verify.php:144 msgid "Required" msgstr "Richiesto" -#: src/Module/Calendar/Event/Form.php:223 -#: src/Module/Calendar/Event/Form.php:247 +#: src/Module/Calendar/Event/Form.php:209 +#: src/Module/Calendar/Event/Form.php:233 msgid "Finish date/time is not known or not relevant" msgstr "La data/ora di fine non è definita" -#: src/Module/Calendar/Event/Form.php:225 -#: src/Module/Calendar/Event/Form.php:230 +#: src/Module/Calendar/Event/Form.php:211 +#: src/Module/Calendar/Event/Form.php:216 msgid "Event Finishes:" msgstr "L'evento finisce:" -#: src/Module/Calendar/Event/Form.php:237 -#: src/Module/Calendar/Event/Form.php:243 +#: src/Module/Calendar/Event/Form.php:223 +#: src/Module/Calendar/Event/Form.php:229 msgid "Title (BBCode not allowed)" msgstr "" -#: src/Module/Calendar/Event/Form.php:239 +#: src/Module/Calendar/Event/Form.php:225 msgid "Description (BBCode allowed)" msgstr "" -#: src/Module/Calendar/Event/Form.php:241 +#: src/Module/Calendar/Event/Form.php:227 msgid "Location (BBCode not allowed)" msgstr "" -#: src/Module/Calendar/Event/Form.php:244 -#: src/Module/Calendar/Event/Form.php:245 +#: src/Module/Calendar/Event/Form.php:230 +#: src/Module/Calendar/Event/Form.php:231 msgid "Share this event" msgstr "Condividi questo evento" -#: src/Module/Calendar/Event/Form.php:251 src/Module/Profile/Profile.php:275 +#: src/Module/Calendar/Event/Form.php:237 src/Module/Profile/Profile.php:263 msgid "Basic" msgstr "Base" -#: src/Module/Calendar/Export.php:94 +#: src/Module/Calendar/Export.php:80 msgid "This calendar format is not supported" msgstr "Questo formato di calendario non è supportato" -#: src/Module/Calendar/Export.php:96 +#: src/Module/Calendar/Export.php:82 msgid "No exportable data found" msgstr "Nessun dato esportabile trovato" -#: src/Module/Calendar/Export.php:113 +#: src/Module/Calendar/Export.php:99 msgid "calendar" msgstr "calendario" -#: src/Module/Calendar/Show.php:124 +#: src/Module/Calendar/Show.php:110 msgid "Events" msgstr "Eventi" -#: src/Module/Calendar/Show.php:125 +#: src/Module/Calendar/Show.php:111 msgid "View" msgstr "Mostra" -#: src/Module/Calendar/Show.php:126 +#: src/Module/Calendar/Show.php:112 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:118 src/Module/Settings/Display.php:283 msgid "list" msgstr "lista" -#: src/Module/Circle.php:57 +#: src/Module/Circle.php:43 msgid "Could not create circle." msgstr "" -#: src/Module/Circle.php:68 src/Module/Circle.php:216 -#: src/Module/Circle.php:240 +#: src/Module/Circle.php:54 src/Module/Circle.php:202 +#: src/Module/Circle.php:226 msgid "Circle not found." msgstr "" -#: src/Module/Circle.php:74 +#: src/Module/Circle.php:60 msgid "Circle name was not changed." msgstr "" -#: src/Module/Circle.php:92 +#: src/Module/Circle.php:78 msgid "Unknown circle." msgstr "" -#: src/Module/Circle.php:98 src/Module/Circle.php:107 -#: src/Module/Contact/Advanced.php:70 src/Module/Contact/Advanced.php:109 -#: src/Module/Contact/Contacts.php:71 src/Module/Contact/Conversations.php:86 -#: src/Module/Contact/Conversations.php:91 -#: src/Module/Contact/Conversations.php:96 src/Module/Contact/Media.php:61 -#: src/Module/Contact/Posts.php:78 src/Module/Contact/Posts.php:83 -#: src/Module/Contact/Posts.php:88 src/Module/Contact/Profile.php:159 -#: src/Module/Contact/Profile.php:164 src/Module/Contact/Profile.php:169 -#: src/Module/Contact/Redir.php:95 src/Module/Contact/Redir.php:141 -#: src/Module/FriendSuggest.php:71 src/Module/FriendSuggest.php:109 +#: src/Module/Circle.php:84 src/Module/Circle.php:93 +#: src/Module/Contact/Advanced.php:56 src/Module/Contact/Advanced.php:95 +#: src/Module/Contact/Contacts.php:57 src/Module/Contact/Conversations.php:72 +#: src/Module/Contact/Conversations.php:77 +#: src/Module/Contact/Conversations.php:82 src/Module/Contact/Media.php:47 +#: src/Module/Contact/Posts.php:64 src/Module/Contact/Posts.php:69 +#: src/Module/Contact/Posts.php:74 src/Module/Contact/Profile.php:145 +#: src/Module/Contact/Profile.php:150 src/Module/Contact/Profile.php:169 +#: src/Module/Contact/Redir.php:77 src/Module/Contact/Redir.php:131 +#: src/Module/FriendSuggest.php:57 src/Module/FriendSuggest.php:95 msgid "Contact not found." msgstr "Contatto non trovato." -#: src/Module/Circle.php:102 src/Module/Contact/Contacts.php:66 +#: src/Module/Circle.php:88 src/Module/Contact/Contacts.php:52 msgid "Invalid contact." msgstr "Contatto non valido." -#: src/Module/Circle.php:111 src/Module/Contact/Revoke.php:73 +#: src/Module/Circle.php:97 src/Module/Contact/Revoke.php:56 msgid "Contact is deleted." msgstr "Contatto eliminato." -#: src/Module/Circle.php:117 +#: src/Module/Circle.php:103 msgid "Unable to add the contact to the circle." msgstr "" -#: src/Module/Circle.php:120 +#: src/Module/Circle.php:106 msgid "Contact successfully added to circle." msgstr "" -#: src/Module/Circle.php:124 +#: src/Module/Circle.php:110 msgid "Unable to remove the contact from the circle." msgstr "" -#: src/Module/Circle.php:127 +#: src/Module/Circle.php:113 msgid "Contact successfully removed from circle." msgstr "" -#: src/Module/Circle.php:131 +#: src/Module/Circle.php:117 msgid "Bad request." msgstr "Richiesta sbagliata." -#: src/Module/Circle.php:172 +#: src/Module/Circle.php:158 msgid "Save Circle" msgstr "" -#: src/Module/Circle.php:173 +#: src/Module/Circle.php:159 msgid "Filter" msgstr "Filtro" -#: src/Module/Circle.php:179 +#: src/Module/Circle.php:165 msgid "Create a circle of contacts/friends." msgstr "" -#: src/Module/Circle.php:221 +#: src/Module/Circle.php:207 msgid "Unable to remove circle." msgstr "" -#: src/Module/Circle.php:272 +#: src/Module/Circle.php:258 msgid "Delete Circle" msgstr "" -#: src/Module/Circle.php:282 +#: src/Module/Circle.php:268 msgid "Edit Circle Name" msgstr "" -#: src/Module/Circle.php:292 +#: src/Module/Circle.php:278 msgid "Members" msgstr "Membri" -#: src/Module/Circle.php:295 +#: src/Module/Circle.php:281 msgid "Circle is empty" msgstr "" -#: src/Module/Circle.php:311 +#: src/Module/Circle.php:297 msgid "Remove contact from circle" msgstr "" -#: src/Module/Circle.php:334 +#: src/Module/Circle.php:320 msgid "Click on a contact to add or remove." msgstr "Clicca su un contatto per aggiungerlo o rimuoverlo." -#: src/Module/Circle.php:351 +#: src/Module/Circle.php:337 msgid "Add contact to circle" msgstr "" -#: src/Module/Contact.php:96 +#: src/Module/Contact.php:88 #, php-format msgid "%d contact edited." msgid_plural "%d contacts edited." @@ -6452,192 +6468,192 @@ msgstr[0] "%d contatto modificato." msgstr[1] "%d contatti modificati" msgstr[2] "%d contatti modificati" -#: src/Module/Contact.php:347 +#: src/Module/Contact.php:328 msgid "Show all contacts" msgstr "Mostra tutti i contatti" -#: src/Module/Contact.php:352 src/Module/Contact.php:431 -#: src/Module/Moderation/BaseUsers.php:85 +#: src/Module/Contact.php:333 src/Module/Contact.php:412 +#: src/Module/Moderation/BaseUsers.php:72 msgid "Pending" msgstr "In sospeso" -#: src/Module/Contact.php:355 +#: src/Module/Contact.php:336 msgid "Only show pending contacts" msgstr "Mostra solo contatti in sospeso" -#: src/Module/Contact.php:360 src/Module/Contact.php:434 -#: src/Module/Moderation/BaseUsers.php:93 +#: src/Module/Contact.php:341 src/Module/Contact.php:415 +#: src/Module/Moderation/BaseUsers.php:80 msgid "Blocked" msgstr "Bloccato" -#: src/Module/Contact.php:363 +#: src/Module/Contact.php:344 msgid "Only show blocked contacts" msgstr "Mostra solo contatti bloccati" -#: src/Module/Contact.php:368 src/Module/Contact.php:440 -#: src/Module/Settings/Server/Index.php:107 src/Object/Post.php:399 +#: src/Module/Contact.php:349 src/Module/Contact.php:421 +#: src/Module/Settings/Server/Index.php:93 src/Object/Post.php:385 msgid "Ignored" msgstr "Ignorato" -#: src/Module/Contact.php:371 +#: src/Module/Contact.php:352 msgid "Only show ignored contacts" msgstr "Mostra solo contatti ignorati" -#: src/Module/Contact.php:376 src/Module/Contact.php:443 +#: src/Module/Contact.php:357 src/Module/Contact.php:424 msgid "Collapsed" msgstr "" -#: src/Module/Contact.php:379 +#: src/Module/Contact.php:360 msgid "Only show collapsed contacts" msgstr "" -#: src/Module/Contact.php:384 src/Module/Contact.php:446 +#: src/Module/Contact.php:365 src/Module/Contact.php:427 msgid "Archived" msgstr "Archiviato" -#: src/Module/Contact.php:387 +#: src/Module/Contact.php:368 msgid "Only show archived contacts" msgstr "Mostra solo contatti archiviati" -#: src/Module/Contact.php:392 src/Module/Contact.php:437 +#: src/Module/Contact.php:373 src/Module/Contact.php:418 msgid "Hidden" msgstr "Nascosto" -#: src/Module/Contact.php:395 +#: src/Module/Contact.php:376 msgid "Only show hidden contacts" msgstr "Mostra solo contatti nascosti" -#: src/Module/Contact.php:403 +#: src/Module/Contact.php:384 msgid "Organize your contact circles" msgstr "" -#: src/Module/Contact.php:458 +#: src/Module/Contact.php:439 msgid "Search your contacts" msgstr "Cerca nei tuoi contatti" -#: src/Module/Contact.php:459 src/Module/Search/Index.php:207 +#: src/Module/Contact.php:440 src/Module/Search/Index.php:193 #, php-format msgid "Results for: %s" msgstr "Risultati per: %s" -#: src/Module/Contact.php:466 +#: src/Module/Contact.php:448 msgid "Update" msgstr "Aggiorna" -#: src/Module/Contact.php:467 src/Module/Contact/Profile.php:518 -#: src/Module/Moderation/Blocklist/Contact.php:117 -#: src/Module/Moderation/Users/Blocked.php:138 -#: src/Module/Moderation/Users/Index.php:154 +#: src/Module/Contact.php:449 src/Module/Contact/Profile.php:518 +#: src/Module/Moderation/Blocklist/Contact.php:103 +#: src/Module/Moderation/Users/Blocked.php:124 +#: src/Module/Moderation/Users/Index.php:140 msgid "Unblock" msgstr "Sblocca" -#: src/Module/Contact.php:468 src/Module/Contact/Profile.php:526 +#: src/Module/Contact.php:450 src/Module/Contact/Profile.php:526 msgid "Unignore" msgstr "Non ignorare" -#: src/Module/Contact.php:469 src/Module/Contact/Profile.php:534 +#: src/Module/Contact.php:451 src/Module/Contact/Profile.php:534 msgid "Uncollapse" msgstr "" -#: src/Module/Contact.php:471 +#: src/Module/Contact.php:453 msgid "Batch Actions" msgstr "Azioni Batch" -#: src/Module/Contact.php:514 +#: src/Module/Contact.php:496 msgid "Conversations started by this contact" msgstr "Conversazioni iniziate da questo contatto" -#: src/Module/Contact.php:519 +#: src/Module/Contact.php:501 msgid "Posts and Comments" msgstr "Messaggi e Commenti" -#: src/Module/Contact.php:522 +#: src/Module/Contact.php:504 msgid "Individual Posts and Replies" msgstr "" -#: src/Module/Contact.php:530 +#: src/Module/Contact.php:512 msgid "Posts containing media objects" msgstr "" -#: src/Module/Contact.php:538 +#: src/Module/Contact.php:520 msgid "View all known contacts" msgstr "Vedi tutti i contatti conosciuti" -#: src/Module/Contact.php:549 +#: src/Module/Contact.php:531 msgid "Advanced Contact Settings" msgstr "Impostazioni avanzate Contatto" -#: src/Module/Contact.php:585 +#: src/Module/Contact.php:567 msgid "Mutual Friendship" msgstr "Amicizia reciproca" -#: src/Module/Contact.php:589 +#: src/Module/Contact.php:571 msgid "is a fan of yours" msgstr "è un tuo fan" -#: src/Module/Contact.php:593 +#: src/Module/Contact.php:575 msgid "you are a fan of" msgstr "sei un fan di" -#: src/Module/Contact.php:611 +#: src/Module/Contact.php:593 msgid "Pending outgoing contact request" msgstr "Richiesta di contatto in uscita in sospeso" -#: src/Module/Contact.php:613 +#: src/Module/Contact.php:595 msgid "Pending incoming contact request" msgstr "Richiesta di contatto in arrivo in sospeso" -#: src/Module/Contact.php:626 src/Module/Contact/Profile.php:377 +#: src/Module/Contact.php:608 src/Module/Contact/Profile.php:377 #, php-format msgid "Visit %s's profile [%s]" msgstr "Visita il profilo di %s [%s]" -#: src/Module/Contact/Advanced.php:99 +#: src/Module/Contact/Advanced.php:85 msgid "Contact update failed." msgstr "Le modifiche al contatto non sono state salvate." -#: src/Module/Contact/Advanced.php:130 +#: src/Module/Contact/Advanced.php:116 msgid "Return to contact editor" msgstr "Ritorna alla modifica contatto" -#: src/Module/Contact/Advanced.php:134 -#: src/Module/Moderation/Blocklist/Contact.php:122 -#: src/Module/Moderation/Reports.php:110 -#: src/Module/Moderation/Users/Active.php:126 -#: src/Module/Moderation/Users/Blocked.php:126 -#: src/Module/Moderation/Users/Create.php:70 -#: src/Module/Moderation/Users/Deleted.php:83 -#: src/Module/Moderation/Users/Index.php:140 -#: src/Module/Moderation/Users/Index.php:160 -#: src/Module/Moderation/Users/Pending.php:99 src/Module/Settings/OAuth.php:72 +#: src/Module/Contact/Advanced.php:120 +#: src/Module/Moderation/Blocklist/Contact.php:108 +#: src/Module/Moderation/Reports.php:102 +#: src/Module/Moderation/Users/Active.php:112 +#: src/Module/Moderation/Users/Blocked.php:112 +#: src/Module/Moderation/Users/Create.php:56 +#: src/Module/Moderation/Users/Deleted.php:69 +#: src/Module/Moderation/Users/Index.php:126 +#: src/Module/Moderation/Users/Index.php:146 +#: src/Module/Moderation/Users/Pending.php:85 src/Module/Settings/OAuth.php:58 msgid "Name" msgstr "Nome" -#: src/Module/Contact/Advanced.php:135 +#: src/Module/Contact/Advanced.php:121 msgid "Account Nickname" msgstr "Nome utente" -#: src/Module/Contact/Advanced.php:136 +#: src/Module/Contact/Advanced.php:122 msgid "Account URL" msgstr "URL dell'utente" -#: src/Module/Contact/Advanced.php:137 +#: src/Module/Contact/Advanced.php:123 msgid "Poll/Feed URL" msgstr "URL Feed" -#: src/Module/Contact/Advanced.php:138 +#: src/Module/Contact/Advanced.php:124 msgid "New photo from this URL" msgstr "Nuova foto da questo URL" -#: src/Module/Contact/Contacts.php:89 +#: src/Module/Contact/Contacts.php:75 msgid "No known contacts." msgstr "Nessun contatto conosciuto." -#: src/Module/Contact/Contacts.php:103 src/Module/Profile/Common.php:128 +#: src/Module/Contact/Contacts.php:89 src/Module/Profile/Common.php:114 msgid "No common contacts." msgstr "Nessun contatto in comune." -#: src/Module/Contact/Contacts.php:115 src/Module/Profile/Contacts.php:135 +#: src/Module/Contact/Contacts.php:101 src/Module/Profile/Contacts.php:121 #, php-format msgid "Follower (%s)" msgid_plural "Followers (%s)" @@ -6645,7 +6661,7 @@ msgstr[0] "Seguace (%s)" msgstr[1] "Seguaci (%s)" msgstr[2] "Seguaci (%s)" -#: src/Module/Contact/Contacts.php:119 src/Module/Profile/Contacts.php:138 +#: src/Module/Contact/Contacts.php:105 src/Module/Profile/Contacts.php:124 #, php-format msgid "Following (%s)" msgid_plural "Following (%s)" @@ -6653,7 +6669,7 @@ msgstr[0] "Seguendo (%s)" msgstr[1] "Seguendo (%s)" msgstr[2] "Seguendo (%s)" -#: src/Module/Contact/Contacts.php:123 src/Module/Profile/Contacts.php:141 +#: src/Module/Contact/Contacts.php:109 src/Module/Profile/Contacts.php:127 #, php-format msgid "Mutual friend (%s)" msgid_plural "Mutual friends (%s)" @@ -6661,12 +6677,12 @@ msgstr[0] "Amico reciproco (%s)" msgstr[1] "Amici reciproci (%s)" msgstr[2] "Amici reciproci (%s)" -#: src/Module/Contact/Contacts.php:125 src/Module/Profile/Contacts.php:143 +#: src/Module/Contact/Contacts.php:111 src/Module/Profile/Contacts.php:129 #, php-format msgid "These contacts both follow and are followed by %s." msgstr "Questi contatti seguono e sono seguiti da %s." -#: src/Module/Contact/Contacts.php:131 src/Module/Profile/Common.php:116 +#: src/Module/Contact/Contacts.php:117 src/Module/Profile/Common.php:102 #, php-format msgid "Common contact (%s)" msgid_plural "Common contacts (%s)" @@ -6674,14 +6690,14 @@ msgstr[0] "Contatto in comune (%s)" msgstr[1] "Contatti in comune (%s)" msgstr[2] "Contatti in comune (%s)" -#: src/Module/Contact/Contacts.php:133 src/Module/Profile/Common.php:118 +#: src/Module/Contact/Contacts.php:119 src/Module/Profile/Common.php:104 #, php-format msgid "" "Both %s and yourself have publicly interacted with these " "contacts (follow, comment or likes on public posts)." msgstr "Sia tu che %s avete pubblicamente interagito con questi contatti (seguendo, commentando o mettendo mi piace su messaggi pubblici)." -#: src/Module/Contact/Contacts.php:139 src/Module/Profile/Contacts.php:149 +#: src/Module/Contact/Contacts.php:125 src/Module/Profile/Contacts.php:135 #, php-format msgid "Contact (%s)" msgid_plural "Contacts (%s)" @@ -6689,95 +6705,91 @@ msgstr[0] "Contatto (%s)" msgstr[1] "Contatti (%s)" msgstr[2] "Contatti (%s)" -#: src/Module/Contact/Follow.php:70 src/Module/Contact/Redir.php:63 -#: src/Module/Contact/Redir.php:223 src/Module/Conversation/Community.php:166 -#: src/Module/Debug/ItemBody.php:38 src/Module/Diaspora/Receive.php:57 -#: src/Module/Item/Display.php:96 src/Module/Item/Feed.php:59 -#: src/Module/Item/Follow.php:41 src/Module/Item/Ignore.php:41 -#: src/Module/Item/Language.php:53 src/Module/Item/Pin.php:41 -#: src/Module/Item/Pin.php:56 src/Module/Item/Searchtext.php:53 -#: src/Module/Item/Star.php:42 src/Module/Update/Display.php:37 +#: src/Module/Contact/Follow.php:56 src/Module/Contact/Redir.php:45 +#: src/Module/Contact/Redir.php:206 src/Module/Conversation/Community.php:154 +#: src/Module/Debug/ItemBody.php:24 src/Module/Diaspora/Receive.php:45 +#: src/Module/Item/Display.php:82 src/Module/Item/Feed.php:45 +#: src/Module/Item/Follow.php:27 src/Module/Item/Ignore.php:27 +#: src/Module/Item/Language.php:39 src/Module/Item/Pin.php:27 +#: src/Module/Item/Pin.php:42 src/Module/Item/Searchtext.php:39 +#: src/Module/Item/Star.php:28 src/Module/Update/Display.php:23 msgid "Access denied." msgstr "Accesso negato." -#: src/Module/Contact/Follow.php:105 src/Module/Contact/Unfollow.php:125 -#: src/Module/Profile/RemoteFollow.php:133 +#: src/Module/Contact/Follow.php:91 src/Module/Contact/Unfollow.php:111 +#: src/Module/Profile/RemoteFollow.php:119 msgid "Submit Request" msgstr "Invia richiesta" -#: src/Module/Contact/Follow.php:115 +#: src/Module/Contact/Follow.php:101 msgid "You already added this contact." msgstr "Hai già aggiunto questo contatto." -#: src/Module/Contact/Follow.php:130 +#: src/Module/Contact/Follow.php:116 msgid "The network type couldn't be detected. Contact can't be added." msgstr "Non è possibile rilevare il tipo di rete. Il contatto non può essere aggiunto." -#: src/Module/Contact/Follow.php:138 +#: src/Module/Contact/Follow.php:124 msgid "Diaspora support isn't enabled. Contact can't be added." msgstr "Il supporto Diaspora non è abilitato. Il contatto non può essere aggiunto." -#: src/Module/Contact/Follow.php:143 -msgid "OStatus support is disabled. Contact can't be added." -msgstr "Il supporto OStatus non è abilitato. Il contatto non può essere aggiunto." - -#: src/Module/Contact/Follow.php:168 src/Module/Profile/RemoteFollow.php:132 +#: src/Module/Contact/Follow.php:149 src/Module/Profile/RemoteFollow.php:118 msgid "Please answer the following:" msgstr "Rispondi:" -#: src/Module/Contact/Follow.php:169 src/Module/Contact/Unfollow.php:123 +#: src/Module/Contact/Follow.php:150 src/Module/Contact/Unfollow.php:109 msgid "Your Identity Address:" msgstr "L'indirizzo della tua identità:" -#: src/Module/Contact/Follow.php:170 src/Module/Contact/Profile.php:408 -#: src/Module/Contact/Unfollow.php:129 -#: src/Module/Moderation/Blocklist/Contact.php:131 -#: src/Module/Moderation/Reports.php:117 -#: src/Module/Notifications/Introductions.php:129 -#: src/Module/Notifications/Introductions.php:198 +#: src/Module/Contact/Follow.php:151 src/Module/Contact/Profile.php:408 +#: src/Module/Contact/Unfollow.php:115 +#: src/Module/Moderation/Blocklist/Contact.php:117 +#: src/Module/Moderation/Reports.php:109 +#: src/Module/Notifications/Introductions.php:121 +#: src/Module/Notifications/Introductions.php:190 msgid "Profile URL" msgstr "URL Profilo" -#: src/Module/Contact/Follow.php:171 src/Module/Contact/Profile.php:420 -#: src/Module/Notifications/Introductions.php:191 -#: src/Module/Profile/Profile.php:234 +#: src/Module/Contact/Follow.php:152 src/Module/Contact/Profile.php:420 +#: src/Module/Notifications/Introductions.php:183 +#: src/Module/Profile/Profile.php:222 msgid "Tags:" msgstr "Tag:" -#: src/Module/Contact/Follow.php:182 +#: src/Module/Contact/Follow.php:163 #, php-format msgid "%s knows you" msgstr "%s ti conosce" -#: src/Module/Contact/Follow.php:183 +#: src/Module/Contact/Follow.php:164 msgid "Add a personal note:" msgstr "Aggiungi una nota personale:" -#: src/Module/Contact/Follow.php:192 src/Module/Contact/Unfollow.php:138 +#: src/Module/Contact/Follow.php:173 src/Module/Contact/Unfollow.php:124 msgid "Posts and Replies" msgstr "" -#: src/Module/Contact/Follow.php:221 +#: src/Module/Contact/Follow.php:202 msgid "The contact could not be added." msgstr "Il contatto non può essere aggiunto." -#: src/Module/Contact/MatchInterests.php:95 -#: src/Module/Media/Attachment/Upload.php:77 -#: src/Module/Media/Attachment/Upload.php:82 -#: src/Module/Media/Photo/Upload.php:81 src/Module/Media/Photo/Upload.php:86 -#: src/Module/Media/Photo/Upload.php:135 +#: src/Module/Contact/MatchInterests.php:81 +#: src/Module/Media/Attachment/Upload.php:63 +#: src/Module/Media/Attachment/Upload.php:68 +#: src/Module/Media/Photo/Upload.php:67 src/Module/Media/Photo/Upload.php:72 +#: src/Module/Media/Photo/Upload.php:121 msgid "Invalid request." msgstr "Richiesta non valida." -#: src/Module/Contact/MatchInterests.php:102 +#: src/Module/Contact/MatchInterests.php:88 msgid "No keywords to match. Please add keywords to your profile." msgstr "Nessuna parola chiave corrisponde. Per favore aggiungi parole chiave al tuo profilo." -#: src/Module/Contact/MatchInterests.php:145 +#: src/Module/Contact/MatchInterests.php:141 msgid "Profile Match" msgstr "Profili corrispondenti" -#: src/Module/Contact/Profile.php:145 +#: src/Module/Contact/Profile.php:131 msgid "Failed to update contact record." msgstr "Errore nell'aggiornamento del contatto." @@ -6915,7 +6927,7 @@ msgid "Block/Unblock contact" msgstr "Blocca/Sblocca contatto" #: src/Module/Contact/Profile.php:379 -#: src/Module/Moderation/Report/Create.php:293 +#: src/Module/Moderation/Report/Create.php:279 msgid "Ignore contact" msgstr "Ignora il contatto" @@ -6960,7 +6972,7 @@ msgid "Manage remote servers" msgstr "" #: src/Module/Contact/Profile.php:400 -#: src/Module/Notifications/Introductions.php:192 +#: src/Module/Notifications/Introductions.php:184 msgid "Hide this contact from others" msgstr "Nascondi questo contatto agli altri" @@ -6988,12 +7000,12 @@ msgid "" msgstr "Lista separata da virgola di parole chiave che non dovranno essere convertite in hashtag, quando \"Recupera informazioni e parole chiave\" è selezionato" #: src/Module/Contact/Profile.php:421 -#: src/Module/Settings/TwoFactor/Index.php:160 +#: src/Module/Settings/TwoFactor/Index.php:146 msgid "Actions" msgstr "Azioni" #: src/Module/Contact/Profile.php:423 -#: src/Module/Settings/TwoFactor/Index.php:140 view/theme/frio/theme.php:232 +#: src/Module/Settings/TwoFactor/Index.php:126 view/theme/frio/theme.php:220 msgid "Status" msgstr "Stato" @@ -7068,8 +7080,8 @@ msgstr "" #: src/Module/Contact/Profile.php:441 msgid "" -"If enabled, posts from this contact will only appear in channels, but not in" -" the network stream." +"If enabled, posts from this contact will only appear in channels and network" +" streams in circles, but not in the general network stream." msgstr "" #: src/Module/Contact/Profile.php:509 @@ -7088,7 +7100,7 @@ msgstr "Inverti stato \"Ignora\"" msgid "Toggle Collapsed status" msgstr "" -#: src/Module/Contact/Profile.php:543 src/Module/Contact/Revoke.php:106 +#: src/Module/Contact/Profile.php:543 src/Module/Contact/Revoke.php:89 msgid "Revoke Follow" msgstr "" @@ -7096,640 +7108,636 @@ msgstr "" msgid "Revoke the follow from this contact" msgstr "" -#: src/Module/Contact/Redir.php:135 src/Module/Contact/Redir.php:187 +#: src/Module/Contact/Redir.php:125 msgid "Bad Request." msgstr "Richiesta Errata." -#: src/Module/Contact/Revoke.php:63 -msgid "Unknown contact." -msgstr "" - -#: src/Module/Contact/Revoke.php:77 +#: src/Module/Contact/Revoke.php:60 msgid "Contact is being deleted." msgstr "" -#: src/Module/Contact/Revoke.php:91 +#: src/Module/Contact/Revoke.php:74 msgid "Follow was successfully revoked." msgstr "" -#: src/Module/Contact/Revoke.php:107 +#: src/Module/Contact/Revoke.php:90 msgid "" "Do you really want to revoke this contact's follow? This cannot be undone " "and they will have to manually follow you back again." msgstr "" -#: src/Module/Contact/Suggestions.php:62 +#: src/Module/Contact/Suggestions.php:48 msgid "" "No suggestions available. If this is a new site, please try again in 24 " "hours." msgstr "Nessun suggerimento disponibile. Se questo è un sito nuovo, riprova tra 24 ore." -#: src/Module/Contact/Unfollow.php:98 src/Module/Contact/Unfollow.php:167 +#: src/Module/Contact/Unfollow.php:84 src/Module/Contact/Unfollow.php:153 msgid "You aren't following this contact." msgstr "Non stai seguendo questo contatto." -#: src/Module/Contact/Unfollow.php:103 +#: src/Module/Contact/Unfollow.php:89 msgid "Unfollowing is currently not supported by your network." msgstr "Smettere di seguire non è al momento supportato dalla tua rete." -#: src/Module/Contact/Unfollow.php:121 +#: src/Module/Contact/Unfollow.php:107 msgid "Disconnect/Unfollow" msgstr "Disconnetti/Non Seguire" -#: src/Module/Contact/Unfollow.php:175 +#: src/Module/Contact/Unfollow.php:161 msgid "Contact was successfully unfollowed" msgstr "Il contatto non è più seguito" -#: src/Module/Contact/Unfollow.php:178 +#: src/Module/Contact/Unfollow.php:164 msgid "Unable to unfollow this contact, please contact your administrator" msgstr "Impossibile smettere di seguire questo contatto, contatta il tuo amministratore" -#: src/Module/Conversation/Channel.php:139 -#: src/Module/Conversation/Community.php:126 src/Module/Search/Index.php:152 -#: src/Module/Search/Index.php:194 +#: src/Module/Conversation/Channel.php:125 +#: src/Module/Conversation/Community.php:114 src/Module/Search/Index.php:138 +#: src/Module/Search/Index.php:180 msgid "No results." msgstr "Nessun risultato." -#: src/Module/Conversation/Channel.php:177 +#: src/Module/Conversation/Channel.php:163 msgid "Channel not available." msgstr "" -#: src/Module/Conversation/Community.php:92 +#: src/Module/Conversation/Community.php:80 msgid "" "This community stream shows all public posts received by this node. They may" " not reflect the opinions of this node’s users." msgstr "Questa pagina comunità mostra tutti i messaggi pubblici ricevuti da questo nodo. Potrebbero non riflettere le opinioni degli utenti di questo nodo." -#: src/Module/Conversation/Community.php:180 +#: src/Module/Conversation/Community.php:168 msgid "Community option not available." msgstr "Opzione Comunità non disponibile" -#: src/Module/Conversation/Community.php:196 +#: src/Module/Conversation/Community.php:184 msgid "Not available." msgstr "Non disponibile." -#: src/Module/Conversation/Network.php:214 +#: src/Module/Conversation/Network.php:202 msgid "No such circle" msgstr "" -#: src/Module/Conversation/Network.php:218 +#: src/Module/Conversation/Network.php:206 #, php-format msgid "Circle: %s" msgstr "" -#: src/Module/Conversation/Network.php:237 +#: src/Module/Conversation/Network.php:226 #, php-format msgid "Error %d (%s) while fetching the timeline." msgstr "" -#: src/Module/Conversation/Network.php:314 +#: src/Module/Conversation/Network.php:304 msgid "Network feed not available." msgstr "" -#: src/Module/Conversation/Timeline.php:203 +#: src/Module/Conversation/Timeline.php:190 msgid "Include" msgstr "Includi" -#: src/Module/Conversation/Timeline.php:204 +#: src/Module/Conversation/Timeline.php:191 msgid "Hide" msgstr "Nascondi" -#: src/Module/Credits.php:44 +#: src/Module/Credits.php:30 msgid "Credits" msgstr "Crediti" -#: src/Module/Credits.php:45 +#: src/Module/Credits.php:31 msgid "" "Friendica is a community project, that would not be possible without the " "help of many people. Here is a list of those who have contributed to the " "code or the translation of Friendica. Thank you all!" msgstr "Friendica è un progetto comunitario, che non sarebbe stato possibile realizzare senza l'aiuto di molte persone.\nQuesta è una lista di chi ha contribuito al codice o alle traduzioni di Friendica. Grazie a tutti!" -#: src/Module/Debug/ActivityPubConversion.php:53 +#: src/Module/Debug/ActivityPubConversion.php:45 msgid "Formatted" msgstr "Formattato" -#: src/Module/Debug/ActivityPubConversion.php:65 +#: src/Module/Debug/ActivityPubConversion.php:57 msgid "Activity" msgstr "Attività" -#: src/Module/Debug/ActivityPubConversion.php:117 +#: src/Module/Debug/ActivityPubConversion.php:109 msgid "Object data" msgstr "Dati dell'oggetto" -#: src/Module/Debug/ActivityPubConversion.php:124 +#: src/Module/Debug/ActivityPubConversion.php:116 msgid "Result Item" msgstr "Oggetto Ritornato" -#: src/Module/Debug/ActivityPubConversion.php:129 -#: src/Module/Debug/Babel.php:294 src/Module/Moderation/Item/Source.php:87 -#: src/Module/Security/TwoFactor/Verify.php:98 +#: src/Module/Debug/ActivityPubConversion.php:121 +#: src/Module/Debug/Babel.php:286 src/Module/Moderation/Item/Source.php:79 +#: src/Module/Security/TwoFactor/Verify.php:84 msgid "Error" msgid_plural "Errors" msgstr[0] "Errori" msgstr[1] "Errori" msgstr[2] "Errori" -#: src/Module/Debug/ActivityPubConversion.php:138 +#: src/Module/Debug/ActivityPubConversion.php:130 msgid "Source activity" msgstr "Sorgente attività" -#: src/Module/Debug/Babel.php:52 +#: src/Module/Debug/Babel.php:44 msgid "Source input" msgstr "Sorgente" -#: src/Module/Debug/Babel.php:58 +#: src/Module/Debug/Babel.php:50 msgid "BBCode::toPlaintext" msgstr "BBCode::toPlaintext" -#: src/Module/Debug/Babel.php:64 +#: src/Module/Debug/Babel.php:56 msgid "BBCode::convert (raw HTML)" msgstr "BBCode::convert (raw HTML)" -#: src/Module/Debug/Babel.php:69 +#: src/Module/Debug/Babel.php:61 msgid "BBCode::convert (hex)" msgstr "BBCode::convert (hex)" -#: src/Module/Debug/Babel.php:74 +#: src/Module/Debug/Babel.php:66 msgid "BBCode::convert" msgstr "BBCode::convert" -#: src/Module/Debug/Babel.php:80 +#: src/Module/Debug/Babel.php:72 msgid "BBCode::convert => HTML::toBBCode" msgstr "BBCode::convert => HTML::toBBCode" -#: src/Module/Debug/Babel.php:86 +#: src/Module/Debug/Babel.php:78 msgid "BBCode::toMarkdown" msgstr "BBCode::toMarkdown" -#: src/Module/Debug/Babel.php:92 +#: src/Module/Debug/Babel.php:84 msgid "BBCode::toMarkdown => Markdown::convert (raw HTML)" msgstr "BBCode::toMarkdown => Markdown::convert (raw HTML)" -#: src/Module/Debug/Babel.php:96 +#: src/Module/Debug/Babel.php:88 msgid "BBCode::toMarkdown => Markdown::convert" msgstr "BBCode::toMarkdown => Markdown::convert" -#: src/Module/Debug/Babel.php:102 +#: src/Module/Debug/Babel.php:94 msgid "BBCode::toMarkdown => Markdown::toBBCode" msgstr "BBCode::toMarkdown => Markdown::toBBCode" -#: src/Module/Debug/Babel.php:108 +#: src/Module/Debug/Babel.php:100 msgid "BBCode::toMarkdown => Markdown::convert => HTML::toBBCode" msgstr "BBCode::toMarkdown => Markdown::convert => HTML::toBBCode" -#: src/Module/Debug/Babel.php:116 +#: src/Module/Debug/Babel.php:108 msgid "Item Body" msgstr "Item Body" -#: src/Module/Debug/Babel.php:120 +#: src/Module/Debug/Babel.php:112 msgid "Item Tags" msgstr "Item Tags" -#: src/Module/Debug/Babel.php:126 +#: src/Module/Debug/Babel.php:118 msgid "PageInfo::appendToBody" msgstr "PageInfo::appendToBody" -#: src/Module/Debug/Babel.php:131 +#: src/Module/Debug/Babel.php:123 msgid "PageInfo::appendToBody => BBCode::convert (raw HTML)" msgstr "PageInfo::appendToBody => BBCode::convert (raw HTML)" -#: src/Module/Debug/Babel.php:135 +#: src/Module/Debug/Babel.php:127 msgid "PageInfo::appendToBody => BBCode::convert" msgstr "PageInfo::appendToBody => BBCode::convert" -#: src/Module/Debug/Babel.php:142 +#: src/Module/Debug/Babel.php:134 msgid "Source input (Diaspora format)" msgstr "Source input (Diaspora format)" -#: src/Module/Debug/Babel.php:151 +#: src/Module/Debug/Babel.php:143 msgid "Source input (Markdown)" msgstr "Sorgente (Markdown)" -#: src/Module/Debug/Babel.php:157 +#: src/Module/Debug/Babel.php:149 msgid "Markdown::convert (raw HTML)" msgstr "Markdown::convert (raw HTML)" -#: src/Module/Debug/Babel.php:162 +#: src/Module/Debug/Babel.php:154 msgid "Markdown::convert" msgstr "Markdown::convert" -#: src/Module/Debug/Babel.php:168 +#: src/Module/Debug/Babel.php:160 msgid "Markdown::toBBCode" msgstr "Markdown::toBBCode" -#: src/Module/Debug/Babel.php:175 +#: src/Module/Debug/Babel.php:167 msgid "Raw HTML input" msgstr "Sorgente HTML grezzo" -#: src/Module/Debug/Babel.php:180 +#: src/Module/Debug/Babel.php:172 msgid "HTML Input" msgstr "Sorgente HTML" -#: src/Module/Debug/Babel.php:187 +#: src/Module/Debug/Babel.php:179 msgid "HTML Purified (raw)" msgstr "HTML Purificato (raw)" -#: src/Module/Debug/Babel.php:192 +#: src/Module/Debug/Babel.php:184 msgid "HTML Purified (hex)" msgstr "HTML Purificato (hex)" -#: src/Module/Debug/Babel.php:197 +#: src/Module/Debug/Babel.php:189 msgid "HTML Purified" msgstr "HTML Purificato" -#: src/Module/Debug/Babel.php:203 +#: src/Module/Debug/Babel.php:195 msgid "HTML::toBBCode" msgstr "HTML::toBBCode" -#: src/Module/Debug/Babel.php:209 +#: src/Module/Debug/Babel.php:201 msgid "HTML::toBBCode => BBCode::convert" msgstr "HTML::toBBCode => BBCode::convert" -#: src/Module/Debug/Babel.php:214 +#: src/Module/Debug/Babel.php:206 msgid "HTML::toBBCode => BBCode::convert (raw HTML)" msgstr "HTML::toBBCode => BBCode::convert (raw HTML)" -#: src/Module/Debug/Babel.php:220 +#: src/Module/Debug/Babel.php:212 msgid "HTML::toBBCode => BBCode::toPlaintext" msgstr "HTML::toBBCode => BBCode::toPlaintext" -#: src/Module/Debug/Babel.php:226 +#: src/Module/Debug/Babel.php:218 msgid "HTML::toMarkdown" msgstr "HTML::toMarkdown" -#: src/Module/Debug/Babel.php:232 +#: src/Module/Debug/Babel.php:224 msgid "HTML::toPlaintext" msgstr "HTML::toPlaintext" -#: src/Module/Debug/Babel.php:238 +#: src/Module/Debug/Babel.php:230 msgid "HTML::toPlaintext (compact)" msgstr "HTML::toPlaintext (compatto)" -#: src/Module/Debug/Babel.php:256 +#: src/Module/Debug/Babel.php:248 msgid "Decoded post" msgstr "Messaggio decodificato" -#: src/Module/Debug/Babel.php:277 +#: src/Module/Debug/Babel.php:269 msgid "Post array before expand entities" msgstr "Pubblica array prima di espandere le entità" -#: src/Module/Debug/Babel.php:284 +#: src/Module/Debug/Babel.php:276 msgid "Post converted" msgstr "Messaggio convertito" -#: src/Module/Debug/Babel.php:289 +#: src/Module/Debug/Babel.php:281 msgid "Converted body" msgstr "Corpo del testo convertito" -#: src/Module/Debug/Babel.php:295 +#: src/Module/Debug/Babel.php:287 msgid "Twitter addon is absent from the addon/ folder." msgstr "Il componente aggiuntivo Twitter è assente dalla cartella addon/ ." -#: src/Module/Debug/Babel.php:305 +#: src/Module/Debug/Babel.php:297 msgid "Babel Diagnostic" msgstr "Diagnostica Babel" -#: src/Module/Debug/Babel.php:307 +#: src/Module/Debug/Babel.php:299 msgid "Source text" msgstr "Testo sorgente" -#: src/Module/Debug/Babel.php:308 +#: src/Module/Debug/Babel.php:300 msgid "BBCode" msgstr "BBCode" -#: src/Module/Debug/Babel.php:310 +#: src/Module/Debug/Babel.php:302 msgid "Markdown" msgstr "Markdown" -#: src/Module/Debug/Babel.php:311 +#: src/Module/Debug/Babel.php:303 msgid "HTML" msgstr "HTML" -#: src/Module/Debug/Babel.php:313 +#: src/Module/Debug/Babel.php:305 msgid "Twitter Source / Tweet URL (requires API key)" msgstr "Sorgente Twitter / URL Tweet (richiede chiave API)" -#: src/Module/Debug/Feed.php:53 src/Module/Filer/SaveTag.php:47 -#: src/Module/Settings/Profile/Index.php:177 +#: src/Module/Debug/Feed.php:39 src/Module/Filer/SaveTag.php:33 +#: src/Module/Settings/Profile/Index.php:166 msgid "You must be logged in to use this module" msgstr "Devi aver essere autenticato per usare questo modulo" -#: src/Module/Debug/Feed.php:78 +#: src/Module/Debug/Feed.php:64 msgid "Source URL" msgstr "URL Sorgente" -#: src/Module/Debug/Localtime.php:49 +#: src/Module/Debug/Localtime.php:35 msgid "Time Conversion" msgstr "Conversione Ora" -#: src/Module/Debug/Localtime.php:50 +#: src/Module/Debug/Localtime.php:36 msgid "" "Friendica provides this service for sharing events with other networks and " "friends in unknown timezones." msgstr "Friendica fornisce questo servizio per la condivisione di eventi con altre reti e amici in fusi orari sconosciuti." -#: src/Module/Debug/Localtime.php:51 +#: src/Module/Debug/Localtime.php:37 #, php-format msgid "UTC time: %s" msgstr "Ora UTC: %s" -#: src/Module/Debug/Localtime.php:54 +#: src/Module/Debug/Localtime.php:40 #, php-format msgid "Current timezone: %s" msgstr "Fuso orario corrente: %s" -#: src/Module/Debug/Localtime.php:58 +#: src/Module/Debug/Localtime.php:44 #, php-format msgid "Converted localtime: %s" msgstr "Ora locale convertita: %s" -#: src/Module/Debug/Localtime.php:62 +#: src/Module/Debug/Localtime.php:48 msgid "Please select your timezone:" msgstr "Selezionare il tuo fuso orario:" -#: src/Module/Debug/Probe.php:38 src/Module/Debug/WebFinger.php:37 +#: src/Module/Debug/Probe.php:24 src/Module/Debug/WebFinger.php:23 msgid "Only logged in users are permitted to perform a probing." msgstr "Solo agli utenti loggati è permesso effettuare un probe." -#: src/Module/Debug/Probe.php:52 +#: src/Module/Debug/Probe.php:38 msgid "Probe Diagnostic" msgstr "Interroga Diagnostica" -#: src/Module/Debug/Probe.php:53 +#: src/Module/Debug/Probe.php:39 msgid "Output" msgstr "Risultato" -#: src/Module/Debug/Probe.php:56 +#: src/Module/Debug/Probe.php:42 msgid "Lookup address" msgstr "Indirizzo di consultazione" -#: src/Module/Debug/WebFinger.php:50 +#: src/Module/Debug/WebFinger.php:36 msgid "Webfinger Diagnostic" msgstr "Diagnostica Webfinger" -#: src/Module/Debug/WebFinger.php:52 +#: src/Module/Debug/WebFinger.php:38 msgid "Lookup address:" msgstr "Indirizzo di consultazione:" -#: src/Module/Directory.php:74 +#: src/Module/Directory.php:61 msgid "No entries (some entries may be hidden)." msgstr "Nessuna voce (qualche voce potrebbe essere nascosta)." -#: src/Module/Directory.php:90 +#: src/Module/Directory.php:77 msgid "Find on this site" msgstr "Cerca nel sito" -#: src/Module/Directory.php:92 +#: src/Module/Directory.php:79 msgid "Results for:" msgstr "Risultati per:" -#: src/Module/Directory.php:94 +#: src/Module/Directory.php:81 msgid "Site Directory" msgstr "Elenco del sito" -#: src/Module/Filer/RemoveTag.php:105 +#: src/Module/Filer/RemoveTag.php:91 msgid "Item was not deleted" msgstr "L'oggetto non è stato eliminato" -#: src/Module/Filer/RemoveTag.php:115 +#: src/Module/Filer/RemoveTag.php:101 msgid "Item was not removed" msgstr "L'oggetto non è stato rimosso" -#: src/Module/Filer/SaveTag.php:73 +#: src/Module/Filer/SaveTag.php:59 msgid "- select -" msgstr "- seleziona -" -#: src/Module/FriendSuggest.php:82 +#: src/Module/FriendSuggest.php:68 msgid "Suggested contact not found." msgstr "Contatto suggerito non trovato." -#: src/Module/FriendSuggest.php:100 +#: src/Module/FriendSuggest.php:86 msgid "Friend suggestion sent." msgstr "Suggerimento di amicizia inviato." -#: src/Module/FriendSuggest.php:137 +#: src/Module/FriendSuggest.php:123 msgid "Suggest Friends" msgstr "Suggerisci amici" -#: src/Module/FriendSuggest.php:140 +#: src/Module/FriendSuggest.php:126 #, php-format msgid "Suggest a friend for %s" msgstr "Suggerisci un amico a %s" -#: src/Module/Friendica.php:81 +#: src/Module/Friendica.php:67 msgid "Installed addons/apps:" msgstr "Componenti aggiuntivi/applicazioni installate:" -#: src/Module/Friendica.php:86 +#: src/Module/Friendica.php:72 msgid "No installed addons/apps" msgstr "Nessun componente aggiuntivo/applicazione installata" -#: src/Module/Friendica.php:91 +#: src/Module/Friendica.php:77 #, php-format msgid "Read about the Terms of Service of this node." msgstr "Leggi i Termini di Servizio di questo nodo." -#: src/Module/Friendica.php:98 +#: src/Module/Friendica.php:84 msgid "On this server the following remote servers are blocked." msgstr "In questo server i seguenti server remoti sono bloccati." -#: src/Module/Friendica.php:101 -#: src/Module/Moderation/Blocklist/Server/Index.php:87 -#: src/Module/Moderation/Blocklist/Server/Index.php:111 -#: src/Module/Settings/Channels.php:232 +#: src/Module/Friendica.php:87 +#: src/Module/Moderation/Blocklist/Server/Index.php:73 +#: src/Module/Moderation/Blocklist/Server/Index.php:97 +#: src/Module/Settings/Channels.php:218 msgid "Reason for the block" msgstr "Motivazione del blocco" -#: src/Module/Friendica.php:103 +#: src/Module/Friendica.php:89 msgid "Download this list in CSV format" msgstr "" -#: src/Module/Friendica.php:117 +#: src/Module/Friendica.php:103 #, php-format msgid "" "This is Friendica, version %s that is running at the web location %s. The " "database version is %s, the post update version is %s." msgstr "Questo è Friendica, versione %s in esecuzione all'indirizzo web %s. La versione del database è %s, la versione post-aggiornamento è %s." -#: src/Module/Friendica.php:122 +#: src/Module/Friendica.php:108 msgid "" "Please visit Friendi.ca to learn more " "about the Friendica project." msgstr "Visita Friendi.ca per saperne di più sul progetto Friendica." -#: src/Module/Friendica.php:123 +#: src/Module/Friendica.php:109 msgid "Bug reports and issues: please visit" msgstr "Segnalazioni di bug e problemi: visita" -#: src/Module/Friendica.php:123 +#: src/Module/Friendica.php:109 msgid "the bugtracker at github" msgstr "il bugtracker su github" -#: src/Module/Friendica.php:124 +#: src/Module/Friendica.php:110 msgid "Suggestions, praise, etc. - please email \"info\" at \"friendi - dot - ca" msgstr "Per suggerimenti, lodi, ecc., invia una mail a info chiocciola friendi punto ca" -#: src/Module/HCard.php:45 +#: src/Module/HCard.php:31 msgid "No profile" msgstr "Nessun profilo" -#: src/Module/HTTPException/MethodNotAllowed.php:31 +#: src/Module/HTTPException/MethodNotAllowed.php:17 msgid "Method Not Allowed." msgstr "Metodo Non Consentito." -#: src/Module/Help.php:60 +#: src/Module/Help.php:46 msgid "Help:" msgstr "Guida:" -#: src/Module/Home.php:63 +#: src/Module/Home.php:52 #, php-format msgid "Welcome to %s" msgstr "Benvenuto su %s" -#: src/Module/Install.php:189 +#: src/Module/Install.php:175 msgid "Friendica Communications Server - Setup" msgstr "Friendica Comunicazione Server - Installazione" -#: src/Module/Install.php:200 +#: src/Module/Install.php:186 msgid "System check" msgstr "Controllo sistema" -#: src/Module/Install.php:202 src/Module/Install.php:247 -#: src/Module/Install.php:326 +#: src/Module/Install.php:188 src/Module/Install.php:233 +#: src/Module/Install.php:312 msgid "Requirement not satisfied" msgstr "Requisiti non soddisfatti" -#: src/Module/Install.php:203 +#: src/Module/Install.php:189 msgid "Optional requirement not satisfied" msgstr "Requisiti opzionali non soddisfatti" -#: src/Module/Install.php:204 +#: src/Module/Install.php:190 msgid "OK" msgstr "OK" -#: src/Module/Install.php:208 +#: src/Module/Install.php:194 msgid "Next" msgstr "Successivo" -#: src/Module/Install.php:209 +#: src/Module/Install.php:195 msgid "Check again" msgstr "Controlla ancora" -#: src/Module/Install.php:222 +#: src/Module/Install.php:208 msgid "Base settings" msgstr "Impostazioni base" -#: src/Module/Install.php:224 +#: src/Module/Install.php:210 msgid "Base path to installation" msgstr "Percorso base all'installazione" -#: src/Module/Install.php:226 +#: src/Module/Install.php:212 msgid "" "If the system cannot detect the correct path to your installation, enter the" " correct path here. This setting should only be set if you are using a " "restricted system and symbolic links to your webroot." msgstr "Se il sistema non è in grado di rilevare il percorso corretto per l'installazione, immettere il percorso corretto qui. Questa impostazione deve essere inserita solo se si utilizza un sistema limitato e/o collegamenti simbolici al tuo webroot." -#: src/Module/Install.php:229 +#: src/Module/Install.php:215 msgid "The Friendica system URL" msgstr "" -#: src/Module/Install.php:231 +#: src/Module/Install.php:217 msgid "" "Overwrite this field in case the system URL determination isn't right, " "otherwise leave it as is." msgstr "" -#: src/Module/Install.php:242 +#: src/Module/Install.php:228 msgid "Database connection" msgstr "Connessione al database" -#: src/Module/Install.php:243 +#: src/Module/Install.php:229 msgid "" "In order to install Friendica we need to know how to connect to your " "database." msgstr "Per installare Friendica dobbiamo sapere come collegarci al tuo database." -#: src/Module/Install.php:244 +#: src/Module/Install.php:230 msgid "" "Please contact your hosting provider or site administrator if you have " "questions about these settings." msgstr "Contatta il tuo fornitore di hosting o l'amministratore del sito se hai domande su queste impostazioni." -#: src/Module/Install.php:245 +#: src/Module/Install.php:231 msgid "" "The database you specify below should already exist. If it does not, please " "create it before continuing." msgstr "Il database dovrà già esistere. Se non esiste, crealo prima di continuare." -#: src/Module/Install.php:252 +#: src/Module/Install.php:238 msgid "Database Server Name" msgstr "Nome del database server" -#: src/Module/Install.php:257 +#: src/Module/Install.php:243 msgid "Database Login Name" msgstr "Nome utente database" -#: src/Module/Install.php:263 +#: src/Module/Install.php:249 msgid "Database Login Password" msgstr "Password utente database" -#: src/Module/Install.php:265 +#: src/Module/Install.php:251 msgid "For security reasons the password must not be empty" msgstr "Per motivi di sicurezza la password non può essere vuota." -#: src/Module/Install.php:268 +#: src/Module/Install.php:254 msgid "Database Name" msgstr "Nome database" -#: src/Module/Install.php:272 src/Module/Install.php:300 +#: src/Module/Install.php:258 src/Module/Install.php:286 msgid "Please select a default timezone for your website" msgstr "Seleziona il fuso orario predefinito per il tuo sito web" -#: src/Module/Install.php:287 +#: src/Module/Install.php:273 msgid "Site settings" msgstr "Impostazioni sito" -#: src/Module/Install.php:295 +#: src/Module/Install.php:281 msgid "Site administrator email address" msgstr "Indirizzo email dell'amministratore del sito" -#: src/Module/Install.php:297 +#: src/Module/Install.php:283 msgid "" "Your account email address must match this in order to use the web admin " "panel." msgstr "Il tuo indirizzo email deve corrispondere a questo per poter usare il pannello di amministrazione web." -#: src/Module/Install.php:304 +#: src/Module/Install.php:290 msgid "System Language:" msgstr "Lingua di Sistema:" -#: src/Module/Install.php:306 +#: src/Module/Install.php:292 msgid "" "Set the default language for your Friendica installation interface and to " "send emails." msgstr "Imposta la lingua di default per l'interfaccia e l'invio delle email." -#: src/Module/Install.php:318 +#: src/Module/Install.php:304 msgid "Your Friendica site database has been installed." msgstr "Il tuo Friendica è stato installato." -#: src/Module/Install.php:328 +#: src/Module/Install.php:314 msgid "Installation finished" msgstr "Installazione completata" -#: src/Module/Install.php:348 +#: src/Module/Install.php:334 msgid "

What next

" msgstr "

Cosa fare ora

" -#: src/Module/Install.php:349 +#: src/Module/Install.php:335 msgid "" "IMPORTANT: You will need to [manually] setup a scheduled task for the " "worker." msgstr "IMPORTANTE: Devi impostare [manualmente] la pianificazione del worker." -#: src/Module/Install.php:352 +#: src/Module/Install.php:338 #, php-format msgid "" "Go to your new Friendica node registration page " @@ -7737,29 +7745,29 @@ msgid "" " administrator email. This will allow you to enter the site admin panel." msgstr "Vai nella pagina di registrazione del tuo nuovo nodo Friendica e registra un nuovo utente. Ricorda di usare la stessa email che hai inserito come email dell'utente amministratore. Questo ti permetterà di entrare nel pannello di amministrazione del sito." -#: src/Module/Invite.php:57 +#: src/Module/Invite.php:43 msgid "Total invitation limit exceeded." msgstr "Limite totale degli inviti superato." -#: src/Module/Invite.php:82 +#: src/Module/Invite.php:68 #, php-format msgid "%s : Not a valid email address." msgstr "%s: non è un indirizzo email valido." -#: src/Module/Invite.php:108 +#: src/Module/Invite.php:94 msgid "Please join us on Friendica" msgstr "Unisciti a noi su Friendica" -#: src/Module/Invite.php:117 +#: src/Module/Invite.php:103 msgid "Invitation limit exceeded. Please contact your site administrator." msgstr "Limite degli inviti superato. Contatta l'amministratore del tuo sito." -#: src/Module/Invite.php:121 +#: src/Module/Invite.php:107 #, php-format msgid "%s : Message delivery failed." msgstr "%s: la consegna del messaggio fallita." -#: src/Module/Invite.php:125 +#: src/Module/Invite.php:111 #, php-format msgid "%d message sent." msgid_plural "%d messages sent." @@ -7767,11 +7775,11 @@ msgstr[0] "%d messaggio inviato." msgstr[1] "%d messaggi inviati." msgstr[2] "%d messaggi inviati." -#: src/Module/Invite.php:143 +#: src/Module/Invite.php:129 msgid "You have no more invitations available" msgstr "Non hai altri inviti disponibili" -#: src/Module/Invite.php:150 +#: src/Module/Invite.php:136 #, php-format msgid "" "Visit %s for a list of public sites that you can join. Friendica members on " @@ -7779,14 +7787,14 @@ msgid "" " other social networks." msgstr "Visita %s per una lista di siti pubblici a cui puoi iscriverti. I membri Friendica su altri siti possono collegarsi uno con l'altro, come con membri di molti altri social network." -#: src/Module/Invite.php:152 +#: src/Module/Invite.php:138 #, php-format msgid "" "To accept this invitation, please visit and register at %s or any other " "public Friendica website." msgstr "Per accettare questo invito, visita e registrati su %s o su un'altro sito web Friendica aperto al pubblico." -#: src/Module/Invite.php:153 +#: src/Module/Invite.php:139 #, php-format msgid "" "Friendica sites all inter-connect to create a huge privacy-enhanced social " @@ -7795,236 +7803,236 @@ msgid "" "sites you can join." msgstr "I siti Friendica son tutti collegati tra loro per creare una grossa rete sociale rispettosa della privacy, posseduta e controllata dai suoi membri. I siti Friendica possono anche collegarsi a molti altri social network tradizionali. Vai su %s per una lista di siti Friendica alternativi a cui puoi iscriverti." -#: src/Module/Invite.php:157 +#: src/Module/Invite.php:143 msgid "" "Our apologies. This system is not currently configured to connect with other" " public sites or invite members." msgstr "Ci scusiamo, questo sistema non è configurato per collegarsi con altri siti pubblici o per invitare membri." -#: src/Module/Invite.php:160 +#: src/Module/Invite.php:146 msgid "" "Friendica sites all inter-connect to create a huge privacy-enhanced social " "web that is owned and controlled by its members. They can also connect with " "many traditional social networks." msgstr "I siti Friendica son tutti collegati tra loro per creare una grossa rete sociale rispettosa della privacy, posseduta e controllata dai suoi membri. I siti Friendica possono anche collegarsi a molti altri social network tradizionali." -#: src/Module/Invite.php:159 +#: src/Module/Invite.php:145 #, php-format msgid "To accept this invitation, please visit and register at %s." msgstr "Per accettare questo invito, visita e registrati su %s" -#: src/Module/Invite.php:167 +#: src/Module/Invite.php:153 msgid "Send invitations" msgstr "Invia inviti" -#: src/Module/Invite.php:168 +#: src/Module/Invite.php:154 msgid "Enter email addresses, one per line:" msgstr "Inserisci gli indirizzi email, uno per riga:" -#: src/Module/Invite.php:172 +#: src/Module/Invite.php:158 msgid "" "You are cordially invited to join me and other close friends on Friendica - " "and help us to create a better social web." msgstr "Sei cordialmente invitato/a ad unirti a me e ad altri amici su Friendica, e ad aiutarci a creare una rete sociale migliore." -#: src/Module/Invite.php:174 +#: src/Module/Invite.php:160 msgid "You will need to supply this invitation code: $invite_code" msgstr "Sarà necessario fornire questo codice invito: $invite_code" -#: src/Module/Invite.php:174 +#: src/Module/Invite.php:160 msgid "" "Once you have registered, please connect with me via my profile page at:" msgstr "Una volta registrato, connettiti con me dal mio profilo:" -#: src/Module/Invite.php:176 +#: src/Module/Invite.php:162 msgid "" "For more information about the Friendica project and why we feel it is " "important, please visit http://friendi.ca" msgstr "Per maggiori informazioni sul progetto Friendica e perchè pensiamo sia importante, visita http://friendi.ca " -#: src/Module/Item/Compose.php:94 +#: src/Module/Item/Compose.php:80 msgid "Please enter a post body." msgstr "Per favore inserisci il corpo del messaggio." -#: src/Module/Item/Compose.php:105 +#: src/Module/Item/Compose.php:91 msgid "This feature is only available with the frio theme." msgstr "Questa caratteristica è disponibile solo con il tema frio." -#: src/Module/Item/Compose.php:129 +#: src/Module/Item/Compose.php:115 msgid "Compose new personal note" msgstr "Componi una nuova nota personale" -#: src/Module/Item/Compose.php:138 +#: src/Module/Item/Compose.php:124 msgid "Compose new post" msgstr "Componi un nuovo messaggio" -#: src/Module/Item/Compose.php:194 +#: src/Module/Item/Compose.php:180 msgid "Visibility" msgstr "Visibilità" -#: src/Module/Item/Compose.php:210 +#: src/Module/Item/Compose.php:196 msgid "Clear the location" msgstr "Rimuovi la posizione" -#: src/Module/Item/Compose.php:211 +#: src/Module/Item/Compose.php:197 msgid "Location services are unavailable on your device" msgstr "I servizi di localizzazione non sono disponibili sul tuo dispositivo" -#: src/Module/Item/Compose.php:212 +#: src/Module/Item/Compose.php:198 msgid "" "Location services are disabled. Please check the website's permissions on " "your device" msgstr "I servizi di localizzazione sono disabilitati. Per favore controlla i permessi del sito web sul tuo dispositivo" -#: src/Module/Item/Compose.php:218 +#: src/Module/Item/Compose.php:204 msgid "" "You can make this page always open when you use the New Post button in the " "Theme Customization settings." msgstr "" -#: src/Module/Item/Feed.php:86 +#: src/Module/Item/Feed.php:72 msgid "The feed for this item is unavailable." msgstr "Il flusso per questo oggetto non è disponibile." -#: src/Module/Item/Follow.php:51 +#: src/Module/Item/Follow.php:37 msgid "Unable to follow this item." msgstr "Impossibile seguire questo oggetto." -#: src/Module/Maintenance.php:48 src/Module/Maintenance.php:53 +#: src/Module/Maintenance.php:34 src/Module/Maintenance.php:39 msgid "System down for maintenance" msgstr "Sistema in manutenzione" -#: src/Module/Maintenance.php:54 +#: src/Module/Maintenance.php:40 msgid "" "This Friendica node is currently in maintenance mode, either automatically " "because it is self-updating or manually by the node administrator. This " "condition should be temporary, please come back in a few minutes." msgstr "Questo nodo Friendica è attualmente in modalità manutenzione, o automaticamente perchè in auto-aggiornamento o manualmente dall'amministratore del nodo. Questa condizione dovrebbe essere temporanea, riprova tra qualche minuto." -#: src/Module/Manifest.php:40 +#: src/Module/Manifest.php:26 msgid "A Decentralized Social Network" msgstr "Un Social Network Decentralizzato" -#: src/Module/Media/Attachment/Browser.php:58 -#: src/Module/Media/Photo/Browser.php:59 +#: src/Module/Media/Attachment/Browser.php:44 +#: src/Module/Media/Photo/Browser.php:45 msgid "You need to be logged in to access this page." msgstr "" -#: src/Module/Media/Attachment/Browser.php:74 +#: src/Module/Media/Attachment/Browser.php:60 msgid "Files" msgstr "File" -#: src/Module/Media/Attachment/Browser.php:79 -#: src/Module/Media/Photo/Browser.php:90 -#: src/Module/Settings/Profile/Photo/Index.php:127 +#: src/Module/Media/Attachment/Browser.php:65 +#: src/Module/Media/Photo/Browser.php:76 +#: src/Module/Settings/Profile/Photo/Index.php:113 msgid "Upload" msgstr "Carica" -#: src/Module/Media/Attachment/Upload.php:97 +#: src/Module/Media/Attachment/Upload.php:83 msgid "Sorry, maybe your upload is bigger than the PHP configuration allows" msgstr "Mi spiace, forse il file che stai caricando è più grosso di quanto la configurazione di PHP permetta" -#: src/Module/Media/Attachment/Upload.php:97 +#: src/Module/Media/Attachment/Upload.php:83 msgid "Or - did you try to upload an empty file?" msgstr "O.. non avrai provato a caricare un file vuoto?" -#: src/Module/Media/Attachment/Upload.php:104 +#: src/Module/Media/Attachment/Upload.php:90 #, php-format msgid "File exceeds size limit of %s" msgstr "Il file supera la dimensione massima di %s" -#: src/Module/Media/Attachment/Upload.php:114 +#: src/Module/Media/Attachment/Upload.php:100 msgid "File upload failed." msgstr "Caricamento del file non riuscito." -#: src/Module/Media/Photo/Upload.php:150 src/Module/Media/Photo/Upload.php:151 -#: src/Module/Profile/Photos.php:215 -#: src/Module/Settings/Profile/Photo/Index.php:67 +#: src/Module/Media/Photo/Upload.php:136 src/Module/Media/Photo/Upload.php:137 +#: src/Module/Profile/Photos.php:201 +#: src/Module/Settings/Profile/Photo/Index.php:53 msgid "Unable to process image." msgstr "Impossibile caricare l'immagine." -#: src/Module/Media/Photo/Upload.php:176 src/Module/Profile/Photos.php:235 -#: src/Module/Settings/Profile/Photo/Index.php:94 +#: src/Module/Media/Photo/Upload.php:162 src/Module/Profile/Photos.php:221 +#: src/Module/Settings/Profile/Photo/Index.php:80 msgid "Image upload failed." msgstr "Caricamento immagine fallito." -#: src/Module/Moderation/BaseUsers.php:72 +#: src/Module/Moderation/BaseUsers.php:59 msgid "List of all users" msgstr "Elenco di tutti gli utenti" -#: src/Module/Moderation/BaseUsers.php:77 +#: src/Module/Moderation/BaseUsers.php:64 msgid "Active" msgstr "Attivo" -#: src/Module/Moderation/BaseUsers.php:80 +#: src/Module/Moderation/BaseUsers.php:67 msgid "List of active accounts" msgstr "Elenco degli account attivi" -#: src/Module/Moderation/BaseUsers.php:88 +#: src/Module/Moderation/BaseUsers.php:75 msgid "List of pending registrations" msgstr "Elenco delle registrazioni in attesa" -#: src/Module/Moderation/BaseUsers.php:96 +#: src/Module/Moderation/BaseUsers.php:83 msgid "List of blocked users" msgstr "Elenco degli utenti bloccati" -#: src/Module/Moderation/BaseUsers.php:101 +#: src/Module/Moderation/BaseUsers.php:88 msgid "Deleted" msgstr "Eliminato" -#: src/Module/Moderation/BaseUsers.php:104 +#: src/Module/Moderation/BaseUsers.php:91 msgid "List of pending user deletions" msgstr "Elenco delle cancellazioni di utenti in attesa" -#: src/Module/Moderation/BaseUsers.php:119 src/Module/Settings/Account.php:482 +#: src/Module/Moderation/BaseUsers.php:108 src/Module/Settings/Account.php:473 msgid "Normal Account Page" msgstr "Pagina Account Normale" -#: src/Module/Moderation/BaseUsers.php:120 src/Module/Settings/Account.php:489 +#: src/Module/Moderation/BaseUsers.php:109 src/Module/Settings/Account.php:480 msgid "Soapbox Page" msgstr "Pagina Sandbox" -#: src/Module/Moderation/BaseUsers.php:121 src/Module/Settings/Account.php:496 +#: src/Module/Moderation/BaseUsers.php:110 src/Module/Settings/Account.php:487 msgid "Public Group" msgstr "" -#: src/Module/Moderation/BaseUsers.php:122 src/Module/Settings/Account.php:503 +#: src/Module/Moderation/BaseUsers.php:111 src/Module/Settings/Account.php:494 msgid "Public Group - Restricted" msgstr "" -#: src/Module/Moderation/BaseUsers.php:123 src/Module/Settings/Account.php:510 +#: src/Module/Moderation/BaseUsers.php:112 src/Module/Settings/Account.php:501 msgid "Automatic Friend Page" msgstr "Pagina con amicizia automatica" -#: src/Module/Moderation/BaseUsers.php:124 +#: src/Module/Moderation/BaseUsers.php:113 msgid "Private Group" msgstr "" -#: src/Module/Moderation/BaseUsers.php:127 -#: src/Module/Moderation/Summary.php:53 src/Module/Settings/Account.php:453 +#: src/Module/Moderation/BaseUsers.php:116 +#: src/Module/Moderation/Summary.php:39 src/Module/Settings/Account.php:444 msgid "Personal Page" msgstr "Pagina Personale" -#: src/Module/Moderation/BaseUsers.php:128 -#: src/Module/Moderation/Summary.php:54 src/Module/Settings/Account.php:460 +#: src/Module/Moderation/BaseUsers.php:117 +#: src/Module/Moderation/Summary.php:40 src/Module/Settings/Account.php:451 msgid "Organisation Page" msgstr "Pagina Organizzazione" -#: src/Module/Moderation/BaseUsers.php:129 -#: src/Module/Moderation/Summary.php:55 src/Module/Settings/Account.php:467 +#: src/Module/Moderation/BaseUsers.php:118 +#: src/Module/Moderation/Summary.php:41 src/Module/Settings/Account.php:458 msgid "News Page" msgstr "Pagina Notizie" -#: src/Module/Moderation/BaseUsers.php:130 -#: src/Module/Moderation/Summary.php:56 src/Module/Settings/Account.php:474 +#: src/Module/Moderation/BaseUsers.php:119 +#: src/Module/Moderation/Summary.php:42 src/Module/Settings/Account.php:465 msgid "Community Group" msgstr "" -#: src/Module/Moderation/Blocklist/Contact.php:70 +#: src/Module/Moderation/Blocklist/Contact.php:56 msgid "You can't block a local contact, please block the user instead" msgstr "Non puoi bloccare un contatto locale, blocca invece l'utente" -#: src/Module/Moderation/Blocklist/Contact.php:89 +#: src/Module/Moderation/Blocklist/Contact.php:75 #, php-format msgid "%s contact unblocked" msgid_plural "%s contacts unblocked" @@ -8032,54 +8040,54 @@ msgstr[0] "%s contatto sbloccato" msgstr[1] "%s contatti sbloccati" msgstr[2] "%s contatti sbloccati" -#: src/Module/Moderation/Blocklist/Contact.php:111 +#: src/Module/Moderation/Blocklist/Contact.php:97 msgid "Remote Contact Blocklist" msgstr "Blocklist Contatti Remoti" -#: src/Module/Moderation/Blocklist/Contact.php:112 +#: src/Module/Moderation/Blocklist/Contact.php:98 msgid "" "This page allows you to prevent any message from a remote contact to reach " "your node." msgstr "Questa pagina ti permette di impedire che qualsiasi messaggio da un contatto remoto raggiunga il tuo nodo." -#: src/Module/Moderation/Blocklist/Contact.php:113 +#: src/Module/Moderation/Blocklist/Contact.php:99 msgid "Block Remote Contact" msgstr "Blocca Contatto Remoto" -#: src/Module/Moderation/Blocklist/Contact.php:114 -#: src/Module/Moderation/Users/Active.php:135 -#: src/Module/Moderation/Users/Blocked.php:135 -#: src/Module/Moderation/Users/Index.php:149 -#: src/Module/Moderation/Users/Pending.php:98 +#: src/Module/Moderation/Blocklist/Contact.php:100 +#: src/Module/Moderation/Users/Active.php:121 +#: src/Module/Moderation/Users/Blocked.php:121 +#: src/Module/Moderation/Users/Index.php:135 +#: src/Module/Moderation/Users/Pending.php:84 msgid "select all" msgstr "seleziona tutti" -#: src/Module/Moderation/Blocklist/Contact.php:115 +#: src/Module/Moderation/Blocklist/Contact.php:101 msgid "select none" msgstr "seleziona niente" -#: src/Module/Moderation/Blocklist/Contact.php:118 +#: src/Module/Moderation/Blocklist/Contact.php:104 msgid "No remote contact is blocked from this node." msgstr "Nessun contatto remoto è bloccato da questo nodo." -#: src/Module/Moderation/Blocklist/Contact.php:120 +#: src/Module/Moderation/Blocklist/Contact.php:106 msgid "Blocked Remote Contacts" msgstr "Contatti Remoti Bloccati" -#: src/Module/Moderation/Blocklist/Contact.php:121 +#: src/Module/Moderation/Blocklist/Contact.php:107 msgid "Block New Remote Contact" msgstr "Blocca Nuovo Contatto Remoto" -#: src/Module/Moderation/Blocklist/Contact.php:122 -#: src/Module/Moderation/Reports.php:110 +#: src/Module/Moderation/Blocklist/Contact.php:108 +#: src/Module/Moderation/Reports.php:102 msgid "Photo" msgstr "Foto" -#: src/Module/Moderation/Blocklist/Contact.php:122 +#: src/Module/Moderation/Blocklist/Contact.php:108 msgid "Reason" msgstr "Motivazione" -#: src/Module/Moderation/Blocklist/Contact.php:128 +#: src/Module/Moderation/Blocklist/Contact.php:114 #, php-format msgid "%s total blocked contact" msgid_plural "%s total blocked contacts" @@ -8087,30 +8095,30 @@ msgstr[0] "%scontatto bloccato totale" msgstr[1] "%scontatti bloccati totali" msgstr[2] "%scontatti bloccati totali" -#: src/Module/Moderation/Blocklist/Contact.php:131 +#: src/Module/Moderation/Blocklist/Contact.php:117 msgid "URL of the remote contact to block." msgstr "URL del contatto remoto da bloccare." -#: src/Module/Moderation/Blocklist/Contact.php:132 +#: src/Module/Moderation/Blocklist/Contact.php:118 msgid "Also purge contact" msgstr "Rimuovi anche contenuti contatto" -#: src/Module/Moderation/Blocklist/Contact.php:132 +#: src/Module/Moderation/Blocklist/Contact.php:118 msgid "" "Removes all content related to this contact from the node. Keeps the contact" " record. This action cannot be undone." msgstr "Rimuove tutto il contenuto relativo a questo contatto dal nodo. Mantiene il record del contatto. Questa azione non può essere annullata." -#: src/Module/Moderation/Blocklist/Contact.php:133 -#: src/Module/Moderation/Blocklist/Server/Import.php:124 +#: src/Module/Moderation/Blocklist/Contact.php:119 +#: src/Module/Moderation/Blocklist/Server/Import.php:108 msgid "Block Reason" msgstr "Motivazione del Blocco" -#: src/Module/Moderation/Blocklist/Server/Add.php:80 +#: src/Module/Moderation/Blocklist/Server/Add.php:66 msgid "Server domain pattern added to the blocklist." msgstr "Schema di dominio del server aggiunto alla blocklist." -#: src/Module/Moderation/Blocklist/Server/Add.php:88 +#: src/Module/Moderation/Blocklist/Server/Add.php:74 #, php-format msgid "%s server scheduled to be purged." msgid_plural "%s servers scheduled to be purged." @@ -8118,17 +8126,17 @@ msgstr[0] "%s server in attesa di essere rimosso." msgstr[1] "%s server in attesa di essere rimossi." msgstr[2] "%s server in attesa di essere rimossi." -#: src/Module/Moderation/Blocklist/Server/Add.php:120 -#: src/Module/Moderation/Blocklist/Server/Import.php:117 +#: src/Module/Moderation/Blocklist/Server/Add.php:106 +#: src/Module/Moderation/Blocklist/Server/Import.php:101 msgid "← Return to the list" msgstr "← Ritorna alla lista" -#: src/Module/Moderation/Blocklist/Server/Add.php:122 +#: src/Module/Moderation/Blocklist/Server/Add.php:108 msgid "Block A New Server Domain Pattern" msgstr "Blocca Un Nuovo Server Per Schema di Dominio " -#: src/Module/Moderation/Blocklist/Server/Add.php:123 -#: src/Module/Moderation/Blocklist/Server/Index.php:99 +#: src/Module/Moderation/Blocklist/Server/Add.php:109 +#: src/Module/Moderation/Blocklist/Server/Index.php:85 msgid "" "

The server domain pattern syntax is case-insensitive shell wildcard, comprising the following special characters:

\n" "
    \n" @@ -8137,30 +8145,30 @@ msgid "" "
" msgstr "

La sintassi dello schema di dominio server usa i caratteri jolly e non tiene conto di maiuscole e minuscole, e comprende i seguenti caratteri speciali:

\n
    \n\t
  • *: Qualsiasi numero di caratteri
  • \n\t
  • ?: Qualsiasi singolo carattere
  • \n
" -#: src/Module/Moderation/Blocklist/Server/Add.php:128 -#: src/Module/Moderation/Blocklist/Server/Index.php:107 +#: src/Module/Moderation/Blocklist/Server/Add.php:114 +#: src/Module/Moderation/Blocklist/Server/Index.php:93 msgid "Check pattern" msgstr "Controlla schema" -#: src/Module/Moderation/Blocklist/Server/Add.php:129 +#: src/Module/Moderation/Blocklist/Server/Add.php:115 msgid "Matching known servers" msgstr "Server conosciuti corrispondenti" -#: src/Module/Moderation/Blocklist/Server/Add.php:130 -#: src/Module/Settings/Server/Action.php:76 -#: src/Module/Settings/Server/Index.php:106 +#: src/Module/Moderation/Blocklist/Server/Add.php:116 +#: src/Module/Settings/Server/Action.php:62 +#: src/Module/Settings/Server/Index.php:92 msgid "Server Name" msgstr "Nome del Server" -#: src/Module/Moderation/Blocklist/Server/Add.php:131 +#: src/Module/Moderation/Blocklist/Server/Add.php:117 msgid "Server Domain" msgstr "Dominio del Server" -#: src/Module/Moderation/Blocklist/Server/Add.php:132 +#: src/Module/Moderation/Blocklist/Server/Add.php:118 msgid "Known Contacts" msgstr "Contatti Conosciuti" -#: src/Module/Moderation/Blocklist/Server/Add.php:133 +#: src/Module/Moderation/Blocklist/Server/Add.php:119 #, php-format msgid "%d known server" msgid_plural "%d known servers" @@ -8168,27 +8176,27 @@ msgstr[0] "%d server conosciuto" msgstr[1] "%d server conosciuti" msgstr[2] "%d server conosciuti" -#: src/Module/Moderation/Blocklist/Server/Add.php:134 +#: src/Module/Moderation/Blocklist/Server/Add.php:120 msgid "Add pattern to the blocklist" msgstr "Aggiungi schema alla blocklist" -#: src/Module/Moderation/Blocklist/Server/Add.php:136 -#: src/Module/Moderation/Blocklist/Server/Index.php:116 +#: src/Module/Moderation/Blocklist/Server/Add.php:122 +#: src/Module/Moderation/Blocklist/Server/Index.php:102 msgid "Server Domain Pattern" msgstr "Schema di Dominio di Server" -#: src/Module/Moderation/Blocklist/Server/Add.php:136 -#: src/Module/Moderation/Blocklist/Server/Index.php:116 +#: src/Module/Moderation/Blocklist/Server/Add.php:122 +#: src/Module/Moderation/Blocklist/Server/Index.php:102 msgid "" "The domain pattern of the new server to add to the blocklist. Do not include" " the protocol." msgstr "Lo schema di dominio del nuovo server da aggiungere alla blocklist. Non includere il protocollo." -#: src/Module/Moderation/Blocklist/Server/Add.php:137 +#: src/Module/Moderation/Blocklist/Server/Add.php:123 msgid "Purge server" msgstr "Rimuovi contenuti server" -#: src/Module/Moderation/Blocklist/Server/Add.php:137 +#: src/Module/Moderation/Blocklist/Server/Add.php:123 msgid "" "Also purges all the locally stored content authored by the known contacts " "registered on that server. Keeps the contacts and the server records. This " @@ -8201,26 +8209,26 @@ msgstr[0] "Rimuove completamente anche i contenuti salvati localmente creati dai msgstr[1] "Rimuove completamente anche i contenuti salvati localmente creati dai contatti conosciuti registrati su questi server. Mantiene i record dei contatti e dei server. Questa azione non può essere annullata." msgstr[2] "Rimuove completamente anche i contenuti salvati localmente creati dai contatti conosciuti registrati su questi server. Mantiene i record dei contatti e dei server. Questa azione non può essere annullata." -#: src/Module/Moderation/Blocklist/Server/Add.php:138 +#: src/Module/Moderation/Blocklist/Server/Add.php:124 msgid "Block reason" msgstr "Ragione blocco" -#: src/Module/Moderation/Blocklist/Server/Add.php:138 +#: src/Module/Moderation/Blocklist/Server/Add.php:124 msgid "" "The reason why you blocked this server domain pattern. This reason will be " "shown publicly in the server information page." msgstr "La ragione per cui hai bloccato questo schema di dominio. Questa motivazione verrà mostrata pubblicamente nella pagina di informazione del server." -#: src/Module/Moderation/Blocklist/Server/Import.php:74 -#: src/Module/Moderation/Blocklist/Server/Import.php:83 +#: src/Module/Moderation/Blocklist/Server/Import.php:60 +#: src/Module/Moderation/Blocklist/Server/Import.php:67 msgid "Error importing pattern file" msgstr "" -#: src/Module/Moderation/Blocklist/Server/Import.php:89 +#: src/Module/Moderation/Blocklist/Server/Import.php:74 msgid "Local blocklist replaced with the provided file." msgstr "" -#: src/Module/Moderation/Blocklist/Server/Import.php:93 +#: src/Module/Moderation/Blocklist/Server/Import.php:78 #, php-format msgid "%d pattern was added to the local blocklist." msgid_plural "%d patterns were added to the local blocklist." @@ -8228,42 +8236,42 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: src/Module/Moderation/Blocklist/Server/Import.php:95 +#: src/Module/Moderation/Blocklist/Server/Import.php:80 msgid "No pattern was added to the local blocklist." msgstr "" -#: src/Module/Moderation/Blocklist/Server/Import.php:119 +#: src/Module/Moderation/Blocklist/Server/Import.php:103 msgid "Import a Server Domain Pattern Blocklist" msgstr "" -#: src/Module/Moderation/Blocklist/Server/Import.php:120 +#: src/Module/Moderation/Blocklist/Server/Import.php:104 msgid "" "

This file can be downloaded from the /friendica path of any " "Friendica server.

" msgstr "" -#: src/Module/Moderation/Blocklist/Server/Import.php:121 -#: src/Module/Moderation/Blocklist/Server/Index.php:106 +#: src/Module/Moderation/Blocklist/Server/Import.php:105 +#: src/Module/Moderation/Blocklist/Server/Index.php:92 msgid "Upload file" msgstr "" -#: src/Module/Moderation/Blocklist/Server/Import.php:122 +#: src/Module/Moderation/Blocklist/Server/Import.php:106 msgid "Patterns to import" msgstr "" -#: src/Module/Moderation/Blocklist/Server/Import.php:123 +#: src/Module/Moderation/Blocklist/Server/Import.php:107 msgid "Domain Pattern" msgstr "" -#: src/Module/Moderation/Blocklist/Server/Import.php:125 +#: src/Module/Moderation/Blocklist/Server/Import.php:109 msgid "Import Mode" msgstr "" -#: src/Module/Moderation/Blocklist/Server/Import.php:126 +#: src/Module/Moderation/Blocklist/Server/Import.php:110 msgid "Import Patterns" msgstr "" -#: src/Module/Moderation/Blocklist/Server/Import.php:127 +#: src/Module/Moderation/Blocklist/Server/Import.php:111 #, php-format msgid "%d total pattern" msgid_plural "%d total patterns" @@ -8271,233 +8279,233 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: src/Module/Moderation/Blocklist/Server/Import.php:129 -#: src/Module/Moderation/Blocklist/Server/Index.php:115 +#: src/Module/Moderation/Blocklist/Server/Import.php:113 +#: src/Module/Moderation/Blocklist/Server/Index.php:101 msgid "Server domain pattern blocklist CSV file" msgstr "" -#: src/Module/Moderation/Blocklist/Server/Import.php:130 +#: src/Module/Moderation/Blocklist/Server/Import.php:114 msgid "Append" msgstr "" -#: src/Module/Moderation/Blocklist/Server/Import.php:130 +#: src/Module/Moderation/Blocklist/Server/Import.php:114 msgid "" "Imports patterns from the file that weren't already existing in the current " "blocklist." msgstr "" -#: src/Module/Moderation/Blocklist/Server/Import.php:131 +#: src/Module/Moderation/Blocklist/Server/Import.php:115 msgid "Replace" msgstr "" -#: src/Module/Moderation/Blocklist/Server/Import.php:131 +#: src/Module/Moderation/Blocklist/Server/Import.php:115 msgid "Replaces the current blocklist by the imported patterns." msgstr "" -#: src/Module/Moderation/Blocklist/Server/Index.php:86 -#: src/Module/Moderation/Blocklist/Server/Index.php:110 -#: src/Module/Settings/Channels.php:231 +#: src/Module/Moderation/Blocklist/Server/Index.php:72 +#: src/Module/Moderation/Blocklist/Server/Index.php:96 +#: src/Module/Settings/Channels.php:217 msgid "Blocked server domain pattern" msgstr "Schema di dominio del server bloccato" -#: src/Module/Moderation/Blocklist/Server/Index.php:88 +#: src/Module/Moderation/Blocklist/Server/Index.php:74 msgid "Delete server domain pattern" msgstr "Elimina schema di dominio server" -#: src/Module/Moderation/Blocklist/Server/Index.php:88 +#: src/Module/Moderation/Blocklist/Server/Index.php:74 msgid "Check to delete this entry from the blocklist" msgstr "Seleziona per eliminare questa voce dalla blocklist" -#: src/Module/Moderation/Blocklist/Server/Index.php:96 +#: src/Module/Moderation/Blocklist/Server/Index.php:82 msgid "Server Domain Pattern Blocklist" msgstr "Blocklist degli Schemi di Dominio di Server" -#: src/Module/Moderation/Blocklist/Server/Index.php:97 +#: src/Module/Moderation/Blocklist/Server/Index.php:83 msgid "" "This page can be used to define a blocklist of server domain patterns from " "the federated network that are not allowed to interact with your node. For " "each domain pattern you should also provide the reason why you block it." msgstr "Questa pagina può essere utilizzata per definire una blocklist di schemi di server di dominio della rete federata ai quali non è consentito interagire con questo nodo. Per ogni schema di dominio dovresti anche fornire la motivazione per la quale lo hai bloccato." -#: src/Module/Moderation/Blocklist/Server/Index.php:98 +#: src/Module/Moderation/Blocklist/Server/Index.php:84 msgid "" "The list of blocked server domain patterns will be made publically available" " on the /friendica page so that your users and " "people investigating communication problems can find the reason easily." msgstr "La lista degli schemi di dominio di server bloccati sarà resa pubblicamente disponibile sulla pagina /friendica in modo che i tuoi utenti e persone che cercano soluzioni ai problemi di comunicazione possano trovare la motivazione facilmente." -#: src/Module/Moderation/Blocklist/Server/Index.php:104 +#: src/Module/Moderation/Blocklist/Server/Index.php:90 msgid "Import server domain pattern blocklist" msgstr "" -#: src/Module/Moderation/Blocklist/Server/Index.php:105 +#: src/Module/Moderation/Blocklist/Server/Index.php:91 msgid "Add new entry to the blocklist" msgstr "Aggiungi nuova voce alla blocklist" -#: src/Module/Moderation/Blocklist/Server/Index.php:108 +#: src/Module/Moderation/Blocklist/Server/Index.php:94 msgid "Save changes to the blocklist" msgstr "Salva modifiche alla blocklist" -#: src/Module/Moderation/Blocklist/Server/Index.php:109 +#: src/Module/Moderation/Blocklist/Server/Index.php:95 msgid "Current Entries in the Blocklist" msgstr "Voci correnti nella blocklist" -#: src/Module/Moderation/Blocklist/Server/Index.php:112 +#: src/Module/Moderation/Blocklist/Server/Index.php:98 msgid "Delete entry from the blocklist" msgstr "Elimina voce dalla blocklist" -#: src/Module/Moderation/Blocklist/Server/Index.php:113 +#: src/Module/Moderation/Blocklist/Server/Index.php:99 msgid "Delete entry from the blocklist?" msgstr "Eliminare la voce dalla blocklist?" -#: src/Module/Moderation/Item/Delete.php:50 +#: src/Module/Moderation/Item/Delete.php:36 msgid "Item marked for deletion." msgstr "Elemento selezionato per l'eliminazione." -#: src/Module/Moderation/Item/Delete.php:63 +#: src/Module/Moderation/Item/Delete.php:49 msgid "Delete this Item" msgstr "Rimuovi questo elemento" -#: src/Module/Moderation/Item/Delete.php:64 +#: src/Module/Moderation/Item/Delete.php:50 msgid "" "On this page you can delete an item from your node. If the item is a top " "level posting, the entire thread will be deleted." msgstr "Su questa pagina puoi cancellare un qualsiasi elemento dal tuo nodo. Se l'elemento è un messaggio di primo livello, l'intera discussione sarà cancellata." -#: src/Module/Moderation/Item/Delete.php:65 +#: src/Module/Moderation/Item/Delete.php:51 msgid "" "You need to know the GUID of the item. You can find it e.g. by looking at " "the display URL. The last part of http://example.com/display/123456 is the " "GUID, here 123456." msgstr "Serve il GUID dell'elemento. Lo puoi trovare, per esempio, guardando l'URL display: l'ultima parte di http://example.com/display/123456 è il GUID, qui 123456." -#: src/Module/Moderation/Item/Delete.php:67 +#: src/Module/Moderation/Item/Delete.php:53 msgid "GUID" msgstr "GUID" -#: src/Module/Moderation/Item/Delete.php:67 +#: src/Module/Moderation/Item/Delete.php:53 msgid "The GUID of the item you want to delete." msgstr "Il GUID dell'elemento che vuoi cancellare." -#: src/Module/Moderation/Item/Source.php:77 +#: src/Module/Moderation/Item/Source.php:69 msgid "Item Id" msgstr "Item Id" -#: src/Module/Moderation/Item/Source.php:78 +#: src/Module/Moderation/Item/Source.php:70 msgid "Item URI" msgstr "Item URI" -#: src/Module/Moderation/Item/Source.php:80 +#: src/Module/Moderation/Item/Source.php:72 msgid "Terms" msgstr "Termini" -#: src/Module/Moderation/Item/Source.php:81 +#: src/Module/Moderation/Item/Source.php:73 msgid "Tag" msgstr "Etichetta" -#: src/Module/Moderation/Item/Source.php:82 -#: src/Module/Moderation/Users/Active.php:126 -#: src/Module/Moderation/Users/Blocked.php:126 -#: src/Module/Moderation/Users/Index.php:140 +#: src/Module/Moderation/Item/Source.php:74 +#: src/Module/Moderation/Users/Active.php:112 +#: src/Module/Moderation/Users/Blocked.php:112 +#: src/Module/Moderation/Users/Index.php:126 msgid "Type" msgstr "Tipo" -#: src/Module/Moderation/Item/Source.php:83 +#: src/Module/Moderation/Item/Source.php:75 msgid "Term" msgstr "Termine" -#: src/Module/Moderation/Item/Source.php:84 +#: src/Module/Moderation/Item/Source.php:76 msgid "URL" msgstr "URL" -#: src/Module/Moderation/Item/Source.php:86 +#: src/Module/Moderation/Item/Source.php:78 msgid "Implicit Mention" msgstr "Menzione Implicita" -#: src/Module/Moderation/Item/Source.php:88 +#: src/Module/Moderation/Item/Source.php:80 msgid "Item not found" msgstr "Oggetto non trovato" -#: src/Module/Moderation/Item/Source.php:89 +#: src/Module/Moderation/Item/Source.php:81 msgid "No source recorded" msgstr "" -#: src/Module/Moderation/Item/Source.php:90 +#: src/Module/Moderation/Item/Source.php:82 msgid "" "Please make sure the debug.store_source config key is set in " "config/local.config.php for future items to have sources." msgstr "" -#: src/Module/Moderation/Item/Source.php:92 +#: src/Module/Moderation/Item/Source.php:84 msgid "Item Guid" msgstr "Item Guid" -#: src/Module/Moderation/Report/Create.php:95 +#: src/Module/Moderation/Report/Create.php:81 msgid "Contact not found or their server is already blocked on this node." msgstr "" -#: src/Module/Moderation/Report/Create.php:136 +#: src/Module/Moderation/Report/Create.php:122 msgid "Please login to access this page." msgstr "" -#: src/Module/Moderation/Report/Create.php:165 -#: src/Module/Moderation/Report/Create.php:180 -#: src/Module/Moderation/Report/Create.php:208 -#: src/Module/Moderation/Report/Create.php:260 -#: src/Module/Moderation/Report/Create.php:279 +#: src/Module/Moderation/Report/Create.php:151 +#: src/Module/Moderation/Report/Create.php:166 +#: src/Module/Moderation/Report/Create.php:194 +#: src/Module/Moderation/Report/Create.php:246 +#: src/Module/Moderation/Report/Create.php:265 msgid "Create Moderation Report" msgstr "" -#: src/Module/Moderation/Report/Create.php:166 +#: src/Module/Moderation/Report/Create.php:152 msgid "Pick Contact" msgstr "" -#: src/Module/Moderation/Report/Create.php:167 +#: src/Module/Moderation/Report/Create.php:153 msgid "" "Please enter below the contact address or profile URL you would like to " "create a moderation report about." msgstr "" -#: src/Module/Moderation/Report/Create.php:171 +#: src/Module/Moderation/Report/Create.php:157 msgid "Contact address/URL" msgstr "" -#: src/Module/Moderation/Report/Create.php:181 +#: src/Module/Moderation/Report/Create.php:167 msgid "Pick Category" msgstr "" -#: src/Module/Moderation/Report/Create.php:182 +#: src/Module/Moderation/Report/Create.php:168 msgid "Please pick below the category of your report." msgstr "" -#: src/Module/Moderation/Report/Create.php:186 -#: src/Module/Moderation/Report/Create.php:311 +#: src/Module/Moderation/Report/Create.php:172 +#: src/Module/Moderation/Report/Create.php:297 msgid "Spam" msgstr "" -#: src/Module/Moderation/Report/Create.php:186 +#: src/Module/Moderation/Report/Create.php:172 msgid "" "This contact is publishing many repeated/overly long posts/replies or " "advertising their product/websites in otherwise irrelevant conversations." msgstr "" -#: src/Module/Moderation/Report/Create.php:187 -#: src/Module/Moderation/Report/Create.php:312 +#: src/Module/Moderation/Report/Create.php:173 +#: src/Module/Moderation/Report/Create.php:298 msgid "Illegal Content" msgstr "" -#: src/Module/Moderation/Report/Create.php:187 +#: src/Module/Moderation/Report/Create.php:173 msgid "" "This contact is publishing content that is considered illegal in this node's" " hosting juridiction." msgstr "" -#: src/Module/Moderation/Report/Create.php:188 -#: src/Module/Moderation/Report/Create.php:313 +#: src/Module/Moderation/Report/Create.php:174 +#: src/Module/Moderation/Report/Create.php:299 msgid "Community Safety" msgstr "" -#: src/Module/Moderation/Report/Create.php:188 +#: src/Module/Moderation/Report/Create.php:174 msgid "" "This contact aggravated you or other people, by being provocative or " "insensitive, intentionally or not. This includes disclosing people's private" @@ -8505,12 +8513,12 @@ msgid "" "replies." msgstr "" -#: src/Module/Moderation/Report/Create.php:189 -#: src/Module/Moderation/Report/Create.php:314 +#: src/Module/Moderation/Report/Create.php:175 +#: src/Module/Moderation/Report/Create.php:300 msgid "Unwanted Content/Behavior" msgstr "" -#: src/Module/Moderation/Report/Create.php:189 +#: src/Module/Moderation/Report/Create.php:175 msgid "" "This contact has repeatedly published content irrelevant to the node's theme" " or is openly criticizing the node's administration/moderation without " @@ -8518,89 +8526,89 @@ msgid "" "nitpicking on a sensitive topic." msgstr "" -#: src/Module/Moderation/Report/Create.php:190 -#: src/Module/Moderation/Report/Create.php:315 +#: src/Module/Moderation/Report/Create.php:176 +#: src/Module/Moderation/Report/Create.php:301 msgid "Rules Violation" msgstr "" -#: src/Module/Moderation/Report/Create.php:190 +#: src/Module/Moderation/Report/Create.php:176 msgid "" "This contact violated one or more rules of this node. You will be able to " "pick which one(s) in the next step." msgstr "" -#: src/Module/Moderation/Report/Create.php:191 +#: src/Module/Moderation/Report/Create.php:177 msgid "" "Please elaborate below why you submitted this report. The more details you " "provide, the better your report can be handled." msgstr "" -#: src/Module/Moderation/Report/Create.php:193 +#: src/Module/Moderation/Report/Create.php:179 msgid "Additional Information" msgstr "" -#: src/Module/Moderation/Report/Create.php:193 +#: src/Module/Moderation/Report/Create.php:179 msgid "" "Please provide any additional information relevant to this particular " "report. You will be able to attach posts by this contact in the next step, " "but any context is welcome." msgstr "" -#: src/Module/Moderation/Report/Create.php:209 +#: src/Module/Moderation/Report/Create.php:195 msgid "Pick Rules" msgstr "" -#: src/Module/Moderation/Report/Create.php:210 +#: src/Module/Moderation/Report/Create.php:196 msgid "Please pick below the node rules you believe this contact violated." msgstr "" -#: src/Module/Moderation/Report/Create.php:261 +#: src/Module/Moderation/Report/Create.php:247 msgid "Pick Posts" msgstr "" -#: src/Module/Moderation/Report/Create.php:262 +#: src/Module/Moderation/Report/Create.php:248 msgid "Please optionally pick posts to attach to your report." msgstr "" -#: src/Module/Moderation/Report/Create.php:281 +#: src/Module/Moderation/Report/Create.php:267 msgid "Submit Report" msgstr "" -#: src/Module/Moderation/Report/Create.php:282 +#: src/Module/Moderation/Report/Create.php:268 msgid "Further Action" msgstr "" -#: src/Module/Moderation/Report/Create.php:283 +#: src/Module/Moderation/Report/Create.php:269 msgid "" "You can also perform one of the following action on the contact you " "reported:" msgstr "" -#: src/Module/Moderation/Report/Create.php:291 +#: src/Module/Moderation/Report/Create.php:277 msgid "Nothing" msgstr "" -#: src/Module/Moderation/Report/Create.php:292 +#: src/Module/Moderation/Report/Create.php:278 msgid "Collapse contact" msgstr "" -#: src/Module/Moderation/Report/Create.php:292 +#: src/Module/Moderation/Report/Create.php:278 msgid "" "Their posts and replies will keep appearing in your Network page but their " "content will be collapsed by default." msgstr "" -#: src/Module/Moderation/Report/Create.php:293 +#: src/Module/Moderation/Report/Create.php:279 msgid "" "Their posts won't appear in your Network page anymore, but their replies can" " appear in forum threads. They still can follow you." msgstr "" -#: src/Module/Moderation/Report/Create.php:294 +#: src/Module/Moderation/Report/Create.php:280 msgid "Block contact" msgstr "" -#: src/Module/Moderation/Report/Create.php:294 +#: src/Module/Moderation/Report/Create.php:280 msgid "" "Their posts won't appear in your Network page anymore, but their replies can" " appear in forum threads, with their content collapsed by default. They " @@ -8608,51 +8616,51 @@ msgid "" "means." msgstr "" -#: src/Module/Moderation/Report/Create.php:297 +#: src/Module/Moderation/Report/Create.php:283 msgid "Forward report" msgstr "" -#: src/Module/Moderation/Report/Create.php:297 +#: src/Module/Moderation/Report/Create.php:283 msgid "Would you ike to forward this report to the remote server?" msgstr "" -#: src/Module/Moderation/Report/Create.php:330 +#: src/Module/Moderation/Report/Create.php:316 msgid "1. Pick a contact" msgstr "" -#: src/Module/Moderation/Report/Create.php:331 +#: src/Module/Moderation/Report/Create.php:317 msgid "2. Pick a category" msgstr "" -#: src/Module/Moderation/Report/Create.php:332 +#: src/Module/Moderation/Report/Create.php:318 msgid "2a. Pick rules" msgstr "" -#: src/Module/Moderation/Report/Create.php:333 +#: src/Module/Moderation/Report/Create.php:319 msgid "2b. Add comment" msgstr "" -#: src/Module/Moderation/Report/Create.php:334 +#: src/Module/Moderation/Report/Create.php:320 msgid "3. Pick posts" msgstr "" -#: src/Module/Moderation/Reports.php:105 +#: src/Module/Moderation/Reports.php:97 msgid "List of reports" msgstr "" -#: src/Module/Moderation/Reports.php:106 +#: src/Module/Moderation/Reports.php:98 msgid "This page display reports created by our or remote users." msgstr "" -#: src/Module/Moderation/Reports.php:107 +#: src/Module/Moderation/Reports.php:99 msgid "No report exists at this node." msgstr "" -#: src/Module/Moderation/Reports.php:110 +#: src/Module/Moderation/Reports.php:102 msgid "Category" msgstr "" -#: src/Module/Moderation/Reports.php:114 +#: src/Module/Moderation/Reports.php:106 #, php-format msgid "%s total report" msgid_plural "%s total reports" @@ -8660,24 +8668,24 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: src/Module/Moderation/Reports.php:117 +#: src/Module/Moderation/Reports.php:109 msgid "URL of the reported contact." msgstr "" -#: src/Module/Moderation/Summary.php:57 src/Module/Settings/Account.php:431 +#: src/Module/Moderation/Summary.php:43 src/Module/Settings/Account.php:422 msgid "Channel Relay" msgstr "" -#: src/Module/Moderation/Summary.php:77 +#: src/Module/Moderation/Summary.php:63 msgid "Registered users" msgstr "Utenti registrati" -#: src/Module/Moderation/Summary.php:79 +#: src/Module/Moderation/Summary.php:65 msgid "Pending registrations" msgstr "Registrazioni in attesa" -#: src/Module/Moderation/Users/Active.php:43 -#: src/Module/Moderation/Users/Index.php:43 +#: src/Module/Moderation/Users/Active.php:29 +#: src/Module/Moderation/Users/Index.php:29 #, php-format msgid "%s user blocked" msgid_plural "%s users blocked" @@ -8685,18 +8693,18 @@ msgstr[0] "%s utente bloccato" msgstr[1] "%s utenti bloccati" msgstr[2] "%s utenti bloccati" -#: src/Module/Moderation/Users/Active.php:51 -#: src/Module/Moderation/Users/Active.php:85 -#: src/Module/Moderation/Users/Blocked.php:51 -#: src/Module/Moderation/Users/Blocked.php:85 -#: src/Module/Moderation/Users/Index.php:58 -#: src/Module/Moderation/Users/Index.php:92 +#: src/Module/Moderation/Users/Active.php:37 +#: src/Module/Moderation/Users/Active.php:71 +#: src/Module/Moderation/Users/Blocked.php:37 +#: src/Module/Moderation/Users/Blocked.php:71 +#: src/Module/Moderation/Users/Index.php:44 +#: src/Module/Moderation/Users/Index.php:78 msgid "You can't remove yourself" msgstr "Non puoi rimuovere te stesso" -#: src/Module/Moderation/Users/Active.php:55 -#: src/Module/Moderation/Users/Blocked.php:55 -#: src/Module/Moderation/Users/Index.php:62 +#: src/Module/Moderation/Users/Active.php:41 +#: src/Module/Moderation/Users/Blocked.php:41 +#: src/Module/Moderation/Users/Index.php:48 #, php-format msgid "%s user deleted" msgid_plural "%s users deleted" @@ -8704,88 +8712,88 @@ msgstr[0] "%s utente cancellato" msgstr[1] "%s utenti cancellati" msgstr[2] "%s utenti cancellati" -#: src/Module/Moderation/Users/Active.php:83 -#: src/Module/Moderation/Users/Blocked.php:83 -#: src/Module/Moderation/Users/Index.php:90 +#: src/Module/Moderation/Users/Active.php:69 +#: src/Module/Moderation/Users/Blocked.php:69 +#: src/Module/Moderation/Users/Index.php:76 #, php-format msgid "User \"%s\" deleted" msgstr "Utente \"%s\" eliminato" -#: src/Module/Moderation/Users/Active.php:93 -#: src/Module/Moderation/Users/Index.php:100 +#: src/Module/Moderation/Users/Active.php:79 +#: src/Module/Moderation/Users/Index.php:86 #, php-format msgid "User \"%s\" blocked" msgstr "Utente \"%s\" bloccato" -#: src/Module/Moderation/Users/Active.php:126 -#: src/Module/Moderation/Users/Blocked.php:126 -#: src/Module/Moderation/Users/Deleted.php:83 -#: src/Module/Moderation/Users/Index.php:140 -#: src/Module/Moderation/Users/Index.php:160 +#: src/Module/Moderation/Users/Active.php:112 +#: src/Module/Moderation/Users/Blocked.php:112 +#: src/Module/Moderation/Users/Deleted.php:69 +#: src/Module/Moderation/Users/Index.php:126 +#: src/Module/Moderation/Users/Index.php:146 msgid "Register date" msgstr "Data registrazione" -#: src/Module/Moderation/Users/Active.php:126 -#: src/Module/Moderation/Users/Blocked.php:126 -#: src/Module/Moderation/Users/Deleted.php:83 -#: src/Module/Moderation/Users/Index.php:140 -#: src/Module/Moderation/Users/Index.php:160 +#: src/Module/Moderation/Users/Active.php:112 +#: src/Module/Moderation/Users/Blocked.php:112 +#: src/Module/Moderation/Users/Deleted.php:69 +#: src/Module/Moderation/Users/Index.php:126 +#: src/Module/Moderation/Users/Index.php:146 msgid "Last login" msgstr "Ultimo accesso" -#: src/Module/Moderation/Users/Active.php:126 -#: src/Module/Moderation/Users/Blocked.php:126 -#: src/Module/Moderation/Users/Deleted.php:83 -#: src/Module/Moderation/Users/Index.php:140 -#: src/Module/Moderation/Users/Index.php:160 +#: src/Module/Moderation/Users/Active.php:112 +#: src/Module/Moderation/Users/Blocked.php:112 +#: src/Module/Moderation/Users/Deleted.php:69 +#: src/Module/Moderation/Users/Index.php:126 +#: src/Module/Moderation/Users/Index.php:146 msgid "Last public item" msgstr "Ultimo elemento pubblico" -#: src/Module/Moderation/Users/Active.php:134 +#: src/Module/Moderation/Users/Active.php:120 msgid "Active Accounts" msgstr "Account attivi" -#: src/Module/Moderation/Users/Active.php:138 -#: src/Module/Moderation/Users/Blocked.php:137 -#: src/Module/Moderation/Users/Index.php:153 +#: src/Module/Moderation/Users/Active.php:124 +#: src/Module/Moderation/Users/Blocked.php:123 +#: src/Module/Moderation/Users/Index.php:139 msgid "User blocked" msgstr "Utente bloccato" -#: src/Module/Moderation/Users/Active.php:139 -#: src/Module/Moderation/Users/Blocked.php:139 -#: src/Module/Moderation/Users/Index.php:155 +#: src/Module/Moderation/Users/Active.php:125 +#: src/Module/Moderation/Users/Blocked.php:125 +#: src/Module/Moderation/Users/Index.php:141 msgid "Site admin" msgstr "Amministrazione sito" -#: src/Module/Moderation/Users/Active.php:140 -#: src/Module/Moderation/Users/Blocked.php:140 -#: src/Module/Moderation/Users/Index.php:156 +#: src/Module/Moderation/Users/Active.php:126 +#: src/Module/Moderation/Users/Blocked.php:126 +#: src/Module/Moderation/Users/Index.php:142 msgid "Account expired" msgstr "Account scaduto" -#: src/Module/Moderation/Users/Active.php:141 -#: src/Module/Moderation/Users/Index.php:159 +#: src/Module/Moderation/Users/Active.php:127 +#: src/Module/Moderation/Users/Index.php:145 msgid "Create a new user" msgstr "Crea un nuovo utente" -#: src/Module/Moderation/Users/Active.php:147 -#: src/Module/Moderation/Users/Blocked.php:146 -#: src/Module/Moderation/Users/Index.php:165 +#: src/Module/Moderation/Users/Active.php:133 +#: src/Module/Moderation/Users/Blocked.php:132 +#: src/Module/Moderation/Users/Index.php:151 msgid "" "Selected users will be deleted!\\n\\nEverything these users had posted on " "this site will be permanently deleted!\\n\\nAre you sure?" msgstr "Gli utenti selezionati saranno cancellati!\\n\\nTutto quello che gli utenti hanno inviato su questo sito sarà permanentemente canellato!\\n\\nSei sicuro?" -#: src/Module/Moderation/Users/Active.php:148 -#: src/Module/Moderation/Users/Blocked.php:147 -#: src/Module/Moderation/Users/Index.php:166 +#: src/Module/Moderation/Users/Active.php:134 +#: src/Module/Moderation/Users/Blocked.php:133 +#: src/Module/Moderation/Users/Index.php:152 msgid "" "The user {0} will be deleted!\\n\\nEverything this user has posted on this " "site will be permanently deleted!\\n\\nAre you sure?" msgstr "L'utente {0} sarà cancellato!\\n\\nTutto quello che ha inviato su questo sito sarà permanentemente cancellato!\\n\\nSei sicuro?" -#: src/Module/Moderation/Users/Blocked.php:43 -#: src/Module/Moderation/Users/Index.php:50 +#: src/Module/Moderation/Users/Blocked.php:29 +#: src/Module/Moderation/Users/Index.php:36 #, php-format msgid "%s user unblocked" msgid_plural "%s users unblocked" @@ -8793,54 +8801,54 @@ msgstr[0] "%s utente sbloccato" msgstr[1] "%s utenti sbloccati" msgstr[2] "%s utenti sbloccati" -#: src/Module/Moderation/Users/Blocked.php:92 -#: src/Module/Moderation/Users/Index.php:106 +#: src/Module/Moderation/Users/Blocked.php:78 +#: src/Module/Moderation/Users/Index.php:92 #, php-format msgid "User \"%s\" unblocked" msgstr "Utente \"%s\" sbloccato" -#: src/Module/Moderation/Users/Blocked.php:134 +#: src/Module/Moderation/Users/Blocked.php:120 msgid "Blocked Users" msgstr "Utenti bloccati" -#: src/Module/Moderation/Users/Create.php:62 +#: src/Module/Moderation/Users/Create.php:48 msgid "New User" msgstr "Nuovo Utente" -#: src/Module/Moderation/Users/Create.php:63 +#: src/Module/Moderation/Users/Create.php:49 msgid "Add User" msgstr "Aggiungi utente" -#: src/Module/Moderation/Users/Create.php:70 +#: src/Module/Moderation/Users/Create.php:56 msgid "Name of the new user." msgstr "Nome del nuovo utente." -#: src/Module/Moderation/Users/Create.php:71 +#: src/Module/Moderation/Users/Create.php:57 msgid "Nickname" msgstr "Nome utente" -#: src/Module/Moderation/Users/Create.php:71 +#: src/Module/Moderation/Users/Create.php:57 msgid "Nickname of the new user." msgstr "Nome utente del nuovo utente." -#: src/Module/Moderation/Users/Create.php:72 +#: src/Module/Moderation/Users/Create.php:58 msgid "Email address of the new user." msgstr "Indirizzo Email del nuovo utente." -#: src/Module/Moderation/Users/Deleted.php:81 +#: src/Module/Moderation/Users/Deleted.php:67 msgid "Users awaiting permanent deletion" msgstr "Utenti in attesa della cancellazione definitiva" -#: src/Module/Moderation/Users/Deleted.php:83 -#: src/Module/Moderation/Users/Index.php:160 +#: src/Module/Moderation/Users/Deleted.php:69 +#: src/Module/Moderation/Users/Index.php:146 msgid "Permanent deletion" msgstr "Cancellazione permanente" -#: src/Module/Moderation/Users/Index.php:150 +#: src/Module/Moderation/Users/Index.php:136 msgid "User waiting for permanent deletion" msgstr "Utente in attesa di cancellazione definitiva" -#: src/Module/Moderation/Users/Pending.php:44 +#: src/Module/Moderation/Users/Pending.php:30 #, php-format msgid "%s user approved" msgid_plural "%s users approved" @@ -8848,7 +8856,7 @@ msgstr[0] "%s utente approvato" msgstr[1] "%s utenti approvati" msgstr[2] "%s utenti approvati" -#: src/Module/Moderation/Users/Pending.php:51 +#: src/Module/Moderation/Users/Pending.php:37 #, php-format msgid "%s registration revoked" msgid_plural "%s registrations revoked" @@ -8856,420 +8864,406 @@ msgstr[0] "%s registrazione revocata" msgstr[1] "%s registrazioni revocate" msgstr[2] "%s registrazioni revocate" -#: src/Module/Moderation/Users/Pending.php:76 +#: src/Module/Moderation/Users/Pending.php:62 msgid "Account approved." msgstr "Account approvato." -#: src/Module/Moderation/Users/Pending.php:82 +#: src/Module/Moderation/Users/Pending.php:68 msgid "Registration revoked" msgstr "Registrazione revocata" -#: src/Module/Moderation/Users/Pending.php:97 +#: src/Module/Moderation/Users/Pending.php:83 msgid "User registrations awaiting review" msgstr "Registrazioni utente in attesa di verifica" -#: src/Module/Moderation/Users/Pending.php:99 +#: src/Module/Moderation/Users/Pending.php:85 msgid "Request date" msgstr "Data richiesta" -#: src/Module/Moderation/Users/Pending.php:100 +#: src/Module/Moderation/Users/Pending.php:86 msgid "No registrations." msgstr "Nessuna registrazione." -#: src/Module/Moderation/Users/Pending.php:101 +#: src/Module/Moderation/Users/Pending.php:87 msgid "Note from the user" msgstr "Nota dall'utente" -#: src/Module/Moderation/Users/Pending.php:103 +#: src/Module/Moderation/Users/Pending.php:89 msgid "Deny" msgstr "Nega" -#: src/Module/Notifications/Introductions.php:99 +#: src/Module/Notifications/Introductions.php:91 msgid "Show Ignored Requests" msgstr "Mostra richieste ignorate" -#: src/Module/Notifications/Introductions.php:99 +#: src/Module/Notifications/Introductions.php:91 msgid "Hide Ignored Requests" msgstr "Nascondi richieste ignorate" -#: src/Module/Notifications/Introductions.php:115 -#: src/Module/Notifications/Introductions.php:178 +#: src/Module/Notifications/Introductions.php:107 +#: src/Module/Notifications/Introductions.php:170 msgid "Notification type:" msgstr "Tipo di notifica:" -#: src/Module/Notifications/Introductions.php:118 +#: src/Module/Notifications/Introductions.php:110 msgid "Suggested by:" msgstr "Suggerito da:" -#: src/Module/Notifications/Introductions.php:143 +#: src/Module/Notifications/Introductions.php:135 msgid "Claims to be known to you: " msgstr "Dice di conoscerti: " -#: src/Module/Notifications/Introductions.php:152 +#: src/Module/Notifications/Introductions.php:144 msgid "Shall your connection be bidirectional or not?" msgstr "La connessione dovrà essere bidirezionale o no?" -#: src/Module/Notifications/Introductions.php:153 +#: src/Module/Notifications/Introductions.php:145 #, php-format msgid "" "Accepting %s as a friend allows %s to subscribe to your posts, and you will " "also receive updates from them in your news feed." msgstr "Accettando %s come amico permette a %s di seguire i tuoi messaggi, e a te di riceverne gli aggiornamenti." -#: src/Module/Notifications/Introductions.php:154 +#: src/Module/Notifications/Introductions.php:146 #, php-format msgid "" "Accepting %s as a subscriber allows them to subscribe to your posts, but you" " will not receive updates from them in your news feed." msgstr "Accettando %s come abbonato gli permetti di abbonarsi ai tuoi messaggi, ma tu non riceverai aggiornamenti da lui." -#: src/Module/Notifications/Introductions.php:156 +#: src/Module/Notifications/Introductions.php:148 msgid "Friend" msgstr "Amico" -#: src/Module/Notifications/Introductions.php:157 +#: src/Module/Notifications/Introductions.php:149 msgid "Subscriber" msgstr "Abbonato" -#: src/Module/Notifications/Introductions.php:216 +#: src/Module/Notifications/Introductions.php:208 msgid "No introductions." msgstr "Nessuna presentazione." -#: src/Module/Notifications/Introductions.php:217 -#: src/Module/Notifications/Notifications.php:135 +#: src/Module/Notifications/Introductions.php:209 +#: src/Module/Notifications/Notifications.php:127 #, php-format msgid "No more %s notifications." msgstr "Nessun'altra notifica %s." -#: src/Module/Notifications/Notification.php:135 +#: src/Module/Notifications/Notification.php:121 msgid "You must be logged in to show this page." msgstr "Devi essere autenticato per vedere questa pagina." -#: src/Module/Notifications/Notifications.php:66 +#: src/Module/Notifications/Notifications.php:52 msgid "Network Notifications" msgstr "Notifiche dalla rete" -#: src/Module/Notifications/Notifications.php:72 +#: src/Module/Notifications/Notifications.php:58 msgid "System Notifications" msgstr "Notifiche di sistema" -#: src/Module/Notifications/Notifications.php:78 +#: src/Module/Notifications/Notifications.php:64 msgid "Personal Notifications" msgstr "Notifiche personali" -#: src/Module/Notifications/Notifications.php:84 +#: src/Module/Notifications/Notifications.php:70 msgid "Home Notifications" msgstr "Notifiche bacheca" -#: src/Module/Notifications/Notifications.php:140 +#: src/Module/Notifications/Notifications.php:132 msgid "Show unread" msgstr "Mostra non letti" -#: src/Module/Notifications/Ping.php:220 +#: src/Module/Notifications/Ping.php:206 msgid "{0} requested registration" msgstr "{0} chiede la registrazione" -#: src/Module/Notifications/Ping.php:229 +#: src/Module/Notifications/Ping.php:215 #, php-format msgid "{0} and %d others requested registration" msgstr "{0} e %d altre registrazioni richieste" -#: src/Module/OAuth/Acknowledge.php:51 +#: src/Module/OAuth/Acknowledge.php:37 msgid "Authorize application connection" msgstr "Autorizza la connessione dell'applicazione" -#: src/Module/OAuth/Acknowledge.php:53 +#: src/Module/OAuth/Acknowledge.php:39 msgid "" "Do you want to authorize this application to access your posts and contacts," " and/or create new posts for you?" msgstr "Vuoi autorizzare questa applicazione per accedere ai messaggi e ai contatti, e / o creare nuovi messaggi per te?" -#: src/Module/OAuth/Authorize.php:54 +#: src/Module/OAuth/Authorize.php:40 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:75 +#: src/Module/OAuth/Authorize.php:45 src/Module/OAuth/Token.php:61 msgid "Incomplete request data" msgstr "Dati richiesta incompleti" -#: src/Module/OAuth/Authorize.php:106 +#: src/Module/OAuth/Authorize.php:92 #, php-format msgid "" "Please copy the following authentication code into your application and " "close this window: %s" msgstr "" -#: src/Module/OAuth/Token.php:80 +#: src/Module/OAuth/Token.php:66 msgid "Invalid data or unknown client" msgstr "" -#: src/Module/OAuth/Token.php:105 +#: src/Module/OAuth/Token.php:91 msgid "Unsupported or missing grant type" msgstr "Tipo di concessione mancante o non supportato" -#: src/Module/OStatus/Repair.php:83 -msgid "Resubscribing to OStatus contacts" -msgstr "Risottoscrivi i contatti OStatus" - -#: src/Module/OStatus/Repair.php:84 src/Module/OStatus/Subscribe.php:160 -msgid "Keep this window open until done." -msgstr "Tieni questa finestra aperta fino a che ha finito." - -#: src/Module/OStatus/Repair.php:85 -msgid "✔ Done" -msgstr "" - -#: src/Module/OStatus/Repair.php:86 -msgid "No OStatus contacts to resubscribe to." -msgstr "" - -#: src/Module/OStatus/Subscribe.php:72 +#: src/Module/OStatus/Subscribe.php:58 msgid "Subscribing to contacts" msgstr "Iscrizione a contatti" -#: src/Module/OStatus/Subscribe.php:81 +#: src/Module/OStatus/Subscribe.php:67 msgid "No contact provided." msgstr "Nessun contatto disponibile." -#: src/Module/OStatus/Subscribe.php:87 +#: src/Module/OStatus/Subscribe.php:73 msgid "Couldn't fetch information for contact." msgstr "Non è stato possibile recuperare le informazioni del contatto." -#: src/Module/OStatus/Subscribe.php:98 +#: src/Module/OStatus/Subscribe.php:84 msgid "Couldn't fetch friends for contact." msgstr "Non è stato possibile recuperare gli amici del contatto." -#: src/Module/OStatus/Subscribe.php:104 src/Module/OStatus/Subscribe.php:115 +#: src/Module/OStatus/Subscribe.php:90 src/Module/OStatus/Subscribe.php:101 msgid "Couldn't fetch following contacts." msgstr "Non è stato possibile recuperare i contatti seguiti." -#: src/Module/OStatus/Subscribe.php:110 +#: src/Module/OStatus/Subscribe.php:96 msgid "Couldn't fetch remote profile." msgstr "Non è stato possibile recuperare il profilo remoto." -#: src/Module/OStatus/Subscribe.php:120 +#: src/Module/OStatus/Subscribe.php:106 msgid "Unsupported network" msgstr "Rete non supportata" -#: src/Module/OStatus/Subscribe.php:136 +#: src/Module/OStatus/Subscribe.php:122 msgid "Done" msgstr "Fatto" -#: src/Module/OStatus/Subscribe.php:150 +#: src/Module/OStatus/Subscribe.php:136 msgid "success" msgstr "successo" -#: src/Module/OStatus/Subscribe.php:152 +#: src/Module/OStatus/Subscribe.php:138 msgid "failed" msgstr "fallito" -#: src/Module/OStatus/Subscribe.php:155 +#: src/Module/OStatus/Subscribe.php:141 msgid "ignored" msgstr "ignorato" -#: src/Module/Photo.php:124 +#: src/Module/OStatus/Subscribe.php:146 +msgid "Keep this window open until done." +msgstr "Tieni questa finestra aperta fino a che ha finito." + +#: src/Module/Photo.php:108 msgid "The Photo is not available." msgstr "" -#: src/Module/Photo.php:149 +#: src/Module/Photo.php:133 #, php-format msgid "The Photo with id %s is not available." msgstr "La Foto con id %s non è disponibile." -#: src/Module/Photo.php:190 +#: src/Module/Photo.php:174 #, php-format msgid "Invalid external resource with url %s." msgstr "" -#: src/Module/Photo.php:192 +#: src/Module/Photo.php:176 #, php-format msgid "Invalid photo with id %s." msgstr "Foto con id %s non valida." -#: src/Module/Post/Edit.php:82 src/Module/Post/Edit.php:96 +#: src/Module/Post/Edit.php:68 src/Module/Post/Edit.php:82 msgid "Post not found." msgstr "" -#: src/Module/Post/Edit.php:102 +#: src/Module/Post/Edit.php:88 msgid "Edit post" msgstr "Modifica messaggio" -#: src/Module/Post/Edit.php:136 +#: src/Module/Post/Edit.php:122 msgid "web link" msgstr "collegamento web" -#: src/Module/Post/Edit.php:137 +#: src/Module/Post/Edit.php:123 msgid "Insert video link" msgstr "Inserire collegamento video" -#: src/Module/Post/Edit.php:138 +#: src/Module/Post/Edit.php:124 msgid "video link" msgstr "collegamento video" -#: src/Module/Post/Edit.php:139 +#: src/Module/Post/Edit.php:125 msgid "Insert audio link" msgstr "Inserisci collegamento audio" -#: src/Module/Post/Edit.php:140 +#: src/Module/Post/Edit.php:126 msgid "audio link" msgstr "collegamento audio" -#: src/Module/Post/Tag/Remove.php:106 +#: src/Module/Post/Tag/Remove.php:92 msgid "Remove Item Tag" msgstr "Rimuovi il tag" -#: src/Module/Post/Tag/Remove.php:107 +#: src/Module/Post/Tag/Remove.php:93 msgid "Select a tag to remove: " msgstr "Seleziona un tag da rimuovere: " -#: src/Module/Post/Tag/Remove.php:108 -#: src/Module/Settings/TwoFactor/Trusted.php:147 +#: src/Module/Post/Tag/Remove.php:94 +#: src/Module/Settings/TwoFactor/Trusted.php:133 msgid "Remove" msgstr "Rimuovi" -#: src/Module/Privacy/PermissionTooltip.php:71 +#: src/Module/Privacy/PermissionTooltip.php:57 #, php-format msgid "Wrong type \"%s\", expected one of: %s" msgstr "Tipo \"%s\" errato, ci si aspettava uno di: %s" -#: src/Module/Privacy/PermissionTooltip.php:101 +#: src/Module/Privacy/PermissionTooltip.php:87 msgid "Model not found" msgstr "Modello non trovato" -#: src/Module/Privacy/PermissionTooltip.php:118 +#: src/Module/Privacy/PermissionTooltip.php:104 msgid "Unlisted" msgstr "" -#: src/Module/Privacy/PermissionTooltip.php:124 +#: src/Module/Privacy/PermissionTooltip.php:110 msgid "Remote privacy information not available." msgstr "Informazioni remote sulla privacy non disponibili." -#: src/Module/Privacy/PermissionTooltip.php:131 +#: src/Module/Privacy/PermissionTooltip.php:117 msgid "Visible to:" msgstr "Visibile a:" -#: src/Module/Privacy/PermissionTooltip.php:133 +#: src/Module/Privacy/PermissionTooltip.php:119 msgid "CC:" msgstr "" -#: src/Module/Privacy/PermissionTooltip.php:134 +#: src/Module/Privacy/PermissionTooltip.php:120 msgid "BCC:" msgstr "" -#: src/Module/Privacy/PermissionTooltip.php:135 +#: src/Module/Privacy/PermissionTooltip.php:121 msgid "Audience:" msgstr "" -#: src/Module/Privacy/PermissionTooltip.php:136 +#: src/Module/Privacy/PermissionTooltip.php:122 msgid "Attributed To:" msgstr "" -#: src/Module/Privacy/PermissionTooltip.php:234 +#: src/Module/Privacy/PermissionTooltip.php:220 #, php-format msgid "Collection (%s)" msgstr "" -#: src/Module/Privacy/PermissionTooltip.php:238 +#: src/Module/Privacy/PermissionTooltip.php:224 #, php-format msgid "Followers (%s)" msgstr "" -#: src/Module/Privacy/PermissionTooltip.php:255 +#: src/Module/Privacy/PermissionTooltip.php:241 #, php-format msgid "%d more" msgstr "" -#: src/Module/Profile/Contacts.php:159 +#: src/Module/Profile/Contacts.php:145 msgid "No contacts." msgstr "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:1095 -#: src/Protocol/OStatus.php:1011 -#, 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:1099 src/Protocol/OStatus.php:1016 +#: src/Module/Profile/Conversations.php:92 src/Module/Profile/Profile.php:339 +#: src/Protocol/Feed.php:1097 #, 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:1102 src/Protocol/OStatus.php:1020 +#: src/Module/Profile/Conversations.php:93 src/Module/Profile/Profile.php:340 +#: src/Protocol/Feed.php:1100 #, 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:192 -#: src/Module/Settings/Profile/Photo/Index.php:58 +#: src/Module/Profile/Conversations.php:94 src/Module/Profile/Profile.php:341 +#: src/Protocol/Feed.php:1093 +#, php-format +msgid "%s's timeline" +msgstr "la timeline di %s" + +#: src/Module/Profile/Photos.php:150 src/Module/Profile/Photos.php:153 +#: src/Module/Profile/Photos.php:178 +#: src/Module/Settings/Profile/Photo/Index.php:44 #, php-format msgid "Image exceeds size limit of %s" msgstr "La dimensione dell'immagine supera il limite di %s" -#: src/Module/Profile/Photos.php:170 +#: src/Module/Profile/Photos.php:156 msgid "Image upload didn't complete, please try again" msgstr "Caricamento dell'immagine non completato. Prova di nuovo." -#: src/Module/Profile/Photos.php:173 +#: src/Module/Profile/Photos.php:159 msgid "Image file is missing" msgstr "Il file dell'immagine è mancante" -#: src/Module/Profile/Photos.php:178 +#: src/Module/Profile/Photos.php:164 msgid "" "Server can't accept new file upload at this time, please contact your " "administrator" msgstr "Il server non può accettare il caricamento di un nuovo file in questo momento, contattare l'amministratore" -#: src/Module/Profile/Photos.php:200 +#: src/Module/Profile/Photos.php:186 msgid "Image file is empty." msgstr "Il file dell'immagine è vuoto." -#: src/Module/Profile/Photos.php:352 +#: src/Module/Profile/Photos.php:338 msgid "View Album" msgstr "Sfoglia l'album" -#: src/Module/Profile/Profile.php:112 src/Module/Profile/Restricted.php:50 +#: src/Module/Profile/Profile.php:100 src/Module/Profile/Restricted.php:36 msgid "Profile not found." msgstr "Profilo non trovato." -#: src/Module/Profile/Profile.php:158 +#: src/Module/Profile/Profile.php:146 #, php-format msgid "" "You're currently viewing your profile as %s Cancel" msgstr "Attualmente stai vedendo il tuo profilo come %s Annulla" -#: src/Module/Profile/Profile.php:167 +#: src/Module/Profile/Profile.php:155 msgid "Full Name:" msgstr "Nome completo:" -#: src/Module/Profile/Profile.php:172 +#: src/Module/Profile/Profile.php:160 msgid "Member since:" msgstr "Membro dal:" -#: src/Module/Profile/Profile.php:178 +#: src/Module/Profile/Profile.php:166 msgid "j F, Y" msgstr "j F Y" -#: src/Module/Profile/Profile.php:179 +#: src/Module/Profile/Profile.php:167 msgid "j F" msgstr "j F" -#: src/Module/Profile/Profile.php:187 src/Util/Temporal.php:168 +#: src/Module/Profile/Profile.php:175 src/Util/Temporal.php:154 msgid "Birthday:" msgstr "Compleanno:" -#: src/Module/Profile/Profile.php:190 -#: src/Module/Settings/Profile/Index.php:291 src/Util/Temporal.php:170 +#: src/Module/Profile/Profile.php:178 +#: src/Module/Settings/Profile/Index.php:282 src/Util/Temporal.php:156 msgid "Age: " msgstr "Età : " -#: src/Module/Profile/Profile.php:190 -#: src/Module/Settings/Profile/Index.php:291 src/Util/Temporal.php:170 +#: src/Module/Profile/Profile.php:178 +#: src/Module/Settings/Profile/Index.php:282 src/Util/Temporal.php:156 #, php-format msgid "%d year old" msgid_plural "%d years old" @@ -9277,46 +9271,46 @@ msgstr[0] "%d anno" msgstr[1] "%d anni" msgstr[2] "%d anni" -#: src/Module/Profile/Profile.php:195 -#: src/Module/Settings/Profile/Index.php:284 +#: src/Module/Profile/Profile.php:183 +#: src/Module/Settings/Profile/Index.php:275 msgid "Description:" msgstr "Descrizione:" -#: src/Module/Profile/Profile.php:261 +#: src/Module/Profile/Profile.php:249 msgid "Groups:" msgstr "" -#: src/Module/Profile/Profile.php:273 +#: src/Module/Profile/Profile.php:261 msgid "View profile as:" msgstr "Vedi il tuo profilo come:" -#: src/Module/Profile/Profile.php:290 +#: src/Module/Profile/Profile.php:278 msgid "View as" msgstr "Vedi come" -#: src/Module/Profile/RemoteFollow.php:82 +#: src/Module/Profile/RemoteFollow.php:68 msgid "Profile unavailable." msgstr "Profilo non disponibile." -#: src/Module/Profile/RemoteFollow.php:88 +#: src/Module/Profile/RemoteFollow.php:74 msgid "Invalid locator" msgstr "Indirizzo non valido" -#: src/Module/Profile/RemoteFollow.php:95 +#: src/Module/Profile/RemoteFollow.php:81 msgid "The provided profile link doesn't seem to be valid" msgstr "Il collegamento al profilo fornito non sembra essere valido" -#: src/Module/Profile/RemoteFollow.php:100 +#: src/Module/Profile/RemoteFollow.php:86 msgid "" "Remote subscription can't be done for your network. Please subscribe " "directly on your system." msgstr "La richiesta di connessione remota non può essere effettuata per la tua rete. Invia la richiesta direttamente sul nostro sistema." -#: src/Module/Profile/RemoteFollow.php:128 +#: src/Module/Profile/RemoteFollow.php:114 msgid "Friend/Connection Request" msgstr "Richieste di amicizia/connessione" -#: src/Module/Profile/RemoteFollow.php:129 +#: src/Module/Profile/RemoteFollow.php:115 #, php-format msgid "" "Enter your Webfinger address (user@domain.tld) or profile URL here. If this " @@ -9324,579 +9318,579 @@ msgid "" " or %s directly on your system." msgstr "Inserisci il tuo indirizzo Webfinger (utente@dominio.tld) o l'URL del profilo qui. Se non è supportato dal tuo sistema, devi abbonarti a %s o %s direttamente sul tuo sistema." -#: src/Module/Profile/RemoteFollow.php:130 +#: src/Module/Profile/RemoteFollow.php:116 #, php-format msgid "" "If you are not yet a member of the free social web, follow " "this link to find a public Friendica node and join us today." msgstr "Non sei ancora un membro del social network libero, segui questo collegamento per trovare un nodo pubblico Friendica e unisciti a noi oggi." -#: src/Module/Profile/RemoteFollow.php:131 +#: src/Module/Profile/RemoteFollow.php:117 msgid "Your Webfinger address or profile URL:" msgstr "Il tuo indirizzo Webfinger o l'URL del profilo:" -#: src/Module/Profile/Restricted.php:59 +#: src/Module/Profile/Restricted.php:45 msgid "Restricted profile" msgstr "" -#: src/Module/Profile/Restricted.php:60 +#: src/Module/Profile/Restricted.php:46 msgid "" "This profile has been restricted which prevents access to their public " "content from anonymous visitors." msgstr "" -#: src/Module/Profile/Schedule.php:83 +#: src/Module/Profile/Schedule.php:69 msgid "Scheduled" msgstr "" -#: src/Module/Profile/Schedule.php:84 +#: src/Module/Profile/Schedule.php:70 msgid "Content" msgstr "" -#: src/Module/Profile/Schedule.php:85 +#: src/Module/Profile/Schedule.php:71 msgid "Remove post" msgstr "" -#: src/Module/Register.php:85 +#: src/Module/Register.php:77 msgid "Only parent users can create additional accounts." msgstr "Solo gli utenti principali possono creare account aggiuntivi." -#: src/Module/Register.php:100 src/Module/User/Import.php:112 +#: src/Module/Register.php:92 src/Module/User/Import.php:98 msgid "" "This site has exceeded the number of allowed daily account registrations. " "Please try again tomorrow." msgstr "Questo sito ha superato il numero di registrazioni giornaliere consentite. Prova di nuovo domani." -#: src/Module/Register.php:117 +#: src/Module/Register.php:109 msgid "" "You may (optionally) fill in this form via OpenID by supplying your OpenID " "and clicking \"Register\"." msgstr "Se vuoi, puoi riempire questo modulo tramite OpenID, inserendo il tuo OpenID e cliccando \"Registra\"." -#: src/Module/Register.php:118 +#: src/Module/Register.php:110 msgid "" "If you are not familiar with OpenID, please leave that field blank and fill " "in the rest of the items." msgstr "Se non hai familiarità con OpenID, lascia il campo vuoto e riempi il resto della maschera." -#: src/Module/Register.php:119 +#: src/Module/Register.php:111 msgid "Your OpenID (optional): " msgstr "Il tuo OpenID (opzionale): " -#: src/Module/Register.php:128 +#: src/Module/Register.php:120 msgid "Include your profile in member directory?" msgstr "Includi il tuo profilo nell'elenco pubblico?" -#: src/Module/Register.php:149 +#: src/Module/Register.php:141 msgid "Note for the admin" msgstr "Nota per l'amministratore" -#: src/Module/Register.php:149 +#: src/Module/Register.php:141 msgid "Leave a message for the admin, why you want to join this node" msgstr "Lascia un messaggio per l'amministratore, per esempio perché vuoi registrarti su questo nodo" -#: src/Module/Register.php:150 +#: src/Module/Register.php:142 msgid "Membership on this site is by invitation only." msgstr "La registrazione su questo sito è solo su invito." -#: src/Module/Register.php:151 +#: src/Module/Register.php:143 msgid "Your invitation code: " msgstr "Il tuo codice di invito:" -#: src/Module/Register.php:159 +#: src/Module/Register.php:151 msgid "Your Display Name (as you would like it to be displayed on this system" msgstr "" -#: src/Module/Register.php:160 +#: src/Module/Register.php:152 msgid "" "Your Email Address: (Initial information will be send there, so this has to " "be an existing address.)" msgstr "Il tuo indirizzo email: (Le informazioni iniziali verranno inviate lì, quindi questo deve essere un indirizzo esistente.)" -#: src/Module/Register.php:161 +#: src/Module/Register.php:153 msgid "Please repeat your e-mail address:" msgstr "Per favore ripeti il tuo indirizzo email:" -#: src/Module/Register.php:163 src/Module/Security/PasswordTooLong.php:100 -#: src/Module/Settings/Account.php:564 +#: src/Module/Register.php:155 src/Module/Security/PasswordTooLong.php:86 +#: src/Module/Settings/Account.php:555 msgid "New Password:" msgstr "Nuova password:" -#: src/Module/Register.php:163 +#: src/Module/Register.php:155 msgid "Leave empty for an auto generated password." msgstr "Lascia vuoto per generare automaticamente una password." -#: src/Module/Register.php:164 src/Module/Security/PasswordTooLong.php:101 -#: src/Module/Settings/Account.php:565 +#: src/Module/Register.php:156 src/Module/Security/PasswordTooLong.php:87 +#: src/Module/Settings/Account.php:556 msgid "Confirm:" msgstr "Conferma:" -#: src/Module/Register.php:165 +#: src/Module/Register.php:157 #, php-format msgid "" "Choose a profile nickname. This must begin with a text character. Your " "profile address on this site will then be \"nickname@%s\"." msgstr "Scegli un nome utente. Deve cominciare con una lettera. L'indirizzo del tuo profilo sarà \"nomeutente@%s\"." -#: src/Module/Register.php:166 +#: src/Module/Register.php:158 msgid "Choose a nickname: " msgstr "Scegli un nome utente: " -#: src/Module/Register.php:174 src/Module/User/Import.php:118 +#: src/Module/Register.php:166 src/Module/User/Import.php:104 msgid "Import" msgstr "Importa" -#: src/Module/Register.php:175 +#: src/Module/Register.php:167 msgid "Import your profile to this friendica instance" msgstr "Importa il tuo profilo in questo server friendica" -#: src/Module/Register.php:182 +#: src/Module/Register.php:174 msgid "Note: This node explicitly contains adult content" msgstr "Nota: Questo nodo contiene esplicitamente contenuti per adulti" -#: src/Module/Register.php:184 src/Module/Settings/Delegation.php:181 +#: src/Module/Register.php:176 src/Module/Settings/Delegation.php:167 msgid "Parent Password:" msgstr "Password Principale:" -#: src/Module/Register.php:184 src/Module/Settings/Delegation.php:181 +#: src/Module/Register.php:176 src/Module/Settings/Delegation.php:167 msgid "" "Please enter the password of the parent account to legitimize your request." msgstr "Inserisci la password dell'account principale per autorizzare la tua richiesta." -#: src/Module/Register.php:213 +#: src/Module/Register.php:205 msgid "Password doesn't match." msgstr "Le password non corrispondono." -#: src/Module/Register.php:219 +#: src/Module/Register.php:211 msgid "Please enter your password." msgstr "Per favore inserisci la tua password." -#: src/Module/Register.php:261 +#: src/Module/Register.php:253 msgid "You have entered too much information." msgstr "Hai inserito troppe informazioni." -#: src/Module/Register.php:284 +#: src/Module/Register.php:276 msgid "Please enter the identical mail address in the second field." msgstr "Per favore inserisci lo stesso indirizzo email nel secondo campo." -#: src/Module/Register.php:292 +#: src/Module/Register.php:284 msgid "Nickname cannot start with a digit." msgstr "" -#: src/Module/Register.php:294 +#: src/Module/Register.php:286 msgid "Nickname can only contain US-ASCII characters." msgstr "" -#: src/Module/Register.php:323 +#: src/Module/Register.php:315 msgid "The additional account was created." msgstr "L'account aggiuntivo è stato creato." -#: src/Module/Register.php:348 +#: src/Module/Register.php:340 msgid "" "Registration successful. Please check your email for further instructions." msgstr "Registrazione completata. Controlla la tua mail per ulteriori informazioni." -#: src/Module/Register.php:355 +#: src/Module/Register.php:347 #, php-format msgid "" "Failed to send email message. Here your accout details:
login: %s
" "password: %s

You can change your password after login." msgstr "Si è verificato un errore inviando l'email. I dettagli del tuo account:
login: %s
password: %s

Puoi cambiare la password dopo il login." -#: src/Module/Register.php:361 +#: src/Module/Register.php:353 msgid "Registration successful." msgstr "Registrazione completata." -#: src/Module/Register.php:370 src/Module/Register.php:377 -#: src/Module/Register.php:387 +#: src/Module/Register.php:362 src/Module/Register.php:369 +#: src/Module/Register.php:379 msgid "Your registration can not be processed." msgstr "La tua registrazione non può essere elaborata." -#: src/Module/Register.php:376 +#: src/Module/Register.php:368 msgid "You have to leave a request note for the admin." msgstr "Devi lasciare una nota di richiesta per l'amministratore." -#: src/Module/Register.php:386 +#: src/Module/Register.php:378 msgid "An internal error occured." msgstr "" -#: src/Module/Register.php:408 +#: src/Module/Register.php:400 msgid "Your registration is pending approval by the site owner." msgstr "La tua richiesta è in attesa di approvazione da parte del proprietario del sito." -#: src/Module/Search/Acl.php:73 +#: src/Module/Search/Acl.php:64 msgid "You must be logged in to use this module." msgstr "Devi aver essere autenticato per usare questo modulo." -#: src/Module/Search/Index.php:69 +#: src/Module/Search/Index.php:55 msgid "Only logged in users are permitted to perform a search." msgstr "Solo agli utenti autenticati è permesso eseguire ricerche." -#: src/Module/Search/Index.php:89 +#: src/Module/Search/Index.php:75 msgid "Only one search per minute is permitted for not logged in users." msgstr "Solo una ricerca al minuto è permessa agli utenti non autenticati." -#: src/Module/Search/Index.php:205 +#: src/Module/Search/Index.php:191 #, php-format msgid "Items tagged with: %s" msgstr "Elementi taggati con: %s" -#: src/Module/Search/Saved.php:59 +#: src/Module/Search/Saved.php:49 msgid "Search term was not saved." msgstr "Il termine di ricerca non è stato salvato." -#: src/Module/Search/Saved.php:62 +#: src/Module/Search/Saved.php:52 msgid "Search term already saved." msgstr "Termine di ricerca già salvato." -#: src/Module/Search/Saved.php:68 +#: src/Module/Search/Saved.php:58 msgid "Search term was not removed." msgstr "Il termine di ricerca non è stato rimosso." -#: src/Module/Security/Login.php:123 +#: src/Module/Security/Login.php:113 msgid "Create a New Account" msgstr "Crea un nuovo account" -#: src/Module/Security/Login.php:142 +#: src/Module/Security/Login.php:132 msgid "Your OpenID: " msgstr "Il tuo OpenID:" -#: src/Module/Security/Login.php:145 +#: src/Module/Security/Login.php:135 msgid "" "Please enter your username and password to add the OpenID to your existing " "account." msgstr "Per favore inserisci il tuo nome utente e password per aggiungere OpenID al tuo account esistente." -#: src/Module/Security/Login.php:147 +#: src/Module/Security/Login.php:137 msgid "Or login using OpenID: " msgstr "O entra con OpenID:" -#: src/Module/Security/Login.php:161 +#: src/Module/Security/Login.php:151 msgid "Password: " msgstr "Password: " -#: src/Module/Security/Login.php:162 +#: src/Module/Security/Login.php:152 msgid "Remember me" msgstr "Ricordati di me" -#: src/Module/Security/Login.php:171 +#: src/Module/Security/Login.php:161 msgid "Forgot your password?" msgstr "Hai dimenticato la password?" -#: src/Module/Security/Login.php:174 +#: src/Module/Security/Login.php:164 msgid "Website Terms of Service" msgstr "Termini di Servizio del sito web " -#: src/Module/Security/Login.php:175 +#: src/Module/Security/Login.php:165 msgid "terms of service" msgstr "termini di servizio" -#: src/Module/Security/Login.php:177 +#: src/Module/Security/Login.php:167 msgid "Website Privacy Policy" msgstr "Politiche di privacy del sito" -#: src/Module/Security/Login.php:178 +#: src/Module/Security/Login.php:168 msgid "privacy policy" msgstr "politiche di privacy" -#: src/Module/Security/Logout.php:84 -#: src/Module/Security/TwoFactor/SignOut.php:78 -#: src/Module/Security/TwoFactor/SignOut.php:86 -#: src/Module/Security/TwoFactor/SignOut.php:108 -#: src/Module/Security/TwoFactor/SignOut.php:115 +#: src/Module/Security/Logout.php:75 +#: src/Module/Security/TwoFactor/SignOut.php:64 +#: src/Module/Security/TwoFactor/SignOut.php:72 +#: src/Module/Security/TwoFactor/SignOut.php:94 +#: src/Module/Security/TwoFactor/SignOut.php:101 msgid "Logged out." msgstr "Uscita effettuata." -#: src/Module/Security/OpenID.php:54 +#: src/Module/Security/OpenID.php:40 msgid "OpenID protocol error. No ID returned" msgstr "Errore di protocollo OpenID. Nessun ID ricevuto" -#: src/Module/Security/OpenID.php:90 +#: src/Module/Security/OpenID.php:76 msgid "" "Account not found. Please login to your existing account to add the OpenID " "to it." msgstr "Account non trovato. Per favore accedi al tuo account esistente per aggiungere OpenID ad esso." -#: src/Module/Security/OpenID.php:92 +#: src/Module/Security/OpenID.php:78 msgid "" "Account not found. Please register a new account or login to your existing " "account to add the OpenID to it." msgstr "Account non trovato. Per favore registra un nuovo account o accedi al tuo account esistente per aggiungere OpenID ad esso." -#: src/Module/Security/PasswordTooLong.php:57 -#: src/Module/Settings/Account.php:67 +#: src/Module/Security/PasswordTooLong.php:43 +#: src/Module/Settings/Account.php:53 msgid "Passwords do not match." msgstr "Le password non corrispondono." -#: src/Module/Security/PasswordTooLong.php:64 +#: src/Module/Security/PasswordTooLong.php:50 msgid "Password does not need changing." msgstr "" -#: src/Module/Security/PasswordTooLong.php:77 -#: src/Module/Settings/Account.php:81 +#: src/Module/Security/PasswordTooLong.php:63 +#: src/Module/Settings/Account.php:67 msgid "Password unchanged." msgstr "Password non modificata." -#: src/Module/Security/PasswordTooLong.php:91 +#: src/Module/Security/PasswordTooLong.php:77 msgid "Password Too Long" msgstr "" -#: src/Module/Security/PasswordTooLong.php:92 +#: src/Module/Security/PasswordTooLong.php:78 msgid "" "Since version 2022.09, we've realized that any password longer than 72 " "characters is truncated during hashing. To prevent any confusion about this " "behavior, please update your password to be fewer or equal to 72 characters." msgstr "" -#: src/Module/Security/PasswordTooLong.php:93 +#: src/Module/Security/PasswordTooLong.php:79 msgid "Update Password" msgstr "" -#: src/Module/Security/PasswordTooLong.php:99 -#: src/Module/Settings/Account.php:566 +#: src/Module/Security/PasswordTooLong.php:85 +#: src/Module/Settings/Account.php:557 msgid "Current Password:" msgstr "Password Attuale:" -#: src/Module/Security/PasswordTooLong.php:99 -#: src/Module/Settings/Account.php:566 +#: src/Module/Security/PasswordTooLong.php:85 +#: src/Module/Settings/Account.php:557 msgid "Your current password to confirm the changes" msgstr "La tua password attuale per confermare le modifiche" -#: src/Module/Security/PasswordTooLong.php:100 -#: src/Module/Settings/Account.php:550 +#: src/Module/Security/PasswordTooLong.php:86 +#: src/Module/Settings/Account.php:541 msgid "" "Allowed characters are a-z, A-Z, 0-9 and special characters except white " "spaces and accentuated letters." msgstr "" -#: src/Module/Security/PasswordTooLong.php:100 -#: src/Module/Settings/Account.php:551 +#: src/Module/Security/PasswordTooLong.php:86 +#: src/Module/Settings/Account.php:542 msgid "Password length is limited to 72 characters." msgstr "" -#: src/Module/Security/TwoFactor/Recovery.php:74 +#: src/Module/Security/TwoFactor/Recovery.php:60 #, php-format msgid "Remaining recovery codes: %d" msgstr "Codici di recupero rimanenti: %d" -#: src/Module/Security/TwoFactor/Recovery.php:80 -#: src/Module/Security/TwoFactor/Verify.php:77 -#: src/Module/Settings/TwoFactor/Verify.php:98 +#: src/Module/Security/TwoFactor/Recovery.php:66 +#: src/Module/Security/TwoFactor/Verify.php:63 +#: src/Module/Settings/TwoFactor/Verify.php:84 msgid "Invalid code, please retry." msgstr "Codice non valido, per favore riprova." -#: src/Module/Security/TwoFactor/Recovery.php:99 +#: src/Module/Security/TwoFactor/Recovery.php:85 msgid "Two-factor recovery" msgstr "Recupero due fattori" -#: src/Module/Security/TwoFactor/Recovery.php:100 +#: src/Module/Security/TwoFactor/Recovery.php:86 msgid "" "

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

" msgstr "

Puoi inserire uno dei tuoi codici di recupero usa e getta nel caso tu perda l'accesso al tuo dispositivo mobile.

" -#: src/Module/Security/TwoFactor/Recovery.php:101 +#: src/Module/Security/TwoFactor/Recovery.php:87 #, php-format msgid "Don’t have your phone? Enter a two-factor recovery code" msgstr "Non hai il tuo telefono? Inserisci il codice di recupero a due fattori" -#: src/Module/Security/TwoFactor/Recovery.php:102 +#: src/Module/Security/TwoFactor/Recovery.php:88 msgid "Please enter a recovery code" msgstr "Per favore inserisci un codice di recupero" -#: src/Module/Security/TwoFactor/Recovery.php:103 +#: src/Module/Security/TwoFactor/Recovery.php:89 msgid "Submit recovery code and complete login" msgstr "Inserisci il codice di recupero e completa l'accesso" -#: src/Module/Security/TwoFactor/SignOut.php:122 +#: src/Module/Security/TwoFactor/SignOut.php:108 msgid "Sign out of this browser?" msgstr "" -#: src/Module/Security/TwoFactor/SignOut.php:123 +#: src/Module/Security/TwoFactor/SignOut.php:109 msgid "" "

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

" msgstr "" -#: src/Module/Security/TwoFactor/SignOut.php:124 +#: src/Module/Security/TwoFactor/SignOut.php:110 msgid "Sign out" msgstr "" -#: src/Module/Security/TwoFactor/SignOut.php:126 +#: src/Module/Security/TwoFactor/SignOut.php:112 msgid "Trust and sign out" msgstr "" -#: src/Module/Security/TwoFactor/Trust.php:96 +#: src/Module/Security/TwoFactor/Trust.php:82 msgid "Couldn't save browser to Cookie." msgstr "" -#: src/Module/Security/TwoFactor/Trust.php:141 +#: src/Module/Security/TwoFactor/Trust.php:127 msgid "Trust this browser?" msgstr "" -#: src/Module/Security/TwoFactor/Trust.php:142 +#: src/Module/Security/TwoFactor/Trust.php:128 msgid "" "

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

" msgstr "" -#: src/Module/Security/TwoFactor/Trust.php:143 +#: src/Module/Security/TwoFactor/Trust.php:129 msgid "Not now" msgstr "" -#: src/Module/Security/TwoFactor/Trust.php:144 +#: src/Module/Security/TwoFactor/Trust.php:130 msgid "Don't trust" msgstr "" -#: src/Module/Security/TwoFactor/Trust.php:145 +#: src/Module/Security/TwoFactor/Trust.php:131 msgid "Trust" msgstr "" -#: src/Module/Security/TwoFactor/Verify.php:97 +#: src/Module/Security/TwoFactor/Verify.php:83 msgid "" "

Open the two-factor authentication app on your device to get an " "authentication code and verify your identity.

" msgstr "

Apri l'app di autenticazione a due fattori sul tuo dispositivo per ottenere un codice di autenticazione e verificare la tua identità.

" -#: src/Module/Security/TwoFactor/Verify.php:100 +#: src/Module/Security/TwoFactor/Verify.php:86 #, php-format msgid "" "If you do not have access to your authentication code you can use a two-factor recovery code." msgstr "" -#: src/Module/Security/TwoFactor/Verify.php:101 -#: src/Module/Settings/TwoFactor/Verify.php:158 +#: src/Module/Security/TwoFactor/Verify.php:87 +#: src/Module/Settings/TwoFactor/Verify.php:144 msgid "Please enter a code from your authentication app" msgstr "Per favore inserisci il codice dalla tua app di autenticazione" -#: src/Module/Security/TwoFactor/Verify.php:102 +#: src/Module/Security/TwoFactor/Verify.php:88 msgid "Verify code and complete login" msgstr "Verifica codice e completa l'accesso" -#: src/Module/Settings/Account.php:96 +#: src/Module/Settings/Account.php:82 msgid "Please use a shorter name." msgstr "Per favore utilizza un nome più corto." -#: src/Module/Settings/Account.php:99 +#: src/Module/Settings/Account.php:85 msgid "Name too short." msgstr "Nome troppo corto." -#: src/Module/Settings/Account.php:108 +#: src/Module/Settings/Account.php:94 msgid "Wrong Password." msgstr "Password Sbagliata." -#: src/Module/Settings/Account.php:113 +#: src/Module/Settings/Account.php:99 msgid "Invalid email." msgstr "Email non valida." -#: src/Module/Settings/Account.php:117 +#: src/Module/Settings/Account.php:103 msgid "Cannot change to that email." msgstr "Non puoi usare quella email." -#: src/Module/Settings/Account.php:146 src/Module/Settings/Account.php:195 -#: src/Module/Settings/Account.php:216 src/Module/Settings/Account.php:300 -#: src/Module/Settings/Account.php:329 +#: src/Module/Settings/Account.php:132 src/Module/Settings/Account.php:181 +#: src/Module/Settings/Account.php:202 src/Module/Settings/Account.php:286 +#: src/Module/Settings/Account.php:315 msgid "Settings were not updated." msgstr "Le impostazioni non sono state aggiornate." -#: src/Module/Settings/Account.php:342 +#: src/Module/Settings/Account.php:333 msgid "Contact CSV file upload error" msgstr "Errore nel caricamento del file CSV dei contatti" -#: src/Module/Settings/Account.php:361 +#: src/Module/Settings/Account.php:352 msgid "Importing Contacts done" msgstr "Importazione dei Contatti riuscita" -#: src/Module/Settings/Account.php:374 +#: src/Module/Settings/Account.php:365 msgid "Relocate message has been send to your contacts" msgstr "Il messaggio di trasloco è stato inviato ai tuoi contatti" -#: src/Module/Settings/Account.php:391 +#: src/Module/Settings/Account.php:382 msgid "Unable to find your profile. Please contact your admin." msgstr "Impossibile trovare il tuo profilo. Contatta il tuo amministratore." -#: src/Module/Settings/Account.php:433 +#: src/Module/Settings/Account.php:424 msgid "" "Account for a service that automatically shares content based on user " "defined channels." msgstr "" -#: src/Module/Settings/Account.php:443 +#: src/Module/Settings/Account.php:434 msgid "Personal Page Subtypes" msgstr "Sottotipi di Pagine Personali" -#: src/Module/Settings/Account.php:444 +#: src/Module/Settings/Account.php:435 msgid "Community Group Subtypes" msgstr "" -#: src/Module/Settings/Account.php:455 +#: src/Module/Settings/Account.php:446 msgid "Account for a personal profile." msgstr "Account per profilo personale." -#: src/Module/Settings/Account.php:462 +#: src/Module/Settings/Account.php:453 msgid "" "Account for an organisation that automatically approves contact requests as " "\"Followers\"." msgstr "Account per un'organizzazione, che automaticamente approva le richieste di contatto come \"Follower\"." -#: src/Module/Settings/Account.php:469 +#: src/Module/Settings/Account.php:460 msgid "" "Account for a news reflector that automatically approves contact requests as" " \"Followers\"." msgstr "Account per notizie, che automaticamente approva le richieste di contatto come \"Follower\"" -#: src/Module/Settings/Account.php:476 +#: src/Module/Settings/Account.php:467 msgid "Account for community discussions." msgstr "Account per discussioni comunitarie." -#: src/Module/Settings/Account.php:484 +#: src/Module/Settings/Account.php:475 msgid "" "Account for a regular personal profile that requires manual approval of " "\"Friends\" and \"Followers\"." msgstr "Account per un profilo personale, che richiede l'approvazione delle richieste di contatto come \"Amico\" o \"Follower\"." -#: src/Module/Settings/Account.php:491 +#: src/Module/Settings/Account.php:482 msgid "" "Account for a public profile that automatically approves contact requests as" " \"Followers\"." msgstr "Account per un profilo publico, che automaticamente approva le richieste di contatto come \"Follower\"." -#: src/Module/Settings/Account.php:498 +#: src/Module/Settings/Account.php:489 msgid "Automatically approves all contact requests." msgstr "Approva automaticamente tutte le richieste di contatto." -#: src/Module/Settings/Account.php:505 +#: src/Module/Settings/Account.php:496 msgid "Contact requests have to be manually approved." msgstr "" -#: src/Module/Settings/Account.php:512 +#: src/Module/Settings/Account.php:503 msgid "" "Account for a popular profile that automatically approves contact requests " "as \"Friends\"." msgstr "Account per un profilo popolare, che automaticamente approva le richieste di contatto come \"Amici\"." -#: src/Module/Settings/Account.php:517 +#: src/Module/Settings/Account.php:508 msgid "Private Group [Experimental]" msgstr "" -#: src/Module/Settings/Account.php:519 +#: src/Module/Settings/Account.php:510 msgid "Requires manual approval of contact requests." msgstr "Richiede l'approvazione manuale delle richieste di contatto." -#: src/Module/Settings/Account.php:528 +#: src/Module/Settings/Account.php:519 msgid "OpenID:" msgstr "OpenID:" -#: src/Module/Settings/Account.php:528 +#: src/Module/Settings/Account.php:519 msgid "(Optional) Allow this OpenID to login to this account." msgstr "(Opzionale) Consente di loggarti in questo account con questo OpenID" -#: src/Module/Settings/Account.php:536 +#: src/Module/Settings/Account.php:527 msgid "Publish your profile in your local site directory?" msgstr "Pubblica il tuo profilo nell'elenco locale del tuo sito?" -#: src/Module/Settings/Account.php:536 +#: src/Module/Settings/Account.php:527 #, php-format msgid "" "Your profile will be published in this node's local " @@ -9904,94 +9898,94 @@ msgid "" " system settings." msgstr "Il tuo profilo verrà pubblicato nella directory locale di questo nodo. I dettagli del tuo profilo potrebbero essere visibili pubblicamente a seconda delle impostazioni di sistema." -#: src/Module/Settings/Account.php:542 +#: src/Module/Settings/Account.php:533 #, php-format msgid "" "Your profile will also be published in the global friendica directories " "(e.g. %s)." msgstr "Il tuo profilo sarà anche pubblicato nelle directory globali di friendica (es. %s)." -#: src/Module/Settings/Account.php:555 +#: src/Module/Settings/Account.php:546 msgid "Account Settings" msgstr "Impostazioni account" -#: src/Module/Settings/Account.php:556 +#: src/Module/Settings/Account.php:547 #, php-format msgid "Your Identity Address is '%s' or '%s'." msgstr "L'indirizzo della tua identità è '%s' or '%s'." -#: src/Module/Settings/Account.php:563 +#: src/Module/Settings/Account.php:554 msgid "Password Settings" msgstr "Impostazioni password" -#: src/Module/Settings/Account.php:565 +#: src/Module/Settings/Account.php:556 msgid "Leave password fields blank unless changing" msgstr "Lascia questi campi in bianco per non effettuare variazioni alla password" -#: src/Module/Settings/Account.php:567 +#: src/Module/Settings/Account.php:558 msgid "Password:" msgstr "Password:" -#: src/Module/Settings/Account.php:567 +#: src/Module/Settings/Account.php:558 msgid "Your current password to confirm the changes of the email address" msgstr "La tua password attuale per confermare il cambio di indirizzo email" -#: src/Module/Settings/Account.php:570 +#: src/Module/Settings/Account.php:561 msgid "Delete OpenID URL" msgstr "Elimina URL OpenID" -#: src/Module/Settings/Account.php:572 +#: src/Module/Settings/Account.php:563 msgid "Basic Settings" msgstr "Impostazioni base" -#: src/Module/Settings/Account.php:573 -#: src/Module/Settings/Profile/Index.php:283 +#: src/Module/Settings/Account.php:564 +#: src/Module/Settings/Profile/Index.php:274 msgid "Display name:" msgstr "Nome visualizzato:" -#: src/Module/Settings/Account.php:574 +#: src/Module/Settings/Account.php:565 msgid "Email Address:" msgstr "Indirizzo Email:" -#: src/Module/Settings/Account.php:575 +#: src/Module/Settings/Account.php:566 msgid "Your Timezone:" msgstr "Il tuo fuso orario:" -#: src/Module/Settings/Account.php:576 +#: src/Module/Settings/Account.php:567 msgid "Your Language:" msgstr "La tua lingua:" -#: src/Module/Settings/Account.php:576 +#: src/Module/Settings/Account.php:567 msgid "" "Set the language we use to show you friendica interface and to send you " "emails" msgstr "Imposta la lingua che sarà usata per mostrarti l'interfaccia di Friendica e per inviarti le email" -#: src/Module/Settings/Account.php:577 +#: src/Module/Settings/Account.php:568 msgid "Default Post Location:" msgstr "Località predefinita:" -#: src/Module/Settings/Account.php:578 +#: src/Module/Settings/Account.php:569 msgid "Use Browser Location:" msgstr "Usa la località rilevata dal browser:" -#: src/Module/Settings/Account.php:580 +#: src/Module/Settings/Account.php:571 msgid "Security and Privacy Settings" msgstr "Impostazioni di sicurezza e privacy" -#: src/Module/Settings/Account.php:582 +#: src/Module/Settings/Account.php:573 msgid "Maximum Friend Requests/Day:" msgstr "Numero massimo di richieste di amicizia al giorno:" -#: src/Module/Settings/Account.php:582 +#: src/Module/Settings/Account.php:573 msgid "(to prevent spam abuse)" msgstr "(per prevenire lo spam)" -#: src/Module/Settings/Account.php:584 +#: src/Module/Settings/Account.php:575 msgid "Allow your profile to be searchable globally?" msgstr "Vuoi che il tuo profilo sia ricercabile globalmente?" -#: src/Module/Settings/Account.php:584 +#: src/Module/Settings/Account.php:575 msgid "" "Activate this setting if you want others to easily find and follow you. Your" " profile will be searchable on remote systems. This setting also determines " @@ -9999,43 +9993,43 @@ msgid "" "indexed or not." msgstr "Attiva questa impostazione se vuoi che gli altri ti trovino facilmente e ti seguano. Il tuo profilo sarà ricercabile da sistemi remoti. Questa impostazione determina anche se Friendica informerà i motori di ricerca che il tuo profilo sia indicizzabile o meno." -#: src/Module/Settings/Account.php:585 +#: src/Module/Settings/Account.php:576 msgid "Hide your contact/friend list from viewers of your profile?" msgstr "Nascondere la lista dei tuo contatti/amici dai visitatori del tuo profilo?" -#: src/Module/Settings/Account.php:585 +#: src/Module/Settings/Account.php:576 msgid "" "A list of your contacts is displayed on your profile page. Activate this " "option to disable the display of your contact list." msgstr "La lista dei tuoi contatti è mostrata sulla tua pagina di profilo. Attiva questa opzione per disabilitare la visualizzazione del tuo elenco contatti." -#: src/Module/Settings/Account.php:586 +#: src/Module/Settings/Account.php:577 msgid "Hide your public content from anonymous viewers" msgstr "" -#: src/Module/Settings/Account.php:586 +#: src/Module/Settings/Account.php:577 msgid "" "Anonymous visitors will only see your basic profile details. Your public " "posts and replies will still be freely accessible on the remote servers of " "your followers and through relays." msgstr "" -#: src/Module/Settings/Account.php:587 +#: src/Module/Settings/Account.php:578 msgid "Make public posts unlisted" msgstr "Rendi messaggi pubblici non elencati" -#: src/Module/Settings/Account.php:587 +#: src/Module/Settings/Account.php:578 msgid "" "Your public posts will not appear on the community pages or in search " "results, nor be sent to relay servers. However they can still appear on " "public feeds on remote servers." msgstr "I tuoi messaggi pubblici non appariranno sulle pagine della comunità o nei risultati di ricerca, e non saranno inviati ai server relay. Comunque appariranno sui feed pubblici su server remoti." -#: src/Module/Settings/Account.php:588 +#: src/Module/Settings/Account.php:579 msgid "Make all posted pictures accessible" msgstr "Rendi tutte le immagini pubblicate accessibili" -#: src/Module/Settings/Account.php:588 +#: src/Module/Settings/Account.php:579 msgid "" "This option makes every posted picture accessible via the direct link. This " "is a workaround for the problem that most other networks can't handle " @@ -10043,352 +10037,352 @@ msgid "" "public on your photo albums though." msgstr "Questa opzione rende ogni immagine pubblicata accessibile attraverso il collegamento diretto. Questo è una soluzione alternativa al problema che la maggior parte delle altre reti non gestiscono i permessi sulle immagini. Le immagini non pubbliche non saranno visibili al pubblico nei tuoi album fotografici comunque." -#: src/Module/Settings/Account.php:589 +#: src/Module/Settings/Account.php:580 msgid "Allow friends to post to your profile page?" msgstr "Permetti agli amici di scrivere sulla tua pagina profilo?" -#: src/Module/Settings/Account.php:589 +#: src/Module/Settings/Account.php:580 msgid "" "Your contacts may write posts on your profile wall. These posts will be " "distributed to your contacts" msgstr "I tuoi contatti possono scrivere messaggi sulla tua pagina di profilo. Questi messaggi saranno distribuiti a tutti i tuoi contatti." -#: src/Module/Settings/Account.php:590 +#: src/Module/Settings/Account.php:581 msgid "Allow friends to tag your posts?" msgstr "Permetti agli amici di aggiungere tag ai tuoi messaggi?" -#: src/Module/Settings/Account.php:590 +#: src/Module/Settings/Account.php:581 msgid "Your contacts can add additional tags to your posts." msgstr "I tuoi contatti possono aggiungere tag aggiuntivi ai tuoi messaggi." -#: src/Module/Settings/Account.php:591 +#: src/Module/Settings/Account.php:582 msgid "Default privacy circle for new contacts" msgstr "" -#: src/Module/Settings/Account.php:592 +#: src/Module/Settings/Account.php:583 msgid "Default privacy circle for new group contacts" msgstr "" -#: src/Module/Settings/Account.php:593 +#: src/Module/Settings/Account.php:584 msgid "Default Post Permissions" msgstr "Permessi predefiniti per i messaggi" -#: src/Module/Settings/Account.php:597 +#: src/Module/Settings/Account.php:588 msgid "Expiration settings" msgstr "Impostazioni di scadenza" -#: src/Module/Settings/Account.php:598 +#: src/Module/Settings/Account.php:589 msgid "Automatically expire posts after this many days:" msgstr "Fai scadere i messaggi automaticamente dopo x giorni:" -#: src/Module/Settings/Account.php:598 +#: src/Module/Settings/Account.php:589 msgid "If empty, posts will not expire. Expired posts will be deleted" msgstr "Se lasciato vuoto, i messaggi non verranno cancellati." -#: src/Module/Settings/Account.php:599 +#: src/Module/Settings/Account.php:590 msgid "Expire posts" msgstr "Fai scadere i messaggi" -#: src/Module/Settings/Account.php:599 +#: src/Module/Settings/Account.php:590 msgid "When activated, posts and comments will be expired." msgstr "Quando attivato, i messaggi e i commenti scadranno." -#: src/Module/Settings/Account.php:600 +#: src/Module/Settings/Account.php:591 msgid "Expire personal notes" msgstr "Fai scadere le note personali" -#: src/Module/Settings/Account.php:600 +#: src/Module/Settings/Account.php:591 msgid "" "When activated, the personal notes on your profile page will be expired." msgstr "Quando attivato, le note personali sulla tua pagina del profilo scadranno." -#: src/Module/Settings/Account.php:601 +#: src/Module/Settings/Account.php:592 msgid "Expire starred posts" msgstr "Fai scadere i messaggi speciali" -#: src/Module/Settings/Account.php:601 +#: src/Module/Settings/Account.php:592 msgid "" "Starring posts keeps them from being expired. That behaviour is overwritten " "by this setting." msgstr "Inserire i messaggi negli speciali evita di farli scadere. Questo comportamento viene scavalcato da questa impostazione." -#: src/Module/Settings/Account.php:602 +#: src/Module/Settings/Account.php:593 msgid "Only expire posts by others" msgstr "Fai scadere solo i messaggi degli altri" -#: src/Module/Settings/Account.php:602 +#: src/Module/Settings/Account.php:593 msgid "" "When activated, your own posts never expire. Then the settings above are " "only valid for posts you received." msgstr "Quando attivato, i tuoi messaggi non scadranno mai. Quindi le impostazioni qui sopra saranno valide solo per i messaggi che hai ricevuto." -#: src/Module/Settings/Account.php:605 +#: src/Module/Settings/Account.php:596 msgid "Notification Settings" msgstr "Impostazioni notifiche" -#: src/Module/Settings/Account.php:606 +#: src/Module/Settings/Account.php:597 msgid "Send a notification email when:" msgstr "Invia una mail di notifica quando:" -#: src/Module/Settings/Account.php:607 +#: src/Module/Settings/Account.php:598 msgid "You receive an introduction" msgstr "Ricevi una presentazione" -#: src/Module/Settings/Account.php:608 +#: src/Module/Settings/Account.php:599 msgid "Your introductions are confirmed" msgstr "Le tue presentazioni sono confermate" -#: src/Module/Settings/Account.php:609 +#: src/Module/Settings/Account.php:600 msgid "Someone writes on your profile wall" msgstr "Qualcuno scrive sulla bacheca del tuo profilo" -#: src/Module/Settings/Account.php:610 +#: src/Module/Settings/Account.php:601 msgid "Someone writes a followup comment" msgstr "Qualcuno scrive un commento a un tuo messaggio" -#: src/Module/Settings/Account.php:611 +#: src/Module/Settings/Account.php:602 msgid "You receive a private message" msgstr "Ricevi un messaggio privato" -#: src/Module/Settings/Account.php:612 +#: src/Module/Settings/Account.php:603 msgid "You receive a friend suggestion" msgstr "Hai ricevuto un suggerimento di amicizia" -#: src/Module/Settings/Account.php:613 +#: src/Module/Settings/Account.php:604 msgid "You are tagged in a post" msgstr "Sei stato taggato in un messaggio" -#: src/Module/Settings/Account.php:615 +#: src/Module/Settings/Account.php:606 msgid "Create a desktop notification when:" msgstr "Crea una notifica desktop quando:" -#: src/Module/Settings/Account.php:616 +#: src/Module/Settings/Account.php:607 msgid "Someone tagged you" msgstr "" -#: src/Module/Settings/Account.php:617 +#: src/Module/Settings/Account.php:608 msgid "Someone directly commented on your post" msgstr "" -#: src/Module/Settings/Account.php:618 +#: src/Module/Settings/Account.php:609 msgid "Someone liked your content" msgstr "Qualcuno ha messo mi piace a un tuo contenuto" -#: src/Module/Settings/Account.php:618 src/Module/Settings/Account.php:619 +#: src/Module/Settings/Account.php:609 src/Module/Settings/Account.php:610 msgid "Can only be enabled, when the direct comment notification is enabled." msgstr "" -#: src/Module/Settings/Account.php:619 +#: src/Module/Settings/Account.php:610 msgid "Someone shared your content" msgstr "Qualcuno ha condiviso un tuo contenuto" -#: src/Module/Settings/Account.php:620 +#: src/Module/Settings/Account.php:611 msgid "Someone commented in your thread" msgstr "" -#: src/Module/Settings/Account.php:621 +#: src/Module/Settings/Account.php:612 msgid "Someone commented in a thread where you commented" msgstr "" -#: src/Module/Settings/Account.php:622 +#: src/Module/Settings/Account.php:613 msgid "Someone commented in a thread where you interacted" msgstr "" -#: src/Module/Settings/Account.php:624 +#: src/Module/Settings/Account.php:615 msgid "Activate desktop notifications" msgstr "Attiva notifiche desktop" -#: src/Module/Settings/Account.php:624 +#: src/Module/Settings/Account.php:615 msgid "Show desktop popup on new notifications" msgstr "Mostra un popup di notifica sul desktop all'arrivo di nuove notifiche" -#: src/Module/Settings/Account.php:628 +#: src/Module/Settings/Account.php:619 msgid "Text-only notification emails" msgstr "Email di notifica in solo testo" -#: src/Module/Settings/Account.php:630 +#: src/Module/Settings/Account.php:621 msgid "Send text only notification emails, without the html part" msgstr "Invia le email di notifica in solo testo, senza la parte in html" -#: src/Module/Settings/Account.php:634 +#: src/Module/Settings/Account.php:625 msgid "Show detailled notifications" msgstr "Mostra notifiche dettagliate" -#: src/Module/Settings/Account.php:636 +#: src/Module/Settings/Account.php:627 msgid "" "Per default, notifications are condensed to a single notification per item. " "When enabled every notification is displayed." msgstr "Per impostazione predefinita, le notifiche sono raggruppate in una singola notifica per articolo. Se abilitato, viene visualizzate tutte le notifiche." -#: src/Module/Settings/Account.php:640 +#: src/Module/Settings/Account.php:631 msgid "Show notifications of ignored contacts" msgstr "Mostra notifiche dai contatti ignorati" -#: src/Module/Settings/Account.php:642 +#: src/Module/Settings/Account.php:633 msgid "" "You don't see posts from ignored contacts. But you still see their comments." " This setting controls if you want to still receive regular notifications " "that are caused by ignored contacts or not." msgstr "Non vedi i messaggi da contatti ignorati. Ma puoi ancora vedere i loro commenti. Questa impostazione controlla se vuoi o meno continuare a ricevere notifiche regolari che sono causate dai contatti ignorati." -#: src/Module/Settings/Account.php:645 +#: src/Module/Settings/Account.php:636 msgid "Advanced Account/Page Type Settings" msgstr "Impostazioni avanzate Account/Tipo di pagina" -#: src/Module/Settings/Account.php:646 +#: src/Module/Settings/Account.php:637 msgid "Change the behaviour of this account for special situations" msgstr "Modifica il comportamento di questo account in situazioni speciali" -#: src/Module/Settings/Account.php:649 +#: src/Module/Settings/Account.php:640 msgid "Import Contacts" msgstr "Importa Contatti" -#: src/Module/Settings/Account.php:650 +#: src/Module/Settings/Account.php:641 msgid "" "Upload a CSV file that contains the handle of your followed accounts in the " "first column you exported from the old account." msgstr "Carica un file CSV che contiene gli indirizzi dei tuoi account seguiti nella prima colonna che hai esportato dal vecchio account." -#: src/Module/Settings/Account.php:651 +#: src/Module/Settings/Account.php:642 msgid "Upload File" msgstr "Carica File" -#: src/Module/Settings/Account.php:654 +#: src/Module/Settings/Account.php:645 msgid "Relocate" msgstr "Trasloca" -#: src/Module/Settings/Account.php:655 +#: src/Module/Settings/Account.php:646 msgid "" "If you have moved this profile from another server, and some of your " "contacts don't receive your updates, try pushing this button." msgstr "Se hai spostato questo profilo da un'altro server, e alcuni dei tuoi contatti non ricevono i tuoi aggiornamenti, prova a premere questo bottone." -#: src/Module/Settings/Account.php:656 +#: src/Module/Settings/Account.php:647 msgid "Resend relocate message to contacts" msgstr "Invia nuovamente il messaggio di trasloco ai contatti" -#: src/Module/Settings/Addons.php:86 +#: src/Module/Settings/Addons.php:72 msgid "Addon Settings" msgstr "Impostazioni Componenti Aggiuntivi" -#: src/Module/Settings/Addons.php:87 +#: src/Module/Settings/Addons.php:73 msgid "No Addon settings configured" msgstr "Nessun componente aggiuntivo ha impostazioni modificabili" -#: src/Module/Settings/Channels.php:148 +#: src/Module/Settings/Channels.php:134 msgid "" "This page can be used to define the channels that will automatically be " "reshared by your account." msgstr "" -#: src/Module/Settings/Channels.php:153 +#: src/Module/Settings/Channels.php:139 msgid "This page can be used to define your own channels." msgstr "" -#: src/Module/Settings/Channels.php:182 +#: src/Module/Settings/Channels.php:168 msgid "Publish" msgstr "" -#: src/Module/Settings/Channels.php:182 +#: src/Module/Settings/Channels.php:168 msgid "" "When selected, the channel results are reshared. This only works for public " "ActivityPub posts from the public timeline or the user defined circles." msgstr "" -#: src/Module/Settings/Channels.php:190 src/Module/Settings/Channels.php:211 -#: src/Module/Settings/Display.php:338 +#: src/Module/Settings/Channels.php:176 src/Module/Settings/Channels.php:197 +#: src/Module/Settings/Display.php:324 msgid "Label" msgstr "" -#: src/Module/Settings/Channels.php:191 src/Module/Settings/Channels.php:212 -#: src/Module/Settings/Display.php:339 -#: src/Module/Settings/TwoFactor/AppSpecific.php:137 +#: src/Module/Settings/Channels.php:177 src/Module/Settings/Channels.php:198 +#: src/Module/Settings/Display.php:325 +#: src/Module/Settings/TwoFactor/AppSpecific.php:123 msgid "Description" msgstr "Descrizione" -#: src/Module/Settings/Channels.php:192 src/Module/Settings/Channels.php:213 +#: src/Module/Settings/Channels.php:178 src/Module/Settings/Channels.php:199 msgid "Access Key" msgstr "" -#: src/Module/Settings/Channels.php:193 src/Module/Settings/Channels.php:214 +#: src/Module/Settings/Channels.php:179 src/Module/Settings/Channels.php:200 msgid "Circle/Channel" msgstr "" -#: src/Module/Settings/Channels.php:194 src/Module/Settings/Channels.php:215 +#: src/Module/Settings/Channels.php:180 src/Module/Settings/Channels.php:201 msgid "Include Tags" msgstr "" -#: src/Module/Settings/Channels.php:195 src/Module/Settings/Channels.php:216 +#: src/Module/Settings/Channels.php:181 src/Module/Settings/Channels.php:202 msgid "Exclude Tags" msgstr "" -#: src/Module/Settings/Channels.php:196 src/Module/Settings/Channels.php:217 +#: src/Module/Settings/Channels.php:182 src/Module/Settings/Channels.php:203 msgid "Minimum Size" msgstr "" -#: src/Module/Settings/Channels.php:197 src/Module/Settings/Channels.php:218 +#: src/Module/Settings/Channels.php:183 src/Module/Settings/Channels.php:204 msgid "Maximum Size" msgstr "" -#: src/Module/Settings/Channels.php:198 src/Module/Settings/Channels.php:219 +#: src/Module/Settings/Channels.php:184 src/Module/Settings/Channels.php:205 msgid "Full Text Search" msgstr "" -#: src/Module/Settings/Channels.php:202 src/Module/Settings/Channels.php:223 +#: src/Module/Settings/Channels.php:188 src/Module/Settings/Channels.php:209 msgid "Select all languages that you want to see in this channel." msgstr "" -#: src/Module/Settings/Channels.php:204 +#: src/Module/Settings/Channels.php:190 msgid "Delete channel" msgstr "" -#: src/Module/Settings/Channels.php:204 +#: src/Module/Settings/Channels.php:190 msgid "Check to delete this entry from the channel list" msgstr "" -#: src/Module/Settings/Channels.php:211 +#: src/Module/Settings/Channels.php:197 msgid "Short name for the channel. It is displayed on the channels widget." msgstr "" -#: src/Module/Settings/Channels.php:212 +#: src/Module/Settings/Channels.php:198 msgid "This should describe the content of the channel in a few word." msgstr "" -#: src/Module/Settings/Channels.php:213 +#: src/Module/Settings/Channels.php:199 msgid "" "When you want to access this channel via an access key, you can define it " "here. Pay attention to not use an already used one." msgstr "" -#: src/Module/Settings/Channels.php:214 +#: src/Module/Settings/Channels.php:200 msgid "Select a circle or channel, that your channel should be based on." msgstr "" -#: src/Module/Settings/Channels.php:215 +#: src/Module/Settings/Channels.php:201 msgid "" "Comma separated list of tags. A post will be used when it contains any of " "the listed tags." msgstr "" -#: src/Module/Settings/Channels.php:216 +#: src/Module/Settings/Channels.php:202 msgid "" "Comma separated list of tags. If a post contain any of these tags, then it " "will not be part of nthis channel." msgstr "" -#: src/Module/Settings/Channels.php:217 +#: src/Module/Settings/Channels.php:203 msgid "" "Minimum post size. Leave empty for no minimum size. The size is calculated " "without links, attached posts, mentions or hashtags." msgstr "" -#: src/Module/Settings/Channels.php:218 +#: src/Module/Settings/Channels.php:204 msgid "" "Maximum post size. Leave empty for no maximum size. The size is calculated " "without links, attached posts, mentions or hashtags." msgstr "" -#: src/Module/Settings/Channels.php:219 +#: src/Module/Settings/Channels.php:205 #, php-format msgid "" "Search terms for the body, supports the \"boolean mode\" operators from " @@ -10396,576 +10390,589 @@ msgid "" "keywords: %s" msgstr "" -#: src/Module/Settings/Channels.php:220 +#: src/Module/Settings/Channels.php:206 msgid "Check to display images in the channel." msgstr "" -#: src/Module/Settings/Channels.php:221 +#: src/Module/Settings/Channels.php:207 msgid "Check to display videos in the channel." msgstr "" -#: src/Module/Settings/Channels.php:222 +#: src/Module/Settings/Channels.php:208 msgid "Check to display audio in the channel." msgstr "" -#: src/Module/Settings/Channels.php:227 +#: src/Module/Settings/Channels.php:213 msgid "Add new entry to the channel list" msgstr "" -#: src/Module/Settings/Channels.php:228 +#: src/Module/Settings/Channels.php:214 msgid "Add" msgstr "Aggiungi" -#: src/Module/Settings/Channels.php:230 +#: src/Module/Settings/Channels.php:216 msgid "Current Entries in the channel list" msgstr "" -#: src/Module/Settings/Channels.php:233 +#: src/Module/Settings/Channels.php:219 msgid "Delete entry from the channel list" msgstr "" -#: src/Module/Settings/Channels.php:234 +#: src/Module/Settings/Channels.php:220 msgid "Delete entry from the channel list?" msgstr "" -#: src/Module/Settings/Connectors.php:120 +#: src/Module/Settings/Connectors.php:108 msgid "Failed to connect with email account using the settings provided." msgstr "Impossibile collegarsi all'account email con i parametri forniti." -#: src/Module/Settings/Connectors.php:166 -#: src/Module/Settings/Connectors.php:167 +#: src/Module/Settings/Connectors.php:155 +#: src/Module/Settings/Connectors.php:156 msgid "Diaspora (Socialhome, Hubzilla)" msgstr "Diaspora (Socialhome, Hubzilla)" -#: src/Module/Settings/Connectors.php:166 -#: src/Module/Settings/Connectors.php:170 +#: src/Module/Settings/Connectors.php:155 #, php-format msgid "Built-in support for %s connectivity is enabled" msgstr "" -#: src/Module/Settings/Connectors.php:167 -#: src/Module/Settings/Connectors.php:169 +#: src/Module/Settings/Connectors.php:156 #, php-format msgid "Built-in support for %s connectivity is disabled" msgstr "" -#: src/Module/Settings/Connectors.php:169 -#: src/Module/Settings/Connectors.php:170 -msgid "OStatus (GNU Social)" -msgstr "OStatus (GNU Social)" - -#: src/Module/Settings/Connectors.php:182 +#: src/Module/Settings/Connectors.php:167 msgid "Email access is disabled on this site." msgstr "L'accesso email è disabilitato su questo sito." -#: src/Module/Settings/Connectors.php:197 -#: src/Module/Settings/Connectors.php:244 +#: src/Module/Settings/Connectors.php:182 +#: src/Module/Settings/Connectors.php:233 msgid "None" msgstr "Nessuna" -#: src/Module/Settings/Connectors.php:209 +#: src/Module/Settings/Connectors.php:186 +msgid "Default (Mastodon will display the title and a link to the post)" +msgstr "" + +#: src/Module/Settings/Connectors.php:187 +msgid "" +"Use the summary (Mastodon and some others will treat it as content warning)" +msgstr "" + +#: src/Module/Settings/Connectors.php:188 +msgid "Embed the title in the body" +msgstr "" + +#: src/Module/Settings/Connectors.php:199 msgid "General Social Media Settings" msgstr "Impostazioni Media Sociali" -#: src/Module/Settings/Connectors.php:212 +#: src/Module/Settings/Connectors.php:202 msgid "Followed content scope" msgstr "" -#: src/Module/Settings/Connectors.php:214 +#: src/Module/Settings/Connectors.php:204 msgid "" "By default, conversations in which your follows participated but didn't " "start will be shown in your timeline. You can turn this behavior off, or " "expand it to the conversations in which your follows liked a post." msgstr "" -#: src/Module/Settings/Connectors.php:216 +#: src/Module/Settings/Connectors.php:206 msgid "Only conversations my follows started" msgstr "" -#: src/Module/Settings/Connectors.php:217 +#: src/Module/Settings/Connectors.php:207 msgid "Conversations my follows started or commented on (default)" msgstr "" -#: src/Module/Settings/Connectors.php:218 +#: src/Module/Settings/Connectors.php:208 msgid "Any conversation my follows interacted with, including likes" msgstr "" -#: src/Module/Settings/Connectors.php:221 +#: src/Module/Settings/Connectors.php:211 msgid "Collapse sensitive posts" msgstr "" -#: src/Module/Settings/Connectors.php:221 +#: src/Module/Settings/Connectors.php:211 msgid "" "If a post is marked as \"sensitive\", it will be displayed in a collapsed " "state, if this option is enabled." msgstr "" -#: src/Module/Settings/Connectors.php:222 +#: src/Module/Settings/Connectors.php:212 msgid "Enable intelligent shortening" msgstr "Abilita accorciamento intelligente" -#: src/Module/Settings/Connectors.php:222 +#: src/Module/Settings/Connectors.php:212 msgid "" "Normally the system tries to find the best link to add to shortened posts. " "If disabled, every shortened post will always point to the original " "friendica post." msgstr "Normalmente il sistema tenta di trovare il collegamento migliore da aggiungere ad un messaggio accorciato. Se questa opzione è disabilitata, ogni messaggio accorciato conterrà sempre un collegamento al messaggio originale su Friendica." -#: src/Module/Settings/Connectors.php:223 +#: src/Module/Settings/Connectors.php:213 msgid "Enable simple text shortening" msgstr "Abilita accorciamento semplice del testo" -#: src/Module/Settings/Connectors.php:223 +#: src/Module/Settings/Connectors.php:213 msgid "" "Normally the system shortens posts at the next line feed. If this option is " "enabled then the system will shorten the text at the maximum character " "limit." msgstr "Normalmente il sistema accorcia i messaggi alla successiva interruzione di linea. Se questa opzione è abilitata il sistema accorcerà il testo al raggiungimento del limite massimo di caratteri." -#: src/Module/Settings/Connectors.php:224 +#: src/Module/Settings/Connectors.php:214 msgid "Attach the link title" msgstr "Allega il titolo del collegamento" -#: src/Module/Settings/Connectors.php:224 +#: src/Module/Settings/Connectors.php:214 msgid "" "When activated, the title of the attached link will be added as a title on " "posts to Diaspora. This is mostly helpful with \"remote-self\" contacts that" " share feed content." msgstr "Quando attivato, il titolo del collegamento allegato sarà aggiunto come titolo dei messaggi su Diaspora. Questo è più che altro utile con i contatti \"remoti di sè stessi\" che condividono il contenuto del flusso." -#: src/Module/Settings/Connectors.php:225 +#: src/Module/Settings/Connectors.php:215 msgid "API: Use spoiler field as title" msgstr "" -#: src/Module/Settings/Connectors.php:225 +#: src/Module/Settings/Connectors.php:215 msgid "" "When activated, the \"spoiler_text\" field in the API will be used for the " "title on standalone posts. When deactivated it will be used for spoiler " "text. For comments it will always be used for spoiler text." msgstr "" -#: src/Module/Settings/Connectors.php:226 +#: src/Module/Settings/Connectors.php:216 msgid "API: Automatically links at the end of the post as attached posts" msgstr "" -#: src/Module/Settings/Connectors.php:226 +#: src/Module/Settings/Connectors.php:216 msgid "" "When activated, added links at the end of the post react the same way as " "added links in the web interface." msgstr "" -#: src/Module/Settings/Connectors.php:227 +#: src/Module/Settings/Connectors.php:217 +msgid "Article Mode" +msgstr "" + +#: src/Module/Settings/Connectors.php:217 +msgid "" +"Controls how posts with titles are transmitted. Mastodon and its forks don't" +" display the content of these posts if the post is created in the correct " +"(default) way." +msgstr "" + +#: src/Module/Settings/Connectors.php:218 msgid "Your legacy ActivityPub/GNU Social account" msgstr "Il tuo vecchio account ActivityPub/GNU Social " -#: src/Module/Settings/Connectors.php:227 +#: src/Module/Settings/Connectors.php:218 msgid "" "If you enter your old account name from an ActivityPub based system or your " "GNU Social/Statusnet account name here (in the format user@domain.tld), your" " contacts will be added automatically. The field will be emptied when done." msgstr "Se inserisci il nome del tuo vecchio account su un sistema basato su ActivityPub o del tuo vecchio account GNU Social/Statusnet (nel formato utente@dominio.tld), i tuoi contatti verranno importati automaticamente. Il campo verrà svuotato una volta terminata l'operazione." -#: src/Module/Settings/Connectors.php:229 -msgid "Repair OStatus subscriptions" -msgstr "Ripara le iscrizioni OStatus" - -#: src/Module/Settings/Connectors.php:233 +#: src/Module/Settings/Connectors.php:222 msgid "Email/Mailbox Setup" msgstr "Impostazioni email" -#: src/Module/Settings/Connectors.php:234 +#: src/Module/Settings/Connectors.php:223 msgid "" "If you wish to communicate with email contacts using this service " "(optional), please specify how to connect to your mailbox." msgstr "Se vuoi comunicare con i contatti email usando questo servizio, specifica come collegarti alla tua casella di posta. (opzionale)" -#: src/Module/Settings/Connectors.php:235 +#: src/Module/Settings/Connectors.php:224 msgid "Last successful email check:" msgstr "Ultimo controllo email eseguito con successo:" -#: src/Module/Settings/Connectors.php:237 +#: src/Module/Settings/Connectors.php:226 msgid "IMAP server name:" msgstr "Nome server IMAP:" -#: src/Module/Settings/Connectors.php:238 +#: src/Module/Settings/Connectors.php:227 msgid "IMAP port:" msgstr "Porta IMAP:" -#: src/Module/Settings/Connectors.php:239 +#: src/Module/Settings/Connectors.php:228 msgid "Security:" msgstr "Sicurezza:" -#: src/Module/Settings/Connectors.php:240 +#: src/Module/Settings/Connectors.php:229 msgid "Email login name:" msgstr "Nome utente email:" -#: src/Module/Settings/Connectors.php:241 +#: src/Module/Settings/Connectors.php:230 msgid "Email password:" msgstr "Password email:" -#: src/Module/Settings/Connectors.php:242 +#: src/Module/Settings/Connectors.php:231 msgid "Reply-to address:" msgstr "Indirizzo di risposta:" -#: src/Module/Settings/Connectors.php:243 +#: src/Module/Settings/Connectors.php:232 msgid "Send public posts to all email contacts:" msgstr "Invia i messaggi pubblici ai contatti email:" -#: src/Module/Settings/Connectors.php:244 +#: src/Module/Settings/Connectors.php:233 msgid "Action after import:" msgstr "Azione dopo importazione:" -#: src/Module/Settings/Connectors.php:244 +#: src/Module/Settings/Connectors.php:233 msgid "Move to folder" msgstr "Sposta nella cartella" -#: src/Module/Settings/Connectors.php:245 +#: src/Module/Settings/Connectors.php:234 msgid "Move to folder:" msgstr "Sposta nella cartella:" -#: src/Module/Settings/Delegation.php:73 +#: src/Module/Settings/Delegation.php:59 msgid "Delegation successfully granted." msgstr "Delega concessa con successo." -#: src/Module/Settings/Delegation.php:75 +#: src/Module/Settings/Delegation.php:61 msgid "Parent user not found, unavailable or password doesn't match." msgstr "Utente principale non trovato, non disponibile o la password non corrisponde." -#: src/Module/Settings/Delegation.php:79 +#: src/Module/Settings/Delegation.php:65 msgid "Delegation successfully revoked." msgstr "Delega revocata con successo." -#: src/Module/Settings/Delegation.php:98 -#: src/Module/Settings/Delegation.php:120 +#: src/Module/Settings/Delegation.php:84 +#: src/Module/Settings/Delegation.php:106 msgid "" "Delegated administrators can view but not change delegation permissions." msgstr "Amministratori delegati possono vedere ma non cambiare i permessi di delega." -#: src/Module/Settings/Delegation.php:112 +#: src/Module/Settings/Delegation.php:98 msgid "Delegate user not found." msgstr "Utente delegato non trovato." -#: src/Module/Settings/Delegation.php:169 +#: src/Module/Settings/Delegation.php:155 msgid "No parent user" msgstr "Nessun utente principale" -#: src/Module/Settings/Delegation.php:180 -#: src/Module/Settings/Delegation.php:191 +#: src/Module/Settings/Delegation.php:166 +#: src/Module/Settings/Delegation.php:177 msgid "Parent User" msgstr "Utente Principale" -#: src/Module/Settings/Delegation.php:188 +#: src/Module/Settings/Delegation.php:174 msgid "Additional Accounts" msgstr "Account Aggiuntivi" -#: src/Module/Settings/Delegation.php:189 +#: src/Module/Settings/Delegation.php:175 msgid "" "Register additional accounts that are automatically connected to your " "existing account so you can manage them from this account." msgstr "Registra account aggiuntivi che saranno automaticamente connessi al tuo account esistente così potrai gestirli da questo account." -#: src/Module/Settings/Delegation.php:190 +#: src/Module/Settings/Delegation.php:176 msgid "Register an additional account" msgstr "Registra un account aggiuntivo" -#: src/Module/Settings/Delegation.php:192 +#: src/Module/Settings/Delegation.php:178 msgid "" "Parent users have total control about this account, including the account " "settings. Please double check whom you give this access." msgstr "Gli utenti principali hanno il controllo totale su questo account, comprese le impostazioni. Assicurati di controllare due volte a chi stai fornendo questo accesso." -#: src/Module/Settings/Delegation.php:195 +#: src/Module/Settings/Delegation.php:181 msgid "Delegates" msgstr "Delegati" -#: src/Module/Settings/Delegation.php:196 +#: src/Module/Settings/Delegation.php:182 msgid "" "Delegates are able to manage all aspects of this account/page except for " "basic account settings. Please do not delegate your personal account to " "anybody that you do not trust completely." msgstr "I Delegati sono in grado di gestire tutti gli aspetti di questa pagina, tranne per le impostazioni di base dell'account. Non delegare il tuo account personale a nessuno di cui non ti fidi ciecamente." -#: src/Module/Settings/Delegation.php:197 +#: src/Module/Settings/Delegation.php:183 msgid "Existing Page Delegates" msgstr "Delegati Pagina Esistenti" -#: src/Module/Settings/Delegation.php:198 +#: src/Module/Settings/Delegation.php:184 msgid "Potential Delegates" msgstr "Delegati Potenziali" -#: src/Module/Settings/Delegation.php:199 +#: src/Module/Settings/Delegation.php:185 msgid "No entries." msgstr "Nessuna voce." -#: src/Module/Settings/Display.php:183 +#: src/Module/Settings/Display.php:169 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:209 #, php-format msgid "%s - (Unsupported)" msgstr "%s - (Non supportato)" -#: src/Module/Settings/Display.php:260 +#: src/Module/Settings/Display.php:246 msgid "No preview" msgstr "" -#: src/Module/Settings/Display.php:261 +#: src/Module/Settings/Display.php:247 msgid "No image" msgstr "" -#: src/Module/Settings/Display.php:262 +#: src/Module/Settings/Display.php:248 msgid "Small Image" msgstr "" -#: src/Module/Settings/Display.php:263 +#: src/Module/Settings/Display.php:249 msgid "Large Image" msgstr "" -#: src/Module/Settings/Display.php:308 +#: src/Module/Settings/Display.php:294 msgid "Display Settings" msgstr "Impostazioni Grafiche" -#: src/Module/Settings/Display.php:310 +#: src/Module/Settings/Display.php:296 msgid "General Theme Settings" msgstr "Opzioni Generali Tema" -#: src/Module/Settings/Display.php:311 +#: src/Module/Settings/Display.php:297 msgid "Custom Theme Settings" msgstr "Opzioni Personalizzate Tema" -#: src/Module/Settings/Display.php:312 +#: src/Module/Settings/Display.php:298 msgid "Content Settings" msgstr "Opzioni Contenuto" -#: src/Module/Settings/Display.php:313 view/theme/duepuntozero/config.php:86 -#: view/theme/frio/config.php:151 view/theme/quattro/config.php:88 -#: view/theme/vier/config.php:136 +#: src/Module/Settings/Display.php:299 view/theme/duepuntozero/config.php:74 +#: view/theme/frio/config.php:139 view/theme/quattro/config.php:76 +#: view/theme/vier/config.php:124 msgid "Theme settings" msgstr "Impostazioni tema" -#: src/Module/Settings/Display.php:314 +#: src/Module/Settings/Display.php:300 msgid "Timelines" msgstr "" -#: src/Module/Settings/Display.php:321 +#: src/Module/Settings/Display.php:307 msgid "Display Theme:" msgstr "Tema:" -#: src/Module/Settings/Display.php:322 +#: src/Module/Settings/Display.php:308 msgid "Mobile Theme:" msgstr "Tema mobile:" -#: src/Module/Settings/Display.php:325 +#: src/Module/Settings/Display.php:311 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:311 src/Module/Settings/Display.php:312 msgid "Maximum of 100 items" msgstr "Massimo 100 voci" -#: src/Module/Settings/Display.php:326 +#: src/Module/Settings/Display.php:312 msgid "Number of items to display per page when viewed from mobile device:" msgstr "Numero di voci da visualizzare per pagina quando si utilizza un dispositivo mobile:" -#: src/Module/Settings/Display.php:327 +#: src/Module/Settings/Display.php:313 msgid "Update browser every xx seconds" msgstr "Aggiorna il browser ogni x secondi" -#: src/Module/Settings/Display.php:327 +#: src/Module/Settings/Display.php:313 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:314 msgid "Display emoticons" msgstr "" -#: src/Module/Settings/Display.php:328 +#: src/Module/Settings/Display.php:314 msgid "When enabled, emoticons are replaced with matching symbols." msgstr "" -#: src/Module/Settings/Display.php:329 +#: src/Module/Settings/Display.php:315 msgid "Infinite scroll" msgstr "Scroll infinito" -#: src/Module/Settings/Display.php:329 +#: src/Module/Settings/Display.php:315 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:316 msgid "Enable Smart Threading" msgstr "" -#: src/Module/Settings/Display.php:330 +#: src/Module/Settings/Display.php:316 msgid "Enable the automatic suppression of extraneous thread indentation." msgstr "" -#: src/Module/Settings/Display.php:331 +#: src/Module/Settings/Display.php:317 msgid "Display the Dislike feature" msgstr "" -#: src/Module/Settings/Display.php:331 +#: src/Module/Settings/Display.php:317 msgid "" "Display the Dislike button and dislike reactions on posts and comments." msgstr "" -#: src/Module/Settings/Display.php:332 +#: src/Module/Settings/Display.php:318 msgid "Display the resharer" msgstr "Mostra chi ha condiviso" -#: src/Module/Settings/Display.php:332 +#: src/Module/Settings/Display.php:318 msgid "Display the first resharer as icon and text on a reshared item." msgstr "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:319 msgid "Stay local" msgstr "Rimani in locale" -#: src/Module/Settings/Display.php:333 +#: src/Module/Settings/Display.php:319 msgid "Don't go to a remote system when following a contact link." msgstr "Non andare sul sistema remoto mentre segui il collegamento di un contatto." -#: src/Module/Settings/Display.php:334 +#: src/Module/Settings/Display.php:320 msgid "Show the post deletion checkbox" msgstr "" -#: src/Module/Settings/Display.php:334 +#: src/Module/Settings/Display.php:320 msgid "Display the checkbox for the post deletion on the network page." msgstr "" -#: src/Module/Settings/Display.php:335 +#: src/Module/Settings/Display.php:321 msgid "DIsplay the event list" msgstr "" -#: src/Module/Settings/Display.php:335 +#: src/Module/Settings/Display.php:321 msgid "Display the birthday reminder and event list on the network page." msgstr "" -#: src/Module/Settings/Display.php:336 +#: src/Module/Settings/Display.php:322 msgid "Link preview mode" msgstr "" -#: src/Module/Settings/Display.php:336 +#: src/Module/Settings/Display.php:322 msgid "Appearance of the link preview that is added to each post with a link." msgstr "" -#: src/Module/Settings/Display.php:341 +#: src/Module/Settings/Display.php:327 msgid "Bookmark" msgstr "" -#: src/Module/Settings/Display.php:343 +#: src/Module/Settings/Display.php:329 msgid "" "Enable timelines that you want to see in the channels widget. Bookmark " "timelines that you want to see in the top menu." msgstr "" -#: src/Module/Settings/Display.php:345 +#: src/Module/Settings/Display.php:331 msgid "Channel languages:" msgstr "" -#: src/Module/Settings/Display.php:345 +#: src/Module/Settings/Display.php:331 msgid "Select all languages that you want to see in your channels." msgstr "" -#: src/Module/Settings/Display.php:347 +#: src/Module/Settings/Display.php:333 msgid "Beginning of week:" msgstr "Inizio della settimana:" -#: src/Module/Settings/Display.php:348 +#: src/Module/Settings/Display.php:334 msgid "Default calendar view:" msgstr "" -#: src/Module/Settings/Features.php:73 +#: src/Module/Settings/Features.php:59 msgid "Additional Features" msgstr "Funzionalità aggiuntive" -#: src/Module/Settings/OAuth.php:71 +#: src/Module/Settings/OAuth.php:57 msgid "Connected Apps" msgstr "Applicazioni Collegate" -#: src/Module/Settings/OAuth.php:75 +#: src/Module/Settings/OAuth.php:61 msgid "Remove authorization" msgstr "Rimuovi l'autorizzazione" -#: src/Module/Settings/Profile/Index.php:116 +#: src/Module/Settings/Profile/Index.php:102 msgid "Display Name is required." msgstr "" -#: src/Module/Settings/Profile/Index.php:167 +#: src/Module/Settings/Profile/Index.php:156 msgid "Profile couldn't be updated." msgstr "Il Profilo non può essere aggiornato." -#: src/Module/Settings/Profile/Index.php:205 -#: src/Module/Settings/Profile/Index.php:226 +#: src/Module/Settings/Profile/Index.php:196 +#: src/Module/Settings/Profile/Index.php:217 msgid "Label:" msgstr "Etichetta:" -#: src/Module/Settings/Profile/Index.php:206 -#: src/Module/Settings/Profile/Index.php:227 +#: src/Module/Settings/Profile/Index.php:197 +#: src/Module/Settings/Profile/Index.php:218 msgid "Value:" msgstr "Valore:" -#: src/Module/Settings/Profile/Index.php:217 -#: src/Module/Settings/Profile/Index.php:238 +#: src/Module/Settings/Profile/Index.php:208 +#: src/Module/Settings/Profile/Index.php:229 msgid "Field Permissions" msgstr "Permessi del campo" -#: src/Module/Settings/Profile/Index.php:218 -#: src/Module/Settings/Profile/Index.php:239 +#: src/Module/Settings/Profile/Index.php:209 +#: src/Module/Settings/Profile/Index.php:230 msgid "(click to open/close)" msgstr "(clicca per aprire/chiudere)" -#: src/Module/Settings/Profile/Index.php:224 +#: src/Module/Settings/Profile/Index.php:215 msgid "Add a new profile field" msgstr "Aggiungi nuovo campo del profilo" -#: src/Module/Settings/Profile/Index.php:247 +#: src/Module/Settings/Profile/Index.php:238 msgid "" "The homepage is verified. A rel=\"me\" link back to your Friendica profile " "page was found on the homepage." msgstr "" -#: src/Module/Settings/Profile/Index.php:249 +#: src/Module/Settings/Profile/Index.php:240 #, php-format msgid "" "To verify your homepage, add a rel=\"me\" link to it, pointing to your " "profile URL (%s)." msgstr "" -#: src/Module/Settings/Profile/Index.php:255 +#: src/Module/Settings/Profile/Index.php:246 msgid "Profile Actions" msgstr "Azioni Profilo" -#: src/Module/Settings/Profile/Index.php:256 +#: src/Module/Settings/Profile/Index.php:247 msgid "Edit Profile Details" msgstr "Modifica i dettagli del profilo" -#: src/Module/Settings/Profile/Index.php:258 +#: src/Module/Settings/Profile/Index.php:249 msgid "Change Profile Photo" msgstr "Cambia la foto del profilo" -#: src/Module/Settings/Profile/Index.php:261 +#: src/Module/Settings/Profile/Index.php:252 msgid "Profile picture" msgstr "Immagine del profilo" -#: src/Module/Settings/Profile/Index.php:262 +#: src/Module/Settings/Profile/Index.php:253 msgid "Location" msgstr "Posizione" -#: src/Module/Settings/Profile/Index.php:263 src/Util/Temporal.php:97 -#: src/Util/Temporal.php:99 +#: src/Module/Settings/Profile/Index.php:254 src/Util/Temporal.php:83 +#: src/Util/Temporal.php:85 msgid "Miscellaneous" msgstr "Varie" -#: src/Module/Settings/Profile/Index.php:264 +#: src/Module/Settings/Profile/Index.php:255 msgid "Custom Profile Fields" msgstr "Campi Profilo Personalizzati" -#: src/Module/Settings/Profile/Index.php:265 src/Module/Welcome.php:58 +#: src/Module/Settings/Profile/Index.php:256 src/Module/Welcome.php:44 msgid "Upload Profile Photo" msgstr "Carica la foto del profilo" -#: src/Module/Settings/Profile/Index.php:266 +#: src/Module/Settings/Profile/Index.php:257 #, php-format msgid "" "

Custom fields appear on your profile page.

\n" @@ -10975,396 +10982,396 @@ msgid "" "\t\t\t\t

Non-public fields can only be seen by the selected Friendica contacts or the Friendica contacts in the selected circles.

" msgstr "" -#: src/Module/Settings/Profile/Index.php:286 +#: src/Module/Settings/Profile/Index.php:277 msgid "Street Address:" msgstr "Indirizzo (via/piazza):" -#: src/Module/Settings/Profile/Index.php:287 +#: src/Module/Settings/Profile/Index.php:278 msgid "Locality/City:" msgstr "Località:" -#: src/Module/Settings/Profile/Index.php:288 +#: src/Module/Settings/Profile/Index.php:279 msgid "Region/State:" msgstr "Regione/Stato:" -#: src/Module/Settings/Profile/Index.php:289 +#: src/Module/Settings/Profile/Index.php:280 msgid "Postal/Zip Code:" msgstr "CAP:" -#: src/Module/Settings/Profile/Index.php:290 +#: src/Module/Settings/Profile/Index.php:281 msgid "Country:" msgstr "Nazione:" -#: src/Module/Settings/Profile/Index.php:292 +#: src/Module/Settings/Profile/Index.php:283 msgid "XMPP (Jabber) address:" msgstr "Indirizzo XMPP (Jabber):" -#: src/Module/Settings/Profile/Index.php:292 +#: src/Module/Settings/Profile/Index.php:283 msgid "" "The XMPP address will be published so that people can follow you there." msgstr "" -#: src/Module/Settings/Profile/Index.php:293 +#: src/Module/Settings/Profile/Index.php:284 msgid "Matrix (Element) address:" msgstr "" -#: src/Module/Settings/Profile/Index.php:293 +#: src/Module/Settings/Profile/Index.php:284 msgid "" "The Matrix address will be published so that people can follow you there." msgstr "" -#: src/Module/Settings/Profile/Index.php:294 +#: src/Module/Settings/Profile/Index.php:285 msgid "Homepage URL:" msgstr "Homepage:" -#: src/Module/Settings/Profile/Index.php:295 +#: src/Module/Settings/Profile/Index.php:286 msgid "Public Keywords:" msgstr "Parole chiave visibili a tutti:" -#: src/Module/Settings/Profile/Index.php:295 +#: src/Module/Settings/Profile/Index.php:286 msgid "(Used for suggesting potential friends, can be seen by others)" msgstr "(E' utilizzato per suggerire potenziali amici, può essere visto da altri)" -#: src/Module/Settings/Profile/Index.php:296 +#: src/Module/Settings/Profile/Index.php:287 msgid "Private Keywords:" msgstr "Parole chiave private:" -#: src/Module/Settings/Profile/Index.php:296 +#: src/Module/Settings/Profile/Index.php:287 msgid "(Used for searching profiles, never shown to others)" 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:100 +#: src/Module/Settings/Profile/Photo/Crop.php:93 +#: src/Module/Settings/Profile/Photo/Crop.php:111 +#: src/Module/Settings/Profile/Photo/Crop.php:129 +#: src/Module/Settings/Profile/Photo/Index.php:86 #, php-format msgid "Image size reduction [%s] failed." msgstr "Il ridimensionamento dell'immagine [%s] è fallito." -#: src/Module/Settings/Profile/Photo/Crop.php:150 +#: src/Module/Settings/Profile/Photo/Crop.php:136 msgid "" "Shift-reload the page or clear browser cache if the new photo does not " "display immediately." msgstr "Ricarica la pagina con shift+F5 o cancella la cache del browser se la nuova foto non viene mostrata immediatamente." -#: src/Module/Settings/Profile/Photo/Crop.php:155 +#: src/Module/Settings/Profile/Photo/Crop.php:141 msgid "Unable to process image" msgstr "Impossibile elaborare l'immagine" -#: src/Module/Settings/Profile/Photo/Crop.php:174 +#: src/Module/Settings/Profile/Photo/Crop.php:160 msgid "Photo not found." msgstr "Foto non trovata." -#: src/Module/Settings/Profile/Photo/Crop.php:196 +#: src/Module/Settings/Profile/Photo/Crop.php:182 msgid "Profile picture successfully updated." msgstr "Immagine di profilo aggiornata con successo." -#: src/Module/Settings/Profile/Photo/Crop.php:222 -#: src/Module/Settings/Profile/Photo/Crop.php:226 +#: src/Module/Settings/Profile/Photo/Crop.php:208 +#: src/Module/Settings/Profile/Photo/Crop.php:212 msgid "Crop Image" msgstr "Ritaglia immagine" -#: src/Module/Settings/Profile/Photo/Crop.php:223 +#: src/Module/Settings/Profile/Photo/Crop.php:209 msgid "Please adjust the image cropping for optimum viewing." msgstr "Ritaglia l'immagine per una visualizzazione migliore." -#: src/Module/Settings/Profile/Photo/Crop.php:225 +#: src/Module/Settings/Profile/Photo/Crop.php:211 msgid "Use Image As Is" msgstr "Usa immagine così com'è" -#: src/Module/Settings/Profile/Photo/Index.php:46 +#: src/Module/Settings/Profile/Photo/Index.php:32 msgid "Missing uploaded image." msgstr "Immagine caricata mancante." -#: src/Module/Settings/Profile/Photo/Index.php:123 +#: src/Module/Settings/Profile/Photo/Index.php:109 msgid "Profile Picture Settings" msgstr "Impostazioni Immagine di Profilo" -#: src/Module/Settings/Profile/Photo/Index.php:124 +#: src/Module/Settings/Profile/Photo/Index.php:110 msgid "Current Profile Picture" msgstr "Immagine del profilo attuale" -#: src/Module/Settings/Profile/Photo/Index.php:125 +#: src/Module/Settings/Profile/Photo/Index.php:111 msgid "Upload Profile Picture" msgstr "Carica la foto del profilo" -#: src/Module/Settings/Profile/Photo/Index.php:126 +#: src/Module/Settings/Profile/Photo/Index.php:112 msgid "Upload Picture:" msgstr "Carica Foto:" -#: src/Module/Settings/Profile/Photo/Index.php:131 +#: src/Module/Settings/Profile/Photo/Index.php:117 msgid "or" msgstr "o" -#: src/Module/Settings/Profile/Photo/Index.php:133 +#: src/Module/Settings/Profile/Photo/Index.php:119 msgid "skip this step" msgstr "salta questo passaggio" -#: src/Module/Settings/Profile/Photo/Index.php:135 +#: src/Module/Settings/Profile/Photo/Index.php:121 msgid "select a photo from your photo albums" msgstr "seleziona una foto dai tuoi album" -#: src/Module/Settings/RemoveMe.php:76 +#: src/Module/Settings/RemoveMe.php:62 msgid "" "There was a validation error, please make sure you're logged in with the " "account you want to remove and try again." msgstr "" -#: src/Module/Settings/RemoveMe.php:76 +#: src/Module/Settings/RemoveMe.php:62 msgid "If this error persists, please contact your administrator." msgstr "" -#: src/Module/Settings/RemoveMe.php:90 -#: src/Navigation/Notifications/Repository/Notify.php:471 -#: src/Navigation/Notifications/Repository/Notify.php:492 +#: src/Module/Settings/RemoveMe.php:76 +#: src/Navigation/Notifications/Repository/Notify.php:457 +#: src/Navigation/Notifications/Repository/Notify.php:478 msgid "[Friendica System Notify]" msgstr "[Notifica di Sistema di Friendica]" -#: src/Module/Settings/RemoveMe.php:90 +#: src/Module/Settings/RemoveMe.php:76 msgid "User deleted their account" msgstr "L'utente ha cancellato il suo account" -#: src/Module/Settings/RemoveMe.php:91 +#: src/Module/Settings/RemoveMe.php:77 msgid "" "On your Friendica node an user deleted their account. Please ensure that " "their data is removed from the backups." msgstr "Sul tuo nodo Friendica un utente ha cancellato il suo account. Assicurati che i suoi dati siano rimossi dai backup." -#: src/Module/Settings/RemoveMe.php:92 +#: src/Module/Settings/RemoveMe.php:78 #, php-format msgid "The user id is %d" msgstr "L'id utente è %d" -#: src/Module/Settings/RemoveMe.php:105 +#: src/Module/Settings/RemoveMe.php:91 msgid "Your account has been successfully removed. Bye bye!" msgstr "" -#: src/Module/Settings/RemoveMe.php:130 +#: src/Module/Settings/RemoveMe.php:116 msgid "Remove My Account" msgstr "Rimuovi il mio account" -#: src/Module/Settings/RemoveMe.php:131 +#: src/Module/Settings/RemoveMe.php:117 msgid "" "This will completely remove your account. Once this has been done it is not " "recoverable." msgstr "Questo comando rimuoverà completamente il tuo account. Una volta rimosso non potrai più recuperarlo." -#: src/Module/Settings/RemoveMe.php:136 +#: src/Module/Settings/RemoveMe.php:122 msgid "Please enter your password for verification:" msgstr "Inserisci la tua password per verifica:" -#: src/Module/Settings/Server/Action.php:60 +#: src/Module/Settings/Server/Action.php:46 msgid "Do you want to ignore this server?" msgstr "" -#: src/Module/Settings/Server/Action.php:64 +#: src/Module/Settings/Server/Action.php:50 msgid "Do you want to unignore this server?" msgstr "" -#: src/Module/Settings/Server/Action.php:74 -#: src/Module/Settings/Server/Index.php:104 +#: src/Module/Settings/Server/Action.php:60 +#: src/Module/Settings/Server/Index.php:90 msgid "Remote server settings" msgstr "" -#: src/Module/Settings/Server/Action.php:77 +#: src/Module/Settings/Server/Action.php:63 msgid "Server URL" msgstr "" -#: src/Module/Settings/Server/Index.php:78 +#: src/Module/Settings/Server/Index.php:64 msgid "Settings saved" msgstr "" -#: src/Module/Settings/Server/Index.php:105 +#: src/Module/Settings/Server/Index.php:91 msgid "" "Here you can find all the remote servers you have taken individual " "moderation actions against. For a list of servers your node has blocked, " "please check out the Information page." msgstr "" -#: src/Module/Settings/Server/Index.php:110 +#: src/Module/Settings/Server/Index.php:96 msgid "Delete all your settings for the remote server" msgstr "" -#: src/Module/Settings/Server/Index.php:111 +#: src/Module/Settings/Server/Index.php:97 msgid "Save changes" msgstr "" -#: src/Module/Settings/TwoFactor/AppSpecific.php:69 -#: src/Module/Settings/TwoFactor/Recovery.php:67 -#: src/Module/Settings/TwoFactor/Trusted.php:70 -#: src/Module/Settings/TwoFactor/Verify.php:72 +#: src/Module/Settings/TwoFactor/AppSpecific.php:55 +#: src/Module/Settings/TwoFactor/Recovery.php:53 +#: src/Module/Settings/TwoFactor/Trusted.php:56 +#: src/Module/Settings/TwoFactor/Verify.php:58 msgid "Please enter your password to access this page." msgstr "Per favore inserisci la tua password per accedere a questa pagina." -#: src/Module/Settings/TwoFactor/AppSpecific.php:87 +#: src/Module/Settings/TwoFactor/AppSpecific.php:73 msgid "App-specific password generation failed: The description is empty." msgstr "Generazione della password specifica per l'app non riuscita: La descrizione è vuota." -#: src/Module/Settings/TwoFactor/AppSpecific.php:90 +#: src/Module/Settings/TwoFactor/AppSpecific.php:76 msgid "" "App-specific password generation failed: This description already exists." msgstr "Generazione della password specifica per l'app non riuscita: La descrizione esiste già." -#: src/Module/Settings/TwoFactor/AppSpecific.php:94 +#: src/Module/Settings/TwoFactor/AppSpecific.php:80 msgid "New app-specific password generated." msgstr "Nuova password specifica per app generata." -#: src/Module/Settings/TwoFactor/AppSpecific.php:100 +#: src/Module/Settings/TwoFactor/AppSpecific.php:86 msgid "App-specific passwords successfully revoked." msgstr "Password specifiche per le app revocate con successo." -#: src/Module/Settings/TwoFactor/AppSpecific.php:110 +#: src/Module/Settings/TwoFactor/AppSpecific.php:96 msgid "App-specific password successfully revoked." msgstr "Password specifica per l'app revocata con successo." -#: src/Module/Settings/TwoFactor/AppSpecific.php:131 +#: src/Module/Settings/TwoFactor/AppSpecific.php:117 msgid "Two-factor app-specific passwords" msgstr "Password specifiche per app a due fattori" -#: src/Module/Settings/TwoFactor/AppSpecific.php:133 +#: src/Module/Settings/TwoFactor/AppSpecific.php:119 msgid "" "

App-specific passwords are randomly generated passwords used instead your" " regular password to authenticate your account on third-party applications " "that don't support two-factor authentication.

" msgstr "

Password specifiche per le app sono generate casualmente e vengono usate al posto della tua password dell'account per autenticarti con applicazioni di terze parti che non supportano l'autenticazione a due fattori.

" -#: src/Module/Settings/TwoFactor/AppSpecific.php:134 +#: src/Module/Settings/TwoFactor/AppSpecific.php:120 msgid "" "Make sure to copy your new app-specific password now. You won’t be able to " "see it again!" msgstr "Assicurati di copiare la tua nuova password specifica per l'app ora. Non sarai in grado di vederla un'altra volta!" -#: src/Module/Settings/TwoFactor/AppSpecific.php:138 +#: src/Module/Settings/TwoFactor/AppSpecific.php:124 msgid "Last Used" msgstr "Ultimo Utilizzo" -#: src/Module/Settings/TwoFactor/AppSpecific.php:139 +#: src/Module/Settings/TwoFactor/AppSpecific.php:125 msgid "Revoke" msgstr "Revoca" -#: src/Module/Settings/TwoFactor/AppSpecific.php:140 +#: src/Module/Settings/TwoFactor/AppSpecific.php:126 msgid "Revoke All" msgstr "Revoca Tutti" -#: src/Module/Settings/TwoFactor/AppSpecific.php:143 +#: src/Module/Settings/TwoFactor/AppSpecific.php:129 msgid "" "When you generate a new app-specific password, you must use it right away, " "it will be shown to you once after you generate it." msgstr "Quando generi una nuova password specifica per l'app, devi utilizzarla immediatamente, ti sarà mostrata una volta generata." -#: src/Module/Settings/TwoFactor/AppSpecific.php:144 +#: src/Module/Settings/TwoFactor/AppSpecific.php:130 msgid "Generate new app-specific password" msgstr "Genera nuova password specifica per app" -#: src/Module/Settings/TwoFactor/AppSpecific.php:145 +#: src/Module/Settings/TwoFactor/AppSpecific.php:131 msgid "Friendiqa on my Fairphone 2..." msgstr "Friendiqa sul mio Fairphone 2..." -#: src/Module/Settings/TwoFactor/AppSpecific.php:146 +#: src/Module/Settings/TwoFactor/AppSpecific.php:132 msgid "Generate" msgstr "Genera" -#: src/Module/Settings/TwoFactor/Index.php:88 +#: src/Module/Settings/TwoFactor/Index.php:74 msgid "Two-factor authentication successfully disabled." msgstr "Autenticazione a due fattori disabilitata con successo." -#: src/Module/Settings/TwoFactor/Index.php:141 +#: src/Module/Settings/TwoFactor/Index.php:127 msgid "" "

Use an application on a mobile device to get two-factor authentication " "codes when prompted on login.

" msgstr "

Usa un'applicazione su un dispositivo mobile per generare codici di autenticazione a due fattori quando richiesto all'accesso.

" -#: src/Module/Settings/TwoFactor/Index.php:145 +#: src/Module/Settings/TwoFactor/Index.php:131 msgid "Authenticator app" msgstr "App di autenticazione" -#: src/Module/Settings/TwoFactor/Index.php:146 +#: src/Module/Settings/TwoFactor/Index.php:132 msgid "Configured" msgstr "Configurata" -#: src/Module/Settings/TwoFactor/Index.php:146 +#: src/Module/Settings/TwoFactor/Index.php:132 msgid "Not Configured" msgstr "Non Configurata" -#: src/Module/Settings/TwoFactor/Index.php:147 +#: src/Module/Settings/TwoFactor/Index.php:133 msgid "

You haven't finished configuring your authenticator app.

" msgstr "

Non hai terminato la configurazione della tua app di autenticazione.

" -#: src/Module/Settings/TwoFactor/Index.php:148 +#: src/Module/Settings/TwoFactor/Index.php:134 msgid "

Your authenticator app is correctly configured.

" msgstr "

La tua app di autenticazione è correttamente configurata.

" -#: src/Module/Settings/TwoFactor/Index.php:150 +#: src/Module/Settings/TwoFactor/Index.php:136 msgid "Recovery codes" msgstr "Codici di recupero" -#: src/Module/Settings/TwoFactor/Index.php:151 +#: src/Module/Settings/TwoFactor/Index.php:137 msgid "Remaining valid codes" msgstr "Codici validi rimanenti" -#: src/Module/Settings/TwoFactor/Index.php:153 +#: src/Module/Settings/TwoFactor/Index.php:139 msgid "" "

These one-use codes can replace an authenticator app code in case you " "have lost access to it.

" msgstr "

Questi codici monouso possono sostituire l'app di autenticazione nel caso avessi perso il suo accesso.

" -#: src/Module/Settings/TwoFactor/Index.php:155 +#: src/Module/Settings/TwoFactor/Index.php:141 msgid "App-specific passwords" msgstr "Password specifiche per app" -#: src/Module/Settings/TwoFactor/Index.php:156 +#: src/Module/Settings/TwoFactor/Index.php:142 msgid "Generated app-specific passwords" msgstr "Genera password specifiche per app" -#: src/Module/Settings/TwoFactor/Index.php:158 +#: src/Module/Settings/TwoFactor/Index.php:144 msgid "" "

These randomly generated passwords allow you to authenticate on apps not " "supporting two-factor authentication.

" msgstr "

Queste password generate casualmente ti consentono di autenticarti con app che non supportano l'autenticazione a due fattori.

" -#: src/Module/Settings/TwoFactor/Index.php:161 +#: src/Module/Settings/TwoFactor/Index.php:147 msgid "Current password:" msgstr "Password attuale:" -#: src/Module/Settings/TwoFactor/Index.php:161 +#: src/Module/Settings/TwoFactor/Index.php:147 msgid "" "You need to provide your current password to change two-factor " "authentication settings." msgstr "Devi inserire la tua password attuale per cambiare le impostazioni di autenticazione a due fattori." -#: src/Module/Settings/TwoFactor/Index.php:162 +#: src/Module/Settings/TwoFactor/Index.php:148 msgid "Enable two-factor authentication" msgstr "Abilita autenticazione a due fattori" -#: src/Module/Settings/TwoFactor/Index.php:163 +#: src/Module/Settings/TwoFactor/Index.php:149 msgid "Disable two-factor authentication" msgstr "Disabilita autenticazione a due fattori" -#: src/Module/Settings/TwoFactor/Index.php:164 +#: src/Module/Settings/TwoFactor/Index.php:150 msgid "Show recovery codes" msgstr "Mostra codici di recupero" -#: src/Module/Settings/TwoFactor/Index.php:165 +#: src/Module/Settings/TwoFactor/Index.php:151 msgid "Manage app-specific passwords" msgstr "Gestisci password specifiche per app" -#: src/Module/Settings/TwoFactor/Index.php:166 +#: src/Module/Settings/TwoFactor/Index.php:152 msgid "Manage trusted browsers" msgstr "Gestisci browser fidàti" -#: src/Module/Settings/TwoFactor/Index.php:167 +#: src/Module/Settings/TwoFactor/Index.php:153 msgid "Finish app configuration" msgstr "Completa configurazione dell'app" -#: src/Module/Settings/TwoFactor/Recovery.php:83 +#: src/Module/Settings/TwoFactor/Recovery.php:69 msgid "New recovery codes successfully generated." msgstr "Nuovi codici di recupero generati con successo." -#: src/Module/Settings/TwoFactor/Recovery.php:109 +#: src/Module/Settings/TwoFactor/Recovery.php:95 msgid "Two-factor recovery codes" msgstr "Codici di recupero a due fattori" -#: src/Module/Settings/TwoFactor/Recovery.php:111 +#: src/Module/Settings/TwoFactor/Recovery.php:97 msgid "" "

Recovery codes can be used to access your account in the event you lose " "access to your device and cannot receive two-factor authentication " @@ -11373,68 +11380,68 @@ msgid "" "account.

" msgstr "

I codici di recupero possono essere utilizzati per accedere al tuo account nel caso tu perda l'accesso al tuo dispositivo e non possa ricevere i codici di autenticazione a due fattori.

Salvali in un posto sicuro! Se dovessi perdere il tuo dispositivo e non hai i codici di recupero perderai l'accesso al tuo account.

" -#: src/Module/Settings/TwoFactor/Recovery.php:113 +#: src/Module/Settings/TwoFactor/Recovery.php:99 msgid "" "When you generate new recovery codes, you must copy the new codes. Your old " "codes won’t work anymore." msgstr "Quando generi nuovi codici di recupero, dovrai copiare i nuovi codici. I codici precedenti non funzioneranno più." -#: src/Module/Settings/TwoFactor/Recovery.php:114 +#: src/Module/Settings/TwoFactor/Recovery.php:100 msgid "Generate new recovery codes" msgstr "Genera nuovi codici di recupero" -#: src/Module/Settings/TwoFactor/Recovery.php:116 +#: src/Module/Settings/TwoFactor/Recovery.php:102 msgid "Next: Verification" msgstr "Successivo: Verifica" -#: src/Module/Settings/TwoFactor/Trusted.php:87 +#: src/Module/Settings/TwoFactor/Trusted.php:73 msgid "Trusted browsers successfully removed." msgstr "Browser fidàti rimossi con successo." -#: src/Module/Settings/TwoFactor/Trusted.php:97 +#: src/Module/Settings/TwoFactor/Trusted.php:83 msgid "Trusted browser successfully removed." msgstr "Browser fidato rimosso con successo." -#: src/Module/Settings/TwoFactor/Trusted.php:139 +#: src/Module/Settings/TwoFactor/Trusted.php:125 msgid "Two-factor Trusted Browsers" msgstr "Browser fidàti a due fattori" -#: src/Module/Settings/TwoFactor/Trusted.php:140 +#: src/Module/Settings/TwoFactor/Trusted.php:126 msgid "" "Trusted browsers are individual browsers you chose to skip two-factor " "authentication to access Friendica. Please use this feature sparingly, as it" " can negate the benefit of two-factor authentication." msgstr "Browser fidàti sono browser sui quali hai schelto di saltare l'autenticazione a due fattori per accedere a Friendica. Per favore utilizza questa funzionalità con parsimonia, visto che può annullare i benefici dell'autenticazione a due fattori." -#: src/Module/Settings/TwoFactor/Trusted.php:141 +#: src/Module/Settings/TwoFactor/Trusted.php:127 msgid "Device" msgstr "Dispositivo" -#: src/Module/Settings/TwoFactor/Trusted.php:142 +#: src/Module/Settings/TwoFactor/Trusted.php:128 msgid "OS" msgstr "SO" -#: src/Module/Settings/TwoFactor/Trusted.php:144 +#: src/Module/Settings/TwoFactor/Trusted.php:130 msgid "Trusted" msgstr "Fidato" -#: src/Module/Settings/TwoFactor/Trusted.php:145 +#: src/Module/Settings/TwoFactor/Trusted.php:131 msgid "Created At" msgstr "" -#: src/Module/Settings/TwoFactor/Trusted.php:146 +#: src/Module/Settings/TwoFactor/Trusted.php:132 msgid "Last Use" msgstr "Ultimo Utilizzo" -#: src/Module/Settings/TwoFactor/Trusted.php:148 +#: src/Module/Settings/TwoFactor/Trusted.php:134 msgid "Remove All" msgstr "Rimuovi Tutto" -#: src/Module/Settings/TwoFactor/Verify.php:94 +#: src/Module/Settings/TwoFactor/Verify.php:80 msgid "Two-factor authentication successfully activated." msgstr "Autenticazione a due fattori abilitata con successo." -#: src/Module/Settings/TwoFactor/Verify.php:128 +#: src/Module/Settings/TwoFactor/Verify.php:114 #, php-format msgid "" "

Or you can submit the authentication settings manually:

\n" @@ -11454,105 +11461,105 @@ msgid "" "" msgstr "

Oppure puoi inserire le impostazioni di autenticazione manualmente:

\n
\n\t
Soggetto
\n\t
%s
\n\t
Nome Account
\n\t
%s
\n\t
Chiave Segreta
\n\t
%s
\n\t
Tipo
\n\t
Basato sul tempo
\n\t
Numero di cifre
\n\t
6
\n\t
Algoritmo di crittografia
\n\t
SHA-1
\n
" -#: src/Module/Settings/TwoFactor/Verify.php:148 +#: src/Module/Settings/TwoFactor/Verify.php:134 msgid "Two-factor code verification" msgstr "Verifica codice a due fattori" -#: src/Module/Settings/TwoFactor/Verify.php:150 +#: src/Module/Settings/TwoFactor/Verify.php:136 msgid "" "

Please scan this QR Code with your authenticator app and submit the " "provided code.

" msgstr "

Per favore scansione questo Codice QR con la tua app di autenticazione e invia il codice fornito.

" -#: src/Module/Settings/TwoFactor/Verify.php:152 +#: src/Module/Settings/TwoFactor/Verify.php:138 #, php-format msgid "" "

Or you can open the following URL in your mobile device:

%s

" msgstr "

O puoi aprire il seguente indiririzzo sul tuo dispositivo mobile:

%s

" -#: src/Module/Settings/TwoFactor/Verify.php:159 +#: src/Module/Settings/TwoFactor/Verify.php:145 msgid "Verify code and enable two-factor authentication" msgstr "Verifica codice e abilita l'autenticazione a due fattori" -#: src/Module/Settings/UserExport.php:90 +#: src/Module/Settings/UserExport.php:76 msgid "Export account" msgstr "Esporta account" -#: src/Module/Settings/UserExport.php:90 +#: src/Module/Settings/UserExport.php:76 msgid "" "Export your account info and contacts. Use this to make a backup of your " "account and/or to move it to another server." msgstr "Esporta le informazioni del tuo account e dei contatti. Usa questa funzione per fare un backup del tuo account o per spostarlo in un altro server." -#: src/Module/Settings/UserExport.php:91 +#: src/Module/Settings/UserExport.php:77 msgid "Export all" msgstr "Esporta tutto" -#: src/Module/Settings/UserExport.php:91 +#: src/Module/Settings/UserExport.php:77 msgid "" "Export your account info, contacts and all your items as json. Could be a " "very big file, and could take a lot of time. Use this to make a full backup " "of your account (photos are not exported)" msgstr "Esporta le informazioni del tuo account, i tuoi contatti e tutti i tuoi elementi in json. Può diventare un file veramente molto grosso e metterci un sacco di tempo. Usa questa funzione per fare un backup completo del tuo account (le foto non sono esportate)" -#: src/Module/Settings/UserExport.php:92 +#: src/Module/Settings/UserExport.php:78 msgid "Export Contacts to CSV" msgstr "Esporta Contatti come CSV" -#: src/Module/Settings/UserExport.php:92 +#: src/Module/Settings/UserExport.php:78 msgid "" "Export the list of the accounts you are following as CSV file. Compatible to" " e.g. Mastodon." msgstr "Esporta la lista degli account che segui come file CSV. Compatibile per esempio con Mastodon." -#: src/Module/Special/DisplayNotFound.php:35 +#: src/Module/Special/DisplayNotFound.php:21 msgid "The top-level post isn't visible." msgstr "" -#: src/Module/Special/DisplayNotFound.php:36 +#: src/Module/Special/DisplayNotFound.php:22 msgid "The top-level post was deleted." msgstr "" -#: src/Module/Special/DisplayNotFound.php:37 +#: src/Module/Special/DisplayNotFound.php:23 msgid "" "This node has blocked the top-level author or the author of the shared post." msgstr "" -#: src/Module/Special/DisplayNotFound.php:38 +#: src/Module/Special/DisplayNotFound.php:24 msgid "" "You have ignored or blocked the top-level author or the author of the shared" " post." msgstr "" -#: src/Module/Special/DisplayNotFound.php:39 +#: src/Module/Special/DisplayNotFound.php:25 msgid "" "You have ignored the top-level author's server or the shared post author's " "server." msgstr "" -#: src/Module/Special/DisplayNotFound.php:45 +#: src/Module/Special/DisplayNotFound.php:31 msgid "Conversation Not Found" msgstr "" -#: src/Module/Special/DisplayNotFound.php:46 +#: src/Module/Special/DisplayNotFound.php:32 msgid "Unfortunately, the requested conversation isn't available to you." msgstr "" -#: src/Module/Special/DisplayNotFound.php:47 +#: src/Module/Special/DisplayNotFound.php:33 msgid "Possible reasons include:" msgstr "" -#: src/Module/Special/HTTPException.php:78 +#: src/Module/Special/HTTPException.php:64 msgid "Stack trace:" msgstr "Traccia dello stack:" -#: src/Module/Special/HTTPException.php:83 +#: src/Module/Special/HTTPException.php:69 #, php-format msgid "Exception thrown in %s:%d" msgstr "Eccezione lanciata in %s:%d" -#: src/Module/Tos.php:58 src/Module/Tos.php:107 +#: src/Module/Tos.php:44 src/Module/Tos.php:93 msgid "" "At the time of registration, and for providing communications between the " "user account and their contacts, the user has to provide a display name (pen" @@ -11565,14 +11572,14 @@ msgid "" "settings, it is not necessary for communication." msgstr "Al momento della registrazione, e per fornire le comunicazioni tra l'account dell'utente e i suoi contatti, l'utente deve fornire un nome da visualizzare (pseudonimo), un nome utente (soprannome) e un indirizzo email funzionante. I nomi saranno accessibili sulla pagina profilo dell'account da parte di qualsiasi visitatore, anche quando altri dettagli del profilo non sono mostrati. L'indirizzo email sarà usato solo per inviare notifiche riguardo l'interazione coi contatti, ma non sarà mostrato. L'inserimento dell'account nella rubrica degli utenti del nodo o nella rubrica globale è opzionale, può essere impostato nelle impostazioni dell'utente, e non è necessario ai fini delle comunicazioni." -#: src/Module/Tos.php:59 src/Module/Tos.php:108 +#: src/Module/Tos.php:45 src/Module/Tos.php:94 msgid "" "This data is required for communication and is passed on to the nodes of the" " communication partners and is stored there. Users can enter additional " "private data that may be transmitted to the communication partners accounts." msgstr "Queste informazioni sono richiesta per la comunicazione e sono inviate ai nodi che partecipano alla comunicazione dove sono salvati. Gli utenti possono inserire aggiuntive informazioni private che potrebbero essere trasmesse agli account che partecipano alla comunicazione." -#: src/Module/Tos.php:60 src/Module/Tos.php:109 +#: src/Module/Tos.php:46 src/Module/Tos.php:95 #, php-format msgid "" "At any point in time a logged in user can export their account data from the" @@ -11583,98 +11590,98 @@ msgid "" "from the nodes of the communication partners." msgstr "" -#: src/Module/Tos.php:63 src/Module/Tos.php:106 +#: src/Module/Tos.php:49 src/Module/Tos.php:92 msgid "Privacy Statement" msgstr "Note sulla Privacy" -#: src/Module/Tos.php:103 +#: src/Module/Tos.php:89 msgid "Rules" msgstr "" -#: src/Module/Update/Display.php:45 +#: src/Module/Update/Display.php:31 msgid "Parameter uri_id is missing." msgstr "" -#: src/Module/Update/Display.php:55 +#: src/Module/Update/Display.php:41 msgid "The requested item doesn't exist or has been deleted." msgstr "L'oggetto richiesto non esiste o è stato eliminato." -#: src/Module/User/Delegation.php:146 +#: src/Module/User/Delegation.php:132 #, php-format msgid "You are now logged in as %s" msgstr "" -#: src/Module/User/Delegation.php:185 +#: src/Module/User/Delegation.php:171 msgid "Switch between your accounts" msgstr "Passa da un account all'altro" -#: src/Module/User/Delegation.php:186 +#: src/Module/User/Delegation.php:172 msgid "Manage your accounts" msgstr "Gestisci i tuoi account" -#: src/Module/User/Delegation.php:187 +#: src/Module/User/Delegation.php:173 msgid "" "Toggle between different identities or community/group pages which share " "your account details or which you have been granted \"manage\" permissions" msgstr "Cambia tra differenti identità o pagine comunità/gruppi che condividono il tuo account o per cui hai i permessi di gestione" -#: src/Module/User/Delegation.php:188 +#: src/Module/User/Delegation.php:174 msgid "Select an identity to manage: " msgstr "Seleziona un'identità da gestire:" -#: src/Module/User/Import.php:104 +#: src/Module/User/Import.php:90 msgid "User imports on closed servers can only be done by an administrator." msgstr "L'importazione di utenti su server chiusi può essere effettuata solo da un amministratore." -#: src/Module/User/Import.php:120 +#: src/Module/User/Import.php:106 msgid "Move account" msgstr "Muovi account" -#: src/Module/User/Import.php:121 +#: src/Module/User/Import.php:107 msgid "You can import an account from another Friendica server." msgstr "Puoi importare un account da un altro server Friendica." -#: src/Module/User/Import.php:122 +#: src/Module/User/Import.php:108 msgid "" "You need to export your account from the old server and upload it here. We " "will recreate your old account here with all your contacts. We will try also" " to inform your friends that you moved here." msgstr "Devi esportare il tuo account dal vecchio server e caricarlo qui. Noi ricreeremo il tuo vecchio account qui, con tutti i tuoi contatti. Proveremo anche a informare i tuoi amici che ti sei spostato qui." -#: src/Module/User/Import.php:123 +#: src/Module/User/Import.php:109 msgid "" "This feature is experimental. We can't import contacts from the OStatus " "network (GNU Social/Statusnet) or from Diaspora" msgstr "Questa funzione è sperimentale. Non possiamo importare i contatti dalla rete OStatus (GNU Social/Statusnet) o da Diaspora" -#: src/Module/User/Import.php:124 +#: src/Module/User/Import.php:110 msgid "Account file" msgstr "File account" -#: src/Module/User/Import.php:124 +#: src/Module/User/Import.php:110 msgid "" "To export your account, go to \"Settings->Export your personal data\" and " "select \"Export account\"" msgstr "Per esportare il tuo account, vai su \"Impostazioni -> Esporta i tuoi dati personali\" e seleziona \"Esporta account\"" -#: src/Module/User/Import.php:218 +#: src/Module/User/Import.php:204 msgid "Error decoding account file" msgstr "Errore decodificando il file account" -#: src/Module/User/Import.php:223 +#: src/Module/User/Import.php:209 msgid "Error! No version data in file! This is not a Friendica account file?" msgstr "Errore! Nessuna informazione di versione nel file! Potrebbe non essere un file account di Friendica?" -#: src/Module/User/Import.php:231 +#: src/Module/User/Import.php:217 #, php-format msgid "User '%s' already exists on this server!" msgstr "L'utente '%s' esiste già su questo server!" -#: src/Module/User/Import.php:268 +#: src/Module/User/Import.php:254 msgid "User creation error" msgstr "Errore creando l'utente" -#: src/Module/User/Import.php:317 +#: src/Module/User/Import.php:303 #, php-format msgid "%d contact not imported" msgid_plural "%d contacts not imported" @@ -11682,23 +11689,23 @@ msgstr[0] "%d contatto non importato" msgstr[1] "%d contatti non importati" msgstr[2] "%d contatti non importati" -#: src/Module/User/Import.php:366 +#: src/Module/User/Import.php:352 msgid "User profile creation error" msgstr "Errore durante la creazione del profilo dell'utente" -#: src/Module/User/Import.php:417 +#: src/Module/User/Import.php:403 msgid "Done. You can now login with your username and password" msgstr "Fatto. Ora puoi entrare con il tuo nome utente e la tua password" -#: src/Module/Welcome.php:44 +#: src/Module/Welcome.php:30 msgid "Welcome to Friendica" msgstr "Benvenuto su Friendica" -#: src/Module/Welcome.php:45 +#: src/Module/Welcome.php:31 msgid "New Member Checklist" msgstr "Cose da fare per i Nuovi Utenti" -#: src/Module/Welcome.php:46 +#: src/Module/Welcome.php:32 msgid "" "We would like to offer some tips and links to help make your experience " "enjoyable. Click any item to visit the relevant page. A link to this page " @@ -11706,33 +11713,33 @@ msgid "" "registration and then will quietly disappear." msgstr "Vorremmo offrirti qualche trucco e dei collegamenti alla guida per aiutarti ad avere un'esperienza divertente. Clicca su un qualsiasi elemento per visitare la relativa pagina. Un collegamento a questa pagina sarà visibile nella tua home per due settimane dopo la tua registrazione." -#: src/Module/Welcome.php:48 +#: src/Module/Welcome.php:34 msgid "Getting Started" msgstr "Come Iniziare" -#: src/Module/Welcome.php:49 +#: src/Module/Welcome.php:35 msgid "Friendica Walk-Through" msgstr "Friendica Passo-Passo" -#: src/Module/Welcome.php:50 +#: src/Module/Welcome.php:36 msgid "" "On your Quick Start page - find a brief introduction to your " "profile and network tabs, make some new connections, and find some groups to" " join." msgstr "Sulla tua pagina Quick Start - veloce introduzione alla tua pagina profilo e alla pagina Rete, fai qualche nuova amicizia, e trova qualche gruppo a cui unirti." -#: src/Module/Welcome.php:53 +#: src/Module/Welcome.php:39 msgid "Go to Your Settings" msgstr "Vai alle tue Impostazioni" -#: src/Module/Welcome.php:54 +#: src/Module/Welcome.php:40 msgid "" "On your Settings page - change your initial password. Also make a " "note of your Identity Address. This looks just like an email address - and " "will be useful in making friends on the free social web." msgstr "Nella tua pagina Impostazioni - cambia la tua password iniziale. Prendi anche nota del tuo Indirizzo Identità. Assomiglia a un indirizzo email e sarà utile per stringere amicizie nel web sociale libero." -#: src/Module/Welcome.php:55 +#: src/Module/Welcome.php:41 msgid "" "Review the other settings, particularly the privacy settings. An unpublished" " directory listing is like having an unlisted phone number. In general, you " @@ -11740,77 +11747,77 @@ msgid "" "potential friends know exactly how to find you." msgstr "Guarda le altre impostazioni, in particolare le impostazioni della privacy. Un profilo non pubblicato è come un numero di telefono non in elenco. In genere, dovresti pubblicare il tuo profilo - a meno che tutti i tuoi amici e potenziali tali sappiano esattamente come trovarti." -#: src/Module/Welcome.php:59 +#: src/Module/Welcome.php:45 msgid "" "Upload a profile photo if you have not done so already. Studies have shown " "that people with real photos of themselves are ten times more likely to make" " friends than people who do not." msgstr "Carica una foto del profilo se non l'hai ancora fatto. Studi hanno mostrato che persone che hanno vere foto di se stessi hanno dieci volte più probabilità di fare amicizie rispetto alle persone che non ce l'hanno." -#: src/Module/Welcome.php:60 +#: src/Module/Welcome.php:46 msgid "Edit Your Profile" msgstr "Modifica il tuo Profilo" -#: src/Module/Welcome.php:61 +#: src/Module/Welcome.php:47 msgid "" "Edit your default profile to your liking. Review the " "settings for hiding your list of friends and hiding the profile from unknown" " visitors." msgstr "Modifica il tuo profilo predefinito a piacimento. Rivedi le impostazioni per nascondere la tua lista di amici e nascondere il profilo ai visitatori sconosciuti." -#: src/Module/Welcome.php:62 +#: src/Module/Welcome.php:48 msgid "Profile Keywords" msgstr "Parole chiave del profilo" -#: src/Module/Welcome.php:63 +#: src/Module/Welcome.php:49 msgid "" "Set some public keywords for your profile which describe your interests. We " "may be able to find other people with similar interests and suggest " "friendships." msgstr "Inserisci qualche parola chiave pubblica nel tuo profilo che descriva i tuoi interessi. Potremmo essere in grado di trovare altre persone con interessi similari e suggerirti delle amicizie." -#: src/Module/Welcome.php:65 +#: src/Module/Welcome.php:51 msgid "Connecting" msgstr "Collegarsi" -#: src/Module/Welcome.php:67 +#: src/Module/Welcome.php:53 msgid "Importing Emails" msgstr "Importare le Email" -#: src/Module/Welcome.php:68 +#: src/Module/Welcome.php:54 msgid "" "Enter your email access information on your Connector Settings page if you " "wish to import and interact with friends or mailing lists from your email " "INBOX" msgstr "Inserisci i tuoi dati di accesso all'email nella tua pagina Impostazioni Connettori se vuoi importare e interagire con amici o mailing list dalla tua casella di posta in arrivo" -#: src/Module/Welcome.php:69 +#: src/Module/Welcome.php:55 msgid "Go to Your Contacts Page" msgstr "Vai alla tua pagina Contatti" -#: src/Module/Welcome.php:70 +#: src/Module/Welcome.php:56 msgid "" "Your Contacts page is your gateway to managing friendships and connecting " "with friends on other networks. Typically you enter their address or site " "URL in the Add New Contact dialog." msgstr "La tua pagina Contatti è il mezzo per gestire le amicizie e collegarsi con amici su altre reti. Di solito, basta inserire l'indirizzo nel campo Aggiungi Nuovo Contatto" -#: src/Module/Welcome.php:71 +#: src/Module/Welcome.php:57 msgid "Go to Your Site's Directory" msgstr "Vai all'Elenco del tuo sito" -#: src/Module/Welcome.php:72 +#: src/Module/Welcome.php:58 msgid "" "The Directory page lets you find other people in this network or other " "federated sites. Look for a Connect or Follow link on " "their profile page. Provide your own Identity Address if requested." msgstr "La pagina Elenco ti permette di trovare altre persone in questa rete o in altri siti. Cerca un collegamento Connetti o Segui nella loro pagina del profilo. Inserisci il tuo Indirizzo Identità, se richiesto." -#: src/Module/Welcome.php:73 +#: src/Module/Welcome.php:59 msgid "Finding New People" msgstr "Trova nuove persone" -#: src/Module/Welcome.php:74 +#: src/Module/Welcome.php:60 msgid "" "On the side panel of the Contacts page are several tools to find new " "friends. We can match people by interest, look up people by name or " @@ -11819,412 +11826,408 @@ msgid "" "hours." msgstr "Nel pannello laterale nella pagina \"Contatti\", ci sono diversi strumenti per trovare nuovi amici. Possiamo confrontare le persone per interessi, cercare le persone per nome e fornire suggerimenti basati sui tuoi contatti esistenti. Su un sito nuovo, i suggerimenti sono di solito presenti dopo 24 ore." -#: src/Module/Welcome.php:77 +#: src/Module/Welcome.php:63 msgid "Add Your Contacts To Circle" msgstr "" -#: src/Module/Welcome.php:78 +#: src/Module/Welcome.php:64 msgid "" "Once you have made some friends, organize them into private conversation " "circles from the sidebar of your Contacts page and then you can interact " "with each circle privately on your Network page." msgstr "" -#: src/Module/Welcome.php:80 +#: src/Module/Welcome.php:66 msgid "Why Aren't My Posts Public?" msgstr "Perchè i miei messaggi non sono pubblici?" -#: src/Module/Welcome.php:81 +#: src/Module/Welcome.php:67 msgid "" "Friendica respects your privacy. By default, your posts will only show up to" " people you've added as friends. For more information, see the help section " "from the link above." msgstr "Friendica rispetta la tua privacy. Per impostazione predefinita, i tuoi messaggi sono mostrati solo alle persone che hai aggiunto come amici. Per maggiori informazioni guarda la sezione della guida dal collegamento qui sopra." -#: src/Module/Welcome.php:83 +#: src/Module/Welcome.php:69 msgid "Getting Help" msgstr "Ottenere Aiuto" -#: src/Module/Welcome.php:84 +#: src/Module/Welcome.php:70 msgid "Go to the Help Section" msgstr "Vai alla sezione Guida" -#: src/Module/Welcome.php:85 +#: src/Module/Welcome.php:71 msgid "" "Our help pages may be consulted for detail on other program" " features and resources." msgstr "Le nostre pagine della guida possono essere consultate per avere dettagli su altre caratteristiche del programma e altre risorse." -#: src/Navigation/Notifications/Factory/FormattedNavNotification.php:161 +#: src/Navigation/Notifications/Factory/FormattedNavNotification.php:147 msgid "{0} wants to follow you" msgstr "" -#: src/Navigation/Notifications/Factory/FormattedNavNotification.php:163 +#: src/Navigation/Notifications/Factory/FormattedNavNotification.php:149 msgid "{0} has started following you" msgstr "" -#: src/Navigation/Notifications/Factory/FormattedNotify.php:96 +#: src/Navigation/Notifications/Factory/FormattedNotify.php:82 #, php-format msgid "%s liked %s's post" msgstr "a %s è piaciuto il messaggio di %s" -#: src/Navigation/Notifications/Factory/FormattedNotify.php:108 +#: src/Navigation/Notifications/Factory/FormattedNotify.php:94 #, php-format msgid "%s disliked %s's post" msgstr "a %s non è piaciuto il messaggio di %s" -#: src/Navigation/Notifications/Factory/FormattedNotify.php:120 +#: src/Navigation/Notifications/Factory/FormattedNotify.php:106 #, php-format msgid "%s is attending %s's event" msgstr "%s partecipa all'evento di %s" -#: src/Navigation/Notifications/Factory/FormattedNotify.php:132 +#: src/Navigation/Notifications/Factory/FormattedNotify.php:118 #, php-format msgid "%s is not attending %s's event" msgstr "%s non partecipa all'evento di %s" -#: src/Navigation/Notifications/Factory/FormattedNotify.php:144 +#: src/Navigation/Notifications/Factory/FormattedNotify.php:130 #, php-format msgid "%s may attending %s's event" msgstr "%s potrebbe partecipare all'evento di %s" -#: src/Navigation/Notifications/Factory/FormattedNotify.php:174 +#: src/Navigation/Notifications/Factory/FormattedNotify.php:160 #, php-format msgid "%s is now friends with %s" msgstr "%s è ora amico di %s" -#: src/Navigation/Notifications/Factory/FormattedNotify.php:341 -#: src/Navigation/Notifications/Factory/FormattedNotify.php:379 +#: src/Navigation/Notifications/Factory/FormattedNotify.php:327 +#: src/Navigation/Notifications/Factory/FormattedNotify.php:365 #, php-format msgid "%s commented on %s's post" msgstr "%s ha commentato il messaggio di %s" -#: src/Navigation/Notifications/Factory/FormattedNotify.php:378 +#: src/Navigation/Notifications/Factory/FormattedNotify.php:364 #, php-format msgid "%s created a new post" msgstr "%s a creato un nuovo messaggio" -#: src/Navigation/Notifications/Factory/Introduction.php:132 +#: src/Navigation/Notifications/Factory/Introduction.php:118 msgid "Friend Suggestion" msgstr "Amico suggerito" -#: src/Navigation/Notifications/Factory/Introduction.php:158 +#: src/Navigation/Notifications/Factory/Introduction.php:144 msgid "Friend/Connect Request" msgstr "Richiesta amicizia/connessione" -#: src/Navigation/Notifications/Factory/Introduction.php:158 -msgid "New Follower" -msgstr "Qualcuno inizia a seguirti" - -#: src/Navigation/Notifications/Factory/Notification.php:134 +#: src/Navigation/Notifications/Factory/Notification.php:120 #, php-format msgid "%1$s wants to follow you" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:136 +#: src/Navigation/Notifications/Factory/Notification.php:122 #, php-format msgid "%1$s has started following you" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:208 +#: src/Navigation/Notifications/Factory/Notification.php:194 #, php-format msgid "%1$s liked your comment on %2$s" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:211 +#: src/Navigation/Notifications/Factory/Notification.php:197 #, php-format msgid "%1$s liked your post %2$s" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:218 +#: src/Navigation/Notifications/Factory/Notification.php:204 #, php-format msgid "%1$s disliked your comment on %2$s" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:221 +#: src/Navigation/Notifications/Factory/Notification.php:207 #, php-format msgid "%1$s disliked your post %2$s" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:228 +#: src/Navigation/Notifications/Factory/Notification.php:214 #, php-format msgid "%1$s shared your comment %2$s" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:231 -#: src/Navigation/Notifications/Factory/Notification.php:316 +#: src/Navigation/Notifications/Factory/Notification.php:217 +#: src/Navigation/Notifications/Factory/Notification.php:302 #, php-format msgid "%1$s shared your post %2$s" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:235 -#: src/Navigation/Notifications/Factory/Notification.php:305 +#: src/Navigation/Notifications/Factory/Notification.php:221 +#: src/Navigation/Notifications/Factory/Notification.php:291 #, php-format msgid "%1$s shared the post %2$s from %3$s" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:237 -#: src/Navigation/Notifications/Factory/Notification.php:307 +#: src/Navigation/Notifications/Factory/Notification.php:223 +#: src/Navigation/Notifications/Factory/Notification.php:293 #, php-format msgid "%1$s shared a post from %3$s" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:239 -#: src/Navigation/Notifications/Factory/Notification.php:309 +#: src/Navigation/Notifications/Factory/Notification.php:225 +#: src/Navigation/Notifications/Factory/Notification.php:295 #, php-format msgid "%1$s shared the post %2$s" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:241 -#: src/Navigation/Notifications/Factory/Notification.php:311 +#: src/Navigation/Notifications/Factory/Notification.php:227 +#: src/Navigation/Notifications/Factory/Notification.php:297 #, php-format msgid "%1$s shared a post" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:249 +#: src/Navigation/Notifications/Factory/Notification.php:235 #, php-format msgid "%1$s wants to attend your event %2$s" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:256 +#: src/Navigation/Notifications/Factory/Notification.php:242 #, php-format msgid "%1$s does not want to attend your event %2$s" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:263 +#: src/Navigation/Notifications/Factory/Notification.php:249 #, php-format msgid "%1$s maybe wants to attend your event %2$s" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:270 +#: src/Navigation/Notifications/Factory/Notification.php:256 #, php-format msgid "%1$s tagged you on %2$s" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:274 +#: src/Navigation/Notifications/Factory/Notification.php:260 #, php-format msgid "%1$s replied to you on %2$s" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:278 +#: src/Navigation/Notifications/Factory/Notification.php:264 #, php-format msgid "%1$s commented in your thread %2$s" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:282 +#: src/Navigation/Notifications/Factory/Notification.php:268 #, php-format msgid "%1$s commented on your comment %2$s" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:289 +#: src/Navigation/Notifications/Factory/Notification.php:275 #, php-format msgid "%1$s commented in their thread %2$s" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:291 +#: src/Navigation/Notifications/Factory/Notification.php:277 #, php-format msgid "%1$s commented in their thread" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:293 +#: src/Navigation/Notifications/Factory/Notification.php:279 #, php-format msgid "%1$s commented in the thread %2$s from %3$s" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:295 +#: src/Navigation/Notifications/Factory/Notification.php:281 #, php-format msgid "%1$s commented in the thread from %3$s" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:300 +#: src/Navigation/Notifications/Factory/Notification.php:286 #, php-format msgid "%1$s commented on your thread %2$s" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:225 -#: src/Navigation/Notifications/Repository/Notify.php:754 +#: src/Navigation/Notifications/Repository/Notify.php:211 +#: src/Navigation/Notifications/Repository/Notify.php:740 msgid "[Friendica:Notify]" msgstr "[Friendica:Notifica]" -#: src/Navigation/Notifications/Repository/Notify.php:293 +#: src/Navigation/Notifications/Repository/Notify.php:279 #, php-format msgid "%s New mail received at %s" msgstr "%s Nuova mail ricevuta su %s" -#: src/Navigation/Notifications/Repository/Notify.php:295 +#: src/Navigation/Notifications/Repository/Notify.php:281 #, php-format msgid "%1$s sent you a new private message at %2$s." msgstr "%1$s ti ha inviato un nuovo messaggio privato su %2$s." -#: src/Navigation/Notifications/Repository/Notify.php:296 +#: src/Navigation/Notifications/Repository/Notify.php:282 msgid "a private message" msgstr "un messaggio privato" -#: src/Navigation/Notifications/Repository/Notify.php:296 +#: src/Navigation/Notifications/Repository/Notify.php:282 #, php-format msgid "%1$s sent you %2$s." msgstr "%1$s ti ha inviato %2$s" -#: src/Navigation/Notifications/Repository/Notify.php:298 +#: src/Navigation/Notifications/Repository/Notify.php:284 #, php-format msgid "Please visit %s to view and/or reply to your private messages." msgstr "Visita %s per vedere e/o rispondere ai tuoi messaggi privati." -#: src/Navigation/Notifications/Repository/Notify.php:328 +#: src/Navigation/Notifications/Repository/Notify.php:314 #, php-format msgid "%1$s commented on %2$s's %3$s %4$s" msgstr "%1$s ha commentato il %3$s di %2$s %4$s" -#: src/Navigation/Notifications/Repository/Notify.php:333 +#: src/Navigation/Notifications/Repository/Notify.php:319 #, php-format msgid "%1$s commented on your %2$s %3$s" msgstr "%1$s ha commentato il tuo %2$s %3$s" -#: src/Navigation/Notifications/Repository/Notify.php:337 +#: src/Navigation/Notifications/Repository/Notify.php:323 #, php-format msgid "%1$s commented on their %2$s %3$s" msgstr "%1$s ha commentato il suo %2$s %3$s" -#: src/Navigation/Notifications/Repository/Notify.php:341 -#: src/Navigation/Notifications/Repository/Notify.php:788 +#: src/Navigation/Notifications/Repository/Notify.php:327 +#: src/Navigation/Notifications/Repository/Notify.php:774 #, php-format msgid "%1$s Comment to conversation #%2$d by %3$s" msgstr "%1$s Commento alla conversazione #%2$d di %3$s" -#: src/Navigation/Notifications/Repository/Notify.php:343 +#: src/Navigation/Notifications/Repository/Notify.php:329 #, php-format msgid "%s commented on an item/conversation you have been following." msgstr "%s ha commentato un elemento che stavi seguendo." -#: src/Navigation/Notifications/Repository/Notify.php:347 -#: src/Navigation/Notifications/Repository/Notify.php:362 -#: src/Navigation/Notifications/Repository/Notify.php:814 +#: src/Navigation/Notifications/Repository/Notify.php:333 +#: src/Navigation/Notifications/Repository/Notify.php:348 +#: src/Navigation/Notifications/Repository/Notify.php:800 #, php-format msgid "Please visit %s to view and/or reply to the conversation." msgstr "Visita %s per vedere e/o commentare la conversazione" -#: src/Navigation/Notifications/Repository/Notify.php:354 +#: src/Navigation/Notifications/Repository/Notify.php:340 #, php-format msgid "%s %s posted to your profile wall" msgstr "%s %s ha scritto sulla bacheca del tuo profilo" -#: src/Navigation/Notifications/Repository/Notify.php:356 +#: src/Navigation/Notifications/Repository/Notify.php:342 #, php-format msgid "%1$s posted to your profile wall at %2$s" msgstr "%1$s ha scritto sulla tua bacheca su %2$s" -#: src/Navigation/Notifications/Repository/Notify.php:357 +#: src/Navigation/Notifications/Repository/Notify.php:343 #, php-format msgid "%1$s posted to [url=%2$s]your wall[/url]" msgstr "%1$s ha inviato un messaggio sulla [url=%2$s]tua bacheca[/url]" -#: src/Navigation/Notifications/Repository/Notify.php:370 +#: src/Navigation/Notifications/Repository/Notify.php:356 #, php-format msgid "%s Introduction received" msgstr "%s Introduzione ricevuta" -#: src/Navigation/Notifications/Repository/Notify.php:372 +#: src/Navigation/Notifications/Repository/Notify.php:358 #, php-format msgid "You've received an introduction from '%1$s' at %2$s" msgstr "Hai ricevuto un'introduzione da '%1$s' su %2$s" -#: src/Navigation/Notifications/Repository/Notify.php:373 +#: src/Navigation/Notifications/Repository/Notify.php:359 #, php-format msgid "You've received [url=%1$s]an introduction[/url] from %2$s." msgstr "Hai ricevuto [url=%1$s]un'introduzione[/url] da %2$s." -#: src/Navigation/Notifications/Repository/Notify.php:378 -#: src/Navigation/Notifications/Repository/Notify.php:424 +#: src/Navigation/Notifications/Repository/Notify.php:364 +#: src/Navigation/Notifications/Repository/Notify.php:410 #, php-format msgid "You may visit their profile at %s" msgstr "Puoi visitare il suo profilo presso %s" -#: src/Navigation/Notifications/Repository/Notify.php:380 +#: src/Navigation/Notifications/Repository/Notify.php:366 #, php-format msgid "Please visit %s to approve or reject the introduction." msgstr "Visita %s per approvare o rifiutare la presentazione." -#: src/Navigation/Notifications/Repository/Notify.php:387 +#: src/Navigation/Notifications/Repository/Notify.php:373 #, php-format msgid "%s A new person is sharing with you" msgstr "%s Una nuova persona sta condividendo con te" -#: src/Navigation/Notifications/Repository/Notify.php:389 -#: src/Navigation/Notifications/Repository/Notify.php:390 +#: src/Navigation/Notifications/Repository/Notify.php:375 +#: src/Navigation/Notifications/Repository/Notify.php:376 #, php-format msgid "%1$s is sharing with you at %2$s" msgstr "%1$s sta condividendo con te su %2$s" -#: src/Navigation/Notifications/Repository/Notify.php:397 +#: src/Navigation/Notifications/Repository/Notify.php:383 #, php-format msgid "%s You have a new follower" msgstr "%s Hai un nuovo seguace" -#: src/Navigation/Notifications/Repository/Notify.php:399 -#: src/Navigation/Notifications/Repository/Notify.php:400 +#: src/Navigation/Notifications/Repository/Notify.php:385 +#: src/Navigation/Notifications/Repository/Notify.php:386 #, php-format msgid "You have a new follower at %2$s : %1$s" msgstr "Un nuovo utente ha iniziato a seguirti su %2$s : %1$s" -#: src/Navigation/Notifications/Repository/Notify.php:413 +#: src/Navigation/Notifications/Repository/Notify.php:399 #, php-format msgid "%s Friend suggestion received" msgstr "%s Suggerimento di amicizia ricevuto" -#: src/Navigation/Notifications/Repository/Notify.php:415 +#: src/Navigation/Notifications/Repository/Notify.php:401 #, php-format msgid "You've received a friend suggestion from '%1$s' at %2$s" msgstr "Hai ricevuto un suggerimento di amicizia da '%1$s' su %2$s" -#: src/Navigation/Notifications/Repository/Notify.php:416 +#: src/Navigation/Notifications/Repository/Notify.php:402 #, php-format msgid "" "You've received [url=%1$s]a friend suggestion[/url] for %2$s from %3$s." msgstr "Hai ricevuto [url=%1$s]un suggerimento di amicizia[/url] per %2$s su %3$s" -#: src/Navigation/Notifications/Repository/Notify.php:422 +#: src/Navigation/Notifications/Repository/Notify.php:408 msgid "Name:" msgstr "Nome:" -#: src/Navigation/Notifications/Repository/Notify.php:423 +#: src/Navigation/Notifications/Repository/Notify.php:409 msgid "Photo:" msgstr "Foto:" -#: src/Navigation/Notifications/Repository/Notify.php:426 +#: src/Navigation/Notifications/Repository/Notify.php:412 #, php-format msgid "Please visit %s to approve or reject the suggestion." msgstr "Visita %s per approvare o rifiutare il suggerimento." -#: src/Navigation/Notifications/Repository/Notify.php:434 -#: src/Navigation/Notifications/Repository/Notify.php:449 +#: src/Navigation/Notifications/Repository/Notify.php:420 +#: src/Navigation/Notifications/Repository/Notify.php:435 #, php-format msgid "%s Connection accepted" msgstr "%s Connessione accettata" -#: src/Navigation/Notifications/Repository/Notify.php:436 -#: src/Navigation/Notifications/Repository/Notify.php:451 +#: src/Navigation/Notifications/Repository/Notify.php:422 +#: src/Navigation/Notifications/Repository/Notify.php:437 #, php-format msgid "'%1$s' has accepted your connection request at %2$s" msgstr "'%1$s' ha accettato la tua richiesta di connessione su %2$s" -#: src/Navigation/Notifications/Repository/Notify.php:437 -#: src/Navigation/Notifications/Repository/Notify.php:452 +#: src/Navigation/Notifications/Repository/Notify.php:423 +#: src/Navigation/Notifications/Repository/Notify.php:438 #, php-format msgid "%2$s has accepted your [url=%1$s]connection request[/url]." msgstr "%2$s ha accettato la tua [url=%1$s]richiesta di connessione[/url]" -#: src/Navigation/Notifications/Repository/Notify.php:442 +#: src/Navigation/Notifications/Repository/Notify.php:428 msgid "" "You are now mutual friends and may exchange status updates, photos, and " "email without restriction." msgstr "Ora siete amici reciproci e potete scambiarvi aggiornamenti di stato, foto e messaggi privati senza restrizioni." -#: src/Navigation/Notifications/Repository/Notify.php:444 +#: src/Navigation/Notifications/Repository/Notify.php:430 #, php-format msgid "Please visit %s if you wish to make any changes to this relationship." msgstr "Visita %s se vuoi modificare questa relazione." -#: src/Navigation/Notifications/Repository/Notify.php:457 +#: src/Navigation/Notifications/Repository/Notify.php:443 #, php-format msgid "" "'%1$s' has chosen to accept you a fan, which restricts some forms of " @@ -12233,34 +12236,34 @@ msgid "" "automatically." msgstr "'%1$s' ha scelto di accettarti come \"fan\", il che limita alcune forme di comunicazione, come i messaggi privati, e alcune possibilità di interazione col profilo. Se è una pagina di una comunità o di una celebrità, queste impostazioni sono state applicate automaticamente." -#: src/Navigation/Notifications/Repository/Notify.php:459 +#: src/Navigation/Notifications/Repository/Notify.php:445 #, php-format msgid "" "'%1$s' may choose to extend this into a two-way or more permissive " "relationship in the future." msgstr "'%1$s' può scegliere di estendere questa relazione in una relazione più permissiva in futuro." -#: src/Navigation/Notifications/Repository/Notify.php:461 +#: src/Navigation/Notifications/Repository/Notify.php:447 #, php-format msgid "Please visit %s if you wish to make any changes to this relationship." msgstr "Visita %s se desideri modificare questo collegamento." -#: src/Navigation/Notifications/Repository/Notify.php:471 +#: src/Navigation/Notifications/Repository/Notify.php:457 msgid "registration request" msgstr "richiesta di registrazione" -#: src/Navigation/Notifications/Repository/Notify.php:473 +#: src/Navigation/Notifications/Repository/Notify.php:459 #, php-format msgid "You've received a registration request from '%1$s' at %2$s" msgstr "Hai ricevuto una richiesta di registrazione da '%1$s' su %2$s" -#: src/Navigation/Notifications/Repository/Notify.php:474 +#: src/Navigation/Notifications/Repository/Notify.php:460 #, php-format msgid "You've received a [url=%1$s]registration request[/url] from %2$s." msgstr "Hai ricevuto una [url=%1$s]richiesta di registrazione[/url] da %2$s." -#: src/Navigation/Notifications/Repository/Notify.php:479 -#: src/Navigation/Notifications/Repository/Notify.php:500 +#: src/Navigation/Notifications/Repository/Notify.php:465 +#: src/Navigation/Notifications/Repository/Notify.php:486 #, php-format msgid "" "Display Name:\t%s\n" @@ -12268,288 +12271,288 @@ msgid "" "Login Name:\t%s (%s)" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:485 +#: src/Navigation/Notifications/Repository/Notify.php:471 #, php-format msgid "Please visit %s to approve or reject the request." msgstr "Visita %s per approvare o rifiutare la richiesta." -#: src/Navigation/Notifications/Repository/Notify.php:492 +#: src/Navigation/Notifications/Repository/Notify.php:478 msgid "new registration" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:494 +#: src/Navigation/Notifications/Repository/Notify.php:480 #, php-format msgid "You've received a new registration from '%1$s' at %2$s" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:495 +#: src/Navigation/Notifications/Repository/Notify.php:481 #, php-format msgid "You've received a [url=%1$s]new registration[/url] from %2$s." msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:506 +#: src/Navigation/Notifications/Repository/Notify.php:492 #, php-format msgid "Please visit %s to have a look at the new registration." msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:782 +#: src/Navigation/Notifications/Repository/Notify.php:768 #, php-format msgid "%s %s tagged you" msgstr "%s %s ti ha taggato" -#: src/Navigation/Notifications/Repository/Notify.php:785 +#: src/Navigation/Notifications/Repository/Notify.php:771 #, php-format msgid "%s %s shared a new post" msgstr "%s %s ha condiviso un nuovo messaggio" -#: src/Navigation/Notifications/Repository/Notify.php:793 +#: src/Navigation/Notifications/Repository/Notify.php:779 #, php-format msgid "%1$s %2$s liked your post #%3$d" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:796 +#: src/Navigation/Notifications/Repository/Notify.php:782 #, php-format msgid "%1$s %2$s liked your comment on #%3$d" msgstr "" -#: src/Object/EMail/ItemCCEMail.php:42 +#: src/Object/EMail/ItemCCEMail.php:28 #, php-format msgid "" "This message was sent to you by %s, a member of the Friendica social " "network." msgstr "Questo messaggio ti è stato inviato da %s, un membro del social network Friendica." -#: src/Object/EMail/ItemCCEMail.php:44 +#: src/Object/EMail/ItemCCEMail.php:30 #, php-format msgid "You may visit them online at %s" msgstr "Puoi visitarli online su %s" -#: src/Object/EMail/ItemCCEMail.php:45 +#: src/Object/EMail/ItemCCEMail.php:31 msgid "" "Please contact the sender by replying to this post if you do not wish to " "receive these messages." msgstr "Contatta il mittente rispondendo a questo messaggio se non vuoi ricevere questi messaggi." -#: src/Object/EMail/ItemCCEMail.php:49 +#: src/Object/EMail/ItemCCEMail.php:35 #, php-format msgid "%s posted an update." msgstr "%s ha inviato un aggiornamento." -#: src/Object/Post.php:138 +#: src/Object/Post.php:124 msgid "Private Message" msgstr "Messaggio privato" -#: src/Object/Post.php:142 +#: src/Object/Post.php:128 msgid "Public Message" msgstr "" -#: src/Object/Post.php:146 +#: src/Object/Post.php:132 msgid "Unlisted Message" msgstr "" -#: src/Object/Post.php:182 +#: src/Object/Post.php:168 msgid "This entry was edited" msgstr "Questa voce è stata modificata" -#: src/Object/Post.php:210 +#: src/Object/Post.php:196 msgid "Connector Message" msgstr "" -#: src/Object/Post.php:239 src/Object/Post.php:241 +#: src/Object/Post.php:225 src/Object/Post.php:227 msgid "Edit" msgstr "Modifica" -#: src/Object/Post.php:275 +#: src/Object/Post.php:261 msgid "Delete globally" msgstr "Rimuovi globalmente" -#: src/Object/Post.php:275 +#: src/Object/Post.php:261 msgid "Remove locally" msgstr "Rimuovi localmente" -#: src/Object/Post.php:282 +#: src/Object/Post.php:268 #, php-format msgid "Block %s" msgstr "Blocca %s" -#: src/Object/Post.php:287 +#: src/Object/Post.php:273 #, php-format msgid "Ignore %s" msgstr "" -#: src/Object/Post.php:292 +#: src/Object/Post.php:278 #, php-format msgid "Collapse %s" msgstr "" -#: src/Object/Post.php:296 +#: src/Object/Post.php:282 msgid "Report post" msgstr "" -#: src/Object/Post.php:307 +#: src/Object/Post.php:293 msgid "Save to folder" msgstr "Salva nella cartella" -#: src/Object/Post.php:347 +#: src/Object/Post.php:333 msgid "I will attend" msgstr "Parteciperò" -#: src/Object/Post.php:347 +#: src/Object/Post.php:333 msgid "I will not attend" msgstr "Non parteciperò" -#: src/Object/Post.php:347 +#: src/Object/Post.php:333 msgid "I might attend" msgstr "Forse parteciperò" -#: src/Object/Post.php:394 +#: src/Object/Post.php:380 msgid "Ignore thread" msgstr "Ignora la conversazione" -#: src/Object/Post.php:395 +#: src/Object/Post.php:381 msgid "Unignore thread" msgstr "Non ignorare la conversazione" -#: src/Object/Post.php:396 +#: src/Object/Post.php:382 msgid "Toggle ignore status" msgstr "Inverti stato ignora" -#: src/Object/Post.php:406 +#: src/Object/Post.php:392 msgid "Add star" msgstr "Aggiungi a preferiti" -#: src/Object/Post.php:407 +#: src/Object/Post.php:393 msgid "Remove star" msgstr "Rimuovi da preferiti" -#: src/Object/Post.php:408 +#: src/Object/Post.php:394 msgid "Toggle star status" msgstr "Inverti stato preferito" -#: src/Object/Post.php:419 +#: src/Object/Post.php:405 msgid "Pin" msgstr "Metti in evidenza" -#: src/Object/Post.php:420 +#: src/Object/Post.php:406 msgid "Unpin" msgstr "Togli da in evidenza" -#: src/Object/Post.php:421 +#: src/Object/Post.php:407 msgid "Toggle pin status" msgstr "Inverti stato in evidenza" -#: src/Object/Post.php:424 +#: src/Object/Post.php:410 msgid "Pinned" msgstr "In evidenza" -#: src/Object/Post.php:429 +#: src/Object/Post.php:415 msgid "Add tag" msgstr "Aggiungi tag" -#: src/Object/Post.php:444 +#: src/Object/Post.php:430 msgid "Quote share this" msgstr "Condividi citando questo" -#: src/Object/Post.php:444 +#: src/Object/Post.php:430 msgid "Quote Share" msgstr "Cita e Condividi" -#: src/Object/Post.php:447 +#: src/Object/Post.php:433 msgid "Reshare this" msgstr "Ricondividi questo" -#: src/Object/Post.php:447 +#: src/Object/Post.php:433 msgid "Reshare" msgstr "Ricondividi" -#: src/Object/Post.php:448 +#: src/Object/Post.php:434 msgid "Cancel your Reshare" msgstr "Annulla la tua Ricondivisione" -#: src/Object/Post.php:448 +#: src/Object/Post.php:434 msgid "Unshare" msgstr "Non ricondividere più" -#: src/Object/Post.php:492 +#: src/Object/Post.php:478 #, php-format msgid "%s (Received %s)" msgstr "%s (Ricevuto %s)" -#: src/Object/Post.php:498 +#: src/Object/Post.php:484 msgid "Comment this item on your system" msgstr "Commenta questo oggetto sul tuo sistema" -#: src/Object/Post.php:498 +#: src/Object/Post.php:484 msgid "Remote comment" msgstr "Commento remoto" -#: src/Object/Post.php:520 +#: src/Object/Post.php:506 msgid "Share via ..." msgstr "" -#: src/Object/Post.php:520 +#: src/Object/Post.php:506 msgid "Share via external services" msgstr "" -#: src/Object/Post.php:527 +#: src/Object/Post.php:513 msgid "Unknown parent" msgstr "" -#: src/Object/Post.php:531 +#: src/Object/Post.php:517 #, php-format msgid "in reply to %s" msgstr "" -#: src/Object/Post.php:533 +#: src/Object/Post.php:519 msgid "Parent is probably private or not federated." msgstr "" -#: src/Object/Post.php:557 +#: src/Object/Post.php:543 msgid "to" msgstr "a" -#: src/Object/Post.php:558 +#: src/Object/Post.php:544 msgid "via" msgstr "via" -#: src/Object/Post.php:559 +#: src/Object/Post.php:545 msgid "Wall-to-Wall" msgstr "Da bacheca a bacheca" -#: src/Object/Post.php:560 +#: src/Object/Post.php:546 msgid "via Wall-To-Wall:" msgstr "da bacheca a bacheca" -#: src/Object/Post.php:613 +#: src/Object/Post.php:599 #, php-format msgid "Reply to %s" msgstr "Rispondi a %s" -#: src/Object/Post.php:616 +#: src/Object/Post.php:602 msgid "More" msgstr "Mostra altro" -#: src/Object/Post.php:635 +#: src/Object/Post.php:621 msgid "Notifier task is pending" msgstr "L'attività di notifica è in attesa" -#: src/Object/Post.php:636 +#: src/Object/Post.php:622 msgid "Delivery to remote servers is pending" msgstr "La consegna ai server remoti è in attesa" -#: src/Object/Post.php:637 +#: src/Object/Post.php:623 msgid "Delivery to remote servers is underway" msgstr "La consegna ai server remoti è in corso" -#: src/Object/Post.php:638 +#: src/Object/Post.php:624 msgid "Delivery to remote servers is mostly done" msgstr "La consegna ai server remoti è quasi completata" -#: src/Object/Post.php:639 +#: src/Object/Post.php:625 msgid "Delivery to remote servers is done" msgstr "La consegna ai server remoti è completata" -#: src/Object/Post.php:661 +#: src/Object/Post.php:647 #, php-format msgid "%d comment" msgid_plural "%d comments" @@ -12557,480 +12560,467 @@ msgstr[0] "%d commento" msgstr[1] "%d commenti" msgstr[2] "%d commenti" -#: src/Object/Post.php:662 +#: src/Object/Post.php:648 msgid "Show more" msgstr "Mostra di più" -#: src/Object/Post.php:663 +#: src/Object/Post.php:649 msgid "Show fewer" msgstr "Mostra di meno" -#: src/Object/Post.php:700 +#: src/Object/Post.php:686 #, php-format msgid "Reshared by: %s" msgstr "" -#: src/Object/Post.php:705 +#: src/Object/Post.php:691 #, php-format msgid "Viewed by: %s" msgstr "" -#: src/Object/Post.php:710 +#: src/Object/Post.php:696 #, php-format msgid "Read by: %s" msgstr "" -#: src/Object/Post.php:715 +#: src/Object/Post.php:701 #, php-format msgid "Liked by: %s" msgstr "" -#: src/Object/Post.php:720 +#: src/Object/Post.php:706 #, php-format msgid "Disliked by: %s" msgstr "" -#: src/Object/Post.php:725 +#: src/Object/Post.php:711 #, php-format msgid "Attended by: %s" msgstr "" -#: src/Object/Post.php:730 +#: src/Object/Post.php:716 #, php-format msgid "Maybe attended by: %s" msgstr "" -#: src/Object/Post.php:735 +#: src/Object/Post.php:721 #, php-format msgid "Not attended by: %s" msgstr "" -#: src/Object/Post.php:740 +#: src/Object/Post.php:726 #, php-format msgid "Commented by: %s" msgstr "" -#: src/Object/Post.php:745 +#: src/Object/Post.php:731 #, php-format msgid "Reacted with %s by: %s" msgstr "" -#: src/Object/Post.php:768 +#: src/Object/Post.php:754 #, php-format msgid "Quote shared by: %s" msgstr "" -#: src/Protocol/ActivityPub/Receiver.php:568 +#: src/Protocol/ActivityPub/Receiver.php:557 msgid "Chat" msgstr "" -#: src/Protocol/Delivery.php:544 +#: src/Protocol/Delivery.php:530 msgid "(no subject)" msgstr "(nessun oggetto)" -#: src/Protocol/OStatus.php:1392 -#, php-format -msgid "%s is now following %s." -msgstr "%s sta seguendo %s" - -#: src/Protocol/OStatus.php:1393 -msgid "following" -msgstr "segue" - -#: src/Protocol/OStatus.php:1396 -#, php-format -msgid "%s stopped following %s." -msgstr "%s ha smesso di seguire %s" - -#: src/Protocol/OStatus.php:1397 -msgid "stopped following" -msgstr "tolto dai seguiti" - -#: src/Render/FriendicaSmartyEngine.php:56 +#: src/Render/FriendicaSmartyEngine.php:42 #, php-format msgid "The folder %s must be writable by webserver." msgstr "" -#: src/Security/Authentication.php:216 +#: src/Security/Authentication.php:200 msgid "Login failed." msgstr "Accesso fallito." -#: src/Security/Authentication.php:261 +#: src/Security/Authentication.php:245 msgid "Login failed. Please check your credentials." msgstr "Accesso non riuscito. Per favore controlla le tue credenziali." -#: src/Security/Authentication.php:375 +#: src/Security/Authentication.php:359 #, php-format msgid "Welcome %s" msgstr "Benvenuto %s" -#: src/Security/Authentication.php:376 +#: src/Security/Authentication.php:360 msgid "Please upload a profile photo." msgstr "Carica una foto per il profilo." -#: src/Util/EMailer/MailBuilder.php:260 +#: src/Security/OpenWebAuth.php:149 +#, php-format +msgid "OpenWebAuth: %1$s welcomes %2$s" +msgstr "OpenWebAuth: %1$s da il benvenuto a %2$s" + +#: src/Util/EMailer/MailBuilder.php:246 msgid "Friendica Notification" msgstr "Notifica Friendica" -#: src/Util/EMailer/NotifyMailBuilder.php:78 -#: src/Util/EMailer/SystemMailBuilder.php:54 +#: src/Util/EMailer/NotifyMailBuilder.php:64 +#: src/Util/EMailer/SystemMailBuilder.php:40 #, php-format msgid "%1$s, %2$s Administrator" msgstr "%1$s, %2$s Amministratore" -#: src/Util/EMailer/NotifyMailBuilder.php:80 -#: src/Util/EMailer/SystemMailBuilder.php:56 +#: src/Util/EMailer/NotifyMailBuilder.php:66 +#: src/Util/EMailer/SystemMailBuilder.php:42 #, php-format msgid "%s Administrator" msgstr "%s Amministratore" -#: src/Util/EMailer/NotifyMailBuilder.php:193 -#: src/Util/EMailer/NotifyMailBuilder.php:217 -#: src/Util/EMailer/SystemMailBuilder.php:101 -#: src/Util/EMailer/SystemMailBuilder.php:118 +#: src/Util/EMailer/NotifyMailBuilder.php:179 +#: src/Util/EMailer/NotifyMailBuilder.php:203 +#: src/Util/EMailer/SystemMailBuilder.php:87 +#: src/Util/EMailer/SystemMailBuilder.php:104 msgid "thanks" msgstr "grazie" -#: src/Util/Temporal.php:172 +#: src/Util/Temporal.php:158 msgid "YYYY-MM-DD or MM-DD" msgstr "AAAA-MM-GG o MM-GG" -#: src/Util/Temporal.php:280 +#: src/Util/Temporal.php:266 #, php-format msgid "Time zone: %s Change in Settings" msgstr "" -#: src/Util/Temporal.php:320 src/Util/Temporal.php:329 +#: src/Util/Temporal.php:306 src/Util/Temporal.php:315 msgid "never" msgstr "mai" -#: src/Util/Temporal.php:343 +#: src/Util/Temporal.php:329 msgid "less than a second ago" msgstr "meno di un secondo fa" -#: src/Util/Temporal.php:352 +#: src/Util/Temporal.php:338 msgid "year" msgstr "anno" -#: src/Util/Temporal.php:352 +#: src/Util/Temporal.php:338 msgid "years" msgstr "anni" -#: src/Util/Temporal.php:353 +#: src/Util/Temporal.php:339 msgid "months" msgstr "mesi" -#: src/Util/Temporal.php:354 +#: src/Util/Temporal.php:340 msgid "weeks" msgstr "settimane" -#: src/Util/Temporal.php:355 +#: src/Util/Temporal.php:341 msgid "days" msgstr "giorni" -#: src/Util/Temporal.php:356 +#: src/Util/Temporal.php:342 msgid "hour" msgstr "ora" -#: src/Util/Temporal.php:356 +#: src/Util/Temporal.php:342 msgid "hours" msgstr "ore" -#: src/Util/Temporal.php:357 +#: src/Util/Temporal.php:343 msgid "minute" msgstr "minuto" -#: src/Util/Temporal.php:357 +#: src/Util/Temporal.php:343 msgid "minutes" msgstr "minuti" -#: src/Util/Temporal.php:358 +#: src/Util/Temporal.php:344 msgid "second" msgstr "secondo" -#: src/Util/Temporal.php:358 +#: src/Util/Temporal.php:344 msgid "seconds" msgstr "secondi" -#: src/Util/Temporal.php:367 +#: src/Util/Temporal.php:353 #, php-format msgid "in %1$d %2$s" msgstr "in %1$d %2$s" -#: src/Util/Temporal.php:370 +#: src/Util/Temporal.php:356 #, php-format msgid "%1$d %2$s ago" msgstr "%1$d %2$s fa" -#: src/Worker/PushSubscription.php:110 +#: src/Worker/PushSubscription.php:96 msgid "Notification from Friendica" msgstr "" -#: src/Worker/PushSubscription.php:111 +#: src/Worker/PushSubscription.php:97 msgid "Empty Post" msgstr "" -#: view/theme/duepuntozero/config.php:68 +#: view/theme/duepuntozero/config.php:56 msgid "default" msgstr "predefinito" -#: view/theme/duepuntozero/config.php:69 +#: view/theme/duepuntozero/config.php:57 msgid "greenzero" msgstr "greenzero" -#: view/theme/duepuntozero/config.php:70 +#: view/theme/duepuntozero/config.php:58 msgid "purplezero" msgstr "purplezero" -#: view/theme/duepuntozero/config.php:71 +#: view/theme/duepuntozero/config.php:59 msgid "easterbunny" msgstr "easterbunny" -#: view/theme/duepuntozero/config.php:72 +#: view/theme/duepuntozero/config.php:60 msgid "darkzero" msgstr "darkzero" -#: view/theme/duepuntozero/config.php:73 +#: view/theme/duepuntozero/config.php:61 msgid "comix" msgstr "comix" -#: view/theme/duepuntozero/config.php:74 +#: view/theme/duepuntozero/config.php:62 msgid "slackr" msgstr "slackr" -#: view/theme/duepuntozero/config.php:87 +#: view/theme/duepuntozero/config.php:75 msgid "Variations" msgstr "Varianti" -#: view/theme/frio/config.php:146 +#: view/theme/frio/config.php:134 msgid "Note" msgstr "Note" -#: view/theme/frio/config.php:146 +#: view/theme/frio/config.php:134 msgid "Check image permissions if all users are allowed to see the image" msgstr "Controlla i permessi dell'immagine che tutti gli utenti possano vederla" -#: view/theme/frio/config.php:152 +#: view/theme/frio/config.php:140 msgid "Appearance" msgstr "" -#: view/theme/frio/config.php:153 +#: view/theme/frio/config.php:141 msgid "Accent color" msgstr "" -#: view/theme/frio/config.php:153 +#: view/theme/frio/config.php:141 msgid "Blue" msgstr "Blu" -#: view/theme/frio/config.php:153 +#: view/theme/frio/config.php:141 msgid "Red" msgstr "Rosso" -#: view/theme/frio/config.php:153 +#: view/theme/frio/config.php:141 msgid "Purple" msgstr "Viola" -#: view/theme/frio/config.php:153 +#: view/theme/frio/config.php:141 msgid "Green" msgstr "Verde" -#: view/theme/frio/config.php:153 +#: view/theme/frio/config.php:141 msgid "Pink" msgstr "Rosa" -#: view/theme/frio/config.php:154 +#: view/theme/frio/config.php:142 msgid "Copy or paste schemestring" msgstr "Copia o incolla stringa di schema" -#: view/theme/frio/config.php:154 +#: view/theme/frio/config.php:142 msgid "" "You can copy this string to share your theme with others. Pasting here " "applies the schemestring" msgstr "Puoi copiare questa stringa per condividere il tuo tema con altri. Incollarla qui applica la stringa di schema" -#: view/theme/frio/config.php:155 +#: view/theme/frio/config.php:143 msgid "Navigation bar background color" msgstr "Colore di sfondo barra di navigazione" -#: view/theme/frio/config.php:156 +#: view/theme/frio/config.php:144 msgid "Navigation bar icon color " msgstr "Colore icona barra di navigazione" -#: view/theme/frio/config.php:157 +#: view/theme/frio/config.php:145 msgid "Link color" msgstr "Colore collegamento" -#: view/theme/frio/config.php:158 +#: view/theme/frio/config.php:146 msgid "Set the background color" msgstr "Imposta il colore di sfondo" -#: view/theme/frio/config.php:159 +#: view/theme/frio/config.php:147 msgid "Content background opacity" msgstr "Trasparenza sfondo contenuto" -#: view/theme/frio/config.php:160 +#: view/theme/frio/config.php:148 msgid "Set the background image" msgstr "Imposta l'immagine di sfondo" -#: view/theme/frio/config.php:161 +#: view/theme/frio/config.php:149 msgid "Background image style" msgstr "Stile immagine di sfondo" -#: view/theme/frio/config.php:164 +#: view/theme/frio/config.php:152 msgid "Always open Compose page" msgstr "" -#: view/theme/frio/config.php:164 +#: view/theme/frio/config.php:152 msgid "" "The New Post button always open the 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:168 +#: view/theme/frio/config.php:156 msgid "Login page background image" msgstr "Immagine di sfondo per la pagina di accesso" -#: view/theme/frio/config.php:172 +#: view/theme/frio/config.php:160 msgid "Login page background color" msgstr "Colore di sfondo della pagina di accesso" -#: view/theme/frio/config.php:172 +#: view/theme/frio/config.php:160 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" -#: view/theme/frio/php/Image.php:39 +#: view/theme/frio/php/Image.php:27 msgid "Top Banner" msgstr "Top Banner" -#: view/theme/frio/php/Image.php:39 +#: view/theme/frio/php/Image.php:27 msgid "" "Resize image to the width of the screen and show background color below on " "long pages." msgstr "Scala l'immagine alla larghezza dello schermo e mostra un colore di sfondo sulle pagine lunghe." -#: view/theme/frio/php/Image.php:40 +#: view/theme/frio/php/Image.php:28 msgid "Full screen" msgstr "Schermo intero" -#: view/theme/frio/php/Image.php:40 +#: view/theme/frio/php/Image.php:28 msgid "" "Resize image to fill entire screen, clipping either the right or the bottom." msgstr "Scala l'immagine a schermo intero, tagliando a destra o sotto." -#: view/theme/frio/php/Image.php:41 +#: view/theme/frio/php/Image.php:29 msgid "Single row mosaic" msgstr "Mosaico a riga singola" -#: view/theme/frio/php/Image.php:41 +#: view/theme/frio/php/Image.php:29 msgid "" "Resize image to repeat it on a single row, either vertical or horizontal." msgstr "Scala l'immagine per ripeterla in una singola riga, verticale o orizzontale." -#: view/theme/frio/php/Image.php:42 +#: view/theme/frio/php/Image.php:30 msgid "Mosaic" msgstr "Mosaico" -#: view/theme/frio/php/Image.php:42 +#: view/theme/frio/php/Image.php:30 msgid "Repeat image to fill the screen." msgstr "Ripete l'immagine per riempire lo schermo." -#: view/theme/frio/php/default.php:82 view/theme/frio/php/standard.php:40 +#: view/theme/frio/php/default.php:70 view/theme/frio/php/standard.php:28 msgid "Skip to main content" msgstr "Salta al contenuto principale" -#: view/theme/frio/php/default.php:153 view/theme/frio/php/standard.php:75 +#: view/theme/frio/php/default.php:141 view/theme/frio/php/standard.php:63 msgid "Back to top" msgstr "Torna all'inizio" -#: view/theme/frio/php/scheme.php:105 +#: view/theme/frio/php/scheme.php:93 msgid "Light" msgstr "" -#: view/theme/frio/php/scheme.php:106 +#: view/theme/frio/php/scheme.php:94 msgid "Dark" msgstr "" -#: view/theme/frio/php/scheme.php:107 +#: view/theme/frio/php/scheme.php:95 msgid "Black" msgstr "" -#: view/theme/frio/php/scheme.php:118 +#: view/theme/frio/php/scheme.php:106 msgid "Custom" msgstr "Personalizzato" -#: view/theme/frio/theme.php:214 +#: view/theme/frio/theme.php:202 msgid "Guest" msgstr "Ospite" -#: view/theme/frio/theme.php:217 +#: view/theme/frio/theme.php:205 msgid "Visitor" msgstr "Visitatore" -#: view/theme/quattro/config.php:89 +#: view/theme/quattro/config.php:77 msgid "Alignment" msgstr "Allineamento" -#: view/theme/quattro/config.php:89 +#: view/theme/quattro/config.php:77 msgid "Left" msgstr "Sinistra" -#: view/theme/quattro/config.php:89 +#: view/theme/quattro/config.php:77 msgid "Center" msgstr "Centrato" -#: view/theme/quattro/config.php:90 +#: view/theme/quattro/config.php:78 msgid "Color scheme" msgstr "Schema colori" -#: view/theme/quattro/config.php:91 +#: view/theme/quattro/config.php:79 msgid "Posts font size" msgstr "Dimensione carattere messaggi" -#: view/theme/quattro/config.php:92 +#: view/theme/quattro/config.php:80 msgid "Textareas font size" msgstr "Dimensione carattere nelle aree di testo" -#: view/theme/vier/config.php:91 +#: view/theme/vier/config.php:79 msgid "Comma separated list of helper groups" msgstr "" -#: view/theme/vier/config.php:131 +#: view/theme/vier/config.php:119 msgid "don't show" msgstr "non mostrare" -#: view/theme/vier/config.php:131 +#: view/theme/vier/config.php:119 msgid "show" msgstr "mostra" -#: view/theme/vier/config.php:137 +#: view/theme/vier/config.php:125 msgid "Set style" msgstr "Imposta stile" -#: view/theme/vier/config.php:138 +#: view/theme/vier/config.php:126 msgid "Community Pages" msgstr "Pagine della Comunità" -#: view/theme/vier/config.php:139 view/theme/vier/theme.php:148 +#: view/theme/vier/config.php:127 view/theme/vier/theme.php:136 msgid "Community Profiles" msgstr "Profili Comunità" -#: view/theme/vier/config.php:140 +#: view/theme/vier/config.php:128 msgid "Help or @NewHere ?" msgstr "Serve aiuto? Sei nuovo?" -#: view/theme/vier/config.php:141 view/theme/vier/theme.php:319 +#: view/theme/vier/config.php:129 view/theme/vier/theme.php:307 msgid "Connect Services" msgstr "Servizi Connessi" -#: view/theme/vier/config.php:142 +#: view/theme/vier/config.php:130 msgid "Find Friends" msgstr "Trova Amici" -#: view/theme/vier/config.php:143 view/theme/vier/theme.php:175 +#: view/theme/vier/config.php:131 view/theme/vier/theme.php:163 msgid "Last users" msgstr "Ultimi utenti" -#: view/theme/vier/theme.php:234 +#: view/theme/vier/theme.php:222 msgid "Quick Start" msgstr "Partenza Rapida" diff --git a/view/lang/it/strings.php b/view/lang/it/strings.php index 615f624a07..a5c1fffeea 100644 --- a/view/lang/it/strings.php +++ b/view/lang/it/strings.php @@ -660,7 +660,6 @@ $a->strings['An author or name was not found.'] = 'Non è stato trovato un nome $a->strings['No browser URL could be matched to this address.'] = 'Nessun URL può essere associato a questo indirizzo.'; $a->strings['Unable to match @-style Identity Address with a known protocol or email contact.'] = 'Impossibile l\'indirizzo identità con un protocollo conosciuto o con un contatto email.'; $a->strings['Use mailto: in front of address to force email check.'] = 'Usa "mailto:" davanti all\'indirizzo per forzare un controllo nelle email.'; -$a->strings['The profile address specified belongs to a network which has been disabled on this site.'] = 'L\'indirizzo del profilo specificato appartiene a un network che è stato disabilitato su questo sito.'; $a->strings['Limited profile. This person will be unable to receive direct/personal notifications from you.'] = 'Profilo limitato. Questa persona non sarà in grado di ricevere notifiche personali da te.'; $a->strings['Unable to retrieve contact information.'] = 'Impossibile recuperare informazioni sul contatto.'; $a->strings['l F d, Y \@ g:i A \G\M\TP (e)'] = 'l F d, Y \@ g:i A \G\M\TP (e)'; @@ -685,7 +684,6 @@ $a->strings['Show map'] = 'Mostra mappa'; $a->strings['Hide map'] = 'Nascondi mappa'; $a->strings['%s\'s birthday'] = 'Compleanno di %s'; $a->strings['Happy Birthday %s'] = 'Buon compleanno %s'; -$a->strings['Detected languages in this post:\n%s'] = 'Lingue rilevate in questo messaggio:\n%s'; $a->strings['activity'] = 'attività'; $a->strings['comment'] = 'commento'; $a->strings['post'] = 'messaggio'; @@ -706,7 +704,6 @@ $a->strings['g A l F d'] = 'g A l d F'; $a->strings['[No description]'] = '[Nessuna descrizione]'; $a->strings['Event Reminders'] = 'Promemoria'; $a->strings['Upcoming events the next 7 days:'] = 'Eventi dei prossimi 7 giorni:'; -$a->strings['OpenWebAuth: %1$s welcomes %2$s'] = 'OpenWebAuth: %1$s da il benvenuto a %2$s'; $a->strings['Hometown:'] = 'Paese natale:'; $a->strings['Marital Status:'] = 'Stato Coniugale:'; $a->strings['With:'] = 'Con:'; @@ -1005,7 +1002,6 @@ $a->strings['When the database cleanup is enabled, this defines the days after w $a->strings['Lifespan of unclaimed items'] = 'Durata della vita di oggetti non reclamati'; $a->strings['When the database cleanup is enabled, this defines the days after which unclaimed remote items (mostly content from the relay) will be deleted. Default value is 90 days. Defaults to the general lifespan value of remote items if set to 0.'] = '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.'; $a->strings['Lifespan of raw conversation data'] = 'Durata della vita di dati di conversazione grezzi'; -$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.'] = '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.'; $a->strings['Maximum numbers of comments per post'] = 'Numero massimo di commenti per messaggio'; $a->strings['How much comments should be shown for each post? Default value is 100.'] = 'Quanti commenti devono essere mostrati per ogni messaggio? Default : 100.'; $a->strings['Maximum numbers of comments per post on the display page'] = 'Numero massimo di commenti per messaggio sulla pagina di visualizzazione'; @@ -1228,7 +1224,6 @@ $a->strings['Submit Request'] = 'Invia richiesta'; $a->strings['You already added this contact.'] = 'Hai già aggiunto questo contatto.'; $a->strings['The network type couldn\'t be detected. Contact can\'t be added.'] = 'Non è possibile rilevare il tipo di rete. Il contatto non può essere aggiunto.'; $a->strings['Diaspora support isn\'t enabled. Contact can\'t be added.'] = 'Il supporto Diaspora non è abilitato. Il contatto non può essere aggiunto.'; -$a->strings['OStatus support is disabled. Contact can\'t be added.'] = 'Il supporto OStatus non è abilitato. Il contatto non può essere aggiunto.'; $a->strings['Please answer the following:'] = 'Rispondi:'; $a->strings['Your Identity Address:'] = 'L\'indirizzo della tua identità:'; $a->strings['Profile URL'] = 'URL Profilo'; @@ -1659,8 +1654,6 @@ $a->strings['Do you want to authorize this application to access your posts and $a->strings['Unsupported or missing response type'] = 'Tipo di risposta mancante o non supportato'; $a->strings['Incomplete request data'] = 'Dati richiesta incompleti'; $a->strings['Unsupported or missing grant type'] = 'Tipo di concessione mancante o non supportato'; -$a->strings['Resubscribing to OStatus contacts'] = 'Risottoscrivi i contatti OStatus'; -$a->strings['Keep this window open until done.'] = 'Tieni questa finestra aperta fino a che ha finito.'; $a->strings['Subscribing to contacts'] = 'Iscrizione a contatti'; $a->strings['No contact provided.'] = 'Nessun contatto disponibile.'; $a->strings['Couldn\'t fetch information for contact.'] = 'Non è stato possibile recuperare le informazioni del contatto.'; @@ -1672,6 +1665,7 @@ $a->strings['Done'] = 'Fatto'; $a->strings['success'] = 'successo'; $a->strings['failed'] = 'fallito'; $a->strings['ignored'] = 'ignorato'; +$a->strings['Keep this window open until done.'] = 'Tieni questa finestra aperta fino a che ha finito.'; $a->strings['The Photo with id %s is not available.'] = 'La Foto con id %s non è disponibile.'; $a->strings['Invalid photo with id %s.'] = 'Foto con id %s non valida.'; $a->strings['Edit post'] = 'Modifica messaggio'; @@ -1688,9 +1682,9 @@ $a->strings['Model not found'] = 'Modello non trovato'; $a->strings['Remote privacy information not available.'] = 'Informazioni remote sulla privacy non disponibili.'; $a->strings['Visible to:'] = 'Visibile a:'; $a->strings['No contacts.'] = 'Nessun contatto.'; -$a->strings['%s\'s timeline'] = 'la timeline di %s'; $a->strings['%s\'s posts'] = 'il messaggio di %s'; $a->strings['%s\'s comments'] = 'il commento di %s'; +$a->strings['%s\'s timeline'] = 'la timeline di %s'; $a->strings['Image exceeds size limit of %s'] = 'La dimensione dell\'immagine supera il limite di %s'; $a->strings['Image upload didn\'t complete, please try again'] = 'Caricamento dell\'immagine non completato. Prova di nuovo.'; $a->strings['Image file is missing'] = 'Il file dell\'immagine è mancante'; @@ -1891,7 +1885,6 @@ $a->strings['Description'] = 'Descrizione'; $a->strings['Add'] = 'Aggiungi'; $a->strings['Failed to connect with email account using the settings provided.'] = 'Impossibile collegarsi all\'account email con i parametri forniti.'; $a->strings['Diaspora (Socialhome, Hubzilla)'] = 'Diaspora (Socialhome, Hubzilla)'; -$a->strings['OStatus (GNU Social)'] = 'OStatus (GNU Social)'; $a->strings['Email access is disabled on this site.'] = 'L\'accesso email è disabilitato su questo sito.'; $a->strings['None'] = 'Nessuna'; $a->strings['General Social Media Settings'] = 'Impostazioni Media Sociali'; @@ -1903,7 +1896,6 @@ $a->strings['Attach the link title'] = 'Allega il titolo del collegamento'; $a->strings['When activated, the title of the attached link will be added as a title on posts to Diaspora. This is mostly helpful with "remote-self" contacts that share feed content.'] = 'Quando attivato, il titolo del collegamento allegato sarà aggiunto come titolo dei messaggi su Diaspora. Questo è più che altro utile con i contatti "remoti di sè stessi" che condividono il contenuto del flusso.'; $a->strings['Your legacy ActivityPub/GNU Social account'] = 'Il tuo vecchio account ActivityPub/GNU Social '; $a->strings['If you enter your old account name from an ActivityPub based system or your GNU Social/Statusnet account name here (in the format user@domain.tld), your contacts will be added automatically. The field will be emptied when done.'] = 'Se inserisci il nome del tuo vecchio account su un sistema basato su ActivityPub o del tuo vecchio account GNU Social/Statusnet (nel formato utente@dominio.tld), i tuoi contatti verranno importati automaticamente. Il campo verrà svuotato una volta terminata l\'operazione.'; -$a->strings['Repair OStatus subscriptions'] = 'Ripara le iscrizioni OStatus'; $a->strings['Email/Mailbox Setup'] = 'Impostazioni email'; $a->strings['If you wish to communicate with email contacts using this service (optional), please specify how to connect to your mailbox.'] = 'Se vuoi comunicare con i contatti email usando questo servizio, specifica come collegarti alla tua casella di posta. (opzionale)'; $a->strings['Last successful email check:'] = 'Ultimo controllo email eseguito con successo:'; @@ -2163,7 +2155,6 @@ $a->strings['%s commented on %s\'s post'] = '%s ha commentato il messaggio di %s $a->strings['%s created a new post'] = '%s a creato un nuovo messaggio'; $a->strings['Friend Suggestion'] = 'Amico suggerito'; $a->strings['Friend/Connect Request'] = 'Richiesta amicizia/connessione'; -$a->strings['New Follower'] = 'Qualcuno inizia a seguirti'; $a->strings['[Friendica:Notify]'] = '[Friendica:Notifica]'; $a->strings['%s New mail received at %s'] = '%s Nuova mail ricevuta su %s'; $a->strings['%1$s sent you a new private message at %2$s.'] = '%1$s ti ha inviato un nuovo messaggio privato su %2$s.'; @@ -2261,14 +2252,11 @@ $a->strings['%d comment'] = [ $a->strings['Show more'] = 'Mostra di più'; $a->strings['Show fewer'] = 'Mostra di meno'; $a->strings['(no subject)'] = '(nessun oggetto)'; -$a->strings['%s is now following %s.'] = '%s sta seguendo %s'; -$a->strings['following'] = 'segue'; -$a->strings['%s stopped following %s.'] = '%s ha smesso di seguire %s'; -$a->strings['stopped following'] = 'tolto dai seguiti'; $a->strings['Login failed.'] = 'Accesso fallito.'; $a->strings['Login failed. Please check your credentials.'] = 'Accesso non riuscito. Per favore controlla le tue credenziali.'; $a->strings['Welcome %s'] = 'Benvenuto %s'; $a->strings['Please upload a profile photo.'] = 'Carica una foto per il profilo.'; +$a->strings['OpenWebAuth: %1$s welcomes %2$s'] = 'OpenWebAuth: %1$s da il benvenuto a %2$s'; $a->strings['Friendica Notification'] = 'Notifica Friendica'; $a->strings['%1$s, %2$s Administrator'] = '%1$s, %2$s Amministratore'; $a->strings['%s Administrator'] = '%s Amministratore'; diff --git a/view/lang/ja/messages.po b/view/lang/ja/messages.po index 91064de916..3d6576e823 100644 --- a/view/lang/ja/messages.po +++ b/view/lang/ja/messages.po @@ -1,8 +1,7 @@ # FRIENDICA Distributed Social Network -# SPDX-FileCopyrightText: Copyright (C) 2010-2024, the Friendica project -# -# SPDX-License-Identifier: AGPL-3.0-or-later -# +# Copyright (C) 2010-2024, the Friendica project +# This file is distributed under the same license as the Friendica package. +# # Translators: # Antron Samurai , 2018 # nnsrymni, 2022 @@ -14,7 +13,7 @@ msgid "" msgstr "" "Project-Id-Version: friendica\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-05-15 12:16+0000\n" +"POT-Creation-Date: 2024-10-07 20:46+0000\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" @@ -24,77 +23,77 @@ msgstr "" "Language: ja\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: mod/item.php:101 mod/item.php:104 mod/item.php:171 mod/item.php:174 +#: mod/item.php:89 mod/item.php:92 mod/item.php:159 mod/item.php:162 msgid "Unable to locate original post." msgstr "元の投稿が見つかりません。" -#: mod/item.php:139 +#: mod/item.php:127 msgid "Post updated." msgstr "投稿が更新されました。" -#: mod/item.php:204 mod/item.php:208 +#: mod/item.php:192 mod/item.php:196 msgid "Item wasn't stored." msgstr "項目が保存されませんでした。" -#: mod/item.php:218 +#: mod/item.php:206 msgid "Item couldn't be fetched." msgstr "項目を取得できませんでした。" -#: mod/item.php:260 mod/item.php:264 +#: mod/item.php:250 mod/item.php:254 msgid "Empty post discarded." msgstr "空の投稿は破棄されました。" -#: mod/item.php:435 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 +#: mod/item.php:425 src/Module/Admin/Themes/Details.php:31 +#: src/Module/Admin/Themes/Index.php:51 src/Module/Debug/ItemBody.php:28 +#: src/Module/Debug/ItemBody.php:43 src/Module/Item/Feed.php:66 msgid "Item not found." msgstr "見つかりませんでした。" -#: mod/item.php:459 mod/message.php:66 mod/message.php:112 mod/notes.php:45 -#: mod/photos.php:146 mod/photos.php:662 src/Model/Event.php:520 -#: src/Module/Attach.php:55 src/Module/BaseApi.php:103 -#: src/Module/BaseNotifications.php:98 src/Module/BaseSettings.php:50 -#: src/Module/Calendar/Event/API.php:88 src/Module/Calendar/Event/Form.php:84 -#: src/Module/Calendar/Export.php:82 src/Module/Calendar/Show.php:82 -#: src/Module/Circle.php:41 src/Module/Circle.php:84 -#: src/Module/Contact/Advanced.php:60 src/Module/Contact/Follow.php:87 -#: src/Module/Contact/Follow.php:160 src/Module/Contact/MatchInterests.php:87 -#: src/Module/Contact/Suggestions.php:54 src/Module/Contact/Unfollow.php:66 -#: src/Module/Contact/Unfollow.php:80 src/Module/Contact/Unfollow.php:112 -#: src/Module/FollowConfirm.php:38 src/Module/FriendSuggest.php:57 -#: src/Module/Invite.php:42 src/Module/Invite.php:131 -#: src/Module/Notifications/Notification.php:76 -#: src/Module/Notifications/Notification.php:107 -#: src/Module/OStatus/Repair.php:60 src/Module/OStatus/Subscribe.php:68 -#: src/Module/Post/Edit.php:76 src/Module/Profile/Common.php:75 -#: src/Module/Profile/Contacts.php:78 src/Module/Profile/Photos.php:92 -#: src/Module/Profile/Schedule.php:39 src/Module/Profile/Schedule.php:56 -#: src/Module/Register.php:78 src/Module/Register.php:91 -#: src/Module/Register.php:207 src/Module/Register.php:246 -#: src/Module/Search/Directory.php:37 src/Module/Settings/Account.php:50 -#: src/Module/Settings/Account.php:386 src/Module/Settings/Channels.php:66 -#: src/Module/Settings/Channels.php:141 src/Module/Settings/Delegation.php:90 -#: src/Module/Settings/Display.php:90 src/Module/Settings/Display.php:197 -#: src/Module/Settings/Profile/Photo/Crop.php:165 -#: src/Module/Settings/Profile/Photo/Index.php:110 -#: src/Module/Settings/RemoveMe.php:119 src/Module/Settings/UserExport.php:78 -#: src/Module/Settings/UserExport.php:114 -#: src/Module/Settings/UserExport.php:213 -#: src/Module/Settings/UserExport.php:233 -#: src/Module/Settings/UserExport.php:298 src/Module/User/Delegation.php:154 -#: src/Module/User/Import.php:85 src/Module/User/Import.php:92 +#: mod/item.php:449 mod/message.php:54 mod/message.php:100 mod/notes.php:33 +#: mod/photos.php:135 mod/photos.php:627 src/Model/Event.php:506 +#: src/Module/Attach.php:41 src/Module/BaseApi.php:89 +#: src/Module/BaseNotifications.php:84 src/Module/BaseSettings.php:36 +#: src/Module/Calendar/Event/API.php:74 src/Module/Calendar/Event/Form.php:70 +#: src/Module/Calendar/Export.php:68 src/Module/Calendar/Show.php:68 +#: src/Module/Circle.php:27 src/Module/Circle.php:70 +#: src/Module/Contact/Advanced.php:46 src/Module/Contact/Follow.php:73 +#: src/Module/Contact/Follow.php:141 src/Module/Contact/MatchInterests.php:73 +#: src/Module/Contact/Suggestions.php:40 src/Module/Contact/Unfollow.php:52 +#: src/Module/Contact/Unfollow.php:66 src/Module/Contact/Unfollow.php:98 +#: src/Module/FollowConfirm.php:24 src/Module/FriendSuggest.php:43 +#: src/Module/Invite.php:28 src/Module/Invite.php:117 +#: src/Module/Notifications/Notification.php:62 +#: src/Module/Notifications/Notification.php:93 +#: src/Module/OStatus/Subscribe.php:54 src/Module/Post/Edit.php:62 +#: src/Module/Profile/Common.php:61 src/Module/Profile/Contacts.php:64 +#: src/Module/Profile/Photos.php:78 src/Module/Profile/Schedule.php:25 +#: src/Module/Profile/Schedule.php:42 src/Module/Register.php:70 +#: src/Module/Register.php:83 src/Module/Register.php:199 +#: src/Module/Register.php:238 src/Module/Search/Directory.php:23 +#: src/Module/Settings/Account.php:36 src/Module/Settings/Account.php:377 +#: src/Module/Settings/Channels.php:52 src/Module/Settings/Channels.php:127 +#: src/Module/Settings/Delegation.php:76 src/Module/Settings/Display.php:76 +#: src/Module/Settings/Display.php:183 +#: src/Module/Settings/Profile/Photo/Crop.php:151 +#: src/Module/Settings/Profile/Photo/Index.php:96 +#: src/Module/Settings/RemoveMe.php:105 src/Module/Settings/UserExport.php:64 +#: src/Module/Settings/UserExport.php:100 +#: src/Module/Settings/UserExport.php:199 +#: src/Module/Settings/UserExport.php:219 +#: src/Module/Settings/UserExport.php:284 src/Module/User/Delegation.php:140 +#: src/Module/User/Import.php:71 src/Module/User/Import.php:78 msgid "Permission denied." msgstr "必要な権限が有りません。" -#: mod/lostpass.php:40 +#: mod/lostpass.php:28 msgid "No valid account found." msgstr "有効なアカウントが見つかりません。" -#: mod/lostpass.php:52 +#: mod/lostpass.php:40 msgid "Password reset request issued. Check your email." msgstr "パスワードリセット要求が発行されました。あなたのメールをチェックしてください。" -#: mod/lostpass.php:58 +#: mod/lostpass.php:46 #, php-format msgid "" "\n" @@ -110,7 +109,7 @@ msgid "" "\t\tissued this request." msgstr "\n\t\t%1$s さん、\n\t\t\t\"%2$s\" アカウントのパスワードリセットが要求されました。\n\t\tこのリクエストを確認するには、確認リンクをクリックするか、\n\t\tウェブブラウザのアドレスバーに貼り付けてください。\n\n\t\tこの変更をリクエストしていない場合は、リンクをクリックせず、\n\t\tこのメールを無視・削除してください。リセットはキャンセルされます。\n\n\t\tこのリクエストの発行元があなたであると確認できない限り、\n\t\tパスワードは変更されません。" -#: mod/lostpass.php:69 +#: mod/lostpass.php:57 #, php-format msgid "" "\n" @@ -127,70 +126,70 @@ msgid "" "\t\tLogin Name:\t%3$s" msgstr "\n\t\tこのリンクをたどって本人確認を行ってください:\n\n\t\t%1$s\n\n\t\t新しいパスワードを含むフォローアップメッセージが届きます。\n\t\tログイン後にアカウント設定ページからそのパスワードを変更できます。\n\n\t\tログインの詳細は次のとおりです。\n\n\t\tサイトの場所:\t%2$s\n\t\tログイン名:\t%3$s" -#: mod/lostpass.php:84 +#: mod/lostpass.php:72 #, php-format msgid "Password reset requested at %s" msgstr "パスワードのリセット要求が有りました: %s" -#: mod/lostpass.php:100 +#: mod/lostpass.php:88 msgid "" "Request could not be verified. (You may have previously submitted it.) " "Password reset failed." msgstr "リクエストを確認できませんでした。 (以前に送信した可能性があります。)パスワードのリセットに失敗しました。" -#: mod/lostpass.php:113 +#: mod/lostpass.php:101 msgid "Request has expired, please make a new one." msgstr "リクエストの有効期限が切れています。新しいものを作成してください。" -#: mod/lostpass.php:128 +#: mod/lostpass.php:116 msgid "Forgot your Password?" msgstr "パスワードをお忘れですか?" -#: mod/lostpass.php:129 +#: mod/lostpass.php:117 msgid "" "Enter your email address and submit to have your password reset. Then check " "your email for further instructions." msgstr "メールアドレスを入力して送信し、パスワードをリセットしてください。その後、メールで詳細な手順を確認してください。" -#: mod/lostpass.php:130 src/Module/Security/Login.php:160 +#: mod/lostpass.php:118 src/Module/Security/Login.php:150 msgid "Nickname or Email: " msgstr "ニックネームまたはメール:" -#: mod/lostpass.php:131 +#: mod/lostpass.php:119 msgid "Reset" msgstr "リセットする" -#: mod/lostpass.php:146 src/Module/Security/Login.php:172 +#: mod/lostpass.php:134 src/Module/Security/Login.php:162 msgid "Password Reset" msgstr "パスワードのリセット" -#: mod/lostpass.php:147 +#: mod/lostpass.php:135 msgid "Your password has been reset as requested." msgstr "パスワードは要求どおりにリセットされました。" -#: mod/lostpass.php:148 +#: mod/lostpass.php:136 msgid "Your new password is" msgstr "新しいパスワードは" -#: mod/lostpass.php:149 +#: mod/lostpass.php:137 msgid "Save or copy your new password - and then" msgstr "新しいパスワードを保存またはコピーします-その後" -#: mod/lostpass.php:150 +#: mod/lostpass.php:138 msgid "click here to login" msgstr "ここをクリックしてログイン" -#: mod/lostpass.php:151 +#: mod/lostpass.php:139 msgid "" "Your password may be changed from the Settings page after " "successful login." msgstr "ログインに成功すると、パスワードは設定ページから変更される場合があります。" -#: mod/lostpass.php:155 +#: mod/lostpass.php:143 msgid "Your password has been reset." msgstr "パスワードはリセットされました。" -#: mod/lostpass.php:158 +#: mod/lostpass.php:146 #, php-format msgid "" "\n" @@ -201,7 +200,7 @@ msgid "" "\t\t" msgstr "\n\t\t\t%1$s さん、\n\t\t\t\tパスワードは要求に応じて変更されました。記録のためにこの情報を保管してください(または、パスワードをすぐに覚えているものに変更してください)。\n\t\t" -#: mod/lostpass.php:164 +#: mod/lostpass.php:152 #, php-format msgid "" "\n" @@ -215,2391 +214,2398 @@ msgid "" "\t\t" msgstr "\n\t\t\tログインの詳細は次のとおりです:\n\n\t\t\tサイトの場所:\t%1$s\n\t\t\tログイン名:\t%2$s\n\t\t\tパスワード:\t%3$s\n\n\t\t\tログイン後にアカウント設定ページからパスワードを変更できます。\n\t\t" -#: mod/lostpass.php:176 +#: mod/lostpass.php:164 #, php-format msgid "Your password has been changed at %s" msgstr "パスワードは%s変更されました" -#: mod/message.php:45 mod/message.php:127 src/Content/Nav.php:321 +#: mod/message.php:33 mod/message.php:115 src/Content/Nav.php:307 msgid "New Message" msgstr "新しいメッセージ" -#: mod/message.php:81 +#: mod/message.php:69 msgid "No recipient selected." msgstr "宛先が未指定です。" -#: mod/message.php:86 +#: mod/message.php:74 msgid "Unable to locate contact information." msgstr "コンタクト情報が見つかりません。" -#: mod/message.php:90 +#: mod/message.php:78 msgid "Message could not be sent." msgstr "メッセージを送信できませんでした。" -#: mod/message.php:94 +#: mod/message.php:82 msgid "Message collection failure." msgstr "メッセージの収集に失敗しました。" -#: mod/message.php:121 src/Module/Notifications/Introductions.php:135 -#: src/Module/Notifications/Introductions.php:170 -#: src/Module/Notifications/Notification.php:85 +#: mod/message.php:109 src/Module/Notifications/Introductions.php:127 +#: src/Module/Notifications/Introductions.php:162 +#: src/Module/Notifications/Notification.php:71 msgid "Discard" msgstr "捨てる" -#: mod/message.php:134 src/Content/Nav.php:318 view/theme/frio/theme.php:244 +#: mod/message.php:122 src/Content/Nav.php:304 view/theme/frio/theme.php:232 msgid "Messages" msgstr "メッセージ" -#: mod/message.php:147 +#: mod/message.php:135 msgid "Conversation not found." msgstr "会話が見つかりません。" -#: mod/message.php:152 +#: mod/message.php:140 msgid "Message was not deleted." msgstr "メッセージを削除しませんでした。" -#: mod/message.php:167 +#: mod/message.php:155 msgid "Conversation was not removed." msgstr "会話を削除しませんでした。" -#: mod/message.php:180 mod/message.php:285 +#: mod/message.php:168 mod/message.php:273 msgid "Please enter a link URL:" msgstr "リンクURLを入力してください。" -#: mod/message.php:189 +#: mod/message.php:177 msgid "Send Private Message" msgstr "プライベートメッセージを送信する" -#: mod/message.php:190 mod/message.php:345 -#: src/Module/Privacy/PermissionTooltip.php:132 +#: mod/message.php:178 mod/message.php:333 +#: src/Module/Privacy/PermissionTooltip.php:118 msgid "To:" msgstr "送信先:" -#: mod/message.php:191 mod/message.php:346 +#: mod/message.php:179 mod/message.php:334 msgid "Subject:" msgstr "件名" -#: mod/message.php:195 mod/message.php:349 src/Module/Invite.php:171 +#: mod/message.php:183 mod/message.php:337 src/Module/Invite.php:157 msgid "Your message:" msgstr "メッセージ" -#: mod/message.php:198 mod/message.php:353 src/Content/Conversation.php:369 -#: src/Module/Post/Edit.php:131 +#: mod/message.php:186 mod/message.php:341 src/Content/Conversation.php:355 +#: src/Module/Post/Edit.php:117 msgid "Upload photo" msgstr "写真をアップロード" -#: mod/message.php:199 mod/message.php:354 src/Module/Post/Edit.php:135 +#: mod/message.php:187 mod/message.php:342 src/Module/Post/Edit.php:121 msgid "Insert web link" msgstr "webリンクを挿入" -#: mod/message.php:200 mod/message.php:356 mod/photos.php:1290 -#: src/Content/Conversation.php:400 src/Content/Conversation.php:1576 -#: src/Module/Item/Compose.php:213 src/Module/Post/Edit.php:145 -#: src/Object/Post.php:618 +#: mod/message.php:188 mod/message.php:344 mod/photos.php:1255 +#: src/Content/Conversation.php:386 src/Content/Conversation.php:1562 +#: src/Module/Item/Compose.php:199 src/Module/Post/Edit.php:131 +#: src/Object/Post.php:604 msgid "Please wait" msgstr "お待ち下さい" -#: mod/message.php:201 mod/message.php:355 mod/photos.php:693 -#: mod/photos.php:813 mod/photos.php:1090 mod/photos.php:1131 -#: mod/photos.php:1187 mod/photos.php:1267 -#: src/Module/Calendar/Event/Form.php:250 src/Module/Contact/Advanced.php:132 +#: mod/message.php:189 mod/message.php:343 mod/photos.php:658 +#: mod/photos.php:778 mod/photos.php:1055 mod/photos.php:1096 +#: mod/photos.php:1152 mod/photos.php:1232 +#: src/Module/Calendar/Event/Form.php:236 src/Module/Contact/Advanced.php:118 #: src/Module/Contact/Profile.php:370 -#: src/Module/Debug/ActivityPubConversion.php:140 -#: 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 -#: src/Module/Invite.php:178 src/Module/Item/Compose.php:196 -#: src/Module/Moderation/Item/Source.php:79 -#: src/Module/Moderation/Report/Create.php:168 -#: src/Module/Moderation/Report/Create.php:183 -#: src/Module/Moderation/Report/Create.php:211 -#: src/Module/Moderation/Report/Create.php:263 -#: src/Module/Profile/Profile.php: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:1159 view/theme/duepuntozero/config.php:85 -#: view/theme/frio/config.php:150 view/theme/quattro/config.php:87 -#: view/theme/vier/config.php:135 +#: src/Module/Debug/ActivityPubConversion.php:132 +#: src/Module/Debug/Babel.php:307 src/Module/Debug/Localtime.php:50 +#: src/Module/Debug/Probe.php:40 src/Module/Debug/WebFinger.php:37 +#: src/Module/FriendSuggest.php:131 src/Module/Install.php:220 +#: src/Module/Install.php:260 src/Module/Install.php:295 +#: src/Module/Invite.php:164 src/Module/Item/Compose.php:182 +#: src/Module/Moderation/Item/Source.php:71 +#: src/Module/Moderation/Report/Create.php:154 +#: src/Module/Moderation/Report/Create.php:169 +#: src/Module/Moderation/Report/Create.php:197 +#: src/Module/Moderation/Report/Create.php:249 +#: src/Module/Profile/Profile.php:262 +#: src/Module/Settings/Profile/Index.php:248 +#: src/Module/Settings/Server/Action.php:65 src/Module/User/Delegation.php:175 +#: src/Object/Post.php:1145 view/theme/duepuntozero/config.php:73 +#: view/theme/frio/config.php:138 view/theme/quattro/config.php:75 +#: view/theme/vier/config.php:123 msgid "Submit" msgstr "送信する" -#: mod/message.php:222 +#: mod/message.php:210 msgid "No messages." msgstr "メッセージはありません。" -#: mod/message.php:278 +#: mod/message.php:266 msgid "Message not available." msgstr "メッセージは利用できません。" -#: mod/message.php:322 +#: mod/message.php:310 msgid "Delete message" msgstr "メッセージを削除" -#: mod/message.php:324 mod/message.php:453 +#: mod/message.php:312 mod/message.php:441 msgid "D, d M Y - g:i A" msgstr "D、d MY-g:i A" -#: mod/message.php:339 mod/message.php:450 +#: mod/message.php:327 mod/message.php:438 msgid "Delete conversation" msgstr "会話を削除" -#: mod/message.php:341 +#: mod/message.php:329 msgid "" "No secure communications available. You may be able to " "respond from the sender's profile page." msgstr "安全な通信は利用できません。送信者のプロフィールページから返信できる場合があります。" -#: mod/message.php:344 +#: mod/message.php:332 msgid "Send Reply" msgstr "返信する" -#: mod/message.php:424 +#: mod/message.php:412 #, php-format msgid "Unknown sender - %s" msgstr "不明な送信者です - %s" -#: mod/message.php:426 +#: mod/message.php:414 #, php-format msgid "You and %s" msgstr "あなたと%s" -#: mod/message.php:428 +#: mod/message.php:416 #, php-format msgid "%s and You" msgstr "%sとあなた" -#: mod/message.php:456 +#: mod/message.php:444 #, php-format msgid "%d message" msgid_plural "%d messages" msgstr[0] "%dメッセージ" -#: mod/notes.php:52 src/Module/BaseProfile.php:108 +#: mod/notes.php:40 src/Module/BaseProfile.php:94 msgid "Personal Notes" msgstr "個人メモ" -#: mod/notes.php:56 +#: mod/notes.php:44 msgid "Personal notes are visible only by yourself." msgstr "個人メモは自分自身によってのみ見えます。" -#: mod/notes.php:57 src/Content/Text/HTML.php:861 -#: src/Module/Admin/Storage.php:142 src/Module/Filer/SaveTag.php:74 -#: src/Module/Post/Edit.php:129 src/Module/Settings/Channels.php:229 +#: mod/notes.php:45 src/Content/Text/HTML.php:847 +#: src/Module/Admin/Storage.php:128 src/Module/Filer/SaveTag.php:60 +#: src/Module/Post/Edit.php:115 src/Module/Settings/Channels.php:215 msgid "Save" msgstr "保存する" -#: mod/photos.php:65 mod/photos.php:128 mod/photos.php:572 -#: src/Model/Event.php:512 src/Model/Profile.php:234 -#: src/Module/Calendar/Export.php:74 src/Module/Calendar/Show.php:74 -#: src/Module/DFRN/Poll.php:43 src/Module/Feed.php:64 src/Module/HCard.php:51 -#: src/Module/Profile/Common.php:62 src/Module/Profile/Common.php:71 -#: src/Module/Profile/Contacts.php:64 src/Module/Profile/Contacts.php:72 -#: src/Module/Profile/Conversations.php:91 src/Module/Profile/Media.php:56 -#: src/Module/Profile/Photos.php:83 src/Module/Profile/RemoteFollow.php:71 -#: src/Module/Register.php:268 +#: mod/photos.php:54 mod/photos.php:117 mod/photos.php:537 +#: src/Model/Event.php:498 src/Model/Profile.php:213 +#: src/Module/Calendar/Export.php:60 src/Module/Calendar/Show.php:60 +#: src/Module/Feed.php:52 src/Module/HCard.php:37 +#: src/Module/Profile/Common.php:48 src/Module/Profile/Common.php:57 +#: src/Module/Profile/Contacts.php:50 src/Module/Profile/Contacts.php:58 +#: src/Module/Profile/Conversations.php:77 src/Module/Profile/Media.php:42 +#: src/Module/Profile/Photos.php:69 src/Module/Profile/RemoteFollow.php:57 +#: src/Module/Register.php:260 msgid "User not found." msgstr "ユーザーが見つかりません。" -#: mod/photos.php:102 src/Module/BaseProfile.php:68 -#: src/Module/Profile/Photos.php:375 +#: mod/photos.php:91 src/Module/BaseProfile.php:54 +#: src/Module/Profile/Photos.php:361 msgid "Photo Albums" msgstr "フォトアルバム" -#: mod/photos.php:103 src/Module/Profile/Photos.php:376 -#: src/Module/Profile/Photos.php:396 +#: mod/photos.php:92 src/Module/Profile/Photos.php:362 +#: src/Module/Profile/Photos.php:382 msgid "Recent Photos" msgstr "最近の写真" -#: mod/photos.php:105 mod/photos.php:861 src/Module/Profile/Photos.php:378 -#: src/Module/Profile/Photos.php:398 +#: mod/photos.php:94 mod/photos.php:826 src/Module/Profile/Photos.php:364 +#: src/Module/Profile/Photos.php:384 msgid "Upload New Photos" msgstr "新しい写真をアップロード" -#: mod/photos.php:117 src/Module/BaseSettings.php:72 -#: src/Module/Profile/Photos.php:359 +#: mod/photos.php:106 src/Module/BaseSettings.php:58 +#: src/Module/Profile/Photos.php:345 msgid "everybody" msgstr "みなさん" -#: mod/photos.php:153 +#: mod/photos.php:142 msgid "Contact information unavailable" msgstr "コンタクト情報は利用できません" -#: mod/photos.php:182 +#: mod/photos.php:171 msgid "Album not found." msgstr "アルバムが見つかりません。" -#: mod/photos.php:238 +#: mod/photos.php:227 msgid "Album successfully deleted" msgstr "アルバムを削除しました" -#: mod/photos.php:240 +#: mod/photos.php:229 msgid "Album was empty." msgstr "アルバムは空でした。" -#: mod/photos.php:271 +#: mod/photos.php:260 msgid "Failed to delete the photo." msgstr "写真を削除できませんでした" -#: mod/photos.php:539 +#: mod/photos.php:504 msgid "a photo" msgstr "写真" -#: mod/photos.php:539 +#: mod/photos.php:504 #, php-format msgid "%1$s was tagged in %2$s by %3$s" msgstr "%1$sが%2$sで%3$sによってタグ付けされました" -#: mod/photos.php:576 src/Module/Conversation/Community.php:160 -#: src/Module/Directory.php:48 src/Module/Profile/Photos.php:293 -#: src/Module/Search/Index.php:65 +#: mod/photos.php:541 src/Module/Conversation/Community.php:148 +#: src/Module/Directory.php:35 src/Module/Profile/Photos.php:279 +#: src/Module/Search/Index.php:51 msgid "Public access denied." msgstr "パブリックアクセスが拒否されました。" -#: mod/photos.php:581 +#: mod/photos.php:546 msgid "No photos selected" msgstr "写真が選択されていません" -#: mod/photos.php:709 +#: mod/photos.php:674 #, php-format msgid "The maximum accepted image size is %s" msgstr "" -#: mod/photos.php:716 +#: mod/photos.php:681 msgid "Upload Photos" msgstr "写真をアップロードする" -#: mod/photos.php:720 mod/photos.php:809 +#: mod/photos.php:685 mod/photos.php:774 msgid "New album name: " msgstr "新しいアルバム名:" -#: mod/photos.php:721 +#: mod/photos.php:686 msgid "or select existing album:" msgstr "または既存のアルバムを選択:" -#: mod/photos.php:722 +#: mod/photos.php:687 msgid "Do not show a status post for this upload" msgstr "このアップロードのステータス投稿を表示しません" -#: mod/photos.php:725 mod/photos.php:1086 src/Content/Conversation.php:402 -#: src/Module/Calendar/Event/Form.php:253 src/Module/Post/Edit.php:183 +#: mod/photos.php:690 mod/photos.php:1051 src/Content/Conversation.php:388 +#: src/Module/Calendar/Event/Form.php:239 src/Module/Post/Edit.php:169 msgid "Permissions" msgstr "許可" -#: mod/photos.php:790 +#: mod/photos.php:755 msgid "Do you really want to delete this photo album and all its photos?" msgstr "このフォトアルバムとそのすべての写真を本当に削除しますか?" -#: mod/photos.php:791 mod/photos.php:814 +#: mod/photos.php:756 mod/photos.php:779 msgid "Delete Album" msgstr "アルバムを削除" -#: mod/photos.php:792 mod/photos.php:892 src/Content/Conversation.php:417 -#: 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 -#: src/Module/Media/Photo/Browser.php:88 src/Module/Post/Edit.php:167 -#: src/Module/Post/Tag/Remove.php:109 src/Module/Profile/RemoteFollow.php:134 -#: src/Module/Security/TwoFactor/SignOut.php:125 +#: mod/photos.php:757 mod/photos.php:857 src/Content/Conversation.php:403 +#: src/Module/Contact/Follow.php:154 src/Module/Contact/Revoke.php:92 +#: src/Module/Contact/Unfollow.php:112 +#: src/Module/Media/Attachment/Browser.php:63 +#: src/Module/Media/Photo/Browser.php:74 src/Module/Post/Edit.php:153 +#: src/Module/Post/Tag/Remove.php:95 src/Module/Profile/RemoteFollow.php:120 +#: src/Module/Security/TwoFactor/SignOut.php:111 msgid "Cancel" msgstr "キャンセル" -#: mod/photos.php:818 +#: mod/photos.php:783 msgid "Edit Album" msgstr "アルバムを編集" -#: mod/photos.php:819 +#: mod/photos.php:784 msgid "Drop Album" msgstr "アルバムを削除" -#: mod/photos.php:823 +#: mod/photos.php:788 msgid "Show Newest First" msgstr "新しいもの順に表示" -#: mod/photos.php:825 +#: mod/photos.php:790 msgid "Show Oldest First" msgstr "最も古いものを最初に表示" -#: mod/photos.php:846 src/Module/Profile/Photos.php:346 +#: mod/photos.php:811 src/Module/Profile/Photos.php:332 msgid "View Photo" msgstr "写真を見る" -#: mod/photos.php:878 +#: mod/photos.php:843 msgid "Permission denied. Access to this item may be restricted." msgstr "アクセス拒否。この項目へのアクセスは制限される場合があります。" -#: mod/photos.php:880 +#: mod/photos.php:845 msgid "Photo not available" msgstr "写真は利用できません" -#: mod/photos.php:890 +#: mod/photos.php:855 msgid "Do you really want to delete this photo?" msgstr "この写真を本当に削除しますか?" -#: mod/photos.php:891 mod/photos.php:1091 +#: mod/photos.php:856 mod/photos.php:1056 msgid "Delete Photo" msgstr "写真を削除" -#: mod/photos.php:989 +#: mod/photos.php:954 msgid "View photo" msgstr "写真を見る" -#: mod/photos.php:991 +#: mod/photos.php:956 msgid "Edit photo" msgstr "写真を編集する" -#: mod/photos.php:992 +#: mod/photos.php:957 msgid "Delete photo" msgstr "写真を削除" -#: mod/photos.php:993 +#: mod/photos.php:958 msgid "Use as profile photo" msgstr "プロフィール写真として使用" -#: mod/photos.php:1000 +#: mod/photos.php:965 msgid "Private Photo" msgstr "プライベート写真" -#: mod/photos.php:1006 +#: mod/photos.php:971 msgid "View Full Size" msgstr "フルサイズを表示" -#: mod/photos.php:1059 +#: mod/photos.php:1024 msgid "Tags: " msgstr "タグ:" -#: mod/photos.php:1062 +#: mod/photos.php:1027 msgid "[Select tags to remove]" msgstr "[削除するタグを選択]" -#: mod/photos.php:1077 +#: mod/photos.php:1042 msgid "New album name" msgstr "新しいアルバム名" -#: mod/photos.php:1078 +#: mod/photos.php:1043 msgid "Caption" msgstr "キャプション" -#: mod/photos.php:1079 +#: mod/photos.php:1044 msgid "Add a Tag" msgstr "タグを追加する" -#: mod/photos.php:1079 +#: mod/photos.php:1044 msgid "" "Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping" msgstr "例:@ bob、@ Barbara_Jensen、@ jim @ example.com、#California、#camping" -#: mod/photos.php:1080 +#: mod/photos.php:1045 msgid "Do not rotate" msgstr "回転させないでください" -#: mod/photos.php:1081 +#: mod/photos.php:1046 msgid "Rotate CW (right)" msgstr "CWを回転(右)" -#: mod/photos.php:1082 +#: mod/photos.php:1047 msgid "Rotate CCW (left)" msgstr "CCWを回転(左)" -#: mod/photos.php:1128 mod/photos.php:1184 mod/photos.php:1264 -#: src/Module/Contact.php:618 src/Module/Item/Compose.php:195 -#: src/Object/Post.php:1156 +#: mod/photos.php:1093 mod/photos.php:1149 mod/photos.php:1229 +#: src/Module/Contact.php:600 src/Module/Item/Compose.php:181 +#: src/Object/Post.php:1142 msgid "This is you" msgstr "これはあなたです" -#: mod/photos.php:1130 mod/photos.php:1186 mod/photos.php:1266 -#: src/Module/Moderation/Reports.php:110 src/Object/Post.php:612 -#: src/Object/Post.php:1158 +#: mod/photos.php:1095 mod/photos.php:1151 mod/photos.php:1231 +#: src/Module/Moderation/Reports.php:102 src/Object/Post.php:598 +#: src/Object/Post.php:1144 msgid "Comment" msgstr "コメント" -#: mod/photos.php:1132 mod/photos.php:1188 mod/photos.php:1268 -#: src/Content/Conversation.php:414 src/Module/Calendar/Event/Form.php:248 -#: src/Module/Item/Compose.php:208 src/Module/Post/Edit.php:165 -#: src/Object/Post.php:1172 +#: mod/photos.php:1097 mod/photos.php:1153 mod/photos.php:1233 +#: src/Content/Conversation.php:400 src/Module/Calendar/Event/Form.php:234 +#: src/Module/Item/Compose.php:194 src/Module/Post/Edit.php:151 +#: src/Object/Post.php:1158 msgid "Preview" msgstr "プレビュー" -#: mod/photos.php:1133 src/Content/Conversation.php:368 -#: src/Module/Post/Edit.php:130 src/Object/Post.php:1160 +#: mod/photos.php:1098 src/Content/Conversation.php:354 +#: src/Module/Post/Edit.php:116 src/Object/Post.php:1146 msgid "Loading..." msgstr "読み込み中…" -#: mod/photos.php:1225 src/Content/Conversation.php:1498 -#: src/Object/Post.php:274 +#: mod/photos.php:1190 src/Content/Conversation.php:1484 +#: src/Object/Post.php:260 msgid "Select" msgstr "選択" -#: mod/photos.php:1226 src/Content/Conversation.php:1499 -#: src/Module/Moderation/Users/Active.php:136 -#: src/Module/Moderation/Users/Blocked.php:136 -#: src/Module/Moderation/Users/Index.php:151 -#: src/Module/Settings/Connectors.php:244 -#: src/Module/Settings/Server/Index.php:109 +#: mod/photos.php:1191 src/Content/Conversation.php:1485 +#: src/Module/Moderation/Users/Active.php:122 +#: src/Module/Moderation/Users/Blocked.php:122 +#: src/Module/Moderation/Users/Index.php:137 +#: src/Module/Settings/Connectors.php:233 +#: src/Module/Settings/Server/Index.php:95 msgid "Delete" msgstr "削除" -#: mod/photos.php:1287 src/Object/Post.php:440 +#: mod/photos.php:1252 src/Object/Post.php:426 msgid "Like" msgstr "いいね" -#: mod/photos.php:1288 src/Object/Post.php:440 +#: mod/photos.php:1253 src/Object/Post.php:426 msgid "I like this (toggle)" msgstr "私はこれが好きです(トグル)" -#: mod/photos.php:1289 src/Object/Post.php:441 +#: mod/photos.php:1254 src/Object/Post.php:427 msgid "Dislike" msgstr "嫌い" -#: mod/photos.php:1291 src/Object/Post.php:441 +#: mod/photos.php:1256 src/Object/Post.php:427 msgid "I don't like this (toggle)" msgstr "気に入らない(トグル)" -#: mod/photos.php:1313 +#: mod/photos.php:1278 msgid "Map" msgstr "地図" -#: src/App.php:438 +#: src/App.php:432 msgid "No system theme config value set." msgstr "システムテーマの構成値が設定されていません。" -#: src/App.php:546 +#: src/App.php:540 msgid "Apologies but the website is unavailable at the moment." msgstr "" -#: src/App/Page.php:250 +#: src/App/Page.php:236 msgid "Delete this item?" msgstr "この項目を削除しますか?" -#: src/App/Page.php:251 +#: src/App/Page.php:237 msgid "" "Block this author? They won't be able to follow you nor see your public " "posts, and you won't be able to see their posts and their notifications." msgstr "この作者をブロックしますか?その人はあなたをフォローできなくなり、あなたの公開された投稿を見ることができなくなります。また、あなたはその人の投稿や通知を見ることができなくなります。" -#: src/App/Page.php:252 +#: src/App/Page.php:238 msgid "" "Ignore this author? You won't be able to see their posts and their " "notifications." msgstr "" -#: src/App/Page.php:253 +#: src/App/Page.php:239 msgid "Collapse this author's posts?" msgstr "" -#: src/App/Page.php:254 +#: src/App/Page.php:240 msgid "Ignore this author's server?" msgstr "" -#: src/App/Page.php:255 src/Module/Settings/Server/Action.php:61 -#: src/Module/Settings/Server/Index.php:108 +#: src/App/Page.php:241 src/Module/Settings/Server/Action.php:47 +#: src/Module/Settings/Server/Index.php:94 msgid "" "You won't see any content from this server including reshares in your " "Network page, the community pages and individual conversations." msgstr "" -#: src/App/Page.php:257 +#: src/App/Page.php:243 msgid "Like not successful" msgstr "" -#: src/App/Page.php:258 +#: src/App/Page.php:244 msgid "Dislike not successful" msgstr "" -#: src/App/Page.php:259 +#: src/App/Page.php:245 msgid "Sharing not successful" msgstr "" -#: src/App/Page.php:260 +#: src/App/Page.php:246 msgid "Attendance unsuccessful" msgstr "" -#: src/App/Page.php:261 +#: src/App/Page.php:247 msgid "Backend error" msgstr "" -#: src/App/Page.php:262 +#: src/App/Page.php:248 msgid "Network error" msgstr "" -#: src/App/Page.php:265 +#: src/App/Page.php:251 msgid "Drop files here to upload" msgstr "" -#: src/App/Page.php:266 +#: src/App/Page.php:252 msgid "Your browser does not support drag and drop file uploads." msgstr "" -#: src/App/Page.php:267 +#: src/App/Page.php:253 msgid "" "Please use the fallback form below to upload your files like in the olden " "days." msgstr "" -#: src/App/Page.php:268 +#: src/App/Page.php:254 msgid "File is too big ({{filesize}}MiB). Max filesize: {{maxFilesize}}MiB." msgstr "" -#: src/App/Page.php:269 +#: src/App/Page.php:255 msgid "You can't upload files of this type." msgstr "" -#: src/App/Page.php:270 +#: src/App/Page.php:256 msgid "Server responded with {{statusCode}} code." msgstr "" -#: src/App/Page.php:271 +#: src/App/Page.php:257 msgid "Cancel upload" msgstr "" -#: src/App/Page.php:272 +#: src/App/Page.php:258 msgid "Upload canceled." msgstr "" -#: src/App/Page.php:273 +#: src/App/Page.php:259 msgid "Are you sure you want to cancel this upload?" msgstr "" -#: src/App/Page.php:274 +#: src/App/Page.php:260 msgid "Remove file" msgstr "" -#: src/App/Page.php:275 +#: src/App/Page.php:261 msgid "You can't upload any more files." msgstr "" -#: src/App/Page.php:353 +#: src/App/Page.php:339 msgid "toggle mobile" msgstr "モバイルを切り替え" -#: src/App/Router.php:309 +#: src/App/Router.php:295 #, php-format msgid "Method not allowed for this module. Allowed method(s): %s" msgstr "そのメソッドは、このモジュールでは許可されていません。 このメソッド(たち)が許可されています: %s" -#: src/App/Router.php:311 src/Module/HTTPException/PageNotFound.php:49 +#: src/App/Router.php:297 src/Module/HTTPException/PageNotFound.php:35 +#: src/Module/Stats.php:49 msgid "Page not found." msgstr "ページが見つかりません。" -#: src/App/Router.php:323 +#: src/App/Router.php:309 msgid "You must be logged in to use addons. " msgstr "アドオンを使用するにはログインする必要があります。" -#: src/BaseModule.php:407 +#: src/BaseModule.php:393 msgid "" "The form security token was not correct. This probably happened because the " "form has been opened for too long (>3 hours) before submitting it." msgstr "フォームセキュリティトークンが正しくありませんでした。これは、フォームを送信する前にフォームが長時間(3時間以上)開かれたために発生した可能性があります。" -#: src/BaseModule.php:434 +#: src/BaseModule.php:420 msgid "All contacts" msgstr "すべてのコンタクト" -#: src/BaseModule.php:439 src/Content/Conversation/Factory/Channel.php:46 -#: src/Content/Widget.php:240 src/Core/ACL.php:195 src/Module/Contact.php:414 -#: src/Module/Privacy/PermissionTooltip.php:164 -#: src/Module/Privacy/PermissionTooltip.php:186 -#: src/Module/Settings/Channels.php:160 +#: src/BaseModule.php:425 src/Content/Conversation/Factory/Channel.php:32 +#: src/Content/Widget.php:218 src/Core/ACL.php:181 src/Module/Contact.php:395 +#: src/Module/Privacy/PermissionTooltip.php:150 +#: src/Module/Privacy/PermissionTooltip.php:172 +#: src/Module/Settings/Channels.php:146 msgid "Followers" msgstr "フォロワー" -#: src/BaseModule.php:444 src/Content/Widget.php:241 -#: src/Module/Contact.php:417 src/Module/Settings/Channels.php:159 +#: src/BaseModule.php:430 src/Content/Widget.php:219 +#: src/Module/Contact.php:398 src/Module/Settings/Channels.php:145 msgid "Following" msgstr "フォロー中" -#: src/BaseModule.php:449 src/Content/Widget.php:242 -#: src/Module/Contact.php:420 +#: src/BaseModule.php:435 src/Content/Widget.php:220 +#: src/Module/Contact.php:401 msgid "Mutual friends" msgstr "" -#: src/BaseModule.php:457 +#: src/BaseModule.php:443 msgid "Common" msgstr "" -#: src/Console/Addon.php:175 src/Console/Addon.php:199 +#: src/Console/Addon.php:161 src/Console/Addon.php:185 msgid "Addon not found" msgstr "" -#: src/Console/Addon.php:179 +#: src/Console/Addon.php:165 msgid "Addon already enabled" msgstr "" -#: src/Console/Addon.php:203 +#: src/Console/Addon.php:189 msgid "Addon already disabled" msgstr "" -#: src/Console/ArchiveContact.php:106 +#: src/Console/ArchiveContact.php:92 #, php-format msgid "Could not find any unarchived contact entry for this URL (%s)" msgstr "このURL( %s )のアーカイブされていないコンタクトエントリが見つかりませんでした" -#: src/Console/ArchiveContact.php:109 +#: src/Console/ArchiveContact.php:95 msgid "The contact entries have been archived" msgstr "コンタクトエントリがアーカイブされました" -#: src/Console/GlobalCommunityBlock.php:96 -#: src/Module/Moderation/Blocklist/Contact.php:65 +#: src/Console/ClearAvatarCache.php:73 +msgid "" +"The avatar cache needs to be disabled in local.config.php to use this " +"command." +msgstr "" + +#: src/Console/GlobalCommunityBlock.php:82 +#: src/Module/Moderation/Blocklist/Contact.php:51 #, php-format msgid "Could not find any contact entry for this URL (%s)" msgstr "このURL( %s )のコンタクトエントリが見つかりませんでした" -#: src/Console/GlobalCommunityBlock.php:101 -#: src/Module/Moderation/Blocklist/Contact.php:82 +#: src/Console/GlobalCommunityBlock.php:87 +#: src/Module/Moderation/Blocklist/Contact.php:68 msgid "The contact has been blocked from the node" msgstr "このコンタクトはノードからブロックされています" -#: src/Console/MergeContacts.php:75 +#: src/Console/MergeContacts.php:61 #, php-format msgid "%d %s, %d duplicates." msgstr "" -#: src/Console/MergeContacts.php:78 +#: src/Console/MergeContacts.php:64 #, php-format msgid "uri-id is empty for contact %s." msgstr "" -#: src/Console/MergeContacts.php:91 +#: src/Console/MergeContacts.php:77 #, php-format msgid "No valid first contact found for uri-id %d." msgstr "" -#: src/Console/MergeContacts.php:102 +#: src/Console/MergeContacts.php:88 #, php-format msgid "Wrong duplicate found for uri-id %d in %d (url: %s != %s)." msgstr "" -#: src/Console/MergeContacts.php:106 +#: src/Console/MergeContacts.php:92 #, php-format msgid "Wrong duplicate found for uri-id %d in %d (nurl: %s != %s)." msgstr "" -#: src/Console/MergeContacts.php:142 +#: src/Console/MergeContacts.php:128 #, php-format msgid "Deletion of id %d failed" msgstr "" -#: src/Console/MergeContacts.php:144 +#: src/Console/MergeContacts.php:130 #, php-format msgid "Deletion of id %d was successful" msgstr "" -#: src/Console/MergeContacts.php:150 +#: src/Console/MergeContacts.php:136 #, php-format msgid "Updating \"%s\" in \"%s\" from %d to %d" msgstr "" -#: src/Console/MergeContacts.php:152 +#: src/Console/MergeContacts.php:138 msgid " - found" msgstr "" -#: src/Console/MergeContacts.php:159 +#: src/Console/MergeContacts.php:145 msgid " - failed" msgstr "" -#: src/Console/MergeContacts.php:161 +#: src/Console/MergeContacts.php:147 msgid " - success" msgstr "" -#: src/Console/MergeContacts.php:165 +#: src/Console/MergeContacts.php:151 msgid " - deleted" msgstr "" -#: src/Console/MergeContacts.php:168 +#: src/Console/MergeContacts.php:154 msgid " - done" msgstr "" -#: src/Console/MoveToAvatarCache.php:91 +#: src/Console/MoveToAvatarCache.php:77 msgid "The avatar cache needs to be enabled to use this command." msgstr "" -#: src/Console/MoveToAvatarCache.php:109 +#: src/Console/MoveToAvatarCache.php:95 #, php-format msgid "no resource in photo %s" msgstr "" -#: src/Console/MoveToAvatarCache.php:137 +#: src/Console/MoveToAvatarCache.php:123 #, php-format msgid "no photo with id %s" msgstr "" -#: src/Console/MoveToAvatarCache.php:146 +#: src/Console/MoveToAvatarCache.php:132 #, php-format msgid "no image data for photo with id %s" msgstr "" -#: src/Console/MoveToAvatarCache.php:155 +#: src/Console/MoveToAvatarCache.php:141 #, php-format msgid "invalid image for id %s" msgstr "" -#: src/Console/MoveToAvatarCache.php:168 +#: src/Console/MoveToAvatarCache.php:154 #, php-format msgid "Quit on invalid photo %s" msgstr "" -#: src/Console/PostUpdate.php:87 +#: src/Console/PostUpdate.php:73 #, php-format msgid "Post update version number has been set to %s." msgstr "更新後のバージョン番号が %s に設定されました。" -#: src/Console/PostUpdate.php:95 +#: src/Console/PostUpdate.php:81 msgid "Check for pending update actions." msgstr "保留中の更新アクションを確認します。" -#: src/Console/PostUpdate.php:97 +#: src/Console/PostUpdate.php:83 msgid "Done." msgstr "完了しました。" -#: src/Console/PostUpdate.php:99 +#: src/Console/PostUpdate.php:85 msgid "Execute pending post updates." msgstr "保留中の投稿の更新を実行します。" -#: src/Console/PostUpdate.php:105 +#: src/Console/PostUpdate.php:91 msgid "All pending post updates are done." msgstr "保留中の投稿の更新はすべて完了しました。" -#: src/Console/User.php:158 src/Console/User.php:246 +#: src/Console/User.php:144 src/Console/User.php:232 msgid "Enter user nickname: " msgstr "" -#: src/Console/User.php:182 src/Model/User.php:824 -#: src/Module/Api/Twitter/ContactEndpoint.php:74 -#: src/Module/Moderation/Users/Active.php:71 -#: src/Module/Moderation/Users/Blocked.php:71 -#: src/Module/Moderation/Users/Index.php:78 -#: src/Module/Moderation/Users/Pending.php:67 +#: src/Console/User.php:168 src/Model/User.php:831 +#: src/Module/Api/Twitter/ContactEndpoint.php:60 +#: src/Module/Moderation/Users/Active.php:57 +#: src/Module/Moderation/Users/Blocked.php:57 +#: src/Module/Moderation/Users/Index.php:64 +#: src/Module/Moderation/Users/Pending.php:53 msgid "User not found" msgstr "ユーザーが見つかりません" -#: src/Console/User.php:202 +#: src/Console/User.php:188 msgid "Enter new password: " msgstr "新しいパスワードを入力してください:" -#: src/Console/User.php:210 src/Module/Security/PasswordTooLong.php:69 -#: src/Module/Settings/Account.php:75 +#: src/Console/User.php:196 src/Module/Security/PasswordTooLong.php:55 +#: src/Module/Settings/Account.php:61 msgid "Password update failed. Please try again." msgstr "パスワードの更新に失敗しました。もう一度試してください。" -#: src/Console/User.php:213 src/Module/Security/PasswordTooLong.php:72 -#: src/Module/Settings/Account.php:78 +#: src/Console/User.php:199 src/Module/Security/PasswordTooLong.php:58 +#: src/Module/Settings/Account.php:64 msgid "Password changed." msgstr "パスワード変更済み。" -#: src/Console/User.php:238 +#: src/Console/User.php:224 msgid "Enter user name: " msgstr "" -#: src/Console/User.php:254 +#: src/Console/User.php:240 msgid "Enter user email address: " msgstr "" -#: src/Console/User.php:262 +#: src/Console/User.php:248 msgid "Enter a language (optional): " msgstr "" -#: src/Console/User.php:267 +#: src/Console/User.php:253 msgid "Enter URL of an image to use as avatar (optional): " msgstr "" -#: src/Console/User.php:292 +#: src/Console/User.php:278 msgid "User is not pending." msgstr "" -#: src/Console/User.php:324 +#: src/Console/User.php:310 msgid "User has already been marked for deletion." msgstr "" -#: src/Console/User.php:329 +#: src/Console/User.php:315 #, php-format msgid "Type \"yes\" to delete %s" msgstr "" -#: src/Console/User.php:331 +#: src/Console/User.php:317 msgid "Deletion aborted." msgstr "" -#: src/Console/User.php:456 +#: src/Console/User.php:442 msgid "Enter category: " msgstr "" -#: src/Console/User.php:466 +#: src/Console/User.php:452 msgid "Enter key: " msgstr "" -#: src/Console/User.php:500 +#: src/Console/User.php:486 msgid "Enter value: " msgstr "" -#: src/Content/BoundariesPager.php:116 src/Content/Pager.php:171 +#: src/Content/BoundariesPager.php:102 src/Content/Pager.php:157 msgid "newer" msgstr "新しい" -#: src/Content/BoundariesPager.php:124 src/Content/Pager.php:176 +#: src/Content/BoundariesPager.php:110 src/Content/Pager.php:162 msgid "older" msgstr "過去の" -#: src/Content/ContactSelector.php:51 +#: src/Content/ContactSelector.php:37 msgid "Frequently" msgstr "頻度の高い" -#: src/Content/ContactSelector.php:52 +#: src/Content/ContactSelector.php:38 msgid "Hourly" msgstr "毎時" -#: src/Content/ContactSelector.php:53 +#: src/Content/ContactSelector.php:39 msgid "Twice daily" msgstr "1日2回" -#: src/Content/ContactSelector.php:54 +#: src/Content/ContactSelector.php:40 msgid "Daily" msgstr "毎日" -#: src/Content/ContactSelector.php:55 +#: src/Content/ContactSelector.php:41 msgid "Weekly" msgstr "毎週" -#: src/Content/ContactSelector.php:56 +#: src/Content/ContactSelector.php:42 msgid "Monthly" msgstr "毎月" -#: src/Content/ContactSelector.php:126 +#: src/Content/ContactSelector.php:112 msgid "DFRN" msgstr "DFRN" -#: src/Content/ContactSelector.php:127 +#: src/Content/ContactSelector.php:113 msgid "OStatus" msgstr "OStatus" -#: src/Content/ContactSelector.php:128 +#: src/Content/ContactSelector.php:114 msgid "RSS/Atom" msgstr "RSS / Atom" -#: src/Content/ContactSelector.php:129 -#: src/Module/Moderation/Users/Active.php:126 -#: src/Module/Moderation/Users/Blocked.php:126 -#: src/Module/Moderation/Users/Create.php:72 -#: src/Module/Moderation/Users/Deleted.php:83 -#: src/Module/Moderation/Users/Index.php:140 -#: src/Module/Moderation/Users/Index.php:160 -#: src/Module/Moderation/Users/Pending.php:99 +#: src/Content/ContactSelector.php:115 +#: src/Module/Moderation/Users/Active.php:112 +#: src/Module/Moderation/Users/Blocked.php:112 +#: src/Module/Moderation/Users/Create.php:58 +#: src/Module/Moderation/Users/Deleted.php:69 +#: src/Module/Moderation/Users/Index.php:126 +#: src/Module/Moderation/Users/Index.php:146 +#: src/Module/Moderation/Users/Pending.php:85 msgid "Email" msgstr "Eメール" -#: src/Content/ContactSelector.php:130 src/Module/Debug/Babel.php:309 +#: src/Content/ContactSelector.php:116 src/Module/Debug/Babel.php:301 msgid "Diaspora" msgstr "ディアスポラ" -#: src/Content/ContactSelector.php:131 +#: src/Content/ContactSelector.php:117 msgid "Zot!" msgstr "Zot!" -#: src/Content/ContactSelector.php:132 +#: src/Content/ContactSelector.php:118 msgid "LinkedIn" msgstr "LinkedIn" -#: src/Content/ContactSelector.php:133 +#: src/Content/ContactSelector.php:119 msgid "XMPP/IM" msgstr "XMPP / IM" -#: src/Content/ContactSelector.php:134 +#: src/Content/ContactSelector.php:120 msgid "MySpace" msgstr "MySpace" -#: src/Content/ContactSelector.php:135 +#: src/Content/ContactSelector.php:121 msgid "Google+" msgstr "Google+" -#: src/Content/ContactSelector.php:136 +#: src/Content/ContactSelector.php:122 msgid "pump.io" msgstr "pump.io" -#: src/Content/ContactSelector.php:137 +#: src/Content/ContactSelector.php:123 msgid "Twitter" msgstr "Twitter" -#: src/Content/ContactSelector.php:138 +#: src/Content/ContactSelector.php:124 msgid "Discourse" msgstr "Discourse" -#: src/Content/ContactSelector.php:139 +#: src/Content/ContactSelector.php:125 msgid "Diaspora Connector" msgstr "Diaspora コネクタ" -#: src/Content/ContactSelector.php:140 +#: src/Content/ContactSelector.php:126 msgid "GNU Social Connector" msgstr "GNU Social Connector" -#: src/Content/ContactSelector.php:141 +#: src/Content/ContactSelector.php:127 msgid "ActivityPub" msgstr "ActivityPub" -#: src/Content/ContactSelector.php:142 +#: src/Content/ContactSelector.php:128 msgid "pnut" msgstr "pnut" -#: src/Content/ContactSelector.php:143 +#: src/Content/ContactSelector.php:129 msgid "Tumblr" msgstr "" -#: src/Content/ContactSelector.php:144 +#: src/Content/ContactSelector.php:130 msgid "Bluesky" msgstr "" -#: src/Content/ContactSelector.php:180 +#: src/Content/ContactSelector.php:166 #, php-format msgid "%s (via %s)" msgstr "%s (経由: %s)" -#: src/Content/Conversation.php:226 +#: src/Content/Conversation.php:212 msgid "and" msgstr "と" -#: src/Content/Conversation.php:229 +#: src/Content/Conversation.php:215 #, php-format msgid "and %d other people" msgstr "と他 %d 人" -#: src/Content/Conversation.php:235 +#: src/Content/Conversation.php:221 #, php-format msgid "%2$s likes this." msgid_plural "%2$s like this." msgstr[0] "" -#: src/Content/Conversation.php:237 +#: src/Content/Conversation.php:223 #, php-format msgid "%2$s doesn't like this." msgid_plural "%2$s don't like this." msgstr[0] "" -#: src/Content/Conversation.php:239 +#: src/Content/Conversation.php:225 #, php-format msgid "%2$s attends." msgid_plural "%2$s attend." msgstr[0] "" -#: src/Content/Conversation.php:241 +#: src/Content/Conversation.php:227 #, php-format msgid "%2$s doesn't attend." msgid_plural "%2$s don't attend." msgstr[0] "" -#: src/Content/Conversation.php:243 +#: src/Content/Conversation.php:229 #, php-format msgid "%2$s attends maybe." msgid_plural "%2$s attend maybe." msgstr[0] "" -#: src/Content/Conversation.php:245 +#: src/Content/Conversation.php:231 #, php-format msgid "%2$s reshared this." msgid_plural "%2$s reshared this." msgstr[0] "" -#: src/Content/Conversation.php:276 +#: src/Content/Conversation.php:262 #, php-format msgid " likes this" msgid_plural " like this" msgstr[0] "" -#: src/Content/Conversation.php:279 +#: src/Content/Conversation.php:265 #, php-format msgid " doesn't like this" msgid_plural " don't like this" msgstr[0] "" -#: src/Content/Conversation.php:282 +#: src/Content/Conversation.php:268 #, php-format msgid " attends" msgid_plural " attend" msgstr[0] "" -#: src/Content/Conversation.php:285 +#: src/Content/Conversation.php:271 #, php-format msgid " doesn't attend" msgid_plural " don't attend" msgstr[0] "" -#: src/Content/Conversation.php:288 +#: src/Content/Conversation.php:274 #, php-format msgid " attends maybe" msgid_plural " attend maybe" msgstr[0] "" -#: src/Content/Conversation.php:291 +#: src/Content/Conversation.php:277 #, php-format msgid " reshared this" msgid_plural " reshared this" msgstr[0] "" -#: src/Content/Conversation.php:337 +#: src/Content/Conversation.php:323 msgid "Visible to everybody" msgstr "すべての人 が閲覧可能です" -#: src/Content/Conversation.php:338 src/Module/Item/Compose.php:207 -#: src/Object/Post.php:1171 +#: src/Content/Conversation.php:324 src/Module/Item/Compose.php:193 +#: src/Object/Post.php:1157 msgid "Please enter a image/video/audio/webpage URL:" msgstr "画像/動画/音声/ウェブページのURLを入力してください:" -#: src/Content/Conversation.php:339 +#: src/Content/Conversation.php:325 msgid "Tag term:" msgstr "用語のタグ付け:" -#: src/Content/Conversation.php:340 src/Module/Filer/SaveTag.php:73 +#: src/Content/Conversation.php:326 src/Module/Filer/SaveTag.php:59 msgid "Save to Folder:" msgstr "保存先のフォルダ:" -#: src/Content/Conversation.php:341 +#: src/Content/Conversation.php:327 msgid "Where are you right now?" msgstr "どこにいますか?:" -#: src/Content/Conversation.php:342 +#: src/Content/Conversation.php:328 msgid "Delete item(s)?" msgstr "これ(ら)の項目を削除しますか?" -#: src/Content/Conversation.php:354 src/Module/Item/Compose.php:182 +#: src/Content/Conversation.php:340 src/Module/Item/Compose.php:168 msgid "Created at" msgstr "" -#: src/Content/Conversation.php:364 +#: src/Content/Conversation.php:350 msgid "New Post" msgstr "新しい投稿" -#: src/Content/Conversation.php:367 +#: src/Content/Conversation.php:353 msgid "Share" msgstr "共有" -#: src/Content/Conversation.php:370 src/Module/Post/Edit.php:132 +#: src/Content/Conversation.php:356 src/Module/Post/Edit.php:118 msgid "upload photo" msgstr "写真をアップロード" -#: src/Content/Conversation.php:371 src/Module/Post/Edit.php:133 +#: src/Content/Conversation.php:357 src/Module/Post/Edit.php:119 msgid "Attach file" msgstr "ファイルを添付" -#: src/Content/Conversation.php:372 src/Module/Post/Edit.php:134 +#: src/Content/Conversation.php:358 src/Module/Post/Edit.php:120 msgid "attach file" msgstr "ファイルを添付" -#: src/Content/Conversation.php:373 src/Module/Item/Compose.php:197 -#: src/Module/Post/Edit.php:171 src/Object/Post.php:1161 +#: src/Content/Conversation.php:359 src/Module/Item/Compose.php:183 +#: src/Module/Post/Edit.php:157 src/Object/Post.php:1147 msgid "Bold" msgstr "太字" -#: src/Content/Conversation.php:374 src/Module/Item/Compose.php:198 -#: src/Module/Post/Edit.php:172 src/Object/Post.php:1162 +#: src/Content/Conversation.php:360 src/Module/Item/Compose.php:184 +#: src/Module/Post/Edit.php:158 src/Object/Post.php:1148 msgid "Italic" msgstr "斜体" -#: src/Content/Conversation.php:375 src/Module/Item/Compose.php:199 -#: src/Module/Post/Edit.php:173 src/Object/Post.php:1163 +#: src/Content/Conversation.php:361 src/Module/Item/Compose.php:185 +#: src/Module/Post/Edit.php:159 src/Object/Post.php:1149 msgid "Underline" msgstr "下線" -#: src/Content/Conversation.php:376 src/Module/Item/Compose.php:200 -#: src/Module/Post/Edit.php:174 src/Object/Post.php:1165 +#: src/Content/Conversation.php:362 src/Module/Item/Compose.php:186 +#: src/Module/Post/Edit.php:160 src/Object/Post.php:1151 msgid "Quote" msgstr "引用" -#: src/Content/Conversation.php:377 src/Module/Item/Compose.php:201 -#: src/Module/Post/Edit.php:175 src/Object/Post.php:1166 +#: src/Content/Conversation.php:363 src/Module/Item/Compose.php:187 +#: src/Module/Post/Edit.php:161 src/Object/Post.php:1152 msgid "Add emojis" msgstr "" -#: src/Content/Conversation.php:378 src/Module/Item/Compose.php:202 -#: src/Object/Post.php:1164 +#: src/Content/Conversation.php:364 src/Module/Item/Compose.php:188 +#: src/Object/Post.php:1150 msgid "Content Warning" msgstr "" -#: src/Content/Conversation.php:379 src/Module/Item/Compose.php:203 -#: src/Module/Post/Edit.php:176 src/Object/Post.php:1167 +#: src/Content/Conversation.php:365 src/Module/Item/Compose.php:189 +#: src/Module/Post/Edit.php:162 src/Object/Post.php:1153 msgid "Code" msgstr "コード" -#: src/Content/Conversation.php:380 src/Module/Item/Compose.php:204 -#: src/Object/Post.php:1168 +#: src/Content/Conversation.php:366 src/Module/Item/Compose.php:190 +#: src/Object/Post.php:1154 msgid "Image" msgstr "画像" -#: src/Content/Conversation.php:381 src/Module/Item/Compose.php:205 -#: src/Module/Post/Edit.php:177 src/Object/Post.php:1169 +#: src/Content/Conversation.php:367 src/Module/Item/Compose.php:191 +#: src/Module/Post/Edit.php:163 src/Object/Post.php:1155 msgid "Link" msgstr "リンク" -#: src/Content/Conversation.php:382 src/Module/Item/Compose.php:206 -#: src/Module/Post/Edit.php:178 src/Object/Post.php:1170 +#: src/Content/Conversation.php:368 src/Module/Item/Compose.php:192 +#: src/Module/Post/Edit.php:164 src/Object/Post.php:1156 msgid "Link or Media" msgstr "リンク/メディア" -#: src/Content/Conversation.php:383 +#: src/Content/Conversation.php:369 msgid "Video" msgstr "動画" -#: src/Content/Conversation.php:384 src/Module/Item/Compose.php:209 -#: src/Module/Post/Edit.php:141 +#: src/Content/Conversation.php:370 src/Module/Item/Compose.php:195 +#: src/Module/Post/Edit.php:127 msgid "Set your location" msgstr "現在地を設定" -#: src/Content/Conversation.php:385 src/Module/Post/Edit.php:142 +#: src/Content/Conversation.php:371 src/Module/Post/Edit.php:128 msgid "set location" msgstr "現在地を設定" -#: src/Content/Conversation.php:386 src/Module/Post/Edit.php:143 +#: src/Content/Conversation.php:372 src/Module/Post/Edit.php:129 msgid "Clear browser location" msgstr "ブラウザの現在地を解除" -#: src/Content/Conversation.php:387 src/Module/Post/Edit.php:144 +#: src/Content/Conversation.php:373 src/Module/Post/Edit.php:130 msgid "clear location" msgstr "現在地を解除" -#: src/Content/Conversation.php:389 src/Module/Item/Compose.php:214 -#: src/Module/Post/Edit.php:157 +#: src/Content/Conversation.php:375 src/Module/Item/Compose.php:200 +#: src/Module/Post/Edit.php:143 msgid "Set title" msgstr "件名を設定" -#: src/Content/Conversation.php:391 src/Module/Item/Compose.php:215 -#: src/Module/Post/Edit.php:159 +#: src/Content/Conversation.php:377 src/Module/Item/Compose.php:201 +#: src/Module/Post/Edit.php:145 msgid "Categories (comma-separated list)" msgstr "カテゴリ(半角カンマ区切り)" -#: src/Content/Conversation.php:396 src/Module/Item/Compose.php:231 +#: src/Content/Conversation.php:382 src/Module/Item/Compose.php:217 msgid "Scheduled at" msgstr "" -#: src/Content/Conversation.php:401 src/Module/Post/Edit.php:146 +#: src/Content/Conversation.php:387 src/Module/Post/Edit.php:132 msgid "Permission settings" msgstr "権限設定" -#: src/Content/Conversation.php:410 src/Module/Post/Edit.php:155 +#: src/Content/Conversation.php:396 src/Module/Post/Edit.php:141 msgid "Public post" msgstr "一般公開の投稿" -#: src/Content/Conversation.php:424 src/Content/Widget/VCard.php:131 -#: src/Model/Profile.php:483 src/Module/Admin/Logs/View.php:94 -#: src/Module/Post/Edit.php:181 +#: src/Content/Conversation.php:410 src/Content/Widget/VCard.php:117 +#: src/Model/Profile.php:462 src/Module/Admin/Logs/View.php:80 +#: src/Module/Post/Edit.php:167 msgid "Message" msgstr "メッセージ" -#: src/Content/Conversation.php:425 src/Module/Post/Edit.php:182 -#: src/Module/Settings/TwoFactor/Trusted.php:143 +#: src/Content/Conversation.php:411 src/Module/Post/Edit.php:168 +#: src/Module/Settings/TwoFactor/Trusted.php:129 msgid "Browser" msgstr "ブラウザ" -#: src/Content/Conversation.php:427 src/Module/Post/Edit.php:185 +#: src/Content/Conversation.php:413 src/Module/Post/Edit.php:171 msgid "Open Compose page" msgstr "作成ページを開く" -#: src/Content/Conversation.php:594 +#: src/Content/Conversation.php:580 msgid "remove" msgstr "削除" -#: src/Content/Conversation.php:598 +#: src/Content/Conversation.php:584 msgid "Delete Selected Items" msgstr "選択した項目を削除" -#: src/Content/Conversation.php:726 src/Content/Conversation.php:729 -#: src/Content/Conversation.php:732 src/Content/Conversation.php:735 -#: src/Content/Conversation.php:738 +#: src/Content/Conversation.php:712 src/Content/Conversation.php:715 +#: src/Content/Conversation.php:718 src/Content/Conversation.php:721 +#: src/Content/Conversation.php:724 #, php-format msgid "You had been addressed (%s)." msgstr "" -#: src/Content/Conversation.php:741 +#: src/Content/Conversation.php:727 #, php-format msgid "You are following %s." msgstr "" -#: src/Content/Conversation.php:746 +#: src/Content/Conversation.php:732 #, php-format msgid "You subscribed to %s." msgstr "" -#: src/Content/Conversation.php:748 +#: src/Content/Conversation.php:734 msgid "You subscribed to one or more tags in this post." msgstr "" -#: src/Content/Conversation.php:768 +#: src/Content/Conversation.php:754 #, php-format msgid "%s reshared this." msgstr "%s が再共有しました。" -#: src/Content/Conversation.php:770 +#: src/Content/Conversation.php:756 msgid "Reshared" msgstr "" -#: src/Content/Conversation.php:770 +#: src/Content/Conversation.php:756 #, php-format msgid "Reshared by %s <%s>" msgstr "" -#: src/Content/Conversation.php:773 +#: src/Content/Conversation.php:759 #, php-format msgid "%s is participating in this thread." msgstr "" -#: src/Content/Conversation.php:776 +#: src/Content/Conversation.php:762 msgid "Stored for general reasons" msgstr "" -#: src/Content/Conversation.php:779 +#: src/Content/Conversation.php:765 msgid "Global post" msgstr "" -#: src/Content/Conversation.php:782 +#: src/Content/Conversation.php:768 msgid "Sent via an relay server" msgstr "" -#: src/Content/Conversation.php:782 +#: src/Content/Conversation.php:768 #, php-format msgid "Sent via the relay server %s <%s>" msgstr "" -#: src/Content/Conversation.php:785 +#: src/Content/Conversation.php:771 msgid "Fetched" msgstr "" -#: src/Content/Conversation.php:785 +#: src/Content/Conversation.php:771 #, php-format msgid "Fetched because of %s <%s>" msgstr "" -#: src/Content/Conversation.php:788 +#: src/Content/Conversation.php:774 msgid "Stored because of a child post to complete this thread." msgstr "" -#: src/Content/Conversation.php:791 +#: src/Content/Conversation.php:777 msgid "Local delivery" msgstr "" -#: src/Content/Conversation.php:794 +#: src/Content/Conversation.php:780 msgid "Stored because of your activity (like, comment, star, ...)" msgstr "" -#: src/Content/Conversation.php:797 +#: src/Content/Conversation.php:783 msgid "Distributed" msgstr "" -#: src/Content/Conversation.php:800 +#: src/Content/Conversation.php:786 msgid "Pushed to us" msgstr "" -#: src/Content/Conversation.php:1518 src/Object/Post.php:261 +#: src/Content/Conversation.php:1504 src/Object/Post.php:247 msgid "Pinned item" msgstr "ピン留め項目" -#: src/Content/Conversation.php:1535 src/Object/Post.php:555 -#: src/Object/Post.php:556 +#: src/Content/Conversation.php:1521 src/Object/Post.php:541 +#: src/Object/Post.php:542 #, php-format msgid "View %s's profile @ %s" msgstr "%sのプロフィールを確認 @ %s" -#: src/Content/Conversation.php:1549 src/Object/Post.php:543 +#: src/Content/Conversation.php:1535 src/Object/Post.php:529 msgid "Categories:" msgstr "カテゴリ:" -#: src/Content/Conversation.php:1550 src/Object/Post.php:544 +#: src/Content/Conversation.php:1536 src/Object/Post.php:530 msgid "Filed under:" msgstr "格納先:" -#: src/Content/Conversation.php:1558 src/Object/Post.php:570 +#: src/Content/Conversation.php:1544 src/Object/Post.php:556 #, php-format msgid "%s from %s" msgstr "%s から %s" -#: src/Content/Conversation.php:1574 +#: src/Content/Conversation.php:1560 msgid "View in context" msgstr "文脈で表示する" -#: src/Content/Conversation/Factory/Channel.php:42 +#: src/Content/Conversation/Factory/Channel.php:28 msgid "For you" msgstr "" -#: src/Content/Conversation/Factory/Channel.php:42 +#: src/Content/Conversation/Factory/Channel.php:28 msgid "Posts from contacts you interact with and who interact with you" msgstr "" -#: src/Content/Conversation/Factory/Channel.php:43 +#: src/Content/Conversation/Factory/Channel.php:29 msgid "Discover" msgstr "" -#: src/Content/Conversation/Factory/Channel.php:43 +#: src/Content/Conversation/Factory/Channel.php:29 msgid "Posts from accounts that you don't follow, but that you might like." msgstr "" -#: src/Content/Conversation/Factory/Channel.php:44 +#: src/Content/Conversation/Factory/Channel.php:30 msgid "What's Hot" msgstr "" -#: src/Content/Conversation/Factory/Channel.php:44 +#: src/Content/Conversation/Factory/Channel.php:30 msgid "Posts with a lot of interactions" msgstr "" -#: src/Content/Conversation/Factory/Channel.php:45 +#: src/Content/Conversation/Factory/Channel.php:31 #, php-format msgid "Posts in %s" msgstr "" -#: src/Content/Conversation/Factory/Channel.php:46 +#: src/Content/Conversation/Factory/Channel.php:32 msgid "Posts from your followers that you don't follow" msgstr "" -#: src/Content/Conversation/Factory/Channel.php:47 +#: src/Content/Conversation/Factory/Channel.php:33 msgid "Sharers of sharers" msgstr "" -#: src/Content/Conversation/Factory/Channel.php:47 +#: src/Content/Conversation/Factory/Channel.php:33 msgid "Posts from accounts that are followed by accounts that you follow" msgstr "" -#: src/Content/Conversation/Factory/Channel.php:48 +#: src/Content/Conversation/Factory/Channel.php:34 msgid "Quiet sharers" msgstr "" -#: src/Content/Conversation/Factory/Channel.php:48 +#: src/Content/Conversation/Factory/Channel.php:34 msgid "Posts from accounts that you follow but who don't post very often" msgstr "" -#: src/Content/Conversation/Factory/Channel.php:49 -#: src/Module/Settings/Channels.php:199 src/Module/Settings/Channels.php:220 +#: src/Content/Conversation/Factory/Channel.php:35 +#: src/Module/Settings/Channels.php:185 src/Module/Settings/Channels.php:206 msgid "Images" msgstr "" -#: src/Content/Conversation/Factory/Channel.php:49 +#: src/Content/Conversation/Factory/Channel.php:35 msgid "Posts with images" msgstr "" -#: src/Content/Conversation/Factory/Channel.php:50 -#: src/Module/Settings/Channels.php:201 src/Module/Settings/Channels.php:222 +#: src/Content/Conversation/Factory/Channel.php:36 +#: src/Module/Settings/Channels.php:187 src/Module/Settings/Channels.php:208 msgid "Audio" msgstr "" -#: src/Content/Conversation/Factory/Channel.php:50 +#: src/Content/Conversation/Factory/Channel.php:36 msgid "Posts with audio" msgstr "" -#: src/Content/Conversation/Factory/Channel.php:51 -#: src/Module/Settings/Channels.php:200 src/Module/Settings/Channels.php:221 +#: src/Content/Conversation/Factory/Channel.php:37 +#: src/Module/Settings/Channels.php:186 src/Module/Settings/Channels.php:207 msgid "Videos" msgstr "" -#: src/Content/Conversation/Factory/Channel.php:51 +#: src/Content/Conversation/Factory/Channel.php:37 msgid "Posts with videos" msgstr "" -#: src/Content/Conversation/Factory/Community.php:43 +#: src/Content/Conversation/Factory/Community.php:29 msgid "Local Community" msgstr "ローカル コミュニティ" -#: src/Content/Conversation/Factory/Community.php:43 +#: src/Content/Conversation/Factory/Community.php:29 msgid "Posts from local users on this server" msgstr "このサーバー上のローカルユーザーからの投稿" -#: src/Content/Conversation/Factory/Community.php:47 -#: src/Module/Settings/Channels.php:150 src/Module/Settings/Channels.php:155 +#: src/Content/Conversation/Factory/Community.php:33 +#: src/Module/Settings/Channels.php:136 src/Module/Settings/Channels.php:141 msgid "Global Community" msgstr "グローバルコミュニティ" -#: src/Content/Conversation/Factory/Community.php:47 +#: src/Content/Conversation/Factory/Community.php:33 msgid "Posts from users of the whole federated network" msgstr "フェデレーションネットワーク全体のユーザーからの投稿" -#: src/Content/Conversation/Factory/Network.php:38 -#: src/Module/Settings/Channels.php:156 +#: src/Content/Conversation/Factory/Network.php:24 +#: src/Module/Settings/Channels.php:142 msgid "Latest Activity" msgstr "最近の操作" -#: src/Content/Conversation/Factory/Network.php:38 +#: src/Content/Conversation/Factory/Network.php:24 msgid "Sort by latest activity" msgstr "最終更新順に並び替え" -#: src/Content/Conversation/Factory/Network.php:39 -#: src/Module/Settings/Channels.php:157 +#: src/Content/Conversation/Factory/Network.php:25 +#: src/Module/Settings/Channels.php:143 msgid "Latest Posts" msgstr "最新の投稿" -#: src/Content/Conversation/Factory/Network.php:39 +#: src/Content/Conversation/Factory/Network.php:25 msgid "Sort by post received date" msgstr "投稿を受信した順に並び替え" -#: src/Content/Conversation/Factory/Network.php:40 -#: src/Module/Settings/Channels.php:158 +#: src/Content/Conversation/Factory/Network.php:26 +#: src/Module/Settings/Channels.php:144 msgid "Latest Creation" msgstr "" -#: src/Content/Conversation/Factory/Network.php:40 +#: src/Content/Conversation/Factory/Network.php:26 msgid "Sort by post creation date" msgstr "" -#: src/Content/Conversation/Factory/Network.php:41 -#: src/Module/Settings/Profile/Index.php:260 +#: src/Content/Conversation/Factory/Network.php:27 +#: src/Module/Settings/Profile/Index.php:251 msgid "Personal" msgstr "パーソナル" -#: src/Content/Conversation/Factory/Network.php:41 +#: src/Content/Conversation/Factory/Network.php:27 msgid "Posts that mention or involve you" msgstr "あなたに言及または関与している投稿" -#: src/Content/Conversation/Factory/Network.php:42 src/Object/Post.php:411 +#: src/Content/Conversation/Factory/Network.php:28 src/Object/Post.php:397 msgid "Starred" msgstr "スター付き" -#: src/Content/Conversation/Factory/Network.php:42 +#: src/Content/Conversation/Factory/Network.php:28 msgid "Favourite Posts" msgstr "お気に入りの投稿" -#: src/Content/Feature.php:107 +#: src/Content/Feature.php:93 msgid "General Features" msgstr "一般的な機能" -#: src/Content/Feature.php:109 +#: src/Content/Feature.php:95 msgid "Photo Location" msgstr "写真の場所" -#: src/Content/Feature.php:109 +#: src/Content/Feature.php:95 msgid "" "Photo metadata is normally stripped. This extracts the location (if present)" " prior to stripping metadata and links it to a map." msgstr "通常、写真のメタデータは削除されます。これにより、メタデータを除去する前に場所(存在する場合)が抽出され、マップにリンクされます。" -#: src/Content/Feature.php:110 +#: src/Content/Feature.php:96 msgid "Display the community in the navigation" msgstr "" -#: src/Content/Feature.php:110 +#: src/Content/Feature.php:96 msgid "" "If enabled, the community can be accessed via the navigation menu. " "Independent from this setting, the community timelines can always be " "accessed via the channels." msgstr "" -#: src/Content/Feature.php:115 +#: src/Content/Feature.php:101 msgid "Post Composition Features" msgstr "合成後の機能" -#: src/Content/Feature.php:116 +#: src/Content/Feature.php:102 msgid "Explicit Mentions" msgstr "明示的な言及" -#: src/Content/Feature.php:116 +#: src/Content/Feature.php:102 msgid "" "Add explicit mentions to comment box for manual control over who gets " "mentioned in replies." msgstr "コメントボックスに明示的なメンションを追加して、返信の通知先をカスタマイズします。" -#: src/Content/Feature.php:117 +#: src/Content/Feature.php:103 msgid "Add an abstract from ActivityPub content warnings" msgstr "" -#: src/Content/Feature.php:117 +#: src/Content/Feature.php:103 msgid "" "Add an abstract when commenting on ActivityPub posts with a content warning." " Abstracts are displayed as content warning on systems like Mastodon or " "Pleroma." msgstr "" -#: src/Content/Feature.php:122 +#: src/Content/Feature.php:108 msgid "Post/Comment Tools" msgstr "投稿/コメントツール" -#: src/Content/Feature.php:123 +#: src/Content/Feature.php:109 msgid "Post Categories" msgstr "投稿カテゴリ" -#: src/Content/Feature.php:123 +#: src/Content/Feature.php:109 msgid "Add categories to your posts" msgstr "投稿にカテゴリを追加する" -#: src/Content/Feature.php:128 +#: src/Content/Feature.php:114 msgid "Network Widgets" msgstr "" -#: src/Content/Feature.php:129 src/Content/Widget.php:216 -#: src/Model/Circle.php:601 src/Module/Contact.php:400 -#: src/Module/Welcome.php:76 +#: src/Content/Feature.php:115 src/Content/Widget.php:194 +#: src/Model/Circle.php:587 src/Module/Contact.php:381 +#: src/Module/Welcome.php:62 msgid "Circles" msgstr "" -#: src/Content/Feature.php:129 +#: src/Content/Feature.php:115 msgid "" "Display posts that have been created by accounts of the selected circle." msgstr "" -#: src/Content/Feature.php:130 src/Content/GroupManager.php:147 -#: src/Content/Nav.php:278 src/Content/Text/HTML.php:882 -#: src/Content/Widget.php:538 src/Model/User.php:1390 +#: src/Content/Feature.php:116 src/Content/GroupManager.php:133 +#: src/Content/Nav.php:264 src/Content/Text/HTML.php:868 +#: src/Content/Widget.php:516 src/Model/User.php:1390 msgid "Groups" msgstr "" -#: src/Content/Feature.php:130 +#: src/Content/Feature.php:116 msgid "Display posts that have been distributed by the selected group." msgstr "" -#: src/Content/Feature.php:131 src/Content/Widget.php:507 +#: src/Content/Feature.php:117 src/Content/Widget.php:485 msgid "Archives" msgstr "アーカイブ" -#: src/Content/Feature.php:131 +#: src/Content/Feature.php:117 msgid "Display an archive where posts can be selected by month and year." msgstr "" -#: src/Content/Feature.php:132 src/Content/Widget.php:289 +#: src/Content/Feature.php:118 src/Content/Widget.php:267 msgid "Protocols" msgstr "プロトコル" -#: src/Content/Feature.php:132 +#: src/Content/Feature.php:118 msgid "Display posts with the selected protocols." msgstr "" -#: src/Content/Feature.php:133 src/Content/Widget.php:544 -#: src/Module/Settings/Account.php:442 +#: src/Content/Feature.php:119 src/Content/Widget.php:522 +#: src/Module/Settings/Account.php:433 msgid "Account Types" msgstr "アカウントの種類" -#: src/Content/Feature.php:133 +#: src/Content/Feature.php:119 msgid "Display posts done by accounts with the selected account type." msgstr "" -#: src/Content/Feature.php:134 src/Content/Widget.php:593 -#: src/Module/Admin/Site.php:472 src/Module/BaseSettings.php:125 -#: src/Module/Settings/Channels.php:225 src/Module/Settings/Display.php:315 +#: src/Content/Feature.php:120 src/Content/Widget.php:571 +#: src/Module/Admin/Site.php:464 src/Module/BaseSettings.php:111 +#: src/Module/Settings/Channels.php:211 src/Module/Settings/Display.php:301 msgid "Channels" msgstr "" -#: src/Content/Feature.php:134 +#: src/Content/Feature.php:120 msgid "Display posts in the system channels and user defined channels." msgstr "" -#: src/Content/Feature.php:135 src/Content/Widget/SavedSearches.php:60 +#: src/Content/Feature.php:121 src/Content/Widget/SavedSearches.php:46 msgid "Saved Searches" msgstr "保存された検索" -#: src/Content/Feature.php:135 +#: src/Content/Feature.php:121 msgid "Display posts that contain subscribed hashtags." msgstr "" -#: src/Content/Feature.php:136 src/Content/Widget.php:319 +#: src/Content/Feature.php:122 src/Content/Widget.php:297 msgid "Saved Folders" msgstr "保存されたフォルダー" -#: src/Content/Feature.php:136 +#: src/Content/Feature.php:122 msgid "Display a list of folders in which posts are stored." msgstr "" -#: src/Content/Feature.php:137 src/Module/Conversation/Timeline.php:199 +#: src/Content/Feature.php:123 src/Module/Conversation/Timeline.php:186 msgid "Own Contacts" msgstr "" -#: src/Content/Feature.php:137 +#: src/Content/Feature.php:123 msgid "" "Include or exclude posts from subscribed accounts. This widget is not " "visible on all channels." msgstr "" -#: src/Content/Feature.php:138 +#: src/Content/Feature.php:124 msgid "Trending Tags" msgstr "トレンドタグ" -#: src/Content/Feature.php:138 +#: src/Content/Feature.php:124 msgid "Display a list of the most popular tags in recent public posts." msgstr "" -#: src/Content/Feature.php:143 +#: src/Content/Feature.php:129 msgid "Advanced Profile Settings" msgstr "高度なプロフィール設定" -#: src/Content/Feature.php:144 +#: src/Content/Feature.php:130 msgid "Tag Cloud" msgstr "タグクラウド" -#: src/Content/Feature.php:144 +#: src/Content/Feature.php:130 msgid "Provide a personal tag cloud on your profile page" msgstr "プロフィールページで個人タグクラウドを提供する" -#: src/Content/Feature.php:145 +#: src/Content/Feature.php:131 msgid "Display Membership Date" msgstr "会員日を表示する" -#: src/Content/Feature.php:145 +#: src/Content/Feature.php:131 msgid "Display membership date in profile" msgstr "プロフィールにメンバーシップ日を表示する" -#: src/Content/Feature.php:150 +#: src/Content/Feature.php:136 msgid "Advanced Calendar Settings" msgstr "" -#: src/Content/Feature.php:151 +#: src/Content/Feature.php:137 msgid "Allow anonymous access to your calendar" msgstr "" -#: src/Content/Feature.php:151 +#: src/Content/Feature.php:137 msgid "" "Allows anonymous visitors to consult your calendar and your public events. " "Contact birthday events are private to you." msgstr "" -#: src/Content/GroupManager.php:149 +#: src/Content/GroupManager.php:135 msgid "External link to group" msgstr "" -#: src/Content/GroupManager.php:153 src/Content/Widget.php:513 +#: src/Content/GroupManager.php:139 src/Content/Widget.php:491 msgid "show less" msgstr "" -#: src/Content/GroupManager.php:154 src/Content/Widget.php:411 -#: src/Content/Widget.php:514 +#: src/Content/GroupManager.php:140 src/Content/Widget.php:389 +#: src/Content/Widget.php:492 msgid "show more" msgstr "もっと見せる" -#: src/Content/GroupManager.php:155 +#: src/Content/GroupManager.php:141 msgid "Create new group" msgstr "" -#: src/Content/Item.php:331 src/Model/Item.php:3256 +#: src/Content/Item.php:317 src/Model/Item.php:3272 msgid "event" msgstr "イベント" -#: src/Content/Item.php:334 src/Content/Item.php:344 +#: src/Content/Item.php:320 src/Content/Item.php:330 msgid "status" msgstr "ステータス" -#: src/Content/Item.php:340 src/Model/Item.php:3258 -#: src/Module/Post/Tag/Add.php:123 +#: src/Content/Item.php:326 src/Model/Item.php:3274 +#: src/Module/Post/Tag/Add.php:109 msgid "photo" msgstr "写真" -#: src/Content/Item.php:354 src/Module/Post/Tag/Add.php:141 +#: src/Content/Item.php:340 src/Module/Post/Tag/Add.php:127 #, php-format msgid "%1$s tagged %2$s's %3$s with %4$s" msgstr "%1$s が %2$s の %3$s を %4$s としてタグ付けしました" -#: src/Content/Item.php:428 view/theme/frio/theme.php:265 +#: src/Content/Item.php:414 view/theme/frio/theme.php:253 msgid "Follow Thread" msgstr "このスレッドをフォロー" -#: src/Content/Item.php:429 src/Model/Contact.php:1233 +#: src/Content/Item.php:415 src/Model/Contact.php:1249 msgid "View Status" msgstr "ステータスを見る" -#: src/Content/Item.php:430 src/Content/Item.php:453 -#: src/Model/Contact.php:1168 src/Model/Contact.php:1224 -#: src/Model/Contact.php:1234 src/Module/Directory.php:157 -#: src/Module/Settings/Profile/Index.php:259 +#: src/Content/Item.php:416 src/Content/Item.php:439 +#: src/Model/Contact.php:1184 src/Model/Contact.php:1240 +#: src/Model/Contact.php:1250 src/Module/Directory.php:144 +#: src/Module/Settings/Profile/Index.php:250 msgid "View Profile" msgstr "プロフィールを見る" -#: src/Content/Item.php:431 src/Model/Contact.php:1235 +#: src/Content/Item.php:417 src/Model/Contact.php:1251 msgid "View Photos" msgstr "写真を見る" -#: src/Content/Item.php:432 src/Model/Contact.php:1202 -#: src/Model/Profile.php:468 +#: src/Content/Item.php:418 src/Model/Contact.php:1218 +#: src/Model/Profile.php:447 msgid "Network Posts" msgstr "ネットワーク投稿" -#: src/Content/Item.php:433 src/Model/Contact.php:1226 -#: src/Model/Contact.php:1237 +#: src/Content/Item.php:419 src/Model/Contact.php:1242 +#: src/Model/Contact.php:1253 msgid "View Contact" msgstr "コンタクトを見る" -#: src/Content/Item.php:434 src/Model/Contact.php:1238 +#: src/Content/Item.php:420 src/Model/Contact.php:1254 msgid "Send PM" msgstr "PMを送る" -#: src/Content/Item.php:435 src/Module/Contact.php:467 +#: src/Content/Item.php:421 src/Module/Contact.php:449 #: src/Module/Contact/Profile.php:518 -#: src/Module/Moderation/Blocklist/Contact.php:116 -#: src/Module/Moderation/Users/Active.php:137 -#: src/Module/Moderation/Users/Index.php:152 +#: src/Module/Moderation/Blocklist/Contact.php:102 +#: src/Module/Moderation/Users/Active.php:123 +#: src/Module/Moderation/Users/Index.php:138 msgid "Block" msgstr "ブロック" -#: src/Content/Item.php:436 src/Module/Contact.php:468 +#: src/Content/Item.php:422 src/Module/Contact.php:450 #: src/Module/Contact/Profile.php:526 -#: src/Module/Notifications/Introductions.php:134 -#: src/Module/Notifications/Introductions.php:206 -#: src/Module/Notifications/Notification.php:89 +#: src/Module/Notifications/Introductions.php:126 +#: src/Module/Notifications/Introductions.php:198 +#: src/Module/Notifications/Notification.php:75 msgid "Ignore" msgstr "無視" -#: src/Content/Item.php:437 src/Module/Contact.php:469 +#: src/Content/Item.php:423 src/Module/Contact.php:451 #: src/Module/Contact/Profile.php:534 msgid "Collapse" msgstr "" -#: src/Content/Item.php:438 src/Object/Post.php:302 +#: src/Content/Item.php:424 src/Object/Post.php:288 #, php-format msgid "Ignore %s server" msgstr "" -#: src/Content/Item.php:442 src/Module/Settings/Channels.php:202 -#: src/Module/Settings/Channels.php:223 src/Object/Post.php:516 +#: src/Content/Item.php:428 src/Module/Settings/Channels.php:188 +#: src/Module/Settings/Channels.php:209 src/Object/Post.php:502 msgid "Languages" msgstr "言語" -#: src/Content/Item.php:445 src/Object/Post.php:596 +#: src/Content/Item.php:431 src/Object/Post.php:582 msgid "Search Text" msgstr "" -#: src/Content/Item.php:450 src/Content/Widget.php:80 -#: src/Model/Contact.php:1227 src/Model/Contact.php:1239 -#: src/Module/Contact/Follow.php:167 view/theme/vier/theme.php:195 +#: src/Content/Item.php:436 src/Content/Widget.php:66 +#: src/Model/Contact.php:1243 src/Model/Contact.php:1255 +#: src/Module/Contact/Follow.php:148 view/theme/vier/theme.php:183 msgid "Connect/Follow" msgstr "つながる/フォローする" -#: src/Content/Item.php:884 +#: src/Content/Item.php:870 msgid "Unable to fetch user." msgstr "" -#: src/Content/Nav.php:121 +#: src/Content/Nav.php:107 msgid "Nothing new here" msgstr "ここに新しいものはありません" -#: src/Content/Nav.php:125 src/Module/Special/HTTPException.php:77 +#: src/Content/Nav.php:111 src/Module/Special/HTTPException.php:63 msgid "Go back" msgstr "戻る" -#: src/Content/Nav.php:126 +#: src/Content/Nav.php:112 msgid "Clear notifications" msgstr "クリア通知" -#: src/Content/Nav.php:127 src/Content/Text/HTML.php:869 +#: src/Content/Nav.php:113 src/Content/Text/HTML.php:855 msgid "@name, !group, #tags, content" msgstr "" -#: src/Content/Nav.php:222 src/Module/Security/Login.php:157 +#: src/Content/Nav.php:208 src/Module/Security/Login.php:147 msgid "Logout" msgstr "ログアウト" -#: src/Content/Nav.php:222 +#: src/Content/Nav.php:208 msgid "End this session" msgstr "このセッションを終了" -#: src/Content/Nav.php:224 src/Module/Bookmarklet.php:44 -#: src/Module/Security/Login.php:158 +#: src/Content/Nav.php:210 src/Module/Bookmarklet.php:30 +#: src/Module/Security/Login.php:148 msgid "Login" msgstr "ログイン" -#: src/Content/Nav.php:224 +#: src/Content/Nav.php:210 msgid "Sign in" msgstr "サインイン" -#: src/Content/Nav.php:229 src/Module/BaseProfile.php:57 -#: src/Module/Contact.php:511 +#: src/Content/Nav.php:215 src/Module/BaseProfile.php:43 +#: src/Module/Contact.php:493 msgid "Conversations" msgstr "" -#: src/Content/Nav.php:229 +#: src/Content/Nav.php:215 msgid "Conversations you started" msgstr "" -#: src/Content/Nav.php:230 src/Module/BaseProfile.php:49 -#: src/Module/BaseSettings.php:98 src/Module/Contact.php:503 -#: src/Module/Contact/Profile.php:425 src/Module/Profile/Profile.php:268 -#: src/Module/Welcome.php:57 view/theme/frio/theme.php:233 +#: src/Content/Nav.php:216 src/Module/BaseProfile.php:35 +#: src/Module/BaseSettings.php:84 src/Module/Contact.php:485 +#: src/Module/Contact/Profile.php:425 src/Module/Profile/Profile.php:256 +#: src/Module/Welcome.php:43 view/theme/frio/theme.php:221 msgid "Profile" msgstr "プロフィール" -#: src/Content/Nav.php:230 view/theme/frio/theme.php:233 +#: src/Content/Nav.php:216 view/theme/frio/theme.php:221 msgid "Your profile page" msgstr "あなたのプロフィールページ" -#: src/Content/Nav.php:231 src/Module/BaseProfile.php:65 -#: src/Module/Media/Photo/Browser.php:74 view/theme/frio/theme.php:237 +#: src/Content/Nav.php:217 src/Module/BaseProfile.php:51 +#: src/Module/Media/Photo/Browser.php:60 view/theme/frio/theme.php:225 msgid "Photos" msgstr "写真" -#: src/Content/Nav.php:231 view/theme/frio/theme.php:237 +#: src/Content/Nav.php:217 view/theme/frio/theme.php:225 msgid "Your photos" msgstr "あなたの写真" -#: src/Content/Nav.php:232 src/Module/BaseProfile.php:73 -#: src/Module/BaseProfile.php:76 src/Module/Contact.php:527 -#: view/theme/frio/theme.php:238 +#: src/Content/Nav.php:218 src/Module/BaseProfile.php:59 +#: src/Module/BaseProfile.php:62 src/Module/Contact.php:509 +#: view/theme/frio/theme.php:226 msgid "Media" msgstr "" -#: src/Content/Nav.php:232 view/theme/frio/theme.php:238 +#: src/Content/Nav.php:218 view/theme/frio/theme.php:226 msgid "Your postings with media" msgstr "" -#: src/Content/Nav.php:233 src/Content/Nav.php:293 -#: src/Module/BaseProfile.php:85 src/Module/BaseProfile.php:88 -#: src/Module/BaseProfile.php:96 src/Module/BaseProfile.php:99 -#: src/Module/Settings/Display.php:316 view/theme/frio/theme.php:239 -#: view/theme/frio/theme.php:243 +#: src/Content/Nav.php:219 src/Content/Nav.php:279 +#: src/Module/BaseProfile.php:71 src/Module/BaseProfile.php:74 +#: src/Module/BaseProfile.php:82 src/Module/BaseProfile.php:85 +#: src/Module/Settings/Display.php:302 view/theme/frio/theme.php:227 +#: view/theme/frio/theme.php:231 msgid "Calendar" msgstr "カレンダー" -#: src/Content/Nav.php:233 view/theme/frio/theme.php:239 +#: src/Content/Nav.php:219 view/theme/frio/theme.php:227 msgid "Your calendar" msgstr "" -#: src/Content/Nav.php:234 +#: src/Content/Nav.php:220 msgid "Personal notes" msgstr "個人メモ" -#: src/Content/Nav.php:234 +#: src/Content/Nav.php:220 msgid "Your personal notes" msgstr "あなたの個人的なメモ" -#: src/Content/Nav.php:251 src/Content/Nav.php:308 +#: src/Content/Nav.php:237 src/Content/Nav.php:294 msgid "Home" msgstr "ホーム" -#: src/Content/Nav.php:251 src/Module/Settings/OAuth.php:73 +#: src/Content/Nav.php:237 src/Module/Settings/OAuth.php:59 msgid "Home Page" msgstr "ホームページ" -#: src/Content/Nav.php:255 src/Module/Register.php:169 -#: src/Module/Security/Login.php:124 +#: src/Content/Nav.php:241 src/Module/Register.php:161 +#: src/Module/Security/Login.php:114 msgid "Register" msgstr "登録" -#: src/Content/Nav.php:255 +#: src/Content/Nav.php:241 msgid "Create an account" msgstr "アカウントを作成する" -#: src/Content/Nav.php:261 src/Module/Help.php:67 -#: src/Module/Settings/TwoFactor/AppSpecific.php:132 -#: src/Module/Settings/TwoFactor/Index.php:139 -#: src/Module/Settings/TwoFactor/Recovery.php:110 -#: src/Module/Settings/TwoFactor/Verify.php:149 view/theme/vier/theme.php:240 +#: src/Content/Nav.php:247 src/Module/Help.php:53 +#: src/Module/Settings/TwoFactor/AppSpecific.php:118 +#: src/Module/Settings/TwoFactor/Index.php:125 +#: src/Module/Settings/TwoFactor/Recovery.php:96 +#: src/Module/Settings/TwoFactor/Verify.php:135 view/theme/vier/theme.php:228 msgid "Help" msgstr "ヘルプ" -#: src/Content/Nav.php:261 +#: src/Content/Nav.php:247 msgid "Help and documentation" msgstr "ヘルプとドキュメント" -#: src/Content/Nav.php:265 +#: src/Content/Nav.php:251 msgid "Apps" msgstr "アプリ" -#: src/Content/Nav.php:265 +#: src/Content/Nav.php:251 msgid "Addon applications, utilities, games" msgstr "アドオンアプリケーション、ユーティリティ、ゲーム" -#: src/Content/Nav.php:269 src/Content/Text/HTML.php:867 -#: src/Module/Admin/Logs/View.php:88 src/Module/Search/Index.php:112 +#: src/Content/Nav.php:255 src/Content/Text/HTML.php:853 +#: src/Module/Admin/Logs/View.php:74 src/Module/Search/Index.php:98 msgid "Search" msgstr "検索" -#: src/Content/Nav.php:269 +#: src/Content/Nav.php:255 msgid "Search site content" msgstr "サイトのコンテンツを検索" -#: src/Content/Nav.php:272 src/Content/Text/HTML.php:876 +#: src/Content/Nav.php:258 src/Content/Text/HTML.php:862 msgid "Full Text" msgstr "全文" -#: src/Content/Nav.php:273 src/Content/Text/HTML.php:877 -#: src/Content/Widget/TagCloud.php:68 +#: src/Content/Nav.php:259 src/Content/Text/HTML.php:863 +#: src/Content/Widget/TagCloud.php:54 msgid "Tags" msgstr "タグ" -#: src/Content/Nav.php:274 src/Content/Nav.php:329 -#: src/Content/Text/HTML.php:878 src/Module/BaseProfile.php:127 -#: src/Module/BaseProfile.php:130 src/Module/Contact.php:426 -#: src/Module/Contact.php:535 view/theme/frio/theme.php:246 +#: src/Content/Nav.php:260 src/Content/Nav.php:315 +#: src/Content/Text/HTML.php:864 src/Module/BaseProfile.php:113 +#: src/Module/BaseProfile.php:116 src/Module/Contact.php:407 +#: src/Module/Contact.php:517 view/theme/frio/theme.php:234 msgid "Contacts" msgstr "コンタクト" -#: src/Content/Nav.php:289 +#: src/Content/Nav.php:275 msgid "Community" msgstr "コミュニティ" -#: src/Content/Nav.php:289 +#: src/Content/Nav.php:275 msgid "Conversations on this and other servers" msgstr "このサーバーと他のサーバーでの会話" -#: src/Content/Nav.php:296 +#: src/Content/Nav.php:282 msgid "Directory" msgstr "ディレクトリ" -#: src/Content/Nav.php:296 +#: src/Content/Nav.php:282 msgid "People directory" msgstr "人々の名簿" -#: src/Content/Nav.php:298 src/Module/BaseAdmin.php:85 -#: src/Module/BaseModeration.php:108 +#: src/Content/Nav.php:284 src/Module/BaseAdmin.php:71 +#: src/Module/BaseModeration.php:94 msgid "Information" msgstr "情報" -#: src/Content/Nav.php:298 +#: src/Content/Nav.php:284 msgid "Information about this friendica instance" msgstr "このfriendicaインスタンスに関する情報" -#: src/Content/Nav.php:301 src/Module/Admin/Tos.php:78 -#: src/Module/BaseAdmin.php:95 src/Module/Register.php:177 -#: src/Module/Tos.php:101 +#: src/Content/Nav.php:287 src/Module/Admin/Tos.php:64 +#: src/Module/BaseAdmin.php:81 src/Module/Register.php:169 +#: src/Module/Tos.php:87 msgid "Terms of Service" msgstr "利用規約" -#: src/Content/Nav.php:301 +#: src/Content/Nav.php:287 msgid "Terms of Service of this Friendica instance" msgstr "このFriendicaインスタンスの利用規約" -#: src/Content/Nav.php:306 view/theme/frio/theme.php:242 +#: src/Content/Nav.php:292 view/theme/frio/theme.php:230 msgid "Network" msgstr "ネットワーク" -#: src/Content/Nav.php:306 view/theme/frio/theme.php:242 +#: src/Content/Nav.php:292 view/theme/frio/theme.php:230 msgid "Conversations from your friends" msgstr "友達からの会話" -#: src/Content/Nav.php:308 view/theme/frio/theme.php:232 +#: src/Content/Nav.php:294 view/theme/frio/theme.php:220 msgid "Your posts and conversations" msgstr "あなたの投稿と会話" -#: src/Content/Nav.php:312 +#: src/Content/Nav.php:298 msgid "Introductions" msgstr "招待" -#: src/Content/Nav.php:312 +#: src/Content/Nav.php:298 msgid "Friend Requests" msgstr "友達リクエスト" -#: src/Content/Nav.php:313 src/Module/BaseNotifications.php:149 -#: src/Module/Notifications/Introductions.php:75 +#: src/Content/Nav.php:299 src/Module/BaseNotifications.php:135 +#: src/Module/Notifications/Introductions.php:61 msgid "Notifications" msgstr "通知" -#: src/Content/Nav.php:314 +#: src/Content/Nav.php:300 msgid "See all notifications" msgstr "すべての通知を見る" -#: src/Content/Nav.php:315 src/Module/Settings/Connectors.php:244 +#: src/Content/Nav.php:301 src/Module/Settings/Connectors.php:233 msgid "Mark as seen" msgstr "既読にする" -#: src/Content/Nav.php:315 +#: src/Content/Nav.php:301 msgid "Mark all system notifications as seen" msgstr "" -#: src/Content/Nav.php:318 view/theme/frio/theme.php:244 +#: src/Content/Nav.php:304 view/theme/frio/theme.php:232 msgid "Private mail" msgstr "プライベートメール" -#: src/Content/Nav.php:319 +#: src/Content/Nav.php:305 msgid "Inbox" msgstr "受信トレイ" -#: src/Content/Nav.php:320 +#: src/Content/Nav.php:306 msgid "Outbox" msgstr "送信トレイ" -#: src/Content/Nav.php:324 +#: src/Content/Nav.php:310 msgid "Accounts" msgstr "" -#: src/Content/Nav.php:324 +#: src/Content/Nav.php:310 msgid "Manage other pages" msgstr "他のページを管理する" -#: src/Content/Nav.php:327 src/Module/Admin/Addons/Details.php:114 -#: src/Module/Admin/Themes/Details.php:93 src/Module/BaseSettings.php:182 -#: src/Module/Welcome.php:52 view/theme/frio/theme.php:245 +#: src/Content/Nav.php:313 src/Module/Admin/Addons/Details.php:100 +#: src/Module/Admin/Themes/Details.php:85 src/Module/BaseSettings.php:168 +#: src/Module/Welcome.php:38 view/theme/frio/theme.php:233 msgid "Settings" msgstr "設定" -#: src/Content/Nav.php:327 view/theme/frio/theme.php:245 +#: src/Content/Nav.php:313 view/theme/frio/theme.php:233 msgid "Account settings" msgstr "アカウント設定" -#: src/Content/Nav.php:329 view/theme/frio/theme.php:246 +#: src/Content/Nav.php:315 view/theme/frio/theme.php:234 msgid "Manage/edit friends and contacts" msgstr "友達とコンタクトを管理/編集する" -#: src/Content/Nav.php:334 src/Module/BaseAdmin.php:119 +#: src/Content/Nav.php:320 src/Module/BaseAdmin.php:105 msgid "Admin" msgstr "管理者" -#: src/Content/Nav.php:334 +#: src/Content/Nav.php:320 msgid "Site setup and configuration" msgstr "サイトのセットアップと構成" -#: src/Content/Nav.php:335 src/Module/BaseModeration.php:128 -#: src/Module/Moderation/Blocklist/Contact.php:110 -#: src/Module/Moderation/Blocklist/Server/Add.php:121 -#: src/Module/Moderation/Blocklist/Server/Import.php:118 -#: src/Module/Moderation/Blocklist/Server/Index.php:95 -#: src/Module/Moderation/Item/Delete.php:61 -#: src/Module/Moderation/Reports.php:104 src/Module/Moderation/Summary.php:75 -#: src/Module/Moderation/Users/Active.php:133 -#: src/Module/Moderation/Users/Blocked.php:133 -#: src/Module/Moderation/Users/Deleted.php:80 -#: src/Module/Moderation/Users/Index.php:147 +#: src/Content/Nav.php:321 src/Module/BaseModeration.php:114 +#: src/Module/Moderation/Blocklist/Contact.php:96 +#: src/Module/Moderation/Blocklist/Server/Add.php:107 +#: src/Module/Moderation/Blocklist/Server/Import.php:102 +#: src/Module/Moderation/Blocklist/Server/Index.php:81 +#: src/Module/Moderation/Item/Delete.php:47 +#: src/Module/Moderation/Reports.php:96 src/Module/Moderation/Summary.php:61 +#: src/Module/Moderation/Users/Active.php:119 +#: src/Module/Moderation/Users/Blocked.php:119 +#: src/Module/Moderation/Users/Deleted.php:66 +#: src/Module/Moderation/Users/Index.php:133 msgid "Moderation" msgstr "" -#: src/Content/Nav.php:335 +#: src/Content/Nav.php:321 msgid "Content and user moderation" msgstr "" -#: src/Content/Nav.php:338 +#: src/Content/Nav.php:324 msgid "Navigation" msgstr "ナビゲーション" -#: src/Content/Nav.php:338 +#: src/Content/Nav.php:324 msgid "Site map" msgstr "サイトマップ" -#: src/Content/Pager.php:216 +#: src/Content/Pager.php:202 msgid "first" msgstr "最初" -#: src/Content/Pager.php:221 +#: src/Content/Pager.php:207 msgid "prev" msgstr "前の" -#: src/Content/Pager.php:276 +#: src/Content/Pager.php:262 msgid "next" msgstr "次" -#: src/Content/Pager.php:281 +#: src/Content/Pager.php:267 msgid "last" msgstr "最終" -#: src/Content/Text/BBCode.php:702 src/Content/Text/BBCode.php:1878 -#: src/Content/Text/BBCode.php:1879 +#: src/Content/Text/BBCode.php:689 src/Content/Text/BBCode.php:1862 +#: src/Content/Text/BBCode.php:1863 msgid "Image/photo" msgstr "画像/写真" -#: src/Content/Text/BBCode.php:920 +#: src/Content/Text/BBCode.php:907 #, php-format msgid "%2$s %3$s" msgstr "" -#: src/Content/Text/BBCode.php:945 src/Model/Item.php:4012 -#: src/Model/Item.php:4018 src/Model/Item.php:4019 +#: src/Content/Text/BBCode.php:929 src/Model/Item.php:4028 +#: src/Model/Item.php:4034 src/Model/Item.php:4035 msgid "Link to source" msgstr "" -#: src/Content/Text/BBCode.php:1759 src/Content/Text/HTML.php:906 +#: src/Content/Text/BBCode.php:1743 src/Content/Text/HTML.php:892 msgid "Click to open/close" msgstr "クリックして開閉" -#: src/Content/Text/BBCode.php:1814 +#: src/Content/Text/BBCode.php:1798 msgid "$1 wrote:" msgstr "$1 の投稿:" -#: src/Content/Text/BBCode.php:1888 src/Content/Text/BBCode.php:1889 +#: src/Content/Text/BBCode.php:1872 src/Content/Text/BBCode.php:1873 msgid "Encrypted content" msgstr "暗号化されたコンテンツ" -#: src/Content/Text/BBCode.php:2194 +#: src/Content/Text/BBCode.php:2205 msgid "Invalid source protocol" msgstr "無効なソースプロトコル" -#: src/Content/Text/BBCode.php:2213 +#: src/Content/Text/BBCode.php:2224 msgid "Invalid link protocol" msgstr "無効なリンクプロトコル" -#: src/Content/Text/HTML.php:784 +#: src/Content/Text/HTML.php:770 msgid "Loading more entries..." msgstr "さらにエントリを読み込んでいます..." -#: src/Content/Text/HTML.php:785 +#: src/Content/Text/HTML.php:771 msgid "The end" msgstr "終わり" -#: src/Content/Text/HTML.php:861 src/Content/Widget/VCard.php:127 -#: src/Model/Profile.php:477 src/Module/Contact/Profile.php:478 +#: src/Content/Text/HTML.php:847 src/Content/Widget/VCard.php:113 +#: src/Model/Profile.php:456 src/Module/Contact/Profile.php:478 msgid "Follow" msgstr "フォロー" -#: src/Content/Widget.php:51 +#: src/Content/Widget.php:37 msgid "Add New Contact" msgstr "新しいコンタクトを追加" -#: src/Content/Widget.php:52 +#: src/Content/Widget.php:38 msgid "Enter address or web location" msgstr "住所またはウェブの場所を入力してください" -#: src/Content/Widget.php:53 +#: src/Content/Widget.php:39 msgid "Example: bob@example.com, http://example.com/barbara" msgstr "例: bob@example.com, http://example.com/barbara" -#: src/Content/Widget.php:55 +#: src/Content/Widget.php:41 msgid "Connect" msgstr "つながる" -#: src/Content/Widget.php:72 +#: src/Content/Widget.php:58 #, php-format msgid "%d invitation available" msgid_plural "%d invitations available" msgstr[0] "%d通の招待が利用できます" -#: src/Content/Widget.php:78 view/theme/vier/theme.php:193 +#: src/Content/Widget.php:64 view/theme/vier/theme.php:181 msgid "Find People" msgstr "人を見つけます" -#: src/Content/Widget.php:79 view/theme/vier/theme.php:194 +#: src/Content/Widget.php:65 view/theme/vier/theme.php:182 msgid "Enter name or interest" msgstr "名前または興味を入力してください" -#: src/Content/Widget.php:81 view/theme/vier/theme.php:196 +#: src/Content/Widget.php:67 view/theme/vier/theme.php:184 msgid "Examples: Robert Morgenstein, Fishing" msgstr "例:Robert Morgenstein、釣り" -#: src/Content/Widget.php:82 src/Module/Contact.php:460 -#: src/Module/Directory.php:96 view/theme/vier/theme.php:197 +#: src/Content/Widget.php:68 src/Module/Contact.php:441 +#: src/Module/Directory.php:83 view/theme/vier/theme.php:185 msgid "Find" msgstr "見つける" -#: src/Content/Widget.php:83 src/Module/Contact/Suggestions.php:73 -#: view/theme/vier/theme.php:198 +#: src/Content/Widget.php:69 src/Module/Contact/Suggestions.php:59 +#: view/theme/vier/theme.php:186 msgid "Friend Suggestions" msgstr "友達の提案" -#: src/Content/Widget.php:84 view/theme/vier/theme.php:199 +#: src/Content/Widget.php:70 view/theme/vier/theme.php:187 msgid "Similar Interests" msgstr "同様の興味" -#: src/Content/Widget.php:85 view/theme/vier/theme.php:200 +#: src/Content/Widget.php:71 view/theme/vier/theme.php:188 msgid "Random Profile" msgstr "ランダムプロフィール" -#: src/Content/Widget.php:86 view/theme/vier/theme.php:201 +#: src/Content/Widget.php:72 view/theme/vier/theme.php:189 msgid "Invite Friends" msgstr "友達を招待" -#: src/Content/Widget.php:87 src/Module/Directory.php:88 -#: view/theme/vier/theme.php:202 +#: src/Content/Widget.php:73 src/Module/Directory.php:75 +#: view/theme/vier/theme.php:190 msgid "Global Directory" msgstr "グローバルディレクトリ" -#: src/Content/Widget.php:89 view/theme/vier/theme.php:204 +#: src/Content/Widget.php:75 view/theme/vier/theme.php:192 msgid "Local Directory" msgstr "ローカルディレクトリ" -#: src/Content/Widget.php:218 +#: src/Content/Widget.php:196 msgid "Everyone" msgstr "" -#: src/Content/Widget.php:243 src/Module/Contact.php:423 +#: src/Content/Widget.php:221 src/Module/Contact.php:404 msgid "No relationship" msgstr "" -#: src/Content/Widget.php:248 +#: src/Content/Widget.php:226 msgid "Relationships" msgstr "関係" -#: src/Content/Widget.php:250 src/Module/Circle.php:294 -#: src/Module/Contact.php:344 +#: src/Content/Widget.php:228 src/Module/Circle.php:280 +#: src/Module/Contact.php:325 msgid "All Contacts" msgstr "すべてのコンタクト" -#: src/Content/Widget.php:291 +#: src/Content/Widget.php:269 msgid "All Protocols" msgstr "すべてのプロトコル" -#: src/Content/Widget.php:321 src/Content/Widget.php:352 +#: src/Content/Widget.php:299 src/Content/Widget.php:330 msgid "Everything" msgstr "すべて" -#: src/Content/Widget.php:350 +#: src/Content/Widget.php:328 msgid "Categories" msgstr "カテゴリー" -#: src/Content/Widget.php:407 +#: src/Content/Widget.php:385 #, php-format msgid "%d contact in common" msgid_plural "%d contacts in common" msgstr[0] "共通の %d 件のコンタクト" -#: src/Content/Widget.php:515 +#: src/Content/Widget.php:493 msgid "On this date" msgstr "" -#: src/Content/Widget.php:535 +#: src/Content/Widget.php:513 msgid "Persons" msgstr "" -#: src/Content/Widget.php:536 +#: src/Content/Widget.php:514 msgid "Organisations" msgstr "" -#: src/Content/Widget.php:537 src/Model/Contact.php:1729 +#: src/Content/Widget.php:515 src/Model/Contact.php:1747 msgid "News" msgstr "ニュース" -#: src/Content/Widget.php:539 +#: src/Content/Widget.php:517 msgid "Relays" msgstr "" -#: src/Content/Widget.php:546 src/Module/Moderation/BaseUsers.php:69 +#: src/Content/Widget.php:524 src/Module/Moderation/BaseUsers.php:56 msgid "All" msgstr "" -#: src/Content/Widget/CalendarExport.php:56 +#: src/Content/Widget/CalendarExport.php:42 msgid "Export" msgstr "エクスポート" -#: src/Content/Widget/CalendarExport.php:57 +#: src/Content/Widget/CalendarExport.php:43 msgid "Export calendar as ical" msgstr "カレンダーをicalとしてエクスポート" -#: src/Content/Widget/CalendarExport.php:58 +#: src/Content/Widget/CalendarExport.php:44 msgid "Export calendar as csv" msgstr "カレンダーをcsvとしてエクスポート" -#: src/Content/Widget/ContactBlock.php:79 +#: src/Content/Widget/ContactBlock.php:65 msgid "No contacts" msgstr "コンタクトなし" -#: src/Content/Widget/ContactBlock.php:110 +#: src/Content/Widget/ContactBlock.php:96 #, php-format msgid "%d Contact" msgid_plural "%d Contacts" msgstr[0] "%dコンタクト" -#: src/Content/Widget/ContactBlock.php:127 +#: src/Content/Widget/ContactBlock.php:113 msgid "View Contacts" msgstr "コンタクトを表示" -#: src/Content/Widget/SavedSearches.php:47 +#: src/Content/Widget/SavedSearches.php:33 msgid "Remove term" msgstr "用語を削除" -#: src/Content/Widget/TrendingTags.php:53 +#: src/Content/Widget/TrendingTags.php:39 #, php-format msgid "Trending Tags (last %d hour)" msgid_plural "Trending Tags (last %d hours)" msgstr[0] "トレンドタグ(過去%d時間)" -#: src/Content/Widget/TrendingTags.php:54 +#: src/Content/Widget/TrendingTags.php:40 msgid "More Trending Tags" msgstr "よりトレンドのタグ" -#: src/Content/Widget/VCard.php:105 src/Model/Contact.php:1196 -#: src/Model/Profile.php:462 +#: src/Content/Widget/VCard.php:91 src/Model/Contact.php:1212 +#: src/Model/Profile.php:441 msgid "Post to group" msgstr "" -#: src/Content/Widget/VCard.php:110 src/Model/Contact.php:1200 -#: src/Model/Profile.php:466 src/Module/Moderation/Item/Source.php:85 +#: src/Content/Widget/VCard.php:96 src/Model/Contact.php:1216 +#: src/Model/Profile.php:445 src/Module/Moderation/Item/Source.php:77 msgid "Mention" msgstr "" -#: src/Content/Widget/VCard.php:120 src/Model/Profile.php:381 -#: src/Module/Contact/Profile.php:414 src/Module/Profile/Profile.php:199 +#: src/Content/Widget/VCard.php:106 src/Model/Profile.php:360 +#: src/Module/Contact/Profile.php:414 src/Module/Profile/Profile.php:187 msgid "XMPP:" msgstr "XMPP:" -#: src/Content/Widget/VCard.php:121 src/Model/Profile.php:382 -#: src/Module/Contact/Profile.php:416 src/Module/Profile/Profile.php:203 +#: src/Content/Widget/VCard.php:107 src/Model/Profile.php:361 +#: src/Module/Contact/Profile.php:416 src/Module/Profile/Profile.php:191 msgid "Matrix:" msgstr "" -#: src/Content/Widget/VCard.php:122 src/Model/Event.php:82 -#: src/Model/Event.php:109 src/Model/Event.php:471 src/Model/Event.php:960 -#: src/Model/Profile.php:376 src/Module/Contact/Profile.php:412 -#: src/Module/Directory.php:147 src/Module/Notifications/Introductions.php:187 -#: src/Module/Profile/Profile.php:221 +#: src/Content/Widget/VCard.php:108 src/Model/Event.php:68 +#: src/Model/Event.php:95 src/Model/Event.php:457 src/Model/Event.php:946 +#: src/Model/Profile.php:355 src/Module/Contact/Profile.php:412 +#: src/Module/Directory.php:134 src/Module/Notifications/Introductions.php:179 +#: src/Module/Profile/Profile.php:209 msgid "Location:" msgstr "ロケーション:" -#: src/Content/Widget/VCard.php:125 src/Model/Profile.php:490 -#: src/Module/Notifications/Introductions.php:201 +#: src/Content/Widget/VCard.php:111 src/Model/Profile.php:469 +#: src/Module/Notifications/Introductions.php:193 msgid "Network:" msgstr "ネットワーク:" -#: src/Content/Widget/VCard.php:129 src/Model/Contact.php:1228 -#: src/Model/Contact.php:1240 src/Model/Profile.php:479 +#: src/Content/Widget/VCard.php:115 src/Model/Contact.php:1244 +#: src/Model/Contact.php:1256 src/Model/Profile.php:458 #: src/Module/Contact/Profile.php:470 msgid "Unfollow" msgstr "フォロー解除" -#: src/Content/Widget/VCard.php:135 src/Model/Contact.php:1198 -#: src/Model/Profile.php:464 +#: src/Content/Widget/VCard.php:121 src/Model/Contact.php:1214 +#: src/Model/Profile.php:443 msgid "View group" msgstr "" -#: src/Core/ACL.php:166 src/Module/Profile/Profile.php:269 +#: src/Core/ACL.php:152 src/Module/Profile/Profile.php:257 msgid "Yourself" msgstr "" -#: src/Core/ACL.php:202 src/Module/Privacy/PermissionTooltip.php:170 -#: src/Module/Privacy/PermissionTooltip.php:192 +#: src/Core/ACL.php:188 src/Module/Privacy/PermissionTooltip.php:156 +#: src/Module/Privacy/PermissionTooltip.php:178 msgid "Mutuals" msgstr "相互" -#: src/Core/ACL.php:294 +#: src/Core/ACL.php:280 msgid "Post to Email" msgstr "メールに投稿" -#: src/Core/ACL.php:321 src/Module/Privacy/PermissionTooltip.php:117 -#: src/Module/Privacy/PermissionTooltip.php:231 +#: src/Core/ACL.php:307 src/Module/Privacy/PermissionTooltip.php:103 +#: src/Module/Privacy/PermissionTooltip.php:217 msgid "Public" msgstr "一般公開" -#: src/Core/ACL.php:322 +#: src/Core/ACL.php:308 msgid "" "This content will be shown to all your followers and can be seen in the " "community pages and by anyone with its link." msgstr "このコンテンツはすべてのフォロワーに表示され、コミュニティページやリンクを知っている人なら誰でも見ることができます。" -#: src/Core/ACL.php:323 src/Module/Privacy/PermissionTooltip.php:119 +#: src/Core/ACL.php:309 src/Module/Privacy/PermissionTooltip.php:105 msgid "Limited/Private" msgstr "限定/プライベート" -#: src/Core/ACL.php:324 +#: src/Core/ACL.php:310 msgid "" "This content will be shown only to the people in the first box, to the " "exception of the people mentioned in the second box. It won't appear " "anywhere public." msgstr "このコンテンツは、最初のボックスに記載されたメンバーから、2番目のボックスに記載されている人を除いた範囲に対して表示されます。 一般公開はされません。" -#: src/Core/ACL.php:324 +#: src/Core/ACL.php:310 msgid "" "Start typing the name of a contact or a circle to show a filtered list. You " "can also mention the special circles \"Followers\" and \"Mutuals\"." msgstr "" -#: src/Core/ACL.php:325 +#: src/Core/ACL.php:311 msgid "Show to:" msgstr "限定公開先:" -#: src/Core/ACL.php:326 +#: src/Core/ACL.php:312 msgid "Except to:" msgstr "この連絡先を除く:" -#: src/Core/ACL.php:327 src/Module/Post/Edit.php:154 +#: src/Core/ACL.php:313 src/Module/Post/Edit.php:140 msgid "CC: email addresses" msgstr "CC:メールアドレス" -#: src/Core/ACL.php:328 src/Module/Post/Edit.php:160 +#: src/Core/ACL.php:314 src/Module/Post/Edit.php:146 msgid "Example: bob@example.com, mary@example.com" msgstr "例:bob @ example.com、mary @ example.com" -#: src/Core/ACL.php:329 +#: src/Core/ACL.php:315 msgid "Connectors" msgstr "コネクター" -#: src/Core/Installer.php:180 +#: src/Core/Installer.php:166 msgid "" "The database configuration file \"config/local.config.php\" could not be " "written. Please use the enclosed text to create a configuration file in your" " web server root." msgstr "データベース構成ファイル \"config/local.config.php\" に書き込めませんでした。同封のテキストを使用して、Webサーバーのルートに構成ファイルを作成してください。" -#: src/Core/Installer.php:197 +#: src/Core/Installer.php:183 msgid "" "You may need to import the file \"database.sql\" manually using phpmyadmin " "or mysql." msgstr "phpmyadminまたはmysqlを使用して、手動でファイル\"database.sql \"をインポートする必要がある場合があります。" -#: src/Core/Installer.php:198 src/Module/Install.php:207 -#: src/Module/Install.php:350 +#: src/Core/Installer.php:184 src/Module/Install.php:193 +#: src/Module/Install.php:336 msgid "Please see the file \"doc/INSTALL.md\"." msgstr "" -#: src/Core/Installer.php:259 +#: src/Core/Installer.php:245 msgid "Could not find a command line version of PHP in the web server PATH." msgstr "WebサーバーPATHに CLI版のPHPが見つかりませんでした。" -#: src/Core/Installer.php:260 +#: src/Core/Installer.php:246 msgid "" "If you don't have a command line version of PHP installed on your server, " "you will not be able to run the background processing. See 'Setup the worker'" msgstr "" -#: src/Core/Installer.php:265 +#: src/Core/Installer.php:251 msgid "PHP executable path" msgstr "PHP実行可能ファイルへのPath" -#: src/Core/Installer.php:265 +#: src/Core/Installer.php:251 msgid "" "Enter full path to php executable. You can leave this blank to continue the " "installation." msgstr "php実行可能ファイルへのフルパスを入力します。これを空白のままにしてインストールを続行できます。" -#: src/Core/Installer.php:270 +#: src/Core/Installer.php:256 msgid "Command line PHP" msgstr "コマンドライン, CLI PHP" -#: src/Core/Installer.php:279 +#: src/Core/Installer.php:265 msgid "PHP executable is not the php cli binary (could be cgi-fgci version)" msgstr "PHP実行可能ファイルはphp cliバイナリではありません(cgi-fgciバージョンである可能性があります)" -#: src/Core/Installer.php:280 +#: src/Core/Installer.php:266 msgid "Found PHP version: " msgstr "PHPバージョンが見つかりました:" -#: src/Core/Installer.php:282 +#: src/Core/Installer.php:268 msgid "PHP cli binary" msgstr "PHP CLIバイナリ" -#: src/Core/Installer.php:295 +#: src/Core/Installer.php:281 msgid "" "The command line version of PHP on your system does not have " "\"register_argc_argv\" enabled." msgstr "ご使用のシステムのコマンドラインバージョンのPHPでは、\"register_argc_argv \"が有効になっていません。" -#: src/Core/Installer.php:296 +#: src/Core/Installer.php:282 msgid "This is required for message delivery to work." msgstr "これは、メッセージ配信が機能するために必要です。" -#: src/Core/Installer.php:301 +#: src/Core/Installer.php:287 msgid "PHP register_argc_argv" msgstr "PHP register_argc_argv" -#: src/Core/Installer.php:333 +#: src/Core/Installer.php:319 msgid "" "Error: the \"openssl_pkey_new\" function on this system is not able to " "generate encryption keys" msgstr "エラー:このシステムの\"openssl_pkey_new \"関数は暗号化鍵を生成できません" -#: src/Core/Installer.php:334 +#: src/Core/Installer.php:320 msgid "" "If running under Windows, please see " "\"http://www.php.net/manual/en/openssl.installation.php\"." msgstr "Windowsで実行している場合は、「 http://www.php.net/manual/en/openssl.installation.php 」を参照してください。" -#: src/Core/Installer.php:337 +#: src/Core/Installer.php:323 msgid "Generate encryption keys" msgstr "暗号化鍵を生成する" -#: src/Core/Installer.php:388 +#: src/Core/Installer.php:374 msgid "" "Error: Apache webserver mod-rewrite module is required but not installed." msgstr "エラー:Apache webserver mod-rewriteモジュールが必要ですが、インストールされていません。" -#: src/Core/Installer.php:392 +#: src/Core/Installer.php:378 msgid "Apache mod_rewrite module" msgstr "Apache mod_rewriteモジュール" -#: src/Core/Installer.php:398 +#: src/Core/Installer.php:384 msgid "Error: PDO or MySQLi PHP module required but not installed." msgstr "エラー:PDOまたはMySQLi PHPモジュールが必要ですが、インストールされていません。" -#: src/Core/Installer.php:402 +#: src/Core/Installer.php:388 msgid "Error: The MySQL driver for PDO is not installed." msgstr "エラー:PDO用のMySQLドライバーがインストールされていません。" -#: src/Core/Installer.php:405 +#: src/Core/Installer.php:391 msgid "PDO or MySQLi PHP module" msgstr "PDOまたはMySQLi PHPモジュール" -#: src/Core/Installer.php:411 +#: src/Core/Installer.php:397 msgid "Error: The IntlChar module is not installed." msgstr "" -#: src/Core/Installer.php:414 +#: src/Core/Installer.php:400 msgid "IntlChar PHP module" msgstr "" -#: src/Core/Installer.php:422 +#: src/Core/Installer.php:408 msgid "Error, XML PHP module required but not installed." msgstr "エラー、XML PHPモジュールが必要ですが、インストールされていません。" -#: src/Core/Installer.php:426 +#: src/Core/Installer.php:412 msgid "XML PHP module" msgstr "XML PHPモジュール" -#: src/Core/Installer.php:429 +#: src/Core/Installer.php:415 msgid "libCurl PHP module" msgstr "libCurl PHPモジュール" -#: src/Core/Installer.php:430 +#: src/Core/Installer.php:416 msgid "Error: libCURL PHP module required but not installed." msgstr "エラー:libCURL PHPモジュールが必要ですが、インストールされていません。" -#: src/Core/Installer.php:436 +#: src/Core/Installer.php:422 msgid "GD graphics PHP module" msgstr "GDグラフィックスPHPモジュール" -#: src/Core/Installer.php:437 +#: src/Core/Installer.php:423 msgid "" "Error: GD graphics PHP module with JPEG support required but not installed." msgstr "エラー:JPEGサポート付きのGDグラフィックPHPモジュールが必要ですが、インストールされていません。" -#: src/Core/Installer.php:443 +#: src/Core/Installer.php:429 msgid "OpenSSL PHP module" msgstr "OpenSSL PHPモジュール" -#: src/Core/Installer.php:444 +#: src/Core/Installer.php:430 msgid "Error: openssl PHP module required but not installed." msgstr "エラー:openssl PHPモジュールが必要ですが、インストールされていません。" -#: src/Core/Installer.php:450 +#: src/Core/Installer.php:436 msgid "mb_string PHP module" msgstr "mb_string PHPモジュール" -#: src/Core/Installer.php:451 +#: src/Core/Installer.php:437 msgid "Error: mb_string PHP module required but not installed." msgstr "エラー:mb_string PHPモジュールが必要ですが、インストールされていません。" -#: src/Core/Installer.php:457 +#: src/Core/Installer.php:443 msgid "iconv PHP module" msgstr "iconv PHPモジュール" -#: src/Core/Installer.php:458 +#: src/Core/Installer.php:444 msgid "Error: iconv PHP module required but not installed." msgstr "エラー:iconv PHPモジュールが必要ですが、インストールされていません。" -#: src/Core/Installer.php:464 +#: src/Core/Installer.php:450 msgid "POSIX PHP module" msgstr "POSIX PHPモジュール" -#: src/Core/Installer.php:465 +#: src/Core/Installer.php:451 msgid "Error: POSIX PHP module required but not installed." msgstr "エラー:POSIX PHPモジュールが必要ですが、インストールされていません。" -#: src/Core/Installer.php:471 +#: src/Core/Installer.php:457 msgid "Program execution functions" msgstr "" -#: src/Core/Installer.php:472 +#: src/Core/Installer.php:458 msgid "" "Error: Program execution functions (proc_open) required but not enabled." msgstr "" -#: src/Core/Installer.php:478 +#: src/Core/Installer.php:464 msgid "JSON PHP module" msgstr "JSON PHPモジュール" -#: src/Core/Installer.php:479 +#: src/Core/Installer.php:465 msgid "Error: JSON PHP module required but not installed." msgstr "エラー:JSON PHPモジュールが必要ですが、インストールされていません。" -#: src/Core/Installer.php:485 +#: src/Core/Installer.php:471 msgid "File Information PHP module" msgstr "ファイル情報PHPモジュール" -#: src/Core/Installer.php:486 +#: src/Core/Installer.php:472 msgid "Error: File Information PHP module required but not installed." msgstr "エラー:ファイル情報PHPモジュールが必要ですが、インストールされていません。" -#: src/Core/Installer.php:492 +#: src/Core/Installer.php:478 msgid "GNU Multiple Precision PHP module" msgstr "" -#: src/Core/Installer.php:493 +#: src/Core/Installer.php:479 msgid "Error: GNU Multiple Precision PHP module required but not installed." msgstr "" -#: src/Core/Installer.php:499 +#: src/Core/Installer.php:485 msgid "IDN Functions PHP module" msgstr "" -#: src/Core/Installer.php:500 +#: src/Core/Installer.php:486 msgid "Error: IDN Functions PHP module required but not installed." msgstr "" -#: src/Core/Installer.php:523 +#: src/Core/Installer.php:509 msgid "" "The web installer needs to be able to create a file called " "\"local.config.php\" in the \"config\" folder of your web server and it is " "unable to do so." msgstr "Webインストーラーは、Webサーバーの\"config \"フォルダーに\"local.config.php \"というファイルを作成できる必要がありますが、作成できません。" -#: src/Core/Installer.php:524 +#: src/Core/Installer.php:510 msgid "" "This is most often a permission setting, as the web server may not be able " "to write files in your folder - even if you can." msgstr "これはほとんどの場合、Webサーバーがフォルダーにファイルを書き込むことができない場合でも、許可設定です。" -#: src/Core/Installer.php:525 +#: src/Core/Installer.php:511 msgid "" "At the end of this procedure, we will give you a text to save in a file " "named local.config.php in your Friendica \"config\" folder." msgstr "この手順の最後に、Friendica \"config \"フォルダーのlocal.config.phpという名前のファイルに保存するテキストを提供します。" -#: src/Core/Installer.php:526 +#: src/Core/Installer.php:512 msgid "" "You can alternatively skip this procedure and perform a manual installation." " Please see the file \"doc/INSTALL.md\" for instructions." msgstr "" -#: src/Core/Installer.php:529 +#: src/Core/Installer.php:515 msgid "config/local.config.php is writable" msgstr "config/local.config.php は書き込み可能です" -#: src/Core/Installer.php:549 +#: src/Core/Installer.php:535 msgid "" "Friendica uses the Smarty3 template engine to render its web views. Smarty3 " "compiles templates to PHP to speed up rendering." msgstr "FriendicaはSmarty3テンプレートエンジンを使用してWebビューをレンダリングします。 Smarty3はテンプレートをPHPにコンパイルして、レンダリングを高速化します。" -#: src/Core/Installer.php:550 +#: src/Core/Installer.php:536 msgid "" "In order to store these compiled templates, the web server needs to have " "write access to the directory view/smarty3/ under the Friendica top level " "folder." msgstr "これらのコンパイル済みテンプレートを保存するには、WebサーバーがFriendica最上位フォルダーの下のディレクトリview / smarty3 /への書き込みアクセス権を持っている必要があります。" -#: src/Core/Installer.php:551 +#: src/Core/Installer.php:537 msgid "" "Please ensure that the user that your web server runs as (e.g. www-data) has" " write access to this folder." msgstr "Webサーバーを実行するユーザー(www-dataなど)がこのフォルダーへの書き込みアクセス権を持っていることを確認してください。" -#: src/Core/Installer.php:552 +#: src/Core/Installer.php:538 msgid "" "Note: as a security measure, you should give the web server write access to " "view/smarty3/ only--not the template files (.tpl) that it contains." msgstr "注:セキュリティ対策として、Webサーバーにview / smarty3 /のみへの書き込みアクセス権を与える必要があります。含まれるテンプレートファイル(.tpl)ではありません。" -#: src/Core/Installer.php:555 +#: src/Core/Installer.php:541 msgid "view/smarty3 is writable" msgstr "view / smarty3は書き込み可能です" -#: src/Core/Installer.php:583 +#: src/Core/Installer.php:569 msgid "" "Url rewrite in .htaccess seems not working. Make sure you copied .htaccess-" "dist to .htaccess." msgstr "" -#: src/Core/Installer.php:584 +#: src/Core/Installer.php:570 msgid "" "In some circumstances (like running inside containers), you can skip this " "error." msgstr "" -#: src/Core/Installer.php:586 +#: src/Core/Installer.php:572 msgid "Error message from Curl when fetching" msgstr "取得時のCurlからのエラーメッセージ" -#: src/Core/Installer.php:592 +#: src/Core/Installer.php:578 msgid "Url rewrite is working" msgstr "URLの書き換えが機能しています" -#: src/Core/Installer.php:621 +#: src/Core/Installer.php:607 msgid "" "The detection of TLS to secure the communication between the browser and the" " new Friendica server failed." msgstr "" -#: src/Core/Installer.php:622 +#: src/Core/Installer.php:608 msgid "" "It is highly encouraged to use Friendica only over a secure connection as " "sensitive information like passwords will be transmitted." msgstr "" -#: src/Core/Installer.php:623 +#: src/Core/Installer.php:609 msgid "Please ensure that the connection to the server is secure." msgstr "" -#: src/Core/Installer.php:624 +#: src/Core/Installer.php:610 msgid "No TLS detected" msgstr "" -#: src/Core/Installer.php:626 +#: src/Core/Installer.php:612 msgid "TLS detected" msgstr "" -#: src/Core/Installer.php:643 +#: src/Core/Installer.php:629 msgid "ImageMagick PHP extension is not installed" msgstr "ImageMagick PHP拡張機能がインストールされていません" -#: src/Core/Installer.php:645 +#: src/Core/Installer.php:631 msgid "ImageMagick PHP extension is installed" msgstr "ImageMagick PHP拡張機能がインストールされています" -#: src/Core/Installer.php:666 +#: src/Core/Installer.php:652 msgid "Database already in use." msgstr "データベースはすでに使用されています。" -#: src/Core/Installer.php:671 +#: src/Core/Installer.php:657 msgid "Could not connect to database." msgstr "データベースに接続できません。" -#: src/Core/L10n.php:444 src/Model/Item.php:2300 +#: src/Core/L10n.php:430 src/Model/Item.php:2315 msgid "Undetermined" msgstr "" -#: src/Core/L10n.php:451 +#: src/Core/L10n.php:437 #, php-format msgid "%s (%s)" msgstr "" -#: src/Core/L10n.php:499 src/Model/Event.php:430 -#: src/Module/Settings/Display.php:284 +#: src/Core/L10n.php:485 src/Model/Event.php:416 +#: src/Module/Settings/Display.php:270 msgid "Monday" msgstr "月曜" -#: src/Core/L10n.php:499 src/Model/Event.php:431 -#: src/Module/Settings/Display.php:285 +#: src/Core/L10n.php:485 src/Model/Event.php:417 +#: src/Module/Settings/Display.php:271 msgid "Tuesday" msgstr "火曜日" -#: src/Core/L10n.php:499 src/Model/Event.php:432 -#: src/Module/Settings/Display.php:286 +#: src/Core/L10n.php:485 src/Model/Event.php:418 +#: src/Module/Settings/Display.php:272 msgid "Wednesday" msgstr "水曜日" -#: src/Core/L10n.php:499 src/Model/Event.php:433 -#: src/Module/Settings/Display.php:287 +#: src/Core/L10n.php:485 src/Model/Event.php:419 +#: src/Module/Settings/Display.php:273 msgid "Thursday" msgstr "木曜日" -#: src/Core/L10n.php:499 src/Model/Event.php:434 -#: src/Module/Settings/Display.php:288 +#: src/Core/L10n.php:485 src/Model/Event.php:420 +#: src/Module/Settings/Display.php:274 msgid "Friday" msgstr "金曜日" -#: src/Core/L10n.php:499 src/Model/Event.php:435 -#: src/Module/Settings/Display.php:289 +#: src/Core/L10n.php:485 src/Model/Event.php:421 +#: src/Module/Settings/Display.php:275 msgid "Saturday" msgstr "土曜日" -#: src/Core/L10n.php:499 src/Model/Event.php:429 -#: src/Module/Settings/Display.php:283 +#: src/Core/L10n.php:485 src/Model/Event.php:415 +#: src/Module/Settings/Display.php:269 msgid "Sunday" msgstr "日曜日" -#: src/Core/L10n.php:503 src/Model/Event.php:450 +#: src/Core/L10n.php:489 src/Model/Event.php:436 msgid "January" msgstr "1月" -#: src/Core/L10n.php:503 src/Model/Event.php:451 +#: src/Core/L10n.php:489 src/Model/Event.php:437 msgid "February" msgstr "2月" -#: src/Core/L10n.php:503 src/Model/Event.php:452 +#: src/Core/L10n.php:489 src/Model/Event.php:438 msgid "March" msgstr "3月" -#: src/Core/L10n.php:503 src/Model/Event.php:453 +#: src/Core/L10n.php:489 src/Model/Event.php:439 msgid "April" msgstr "4月" -#: src/Core/L10n.php:503 src/Core/L10n.php:522 src/Model/Event.php:441 +#: src/Core/L10n.php:489 src/Core/L10n.php:508 src/Model/Event.php:427 msgid "May" msgstr "5月" -#: src/Core/L10n.php:503 src/Model/Event.php:454 +#: src/Core/L10n.php:489 src/Model/Event.php:440 msgid "June" msgstr "6月" -#: src/Core/L10n.php:503 src/Model/Event.php:455 +#: src/Core/L10n.php:489 src/Model/Event.php:441 msgid "July" msgstr "7月" -#: src/Core/L10n.php:503 src/Model/Event.php:456 +#: src/Core/L10n.php:489 src/Model/Event.php:442 msgid "August" msgstr "8月" -#: src/Core/L10n.php:503 src/Model/Event.php:457 +#: src/Core/L10n.php:489 src/Model/Event.php:443 msgid "September" msgstr "9月" -#: src/Core/L10n.php:503 src/Model/Event.php:458 +#: src/Core/L10n.php:489 src/Model/Event.php:444 msgid "October" msgstr "10月" -#: src/Core/L10n.php:503 src/Model/Event.php:459 +#: src/Core/L10n.php:489 src/Model/Event.php:445 msgid "November" msgstr "11月" -#: src/Core/L10n.php:503 src/Model/Event.php:460 +#: src/Core/L10n.php:489 src/Model/Event.php:446 msgid "December" msgstr "12月" -#: src/Core/L10n.php:518 src/Model/Event.php:422 +#: src/Core/L10n.php:504 src/Model/Event.php:408 msgid "Mon" msgstr "月" -#: src/Core/L10n.php:518 src/Model/Event.php:423 +#: src/Core/L10n.php:504 src/Model/Event.php:409 msgid "Tue" msgstr "火" -#: src/Core/L10n.php:518 src/Model/Event.php:424 +#: src/Core/L10n.php:504 src/Model/Event.php:410 msgid "Wed" msgstr "水" -#: src/Core/L10n.php:518 src/Model/Event.php:425 +#: src/Core/L10n.php:504 src/Model/Event.php:411 msgid "Thu" msgstr "木" -#: src/Core/L10n.php:518 src/Model/Event.php:426 +#: src/Core/L10n.php:504 src/Model/Event.php:412 msgid "Fri" msgstr "金" -#: src/Core/L10n.php:518 src/Model/Event.php:427 +#: src/Core/L10n.php:504 src/Model/Event.php:413 msgid "Sat" msgstr "土" -#: src/Core/L10n.php:518 src/Model/Event.php:421 +#: src/Core/L10n.php:504 src/Model/Event.php:407 msgid "Sun" msgstr "日" -#: src/Core/L10n.php:522 src/Model/Event.php:437 +#: src/Core/L10n.php:508 src/Model/Event.php:423 msgid "Jan" msgstr "1月" -#: src/Core/L10n.php:522 src/Model/Event.php:438 +#: src/Core/L10n.php:508 src/Model/Event.php:424 msgid "Feb" msgstr "2月" -#: src/Core/L10n.php:522 src/Model/Event.php:439 +#: src/Core/L10n.php:508 src/Model/Event.php:425 msgid "Mar" msgstr "3月" -#: src/Core/L10n.php:522 src/Model/Event.php:440 +#: src/Core/L10n.php:508 src/Model/Event.php:426 msgid "Apr" msgstr "4月" -#: src/Core/L10n.php:522 src/Model/Event.php:442 +#: src/Core/L10n.php:508 src/Model/Event.php:428 msgid "Jun" msgstr "6月" -#: src/Core/L10n.php:522 src/Model/Event.php:443 +#: src/Core/L10n.php:508 src/Model/Event.php:429 msgid "Jul" msgstr "7月" -#: src/Core/L10n.php:522 src/Model/Event.php:444 +#: src/Core/L10n.php:508 src/Model/Event.php:430 msgid "Aug" msgstr "8月" -#: src/Core/L10n.php:522 +#: src/Core/L10n.php:508 msgid "Sep" msgstr "9月" -#: src/Core/L10n.php:522 src/Model/Event.php:446 +#: src/Core/L10n.php:508 src/Model/Event.php:432 msgid "Oct" msgstr "10月" -#: src/Core/L10n.php:522 src/Model/Event.php:447 +#: src/Core/L10n.php:508 src/Model/Event.php:433 msgid "Nov" msgstr "11月" -#: src/Core/L10n.php:522 src/Model/Event.php:448 +#: src/Core/L10n.php:508 src/Model/Event.php:434 msgid "Dec" msgstr "12月" -#: src/Core/Logger/Util/LoggerSettingsCheck.php:60 +#: src/Core/Logger/Util/LoggerSettingsCheck.php:46 #, php-format msgid "The logfile '%s' is not usable. No logging possible (error: '%s')" msgstr "ログファイル ' %s ' は使用できません。ログ機能が使用できません。(エラー: ' %s ' )" -#: src/Core/Logger/Util/LoggerSettingsCheck.php:85 +#: src/Core/Logger/Util/LoggerSettingsCheck.php:71 #, php-format msgid "" "The debug logfile '%s' is not usable. No logging possible (error: '%s')" msgstr "デバッグログファイル ' %s ' は使用できません。ログ機能が使用できません。(エラー: ' %s ' )" -#: src/Core/Renderer.php:92 src/Core/Renderer.php:121 -#: src/Core/Renderer.php:150 src/Core/Renderer.php:184 -#: src/Render/FriendicaSmartyEngine.php:60 +#: src/Core/Renderer.php:78 src/Core/Renderer.php:107 +#: src/Core/Renderer.php:136 src/Core/Renderer.php:170 +#: src/Render/FriendicaSmartyEngine.php:46 msgid "" "Friendica can't display this page at the moment, please contact the " "administrator." msgstr "" -#: src/Core/Renderer.php:146 +#: src/Core/Renderer.php:132 msgid "template engine cannot be registered without a name." msgstr "" -#: src/Core/Renderer.php:180 +#: src/Core/Renderer.php:166 msgid "template engine is not registered!" msgstr "" -#: src/Core/Storage/Type/FilesystemConfig.php:78 +#: src/Core/Storage/Type/FilesystemConfig.php:64 msgid "Storage base path" msgstr "ストレージのbase path" -#: src/Core/Storage/Type/FilesystemConfig.php:80 +#: src/Core/Storage/Type/FilesystemConfig.php:66 msgid "" "Folder where uploaded files are saved. For maximum security, This should be " "a path outside web server folder tree" msgstr "アップロードされたファイルが保存されるフォルダです。最大限のセキュリティを確保するために、これはWebサーバーフォルダツリー外のパスである必要があります" -#: src/Core/Storage/Type/FilesystemConfig.php:93 +#: src/Core/Storage/Type/FilesystemConfig.php:79 msgid "Enter a valid existing folder" msgstr "有効な既存のフォルダを入力してください" -#: src/Core/Update.php:80 +#: src/Core/Update.php:66 #, php-format msgid "" "Updates from version %s are not supported. Please update at least to version" " 2021.01 and wait until the postupdate finished version 1383." msgstr "" -#: src/Core/Update.php:91 +#: src/Core/Update.php:77 #, php-format msgid "" "Updates from postupdate version %s are not supported. Please update at least" " to version 2021.01 and wait until the postupdate finished version 1383." msgstr "" -#: src/Core/Update.php:183 +#: src/Core/Update.php:169 #, php-format msgid "%s: executing pre update %d" msgstr "" -#: src/Core/Update.php:225 +#: src/Core/Update.php:211 #, php-format msgid "%s: executing post update %d" msgstr "" -#: src/Core/Update.php:299 +#: src/Core/Update.php:285 #, php-format msgid "Update %s failed. See error logs." msgstr "%sの更新に失敗しました。エラーログを参照してください。" -#: src/Core/Update.php:339 +#: src/Core/Update.php:325 #, php-format msgid "" "\n" @@ -3152,49 +3158,49 @@ msgid "" "\t\t\t\tfriendica developer if you can not help me on your own. My database might be invalid." msgstr "\n\t\t\t\tfriendicaの開発者は更新 %s をリリースしました。\n\t\t\t\tしかし、私がそれをインストールしようとしたとき、何かをひどく間違ったようです。\n\t\t\t\tこれはすぐに修正される必要がありますが、私一人では解決できません。\n自己解決が無理な場合はfriendica開発者へコンタクトをとってください。データベースが無効である可能性があります。" -#: src/Core/Update.php:345 +#: src/Core/Update.php:331 #, php-format msgid "The error message is\\n[pre]%s[/pre]" msgstr "" -#: src/Core/Update.php:349 src/Core/Update.php:377 +#: src/Core/Update.php:335 src/Core/Update.php:363 msgid "[Friendica Notify] Database update" msgstr "[Friendica Notify]データベースの更新" -#: src/Core/Update.php:371 +#: src/Core/Update.php:357 #, php-format msgid "" "\n" "\t\t\t\tThe friendica database was successfully updated from %s to %s." msgstr "" -#: src/Database/DBStructure.php:57 +#: src/Database/DBStructure.php:43 #, php-format msgid "The database version had been set to %s." msgstr "" -#: src/Database/DBStructure.php:82 +#: src/Database/DBStructure.php:68 #, php-format msgid "" "The post update is at version %d, it has to be at %d to safely drop the " "tables." msgstr "" -#: src/Database/DBStructure.php:95 +#: src/Database/DBStructure.php:81 msgid "No unused tables found." msgstr "" -#: src/Database/DBStructure.php:100 +#: src/Database/DBStructure.php:86 msgid "" "These tables are not used for friendica and will be deleted when you execute" " \"dbstructure drop -e\":" msgstr "" -#: src/Database/DBStructure.php:137 +#: src/Database/DBStructure.php:123 msgid "There are no tables on MyISAM or InnoDB with the Antelope file format." msgstr "" -#: src/Database/DBStructure.php:161 +#: src/Database/DBStructure.php:147 #, php-format msgid "" "\n" @@ -3202,623 +3208,619 @@ msgid "" "%s\n" msgstr "\nデータベースの更新中にエラー%dが発生しました:\n%s\n" -#: src/Database/DBStructure.php:164 +#: src/Database/DBStructure.php:150 msgid "Errors encountered performing database changes: " msgstr "データベース変更の実行中に発生したエラー:" -#: src/Database/DBStructure.php:232 +#: src/Database/DBStructure.php:218 msgid "Another database update is currently running." msgstr "" -#: src/Database/DBStructure.php:236 +#: src/Database/DBStructure.php:222 #, php-format msgid "%s: Database update" msgstr "%s :データベースの更新" -#: src/Database/DBStructure.php:493 +#: src/Database/DBStructure.php:479 #, php-format msgid "%s: updating %s table." msgstr "%s : %sテーブルを更新しています。" -#: src/Factory/Api/Mastodon/Error.php:42 +#: src/Factory/Api/Mastodon/Error.php:28 msgid "Record not found" msgstr "" -#: src/Factory/Api/Mastodon/Error.php:49 +#: src/Factory/Api/Mastodon/Error.php:35 msgid "Unprocessable Entity" msgstr "" -#: src/Factory/Api/Mastodon/Error.php:56 +#: src/Factory/Api/Mastodon/Error.php:42 msgid "Unauthorized" msgstr "認証されていません" -#: src/Factory/Api/Mastodon/Error.php:62 +#: src/Factory/Api/Mastodon/Error.php:48 msgid "" "Token is not authorized with a valid user or is missing a required scope" msgstr "" -#: src/Factory/Api/Mastodon/Error.php:69 +#: src/Factory/Api/Mastodon/Error.php:55 msgid "Internal Server Error" msgstr "内部サーバーエラー" -#: src/LegacyModule.php:63 +#: src/LegacyModule.php:49 #, php-format msgid "Legacy module file not found: %s" msgstr "レガシーモジュールファイルが見つかりません: %s" -#: src/Model/Circle.php:106 +#: src/Model/Circle.php:92 msgid "" "A deleted circle with this name was revived. Existing item permissions " "may apply to this circle and any future members. If this is" " not what you intended, please create another circle with a different name." msgstr "" -#: src/Model/Circle.php:544 +#: src/Model/Circle.php:530 msgid "Everybody" msgstr "みんな" -#: src/Model/Circle.php:563 +#: src/Model/Circle.php:549 msgid "edit" msgstr "編集する" -#: src/Model/Circle.php:600 +#: src/Model/Circle.php:586 msgid "add" msgstr "加える" -#: src/Model/Circle.php:605 +#: src/Model/Circle.php:591 msgid "Edit circle" msgstr "" -#: src/Model/Circle.php:606 src/Module/Circle.php:195 +#: src/Model/Circle.php:592 src/Module/Circle.php:181 msgid "Contacts not in any circle" msgstr "" -#: src/Model/Circle.php:608 +#: src/Model/Circle.php:594 msgid "Create a new circle" msgstr "" -#: src/Model/Circle.php:609 src/Module/Circle.php:180 -#: src/Module/Circle.php:203 src/Module/Circle.php:278 +#: src/Model/Circle.php:595 src/Module/Circle.php:166 +#: src/Module/Circle.php:189 src/Module/Circle.php:264 msgid "Circle Name: " msgstr "" -#: src/Model/Circle.php:610 +#: src/Model/Circle.php:596 msgid "Edit circles" msgstr "" -#: src/Model/Contact.php:1247 src/Module/Moderation/Users/Pending.php:102 -#: src/Module/Notifications/Introductions.php:132 -#: src/Module/Notifications/Introductions.php:204 +#: src/Model/Contact.php:1263 src/Module/Moderation/Users/Pending.php:88 +#: src/Module/Notifications/Introductions.php:124 +#: src/Module/Notifications/Introductions.php:196 msgid "Approve" msgstr "承認する" -#: src/Model/Contact.php:1725 +#: src/Model/Contact.php:1743 msgid "Organisation" msgstr "組織" -#: src/Model/Contact.php:1733 +#: src/Model/Contact.php:1751 msgid "Group" msgstr "" -#: src/Model/Contact.php:1737 src/Module/Moderation/BaseUsers.php:131 +#: src/Model/Contact.php:1755 src/Module/Moderation/BaseUsers.php:120 msgid "Relay" msgstr "中継" -#: src/Model/Contact.php:3046 +#: src/Model/Contact.php:3070 msgid "Disallowed profile URL." msgstr "許可されていないプロフィールURL。" -#: src/Model/Contact.php:3051 src/Module/Friendica.php:100 +#: src/Model/Contact.php:3075 src/Module/Friendica.php:86 msgid "Blocked domain" msgstr "ブロックされたドメイン" -#: src/Model/Contact.php:3056 +#: src/Model/Contact.php:3080 msgid "Connect URL missing." msgstr "接続URLがありません。" -#: src/Model/Contact.php:3065 +#: src/Model/Contact.php:3089 msgid "" "The contact could not be added. Please check the relevant network " "credentials in your Settings -> Social Networks page." msgstr "コンタクトを追加できませんでした。ページの \"設定\" -> \"ソーシャルネットワーク\" で、関連するネットワーク認証情報を確認してください。" -#: src/Model/Contact.php:3083 +#: src/Model/Contact.php:3107 #, php-format msgid "Expected network %s does not match actual network %s" msgstr "" -#: src/Model/Contact.php:3100 +#: src/Model/Contact.php:3124 msgid "This seems to be a relay account. They can't be followed by users." msgstr "" -#: src/Model/Contact.php:3107 +#: src/Model/Contact.php:3131 msgid "The profile address specified does not provide adequate information." msgstr "指定されたプロフィールアドレスは、適切な情報を提供しません。" -#: src/Model/Contact.php:3109 +#: src/Model/Contact.php:3133 msgid "No compatible communication protocols or feeds were discovered." msgstr "互換性のある通信プロトコルまたはフィードは見つかりませんでした。" -#: src/Model/Contact.php:3112 +#: src/Model/Contact.php:3136 msgid "An author or name was not found." msgstr "著者または名前が見つかりませんでした。" -#: src/Model/Contact.php:3115 +#: src/Model/Contact.php:3139 msgid "No browser URL could be matched to this address." msgstr "このアドレスに一致するブラウザURLはありません。" -#: src/Model/Contact.php:3118 +#: src/Model/Contact.php:3142 msgid "" "Unable to match @-style Identity Address with a known protocol or email " "contact." msgstr "@スタイルのIDアドレスを既知のプロトコルまたは電子メールのコンタクトと一致させることができません。" -#: src/Model/Contact.php:3119 +#: src/Model/Contact.php:3143 msgid "Use mailto: in front of address to force email check." msgstr "メールチェックを強制するには、アドレスの前にmailto:を使用します。" -#: src/Model/Contact.php:3125 -msgid "" -"The profile address specified belongs to a network which has been disabled " -"on this site." -msgstr "指定されたプロフィールアドレスは、このサイトで無効にされたネットワークに属します。" - -#: src/Model/Contact.php:3130 +#: src/Model/Contact.php:3149 msgid "" "Limited profile. This person will be unable to receive direct/personal " "notifications from you." msgstr "限定公開のプロフィールです。この人はあなたから直接/個人的な通知を受け取ることができません。" -#: src/Model/Contact.php:3196 +#: src/Model/Contact.php:3208 msgid "Unable to retrieve contact information." msgstr "コンタクト情報を取得できません。" -#: src/Model/Event.php:54 +#: src/Model/Event.php:40 msgid "l F d, Y \\@ g:i A \\G\\M\\TP (e)" msgstr "" -#: src/Model/Event.php:75 src/Model/Event.php:92 src/Model/Event.php:469 -#: src/Model/Event.php:942 +#: src/Model/Event.php:61 src/Model/Event.php:78 src/Model/Event.php:455 +#: src/Model/Event.php:928 msgid "Starts:" msgstr "開始:" -#: src/Model/Event.php:78 src/Model/Event.php:98 src/Model/Event.php:470 -#: src/Model/Event.php:946 +#: src/Model/Event.php:64 src/Model/Event.php:84 src/Model/Event.php:456 +#: src/Model/Event.php:932 msgid "Finishes:" msgstr "終了:" -#: src/Model/Event.php:419 +#: src/Model/Event.php:405 msgid "all-day" msgstr "一日中" -#: src/Model/Event.php:445 +#: src/Model/Event.php:431 msgid "Sept" msgstr "9月" -#: src/Model/Event.php:462 src/Module/Calendar/Show.php:128 -#: src/Util/Temporal.php:343 +#: src/Model/Event.php:448 src/Module/Calendar/Show.php:114 +#: src/Util/Temporal.php:329 msgid "today" msgstr "今日" -#: src/Model/Event.php:463 src/Module/Calendar/Show.php:129 -#: src/Module/Settings/Display.php:294 src/Util/Temporal.php:353 +#: src/Model/Event.php:449 src/Module/Calendar/Show.php:115 +#: src/Module/Settings/Display.php:280 src/Util/Temporal.php:339 msgid "month" msgstr "月" -#: src/Model/Event.php:464 src/Module/Calendar/Show.php:130 -#: src/Module/Settings/Display.php:295 src/Util/Temporal.php:354 +#: src/Model/Event.php:450 src/Module/Calendar/Show.php:116 +#: src/Module/Settings/Display.php:281 src/Util/Temporal.php:340 msgid "week" msgstr "週間" -#: src/Model/Event.php:465 src/Module/Calendar/Show.php:131 -#: src/Module/Settings/Display.php:296 src/Util/Temporal.php:355 +#: src/Model/Event.php:451 src/Module/Calendar/Show.php:117 +#: src/Module/Settings/Display.php:282 src/Util/Temporal.php:341 msgid "day" msgstr "日" -#: src/Model/Event.php:467 +#: src/Model/Event.php:453 msgid "No events to display" msgstr "表示するイベントはありません" -#: src/Model/Event.php:516 src/Module/DFRN/Poll.php:47 src/Module/Feed.php:68 -#: src/Module/Update/Profile.php:56 +#: src/Model/Event.php:502 src/Module/Feed.php:56 +#: src/Module/Update/Profile.php:42 msgid "Access to this profile has been restricted." msgstr "このプロフィールへのアクセスは制限されています。" -#: src/Model/Event.php:558 src/Module/Calendar/Event/Show.php:67 +#: src/Model/Event.php:544 src/Module/Calendar/Event/Show.php:53 msgid "Event not found." msgstr "" -#: src/Model/Event.php:637 +#: src/Model/Event.php:623 msgid "l, F j" msgstr "l, F j" -#: src/Model/Event.php:664 +#: src/Model/Event.php:650 msgid "Edit event" msgstr "イベントを編集" -#: src/Model/Event.php:665 +#: src/Model/Event.php:651 msgid "Duplicate event" msgstr "重複イベント" -#: src/Model/Event.php:666 +#: src/Model/Event.php:652 msgid "Delete event" msgstr "イベントを削除" -#: src/Model/Event.php:896 src/Module/Debug/Localtime.php:38 +#: src/Model/Event.php:882 src/Module/Debug/Localtime.php:24 msgid "l F d, Y \\@ g:i A" msgstr "l F d, Y \\@ g:i A" -#: src/Model/Event.php:897 +#: src/Model/Event.php:883 msgid "D g:i A" msgstr "D g:i A" -#: src/Model/Event.php:898 +#: src/Model/Event.php:884 msgid "g:i A" msgstr "g:i A" -#: src/Model/Event.php:961 src/Model/Event.php:963 +#: src/Model/Event.php:947 src/Model/Event.php:949 msgid "Show map" msgstr "地図を表示" -#: src/Model/Event.php:962 +#: src/Model/Event.php:948 msgid "Hide map" msgstr "地図を隠す" -#: src/Model/Event.php:1055 +#: src/Model/Event.php:1041 #, php-format msgid "%s's birthday" msgstr "%sの誕生日" -#: src/Model/Event.php:1056 +#: src/Model/Event.php:1042 #, php-format msgid "Happy Birthday %s" msgstr "ハッピーバースデー %s" -#: src/Model/Item.php:2307 +#: src/Model/Item.php:2322 #, php-format msgid "%s (%s - %s): %s" msgstr "" -#: src/Model/Item.php:2309 +#: src/Model/Item.php:2324 #, php-format msgid "%s (%s): %s" msgstr "" -#: src/Model/Item.php:2312 +#: src/Model/Item.php:2327 #, php-format -msgid "Detected languages in this post:\\n%s" +msgid "" +"Detected languages in this post:\n" +"%s" msgstr "" -#: src/Model/Item.php:3260 +#: src/Model/Item.php:3276 msgid "activity" msgstr "アクティビティ" -#: src/Model/Item.php:3262 +#: src/Model/Item.php:3278 msgid "comment" msgstr "" -#: src/Model/Item.php:3265 src/Module/Post/Tag/Add.php:123 +#: src/Model/Item.php:3281 src/Module/Post/Tag/Add.php:109 msgid "post" msgstr "投稿" -#: src/Model/Item.php:3435 +#: src/Model/Item.php:3451 #, php-format msgid "%s is blocked" msgstr "" -#: src/Model/Item.php:3437 +#: src/Model/Item.php:3453 #, php-format msgid "%s is ignored" msgstr "" -#: src/Model/Item.php:3439 +#: src/Model/Item.php:3455 #, php-format msgid "Content from %s is collapsed" msgstr "" -#: src/Model/Item.php:3443 +#: src/Model/Item.php:3459 msgid "Sensitive content" msgstr "" -#: src/Model/Item.php:3912 +#: src/Model/Item.php:3928 msgid "bytes" msgstr "バイト" -#: src/Model/Item.php:3943 +#: src/Model/Item.php:3959 #, 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:3945 +#: src/Model/Item.php:3961 #, php-format msgid "%2$s (%1$d vote)" msgid_plural "%2$s (%1$d votes)" msgstr[0] "" -#: src/Model/Item.php:3950 +#: src/Model/Item.php:3966 #, php-format msgid "%d voter. Poll end: %s" msgid_plural "%d voters. Poll end: %s" msgstr[0] "" -#: src/Model/Item.php:3952 +#: src/Model/Item.php:3968 #, php-format msgid "%d voter." msgid_plural "%d voters." msgstr[0] "" -#: src/Model/Item.php:3954 +#: src/Model/Item.php:3970 #, php-format msgid "Poll end: %s" msgstr "" -#: src/Model/Item.php:3995 src/Model/Item.php:3996 +#: src/Model/Item.php:4011 src/Model/Item.php:4012 msgid "View on separate page" msgstr "個別のページで見る" -#: src/Model/Mail.php:135 +#: src/Model/Mail.php:121 msgid "[no subject]" msgstr "[件名なし]" -#: src/Model/Photo.php:1198 src/Module/Media/Photo/Upload.php:168 +#: src/Model/Photo.php:1194 src/Module/Media/Photo/Upload.php:154 msgid "Wall Photos" msgstr "ウォール写真" -#: src/Model/Profile.php:364 src/Module/Profile/Profile.php:283 -#: src/Module/Profile/Profile.php:285 +#: src/Model/Profile.php:343 src/Module/Profile/Profile.php:271 +#: src/Module/Profile/Profile.php:273 msgid "Edit profile" msgstr "プロフィール編集" -#: src/Model/Profile.php:366 +#: src/Model/Profile.php:345 msgid "Change profile photo" msgstr "プロフィール写真を変更" -#: src/Model/Profile.php:379 src/Module/Directory.php:152 -#: src/Module/Profile/Profile.php:209 +#: src/Model/Profile.php:358 src/Module/Directory.php:139 +#: src/Module/Profile/Profile.php:197 msgid "Homepage:" msgstr "ホームページ:" -#: src/Model/Profile.php:380 src/Module/Contact/Profile.php:418 -#: src/Module/Notifications/Introductions.php:189 +#: src/Model/Profile.php:359 src/Module/Contact/Profile.php:418 +#: src/Module/Notifications/Introductions.php:181 msgid "About:" msgstr "この場所について:" -#: src/Model/Profile.php:481 +#: src/Model/Profile.php:460 msgid "Atom feed" msgstr "Atomフィード" -#: src/Model/Profile.php:488 +#: src/Model/Profile.php:467 msgid "This website has been verified to belong to the same person." msgstr "" -#: src/Model/Profile.php:539 +#: src/Model/Profile.php:518 msgid "F d" msgstr "F d" -#: src/Model/Profile.php:603 src/Model/Profile.php:680 +#: src/Model/Profile.php:582 src/Model/Profile.php:663 msgid "[today]" msgstr "[今日]" -#: src/Model/Profile.php:612 +#: src/Model/Profile.php:591 msgid "Birthday Reminders" msgstr "誕生日のリマインダー" -#: src/Model/Profile.php:613 +#: src/Model/Profile.php:592 msgid "Birthdays this week:" msgstr "今週の誕生日:" -#: src/Model/Profile.php:629 +#: src/Model/Profile.php:608 msgid "g A l F d" msgstr "g A l F d" -#: src/Model/Profile.php:667 +#: src/Model/Profile.php:650 msgid "[No description]" msgstr "[説明なし]" -#: src/Model/Profile.php:693 +#: src/Model/Profile.php:676 msgid "Event Reminders" msgstr "イベントリマインダー" -#: src/Model/Profile.php:694 +#: src/Model/Profile.php:677 msgid "Upcoming events the next 7 days:" msgstr "今後7日間の今後のイベント:" -#: src/Model/Profile.php:882 -#, php-format -msgid "OpenWebAuth: %1$s welcomes %2$s" -msgstr "OpenWebAuth: %2$sさん、%1$sへようこそ" - -#: src/Model/Profile.php:1022 +#: src/Model/Profile.php:789 msgid "Hometown:" msgstr "出身地:" -#: src/Model/Profile.php:1023 +#: src/Model/Profile.php:790 msgid "Marital Status:" msgstr "" -#: src/Model/Profile.php:1024 +#: src/Model/Profile.php:791 msgid "With:" msgstr "" -#: src/Model/Profile.php:1025 +#: src/Model/Profile.php:792 msgid "Since:" msgstr "" -#: src/Model/Profile.php:1026 +#: src/Model/Profile.php:793 msgid "Sexual Preference:" msgstr "性的嗜好:" -#: src/Model/Profile.php:1027 +#: src/Model/Profile.php:794 msgid "Political Views:" msgstr "政見:" -#: src/Model/Profile.php:1028 +#: src/Model/Profile.php:795 msgid "Religious Views:" msgstr "宗教的見解:" -#: src/Model/Profile.php:1029 +#: src/Model/Profile.php:796 msgid "Likes:" msgstr "好きなもの:" -#: src/Model/Profile.php:1030 +#: src/Model/Profile.php:797 msgid "Dislikes:" msgstr "嫌いなもの:" -#: src/Model/Profile.php:1031 +#: src/Model/Profile.php:798 msgid "Title/Description:" msgstr "タイトル説明:" -#: src/Model/Profile.php:1032 src/Module/Admin/Summary.php:197 -#: src/Module/Moderation/Report/Create.php:280 -#: src/Module/Moderation/Summary.php:76 +#: src/Model/Profile.php:799 src/Module/Admin/Summary.php:183 +#: src/Module/Moderation/Report/Create.php:266 +#: src/Module/Moderation/Summary.php:62 msgid "Summary" msgstr "概要" -#: src/Model/Profile.php:1033 +#: src/Model/Profile.php:800 msgid "Musical interests" msgstr "音楽的興味" -#: src/Model/Profile.php:1034 +#: src/Model/Profile.php:801 msgid "Books, literature" msgstr "本、文学" -#: src/Model/Profile.php:1035 +#: src/Model/Profile.php:802 msgid "Television" msgstr "テレビ" -#: src/Model/Profile.php:1036 +#: src/Model/Profile.php:803 msgid "Film/dance/culture/entertainment" msgstr "映画/ダンス/文化/エンターテイメント" -#: src/Model/Profile.php:1037 +#: src/Model/Profile.php:804 msgid "Hobbies/Interests" msgstr "趣味/興味" -#: src/Model/Profile.php:1038 +#: src/Model/Profile.php:805 msgid "Love/romance" msgstr "愛/ロマンス" -#: src/Model/Profile.php:1039 +#: src/Model/Profile.php:806 msgid "Work/employment" msgstr "仕事/雇用" -#: src/Model/Profile.php:1040 +#: src/Model/Profile.php:807 msgid "School/education" msgstr "学校教育" -#: src/Model/Profile.php:1041 +#: src/Model/Profile.php:808 msgid "Contact information and Social Networks" msgstr "コンタクト情報とソーシャルネットワーク" -#: src/Model/User.php:233 src/Model/User.php:1303 +#: src/Model/Profile.php:856 +#, php-format +msgid "Responsible account: %s" +msgstr "" + +#: src/Model/User.php:217 src/Model/User.php:1310 msgid "SERIOUS ERROR: Generation of security keys failed." msgstr "重大なエラー:セキュリティキーの生成に失敗しました。" -#: src/Model/User.php:733 src/Model/User.php:766 +#: src/Model/User.php:740 src/Model/User.php:773 msgid "Login failed" msgstr "ログインに失敗しました" -#: src/Model/User.php:798 +#: src/Model/User.php:805 msgid "Not enough information to authenticate" msgstr "認証に十分な情報がありません" -#: src/Model/User.php:923 +#: src/Model/User.php:930 msgid "Password can't be empty" msgstr "パスワードは空にできません" -#: src/Model/User.php:965 +#: src/Model/User.php:972 msgid "Empty passwords are not allowed." msgstr "空のパスワードは許可されていません。" -#: src/Model/User.php:969 +#: src/Model/User.php:976 msgid "" "The new password has been exposed in a public data dump, please choose " "another." msgstr "新しいパスワードは公開データダンプで公開されています。別のパスワードを選択してください。" -#: src/Model/User.php:973 +#: src/Model/User.php:980 msgid "The password length is limited to 72 characters." msgstr "" -#: src/Model/User.php:977 +#: src/Model/User.php:984 msgid "The password can't contain white spaces nor accentuated letters" msgstr "" -#: src/Model/User.php:1186 +#: src/Model/User.php:1193 msgid "Passwords do not match. Password unchanged." msgstr "パスワードが一致していません。パスワードは変更されていません。" -#: src/Model/User.php:1193 +#: src/Model/User.php:1200 msgid "An invitation is required." msgstr "招待状が必要です。" -#: src/Model/User.php:1197 +#: src/Model/User.php:1204 msgid "Invitation could not be verified." msgstr "招待を確認できませんでした。" -#: src/Model/User.php:1205 +#: src/Model/User.php:1212 msgid "Invalid OpenID url" msgstr "無効なOpenID URL" -#: src/Model/User.php:1218 src/Security/Authentication.php:230 +#: src/Model/User.php:1225 src/Security/Authentication.php:214 msgid "" "We encountered a problem while logging in with the OpenID you provided. " "Please check the correct spelling of the ID." msgstr "指定したOpenIDでログイン中に問題が発生しました。 IDの正しいスペルを確認してください。" -#: src/Model/User.php:1218 src/Security/Authentication.php:230 +#: src/Model/User.php:1225 src/Security/Authentication.php:214 msgid "The error message was:" msgstr "エラーメッセージは次のとおりです。" -#: src/Model/User.php:1224 +#: src/Model/User.php:1231 msgid "Please enter the required information." msgstr "必要な情報を入力してください。" -#: src/Model/User.php:1238 +#: src/Model/User.php:1245 #, php-format msgid "" "system.username_min_length (%s) and system.username_max_length (%s) are " "excluding each other, swapping values." msgstr "system.username_min_length( %s )とsystem.username_max_length( %s )は、お互いを除外し、値を交換しています。" -#: src/Model/User.php:1245 +#: src/Model/User.php:1252 #, php-format msgid "Username should be at least %s character." msgid_plural "Username should be at least %s characters." msgstr[0] "ユーザー名は少なくとも%s文字である必要があります。" -#: src/Model/User.php:1249 +#: src/Model/User.php:1256 #, php-format msgid "Username should be at most %s character." msgid_plural "Username should be at most %s characters." msgstr[0] "ユーザー名は最大で%s文字にする必要があります。" -#: src/Model/User.php:1257 +#: src/Model/User.php:1264 msgid "That doesn't appear to be your full (First Last) name." msgstr "それはあなたのフルネーム(ファースト/ラスト)ではないようです。" -#: src/Model/User.php:1262 +#: src/Model/User.php:1269 msgid "Your email domain is not among those allowed on this site." msgstr "あなたのメールドメインは、このサイトで許可されているものではありません。" -#: src/Model/User.php:1266 +#: src/Model/User.php:1273 msgid "Not a valid email address." msgstr "有効な電子メールアドレスではありません。" -#: src/Model/User.php:1269 +#: src/Model/User.php:1276 msgid "The nickname was blocked from registration by the nodes admin." msgstr "そのニックネームは、ノード管理者によって登録がブロックされました。" -#: src/Model/User.php:1273 src/Model/User.php:1279 +#: src/Model/User.php:1280 src/Model/User.php:1286 msgid "Cannot use that email." msgstr "そのメールは使用できません。" -#: src/Model/User.php:1285 +#: src/Model/User.php:1292 msgid "Your nickname can only contain a-z, 0-9 and _." msgstr "ニックネームにはa-z、0-9、および _ のみを含めることができます。" -#: src/Model/User.php:1293 src/Model/User.php:1350 +#: src/Model/User.php:1300 src/Model/User.php:1350 msgid "Nickname is already registered. Please choose another." msgstr "ニックネームはすでに登録されています。別のものを選択してください。" @@ -3843,11 +3845,11 @@ msgid "" "An error occurred creating your default contact circle. Please try again." msgstr "" -#: src/Model/User.php:1422 +#: src/Model/User.php:1428 msgid "Profile Photos" msgstr "プロフィール写真" -#: src/Model/User.php:1604 +#: src/Model/User.php:1616 #, php-format msgid "" "\n" @@ -3855,7 +3857,7 @@ msgid "" "\t\t\tthe administrator of %2$s has set up an account for you." msgstr "" -#: src/Model/User.php:1607 +#: src/Model/User.php:1619 #, php-format msgid "" "\n" @@ -3886,12 +3888,12 @@ msgid "" "\t\tThank you and welcome to %4$s." msgstr "" -#: src/Model/User.php:1639 src/Model/User.php:1745 +#: src/Model/User.php:1651 src/Model/User.php:1757 #, php-format msgid "Registration details for %s" msgstr "%s の登録の詳細" -#: src/Model/User.php:1659 +#: src/Model/User.php:1671 #, php-format msgid "" "\n" @@ -3906,12 +3908,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:1678 +#: src/Model/User.php:1690 #, php-format msgid "Registration at %s" msgstr "%s登録" -#: src/Model/User.php:1702 +#: src/Model/User.php:1714 #, php-format msgid "" "\n" @@ -3920,7 +3922,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:1710 +#: src/Model/User.php:1722 #, php-format msgid "" "\n" @@ -3951,93 +3953,91 @@ msgid "" "\t\t\tThank you and welcome to %2$s." msgstr "" -#: src/Model/User.php:1772 +#: src/Model/User.php:1784 msgid "" "User with delegates can't be removed, please remove delegate users first" msgstr "" -#: src/Module/Admin/Addons/Details.php:65 +#: src/Module/Admin/Addons/Details.php:51 msgid "Addon not found." msgstr "アドオンが見つかりません。" -#: src/Module/Admin/Addons/Details.php:76 src/Module/Admin/Addons/Index.php:49 +#: src/Module/Admin/Addons/Details.php:62 src/Module/Admin/Addons/Index.php:41 #, php-format msgid "Addon %s disabled." msgstr "アドオン%sを無効にしました。" -#: src/Module/Admin/Addons/Details.php:79 src/Module/Admin/Addons/Index.php:51 +#: src/Module/Admin/Addons/Details.php:65 src/Module/Admin/Addons/Index.php:43 #, php-format msgid "Addon %s enabled." msgstr "アドオン%sが有効になりました。" -#: src/Module/Admin/Addons/Details.php:88 -#: src/Module/Admin/Themes/Details.php:46 +#: src/Module/Admin/Addons/Details.php:74 +#: src/Module/Admin/Themes/Details.php:38 msgid "Disable" msgstr "無効にする" -#: src/Module/Admin/Addons/Details.php:91 -#: src/Module/Admin/Themes/Details.php:49 src/Module/Settings/Display.php:340 +#: src/Module/Admin/Addons/Details.php:77 +#: src/Module/Admin/Themes/Details.php:41 src/Module/Settings/Display.php:326 msgid "Enable" msgstr "有効にする" -#: src/Module/Admin/Addons/Details.php:111 -#: src/Module/Admin/Addons/Index.php:67 src/Module/Admin/Federation.php:220 -#: src/Module/Admin/Logs/Settings.php:88 src/Module/Admin/Logs/View.php:85 -#: src/Module/Admin/Queue.php:73 src/Module/Admin/Site.php:455 -#: 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 -#: src/Module/Moderation/Users/Pending.php:96 +#: src/Module/Admin/Addons/Details.php:97 src/Module/Admin/Addons/Index.php:59 +#: src/Module/Admin/Federation.php:206 src/Module/Admin/Logs/Settings.php:74 +#: src/Module/Admin/Logs/View.php:71 src/Module/Admin/Queue.php:59 +#: src/Module/Admin/Site.php:447 src/Module/Admin/Storage.php:124 +#: src/Module/Admin/Summary.php:182 src/Module/Admin/Themes/Details.php:82 +#: src/Module/Admin/Themes/Index.php:103 src/Module/Admin/Tos.php:63 +#: src/Module/Moderation/Users/Create.php:47 +#: src/Module/Moderation/Users/Pending.php:82 msgid "Administration" msgstr "運営管理" -#: src/Module/Admin/Addons/Details.php:112 -#: src/Module/Admin/Addons/Index.php:68 src/Module/BaseAdmin.php:92 -#: src/Module/BaseSettings.php:139 +#: src/Module/Admin/Addons/Details.php:98 src/Module/Admin/Addons/Index.php:60 +#: src/Module/BaseAdmin.php:78 src/Module/BaseSettings.php:125 msgid "Addons" msgstr "アドオン" -#: src/Module/Admin/Addons/Details.php:113 -#: src/Module/Admin/Themes/Details.php:92 +#: src/Module/Admin/Addons/Details.php:99 +#: src/Module/Admin/Themes/Details.php:84 msgid "Toggle" msgstr "トグル" -#: src/Module/Admin/Addons/Details.php:120 -#: src/Module/Admin/Themes/Details.php:100 +#: src/Module/Admin/Addons/Details.php:106 +#: src/Module/Admin/Themes/Details.php:92 msgid "Author: " msgstr "著者:" -#: src/Module/Admin/Addons/Details.php:121 -#: src/Module/Admin/Themes/Details.php:101 +#: src/Module/Admin/Addons/Details.php:107 +#: src/Module/Admin/Themes/Details.php:93 msgid "Maintainer: " msgstr "メンテナー:" -#: src/Module/Admin/Addons/Index.php:42 +#: src/Module/Admin/Addons/Index.php:34 msgid "Addons reloaded" msgstr "" -#: src/Module/Admin/Addons/Index.php:53 +#: src/Module/Admin/Addons/Index.php:45 #, php-format msgid "Addon %s failed to install." msgstr "アドオン %s のインストールに失敗しました。" -#: src/Module/Admin/Addons/Index.php:69 src/Module/Admin/Features.php:83 -#: src/Module/Admin/Logs/Settings.php:90 src/Module/Admin/Site.php:458 -#: src/Module/Admin/Themes/Index.php:113 src/Module/Admin/Tos.php:86 -#: src/Module/Settings/Account.php:558 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/Features.php:75 +#: src/Module/Admin/Addons/Index.php:61 src/Module/Admin/Features.php:69 +#: src/Module/Admin/Logs/Settings.php:76 src/Module/Admin/Site.php:450 +#: src/Module/Admin/Themes/Index.php:105 src/Module/Admin/Tos.php:72 +#: src/Module/Settings/Account.php:549 src/Module/Settings/Addons.php:64 +#: src/Module/Settings/Connectors.php:149 +#: src/Module/Settings/Connectors.php:235 +#: src/Module/Settings/Delegation.php:179 src/Module/Settings/Display.php:295 +#: src/Module/Settings/Features.php:61 msgid "Save Settings" msgstr "設定を保存" -#: src/Module/Admin/Addons/Index.php:70 +#: src/Module/Admin/Addons/Index.php:62 msgid "Reload active addons" msgstr "アクティブなアドオンをリロードする" -#: src/Module/Admin/Addons/Index.php:74 +#: src/Module/Admin/Addons/Index.php:66 #, php-format msgid "" "There are currently no addons available on your node. You can find the " @@ -4045,151 +4045,151 @@ msgid "" " the open addon registry at %2$s" msgstr "現在、ノードで使用可能なアドオンはありません。公式のアドオンリポジトリは %1$s にあり、他の興味深いアドオンは %2$s オープン アドオン レジストリにあります。" -#: src/Module/Admin/DBSync.php:51 +#: src/Module/Admin/DBSync.php:37 msgid "Update has been marked successful" msgstr "更新は正常にマークされました" -#: src/Module/Admin/DBSync.php:59 +#: src/Module/Admin/DBSync.php:45 #, php-format msgid "Database structure update %s was successfully applied." msgstr "データベース構造の更新 %s が正常に適用されました。" -#: src/Module/Admin/DBSync.php:61 +#: src/Module/Admin/DBSync.php:47 #, php-format msgid "Executing of database structure update %s failed with error: %s" msgstr "データベース構造の更新 %s は次のエラーで失敗しました: %s" -#: src/Module/Admin/DBSync.php:76 +#: src/Module/Admin/DBSync.php:62 #, php-format msgid "Executing %s failed with error: %s" msgstr "次のエラーで %s の実行に失敗しました: %s" -#: src/Module/Admin/DBSync.php:78 +#: src/Module/Admin/DBSync.php:64 #, php-format msgid "Update %s was successfully applied." msgstr "更新 %s が正常に適用されました。" -#: src/Module/Admin/DBSync.php:81 +#: src/Module/Admin/DBSync.php:67 #, php-format msgid "Update %s did not return a status. Unknown if it succeeded." msgstr "更新 %s はステータスを返しませんでした。成功した場合は不明です。" -#: src/Module/Admin/DBSync.php:84 +#: src/Module/Admin/DBSync.php:70 #, php-format msgid "There was no additional update function %s that needed to be called." msgstr "呼び出される必要のある機能 %s について追加の更新はありませんでした。" -#: src/Module/Admin/DBSync.php:105 +#: src/Module/Admin/DBSync.php:91 msgid "No failed updates." msgstr "失敗した更新はありません。" -#: src/Module/Admin/DBSync.php:106 +#: src/Module/Admin/DBSync.php:92 msgid "Check database structure" msgstr "データベース構造を確認する" -#: src/Module/Admin/DBSync.php:110 +#: src/Module/Admin/DBSync.php:96 msgid "Failed Updates" msgstr "失敗した更新" -#: src/Module/Admin/DBSync.php:111 +#: src/Module/Admin/DBSync.php:97 msgid "" "This does not include updates prior to 1139, which did not return a status." msgstr "これには、ステータスを返さなかった1139より前の更新は含まれません。" -#: src/Module/Admin/DBSync.php:112 +#: src/Module/Admin/DBSync.php:98 msgid "Mark success (if update was manually applied)" msgstr "成功をマークする(更新が手動で適用された場合)" -#: src/Module/Admin/DBSync.php:113 +#: src/Module/Admin/DBSync.php:99 msgid "Attempt to execute this update step automatically" msgstr "この更新手順を自動的に実行しようとします" -#: src/Module/Admin/Features.php:67 -#: src/Module/Notifications/Introductions.php:144 -#: src/Module/OAuth/Acknowledge.php:55 src/Module/Register.php:132 -#: src/Module/Settings/TwoFactor/Trusted.php:129 +#: src/Module/Admin/Features.php:53 +#: src/Module/Notifications/Introductions.php:136 +#: src/Module/OAuth/Acknowledge.php:41 src/Module/Register.php:124 +#: src/Module/Settings/TwoFactor/Trusted.php:115 msgid "No" msgstr "いいえ" -#: src/Module/Admin/Features.php:67 src/Module/Contact/Revoke.php:108 -#: src/Module/Notifications/Introductions.php:144 -#: src/Module/OAuth/Acknowledge.php:54 src/Module/Register.php:131 -#: src/Module/Settings/TwoFactor/Trusted.php:129 +#: src/Module/Admin/Features.php:53 src/Module/Contact/Revoke.php:91 +#: src/Module/Notifications/Introductions.php:136 +#: src/Module/OAuth/Acknowledge.php:40 src/Module/Register.php:123 +#: src/Module/Settings/TwoFactor/Trusted.php:115 msgid "Yes" msgstr "はい" -#: src/Module/Admin/Features.php:67 +#: src/Module/Admin/Features.php:53 msgid "Locked" msgstr "" -#: src/Module/Admin/Features.php:81 +#: src/Module/Admin/Features.php:67 msgid "Manage Additional Features" msgstr "追加機能を管理する" -#: src/Module/Admin/Federation.php:82 -#: src/Module/Moderation/Report/Create.php:191 -#: src/Module/Moderation/Report/Create.php:316 +#: src/Module/Admin/Federation.php:68 +#: src/Module/Moderation/Report/Create.php:177 +#: src/Module/Moderation/Report/Create.php:302 msgid "Other" msgstr "その他" -#: src/Module/Admin/Federation.php:160 src/Module/Admin/Federation.php:408 +#: src/Module/Admin/Federation.php:146 src/Module/Admin/Federation.php:394 msgid "unknown" msgstr "未知の" -#: src/Module/Admin/Federation.php:193 +#: src/Module/Admin/Federation.php:179 #, php-format msgid "%2$s total system" msgid_plural "%2$s total systems" msgstr[0] "" -#: src/Module/Admin/Federation.php:194 +#: src/Module/Admin/Federation.php:180 #, php-format msgid "%2$s active user last month" msgid_plural "%2$s active users last month" msgstr[0] "" -#: src/Module/Admin/Federation.php:195 +#: src/Module/Admin/Federation.php:181 #, php-format msgid "%2$s active user last six months" msgid_plural "%2$s active users last six months" msgstr[0] "" -#: src/Module/Admin/Federation.php:196 +#: src/Module/Admin/Federation.php:182 #, php-format msgid "%2$s registered user" msgid_plural "%2$s registered users" msgstr[0] "" -#: src/Module/Admin/Federation.php:197 +#: src/Module/Admin/Federation.php:183 #, php-format msgid "%2$s locally created post or comment" msgid_plural "%2$s locally created posts and comments" msgstr[0] "" -#: src/Module/Admin/Federation.php:200 +#: src/Module/Admin/Federation.php:186 #, php-format msgid "%2$s post per user" msgid_plural "%2$s posts per user" msgstr[0] "" -#: src/Module/Admin/Federation.php:205 +#: src/Module/Admin/Federation.php:191 #, php-format msgid "%2$s user per system" msgid_plural "%2$s users per system" msgstr[0] "" -#: src/Module/Admin/Federation.php:215 +#: src/Module/Admin/Federation.php:201 msgid "" "This page offers you some numbers to the known part of the federated social " "network your Friendica node is part of. These numbers are not complete but " "only reflect the part of the network your node is aware of." msgstr "このページでは、Friendicaノードが属するフェデレーションソーシャルネットワークの既知の部分について統計を提供します。これらの数値は完全なものではなく、ノードが認識しているネットワークの部分のみを反映しています。" -#: src/Module/Admin/Federation.php:221 src/Module/BaseAdmin.php:87 +#: src/Module/Admin/Federation.php:207 src/Module/BaseAdmin.php:73 msgid "Federation Statistics" msgstr "フェデレーション統計" -#: src/Module/Admin/Federation.php:224 +#: src/Module/Admin/Federation.php:210 #, php-format msgid "" "Currently this node is aware of %2$s node (%3$s active users last month, " @@ -4201,58 +4201,58 @@ msgid_plural "" "following platforms:" msgstr[0] "" -#: src/Module/Admin/Logs/Settings.php:47 +#: src/Module/Admin/Logs/Settings.php:33 #, php-format msgid "The logfile '%s' is not writable. No logging possible" msgstr "ログファイル ' %s ' は書き込みできません。ログ機能が使用できません。" -#: src/Module/Admin/Logs/Settings.php:80 +#: src/Module/Admin/Logs/Settings.php:66 msgid "PHP log currently enabled." msgstr "現在有効なPHPログ。" -#: src/Module/Admin/Logs/Settings.php:82 +#: src/Module/Admin/Logs/Settings.php:68 msgid "PHP log currently disabled." msgstr "PHPログは現在無効になっています。" -#: src/Module/Admin/Logs/Settings.php:89 src/Module/BaseAdmin.php:102 -#: src/Module/BaseAdmin.php:103 +#: src/Module/Admin/Logs/Settings.php:75 src/Module/BaseAdmin.php:88 +#: src/Module/BaseAdmin.php:89 msgid "Logs" msgstr "ログ" -#: src/Module/Admin/Logs/Settings.php:91 +#: src/Module/Admin/Logs/Settings.php:77 msgid "Clear" msgstr "クリア" -#: src/Module/Admin/Logs/Settings.php:94 +#: src/Module/Admin/Logs/Settings.php:80 msgid "Enable Debugging" msgstr "デバッグを有効にする" -#: src/Module/Admin/Logs/Settings.php:94 src/Module/Admin/Logs/Settings.php:95 -#: src/Module/Admin/Logs/Settings.php:96 src/Module/Admin/Site.php:478 -#: src/Module/Admin/Site.php:486 +#: src/Module/Admin/Logs/Settings.php:80 src/Module/Admin/Logs/Settings.php:81 +#: src/Module/Admin/Logs/Settings.php:82 src/Module/Admin/Site.php:470 +#: src/Module/Admin/Site.php:478 msgid "" "Read-only because it is set by an environment variable" msgstr "" -#: src/Module/Admin/Logs/Settings.php:95 +#: src/Module/Admin/Logs/Settings.php:81 msgid "Log file" msgstr "ログファイル" -#: src/Module/Admin/Logs/Settings.php:95 +#: src/Module/Admin/Logs/Settings.php:81 msgid "" "Must be writable by web server. Relative to your Friendica top-level " "directory." msgstr "Webサーバーから書き込み可能である必要があります。 Friendicaの最上位ディレクトリからの相対パス。" -#: src/Module/Admin/Logs/Settings.php:96 +#: src/Module/Admin/Logs/Settings.php:82 msgid "Log level" msgstr "ログレベル" -#: src/Module/Admin/Logs/Settings.php:98 +#: src/Module/Admin/Logs/Settings.php:84 msgid "PHP logging" msgstr "PHPロギング" -#: src/Module/Admin/Logs/Settings.php:99 +#: src/Module/Admin/Logs/Settings.php:85 msgid "" "To temporarily enable logging of PHP errors and warnings you can prepend the" " following to the index.php file of your installation. The filename set in " @@ -4261,402 +4261,407 @@ msgid "" "'display_errors' is to enable these options, set to '0' to disable them." msgstr "PHPのエラーと警告のログを一時的に有効にするには、インストールのindex.phpファイルに次を追加します。 「error_log」行に設定されたファイル名は、Friendicaの最上位ディレクトリに関連しており、Webサーバーが書き込み可能である必要があります。 「log_errors」および「display_errors」のオプション「1」はこれらのオプションを有効にすることであり、「0」に設定すると無効になります。" -#: src/Module/Admin/Logs/View.php:72 +#: src/Module/Admin/Logs/View.php:58 #, php-format msgid "" "Error trying to open %1$s log file.
Check to see if " "file %1$s exist and is readable." msgstr "" -#: src/Module/Admin/Logs/View.php:81 +#: src/Module/Admin/Logs/View.php:67 #, php-format msgid "" "Couldn't open %1$s log file.
Check to see if file %1$s " "is readable." msgstr "" -#: src/Module/Admin/Logs/View.php:86 src/Module/BaseAdmin.php:104 +#: src/Module/Admin/Logs/View.php:72 src/Module/BaseAdmin.php:90 msgid "View Logs" msgstr "ログを見る" -#: src/Module/Admin/Logs/View.php:89 +#: src/Module/Admin/Logs/View.php:75 msgid "Search in logs" msgstr "" -#: src/Module/Admin/Logs/View.php:90 -#: src/Module/Notifications/Notifications.php:140 +#: src/Module/Admin/Logs/View.php:76 +#: src/Module/Notifications/Notifications.php:132 msgid "Show all" msgstr "すべて表示する" -#: src/Module/Admin/Logs/View.php:91 +#: src/Module/Admin/Logs/View.php:77 msgid "Date" msgstr "" -#: src/Module/Admin/Logs/View.php:92 +#: src/Module/Admin/Logs/View.php:78 msgid "Level" msgstr "" -#: src/Module/Admin/Logs/View.php:93 +#: src/Module/Admin/Logs/View.php:79 msgid "Context" msgstr "" -#: src/Module/Admin/Logs/View.php:95 +#: src/Module/Admin/Logs/View.php:81 msgid "ALL" msgstr "" -#: src/Module/Admin/Logs/View.php:96 +#: src/Module/Admin/Logs/View.php:82 msgid "View details" msgstr "" -#: src/Module/Admin/Logs/View.php:97 +#: src/Module/Admin/Logs/View.php:83 msgid "Click to view details" msgstr "" -#: src/Module/Admin/Logs/View.php:98 src/Module/Calendar/Event/Form.php:207 +#: src/Module/Admin/Logs/View.php:84 src/Module/Calendar/Event/Form.php:193 msgid "Event details" msgstr "イベントの詳細" -#: src/Module/Admin/Logs/View.php:99 +#: src/Module/Admin/Logs/View.php:85 msgid "Data" msgstr "" -#: src/Module/Admin/Logs/View.php:100 -#: src/Module/Debug/ActivityPubConversion.php:57 +#: src/Module/Admin/Logs/View.php:86 +#: src/Module/Debug/ActivityPubConversion.php:49 msgid "Source" msgstr "" -#: src/Module/Admin/Logs/View.php:101 +#: src/Module/Admin/Logs/View.php:87 msgid "File" msgstr "" -#: src/Module/Admin/Logs/View.php:102 +#: src/Module/Admin/Logs/View.php:88 msgid "Line" msgstr "" -#: src/Module/Admin/Logs/View.php:103 +#: src/Module/Admin/Logs/View.php:89 msgid "Function" msgstr "" -#: src/Module/Admin/Logs/View.php:104 +#: src/Module/Admin/Logs/View.php:90 msgid "UID" msgstr "" -#: src/Module/Admin/Logs/View.php:105 +#: src/Module/Admin/Logs/View.php:91 msgid "Process ID" msgstr "" -#: src/Module/Admin/Logs/View.php:106 +#: src/Module/Admin/Logs/View.php:92 msgid "Close" msgstr "" -#: src/Module/Admin/Queue.php:50 +#: src/Module/Admin/Queue.php:36 msgid "Inspect Deferred Worker Queue" msgstr "遅延ワーカーキューの詳細を見る" -#: src/Module/Admin/Queue.php:51 +#: src/Module/Admin/Queue.php:37 msgid "" "This page lists the deferred worker jobs. This are jobs that couldn't be " "executed at the first time." msgstr "このページには、遅延ワーカージョブが一覧表示されます。これは、投入時に実行できなかったジョブです。" -#: src/Module/Admin/Queue.php:54 +#: src/Module/Admin/Queue.php:40 msgid "Inspect Worker Queue" msgstr "ワーカーキューの詳細を見る" -#: src/Module/Admin/Queue.php:55 +#: src/Module/Admin/Queue.php:41 msgid "" "This page lists the currently queued worker jobs. These jobs are handled by " "the worker cronjob you've set up during install." msgstr "このページには、現在キューに入れられているワーカージョブが一覧表示されます。これらのジョブは、インストール中に設定したワーカーcronジョブによって処理されます。" -#: src/Module/Admin/Queue.php:76 +#: src/Module/Admin/Queue.php:62 msgid "ID" msgstr "ID" -#: src/Module/Admin/Queue.php:77 +#: src/Module/Admin/Queue.php:63 msgid "Command" msgstr "" -#: src/Module/Admin/Queue.php:78 +#: src/Module/Admin/Queue.php:64 msgid "Job Parameters" msgstr "ジョブパラメータ" -#: src/Module/Admin/Queue.php:79 src/Module/Moderation/Reports.php:110 -#: src/Module/Settings/OAuth.php:74 +#: src/Module/Admin/Queue.php:65 src/Module/Moderation/Reports.php:102 +#: src/Module/Settings/OAuth.php:60 msgid "Created" msgstr "作成した" -#: src/Module/Admin/Queue.php:80 +#: src/Module/Admin/Queue.php:66 msgid "Next Try" msgstr "" -#: src/Module/Admin/Queue.php:81 +#: src/Module/Admin/Queue.php:67 msgid "Priority" msgstr "優先度" -#: src/Module/Admin/Site.php:243 +#: src/Module/Admin/Site.php:230 +#, php-format +msgid "%s is no valid input for maximum media size" +msgstr "" + +#: src/Module/Admin/Site.php:235 #, 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:362 src/Module/Settings/Display.php:201 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:379 src/Module/Settings/Display.php:211 #, php-format msgid "%s - (Experimental)" msgstr "%s (実験的)" -#: src/Module/Admin/Site.php:399 +#: src/Module/Admin/Site.php:391 msgid "No community page" msgstr "コミュニティページなし" -#: src/Module/Admin/Site.php:400 +#: src/Module/Admin/Site.php:392 msgid "No community page for visitors" msgstr "" -#: src/Module/Admin/Site.php:401 +#: src/Module/Admin/Site.php:393 msgid "Public postings from users of this site" msgstr "このサイトのユーザーからの一般公開投稿" -#: src/Module/Admin/Site.php:402 +#: src/Module/Admin/Site.php:394 msgid "Public postings from the federated network" msgstr "フェデレーションネットワークからの一般公開投稿" -#: src/Module/Admin/Site.php:403 +#: src/Module/Admin/Site.php:395 msgid "Public postings from local users and the federated network" msgstr "ローカルユーザーとフェデレーションネットワークからの一般公開投稿" -#: src/Module/Admin/Site.php:409 +#: src/Module/Admin/Site.php:401 msgid "Multi user instance" msgstr "マルチユーザーインスタンス" -#: src/Module/Admin/Site.php:432 +#: src/Module/Admin/Site.php:424 msgid "Closed" msgstr "閉まっている" -#: src/Module/Admin/Site.php:433 +#: src/Module/Admin/Site.php:425 msgid "Requires approval" msgstr "承認が必要" -#: src/Module/Admin/Site.php:434 +#: src/Module/Admin/Site.php:426 msgid "Open" msgstr "開いた" -#: src/Module/Admin/Site.php:438 +#: src/Module/Admin/Site.php:430 msgid "Don't check" msgstr "チェックしない" -#: src/Module/Admin/Site.php:439 +#: src/Module/Admin/Site.php:431 msgid "check the stable version" msgstr "安定版を確認してください" -#: src/Module/Admin/Site.php:440 +#: src/Module/Admin/Site.php:432 msgid "check the development version" msgstr "開発バージョンを確認する" -#: src/Module/Admin/Site.php:444 +#: src/Module/Admin/Site.php:436 msgid "none" msgstr "" -#: src/Module/Admin/Site.php:445 +#: src/Module/Admin/Site.php:437 msgid "Local contacts" msgstr "" -#: src/Module/Admin/Site.php:446 +#: src/Module/Admin/Site.php:438 msgid "Interactors" msgstr "" -#: src/Module/Admin/Site.php:456 src/Module/BaseAdmin.php:90 +#: src/Module/Admin/Site.php:448 src/Module/BaseAdmin.php:76 msgid "Site" msgstr "サイト" -#: src/Module/Admin/Site.php:457 +#: src/Module/Admin/Site.php:449 msgid "General Information" msgstr "" -#: src/Module/Admin/Site.php:459 +#: src/Module/Admin/Site.php:451 msgid "Republish users to directory" msgstr "ユーザーをディレクトリに再公開する" -#: src/Module/Admin/Site.php:460 src/Module/Register.php:153 +#: src/Module/Admin/Site.php:452 src/Module/Register.php:145 msgid "Registration" msgstr "登録" -#: src/Module/Admin/Site.php:461 +#: src/Module/Admin/Site.php:453 msgid "File upload" msgstr "ファイルのアップロード" -#: src/Module/Admin/Site.php:462 +#: src/Module/Admin/Site.php:454 msgid "Policies" msgstr "ポリシー" -#: src/Module/Admin/Site.php:463 src/Module/Calendar/Event/Form.php:252 -#: src/Module/Contact.php:546 src/Module/Profile/Profile.php:276 +#: src/Module/Admin/Site.php:455 src/Module/Calendar/Event/Form.php:238 +#: src/Module/Contact.php:528 src/Module/Profile/Profile.php:264 msgid "Advanced" msgstr "詳細" -#: src/Module/Admin/Site.php:464 +#: src/Module/Admin/Site.php:456 msgid "Auto Discovered Contact Directory" msgstr "自動検出されたコンタクトディレクトリ" -#: src/Module/Admin/Site.php:465 +#: src/Module/Admin/Site.php:457 msgid "Performance" msgstr "性能" -#: src/Module/Admin/Site.php:466 +#: src/Module/Admin/Site.php:458 msgid "Worker" msgstr "ワーカー" -#: src/Module/Admin/Site.php:467 +#: src/Module/Admin/Site.php:459 msgid "Message Relay" msgstr "メッセージ中継" -#: src/Module/Admin/Site.php:468 +#: src/Module/Admin/Site.php:460 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:461 msgid "The system is not subscribed to any relays at the moment." msgstr "" -#: src/Module/Admin/Site.php:470 +#: src/Module/Admin/Site.php:462 msgid "The system is currently subscribed to the following relays:" msgstr "" -#: src/Module/Admin/Site.php:473 +#: src/Module/Admin/Site.php:465 msgid "Relocate Node" msgstr "" -#: src/Module/Admin/Site.php:474 +#: src/Module/Admin/Site.php:466 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:467 msgid "(Friendica directory)# bin/console relocate https://newdomain.com" msgstr "" -#: src/Module/Admin/Site.php:478 +#: src/Module/Admin/Site.php:470 msgid "Site name" msgstr "サイト名" -#: src/Module/Admin/Site.php:479 +#: src/Module/Admin/Site.php:471 msgid "Sender Email" msgstr "送信者のメール" -#: src/Module/Admin/Site.php:479 +#: src/Module/Admin/Site.php:471 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:472 msgid "Name of the system actor" msgstr "" -#: src/Module/Admin/Site.php:480 +#: src/Module/Admin/Site.php:472 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:473 msgid "Banner/Logo" msgstr "バナー/ロゴ" -#: src/Module/Admin/Site.php:482 +#: src/Module/Admin/Site.php:474 msgid "Email Banner/Logo" msgstr "" -#: src/Module/Admin/Site.php:483 +#: src/Module/Admin/Site.php:475 msgid "Shortcut icon" msgstr "ショートカットアイコン" -#: src/Module/Admin/Site.php:483 +#: src/Module/Admin/Site.php:475 msgid "Link to an icon that will be used for browsers." msgstr "ブラウザーに使用されるアイコンへのリンク。" -#: src/Module/Admin/Site.php:484 +#: src/Module/Admin/Site.php:476 msgid "Touch icon" msgstr "タッチアイコン" -#: src/Module/Admin/Site.php:484 +#: src/Module/Admin/Site.php:476 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:477 msgid "Additional Info" msgstr "追加情報" -#: src/Module/Admin/Site.php:485 +#: src/Module/Admin/Site.php:477 #, 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:478 msgid "System language" msgstr "システム言語" -#: src/Module/Admin/Site.php:487 +#: src/Module/Admin/Site.php:479 msgid "System theme" msgstr "システムテーマ" -#: src/Module/Admin/Site.php:487 +#: src/Module/Admin/Site.php:479 #, 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:480 msgid "Mobile system theme" msgstr "モバイルシステムのテーマ" -#: src/Module/Admin/Site.php:488 +#: src/Module/Admin/Site.php:480 msgid "Theme for mobile devices" msgstr "モバイルデバイスのテーマ" -#: src/Module/Admin/Site.php:489 +#: src/Module/Admin/Site.php:481 msgid "Force SSL" msgstr "SSLを強制する" -#: src/Module/Admin/Site.php:489 +#: src/Module/Admin/Site.php:481 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:482 msgid "Show help entry from navigation menu" msgstr "" -#: src/Module/Admin/Site.php:490 +#: src/Module/Admin/Site.php:482 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:483 msgid "Single user instance" msgstr "シングルユーザーインスタンス" -#: src/Module/Admin/Site.php:491 +#: src/Module/Admin/Site.php:483 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:485 msgid "Maximum image size" msgstr "最大画像サイズ" -#: src/Module/Admin/Site.php:493 +#: src/Module/Admin/Site.php:485 #, 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" @@ -4664,35 +4669,47 @@ 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:489 msgid "Maximum image length" msgstr "最大画像長" -#: src/Module/Admin/Site.php:497 +#: src/Module/Admin/Site.php:489 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:490 msgid "JPEG image quality" msgstr "JPEG画像品質" -#: src/Module/Admin/Site.php:498 +#: src/Module/Admin/Site.php:490 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:491 +msgid "Maximum media file size" +msgstr "" + +#: src/Module/Admin/Site.php:491 +#, php-format +msgid "" +"Maximum size in bytes of uploaded media files. Default is 0, which means no limits. You can put k, m, or g behind the desired value for KiB, MiB, GiB, respectively.\n" +"\t\t\t\t\t\t\t\t\t\t\t\t\tThe value of upload_max_filesize in your PHP.ini needs be set to at least the desired limit.\n" +"\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:496 msgid "Register policy" msgstr "登録ポリシー" -#: src/Module/Admin/Site.php:501 +#: src/Module/Admin/Site.php:497 msgid "Maximum Users" msgstr "" -#: src/Module/Admin/Site.php:501 +#: src/Module/Admin/Site.php:497 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 " @@ -4700,167 +4717,167 @@ msgid "" "not when the policy is set to approval." msgstr "" -#: src/Module/Admin/Site.php:502 +#: src/Module/Admin/Site.php:498 msgid "Maximum Daily Registrations" msgstr "毎日の最大登録数" -#: src/Module/Admin/Site.php:502 +#: src/Module/Admin/Site.php:498 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:499 msgid "Register text" msgstr "登録テキスト" -#: src/Module/Admin/Site.php:503 +#: src/Module/Admin/Site.php:499 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:500 msgid "Forbidden Nicknames" msgstr "禁止されたニックネーム" -#: src/Module/Admin/Site.php:504 +#: src/Module/Admin/Site.php:500 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:501 msgid "Accounts abandoned after x days" msgstr "x日の間 放置されたアカウント" -#: src/Module/Admin/Site.php:505 +#: src/Module/Admin/Site.php:501 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:502 msgid "Allowed friend domains" msgstr "許可された友達ドメイン" -#: src/Module/Admin/Site.php:506 +#: src/Module/Admin/Site.php:502 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:503 msgid "Allowed email domains" msgstr "許可されたメールドメイン" -#: src/Module/Admin/Site.php:507 +#: src/Module/Admin/Site.php:503 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:504 msgid "Disallowed email domains" msgstr "" -#: src/Module/Admin/Site.php:508 +#: src/Module/Admin/Site.php:504 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:509 +#: src/Module/Admin/Site.php:505 msgid "No OEmbed rich content" msgstr "OEmbed リッチコンテンツなし" -#: src/Module/Admin/Site.php:509 +#: src/Module/Admin/Site.php:505 msgid "" "Don't show the rich content (e.g. embedded PDF), except from the domains " "listed below." msgstr "以下にリストされているドメインを除き、リッチコンテンツ(埋め込みPDFなど)を表示しないでください。" -#: src/Module/Admin/Site.php:510 +#: src/Module/Admin/Site.php:506 msgid "Trusted third-party domains" msgstr "" -#: src/Module/Admin/Site.php:510 +#: src/Module/Admin/Site.php:506 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:511 +#: src/Module/Admin/Site.php:507 msgid "Block public" msgstr "一般公開をブロック" -#: src/Module/Admin/Site.php:511 +#: src/Module/Admin/Site.php:507 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:512 +#: src/Module/Admin/Site.php:508 msgid "Force publish" msgstr "公開を強制する" -#: src/Module/Admin/Site.php:512 +#: src/Module/Admin/Site.php:508 msgid "" "Check to force all profiles on this site to be listed in the site directory." msgstr "このサイトのすべてのプロフィールがサイトディレクトリにリストされるように強制するには、チェックします。" -#: src/Module/Admin/Site.php:512 +#: src/Module/Admin/Site.php:508 msgid "Enabling this may violate privacy laws like the GDPR" msgstr "これを有効にすると、GDPRなどのプライバシー法に違反する可能性があります。" -#: src/Module/Admin/Site.php:513 +#: src/Module/Admin/Site.php:509 msgid "Global directory URL" msgstr "グローバルディレクトリURL" -#: src/Module/Admin/Site.php:513 +#: src/Module/Admin/Site.php:509 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:514 +#: src/Module/Admin/Site.php:510 msgid "Private posts by default for new users" msgstr "新規ユーザー向けの 既定のプライベート投稿" -#: src/Module/Admin/Site.php:514 +#: src/Module/Admin/Site.php:510 msgid "" "Set default post permissions for all new members to the default privacy " "circle rather than public." msgstr "" -#: src/Module/Admin/Site.php:515 +#: src/Module/Admin/Site.php:511 msgid "Don't include post content in email notifications" msgstr "メール通知に投稿本文を含めないでください" -#: src/Module/Admin/Site.php:515 +#: src/Module/Admin/Site.php:511 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:516 +#: src/Module/Admin/Site.php:512 msgid "Disallow public access to addons listed in the apps menu." msgstr "アプリメニューにリストされているアドオンへの公開アクセスを許可しません。" -#: src/Module/Admin/Site.php:516 +#: src/Module/Admin/Site.php:512 msgid "" "Checking this box will restrict addons listed in the apps menu to members " "only." msgstr "このチェックボックスをオンにすると、アプリメニューにリストされているアドオンがメンバーのみに制限されます。" -#: src/Module/Admin/Site.php:517 +#: src/Module/Admin/Site.php:513 msgid "Don't embed private images in posts" msgstr "投稿にプライベート画像を埋め込まないでください" -#: src/Module/Admin/Site.php:517 +#: src/Module/Admin/Site.php:513 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 " @@ -4868,11 +4885,11 @@ msgid "" "while." msgstr "投稿内のローカルでホストされているプライベート写真を画像の埋め込みコピーで置き換えないでください。つまり、プライベート写真を含む投稿を受け取ったコンタクトは、各画像を認証して読み込む必要があり、時間がかかる場合があります。" -#: src/Module/Admin/Site.php:518 +#: src/Module/Admin/Site.php:514 msgid "Explicit Content" msgstr "明示的なコンテンツ" -#: src/Module/Admin/Site.php:518 +#: src/Module/Admin/Site.php:514 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 " @@ -4881,329 +4898,319 @@ msgid "" "will be shown at the user registration page." msgstr "これを設定して、このノードが主に未成年者には適さない可能性のある露骨なコンテンツを目的とすることを通知します。この情報はノード情報で公開され、たとえばグローバルディレクトリによって使用され、参加するノードのリストからノードをフィルタリングします。さらに、これに関するメモがユーザー登録ページに表示されます。" -#: src/Module/Admin/Site.php:519 +#: src/Module/Admin/Site.php:515 msgid "Only local search" msgstr "" -#: src/Module/Admin/Site.php:519 +#: src/Module/Admin/Site.php:515 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:516 msgid "Blocked tags for trending tags" msgstr "" -#: src/Module/Admin/Site.php:520 +#: src/Module/Admin/Site.php:516 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:517 msgid "Cache contact avatars" msgstr "" -#: src/Module/Admin/Site.php:521 +#: src/Module/Admin/Site.php:517 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:518 msgid "Allow Users to set remote_self" msgstr "ユーザーがremote_selfを設定できるようにする" -#: src/Module/Admin/Site.php:522 +#: src/Module/Admin/Site.php:518 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:519 msgid "Allow Users to set up relay channels" msgstr "" -#: src/Module/Admin/Site.php:523 +#: src/Module/Admin/Site.php:519 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:520 msgid "Adjust the feed poll frequency" msgstr "" -#: src/Module/Admin/Site.php:524 +#: src/Module/Admin/Site.php:520 msgid "Automatically detect and set the best feed poll frequency." msgstr "" -#: src/Module/Admin/Site.php:525 +#: src/Module/Admin/Site.php:521 msgid "Minimum poll interval" msgstr "" -#: src/Module/Admin/Site.php:525 +#: src/Module/Admin/Site.php:521 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:522 msgid "Enable multiple registrations" msgstr "" -#: src/Module/Admin/Site.php:526 +#: src/Module/Admin/Site.php:522 msgid "Enable users to register additional accounts for use as pages." msgstr "" -#: src/Module/Admin/Site.php:527 +#: src/Module/Admin/Site.php:523 msgid "Enable OpenID" msgstr "" -#: src/Module/Admin/Site.php:527 +#: src/Module/Admin/Site.php:523 msgid "Enable OpenID support for registration and logins." msgstr "" -#: src/Module/Admin/Site.php:528 +#: src/Module/Admin/Site.php:524 msgid "Enable full name check" msgstr "" -#: src/Module/Admin/Site.php:528 +#: src/Module/Admin/Site.php:524 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:525 msgid "Email administrators on new registration" msgstr "" -#: src/Module/Admin/Site.php:529 +#: src/Module/Admin/Site.php:525 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:526 msgid "Community pages for visitors" msgstr "訪問者向けのコミュニティページ" -#: src/Module/Admin/Site.php:530 +#: src/Module/Admin/Site.php:526 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:527 msgid "Posts per user on community page" msgstr "コミュニティページのユーザーごとの投稿" -#: src/Module/Admin/Site.php:531 +#: src/Module/Admin/Site.php:527 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:528 msgid "Posts per server on community page" msgstr "" -#: src/Module/Admin/Site.php:532 +#: src/Module/Admin/Site.php:528 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:530 msgid "Enable Mail support" msgstr "" -#: src/Module/Admin/Site.php:534 +#: src/Module/Admin/Site.php:530 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:531 msgid "" "Mail support can't be enabled because the PHP IMAP module is not installed." msgstr "" -#: src/Module/Admin/Site.php:536 -msgid "Enable OStatus support" -msgstr "" - -#: src/Module/Admin/Site.php:536 -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:533 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:534 msgid "Enable Diaspora support" msgstr "Diasporaサポートを有効にする" -#: src/Module/Admin/Site.php:539 +#: src/Module/Admin/Site.php:534 msgid "" "Enable built-in Diaspora network compatibility for communicating with " "diaspora servers." msgstr "" -#: src/Module/Admin/Site.php:540 +#: src/Module/Admin/Site.php:535 msgid "Verify SSL" msgstr "SSLを検証する" -#: src/Module/Admin/Site.php:540 +#: src/Module/Admin/Site.php:535 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:536 msgid "Proxy user" msgstr "プロキシユーザー" -#: src/Module/Admin/Site.php:541 +#: src/Module/Admin/Site.php:536 msgid "User name for the proxy server." msgstr "" -#: src/Module/Admin/Site.php:542 +#: src/Module/Admin/Site.php:537 msgid "Proxy URL" msgstr "プロキシURL" -#: src/Module/Admin/Site.php:542 +#: src/Module/Admin/Site.php:537 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:538 msgid "Network timeout" msgstr "ネットワークタイムアウト" -#: src/Module/Admin/Site.php:543 +#: src/Module/Admin/Site.php:538 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:539 msgid "Maximum Load Average" msgstr "最大負荷平均" -#: src/Module/Admin/Site.php:544 +#: src/Module/Admin/Site.php:539 #, 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:540 msgid "Minimal Memory" msgstr "最小限のメモリ" -#: src/Module/Admin/Site.php:545 +#: src/Module/Admin/Site.php:540 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:541 msgid "Periodically optimize tables" msgstr "" -#: src/Module/Admin/Site.php:546 +#: src/Module/Admin/Site.php:541 msgid "Periodically optimize tables like the cache and the workerqueue" msgstr "" -#: src/Module/Admin/Site.php:548 +#: src/Module/Admin/Site.php:543 msgid "Discover followers/followings from contacts" msgstr "" -#: src/Module/Admin/Site.php:548 +#: src/Module/Admin/Site.php:543 msgid "" "If enabled, contacts are checked for their followers and following contacts." msgstr "" -#: src/Module/Admin/Site.php:549 +#: src/Module/Admin/Site.php:544 msgid "None - deactivated" msgstr "" -#: src/Module/Admin/Site.php:550 +#: src/Module/Admin/Site.php:545 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:546 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:548 msgid "Only update contacts/servers with local data" msgstr "" -#: src/Module/Admin/Site.php:553 +#: src/Module/Admin/Site.php:548 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:549 msgid "Synchronize the contacts with the directory server" msgstr "" -#: src/Module/Admin/Site.php:554 +#: src/Module/Admin/Site.php:549 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:551 msgid "Discover contacts from other servers" msgstr "他のサーバーからコンタクトを発見する" -#: src/Module/Admin/Site.php:556 +#: src/Module/Admin/Site.php:551 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:552 msgid "Days between requery" msgstr "再クエリの間隔" -#: src/Module/Admin/Site.php:557 +#: src/Module/Admin/Site.php:552 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:553 msgid "Search the local directory" msgstr "ローカルディレクトリを検索する" -#: src/Module/Admin/Site.php:558 +#: src/Module/Admin/Site.php:553 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:555 msgid "Publish server information" msgstr "サーバー情報を公開する" -#: src/Module/Admin/Site.php:560 +#: src/Module/Admin/Site.php:555 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 " @@ -5211,50 +5218,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:557 msgid "Check upstream version" msgstr "アップストリームバージョンを確認する" -#: src/Module/Admin/Site.php:562 +#: src/Module/Admin/Site.php:557 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:558 msgid "Suppress Tags" msgstr "タグを非表示" -#: src/Module/Admin/Site.php:563 +#: src/Module/Admin/Site.php:558 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:559 msgid "Clean database" msgstr "データベースを消去" -#: src/Module/Admin/Site.php:564 +#: src/Module/Admin/Site.php:559 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:560 msgid "Lifespan of remote items" msgstr "リモート項目の寿命" -#: src/Module/Admin/Site.php:565 +#: src/Module/Admin/Site.php:560 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:561 msgid "Lifespan of unclaimed items" msgstr "請求されていない項目の寿命" -#: src/Module/Admin/Site.php:566 +#: src/Module/Admin/Site.php:561 msgid "" "When the database cleanup is enabled, this defines the days after which " "unclaimed remote items (mostly content from the relay) will be deleted. " @@ -5262,175 +5269,184 @@ msgid "" "items if set to 0." msgstr "データベースのクリーンアップが有効になっている場合、これは、要求されていないリモート項目(主に中継からのコンテンツ)が削除されるまでの日数を定義します。デフォルト値は90日です。 0に設定されている場合、リモート項目の一般的なライフスパン値がデフォルトになります。" -#: src/Module/Admin/Site.php:567 +#: src/Module/Admin/Site.php:562 msgid "Lifespan of raw conversation data" msgstr "Raw会話データの寿命" -#: src/Module/Admin/Site.php:567 +#: src/Module/Admin/Site.php:562 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日です。" +"The conversation data is used for ActivityPub, 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:563 msgid "Maximum numbers of comments per post" msgstr "投稿あたりのコメントの最大数" -#: src/Module/Admin/Site.php:568 +#: src/Module/Admin/Site.php:563 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:564 msgid "Maximum numbers of comments per post on the display page" msgstr "" -#: src/Module/Admin/Site.php:569 +#: src/Module/Admin/Site.php:564 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:565 msgid "Items per page" msgstr "" -#: src/Module/Admin/Site.php:570 +#: src/Module/Admin/Site.php:565 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:566 msgid "Items per page for mobile devices" msgstr "" -#: src/Module/Admin/Site.php:571 +#: src/Module/Admin/Site.php:566 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:567 msgid "Temp path" msgstr "一時パス" -#: src/Module/Admin/Site.php:572 +#: src/Module/Admin/Site.php:567 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:568 msgid "Only search in tags" msgstr "タグでのみ検索" -#: src/Module/Admin/Site.php:573 +#: src/Module/Admin/Site.php:568 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:569 +msgid "Limited search scope" +msgstr "" + +#: src/Module/Admin/Site.php:569 +msgid "" +"If enabled, searches will only be performed in the data used for the " +"channels and not in all posts." +msgstr "" + +#: src/Module/Admin/Site.php:570 msgid "Maximum age of items in the search table" msgstr "" -#: src/Module/Admin/Site.php:574 +#: src/Module/Admin/Site.php:570 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:571 msgid "Generate counts per contact circle when calculating network count" msgstr "" -#: src/Module/Admin/Site.php:575 +#: src/Module/Admin/Site.php:571 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:572 msgid "Process \"view\" activities" msgstr "" -#: src/Module/Admin/Site.php:576 +#: src/Module/Admin/Site.php:572 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:573 msgid "Days, after which a contact is archived" msgstr "" -#: src/Module/Admin/Site.php:577 +#: src/Module/Admin/Site.php:573 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:575 msgid "Maximum number of parallel workers" msgstr "並列ワーカーの最大数" -#: src/Module/Admin/Site.php:579 +#: src/Module/Admin/Site.php:575 #, 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:576 msgid "Maximum load for workers" msgstr "" -#: src/Module/Admin/Site.php:580 +#: src/Module/Admin/Site.php:576 msgid "Maximum load that causes a cooldown before each worker function call." msgstr "" -#: src/Module/Admin/Site.php:581 +#: src/Module/Admin/Site.php:577 msgid "Enable fastlane" msgstr "fastlaneを有効にする" -#: src/Module/Admin/Site.php:581 +#: src/Module/Admin/Site.php:577 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:578 msgid "Decoupled receiver" msgstr "" -#: src/Module/Admin/Site.php:582 +#: src/Module/Admin/Site.php:578 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:579 msgid "Cron interval" msgstr "" -#: src/Module/Admin/Site.php:583 +#: src/Module/Admin/Site.php:579 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:580 msgid "Worker defer limit" msgstr "" -#: src/Module/Admin/Site.php:584 +#: src/Module/Admin/Site.php:580 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:581 msgid "Worker fetch limit" msgstr "" -#: src/Module/Admin/Site.php:585 +#: src/Module/Admin/Site.php:581 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" @@ -5438,214 +5454,214 @@ msgid "" "system." msgstr "" -#: src/Module/Admin/Site.php:587 +#: src/Module/Admin/Site.php:583 msgid "Direct relay transfer" msgstr "直接中継転送" -#: src/Module/Admin/Site.php:587 +#: src/Module/Admin/Site.php:583 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:584 msgid "Relay scope" msgstr "中継スコープ" -#: src/Module/Admin/Site.php:588 +#: src/Module/Admin/Site.php:584 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:314 -#: src/Module/Settings/TwoFactor/Index.php:146 +#: src/Module/Admin/Site.php:584 src/Module/Contact/Profile.php:314 +#: src/Module/Settings/TwoFactor/Index.php:132 msgid "Disabled" msgstr "無効" -#: src/Module/Admin/Site.php:588 +#: src/Module/Admin/Site.php:584 msgid "all" msgstr "すべて" -#: src/Module/Admin/Site.php:588 +#: src/Module/Admin/Site.php:584 msgid "tags" msgstr "タグ" -#: src/Module/Admin/Site.php:589 +#: src/Module/Admin/Site.php:585 msgid "Server tags" msgstr "サーバータグ" -#: src/Module/Admin/Site.php:589 +#: src/Module/Admin/Site.php:585 msgid "Comma separated list of tags for the \"tags\" subscription." msgstr "\"tags \"サブスクリプションのタグのコンマ区切りリスト。" -#: src/Module/Admin/Site.php:590 +#: src/Module/Admin/Site.php:586 msgid "Deny Server tags" msgstr "" -#: src/Module/Admin/Site.php:590 +#: src/Module/Admin/Site.php:586 msgid "Comma separated list of tags that are rejected." msgstr "" -#: src/Module/Admin/Site.php:591 +#: src/Module/Admin/Site.php:587 msgid "Maximum amount of tags" msgstr "" -#: src/Module/Admin/Site.php:591 +#: src/Module/Admin/Site.php:587 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:588 msgid "Allow user tags" msgstr "ユーザータグを許可する" -#: src/Module/Admin/Site.php:592 +#: src/Module/Admin/Site.php:588 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:589 msgid "Deny undetected languages" msgstr "" -#: src/Module/Admin/Site.php:593 +#: src/Module/Admin/Site.php:589 msgid "If enabled, posts with undetected languages will be rejected." msgstr "" -#: src/Module/Admin/Site.php:594 +#: src/Module/Admin/Site.php:590 msgid "Language Quality" msgstr "" -#: src/Module/Admin/Site.php:594 +#: src/Module/Admin/Site.php:590 msgid "The minimum language quality that is required to accept the post." msgstr "" -#: src/Module/Admin/Site.php:595 +#: src/Module/Admin/Site.php:591 msgid "Number of languages for the language detection" msgstr "" -#: src/Module/Admin/Site.php:595 +#: src/Module/Admin/Site.php:591 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:593 msgid "Maximum age of channel" msgstr "" -#: src/Module/Admin/Site.php:597 +#: src/Module/Admin/Site.php:593 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:594 msgid "Maximum number of channel posts" msgstr "" -#: src/Module/Admin/Site.php:598 +#: src/Module/Admin/Site.php:594 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:595 msgid "Interaction score days" msgstr "" -#: src/Module/Admin/Site.php:599 +#: src/Module/Admin/Site.php:595 msgid "Number of days that are used to calculate the interaction score." msgstr "" -#: src/Module/Admin/Site.php:600 +#: src/Module/Admin/Site.php:596 msgid "Maximum number of posts per author" msgstr "" -#: src/Module/Admin/Site.php:600 +#: src/Module/Admin/Site.php:596 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:597 msgid "Sharer interaction days" msgstr "" -#: src/Module/Admin/Site.php:601 +#: src/Module/Admin/Site.php:597 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:600 msgid "Start Relocation" msgstr "再配置を開始" -#: src/Module/Admin/Storage.php:46 +#: src/Module/Admin/Storage.php:32 #, php-format msgid "Storage backend, %s is invalid." msgstr "" -#: src/Module/Admin/Storage.php:73 +#: src/Module/Admin/Storage.php:59 #, php-format msgid "Storage backend %s error: %s" msgstr "" -#: src/Module/Admin/Storage.php:84 src/Module/Admin/Storage.php:87 +#: src/Module/Admin/Storage.php:70 src/Module/Admin/Storage.php:73 msgid "Invalid storage backend setting value." msgstr "無効なストレージバックエンド設定値です。" -#: src/Module/Admin/Storage.php:139 +#: src/Module/Admin/Storage.php:125 msgid "Current Storage Backend" msgstr "" -#: src/Module/Admin/Storage.php:140 +#: src/Module/Admin/Storage.php:126 msgid "Storage Configuration" msgstr "" -#: src/Module/Admin/Storage.php:141 src/Module/BaseAdmin.php:91 +#: src/Module/Admin/Storage.php:127 src/Module/BaseAdmin.php:77 msgid "Storage" msgstr "" -#: src/Module/Admin/Storage.php:143 +#: src/Module/Admin/Storage.php:129 msgid "Save & Use storage backend" msgstr "" -#: src/Module/Admin/Storage.php:144 +#: src/Module/Admin/Storage.php:130 msgid "Use storage backend" msgstr "" -#: src/Module/Admin/Storage.php:145 +#: src/Module/Admin/Storage.php:131 msgid "Save & Reload" msgstr "" -#: src/Module/Admin/Storage.php:146 +#: src/Module/Admin/Storage.php:132 msgid "This backend doesn't have custom settings" msgstr "" -#: src/Module/Admin/Storage.php:148 +#: src/Module/Admin/Storage.php:134 msgid "" "Changing the current backend is prohibited because it is set by an " "environment variable" msgstr "" -#: src/Module/Admin/Storage.php:150 +#: src/Module/Admin/Storage.php:136 msgid "Database (legacy)" msgstr "データベース(レガシー)" -#: src/Module/Admin/Summary.php:55 +#: src/Module/Admin/Summary.php:41 #, php-format msgid "Template engine (%s) error: %s" msgstr "" -#: src/Module/Admin/Summary.php:59 +#: src/Module/Admin/Summary.php:45 #, php-format msgid "" "Your DB still runs with MyISAM tables. You should change the engine type to " @@ -5656,7 +5672,7 @@ msgid "" " an automatic conversion.
" msgstr "DBは引き続きMyISAMテーブルで実行されます。エンジンタイプをInnoDBに変更する必要があります。 Friendicaは今後InnoDBのみの機能を使用するため、これを変更する必要があります。テーブルエンジンの変換に役立つガイドについては、こちらをご覧ください。 Friendicaインストールの php bin/console.php dbstructure toinnodb コマンドを使用して自動変換することもできます。
" -#: src/Module/Admin/Summary.php:64 +#: src/Module/Admin/Summary.php:50 #, php-format msgid "" "Your DB still runs with InnoDB tables in the Antelope file format. You " @@ -5667,7 +5683,7 @@ msgid "" " installation for an automatic conversion.
" msgstr "" -#: src/Module/Admin/Summary.php:74 +#: src/Module/Admin/Summary.php:60 #, php-format msgid "" "Your table_definition_cache is too low (%d). This can lead to the database " @@ -5675,46 +5691,46 @@ msgid "" " to %d. See here for more information.
" msgstr "" -#: src/Module/Admin/Summary.php:85 +#: src/Module/Admin/Summary.php:71 #, php-format msgid "" "There is a new version of Friendica available for download. Your current " "version is %1$s, upstream version is %2$s" msgstr "ダウンロード可能なFriendicaの新しいバージョンがあります。現在のバージョンは%1$s 、アップストリームバージョンは%2$sです。" -#: src/Module/Admin/Summary.php:94 +#: src/Module/Admin/Summary.php:80 msgid "" "The database update failed. Please run \"php bin/console.php dbstructure " "update\" from the command line and have a look at the errors that might " "appear." msgstr "データベースの更新に失敗しました。コマンドラインから「php bin/console.php dbstructure update」を実行し、表示される可能性のあるエラーを確認してください。" -#: src/Module/Admin/Summary.php:98 +#: src/Module/Admin/Summary.php:84 msgid "" "The last update failed. Please run \"php bin/console.php dbstructure " "update\" from the command line and have a look at the errors that might " "appear. (Some of the errors are possibly inside the logfile.)" msgstr "最後の更新に失敗しました。コマンドラインから「php bin/console.php dbstructure update」を実行し、表示される可能性のあるエラーを確認してください。 (エラーの一部は、おそらくログファイル内にあります。)" -#: src/Module/Admin/Summary.php:102 +#: src/Module/Admin/Summary.php:88 msgid "" "The system.url entry is missing. This is a low level setting and can lead to" " unexpected behavior. Please add a valid entry as soon as possible in the " "config file or per console command!" msgstr "" -#: src/Module/Admin/Summary.php:107 +#: src/Module/Admin/Summary.php:93 msgid "The worker was never executed. Please check your database structure!" msgstr "ワーカーは実行されませんでした。データベース構造を確認してください!" -#: src/Module/Admin/Summary.php:109 +#: src/Module/Admin/Summary.php:95 #, php-format msgid "" "The last worker execution was on %s UTC. This is older than one hour. Please" " check your crontab settings." msgstr "最後のワーカー実行は%s UTCでした。これは1時間以上前です。 crontabの設定を確認してください。" -#: src/Module/Admin/Summary.php:114 +#: src/Module/Admin/Summary.php:100 #, php-format msgid "" "Friendica's configuration now is stored in config/local.config.php, please " @@ -5723,7 +5739,7 @@ msgid "" "help with the transition." msgstr "Friendicaの設定はconfig/local.config.phpに保存されるようになりました。config/local-sample.config.phpをコピーし、設定を .htconfig.php から移動してください。移行のヘルプについては、 Configヘルプページをご覧ください。" -#: src/Module/Admin/Summary.php:118 +#: src/Module/Admin/Summary.php:104 #, php-format msgid "" "Friendica's configuration now is stored in config/local.config.php, please " @@ -5732,7 +5748,7 @@ msgid "" "page for help with the transition." msgstr "Friendicaの設定はconfig/local.config.phpに保存されるようになりました。config/ local-sample.config.phpをコピーして、設定を config / local.ini.php から移動してください。移行のヘルプについては、 Configヘルプページをご覧ください。" -#: src/Module/Admin/Summary.php:124 +#: src/Module/Admin/Summary.php:110 #, php-format msgid "" "%s is not reachable on your system. This is a severe " @@ -5740,107 +5756,107 @@ msgid "" "href=\"%s\">the installation page for help." msgstr "システムで %s に到達できません。これは、サーバー間の通信を妨げる重大な構成の問題です。ヘルプについては、インストールページをご覧ください。" -#: src/Module/Admin/Summary.php:148 +#: src/Module/Admin/Summary.php:134 #, php-format msgid "" "Friendica's system.basepath was updated from '%s' to '%s'. Please remove the" " system.basepath from your db to avoid differences." msgstr "Friendicaのsystem.basepathは '%s' から '%s' に更新されました。差異を避けるために、データベースからsystem.basepathを削除してください。" -#: src/Module/Admin/Summary.php:156 +#: src/Module/Admin/Summary.php:142 #, php-format msgid "" "Friendica's current system.basepath '%s' is wrong and the config file '%s' " "isn't used." msgstr "Friendicaの現在のsystem.basepath '%s' は間違っています。構成ファイル '%s'は使用されていません。" -#: src/Module/Admin/Summary.php:164 +#: src/Module/Admin/Summary.php:150 #, php-format msgid "" "Friendica's current system.basepath '%s' is not equal to the config file " "'%s'. Please fix your configuration." msgstr "Friendicaの現在のsystem.basepath '%s'は、構成ファイル '%s'と等しくありません。設定を修正してください。" -#: src/Module/Admin/Summary.php:175 +#: src/Module/Admin/Summary.php:161 msgid "Message queues" msgstr "メッセージキュー" -#: src/Module/Admin/Summary.php:181 +#: src/Module/Admin/Summary.php:167 msgid "Server Settings" msgstr "サーバー設定" -#: src/Module/Admin/Summary.php:199 +#: src/Module/Admin/Summary.php:185 msgid "Version" msgstr "バージョン" -#: src/Module/Admin/Summary.php:203 +#: src/Module/Admin/Summary.php:189 msgid "Active addons" msgstr "アクティブなアドオン" -#: src/Module/Admin/Themes/Details.php:57 src/Module/Admin/Themes/Index.php:65 +#: src/Module/Admin/Themes/Details.php:49 src/Module/Admin/Themes/Index.php:57 #, php-format msgid "Theme %s disabled." msgstr "テーマ%sを無効にしました。" -#: src/Module/Admin/Themes/Details.php:59 src/Module/Admin/Themes/Index.php:67 +#: src/Module/Admin/Themes/Details.php:51 src/Module/Admin/Themes/Index.php:59 #, php-format msgid "Theme %s successfully enabled." msgstr "テーマ%sが有効になりました。" -#: src/Module/Admin/Themes/Details.php:61 src/Module/Admin/Themes/Index.php:69 +#: src/Module/Admin/Themes/Details.php:53 src/Module/Admin/Themes/Index.php:61 #, php-format msgid "Theme %s failed to install." msgstr "テーマ%sのインストールに失敗しました。" -#: src/Module/Admin/Themes/Details.php:83 +#: src/Module/Admin/Themes/Details.php:75 msgid "Screenshot" msgstr "スクリーンショット" -#: src/Module/Admin/Themes/Details.php:91 -#: src/Module/Admin/Themes/Index.php:112 src/Module/BaseAdmin.php:93 +#: src/Module/Admin/Themes/Details.php:83 +#: src/Module/Admin/Themes/Index.php:104 src/Module/BaseAdmin.php:79 msgid "Themes" msgstr "テーマ" -#: src/Module/Admin/Themes/Embed.php:80 +#: src/Module/Admin/Themes/Embed.php:66 msgid "Unknown theme." msgstr "不明なテーマ。" -#: src/Module/Admin/Themes/Index.php:51 +#: src/Module/Admin/Themes/Index.php:43 msgid "Themes reloaded" msgstr "" -#: src/Module/Admin/Themes/Index.php:114 +#: src/Module/Admin/Themes/Index.php:106 msgid "Reload active themes" msgstr "アクティブなテーマをリロードする" -#: src/Module/Admin/Themes/Index.php:118 +#: src/Module/Admin/Themes/Index.php:110 #, php-format msgid "No themes found on the system. They should be placed in %1$s" msgstr "システムにテーマが見つかりません。 %1$sに配置する必要があります" -#: src/Module/Admin/Themes/Index.php:119 +#: src/Module/Admin/Themes/Index.php:111 msgid "[Experimental]" msgstr "[実験的]" -#: src/Module/Admin/Themes/Index.php:120 +#: src/Module/Admin/Themes/Index.php:112 msgid "[Unsupported]" msgstr "[サポートされていません]" -#: src/Module/Admin/Tos.php:79 +#: src/Module/Admin/Tos.php:65 msgid "Display Terms of Service" msgstr "利用規約を表示する" -#: src/Module/Admin/Tos.php:79 +#: src/Module/Admin/Tos.php:65 msgid "" "Enable the Terms of Service page. If this is enabled a link to the terms " "will be added to the registration form and the general information page." msgstr "利用規約ページを有効にします。これを有効にすると、登録フォームと一般情報ページに規約へのリンクが追加されます。" -#: src/Module/Admin/Tos.php:80 +#: src/Module/Admin/Tos.php:66 msgid "Display Privacy Statement" msgstr "プライバシーに関する声明を表示する" -#: src/Module/Admin/Tos.php:80 +#: src/Module/Admin/Tos.php:66 #, php-format msgid "" "Show some informations regarding the needed information to operate the node " @@ -5848,257 +5864,257 @@ msgid "" "noreferrer\">EU-GDPR." msgstr "" -#: src/Module/Admin/Tos.php:81 +#: src/Module/Admin/Tos.php:67 msgid "Privacy Statement Preview" msgstr "プライバシーに関する声明のプレビュー" -#: src/Module/Admin/Tos.php:83 +#: src/Module/Admin/Tos.php:69 msgid "The Terms of Service" msgstr "利用規約" -#: src/Module/Admin/Tos.php:83 +#: src/Module/Admin/Tos.php:69 msgid "" "Enter the Terms of Service for your node here. You can use BBCode. Headers " "of sections should be [h2] and below." msgstr "ここにノードの利用規約を入力します。 BBCodeを使用できます。セクションのヘッダーは[h2]以下である必要があります。" -#: src/Module/Admin/Tos.php:84 +#: src/Module/Admin/Tos.php:70 msgid "The rules" msgstr "" -#: src/Module/Admin/Tos.php:84 +#: src/Module/Admin/Tos.php:70 msgid "Enter your system rules here. Each line represents one rule." msgstr "" -#: src/Module/Api/ApiResponse.php:293 +#: src/Module/Api/ApiResponse.php:279 #, php-format msgid "API endpoint %s %s is not implemented but might be in the future." msgstr "" -#: src/Module/Api/Mastodon/Apps.php:73 +#: src/Module/Api/Mastodon/Apps.php:59 msgid "Missing parameters" msgstr "" -#: src/Module/Api/Mastodon/Statuses/Bookmark.php:50 +#: src/Module/Api/Mastodon/Statuses/Bookmark.php:36 msgid "Only starting posts can be bookmarked" msgstr "" -#: src/Module/Api/Mastodon/Statuses/Mute.php:51 +#: src/Module/Api/Mastodon/Statuses/Mute.php:37 msgid "Only starting posts can be muted" msgstr "" -#: src/Module/Api/Mastodon/Statuses/Reblog.php:58 +#: src/Module/Api/Mastodon/Statuses/Reblog.php:44 #, php-format msgid "Posts from %s can't be shared" msgstr "" -#: src/Module/Api/Mastodon/Statuses/Unbookmark.php:51 +#: src/Module/Api/Mastodon/Statuses/Unbookmark.php:37 msgid "Only starting posts can be unbookmarked" msgstr "" -#: src/Module/Api/Mastodon/Statuses/Unmute.php:51 +#: src/Module/Api/Mastodon/Statuses/Unmute.php:37 msgid "Only starting posts can be unmuted" msgstr "" -#: src/Module/Api/Mastodon/Statuses/Unreblog.php:64 +#: src/Module/Api/Mastodon/Statuses/Unreblog.php:50 #, php-format msgid "Posts from %s can't be unshared" msgstr "" -#: src/Module/Api/Twitter/ContactEndpoint.php:66 +#: src/Module/Api/Twitter/ContactEndpoint.php:52 msgid "Contact not found" msgstr "コンタクトが見つかりません" -#: src/Module/Apps.php:62 +#: src/Module/Apps.php:48 msgid "No installed applications." msgstr "アプリケーションがインストールされていません。" -#: src/Module/Apps.php:67 +#: src/Module/Apps.php:53 msgid "Applications" msgstr "アプリケーション" -#: src/Module/Attach.php:49 src/Module/Attach.php:61 +#: src/Module/Attach.php:35 src/Module/Attach.php:47 msgid "Item was not found." msgstr "項目が見つかりませんでした。" -#: src/Module/BaseAdmin.php:54 src/Module/BaseAdmin.php:58 -#: src/Module/BaseModeration.php:77 src/Module/BaseModeration.php:81 +#: src/Module/BaseAdmin.php:40 src/Module/BaseAdmin.php:44 +#: src/Module/BaseModeration.php:63 src/Module/BaseModeration.php:67 msgid "Please login to continue." msgstr "この先に進むにはログインしてください。" -#: src/Module/BaseAdmin.php:63 +#: src/Module/BaseAdmin.php:49 msgid "You don't have access to administration pages." msgstr "" -#: src/Module/BaseAdmin.php:67 +#: src/Module/BaseAdmin.php:53 msgid "" "Submanaged account can't access the administration pages. Please log back in" " as the main account." msgstr "" -#: src/Module/BaseAdmin.php:86 src/Module/BaseModeration.php:109 +#: src/Module/BaseAdmin.php:72 src/Module/BaseModeration.php:95 msgid "Overview" msgstr "概要" -#: src/Module/BaseAdmin.php:89 src/Module/BaseModeration.php:112 +#: src/Module/BaseAdmin.php:75 src/Module/BaseModeration.php:98 msgid "Configuration" msgstr "構成" -#: src/Module/BaseAdmin.php:94 src/Module/BaseSettings.php:110 +#: src/Module/BaseAdmin.php:80 src/Module/BaseSettings.php:96 msgid "Additional features" msgstr "追加機能" -#: src/Module/BaseAdmin.php:97 +#: src/Module/BaseAdmin.php:83 msgid "Database" msgstr "データベース" -#: src/Module/BaseAdmin.php:98 +#: src/Module/BaseAdmin.php:84 msgid "DB updates" msgstr "DBの更新" -#: src/Module/BaseAdmin.php:99 +#: src/Module/BaseAdmin.php:85 msgid "Inspect Deferred Workers" msgstr "非同期実行ワーカーの検査" -#: src/Module/BaseAdmin.php:100 +#: src/Module/BaseAdmin.php:86 msgid "Inspect worker Queue" msgstr "ワーカーキューの検査" -#: src/Module/BaseAdmin.php:106 src/Module/BaseModeration.php:120 +#: src/Module/BaseAdmin.php:92 src/Module/BaseModeration.php:106 msgid "Diagnostics" msgstr "診断" -#: src/Module/BaseAdmin.php:107 +#: src/Module/BaseAdmin.php:93 msgid "PHP Info" msgstr "PHP情報" -#: src/Module/BaseAdmin.php:108 +#: src/Module/BaseAdmin.php:94 msgid "probe address" msgstr "プローブアドレス" -#: src/Module/BaseAdmin.php:109 +#: src/Module/BaseAdmin.php:95 msgid "check webfinger" msgstr "webfingerで診断" -#: src/Module/BaseAdmin.php:110 +#: src/Module/BaseAdmin.php:96 msgid "Babel" msgstr "Babel" -#: src/Module/BaseAdmin.php:111 src/Module/Debug/ActivityPubConversion.php:137 +#: src/Module/BaseAdmin.php:97 src/Module/Debug/ActivityPubConversion.php:129 msgid "ActivityPub Conversion" msgstr "" -#: src/Module/BaseAdmin.php:120 +#: src/Module/BaseAdmin.php:106 msgid "Addon Features" msgstr "アドオン機能" -#: src/Module/BaseAdmin.php:121 src/Module/BaseModeration.php:129 +#: src/Module/BaseAdmin.php:107 src/Module/BaseModeration.php:115 msgid "User registrations waiting for confirmation" msgstr "確認待ちのユーザー登録" -#: src/Module/BaseApi.php:455 src/Module/BaseApi.php:471 -#: src/Module/BaseApi.php:487 +#: src/Module/BaseApi.php:441 src/Module/BaseApi.php:457 +#: src/Module/BaseApi.php:473 msgid "Too Many Requests" msgstr "" -#: src/Module/BaseApi.php:456 +#: src/Module/BaseApi.php:442 #, php-format msgid "Daily posting limit of %d post reached. The post was rejected." msgid_plural "Daily posting limit of %d posts reached. The post was rejected." msgstr[0] "一日の最大投稿数 %d 件を超えたため、投稿できませんでした。" -#: src/Module/BaseApi.php:472 +#: src/Module/BaseApi.php:458 #, php-format msgid "Weekly posting limit of %d post reached. The post was rejected." msgid_plural "" "Weekly posting limit of %d posts reached. The post was rejected." msgstr[0] "一週間の最大投稿数 %d 件を超えたため、投稿できませんでした。" -#: src/Module/BaseApi.php:488 +#: src/Module/BaseApi.php:474 #, php-format msgid "Monthly posting limit of %d post reached. The post was rejected." msgid_plural "" "Monthly posting limit of %d posts reached. The post was rejected." msgstr[0] "" -#: src/Module/BaseModeration.php:86 +#: src/Module/BaseModeration.php:72 msgid "You don't have access to moderation pages." msgstr "" -#: src/Module/BaseModeration.php:90 +#: src/Module/BaseModeration.php:76 msgid "" "Submanaged account can't access the moderation pages. Please log back in as " "the main account." msgstr "" -#: src/Module/BaseModeration.php:110 src/Module/Moderation/Reports.php:109 +#: src/Module/BaseModeration.php:96 src/Module/Moderation/Reports.php:101 msgid "Reports" msgstr "" -#: src/Module/BaseModeration.php:113 src/Module/Moderation/Users/Index.php:148 -#: src/Module/Moderation/Users/Index.php:158 +#: src/Module/BaseModeration.php:99 src/Module/Moderation/Users/Index.php:134 +#: src/Module/Moderation/Users/Index.php:144 msgid "Users" msgstr "ユーザー" -#: src/Module/BaseModeration.php:115 +#: src/Module/BaseModeration.php:101 msgid "Tools" msgstr "ツール" -#: src/Module/BaseModeration.php:116 +#: src/Module/BaseModeration.php:102 msgid "Contact Blocklist" msgstr "コンタクトブロックリスト" -#: src/Module/BaseModeration.php:117 +#: src/Module/BaseModeration.php:103 msgid "Server Blocklist" msgstr "サーバーブロックリスト" -#: src/Module/BaseModeration.php:118 src/Module/Moderation/Item/Delete.php:62 +#: src/Module/BaseModeration.php:104 src/Module/Moderation/Item/Delete.php:48 msgid "Delete Item" msgstr "項目を削除" -#: src/Module/BaseModeration.php:121 src/Module/Moderation/Item/Source.php:76 +#: src/Module/BaseModeration.php:107 src/Module/Moderation/Item/Source.php:68 msgid "Item Source" msgstr "項目ソース" -#: src/Module/BaseProfile.php:52 src/Module/Contact.php:506 +#: src/Module/BaseProfile.php:38 src/Module/Contact.php:488 msgid "Profile Details" msgstr "プロフィールの詳細" -#: src/Module/BaseProfile.php:60 +#: src/Module/BaseProfile.php:46 msgid "Conversations started" msgstr "" -#: src/Module/BaseProfile.php:111 +#: src/Module/BaseProfile.php:97 msgid "Only You Can See This" msgstr "これしか見えない" -#: src/Module/BaseProfile.php:116 src/Module/Profile/Schedule.php:81 +#: src/Module/BaseProfile.php:102 src/Module/Profile/Schedule.php:67 msgid "Scheduled Posts" msgstr "" -#: src/Module/BaseProfile.php:119 +#: src/Module/BaseProfile.php:105 msgid "Posts that are scheduled for publishing" msgstr "" -#: src/Module/BaseProfile.php:138 src/Module/BaseProfile.php:141 +#: src/Module/BaseProfile.php:124 src/Module/BaseProfile.php:127 msgid "Tips for New Members" msgstr "新会員のためのヒント" -#: src/Module/BaseSearch.php:71 +#: src/Module/BaseSearch.php:57 #, php-format msgid "People Search - %s" msgstr "人を検索- %s" -#: src/Module/BaseSearch.php:75 +#: src/Module/BaseSearch.php:61 #, php-format msgid "Group Search - %s" msgstr "" -#: src/Module/BaseSearch.php:121 src/Module/Contact/MatchInterests.php:140 +#: src/Module/BaseSearch.php:107 src/Module/Contact/MatchInterests.php:136 msgid "No matches" msgstr "一致する項目がありません" -#: src/Module/BaseSearch.php:147 +#: src/Module/BaseSearch.php:133 #, php-format msgid "" "%d result was filtered out because your node blocks the domain it is " @@ -6110,588 +6126,584 @@ msgid_plural "" "blocking in the About page." msgstr[0] "" -#: src/Module/BaseSettings.php:78 +#: src/Module/BaseSettings.php:64 msgid "Account" msgstr "アカウント" -#: src/Module/BaseSettings.php:85 src/Module/Security/TwoFactor/Verify.php:96 -#: src/Module/Settings/TwoFactor/Index.php:138 +#: src/Module/BaseSettings.php:71 src/Module/Security/TwoFactor/Verify.php:82 +#: src/Module/Settings/TwoFactor/Index.php:124 msgid "Two-factor authentication" msgstr "二要素認証" -#: src/Module/BaseSettings.php:118 +#: src/Module/BaseSettings.php:104 msgid "Display" msgstr "表示" -#: src/Module/BaseSettings.php:132 src/Module/Settings/Connectors.php:204 +#: src/Module/BaseSettings.php:118 src/Module/Settings/Connectors.php:195 msgid "Social Networks" msgstr "ソーシャルネットワーク" -#: src/Module/BaseSettings.php:146 src/Module/Settings/Delegation.php:194 +#: src/Module/BaseSettings.php:132 src/Module/Settings/Delegation.php:180 msgid "Manage Accounts" msgstr "アカウントの管理" -#: src/Module/BaseSettings.php:153 +#: src/Module/BaseSettings.php:139 msgid "Connected apps" msgstr "接続されたアプリ" -#: src/Module/BaseSettings.php:160 +#: src/Module/BaseSettings.php:146 msgid "Remote servers" msgstr "" -#: src/Module/BaseSettings.php:167 src/Module/Settings/UserExport.php:98 +#: src/Module/BaseSettings.php:153 src/Module/Settings/UserExport.php:84 msgid "Export personal data" msgstr "個人データのエクスポート" -#: src/Module/BaseSettings.php:174 +#: src/Module/BaseSettings.php:160 msgid "Remove account" msgstr "アカウントを削除" -#: src/Module/Bookmarklet.php:54 +#: src/Module/Bookmarklet.php:40 msgid "This page is missing a url parameter." msgstr "このページにはurlパラメーターがありません。" -#: src/Module/Bookmarklet.php:66 +#: src/Module/Bookmarklet.php:52 msgid "The post was created" msgstr "投稿が作成されました" -#: src/Module/Calendar/Event/API.php:100 src/Module/Calendar/Event/API.php:135 -#: src/Module/Calendar/Event/Form.php:80 +#: src/Module/Calendar/Event/API.php:86 src/Module/Calendar/Event/API.php:121 +#: src/Module/Calendar/Event/Form.php:66 msgid "Invalid Request" msgstr "" -#: src/Module/Calendar/Event/API.php:109 +#: src/Module/Calendar/Event/API.php:95 msgid "Event id is missing." msgstr "" -#: src/Module/Calendar/Event/API.php:131 +#: src/Module/Calendar/Event/API.php:117 msgid "Failed to remove event" msgstr "イベントを削除できませんでした" -#: src/Module/Calendar/Event/API.php:187 src/Module/Calendar/Event/API.php:189 +#: src/Module/Calendar/Event/API.php:173 src/Module/Calendar/Event/API.php:175 msgid "Event can not end before it has started." msgstr "イベントは開始する前に終了できません。" -#: src/Module/Calendar/Event/API.php:196 src/Module/Calendar/Event/API.php:198 +#: src/Module/Calendar/Event/API.php:182 src/Module/Calendar/Event/API.php:184 msgid "Event title and start time are required." msgstr "イベントのタイトルと開始時間が必要です。" -#: src/Module/Calendar/Event/Form.php:208 +#: src/Module/Calendar/Event/Form.php:194 msgid "Starting date and Title are required." msgstr "開始日とタイトルが必要です。" -#: src/Module/Calendar/Event/Form.php:209 -#: src/Module/Calendar/Event/Form.php:214 +#: src/Module/Calendar/Event/Form.php:195 +#: src/Module/Calendar/Event/Form.php:200 msgid "Event Starts:" msgstr "イベント開始:" -#: src/Module/Calendar/Event/Form.php:209 -#: src/Module/Calendar/Event/Form.php:237 src/Module/Debug/Probe.php:59 -#: src/Module/Install.php:201 src/Module/Install.php:227 -#: src/Module/Install.php:232 src/Module/Install.php:246 -#: src/Module/Install.php:255 src/Module/Install.php:260 -#: src/Module/Install.php:266 src/Module/Install.php:271 -#: src/Module/Install.php:285 src/Module/Install.php:298 -#: src/Module/Install.php:325 -#: src/Module/Moderation/Blocklist/Server/Add.php:136 -#: src/Module/Moderation/Blocklist/Server/Add.php:138 -#: src/Module/Moderation/Blocklist/Server/Import.php:129 -#: src/Module/Moderation/Blocklist/Server/Index.php:86 -#: src/Module/Moderation/Blocklist/Server/Index.php:87 -#: src/Module/Moderation/Blocklist/Server/Index.php:115 -#: src/Module/Moderation/Blocklist/Server/Index.php:116 -#: src/Module/Moderation/Item/Delete.php:67 src/Module/Register.php:149 -#: src/Module/Security/TwoFactor/Verify.php:101 -#: src/Module/Settings/Channels.php:190 src/Module/Settings/Channels.php:211 -#: src/Module/Settings/TwoFactor/Index.php:161 -#: src/Module/Settings/TwoFactor/Verify.php:158 +#: src/Module/Calendar/Event/Form.php:195 +#: src/Module/Calendar/Event/Form.php:223 src/Module/Debug/Probe.php:45 +#: src/Module/Install.php:187 src/Module/Install.php:213 +#: src/Module/Install.php:218 src/Module/Install.php:232 +#: src/Module/Install.php:241 src/Module/Install.php:246 +#: src/Module/Install.php:252 src/Module/Install.php:257 +#: src/Module/Install.php:271 src/Module/Install.php:284 +#: src/Module/Install.php:311 +#: src/Module/Moderation/Blocklist/Server/Add.php:122 +#: src/Module/Moderation/Blocklist/Server/Add.php:124 +#: src/Module/Moderation/Blocklist/Server/Import.php:113 +#: src/Module/Moderation/Blocklist/Server/Index.php:72 +#: src/Module/Moderation/Blocklist/Server/Index.php:73 +#: src/Module/Moderation/Blocklist/Server/Index.php:101 +#: src/Module/Moderation/Blocklist/Server/Index.php:102 +#: src/Module/Moderation/Item/Delete.php:53 src/Module/Register.php:141 +#: src/Module/Security/TwoFactor/Verify.php:87 +#: src/Module/Settings/Channels.php:176 src/Module/Settings/Channels.php:197 +#: src/Module/Settings/TwoFactor/Index.php:147 +#: src/Module/Settings/TwoFactor/Verify.php:144 msgid "Required" msgstr "必須" -#: src/Module/Calendar/Event/Form.php:223 -#: src/Module/Calendar/Event/Form.php:247 +#: src/Module/Calendar/Event/Form.php:209 +#: src/Module/Calendar/Event/Form.php:233 msgid "Finish date/time is not known or not relevant" msgstr "終了日時が不明であるか、関連性がない" -#: src/Module/Calendar/Event/Form.php:225 -#: src/Module/Calendar/Event/Form.php:230 +#: src/Module/Calendar/Event/Form.php:211 +#: src/Module/Calendar/Event/Form.php:216 msgid "Event Finishes:" msgstr "イベント終了:" -#: src/Module/Calendar/Event/Form.php:237 -#: src/Module/Calendar/Event/Form.php:243 +#: src/Module/Calendar/Event/Form.php:223 +#: src/Module/Calendar/Event/Form.php:229 msgid "Title (BBCode not allowed)" msgstr "" -#: src/Module/Calendar/Event/Form.php:239 +#: src/Module/Calendar/Event/Form.php:225 msgid "Description (BBCode allowed)" msgstr "" -#: src/Module/Calendar/Event/Form.php:241 +#: src/Module/Calendar/Event/Form.php:227 msgid "Location (BBCode not allowed)" msgstr "" -#: src/Module/Calendar/Event/Form.php:244 -#: src/Module/Calendar/Event/Form.php:245 +#: src/Module/Calendar/Event/Form.php:230 +#: src/Module/Calendar/Event/Form.php:231 msgid "Share this event" msgstr "このイベントを共有する" -#: src/Module/Calendar/Event/Form.php:251 src/Module/Profile/Profile.php:275 +#: src/Module/Calendar/Event/Form.php:237 src/Module/Profile/Profile.php:263 msgid "Basic" msgstr "ベーシック" -#: src/Module/Calendar/Export.php:94 +#: src/Module/Calendar/Export.php:80 msgid "This calendar format is not supported" msgstr "このカレンダー形式はサポートされていません" -#: src/Module/Calendar/Export.php:96 +#: src/Module/Calendar/Export.php:82 msgid "No exportable data found" msgstr "エクスポート可能なデータが見つかりません" -#: src/Module/Calendar/Export.php:113 +#: src/Module/Calendar/Export.php:99 msgid "calendar" msgstr "カレンダー" -#: src/Module/Calendar/Show.php:124 +#: src/Module/Calendar/Show.php:110 msgid "Events" msgstr "イベント" -#: src/Module/Calendar/Show.php:125 +#: src/Module/Calendar/Show.php:111 msgid "View" msgstr "表示する" -#: src/Module/Calendar/Show.php:126 +#: src/Module/Calendar/Show.php:112 msgid "Create New Event" msgstr "新しいイベントを作成" -#: src/Module/Calendar/Show.php:132 src/Module/Settings/Display.php:297 +#: src/Module/Calendar/Show.php:118 src/Module/Settings/Display.php:283 msgid "list" msgstr "リスト" -#: src/Module/Circle.php:57 +#: src/Module/Circle.php:43 msgid "Could not create circle." msgstr "" -#: src/Module/Circle.php:68 src/Module/Circle.php:216 -#: src/Module/Circle.php:240 +#: src/Module/Circle.php:54 src/Module/Circle.php:202 +#: src/Module/Circle.php:226 msgid "Circle not found." msgstr "" -#: src/Module/Circle.php:74 +#: src/Module/Circle.php:60 msgid "Circle name was not changed." msgstr "" -#: src/Module/Circle.php:92 +#: src/Module/Circle.php:78 msgid "Unknown circle." msgstr "" -#: src/Module/Circle.php:98 src/Module/Circle.php:107 -#: src/Module/Contact/Advanced.php:70 src/Module/Contact/Advanced.php:109 -#: src/Module/Contact/Contacts.php:71 src/Module/Contact/Conversations.php:86 -#: src/Module/Contact/Conversations.php:91 -#: src/Module/Contact/Conversations.php:96 src/Module/Contact/Media.php:61 -#: src/Module/Contact/Posts.php:78 src/Module/Contact/Posts.php:83 -#: src/Module/Contact/Posts.php:88 src/Module/Contact/Profile.php:159 -#: src/Module/Contact/Profile.php:164 src/Module/Contact/Profile.php:169 -#: src/Module/Contact/Redir.php:95 src/Module/Contact/Redir.php:141 -#: src/Module/FriendSuggest.php:71 src/Module/FriendSuggest.php:109 +#: src/Module/Circle.php:84 src/Module/Circle.php:93 +#: src/Module/Contact/Advanced.php:56 src/Module/Contact/Advanced.php:95 +#: src/Module/Contact/Contacts.php:57 src/Module/Contact/Conversations.php:72 +#: src/Module/Contact/Conversations.php:77 +#: src/Module/Contact/Conversations.php:82 src/Module/Contact/Media.php:47 +#: src/Module/Contact/Posts.php:64 src/Module/Contact/Posts.php:69 +#: src/Module/Contact/Posts.php:74 src/Module/Contact/Profile.php:145 +#: src/Module/Contact/Profile.php:150 src/Module/Contact/Profile.php:169 +#: src/Module/Contact/Redir.php:77 src/Module/Contact/Redir.php:131 +#: src/Module/FriendSuggest.php:57 src/Module/FriendSuggest.php:95 msgid "Contact not found." msgstr "コンタクトが見つかりません。" -#: src/Module/Circle.php:102 src/Module/Contact/Contacts.php:66 +#: src/Module/Circle.php:88 src/Module/Contact/Contacts.php:52 msgid "Invalid contact." msgstr "無効なコンタクト。" -#: src/Module/Circle.php:111 src/Module/Contact/Revoke.php:73 +#: src/Module/Circle.php:97 src/Module/Contact/Revoke.php:56 msgid "Contact is deleted." msgstr "コンタクトが削除されます。" -#: src/Module/Circle.php:117 +#: src/Module/Circle.php:103 msgid "Unable to add the contact to the circle." msgstr "" -#: src/Module/Circle.php:120 +#: src/Module/Circle.php:106 msgid "Contact successfully added to circle." msgstr "" -#: src/Module/Circle.php:124 +#: src/Module/Circle.php:110 msgid "Unable to remove the contact from the circle." msgstr "" -#: src/Module/Circle.php:127 +#: src/Module/Circle.php:113 msgid "Contact successfully removed from circle." msgstr "" -#: src/Module/Circle.php:131 +#: src/Module/Circle.php:117 msgid "Bad request." msgstr "要求の形式が正しくありません。" -#: src/Module/Circle.php:172 +#: src/Module/Circle.php:158 msgid "Save Circle" msgstr "" -#: src/Module/Circle.php:173 +#: src/Module/Circle.php:159 msgid "Filter" msgstr "フィルタ" -#: src/Module/Circle.php:179 +#: src/Module/Circle.php:165 msgid "Create a circle of contacts/friends." msgstr "" -#: src/Module/Circle.php:221 +#: src/Module/Circle.php:207 msgid "Unable to remove circle." msgstr "" -#: src/Module/Circle.php:272 +#: src/Module/Circle.php:258 msgid "Delete Circle" msgstr "" -#: src/Module/Circle.php:282 +#: src/Module/Circle.php:268 msgid "Edit Circle Name" msgstr "" -#: src/Module/Circle.php:292 +#: src/Module/Circle.php:278 msgid "Members" msgstr "会員" -#: src/Module/Circle.php:295 +#: src/Module/Circle.php:281 msgid "Circle is empty" msgstr "" -#: src/Module/Circle.php:311 +#: src/Module/Circle.php:297 msgid "Remove contact from circle" msgstr "" -#: src/Module/Circle.php:334 +#: src/Module/Circle.php:320 msgid "Click on a contact to add or remove." msgstr "コンタクトをクリックして追加・削除" -#: src/Module/Circle.php:351 +#: src/Module/Circle.php:337 msgid "Add contact to circle" msgstr "" -#: src/Module/Contact.php:96 +#: src/Module/Contact.php:88 #, php-format msgid "%d contact edited." msgid_plural "%d contacts edited." msgstr[0] "%dコンタクトを編集しました。" -#: src/Module/Contact.php:347 +#: src/Module/Contact.php:328 msgid "Show all contacts" msgstr "すべてのコンタクトを表示" -#: src/Module/Contact.php:352 src/Module/Contact.php:431 -#: src/Module/Moderation/BaseUsers.php:85 +#: src/Module/Contact.php:333 src/Module/Contact.php:412 +#: src/Module/Moderation/BaseUsers.php:72 msgid "Pending" msgstr "保留" -#: src/Module/Contact.php:355 +#: src/Module/Contact.php:336 msgid "Only show pending contacts" msgstr "保留中のコンタクトのみを表示" -#: src/Module/Contact.php:360 src/Module/Contact.php:434 -#: src/Module/Moderation/BaseUsers.php:93 +#: src/Module/Contact.php:341 src/Module/Contact.php:415 +#: src/Module/Moderation/BaseUsers.php:80 msgid "Blocked" msgstr "ブロックされました" -#: src/Module/Contact.php:363 +#: src/Module/Contact.php:344 msgid "Only show blocked contacts" msgstr "ブロックされたコンタクトのみを表示" -#: src/Module/Contact.php:368 src/Module/Contact.php:440 -#: src/Module/Settings/Server/Index.php:107 src/Object/Post.php:399 +#: src/Module/Contact.php:349 src/Module/Contact.php:421 +#: src/Module/Settings/Server/Index.php:93 src/Object/Post.php:385 msgid "Ignored" msgstr "無視された" -#: src/Module/Contact.php:371 +#: src/Module/Contact.php:352 msgid "Only show ignored contacts" msgstr "無視されたコンタクトのみを表示" -#: src/Module/Contact.php:376 src/Module/Contact.php:443 +#: src/Module/Contact.php:357 src/Module/Contact.php:424 msgid "Collapsed" msgstr "" -#: src/Module/Contact.php:379 +#: src/Module/Contact.php:360 msgid "Only show collapsed contacts" msgstr "" -#: src/Module/Contact.php:384 src/Module/Contact.php:446 +#: src/Module/Contact.php:365 src/Module/Contact.php:427 msgid "Archived" msgstr "アーカイブ済み" -#: src/Module/Contact.php:387 +#: src/Module/Contact.php:368 msgid "Only show archived contacts" msgstr "アーカイブされたコンタクトのみを表示" -#: src/Module/Contact.php:392 src/Module/Contact.php:437 +#: src/Module/Contact.php:373 src/Module/Contact.php:418 msgid "Hidden" msgstr "非表示" -#: src/Module/Contact.php:395 +#: src/Module/Contact.php:376 msgid "Only show hidden contacts" msgstr "非表示のコンタクトのみを表示" -#: src/Module/Contact.php:403 +#: src/Module/Contact.php:384 msgid "Organize your contact circles" msgstr "" -#: src/Module/Contact.php:458 +#: src/Module/Contact.php:439 msgid "Search your contacts" msgstr "コンタクトを検索する" -#: src/Module/Contact.php:459 src/Module/Search/Index.php:207 +#: src/Module/Contact.php:440 src/Module/Search/Index.php:193 #, php-format msgid "Results for: %s" msgstr "結果: %s" -#: src/Module/Contact.php:466 +#: src/Module/Contact.php:448 msgid "Update" msgstr "更新" -#: src/Module/Contact.php:467 src/Module/Contact/Profile.php:518 -#: src/Module/Moderation/Blocklist/Contact.php:117 -#: src/Module/Moderation/Users/Blocked.php:138 -#: src/Module/Moderation/Users/Index.php:154 +#: src/Module/Contact.php:449 src/Module/Contact/Profile.php:518 +#: src/Module/Moderation/Blocklist/Contact.php:103 +#: src/Module/Moderation/Users/Blocked.php:124 +#: src/Module/Moderation/Users/Index.php:140 msgid "Unblock" msgstr "ブロック解除" -#: src/Module/Contact.php:468 src/Module/Contact/Profile.php:526 +#: src/Module/Contact.php:450 src/Module/Contact/Profile.php:526 msgid "Unignore" msgstr "無視しない" -#: src/Module/Contact.php:469 src/Module/Contact/Profile.php:534 +#: src/Module/Contact.php:451 src/Module/Contact/Profile.php:534 msgid "Uncollapse" msgstr "" -#: src/Module/Contact.php:471 +#: src/Module/Contact.php:453 msgid "Batch Actions" msgstr "バッチアクション" -#: src/Module/Contact.php:514 +#: src/Module/Contact.php:496 msgid "Conversations started by this contact" msgstr "このコンタクトが開始した会話" -#: src/Module/Contact.php:519 +#: src/Module/Contact.php:501 msgid "Posts and Comments" msgstr "投稿とコメント" -#: src/Module/Contact.php:522 +#: src/Module/Contact.php:504 msgid "Individual Posts and Replies" msgstr "" -#: src/Module/Contact.php:530 +#: src/Module/Contact.php:512 msgid "Posts containing media objects" msgstr "" -#: src/Module/Contact.php:538 +#: src/Module/Contact.php:520 msgid "View all known contacts" msgstr "" -#: src/Module/Contact.php:549 +#: src/Module/Contact.php:531 msgid "Advanced Contact Settings" msgstr "高度なコンタクト設定" -#: src/Module/Contact.php:585 +#: src/Module/Contact.php:567 msgid "Mutual Friendship" msgstr "相互フォロー" -#: src/Module/Contact.php:589 +#: src/Module/Contact.php:571 msgid "is a fan of yours" msgstr "あなたのファンです" -#: src/Module/Contact.php:593 +#: src/Module/Contact.php:575 msgid "you are a fan of" msgstr "あなたはファンです" -#: src/Module/Contact.php:611 +#: src/Module/Contact.php:593 msgid "Pending outgoing contact request" msgstr "保留中の送信済みコンタクトリクエスト" -#: src/Module/Contact.php:613 +#: src/Module/Contact.php:595 msgid "Pending incoming contact request" msgstr "保留中の受信済みコンタクトリクエスト" -#: src/Module/Contact.php:626 src/Module/Contact/Profile.php:377 +#: src/Module/Contact.php:608 src/Module/Contact/Profile.php:377 #, php-format msgid "Visit %s's profile [%s]" msgstr "%sのプロフィール[ %s ]を開く" -#: src/Module/Contact/Advanced.php:99 +#: src/Module/Contact/Advanced.php:85 msgid "Contact update failed." msgstr "コンタクトの更新に失敗しました。" -#: src/Module/Contact/Advanced.php:130 +#: src/Module/Contact/Advanced.php:116 msgid "Return to contact editor" msgstr "コンタクトエディターに戻る" -#: src/Module/Contact/Advanced.php:134 -#: src/Module/Moderation/Blocklist/Contact.php:122 -#: src/Module/Moderation/Reports.php:110 -#: src/Module/Moderation/Users/Active.php:126 -#: src/Module/Moderation/Users/Blocked.php:126 -#: src/Module/Moderation/Users/Create.php:70 -#: src/Module/Moderation/Users/Deleted.php:83 -#: src/Module/Moderation/Users/Index.php:140 -#: src/Module/Moderation/Users/Index.php:160 -#: src/Module/Moderation/Users/Pending.php:99 src/Module/Settings/OAuth.php:72 +#: src/Module/Contact/Advanced.php:120 +#: src/Module/Moderation/Blocklist/Contact.php:108 +#: src/Module/Moderation/Reports.php:102 +#: src/Module/Moderation/Users/Active.php:112 +#: src/Module/Moderation/Users/Blocked.php:112 +#: src/Module/Moderation/Users/Create.php:56 +#: src/Module/Moderation/Users/Deleted.php:69 +#: src/Module/Moderation/Users/Index.php:126 +#: src/Module/Moderation/Users/Index.php:146 +#: src/Module/Moderation/Users/Pending.php:85 src/Module/Settings/OAuth.php:58 msgid "Name" msgstr "名" -#: src/Module/Contact/Advanced.php:135 +#: src/Module/Contact/Advanced.php:121 msgid "Account Nickname" msgstr "アカウントのニックネーム" -#: src/Module/Contact/Advanced.php:136 +#: src/Module/Contact/Advanced.php:122 msgid "Account URL" msgstr "アカウントURL" -#: src/Module/Contact/Advanced.php:137 +#: src/Module/Contact/Advanced.php:123 msgid "Poll/Feed URL" msgstr "ポーリング/フィードURL" -#: src/Module/Contact/Advanced.php:138 +#: src/Module/Contact/Advanced.php:124 msgid "New photo from this URL" msgstr "このURLからの新しい写真" -#: src/Module/Contact/Contacts.php:89 +#: src/Module/Contact/Contacts.php:75 msgid "No known contacts." msgstr "" -#: src/Module/Contact/Contacts.php:103 src/Module/Profile/Common.php:128 +#: src/Module/Contact/Contacts.php:89 src/Module/Profile/Common.php:114 msgid "No common contacts." msgstr "" -#: src/Module/Contact/Contacts.php:115 src/Module/Profile/Contacts.php:135 +#: src/Module/Contact/Contacts.php:101 src/Module/Profile/Contacts.php:121 #, php-format msgid "Follower (%s)" msgid_plural "Followers (%s)" msgstr[0] "フォロワー( %s )" -#: src/Module/Contact/Contacts.php:119 src/Module/Profile/Contacts.php:138 +#: src/Module/Contact/Contacts.php:105 src/Module/Profile/Contacts.php:124 #, php-format msgid "Following (%s)" msgid_plural "Following (%s)" msgstr[0] "フォロー中( %s )" -#: src/Module/Contact/Contacts.php:123 src/Module/Profile/Contacts.php:141 +#: src/Module/Contact/Contacts.php:109 src/Module/Profile/Contacts.php:127 #, php-format msgid "Mutual friend (%s)" msgid_plural "Mutual friends (%s)" msgstr[0] "相互の友人( %s )" -#: src/Module/Contact/Contacts.php:125 src/Module/Profile/Contacts.php:143 +#: src/Module/Contact/Contacts.php:111 src/Module/Profile/Contacts.php:129 #, php-format msgid "These contacts both follow and are followed by %s." msgstr "" -#: src/Module/Contact/Contacts.php:131 src/Module/Profile/Common.php:116 +#: src/Module/Contact/Contacts.php:117 src/Module/Profile/Common.php:102 #, php-format msgid "Common contact (%s)" msgid_plural "Common contacts (%s)" msgstr[0] "" -#: src/Module/Contact/Contacts.php:133 src/Module/Profile/Common.php:118 +#: src/Module/Contact/Contacts.php:119 src/Module/Profile/Common.php:104 #, php-format msgid "" "Both %s and yourself have publicly interacted with these " "contacts (follow, comment or likes on public posts)." msgstr "" -#: src/Module/Contact/Contacts.php:139 src/Module/Profile/Contacts.php:149 +#: src/Module/Contact/Contacts.php:125 src/Module/Profile/Contacts.php:135 #, php-format msgid "Contact (%s)" msgid_plural "Contacts (%s)" msgstr[0] "コンタクト( %s )" -#: src/Module/Contact/Follow.php:70 src/Module/Contact/Redir.php:63 -#: src/Module/Contact/Redir.php:223 src/Module/Conversation/Community.php:166 -#: src/Module/Debug/ItemBody.php:38 src/Module/Diaspora/Receive.php:57 -#: src/Module/Item/Display.php:96 src/Module/Item/Feed.php:59 -#: src/Module/Item/Follow.php:41 src/Module/Item/Ignore.php:41 -#: src/Module/Item/Language.php:53 src/Module/Item/Pin.php:41 -#: src/Module/Item/Pin.php:56 src/Module/Item/Searchtext.php:53 -#: src/Module/Item/Star.php:42 src/Module/Update/Display.php:37 +#: src/Module/Contact/Follow.php:56 src/Module/Contact/Redir.php:45 +#: src/Module/Contact/Redir.php:206 src/Module/Conversation/Community.php:154 +#: src/Module/Debug/ItemBody.php:24 src/Module/Diaspora/Receive.php:45 +#: src/Module/Item/Display.php:82 src/Module/Item/Feed.php:45 +#: src/Module/Item/Follow.php:27 src/Module/Item/Ignore.php:27 +#: src/Module/Item/Language.php:39 src/Module/Item/Pin.php:27 +#: src/Module/Item/Pin.php:42 src/Module/Item/Searchtext.php:39 +#: src/Module/Item/Star.php:28 src/Module/Update/Display.php:23 msgid "Access denied." msgstr "アクセスが拒否されました。" -#: src/Module/Contact/Follow.php:105 src/Module/Contact/Unfollow.php:125 -#: src/Module/Profile/RemoteFollow.php:133 +#: src/Module/Contact/Follow.php:91 src/Module/Contact/Unfollow.php:111 +#: src/Module/Profile/RemoteFollow.php:119 msgid "Submit Request" msgstr "リクエストを送る" -#: src/Module/Contact/Follow.php:115 +#: src/Module/Contact/Follow.php:101 msgid "You already added this contact." msgstr "このコンタクトは既に追加されています。" -#: src/Module/Contact/Follow.php:130 +#: src/Module/Contact/Follow.php:116 msgid "The network type couldn't be detected. Contact can't be added." msgstr "ネットワークの種類を検出できませんでした。コンタクトを追加できません。" -#: src/Module/Contact/Follow.php:138 +#: src/Module/Contact/Follow.php:124 msgid "Diaspora support isn't enabled. Contact can't be added." msgstr "Diasporaのサポートは有効になっていません。コンタクトを追加できません。" -#: src/Module/Contact/Follow.php:143 -msgid "OStatus support is disabled. Contact can't be added." -msgstr "OStatusサポートは無効です。コンタクトを追加できません。" - -#: src/Module/Contact/Follow.php:168 src/Module/Profile/RemoteFollow.php:132 +#: src/Module/Contact/Follow.php:149 src/Module/Profile/RemoteFollow.php:118 msgid "Please answer the following:" msgstr "以下に答えてください。" -#: src/Module/Contact/Follow.php:169 src/Module/Contact/Unfollow.php:123 +#: src/Module/Contact/Follow.php:150 src/Module/Contact/Unfollow.php:109 msgid "Your Identity Address:" msgstr "あなたのIdentityアドレス:" -#: src/Module/Contact/Follow.php:170 src/Module/Contact/Profile.php:408 -#: src/Module/Contact/Unfollow.php:129 -#: src/Module/Moderation/Blocklist/Contact.php:131 -#: src/Module/Moderation/Reports.php:117 -#: src/Module/Notifications/Introductions.php:129 -#: src/Module/Notifications/Introductions.php:198 +#: src/Module/Contact/Follow.php:151 src/Module/Contact/Profile.php:408 +#: src/Module/Contact/Unfollow.php:115 +#: src/Module/Moderation/Blocklist/Contact.php:117 +#: src/Module/Moderation/Reports.php:109 +#: src/Module/Notifications/Introductions.php:121 +#: src/Module/Notifications/Introductions.php:190 msgid "Profile URL" msgstr "プロフィールURL" -#: src/Module/Contact/Follow.php:171 src/Module/Contact/Profile.php:420 -#: src/Module/Notifications/Introductions.php:191 -#: src/Module/Profile/Profile.php:234 +#: src/Module/Contact/Follow.php:152 src/Module/Contact/Profile.php:420 +#: src/Module/Notifications/Introductions.php:183 +#: src/Module/Profile/Profile.php:222 msgid "Tags:" msgstr "タグ:" -#: src/Module/Contact/Follow.php:182 +#: src/Module/Contact/Follow.php:163 #, php-format msgid "%s knows you" msgstr "%sはあなたを知っています" -#: src/Module/Contact/Follow.php:183 +#: src/Module/Contact/Follow.php:164 msgid "Add a personal note:" msgstr "個人メモを追加します。" -#: src/Module/Contact/Follow.php:192 src/Module/Contact/Unfollow.php:138 +#: src/Module/Contact/Follow.php:173 src/Module/Contact/Unfollow.php:124 msgid "Posts and Replies" msgstr "" -#: src/Module/Contact/Follow.php:221 +#: src/Module/Contact/Follow.php:202 msgid "The contact could not be added." msgstr "コンタクトを追加できませんでした。" -#: src/Module/Contact/MatchInterests.php:95 -#: src/Module/Media/Attachment/Upload.php:77 -#: src/Module/Media/Attachment/Upload.php:82 -#: src/Module/Media/Photo/Upload.php:81 src/Module/Media/Photo/Upload.php:86 -#: src/Module/Media/Photo/Upload.php:135 +#: src/Module/Contact/MatchInterests.php:81 +#: src/Module/Media/Attachment/Upload.php:63 +#: src/Module/Media/Attachment/Upload.php:68 +#: src/Module/Media/Photo/Upload.php:67 src/Module/Media/Photo/Upload.php:72 +#: src/Module/Media/Photo/Upload.php:121 msgid "Invalid request." msgstr "無効なリクエストです。" -#: src/Module/Contact/MatchInterests.php:102 +#: src/Module/Contact/MatchInterests.php:88 msgid "No keywords to match. Please add keywords to your profile." msgstr "合致するキーワードが有りません。あなたのプロフィールにキーワードを追加してください。" -#: src/Module/Contact/MatchInterests.php:145 +#: src/Module/Contact/MatchInterests.php:141 msgid "Profile Match" msgstr "一致するプロフィール" -#: src/Module/Contact/Profile.php:145 +#: src/Module/Contact/Profile.php:131 msgid "Failed to update contact record." msgstr "コンタクトレコードを更新できませんでした。" @@ -6829,7 +6841,7 @@ msgid "Block/Unblock contact" msgstr "コンタクトのブロック/ブロック解除" #: src/Module/Contact/Profile.php:379 -#: src/Module/Moderation/Report/Create.php:293 +#: src/Module/Moderation/Report/Create.php:279 msgid "Ignore contact" msgstr "コンタクトを無視" @@ -6874,7 +6886,7 @@ msgid "Manage remote servers" msgstr "" #: src/Module/Contact/Profile.php:400 -#: src/Module/Notifications/Introductions.php:192 +#: src/Module/Notifications/Introductions.php:184 msgid "Hide this contact from others" msgstr "このコンタクトを他の人から隠す" @@ -6902,12 +6914,12 @@ msgid "" msgstr "「情報とキーワードの取得」が選択されている場合、ハッシュタグに変換しないキーワードのカンマ区切りリスト" #: src/Module/Contact/Profile.php:421 -#: src/Module/Settings/TwoFactor/Index.php:160 +#: src/Module/Settings/TwoFactor/Index.php:146 msgid "Actions" msgstr "操作" #: src/Module/Contact/Profile.php:423 -#: src/Module/Settings/TwoFactor/Index.php:140 view/theme/frio/theme.php:232 +#: src/Module/Settings/TwoFactor/Index.php:126 view/theme/frio/theme.php:220 msgid "Status" msgstr "状態" @@ -6982,8 +6994,8 @@ msgstr "" #: src/Module/Contact/Profile.php:441 msgid "" -"If enabled, posts from this contact will only appear in channels, but not in" -" the network stream." +"If enabled, posts from this contact will only appear in channels and network" +" streams in circles, but not in the general network stream." msgstr "" #: src/Module/Contact/Profile.php:509 @@ -7002,7 +7014,7 @@ msgstr "無視ステータスの切り替え" msgid "Toggle Collapsed status" msgstr "" -#: src/Module/Contact/Profile.php:543 src/Module/Contact/Revoke.php:106 +#: src/Module/Contact/Profile.php:543 src/Module/Contact/Revoke.php:89 msgid "Revoke Follow" msgstr "" @@ -7010,638 +7022,634 @@ msgstr "" msgid "Revoke the follow from this contact" msgstr "" -#: src/Module/Contact/Redir.php:135 src/Module/Contact/Redir.php:187 +#: src/Module/Contact/Redir.php:125 msgid "Bad Request." msgstr "要求の形式が正しくありません。" -#: src/Module/Contact/Revoke.php:63 -msgid "Unknown contact." -msgstr "" - -#: src/Module/Contact/Revoke.php:77 +#: src/Module/Contact/Revoke.php:60 msgid "Contact is being deleted." msgstr "" -#: src/Module/Contact/Revoke.php:91 +#: src/Module/Contact/Revoke.php:74 msgid "Follow was successfully revoked." msgstr "" -#: src/Module/Contact/Revoke.php:107 +#: src/Module/Contact/Revoke.php:90 msgid "" "Do you really want to revoke this contact's follow? This cannot be undone " "and they will have to manually follow you back again." msgstr "" -#: src/Module/Contact/Suggestions.php:62 +#: src/Module/Contact/Suggestions.php:48 msgid "" "No suggestions available. If this is a new site, please try again in 24 " "hours." msgstr "利用可能な提案はありません。新しいサイトの場合は、24時間後にもう一度お試しください。" -#: src/Module/Contact/Unfollow.php:98 src/Module/Contact/Unfollow.php:167 +#: src/Module/Contact/Unfollow.php:84 src/Module/Contact/Unfollow.php:153 msgid "You aren't following this contact." msgstr "あなたはこのコンタクトをフォローしていません" -#: src/Module/Contact/Unfollow.php:103 +#: src/Module/Contact/Unfollow.php:89 msgid "Unfollowing is currently not supported by your network." msgstr "現在、フォロー解除はあなたのネットワークではサポートされていません" -#: src/Module/Contact/Unfollow.php:121 +#: src/Module/Contact/Unfollow.php:107 msgid "Disconnect/Unfollow" msgstr "接続・フォローを解除" -#: src/Module/Contact/Unfollow.php:175 +#: src/Module/Contact/Unfollow.php:161 msgid "Contact was successfully unfollowed" msgstr "" -#: src/Module/Contact/Unfollow.php:178 +#: src/Module/Contact/Unfollow.php:164 msgid "Unable to unfollow this contact, please contact your administrator" msgstr "" -#: src/Module/Conversation/Channel.php:139 -#: src/Module/Conversation/Community.php:126 src/Module/Search/Index.php:152 -#: src/Module/Search/Index.php:194 +#: src/Module/Conversation/Channel.php:125 +#: src/Module/Conversation/Community.php:114 src/Module/Search/Index.php:138 +#: src/Module/Search/Index.php:180 msgid "No results." msgstr "結果がありません。" -#: src/Module/Conversation/Channel.php:177 +#: src/Module/Conversation/Channel.php:163 msgid "Channel not available." msgstr "" -#: src/Module/Conversation/Community.php:92 +#: src/Module/Conversation/Community.php:80 msgid "" "This community stream shows all public posts received by this node. They may" " not reflect the opinions of this node’s users." msgstr "このコミュニティストリームには、このノードが受信したすべての一般公開投稿が表示されます。このノードのユーザーの意見を反映していない場合があります。" -#: src/Module/Conversation/Community.php:180 +#: src/Module/Conversation/Community.php:168 msgid "Community option not available." msgstr "コミュニティオプションは利用できません。" -#: src/Module/Conversation/Community.php:196 +#: src/Module/Conversation/Community.php:184 msgid "Not available." msgstr "利用不可。" -#: src/Module/Conversation/Network.php:214 +#: src/Module/Conversation/Network.php:202 msgid "No such circle" msgstr "" -#: src/Module/Conversation/Network.php:218 +#: src/Module/Conversation/Network.php:206 #, php-format msgid "Circle: %s" msgstr "" -#: src/Module/Conversation/Network.php:237 +#: src/Module/Conversation/Network.php:226 #, php-format msgid "Error %d (%s) while fetching the timeline." msgstr "" -#: src/Module/Conversation/Network.php:314 +#: src/Module/Conversation/Network.php:304 msgid "Network feed not available." msgstr "" -#: src/Module/Conversation/Timeline.php:203 +#: src/Module/Conversation/Timeline.php:190 msgid "Include" msgstr "" -#: src/Module/Conversation/Timeline.php:204 +#: src/Module/Conversation/Timeline.php:191 msgid "Hide" msgstr "" -#: src/Module/Credits.php:44 +#: src/Module/Credits.php:30 msgid "Credits" msgstr "クレジット" -#: src/Module/Credits.php:45 +#: src/Module/Credits.php:31 msgid "" "Friendica is a community project, that would not be possible without the " "help of many people. Here is a list of those who have contributed to the " "code or the translation of Friendica. Thank you all!" msgstr "Friendicaはコミュニティプロジェクトであり、多くの人々の助けがなければ不可能です。以下は、Friendicaのコードまたは翻訳に貢献した人のリストです。皆さん、ありがとうございました!" -#: src/Module/Debug/ActivityPubConversion.php:53 +#: src/Module/Debug/ActivityPubConversion.php:45 msgid "Formatted" msgstr "" -#: src/Module/Debug/ActivityPubConversion.php:65 +#: src/Module/Debug/ActivityPubConversion.php:57 msgid "Activity" msgstr "" -#: src/Module/Debug/ActivityPubConversion.php:117 +#: src/Module/Debug/ActivityPubConversion.php:109 msgid "Object data" msgstr "" -#: src/Module/Debug/ActivityPubConversion.php:124 +#: src/Module/Debug/ActivityPubConversion.php:116 msgid "Result Item" msgstr "" -#: src/Module/Debug/ActivityPubConversion.php:129 -#: src/Module/Debug/Babel.php:294 src/Module/Moderation/Item/Source.php:87 -#: src/Module/Security/TwoFactor/Verify.php:98 +#: src/Module/Debug/ActivityPubConversion.php:121 +#: src/Module/Debug/Babel.php:286 src/Module/Moderation/Item/Source.php:79 +#: src/Module/Security/TwoFactor/Verify.php:84 msgid "Error" msgid_plural "Errors" msgstr[0] "エラー" -#: src/Module/Debug/ActivityPubConversion.php:138 +#: src/Module/Debug/ActivityPubConversion.php:130 msgid "Source activity" msgstr "" -#: src/Module/Debug/Babel.php:52 +#: src/Module/Debug/Babel.php:44 msgid "Source input" msgstr "ソース入力" -#: src/Module/Debug/Babel.php:58 +#: src/Module/Debug/Babel.php:50 msgid "BBCode::toPlaintext" msgstr "BBCode :: toPlaintext" -#: src/Module/Debug/Babel.php:64 +#: src/Module/Debug/Babel.php:56 msgid "BBCode::convert (raw HTML)" msgstr "BBCode :: convert(生のHTML)" -#: src/Module/Debug/Babel.php:69 +#: src/Module/Debug/Babel.php:61 msgid "BBCode::convert (hex)" msgstr "" -#: src/Module/Debug/Babel.php:74 +#: src/Module/Debug/Babel.php:66 msgid "BBCode::convert" msgstr "BBCode :: convert" -#: src/Module/Debug/Babel.php:80 +#: src/Module/Debug/Babel.php:72 msgid "BBCode::convert => HTML::toBBCode" msgstr "BBCode :: convert => HTML :: toBBCode" -#: src/Module/Debug/Babel.php:86 +#: src/Module/Debug/Babel.php:78 msgid "BBCode::toMarkdown" msgstr "BBCode :: toMarkdown" -#: src/Module/Debug/Babel.php:92 +#: src/Module/Debug/Babel.php:84 msgid "BBCode::toMarkdown => Markdown::convert (raw HTML)" msgstr "BBCode::toMarkdown => Markdown::convert (raw HTML)" -#: src/Module/Debug/Babel.php:96 +#: src/Module/Debug/Babel.php:88 msgid "BBCode::toMarkdown => Markdown::convert" msgstr "BBCode :: toMarkdown => Markdown :: convert" -#: src/Module/Debug/Babel.php:102 +#: src/Module/Debug/Babel.php:94 msgid "BBCode::toMarkdown => Markdown::toBBCode" msgstr "BBCode :: toMarkdown => Markdown :: toBBCode" -#: src/Module/Debug/Babel.php:108 +#: src/Module/Debug/Babel.php:100 msgid "BBCode::toMarkdown => Markdown::convert => HTML::toBBCode" msgstr "BBCode :: toMarkdown => Markdown :: convert => HTML :: toBBCode" -#: src/Module/Debug/Babel.php:116 +#: src/Module/Debug/Babel.php:108 msgid "Item Body" msgstr "項目本体" -#: src/Module/Debug/Babel.php:120 +#: src/Module/Debug/Babel.php:112 msgid "Item Tags" msgstr "項目タグ" -#: src/Module/Debug/Babel.php:126 +#: src/Module/Debug/Babel.php:118 msgid "PageInfo::appendToBody" msgstr "" -#: src/Module/Debug/Babel.php:131 +#: src/Module/Debug/Babel.php:123 msgid "PageInfo::appendToBody => BBCode::convert (raw HTML)" msgstr "" -#: src/Module/Debug/Babel.php:135 +#: src/Module/Debug/Babel.php:127 msgid "PageInfo::appendToBody => BBCode::convert" msgstr "" -#: src/Module/Debug/Babel.php:142 +#: src/Module/Debug/Babel.php:134 msgid "Source input (Diaspora format)" msgstr "ソース入力(Diaspora形式)" -#: src/Module/Debug/Babel.php:151 +#: src/Module/Debug/Babel.php:143 msgid "Source input (Markdown)" msgstr "" -#: src/Module/Debug/Babel.php:157 +#: src/Module/Debug/Babel.php:149 msgid "Markdown::convert (raw HTML)" msgstr "Markdown :: convert(生のHTML)" -#: src/Module/Debug/Babel.php:162 +#: src/Module/Debug/Babel.php:154 msgid "Markdown::convert" msgstr "Markdown :: convert" -#: src/Module/Debug/Babel.php:168 +#: src/Module/Debug/Babel.php:160 msgid "Markdown::toBBCode" msgstr "Markdown :: toBBCode" -#: src/Module/Debug/Babel.php:175 +#: src/Module/Debug/Babel.php:167 msgid "Raw HTML input" msgstr "生のHTML入力" -#: src/Module/Debug/Babel.php:180 +#: src/Module/Debug/Babel.php:172 msgid "HTML Input" msgstr "HTML入力" -#: src/Module/Debug/Babel.php:187 +#: src/Module/Debug/Babel.php:179 msgid "HTML Purified (raw)" msgstr "" -#: src/Module/Debug/Babel.php:192 +#: src/Module/Debug/Babel.php:184 msgid "HTML Purified (hex)" msgstr "" -#: src/Module/Debug/Babel.php:197 +#: src/Module/Debug/Babel.php:189 msgid "HTML Purified" msgstr "" -#: src/Module/Debug/Babel.php:203 +#: src/Module/Debug/Babel.php:195 msgid "HTML::toBBCode" msgstr "HTML :: toBBCode" -#: src/Module/Debug/Babel.php:209 +#: src/Module/Debug/Babel.php:201 msgid "HTML::toBBCode => BBCode::convert" msgstr "HTML :: toBBCode => BBCode :: convert" -#: src/Module/Debug/Babel.php:214 +#: src/Module/Debug/Babel.php:206 msgid "HTML::toBBCode => BBCode::convert (raw HTML)" msgstr "HTML :: toBBCode => BBCode :: convert(生のHTML)" -#: src/Module/Debug/Babel.php:220 +#: src/Module/Debug/Babel.php:212 msgid "HTML::toBBCode => BBCode::toPlaintext" msgstr "HTML :: toBBCode => BBCode :: toPlaintext" -#: src/Module/Debug/Babel.php:226 +#: src/Module/Debug/Babel.php:218 msgid "HTML::toMarkdown" msgstr "HTML :: toMarkdown" -#: src/Module/Debug/Babel.php:232 +#: src/Module/Debug/Babel.php:224 msgid "HTML::toPlaintext" msgstr "HTML :: toPlaintext" -#: src/Module/Debug/Babel.php:238 +#: src/Module/Debug/Babel.php:230 msgid "HTML::toPlaintext (compact)" msgstr "HTML :: toPlaintext(コンパクト)" -#: src/Module/Debug/Babel.php:256 +#: src/Module/Debug/Babel.php:248 msgid "Decoded post" msgstr "" -#: src/Module/Debug/Babel.php:277 +#: src/Module/Debug/Babel.php:269 msgid "Post array before expand entities" msgstr "" -#: src/Module/Debug/Babel.php:284 +#: src/Module/Debug/Babel.php:276 msgid "Post converted" msgstr "" -#: src/Module/Debug/Babel.php:289 +#: src/Module/Debug/Babel.php:281 msgid "Converted body" msgstr "" -#: src/Module/Debug/Babel.php:295 +#: src/Module/Debug/Babel.php:287 msgid "Twitter addon is absent from the addon/ folder." msgstr "" -#: src/Module/Debug/Babel.php:305 +#: src/Module/Debug/Babel.php:297 msgid "Babel Diagnostic" msgstr "" -#: src/Module/Debug/Babel.php:307 +#: src/Module/Debug/Babel.php:299 msgid "Source text" msgstr "ソーステキスト" -#: src/Module/Debug/Babel.php:308 +#: src/Module/Debug/Babel.php:300 msgid "BBCode" msgstr "BBCode" -#: src/Module/Debug/Babel.php:310 +#: src/Module/Debug/Babel.php:302 msgid "Markdown" msgstr "マークダウン" -#: src/Module/Debug/Babel.php:311 +#: src/Module/Debug/Babel.php:303 msgid "HTML" msgstr "HTML" -#: src/Module/Debug/Babel.php:313 +#: src/Module/Debug/Babel.php:305 msgid "Twitter Source / Tweet URL (requires API key)" msgstr "" -#: src/Module/Debug/Feed.php:53 src/Module/Filer/SaveTag.php:47 -#: src/Module/Settings/Profile/Index.php:177 +#: src/Module/Debug/Feed.php:39 src/Module/Filer/SaveTag.php:33 +#: src/Module/Settings/Profile/Index.php:166 msgid "You must be logged in to use this module" msgstr "このモジュールを使用するにはログインする必要があります" -#: src/Module/Debug/Feed.php:78 +#: src/Module/Debug/Feed.php:64 msgid "Source URL" msgstr "ソースURL" -#: src/Module/Debug/Localtime.php:49 +#: src/Module/Debug/Localtime.php:35 msgid "Time Conversion" msgstr "時間変換" -#: src/Module/Debug/Localtime.php:50 +#: src/Module/Debug/Localtime.php:36 msgid "" "Friendica provides this service for sharing events with other networks and " "friends in unknown timezones." msgstr "Friendicaは、未知のタイムゾーンで他のネットワークや友人とイベントを共有するためにこのサービスを提供します。" -#: src/Module/Debug/Localtime.php:51 +#: src/Module/Debug/Localtime.php:37 #, php-format msgid "UTC time: %s" msgstr "UTC時間: %s" -#: src/Module/Debug/Localtime.php:54 +#: src/Module/Debug/Localtime.php:40 #, php-format msgid "Current timezone: %s" msgstr "現在のタイムゾーン: %s" -#: src/Module/Debug/Localtime.php:58 +#: src/Module/Debug/Localtime.php:44 #, php-format msgid "Converted localtime: %s" msgstr "変換された現地時間: %s" -#: src/Module/Debug/Localtime.php:62 +#: src/Module/Debug/Localtime.php:48 msgid "Please select your timezone:" msgstr "タイムゾーンを選択してください:" -#: src/Module/Debug/Probe.php:38 src/Module/Debug/WebFinger.php:37 +#: src/Module/Debug/Probe.php:24 src/Module/Debug/WebFinger.php:23 msgid "Only logged in users are permitted to perform a probing." msgstr "ログインしているユーザーのみがプローブを実行できます。" -#: src/Module/Debug/Probe.php:52 +#: src/Module/Debug/Probe.php:38 msgid "Probe Diagnostic" msgstr "" -#: src/Module/Debug/Probe.php:53 +#: src/Module/Debug/Probe.php:39 msgid "Output" msgstr "出力" -#: src/Module/Debug/Probe.php:56 +#: src/Module/Debug/Probe.php:42 msgid "Lookup address" msgstr "ルックアップアドレス" -#: src/Module/Debug/WebFinger.php:50 +#: src/Module/Debug/WebFinger.php:36 msgid "Webfinger Diagnostic" msgstr "" -#: src/Module/Debug/WebFinger.php:52 +#: src/Module/Debug/WebFinger.php:38 msgid "Lookup address:" msgstr "" -#: src/Module/Directory.php:74 +#: src/Module/Directory.php:61 msgid "No entries (some entries may be hidden)." msgstr "エントリなし(一部のエントリは非表示になる場合があります)" -#: src/Module/Directory.php:90 +#: src/Module/Directory.php:77 msgid "Find on this site" msgstr "このサイトで見つける" -#: src/Module/Directory.php:92 +#: src/Module/Directory.php:79 msgid "Results for:" msgstr "の結果:" -#: src/Module/Directory.php:94 +#: src/Module/Directory.php:81 msgid "Site Directory" msgstr "サイトディレクトリ" -#: src/Module/Filer/RemoveTag.php:105 +#: src/Module/Filer/RemoveTag.php:91 msgid "Item was not deleted" msgstr "" -#: src/Module/Filer/RemoveTag.php:115 +#: src/Module/Filer/RemoveTag.php:101 msgid "Item was not removed" msgstr "" -#: src/Module/Filer/SaveTag.php:73 +#: src/Module/Filer/SaveTag.php:59 msgid "- select -" msgstr "-選択-" -#: src/Module/FriendSuggest.php:82 +#: src/Module/FriendSuggest.php:68 msgid "Suggested contact not found." msgstr "推奨コンタクトが見つかりません。" -#: src/Module/FriendSuggest.php:100 +#: src/Module/FriendSuggest.php:86 msgid "Friend suggestion sent." msgstr "友達の提案が送信されました。" -#: src/Module/FriendSuggest.php:137 +#: src/Module/FriendSuggest.php:123 msgid "Suggest Friends" msgstr "友人を示唆しています" -#: src/Module/FriendSuggest.php:140 +#: src/Module/FriendSuggest.php:126 #, php-format msgid "Suggest a friend for %s" msgstr "%s友達を提案する" -#: src/Module/Friendica.php:81 +#: src/Module/Friendica.php:67 msgid "Installed addons/apps:" msgstr "インストールされたアドオン/アプリ:" -#: src/Module/Friendica.php:86 +#: src/Module/Friendica.php:72 msgid "No installed addons/apps" msgstr "アドオン/アプリがインストールされていません" -#: src/Module/Friendica.php:91 +#: src/Module/Friendica.php:77 #, php-format msgid "Read about the Terms of Service of this node." msgstr "このノードの利用規約について読んでください。" -#: src/Module/Friendica.php:98 +#: src/Module/Friendica.php:84 msgid "On this server the following remote servers are blocked." msgstr "このサーバーでは、次のリモートサーバーがブロックされています。" -#: src/Module/Friendica.php:101 -#: src/Module/Moderation/Blocklist/Server/Index.php:87 -#: src/Module/Moderation/Blocklist/Server/Index.php:111 -#: src/Module/Settings/Channels.php:232 +#: src/Module/Friendica.php:87 +#: src/Module/Moderation/Blocklist/Server/Index.php:73 +#: src/Module/Moderation/Blocklist/Server/Index.php:97 +#: src/Module/Settings/Channels.php:218 msgid "Reason for the block" msgstr "ブロックの理由" -#: src/Module/Friendica.php:103 +#: src/Module/Friendica.php:89 msgid "Download this list in CSV format" msgstr "" -#: src/Module/Friendica.php:117 +#: src/Module/Friendica.php:103 #, php-format msgid "" "This is Friendica, version %s that is running at the web location %s. The " "database version is %s, the post update version is %s." msgstr "これは、Webロケーション%s実行されているFriendicaバージョン%sです。データベースのバージョンは%s 、更新後のバージョンは%sです。" -#: src/Module/Friendica.php:122 +#: src/Module/Friendica.php:108 msgid "" "Please visit Friendi.ca to learn more " "about the Friendica project." msgstr "Friendicaプロジェクトの詳細については、 Friendi.ca をご覧ください。" -#: src/Module/Friendica.php:123 +#: src/Module/Friendica.php:109 msgid "Bug reports and issues: please visit" msgstr "バグレポートと問題:こちらをご覧ください" -#: src/Module/Friendica.php:123 +#: src/Module/Friendica.php:109 msgid "the bugtracker at github" msgstr "githubのバグトラッカー" -#: src/Module/Friendica.php:124 +#: src/Module/Friendica.php:110 msgid "Suggestions, praise, etc. - please email \"info\" at \"friendi - dot - ca" msgstr "提案、ファンレターなどを \"info \" at \"friendi - dot - ca\"でお待ちしております。" -#: src/Module/HCard.php:45 +#: src/Module/HCard.php:31 msgid "No profile" msgstr "プロフィールなし" -#: src/Module/HTTPException/MethodNotAllowed.php:31 +#: src/Module/HTTPException/MethodNotAllowed.php:17 msgid "Method Not Allowed." msgstr "そのメソッドは許可されていません。" -#: src/Module/Help.php:60 +#: src/Module/Help.php:46 msgid "Help:" msgstr "ヘルプ:" -#: src/Module/Home.php:63 +#: src/Module/Home.php:52 #, php-format msgid "Welcome to %s" msgstr "%sへようこそ" -#: src/Module/Install.php:189 +#: src/Module/Install.php:175 msgid "Friendica Communications Server - Setup" msgstr "Friendica Communications Server-セットアップ" -#: src/Module/Install.php:200 +#: src/Module/Install.php:186 msgid "System check" msgstr "システムチェック" -#: src/Module/Install.php:202 src/Module/Install.php:247 -#: src/Module/Install.php:326 +#: src/Module/Install.php:188 src/Module/Install.php:233 +#: src/Module/Install.php:312 msgid "Requirement not satisfied" msgstr "要件を満たしていない" -#: src/Module/Install.php:203 +#: src/Module/Install.php:189 msgid "Optional requirement not satisfied" msgstr "オプションの要件を満たしていない" -#: src/Module/Install.php:204 +#: src/Module/Install.php:190 msgid "OK" msgstr "" -#: src/Module/Install.php:208 +#: src/Module/Install.php:194 msgid "Next" msgstr "次" -#: src/Module/Install.php:209 +#: src/Module/Install.php:195 msgid "Check again" msgstr "再び確かめる" -#: src/Module/Install.php:222 +#: src/Module/Install.php:208 msgid "Base settings" msgstr "基本設定" -#: src/Module/Install.php:224 +#: src/Module/Install.php:210 msgid "Base path to installation" msgstr "インストールへの基本パス" -#: src/Module/Install.php:226 +#: src/Module/Install.php:212 msgid "" "If the system cannot detect the correct path to your installation, enter the" " correct path here. This setting should only be set if you are using a " "restricted system and symbolic links to your webroot." msgstr "システムがインストールへの正しいパスを検出できない場合は、ここに正しいパスを入力します。この設定は、制限されたシステムとWebルートへのシンボリックリンクを使用している場合にのみ設定する必要があります。" -#: src/Module/Install.php:229 +#: src/Module/Install.php:215 msgid "The Friendica system URL" msgstr "" -#: src/Module/Install.php:231 +#: src/Module/Install.php:217 msgid "" "Overwrite this field in case the system URL determination isn't right, " "otherwise leave it as is." msgstr "" -#: src/Module/Install.php:242 +#: src/Module/Install.php:228 msgid "Database connection" msgstr "データベース接続" -#: src/Module/Install.php:243 +#: src/Module/Install.php:229 msgid "" "In order to install Friendica we need to know how to connect to your " "database." msgstr "Friendicaをインストールするには、データベースへの接続方法を知る必要があります。" -#: src/Module/Install.php:244 +#: src/Module/Install.php:230 msgid "" "Please contact your hosting provider or site administrator if you have " "questions about these settings." msgstr "これらの設定について質問がある場合は、ホスティングプロバイダーまたはサイト管理者にお問い合わせください。" -#: src/Module/Install.php:245 +#: src/Module/Install.php:231 msgid "" "The database you specify below should already exist. If it does not, please " "create it before continuing." msgstr "以下で指定するデータベースはすでに存在している必要があります。存在しない場合は、続行する前に作成してください。" -#: src/Module/Install.php:252 +#: src/Module/Install.php:238 msgid "Database Server Name" msgstr "データベースサーバー名" -#: src/Module/Install.php:257 +#: src/Module/Install.php:243 msgid "Database Login Name" msgstr "データベースのログイン名" -#: src/Module/Install.php:263 +#: src/Module/Install.php:249 msgid "Database Login Password" msgstr "データベースログインパスワード" -#: src/Module/Install.php:265 +#: src/Module/Install.php:251 msgid "For security reasons the password must not be empty" msgstr "セキュリティ上の理由から、パスワードを空にしないでください" -#: src/Module/Install.php:268 +#: src/Module/Install.php:254 msgid "Database Name" msgstr "データベース名" -#: src/Module/Install.php:272 src/Module/Install.php:300 +#: src/Module/Install.php:258 src/Module/Install.php:286 msgid "Please select a default timezone for your website" msgstr "ウェブサイトのデフォルトのタイムゾーンを選択してください" -#: src/Module/Install.php:287 +#: src/Module/Install.php:273 msgid "Site settings" msgstr "サイト設定" -#: src/Module/Install.php:295 +#: src/Module/Install.php:281 msgid "Site administrator email address" msgstr "サイト管理者のメールアドレス" -#: src/Module/Install.php:297 +#: src/Module/Install.php:283 msgid "" "Your account email address must match this in order to use the web admin " "panel." msgstr "ウェブ管理パネルを使用するには、アカウントのメールアドレスがこれと一致する必要があります。" -#: src/Module/Install.php:304 +#: src/Module/Install.php:290 msgid "System Language:" msgstr "システムの言語:" -#: src/Module/Install.php:306 +#: src/Module/Install.php:292 msgid "" "Set the default language for your Friendica installation interface and to " "send emails." msgstr "Friendicaインストールインターフェイスのデフォルト言語を設定し、メールを送信します。" -#: src/Module/Install.php:318 +#: src/Module/Install.php:304 msgid "Your Friendica site database has been installed." msgstr "Friendicaサイトデータベースがインストールされました。" -#: src/Module/Install.php:328 +#: src/Module/Install.php:314 msgid "Installation finished" msgstr "インストール完了" -#: src/Module/Install.php:348 +#: src/Module/Install.php:334 msgid "

What next

" msgstr "

次は何でしょうか

" -#: src/Module/Install.php:349 +#: src/Module/Install.php:335 msgid "" "IMPORTANT: You will need to [manually] setup a scheduled task for the " "worker." msgstr "重要:ワーカーのスケジュールされたタスクを[手動で]設定する必要があります。" -#: src/Module/Install.php:352 +#: src/Module/Install.php:338 #, php-format msgid "" "Go to your new Friendica node registration page " @@ -7649,39 +7657,39 @@ msgid "" " administrator email. This will allow you to enter the site admin panel." msgstr "新しいFriendicaノード登録ページに移動して、新しいユーザーとして登録します。管理者の電子メールとして入力したものと同じ電子メールを使用することを忘れないでください。これにより、サイト管理者パネルに入ることができます。" -#: src/Module/Invite.php:57 +#: src/Module/Invite.php:43 msgid "Total invitation limit exceeded." msgstr "合計招待制限を超えました。" -#: src/Module/Invite.php:82 +#: src/Module/Invite.php:68 #, php-format msgid "%s : Not a valid email address." msgstr "%s :有効なメールアドレスではありません。" -#: src/Module/Invite.php:108 +#: src/Module/Invite.php:94 msgid "Please join us on Friendica" msgstr "Friendicaにご参加ください" -#: src/Module/Invite.php:117 +#: src/Module/Invite.php:103 msgid "Invitation limit exceeded. Please contact your site administrator." msgstr "招待制限を超えました。サイト管理者に連絡してください。" -#: src/Module/Invite.php:121 +#: src/Module/Invite.php:107 #, php-format msgid "%s : Message delivery failed." msgstr "%s :メッセージの配信に失敗しました。" -#: src/Module/Invite.php:125 +#: src/Module/Invite.php:111 #, php-format msgid "%d message sent." msgid_plural "%d messages sent." msgstr[0] "%dメッセージを送信しました。" -#: src/Module/Invite.php:143 +#: src/Module/Invite.php:129 msgid "You have no more invitations available" msgstr "利用可能な招待はもうありません" -#: src/Module/Invite.php:150 +#: src/Module/Invite.php:136 #, php-format msgid "" "Visit %s for a list of public sites that you can join. Friendica members on " @@ -7689,14 +7697,14 @@ msgid "" " other social networks." msgstr "参加できる公開サイトのリストについては、 %sにアクセスしてください。他のサイトのFriendicaメンバーは、他の多くのソーシャルネットワークのメンバーと同様に、お互いに接続できます。" -#: src/Module/Invite.php:152 +#: src/Module/Invite.php:138 #, php-format msgid "" "To accept this invitation, please visit and register at %s or any other " "public Friendica website." msgstr "この招待を受け入れるには、 %sまたはその他の公開Friendica Webサイトにアクセスして登録してください。" -#: src/Module/Invite.php:153 +#: src/Module/Invite.php:139 #, php-format msgid "" "Friendica sites all inter-connect to create a huge privacy-enhanced social " @@ -7705,334 +7713,334 @@ msgid "" "sites you can join." msgstr "Friendicaサイトはすべて相互接続して、メンバーが所有および管理する、プライバシーが強化された巨大なソーシャルWebを作成します。また、多くの従来のソーシャルネットワークに接続できます。参加できるFriendicaサイトのリストについては、 %sをご覧ください。" -#: src/Module/Invite.php:157 +#: src/Module/Invite.php:143 msgid "" "Our apologies. This system is not currently configured to connect with other" " public sites or invite members." msgstr "申し訳ございません。このシステムは現在、他の公開サイトに接続したり、メンバーを招待するようには構成されていません。" -#: src/Module/Invite.php:160 +#: src/Module/Invite.php:146 msgid "" "Friendica sites all inter-connect to create a huge privacy-enhanced social " "web that is owned and controlled by its members. They can also connect with " "many traditional social networks." msgstr "Friendicaサイトはすべて相互接続して、メンバーが所有および管理する、プライバシーが強化された巨大なソーシャルWebを作成します。また、多くの従来のソーシャルネットワークに接続できます。" -#: src/Module/Invite.php:159 +#: src/Module/Invite.php:145 #, php-format msgid "To accept this invitation, please visit and register at %s." msgstr "この招待を受け入れるには、 %sアクセスして登録してください。" -#: src/Module/Invite.php:167 +#: src/Module/Invite.php:153 msgid "Send invitations" msgstr "招待状を送信する" -#: src/Module/Invite.php:168 +#: src/Module/Invite.php:154 msgid "Enter email addresses, one per line:" msgstr "電子メールアドレスを1行に1つずつ入力します。" -#: src/Module/Invite.php:172 +#: src/Module/Invite.php:158 msgid "" "You are cordially invited to join me and other close friends on Friendica - " "and help us to create a better social web." msgstr "Friendicaで私や他の親しい友人と一緒に参加してください。より良いソーシャルWebの作成を手伝ってください。" -#: src/Module/Invite.php:174 +#: src/Module/Invite.php:160 msgid "You will need to supply this invitation code: $invite_code" msgstr "この招待コードを提供する必要があります:$ invite_code" -#: src/Module/Invite.php:174 +#: src/Module/Invite.php:160 msgid "" "Once you have registered, please connect with me via my profile page at:" msgstr "登録したら、次のプロフィールページから接続してください。" -#: src/Module/Invite.php:176 +#: src/Module/Invite.php:162 msgid "" "For more information about the Friendica project and why we feel it is " "important, please visit http://friendi.ca" msgstr "Friendicaプロジェクトの詳細と、それが重要だと感じる理由については、http://friendi.caをご覧ください。" -#: src/Module/Item/Compose.php:94 +#: src/Module/Item/Compose.php:80 msgid "Please enter a post body." msgstr "投稿本文を入力してください。" -#: src/Module/Item/Compose.php:105 +#: src/Module/Item/Compose.php:91 msgid "This feature is only available with the frio theme." msgstr "この機能は、frioテーマでのみ使用可能です。" -#: src/Module/Item/Compose.php:129 +#: src/Module/Item/Compose.php:115 msgid "Compose new personal note" msgstr "新しい個人メモを作成する" -#: src/Module/Item/Compose.php:138 +#: src/Module/Item/Compose.php:124 msgid "Compose new post" msgstr "新しい投稿を作成" -#: src/Module/Item/Compose.php:194 +#: src/Module/Item/Compose.php:180 msgid "Visibility" msgstr "公開範囲" -#: src/Module/Item/Compose.php:210 +#: src/Module/Item/Compose.php:196 msgid "Clear the location" msgstr "場所をクリアする" -#: src/Module/Item/Compose.php:211 +#: src/Module/Item/Compose.php:197 msgid "Location services are unavailable on your device" msgstr "デバイスで位置情報サービスを利用できません" -#: src/Module/Item/Compose.php:212 +#: src/Module/Item/Compose.php:198 msgid "" "Location services are disabled. Please check the website's permissions on " "your device" msgstr "位置情報サービスは無効になっています。お使いのデバイスでウェブサイトの権限を確認してください" -#: src/Module/Item/Compose.php:218 +#: src/Module/Item/Compose.php:204 msgid "" "You can make this page always open when you use the New Post button in the " "Theme Customization settings." msgstr "" -#: src/Module/Item/Feed.php:86 +#: src/Module/Item/Feed.php:72 msgid "The feed for this item is unavailable." msgstr "この項目のフィードは利用できません。" -#: src/Module/Item/Follow.php:51 +#: src/Module/Item/Follow.php:37 msgid "Unable to follow this item." msgstr "" -#: src/Module/Maintenance.php:48 src/Module/Maintenance.php:53 +#: src/Module/Maintenance.php:34 src/Module/Maintenance.php:39 msgid "System down for maintenance" msgstr "メンテナンスのためのシステムダウン" -#: src/Module/Maintenance.php:54 +#: src/Module/Maintenance.php:40 msgid "" "This Friendica node is currently in maintenance mode, either automatically " "because it is self-updating or manually by the node administrator. This " "condition should be temporary, please come back in a few minutes." msgstr "" -#: src/Module/Manifest.php:40 +#: src/Module/Manifest.php:26 msgid "A Decentralized Social Network" msgstr "分権化されたソーシャルネットワーク" -#: src/Module/Media/Attachment/Browser.php:58 -#: src/Module/Media/Photo/Browser.php:59 +#: src/Module/Media/Attachment/Browser.php:44 +#: src/Module/Media/Photo/Browser.php:45 msgid "You need to be logged in to access this page." msgstr "" -#: src/Module/Media/Attachment/Browser.php:74 +#: src/Module/Media/Attachment/Browser.php:60 msgid "Files" msgstr "ファイル" -#: src/Module/Media/Attachment/Browser.php:79 -#: src/Module/Media/Photo/Browser.php:90 -#: src/Module/Settings/Profile/Photo/Index.php:127 +#: src/Module/Media/Attachment/Browser.php:65 +#: src/Module/Media/Photo/Browser.php:76 +#: src/Module/Settings/Profile/Photo/Index.php:113 msgid "Upload" msgstr "アップロードする" -#: src/Module/Media/Attachment/Upload.php:97 +#: src/Module/Media/Attachment/Upload.php:83 msgid "Sorry, maybe your upload is bigger than the PHP configuration allows" msgstr "すいません、サーバのPHP設定で許可されたサイズよりも大きいファイルをアップロードしている可能性があります。" -#: src/Module/Media/Attachment/Upload.php:97 +#: src/Module/Media/Attachment/Upload.php:83 msgid "Or - did you try to upload an empty file?" msgstr "または、空のファイルをアップロードしようとしていませんか?" -#: src/Module/Media/Attachment/Upload.php:104 +#: src/Module/Media/Attachment/Upload.php:90 #, php-format msgid "File exceeds size limit of %s" msgstr "ファイルサイズ上限 %s を超えています。" -#: src/Module/Media/Attachment/Upload.php:114 +#: src/Module/Media/Attachment/Upload.php:100 msgid "File upload failed." msgstr "アップロードが失敗しました。" -#: src/Module/Media/Photo/Upload.php:150 src/Module/Media/Photo/Upload.php:151 -#: src/Module/Profile/Photos.php:215 -#: src/Module/Settings/Profile/Photo/Index.php:67 +#: src/Module/Media/Photo/Upload.php:136 src/Module/Media/Photo/Upload.php:137 +#: src/Module/Profile/Photos.php:201 +#: src/Module/Settings/Profile/Photo/Index.php:53 msgid "Unable to process image." msgstr "画像を処理できません。" -#: src/Module/Media/Photo/Upload.php:176 src/Module/Profile/Photos.php:235 -#: src/Module/Settings/Profile/Photo/Index.php:94 +#: src/Module/Media/Photo/Upload.php:162 src/Module/Profile/Photos.php:221 +#: src/Module/Settings/Profile/Photo/Index.php:80 msgid "Image upload failed." msgstr "画像アップロードに失敗しました。" -#: src/Module/Moderation/BaseUsers.php:72 +#: src/Module/Moderation/BaseUsers.php:59 msgid "List of all users" msgstr "" -#: src/Module/Moderation/BaseUsers.php:77 +#: src/Module/Moderation/BaseUsers.php:64 msgid "Active" msgstr "" -#: src/Module/Moderation/BaseUsers.php:80 +#: src/Module/Moderation/BaseUsers.php:67 msgid "List of active accounts" msgstr "" -#: src/Module/Moderation/BaseUsers.php:88 +#: src/Module/Moderation/BaseUsers.php:75 msgid "List of pending registrations" msgstr "" -#: src/Module/Moderation/BaseUsers.php:96 +#: src/Module/Moderation/BaseUsers.php:83 msgid "List of blocked users" msgstr "" -#: src/Module/Moderation/BaseUsers.php:101 +#: src/Module/Moderation/BaseUsers.php:88 msgid "Deleted" msgstr "" -#: src/Module/Moderation/BaseUsers.php:104 +#: src/Module/Moderation/BaseUsers.php:91 msgid "List of pending user deletions" msgstr "" -#: src/Module/Moderation/BaseUsers.php:119 src/Module/Settings/Account.php:482 +#: src/Module/Moderation/BaseUsers.php:108 src/Module/Settings/Account.php:473 msgid "Normal Account Page" msgstr "通常のアカウントページ" -#: src/Module/Moderation/BaseUsers.php:120 src/Module/Settings/Account.php:489 +#: src/Module/Moderation/BaseUsers.php:109 src/Module/Settings/Account.php:480 msgid "Soapbox Page" msgstr "Soapboxページ" -#: src/Module/Moderation/BaseUsers.php:121 src/Module/Settings/Account.php:496 +#: src/Module/Moderation/BaseUsers.php:110 src/Module/Settings/Account.php:487 msgid "Public Group" msgstr "" -#: src/Module/Moderation/BaseUsers.php:122 src/Module/Settings/Account.php:503 +#: src/Module/Moderation/BaseUsers.php:111 src/Module/Settings/Account.php:494 msgid "Public Group - Restricted" msgstr "" -#: src/Module/Moderation/BaseUsers.php:123 src/Module/Settings/Account.php:510 +#: src/Module/Moderation/BaseUsers.php:112 src/Module/Settings/Account.php:501 msgid "Automatic Friend Page" msgstr "自動友達ページ" -#: src/Module/Moderation/BaseUsers.php:124 +#: src/Module/Moderation/BaseUsers.php:113 msgid "Private Group" msgstr "" -#: src/Module/Moderation/BaseUsers.php:127 -#: src/Module/Moderation/Summary.php:53 src/Module/Settings/Account.php:453 +#: src/Module/Moderation/BaseUsers.php:116 +#: src/Module/Moderation/Summary.php:39 src/Module/Settings/Account.php:444 msgid "Personal Page" msgstr "個人ページ" -#: src/Module/Moderation/BaseUsers.php:128 -#: src/Module/Moderation/Summary.php:54 src/Module/Settings/Account.php:460 +#: src/Module/Moderation/BaseUsers.php:117 +#: src/Module/Moderation/Summary.php:40 src/Module/Settings/Account.php:451 msgid "Organisation Page" msgstr "組織ページ" -#: src/Module/Moderation/BaseUsers.php:129 -#: src/Module/Moderation/Summary.php:55 src/Module/Settings/Account.php:467 +#: src/Module/Moderation/BaseUsers.php:118 +#: src/Module/Moderation/Summary.php:41 src/Module/Settings/Account.php:458 msgid "News Page" msgstr "ニュースページ" -#: src/Module/Moderation/BaseUsers.php:130 -#: src/Module/Moderation/Summary.php:56 src/Module/Settings/Account.php:474 +#: src/Module/Moderation/BaseUsers.php:119 +#: src/Module/Moderation/Summary.php:42 src/Module/Settings/Account.php:465 msgid "Community Group" msgstr "" -#: src/Module/Moderation/Blocklist/Contact.php:70 +#: src/Module/Moderation/Blocklist/Contact.php:56 msgid "You can't block a local contact, please block the user instead" msgstr "" -#: src/Module/Moderation/Blocklist/Contact.php:89 +#: src/Module/Moderation/Blocklist/Contact.php:75 #, php-format msgid "%s contact unblocked" msgid_plural "%s contacts unblocked" msgstr[0] "%s はコンタクトのブロックを解除しました" -#: src/Module/Moderation/Blocklist/Contact.php:111 +#: src/Module/Moderation/Blocklist/Contact.php:97 msgid "Remote Contact Blocklist" msgstr "リモートコンタクトブロックリスト" -#: src/Module/Moderation/Blocklist/Contact.php:112 +#: src/Module/Moderation/Blocklist/Contact.php:98 msgid "" "This page allows you to prevent any message from a remote contact to reach " "your node." msgstr "このページを使用すると、リモートコンタクトからのメッセージがあなたのノードに届かないようにできます。" -#: src/Module/Moderation/Blocklist/Contact.php:113 +#: src/Module/Moderation/Blocklist/Contact.php:99 msgid "Block Remote Contact" msgstr "リモートコンタクトをブロック" -#: src/Module/Moderation/Blocklist/Contact.php:114 -#: src/Module/Moderation/Users/Active.php:135 -#: src/Module/Moderation/Users/Blocked.php:135 -#: src/Module/Moderation/Users/Index.php:149 -#: src/Module/Moderation/Users/Pending.php:98 +#: src/Module/Moderation/Blocklist/Contact.php:100 +#: src/Module/Moderation/Users/Active.php:121 +#: src/Module/Moderation/Users/Blocked.php:121 +#: src/Module/Moderation/Users/Index.php:135 +#: src/Module/Moderation/Users/Pending.php:84 msgid "select all" msgstr "すべて選択" -#: src/Module/Moderation/Blocklist/Contact.php:115 +#: src/Module/Moderation/Blocklist/Contact.php:101 msgid "select none" msgstr "どれも選択しない" -#: src/Module/Moderation/Blocklist/Contact.php:118 +#: src/Module/Moderation/Blocklist/Contact.php:104 msgid "No remote contact is blocked from this node." msgstr "このノードからのリモートコンタクトはブロックされていません。" -#: src/Module/Moderation/Blocklist/Contact.php:120 +#: src/Module/Moderation/Blocklist/Contact.php:106 msgid "Blocked Remote Contacts" msgstr "ブロックされたリモートコンタクト" -#: src/Module/Moderation/Blocklist/Contact.php:121 +#: src/Module/Moderation/Blocklist/Contact.php:107 msgid "Block New Remote Contact" msgstr "新しいリモートコンタクトをブロック" -#: src/Module/Moderation/Blocklist/Contact.php:122 -#: src/Module/Moderation/Reports.php:110 +#: src/Module/Moderation/Blocklist/Contact.php:108 +#: src/Module/Moderation/Reports.php:102 msgid "Photo" msgstr "写真" -#: src/Module/Moderation/Blocklist/Contact.php:122 +#: src/Module/Moderation/Blocklist/Contact.php:108 msgid "Reason" msgstr "理由" -#: src/Module/Moderation/Blocklist/Contact.php:128 +#: src/Module/Moderation/Blocklist/Contact.php:114 #, php-format msgid "%s total blocked contact" msgid_plural "%s total blocked contacts" msgstr[0] "%s 件のブロック済みコンタクト" -#: src/Module/Moderation/Blocklist/Contact.php:131 +#: src/Module/Moderation/Blocklist/Contact.php:117 msgid "URL of the remote contact to block." msgstr "ブロックするリモートコンタクトのURL。" -#: src/Module/Moderation/Blocklist/Contact.php:132 +#: src/Module/Moderation/Blocklist/Contact.php:118 msgid "Also purge contact" msgstr "" -#: src/Module/Moderation/Blocklist/Contact.php:132 +#: src/Module/Moderation/Blocklist/Contact.php:118 msgid "" "Removes all content related to this contact from the node. Keeps the contact" " record. This action cannot be undone." msgstr "" -#: src/Module/Moderation/Blocklist/Contact.php:133 -#: src/Module/Moderation/Blocklist/Server/Import.php:124 +#: src/Module/Moderation/Blocklist/Contact.php:119 +#: src/Module/Moderation/Blocklist/Server/Import.php:108 msgid "Block Reason" msgstr "ブロックの理由" -#: src/Module/Moderation/Blocklist/Server/Add.php:80 +#: src/Module/Moderation/Blocklist/Server/Add.php:66 msgid "Server domain pattern added to the blocklist." msgstr "" -#: src/Module/Moderation/Blocklist/Server/Add.php:88 +#: src/Module/Moderation/Blocklist/Server/Add.php:74 #, php-format msgid "%s server scheduled to be purged." msgid_plural "%s servers scheduled to be purged." msgstr[0] "" -#: src/Module/Moderation/Blocklist/Server/Add.php:120 -#: src/Module/Moderation/Blocklist/Server/Import.php:117 +#: src/Module/Moderation/Blocklist/Server/Add.php:106 +#: src/Module/Moderation/Blocklist/Server/Import.php:101 msgid "← Return to the list" msgstr "" -#: src/Module/Moderation/Blocklist/Server/Add.php:122 +#: src/Module/Moderation/Blocklist/Server/Add.php:108 msgid "Block A New Server Domain Pattern" msgstr "" -#: src/Module/Moderation/Blocklist/Server/Add.php:123 -#: src/Module/Moderation/Blocklist/Server/Index.php:99 +#: src/Module/Moderation/Blocklist/Server/Add.php:109 +#: src/Module/Moderation/Blocklist/Server/Index.php:85 msgid "" "

The server domain pattern syntax is case-insensitive shell wildcard, comprising the following special characters:

\n" "
    \n" @@ -8041,56 +8049,56 @@ msgid "" "
" msgstr "" -#: src/Module/Moderation/Blocklist/Server/Add.php:128 -#: src/Module/Moderation/Blocklist/Server/Index.php:107 +#: src/Module/Moderation/Blocklist/Server/Add.php:114 +#: src/Module/Moderation/Blocklist/Server/Index.php:93 msgid "Check pattern" msgstr "" -#: src/Module/Moderation/Blocklist/Server/Add.php:129 +#: src/Module/Moderation/Blocklist/Server/Add.php:115 msgid "Matching known servers" msgstr "" -#: src/Module/Moderation/Blocklist/Server/Add.php:130 -#: src/Module/Settings/Server/Action.php:76 -#: src/Module/Settings/Server/Index.php:106 +#: src/Module/Moderation/Blocklist/Server/Add.php:116 +#: src/Module/Settings/Server/Action.php:62 +#: src/Module/Settings/Server/Index.php:92 msgid "Server Name" msgstr "" -#: src/Module/Moderation/Blocklist/Server/Add.php:131 +#: src/Module/Moderation/Blocklist/Server/Add.php:117 msgid "Server Domain" msgstr "" -#: src/Module/Moderation/Blocklist/Server/Add.php:132 +#: src/Module/Moderation/Blocklist/Server/Add.php:118 msgid "Known Contacts" msgstr "" -#: src/Module/Moderation/Blocklist/Server/Add.php:133 +#: src/Module/Moderation/Blocklist/Server/Add.php:119 #, php-format msgid "%d known server" msgid_plural "%d known servers" msgstr[0] "" -#: src/Module/Moderation/Blocklist/Server/Add.php:134 +#: src/Module/Moderation/Blocklist/Server/Add.php:120 msgid "Add pattern to the blocklist" msgstr "" -#: src/Module/Moderation/Blocklist/Server/Add.php:136 -#: src/Module/Moderation/Blocklist/Server/Index.php:116 +#: src/Module/Moderation/Blocklist/Server/Add.php:122 +#: src/Module/Moderation/Blocklist/Server/Index.php:102 msgid "Server Domain Pattern" msgstr "サーバードメインパターン" -#: src/Module/Moderation/Blocklist/Server/Add.php:136 -#: src/Module/Moderation/Blocklist/Server/Index.php:116 +#: src/Module/Moderation/Blocklist/Server/Add.php:122 +#: src/Module/Moderation/Blocklist/Server/Index.php:102 msgid "" "The domain pattern of the new server to add to the blocklist. Do not include" " the protocol." msgstr "" -#: src/Module/Moderation/Blocklist/Server/Add.php:137 +#: src/Module/Moderation/Blocklist/Server/Add.php:123 msgid "Purge server" msgstr "" -#: src/Module/Moderation/Blocklist/Server/Add.php:137 +#: src/Module/Moderation/Blocklist/Server/Add.php:123 msgid "" "Also purges all the locally stored content authored by the known contacts " "registered on that server. Keeps the contacts and the server records. This " @@ -8101,299 +8109,299 @@ msgid_plural "" "This action cannot be undone." msgstr[0] "" -#: src/Module/Moderation/Blocklist/Server/Add.php:138 +#: src/Module/Moderation/Blocklist/Server/Add.php:124 msgid "Block reason" msgstr "ブロック理由" -#: src/Module/Moderation/Blocklist/Server/Add.php:138 +#: src/Module/Moderation/Blocklist/Server/Add.php:124 msgid "" "The reason why you blocked this server domain pattern. This reason will be " "shown publicly in the server information page." msgstr "" -#: src/Module/Moderation/Blocklist/Server/Import.php:74 -#: src/Module/Moderation/Blocklist/Server/Import.php:83 +#: src/Module/Moderation/Blocklist/Server/Import.php:60 +#: src/Module/Moderation/Blocklist/Server/Import.php:67 msgid "Error importing pattern file" msgstr "" -#: src/Module/Moderation/Blocklist/Server/Import.php:89 +#: src/Module/Moderation/Blocklist/Server/Import.php:74 msgid "Local blocklist replaced with the provided file." msgstr "" -#: src/Module/Moderation/Blocklist/Server/Import.php:93 +#: src/Module/Moderation/Blocklist/Server/Import.php:78 #, php-format msgid "%d pattern was added to the local blocklist." msgid_plural "%d patterns were added to the local blocklist." msgstr[0] "" -#: src/Module/Moderation/Blocklist/Server/Import.php:95 +#: src/Module/Moderation/Blocklist/Server/Import.php:80 msgid "No pattern was added to the local blocklist." msgstr "" -#: src/Module/Moderation/Blocklist/Server/Import.php:119 +#: src/Module/Moderation/Blocklist/Server/Import.php:103 msgid "Import a Server Domain Pattern Blocklist" msgstr "" -#: src/Module/Moderation/Blocklist/Server/Import.php:120 +#: src/Module/Moderation/Blocklist/Server/Import.php:104 msgid "" "

This file can be downloaded from the /friendica path of any " "Friendica server.

" msgstr "" -#: src/Module/Moderation/Blocklist/Server/Import.php:121 -#: src/Module/Moderation/Blocklist/Server/Index.php:106 +#: src/Module/Moderation/Blocklist/Server/Import.php:105 +#: src/Module/Moderation/Blocklist/Server/Index.php:92 msgid "Upload file" msgstr "" -#: src/Module/Moderation/Blocklist/Server/Import.php:122 +#: src/Module/Moderation/Blocklist/Server/Import.php:106 msgid "Patterns to import" msgstr "" -#: src/Module/Moderation/Blocklist/Server/Import.php:123 +#: src/Module/Moderation/Blocklist/Server/Import.php:107 msgid "Domain Pattern" msgstr "" -#: src/Module/Moderation/Blocklist/Server/Import.php:125 +#: src/Module/Moderation/Blocklist/Server/Import.php:109 msgid "Import Mode" msgstr "" -#: src/Module/Moderation/Blocklist/Server/Import.php:126 +#: src/Module/Moderation/Blocklist/Server/Import.php:110 msgid "Import Patterns" msgstr "" -#: src/Module/Moderation/Blocklist/Server/Import.php:127 +#: src/Module/Moderation/Blocklist/Server/Import.php:111 #, php-format msgid "%d total pattern" msgid_plural "%d total patterns" msgstr[0] "" -#: src/Module/Moderation/Blocklist/Server/Import.php:129 -#: src/Module/Moderation/Blocklist/Server/Index.php:115 +#: src/Module/Moderation/Blocklist/Server/Import.php:113 +#: src/Module/Moderation/Blocklist/Server/Index.php:101 msgid "Server domain pattern blocklist CSV file" msgstr "" -#: src/Module/Moderation/Blocklist/Server/Import.php:130 +#: src/Module/Moderation/Blocklist/Server/Import.php:114 msgid "Append" msgstr "" -#: src/Module/Moderation/Blocklist/Server/Import.php:130 +#: src/Module/Moderation/Blocklist/Server/Import.php:114 msgid "" "Imports patterns from the file that weren't already existing in the current " "blocklist." msgstr "" -#: src/Module/Moderation/Blocklist/Server/Import.php:131 +#: src/Module/Moderation/Blocklist/Server/Import.php:115 msgid "Replace" msgstr "" -#: src/Module/Moderation/Blocklist/Server/Import.php:131 +#: src/Module/Moderation/Blocklist/Server/Import.php:115 msgid "Replaces the current blocklist by the imported patterns." msgstr "" -#: src/Module/Moderation/Blocklist/Server/Index.php:86 -#: src/Module/Moderation/Blocklist/Server/Index.php:110 -#: src/Module/Settings/Channels.php:231 +#: src/Module/Moderation/Blocklist/Server/Index.php:72 +#: src/Module/Moderation/Blocklist/Server/Index.php:96 +#: src/Module/Settings/Channels.php:217 msgid "Blocked server domain pattern" msgstr "ブロックされたサーバードメインパターン" -#: src/Module/Moderation/Blocklist/Server/Index.php:88 +#: src/Module/Moderation/Blocklist/Server/Index.php:74 msgid "Delete server domain pattern" msgstr "サーバードメインパターンの削除" -#: src/Module/Moderation/Blocklist/Server/Index.php:88 +#: src/Module/Moderation/Blocklist/Server/Index.php:74 msgid "Check to delete this entry from the blocklist" msgstr "ブロックリストからこのエントリを削除する場合にチェックします" -#: src/Module/Moderation/Blocklist/Server/Index.php:96 +#: src/Module/Moderation/Blocklist/Server/Index.php:82 msgid "Server Domain Pattern Blocklist" msgstr "サーバードメインパターンブロックリスト" -#: src/Module/Moderation/Blocklist/Server/Index.php:97 +#: src/Module/Moderation/Blocklist/Server/Index.php:83 msgid "" "This page can be used to define a blocklist of server domain patterns from " "the federated network that are not allowed to interact with your node. For " "each domain pattern you should also provide the reason why you block it." msgstr "" -#: src/Module/Moderation/Blocklist/Server/Index.php:98 +#: src/Module/Moderation/Blocklist/Server/Index.php:84 msgid "" "The list of blocked server domain patterns will be made publically available" " on the /friendica page so that your users and " "people investigating communication problems can find the reason easily." msgstr "ブロックされたサーバードメインパターンのリストは、 /friendica ページで公開され、ユーザーやコミュニケーションの問題を調査している人々が理由を簡単に見つけることができます。" -#: src/Module/Moderation/Blocklist/Server/Index.php:104 +#: src/Module/Moderation/Blocklist/Server/Index.php:90 msgid "Import server domain pattern blocklist" msgstr "" -#: src/Module/Moderation/Blocklist/Server/Index.php:105 +#: src/Module/Moderation/Blocklist/Server/Index.php:91 msgid "Add new entry to the blocklist" msgstr "" -#: src/Module/Moderation/Blocklist/Server/Index.php:108 +#: src/Module/Moderation/Blocklist/Server/Index.php:94 msgid "Save changes to the blocklist" msgstr "変更をブロックリストに保存する" -#: src/Module/Moderation/Blocklist/Server/Index.php:109 +#: src/Module/Moderation/Blocklist/Server/Index.php:95 msgid "Current Entries in the Blocklist" msgstr "ブロックリストの現在のエントリ" -#: src/Module/Moderation/Blocklist/Server/Index.php:112 +#: src/Module/Moderation/Blocklist/Server/Index.php:98 msgid "Delete entry from the blocklist" msgstr "" -#: src/Module/Moderation/Blocklist/Server/Index.php:113 +#: src/Module/Moderation/Blocklist/Server/Index.php:99 msgid "Delete entry from the blocklist?" msgstr "" -#: src/Module/Moderation/Item/Delete.php:50 +#: src/Module/Moderation/Item/Delete.php:36 msgid "Item marked for deletion." msgstr "削除対象としてマークされた項目。" -#: src/Module/Moderation/Item/Delete.php:63 +#: src/Module/Moderation/Item/Delete.php:49 msgid "Delete this Item" msgstr "この項目を削除" -#: src/Module/Moderation/Item/Delete.php:64 +#: src/Module/Moderation/Item/Delete.php:50 msgid "" "On this page you can delete an item from your node. If the item is a top " "level posting, the entire thread will be deleted." msgstr "このページでは、ノードから項目を削除できます。項目がトップレベルの投稿である場合、スレッド全体が削除されます。" -#: src/Module/Moderation/Item/Delete.php:65 +#: src/Module/Moderation/Item/Delete.php:51 msgid "" "You need to know the GUID of the item. You can find it e.g. by looking at " "the display URL. The last part of http://example.com/display/123456 is the " "GUID, here 123456." msgstr "項目のGUIDを知る必要があります。たとえば、表示URLを調べることで見つけることができます。たとえば http://example.com/display/123456 の最後の部分がGUIDであり、ここでは123456です。" -#: src/Module/Moderation/Item/Delete.php:67 +#: src/Module/Moderation/Item/Delete.php:53 msgid "GUID" msgstr "GUID" -#: src/Module/Moderation/Item/Delete.php:67 +#: src/Module/Moderation/Item/Delete.php:53 msgid "The GUID of the item you want to delete." msgstr "削除する項目のGUID。" -#: src/Module/Moderation/Item/Source.php:77 +#: src/Module/Moderation/Item/Source.php:69 msgid "Item Id" msgstr "" -#: src/Module/Moderation/Item/Source.php:78 +#: src/Module/Moderation/Item/Source.php:70 msgid "Item URI" msgstr "" -#: src/Module/Moderation/Item/Source.php:80 +#: src/Module/Moderation/Item/Source.php:72 msgid "Terms" msgstr "" -#: src/Module/Moderation/Item/Source.php:81 +#: src/Module/Moderation/Item/Source.php:73 msgid "Tag" msgstr "" -#: src/Module/Moderation/Item/Source.php:82 -#: src/Module/Moderation/Users/Active.php:126 -#: src/Module/Moderation/Users/Blocked.php:126 -#: src/Module/Moderation/Users/Index.php:140 +#: src/Module/Moderation/Item/Source.php:74 +#: src/Module/Moderation/Users/Active.php:112 +#: src/Module/Moderation/Users/Blocked.php:112 +#: src/Module/Moderation/Users/Index.php:126 msgid "Type" msgstr "タイプ" -#: src/Module/Moderation/Item/Source.php:83 +#: src/Module/Moderation/Item/Source.php:75 msgid "Term" msgstr "" -#: src/Module/Moderation/Item/Source.php:84 +#: src/Module/Moderation/Item/Source.php:76 msgid "URL" msgstr "" -#: src/Module/Moderation/Item/Source.php:86 +#: src/Module/Moderation/Item/Source.php:78 msgid "Implicit Mention" msgstr "" -#: src/Module/Moderation/Item/Source.php:88 +#: src/Module/Moderation/Item/Source.php:80 msgid "Item not found" msgstr "項目が見つかりません" -#: src/Module/Moderation/Item/Source.php:89 +#: src/Module/Moderation/Item/Source.php:81 msgid "No source recorded" msgstr "" -#: src/Module/Moderation/Item/Source.php:90 +#: src/Module/Moderation/Item/Source.php:82 msgid "" "Please make sure the debug.store_source config key is set in " "config/local.config.php for future items to have sources." msgstr "" -#: src/Module/Moderation/Item/Source.php:92 +#: src/Module/Moderation/Item/Source.php:84 msgid "Item Guid" msgstr "項目GUID" -#: src/Module/Moderation/Report/Create.php:95 +#: src/Module/Moderation/Report/Create.php:81 msgid "Contact not found or their server is already blocked on this node." msgstr "" -#: src/Module/Moderation/Report/Create.php:136 +#: src/Module/Moderation/Report/Create.php:122 msgid "Please login to access this page." msgstr "" -#: src/Module/Moderation/Report/Create.php:165 -#: src/Module/Moderation/Report/Create.php:180 -#: src/Module/Moderation/Report/Create.php:208 -#: src/Module/Moderation/Report/Create.php:260 -#: src/Module/Moderation/Report/Create.php:279 +#: src/Module/Moderation/Report/Create.php:151 +#: src/Module/Moderation/Report/Create.php:166 +#: src/Module/Moderation/Report/Create.php:194 +#: src/Module/Moderation/Report/Create.php:246 +#: src/Module/Moderation/Report/Create.php:265 msgid "Create Moderation Report" msgstr "" -#: src/Module/Moderation/Report/Create.php:166 +#: src/Module/Moderation/Report/Create.php:152 msgid "Pick Contact" msgstr "" -#: src/Module/Moderation/Report/Create.php:167 +#: src/Module/Moderation/Report/Create.php:153 msgid "" "Please enter below the contact address or profile URL you would like to " "create a moderation report about." msgstr "" -#: src/Module/Moderation/Report/Create.php:171 +#: src/Module/Moderation/Report/Create.php:157 msgid "Contact address/URL" msgstr "" -#: src/Module/Moderation/Report/Create.php:181 +#: src/Module/Moderation/Report/Create.php:167 msgid "Pick Category" msgstr "" -#: src/Module/Moderation/Report/Create.php:182 +#: src/Module/Moderation/Report/Create.php:168 msgid "Please pick below the category of your report." msgstr "" -#: src/Module/Moderation/Report/Create.php:186 -#: src/Module/Moderation/Report/Create.php:311 +#: src/Module/Moderation/Report/Create.php:172 +#: src/Module/Moderation/Report/Create.php:297 msgid "Spam" msgstr "" -#: src/Module/Moderation/Report/Create.php:186 +#: src/Module/Moderation/Report/Create.php:172 msgid "" "This contact is publishing many repeated/overly long posts/replies or " "advertising their product/websites in otherwise irrelevant conversations." msgstr "" -#: src/Module/Moderation/Report/Create.php:187 -#: src/Module/Moderation/Report/Create.php:312 +#: src/Module/Moderation/Report/Create.php:173 +#: src/Module/Moderation/Report/Create.php:298 msgid "Illegal Content" msgstr "" -#: src/Module/Moderation/Report/Create.php:187 +#: src/Module/Moderation/Report/Create.php:173 msgid "" "This contact is publishing content that is considered illegal in this node's" " hosting juridiction." msgstr "" -#: src/Module/Moderation/Report/Create.php:188 -#: src/Module/Moderation/Report/Create.php:313 +#: src/Module/Moderation/Report/Create.php:174 +#: src/Module/Moderation/Report/Create.php:299 msgid "Community Safety" msgstr "" -#: src/Module/Moderation/Report/Create.php:188 +#: src/Module/Moderation/Report/Create.php:174 msgid "" "This contact aggravated you or other people, by being provocative or " "insensitive, intentionally or not. This includes disclosing people's private" @@ -8401,12 +8409,12 @@ msgid "" "replies." msgstr "" -#: src/Module/Moderation/Report/Create.php:189 -#: src/Module/Moderation/Report/Create.php:314 +#: src/Module/Moderation/Report/Create.php:175 +#: src/Module/Moderation/Report/Create.php:300 msgid "Unwanted Content/Behavior" msgstr "" -#: src/Module/Moderation/Report/Create.php:189 +#: src/Module/Moderation/Report/Create.php:175 msgid "" "This contact has repeatedly published content irrelevant to the node's theme" " or is openly criticizing the node's administration/moderation without " @@ -8414,89 +8422,89 @@ msgid "" "nitpicking on a sensitive topic." msgstr "" -#: src/Module/Moderation/Report/Create.php:190 -#: src/Module/Moderation/Report/Create.php:315 +#: src/Module/Moderation/Report/Create.php:176 +#: src/Module/Moderation/Report/Create.php:301 msgid "Rules Violation" msgstr "" -#: src/Module/Moderation/Report/Create.php:190 +#: src/Module/Moderation/Report/Create.php:176 msgid "" "This contact violated one or more rules of this node. You will be able to " "pick which one(s) in the next step." msgstr "" -#: src/Module/Moderation/Report/Create.php:191 +#: src/Module/Moderation/Report/Create.php:177 msgid "" "Please elaborate below why you submitted this report. The more details you " "provide, the better your report can be handled." msgstr "" -#: src/Module/Moderation/Report/Create.php:193 +#: src/Module/Moderation/Report/Create.php:179 msgid "Additional Information" msgstr "" -#: src/Module/Moderation/Report/Create.php:193 +#: src/Module/Moderation/Report/Create.php:179 msgid "" "Please provide any additional information relevant to this particular " "report. You will be able to attach posts by this contact in the next step, " "but any context is welcome." msgstr "" -#: src/Module/Moderation/Report/Create.php:209 +#: src/Module/Moderation/Report/Create.php:195 msgid "Pick Rules" msgstr "" -#: src/Module/Moderation/Report/Create.php:210 +#: src/Module/Moderation/Report/Create.php:196 msgid "Please pick below the node rules you believe this contact violated." msgstr "" -#: src/Module/Moderation/Report/Create.php:261 +#: src/Module/Moderation/Report/Create.php:247 msgid "Pick Posts" msgstr "" -#: src/Module/Moderation/Report/Create.php:262 +#: src/Module/Moderation/Report/Create.php:248 msgid "Please optionally pick posts to attach to your report." msgstr "" -#: src/Module/Moderation/Report/Create.php:281 +#: src/Module/Moderation/Report/Create.php:267 msgid "Submit Report" msgstr "" -#: src/Module/Moderation/Report/Create.php:282 +#: src/Module/Moderation/Report/Create.php:268 msgid "Further Action" msgstr "" -#: src/Module/Moderation/Report/Create.php:283 +#: src/Module/Moderation/Report/Create.php:269 msgid "" "You can also perform one of the following action on the contact you " "reported:" msgstr "" -#: src/Module/Moderation/Report/Create.php:291 +#: src/Module/Moderation/Report/Create.php:277 msgid "Nothing" msgstr "" -#: src/Module/Moderation/Report/Create.php:292 +#: src/Module/Moderation/Report/Create.php:278 msgid "Collapse contact" msgstr "" -#: src/Module/Moderation/Report/Create.php:292 +#: src/Module/Moderation/Report/Create.php:278 msgid "" "Their posts and replies will keep appearing in your Network page but their " "content will be collapsed by default." msgstr "" -#: src/Module/Moderation/Report/Create.php:293 +#: src/Module/Moderation/Report/Create.php:279 msgid "" "Their posts won't appear in your Network page anymore, but their replies can" " appear in forum threads. They still can follow you." msgstr "" -#: src/Module/Moderation/Report/Create.php:294 +#: src/Module/Moderation/Report/Create.php:280 msgid "Block contact" msgstr "" -#: src/Module/Moderation/Report/Create.php:294 +#: src/Module/Moderation/Report/Create.php:280 msgid "" "Their posts won't appear in your Network page anymore, but their replies can" " appear in forum threads, with their content collapsed by default. They " @@ -8504,701 +8512,687 @@ msgid "" "means." msgstr "" -#: src/Module/Moderation/Report/Create.php:297 +#: src/Module/Moderation/Report/Create.php:283 msgid "Forward report" msgstr "" -#: src/Module/Moderation/Report/Create.php:297 +#: src/Module/Moderation/Report/Create.php:283 msgid "Would you ike to forward this report to the remote server?" msgstr "" -#: src/Module/Moderation/Report/Create.php:330 +#: src/Module/Moderation/Report/Create.php:316 msgid "1. Pick a contact" msgstr "" -#: src/Module/Moderation/Report/Create.php:331 +#: src/Module/Moderation/Report/Create.php:317 msgid "2. Pick a category" msgstr "" -#: src/Module/Moderation/Report/Create.php:332 +#: src/Module/Moderation/Report/Create.php:318 msgid "2a. Pick rules" msgstr "" -#: src/Module/Moderation/Report/Create.php:333 +#: src/Module/Moderation/Report/Create.php:319 msgid "2b. Add comment" msgstr "" -#: src/Module/Moderation/Report/Create.php:334 +#: src/Module/Moderation/Report/Create.php:320 msgid "3. Pick posts" msgstr "" -#: src/Module/Moderation/Reports.php:105 +#: src/Module/Moderation/Reports.php:97 msgid "List of reports" msgstr "" -#: src/Module/Moderation/Reports.php:106 +#: src/Module/Moderation/Reports.php:98 msgid "This page display reports created by our or remote users." msgstr "" -#: src/Module/Moderation/Reports.php:107 +#: src/Module/Moderation/Reports.php:99 msgid "No report exists at this node." msgstr "" -#: src/Module/Moderation/Reports.php:110 +#: src/Module/Moderation/Reports.php:102 msgid "Category" msgstr "" -#: src/Module/Moderation/Reports.php:114 +#: src/Module/Moderation/Reports.php:106 #, php-format msgid "%s total report" msgid_plural "%s total reports" msgstr[0] "" -#: src/Module/Moderation/Reports.php:117 +#: src/Module/Moderation/Reports.php:109 msgid "URL of the reported contact." msgstr "" -#: src/Module/Moderation/Summary.php:57 src/Module/Settings/Account.php:431 +#: src/Module/Moderation/Summary.php:43 src/Module/Settings/Account.php:422 msgid "Channel Relay" msgstr "" -#: src/Module/Moderation/Summary.php:77 +#: src/Module/Moderation/Summary.php:63 msgid "Registered users" msgstr "登録ユーザー" -#: src/Module/Moderation/Summary.php:79 +#: src/Module/Moderation/Summary.php:65 msgid "Pending registrations" msgstr "保留中の登録" -#: src/Module/Moderation/Users/Active.php:43 -#: src/Module/Moderation/Users/Index.php:43 +#: src/Module/Moderation/Users/Active.php:29 +#: src/Module/Moderation/Users/Index.php:29 #, php-format msgid "%s user blocked" msgid_plural "%s users blocked" msgstr[0] "%sユーザーがブロックされました" -#: src/Module/Moderation/Users/Active.php:51 -#: src/Module/Moderation/Users/Active.php:85 -#: src/Module/Moderation/Users/Blocked.php:51 -#: src/Module/Moderation/Users/Blocked.php:85 -#: src/Module/Moderation/Users/Index.php:58 -#: src/Module/Moderation/Users/Index.php:92 +#: src/Module/Moderation/Users/Active.php:37 +#: src/Module/Moderation/Users/Active.php:71 +#: src/Module/Moderation/Users/Blocked.php:37 +#: src/Module/Moderation/Users/Blocked.php:71 +#: src/Module/Moderation/Users/Index.php:44 +#: src/Module/Moderation/Users/Index.php:78 msgid "You can't remove yourself" msgstr "自分を削除することはできません" -#: src/Module/Moderation/Users/Active.php:55 -#: src/Module/Moderation/Users/Blocked.php:55 -#: src/Module/Moderation/Users/Index.php:62 +#: src/Module/Moderation/Users/Active.php:41 +#: src/Module/Moderation/Users/Blocked.php:41 +#: src/Module/Moderation/Users/Index.php:48 #, php-format msgid "%s user deleted" msgid_plural "%s users deleted" msgstr[0] "%sユーザーが削除されました" -#: src/Module/Moderation/Users/Active.php:83 -#: src/Module/Moderation/Users/Blocked.php:83 -#: src/Module/Moderation/Users/Index.php:90 +#: src/Module/Moderation/Users/Active.php:69 +#: src/Module/Moderation/Users/Blocked.php:69 +#: src/Module/Moderation/Users/Index.php:76 #, php-format msgid "User \"%s\" deleted" msgstr "ユーザー\"%s\"が削除されました" -#: src/Module/Moderation/Users/Active.php:93 -#: src/Module/Moderation/Users/Index.php:100 +#: src/Module/Moderation/Users/Active.php:79 +#: src/Module/Moderation/Users/Index.php:86 #, php-format msgid "User \"%s\" blocked" msgstr "ユーザー\"%s\"がブロックされました" -#: src/Module/Moderation/Users/Active.php:126 -#: src/Module/Moderation/Users/Blocked.php:126 -#: src/Module/Moderation/Users/Deleted.php:83 -#: src/Module/Moderation/Users/Index.php:140 -#: src/Module/Moderation/Users/Index.php:160 +#: src/Module/Moderation/Users/Active.php:112 +#: src/Module/Moderation/Users/Blocked.php:112 +#: src/Module/Moderation/Users/Deleted.php:69 +#: src/Module/Moderation/Users/Index.php:126 +#: src/Module/Moderation/Users/Index.php:146 msgid "Register date" msgstr "登録日" -#: src/Module/Moderation/Users/Active.php:126 -#: src/Module/Moderation/Users/Blocked.php:126 -#: src/Module/Moderation/Users/Deleted.php:83 -#: src/Module/Moderation/Users/Index.php:140 -#: src/Module/Moderation/Users/Index.php:160 +#: src/Module/Moderation/Users/Active.php:112 +#: src/Module/Moderation/Users/Blocked.php:112 +#: src/Module/Moderation/Users/Deleted.php:69 +#: src/Module/Moderation/Users/Index.php:126 +#: src/Module/Moderation/Users/Index.php:146 msgid "Last login" msgstr "前回のログイン" -#: src/Module/Moderation/Users/Active.php:126 -#: src/Module/Moderation/Users/Blocked.php:126 -#: src/Module/Moderation/Users/Deleted.php:83 -#: src/Module/Moderation/Users/Index.php:140 -#: src/Module/Moderation/Users/Index.php:160 +#: src/Module/Moderation/Users/Active.php:112 +#: src/Module/Moderation/Users/Blocked.php:112 +#: src/Module/Moderation/Users/Deleted.php:69 +#: src/Module/Moderation/Users/Index.php:126 +#: src/Module/Moderation/Users/Index.php:146 msgid "Last public item" msgstr "" -#: src/Module/Moderation/Users/Active.php:134 +#: src/Module/Moderation/Users/Active.php:120 msgid "Active Accounts" msgstr "" -#: src/Module/Moderation/Users/Active.php:138 -#: src/Module/Moderation/Users/Blocked.php:137 -#: src/Module/Moderation/Users/Index.php:153 +#: src/Module/Moderation/Users/Active.php:124 +#: src/Module/Moderation/Users/Blocked.php:123 +#: src/Module/Moderation/Users/Index.php:139 msgid "User blocked" msgstr "ユーザーがブロックされました" -#: src/Module/Moderation/Users/Active.php:139 -#: src/Module/Moderation/Users/Blocked.php:139 -#: src/Module/Moderation/Users/Index.php:155 +#: src/Module/Moderation/Users/Active.php:125 +#: src/Module/Moderation/Users/Blocked.php:125 +#: src/Module/Moderation/Users/Index.php:141 msgid "Site admin" msgstr "サイト管理者" -#: src/Module/Moderation/Users/Active.php:140 -#: src/Module/Moderation/Users/Blocked.php:140 -#: src/Module/Moderation/Users/Index.php:156 +#: src/Module/Moderation/Users/Active.php:126 +#: src/Module/Moderation/Users/Blocked.php:126 +#: src/Module/Moderation/Users/Index.php:142 msgid "Account expired" msgstr "アカウントの有効期限が切れました" -#: src/Module/Moderation/Users/Active.php:141 -#: src/Module/Moderation/Users/Index.php:159 +#: src/Module/Moderation/Users/Active.php:127 +#: src/Module/Moderation/Users/Index.php:145 msgid "Create a new user" msgstr "" -#: src/Module/Moderation/Users/Active.php:147 -#: src/Module/Moderation/Users/Blocked.php:146 -#: src/Module/Moderation/Users/Index.php:165 +#: src/Module/Moderation/Users/Active.php:133 +#: src/Module/Moderation/Users/Blocked.php:132 +#: src/Module/Moderation/Users/Index.php:151 msgid "" "Selected users will be deleted!\\n\\nEverything these users had posted on " "this site will be permanently deleted!\\n\\nAre you sure?" msgstr "選択したユーザーは削除されます!\n\nこれらのユーザーがこのサイトに投稿したものはすべて完全に削除されます!\n\nよろしいですか?" -#: src/Module/Moderation/Users/Active.php:148 -#: src/Module/Moderation/Users/Blocked.php:147 -#: src/Module/Moderation/Users/Index.php:166 +#: src/Module/Moderation/Users/Active.php:134 +#: src/Module/Moderation/Users/Blocked.php:133 +#: src/Module/Moderation/Users/Index.php:152 msgid "" "The user {0} will be deleted!\\n\\nEverything this user has posted on this " "site will be permanently deleted!\\n\\nAre you sure?" msgstr "ユーザー{0}は削除されます!\n\nこのユーザーがこのサイトに投稿したものはすべて完全に削除されます!\n\nよろしいですか?" -#: src/Module/Moderation/Users/Blocked.php:43 -#: src/Module/Moderation/Users/Index.php:50 +#: src/Module/Moderation/Users/Blocked.php:29 +#: src/Module/Moderation/Users/Index.php:36 #, php-format msgid "%s user unblocked" msgid_plural "%s users unblocked" msgstr[0] "%sユーザーのブロックを解除しました" -#: src/Module/Moderation/Users/Blocked.php:92 -#: src/Module/Moderation/Users/Index.php:106 +#: src/Module/Moderation/Users/Blocked.php:78 +#: src/Module/Moderation/Users/Index.php:92 #, php-format msgid "User \"%s\" unblocked" msgstr "ユーザー\"%s\"のブロックを解除しました" -#: src/Module/Moderation/Users/Blocked.php:134 +#: src/Module/Moderation/Users/Blocked.php:120 msgid "Blocked Users" msgstr "" -#: src/Module/Moderation/Users/Create.php:62 +#: src/Module/Moderation/Users/Create.php:48 msgid "New User" msgstr "新しいユーザー" -#: src/Module/Moderation/Users/Create.php:63 +#: src/Module/Moderation/Users/Create.php:49 msgid "Add User" msgstr "ユーザーを追加する" -#: src/Module/Moderation/Users/Create.php:70 +#: src/Module/Moderation/Users/Create.php:56 msgid "Name of the new user." msgstr "新しいユーザーの名前。" -#: src/Module/Moderation/Users/Create.php:71 +#: src/Module/Moderation/Users/Create.php:57 msgid "Nickname" msgstr "ニックネーム" -#: src/Module/Moderation/Users/Create.php:71 +#: src/Module/Moderation/Users/Create.php:57 msgid "Nickname of the new user." msgstr "新しいユーザーのニックネーム。" -#: src/Module/Moderation/Users/Create.php:72 +#: src/Module/Moderation/Users/Create.php:58 msgid "Email address of the new user." msgstr "新しいユーザーのメールアドレス。" -#: src/Module/Moderation/Users/Deleted.php:81 +#: src/Module/Moderation/Users/Deleted.php:67 msgid "Users awaiting permanent deletion" msgstr "" -#: src/Module/Moderation/Users/Deleted.php:83 -#: src/Module/Moderation/Users/Index.php:160 +#: src/Module/Moderation/Users/Deleted.php:69 +#: src/Module/Moderation/Users/Index.php:146 msgid "Permanent deletion" msgstr "永久削除" -#: src/Module/Moderation/Users/Index.php:150 +#: src/Module/Moderation/Users/Index.php:136 msgid "User waiting for permanent deletion" msgstr "永久削除を待っているユーザー" -#: src/Module/Moderation/Users/Pending.php:44 +#: src/Module/Moderation/Users/Pending.php:30 #, php-format msgid "%s user approved" msgid_plural "%s users approved" msgstr[0] "" -#: src/Module/Moderation/Users/Pending.php:51 +#: src/Module/Moderation/Users/Pending.php:37 #, php-format msgid "%s registration revoked" msgid_plural "%s registrations revoked" msgstr[0] "" -#: src/Module/Moderation/Users/Pending.php:76 +#: src/Module/Moderation/Users/Pending.php:62 msgid "Account approved." msgstr "アカウントが承認されました。" -#: src/Module/Moderation/Users/Pending.php:82 +#: src/Module/Moderation/Users/Pending.php:68 msgid "Registration revoked" msgstr "" -#: src/Module/Moderation/Users/Pending.php:97 +#: src/Module/Moderation/Users/Pending.php:83 msgid "User registrations awaiting review" msgstr "" -#: src/Module/Moderation/Users/Pending.php:99 +#: src/Module/Moderation/Users/Pending.php:85 msgid "Request date" msgstr "依頼日" -#: src/Module/Moderation/Users/Pending.php:100 +#: src/Module/Moderation/Users/Pending.php:86 msgid "No registrations." msgstr "登録なし。" -#: src/Module/Moderation/Users/Pending.php:101 +#: src/Module/Moderation/Users/Pending.php:87 msgid "Note from the user" msgstr "ユーザーからのメモ" -#: src/Module/Moderation/Users/Pending.php:103 +#: src/Module/Moderation/Users/Pending.php:89 msgid "Deny" msgstr "拒否する" -#: src/Module/Notifications/Introductions.php:99 +#: src/Module/Notifications/Introductions.php:91 msgid "Show Ignored Requests" msgstr "無視されたリクエストを表示" -#: src/Module/Notifications/Introductions.php:99 +#: src/Module/Notifications/Introductions.php:91 msgid "Hide Ignored Requests" msgstr "無視されたリクエストを隠す" -#: src/Module/Notifications/Introductions.php:115 -#: src/Module/Notifications/Introductions.php:178 +#: src/Module/Notifications/Introductions.php:107 +#: src/Module/Notifications/Introductions.php:170 msgid "Notification type:" msgstr "通知の種類:" -#: src/Module/Notifications/Introductions.php:118 +#: src/Module/Notifications/Introductions.php:110 msgid "Suggested by:" msgstr "によって提案されました:" -#: src/Module/Notifications/Introductions.php:143 +#: src/Module/Notifications/Introductions.php:135 msgid "Claims to be known to you: " msgstr "あなたに知られているという主張:" -#: src/Module/Notifications/Introductions.php:152 +#: src/Module/Notifications/Introductions.php:144 msgid "Shall your connection be bidirectional or not?" msgstr "つながりを相互フォローにしてもよいですか?" -#: src/Module/Notifications/Introductions.php:153 +#: src/Module/Notifications/Introductions.php:145 #, php-format msgid "" "Accepting %s as a friend allows %s to subscribe to your posts, and you will " "also receive updates from them in your news feed." msgstr "%s を友達として受け入れた場合、%s はあなたの投稿を購読できます。また、あなたのニュースフィードにこのアカウントの投稿が表示されます。" -#: src/Module/Notifications/Introductions.php:154 +#: src/Module/Notifications/Introductions.php:146 #, php-format msgid "" "Accepting %s as a subscriber allows them to subscribe to your posts, but you" " will not receive updates from them in your news feed." msgstr "%sを購読者として受け入れると、このアカウントはあなたの投稿を購読できますが、このアカウントからの投稿はあなたのニュースフィードに表示されません。" -#: src/Module/Notifications/Introductions.php:156 +#: src/Module/Notifications/Introductions.php:148 msgid "Friend" msgstr "ともだち" -#: src/Module/Notifications/Introductions.php:157 +#: src/Module/Notifications/Introductions.php:149 msgid "Subscriber" msgstr "購読者" -#: src/Module/Notifications/Introductions.php:216 +#: src/Module/Notifications/Introductions.php:208 msgid "No introductions." msgstr "招待はありません。" -#: src/Module/Notifications/Introductions.php:217 -#: src/Module/Notifications/Notifications.php:135 +#: src/Module/Notifications/Introductions.php:209 +#: src/Module/Notifications/Notifications.php:127 #, php-format msgid "No more %s notifications." msgstr "これ以上%s通知はありません。" -#: src/Module/Notifications/Notification.php:135 +#: src/Module/Notifications/Notification.php:121 msgid "You must be logged in to show this page." msgstr "このページを表示するにはログインする必要があります" -#: src/Module/Notifications/Notifications.php:66 +#: src/Module/Notifications/Notifications.php:52 msgid "Network Notifications" msgstr "ネットワーク通知" -#: src/Module/Notifications/Notifications.php:72 +#: src/Module/Notifications/Notifications.php:58 msgid "System Notifications" msgstr "システム通知" -#: src/Module/Notifications/Notifications.php:78 +#: src/Module/Notifications/Notifications.php:64 msgid "Personal Notifications" msgstr "個人的な通知" -#: src/Module/Notifications/Notifications.php:84 +#: src/Module/Notifications/Notifications.php:70 msgid "Home Notifications" msgstr "ホーム通知" -#: src/Module/Notifications/Notifications.php:140 +#: src/Module/Notifications/Notifications.php:132 msgid "Show unread" msgstr "未読を表示" -#: src/Module/Notifications/Ping.php:220 +#: src/Module/Notifications/Ping.php:206 msgid "{0} requested registration" msgstr "{0}は登録をリクエストしました" -#: src/Module/Notifications/Ping.php:229 +#: src/Module/Notifications/Ping.php:215 #, php-format msgid "{0} and %d others requested registration" msgstr "" -#: src/Module/OAuth/Acknowledge.php:51 +#: src/Module/OAuth/Acknowledge.php:37 msgid "Authorize application connection" msgstr "アプリからの接続を承認します" -#: src/Module/OAuth/Acknowledge.php:53 +#: src/Module/OAuth/Acknowledge.php:39 msgid "" "Do you want to authorize this application to access your posts and contacts," " and/or create new posts for you?" msgstr "このアプリケーションによる、あなたの投稿・コンタクトの読み取りや、新しい投稿の作成を許可しますか?" -#: src/Module/OAuth/Authorize.php:54 +#: src/Module/OAuth/Authorize.php:40 msgid "Unsupported or missing response type" msgstr "" -#: src/Module/OAuth/Authorize.php:59 src/Module/OAuth/Token.php:75 +#: src/Module/OAuth/Authorize.php:45 src/Module/OAuth/Token.php:61 msgid "Incomplete request data" msgstr "" -#: src/Module/OAuth/Authorize.php:106 +#: src/Module/OAuth/Authorize.php:92 #, php-format msgid "" "Please copy the following authentication code into your application and " "close this window: %s" msgstr "" -#: src/Module/OAuth/Token.php:80 +#: src/Module/OAuth/Token.php:66 msgid "Invalid data or unknown client" msgstr "" -#: src/Module/OAuth/Token.php:105 +#: src/Module/OAuth/Token.php:91 msgid "Unsupported or missing grant type" msgstr "" -#: src/Module/OStatus/Repair.php:83 -msgid "Resubscribing to OStatus contacts" -msgstr "Ostatusコンタクトをもう一度購読します" - -#: src/Module/OStatus/Repair.php:84 src/Module/OStatus/Subscribe.php:160 -msgid "Keep this window open until done." -msgstr "ウィンドウを閉じずにお待ちください…" - -#: src/Module/OStatus/Repair.php:85 -msgid "✔ Done" -msgstr "" - -#: src/Module/OStatus/Repair.php:86 -msgid "No OStatus contacts to resubscribe to." -msgstr "" - -#: src/Module/OStatus/Subscribe.php:72 +#: src/Module/OStatus/Subscribe.php:58 msgid "Subscribing to contacts" msgstr "" -#: src/Module/OStatus/Subscribe.php:81 +#: src/Module/OStatus/Subscribe.php:67 msgid "No contact provided." msgstr "コンタクトは提供されていません。" -#: src/Module/OStatus/Subscribe.php:87 +#: src/Module/OStatus/Subscribe.php:73 msgid "Couldn't fetch information for contact." msgstr "コンタクトの情報を取得できませんでした。" -#: src/Module/OStatus/Subscribe.php:98 +#: src/Module/OStatus/Subscribe.php:84 msgid "Couldn't fetch friends for contact." msgstr "コンタクトの友達関係を取得できませんでした。" -#: src/Module/OStatus/Subscribe.php:104 src/Module/OStatus/Subscribe.php:115 +#: src/Module/OStatus/Subscribe.php:90 src/Module/OStatus/Subscribe.php:101 msgid "Couldn't fetch following contacts." msgstr "" -#: src/Module/OStatus/Subscribe.php:110 +#: src/Module/OStatus/Subscribe.php:96 msgid "Couldn't fetch remote profile." msgstr "" -#: src/Module/OStatus/Subscribe.php:120 +#: src/Module/OStatus/Subscribe.php:106 msgid "Unsupported network" msgstr "" -#: src/Module/OStatus/Subscribe.php:136 +#: src/Module/OStatus/Subscribe.php:122 msgid "Done" msgstr "完了" -#: src/Module/OStatus/Subscribe.php:150 +#: src/Module/OStatus/Subscribe.php:136 msgid "success" msgstr "成功" -#: src/Module/OStatus/Subscribe.php:152 +#: src/Module/OStatus/Subscribe.php:138 msgid "failed" msgstr "失敗" -#: src/Module/OStatus/Subscribe.php:155 +#: src/Module/OStatus/Subscribe.php:141 msgid "ignored" msgstr "無視" -#: src/Module/Photo.php:124 +#: src/Module/OStatus/Subscribe.php:146 +msgid "Keep this window open until done." +msgstr "ウィンドウを閉じずにお待ちください…" + +#: src/Module/Photo.php:108 msgid "The Photo is not available." msgstr "" -#: src/Module/Photo.php:149 +#: src/Module/Photo.php:133 #, php-format msgid "The Photo with id %s is not available." msgstr "ID%sの写真は利用できません" -#: src/Module/Photo.php:190 +#: src/Module/Photo.php:174 #, php-format msgid "Invalid external resource with url %s." msgstr "" -#: src/Module/Photo.php:192 +#: src/Module/Photo.php:176 #, php-format msgid "Invalid photo with id %s." msgstr "ID %s の写真が無効です。" -#: src/Module/Post/Edit.php:82 src/Module/Post/Edit.php:96 +#: src/Module/Post/Edit.php:68 src/Module/Post/Edit.php:82 msgid "Post not found." msgstr "" -#: src/Module/Post/Edit.php:102 +#: src/Module/Post/Edit.php:88 msgid "Edit post" msgstr "投稿を編集" -#: src/Module/Post/Edit.php:136 +#: src/Module/Post/Edit.php:122 msgid "web link" msgstr "ウェブリンク" -#: src/Module/Post/Edit.php:137 +#: src/Module/Post/Edit.php:123 msgid "Insert video link" msgstr "ビデオリンクを挿入" -#: src/Module/Post/Edit.php:138 +#: src/Module/Post/Edit.php:124 msgid "video link" msgstr "ビデオリンク" -#: src/Module/Post/Edit.php:139 +#: src/Module/Post/Edit.php:125 msgid "Insert audio link" msgstr "オーディオリンクを挿入" -#: src/Module/Post/Edit.php:140 +#: src/Module/Post/Edit.php:126 msgid "audio link" msgstr "オーディオリンク" -#: src/Module/Post/Tag/Remove.php:106 +#: src/Module/Post/Tag/Remove.php:92 msgid "Remove Item Tag" msgstr "タグの削除" -#: src/Module/Post/Tag/Remove.php:107 +#: src/Module/Post/Tag/Remove.php:93 msgid "Select a tag to remove: " msgstr "削除するタグを選択:" -#: src/Module/Post/Tag/Remove.php:108 -#: src/Module/Settings/TwoFactor/Trusted.php:147 +#: src/Module/Post/Tag/Remove.php:94 +#: src/Module/Settings/TwoFactor/Trusted.php:133 msgid "Remove" msgstr "削除" -#: src/Module/Privacy/PermissionTooltip.php:71 +#: src/Module/Privacy/PermissionTooltip.php:57 #, php-format msgid "Wrong type \"%s\", expected one of: %s" msgstr "" -#: src/Module/Privacy/PermissionTooltip.php:101 +#: src/Module/Privacy/PermissionTooltip.php:87 msgid "Model not found" msgstr "モジュールが見つかりません" -#: src/Module/Privacy/PermissionTooltip.php:118 +#: src/Module/Privacy/PermissionTooltip.php:104 msgid "Unlisted" msgstr "" -#: src/Module/Privacy/PermissionTooltip.php:124 +#: src/Module/Privacy/PermissionTooltip.php:110 msgid "Remote privacy information not available." msgstr "リモートプライバシー情報は利用できません。" -#: src/Module/Privacy/PermissionTooltip.php:131 +#: src/Module/Privacy/PermissionTooltip.php:117 msgid "Visible to:" msgstr "表示先:" -#: src/Module/Privacy/PermissionTooltip.php:133 +#: src/Module/Privacy/PermissionTooltip.php:119 msgid "CC:" msgstr "" -#: src/Module/Privacy/PermissionTooltip.php:134 +#: src/Module/Privacy/PermissionTooltip.php:120 msgid "BCC:" msgstr "" -#: src/Module/Privacy/PermissionTooltip.php:135 +#: src/Module/Privacy/PermissionTooltip.php:121 msgid "Audience:" msgstr "" -#: src/Module/Privacy/PermissionTooltip.php:136 +#: src/Module/Privacy/PermissionTooltip.php:122 msgid "Attributed To:" msgstr "" -#: src/Module/Privacy/PermissionTooltip.php:234 +#: src/Module/Privacy/PermissionTooltip.php:220 #, php-format msgid "Collection (%s)" msgstr "" -#: src/Module/Privacy/PermissionTooltip.php:238 +#: src/Module/Privacy/PermissionTooltip.php:224 #, php-format msgid "Followers (%s)" msgstr "" -#: src/Module/Privacy/PermissionTooltip.php:255 +#: src/Module/Privacy/PermissionTooltip.php:241 #, php-format msgid "%d more" msgstr "" -#: src/Module/Profile/Contacts.php:159 +#: src/Module/Profile/Contacts.php:145 msgid "No contacts." msgstr "コンタクトはありません。" -#: src/Module/Profile/Conversations.php:106 -#: src/Module/Profile/Conversations.php:109 src/Module/Profile/Profile.php:351 -#: src/Module/Profile/Profile.php:354 src/Protocol/Feed.php:1095 -#: src/Protocol/OStatus.php:1011 -#, php-format -msgid "%s's timeline" -msgstr "%sのタイムライン" - -#: src/Module/Profile/Conversations.php:107 src/Module/Profile/Profile.php:352 -#: src/Protocol/Feed.php:1099 src/Protocol/OStatus.php:1016 +#: src/Module/Profile/Conversations.php:92 src/Module/Profile/Profile.php:339 +#: src/Protocol/Feed.php:1097 #, php-format msgid "%s's posts" msgstr "%sの投稿" -#: src/Module/Profile/Conversations.php:108 src/Module/Profile/Profile.php:353 -#: src/Protocol/Feed.php:1102 src/Protocol/OStatus.php:1020 +#: src/Module/Profile/Conversations.php:93 src/Module/Profile/Profile.php:340 +#: src/Protocol/Feed.php:1100 #, 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:192 -#: src/Module/Settings/Profile/Photo/Index.php:58 +#: src/Module/Profile/Conversations.php:94 src/Module/Profile/Profile.php:341 +#: src/Protocol/Feed.php:1093 +#, php-format +msgid "%s's timeline" +msgstr "%sのタイムライン" + +#: src/Module/Profile/Photos.php:150 src/Module/Profile/Photos.php:153 +#: src/Module/Profile/Photos.php:178 +#: src/Module/Settings/Profile/Photo/Index.php:44 #, php-format msgid "Image exceeds size limit of %s" msgstr "画像サイズ上限 %s を超えています。" -#: src/Module/Profile/Photos.php:170 +#: src/Module/Profile/Photos.php:156 msgid "Image upload didn't complete, please try again" msgstr "画像のアップロードが完了しませんでした。もう一度お試しください" -#: src/Module/Profile/Photos.php:173 +#: src/Module/Profile/Photos.php:159 msgid "Image file is missing" msgstr "画像ファイルがありません" -#: src/Module/Profile/Photos.php:178 +#: src/Module/Profile/Photos.php:164 msgid "" "Server can't accept new file upload at this time, please contact your " "administrator" msgstr "サーバーは現在、新しいファイルのアップロードを受け入れられません。管理者に連絡してください" -#: src/Module/Profile/Photos.php:200 +#: src/Module/Profile/Photos.php:186 msgid "Image file is empty." msgstr "画像ファイルが空です。" -#: src/Module/Profile/Photos.php:352 +#: src/Module/Profile/Photos.php:338 msgid "View Album" msgstr "アルバムを見る" -#: src/Module/Profile/Profile.php:112 src/Module/Profile/Restricted.php:50 +#: src/Module/Profile/Profile.php:100 src/Module/Profile/Restricted.php:36 msgid "Profile not found." msgstr "プロフィールが見つかりません。" -#: src/Module/Profile/Profile.php:158 +#: src/Module/Profile/Profile.php:146 #, php-format msgid "" "You're currently viewing your profile as %s Cancel" msgstr "" -#: src/Module/Profile/Profile.php:167 +#: src/Module/Profile/Profile.php:155 msgid "Full Name:" msgstr "フルネーム:" -#: src/Module/Profile/Profile.php:172 +#: src/Module/Profile/Profile.php:160 msgid "Member since:" msgstr "以来のメンバー:" -#: src/Module/Profile/Profile.php:178 +#: src/Module/Profile/Profile.php:166 msgid "j F, Y" msgstr "j F, Y" -#: src/Module/Profile/Profile.php:179 +#: src/Module/Profile/Profile.php:167 msgid "j F" msgstr "j F" -#: src/Module/Profile/Profile.php:187 src/Util/Temporal.php:168 +#: src/Module/Profile/Profile.php:175 src/Util/Temporal.php:154 msgid "Birthday:" msgstr "お誕生日:" -#: src/Module/Profile/Profile.php:190 -#: src/Module/Settings/Profile/Index.php:291 src/Util/Temporal.php:170 +#: src/Module/Profile/Profile.php:178 +#: src/Module/Settings/Profile/Index.php:282 src/Util/Temporal.php:156 msgid "Age: " msgstr "年齢:" -#: src/Module/Profile/Profile.php:190 -#: src/Module/Settings/Profile/Index.php:291 src/Util/Temporal.php:170 +#: src/Module/Profile/Profile.php:178 +#: src/Module/Settings/Profile/Index.php:282 src/Util/Temporal.php:156 #, php-format msgid "%d year old" msgid_plural "%d years old" msgstr[0] "%d歳" -#: src/Module/Profile/Profile.php:195 -#: src/Module/Settings/Profile/Index.php:284 +#: src/Module/Profile/Profile.php:183 +#: src/Module/Settings/Profile/Index.php:275 msgid "Description:" msgstr "説明:" -#: src/Module/Profile/Profile.php:261 +#: src/Module/Profile/Profile.php:249 msgid "Groups:" msgstr "" -#: src/Module/Profile/Profile.php:273 +#: src/Module/Profile/Profile.php:261 msgid "View profile as:" msgstr "" -#: src/Module/Profile/Profile.php:290 +#: src/Module/Profile/Profile.php:278 msgid "View as" msgstr "" -#: src/Module/Profile/RemoteFollow.php:82 +#: src/Module/Profile/RemoteFollow.php:68 msgid "Profile unavailable." msgstr "プロフィールを利用できません。" -#: src/Module/Profile/RemoteFollow.php:88 +#: src/Module/Profile/RemoteFollow.php:74 msgid "Invalid locator" msgstr "無効なロケーター" -#: src/Module/Profile/RemoteFollow.php:95 +#: src/Module/Profile/RemoteFollow.php:81 msgid "The provided profile link doesn't seem to be valid" msgstr "" -#: src/Module/Profile/RemoteFollow.php:100 +#: src/Module/Profile/RemoteFollow.php:86 msgid "" "Remote subscription can't be done for your network. Please subscribe " "directly on your system." msgstr "あなたのネットワークではリモート購読ができません。あなたのシステム上で直接購読してください。" -#: src/Module/Profile/RemoteFollow.php:128 +#: src/Module/Profile/RemoteFollow.php:114 msgid "Friend/Connection Request" msgstr "友達/接続リクエスト" -#: src/Module/Profile/RemoteFollow.php:129 +#: src/Module/Profile/RemoteFollow.php:115 #, php-format msgid "" "Enter your Webfinger address (user@domain.tld) or profile URL here. If this " @@ -9206,579 +9200,579 @@ msgid "" " or %s directly on your system." msgstr "" -#: src/Module/Profile/RemoteFollow.php:130 +#: src/Module/Profile/RemoteFollow.php:116 #, php-format msgid "" "If you are not yet a member of the free social web, follow " "this link to find a public Friendica node and join us today." msgstr "まだ'自由なソーシャルウェブ'のメンバーでない場合は、このリンクをクリックして、Friendicaの公開サイトを見つけて、今すぐ参加してください。" -#: src/Module/Profile/RemoteFollow.php:131 +#: src/Module/Profile/RemoteFollow.php:117 msgid "Your Webfinger address or profile URL:" msgstr "" -#: src/Module/Profile/Restricted.php:59 +#: src/Module/Profile/Restricted.php:45 msgid "Restricted profile" msgstr "" -#: src/Module/Profile/Restricted.php:60 +#: src/Module/Profile/Restricted.php:46 msgid "" "This profile has been restricted which prevents access to their public " "content from anonymous visitors." msgstr "" -#: src/Module/Profile/Schedule.php:83 +#: src/Module/Profile/Schedule.php:69 msgid "Scheduled" msgstr "" -#: src/Module/Profile/Schedule.php:84 +#: src/Module/Profile/Schedule.php:70 msgid "Content" msgstr "" -#: src/Module/Profile/Schedule.php:85 +#: src/Module/Profile/Schedule.php:71 msgid "Remove post" msgstr "" -#: src/Module/Register.php:85 +#: src/Module/Register.php:77 msgid "Only parent users can create additional accounts." msgstr "追加アカウントを作成できるのは親ユーザのみです。" -#: src/Module/Register.php:100 src/Module/User/Import.php:112 +#: src/Module/Register.php:92 src/Module/User/Import.php:98 msgid "" "This site has exceeded the number of allowed daily account registrations. " "Please try again tomorrow." msgstr "このサイトは、1日あたりに許可されているアカウント登録数の上限を超えています。 明日再度お試しください。" -#: src/Module/Register.php:117 +#: src/Module/Register.php:109 msgid "" "You may (optionally) fill in this form via OpenID by supplying your OpenID " "and clicking \"Register\"." msgstr "(オプションで)OpenIDを提供し、「登録」をクリックして、OpenIDを介してこのフォームに入力できます。" -#: src/Module/Register.php:118 +#: src/Module/Register.php:110 msgid "" "If you are not familiar with OpenID, please leave that field blank and fill " "in the rest of the items." msgstr "OpenIDに慣れていない場合は、そのフィールドを空白のままにして、残りの項目を入力してください。" -#: src/Module/Register.php:119 +#: src/Module/Register.php:111 msgid "Your OpenID (optional): " msgstr "OpenID(オプション):" -#: src/Module/Register.php:128 +#: src/Module/Register.php:120 msgid "Include your profile in member directory?" msgstr "メンバーディレクトリにプロフィールを含めますか?" -#: src/Module/Register.php:149 +#: src/Module/Register.php:141 msgid "Note for the admin" msgstr "管理者への注意" -#: src/Module/Register.php:149 +#: src/Module/Register.php:141 msgid "Leave a message for the admin, why you want to join this node" msgstr "このノードに参加する理由、管理者へのメッセージを残す" -#: src/Module/Register.php:150 +#: src/Module/Register.php:142 msgid "Membership on this site is by invitation only." msgstr "このサイトのメンバーシップは招待のみです。" -#: src/Module/Register.php:151 +#: src/Module/Register.php:143 msgid "Your invitation code: " msgstr "招待コード:" -#: src/Module/Register.php:159 +#: src/Module/Register.php:151 msgid "Your Display Name (as you would like it to be displayed on this system" msgstr "" -#: src/Module/Register.php:160 +#: src/Module/Register.php:152 msgid "" "Your Email Address: (Initial information will be send there, so this has to " "be an existing address.)" msgstr "あなたのメールアドレス:(初回の情報はそこに送信されますので、これは既存のアドレスでなければなりません。)" -#: src/Module/Register.php:161 +#: src/Module/Register.php:153 msgid "Please repeat your e-mail address:" msgstr "メールアドレスを再入力してください。" -#: src/Module/Register.php:163 src/Module/Security/PasswordTooLong.php:100 -#: src/Module/Settings/Account.php:564 +#: src/Module/Register.php:155 src/Module/Security/PasswordTooLong.php:86 +#: src/Module/Settings/Account.php:555 msgid "New Password:" msgstr "新しいパスワード:" -#: src/Module/Register.php:163 +#: src/Module/Register.php:155 msgid "Leave empty for an auto generated password." msgstr "自動生成されたパスワードの場合は空のままにします。" -#: src/Module/Register.php:164 src/Module/Security/PasswordTooLong.php:101 -#: src/Module/Settings/Account.php:565 +#: src/Module/Register.php:156 src/Module/Security/PasswordTooLong.php:87 +#: src/Module/Settings/Account.php:556 msgid "Confirm:" msgstr "確認:" -#: src/Module/Register.php:165 +#: src/Module/Register.php:157 #, php-format msgid "" "Choose a profile nickname. This must begin with a text character. Your " "profile address on this site will then be \"nickname@%s\"." msgstr "プロフィールのニックネームを選択します。これはテキスト文字で始まる必要があります。このサイトのプロフィールアドレスは\" nickname@%s \"になります。" -#: src/Module/Register.php:166 +#: src/Module/Register.php:158 msgid "Choose a nickname: " msgstr "ニックネームを選択:" -#: src/Module/Register.php:174 src/Module/User/Import.php:118 +#: src/Module/Register.php:166 src/Module/User/Import.php:104 msgid "Import" msgstr "インポート" -#: src/Module/Register.php:175 +#: src/Module/Register.php:167 msgid "Import your profile to this friendica instance" msgstr "このfriendicaインスタンスにプロフィールをインポートします" -#: src/Module/Register.php:182 +#: src/Module/Register.php:174 msgid "Note: This node explicitly contains adult content" msgstr "注:このノードには、露骨なアダルトコンテンツが含まれています" -#: src/Module/Register.php:184 src/Module/Settings/Delegation.php:181 +#: src/Module/Register.php:176 src/Module/Settings/Delegation.php:167 msgid "Parent Password:" msgstr "親パスワード:" -#: src/Module/Register.php:184 src/Module/Settings/Delegation.php:181 +#: src/Module/Register.php:176 src/Module/Settings/Delegation.php:167 msgid "" "Please enter the password of the parent account to legitimize your request." msgstr "リクエストの確認のため、親アカウントのパスワードを入力してください。" -#: src/Module/Register.php:213 +#: src/Module/Register.php:205 msgid "Password doesn't match." msgstr "パスワードが一致しません。" -#: src/Module/Register.php:219 +#: src/Module/Register.php:211 msgid "Please enter your password." msgstr "パスワードを入力してください。" -#: src/Module/Register.php:261 +#: src/Module/Register.php:253 msgid "You have entered too much information." msgstr "入力件数が多すぎます" -#: src/Module/Register.php:284 +#: src/Module/Register.php:276 msgid "Please enter the identical mail address in the second field." msgstr "2番目の入力欄に同じメールアドレスを再入力してください。" -#: src/Module/Register.php:292 +#: src/Module/Register.php:284 msgid "Nickname cannot start with a digit." msgstr "" -#: src/Module/Register.php:294 +#: src/Module/Register.php:286 msgid "Nickname can only contain US-ASCII characters." msgstr "" -#: src/Module/Register.php:323 +#: src/Module/Register.php:315 msgid "The additional account was created." msgstr "追加アカウントが作成されました。" -#: src/Module/Register.php:348 +#: src/Module/Register.php:340 msgid "" "Registration successful. Please check your email for further instructions." msgstr "登録に成功。詳細については、メールを確認してください。" -#: src/Module/Register.php:355 +#: src/Module/Register.php:347 #, php-format msgid "" "Failed to send email message. Here your accout details:
login: %s
" "password: %s

You can change your password after login." msgstr "メールを送信できませんでした。ここでアカウントの詳細:
ログイン: %s
パスワード: %s

ログイン後にパスワードを変更できます。" -#: src/Module/Register.php:361 +#: src/Module/Register.php:353 msgid "Registration successful." msgstr "登録に成功。" -#: src/Module/Register.php:370 src/Module/Register.php:377 -#: src/Module/Register.php:387 +#: src/Module/Register.php:362 src/Module/Register.php:369 +#: src/Module/Register.php:379 msgid "Your registration can not be processed." msgstr "登録を処理できません。" -#: src/Module/Register.php:376 +#: src/Module/Register.php:368 msgid "You have to leave a request note for the admin." msgstr "管理者へリクエストする内容を書く必要があります。" -#: src/Module/Register.php:386 +#: src/Module/Register.php:378 msgid "An internal error occured." msgstr "" -#: src/Module/Register.php:408 +#: src/Module/Register.php:400 msgid "Your registration is pending approval by the site owner." msgstr "登録はサイト所有者による承認待ちです。" -#: src/Module/Search/Acl.php:73 +#: src/Module/Search/Acl.php:64 msgid "You must be logged in to use this module." msgstr "このモジュールを使用するにはログインする必要があります" -#: src/Module/Search/Index.php:69 +#: src/Module/Search/Index.php:55 msgid "Only logged in users are permitted to perform a search." msgstr "ログインしたユーザーのみが検索を実行できます。" -#: src/Module/Search/Index.php:89 +#: src/Module/Search/Index.php:75 msgid "Only one search per minute is permitted for not logged in users." msgstr "ログインしていないユーザーには、1分間に1つの検索のみが許可されます。" -#: src/Module/Search/Index.php:205 +#: src/Module/Search/Index.php:191 #, php-format msgid "Items tagged with: %s" msgstr "タグ付けされた項目: %s" -#: src/Module/Search/Saved.php:59 +#: src/Module/Search/Saved.php:49 msgid "Search term was not saved." msgstr "" -#: src/Module/Search/Saved.php:62 +#: src/Module/Search/Saved.php:52 msgid "Search term already saved." msgstr "すでに保存された検索キーワードです。" -#: src/Module/Search/Saved.php:68 +#: src/Module/Search/Saved.php:58 msgid "Search term was not removed." msgstr "" -#: src/Module/Security/Login.php:123 +#: src/Module/Security/Login.php:113 msgid "Create a New Account" msgstr "新しいアカウントを作成する" -#: src/Module/Security/Login.php:142 +#: src/Module/Security/Login.php:132 msgid "Your OpenID: " msgstr "あなたの OpenID: " -#: src/Module/Security/Login.php:145 +#: src/Module/Security/Login.php:135 msgid "" "Please enter your username and password to add the OpenID to your existing " "account." msgstr "ユーザー名とパスワードを入力して、既存のアカウントにOpenIDを追加してください。" -#: src/Module/Security/Login.php:147 +#: src/Module/Security/Login.php:137 msgid "Or login using OpenID: " msgstr "または、OpenIDを使用してログインします。" -#: src/Module/Security/Login.php:161 +#: src/Module/Security/Login.php:151 msgid "Password: " msgstr "パスワード:" -#: src/Module/Security/Login.php:162 +#: src/Module/Security/Login.php:152 msgid "Remember me" msgstr "次から自動的にログイン" -#: src/Module/Security/Login.php:171 +#: src/Module/Security/Login.php:161 msgid "Forgot your password?" msgstr "パスワードをお忘れですか?" -#: src/Module/Security/Login.php:174 +#: src/Module/Security/Login.php:164 msgid "Website Terms of Service" msgstr "ウェブサイト利用規約" -#: src/Module/Security/Login.php:175 +#: src/Module/Security/Login.php:165 msgid "terms of service" msgstr "利用規約" -#: src/Module/Security/Login.php:177 +#: src/Module/Security/Login.php:167 msgid "Website Privacy Policy" msgstr "ウェブサイトのプライバシーポリシー" -#: src/Module/Security/Login.php:178 +#: src/Module/Security/Login.php:168 msgid "privacy policy" msgstr "個人情報保護方針" -#: src/Module/Security/Logout.php:84 -#: src/Module/Security/TwoFactor/SignOut.php:78 -#: src/Module/Security/TwoFactor/SignOut.php:86 -#: src/Module/Security/TwoFactor/SignOut.php:108 -#: src/Module/Security/TwoFactor/SignOut.php:115 +#: src/Module/Security/Logout.php:75 +#: src/Module/Security/TwoFactor/SignOut.php:64 +#: src/Module/Security/TwoFactor/SignOut.php:72 +#: src/Module/Security/TwoFactor/SignOut.php:94 +#: src/Module/Security/TwoFactor/SignOut.php:101 msgid "Logged out." msgstr "ログアウトしました。" -#: src/Module/Security/OpenID.php:54 +#: src/Module/Security/OpenID.php:40 msgid "OpenID protocol error. No ID returned" msgstr "OpenID プロトコルエラー。返答にてIDが返されませんでした。" -#: src/Module/Security/OpenID.php:90 +#: src/Module/Security/OpenID.php:76 msgid "" "Account not found. Please login to your existing account to add the OpenID " "to it." msgstr "アカウントが見つかりませんでした。 既存のアカウントにログインして、OpenIDを追加してください。" -#: src/Module/Security/OpenID.php:92 +#: src/Module/Security/OpenID.php:78 msgid "" "Account not found. Please register a new account or login to your existing " "account to add the OpenID to it." msgstr "アカウントが見つかりませんでした。 OpenIDを追加するには、新しいアカウントを登録するか、既存のアカウントにログインしてください。" -#: src/Module/Security/PasswordTooLong.php:57 -#: src/Module/Settings/Account.php:67 +#: src/Module/Security/PasswordTooLong.php:43 +#: src/Module/Settings/Account.php:53 msgid "Passwords do not match." msgstr "パスワードが一致していません。" -#: src/Module/Security/PasswordTooLong.php:64 +#: src/Module/Security/PasswordTooLong.php:50 msgid "Password does not need changing." msgstr "" -#: src/Module/Security/PasswordTooLong.php:77 -#: src/Module/Settings/Account.php:81 +#: src/Module/Security/PasswordTooLong.php:63 +#: src/Module/Settings/Account.php:67 msgid "Password unchanged." msgstr "パスワードは変更されていません。" -#: src/Module/Security/PasswordTooLong.php:91 +#: src/Module/Security/PasswordTooLong.php:77 msgid "Password Too Long" msgstr "" -#: src/Module/Security/PasswordTooLong.php:92 +#: src/Module/Security/PasswordTooLong.php:78 msgid "" "Since version 2022.09, we've realized that any password longer than 72 " "characters is truncated during hashing. To prevent any confusion about this " "behavior, please update your password to be fewer or equal to 72 characters." msgstr "" -#: src/Module/Security/PasswordTooLong.php:93 +#: src/Module/Security/PasswordTooLong.php:79 msgid "Update Password" msgstr "" -#: src/Module/Security/PasswordTooLong.php:99 -#: src/Module/Settings/Account.php:566 +#: src/Module/Security/PasswordTooLong.php:85 +#: src/Module/Settings/Account.php:557 msgid "Current Password:" msgstr "現在のパスワード:" -#: src/Module/Security/PasswordTooLong.php:99 -#: src/Module/Settings/Account.php:566 +#: src/Module/Security/PasswordTooLong.php:85 +#: src/Module/Settings/Account.php:557 msgid "Your current password to confirm the changes" msgstr "変更を確認するための現在のパスワード" -#: src/Module/Security/PasswordTooLong.php:100 -#: src/Module/Settings/Account.php:550 +#: src/Module/Security/PasswordTooLong.php:86 +#: src/Module/Settings/Account.php:541 msgid "" "Allowed characters are a-z, A-Z, 0-9 and special characters except white " "spaces and accentuated letters." msgstr "" -#: src/Module/Security/PasswordTooLong.php:100 -#: src/Module/Settings/Account.php:551 +#: src/Module/Security/PasswordTooLong.php:86 +#: src/Module/Settings/Account.php:542 msgid "Password length is limited to 72 characters." msgstr "" -#: src/Module/Security/TwoFactor/Recovery.php:74 +#: src/Module/Security/TwoFactor/Recovery.php:60 #, php-format msgid "Remaining recovery codes: %d" msgstr "残りの復旧コード: %d" -#: src/Module/Security/TwoFactor/Recovery.php:80 -#: src/Module/Security/TwoFactor/Verify.php:77 -#: src/Module/Settings/TwoFactor/Verify.php:98 +#: src/Module/Security/TwoFactor/Recovery.php:66 +#: src/Module/Security/TwoFactor/Verify.php:63 +#: src/Module/Settings/TwoFactor/Verify.php:84 msgid "Invalid code, please retry." msgstr "無効なコードです。再試行してください。" -#: src/Module/Security/TwoFactor/Recovery.php:99 +#: src/Module/Security/TwoFactor/Recovery.php:85 msgid "Two-factor recovery" msgstr "二要素回復" -#: src/Module/Security/TwoFactor/Recovery.php:100 +#: src/Module/Security/TwoFactor/Recovery.php:86 msgid "" "

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

" msgstr "

モバイルデバイスにアクセスできなくなった場合に備えて、ワンタイムリカバリコードのいずれかを入力できます。

" -#: src/Module/Security/TwoFactor/Recovery.php:101 +#: src/Module/Security/TwoFactor/Recovery.php:87 #, php-format msgid "Don’t have your phone? Enter a two-factor recovery code" msgstr "お使いの携帯電話を持ってませんか? 二要素認証の回復コードを入力" -#: src/Module/Security/TwoFactor/Recovery.php:102 +#: src/Module/Security/TwoFactor/Recovery.php:88 msgid "Please enter a recovery code" msgstr "復旧コードを入力してください" -#: src/Module/Security/TwoFactor/Recovery.php:103 +#: src/Module/Security/TwoFactor/Recovery.php:89 msgid "Submit recovery code and complete login" msgstr "復旧コードを送信してログインを完了する" -#: src/Module/Security/TwoFactor/SignOut.php:122 +#: src/Module/Security/TwoFactor/SignOut.php:108 msgid "Sign out of this browser?" msgstr "" -#: src/Module/Security/TwoFactor/SignOut.php:123 +#: src/Module/Security/TwoFactor/SignOut.php:109 msgid "" "

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

" msgstr "" -#: src/Module/Security/TwoFactor/SignOut.php:124 +#: src/Module/Security/TwoFactor/SignOut.php:110 msgid "Sign out" msgstr "" -#: src/Module/Security/TwoFactor/SignOut.php:126 +#: src/Module/Security/TwoFactor/SignOut.php:112 msgid "Trust and sign out" msgstr "" -#: src/Module/Security/TwoFactor/Trust.php:96 +#: src/Module/Security/TwoFactor/Trust.php:82 msgid "Couldn't save browser to Cookie." msgstr "" -#: src/Module/Security/TwoFactor/Trust.php:141 +#: src/Module/Security/TwoFactor/Trust.php:127 msgid "Trust this browser?" msgstr "" -#: src/Module/Security/TwoFactor/Trust.php:142 +#: src/Module/Security/TwoFactor/Trust.php:128 msgid "" "

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

" msgstr "" -#: src/Module/Security/TwoFactor/Trust.php:143 +#: src/Module/Security/TwoFactor/Trust.php:129 msgid "Not now" msgstr "" -#: src/Module/Security/TwoFactor/Trust.php:144 +#: src/Module/Security/TwoFactor/Trust.php:130 msgid "Don't trust" msgstr "" -#: src/Module/Security/TwoFactor/Trust.php:145 +#: src/Module/Security/TwoFactor/Trust.php:131 msgid "Trust" msgstr "" -#: src/Module/Security/TwoFactor/Verify.php:97 +#: src/Module/Security/TwoFactor/Verify.php:83 msgid "" "

Open the two-factor authentication app on your device to get an " "authentication code and verify your identity.

" msgstr "

デバイスで二要素認証アプリを開き、認証コードを取得して本人確認を行います。

" -#: src/Module/Security/TwoFactor/Verify.php:100 +#: src/Module/Security/TwoFactor/Verify.php:86 #, php-format msgid "" "If you do not have access to your authentication code you can use a two-factor recovery code." msgstr "" -#: src/Module/Security/TwoFactor/Verify.php:101 -#: src/Module/Settings/TwoFactor/Verify.php:158 +#: src/Module/Security/TwoFactor/Verify.php:87 +#: src/Module/Settings/TwoFactor/Verify.php:144 msgid "Please enter a code from your authentication app" msgstr "認証アプリからコードを入力してください" -#: src/Module/Security/TwoFactor/Verify.php:102 +#: src/Module/Security/TwoFactor/Verify.php:88 msgid "Verify code and complete login" msgstr "コードを確認してログインを完了する" -#: src/Module/Settings/Account.php:96 +#: src/Module/Settings/Account.php:82 msgid "Please use a shorter name." msgstr "短い名前を使用してください。" -#: src/Module/Settings/Account.php:99 +#: src/Module/Settings/Account.php:85 msgid "Name too short." msgstr "名前が短すぎます。" -#: src/Module/Settings/Account.php:108 +#: src/Module/Settings/Account.php:94 msgid "Wrong Password." msgstr "パスワードが間違っています。" -#: src/Module/Settings/Account.php:113 +#: src/Module/Settings/Account.php:99 msgid "Invalid email." msgstr "無効なメール。" -#: src/Module/Settings/Account.php:117 +#: src/Module/Settings/Account.php:103 msgid "Cannot change to that email." msgstr "そのメールに変更できません。" -#: src/Module/Settings/Account.php:146 src/Module/Settings/Account.php:195 -#: src/Module/Settings/Account.php:216 src/Module/Settings/Account.php:300 -#: src/Module/Settings/Account.php:329 +#: src/Module/Settings/Account.php:132 src/Module/Settings/Account.php:181 +#: src/Module/Settings/Account.php:202 src/Module/Settings/Account.php:286 +#: src/Module/Settings/Account.php:315 msgid "Settings were not updated." msgstr "設定が更新されませんでした。" -#: src/Module/Settings/Account.php:342 +#: src/Module/Settings/Account.php:333 msgid "Contact CSV file upload error" msgstr "アップロードエラー:コンタクトCSVファイル" -#: src/Module/Settings/Account.php:361 +#: src/Module/Settings/Account.php:352 msgid "Importing Contacts done" msgstr "コンタクトのインポートが完了しました" -#: src/Module/Settings/Account.php:374 +#: src/Module/Settings/Account.php:365 msgid "Relocate message has been send to your contacts" msgstr "再配置メッセージがコンタクトに送信されました" -#: src/Module/Settings/Account.php:391 +#: src/Module/Settings/Account.php:382 msgid "Unable to find your profile. Please contact your admin." msgstr "プロフィールが見つかりません。管理者に連絡してください。" -#: src/Module/Settings/Account.php:433 +#: src/Module/Settings/Account.php:424 msgid "" "Account for a service that automatically shares content based on user " "defined channels." msgstr "" -#: src/Module/Settings/Account.php:443 +#: src/Module/Settings/Account.php:434 msgid "Personal Page Subtypes" msgstr "個人ページのサブタイプ" -#: src/Module/Settings/Account.php:444 +#: src/Module/Settings/Account.php:435 msgid "Community Group Subtypes" msgstr "" -#: src/Module/Settings/Account.php:455 +#: src/Module/Settings/Account.php:446 msgid "Account for a personal profile." msgstr "個人プロフィールを説明します。" -#: src/Module/Settings/Account.php:462 +#: src/Module/Settings/Account.php:453 msgid "" "Account for an organisation that automatically approves contact requests as " "\"Followers\"." msgstr "コンタクトリクエストを「フォロワー」として自動的に承認します。組織に適したアカウントです。" -#: src/Module/Settings/Account.php:469 +#: src/Module/Settings/Account.php:460 msgid "" "Account for a news reflector that automatically approves contact requests as" " \"Followers\"." msgstr "コンタクトのリクエストを「フォロワー」として自動的に承認します。ニュース再配信に適したアカウントです。" -#: src/Module/Settings/Account.php:476 +#: src/Module/Settings/Account.php:467 msgid "Account for community discussions." msgstr "コミュニティディスカッションのアカウント。" -#: src/Module/Settings/Account.php:484 +#: src/Module/Settings/Account.php:475 msgid "" "Account for a regular personal profile that requires manual approval of " "\"Friends\" and \"Followers\"." msgstr "\"Friends \"および\"Followers \"の手動承認を必要とする通常の個人プロフィールのアカウント。" -#: src/Module/Settings/Account.php:491 +#: src/Module/Settings/Account.php:482 msgid "" "Account for a public profile that automatically approves contact requests as" " \"Followers\"." msgstr "コンタクトリクエストを「フォロワー」として自動的に承認します。一般公開プロフィールのアカウントです。" -#: src/Module/Settings/Account.php:498 +#: src/Module/Settings/Account.php:489 msgid "Automatically approves all contact requests." msgstr "すべてのコンタクトリクエストを自動的に承認します。" -#: src/Module/Settings/Account.php:505 +#: src/Module/Settings/Account.php:496 msgid "Contact requests have to be manually approved." msgstr "" -#: src/Module/Settings/Account.php:512 +#: src/Module/Settings/Account.php:503 msgid "" "Account for a popular profile that automatically approves contact requests " "as \"Friends\"." msgstr "コンタクトのリクエストを「フレンド」として自動的に承認します。知名度のあるプロフィールに適したアカウントです。" -#: src/Module/Settings/Account.php:517 +#: src/Module/Settings/Account.php:508 msgid "Private Group [Experimental]" msgstr "" -#: src/Module/Settings/Account.php:519 +#: src/Module/Settings/Account.php:510 msgid "Requires manual approval of contact requests." msgstr "コンタクトリクエストの手動承認が必要です。" -#: src/Module/Settings/Account.php:528 +#: src/Module/Settings/Account.php:519 msgid "OpenID:" msgstr "OpenID:" -#: src/Module/Settings/Account.php:528 +#: src/Module/Settings/Account.php:519 msgid "(Optional) Allow this OpenID to login to this account." msgstr "(オプション)このOpenIDがこのアカウントにログインできるようにします。" -#: src/Module/Settings/Account.php:536 +#: src/Module/Settings/Account.php:527 msgid "Publish your profile in your local site directory?" msgstr "ローカルサイトディレクトリにプロフィールを公開しますか?" -#: src/Module/Settings/Account.php:536 +#: src/Module/Settings/Account.php:527 #, php-format msgid "" "Your profile will be published in this node's local " @@ -9786,94 +9780,94 @@ msgid "" " system settings." msgstr "プロフィールはこのノードのローカルディレクトリで公開されます。システム設定によっては、プロフィールの詳細が公開される場合があります。" -#: src/Module/Settings/Account.php:542 +#: src/Module/Settings/Account.php:533 #, php-format msgid "" "Your profile will also be published in the global friendica directories " "(e.g. %s)." msgstr "あなたのプロフィールはグローバルなFriendicaディレクトリに公開されます(例: %s )。" -#: src/Module/Settings/Account.php:555 +#: src/Module/Settings/Account.php:546 msgid "Account Settings" msgstr "アカウント設定" -#: src/Module/Settings/Account.php:556 +#: src/Module/Settings/Account.php:547 #, php-format msgid "Your Identity Address is '%s' or '%s'." msgstr "IDアドレスは ' %s ' または ' %s 'です。" -#: src/Module/Settings/Account.php:563 +#: src/Module/Settings/Account.php:554 msgid "Password Settings" msgstr "パスワード設定" -#: src/Module/Settings/Account.php:565 +#: src/Module/Settings/Account.php:556 msgid "Leave password fields blank unless changing" msgstr "変更しない限り、パスワードフィールドは空白のままにしてください" -#: src/Module/Settings/Account.php:567 +#: src/Module/Settings/Account.php:558 msgid "Password:" msgstr "パスワード:" -#: src/Module/Settings/Account.php:567 +#: src/Module/Settings/Account.php:558 msgid "Your current password to confirm the changes of the email address" msgstr "変更を確認するための電子メールアドレスの現在のパスワード" -#: src/Module/Settings/Account.php:570 +#: src/Module/Settings/Account.php:561 msgid "Delete OpenID URL" msgstr "OpenID URLを削除" -#: src/Module/Settings/Account.php:572 +#: src/Module/Settings/Account.php:563 msgid "Basic Settings" msgstr "基本設定" -#: src/Module/Settings/Account.php:573 -#: src/Module/Settings/Profile/Index.php:283 +#: src/Module/Settings/Account.php:564 +#: src/Module/Settings/Profile/Index.php:274 msgid "Display name:" msgstr "表示名:" -#: src/Module/Settings/Account.php:574 +#: src/Module/Settings/Account.php:565 msgid "Email Address:" msgstr "電子メールアドレス:" -#: src/Module/Settings/Account.php:575 +#: src/Module/Settings/Account.php:566 msgid "Your Timezone:" msgstr "あなたのタイムゾーン:" -#: src/Module/Settings/Account.php:576 +#: src/Module/Settings/Account.php:567 msgid "Your Language:" msgstr "あなたの言語:" -#: src/Module/Settings/Account.php:576 +#: src/Module/Settings/Account.php:567 msgid "" "Set the language we use to show you friendica interface and to send you " "emails" msgstr "friendicaインターフェイスを表示し、メールを送信するために使用する言語を設定します" -#: src/Module/Settings/Account.php:577 +#: src/Module/Settings/Account.php:568 msgid "Default Post Location:" msgstr "デフォルトの投稿場所:" -#: src/Module/Settings/Account.php:578 +#: src/Module/Settings/Account.php:569 msgid "Use Browser Location:" msgstr "ブラウザのロケーションを使用:" -#: src/Module/Settings/Account.php:580 +#: src/Module/Settings/Account.php:571 msgid "Security and Privacy Settings" msgstr "セキュリティとプライバシーの設定" -#: src/Module/Settings/Account.php:582 +#: src/Module/Settings/Account.php:573 msgid "Maximum Friend Requests/Day:" msgstr "1日あたりの友達リクエスト上限:" -#: src/Module/Settings/Account.php:582 +#: src/Module/Settings/Account.php:573 msgid "(to prevent spam abuse)" msgstr "(スパムの悪用を防ぐため)" -#: src/Module/Settings/Account.php:584 +#: src/Module/Settings/Account.php:575 msgid "Allow your profile to be searchable globally?" msgstr "自分のプロフィールを世界中で検索できるようにしますか?" -#: src/Module/Settings/Account.php:584 +#: src/Module/Settings/Account.php:575 msgid "" "Activate this setting if you want others to easily find and follow you. Your" " profile will be searchable on remote systems. This setting also determines " @@ -9881,43 +9875,43 @@ msgid "" "indexed or not." msgstr "他の人があなたを簡単に見つけてフォローできるようにしたい場合は、この設定を有効にしてください。あなたのプロフィールはリモートシステムで検索可能です。この設定は、Friendicaが検索エンジンにあなたのプロフィールをインデックス化するかどうかも決定します。" -#: src/Module/Settings/Account.php:585 +#: src/Module/Settings/Account.php:576 msgid "Hide your contact/friend list from viewers of your profile?" msgstr "プロフィールの閲覧者からコンタクト/友人リストを非表示にしますか?" -#: src/Module/Settings/Account.php:585 +#: src/Module/Settings/Account.php:576 msgid "" "A list of your contacts is displayed on your profile page. Activate this " "option to disable the display of your contact list." msgstr "自分のプロフィールページには、コンタクトリストが表示されます。このオプションを有効にすると、コンタクトリストの表示が無効になります。" -#: src/Module/Settings/Account.php:586 +#: src/Module/Settings/Account.php:577 msgid "Hide your public content from anonymous viewers" msgstr "" -#: src/Module/Settings/Account.php:586 +#: src/Module/Settings/Account.php:577 msgid "" "Anonymous visitors will only see your basic profile details. Your public " "posts and replies will still be freely accessible on the remote servers of " "your followers and through relays." msgstr "" -#: src/Module/Settings/Account.php:587 +#: src/Module/Settings/Account.php:578 msgid "Make public posts unlisted" msgstr "公開投稿を非表示にする" -#: src/Module/Settings/Account.php:587 +#: src/Module/Settings/Account.php:578 msgid "" "Your public posts will not appear on the community pages or in search " "results, nor be sent to relay servers. However they can still appear on " "public feeds on remote servers." msgstr "公開された投稿は、コミュニティページや検索結果には表示されず、中継サーバーにも送信されません。ただし、リモートサーバーの公開フィードには表示されます。" -#: src/Module/Settings/Account.php:588 +#: src/Module/Settings/Account.php:579 msgid "Make all posted pictures accessible" msgstr "投稿した写真は全てアクセス可能にする" -#: src/Module/Settings/Account.php:588 +#: src/Module/Settings/Account.php:579 msgid "" "This option makes every posted picture accessible via the direct link. This " "is a workaround for the problem that most other networks can't handle " @@ -9925,352 +9919,352 @@ msgid "" "public on your photo albums though." msgstr "このオプションは、投稿したすべての写真をダイレクトリンクでアクセスできるようにします。これは、他の多くのネットワークが写真のパーミッションを処理できないという問題を回避するためのものです。ただし、公開していない写真はフォトアルバムでは一般に公開されません。" -#: src/Module/Settings/Account.php:589 +#: src/Module/Settings/Account.php:580 msgid "Allow friends to post to your profile page?" msgstr "友人があなたのプロフィールページに投稿することを許可しますか?" -#: src/Module/Settings/Account.php:589 +#: src/Module/Settings/Account.php:580 msgid "" "Your contacts may write posts on your profile wall. These posts will be " "distributed to your contacts" msgstr "コンタクトは、プロフィールウォールに投稿を書くことができます。これらの投稿はコンタクトに配信されます" -#: src/Module/Settings/Account.php:590 +#: src/Module/Settings/Account.php:581 msgid "Allow friends to tag your posts?" msgstr "友達があなたの投稿にタグを付けることを許可しますか?" -#: src/Module/Settings/Account.php:590 +#: src/Module/Settings/Account.php:581 msgid "Your contacts can add additional tags to your posts." msgstr "コンタクトは、投稿にタグを追加できます。" -#: src/Module/Settings/Account.php:591 +#: src/Module/Settings/Account.php:582 msgid "Default privacy circle for new contacts" msgstr "" -#: src/Module/Settings/Account.php:592 +#: src/Module/Settings/Account.php:583 msgid "Default privacy circle for new group contacts" msgstr "" -#: src/Module/Settings/Account.php:593 +#: src/Module/Settings/Account.php:584 msgid "Default Post Permissions" msgstr "投稿の既定の権限" -#: src/Module/Settings/Account.php:597 +#: src/Module/Settings/Account.php:588 msgid "Expiration settings" msgstr "有効期限設定" -#: src/Module/Settings/Account.php:598 +#: src/Module/Settings/Account.php:589 msgid "Automatically expire posts after this many days:" msgstr "この数日後に投稿を自動的に期限切れにします:" -#: src/Module/Settings/Account.php:598 +#: src/Module/Settings/Account.php:589 msgid "If empty, posts will not expire. Expired posts will be deleted" msgstr "空の場合、投稿は期限切れになりません。期限切れの投稿は削除されます" -#: src/Module/Settings/Account.php:599 +#: src/Module/Settings/Account.php:590 msgid "Expire posts" msgstr "投稿の有効期限" -#: src/Module/Settings/Account.php:599 +#: src/Module/Settings/Account.php:590 msgid "When activated, posts and comments will be expired." msgstr "有効にすると、投稿とコメントは期限切れになるでしょう。" -#: src/Module/Settings/Account.php:600 +#: src/Module/Settings/Account.php:591 msgid "Expire personal notes" msgstr "個人メモの有効期限" -#: src/Module/Settings/Account.php:600 +#: src/Module/Settings/Account.php:591 msgid "" "When activated, the personal notes on your profile page will be expired." msgstr "有効にすると、プロフィールページ上の個人メモは期限切れになるでしょう。" -#: src/Module/Settings/Account.php:601 +#: src/Module/Settings/Account.php:592 msgid "Expire starred posts" msgstr "スター付き投稿の有効期限" -#: src/Module/Settings/Account.php:601 +#: src/Module/Settings/Account.php:592 msgid "" "Starring posts keeps them from being expired. That behaviour is overwritten " "by this setting." msgstr "投稿にスターを付けると、投稿が期限切れにならないようにします。動作はこの設定で上書きされます。" -#: src/Module/Settings/Account.php:602 +#: src/Module/Settings/Account.php:593 msgid "Only expire posts by others" msgstr "他のユーザーによる投稿のみを期限切れにする" -#: src/Module/Settings/Account.php:602 +#: src/Module/Settings/Account.php:593 msgid "" "When activated, your own posts never expire. Then the settings above are " "only valid for posts you received." msgstr "有効にすると、自分の投稿は期限切れになりません。そうすると、上記の設定は自分が受け取った投稿に対してのみ有効となります。" -#: src/Module/Settings/Account.php:605 +#: src/Module/Settings/Account.php:596 msgid "Notification Settings" msgstr "通知設定" -#: src/Module/Settings/Account.php:606 +#: src/Module/Settings/Account.php:597 msgid "Send a notification email when:" msgstr "次の場合に通知メールを送信します。" -#: src/Module/Settings/Account.php:607 +#: src/Module/Settings/Account.php:598 msgid "You receive an introduction" msgstr "招待を受けます" -#: src/Module/Settings/Account.php:608 +#: src/Module/Settings/Account.php:599 msgid "Your introductions are confirmed" msgstr "あなたの招待が確認されました" -#: src/Module/Settings/Account.php:609 +#: src/Module/Settings/Account.php:600 msgid "Someone writes on your profile wall" msgstr "誰かがあなたのプロフィールウォールに書き込みます" -#: src/Module/Settings/Account.php:610 +#: src/Module/Settings/Account.php:601 msgid "Someone writes a followup comment" msgstr "誰かがフォローアップコメントを書く" -#: src/Module/Settings/Account.php:611 +#: src/Module/Settings/Account.php:602 msgid "You receive a private message" msgstr "プライベートメッセージを受け取ります" -#: src/Module/Settings/Account.php:612 +#: src/Module/Settings/Account.php:603 msgid "You receive a friend suggestion" msgstr "友達の提案を受け取ります" -#: src/Module/Settings/Account.php:613 +#: src/Module/Settings/Account.php:604 msgid "You are tagged in a post" msgstr "あなたは投稿でタグ付けされています" -#: src/Module/Settings/Account.php:615 +#: src/Module/Settings/Account.php:606 msgid "Create a desktop notification when:" msgstr "" -#: src/Module/Settings/Account.php:616 +#: src/Module/Settings/Account.php:607 msgid "Someone tagged you" msgstr "" -#: src/Module/Settings/Account.php:617 +#: src/Module/Settings/Account.php:608 msgid "Someone directly commented on your post" msgstr "" -#: src/Module/Settings/Account.php:618 +#: src/Module/Settings/Account.php:609 msgid "Someone liked your content" msgstr "" -#: src/Module/Settings/Account.php:618 src/Module/Settings/Account.php:619 +#: src/Module/Settings/Account.php:609 src/Module/Settings/Account.php:610 msgid "Can only be enabled, when the direct comment notification is enabled." msgstr "" -#: src/Module/Settings/Account.php:619 +#: src/Module/Settings/Account.php:610 msgid "Someone shared your content" msgstr "" -#: src/Module/Settings/Account.php:620 +#: src/Module/Settings/Account.php:611 msgid "Someone commented in your thread" msgstr "" -#: src/Module/Settings/Account.php:621 +#: src/Module/Settings/Account.php:612 msgid "Someone commented in a thread where you commented" msgstr "" -#: src/Module/Settings/Account.php:622 +#: src/Module/Settings/Account.php:613 msgid "Someone commented in a thread where you interacted" msgstr "" -#: src/Module/Settings/Account.php:624 +#: src/Module/Settings/Account.php:615 msgid "Activate desktop notifications" msgstr "デスクトップ通知を有効にする" -#: src/Module/Settings/Account.php:624 +#: src/Module/Settings/Account.php:615 msgid "Show desktop popup on new notifications" msgstr "新しい通知にデスクトップポップアップを表示する" -#: src/Module/Settings/Account.php:628 +#: src/Module/Settings/Account.php:619 msgid "Text-only notification emails" msgstr "テキストのみの通知メール" -#: src/Module/Settings/Account.php:630 +#: src/Module/Settings/Account.php:621 msgid "Send text only notification emails, without the html part" msgstr "HTML部分なしで、テキストのみの通知メールを送信します" -#: src/Module/Settings/Account.php:634 +#: src/Module/Settings/Account.php:625 msgid "Show detailled notifications" msgstr "詳細な通知を表示" -#: src/Module/Settings/Account.php:636 +#: src/Module/Settings/Account.php:627 msgid "" "Per default, notifications are condensed to a single notification per item. " "When enabled every notification is displayed." msgstr "デフォルトでは、通知は項目ごとに1つの通知にまとめられます。有効にすると、すべての通知が表示されます。" -#: src/Module/Settings/Account.php:640 +#: src/Module/Settings/Account.php:631 msgid "Show notifications of ignored contacts" msgstr "無視されたコンタクトの通知を表示" -#: src/Module/Settings/Account.php:642 +#: src/Module/Settings/Account.php:633 msgid "" "You don't see posts from ignored contacts. But you still see their comments." " This setting controls if you want to still receive regular notifications " "that are caused by ignored contacts or not." msgstr "無視されたコンタクトからの投稿は表示されません。しかし、相手のコメントは表示されます。この設定では、無視されたコンタクトからの通知を定期的に受け取るかどうかを設定します。" -#: src/Module/Settings/Account.php:645 +#: src/Module/Settings/Account.php:636 msgid "Advanced Account/Page Type Settings" msgstr "アカウント/ページタイプの詳細設定" -#: src/Module/Settings/Account.php:646 +#: src/Module/Settings/Account.php:637 msgid "Change the behaviour of this account for special situations" msgstr "特別な状況でこのアカウントの動作を変更する" -#: src/Module/Settings/Account.php:649 +#: src/Module/Settings/Account.php:640 msgid "Import Contacts" msgstr "コンタクトをインポートする" -#: src/Module/Settings/Account.php:650 +#: src/Module/Settings/Account.php:641 msgid "" "Upload a CSV file that contains the handle of your followed accounts in the " "first column you exported from the old account." msgstr "古いアカウントからエクスポートしたCSVファイルをアップロードします。これは最初の列に、フォローしているアカウントのハンドルを含みます。" -#: src/Module/Settings/Account.php:651 +#: src/Module/Settings/Account.php:642 msgid "Upload File" msgstr "ファイルをアップロード" -#: src/Module/Settings/Account.php:654 +#: src/Module/Settings/Account.php:645 msgid "Relocate" msgstr "再配置" -#: src/Module/Settings/Account.php:655 +#: src/Module/Settings/Account.php:646 msgid "" "If you have moved this profile from another server, and some of your " "contacts don't receive your updates, try pushing this button." msgstr "このプロフィールを別のサーバーから移動し、コンタクトの一部が更新を受信しない場合は、このボタンを押してみてください。" -#: src/Module/Settings/Account.php:656 +#: src/Module/Settings/Account.php:647 msgid "Resend relocate message to contacts" msgstr "再配置メッセージをコンタクトに再送信する" -#: src/Module/Settings/Addons.php:86 +#: src/Module/Settings/Addons.php:72 msgid "Addon Settings" msgstr "アドオン設定" -#: src/Module/Settings/Addons.php:87 +#: src/Module/Settings/Addons.php:73 msgid "No Addon settings configured" msgstr "アドオン設定は構成されていません" -#: src/Module/Settings/Channels.php:148 +#: src/Module/Settings/Channels.php:134 msgid "" "This page can be used to define the channels that will automatically be " "reshared by your account." msgstr "" -#: src/Module/Settings/Channels.php:153 +#: src/Module/Settings/Channels.php:139 msgid "This page can be used to define your own channels." msgstr "" -#: src/Module/Settings/Channels.php:182 +#: src/Module/Settings/Channels.php:168 msgid "Publish" msgstr "" -#: src/Module/Settings/Channels.php:182 +#: src/Module/Settings/Channels.php:168 msgid "" "When selected, the channel results are reshared. This only works for public " "ActivityPub posts from the public timeline or the user defined circles." msgstr "" -#: src/Module/Settings/Channels.php:190 src/Module/Settings/Channels.php:211 -#: src/Module/Settings/Display.php:338 +#: src/Module/Settings/Channels.php:176 src/Module/Settings/Channels.php:197 +#: src/Module/Settings/Display.php:324 msgid "Label" msgstr "" -#: src/Module/Settings/Channels.php:191 src/Module/Settings/Channels.php:212 -#: src/Module/Settings/Display.php:339 -#: src/Module/Settings/TwoFactor/AppSpecific.php:137 +#: src/Module/Settings/Channels.php:177 src/Module/Settings/Channels.php:198 +#: src/Module/Settings/Display.php:325 +#: src/Module/Settings/TwoFactor/AppSpecific.php:123 msgid "Description" msgstr "説明" -#: src/Module/Settings/Channels.php:192 src/Module/Settings/Channels.php:213 +#: src/Module/Settings/Channels.php:178 src/Module/Settings/Channels.php:199 msgid "Access Key" msgstr "" -#: src/Module/Settings/Channels.php:193 src/Module/Settings/Channels.php:214 +#: src/Module/Settings/Channels.php:179 src/Module/Settings/Channels.php:200 msgid "Circle/Channel" msgstr "" -#: src/Module/Settings/Channels.php:194 src/Module/Settings/Channels.php:215 +#: src/Module/Settings/Channels.php:180 src/Module/Settings/Channels.php:201 msgid "Include Tags" msgstr "" -#: src/Module/Settings/Channels.php:195 src/Module/Settings/Channels.php:216 +#: src/Module/Settings/Channels.php:181 src/Module/Settings/Channels.php:202 msgid "Exclude Tags" msgstr "" -#: src/Module/Settings/Channels.php:196 src/Module/Settings/Channels.php:217 +#: src/Module/Settings/Channels.php:182 src/Module/Settings/Channels.php:203 msgid "Minimum Size" msgstr "" -#: src/Module/Settings/Channels.php:197 src/Module/Settings/Channels.php:218 +#: src/Module/Settings/Channels.php:183 src/Module/Settings/Channels.php:204 msgid "Maximum Size" msgstr "" -#: src/Module/Settings/Channels.php:198 src/Module/Settings/Channels.php:219 +#: src/Module/Settings/Channels.php:184 src/Module/Settings/Channels.php:205 msgid "Full Text Search" msgstr "" -#: src/Module/Settings/Channels.php:202 src/Module/Settings/Channels.php:223 +#: src/Module/Settings/Channels.php:188 src/Module/Settings/Channels.php:209 msgid "Select all languages that you want to see in this channel." msgstr "" -#: src/Module/Settings/Channels.php:204 +#: src/Module/Settings/Channels.php:190 msgid "Delete channel" msgstr "" -#: src/Module/Settings/Channels.php:204 +#: src/Module/Settings/Channels.php:190 msgid "Check to delete this entry from the channel list" msgstr "" -#: src/Module/Settings/Channels.php:211 +#: src/Module/Settings/Channels.php:197 msgid "Short name for the channel. It is displayed on the channels widget." msgstr "" -#: src/Module/Settings/Channels.php:212 +#: src/Module/Settings/Channels.php:198 msgid "This should describe the content of the channel in a few word." msgstr "" -#: src/Module/Settings/Channels.php:213 +#: src/Module/Settings/Channels.php:199 msgid "" "When you want to access this channel via an access key, you can define it " "here. Pay attention to not use an already used one." msgstr "" -#: src/Module/Settings/Channels.php:214 +#: src/Module/Settings/Channels.php:200 msgid "Select a circle or channel, that your channel should be based on." msgstr "" -#: src/Module/Settings/Channels.php:215 +#: src/Module/Settings/Channels.php:201 msgid "" "Comma separated list of tags. A post will be used when it contains any of " "the listed tags." msgstr "" -#: src/Module/Settings/Channels.php:216 +#: src/Module/Settings/Channels.php:202 msgid "" "Comma separated list of tags. If a post contain any of these tags, then it " "will not be part of nthis channel." msgstr "" -#: src/Module/Settings/Channels.php:217 +#: src/Module/Settings/Channels.php:203 msgid "" "Minimum post size. Leave empty for no minimum size. The size is calculated " "without links, attached posts, mentions or hashtags." msgstr "" -#: src/Module/Settings/Channels.php:218 +#: src/Module/Settings/Channels.php:204 msgid "" "Maximum post size. Leave empty for no maximum size. The size is calculated " "without links, attached posts, mentions or hashtags." msgstr "" -#: src/Module/Settings/Channels.php:219 +#: src/Module/Settings/Channels.php:205 #, php-format msgid "" "Search terms for the body, supports the \"boolean mode\" operators from " @@ -10278,576 +10272,589 @@ msgid "" "keywords: %s" msgstr "" -#: src/Module/Settings/Channels.php:220 +#: src/Module/Settings/Channels.php:206 msgid "Check to display images in the channel." msgstr "" -#: src/Module/Settings/Channels.php:221 +#: src/Module/Settings/Channels.php:207 msgid "Check to display videos in the channel." msgstr "" -#: src/Module/Settings/Channels.php:222 +#: src/Module/Settings/Channels.php:208 msgid "Check to display audio in the channel." msgstr "" -#: src/Module/Settings/Channels.php:227 +#: src/Module/Settings/Channels.php:213 msgid "Add new entry to the channel list" msgstr "" -#: src/Module/Settings/Channels.php:228 +#: src/Module/Settings/Channels.php:214 msgid "Add" msgstr "追加" -#: src/Module/Settings/Channels.php:230 +#: src/Module/Settings/Channels.php:216 msgid "Current Entries in the channel list" msgstr "" -#: src/Module/Settings/Channels.php:233 +#: src/Module/Settings/Channels.php:219 msgid "Delete entry from the channel list" msgstr "" -#: src/Module/Settings/Channels.php:234 +#: src/Module/Settings/Channels.php:220 msgid "Delete entry from the channel list?" msgstr "" -#: src/Module/Settings/Connectors.php:120 +#: src/Module/Settings/Connectors.php:108 msgid "Failed to connect with email account using the settings provided." msgstr "提供された設定を使用してメールアカウントに接続できませんでした。" -#: src/Module/Settings/Connectors.php:166 -#: src/Module/Settings/Connectors.php:167 +#: src/Module/Settings/Connectors.php:155 +#: src/Module/Settings/Connectors.php:156 msgid "Diaspora (Socialhome, Hubzilla)" msgstr "Diaspora(Socialhome、Hubzilla)" -#: src/Module/Settings/Connectors.php:166 -#: src/Module/Settings/Connectors.php:170 +#: src/Module/Settings/Connectors.php:155 #, php-format msgid "Built-in support for %s connectivity is enabled" msgstr "" -#: src/Module/Settings/Connectors.php:167 -#: src/Module/Settings/Connectors.php:169 +#: src/Module/Settings/Connectors.php:156 #, php-format msgid "Built-in support for %s connectivity is disabled" msgstr "" -#: src/Module/Settings/Connectors.php:169 -#: src/Module/Settings/Connectors.php:170 -msgid "OStatus (GNU Social)" -msgstr "OStatus (GNU Social)" - -#: src/Module/Settings/Connectors.php:182 +#: src/Module/Settings/Connectors.php:167 msgid "Email access is disabled on this site." msgstr "このサイトではメールアクセスが無効になっています。" -#: src/Module/Settings/Connectors.php:197 -#: src/Module/Settings/Connectors.php:244 +#: src/Module/Settings/Connectors.php:182 +#: src/Module/Settings/Connectors.php:233 msgid "None" msgstr "無し" -#: src/Module/Settings/Connectors.php:209 +#: src/Module/Settings/Connectors.php:186 +msgid "Default (Mastodon will display the title and a link to the post)" +msgstr "" + +#: src/Module/Settings/Connectors.php:187 +msgid "" +"Use the summary (Mastodon and some others will treat it as content warning)" +msgstr "" + +#: src/Module/Settings/Connectors.php:188 +msgid "Embed the title in the body" +msgstr "" + +#: src/Module/Settings/Connectors.php:199 msgid "General Social Media Settings" msgstr "一般的なソーシャルメディア設定" -#: src/Module/Settings/Connectors.php:212 +#: src/Module/Settings/Connectors.php:202 msgid "Followed content scope" msgstr "" -#: src/Module/Settings/Connectors.php:214 +#: src/Module/Settings/Connectors.php:204 msgid "" "By default, conversations in which your follows participated but didn't " "start will be shown in your timeline. You can turn this behavior off, or " "expand it to the conversations in which your follows liked a post." msgstr "" -#: src/Module/Settings/Connectors.php:216 +#: src/Module/Settings/Connectors.php:206 msgid "Only conversations my follows started" msgstr "" -#: src/Module/Settings/Connectors.php:217 +#: src/Module/Settings/Connectors.php:207 msgid "Conversations my follows started or commented on (default)" msgstr "" -#: src/Module/Settings/Connectors.php:218 +#: src/Module/Settings/Connectors.php:208 msgid "Any conversation my follows interacted with, including likes" msgstr "" -#: src/Module/Settings/Connectors.php:221 +#: src/Module/Settings/Connectors.php:211 msgid "Collapse sensitive posts" msgstr "" -#: src/Module/Settings/Connectors.php:221 +#: src/Module/Settings/Connectors.php:211 msgid "" "If a post is marked as \"sensitive\", it will be displayed in a collapsed " "state, if this option is enabled." msgstr "" -#: src/Module/Settings/Connectors.php:222 +#: src/Module/Settings/Connectors.php:212 msgid "Enable intelligent shortening" msgstr "" -#: src/Module/Settings/Connectors.php:222 +#: src/Module/Settings/Connectors.php:212 msgid "" "Normally the system tries to find the best link to add to shortened posts. " "If disabled, every shortened post will always point to the original " "friendica post." msgstr "" -#: src/Module/Settings/Connectors.php:223 +#: src/Module/Settings/Connectors.php:213 msgid "Enable simple text shortening" msgstr "" -#: src/Module/Settings/Connectors.php:223 +#: src/Module/Settings/Connectors.php:213 msgid "" "Normally the system shortens posts at the next line feed. If this option is " "enabled then the system will shorten the text at the maximum character " "limit." msgstr "" -#: src/Module/Settings/Connectors.php:224 +#: src/Module/Settings/Connectors.php:214 msgid "Attach the link title" msgstr "リンクの件名を添付します" -#: src/Module/Settings/Connectors.php:224 +#: src/Module/Settings/Connectors.php:214 msgid "" "When activated, the title of the attached link will be added as a title on " "posts to Diaspora. This is mostly helpful with \"remote-self\" contacts that" " share feed content." msgstr "有効にすると、添付されたリンクのタイトルがDiasporaへの投稿のタイトルとして追加されます。 これは主に、フィードコンテンツを共有する「リモート セルフ」コンタクトで役立ちます。" -#: src/Module/Settings/Connectors.php:225 +#: src/Module/Settings/Connectors.php:215 msgid "API: Use spoiler field as title" msgstr "" -#: src/Module/Settings/Connectors.php:225 +#: src/Module/Settings/Connectors.php:215 msgid "" "When activated, the \"spoiler_text\" field in the API will be used for the " "title on standalone posts. When deactivated it will be used for spoiler " "text. For comments it will always be used for spoiler text." msgstr "" -#: src/Module/Settings/Connectors.php:226 +#: src/Module/Settings/Connectors.php:216 msgid "API: Automatically links at the end of the post as attached posts" msgstr "" -#: src/Module/Settings/Connectors.php:226 +#: src/Module/Settings/Connectors.php:216 msgid "" "When activated, added links at the end of the post react the same way as " "added links in the web interface." msgstr "" -#: src/Module/Settings/Connectors.php:227 +#: src/Module/Settings/Connectors.php:217 +msgid "Article Mode" +msgstr "" + +#: src/Module/Settings/Connectors.php:217 +msgid "" +"Controls how posts with titles are transmitted. Mastodon and its forks don't" +" display the content of these posts if the post is created in the correct " +"(default) way." +msgstr "" + +#: src/Module/Settings/Connectors.php:218 msgid "Your legacy ActivityPub/GNU Social account" msgstr "" -#: src/Module/Settings/Connectors.php:227 +#: src/Module/Settings/Connectors.php:218 msgid "" "If you enter your old account name from an ActivityPub based system or your " "GNU Social/Statusnet account name here (in the format user@domain.tld), your" " contacts will be added automatically. The field will be emptied when done." msgstr "" -#: src/Module/Settings/Connectors.php:229 -msgid "Repair OStatus subscriptions" -msgstr "OStatusサブスクリプションを修復する" - -#: src/Module/Settings/Connectors.php:233 +#: src/Module/Settings/Connectors.php:222 msgid "Email/Mailbox Setup" msgstr "メール/メールボックスのセットアップ" -#: src/Module/Settings/Connectors.php:234 +#: src/Module/Settings/Connectors.php:223 msgid "" "If you wish to communicate with email contacts using this service " "(optional), please specify how to connect to your mailbox." msgstr "このサービス(オプション)を使用してメールコンタクトと通信する場合は、メールボックスへの接続方法を指定してください。" -#: src/Module/Settings/Connectors.php:235 +#: src/Module/Settings/Connectors.php:224 msgid "Last successful email check:" msgstr "最後に成功したメールチェック:" -#: src/Module/Settings/Connectors.php:237 +#: src/Module/Settings/Connectors.php:226 msgid "IMAP server name:" msgstr "IMAPサーバー名:" -#: src/Module/Settings/Connectors.php:238 +#: src/Module/Settings/Connectors.php:227 msgid "IMAP port:" msgstr "IMAPポート:" -#: src/Module/Settings/Connectors.php:239 +#: src/Module/Settings/Connectors.php:228 msgid "Security:" msgstr "セキュリティ:" -#: src/Module/Settings/Connectors.php:240 +#: src/Module/Settings/Connectors.php:229 msgid "Email login name:" msgstr "メールのログイン名:" -#: src/Module/Settings/Connectors.php:241 +#: src/Module/Settings/Connectors.php:230 msgid "Email password:" msgstr "メールのパスワード:" -#: src/Module/Settings/Connectors.php:242 +#: src/Module/Settings/Connectors.php:231 msgid "Reply-to address:" msgstr "返信先アドレス:" -#: src/Module/Settings/Connectors.php:243 +#: src/Module/Settings/Connectors.php:232 msgid "Send public posts to all email contacts:" msgstr "すべてのメールコンタクトに一般公開投稿を送信します。" -#: src/Module/Settings/Connectors.php:244 +#: src/Module/Settings/Connectors.php:233 msgid "Action after import:" msgstr "インポート後のアクション:" -#: src/Module/Settings/Connectors.php:244 +#: src/Module/Settings/Connectors.php:233 msgid "Move to folder" msgstr "フォルダへ移動" -#: src/Module/Settings/Connectors.php:245 +#: src/Module/Settings/Connectors.php:234 msgid "Move to folder:" msgstr "フォルダへ移動:" -#: src/Module/Settings/Delegation.php:73 +#: src/Module/Settings/Delegation.php:59 msgid "Delegation successfully granted." msgstr "委任が正常に許可されました。" -#: src/Module/Settings/Delegation.php:75 +#: src/Module/Settings/Delegation.php:61 msgid "Parent user not found, unavailable or password doesn't match." msgstr "親ユーザーが見つからないか、利用できないか、パスワードが一致しません。" -#: src/Module/Settings/Delegation.php:79 +#: src/Module/Settings/Delegation.php:65 msgid "Delegation successfully revoked." msgstr "委任が正常に取り消されました。" -#: src/Module/Settings/Delegation.php:98 -#: src/Module/Settings/Delegation.php:120 +#: src/Module/Settings/Delegation.php:84 +#: src/Module/Settings/Delegation.php:106 msgid "" "Delegated administrators can view but not change delegation permissions." msgstr "委任された管理者は、委任権限を確認できますが、変更はできません。" -#: src/Module/Settings/Delegation.php:112 +#: src/Module/Settings/Delegation.php:98 msgid "Delegate user not found." msgstr "移譲ユーザーが見つかりません。" -#: src/Module/Settings/Delegation.php:169 +#: src/Module/Settings/Delegation.php:155 msgid "No parent user" msgstr "親となるユーザが存在しません。" -#: src/Module/Settings/Delegation.php:180 -#: src/Module/Settings/Delegation.php:191 +#: src/Module/Settings/Delegation.php:166 +#: src/Module/Settings/Delegation.php:177 msgid "Parent User" msgstr "親ユーザ" -#: src/Module/Settings/Delegation.php:188 +#: src/Module/Settings/Delegation.php:174 msgid "Additional Accounts" msgstr "追加のアカウント" -#: src/Module/Settings/Delegation.php:189 +#: src/Module/Settings/Delegation.php:175 msgid "" "Register additional accounts that are automatically connected to your " "existing account so you can manage them from this account." msgstr "既存のアカウントに自動的に接続される追加のアカウントを登録して、このアカウントから管理できるようにします。" -#: src/Module/Settings/Delegation.php:190 +#: src/Module/Settings/Delegation.php:176 msgid "Register an additional account" msgstr "追加アカウントの登録" -#: src/Module/Settings/Delegation.php:192 +#: src/Module/Settings/Delegation.php:178 msgid "" "Parent users have total control about this account, including the account " "settings. Please double check whom you give this access." msgstr "親ユーザは、このアカウントについてアカウント設定を含む全ての権限を持ちます。 このアクセスを許可するユーザ名を再確認してください。" -#: src/Module/Settings/Delegation.php:195 +#: src/Module/Settings/Delegation.php:181 msgid "Delegates" msgstr "移譲" -#: src/Module/Settings/Delegation.php:196 +#: src/Module/Settings/Delegation.php:182 msgid "" "Delegates are able to manage all aspects of this account/page except for " "basic account settings. Please do not delegate your personal account to " "anybody that you do not trust completely." msgstr "移譲された人は、このアカウント/ページの管理について、基本的なアカウント設定を除いた、すべての権限を得ます。 完全に信頼していない人には、あなたの個人アカウントを移譲しないでください。" -#: src/Module/Settings/Delegation.php:197 +#: src/Module/Settings/Delegation.php:183 msgid "Existing Page Delegates" msgstr "既存のページの移譲" -#: src/Module/Settings/Delegation.php:198 +#: src/Module/Settings/Delegation.php:184 msgid "Potential Delegates" msgstr "移譲先の候補" -#: src/Module/Settings/Delegation.php:199 +#: src/Module/Settings/Delegation.php:185 msgid "No entries." msgstr "エントリは有りません。" -#: src/Module/Settings/Display.php:183 +#: src/Module/Settings/Display.php:169 msgid "The theme you chose isn't available." msgstr "選択したテーマは使用できません。" -#: src/Module/Settings/Display.php:223 +#: src/Module/Settings/Display.php:209 #, php-format msgid "%s - (Unsupported)" msgstr "%s (サポートされていません)" -#: src/Module/Settings/Display.php:260 +#: src/Module/Settings/Display.php:246 msgid "No preview" msgstr "" -#: src/Module/Settings/Display.php:261 +#: src/Module/Settings/Display.php:247 msgid "No image" msgstr "" -#: src/Module/Settings/Display.php:262 +#: src/Module/Settings/Display.php:248 msgid "Small Image" msgstr "" -#: src/Module/Settings/Display.php:263 +#: src/Module/Settings/Display.php:249 msgid "Large Image" msgstr "" -#: src/Module/Settings/Display.php:308 +#: src/Module/Settings/Display.php:294 msgid "Display Settings" msgstr "ディスプレイの設定" -#: src/Module/Settings/Display.php:310 +#: src/Module/Settings/Display.php:296 msgid "General Theme Settings" msgstr "一般的なテーマ設定" -#: src/Module/Settings/Display.php:311 +#: src/Module/Settings/Display.php:297 msgid "Custom Theme Settings" msgstr "カスタムテーマ設定" -#: src/Module/Settings/Display.php:312 +#: src/Module/Settings/Display.php:298 msgid "Content Settings" msgstr "コンテンツ設定" -#: src/Module/Settings/Display.php:313 view/theme/duepuntozero/config.php:86 -#: view/theme/frio/config.php:151 view/theme/quattro/config.php:88 -#: view/theme/vier/config.php:136 +#: src/Module/Settings/Display.php:299 view/theme/duepuntozero/config.php:74 +#: view/theme/frio/config.php:139 view/theme/quattro/config.php:76 +#: view/theme/vier/config.php:124 msgid "Theme settings" msgstr "テーマ設定" -#: src/Module/Settings/Display.php:314 +#: src/Module/Settings/Display.php:300 msgid "Timelines" msgstr "" -#: src/Module/Settings/Display.php:321 +#: src/Module/Settings/Display.php:307 msgid "Display Theme:" msgstr "ディスプレイテーマ:" -#: src/Module/Settings/Display.php:322 +#: src/Module/Settings/Display.php:308 msgid "Mobile Theme:" msgstr "モバイルテーマ:" -#: src/Module/Settings/Display.php:325 +#: src/Module/Settings/Display.php:311 msgid "Number of items to display per page:" msgstr "ページごとに表示する項目の数:" -#: src/Module/Settings/Display.php:325 src/Module/Settings/Display.php:326 +#: src/Module/Settings/Display.php:311 src/Module/Settings/Display.php:312 msgid "Maximum of 100 items" msgstr "最大100項目" -#: src/Module/Settings/Display.php:326 +#: src/Module/Settings/Display.php:312 msgid "Number of items to display per page when viewed from mobile device:" msgstr "モバイルデバイスから表示したときにページごとに表示する項目の数:" -#: src/Module/Settings/Display.php:327 +#: src/Module/Settings/Display.php:313 msgid "Update browser every xx seconds" msgstr "xx秒ごとにブラウザーを更新する" -#: src/Module/Settings/Display.php:327 +#: src/Module/Settings/Display.php:313 msgid "Minimum of 10 seconds. Enter -1 to disable it." msgstr "10秒以上。 -1を入力して無効にします。" -#: src/Module/Settings/Display.php:328 +#: src/Module/Settings/Display.php:314 msgid "Display emoticons" msgstr "" -#: src/Module/Settings/Display.php:328 +#: src/Module/Settings/Display.php:314 msgid "When enabled, emoticons are replaced with matching symbols." msgstr "" -#: src/Module/Settings/Display.php:329 +#: src/Module/Settings/Display.php:315 msgid "Infinite scroll" msgstr "無限スクロール" -#: src/Module/Settings/Display.php:329 +#: src/Module/Settings/Display.php:315 msgid "Automatic fetch new items when reaching the page end." msgstr "ページの最後に到達したとき、新規項目を自動取得する" -#: src/Module/Settings/Display.php:330 +#: src/Module/Settings/Display.php:316 msgid "Enable Smart Threading" msgstr "" -#: src/Module/Settings/Display.php:330 +#: src/Module/Settings/Display.php:316 msgid "Enable the automatic suppression of extraneous thread indentation." msgstr "" -#: src/Module/Settings/Display.php:331 +#: src/Module/Settings/Display.php:317 msgid "Display the Dislike feature" msgstr "" -#: src/Module/Settings/Display.php:331 +#: src/Module/Settings/Display.php:317 msgid "" "Display the Dislike button and dislike reactions on posts and comments." msgstr "" -#: src/Module/Settings/Display.php:332 +#: src/Module/Settings/Display.php:318 msgid "Display the resharer" msgstr "" -#: src/Module/Settings/Display.php:332 +#: src/Module/Settings/Display.php:318 msgid "Display the first resharer as icon and text on a reshared item." msgstr "" -#: src/Module/Settings/Display.php:333 +#: src/Module/Settings/Display.php:319 msgid "Stay local" msgstr "" -#: src/Module/Settings/Display.php:333 +#: src/Module/Settings/Display.php:319 msgid "Don't go to a remote system when following a contact link." msgstr "" -#: src/Module/Settings/Display.php:334 +#: src/Module/Settings/Display.php:320 msgid "Show the post deletion checkbox" msgstr "" -#: src/Module/Settings/Display.php:334 +#: src/Module/Settings/Display.php:320 msgid "Display the checkbox for the post deletion on the network page." msgstr "" -#: src/Module/Settings/Display.php:335 +#: src/Module/Settings/Display.php:321 msgid "DIsplay the event list" msgstr "" -#: src/Module/Settings/Display.php:335 +#: src/Module/Settings/Display.php:321 msgid "Display the birthday reminder and event list on the network page." msgstr "" -#: src/Module/Settings/Display.php:336 +#: src/Module/Settings/Display.php:322 msgid "Link preview mode" msgstr "" -#: src/Module/Settings/Display.php:336 +#: src/Module/Settings/Display.php:322 msgid "Appearance of the link preview that is added to each post with a link." msgstr "" -#: src/Module/Settings/Display.php:341 +#: src/Module/Settings/Display.php:327 msgid "Bookmark" msgstr "" -#: src/Module/Settings/Display.php:343 +#: src/Module/Settings/Display.php:329 msgid "" "Enable timelines that you want to see in the channels widget. Bookmark " "timelines that you want to see in the top menu." msgstr "" -#: src/Module/Settings/Display.php:345 +#: src/Module/Settings/Display.php:331 msgid "Channel languages:" msgstr "" -#: src/Module/Settings/Display.php:345 +#: src/Module/Settings/Display.php:331 msgid "Select all languages that you want to see in your channels." msgstr "" -#: src/Module/Settings/Display.php:347 +#: src/Module/Settings/Display.php:333 msgid "Beginning of week:" msgstr "週の始まり:" -#: src/Module/Settings/Display.php:348 +#: src/Module/Settings/Display.php:334 msgid "Default calendar view:" msgstr "" -#: src/Module/Settings/Features.php:73 +#: src/Module/Settings/Features.php:59 msgid "Additional Features" msgstr "追加機能" -#: src/Module/Settings/OAuth.php:71 +#: src/Module/Settings/OAuth.php:57 msgid "Connected Apps" msgstr "接続されたアプリ" -#: src/Module/Settings/OAuth.php:75 +#: src/Module/Settings/OAuth.php:61 msgid "Remove authorization" msgstr "承認を削除" -#: src/Module/Settings/Profile/Index.php:116 +#: src/Module/Settings/Profile/Index.php:102 msgid "Display Name is required." msgstr "" -#: src/Module/Settings/Profile/Index.php:167 +#: src/Module/Settings/Profile/Index.php:156 msgid "Profile couldn't be updated." msgstr "" -#: src/Module/Settings/Profile/Index.php:205 -#: src/Module/Settings/Profile/Index.php:226 +#: src/Module/Settings/Profile/Index.php:196 +#: src/Module/Settings/Profile/Index.php:217 msgid "Label:" msgstr "" -#: src/Module/Settings/Profile/Index.php:206 -#: src/Module/Settings/Profile/Index.php:227 +#: src/Module/Settings/Profile/Index.php:197 +#: src/Module/Settings/Profile/Index.php:218 msgid "Value:" msgstr "" -#: src/Module/Settings/Profile/Index.php:217 -#: src/Module/Settings/Profile/Index.php:238 +#: src/Module/Settings/Profile/Index.php:208 +#: src/Module/Settings/Profile/Index.php:229 msgid "Field Permissions" msgstr "" -#: src/Module/Settings/Profile/Index.php:218 -#: src/Module/Settings/Profile/Index.php:239 +#: src/Module/Settings/Profile/Index.php:209 +#: src/Module/Settings/Profile/Index.php:230 msgid "(click to open/close)" msgstr "(クリックして開く・閉じる)" -#: src/Module/Settings/Profile/Index.php:224 +#: src/Module/Settings/Profile/Index.php:215 msgid "Add a new profile field" msgstr "" -#: src/Module/Settings/Profile/Index.php:247 +#: src/Module/Settings/Profile/Index.php:238 msgid "" "The homepage is verified. A rel=\"me\" link back to your Friendica profile " "page was found on the homepage." msgstr "" -#: src/Module/Settings/Profile/Index.php:249 +#: src/Module/Settings/Profile/Index.php:240 #, php-format msgid "" "To verify your homepage, add a rel=\"me\" link to it, pointing to your " "profile URL (%s)." msgstr "" -#: src/Module/Settings/Profile/Index.php:255 +#: src/Module/Settings/Profile/Index.php:246 msgid "Profile Actions" msgstr "プロフィールアクション" -#: src/Module/Settings/Profile/Index.php:256 +#: src/Module/Settings/Profile/Index.php:247 msgid "Edit Profile Details" msgstr "プロフィールの詳細を編集" -#: src/Module/Settings/Profile/Index.php:258 +#: src/Module/Settings/Profile/Index.php:249 msgid "Change Profile Photo" msgstr "プロフィール写真の変更" -#: src/Module/Settings/Profile/Index.php:261 +#: src/Module/Settings/Profile/Index.php:252 msgid "Profile picture" msgstr "プロフィールの写真" -#: src/Module/Settings/Profile/Index.php:262 +#: src/Module/Settings/Profile/Index.php:253 msgid "Location" msgstr "位置情報" -#: src/Module/Settings/Profile/Index.php:263 src/Util/Temporal.php:97 -#: src/Util/Temporal.php:99 +#: src/Module/Settings/Profile/Index.php:254 src/Util/Temporal.php:83 +#: src/Util/Temporal.php:85 msgid "Miscellaneous" msgstr "その他" -#: src/Module/Settings/Profile/Index.php:264 +#: src/Module/Settings/Profile/Index.php:255 msgid "Custom Profile Fields" msgstr "" -#: src/Module/Settings/Profile/Index.php:265 src/Module/Welcome.php:58 +#: src/Module/Settings/Profile/Index.php:256 src/Module/Welcome.php:44 msgid "Upload Profile Photo" msgstr "プロフィール写真をアップロード" -#: src/Module/Settings/Profile/Index.php:266 +#: src/Module/Settings/Profile/Index.php:257 #, php-format msgid "" "

Custom fields appear on your profile page.

\n" @@ -10857,396 +10864,396 @@ msgid "" "\t\t\t\t

Non-public fields can only be seen by the selected Friendica contacts or the Friendica contacts in the selected circles.

" msgstr "" -#: src/Module/Settings/Profile/Index.php:286 +#: src/Module/Settings/Profile/Index.php:277 msgid "Street Address:" msgstr "住所:" -#: src/Module/Settings/Profile/Index.php:287 +#: src/Module/Settings/Profile/Index.php:278 msgid "Locality/City:" msgstr "地域/市:" -#: src/Module/Settings/Profile/Index.php:288 +#: src/Module/Settings/Profile/Index.php:279 msgid "Region/State:" msgstr "地域/州:" -#: src/Module/Settings/Profile/Index.php:289 +#: src/Module/Settings/Profile/Index.php:280 msgid "Postal/Zip Code:" msgstr "郵便番号:" -#: src/Module/Settings/Profile/Index.php:290 +#: src/Module/Settings/Profile/Index.php:281 msgid "Country:" msgstr "国:" -#: src/Module/Settings/Profile/Index.php:292 +#: src/Module/Settings/Profile/Index.php:283 msgid "XMPP (Jabber) address:" msgstr "XMPP(Jabber)アドレス:" -#: src/Module/Settings/Profile/Index.php:292 +#: src/Module/Settings/Profile/Index.php:283 msgid "" "The XMPP address will be published so that people can follow you there." msgstr "" -#: src/Module/Settings/Profile/Index.php:293 +#: src/Module/Settings/Profile/Index.php:284 msgid "Matrix (Element) address:" msgstr "" -#: src/Module/Settings/Profile/Index.php:293 +#: src/Module/Settings/Profile/Index.php:284 msgid "" "The Matrix address will be published so that people can follow you there." msgstr "" -#: src/Module/Settings/Profile/Index.php:294 +#: src/Module/Settings/Profile/Index.php:285 msgid "Homepage URL:" msgstr "ホームページのURL:" -#: src/Module/Settings/Profile/Index.php:295 +#: src/Module/Settings/Profile/Index.php:286 msgid "Public Keywords:" msgstr "公開キーワード:" -#: src/Module/Settings/Profile/Index.php:295 +#: src/Module/Settings/Profile/Index.php:286 msgid "(Used for suggesting potential friends, can be seen by others)" msgstr "(友人を候補を提案するために使用ます。また他の人が見ることができます。)" -#: src/Module/Settings/Profile/Index.php:296 +#: src/Module/Settings/Profile/Index.php:287 msgid "Private Keywords:" msgstr "プライベートキーワード:" -#: src/Module/Settings/Profile/Index.php:296 +#: src/Module/Settings/Profile/Index.php:287 msgid "(Used for searching profiles, never shown to others)" msgstr "(プロフィールの検索に使用され、他のユーザーには表示されません)" -#: src/Module/Settings/Profile/Photo/Crop.php:107 -#: src/Module/Settings/Profile/Photo/Crop.php:125 -#: src/Module/Settings/Profile/Photo/Crop.php:143 -#: src/Module/Settings/Profile/Photo/Index.php:100 +#: src/Module/Settings/Profile/Photo/Crop.php:93 +#: src/Module/Settings/Profile/Photo/Crop.php:111 +#: src/Module/Settings/Profile/Photo/Crop.php:129 +#: src/Module/Settings/Profile/Photo/Index.php:86 #, php-format msgid "Image size reduction [%s] failed." msgstr "画像サイズの縮小[ %s ]に失敗しました。" -#: src/Module/Settings/Profile/Photo/Crop.php:150 +#: src/Module/Settings/Profile/Photo/Crop.php:136 msgid "" "Shift-reload the page or clear browser cache if the new photo does not " "display immediately." msgstr "新しい写真がすぐに表示されない場合は、Shiftキーを押しながらページをリロードするか、ブラウザーのキャッシュをクリアします。" -#: src/Module/Settings/Profile/Photo/Crop.php:155 +#: src/Module/Settings/Profile/Photo/Crop.php:141 msgid "Unable to process image" msgstr "画像を処理できません" -#: src/Module/Settings/Profile/Photo/Crop.php:174 +#: src/Module/Settings/Profile/Photo/Crop.php:160 msgid "Photo not found." msgstr "" -#: src/Module/Settings/Profile/Photo/Crop.php:196 +#: src/Module/Settings/Profile/Photo/Crop.php:182 msgid "Profile picture successfully updated." msgstr "" -#: src/Module/Settings/Profile/Photo/Crop.php:222 -#: src/Module/Settings/Profile/Photo/Crop.php:226 +#: src/Module/Settings/Profile/Photo/Crop.php:208 +#: src/Module/Settings/Profile/Photo/Crop.php:212 msgid "Crop Image" msgstr "クロップ画像" -#: src/Module/Settings/Profile/Photo/Crop.php:223 +#: src/Module/Settings/Profile/Photo/Crop.php:209 msgid "Please adjust the image cropping for optimum viewing." msgstr "最適な表示になるように画像のトリミングを調整してください。" -#: src/Module/Settings/Profile/Photo/Crop.php:225 +#: src/Module/Settings/Profile/Photo/Crop.php:211 msgid "Use Image As Is" msgstr "" -#: src/Module/Settings/Profile/Photo/Index.php:46 +#: src/Module/Settings/Profile/Photo/Index.php:32 msgid "Missing uploaded image." msgstr "" -#: src/Module/Settings/Profile/Photo/Index.php:123 +#: src/Module/Settings/Profile/Photo/Index.php:109 msgid "Profile Picture Settings" msgstr "" -#: src/Module/Settings/Profile/Photo/Index.php:124 +#: src/Module/Settings/Profile/Photo/Index.php:110 msgid "Current Profile Picture" msgstr "" -#: src/Module/Settings/Profile/Photo/Index.php:125 +#: src/Module/Settings/Profile/Photo/Index.php:111 msgid "Upload Profile Picture" msgstr "プロフィール画像をアップロード" -#: src/Module/Settings/Profile/Photo/Index.php:126 +#: src/Module/Settings/Profile/Photo/Index.php:112 msgid "Upload Picture:" msgstr "" -#: src/Module/Settings/Profile/Photo/Index.php:131 +#: src/Module/Settings/Profile/Photo/Index.php:117 msgid "or" msgstr "または" -#: src/Module/Settings/Profile/Photo/Index.php:133 +#: src/Module/Settings/Profile/Photo/Index.php:119 msgid "skip this step" msgstr "このステップを飛ばす" -#: src/Module/Settings/Profile/Photo/Index.php:135 +#: src/Module/Settings/Profile/Photo/Index.php:121 msgid "select a photo from your photo albums" msgstr "フォトアルバムから写真を選択する" -#: src/Module/Settings/RemoveMe.php:76 +#: src/Module/Settings/RemoveMe.php:62 msgid "" "There was a validation error, please make sure you're logged in with the " "account you want to remove and try again." msgstr "" -#: src/Module/Settings/RemoveMe.php:76 +#: src/Module/Settings/RemoveMe.php:62 msgid "If this error persists, please contact your administrator." msgstr "" -#: src/Module/Settings/RemoveMe.php:90 -#: src/Navigation/Notifications/Repository/Notify.php:471 -#: src/Navigation/Notifications/Repository/Notify.php:492 +#: src/Module/Settings/RemoveMe.php:76 +#: src/Navigation/Notifications/Repository/Notify.php:457 +#: src/Navigation/Notifications/Repository/Notify.php:478 msgid "[Friendica System Notify]" msgstr "[Friendica システム通知]" -#: src/Module/Settings/RemoveMe.php:90 +#: src/Module/Settings/RemoveMe.php:76 msgid "User deleted their account" msgstr "このユーザはアカウントを削除しました。" -#: src/Module/Settings/RemoveMe.php:91 +#: src/Module/Settings/RemoveMe.php:77 msgid "" "On your Friendica node an user deleted their account. Please ensure that " "their data is removed from the backups." msgstr "Friendicaノードで、ユーザーがアカウントを削除しました。 それらのデータがバックアップから削除されていることを確認してください。" -#: src/Module/Settings/RemoveMe.php:92 +#: src/Module/Settings/RemoveMe.php:78 #, php-format msgid "The user id is %d" msgstr "ユーザIDは %d です" -#: src/Module/Settings/RemoveMe.php:105 +#: src/Module/Settings/RemoveMe.php:91 msgid "Your account has been successfully removed. Bye bye!" msgstr "" -#: src/Module/Settings/RemoveMe.php:130 +#: src/Module/Settings/RemoveMe.php:116 msgid "Remove My Account" msgstr "自分のアカウントを削除します" -#: src/Module/Settings/RemoveMe.php:131 +#: src/Module/Settings/RemoveMe.php:117 msgid "" "This will completely remove your account. Once this has been done it is not " "recoverable." msgstr "これにより、アカウントが完全に削除されます。 これが完了すると、回復できなくなります。" -#: src/Module/Settings/RemoveMe.php:136 +#: src/Module/Settings/RemoveMe.php:122 msgid "Please enter your password for verification:" msgstr "確認のため、あなたのパスワードを入力してください。" -#: src/Module/Settings/Server/Action.php:60 +#: src/Module/Settings/Server/Action.php:46 msgid "Do you want to ignore this server?" msgstr "" -#: src/Module/Settings/Server/Action.php:64 +#: src/Module/Settings/Server/Action.php:50 msgid "Do you want to unignore this server?" msgstr "" -#: src/Module/Settings/Server/Action.php:74 -#: src/Module/Settings/Server/Index.php:104 +#: src/Module/Settings/Server/Action.php:60 +#: src/Module/Settings/Server/Index.php:90 msgid "Remote server settings" msgstr "" -#: src/Module/Settings/Server/Action.php:77 +#: src/Module/Settings/Server/Action.php:63 msgid "Server URL" msgstr "" -#: src/Module/Settings/Server/Index.php:78 +#: src/Module/Settings/Server/Index.php:64 msgid "Settings saved" msgstr "" -#: src/Module/Settings/Server/Index.php:105 +#: src/Module/Settings/Server/Index.php:91 msgid "" "Here you can find all the remote servers you have taken individual " "moderation actions against. For a list of servers your node has blocked, " "please check out the Information page." msgstr "" -#: src/Module/Settings/Server/Index.php:110 +#: src/Module/Settings/Server/Index.php:96 msgid "Delete all your settings for the remote server" msgstr "" -#: src/Module/Settings/Server/Index.php:111 +#: src/Module/Settings/Server/Index.php:97 msgid "Save changes" msgstr "" -#: src/Module/Settings/TwoFactor/AppSpecific.php:69 -#: src/Module/Settings/TwoFactor/Recovery.php:67 -#: src/Module/Settings/TwoFactor/Trusted.php:70 -#: src/Module/Settings/TwoFactor/Verify.php:72 +#: src/Module/Settings/TwoFactor/AppSpecific.php:55 +#: src/Module/Settings/TwoFactor/Recovery.php:53 +#: src/Module/Settings/TwoFactor/Trusted.php:56 +#: src/Module/Settings/TwoFactor/Verify.php:58 msgid "Please enter your password to access this page." msgstr "このページにアクセスするには、パスワードを入力してください。" -#: src/Module/Settings/TwoFactor/AppSpecific.php:87 +#: src/Module/Settings/TwoFactor/AppSpecific.php:73 msgid "App-specific password generation failed: The description is empty." msgstr "アプリ固有のパスワード生成に失敗しました:説明は空です。" -#: src/Module/Settings/TwoFactor/AppSpecific.php:90 +#: src/Module/Settings/TwoFactor/AppSpecific.php:76 msgid "" "App-specific password generation failed: This description already exists." msgstr "アプリ固有のパスワード生成に失敗しました:この説明は既に存在します。" -#: src/Module/Settings/TwoFactor/AppSpecific.php:94 +#: src/Module/Settings/TwoFactor/AppSpecific.php:80 msgid "New app-specific password generated." msgstr "新しいアプリ固有のパスワードが生成されました。" -#: src/Module/Settings/TwoFactor/AppSpecific.php:100 +#: src/Module/Settings/TwoFactor/AppSpecific.php:86 msgid "App-specific passwords successfully revoked." msgstr "アプリ固有のパスワードが正常に取り消されました。" -#: src/Module/Settings/TwoFactor/AppSpecific.php:110 +#: src/Module/Settings/TwoFactor/AppSpecific.php:96 msgid "App-specific password successfully revoked." msgstr "アプリ固有のパスワードが正常に取り消されました。" -#: src/Module/Settings/TwoFactor/AppSpecific.php:131 +#: src/Module/Settings/TwoFactor/AppSpecific.php:117 msgid "Two-factor app-specific passwords" msgstr "二要素アプリ固有のパスワード" -#: src/Module/Settings/TwoFactor/AppSpecific.php:133 +#: src/Module/Settings/TwoFactor/AppSpecific.php:119 msgid "" "

App-specific passwords are randomly generated passwords used instead your" " regular password to authenticate your account on third-party applications " "that don't support two-factor authentication.

" msgstr "

アプリ固有のパスワードは、二要素認証をサポートしないサードパーティアプリケーションでアカウントを認証するために、通常のパスワードの代わりに使用されるランダムに生成されたパスワードです。

" -#: src/Module/Settings/TwoFactor/AppSpecific.php:134 +#: src/Module/Settings/TwoFactor/AppSpecific.php:120 msgid "" "Make sure to copy your new app-specific password now. You won’t be able to " "see it again!" msgstr "今すぐ新しいアプリ固有のパスワードをコピーしてください。あなたは再びそれを見ることができなくなります!" -#: src/Module/Settings/TwoFactor/AppSpecific.php:138 +#: src/Module/Settings/TwoFactor/AppSpecific.php:124 msgid "Last Used" msgstr "最終使用" -#: src/Module/Settings/TwoFactor/AppSpecific.php:139 +#: src/Module/Settings/TwoFactor/AppSpecific.php:125 msgid "Revoke" msgstr "取り消す" -#: src/Module/Settings/TwoFactor/AppSpecific.php:140 +#: src/Module/Settings/TwoFactor/AppSpecific.php:126 msgid "Revoke All" msgstr "すべて取り消す" -#: src/Module/Settings/TwoFactor/AppSpecific.php:143 +#: src/Module/Settings/TwoFactor/AppSpecific.php:129 msgid "" "When you generate a new app-specific password, you must use it right away, " "it will be shown to you once after you generate it." msgstr "新しいアプリ固有のパスワードを生成するときは、すぐに使用する必要があります。生成後、一度表示されます。" -#: src/Module/Settings/TwoFactor/AppSpecific.php:144 +#: src/Module/Settings/TwoFactor/AppSpecific.php:130 msgid "Generate new app-specific password" msgstr "新しいアプリ固有のパスワードを生成する" -#: src/Module/Settings/TwoFactor/AppSpecific.php:145 +#: src/Module/Settings/TwoFactor/AppSpecific.php:131 msgid "Friendiqa on my Fairphone 2..." msgstr "フェアフォン2のFriendiqa ..." -#: src/Module/Settings/TwoFactor/AppSpecific.php:146 +#: src/Module/Settings/TwoFactor/AppSpecific.php:132 msgid "Generate" msgstr "生成する" -#: src/Module/Settings/TwoFactor/Index.php:88 +#: src/Module/Settings/TwoFactor/Index.php:74 msgid "Two-factor authentication successfully disabled." msgstr "二要素認証が正常に無効になりました。" -#: src/Module/Settings/TwoFactor/Index.php:141 +#: src/Module/Settings/TwoFactor/Index.php:127 msgid "" "

Use an application on a mobile device to get two-factor authentication " "codes when prompted on login.

" msgstr "

ログイン時にプロンプトが表示されたら、モバイルデバイスのアプリケーションを使用して二要素認証コードを取得します。

" -#: src/Module/Settings/TwoFactor/Index.php:145 +#: src/Module/Settings/TwoFactor/Index.php:131 msgid "Authenticator app" msgstr "認証アプリ" -#: src/Module/Settings/TwoFactor/Index.php:146 +#: src/Module/Settings/TwoFactor/Index.php:132 msgid "Configured" msgstr "設定済み" -#: src/Module/Settings/TwoFactor/Index.php:146 +#: src/Module/Settings/TwoFactor/Index.php:132 msgid "Not Configured" msgstr "設定されていません" -#: src/Module/Settings/TwoFactor/Index.php:147 +#: src/Module/Settings/TwoFactor/Index.php:133 msgid "

You haven't finished configuring your authenticator app.

" msgstr "

認証アプリの設定が完了していません。

" -#: src/Module/Settings/TwoFactor/Index.php:148 +#: src/Module/Settings/TwoFactor/Index.php:134 msgid "

Your authenticator app is correctly configured.

" msgstr "

認証アプリが正しく構成されています。

" -#: src/Module/Settings/TwoFactor/Index.php:150 +#: src/Module/Settings/TwoFactor/Index.php:136 msgid "Recovery codes" msgstr "回復コード" -#: src/Module/Settings/TwoFactor/Index.php:151 +#: src/Module/Settings/TwoFactor/Index.php:137 msgid "Remaining valid codes" msgstr "残りの有効なコード" -#: src/Module/Settings/TwoFactor/Index.php:153 +#: src/Module/Settings/TwoFactor/Index.php:139 msgid "" "

These one-use codes can replace an authenticator app code in case you " "have lost access to it.

" msgstr "

これらの使い捨てコードは、認証アプリのコードにアクセスできなくなった場合に、認証アプリのコードを置き換えることができます。

" -#: src/Module/Settings/TwoFactor/Index.php:155 +#: src/Module/Settings/TwoFactor/Index.php:141 msgid "App-specific passwords" msgstr "アプリ固有のパスワード" -#: src/Module/Settings/TwoFactor/Index.php:156 +#: src/Module/Settings/TwoFactor/Index.php:142 msgid "Generated app-specific passwords" msgstr "生成されたアプリ固有のパスワード" -#: src/Module/Settings/TwoFactor/Index.php:158 +#: src/Module/Settings/TwoFactor/Index.php:144 msgid "" "

These randomly generated passwords allow you to authenticate on apps not " "supporting two-factor authentication.

" msgstr "

これらのランダムに生成されたパスワードを使用すると、二要素認証をサポートしていないアプリで認証できます。

" -#: src/Module/Settings/TwoFactor/Index.php:161 +#: src/Module/Settings/TwoFactor/Index.php:147 msgid "Current password:" msgstr "現在のパスワード:" -#: src/Module/Settings/TwoFactor/Index.php:161 +#: src/Module/Settings/TwoFactor/Index.php:147 msgid "" "You need to provide your current password to change two-factor " "authentication settings." msgstr "二要素認証設定を変更するには、現在のパスワードを入力する必要があります。" -#: src/Module/Settings/TwoFactor/Index.php:162 +#: src/Module/Settings/TwoFactor/Index.php:148 msgid "Enable two-factor authentication" msgstr "二要素認証を有効にする" -#: src/Module/Settings/TwoFactor/Index.php:163 +#: src/Module/Settings/TwoFactor/Index.php:149 msgid "Disable two-factor authentication" msgstr "二要素認証を無効にする" -#: src/Module/Settings/TwoFactor/Index.php:164 +#: src/Module/Settings/TwoFactor/Index.php:150 msgid "Show recovery codes" msgstr "復旧コードを表示" -#: src/Module/Settings/TwoFactor/Index.php:165 +#: src/Module/Settings/TwoFactor/Index.php:151 msgid "Manage app-specific passwords" msgstr "アプリ固有のパスワードを管理する" -#: src/Module/Settings/TwoFactor/Index.php:166 +#: src/Module/Settings/TwoFactor/Index.php:152 msgid "Manage trusted browsers" msgstr "" -#: src/Module/Settings/TwoFactor/Index.php:167 +#: src/Module/Settings/TwoFactor/Index.php:153 msgid "Finish app configuration" msgstr "アプリの構成を完了する" -#: src/Module/Settings/TwoFactor/Recovery.php:83 +#: src/Module/Settings/TwoFactor/Recovery.php:69 msgid "New recovery codes successfully generated." msgstr "新しい回復コードが正常に生成されました。" -#: src/Module/Settings/TwoFactor/Recovery.php:109 +#: src/Module/Settings/TwoFactor/Recovery.php:95 msgid "Two-factor recovery codes" msgstr "二要素回復コード" -#: src/Module/Settings/TwoFactor/Recovery.php:111 +#: src/Module/Settings/TwoFactor/Recovery.php:97 msgid "" "

Recovery codes can be used to access your account in the event you lose " "access to your device and cannot receive two-factor authentication " @@ -11255,68 +11262,68 @@ msgid "" "account.

" msgstr "

リカバリコードは、デバイスへのアクセスを失い、二要素認証コードを受信できない場合にアカウントにアクセスするために使用できます。

これらを安全な場所に置いてください!デバイスを紛失し、復旧コードをお持ちでない場合、アカウントにアクセスできなくなります。

" -#: src/Module/Settings/TwoFactor/Recovery.php:113 +#: src/Module/Settings/TwoFactor/Recovery.php:99 msgid "" "When you generate new recovery codes, you must copy the new codes. Your old " "codes won’t work anymore." msgstr "新しい回復コードを生成する場合、新しいコードをコピーする必要があります。古いコードはもう機能しません。" -#: src/Module/Settings/TwoFactor/Recovery.php:114 +#: src/Module/Settings/TwoFactor/Recovery.php:100 msgid "Generate new recovery codes" msgstr "新しい回復コードを生成する" -#: src/Module/Settings/TwoFactor/Recovery.php:116 +#: src/Module/Settings/TwoFactor/Recovery.php:102 msgid "Next: Verification" msgstr "次:検証" -#: src/Module/Settings/TwoFactor/Trusted.php:87 +#: src/Module/Settings/TwoFactor/Trusted.php:73 msgid "Trusted browsers successfully removed." msgstr "" -#: src/Module/Settings/TwoFactor/Trusted.php:97 +#: src/Module/Settings/TwoFactor/Trusted.php:83 msgid "Trusted browser successfully removed." msgstr "" -#: src/Module/Settings/TwoFactor/Trusted.php:139 +#: src/Module/Settings/TwoFactor/Trusted.php:125 msgid "Two-factor Trusted Browsers" msgstr "" -#: src/Module/Settings/TwoFactor/Trusted.php:140 +#: src/Module/Settings/TwoFactor/Trusted.php:126 msgid "" "Trusted browsers are individual browsers you chose to skip two-factor " "authentication to access Friendica. Please use this feature sparingly, as it" " can negate the benefit of two-factor authentication." msgstr "" -#: src/Module/Settings/TwoFactor/Trusted.php:141 +#: src/Module/Settings/TwoFactor/Trusted.php:127 msgid "Device" msgstr "" -#: src/Module/Settings/TwoFactor/Trusted.php:142 +#: src/Module/Settings/TwoFactor/Trusted.php:128 msgid "OS" msgstr "" -#: src/Module/Settings/TwoFactor/Trusted.php:144 +#: src/Module/Settings/TwoFactor/Trusted.php:130 msgid "Trusted" msgstr "" -#: src/Module/Settings/TwoFactor/Trusted.php:145 +#: src/Module/Settings/TwoFactor/Trusted.php:131 msgid "Created At" msgstr "" -#: src/Module/Settings/TwoFactor/Trusted.php:146 +#: src/Module/Settings/TwoFactor/Trusted.php:132 msgid "Last Use" msgstr "" -#: src/Module/Settings/TwoFactor/Trusted.php:148 +#: src/Module/Settings/TwoFactor/Trusted.php:134 msgid "Remove All" msgstr "" -#: src/Module/Settings/TwoFactor/Verify.php:94 +#: src/Module/Settings/TwoFactor/Verify.php:80 msgid "Two-factor authentication successfully activated." msgstr "二要素認証が正常にアクティブ化されました。" -#: src/Module/Settings/TwoFactor/Verify.php:128 +#: src/Module/Settings/TwoFactor/Verify.php:114 #, php-format msgid "" "

Or you can submit the authentication settings manually:

\n" @@ -11336,105 +11343,105 @@ msgid "" "" msgstr "

または認証設定を手動で送信できます:

\n\t
Issuer
\n\t
%s
\n\t
Account Name
\n\t
%s
\n\t
Secret Key
\n\t
%s
\n\t
Type
\n\t
Time-based
\n\t
Number of digits
\n\t
6
\n\t
Hashing algorithm
\n\t
SHA-1
\n
" -#: src/Module/Settings/TwoFactor/Verify.php:148 +#: src/Module/Settings/TwoFactor/Verify.php:134 msgid "Two-factor code verification" msgstr "二要素コード検証" -#: src/Module/Settings/TwoFactor/Verify.php:150 +#: src/Module/Settings/TwoFactor/Verify.php:136 msgid "" "

Please scan this QR Code with your authenticator app and submit the " "provided code.

" msgstr "

このQRコードを認証アプリでスキャンして、提供されたコードを送信してください。

" -#: src/Module/Settings/TwoFactor/Verify.php:152 +#: src/Module/Settings/TwoFactor/Verify.php:138 #, php-format msgid "" "

Or you can open the following URL in your mobile device:

%s

" msgstr "

または、モバイルデバイスで次のURLを開くことができます。

%s

" -#: src/Module/Settings/TwoFactor/Verify.php:159 +#: src/Module/Settings/TwoFactor/Verify.php:145 msgid "Verify code and enable two-factor authentication" msgstr "コードを確認し、二要素認証を有効にします" -#: src/Module/Settings/UserExport.php:90 +#: src/Module/Settings/UserExport.php:76 msgid "Export account" msgstr "アカウントのエクスポート" -#: src/Module/Settings/UserExport.php:90 +#: src/Module/Settings/UserExport.php:76 msgid "" "Export your account info and contacts. Use this to make a backup of your " "account and/or to move it to another server." msgstr "アカウント情報とコンタクトをエクスポートします。これを使用して、アカウントのバックアップを作成したり、別のサーバーに移動したりします。" -#: src/Module/Settings/UserExport.php:91 +#: src/Module/Settings/UserExport.php:77 msgid "Export all" msgstr "すべてエクスポート" -#: src/Module/Settings/UserExport.php:91 +#: src/Module/Settings/UserExport.php:77 msgid "" "Export your account info, contacts and all your items as json. Could be a " "very big file, and could take a lot of time. Use this to make a full backup " "of your account (photos are not exported)" msgstr "アカウント情報、コンタクト、すべてのアイテムをjsonとしてエクスポートします。非常に大きなファイルになる可能性があり、時間がかかる可能性があります。これを使用して、アカウントの完全バックアップを作成します(写真はエクスポートされません)" -#: src/Module/Settings/UserExport.php:92 +#: src/Module/Settings/UserExport.php:78 msgid "Export Contacts to CSV" msgstr "連絡先をCSV形式でエクスポート" -#: src/Module/Settings/UserExport.php:92 +#: src/Module/Settings/UserExport.php:78 msgid "" "Export the list of the accounts you are following as CSV file. Compatible to" " e.g. Mastodon." msgstr "フォローしているアカウントのリストをCSVファイルとしてエクスポートします。 マストドンなどに対応します。" -#: src/Module/Special/DisplayNotFound.php:35 +#: src/Module/Special/DisplayNotFound.php:21 msgid "The top-level post isn't visible." msgstr "" -#: src/Module/Special/DisplayNotFound.php:36 +#: src/Module/Special/DisplayNotFound.php:22 msgid "The top-level post was deleted." msgstr "" -#: src/Module/Special/DisplayNotFound.php:37 +#: src/Module/Special/DisplayNotFound.php:23 msgid "" "This node has blocked the top-level author or the author of the shared post." msgstr "" -#: src/Module/Special/DisplayNotFound.php:38 +#: src/Module/Special/DisplayNotFound.php:24 msgid "" "You have ignored or blocked the top-level author or the author of the shared" " post." msgstr "" -#: src/Module/Special/DisplayNotFound.php:39 +#: src/Module/Special/DisplayNotFound.php:25 msgid "" "You have ignored the top-level author's server or the shared post author's " "server." msgstr "" -#: src/Module/Special/DisplayNotFound.php:45 +#: src/Module/Special/DisplayNotFound.php:31 msgid "Conversation Not Found" msgstr "" -#: src/Module/Special/DisplayNotFound.php:46 +#: src/Module/Special/DisplayNotFound.php:32 msgid "Unfortunately, the requested conversation isn't available to you." msgstr "" -#: src/Module/Special/DisplayNotFound.php:47 +#: src/Module/Special/DisplayNotFound.php:33 msgid "Possible reasons include:" msgstr "" -#: src/Module/Special/HTTPException.php:78 +#: src/Module/Special/HTTPException.php:64 msgid "Stack trace:" msgstr "" -#: src/Module/Special/HTTPException.php:83 +#: src/Module/Special/HTTPException.php:69 #, php-format msgid "Exception thrown in %s:%d" msgstr "" -#: src/Module/Tos.php:58 src/Module/Tos.php:107 +#: src/Module/Tos.php:44 src/Module/Tos.php:93 msgid "" "At the time of registration, and for providing communications between the " "user account and their contacts, the user has to provide a display name (pen" @@ -11447,14 +11454,14 @@ msgid "" "settings, it is not necessary for communication." msgstr "登録時、およびユーザーアカウントとコンタクト間の通信を提供するために、ユーザーは表示名(ペンネーム)、ユーザー名(ニックネーム)、および有効な電子メールアドレスを提供する必要があります。\n他のプロフィールの詳細が表示されていなくても、ページの訪問者はアカウントのプロフィールページで名前にアクセスできます。\n電子メールアドレスは、インタラクションに関するユーザー通知の送信にのみ使用されますが、表示されることはありません。\nノードのユーザーディレクトリまたはグローバルユーザーディレクトリでのアカウントのリストはオプションであり、ユーザー設定で制御できます。通信には必要ありません。" -#: src/Module/Tos.php:59 src/Module/Tos.php:108 +#: src/Module/Tos.php:45 src/Module/Tos.php:94 msgid "" "This data is required for communication and is passed on to the nodes of the" " communication partners and is stored there. Users can enter additional " "private data that may be transmitted to the communication partners accounts." msgstr "このデータは通信に必要であり、通信パートナーのノードに渡されてそこに保存されます。ユーザーは、通信パートナーアカウントに送信される可能性のある追加のプライベートデータを入力できます。" -#: src/Module/Tos.php:60 src/Module/Tos.php:109 +#: src/Module/Tos.php:46 src/Module/Tos.php:95 #, php-format msgid "" "At any point in time a logged in user can export their account data from the" @@ -11465,120 +11472,120 @@ msgid "" "from the nodes of the communication partners." msgstr "" -#: src/Module/Tos.php:63 src/Module/Tos.php:106 +#: src/Module/Tos.php:49 src/Module/Tos.php:92 msgid "Privacy Statement" msgstr "プライバシーに関する声明" -#: src/Module/Tos.php:103 +#: src/Module/Tos.php:89 msgid "Rules" msgstr "" -#: src/Module/Update/Display.php:45 +#: src/Module/Update/Display.php:31 msgid "Parameter uri_id is missing." msgstr "" -#: src/Module/Update/Display.php:55 +#: src/Module/Update/Display.php:41 msgid "The requested item doesn't exist or has been deleted." msgstr "要求された項目は存在しないか、削除されました。" -#: src/Module/User/Delegation.php:146 +#: src/Module/User/Delegation.php:132 #, php-format msgid "You are now logged in as %s" msgstr "" -#: src/Module/User/Delegation.php:185 +#: src/Module/User/Delegation.php:171 msgid "Switch between your accounts" msgstr "" -#: src/Module/User/Delegation.php:186 +#: src/Module/User/Delegation.php:172 msgid "Manage your accounts" msgstr "" -#: src/Module/User/Delegation.php:187 +#: src/Module/User/Delegation.php:173 msgid "" "Toggle between different identities or community/group pages which share " "your account details or which you have been granted \"manage\" permissions" msgstr "アカウントの詳細を共有する、または「管理」権限が付与されているさまざまなIDまたはコミュニティ/グループページを切り替える" -#: src/Module/User/Delegation.php:188 +#: src/Module/User/Delegation.php:174 msgid "Select an identity to manage: " msgstr "管理するIDを選択します。" -#: src/Module/User/Import.php:104 +#: src/Module/User/Import.php:90 msgid "User imports on closed servers can only be done by an administrator." msgstr "クローズドなサーバでのユーザーインポートは、管理者のみが実行できます。" -#: src/Module/User/Import.php:120 +#: src/Module/User/Import.php:106 msgid "Move account" msgstr "アカウントの移動" -#: src/Module/User/Import.php:121 +#: src/Module/User/Import.php:107 msgid "You can import an account from another Friendica server." msgstr "別のFriendicaサーバーからアカウントをインポートできます。" -#: src/Module/User/Import.php:122 +#: src/Module/User/Import.php:108 msgid "" "You need to export your account from the old server and upload it here. We " "will recreate your old account here with all your contacts. We will try also" " to inform your friends that you moved here." msgstr "古いサーバからアカウントをエクスポートして、このサーバにアップロードする必要があります。 アップロード後、このサーバが、すべてのコンタクト・元のアカウントを再作成します。 また、あなたがこのサーバに移転したことを友人にお知らせします。" -#: src/Module/User/Import.php:123 +#: src/Module/User/Import.php:109 msgid "" "This feature is experimental. We can't import contacts from the OStatus " "network (GNU Social/Statusnet) or from Diaspora" msgstr "この機能はまだ実験的なものです。 OStatusネットワーク(GNU Social / Statusnet)またはDiasporaからのコンタクトはインポートできません。" -#: src/Module/User/Import.php:124 +#: src/Module/User/Import.php:110 msgid "Account file" msgstr "アカウントファイル" -#: src/Module/User/Import.php:124 +#: src/Module/User/Import.php:110 msgid "" "To export your account, go to \"Settings->Export your personal data\" and " "select \"Export account\"" msgstr "アカウントをエクスポートするには、「設定」->「個人データのエクスポート」に進み、「アカウントのエクスポート」を選択します" -#: src/Module/User/Import.php:218 +#: src/Module/User/Import.php:204 msgid "Error decoding account file" msgstr "アカウントファイルのデコードエラー" -#: src/Module/User/Import.php:223 +#: src/Module/User/Import.php:209 msgid "Error! No version data in file! This is not a Friendica account file?" msgstr "エラー!ファイルにバージョンデータがありません!これはFriendicaアカウントファイルではなさそうです。" -#: src/Module/User/Import.php:231 +#: src/Module/User/Import.php:217 #, php-format msgid "User '%s' already exists on this server!" msgstr "ユーザー '%s' はこのサーバーに既に存在します!" -#: src/Module/User/Import.php:268 +#: src/Module/User/Import.php:254 msgid "User creation error" msgstr "ユーザ作成エラー" -#: src/Module/User/Import.php:317 +#: src/Module/User/Import.php:303 #, php-format msgid "%d contact not imported" msgid_plural "%d contacts not imported" msgstr[0] "%dコンタクトはインポートされませんでした" -#: src/Module/User/Import.php:366 +#: src/Module/User/Import.php:352 msgid "User profile creation error" msgstr "ユーザープロフィール作成エラー" -#: src/Module/User/Import.php:417 +#: src/Module/User/Import.php:403 msgid "Done. You can now login with your username and password" msgstr "完了しました。これでであなたのユーザー名とパスワードでログインできます。 " -#: src/Module/Welcome.php:44 +#: src/Module/Welcome.php:30 msgid "Welcome to Friendica" msgstr "Friendicaへようこそ" -#: src/Module/Welcome.php:45 +#: src/Module/Welcome.php:31 msgid "New Member Checklist" msgstr "新しく参加した人のチェックリスト" -#: src/Module/Welcome.php:46 +#: src/Module/Welcome.php:32 msgid "" "We would like to offer some tips and links to help make your experience " "enjoyable. Click any item to visit the relevant page. A link to this page " @@ -11586,33 +11593,33 @@ msgid "" "registration and then will quietly disappear." msgstr "私たちはあなたの経験を楽しいものにするためのいくつかのヒントとリンクを提供したいと思います。項目をクリックして、関連するページにアクセスします。このページへのリンクは、最初の登録後2週間、ホームページから表示され、その後静かに消えます。" -#: src/Module/Welcome.php:48 +#: src/Module/Welcome.php:34 msgid "Getting Started" msgstr "はじめに" -#: src/Module/Welcome.php:49 +#: src/Module/Welcome.php:35 msgid "Friendica Walk-Through" msgstr "Friendica ウォークスルー" -#: src/Module/Welcome.php:50 +#: src/Module/Welcome.php:36 msgid "" "On your Quick Start page - find a brief introduction to your " "profile and network tabs, make some new connections, and find some groups to" " join." msgstr "クイックスタートページで、プロフィールとネットワークタブの簡単な紹介を見つけ、新しい接続を作成し、参加するグループを見つけます。" -#: src/Module/Welcome.php:53 +#: src/Module/Welcome.php:39 msgid "Go to Your Settings" msgstr "設定に移動" -#: src/Module/Welcome.php:54 +#: src/Module/Welcome.php:40 msgid "" "On your Settings page - change your initial password. Also make a " "note of your Identity Address. This looks just like an email address - and " "will be useful in making friends on the free social web." msgstr "[設定]ページで、初期パスワードを変更します。また、IDアドレスを書き留めます。これはメールアドレスのように見えます。無料のソーシャルウェブで友達を作るのに役立ちます。" -#: src/Module/Welcome.php:55 +#: src/Module/Welcome.php:41 msgid "" "Review the other settings, particularly the privacy settings. An unpublished" " directory listing is like having an unlisted phone number. In general, you " @@ -11620,77 +11627,77 @@ msgid "" "potential friends know exactly how to find you." msgstr "他の設定、特にプライバシー設定を確認してください。公開されていないディレクトリ一覧は、一覧にない電話番号を持っているようなものです。一般に、おそらくあなたのリストを公開する必要があります-あなたの友人や潜在的な友人全員があなたを見つける方法を正確に知っていない限り。" -#: src/Module/Welcome.php:59 +#: src/Module/Welcome.php:45 msgid "" "Upload a profile photo if you have not done so already. Studies have shown " "that people with real photos of themselves are ten times more likely to make" " friends than people who do not." msgstr "まだプロフィール写真をアップロードしていない場合はアップロードします。研究では、自分の実際の写真を持っている人は、持っていない人よりも友達を作る可能性が10倍高いことが示されています。" -#: src/Module/Welcome.php:60 +#: src/Module/Welcome.php:46 msgid "Edit Your Profile" msgstr "プロフィールを編集する" -#: src/Module/Welcome.php:61 +#: src/Module/Welcome.php:47 msgid "" "Edit your default profile to your liking. Review the " "settings for hiding your list of friends and hiding the profile from unknown" " visitors." msgstr "お好みに合わせて既定のプロフィールを編集します。友達のリストを非表示にし、未知の訪問者からプロフィールを非表示にするための設定を確認します。" -#: src/Module/Welcome.php:62 +#: src/Module/Welcome.php:48 msgid "Profile Keywords" msgstr "プロフィールキーワード" -#: src/Module/Welcome.php:63 +#: src/Module/Welcome.php:49 msgid "" "Set some public keywords for your profile which describe your interests. We " "may be able to find other people with similar interests and suggest " "friendships." msgstr "あなたの興味を説明するいくつかの公開キーワードをプロフィールに設定します。同様の興味を持つ他の人を見つけ、友情を提案することができるかもしれません。" -#: src/Module/Welcome.php:65 +#: src/Module/Welcome.php:51 msgid "Connecting" msgstr "接続中" -#: src/Module/Welcome.php:67 +#: src/Module/Welcome.php:53 msgid "Importing Emails" msgstr "メールのインポート" -#: src/Module/Welcome.php:68 +#: src/Module/Welcome.php:54 msgid "" "Enter your email access information on your Connector Settings page if you " "wish to import and interact with friends or mailing lists from your email " "INBOX" msgstr "メールの受信トレイから友人やメーリングリストをインポートしてやり取りする場合は、コネクタ設定ページでメールアクセス情報を入力します" -#: src/Module/Welcome.php:69 +#: src/Module/Welcome.php:55 msgid "Go to Your Contacts Page" msgstr "コンタクトページに移動します" -#: src/Module/Welcome.php:70 +#: src/Module/Welcome.php:56 msgid "" "Your Contacts page is your gateway to managing friendships and connecting " "with friends on other networks. Typically you enter their address or site " "URL in the Add New Contact dialog." msgstr "コンタクトページは、友情を管理し、他のネットワーク上の友だちとつながるための入り口です。通常、新しいコンタクトの追加ダイアログにアドレスまたはサイトのURLを入力します。" -#: src/Module/Welcome.php:71 +#: src/Module/Welcome.php:57 msgid "Go to Your Site's Directory" msgstr "サイトのディレクトリに移動します" -#: src/Module/Welcome.php:72 +#: src/Module/Welcome.php:58 msgid "" "The Directory page lets you find other people in this network or other " "federated sites. Look for a Connect or Follow link on " "their profile page. Provide your own Identity Address if requested." msgstr "ディレクトリ ページでは、このネットワークまたは他のフェデレーションサイト内の他のユーザーを検索できます。プロフィールページで接続またはフォローリンクを探します。要求された場合、独自のIdentityアドレスを提供します。" -#: src/Module/Welcome.php:73 +#: src/Module/Welcome.php:59 msgid "Finding New People" msgstr "新しい人を見つける" -#: src/Module/Welcome.php:74 +#: src/Module/Welcome.php:60 msgid "" "On the side panel of the Contacts page are several tools to find new " "friends. We can match people by interest, look up people by name or " @@ -11699,412 +11706,408 @@ msgid "" "hours." msgstr "コンタクトページのサイドパネルには、新しい友達を見つけるためのいくつかのツールがあります。関心ごとに人を照合し、名前または興味ごとに人を検索し、ネットワーク関係に基づいて提案を提供できます。新しいサイトでは、通常24時間以内に友人の提案が表示され始めます。" -#: src/Module/Welcome.php:77 +#: src/Module/Welcome.php:63 msgid "Add Your Contacts To Circle" msgstr "" -#: src/Module/Welcome.php:78 +#: src/Module/Welcome.php:64 msgid "" "Once you have made some friends, organize them into private conversation " "circles from the sidebar of your Contacts page and then you can interact " "with each circle privately on your Network page." msgstr "" -#: src/Module/Welcome.php:80 +#: src/Module/Welcome.php:66 msgid "Why Aren't My Posts Public?" msgstr "投稿が一般に公開されないのはなぜですか?" -#: src/Module/Welcome.php:81 +#: src/Module/Welcome.php:67 msgid "" "Friendica respects your privacy. By default, your posts will only show up to" " people you've added as friends. For more information, see the help section " "from the link above." msgstr "Friendicaはあなたのプライバシーを尊重します。デフォルトでは、投稿は友達として追加した人にのみ表示されます。詳細については、上記のリンクのヘルプセクションを参照してください。" -#: src/Module/Welcome.php:83 +#: src/Module/Welcome.php:69 msgid "Getting Help" msgstr "ヘルプを得る" -#: src/Module/Welcome.php:84 +#: src/Module/Welcome.php:70 msgid "Go to the Help Section" msgstr "ヘルプセクションに移動" -#: src/Module/Welcome.php:85 +#: src/Module/Welcome.php:71 msgid "" "Our help pages may be consulted for detail on other program" " features and resources." msgstr "プログラムのその他の機能やリソースの詳細については、ヘルプページをご覧ください。" -#: src/Navigation/Notifications/Factory/FormattedNavNotification.php:161 +#: src/Navigation/Notifications/Factory/FormattedNavNotification.php:147 msgid "{0} wants to follow you" msgstr "" -#: src/Navigation/Notifications/Factory/FormattedNavNotification.php:163 +#: src/Navigation/Notifications/Factory/FormattedNavNotification.php:149 msgid "{0} has started following you" msgstr "" -#: src/Navigation/Notifications/Factory/FormattedNotify.php:96 +#: src/Navigation/Notifications/Factory/FormattedNotify.php:82 #, php-format msgid "%s liked %s's post" msgstr "%sが%sの投稿を高く評価しました" -#: src/Navigation/Notifications/Factory/FormattedNotify.php:108 +#: src/Navigation/Notifications/Factory/FormattedNotify.php:94 #, php-format msgid "%s disliked %s's post" msgstr "%sは%sの投稿を好きではないようです" -#: src/Navigation/Notifications/Factory/FormattedNotify.php:120 +#: src/Navigation/Notifications/Factory/FormattedNotify.php:106 #, php-format msgid "%s is attending %s's event" msgstr "%sは%sのイベントに参加しています" -#: src/Navigation/Notifications/Factory/FormattedNotify.php:132 +#: src/Navigation/Notifications/Factory/FormattedNotify.php:118 #, php-format msgid "%s is not attending %s's event" msgstr "%sは%sのイベントを欠席します" -#: src/Navigation/Notifications/Factory/FormattedNotify.php:144 +#: src/Navigation/Notifications/Factory/FormattedNotify.php:130 #, php-format msgid "%s may attending %s's event" msgstr "" -#: src/Navigation/Notifications/Factory/FormattedNotify.php:174 +#: src/Navigation/Notifications/Factory/FormattedNotify.php:160 #, php-format msgid "%s is now friends with %s" msgstr "%sは%sと友達になりました" -#: src/Navigation/Notifications/Factory/FormattedNotify.php:341 -#: src/Navigation/Notifications/Factory/FormattedNotify.php:379 +#: src/Navigation/Notifications/Factory/FormattedNotify.php:327 +#: src/Navigation/Notifications/Factory/FormattedNotify.php:365 #, php-format msgid "%s commented on %s's post" msgstr "%sが%sの投稿にコメントしました" -#: src/Navigation/Notifications/Factory/FormattedNotify.php:378 +#: src/Navigation/Notifications/Factory/FormattedNotify.php:364 #, php-format msgid "%s created a new post" msgstr "%sが新しい投稿を作成しました" -#: src/Navigation/Notifications/Factory/Introduction.php:132 +#: src/Navigation/Notifications/Factory/Introduction.php:118 msgid "Friend Suggestion" msgstr "友達の提案" -#: src/Navigation/Notifications/Factory/Introduction.php:158 +#: src/Navigation/Notifications/Factory/Introduction.php:144 msgid "Friend/Connect Request" msgstr "フレンド/接続リクエスト" -#: src/Navigation/Notifications/Factory/Introduction.php:158 -msgid "New Follower" -msgstr "新しいフォロワー" - -#: src/Navigation/Notifications/Factory/Notification.php:134 +#: src/Navigation/Notifications/Factory/Notification.php:120 #, php-format msgid "%1$s wants to follow you" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:136 +#: src/Navigation/Notifications/Factory/Notification.php:122 #, php-format msgid "%1$s has started following you" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:208 +#: src/Navigation/Notifications/Factory/Notification.php:194 #, php-format msgid "%1$s liked your comment on %2$s" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:211 +#: src/Navigation/Notifications/Factory/Notification.php:197 #, php-format msgid "%1$s liked your post %2$s" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:218 +#: src/Navigation/Notifications/Factory/Notification.php:204 #, php-format msgid "%1$s disliked your comment on %2$s" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:221 +#: src/Navigation/Notifications/Factory/Notification.php:207 #, php-format msgid "%1$s disliked your post %2$s" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:228 +#: src/Navigation/Notifications/Factory/Notification.php:214 #, php-format msgid "%1$s shared your comment %2$s" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:231 -#: src/Navigation/Notifications/Factory/Notification.php:316 +#: src/Navigation/Notifications/Factory/Notification.php:217 +#: src/Navigation/Notifications/Factory/Notification.php:302 #, php-format msgid "%1$s shared your post %2$s" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:235 -#: src/Navigation/Notifications/Factory/Notification.php:305 +#: src/Navigation/Notifications/Factory/Notification.php:221 +#: src/Navigation/Notifications/Factory/Notification.php:291 #, php-format msgid "%1$s shared the post %2$s from %3$s" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:237 -#: src/Navigation/Notifications/Factory/Notification.php:307 +#: src/Navigation/Notifications/Factory/Notification.php:223 +#: src/Navigation/Notifications/Factory/Notification.php:293 #, php-format msgid "%1$s shared a post from %3$s" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:239 -#: src/Navigation/Notifications/Factory/Notification.php:309 +#: src/Navigation/Notifications/Factory/Notification.php:225 +#: src/Navigation/Notifications/Factory/Notification.php:295 #, php-format msgid "%1$s shared the post %2$s" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:241 -#: src/Navigation/Notifications/Factory/Notification.php:311 +#: src/Navigation/Notifications/Factory/Notification.php:227 +#: src/Navigation/Notifications/Factory/Notification.php:297 #, php-format msgid "%1$s shared a post" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:249 +#: src/Navigation/Notifications/Factory/Notification.php:235 #, php-format msgid "%1$s wants to attend your event %2$s" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:256 +#: src/Navigation/Notifications/Factory/Notification.php:242 #, php-format msgid "%1$s does not want to attend your event %2$s" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:263 +#: src/Navigation/Notifications/Factory/Notification.php:249 #, php-format msgid "%1$s maybe wants to attend your event %2$s" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:270 +#: src/Navigation/Notifications/Factory/Notification.php:256 #, php-format msgid "%1$s tagged you on %2$s" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:274 +#: src/Navigation/Notifications/Factory/Notification.php:260 #, php-format msgid "%1$s replied to you on %2$s" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:278 +#: src/Navigation/Notifications/Factory/Notification.php:264 #, php-format msgid "%1$s commented in your thread %2$s" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:282 +#: src/Navigation/Notifications/Factory/Notification.php:268 #, php-format msgid "%1$s commented on your comment %2$s" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:289 +#: src/Navigation/Notifications/Factory/Notification.php:275 #, php-format msgid "%1$s commented in their thread %2$s" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:291 +#: src/Navigation/Notifications/Factory/Notification.php:277 #, php-format msgid "%1$s commented in their thread" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:293 +#: src/Navigation/Notifications/Factory/Notification.php:279 #, php-format msgid "%1$s commented in the thread %2$s from %3$s" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:295 +#: src/Navigation/Notifications/Factory/Notification.php:281 #, php-format msgid "%1$s commented in the thread from %3$s" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:300 +#: src/Navigation/Notifications/Factory/Notification.php:286 #, php-format msgid "%1$s commented on your thread %2$s" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:225 -#: src/Navigation/Notifications/Repository/Notify.php:754 +#: src/Navigation/Notifications/Repository/Notify.php:211 +#: src/Navigation/Notifications/Repository/Notify.php:740 msgid "[Friendica:Notify]" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:293 +#: src/Navigation/Notifications/Repository/Notify.php:279 #, php-format msgid "%s New mail received at %s" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:295 +#: src/Navigation/Notifications/Repository/Notify.php:281 #, php-format msgid "%1$s sent you a new private message at %2$s." msgstr "%1$s さんが %2$s に あなたにプライベートメッセージを送りました" -#: src/Navigation/Notifications/Repository/Notify.php:296 +#: src/Navigation/Notifications/Repository/Notify.php:282 msgid "a private message" msgstr "プライベートメッセージ" -#: src/Navigation/Notifications/Repository/Notify.php:296 +#: src/Navigation/Notifications/Repository/Notify.php:282 #, php-format msgid "%1$s sent you %2$s." msgstr "%1$s があなたに %2$s を送りました" -#: src/Navigation/Notifications/Repository/Notify.php:298 +#: src/Navigation/Notifications/Repository/Notify.php:284 #, php-format msgid "Please visit %s to view and/or reply to your private messages." msgstr "%s を開いて、プライベートメッセージを確認・返信してください" -#: src/Navigation/Notifications/Repository/Notify.php:328 +#: src/Navigation/Notifications/Repository/Notify.php:314 #, php-format msgid "%1$s commented on %2$s's %3$s %4$s" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:333 +#: src/Navigation/Notifications/Repository/Notify.php:319 #, php-format msgid "%1$s commented on your %2$s %3$s" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:337 +#: src/Navigation/Notifications/Repository/Notify.php:323 #, php-format msgid "%1$s commented on their %2$s %3$s" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:341 -#: src/Navigation/Notifications/Repository/Notify.php:788 +#: src/Navigation/Notifications/Repository/Notify.php:327 +#: src/Navigation/Notifications/Repository/Notify.php:774 #, php-format msgid "%1$s Comment to conversation #%2$d by %3$s" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:343 +#: src/Navigation/Notifications/Repository/Notify.php:329 #, php-format msgid "%s commented on an item/conversation you have been following." msgstr "%s さんが、あなたがフォローしている項目/会話にコメントしました" -#: src/Navigation/Notifications/Repository/Notify.php:347 -#: src/Navigation/Notifications/Repository/Notify.php:362 -#: src/Navigation/Notifications/Repository/Notify.php:814 +#: src/Navigation/Notifications/Repository/Notify.php:333 +#: src/Navigation/Notifications/Repository/Notify.php:348 +#: src/Navigation/Notifications/Repository/Notify.php:800 #, php-format msgid "Please visit %s to view and/or reply to the conversation." msgstr " %s を開いて、コメントを確認・返信してください" -#: src/Navigation/Notifications/Repository/Notify.php:354 +#: src/Navigation/Notifications/Repository/Notify.php:340 #, php-format msgid "%s %s posted to your profile wall" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:356 +#: src/Navigation/Notifications/Repository/Notify.php:342 #, php-format msgid "%1$s posted to your profile wall at %2$s" msgstr "%1$s が %2$s に あなたのプロフィールウォールへ投稿しました" -#: src/Navigation/Notifications/Repository/Notify.php:357 +#: src/Navigation/Notifications/Repository/Notify.php:343 #, php-format msgid "%1$s posted to [url=%2$s]your wall[/url]" msgstr "%1$s が [url=%2$s]あなたのウォール[/url] に投稿しました" -#: src/Navigation/Notifications/Repository/Notify.php:370 +#: src/Navigation/Notifications/Repository/Notify.php:356 #, php-format msgid "%s Introduction received" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:372 +#: src/Navigation/Notifications/Repository/Notify.php:358 #, php-format msgid "You've received an introduction from '%1$s' at %2$s" msgstr "'%1$s' から %2$s に 招待が来ています" -#: src/Navigation/Notifications/Repository/Notify.php:373 +#: src/Navigation/Notifications/Repository/Notify.php:359 #, php-format msgid "You've received [url=%1$s]an introduction[/url] from %2$s." msgstr "[url=%1$s]招待[/url] が %2$s から来ています。" -#: src/Navigation/Notifications/Repository/Notify.php:378 -#: src/Navigation/Notifications/Repository/Notify.php:424 +#: src/Navigation/Notifications/Repository/Notify.php:364 +#: src/Navigation/Notifications/Repository/Notify.php:410 #, php-format msgid "You may visit their profile at %s" msgstr "彼らのプロフィールを %s にて開けるかもしれません。" -#: src/Navigation/Notifications/Repository/Notify.php:380 +#: src/Navigation/Notifications/Repository/Notify.php:366 #, php-format msgid "Please visit %s to approve or reject the introduction." msgstr " %s を開いて、招待を承諾・拒否してください。" -#: src/Navigation/Notifications/Repository/Notify.php:387 +#: src/Navigation/Notifications/Repository/Notify.php:373 #, php-format msgid "%s A new person is sharing with you" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:389 -#: src/Navigation/Notifications/Repository/Notify.php:390 +#: src/Navigation/Notifications/Repository/Notify.php:375 +#: src/Navigation/Notifications/Repository/Notify.php:376 #, php-format msgid "%1$s is sharing with you at %2$s" msgstr "%1$s さんが %2$s にて あなたの投稿を共有しました" -#: src/Navigation/Notifications/Repository/Notify.php:397 +#: src/Navigation/Notifications/Repository/Notify.php:383 #, php-format msgid "%s You have a new follower" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:399 -#: src/Navigation/Notifications/Repository/Notify.php:400 +#: src/Navigation/Notifications/Repository/Notify.php:385 +#: src/Navigation/Notifications/Repository/Notify.php:386 #, php-format msgid "You have a new follower at %2$s : %1$s" msgstr "新しいフォロワーです %2$s : %1$s" -#: src/Navigation/Notifications/Repository/Notify.php:413 +#: src/Navigation/Notifications/Repository/Notify.php:399 #, php-format msgid "%s Friend suggestion received" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:415 +#: src/Navigation/Notifications/Repository/Notify.php:401 #, php-format msgid "You've received a friend suggestion from '%1$s' at %2$s" msgstr "'%1$s' より %2$s に 友達の候補を受け取りました" -#: src/Navigation/Notifications/Repository/Notify.php:416 +#: src/Navigation/Notifications/Repository/Notify.php:402 #, php-format msgid "" "You've received [url=%1$s]a friend suggestion[/url] for %2$s from %3$s." msgstr "%3$s から %2$s への [url=%1$s]友達の候補[/url] を受け取りました。" -#: src/Navigation/Notifications/Repository/Notify.php:422 +#: src/Navigation/Notifications/Repository/Notify.php:408 msgid "Name:" msgstr "名前:" -#: src/Navigation/Notifications/Repository/Notify.php:423 +#: src/Navigation/Notifications/Repository/Notify.php:409 msgid "Photo:" msgstr "写真:" -#: src/Navigation/Notifications/Repository/Notify.php:426 +#: src/Navigation/Notifications/Repository/Notify.php:412 #, php-format msgid "Please visit %s to approve or reject the suggestion." msgstr "%s を開いて、候補を承諾・拒否してください。" -#: src/Navigation/Notifications/Repository/Notify.php:434 -#: src/Navigation/Notifications/Repository/Notify.php:449 +#: src/Navigation/Notifications/Repository/Notify.php:420 +#: src/Navigation/Notifications/Repository/Notify.php:435 #, php-format msgid "%s Connection accepted" msgstr "%s つながりが承諾されました" -#: src/Navigation/Notifications/Repository/Notify.php:436 -#: src/Navigation/Notifications/Repository/Notify.php:451 +#: src/Navigation/Notifications/Repository/Notify.php:422 +#: src/Navigation/Notifications/Repository/Notify.php:437 #, php-format msgid "'%1$s' has accepted your connection request at %2$s" msgstr "'%1$s' は %2$s に あなたからのつながりの申込みを承諾しました" -#: src/Navigation/Notifications/Repository/Notify.php:437 -#: src/Navigation/Notifications/Repository/Notify.php:452 +#: src/Navigation/Notifications/Repository/Notify.php:423 +#: src/Navigation/Notifications/Repository/Notify.php:438 #, php-format msgid "%2$s has accepted your [url=%1$s]connection request[/url]." msgstr "%2$s は あなたからの [url=%1$s]つながりの申し込み[/url] を承諾しました。" -#: src/Navigation/Notifications/Repository/Notify.php:442 +#: src/Navigation/Notifications/Repository/Notify.php:428 msgid "" "You are now mutual friends and may exchange status updates, photos, and " "email without restriction." msgstr "あなたたちは友達になりました。ステータスの更新、写真、メールを制限なくやりとりできます。" -#: src/Navigation/Notifications/Repository/Notify.php:444 +#: src/Navigation/Notifications/Repository/Notify.php:430 #, php-format msgid "Please visit %s if you wish to make any changes to this relationship." msgstr "このつながりを変更する場合は %s を開いてください。" -#: src/Navigation/Notifications/Repository/Notify.php:457 +#: src/Navigation/Notifications/Repository/Notify.php:443 #, php-format msgid "" "'%1$s' has chosen to accept you a fan, which restricts some forms of " @@ -12113,34 +12116,34 @@ msgid "" "automatically." msgstr "'%1$s' はあなたをファンとして受け入れました。プライベートメッセージやプロフィール インタラクションなど、一部のやりとりは制限されています。 有名人またはコミュニティページの場合、これらの設定は自動的に適用されます。" -#: src/Navigation/Notifications/Repository/Notify.php:459 +#: src/Navigation/Notifications/Repository/Notify.php:445 #, php-format msgid "" "'%1$s' may choose to extend this into a two-way or more permissive " "relationship in the future." msgstr "'%1$s' は後日、これを双方向・より寛容な関係へと拡張する場合があります。" -#: src/Navigation/Notifications/Repository/Notify.php:461 +#: src/Navigation/Notifications/Repository/Notify.php:447 #, php-format msgid "Please visit %s if you wish to make any changes to this relationship." msgstr "このつながりを変更する場合は %s を開いてください。" -#: src/Navigation/Notifications/Repository/Notify.php:471 +#: src/Navigation/Notifications/Repository/Notify.php:457 msgid "registration request" msgstr "登録リクエスト" -#: src/Navigation/Notifications/Repository/Notify.php:473 +#: src/Navigation/Notifications/Repository/Notify.php:459 #, php-format msgid "You've received a registration request from '%1$s' at %2$s" msgstr "'%1$s' より %2$s に 登録リクエストを受け取りました" -#: src/Navigation/Notifications/Repository/Notify.php:474 +#: src/Navigation/Notifications/Repository/Notify.php:460 #, php-format msgid "You've received a [url=%1$s]registration request[/url] from %2$s." msgstr "[url=%1$s]登録リクエスト[/url] が %2$s から来ています。" -#: src/Navigation/Notifications/Repository/Notify.php:479 -#: src/Navigation/Notifications/Repository/Notify.php:500 +#: src/Navigation/Notifications/Repository/Notify.php:465 +#: src/Navigation/Notifications/Repository/Notify.php:486 #, php-format msgid "" "Display Name:\t%s\n" @@ -12148,767 +12151,754 @@ msgid "" "Login Name:\t%s (%s)" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:485 +#: src/Navigation/Notifications/Repository/Notify.php:471 #, php-format msgid "Please visit %s to approve or reject the request." msgstr "%s を開いて、リクエストを承諾・拒否してください。" -#: src/Navigation/Notifications/Repository/Notify.php:492 +#: src/Navigation/Notifications/Repository/Notify.php:478 msgid "new registration" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:494 +#: src/Navigation/Notifications/Repository/Notify.php:480 #, php-format msgid "You've received a new registration from '%1$s' at %2$s" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:495 +#: src/Navigation/Notifications/Repository/Notify.php:481 #, php-format msgid "You've received a [url=%1$s]new registration[/url] from %2$s." msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:506 +#: src/Navigation/Notifications/Repository/Notify.php:492 #, php-format msgid "Please visit %s to have a look at the new registration." msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:782 +#: src/Navigation/Notifications/Repository/Notify.php:768 #, php-format msgid "%s %s tagged you" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:785 +#: src/Navigation/Notifications/Repository/Notify.php:771 #, php-format msgid "%s %s shared a new post" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:793 +#: src/Navigation/Notifications/Repository/Notify.php:779 #, php-format msgid "%1$s %2$s liked your post #%3$d" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:796 +#: src/Navigation/Notifications/Repository/Notify.php:782 #, php-format msgid "%1$s %2$s liked your comment on #%3$d" msgstr "" -#: src/Object/EMail/ItemCCEMail.php:42 +#: src/Object/EMail/ItemCCEMail.php:28 #, php-format msgid "" "This message was sent to you by %s, a member of the Friendica social " "network." msgstr "このメッセージは、Friendicaソーシャルネットワークのメンバーである%sから送信されました。" -#: src/Object/EMail/ItemCCEMail.php:44 +#: src/Object/EMail/ItemCCEMail.php:30 #, php-format msgid "You may visit them online at %s" msgstr "あなたは%sでそれらをオンラインで訪れることができます" -#: src/Object/EMail/ItemCCEMail.php:45 +#: src/Object/EMail/ItemCCEMail.php:31 msgid "" "Please contact the sender by replying to this post if you do not wish to " "receive these messages." msgstr "これらのメッセージを受信したくない場合は、この投稿に返信して送信者に連絡してください。" -#: src/Object/EMail/ItemCCEMail.php:49 +#: src/Object/EMail/ItemCCEMail.php:35 #, php-format msgid "%s posted an update." msgstr "%sが更新を投稿しました。" -#: src/Object/Post.php:138 +#: src/Object/Post.php:124 msgid "Private Message" msgstr "自分のみ" -#: src/Object/Post.php:142 +#: src/Object/Post.php:128 msgid "Public Message" msgstr "" -#: src/Object/Post.php:146 +#: src/Object/Post.php:132 msgid "Unlisted Message" msgstr "" -#: src/Object/Post.php:182 +#: src/Object/Post.php:168 msgid "This entry was edited" msgstr "このエントリは編集されました" -#: src/Object/Post.php:210 +#: src/Object/Post.php:196 msgid "Connector Message" msgstr "" -#: src/Object/Post.php:239 src/Object/Post.php:241 +#: src/Object/Post.php:225 src/Object/Post.php:227 msgid "Edit" msgstr "編集" -#: src/Object/Post.php:275 +#: src/Object/Post.php:261 msgid "Delete globally" msgstr "グローバルに削除" -#: src/Object/Post.php:275 +#: src/Object/Post.php:261 msgid "Remove locally" msgstr "ローカルで削除" -#: src/Object/Post.php:282 +#: src/Object/Post.php:268 #, php-format msgid "Block %s" msgstr "" -#: src/Object/Post.php:287 +#: src/Object/Post.php:273 #, php-format msgid "Ignore %s" msgstr "" -#: src/Object/Post.php:292 +#: src/Object/Post.php:278 #, php-format msgid "Collapse %s" msgstr "" -#: src/Object/Post.php:296 +#: src/Object/Post.php:282 msgid "Report post" msgstr "" -#: src/Object/Post.php:307 +#: src/Object/Post.php:293 msgid "Save to folder" msgstr "フォルダーに保存" -#: src/Object/Post.php:347 +#: src/Object/Post.php:333 msgid "I will attend" msgstr "参加します" -#: src/Object/Post.php:347 +#: src/Object/Post.php:333 msgid "I will not attend" msgstr "私は出席しません" -#: src/Object/Post.php:347 +#: src/Object/Post.php:333 msgid "I might attend" msgstr "私は出席するかもしれません" -#: src/Object/Post.php:394 +#: src/Object/Post.php:380 msgid "Ignore thread" msgstr "スレッドを無視" -#: src/Object/Post.php:395 +#: src/Object/Post.php:381 msgid "Unignore thread" msgstr "無視しないスレッド" -#: src/Object/Post.php:396 +#: src/Object/Post.php:382 msgid "Toggle ignore status" msgstr "" -#: src/Object/Post.php:406 +#: src/Object/Post.php:392 msgid "Add star" msgstr "" -#: src/Object/Post.php:407 +#: src/Object/Post.php:393 msgid "Remove star" msgstr "" -#: src/Object/Post.php:408 +#: src/Object/Post.php:394 msgid "Toggle star status" msgstr "" -#: src/Object/Post.php:419 +#: src/Object/Post.php:405 msgid "Pin" msgstr "" -#: src/Object/Post.php:420 +#: src/Object/Post.php:406 msgid "Unpin" msgstr "" -#: src/Object/Post.php:421 +#: src/Object/Post.php:407 msgid "Toggle pin status" msgstr "" -#: src/Object/Post.php:424 +#: src/Object/Post.php:410 msgid "Pinned" msgstr "" -#: src/Object/Post.php:429 +#: src/Object/Post.php:415 msgid "Add tag" msgstr "" -#: src/Object/Post.php:444 +#: src/Object/Post.php:430 msgid "Quote share this" msgstr "" -#: src/Object/Post.php:444 +#: src/Object/Post.php:430 msgid "Quote Share" msgstr "" -#: src/Object/Post.php:447 +#: src/Object/Post.php:433 msgid "Reshare this" msgstr "" -#: src/Object/Post.php:447 +#: src/Object/Post.php:433 msgid "Reshare" msgstr "" -#: src/Object/Post.php:448 +#: src/Object/Post.php:434 msgid "Cancel your Reshare" msgstr "" -#: src/Object/Post.php:448 +#: src/Object/Post.php:434 msgid "Unshare" msgstr "" -#: src/Object/Post.php:492 +#: src/Object/Post.php:478 #, php-format msgid "%s (Received %s)" msgstr "%s (%s を受け取りました)" -#: src/Object/Post.php:498 +#: src/Object/Post.php:484 msgid "Comment this item on your system" msgstr "" -#: src/Object/Post.php:498 +#: src/Object/Post.php:484 msgid "Remote comment" msgstr "" -#: src/Object/Post.php:520 +#: src/Object/Post.php:506 msgid "Share via ..." msgstr "" -#: src/Object/Post.php:520 +#: src/Object/Post.php:506 msgid "Share via external services" msgstr "" -#: src/Object/Post.php:527 +#: src/Object/Post.php:513 msgid "Unknown parent" msgstr "" -#: src/Object/Post.php:531 +#: src/Object/Post.php:517 #, php-format msgid "in reply to %s" msgstr "" -#: src/Object/Post.php:533 +#: src/Object/Post.php:519 msgid "Parent is probably private or not federated." msgstr "" -#: src/Object/Post.php:557 +#: src/Object/Post.php:543 msgid "to" msgstr "に" -#: src/Object/Post.php:558 +#: src/Object/Post.php:544 msgid "via" msgstr "投稿先:" -#: src/Object/Post.php:559 +#: src/Object/Post.php:545 msgid "Wall-to-Wall" msgstr "壁間" -#: src/Object/Post.php:560 +#: src/Object/Post.php:546 msgid "via Wall-To-Wall:" msgstr "Wall-to-Wall経由:" -#: src/Object/Post.php:613 +#: src/Object/Post.php:599 #, php-format msgid "Reply to %s" msgstr "%sへの返信" -#: src/Object/Post.php:616 +#: src/Object/Post.php:602 msgid "More" msgstr "更に" -#: src/Object/Post.php:635 +#: src/Object/Post.php:621 msgid "Notifier task is pending" msgstr "通知タスクは保留中です" -#: src/Object/Post.php:636 +#: src/Object/Post.php:622 msgid "Delivery to remote servers is pending" msgstr "リモートサーバーへの配信は保留中です" -#: src/Object/Post.php:637 +#: src/Object/Post.php:623 msgid "Delivery to remote servers is underway" msgstr "リモートサーバーへの配信が進行中です" -#: src/Object/Post.php:638 +#: src/Object/Post.php:624 msgid "Delivery to remote servers is mostly done" msgstr "リモートサーバーへの配信はもうすぐ完了します" -#: src/Object/Post.php:639 +#: src/Object/Post.php:625 msgid "Delivery to remote servers is done" msgstr "リモートサーバーへの配信が完了しました" -#: src/Object/Post.php:661 +#: src/Object/Post.php:647 #, php-format msgid "%d comment" msgid_plural "%d comments" msgstr[0] "%dコメント" -#: src/Object/Post.php:662 +#: src/Object/Post.php:648 msgid "Show more" msgstr "もっと見せる" -#: src/Object/Post.php:663 +#: src/Object/Post.php:649 msgid "Show fewer" msgstr "表示を減らす" -#: src/Object/Post.php:700 +#: src/Object/Post.php:686 #, php-format msgid "Reshared by: %s" msgstr "" -#: src/Object/Post.php:705 +#: src/Object/Post.php:691 #, php-format msgid "Viewed by: %s" msgstr "" -#: src/Object/Post.php:710 +#: src/Object/Post.php:696 #, php-format msgid "Read by: %s" msgstr "" -#: src/Object/Post.php:715 +#: src/Object/Post.php:701 #, php-format msgid "Liked by: %s" msgstr "" -#: src/Object/Post.php:720 +#: src/Object/Post.php:706 #, php-format msgid "Disliked by: %s" msgstr "" -#: src/Object/Post.php:725 +#: src/Object/Post.php:711 #, php-format msgid "Attended by: %s" msgstr "" -#: src/Object/Post.php:730 +#: src/Object/Post.php:716 #, php-format msgid "Maybe attended by: %s" msgstr "" -#: src/Object/Post.php:735 +#: src/Object/Post.php:721 #, php-format msgid "Not attended by: %s" msgstr "" -#: src/Object/Post.php:740 +#: src/Object/Post.php:726 #, php-format msgid "Commented by: %s" msgstr "" -#: src/Object/Post.php:745 +#: src/Object/Post.php:731 #, php-format msgid "Reacted with %s by: %s" msgstr "" -#: src/Object/Post.php:768 +#: src/Object/Post.php:754 #, php-format msgid "Quote shared by: %s" msgstr "" -#: src/Protocol/ActivityPub/Receiver.php:568 +#: src/Protocol/ActivityPub/Receiver.php:557 msgid "Chat" msgstr "" -#: src/Protocol/Delivery.php:544 +#: src/Protocol/Delivery.php:530 msgid "(no subject)" msgstr "" -#: src/Protocol/OStatus.php:1392 -#, php-format -msgid "%s is now following %s." -msgstr "%sは現在 %s をフォローしています。" - -#: src/Protocol/OStatus.php:1393 -msgid "following" -msgstr "フォローしている" - -#: src/Protocol/OStatus.php:1396 -#, php-format -msgid "%s stopped following %s." -msgstr "%s は %s のフォローを解除しました" - -#: src/Protocol/OStatus.php:1397 -msgid "stopped following" -msgstr "フォローを解除しました" - -#: src/Render/FriendicaSmartyEngine.php:56 +#: src/Render/FriendicaSmartyEngine.php:42 #, php-format msgid "The folder %s must be writable by webserver." msgstr "" -#: src/Security/Authentication.php:216 +#: src/Security/Authentication.php:200 msgid "Login failed." msgstr "ログインに失敗しました。" -#: src/Security/Authentication.php:261 +#: src/Security/Authentication.php:245 msgid "Login failed. Please check your credentials." msgstr "ログインに失敗しました。認証情報を確かめてください。" -#: src/Security/Authentication.php:375 +#: src/Security/Authentication.php:359 #, php-format msgid "Welcome %s" msgstr "ようこそ%s" -#: src/Security/Authentication.php:376 +#: src/Security/Authentication.php:360 msgid "Please upload a profile photo." msgstr "プロフィール写真をアップロードしてください。" -#: src/Util/EMailer/MailBuilder.php:260 +#: src/Security/OpenWebAuth.php:149 +#, php-format +msgid "OpenWebAuth: %1$s welcomes %2$s" +msgstr "OpenWebAuth: %2$sさん、%1$sへようこそ" + +#: src/Util/EMailer/MailBuilder.php:246 msgid "Friendica Notification" msgstr "Friendica の通知" -#: src/Util/EMailer/NotifyMailBuilder.php:78 -#: src/Util/EMailer/SystemMailBuilder.php:54 +#: src/Util/EMailer/NotifyMailBuilder.php:64 +#: src/Util/EMailer/SystemMailBuilder.php:40 #, php-format msgid "%1$s, %2$s Administrator" msgstr "" -#: src/Util/EMailer/NotifyMailBuilder.php:80 -#: src/Util/EMailer/SystemMailBuilder.php:56 +#: src/Util/EMailer/NotifyMailBuilder.php:66 +#: src/Util/EMailer/SystemMailBuilder.php:42 #, php-format msgid "%s Administrator" msgstr "" -#: src/Util/EMailer/NotifyMailBuilder.php:193 -#: src/Util/EMailer/NotifyMailBuilder.php:217 -#: src/Util/EMailer/SystemMailBuilder.php:101 -#: src/Util/EMailer/SystemMailBuilder.php:118 +#: src/Util/EMailer/NotifyMailBuilder.php:179 +#: src/Util/EMailer/NotifyMailBuilder.php:203 +#: src/Util/EMailer/SystemMailBuilder.php:87 +#: src/Util/EMailer/SystemMailBuilder.php:104 msgid "thanks" msgstr "" -#: src/Util/Temporal.php:172 +#: src/Util/Temporal.php:158 msgid "YYYY-MM-DD or MM-DD" msgstr "YYYY-MM-DDまたはMM-DD" -#: src/Util/Temporal.php:280 +#: src/Util/Temporal.php:266 #, php-format msgid "Time zone: %s Change in Settings" msgstr "" -#: src/Util/Temporal.php:320 src/Util/Temporal.php:329 +#: src/Util/Temporal.php:306 src/Util/Temporal.php:315 msgid "never" msgstr "" -#: src/Util/Temporal.php:343 +#: src/Util/Temporal.php:329 msgid "less than a second ago" msgstr "1秒以内前" -#: src/Util/Temporal.php:352 +#: src/Util/Temporal.php:338 msgid "year" msgstr "年" -#: src/Util/Temporal.php:352 +#: src/Util/Temporal.php:338 msgid "years" msgstr "年" -#: src/Util/Temporal.php:353 +#: src/Util/Temporal.php:339 msgid "months" msgstr "月" -#: src/Util/Temporal.php:354 +#: src/Util/Temporal.php:340 msgid "weeks" msgstr "週間" -#: src/Util/Temporal.php:355 +#: src/Util/Temporal.php:341 msgid "days" msgstr "日" -#: src/Util/Temporal.php:356 +#: src/Util/Temporal.php:342 msgid "hour" msgstr "時間" -#: src/Util/Temporal.php:356 +#: src/Util/Temporal.php:342 msgid "hours" msgstr "時間" -#: src/Util/Temporal.php:357 +#: src/Util/Temporal.php:343 msgid "minute" msgstr "分" -#: src/Util/Temporal.php:357 +#: src/Util/Temporal.php:343 msgid "minutes" msgstr "分" -#: src/Util/Temporal.php:358 +#: src/Util/Temporal.php:344 msgid "second" msgstr "秒" -#: src/Util/Temporal.php:358 +#: src/Util/Temporal.php:344 msgid "seconds" msgstr "秒" -#: src/Util/Temporal.php:367 +#: src/Util/Temporal.php:353 #, php-format msgid "in %1$d %2$s" msgstr "" -#: src/Util/Temporal.php:370 +#: src/Util/Temporal.php:356 #, php-format msgid "%1$d %2$s ago" msgstr "%1$d%2$s前" -#: src/Worker/PushSubscription.php:110 +#: src/Worker/PushSubscription.php:96 msgid "Notification from Friendica" msgstr "" -#: src/Worker/PushSubscription.php:111 +#: src/Worker/PushSubscription.php:97 msgid "Empty Post" msgstr "" -#: view/theme/duepuntozero/config.php:68 +#: view/theme/duepuntozero/config.php:56 msgid "default" msgstr "" -#: view/theme/duepuntozero/config.php:69 +#: view/theme/duepuntozero/config.php:57 msgid "greenzero" msgstr "" -#: view/theme/duepuntozero/config.php:70 +#: view/theme/duepuntozero/config.php:58 msgid "purplezero" msgstr "" -#: view/theme/duepuntozero/config.php:71 +#: view/theme/duepuntozero/config.php:59 msgid "easterbunny" msgstr "" -#: view/theme/duepuntozero/config.php:72 +#: view/theme/duepuntozero/config.php:60 msgid "darkzero" msgstr "" -#: view/theme/duepuntozero/config.php:73 +#: view/theme/duepuntozero/config.php:61 msgid "comix" msgstr "" -#: view/theme/duepuntozero/config.php:74 +#: view/theme/duepuntozero/config.php:62 msgid "slackr" msgstr "" -#: view/theme/duepuntozero/config.php:87 +#: view/theme/duepuntozero/config.php:75 msgid "Variations" msgstr "" -#: view/theme/frio/config.php:146 +#: view/theme/frio/config.php:134 msgid "Note" msgstr "" -#: view/theme/frio/config.php:146 +#: view/theme/frio/config.php:134 msgid "Check image permissions if all users are allowed to see the image" msgstr "" -#: view/theme/frio/config.php:152 +#: view/theme/frio/config.php:140 msgid "Appearance" msgstr "" -#: view/theme/frio/config.php:153 +#: view/theme/frio/config.php:141 msgid "Accent color" msgstr "" -#: view/theme/frio/config.php:153 +#: view/theme/frio/config.php:141 msgid "Blue" msgstr "" -#: view/theme/frio/config.php:153 +#: view/theme/frio/config.php:141 msgid "Red" msgstr "" -#: view/theme/frio/config.php:153 +#: view/theme/frio/config.php:141 msgid "Purple" msgstr "" -#: view/theme/frio/config.php:153 +#: view/theme/frio/config.php:141 msgid "Green" msgstr "" -#: view/theme/frio/config.php:153 +#: view/theme/frio/config.php:141 msgid "Pink" msgstr "" -#: view/theme/frio/config.php:154 +#: view/theme/frio/config.php:142 msgid "Copy or paste schemestring" msgstr "スキーム文字列のコピーまたは貼り付け" -#: view/theme/frio/config.php:154 +#: view/theme/frio/config.php:142 msgid "" "You can copy this string to share your theme with others. Pasting here " "applies the schemestring" msgstr "この文字列をコピーして、テーマを他の人と共有できます。ここに貼り付けると、スキーム文字列が適用されます" -#: view/theme/frio/config.php:155 +#: view/theme/frio/config.php:143 msgid "Navigation bar background color" msgstr "ナビゲーションバーの背景色" -#: view/theme/frio/config.php:156 +#: view/theme/frio/config.php:144 msgid "Navigation bar icon color " msgstr "" -#: view/theme/frio/config.php:157 +#: view/theme/frio/config.php:145 msgid "Link color" msgstr "" -#: view/theme/frio/config.php:158 +#: view/theme/frio/config.php:146 msgid "Set the background color" msgstr "" -#: view/theme/frio/config.php:159 +#: view/theme/frio/config.php:147 msgid "Content background opacity" msgstr "" -#: view/theme/frio/config.php:160 +#: view/theme/frio/config.php:148 msgid "Set the background image" msgstr "" -#: view/theme/frio/config.php:161 +#: view/theme/frio/config.php:149 msgid "Background image style" msgstr "" -#: view/theme/frio/config.php:164 +#: view/theme/frio/config.php:152 msgid "Always open Compose page" msgstr "" -#: view/theme/frio/config.php:164 +#: view/theme/frio/config.php:152 msgid "" "The New Post button always open the 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:168 +#: view/theme/frio/config.php:156 msgid "Login page background image" msgstr "" -#: view/theme/frio/config.php:172 +#: view/theme/frio/config.php:160 msgid "Login page background color" msgstr "" -#: view/theme/frio/config.php:172 +#: view/theme/frio/config.php:160 msgid "Leave background image and color empty for theme defaults" msgstr "" -#: view/theme/frio/php/Image.php:39 +#: view/theme/frio/php/Image.php:27 msgid "Top Banner" msgstr "" -#: view/theme/frio/php/Image.php:39 +#: view/theme/frio/php/Image.php:27 msgid "" "Resize image to the width of the screen and show background color below on " "long pages." msgstr "" -#: view/theme/frio/php/Image.php:40 +#: view/theme/frio/php/Image.php:28 msgid "Full screen" msgstr "" -#: view/theme/frio/php/Image.php:40 +#: view/theme/frio/php/Image.php:28 msgid "" "Resize image to fill entire screen, clipping either the right or the bottom." msgstr "" -#: view/theme/frio/php/Image.php:41 +#: view/theme/frio/php/Image.php:29 msgid "Single row mosaic" msgstr "" -#: view/theme/frio/php/Image.php:41 +#: view/theme/frio/php/Image.php:29 msgid "" "Resize image to repeat it on a single row, either vertical or horizontal." msgstr "" -#: view/theme/frio/php/Image.php:42 +#: view/theme/frio/php/Image.php:30 msgid "Mosaic" msgstr "" -#: view/theme/frio/php/Image.php:42 +#: view/theme/frio/php/Image.php:30 msgid "Repeat image to fill the screen." msgstr "" -#: view/theme/frio/php/default.php:82 view/theme/frio/php/standard.php:40 +#: view/theme/frio/php/default.php:70 view/theme/frio/php/standard.php:28 msgid "Skip to main content" msgstr "" -#: view/theme/frio/php/default.php:153 view/theme/frio/php/standard.php:75 +#: view/theme/frio/php/default.php:141 view/theme/frio/php/standard.php:63 msgid "Back to top" msgstr "" -#: view/theme/frio/php/scheme.php:105 +#: view/theme/frio/php/scheme.php:93 msgid "Light" msgstr "" -#: view/theme/frio/php/scheme.php:106 +#: view/theme/frio/php/scheme.php:94 msgid "Dark" msgstr "" -#: view/theme/frio/php/scheme.php:107 +#: view/theme/frio/php/scheme.php:95 msgid "Black" msgstr "" -#: view/theme/frio/php/scheme.php:118 +#: view/theme/frio/php/scheme.php:106 msgid "Custom" msgstr "" -#: view/theme/frio/theme.php:214 +#: view/theme/frio/theme.php:202 msgid "Guest" msgstr "" -#: view/theme/frio/theme.php:217 +#: view/theme/frio/theme.php:205 msgid "Visitor" msgstr "" -#: view/theme/quattro/config.php:89 +#: view/theme/quattro/config.php:77 msgid "Alignment" msgstr "" -#: view/theme/quattro/config.php:89 +#: view/theme/quattro/config.php:77 msgid "Left" msgstr "" -#: view/theme/quattro/config.php:89 +#: view/theme/quattro/config.php:77 msgid "Center" msgstr "" -#: view/theme/quattro/config.php:90 +#: view/theme/quattro/config.php:78 msgid "Color scheme" msgstr "" -#: view/theme/quattro/config.php:91 +#: view/theme/quattro/config.php:79 msgid "Posts font size" msgstr "" -#: view/theme/quattro/config.php:92 +#: view/theme/quattro/config.php:80 msgid "Textareas font size" msgstr "" -#: view/theme/vier/config.php:91 +#: view/theme/vier/config.php:79 msgid "Comma separated list of helper groups" msgstr "" -#: view/theme/vier/config.php:131 +#: view/theme/vier/config.php:119 msgid "don't show" msgstr "" -#: view/theme/vier/config.php:131 +#: view/theme/vier/config.php:119 msgid "show" msgstr "" -#: view/theme/vier/config.php:137 +#: view/theme/vier/config.php:125 msgid "Set style" msgstr "" -#: view/theme/vier/config.php:138 +#: view/theme/vier/config.php:126 msgid "Community Pages" msgstr "" -#: view/theme/vier/config.php:139 view/theme/vier/theme.php:148 +#: view/theme/vier/config.php:127 view/theme/vier/theme.php:136 msgid "Community Profiles" msgstr "" -#: view/theme/vier/config.php:140 +#: view/theme/vier/config.php:128 msgid "Help or @NewHere ?" msgstr "" -#: view/theme/vier/config.php:141 view/theme/vier/theme.php:319 +#: view/theme/vier/config.php:129 view/theme/vier/theme.php:307 msgid "Connect Services" msgstr "" -#: view/theme/vier/config.php:142 +#: view/theme/vier/config.php:130 msgid "Find Friends" msgstr "" -#: view/theme/vier/config.php:143 view/theme/vier/theme.php:175 +#: view/theme/vier/config.php:131 view/theme/vier/theme.php:163 msgid "Last users" msgstr "" -#: view/theme/vier/theme.php:234 +#: view/theme/vier/theme.php:222 msgid "Quick Start" msgstr "" diff --git a/view/lang/ja/strings.php b/view/lang/ja/strings.php index a9295114ff..9466a9beb7 100644 --- a/view/lang/ja/strings.php +++ b/view/lang/ja/strings.php @@ -587,7 +587,6 @@ $a->strings['An author or name was not found.'] = '著者または名前が見 $a->strings['No browser URL could be matched to this address.'] = 'このアドレスに一致するブラウザURLはありません。'; $a->strings['Unable to match @-style Identity Address with a known protocol or email contact.'] = '@スタイルのIDアドレスを既知のプロトコルまたは電子メールのコンタクトと一致させることができません。'; $a->strings['Use mailto: in front of address to force email check.'] = 'メールチェックを強制するには、アドレスの前にmailto:を使用します。'; -$a->strings['The profile address specified belongs to a network which has been disabled on this site.'] = '指定されたプロフィールアドレスは、このサイトで無効にされたネットワークに属します。'; $a->strings['Limited profile. This person will be unable to receive direct/personal notifications from you.'] = '限定公開のプロフィールです。この人はあなたから直接/個人的な通知を受け取ることができません。'; $a->strings['Unable to retrieve contact information.'] = 'コンタクト情報を取得できません。'; $a->strings['Starts:'] = '開始:'; @@ -630,7 +629,6 @@ $a->strings['g A l F d'] = 'g A l F d'; $a->strings['[No description]'] = '[説明なし]'; $a->strings['Event Reminders'] = 'イベントリマインダー'; $a->strings['Upcoming events the next 7 days:'] = '今後7日間の今後のイベント:'; -$a->strings['OpenWebAuth: %1$s welcomes %2$s'] = 'OpenWebAuth: %2$sさん、%1$sへようこそ'; $a->strings['Hometown:'] = '出身地:'; $a->strings['Sexual Preference:'] = '性的嗜好:'; $a->strings['Political Views:'] = '政見:'; @@ -875,7 +873,6 @@ $a->strings['When the database cleanup is enabled, this defines the days after w $a->strings['Lifespan of unclaimed items'] = '請求されていない項目の寿命'; $a->strings['When the database cleanup is enabled, this defines the days after which unclaimed remote items (mostly content from the relay) will be deleted. Default value is 90 days. Defaults to the general lifespan value of remote items if set to 0.'] = 'データベースのクリーンアップが有効になっている場合、これは、要求されていないリモート項目(主に中継からのコンテンツ)が削除されるまでの日数を定義します。デフォルト値は90日です。 0に設定されている場合、リモート項目の一般的なライフスパン値がデフォルトになります。'; $a->strings['Lifespan of raw conversation data'] = 'Raw会話データの寿命'; -$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.'] = '会話データは、ActivityPubおよびOStatusに使用されるほか、デバッグにも使用されます。 14日後に削除しても安全です。デフォルトは90日です。'; $a->strings['Maximum numbers of comments per post'] = '投稿あたりのコメントの最大数'; $a->strings['How much comments should be shown for each post? Default value is 100.'] = '各投稿に表示されるコメントの数は?デフォルト値は100です。'; $a->strings['Temp path'] = '一時パス'; @@ -1055,7 +1052,6 @@ $a->strings['Submit Request'] = 'リクエストを送る'; $a->strings['You already added this contact.'] = 'このコンタクトは既に追加されています。'; $a->strings['The network type couldn\'t be detected. Contact can\'t be added.'] = 'ネットワークの種類を検出できませんでした。コンタクトを追加できません。'; $a->strings['Diaspora support isn\'t enabled. Contact can\'t be added.'] = 'Diasporaのサポートは有効になっていません。コンタクトを追加できません。'; -$a->strings['OStatus support is disabled. Contact can\'t be added.'] = 'OStatusサポートは無効です。コンタクトを追加できません。'; $a->strings['Please answer the following:'] = '以下に答えてください。'; $a->strings['Your Identity Address:'] = 'あなたのIdentityアドレス:'; $a->strings['Profile URL'] = 'プロフィールURL'; @@ -1367,8 +1363,6 @@ $a->strings['Show unread'] = '未読を表示'; $a->strings['{0} requested registration'] = '{0}は登録をリクエストしました'; $a->strings['Authorize application connection'] = 'アプリからの接続を承認します'; $a->strings['Do you want to authorize this application to access your posts and contacts, and/or create new posts for you?'] = 'このアプリケーションによる、あなたの投稿・コンタクトの読み取りや、新しい投稿の作成を許可しますか?'; -$a->strings['Resubscribing to OStatus contacts'] = 'Ostatusコンタクトをもう一度購読します'; -$a->strings['Keep this window open until done.'] = 'ウィンドウを閉じずにお待ちください…'; $a->strings['No contact provided.'] = 'コンタクトは提供されていません。'; $a->strings['Couldn\'t fetch information for contact.'] = 'コンタクトの情報を取得できませんでした。'; $a->strings['Couldn\'t fetch friends for contact.'] = 'コンタクトの友達関係を取得できませんでした。'; @@ -1376,6 +1370,7 @@ $a->strings['Done'] = '完了'; $a->strings['success'] = '成功'; $a->strings['failed'] = '失敗'; $a->strings['ignored'] = '無視'; +$a->strings['Keep this window open until done.'] = 'ウィンドウを閉じずにお待ちください…'; $a->strings['The Photo with id %s is not available.'] = 'ID%sの写真は利用できません'; $a->strings['Invalid photo with id %s.'] = 'ID %s の写真が無効です。'; $a->strings['Edit post'] = '投稿を編集'; @@ -1391,9 +1386,9 @@ $a->strings['Model not found'] = 'モジュールが見つかりません'; $a->strings['Remote privacy information not available.'] = 'リモートプライバシー情報は利用できません。'; $a->strings['Visible to:'] = '表示先:'; $a->strings['No contacts.'] = 'コンタクトはありません。'; -$a->strings['%s\'s timeline'] = '%sのタイムライン'; $a->strings['%s\'s posts'] = '%sの投稿'; $a->strings['%s\'s comments'] = '%sのコメント'; +$a->strings['%s\'s timeline'] = '%sのタイムライン'; $a->strings['Image exceeds size limit of %s'] = '画像サイズ上限 %s を超えています。'; $a->strings['Image upload didn\'t complete, please try again'] = '画像のアップロードが完了しませんでした。もう一度お試しください'; $a->strings['Image file is missing'] = '画像ファイルがありません'; @@ -1581,13 +1576,11 @@ $a->strings['Description'] = '説明'; $a->strings['Add'] = '追加'; $a->strings['Failed to connect with email account using the settings provided.'] = '提供された設定を使用してメールアカウントに接続できませんでした。'; $a->strings['Diaspora (Socialhome, Hubzilla)'] = 'Diaspora(Socialhome、Hubzilla)'; -$a->strings['OStatus (GNU Social)'] = 'OStatus (GNU Social)'; $a->strings['Email access is disabled on this site.'] = 'このサイトではメールアクセスが無効になっています。'; $a->strings['None'] = '無し'; $a->strings['General Social Media Settings'] = '一般的なソーシャルメディア設定'; $a->strings['Attach the link title'] = 'リンクの件名を添付します'; $a->strings['When activated, the title of the attached link will be added as a title on posts to Diaspora. This is mostly helpful with "remote-self" contacts that share feed content.'] = '有効にすると、添付されたリンクのタイトルがDiasporaへの投稿のタイトルとして追加されます。 これは主に、フィードコンテンツを共有する「リモート セルフ」コンタクトで役立ちます。'; -$a->strings['Repair OStatus subscriptions'] = 'OStatusサブスクリプションを修復する'; $a->strings['Email/Mailbox Setup'] = 'メール/メールボックスのセットアップ'; $a->strings['If you wish to communicate with email contacts using this service (optional), please specify how to connect to your mailbox.'] = 'このサービス(オプション)を使用してメールコンタクトと通信する場合は、メールボックスへの接続方法を指定してください。'; $a->strings['Last successful email check:'] = '最後に成功したメールチェック:'; @@ -1815,7 +1808,6 @@ $a->strings['%s commented on %s\'s post'] = '%sが%sの投稿にコメントし $a->strings['%s created a new post'] = '%sが新しい投稿を作成しました'; $a->strings['Friend Suggestion'] = '友達の提案'; $a->strings['Friend/Connect Request'] = 'フレンド/接続リクエスト'; -$a->strings['New Follower'] = '新しいフォロワー'; $a->strings['%1$s sent you a new private message at %2$s.'] = '%1$s さんが %2$s に あなたにプライベートメッセージを送りました'; $a->strings['a private message'] = 'プライベートメッセージ'; $a->strings['%1$s sent you %2$s.'] = '%1$s があなたに %2$s を送りました'; @@ -1879,14 +1871,11 @@ $a->strings['%d comment'] = [ ]; $a->strings['Show more'] = 'もっと見せる'; $a->strings['Show fewer'] = '表示を減らす'; -$a->strings['%s is now following %s.'] = '%sは現在 %s をフォローしています。'; -$a->strings['following'] = 'フォローしている'; -$a->strings['%s stopped following %s.'] = '%s は %s のフォローを解除しました'; -$a->strings['stopped following'] = 'フォローを解除しました'; $a->strings['Login failed.'] = 'ログインに失敗しました。'; $a->strings['Login failed. Please check your credentials.'] = 'ログインに失敗しました。認証情報を確かめてください。'; $a->strings['Welcome %s'] = 'ようこそ%s'; $a->strings['Please upload a profile photo.'] = 'プロフィール写真をアップロードしてください。'; +$a->strings['OpenWebAuth: %1$s welcomes %2$s'] = 'OpenWebAuth: %2$sさん、%1$sへようこそ'; $a->strings['Friendica Notification'] = 'Friendica の通知'; $a->strings['YYYY-MM-DD or MM-DD'] = 'YYYY-MM-DDまたはMM-DD'; $a->strings['less than a second ago'] = '1秒以内前'; diff --git a/view/lang/nl/messages.po b/view/lang/nl/messages.po index fea9924c75..947ac13e26 100644 --- a/view/lang/nl/messages.po +++ b/view/lang/nl/messages.po @@ -1,8 +1,7 @@ # FRIENDICA Distributed Social Network -# SPDX-FileCopyrightText: Copyright (C) 2010-2024, the Friendica project -# -# SPDX-License-Identifier: AGPL-3.0-or-later -# +# Copyright (C) 2010-2024, the Friendica project +# This file is distributed under the same license as the Friendica package. +# # Translators: # Casper , 2019-2020 # eddy2508 , 2013 @@ -21,7 +20,7 @@ msgid "" msgstr "" "Project-Id-Version: friendica\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-05-15 12:16+0000\n" +"POT-Creation-Date: 2024-10-07 20:46+0000\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" @@ -31,77 +30,77 @@ msgstr "" "Language: nl\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: mod/item.php:101 mod/item.php:104 mod/item.php:171 mod/item.php:174 +#: mod/item.php:89 mod/item.php:92 mod/item.php:159 mod/item.php:162 msgid "Unable to locate original post." msgstr "Ik kan de originele post niet meer vinden." -#: mod/item.php:139 +#: mod/item.php:127 msgid "Post updated." msgstr "Post geupdate." -#: mod/item.php:204 mod/item.php:208 +#: mod/item.php:192 mod/item.php:196 msgid "Item wasn't stored." msgstr "Item is niet opgeslagen." -#: mod/item.php:218 +#: mod/item.php:206 msgid "Item couldn't be fetched." msgstr "Item kan niet worden opgehaald." -#: mod/item.php:260 mod/item.php:264 +#: mod/item.php:250 mod/item.php:254 msgid "Empty post discarded." msgstr "Lege post weggegooid." -#: mod/item.php:435 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 +#: mod/item.php:425 src/Module/Admin/Themes/Details.php:31 +#: src/Module/Admin/Themes/Index.php:51 src/Module/Debug/ItemBody.php:28 +#: src/Module/Debug/ItemBody.php:43 src/Module/Item/Feed.php:66 msgid "Item not found." msgstr "Item niet gevonden." -#: mod/item.php:459 mod/message.php:66 mod/message.php:112 mod/notes.php:45 -#: mod/photos.php:146 mod/photos.php:662 src/Model/Event.php:520 -#: src/Module/Attach.php:55 src/Module/BaseApi.php:103 -#: src/Module/BaseNotifications.php:98 src/Module/BaseSettings.php:50 -#: src/Module/Calendar/Event/API.php:88 src/Module/Calendar/Event/Form.php:84 -#: src/Module/Calendar/Export.php:82 src/Module/Calendar/Show.php:82 -#: src/Module/Circle.php:41 src/Module/Circle.php:84 -#: src/Module/Contact/Advanced.php:60 src/Module/Contact/Follow.php:87 -#: src/Module/Contact/Follow.php:160 src/Module/Contact/MatchInterests.php:87 -#: src/Module/Contact/Suggestions.php:54 src/Module/Contact/Unfollow.php:66 -#: src/Module/Contact/Unfollow.php:80 src/Module/Contact/Unfollow.php:112 -#: src/Module/FollowConfirm.php:38 src/Module/FriendSuggest.php:57 -#: src/Module/Invite.php:42 src/Module/Invite.php:131 -#: src/Module/Notifications/Notification.php:76 -#: src/Module/Notifications/Notification.php:107 -#: src/Module/OStatus/Repair.php:60 src/Module/OStatus/Subscribe.php:68 -#: src/Module/Post/Edit.php:76 src/Module/Profile/Common.php:75 -#: src/Module/Profile/Contacts.php:78 src/Module/Profile/Photos.php:92 -#: src/Module/Profile/Schedule.php:39 src/Module/Profile/Schedule.php:56 -#: src/Module/Register.php:78 src/Module/Register.php:91 -#: src/Module/Register.php:207 src/Module/Register.php:246 -#: src/Module/Search/Directory.php:37 src/Module/Settings/Account.php:50 -#: src/Module/Settings/Account.php:386 src/Module/Settings/Channels.php:66 -#: src/Module/Settings/Channels.php:141 src/Module/Settings/Delegation.php:90 -#: src/Module/Settings/Display.php:90 src/Module/Settings/Display.php:197 -#: src/Module/Settings/Profile/Photo/Crop.php:165 -#: src/Module/Settings/Profile/Photo/Index.php:110 -#: src/Module/Settings/RemoveMe.php:119 src/Module/Settings/UserExport.php:78 -#: src/Module/Settings/UserExport.php:114 -#: src/Module/Settings/UserExport.php:213 -#: src/Module/Settings/UserExport.php:233 -#: src/Module/Settings/UserExport.php:298 src/Module/User/Delegation.php:154 -#: src/Module/User/Import.php:85 src/Module/User/Import.php:92 +#: mod/item.php:449 mod/message.php:54 mod/message.php:100 mod/notes.php:33 +#: mod/photos.php:135 mod/photos.php:627 src/Model/Event.php:506 +#: src/Module/Attach.php:41 src/Module/BaseApi.php:89 +#: src/Module/BaseNotifications.php:84 src/Module/BaseSettings.php:36 +#: src/Module/Calendar/Event/API.php:74 src/Module/Calendar/Event/Form.php:70 +#: src/Module/Calendar/Export.php:68 src/Module/Calendar/Show.php:68 +#: src/Module/Circle.php:27 src/Module/Circle.php:70 +#: src/Module/Contact/Advanced.php:46 src/Module/Contact/Follow.php:73 +#: src/Module/Contact/Follow.php:141 src/Module/Contact/MatchInterests.php:73 +#: src/Module/Contact/Suggestions.php:40 src/Module/Contact/Unfollow.php:52 +#: src/Module/Contact/Unfollow.php:66 src/Module/Contact/Unfollow.php:98 +#: src/Module/FollowConfirm.php:24 src/Module/FriendSuggest.php:43 +#: src/Module/Invite.php:28 src/Module/Invite.php:117 +#: src/Module/Notifications/Notification.php:62 +#: src/Module/Notifications/Notification.php:93 +#: src/Module/OStatus/Subscribe.php:54 src/Module/Post/Edit.php:62 +#: src/Module/Profile/Common.php:61 src/Module/Profile/Contacts.php:64 +#: src/Module/Profile/Photos.php:78 src/Module/Profile/Schedule.php:25 +#: src/Module/Profile/Schedule.php:42 src/Module/Register.php:70 +#: src/Module/Register.php:83 src/Module/Register.php:199 +#: src/Module/Register.php:238 src/Module/Search/Directory.php:23 +#: src/Module/Settings/Account.php:36 src/Module/Settings/Account.php:377 +#: src/Module/Settings/Channels.php:52 src/Module/Settings/Channels.php:127 +#: src/Module/Settings/Delegation.php:76 src/Module/Settings/Display.php:76 +#: src/Module/Settings/Display.php:183 +#: src/Module/Settings/Profile/Photo/Crop.php:151 +#: src/Module/Settings/Profile/Photo/Index.php:96 +#: src/Module/Settings/RemoveMe.php:105 src/Module/Settings/UserExport.php:64 +#: src/Module/Settings/UserExport.php:100 +#: src/Module/Settings/UserExport.php:199 +#: src/Module/Settings/UserExport.php:219 +#: src/Module/Settings/UserExport.php:284 src/Module/User/Delegation.php:140 +#: src/Module/User/Import.php:71 src/Module/User/Import.php:78 msgid "Permission denied." msgstr "Toegang geweigerd" -#: mod/lostpass.php:40 +#: mod/lostpass.php:28 msgid "No valid account found." msgstr "Geen geldige account gevonden." -#: mod/lostpass.php:52 +#: mod/lostpass.php:40 msgid "Password reset request issued. Check your email." msgstr "Verzoek om wachtwoord opnieuw in te stellen werd verstuurd. Kijk uw e-mail na." -#: mod/lostpass.php:58 +#: mod/lostpass.php:46 #, php-format msgid "" "\n" @@ -117,7 +116,7 @@ msgid "" "\t\tissued this request." msgstr "\n\t\tBeste %1$s,\n\t\t\tEr is recent om \"%2$s\" een verzoek gekomen om je wachtwoord te resetten.\n\t\tOm dit verzoek te bevestigen, gelieve de verificatie link hieronder te volgen of in je browser te kopiëren.\n\n\t\tAls je dit verzoek NIET hebt gedaan, volg deze link dan NIET en negeer \n\t\ten/of verwijder deze email, het verzoek zal binnenkort vanzelf ongeldig worden.\n\n\t\tJe wachtwoord zal niet aangepast worden tenzij we kunnen verifiëren\n\t\tdat je dit verzoek verzonden hebt." -#: mod/lostpass.php:69 +#: mod/lostpass.php:57 #, php-format msgid "" "\n" @@ -134,70 +133,70 @@ msgid "" "\t\tLogin Name:\t%3$s" msgstr "\n\t\tVolg nu deze link om je identiteit te bevestigen:\n\n\t\t%1$s\n\n\t\tJe zal dan een boodschap krijgen met je nieuw wachtwoord.\n\t\tJe kunt je wachtwoord veranderen in je instelling pagina nadat je ingelogd bent.\n\n\t\tDe login details zijn de volgende:\n\n\t\tSite locatie:\t%2$s\n\t\tLogin naam:\t%3$s" -#: mod/lostpass.php:84 +#: mod/lostpass.php:72 #, php-format msgid "Password reset requested at %s" msgstr "Op %s werd gevraagd je wachtwoord opnieuw in te stellen" -#: mod/lostpass.php:100 +#: mod/lostpass.php:88 msgid "" "Request could not be verified. (You may have previously submitted it.) " "Password reset failed." msgstr "Verzoek kon niet geverifieerd worden. (Misschien heb je het voordien al ingediend.) Wachtwoord niet opnieuw ingesteld." -#: mod/lostpass.php:113 +#: mod/lostpass.php:101 msgid "Request has expired, please make a new one." msgstr "Aanvraag is verlopen, gelieve een nieuwe aan te maken." -#: mod/lostpass.php:128 +#: mod/lostpass.php:116 msgid "Forgot your Password?" msgstr "Wachtwoord vergeten?" -#: mod/lostpass.php:129 +#: mod/lostpass.php:117 msgid "" "Enter your email address and submit to have your password reset. Then check " "your email for further instructions." msgstr "Voer je e-mailadres in en verstuur het om je wachtwoord opnieuw in te stellen. Kijk dan je e-mail na voor verdere instructies." -#: mod/lostpass.php:130 src/Module/Security/Login.php:160 +#: mod/lostpass.php:118 src/Module/Security/Login.php:150 msgid "Nickname or Email: " msgstr "Bijnaam of e-mail:" -#: mod/lostpass.php:131 +#: mod/lostpass.php:119 msgid "Reset" msgstr "Opnieuw" -#: mod/lostpass.php:146 src/Module/Security/Login.php:172 +#: mod/lostpass.php:134 src/Module/Security/Login.php:162 msgid "Password Reset" msgstr "Wachtwoord opnieuw instellen" -#: mod/lostpass.php:147 +#: mod/lostpass.php:135 msgid "Your password has been reset as requested." msgstr "Je wachtwoord is opnieuw ingesteld zoals gevraagd." -#: mod/lostpass.php:148 +#: mod/lostpass.php:136 msgid "Your new password is" msgstr "Je nieuwe wachtwoord is" -#: mod/lostpass.php:149 +#: mod/lostpass.php:137 msgid "Save or copy your new password - and then" msgstr "Bewaar of kopieer je nieuw wachtwoord - en dan" -#: mod/lostpass.php:150 +#: mod/lostpass.php:138 msgid "click here to login" msgstr "klik hier om in te loggen" -#: mod/lostpass.php:151 +#: mod/lostpass.php:139 msgid "" "Your password may be changed from the Settings page after " "successful login." msgstr "Je kunt dit wachtwoord veranderen nadat je bent ingelogd op de Instellingen> pagina." -#: mod/lostpass.php:155 +#: mod/lostpass.php:143 msgid "Your password has been reset." msgstr "Je wachtwoord is opnieuw ingesteld." -#: mod/lostpass.php:158 +#: mod/lostpass.php:146 #, php-format msgid "" "\n" @@ -208,7 +207,7 @@ msgid "" "\t\t" msgstr "\n\t\t\tBeste %1$s,\n\t\t\t\tJe wachtwoord is aangepast zoals je gevraagd hebt. Hou deze informatie\n\t\t\talstublieft bij (of pas je wachtwoord onmiddellijk aan\n\t\t\tnaar iets wat je je kan herinneren).\n\t\t" -#: mod/lostpass.php:164 +#: mod/lostpass.php:152 #, php-format msgid "" "\n" @@ -222,2408 +221,2415 @@ msgid "" "\t\t" msgstr "\n\t\t\tJe login details zijn de volgende:\n\n\t\t\tSite Locatie:\t%1$s\n\t\t\tLogin Naam:\t%2$s\n\t\t\tWachtwwoord:\t%3$s\n\n\t\t\tJe kan dit wachtwoord in het account instellingen aanpassen nadat je ingelogd bent.\n\t\t" -#: mod/lostpass.php:176 +#: mod/lostpass.php:164 #, php-format msgid "Your password has been changed at %s" msgstr "Je wachtwoord is veranderd op %s" -#: mod/message.php:45 mod/message.php:127 src/Content/Nav.php:321 +#: mod/message.php:33 mod/message.php:115 src/Content/Nav.php:307 msgid "New Message" msgstr "Nieuw Bericht" -#: mod/message.php:81 +#: mod/message.php:69 msgid "No recipient selected." msgstr "Geen ontvanger geselecteerd." -#: mod/message.php:86 +#: mod/message.php:74 msgid "Unable to locate contact information." msgstr "Ik kan geen contact informatie vinden." -#: mod/message.php:90 +#: mod/message.php:78 msgid "Message could not be sent." msgstr "Bericht kon niet verzonden worden." -#: mod/message.php:94 +#: mod/message.php:82 msgid "Message collection failure." msgstr "Fout bij het verzamelen van berichten." -#: mod/message.php:121 src/Module/Notifications/Introductions.php:135 -#: src/Module/Notifications/Introductions.php:170 -#: src/Module/Notifications/Notification.php:85 +#: mod/message.php:109 src/Module/Notifications/Introductions.php:127 +#: src/Module/Notifications/Introductions.php:162 +#: src/Module/Notifications/Notification.php:71 msgid "Discard" msgstr "Verwerpen" -#: mod/message.php:134 src/Content/Nav.php:318 view/theme/frio/theme.php:244 +#: mod/message.php:122 src/Content/Nav.php:304 view/theme/frio/theme.php:232 msgid "Messages" msgstr "Privéberichten" -#: mod/message.php:147 +#: mod/message.php:135 msgid "Conversation not found." msgstr "Gesprek niet gevonden." -#: mod/message.php:152 +#: mod/message.php:140 msgid "Message was not deleted." msgstr "Bericht was niet gewist." -#: mod/message.php:167 +#: mod/message.php:155 msgid "Conversation was not removed." msgstr "Conversatie was niet verwijderd." -#: mod/message.php:180 mod/message.php:285 +#: mod/message.php:168 mod/message.php:273 msgid "Please enter a link URL:" msgstr "Vul een internetadres/URL in:" -#: mod/message.php:189 +#: mod/message.php:177 msgid "Send Private Message" msgstr "Verstuur privébericht" -#: mod/message.php:190 mod/message.php:345 -#: src/Module/Privacy/PermissionTooltip.php:132 +#: mod/message.php:178 mod/message.php:333 +#: src/Module/Privacy/PermissionTooltip.php:118 msgid "To:" msgstr "Aan:" -#: mod/message.php:191 mod/message.php:346 +#: mod/message.php:179 mod/message.php:334 msgid "Subject:" msgstr "Onderwerp:" -#: mod/message.php:195 mod/message.php:349 src/Module/Invite.php:171 +#: mod/message.php:183 mod/message.php:337 src/Module/Invite.php:157 msgid "Your message:" msgstr "Jouw bericht:" -#: mod/message.php:198 mod/message.php:353 src/Content/Conversation.php:369 -#: src/Module/Post/Edit.php:131 +#: mod/message.php:186 mod/message.php:341 src/Content/Conversation.php:355 +#: src/Module/Post/Edit.php:117 msgid "Upload photo" msgstr "Foto uploaden" -#: mod/message.php:199 mod/message.php:354 src/Module/Post/Edit.php:135 +#: mod/message.php:187 mod/message.php:342 src/Module/Post/Edit.php:121 msgid "Insert web link" msgstr "Voeg een webadres in" -#: mod/message.php:200 mod/message.php:356 mod/photos.php:1290 -#: src/Content/Conversation.php:400 src/Content/Conversation.php:1576 -#: src/Module/Item/Compose.php:213 src/Module/Post/Edit.php:145 -#: src/Object/Post.php:618 +#: mod/message.php:188 mod/message.php:344 mod/photos.php:1255 +#: src/Content/Conversation.php:386 src/Content/Conversation.php:1562 +#: src/Module/Item/Compose.php:199 src/Module/Post/Edit.php:131 +#: src/Object/Post.php:604 msgid "Please wait" msgstr "Even geduld" -#: mod/message.php:201 mod/message.php:355 mod/photos.php:693 -#: mod/photos.php:813 mod/photos.php:1090 mod/photos.php:1131 -#: mod/photos.php:1187 mod/photos.php:1267 -#: src/Module/Calendar/Event/Form.php:250 src/Module/Contact/Advanced.php:132 +#: mod/message.php:189 mod/message.php:343 mod/photos.php:658 +#: mod/photos.php:778 mod/photos.php:1055 mod/photos.php:1096 +#: mod/photos.php:1152 mod/photos.php:1232 +#: src/Module/Calendar/Event/Form.php:236 src/Module/Contact/Advanced.php:118 #: src/Module/Contact/Profile.php:370 -#: src/Module/Debug/ActivityPubConversion.php:140 -#: 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 -#: src/Module/Invite.php:178 src/Module/Item/Compose.php:196 -#: src/Module/Moderation/Item/Source.php:79 -#: src/Module/Moderation/Report/Create.php:168 -#: src/Module/Moderation/Report/Create.php:183 -#: src/Module/Moderation/Report/Create.php:211 -#: src/Module/Moderation/Report/Create.php:263 -#: src/Module/Profile/Profile.php: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:1159 view/theme/duepuntozero/config.php:85 -#: view/theme/frio/config.php:150 view/theme/quattro/config.php:87 -#: view/theme/vier/config.php:135 +#: src/Module/Debug/ActivityPubConversion.php:132 +#: src/Module/Debug/Babel.php:307 src/Module/Debug/Localtime.php:50 +#: src/Module/Debug/Probe.php:40 src/Module/Debug/WebFinger.php:37 +#: src/Module/FriendSuggest.php:131 src/Module/Install.php:220 +#: src/Module/Install.php:260 src/Module/Install.php:295 +#: src/Module/Invite.php:164 src/Module/Item/Compose.php:182 +#: src/Module/Moderation/Item/Source.php:71 +#: src/Module/Moderation/Report/Create.php:154 +#: src/Module/Moderation/Report/Create.php:169 +#: src/Module/Moderation/Report/Create.php:197 +#: src/Module/Moderation/Report/Create.php:249 +#: src/Module/Profile/Profile.php:262 +#: src/Module/Settings/Profile/Index.php:248 +#: src/Module/Settings/Server/Action.php:65 src/Module/User/Delegation.php:175 +#: src/Object/Post.php:1145 view/theme/duepuntozero/config.php:73 +#: view/theme/frio/config.php:138 view/theme/quattro/config.php:75 +#: view/theme/vier/config.php:123 msgid "Submit" msgstr "Verstuur" -#: mod/message.php:222 +#: mod/message.php:210 msgid "No messages." msgstr "Geen berichten." -#: mod/message.php:278 +#: mod/message.php:266 msgid "Message not available." msgstr "Bericht niet beschikbaar." -#: mod/message.php:322 +#: mod/message.php:310 msgid "Delete message" msgstr "Verwijder bericht" -#: mod/message.php:324 mod/message.php:453 +#: mod/message.php:312 mod/message.php:441 msgid "D, d M Y - g:i A" msgstr "D, d M Y - g:i A" -#: mod/message.php:339 mod/message.php:450 +#: mod/message.php:327 mod/message.php:438 msgid "Delete conversation" msgstr "Verwijder gesprek" -#: mod/message.php:341 +#: mod/message.php:329 msgid "" "No secure communications available. You may be able to " "respond from the sender's profile page." msgstr "Geen beveiligde communicatie beschikbaar. Je kunt misschien antwoorden vanaf de profiel-pagina van de afzender." -#: mod/message.php:344 +#: mod/message.php:332 msgid "Send Reply" msgstr "Verstuur Antwoord" -#: mod/message.php:424 +#: mod/message.php:412 #, php-format msgid "Unknown sender - %s" msgstr "Onbekende afzender - %s" -#: mod/message.php:426 +#: mod/message.php:414 #, php-format msgid "You and %s" msgstr "Jij en %s" -#: mod/message.php:428 +#: mod/message.php:416 #, php-format msgid "%s and You" msgstr "%s en jij" -#: mod/message.php:456 +#: mod/message.php:444 #, php-format msgid "%d message" msgid_plural "%d messages" msgstr[0] "%d bericht" msgstr[1] "%d berichten" -#: mod/notes.php:52 src/Module/BaseProfile.php:108 +#: mod/notes.php:40 src/Module/BaseProfile.php:94 msgid "Personal Notes" msgstr "Persoonlijke Nota's" -#: mod/notes.php:56 +#: mod/notes.php:44 msgid "Personal notes are visible only by yourself." msgstr "" -#: mod/notes.php:57 src/Content/Text/HTML.php:861 -#: src/Module/Admin/Storage.php:142 src/Module/Filer/SaveTag.php:74 -#: src/Module/Post/Edit.php:129 src/Module/Settings/Channels.php:229 +#: mod/notes.php:45 src/Content/Text/HTML.php:847 +#: src/Module/Admin/Storage.php:128 src/Module/Filer/SaveTag.php:60 +#: src/Module/Post/Edit.php:115 src/Module/Settings/Channels.php:215 msgid "Save" msgstr "Bewaren" -#: mod/photos.php:65 mod/photos.php:128 mod/photos.php:572 -#: src/Model/Event.php:512 src/Model/Profile.php:234 -#: src/Module/Calendar/Export.php:74 src/Module/Calendar/Show.php:74 -#: src/Module/DFRN/Poll.php:43 src/Module/Feed.php:64 src/Module/HCard.php:51 -#: src/Module/Profile/Common.php:62 src/Module/Profile/Common.php:71 -#: src/Module/Profile/Contacts.php:64 src/Module/Profile/Contacts.php:72 -#: src/Module/Profile/Conversations.php:91 src/Module/Profile/Media.php:56 -#: src/Module/Profile/Photos.php:83 src/Module/Profile/RemoteFollow.php:71 -#: src/Module/Register.php:268 +#: mod/photos.php:54 mod/photos.php:117 mod/photos.php:537 +#: src/Model/Event.php:498 src/Model/Profile.php:213 +#: src/Module/Calendar/Export.php:60 src/Module/Calendar/Show.php:60 +#: src/Module/Feed.php:52 src/Module/HCard.php:37 +#: src/Module/Profile/Common.php:48 src/Module/Profile/Common.php:57 +#: src/Module/Profile/Contacts.php:50 src/Module/Profile/Contacts.php:58 +#: src/Module/Profile/Conversations.php:77 src/Module/Profile/Media.php:42 +#: src/Module/Profile/Photos.php:69 src/Module/Profile/RemoteFollow.php:57 +#: src/Module/Register.php:260 msgid "User not found." msgstr "Gebruiker niet gevonden." -#: mod/photos.php:102 src/Module/BaseProfile.php:68 -#: src/Module/Profile/Photos.php:375 +#: mod/photos.php:91 src/Module/BaseProfile.php:54 +#: src/Module/Profile/Photos.php:361 msgid "Photo Albums" msgstr "Fotoalbums" -#: mod/photos.php:103 src/Module/Profile/Photos.php:376 -#: src/Module/Profile/Photos.php:396 +#: mod/photos.php:92 src/Module/Profile/Photos.php:362 +#: src/Module/Profile/Photos.php:382 msgid "Recent Photos" msgstr "Recente foto's" -#: mod/photos.php:105 mod/photos.php:861 src/Module/Profile/Photos.php:378 -#: src/Module/Profile/Photos.php:398 +#: mod/photos.php:94 mod/photos.php:826 src/Module/Profile/Photos.php:364 +#: src/Module/Profile/Photos.php:384 msgid "Upload New Photos" msgstr "Nieuwe foto's uploaden" -#: mod/photos.php:117 src/Module/BaseSettings.php:72 -#: src/Module/Profile/Photos.php:359 +#: mod/photos.php:106 src/Module/BaseSettings.php:58 +#: src/Module/Profile/Photos.php:345 msgid "everybody" msgstr "iedereen" -#: mod/photos.php:153 +#: mod/photos.php:142 msgid "Contact information unavailable" msgstr "Contactinformatie niet beschikbaar" -#: mod/photos.php:182 +#: mod/photos.php:171 msgid "Album not found." msgstr "Album niet gevonden" -#: mod/photos.php:238 +#: mod/photos.php:227 msgid "Album successfully deleted" msgstr "Album succesvol gedeeld" -#: mod/photos.php:240 +#: mod/photos.php:229 msgid "Album was empty." msgstr "Het album was leeg" -#: mod/photos.php:271 +#: mod/photos.php:260 msgid "Failed to delete the photo." msgstr "Foto verwijderen mislukt." -#: mod/photos.php:539 +#: mod/photos.php:504 msgid "a photo" msgstr "een foto" -#: mod/photos.php:539 +#: mod/photos.php:504 #, 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:576 src/Module/Conversation/Community.php:160 -#: src/Module/Directory.php:48 src/Module/Profile/Photos.php:293 -#: src/Module/Search/Index.php:65 +#: mod/photos.php:541 src/Module/Conversation/Community.php:148 +#: src/Module/Directory.php:35 src/Module/Profile/Photos.php:279 +#: src/Module/Search/Index.php:51 msgid "Public access denied." msgstr "Niet vrij toegankelijk" -#: mod/photos.php:581 +#: mod/photos.php:546 msgid "No photos selected" msgstr "Geen foto's geselecteerd" -#: mod/photos.php:709 +#: mod/photos.php:674 #, php-format msgid "The maximum accepted image size is %s" msgstr "" -#: mod/photos.php:716 +#: mod/photos.php:681 msgid "Upload Photos" msgstr "Upload foto's" -#: mod/photos.php:720 mod/photos.php:809 +#: mod/photos.php:685 mod/photos.php:774 msgid "New album name: " msgstr "Nieuwe albumnaam: " -#: mod/photos.php:721 +#: mod/photos.php:686 msgid "or select existing album:" msgstr "Of selecteer bestaand album:" -#: mod/photos.php:722 +#: mod/photos.php:687 msgid "Do not show a status post for this upload" msgstr "Toon geen bericht op je tijdlijn van deze upload" -#: mod/photos.php:725 mod/photos.php:1086 src/Content/Conversation.php:402 -#: src/Module/Calendar/Event/Form.php:253 src/Module/Post/Edit.php:183 +#: mod/photos.php:690 mod/photos.php:1051 src/Content/Conversation.php:388 +#: src/Module/Calendar/Event/Form.php:239 src/Module/Post/Edit.php:169 msgid "Permissions" msgstr "Rechten" -#: mod/photos.php:790 +#: mod/photos.php:755 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:791 mod/photos.php:814 +#: mod/photos.php:756 mod/photos.php:779 msgid "Delete Album" msgstr "Verwijder album" -#: mod/photos.php:792 mod/photos.php:892 src/Content/Conversation.php:417 -#: 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 -#: src/Module/Media/Photo/Browser.php:88 src/Module/Post/Edit.php:167 -#: src/Module/Post/Tag/Remove.php:109 src/Module/Profile/RemoteFollow.php:134 -#: src/Module/Security/TwoFactor/SignOut.php:125 +#: mod/photos.php:757 mod/photos.php:857 src/Content/Conversation.php:403 +#: src/Module/Contact/Follow.php:154 src/Module/Contact/Revoke.php:92 +#: src/Module/Contact/Unfollow.php:112 +#: src/Module/Media/Attachment/Browser.php:63 +#: src/Module/Media/Photo/Browser.php:74 src/Module/Post/Edit.php:153 +#: src/Module/Post/Tag/Remove.php:95 src/Module/Profile/RemoteFollow.php:120 +#: src/Module/Security/TwoFactor/SignOut.php:111 msgid "Cancel" msgstr "Annuleren" -#: mod/photos.php:818 +#: mod/photos.php:783 msgid "Edit Album" msgstr "Album wijzigen" -#: mod/photos.php:819 +#: mod/photos.php:784 msgid "Drop Album" msgstr "Album verwijderen" -#: mod/photos.php:823 +#: mod/photos.php:788 msgid "Show Newest First" msgstr "Toon niewste eerst" -#: mod/photos.php:825 +#: mod/photos.php:790 msgid "Show Oldest First" msgstr "Toon oudste eerst" -#: mod/photos.php:846 src/Module/Profile/Photos.php:346 +#: mod/photos.php:811 src/Module/Profile/Photos.php:332 msgid "View Photo" msgstr "Bekijk foto" -#: mod/photos.php:878 +#: mod/photos.php:843 msgid "Permission denied. Access to this item may be restricted." msgstr "Toegang geweigerd. Toegang tot dit item is mogelijk beperkt." -#: mod/photos.php:880 +#: mod/photos.php:845 msgid "Photo not available" msgstr "Foto is niet beschikbaar" -#: mod/photos.php:890 +#: mod/photos.php:855 msgid "Do you really want to delete this photo?" msgstr "Wil je echt deze foto verwijderen?" -#: mod/photos.php:891 mod/photos.php:1091 +#: mod/photos.php:856 mod/photos.php:1056 msgid "Delete Photo" msgstr "Verwijder foto" -#: mod/photos.php:989 +#: mod/photos.php:954 msgid "View photo" msgstr "Bekijk foto" -#: mod/photos.php:991 +#: mod/photos.php:956 msgid "Edit photo" msgstr "Bewerk foto" -#: mod/photos.php:992 +#: mod/photos.php:957 msgid "Delete photo" msgstr "Foto verwijderen" -#: mod/photos.php:993 +#: mod/photos.php:958 msgid "Use as profile photo" msgstr "Gebruik als profielfoto" -#: mod/photos.php:1000 +#: mod/photos.php:965 msgid "Private Photo" msgstr "Privé foto" -#: mod/photos.php:1006 +#: mod/photos.php:971 msgid "View Full Size" msgstr "Bekijk in volledig formaat" -#: mod/photos.php:1059 +#: mod/photos.php:1024 msgid "Tags: " msgstr "Labels: " -#: mod/photos.php:1062 +#: mod/photos.php:1027 msgid "[Select tags to remove]" msgstr "[Selecteer tags om te verwijderen]" -#: mod/photos.php:1077 +#: mod/photos.php:1042 msgid "New album name" msgstr "Nieuwe albumnaam" -#: mod/photos.php:1078 +#: mod/photos.php:1043 msgid "Caption" msgstr "Onderschrift" -#: mod/photos.php:1079 +#: mod/photos.php:1044 msgid "Add a Tag" msgstr "Een label toevoegen" -#: mod/photos.php:1079 +#: mod/photos.php:1044 msgid "" "Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping" msgstr "Voorbeeld: @bob, @Barbara_Jansen, @jan@voorbeeld.nl, #Ardennen, #camping " -#: mod/photos.php:1080 +#: mod/photos.php:1045 msgid "Do not rotate" msgstr "Niet roteren" -#: mod/photos.php:1081 +#: mod/photos.php:1046 msgid "Rotate CW (right)" msgstr "Roteren met de klok mee (rechts)" -#: mod/photos.php:1082 +#: mod/photos.php:1047 msgid "Rotate CCW (left)" msgstr "Roteren tegen de klok in (links)" -#: mod/photos.php:1128 mod/photos.php:1184 mod/photos.php:1264 -#: src/Module/Contact.php:618 src/Module/Item/Compose.php:195 -#: src/Object/Post.php:1156 +#: mod/photos.php:1093 mod/photos.php:1149 mod/photos.php:1229 +#: src/Module/Contact.php:600 src/Module/Item/Compose.php:181 +#: src/Object/Post.php:1142 msgid "This is you" msgstr "Dit ben jij" -#: mod/photos.php:1130 mod/photos.php:1186 mod/photos.php:1266 -#: src/Module/Moderation/Reports.php:110 src/Object/Post.php:612 -#: src/Object/Post.php:1158 +#: mod/photos.php:1095 mod/photos.php:1151 mod/photos.php:1231 +#: src/Module/Moderation/Reports.php:102 src/Object/Post.php:598 +#: src/Object/Post.php:1144 msgid "Comment" msgstr "Reacties" -#: mod/photos.php:1132 mod/photos.php:1188 mod/photos.php:1268 -#: src/Content/Conversation.php:414 src/Module/Calendar/Event/Form.php:248 -#: src/Module/Item/Compose.php:208 src/Module/Post/Edit.php:165 -#: src/Object/Post.php:1172 +#: mod/photos.php:1097 mod/photos.php:1153 mod/photos.php:1233 +#: src/Content/Conversation.php:400 src/Module/Calendar/Event/Form.php:234 +#: src/Module/Item/Compose.php:194 src/Module/Post/Edit.php:151 +#: src/Object/Post.php:1158 msgid "Preview" msgstr "Voorvertoning" -#: mod/photos.php:1133 src/Content/Conversation.php:368 -#: src/Module/Post/Edit.php:130 src/Object/Post.php:1160 +#: mod/photos.php:1098 src/Content/Conversation.php:354 +#: src/Module/Post/Edit.php:116 src/Object/Post.php:1146 msgid "Loading..." msgstr "Aan het laden..." -#: mod/photos.php:1225 src/Content/Conversation.php:1498 -#: src/Object/Post.php:274 +#: mod/photos.php:1190 src/Content/Conversation.php:1484 +#: src/Object/Post.php:260 msgid "Select" msgstr "Kies" -#: mod/photos.php:1226 src/Content/Conversation.php:1499 -#: src/Module/Moderation/Users/Active.php:136 -#: src/Module/Moderation/Users/Blocked.php:136 -#: src/Module/Moderation/Users/Index.php:151 -#: src/Module/Settings/Connectors.php:244 -#: src/Module/Settings/Server/Index.php:109 +#: mod/photos.php:1191 src/Content/Conversation.php:1485 +#: src/Module/Moderation/Users/Active.php:122 +#: src/Module/Moderation/Users/Blocked.php:122 +#: src/Module/Moderation/Users/Index.php:137 +#: src/Module/Settings/Connectors.php:233 +#: src/Module/Settings/Server/Index.php:95 msgid "Delete" msgstr "Verwijder" -#: mod/photos.php:1287 src/Object/Post.php:440 +#: mod/photos.php:1252 src/Object/Post.php:426 msgid "Like" msgstr "" -#: mod/photos.php:1288 src/Object/Post.php:440 +#: mod/photos.php:1253 src/Object/Post.php:426 msgid "I like this (toggle)" msgstr "Vind ik leuk" -#: mod/photos.php:1289 src/Object/Post.php:441 +#: mod/photos.php:1254 src/Object/Post.php:427 msgid "Dislike" msgstr "" -#: mod/photos.php:1291 src/Object/Post.php:441 +#: mod/photos.php:1256 src/Object/Post.php:427 msgid "I don't like this (toggle)" msgstr "Vind ik niet leuk" -#: mod/photos.php:1313 +#: mod/photos.php:1278 msgid "Map" msgstr "Kaart" -#: src/App.php:438 +#: src/App.php:432 msgid "No system theme config value set." msgstr "Geen systeem thema configuratie ingesteld." -#: src/App.php:546 +#: src/App.php:540 msgid "Apologies but the website is unavailable at the moment." msgstr "" -#: src/App/Page.php:250 +#: src/App/Page.php:236 msgid "Delete this item?" msgstr "Dit item verwijderen?" -#: src/App/Page.php:251 +#: src/App/Page.php:237 msgid "" "Block this author? They won't be able to follow you nor see your public " "posts, and you won't be able to see their posts and their notifications." msgstr "" -#: src/App/Page.php:252 +#: src/App/Page.php:238 msgid "" "Ignore this author? You won't be able to see their posts and their " "notifications." msgstr "" -#: src/App/Page.php:253 +#: src/App/Page.php:239 msgid "Collapse this author's posts?" msgstr "" -#: src/App/Page.php:254 +#: src/App/Page.php:240 msgid "Ignore this author's server?" msgstr "" -#: src/App/Page.php:255 src/Module/Settings/Server/Action.php:61 -#: src/Module/Settings/Server/Index.php:108 +#: src/App/Page.php:241 src/Module/Settings/Server/Action.php:47 +#: src/Module/Settings/Server/Index.php:94 msgid "" "You won't see any content from this server including reshares in your " "Network page, the community pages and individual conversations." msgstr "" -#: src/App/Page.php:257 +#: src/App/Page.php:243 msgid "Like not successful" msgstr "" -#: src/App/Page.php:258 +#: src/App/Page.php:244 msgid "Dislike not successful" msgstr "" -#: src/App/Page.php:259 +#: src/App/Page.php:245 msgid "Sharing not successful" msgstr "" -#: src/App/Page.php:260 +#: src/App/Page.php:246 msgid "Attendance unsuccessful" msgstr "" -#: src/App/Page.php:261 +#: src/App/Page.php:247 msgid "Backend error" msgstr "" -#: src/App/Page.php:262 +#: src/App/Page.php:248 msgid "Network error" msgstr "" -#: src/App/Page.php:265 +#: src/App/Page.php:251 msgid "Drop files here to upload" msgstr "" -#: src/App/Page.php:266 +#: src/App/Page.php:252 msgid "Your browser does not support drag and drop file uploads." msgstr "" -#: src/App/Page.php:267 +#: src/App/Page.php:253 msgid "" "Please use the fallback form below to upload your files like in the olden " "days." msgstr "" -#: src/App/Page.php:268 +#: src/App/Page.php:254 msgid "File is too big ({{filesize}}MiB). Max filesize: {{maxFilesize}}MiB." msgstr "" -#: src/App/Page.php:269 +#: src/App/Page.php:255 msgid "You can't upload files of this type." msgstr "" -#: src/App/Page.php:270 +#: src/App/Page.php:256 msgid "Server responded with {{statusCode}} code." msgstr "" -#: src/App/Page.php:271 +#: src/App/Page.php:257 msgid "Cancel upload" msgstr "" -#: src/App/Page.php:272 +#: src/App/Page.php:258 msgid "Upload canceled." msgstr "" -#: src/App/Page.php:273 +#: src/App/Page.php:259 msgid "Are you sure you want to cancel this upload?" msgstr "" -#: src/App/Page.php:274 +#: src/App/Page.php:260 msgid "Remove file" msgstr "" -#: src/App/Page.php:275 +#: src/App/Page.php:261 msgid "You can't upload any more files." msgstr "" -#: src/App/Page.php:353 +#: src/App/Page.php:339 msgid "toggle mobile" msgstr "mobiel thema omwisselen" -#: src/App/Router.php:309 +#: src/App/Router.php:295 #, php-format msgid "Method not allowed for this module. Allowed method(s): %s" msgstr "" -#: src/App/Router.php:311 src/Module/HTTPException/PageNotFound.php:49 +#: src/App/Router.php:297 src/Module/HTTPException/PageNotFound.php:35 +#: src/Module/Stats.php:49 msgid "Page not found." msgstr "Pagina niet gevonden" -#: src/App/Router.php:323 +#: src/App/Router.php:309 msgid "You must be logged in to use addons. " msgstr "Je moet ingelogd zijn om deze addons te kunnen gebruiken. " -#: src/BaseModule.php:407 +#: src/BaseModule.php:393 msgid "" "The form security token was not correct. This probably happened because the " "form has been opened for too long (>3 hours) before submitting it." msgstr "De beveiligingstoken van het formulier was foutief. Dit gebeurde waarschijnlijk omdat het formulier te lang (> 3 uur) is blijven open staan voor het werd verstuurd." -#: src/BaseModule.php:434 +#: src/BaseModule.php:420 msgid "All contacts" msgstr "Alle contacten" -#: src/BaseModule.php:439 src/Content/Conversation/Factory/Channel.php:46 -#: src/Content/Widget.php:240 src/Core/ACL.php:195 src/Module/Contact.php:414 -#: src/Module/Privacy/PermissionTooltip.php:164 -#: src/Module/Privacy/PermissionTooltip.php:186 -#: src/Module/Settings/Channels.php:160 +#: src/BaseModule.php:425 src/Content/Conversation/Factory/Channel.php:32 +#: src/Content/Widget.php:218 src/Core/ACL.php:181 src/Module/Contact.php:395 +#: src/Module/Privacy/PermissionTooltip.php:150 +#: src/Module/Privacy/PermissionTooltip.php:172 +#: src/Module/Settings/Channels.php:146 msgid "Followers" msgstr "Volgers" -#: src/BaseModule.php:444 src/Content/Widget.php:241 -#: src/Module/Contact.php:417 src/Module/Settings/Channels.php:159 +#: src/BaseModule.php:430 src/Content/Widget.php:219 +#: src/Module/Contact.php:398 src/Module/Settings/Channels.php:145 msgid "Following" msgstr "Volgend" -#: src/BaseModule.php:449 src/Content/Widget.php:242 -#: src/Module/Contact.php:420 +#: src/BaseModule.php:435 src/Content/Widget.php:220 +#: src/Module/Contact.php:401 msgid "Mutual friends" msgstr "" -#: src/BaseModule.php:457 +#: src/BaseModule.php:443 msgid "Common" msgstr "Algemeen" -#: src/Console/Addon.php:175 src/Console/Addon.php:199 +#: src/Console/Addon.php:161 src/Console/Addon.php:185 msgid "Addon not found" msgstr "" -#: src/Console/Addon.php:179 +#: src/Console/Addon.php:165 msgid "Addon already enabled" msgstr "" -#: src/Console/Addon.php:203 +#: src/Console/Addon.php:189 msgid "Addon already disabled" msgstr "" -#: src/Console/ArchiveContact.php:106 +#: src/Console/ArchiveContact.php:92 #, php-format msgid "Could not find any unarchived contact entry for this URL (%s)" msgstr "Kon geen niet-gearchiveerde contacten vinden voor deze URL (%s)" -#: src/Console/ArchiveContact.php:109 +#: src/Console/ArchiveContact.php:95 msgid "The contact entries have been archived" msgstr "The contacten zijn gearchiveerd" -#: src/Console/GlobalCommunityBlock.php:96 -#: src/Module/Moderation/Blocklist/Contact.php:65 +#: src/Console/ClearAvatarCache.php:73 +msgid "" +"The avatar cache needs to be disabled in local.config.php to use this " +"command." +msgstr "" + +#: src/Console/GlobalCommunityBlock.php:82 +#: src/Module/Moderation/Blocklist/Contact.php:51 #, php-format msgid "Could not find any contact entry for this URL (%s)" msgstr "Kon geen contact vinden op deze URL (%s)" -#: src/Console/GlobalCommunityBlock.php:101 -#: src/Module/Moderation/Blocklist/Contact.php:82 +#: src/Console/GlobalCommunityBlock.php:87 +#: src/Module/Moderation/Blocklist/Contact.php:68 msgid "The contact has been blocked from the node" msgstr "Het contact is geblokkeerd van deze node" -#: src/Console/MergeContacts.php:75 +#: src/Console/MergeContacts.php:61 #, php-format msgid "%d %s, %d duplicates." msgstr "" -#: src/Console/MergeContacts.php:78 +#: src/Console/MergeContacts.php:64 #, php-format msgid "uri-id is empty for contact %s." msgstr "" -#: src/Console/MergeContacts.php:91 +#: src/Console/MergeContacts.php:77 #, php-format msgid "No valid first contact found for uri-id %d." msgstr "" -#: src/Console/MergeContacts.php:102 +#: src/Console/MergeContacts.php:88 #, php-format msgid "Wrong duplicate found for uri-id %d in %d (url: %s != %s)." msgstr "" -#: src/Console/MergeContacts.php:106 +#: src/Console/MergeContacts.php:92 #, php-format msgid "Wrong duplicate found for uri-id %d in %d (nurl: %s != %s)." msgstr "" -#: src/Console/MergeContacts.php:142 +#: src/Console/MergeContacts.php:128 #, php-format msgid "Deletion of id %d failed" msgstr "" -#: src/Console/MergeContacts.php:144 +#: src/Console/MergeContacts.php:130 #, php-format msgid "Deletion of id %d was successful" msgstr "" -#: src/Console/MergeContacts.php:150 +#: src/Console/MergeContacts.php:136 #, php-format msgid "Updating \"%s\" in \"%s\" from %d to %d" msgstr "" -#: src/Console/MergeContacts.php:152 +#: src/Console/MergeContacts.php:138 msgid " - found" msgstr "" -#: src/Console/MergeContacts.php:159 +#: src/Console/MergeContacts.php:145 msgid " - failed" msgstr "" -#: src/Console/MergeContacts.php:161 +#: src/Console/MergeContacts.php:147 msgid " - success" msgstr "" -#: src/Console/MergeContacts.php:165 +#: src/Console/MergeContacts.php:151 msgid " - deleted" msgstr "" -#: src/Console/MergeContacts.php:168 +#: src/Console/MergeContacts.php:154 msgid " - done" msgstr "" -#: src/Console/MoveToAvatarCache.php:91 +#: src/Console/MoveToAvatarCache.php:77 msgid "The avatar cache needs to be enabled to use this command." msgstr "" -#: src/Console/MoveToAvatarCache.php:109 +#: src/Console/MoveToAvatarCache.php:95 #, php-format msgid "no resource in photo %s" msgstr "" -#: src/Console/MoveToAvatarCache.php:137 +#: src/Console/MoveToAvatarCache.php:123 #, php-format msgid "no photo with id %s" msgstr "" -#: src/Console/MoveToAvatarCache.php:146 +#: src/Console/MoveToAvatarCache.php:132 #, php-format msgid "no image data for photo with id %s" msgstr "" -#: src/Console/MoveToAvatarCache.php:155 +#: src/Console/MoveToAvatarCache.php:141 #, php-format msgid "invalid image for id %s" msgstr "" -#: src/Console/MoveToAvatarCache.php:168 +#: src/Console/MoveToAvatarCache.php:154 #, php-format msgid "Quit on invalid photo %s" msgstr "" -#: src/Console/PostUpdate.php:87 +#: src/Console/PostUpdate.php:73 #, php-format msgid "Post update version number has been set to %s." msgstr "Bericht update versie is ingesteld op %s" -#: src/Console/PostUpdate.php:95 +#: src/Console/PostUpdate.php:81 msgid "Check for pending update actions." msgstr "Controleren op uitgestelde update acties." -#: src/Console/PostUpdate.php:97 +#: src/Console/PostUpdate.php:83 msgid "Done." msgstr "Gedaan" -#: src/Console/PostUpdate.php:99 +#: src/Console/PostUpdate.php:85 msgid "Execute pending post updates." msgstr "uitgestelde bericht update acties uitvoeren" -#: src/Console/PostUpdate.php:105 +#: src/Console/PostUpdate.php:91 msgid "All pending post updates are done." msgstr "Alle uitgestelde bericht update acties zijn uitgevoerd" -#: src/Console/User.php:158 src/Console/User.php:246 +#: src/Console/User.php:144 src/Console/User.php:232 msgid "Enter user nickname: " msgstr "Geef een bijnaam in:" -#: src/Console/User.php:182 src/Model/User.php:824 -#: src/Module/Api/Twitter/ContactEndpoint.php:74 -#: src/Module/Moderation/Users/Active.php:71 -#: src/Module/Moderation/Users/Blocked.php:71 -#: src/Module/Moderation/Users/Index.php:78 -#: src/Module/Moderation/Users/Pending.php:67 +#: src/Console/User.php:168 src/Model/User.php:831 +#: src/Module/Api/Twitter/ContactEndpoint.php:60 +#: src/Module/Moderation/Users/Active.php:57 +#: src/Module/Moderation/Users/Blocked.php:57 +#: src/Module/Moderation/Users/Index.php:64 +#: src/Module/Moderation/Users/Pending.php:53 msgid "User not found" msgstr "Gebruiker niet gevonden" -#: src/Console/User.php:202 +#: src/Console/User.php:188 msgid "Enter new password: " msgstr "Geef nieuw wachtwoord:" -#: src/Console/User.php:210 src/Module/Security/PasswordTooLong.php:69 -#: src/Module/Settings/Account.php:75 +#: src/Console/User.php:196 src/Module/Security/PasswordTooLong.php:55 +#: src/Module/Settings/Account.php:61 msgid "Password update failed. Please try again." msgstr "Wachtwoord-)wijziging mislukt. Probeer opnieuw." -#: src/Console/User.php:213 src/Module/Security/PasswordTooLong.php:72 -#: src/Module/Settings/Account.php:78 +#: src/Console/User.php:199 src/Module/Security/PasswordTooLong.php:58 +#: src/Module/Settings/Account.php:64 msgid "Password changed." msgstr "Wachtwoord gewijzigd." -#: src/Console/User.php:238 +#: src/Console/User.php:224 msgid "Enter user name: " msgstr "Geef gebruikersnaam in:" -#: src/Console/User.php:254 +#: src/Console/User.php:240 msgid "Enter user email address: " msgstr "Geef een gebruiker email adres in:" -#: src/Console/User.php:262 +#: src/Console/User.php:248 msgid "Enter a language (optional): " msgstr "Geef uw taalkeuze in (optioneel):" -#: src/Console/User.php:267 +#: src/Console/User.php:253 msgid "Enter URL of an image to use as avatar (optional): " msgstr "" -#: src/Console/User.php:292 +#: src/Console/User.php:278 msgid "User is not pending." msgstr "Gebruiker is niet in behandeling." -#: src/Console/User.php:324 +#: src/Console/User.php:310 msgid "User has already been marked for deletion." msgstr "De gebruiker is reeds gemarkeerd voor verwijdering." -#: src/Console/User.php:329 +#: src/Console/User.php:315 #, php-format msgid "Type \"yes\" to delete %s" msgstr "Type \"Ja\" om te wissen %s" -#: src/Console/User.php:331 +#: src/Console/User.php:317 msgid "Deletion aborted." msgstr "Verwijdering afgebroken." -#: src/Console/User.php:456 +#: src/Console/User.php:442 msgid "Enter category: " msgstr "" -#: src/Console/User.php:466 +#: src/Console/User.php:452 msgid "Enter key: " msgstr "" -#: src/Console/User.php:500 +#: src/Console/User.php:486 msgid "Enter value: " msgstr "" -#: src/Content/BoundariesPager.php:116 src/Content/Pager.php:171 +#: src/Content/BoundariesPager.php:102 src/Content/Pager.php:157 msgid "newer" msgstr "nieuwere berichten" -#: src/Content/BoundariesPager.php:124 src/Content/Pager.php:176 +#: src/Content/BoundariesPager.php:110 src/Content/Pager.php:162 msgid "older" msgstr "oudere berichten" -#: src/Content/ContactSelector.php:51 +#: src/Content/ContactSelector.php:37 msgid "Frequently" msgstr "Frequent" -#: src/Content/ContactSelector.php:52 +#: src/Content/ContactSelector.php:38 msgid "Hourly" msgstr "Ieder uur" -#: src/Content/ContactSelector.php:53 +#: src/Content/ContactSelector.php:39 msgid "Twice daily" msgstr "Twee maal daags" -#: src/Content/ContactSelector.php:54 +#: src/Content/ContactSelector.php:40 msgid "Daily" msgstr "Dagelijks" -#: src/Content/ContactSelector.php:55 +#: src/Content/ContactSelector.php:41 msgid "Weekly" msgstr "Wekelijks" -#: src/Content/ContactSelector.php:56 +#: src/Content/ContactSelector.php:42 msgid "Monthly" msgstr "Maandelijks" -#: src/Content/ContactSelector.php:126 +#: src/Content/ContactSelector.php:112 msgid "DFRN" msgstr "DFRN" -#: src/Content/ContactSelector.php:127 +#: src/Content/ContactSelector.php:113 msgid "OStatus" msgstr "OStatus" -#: src/Content/ContactSelector.php:128 +#: src/Content/ContactSelector.php:114 msgid "RSS/Atom" msgstr "RSS/Atom" -#: src/Content/ContactSelector.php:129 -#: src/Module/Moderation/Users/Active.php:126 -#: src/Module/Moderation/Users/Blocked.php:126 -#: src/Module/Moderation/Users/Create.php:72 -#: src/Module/Moderation/Users/Deleted.php:83 -#: src/Module/Moderation/Users/Index.php:140 -#: src/Module/Moderation/Users/Index.php:160 -#: src/Module/Moderation/Users/Pending.php:99 +#: src/Content/ContactSelector.php:115 +#: src/Module/Moderation/Users/Active.php:112 +#: src/Module/Moderation/Users/Blocked.php:112 +#: src/Module/Moderation/Users/Create.php:58 +#: src/Module/Moderation/Users/Deleted.php:69 +#: src/Module/Moderation/Users/Index.php:126 +#: src/Module/Moderation/Users/Index.php:146 +#: src/Module/Moderation/Users/Pending.php:85 msgid "Email" msgstr "E-mail" -#: src/Content/ContactSelector.php:130 src/Module/Debug/Babel.php:309 +#: src/Content/ContactSelector.php:116 src/Module/Debug/Babel.php:301 msgid "Diaspora" msgstr "Diaspora" -#: src/Content/ContactSelector.php:131 +#: src/Content/ContactSelector.php:117 msgid "Zot!" msgstr "Zot!" -#: src/Content/ContactSelector.php:132 +#: src/Content/ContactSelector.php:118 msgid "LinkedIn" msgstr "LinkedIn" -#: src/Content/ContactSelector.php:133 +#: src/Content/ContactSelector.php:119 msgid "XMPP/IM" msgstr "XMPP/Chat" -#: src/Content/ContactSelector.php:134 +#: src/Content/ContactSelector.php:120 msgid "MySpace" msgstr "MySpace" -#: src/Content/ContactSelector.php:135 +#: src/Content/ContactSelector.php:121 msgid "Google+" msgstr "Google+" -#: src/Content/ContactSelector.php:136 +#: src/Content/ContactSelector.php:122 msgid "pump.io" msgstr "pump.io" -#: src/Content/ContactSelector.php:137 +#: src/Content/ContactSelector.php:123 msgid "Twitter" msgstr "Twitter" -#: src/Content/ContactSelector.php:138 +#: src/Content/ContactSelector.php:124 msgid "Discourse" msgstr "Toespraak" -#: src/Content/ContactSelector.php:139 +#: src/Content/ContactSelector.php:125 msgid "Diaspora Connector" msgstr "Diaspora Connector" -#: src/Content/ContactSelector.php:140 +#: src/Content/ContactSelector.php:126 msgid "GNU Social Connector" msgstr "GNU Social Connector" -#: src/Content/ContactSelector.php:141 +#: src/Content/ContactSelector.php:127 msgid "ActivityPub" msgstr "ActivityPub" -#: src/Content/ContactSelector.php:142 +#: src/Content/ContactSelector.php:128 msgid "pnut" msgstr "pnut" -#: src/Content/ContactSelector.php:143 +#: src/Content/ContactSelector.php:129 msgid "Tumblr" msgstr "" -#: src/Content/ContactSelector.php:144 +#: src/Content/ContactSelector.php:130 msgid "Bluesky" msgstr "" -#: src/Content/ContactSelector.php:180 +#: src/Content/ContactSelector.php:166 #, php-format msgid "%s (via %s)" msgstr "" -#: src/Content/Conversation.php:226 +#: src/Content/Conversation.php:212 msgid "and" msgstr "en" -#: src/Content/Conversation.php:229 +#: src/Content/Conversation.php:215 #, php-format msgid "and %d other people" msgstr "en %d anderen" -#: src/Content/Conversation.php:235 +#: src/Content/Conversation.php:221 #, php-format msgid "%2$s likes this." msgid_plural "%2$s like this." msgstr[0] "" msgstr[1] "" -#: src/Content/Conversation.php:237 +#: src/Content/Conversation.php:223 #, php-format msgid "%2$s doesn't like this." msgid_plural "%2$s don't like this." msgstr[0] "" msgstr[1] "" -#: src/Content/Conversation.php:239 +#: src/Content/Conversation.php:225 #, php-format msgid "%2$s attends." msgid_plural "%2$s attend." msgstr[0] "" msgstr[1] "" -#: src/Content/Conversation.php:241 +#: src/Content/Conversation.php:227 #, php-format msgid "%2$s doesn't attend." msgid_plural "%2$s don't attend." msgstr[0] "" msgstr[1] "" -#: src/Content/Conversation.php:243 +#: src/Content/Conversation.php:229 #, php-format msgid "%2$s attends maybe." msgid_plural "%2$s attend maybe." msgstr[0] "" msgstr[1] "" -#: src/Content/Conversation.php:245 +#: src/Content/Conversation.php:231 #, php-format msgid "%2$s reshared this." msgid_plural "%2$s reshared this." msgstr[0] "" msgstr[1] "" -#: src/Content/Conversation.php:276 +#: src/Content/Conversation.php:262 #, php-format msgid " likes this" msgid_plural " like this" msgstr[0] "" msgstr[1] "" -#: src/Content/Conversation.php:279 +#: src/Content/Conversation.php:265 #, php-format msgid " doesn't like this" msgid_plural " don't like this" msgstr[0] "" msgstr[1] "" -#: src/Content/Conversation.php:282 +#: src/Content/Conversation.php:268 #, php-format msgid " attends" msgid_plural " attend" msgstr[0] "" msgstr[1] "" -#: src/Content/Conversation.php:285 +#: src/Content/Conversation.php:271 #, php-format msgid " doesn't attend" msgid_plural " don't attend" msgstr[0] "" msgstr[1] "" -#: src/Content/Conversation.php:288 +#: src/Content/Conversation.php:274 #, php-format msgid " attends maybe" msgid_plural " attend maybe" msgstr[0] "" msgstr[1] "" -#: src/Content/Conversation.php:291 +#: src/Content/Conversation.php:277 #, php-format msgid " reshared this" msgid_plural " reshared this" msgstr[0] "" msgstr[1] "" -#: src/Content/Conversation.php:337 +#: src/Content/Conversation.php:323 msgid "Visible to everybody" msgstr "Zichtbaar voor iedereen" -#: src/Content/Conversation.php:338 src/Module/Item/Compose.php:207 -#: src/Object/Post.php:1171 +#: src/Content/Conversation.php:324 src/Module/Item/Compose.php:193 +#: src/Object/Post.php:1157 msgid "Please enter a image/video/audio/webpage URL:" msgstr "Geef een afbeelding/video/audio/webpagina in:" -#: src/Content/Conversation.php:339 +#: src/Content/Conversation.php:325 msgid "Tag term:" msgstr "Label:" -#: src/Content/Conversation.php:340 src/Module/Filer/SaveTag.php:73 +#: src/Content/Conversation.php:326 src/Module/Filer/SaveTag.php:59 msgid "Save to Folder:" msgstr "Bewaren in map:" -#: src/Content/Conversation.php:341 +#: src/Content/Conversation.php:327 msgid "Where are you right now?" msgstr "Waar ben je nu?" -#: src/Content/Conversation.php:342 +#: src/Content/Conversation.php:328 msgid "Delete item(s)?" msgstr "Item(s) verwijderen?" -#: src/Content/Conversation.php:354 src/Module/Item/Compose.php:182 +#: src/Content/Conversation.php:340 src/Module/Item/Compose.php:168 msgid "Created at" msgstr "" -#: src/Content/Conversation.php:364 +#: src/Content/Conversation.php:350 msgid "New Post" msgstr "Nieuw bericht" -#: src/Content/Conversation.php:367 +#: src/Content/Conversation.php:353 msgid "Share" msgstr "Delen" -#: src/Content/Conversation.php:370 src/Module/Post/Edit.php:132 +#: src/Content/Conversation.php:356 src/Module/Post/Edit.php:118 msgid "upload photo" msgstr "Foto uploaden" -#: src/Content/Conversation.php:371 src/Module/Post/Edit.php:133 +#: src/Content/Conversation.php:357 src/Module/Post/Edit.php:119 msgid "Attach file" msgstr "Bestand bijvoegen" -#: src/Content/Conversation.php:372 src/Module/Post/Edit.php:134 +#: src/Content/Conversation.php:358 src/Module/Post/Edit.php:120 msgid "attach file" msgstr "bestand bijvoegen" -#: src/Content/Conversation.php:373 src/Module/Item/Compose.php:197 -#: src/Module/Post/Edit.php:171 src/Object/Post.php:1161 +#: src/Content/Conversation.php:359 src/Module/Item/Compose.php:183 +#: src/Module/Post/Edit.php:157 src/Object/Post.php:1147 msgid "Bold" msgstr "Vet" -#: src/Content/Conversation.php:374 src/Module/Item/Compose.php:198 -#: src/Module/Post/Edit.php:172 src/Object/Post.php:1162 +#: src/Content/Conversation.php:360 src/Module/Item/Compose.php:184 +#: src/Module/Post/Edit.php:158 src/Object/Post.php:1148 msgid "Italic" msgstr "Cursief" -#: src/Content/Conversation.php:375 src/Module/Item/Compose.php:199 -#: src/Module/Post/Edit.php:173 src/Object/Post.php:1163 +#: src/Content/Conversation.php:361 src/Module/Item/Compose.php:185 +#: src/Module/Post/Edit.php:159 src/Object/Post.php:1149 msgid "Underline" msgstr "Onderstrepen" -#: src/Content/Conversation.php:376 src/Module/Item/Compose.php:200 -#: src/Module/Post/Edit.php:174 src/Object/Post.php:1165 +#: src/Content/Conversation.php:362 src/Module/Item/Compose.php:186 +#: src/Module/Post/Edit.php:160 src/Object/Post.php:1151 msgid "Quote" msgstr "Citeren" -#: src/Content/Conversation.php:377 src/Module/Item/Compose.php:201 -#: src/Module/Post/Edit.php:175 src/Object/Post.php:1166 +#: src/Content/Conversation.php:363 src/Module/Item/Compose.php:187 +#: src/Module/Post/Edit.php:161 src/Object/Post.php:1152 msgid "Add emojis" msgstr "" -#: src/Content/Conversation.php:378 src/Module/Item/Compose.php:202 -#: src/Object/Post.php:1164 +#: src/Content/Conversation.php:364 src/Module/Item/Compose.php:188 +#: src/Object/Post.php:1150 msgid "Content Warning" msgstr "" -#: src/Content/Conversation.php:379 src/Module/Item/Compose.php:203 -#: src/Module/Post/Edit.php:176 src/Object/Post.php:1167 +#: src/Content/Conversation.php:365 src/Module/Item/Compose.php:189 +#: src/Module/Post/Edit.php:162 src/Object/Post.php:1153 msgid "Code" msgstr "Broncode" -#: src/Content/Conversation.php:380 src/Module/Item/Compose.php:204 -#: src/Object/Post.php:1168 +#: src/Content/Conversation.php:366 src/Module/Item/Compose.php:190 +#: src/Object/Post.php:1154 msgid "Image" msgstr "Afbeelding" -#: src/Content/Conversation.php:381 src/Module/Item/Compose.php:205 -#: src/Module/Post/Edit.php:177 src/Object/Post.php:1169 +#: src/Content/Conversation.php:367 src/Module/Item/Compose.php:191 +#: src/Module/Post/Edit.php:163 src/Object/Post.php:1155 msgid "Link" msgstr "Link" -#: src/Content/Conversation.php:382 src/Module/Item/Compose.php:206 -#: src/Module/Post/Edit.php:178 src/Object/Post.php:1170 +#: src/Content/Conversation.php:368 src/Module/Item/Compose.php:192 +#: src/Module/Post/Edit.php:164 src/Object/Post.php:1156 msgid "Link or Media" msgstr "Link of media" -#: src/Content/Conversation.php:383 +#: src/Content/Conversation.php:369 msgid "Video" msgstr "" -#: src/Content/Conversation.php:384 src/Module/Item/Compose.php:209 -#: src/Module/Post/Edit.php:141 +#: src/Content/Conversation.php:370 src/Module/Item/Compose.php:195 +#: src/Module/Post/Edit.php:127 msgid "Set your location" msgstr "Stel je locatie in" -#: src/Content/Conversation.php:385 src/Module/Post/Edit.php:142 +#: src/Content/Conversation.php:371 src/Module/Post/Edit.php:128 msgid "set location" msgstr "Stel uw locatie in" -#: src/Content/Conversation.php:386 src/Module/Post/Edit.php:143 +#: src/Content/Conversation.php:372 src/Module/Post/Edit.php:129 msgid "Clear browser location" msgstr "Verwijder locatie uit uw webbrowser" -#: src/Content/Conversation.php:387 src/Module/Post/Edit.php:144 +#: src/Content/Conversation.php:373 src/Module/Post/Edit.php:130 msgid "clear location" msgstr "Verwijder locatie uit uw webbrowser" -#: src/Content/Conversation.php:389 src/Module/Item/Compose.php:214 -#: src/Module/Post/Edit.php:157 +#: src/Content/Conversation.php:375 src/Module/Item/Compose.php:200 +#: src/Module/Post/Edit.php:143 msgid "Set title" msgstr "Titel plaatsen" -#: src/Content/Conversation.php:391 src/Module/Item/Compose.php:215 -#: src/Module/Post/Edit.php:159 +#: src/Content/Conversation.php:377 src/Module/Item/Compose.php:201 +#: src/Module/Post/Edit.php:145 msgid "Categories (comma-separated list)" msgstr "Categorieën (komma-gescheiden lijst)" -#: src/Content/Conversation.php:396 src/Module/Item/Compose.php:231 +#: src/Content/Conversation.php:382 src/Module/Item/Compose.php:217 msgid "Scheduled at" msgstr "" -#: src/Content/Conversation.php:401 src/Module/Post/Edit.php:146 +#: src/Content/Conversation.php:387 src/Module/Post/Edit.php:132 msgid "Permission settings" msgstr "Instellingen van rechten" -#: src/Content/Conversation.php:410 src/Module/Post/Edit.php:155 +#: src/Content/Conversation.php:396 src/Module/Post/Edit.php:141 msgid "Public post" msgstr "Openbare post" -#: src/Content/Conversation.php:424 src/Content/Widget/VCard.php:131 -#: src/Model/Profile.php:483 src/Module/Admin/Logs/View.php:94 -#: src/Module/Post/Edit.php:181 +#: src/Content/Conversation.php:410 src/Content/Widget/VCard.php:117 +#: src/Model/Profile.php:462 src/Module/Admin/Logs/View.php:80 +#: src/Module/Post/Edit.php:167 msgid "Message" msgstr "Bericht" -#: src/Content/Conversation.php:425 src/Module/Post/Edit.php:182 -#: src/Module/Settings/TwoFactor/Trusted.php:143 +#: src/Content/Conversation.php:411 src/Module/Post/Edit.php:168 +#: src/Module/Settings/TwoFactor/Trusted.php:129 msgid "Browser" msgstr "Browser" -#: src/Content/Conversation.php:427 src/Module/Post/Edit.php:185 +#: src/Content/Conversation.php:413 src/Module/Post/Edit.php:171 msgid "Open Compose page" msgstr "Open de opstelpagina" -#: src/Content/Conversation.php:594 +#: src/Content/Conversation.php:580 msgid "remove" msgstr "verwijder" -#: src/Content/Conversation.php:598 +#: src/Content/Conversation.php:584 msgid "Delete Selected Items" msgstr "Geselecteerde items verwijderen" -#: src/Content/Conversation.php:726 src/Content/Conversation.php:729 -#: src/Content/Conversation.php:732 src/Content/Conversation.php:735 -#: src/Content/Conversation.php:738 +#: src/Content/Conversation.php:712 src/Content/Conversation.php:715 +#: src/Content/Conversation.php:718 src/Content/Conversation.php:721 +#: src/Content/Conversation.php:724 #, php-format msgid "You had been addressed (%s)." msgstr "" -#: src/Content/Conversation.php:741 +#: src/Content/Conversation.php:727 #, php-format msgid "You are following %s." msgstr "" -#: src/Content/Conversation.php:746 +#: src/Content/Conversation.php:732 #, php-format msgid "You subscribed to %s." msgstr "" -#: src/Content/Conversation.php:748 +#: src/Content/Conversation.php:734 msgid "You subscribed to one or more tags in this post." msgstr "" -#: src/Content/Conversation.php:768 +#: src/Content/Conversation.php:754 #, php-format msgid "%s reshared this." msgstr "%s heeft dit gedeeld" -#: src/Content/Conversation.php:770 +#: src/Content/Conversation.php:756 msgid "Reshared" msgstr "" -#: src/Content/Conversation.php:770 +#: src/Content/Conversation.php:756 #, php-format msgid "Reshared by %s <%s>" msgstr "" -#: src/Content/Conversation.php:773 +#: src/Content/Conversation.php:759 #, php-format msgid "%s is participating in this thread." msgstr "" -#: src/Content/Conversation.php:776 +#: src/Content/Conversation.php:762 msgid "Stored for general reasons" msgstr "" -#: src/Content/Conversation.php:779 +#: src/Content/Conversation.php:765 msgid "Global post" msgstr "" -#: src/Content/Conversation.php:782 +#: src/Content/Conversation.php:768 msgid "Sent via an relay server" msgstr "" -#: src/Content/Conversation.php:782 +#: src/Content/Conversation.php:768 #, php-format msgid "Sent via the relay server %s <%s>" msgstr "" -#: src/Content/Conversation.php:785 +#: src/Content/Conversation.php:771 msgid "Fetched" msgstr "" -#: src/Content/Conversation.php:785 +#: src/Content/Conversation.php:771 #, php-format msgid "Fetched because of %s <%s>" msgstr "" -#: src/Content/Conversation.php:788 +#: src/Content/Conversation.php:774 msgid "Stored because of a child post to complete this thread." msgstr "" -#: src/Content/Conversation.php:791 +#: src/Content/Conversation.php:777 msgid "Local delivery" msgstr "" -#: src/Content/Conversation.php:794 +#: src/Content/Conversation.php:780 msgid "Stored because of your activity (like, comment, star, ...)" msgstr "" -#: src/Content/Conversation.php:797 +#: src/Content/Conversation.php:783 msgid "Distributed" msgstr "" -#: src/Content/Conversation.php:800 +#: src/Content/Conversation.php:786 msgid "Pushed to us" msgstr "" -#: src/Content/Conversation.php:1518 src/Object/Post.php:261 +#: src/Content/Conversation.php:1504 src/Object/Post.php:247 msgid "Pinned item" msgstr "" -#: src/Content/Conversation.php:1535 src/Object/Post.php:555 -#: src/Object/Post.php:556 +#: src/Content/Conversation.php:1521 src/Object/Post.php:541 +#: src/Object/Post.php:542 #, php-format msgid "View %s's profile @ %s" msgstr "Bekijk het profiel van %s @ %s" -#: src/Content/Conversation.php:1549 src/Object/Post.php:543 +#: src/Content/Conversation.php:1535 src/Object/Post.php:529 msgid "Categories:" msgstr "Categorieën:" -#: src/Content/Conversation.php:1550 src/Object/Post.php:544 +#: src/Content/Conversation.php:1536 src/Object/Post.php:530 msgid "Filed under:" msgstr "Bewaard onder:" -#: src/Content/Conversation.php:1558 src/Object/Post.php:570 +#: src/Content/Conversation.php:1544 src/Object/Post.php:556 #, php-format msgid "%s from %s" msgstr "%s van %s" -#: src/Content/Conversation.php:1574 +#: src/Content/Conversation.php:1560 msgid "View in context" msgstr "In context bekijken" -#: src/Content/Conversation/Factory/Channel.php:42 +#: src/Content/Conversation/Factory/Channel.php:28 msgid "For you" msgstr "" -#: src/Content/Conversation/Factory/Channel.php:42 +#: src/Content/Conversation/Factory/Channel.php:28 msgid "Posts from contacts you interact with and who interact with you" msgstr "" -#: src/Content/Conversation/Factory/Channel.php:43 +#: src/Content/Conversation/Factory/Channel.php:29 msgid "Discover" msgstr "" -#: src/Content/Conversation/Factory/Channel.php:43 +#: src/Content/Conversation/Factory/Channel.php:29 msgid "Posts from accounts that you don't follow, but that you might like." msgstr "" -#: src/Content/Conversation/Factory/Channel.php:44 +#: src/Content/Conversation/Factory/Channel.php:30 msgid "What's Hot" msgstr "" -#: src/Content/Conversation/Factory/Channel.php:44 +#: src/Content/Conversation/Factory/Channel.php:30 msgid "Posts with a lot of interactions" msgstr "" -#: src/Content/Conversation/Factory/Channel.php:45 +#: src/Content/Conversation/Factory/Channel.php:31 #, php-format msgid "Posts in %s" msgstr "" -#: src/Content/Conversation/Factory/Channel.php:46 +#: src/Content/Conversation/Factory/Channel.php:32 msgid "Posts from your followers that you don't follow" msgstr "" -#: src/Content/Conversation/Factory/Channel.php:47 +#: src/Content/Conversation/Factory/Channel.php:33 msgid "Sharers of sharers" msgstr "" -#: src/Content/Conversation/Factory/Channel.php:47 +#: src/Content/Conversation/Factory/Channel.php:33 msgid "Posts from accounts that are followed by accounts that you follow" msgstr "" -#: src/Content/Conversation/Factory/Channel.php:48 +#: src/Content/Conversation/Factory/Channel.php:34 msgid "Quiet sharers" msgstr "" -#: src/Content/Conversation/Factory/Channel.php:48 +#: src/Content/Conversation/Factory/Channel.php:34 msgid "Posts from accounts that you follow but who don't post very often" msgstr "" -#: src/Content/Conversation/Factory/Channel.php:49 -#: src/Module/Settings/Channels.php:199 src/Module/Settings/Channels.php:220 +#: src/Content/Conversation/Factory/Channel.php:35 +#: src/Module/Settings/Channels.php:185 src/Module/Settings/Channels.php:206 msgid "Images" msgstr "" -#: src/Content/Conversation/Factory/Channel.php:49 +#: src/Content/Conversation/Factory/Channel.php:35 msgid "Posts with images" msgstr "" -#: src/Content/Conversation/Factory/Channel.php:50 -#: src/Module/Settings/Channels.php:201 src/Module/Settings/Channels.php:222 +#: src/Content/Conversation/Factory/Channel.php:36 +#: src/Module/Settings/Channels.php:187 src/Module/Settings/Channels.php:208 msgid "Audio" msgstr "" -#: src/Content/Conversation/Factory/Channel.php:50 +#: src/Content/Conversation/Factory/Channel.php:36 msgid "Posts with audio" msgstr "" -#: src/Content/Conversation/Factory/Channel.php:51 -#: src/Module/Settings/Channels.php:200 src/Module/Settings/Channels.php:221 +#: src/Content/Conversation/Factory/Channel.php:37 +#: src/Module/Settings/Channels.php:186 src/Module/Settings/Channels.php:207 msgid "Videos" msgstr "" -#: src/Content/Conversation/Factory/Channel.php:51 +#: src/Content/Conversation/Factory/Channel.php:37 msgid "Posts with videos" msgstr "" -#: src/Content/Conversation/Factory/Community.php:43 +#: src/Content/Conversation/Factory/Community.php:29 msgid "Local Community" msgstr "Lokale Groep" -#: src/Content/Conversation/Factory/Community.php:43 +#: src/Content/Conversation/Factory/Community.php:29 msgid "Posts from local users on this server" msgstr "Berichten van lokale gebruikers op deze server" -#: src/Content/Conversation/Factory/Community.php:47 -#: src/Module/Settings/Channels.php:150 src/Module/Settings/Channels.php:155 +#: src/Content/Conversation/Factory/Community.php:33 +#: src/Module/Settings/Channels.php:136 src/Module/Settings/Channels.php:141 msgid "Global Community" msgstr "Globale gemeenschap" -#: src/Content/Conversation/Factory/Community.php:47 +#: src/Content/Conversation/Factory/Community.php:33 msgid "Posts from users of the whole federated network" msgstr "Berichten van gebruikers van het hele gefedereerde netwerk" -#: src/Content/Conversation/Factory/Network.php:38 -#: src/Module/Settings/Channels.php:156 +#: src/Content/Conversation/Factory/Network.php:24 +#: src/Module/Settings/Channels.php:142 msgid "Latest Activity" msgstr "Laatste activiteit" -#: src/Content/Conversation/Factory/Network.php:38 +#: src/Content/Conversation/Factory/Network.php:24 msgid "Sort by latest activity" msgstr "Sorteer naar laatste activiteit" -#: src/Content/Conversation/Factory/Network.php:39 -#: src/Module/Settings/Channels.php:157 +#: src/Content/Conversation/Factory/Network.php:25 +#: src/Module/Settings/Channels.php:143 msgid "Latest Posts" msgstr "Laatste Berichten" -#: src/Content/Conversation/Factory/Network.php:39 +#: src/Content/Conversation/Factory/Network.php:25 msgid "Sort by post received date" msgstr "Sorteren naar ontvangstdatum bericht" -#: src/Content/Conversation/Factory/Network.php:40 -#: src/Module/Settings/Channels.php:158 +#: src/Content/Conversation/Factory/Network.php:26 +#: src/Module/Settings/Channels.php:144 msgid "Latest Creation" msgstr "" -#: src/Content/Conversation/Factory/Network.php:40 +#: src/Content/Conversation/Factory/Network.php:26 msgid "Sort by post creation date" msgstr "" -#: src/Content/Conversation/Factory/Network.php:41 -#: src/Module/Settings/Profile/Index.php:260 +#: src/Content/Conversation/Factory/Network.php:27 +#: src/Module/Settings/Profile/Index.php:251 msgid "Personal" msgstr "Persoonlijk" -#: src/Content/Conversation/Factory/Network.php:41 +#: src/Content/Conversation/Factory/Network.php:27 msgid "Posts that mention or involve you" msgstr "Alleen berichten die jou vermelden of op jou betrekking hebben" -#: src/Content/Conversation/Factory/Network.php:42 src/Object/Post.php:411 +#: src/Content/Conversation/Factory/Network.php:28 src/Object/Post.php:397 msgid "Starred" msgstr "Met ster" -#: src/Content/Conversation/Factory/Network.php:42 +#: src/Content/Conversation/Factory/Network.php:28 msgid "Favourite Posts" msgstr "Favoriete berichten" -#: src/Content/Feature.php:107 +#: src/Content/Feature.php:93 msgid "General Features" msgstr "Algemene functies" -#: src/Content/Feature.php:109 +#: src/Content/Feature.php:95 msgid "Photo Location" msgstr "Foto Locatie" -#: src/Content/Feature.php:109 +#: src/Content/Feature.php:95 msgid "" "Photo metadata is normally stripped. This extracts the location (if present)" " prior to stripping metadata and links it to a map." msgstr "Foto metadata wordt normaal verwijderd. Dit extraheert de locatie (indien aanwezig) vooraleer de metadata te verwijderen en verbindt die met een kaart." -#: src/Content/Feature.php:110 +#: src/Content/Feature.php:96 msgid "Display the community in the navigation" msgstr "" -#: src/Content/Feature.php:110 +#: src/Content/Feature.php:96 msgid "" "If enabled, the community can be accessed via the navigation menu. " "Independent from this setting, the community timelines can always be " "accessed via the channels." msgstr "" -#: src/Content/Feature.php:115 +#: src/Content/Feature.php:101 msgid "Post Composition Features" msgstr "Functies voor het opstellen van berichten" -#: src/Content/Feature.php:116 +#: src/Content/Feature.php:102 msgid "Explicit Mentions" msgstr "Expliciete vermeldingen" -#: src/Content/Feature.php:116 +#: src/Content/Feature.php:102 msgid "" "Add explicit mentions to comment box for manual control over who gets " "mentioned in replies." msgstr "Voeg expliciete vermeldingen toe aan het opmerkingenvak voor handmatige controle over wie in antwoorden wordt vermeld." -#: src/Content/Feature.php:117 +#: src/Content/Feature.php:103 msgid "Add an abstract from ActivityPub content warnings" msgstr "" -#: src/Content/Feature.php:117 +#: src/Content/Feature.php:103 msgid "" "Add an abstract when commenting on ActivityPub posts with a content warning." " Abstracts are displayed as content warning on systems like Mastodon or " "Pleroma." msgstr "" -#: src/Content/Feature.php:122 +#: src/Content/Feature.php:108 msgid "Post/Comment Tools" msgstr "Bericht-/reactiehulpmiddelen" -#: src/Content/Feature.php:123 +#: src/Content/Feature.php:109 msgid "Post Categories" msgstr "Categorieën berichten" -#: src/Content/Feature.php:123 +#: src/Content/Feature.php:109 msgid "Add categories to your posts" msgstr "Voeg categorieën toe aan je berichten" -#: src/Content/Feature.php:128 +#: src/Content/Feature.php:114 msgid "Network Widgets" msgstr "" -#: src/Content/Feature.php:129 src/Content/Widget.php:216 -#: src/Model/Circle.php:601 src/Module/Contact.php:400 -#: src/Module/Welcome.php:76 +#: src/Content/Feature.php:115 src/Content/Widget.php:194 +#: src/Model/Circle.php:587 src/Module/Contact.php:381 +#: src/Module/Welcome.php:62 msgid "Circles" msgstr "" -#: src/Content/Feature.php:129 +#: src/Content/Feature.php:115 msgid "" "Display posts that have been created by accounts of the selected circle." msgstr "" -#: src/Content/Feature.php:130 src/Content/GroupManager.php:147 -#: src/Content/Nav.php:278 src/Content/Text/HTML.php:882 -#: src/Content/Widget.php:538 src/Model/User.php:1390 +#: src/Content/Feature.php:116 src/Content/GroupManager.php:133 +#: src/Content/Nav.php:264 src/Content/Text/HTML.php:868 +#: src/Content/Widget.php:516 src/Model/User.php:1390 msgid "Groups" msgstr "" -#: src/Content/Feature.php:130 +#: src/Content/Feature.php:116 msgid "Display posts that have been distributed by the selected group." msgstr "" -#: src/Content/Feature.php:131 src/Content/Widget.php:507 +#: src/Content/Feature.php:117 src/Content/Widget.php:485 msgid "Archives" msgstr "Archieven" -#: src/Content/Feature.php:131 +#: src/Content/Feature.php:117 msgid "Display an archive where posts can be selected by month and year." msgstr "" -#: src/Content/Feature.php:132 src/Content/Widget.php:289 +#: src/Content/Feature.php:118 src/Content/Widget.php:267 msgid "Protocols" msgstr "Protocollen" -#: src/Content/Feature.php:132 +#: src/Content/Feature.php:118 msgid "Display posts with the selected protocols." msgstr "" -#: src/Content/Feature.php:133 src/Content/Widget.php:544 -#: src/Module/Settings/Account.php:442 +#: src/Content/Feature.php:119 src/Content/Widget.php:522 +#: src/Module/Settings/Account.php:433 msgid "Account Types" msgstr "Account Types" -#: src/Content/Feature.php:133 +#: src/Content/Feature.php:119 msgid "Display posts done by accounts with the selected account type." msgstr "" -#: src/Content/Feature.php:134 src/Content/Widget.php:593 -#: src/Module/Admin/Site.php:472 src/Module/BaseSettings.php:125 -#: src/Module/Settings/Channels.php:225 src/Module/Settings/Display.php:315 +#: src/Content/Feature.php:120 src/Content/Widget.php:571 +#: src/Module/Admin/Site.php:464 src/Module/BaseSettings.php:111 +#: src/Module/Settings/Channels.php:211 src/Module/Settings/Display.php:301 msgid "Channels" msgstr "" -#: src/Content/Feature.php:134 +#: src/Content/Feature.php:120 msgid "Display posts in the system channels and user defined channels." msgstr "" -#: src/Content/Feature.php:135 src/Content/Widget/SavedSearches.php:60 +#: src/Content/Feature.php:121 src/Content/Widget/SavedSearches.php:46 msgid "Saved Searches" msgstr "Opgeslagen zoekopdrachten" -#: src/Content/Feature.php:135 +#: src/Content/Feature.php:121 msgid "Display posts that contain subscribed hashtags." msgstr "" -#: src/Content/Feature.php:136 src/Content/Widget.php:319 +#: src/Content/Feature.php:122 src/Content/Widget.php:297 msgid "Saved Folders" msgstr "Bewaarde Mappen" -#: src/Content/Feature.php:136 +#: src/Content/Feature.php:122 msgid "Display a list of folders in which posts are stored." msgstr "" -#: src/Content/Feature.php:137 src/Module/Conversation/Timeline.php:199 +#: src/Content/Feature.php:123 src/Module/Conversation/Timeline.php:186 msgid "Own Contacts" msgstr "" -#: src/Content/Feature.php:137 +#: src/Content/Feature.php:123 msgid "" "Include or exclude posts from subscribed accounts. This widget is not " "visible on all channels." msgstr "" -#: src/Content/Feature.php:138 +#: src/Content/Feature.php:124 msgid "Trending Tags" msgstr "Populaire Tags" -#: src/Content/Feature.php:138 +#: src/Content/Feature.php:124 msgid "Display a list of the most popular tags in recent public posts." msgstr "" -#: src/Content/Feature.php:143 +#: src/Content/Feature.php:129 msgid "Advanced Profile Settings" msgstr "Geavanceerde Profiel Instellingen" -#: src/Content/Feature.php:144 +#: src/Content/Feature.php:130 msgid "Tag Cloud" msgstr "Tag Wolk" -#: src/Content/Feature.php:144 +#: src/Content/Feature.php:130 msgid "Provide a personal tag cloud on your profile page" msgstr "Voorzie een persoonlijk tag wolk op je profiel pagina" -#: src/Content/Feature.php:145 +#: src/Content/Feature.php:131 msgid "Display Membership Date" msgstr "Toon Lidmaatschap Datum" -#: src/Content/Feature.php:145 +#: src/Content/Feature.php:131 msgid "Display membership date in profile" msgstr "Toon lidmaatschap datum in profiel" -#: src/Content/Feature.php:150 +#: src/Content/Feature.php:136 msgid "Advanced Calendar Settings" msgstr "" -#: src/Content/Feature.php:151 +#: src/Content/Feature.php:137 msgid "Allow anonymous access to your calendar" msgstr "" -#: src/Content/Feature.php:151 +#: src/Content/Feature.php:137 msgid "" "Allows anonymous visitors to consult your calendar and your public events. " "Contact birthday events are private to you." msgstr "" -#: src/Content/GroupManager.php:149 +#: src/Content/GroupManager.php:135 msgid "External link to group" msgstr "" -#: src/Content/GroupManager.php:153 src/Content/Widget.php:513 +#: src/Content/GroupManager.php:139 src/Content/Widget.php:491 msgid "show less" msgstr "" -#: src/Content/GroupManager.php:154 src/Content/Widget.php:411 -#: src/Content/Widget.php:514 +#: src/Content/GroupManager.php:140 src/Content/Widget.php:389 +#: src/Content/Widget.php:492 msgid "show more" msgstr "toon meer" -#: src/Content/GroupManager.php:155 +#: src/Content/GroupManager.php:141 msgid "Create new group" msgstr "" -#: src/Content/Item.php:331 src/Model/Item.php:3256 +#: src/Content/Item.php:317 src/Model/Item.php:3272 msgid "event" msgstr "gebeurtenis" -#: src/Content/Item.php:334 src/Content/Item.php:344 +#: src/Content/Item.php:320 src/Content/Item.php:330 msgid "status" msgstr "status" -#: src/Content/Item.php:340 src/Model/Item.php:3258 -#: src/Module/Post/Tag/Add.php:123 +#: src/Content/Item.php:326 src/Model/Item.php:3274 +#: src/Module/Post/Tag/Add.php:109 msgid "photo" msgstr "foto" -#: src/Content/Item.php:354 src/Module/Post/Tag/Add.php:141 +#: src/Content/Item.php:340 src/Module/Post/Tag/Add.php:127 #, php-format msgid "%1$s tagged %2$s's %3$s with %4$s" msgstr "%1$s labelde %3$s van %2$s met %4$s" -#: src/Content/Item.php:428 view/theme/frio/theme.php:265 +#: src/Content/Item.php:414 view/theme/frio/theme.php:253 msgid "Follow Thread" msgstr "Gesprek volgen" -#: src/Content/Item.php:429 src/Model/Contact.php:1233 +#: src/Content/Item.php:415 src/Model/Contact.php:1249 msgid "View Status" msgstr "Bekijk status" -#: src/Content/Item.php:430 src/Content/Item.php:453 -#: src/Model/Contact.php:1168 src/Model/Contact.php:1224 -#: src/Model/Contact.php:1234 src/Module/Directory.php:157 -#: src/Module/Settings/Profile/Index.php:259 +#: src/Content/Item.php:416 src/Content/Item.php:439 +#: src/Model/Contact.php:1184 src/Model/Contact.php:1240 +#: src/Model/Contact.php:1250 src/Module/Directory.php:144 +#: src/Module/Settings/Profile/Index.php:250 msgid "View Profile" msgstr "Bekijk profiel" -#: src/Content/Item.php:431 src/Model/Contact.php:1235 +#: src/Content/Item.php:417 src/Model/Contact.php:1251 msgid "View Photos" msgstr "Bekijk foto's" -#: src/Content/Item.php:432 src/Model/Contact.php:1202 -#: src/Model/Profile.php:468 +#: src/Content/Item.php:418 src/Model/Contact.php:1218 +#: src/Model/Profile.php:447 msgid "Network Posts" msgstr "Netwerkberichten" -#: src/Content/Item.php:433 src/Model/Contact.php:1226 -#: src/Model/Contact.php:1237 +#: src/Content/Item.php:419 src/Model/Contact.php:1242 +#: src/Model/Contact.php:1253 msgid "View Contact" msgstr "Bekijk contact" -#: src/Content/Item.php:434 src/Model/Contact.php:1238 +#: src/Content/Item.php:420 src/Model/Contact.php:1254 msgid "Send PM" msgstr "Stuur een privébericht" -#: src/Content/Item.php:435 src/Module/Contact.php:467 +#: src/Content/Item.php:421 src/Module/Contact.php:449 #: src/Module/Contact/Profile.php:518 -#: src/Module/Moderation/Blocklist/Contact.php:116 -#: src/Module/Moderation/Users/Active.php:137 -#: src/Module/Moderation/Users/Index.php:152 +#: src/Module/Moderation/Blocklist/Contact.php:102 +#: src/Module/Moderation/Users/Active.php:123 +#: src/Module/Moderation/Users/Index.php:138 msgid "Block" msgstr "Blokkeren" -#: src/Content/Item.php:436 src/Module/Contact.php:468 +#: src/Content/Item.php:422 src/Module/Contact.php:450 #: src/Module/Contact/Profile.php:526 -#: src/Module/Notifications/Introductions.php:134 -#: src/Module/Notifications/Introductions.php:206 -#: src/Module/Notifications/Notification.php:89 +#: src/Module/Notifications/Introductions.php:126 +#: src/Module/Notifications/Introductions.php:198 +#: src/Module/Notifications/Notification.php:75 msgid "Ignore" msgstr "Negeren" -#: src/Content/Item.php:437 src/Module/Contact.php:469 +#: src/Content/Item.php:423 src/Module/Contact.php:451 #: src/Module/Contact/Profile.php:534 msgid "Collapse" msgstr "" -#: src/Content/Item.php:438 src/Object/Post.php:302 +#: src/Content/Item.php:424 src/Object/Post.php:288 #, php-format msgid "Ignore %s server" msgstr "" -#: src/Content/Item.php:442 src/Module/Settings/Channels.php:202 -#: src/Module/Settings/Channels.php:223 src/Object/Post.php:516 +#: src/Content/Item.php:428 src/Module/Settings/Channels.php:188 +#: src/Module/Settings/Channels.php:209 src/Object/Post.php:502 msgid "Languages" msgstr "" -#: src/Content/Item.php:445 src/Object/Post.php:596 +#: src/Content/Item.php:431 src/Object/Post.php:582 msgid "Search Text" msgstr "" -#: src/Content/Item.php:450 src/Content/Widget.php:80 -#: src/Model/Contact.php:1227 src/Model/Contact.php:1239 -#: src/Module/Contact/Follow.php:167 view/theme/vier/theme.php:195 +#: src/Content/Item.php:436 src/Content/Widget.php:66 +#: src/Model/Contact.php:1243 src/Model/Contact.php:1255 +#: src/Module/Contact/Follow.php:148 view/theme/vier/theme.php:183 msgid "Connect/Follow" msgstr "Verbind/Volg" -#: src/Content/Item.php:884 +#: src/Content/Item.php:870 msgid "Unable to fetch user." msgstr "" -#: src/Content/Nav.php:121 +#: src/Content/Nav.php:107 msgid "Nothing new here" msgstr "Niets nieuw hier" -#: src/Content/Nav.php:125 src/Module/Special/HTTPException.php:77 +#: src/Content/Nav.php:111 src/Module/Special/HTTPException.php:63 msgid "Go back" msgstr "Ga terug" -#: src/Content/Nav.php:126 +#: src/Content/Nav.php:112 msgid "Clear notifications" msgstr "Notificaties verwijderen" -#: src/Content/Nav.php:127 src/Content/Text/HTML.php:869 +#: src/Content/Nav.php:113 src/Content/Text/HTML.php:855 msgid "@name, !group, #tags, content" msgstr "" -#: src/Content/Nav.php:222 src/Module/Security/Login.php:157 +#: src/Content/Nav.php:208 src/Module/Security/Login.php:147 msgid "Logout" msgstr "Uitloggen" -#: src/Content/Nav.php:222 +#: src/Content/Nav.php:208 msgid "End this session" msgstr "Deze sessie beëindigen" -#: src/Content/Nav.php:224 src/Module/Bookmarklet.php:44 -#: src/Module/Security/Login.php:158 +#: src/Content/Nav.php:210 src/Module/Bookmarklet.php:30 +#: src/Module/Security/Login.php:148 msgid "Login" msgstr "Login" -#: src/Content/Nav.php:224 +#: src/Content/Nav.php:210 msgid "Sign in" msgstr "Inloggen" -#: src/Content/Nav.php:229 src/Module/BaseProfile.php:57 -#: src/Module/Contact.php:511 +#: src/Content/Nav.php:215 src/Module/BaseProfile.php:43 +#: src/Module/Contact.php:493 msgid "Conversations" msgstr "" -#: src/Content/Nav.php:229 +#: src/Content/Nav.php:215 msgid "Conversations you started" msgstr "" -#: src/Content/Nav.php:230 src/Module/BaseProfile.php:49 -#: src/Module/BaseSettings.php:98 src/Module/Contact.php:503 -#: src/Module/Contact/Profile.php:425 src/Module/Profile/Profile.php:268 -#: src/Module/Welcome.php:57 view/theme/frio/theme.php:233 +#: src/Content/Nav.php:216 src/Module/BaseProfile.php:35 +#: src/Module/BaseSettings.php:84 src/Module/Contact.php:485 +#: src/Module/Contact/Profile.php:425 src/Module/Profile/Profile.php:256 +#: src/Module/Welcome.php:43 view/theme/frio/theme.php:221 msgid "Profile" msgstr "Profiel" -#: src/Content/Nav.php:230 view/theme/frio/theme.php:233 +#: src/Content/Nav.php:216 view/theme/frio/theme.php:221 msgid "Your profile page" msgstr "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:237 +#: src/Content/Nav.php:217 src/Module/BaseProfile.php:51 +#: src/Module/Media/Photo/Browser.php:60 view/theme/frio/theme.php:225 msgid "Photos" msgstr "Foto's" -#: src/Content/Nav.php:231 view/theme/frio/theme.php:237 +#: src/Content/Nav.php:217 view/theme/frio/theme.php:225 msgid "Your photos" msgstr "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:238 +#: src/Content/Nav.php:218 src/Module/BaseProfile.php:59 +#: src/Module/BaseProfile.php:62 src/Module/Contact.php:509 +#: view/theme/frio/theme.php:226 msgid "Media" msgstr "" -#: src/Content/Nav.php:232 view/theme/frio/theme.php:238 +#: src/Content/Nav.php:218 view/theme/frio/theme.php:226 msgid "Your postings with media" msgstr "" -#: src/Content/Nav.php:233 src/Content/Nav.php:293 -#: src/Module/BaseProfile.php:85 src/Module/BaseProfile.php:88 -#: src/Module/BaseProfile.php:96 src/Module/BaseProfile.php:99 -#: src/Module/Settings/Display.php:316 view/theme/frio/theme.php:239 -#: view/theme/frio/theme.php:243 +#: src/Content/Nav.php:219 src/Content/Nav.php:279 +#: src/Module/BaseProfile.php:71 src/Module/BaseProfile.php:74 +#: src/Module/BaseProfile.php:82 src/Module/BaseProfile.php:85 +#: src/Module/Settings/Display.php:302 view/theme/frio/theme.php:227 +#: view/theme/frio/theme.php:231 msgid "Calendar" msgstr "Kalender" -#: src/Content/Nav.php:233 view/theme/frio/theme.php:239 +#: src/Content/Nav.php:219 view/theme/frio/theme.php:227 msgid "Your calendar" msgstr "" -#: src/Content/Nav.php:234 +#: src/Content/Nav.php:220 msgid "Personal notes" msgstr "Persoonlijke nota's" -#: src/Content/Nav.php:234 +#: src/Content/Nav.php:220 msgid "Your personal notes" msgstr "Je persoonlijke nota's" -#: src/Content/Nav.php:251 src/Content/Nav.php:308 +#: src/Content/Nav.php:237 src/Content/Nav.php:294 msgid "Home" msgstr "Tijdlijn" -#: src/Content/Nav.php:251 src/Module/Settings/OAuth.php:73 +#: src/Content/Nav.php:237 src/Module/Settings/OAuth.php:59 msgid "Home Page" msgstr "Jouw tijdlijn" -#: src/Content/Nav.php:255 src/Module/Register.php:169 -#: src/Module/Security/Login.php:124 +#: src/Content/Nav.php:241 src/Module/Register.php:161 +#: src/Module/Security/Login.php:114 msgid "Register" msgstr "Registreer" -#: src/Content/Nav.php:255 +#: src/Content/Nav.php:241 msgid "Create an account" msgstr "Maak een accoount" -#: src/Content/Nav.php:261 src/Module/Help.php:67 -#: src/Module/Settings/TwoFactor/AppSpecific.php:132 -#: src/Module/Settings/TwoFactor/Index.php:139 -#: src/Module/Settings/TwoFactor/Recovery.php:110 -#: src/Module/Settings/TwoFactor/Verify.php:149 view/theme/vier/theme.php:240 +#: src/Content/Nav.php:247 src/Module/Help.php:53 +#: src/Module/Settings/TwoFactor/AppSpecific.php:118 +#: src/Module/Settings/TwoFactor/Index.php:125 +#: src/Module/Settings/TwoFactor/Recovery.php:96 +#: src/Module/Settings/TwoFactor/Verify.php:135 view/theme/vier/theme.php:228 msgid "Help" msgstr "Help" -#: src/Content/Nav.php:261 +#: src/Content/Nav.php:247 msgid "Help and documentation" msgstr "Hulp en documentatie" -#: src/Content/Nav.php:265 +#: src/Content/Nav.php:251 msgid "Apps" msgstr "Apps" -#: src/Content/Nav.php:265 +#: src/Content/Nav.php:251 msgid "Addon applications, utilities, games" msgstr "Extra toepassingen, hulpmiddelen of spelletjes" -#: src/Content/Nav.php:269 src/Content/Text/HTML.php:867 -#: src/Module/Admin/Logs/View.php:88 src/Module/Search/Index.php:112 +#: src/Content/Nav.php:255 src/Content/Text/HTML.php:853 +#: src/Module/Admin/Logs/View.php:74 src/Module/Search/Index.php:98 msgid "Search" msgstr "Zoeken" -#: src/Content/Nav.php:269 +#: src/Content/Nav.php:255 msgid "Search site content" msgstr "Doorzoek de inhoud van de website" -#: src/Content/Nav.php:272 src/Content/Text/HTML.php:876 +#: src/Content/Nav.php:258 src/Content/Text/HTML.php:862 msgid "Full Text" msgstr "Volledige tekst" -#: src/Content/Nav.php:273 src/Content/Text/HTML.php:877 -#: src/Content/Widget/TagCloud.php:68 +#: src/Content/Nav.php:259 src/Content/Text/HTML.php:863 +#: src/Content/Widget/TagCloud.php:54 msgid "Tags" msgstr "Labels" -#: src/Content/Nav.php:274 src/Content/Nav.php:329 -#: src/Content/Text/HTML.php:878 src/Module/BaseProfile.php:127 -#: src/Module/BaseProfile.php:130 src/Module/Contact.php:426 -#: src/Module/Contact.php:535 view/theme/frio/theme.php:246 +#: src/Content/Nav.php:260 src/Content/Nav.php:315 +#: src/Content/Text/HTML.php:864 src/Module/BaseProfile.php:113 +#: src/Module/BaseProfile.php:116 src/Module/Contact.php:407 +#: src/Module/Contact.php:517 view/theme/frio/theme.php:234 msgid "Contacts" msgstr "Contacten" -#: src/Content/Nav.php:289 +#: src/Content/Nav.php:275 msgid "Community" msgstr "Website" -#: src/Content/Nav.php:289 +#: src/Content/Nav.php:275 msgid "Conversations on this and other servers" msgstr "Gesprekken op deze en andere servers" -#: src/Content/Nav.php:296 +#: src/Content/Nav.php:282 msgid "Directory" msgstr "Gids" -#: src/Content/Nav.php:296 +#: src/Content/Nav.php:282 msgid "People directory" msgstr "Personengids" -#: src/Content/Nav.php:298 src/Module/BaseAdmin.php:85 -#: src/Module/BaseModeration.php:108 +#: src/Content/Nav.php:284 src/Module/BaseAdmin.php:71 +#: src/Module/BaseModeration.php:94 msgid "Information" msgstr "Informatie" -#: src/Content/Nav.php:298 +#: src/Content/Nav.php:284 msgid "Information about this friendica instance" msgstr "informatie over deze friendica server" -#: src/Content/Nav.php:301 src/Module/Admin/Tos.php:78 -#: src/Module/BaseAdmin.php:95 src/Module/Register.php:177 -#: src/Module/Tos.php:101 +#: src/Content/Nav.php:287 src/Module/Admin/Tos.php:64 +#: src/Module/BaseAdmin.php:81 src/Module/Register.php:169 +#: src/Module/Tos.php:87 msgid "Terms of Service" msgstr "Gebruiksvoorwaarden" -#: src/Content/Nav.php:301 +#: src/Content/Nav.php:287 msgid "Terms of Service of this Friendica instance" msgstr "Gebruiksvoorwaarden op deze Friendica server" -#: src/Content/Nav.php:306 view/theme/frio/theme.php:242 +#: src/Content/Nav.php:292 view/theme/frio/theme.php:230 msgid "Network" msgstr "Netwerk" -#: src/Content/Nav.php:306 view/theme/frio/theme.php:242 +#: src/Content/Nav.php:292 view/theme/frio/theme.php:230 msgid "Conversations from your friends" msgstr "Gesprekken van je vrienden" -#: src/Content/Nav.php:308 view/theme/frio/theme.php:232 +#: src/Content/Nav.php:294 view/theme/frio/theme.php:220 msgid "Your posts and conversations" msgstr "Jouw berichten en gesprekken" -#: src/Content/Nav.php:312 +#: src/Content/Nav.php:298 msgid "Introductions" msgstr "Verzoeken" -#: src/Content/Nav.php:312 +#: src/Content/Nav.php:298 msgid "Friend Requests" msgstr "Vriendschapsverzoeken" -#: src/Content/Nav.php:313 src/Module/BaseNotifications.php:149 -#: src/Module/Notifications/Introductions.php:75 +#: src/Content/Nav.php:299 src/Module/BaseNotifications.php:135 +#: src/Module/Notifications/Introductions.php:61 msgid "Notifications" msgstr "Notificaties" -#: src/Content/Nav.php:314 +#: src/Content/Nav.php:300 msgid "See all notifications" msgstr "Toon alle notificaties" -#: src/Content/Nav.php:315 src/Module/Settings/Connectors.php:244 +#: src/Content/Nav.php:301 src/Module/Settings/Connectors.php:233 msgid "Mark as seen" msgstr "Als 'gelezen' markeren" -#: src/Content/Nav.php:315 +#: src/Content/Nav.php:301 msgid "Mark all system notifications as seen" msgstr "" -#: src/Content/Nav.php:318 view/theme/frio/theme.php:244 +#: src/Content/Nav.php:304 view/theme/frio/theme.php:232 msgid "Private mail" msgstr "Privéberichten" -#: src/Content/Nav.php:319 +#: src/Content/Nav.php:305 msgid "Inbox" msgstr "Inbox" -#: src/Content/Nav.php:320 +#: src/Content/Nav.php:306 msgid "Outbox" msgstr "Verzonden berichten" -#: src/Content/Nav.php:324 +#: src/Content/Nav.php:310 msgid "Accounts" msgstr "Gebruikers" -#: src/Content/Nav.php:324 +#: src/Content/Nav.php:310 msgid "Manage other pages" 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:245 +#: src/Content/Nav.php:313 src/Module/Admin/Addons/Details.php:100 +#: src/Module/Admin/Themes/Details.php:85 src/Module/BaseSettings.php:168 +#: src/Module/Welcome.php:38 view/theme/frio/theme.php:233 msgid "Settings" msgstr "Instellingen" -#: src/Content/Nav.php:327 view/theme/frio/theme.php:245 +#: src/Content/Nav.php:313 view/theme/frio/theme.php:233 msgid "Account settings" msgstr "Account instellingen" -#: src/Content/Nav.php:329 view/theme/frio/theme.php:246 +#: src/Content/Nav.php:315 view/theme/frio/theme.php:234 msgid "Manage/edit friends and contacts" msgstr "Beheer/Wijzig vrienden en contacten" -#: src/Content/Nav.php:334 src/Module/BaseAdmin.php:119 +#: src/Content/Nav.php:320 src/Module/BaseAdmin.php:105 msgid "Admin" msgstr "Beheer" -#: src/Content/Nav.php:334 +#: src/Content/Nav.php:320 msgid "Site setup and configuration" msgstr "Website opzetten en configureren" -#: src/Content/Nav.php:335 src/Module/BaseModeration.php:128 -#: src/Module/Moderation/Blocklist/Contact.php:110 -#: src/Module/Moderation/Blocklist/Server/Add.php:121 -#: src/Module/Moderation/Blocklist/Server/Import.php:118 -#: src/Module/Moderation/Blocklist/Server/Index.php:95 -#: src/Module/Moderation/Item/Delete.php:61 -#: src/Module/Moderation/Reports.php:104 src/Module/Moderation/Summary.php:75 -#: src/Module/Moderation/Users/Active.php:133 -#: src/Module/Moderation/Users/Blocked.php:133 -#: src/Module/Moderation/Users/Deleted.php:80 -#: src/Module/Moderation/Users/Index.php:147 +#: src/Content/Nav.php:321 src/Module/BaseModeration.php:114 +#: src/Module/Moderation/Blocklist/Contact.php:96 +#: src/Module/Moderation/Blocklist/Server/Add.php:107 +#: src/Module/Moderation/Blocklist/Server/Import.php:102 +#: src/Module/Moderation/Blocklist/Server/Index.php:81 +#: src/Module/Moderation/Item/Delete.php:47 +#: src/Module/Moderation/Reports.php:96 src/Module/Moderation/Summary.php:61 +#: src/Module/Moderation/Users/Active.php:119 +#: src/Module/Moderation/Users/Blocked.php:119 +#: src/Module/Moderation/Users/Deleted.php:66 +#: src/Module/Moderation/Users/Index.php:133 msgid "Moderation" msgstr "" -#: src/Content/Nav.php:335 +#: src/Content/Nav.php:321 msgid "Content and user moderation" msgstr "" -#: src/Content/Nav.php:338 +#: src/Content/Nav.php:324 msgid "Navigation" msgstr "Navigatie" -#: src/Content/Nav.php:338 +#: src/Content/Nav.php:324 msgid "Site map" msgstr "Sitemap" -#: src/Content/Pager.php:216 +#: src/Content/Pager.php:202 msgid "first" msgstr "eerste" -#: src/Content/Pager.php:221 +#: src/Content/Pager.php:207 msgid "prev" msgstr "vorige" -#: src/Content/Pager.php:276 +#: src/Content/Pager.php:262 msgid "next" msgstr "volgende" -#: src/Content/Pager.php:281 +#: src/Content/Pager.php:267 msgid "last" msgstr "laatste" -#: src/Content/Text/BBCode.php:702 src/Content/Text/BBCode.php:1878 -#: src/Content/Text/BBCode.php:1879 +#: src/Content/Text/BBCode.php:689 src/Content/Text/BBCode.php:1862 +#: src/Content/Text/BBCode.php:1863 msgid "Image/photo" msgstr "Afbeelding/foto" -#: src/Content/Text/BBCode.php:920 +#: src/Content/Text/BBCode.php:907 #, php-format msgid "%2$s %3$s" msgstr "" -#: src/Content/Text/BBCode.php:945 src/Model/Item.php:4012 -#: src/Model/Item.php:4018 src/Model/Item.php:4019 +#: src/Content/Text/BBCode.php:929 src/Model/Item.php:4028 +#: src/Model/Item.php:4034 src/Model/Item.php:4035 msgid "Link to source" msgstr "" -#: src/Content/Text/BBCode.php:1759 src/Content/Text/HTML.php:906 +#: src/Content/Text/BBCode.php:1743 src/Content/Text/HTML.php:892 msgid "Click to open/close" msgstr "klik om te openen/sluiten" -#: src/Content/Text/BBCode.php:1814 +#: src/Content/Text/BBCode.php:1798 msgid "$1 wrote:" msgstr "$1 schreef:" -#: src/Content/Text/BBCode.php:1888 src/Content/Text/BBCode.php:1889 +#: src/Content/Text/BBCode.php:1872 src/Content/Text/BBCode.php:1873 msgid "Encrypted content" msgstr "Versleutelde inhoud" -#: src/Content/Text/BBCode.php:2194 +#: src/Content/Text/BBCode.php:2205 msgid "Invalid source protocol" msgstr "Ongeldig bron protocol" -#: src/Content/Text/BBCode.php:2213 +#: src/Content/Text/BBCode.php:2224 msgid "Invalid link protocol" msgstr "Ongeldig verbinding protocol" -#: src/Content/Text/HTML.php:784 +#: src/Content/Text/HTML.php:770 msgid "Loading more entries..." msgstr "Meer berichten aan het laden..." -#: src/Content/Text/HTML.php:785 +#: src/Content/Text/HTML.php:771 msgid "The end" msgstr "Het einde" -#: src/Content/Text/HTML.php:861 src/Content/Widget/VCard.php:127 -#: src/Model/Profile.php:477 src/Module/Contact/Profile.php:478 +#: src/Content/Text/HTML.php:847 src/Content/Widget/VCard.php:113 +#: src/Model/Profile.php:456 src/Module/Contact/Profile.php:478 msgid "Follow" msgstr "Volg" -#: src/Content/Widget.php:51 +#: src/Content/Widget.php:37 msgid "Add New Contact" msgstr "Nieuw Contact toevoegen" -#: src/Content/Widget.php:52 +#: src/Content/Widget.php:38 msgid "Enter address or web location" msgstr "Voeg een webadres of -locatie in:" -#: src/Content/Widget.php:53 +#: src/Content/Widget.php:39 msgid "Example: bob@example.com, http://example.com/barbara" msgstr "Voorbeeld: jan@voorbeeld.be, http://voorbeeld.nl/barbara" -#: src/Content/Widget.php:55 +#: src/Content/Widget.php:41 msgid "Connect" msgstr "Verbinden" -#: src/Content/Widget.php:72 +#: src/Content/Widget.php:58 #, php-format msgid "%d invitation available" msgid_plural "%d invitations available" msgstr[0] "%d uitnodiging beschikbaar" msgstr[1] "%d uitnodigingen beschikbaar" -#: src/Content/Widget.php:78 view/theme/vier/theme.php:193 +#: src/Content/Widget.php:64 view/theme/vier/theme.php:181 msgid "Find People" msgstr "Zoek mensen" -#: src/Content/Widget.php:79 view/theme/vier/theme.php:194 +#: src/Content/Widget.php:65 view/theme/vier/theme.php:182 msgid "Enter name or interest" msgstr "Vul naam of interesse in" -#: src/Content/Widget.php:81 view/theme/vier/theme.php:196 +#: src/Content/Widget.php:67 view/theme/vier/theme.php:184 msgid "Examples: Robert Morgenstein, Fishing" msgstr "Voorbeelden: Jan Peeters, Vissen" -#: src/Content/Widget.php:82 src/Module/Contact.php:460 -#: src/Module/Directory.php:96 view/theme/vier/theme.php:197 +#: src/Content/Widget.php:68 src/Module/Contact.php:441 +#: src/Module/Directory.php:83 view/theme/vier/theme.php:185 msgid "Find" msgstr "Zoek" -#: src/Content/Widget.php:83 src/Module/Contact/Suggestions.php:73 -#: view/theme/vier/theme.php:198 +#: src/Content/Widget.php:69 src/Module/Contact/Suggestions.php:59 +#: view/theme/vier/theme.php:186 msgid "Friend Suggestions" msgstr "Vriendschapsvoorstellen" -#: src/Content/Widget.php:84 view/theme/vier/theme.php:199 +#: src/Content/Widget.php:70 view/theme/vier/theme.php:187 msgid "Similar Interests" msgstr "Dezelfde interesses" -#: src/Content/Widget.php:85 view/theme/vier/theme.php:200 +#: src/Content/Widget.php:71 view/theme/vier/theme.php:188 msgid "Random Profile" msgstr "Willekeurig Profiel" -#: src/Content/Widget.php:86 view/theme/vier/theme.php:201 +#: src/Content/Widget.php:72 view/theme/vier/theme.php:189 msgid "Invite Friends" msgstr "Vrienden uitnodigen" -#: src/Content/Widget.php:87 src/Module/Directory.php:88 -#: view/theme/vier/theme.php:202 +#: src/Content/Widget.php:73 src/Module/Directory.php:75 +#: view/theme/vier/theme.php:190 msgid "Global Directory" msgstr "Globale gids" -#: src/Content/Widget.php:89 view/theme/vier/theme.php:204 +#: src/Content/Widget.php:75 view/theme/vier/theme.php:192 msgid "Local Directory" msgstr "Lokale gids" -#: src/Content/Widget.php:218 +#: src/Content/Widget.php:196 msgid "Everyone" msgstr "Iedereen" -#: src/Content/Widget.php:243 src/Module/Contact.php:423 +#: src/Content/Widget.php:221 src/Module/Contact.php:404 msgid "No relationship" msgstr "" -#: src/Content/Widget.php:248 +#: src/Content/Widget.php:226 msgid "Relationships" msgstr "Relaties" -#: src/Content/Widget.php:250 src/Module/Circle.php:294 -#: src/Module/Contact.php:344 +#: src/Content/Widget.php:228 src/Module/Circle.php:280 +#: src/Module/Contact.php:325 msgid "All Contacts" msgstr "Alle Contacten" -#: src/Content/Widget.php:291 +#: src/Content/Widget.php:269 msgid "All Protocols" msgstr "Alle protocollen" -#: src/Content/Widget.php:321 src/Content/Widget.php:352 +#: src/Content/Widget.php:299 src/Content/Widget.php:330 msgid "Everything" msgstr "Alles" -#: src/Content/Widget.php:350 +#: src/Content/Widget.php:328 msgid "Categories" msgstr "Categorieën" -#: src/Content/Widget.php:407 +#: src/Content/Widget.php:385 #, 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:515 +#: src/Content/Widget.php:493 msgid "On this date" msgstr "" -#: src/Content/Widget.php:535 +#: src/Content/Widget.php:513 msgid "Persons" msgstr "" -#: src/Content/Widget.php:536 +#: src/Content/Widget.php:514 msgid "Organisations" msgstr "" -#: src/Content/Widget.php:537 src/Model/Contact.php:1729 +#: src/Content/Widget.php:515 src/Model/Contact.php:1747 msgid "News" msgstr "Nieuws" -#: src/Content/Widget.php:539 +#: src/Content/Widget.php:517 msgid "Relays" msgstr "" -#: src/Content/Widget.php:546 src/Module/Moderation/BaseUsers.php:69 +#: src/Content/Widget.php:524 src/Module/Moderation/BaseUsers.php:56 msgid "All" msgstr "" -#: src/Content/Widget/CalendarExport.php:56 +#: src/Content/Widget/CalendarExport.php:42 msgid "Export" msgstr "Exporteer" -#: src/Content/Widget/CalendarExport.php:57 +#: src/Content/Widget/CalendarExport.php:43 msgid "Export calendar as ical" msgstr "Exporteer kalender als ical" -#: src/Content/Widget/CalendarExport.php:58 +#: src/Content/Widget/CalendarExport.php:44 msgid "Export calendar as csv" msgstr "Exporteer kalender als csv" -#: src/Content/Widget/ContactBlock.php:79 +#: src/Content/Widget/ContactBlock.php:65 msgid "No contacts" msgstr "Geen contacten" -#: src/Content/Widget/ContactBlock.php:110 +#: src/Content/Widget/ContactBlock.php:96 #, php-format msgid "%d Contact" msgid_plural "%d Contacts" msgstr[0] "%d contact" msgstr[1] "%d contacten" -#: src/Content/Widget/ContactBlock.php:127 +#: src/Content/Widget/ContactBlock.php:113 msgid "View Contacts" msgstr "Bekijk contacten" -#: src/Content/Widget/SavedSearches.php:47 +#: src/Content/Widget/SavedSearches.php:33 msgid "Remove term" msgstr "Verwijder zoekterm" -#: src/Content/Widget/TrendingTags.php:53 +#: src/Content/Widget/TrendingTags.php:39 #, php-format msgid "Trending Tags (last %d hour)" msgid_plural "Trending Tags (last %d hours)" msgstr[0] "Populaire Tags (laatste %d uur)" msgstr[1] "Populaire Tags (laatste %d uur)" -#: src/Content/Widget/TrendingTags.php:54 +#: src/Content/Widget/TrendingTags.php:40 msgid "More Trending Tags" msgstr "Meer Populaire Tags" -#: src/Content/Widget/VCard.php:105 src/Model/Contact.php:1196 -#: src/Model/Profile.php:462 +#: src/Content/Widget/VCard.php:91 src/Model/Contact.php:1212 +#: src/Model/Profile.php:441 msgid "Post to group" msgstr "" -#: src/Content/Widget/VCard.php:110 src/Model/Contact.php:1200 -#: src/Model/Profile.php:466 src/Module/Moderation/Item/Source.php:85 +#: src/Content/Widget/VCard.php:96 src/Model/Contact.php:1216 +#: src/Model/Profile.php:445 src/Module/Moderation/Item/Source.php:77 msgid "Mention" msgstr "" -#: src/Content/Widget/VCard.php:120 src/Model/Profile.php:381 -#: src/Module/Contact/Profile.php:414 src/Module/Profile/Profile.php:199 +#: src/Content/Widget/VCard.php:106 src/Model/Profile.php:360 +#: src/Module/Contact/Profile.php:414 src/Module/Profile/Profile.php:187 msgid "XMPP:" msgstr "XMPP:" -#: src/Content/Widget/VCard.php:121 src/Model/Profile.php:382 -#: src/Module/Contact/Profile.php:416 src/Module/Profile/Profile.php:203 +#: src/Content/Widget/VCard.php:107 src/Model/Profile.php:361 +#: src/Module/Contact/Profile.php:416 src/Module/Profile/Profile.php:191 msgid "Matrix:" msgstr "" -#: src/Content/Widget/VCard.php:122 src/Model/Event.php:82 -#: src/Model/Event.php:109 src/Model/Event.php:471 src/Model/Event.php:960 -#: src/Model/Profile.php:376 src/Module/Contact/Profile.php:412 -#: src/Module/Directory.php:147 src/Module/Notifications/Introductions.php:187 -#: src/Module/Profile/Profile.php:221 +#: src/Content/Widget/VCard.php:108 src/Model/Event.php:68 +#: src/Model/Event.php:95 src/Model/Event.php:457 src/Model/Event.php:946 +#: src/Model/Profile.php:355 src/Module/Contact/Profile.php:412 +#: src/Module/Directory.php:134 src/Module/Notifications/Introductions.php:179 +#: src/Module/Profile/Profile.php:209 msgid "Location:" msgstr "Plaats:" -#: src/Content/Widget/VCard.php:125 src/Model/Profile.php:490 -#: src/Module/Notifications/Introductions.php:201 +#: src/Content/Widget/VCard.php:111 src/Model/Profile.php:469 +#: src/Module/Notifications/Introductions.php:193 msgid "Network:" msgstr "Netwerk:" -#: src/Content/Widget/VCard.php:129 src/Model/Contact.php:1228 -#: src/Model/Contact.php:1240 src/Model/Profile.php:479 +#: src/Content/Widget/VCard.php:115 src/Model/Contact.php:1244 +#: src/Model/Contact.php:1256 src/Model/Profile.php:458 #: src/Module/Contact/Profile.php:470 msgid "Unfollow" msgstr "Stop volgen" -#: src/Content/Widget/VCard.php:135 src/Model/Contact.php:1198 -#: src/Model/Profile.php:464 +#: src/Content/Widget/VCard.php:121 src/Model/Contact.php:1214 +#: src/Model/Profile.php:443 msgid "View group" msgstr "" -#: src/Core/ACL.php:166 src/Module/Profile/Profile.php:269 +#: src/Core/ACL.php:152 src/Module/Profile/Profile.php:257 msgid "Yourself" msgstr "Jezelf" -#: src/Core/ACL.php:202 src/Module/Privacy/PermissionTooltip.php:170 -#: src/Module/Privacy/PermissionTooltip.php:192 +#: src/Core/ACL.php:188 src/Module/Privacy/PermissionTooltip.php:156 +#: src/Module/Privacy/PermissionTooltip.php:178 msgid "Mutuals" msgstr "Gemeenschappelijk" -#: src/Core/ACL.php:294 +#: src/Core/ACL.php:280 msgid "Post to Email" msgstr "Verzenden per e-mail" -#: src/Core/ACL.php:321 src/Module/Privacy/PermissionTooltip.php:117 -#: src/Module/Privacy/PermissionTooltip.php:231 +#: src/Core/ACL.php:307 src/Module/Privacy/PermissionTooltip.php:103 +#: src/Module/Privacy/PermissionTooltip.php:217 msgid "Public" msgstr "Openbaar" -#: src/Core/ACL.php:322 +#: src/Core/ACL.php:308 msgid "" "This content will be shown to all your followers and can be seen in the " "community pages and by anyone with its link." msgstr "Deze inhoud wordt aan al uw volgers getoond en is te zien op de communitypagina's en door iedereen met de link." -#: src/Core/ACL.php:323 src/Module/Privacy/PermissionTooltip.php:119 +#: src/Core/ACL.php:309 src/Module/Privacy/PermissionTooltip.php:105 msgid "Limited/Private" msgstr "Beperkt/Privé" -#: src/Core/ACL.php:324 +#: src/Core/ACL.php:310 msgid "" "This content will be shown only to the people in the first box, to the " "exception of the people mentioned in the second box. It won't appear " "anywhere public." msgstr "Deze inhoud wordt alleen getoond aan de mensen in het eerste vak, met uitzondering van de mensen die in het tweede vak worden genoemd. Het wordt nergens openbaar weergegeven." -#: src/Core/ACL.php:324 +#: src/Core/ACL.php:310 msgid "" "Start typing the name of a contact or a circle to show a filtered list. You " "can also mention the special circles \"Followers\" and \"Mutuals\"." msgstr "" -#: src/Core/ACL.php:325 +#: src/Core/ACL.php:311 msgid "Show to:" msgstr "Toon aan:" -#: src/Core/ACL.php:326 +#: src/Core/ACL.php:312 msgid "Except to:" msgstr "Behalve aan:" -#: src/Core/ACL.php:327 src/Module/Post/Edit.php:154 +#: src/Core/ACL.php:313 src/Module/Post/Edit.php:140 msgid "CC: email addresses" msgstr "CC: e-mailadressen" -#: src/Core/ACL.php:328 src/Module/Post/Edit.php:160 +#: src/Core/ACL.php:314 src/Module/Post/Edit.php:146 msgid "Example: bob@example.com, mary@example.com" msgstr "Voorbeeld: bob@voorbeeld.nl, an@voorbeeld.be" -#: src/Core/ACL.php:329 +#: src/Core/ACL.php:315 msgid "Connectors" msgstr "Connectors" -#: src/Core/Installer.php:180 +#: src/Core/Installer.php:166 msgid "" "The database configuration file \"config/local.config.php\" could not be " "written. Please use the enclosed text to create a configuration file in your" " web server root." msgstr "Het databaseconfiguratiebestand \"config/local.config.php\" kon niet worden weggeschreven. Je kunt de bijgevoegde tekst gebruiken om in een configuratiebestand aan te maken in de hoogste map van je webserver. " -#: src/Core/Installer.php:197 +#: src/Core/Installer.php:183 msgid "" "You may need to import the file \"database.sql\" manually using phpmyadmin " "or mysql." msgstr "Het kan nodig zijn om het bestand \"database.sql\" manueel te importeren met phpmyadmin of mysql." -#: src/Core/Installer.php:198 src/Module/Install.php:207 -#: src/Module/Install.php:350 +#: src/Core/Installer.php:184 src/Module/Install.php:193 +#: src/Module/Install.php:336 msgid "Please see the file \"doc/INSTALL.md\"." msgstr "" -#: src/Core/Installer.php:259 +#: src/Core/Installer.php:245 msgid "Could not find a command line version of PHP in the web server PATH." msgstr "Kan geen command-line-versie van PHP vinden in het PATH van de webserver." -#: src/Core/Installer.php:260 +#: src/Core/Installer.php:246 msgid "" "If you don't have a command line version of PHP installed on your server, " "you will not be able to run the background processing. See 'Setup the worker'" msgstr "" -#: src/Core/Installer.php:265 +#: src/Core/Installer.php:251 msgid "PHP executable path" msgstr "PATH van het PHP commando" -#: src/Core/Installer.php:265 +#: src/Core/Installer.php:251 msgid "" "Enter full path to php executable. You can leave this blank to continue the " "installation." msgstr "Vul het volledige pad in naar het php programma. Je kunt dit leeg laten om de installatie verder te zetten." -#: src/Core/Installer.php:270 +#: src/Core/Installer.php:256 msgid "Command line PHP" msgstr "PHP-opdrachtregel" -#: src/Core/Installer.php:279 +#: src/Core/Installer.php:265 msgid "PHP executable is not the php cli binary (could be cgi-fgci version)" msgstr "PHP uitvoerbaar bestand is niet de php cli binary (zou kunnen de cgi-fgci versie zijn)" -#: src/Core/Installer.php:280 +#: src/Core/Installer.php:266 msgid "Found PHP version: " msgstr "Gevonden PHP versie:" -#: src/Core/Installer.php:282 +#: src/Core/Installer.php:268 msgid "PHP cli binary" msgstr "PHP cli binary" -#: src/Core/Installer.php:295 +#: src/Core/Installer.php:281 msgid "" "The command line version of PHP on your system does not have " "\"register_argc_argv\" enabled." msgstr "De command-line versie van PHP op jouw systeem heeft \"register_argc_argv\" niet geactiveerd." -#: src/Core/Installer.php:296 +#: src/Core/Installer.php:282 msgid "This is required for message delivery to work." msgstr "Dit is nodig om het verzenden van berichten mogelijk te maken." -#: src/Core/Installer.php:301 +#: src/Core/Installer.php:287 msgid "PHP register_argc_argv" msgstr "PHP register_argc_argv" -#: src/Core/Installer.php:333 +#: src/Core/Installer.php:319 msgid "" "Error: the \"openssl_pkey_new\" function on this system is not able to " "generate encryption keys" msgstr "Fout: de \"openssl_pkey_new\" functie op dit systeem kan geen encryptie sleutels genereren" -#: src/Core/Installer.php:334 +#: src/Core/Installer.php:320 msgid "" "If running under Windows, please see " "\"http://www.php.net/manual/en/openssl.installation.php\"." msgstr "Zie \"http://www.php.net/manual/en/openssl.installation.php\" wanneer u Friendica onder Windows draait." -#: src/Core/Installer.php:337 +#: src/Core/Installer.php:323 msgid "Generate encryption keys" msgstr "Genereer encryptie sleutels" -#: src/Core/Installer.php:388 +#: src/Core/Installer.php:374 msgid "" "Error: Apache webserver mod-rewrite module is required but not installed." msgstr "Fout: Apache-module mod-rewrite is vereist, maar niet geïnstalleerd." -#: src/Core/Installer.php:392 +#: src/Core/Installer.php:378 msgid "Apache mod_rewrite module" msgstr "Apache mod_rewrite module" -#: src/Core/Installer.php:398 +#: src/Core/Installer.php:384 msgid "Error: PDO or MySQLi PHP module required but not installed." msgstr "Fout: PDO of MySQLi PHP module vereist maar niet geïnstalleerd." -#: src/Core/Installer.php:402 +#: src/Core/Installer.php:388 msgid "Error: The MySQL driver for PDO is not installed." msgstr "Fout: de MySQL driver voor PDO is niet geïnstalleerd." -#: src/Core/Installer.php:405 +#: src/Core/Installer.php:391 msgid "PDO or MySQLi PHP module" msgstr "PDO of MySQLi PHP module" -#: src/Core/Installer.php:411 +#: src/Core/Installer.php:397 msgid "Error: The IntlChar module is not installed." msgstr "" -#: src/Core/Installer.php:414 +#: src/Core/Installer.php:400 msgid "IntlChar PHP module" msgstr "" -#: src/Core/Installer.php:422 +#: src/Core/Installer.php:408 msgid "Error, XML PHP module required but not installed." msgstr "Fout: XML PHP module vereist maar niet geinstalleerd." -#: src/Core/Installer.php:426 +#: src/Core/Installer.php:412 msgid "XML PHP module" msgstr "XML PHP module" -#: src/Core/Installer.php:429 +#: src/Core/Installer.php:415 msgid "libCurl PHP module" msgstr "libCurl PHP module" -#: src/Core/Installer.php:430 +#: src/Core/Installer.php:416 msgid "Error: libCURL PHP module required but not installed." msgstr "Fout: PHP-module libCURL is vereist, maar niet geïnstalleerd." -#: src/Core/Installer.php:436 +#: src/Core/Installer.php:422 msgid "GD graphics PHP module" msgstr "GD graphics PHP module" -#: src/Core/Installer.php:437 +#: src/Core/Installer.php:423 msgid "" "Error: GD graphics PHP module with JPEG support required but not installed." msgstr "Fout: PHP-module GD graphics met JPEG support is vereist, maar niet geïnstalleerd." -#: src/Core/Installer.php:443 +#: src/Core/Installer.php:429 msgid "OpenSSL PHP module" msgstr "OpenSSL PHP module" -#: src/Core/Installer.php:444 +#: src/Core/Installer.php:430 msgid "Error: openssl PHP module required but not installed." msgstr "Fout: PHP-module openssl is vereist, maar niet geïnstalleerd." -#: src/Core/Installer.php:450 +#: src/Core/Installer.php:436 msgid "mb_string PHP module" msgstr "mb_string PHP module" -#: src/Core/Installer.php:451 +#: src/Core/Installer.php:437 msgid "Error: mb_string PHP module required but not installed." msgstr "Fout: PHP-module mb_string is vereist, maar niet geïnstalleerd." -#: src/Core/Installer.php:457 +#: src/Core/Installer.php:443 msgid "iconv PHP module" msgstr "iconv PHP module" -#: src/Core/Installer.php:458 +#: src/Core/Installer.php:444 msgid "Error: iconv PHP module required but not installed." msgstr "Fout: iconv PHP module vereist maar niet geïnstalleerd." -#: src/Core/Installer.php:464 +#: src/Core/Installer.php:450 msgid "POSIX PHP module" msgstr "POSIX PHP module" -#: src/Core/Installer.php:465 +#: src/Core/Installer.php:451 msgid "Error: POSIX PHP module required but not installed." msgstr "Fout: POSIX PHP module vereist maar niet geïnstalleerd." -#: src/Core/Installer.php:471 +#: src/Core/Installer.php:457 msgid "Program execution functions" msgstr "" -#: src/Core/Installer.php:472 +#: src/Core/Installer.php:458 msgid "" "Error: Program execution functions (proc_open) required but not enabled." msgstr "" -#: src/Core/Installer.php:478 +#: src/Core/Installer.php:464 msgid "JSON PHP module" msgstr "" -#: src/Core/Installer.php:479 +#: src/Core/Installer.php:465 msgid "Error: JSON PHP module required but not installed." msgstr "" -#: src/Core/Installer.php:485 +#: src/Core/Installer.php:471 msgid "File Information PHP module" msgstr "" -#: src/Core/Installer.php:486 +#: src/Core/Installer.php:472 msgid "Error: File Information PHP module required but not installed." msgstr "" -#: src/Core/Installer.php:492 +#: src/Core/Installer.php:478 msgid "GNU Multiple Precision PHP module" msgstr "" -#: src/Core/Installer.php:493 +#: src/Core/Installer.php:479 msgid "Error: GNU Multiple Precision PHP module required but not installed." msgstr "" -#: src/Core/Installer.php:499 +#: src/Core/Installer.php:485 msgid "IDN Functions PHP module" msgstr "" -#: src/Core/Installer.php:500 +#: src/Core/Installer.php:486 msgid "Error: IDN Functions PHP module required but not installed." msgstr "" -#: src/Core/Installer.php:523 +#: src/Core/Installer.php:509 msgid "" "The web installer needs to be able to create a file called " "\"local.config.php\" in the \"config\" folder of your web server and it is " "unable to do so." msgstr "Het installatieprogramma moet een bestand \"local.config.php\" in de \"config\" map van je webserver aanmaken, maar kan dit niet doen. " -#: src/Core/Installer.php:524 +#: src/Core/Installer.php:510 msgid "" "This is most often a permission setting, as the web server may not be able " "to write files in your folder - even if you can." msgstr "Dit is meestal een permissieprobleem, omdat de webserver niet in staat is om in deze map bestanden weg te schrijven - ook al kun je dit zelf wel." -#: src/Core/Installer.php:525 +#: src/Core/Installer.php:511 msgid "" "At the end of this procedure, we will give you a text to save in a file " "named local.config.php in your Friendica \"config\" folder." msgstr "Op het einde van deze procedure zal ik je een tekst geven om te bewaren in een bestand local.config.php in Friendica \"config\" map. " -#: src/Core/Installer.php:526 +#: src/Core/Installer.php:512 msgid "" "You can alternatively skip this procedure and perform a manual installation." " Please see the file \"doc/INSTALL.md\" for instructions." msgstr "" -#: src/Core/Installer.php:529 +#: src/Core/Installer.php:515 msgid "config/local.config.php is writable" msgstr "config/local.config.php is schrijfbaar " -#: src/Core/Installer.php:549 +#: src/Core/Installer.php:535 msgid "" "Friendica uses the Smarty3 template engine to render its web views. Smarty3 " "compiles templates to PHP to speed up rendering." msgstr "Friendica gebruikt het Smarty3 sjabloon systeem om zijn webpagina's weer te geven. Smarty3 compileert sjablonen naar PHP om de weergave te versnellen." -#: src/Core/Installer.php:550 +#: src/Core/Installer.php:536 msgid "" "In order to store these compiled templates, the web server needs to have " "write access to the directory view/smarty3/ under the Friendica top level " "folder." msgstr "Om deze gecompileerde sjablonen op te slaan moet de webserver schrijftoegang hebben tot de folder view/smarty3, t.o.v. van de hoogste folder van je Friendica-installatie." -#: src/Core/Installer.php:551 +#: src/Core/Installer.php:537 msgid "" "Please ensure that the user that your web server runs as (e.g. www-data) has" " write access to this folder." msgstr "Zorg ervoor dat de gebruiker waaronder je webserver runt (bijv. www-data) schrijf-toegang heeft tot deze map." -#: src/Core/Installer.php:552 +#: src/Core/Installer.php:538 msgid "" "Note: as a security measure, you should give the web server write access to " "view/smarty3/ only--not the template files (.tpl) that it contains." msgstr "Opmerking: voor een goede beveiliging zou je de webserver alleen schrijf-toegang moeten geven voor de map view/smarty3 -- niet voor de template bestanden (.tpl) die in die map zitten." -#: src/Core/Installer.php:555 +#: src/Core/Installer.php:541 msgid "view/smarty3 is writable" msgstr "view/smarty3 is schrijfbaar" -#: src/Core/Installer.php:583 +#: src/Core/Installer.php:569 msgid "" "Url rewrite in .htaccess seems not working. Make sure you copied .htaccess-" "dist to .htaccess." msgstr "" -#: src/Core/Installer.php:584 +#: src/Core/Installer.php:570 msgid "" "In some circumstances (like running inside containers), you can skip this " "error." msgstr "" -#: src/Core/Installer.php:586 +#: src/Core/Installer.php:572 msgid "Error message from Curl when fetching" msgstr "Fout boodschap van Curl bij ophalen" -#: src/Core/Installer.php:592 +#: src/Core/Installer.php:578 msgid "Url rewrite is working" msgstr "Url rewrite werkt correct" -#: src/Core/Installer.php:621 +#: src/Core/Installer.php:607 msgid "" "The detection of TLS to secure the communication between the browser and the" " new Friendica server failed." msgstr "" -#: src/Core/Installer.php:622 +#: src/Core/Installer.php:608 msgid "" "It is highly encouraged to use Friendica only over a secure connection as " "sensitive information like passwords will be transmitted." msgstr "" -#: src/Core/Installer.php:623 +#: src/Core/Installer.php:609 msgid "Please ensure that the connection to the server is secure." msgstr "" -#: src/Core/Installer.php:624 +#: src/Core/Installer.php:610 msgid "No TLS detected" msgstr "" -#: src/Core/Installer.php:626 +#: src/Core/Installer.php:612 msgid "TLS detected" msgstr "" -#: src/Core/Installer.php:643 +#: src/Core/Installer.php:629 msgid "ImageMagick PHP extension is not installed" msgstr "ImageMagick PHP extensie is niet geïnstalleerd" -#: src/Core/Installer.php:645 +#: src/Core/Installer.php:631 msgid "ImageMagick PHP extension is installed" msgstr "ImageMagick PHP extensie is geïnstalleerd" -#: src/Core/Installer.php:666 +#: src/Core/Installer.php:652 msgid "Database already in use." msgstr "Database al in gebruik." -#: src/Core/Installer.php:671 +#: src/Core/Installer.php:657 msgid "Could not connect to database." msgstr "Kon geen toegang krijgen tot de database." -#: src/Core/L10n.php:444 src/Model/Item.php:2300 +#: src/Core/L10n.php:430 src/Model/Item.php:2315 msgid "Undetermined" msgstr "" -#: src/Core/L10n.php:451 +#: src/Core/L10n.php:437 #, php-format msgid "%s (%s)" msgstr "" -#: src/Core/L10n.php:499 src/Model/Event.php:430 -#: src/Module/Settings/Display.php:284 +#: src/Core/L10n.php:485 src/Model/Event.php:416 +#: src/Module/Settings/Display.php:270 msgid "Monday" msgstr "Maandag" -#: src/Core/L10n.php:499 src/Model/Event.php:431 -#: src/Module/Settings/Display.php:285 +#: src/Core/L10n.php:485 src/Model/Event.php:417 +#: src/Module/Settings/Display.php:271 msgid "Tuesday" msgstr "Dinsdag" -#: src/Core/L10n.php:499 src/Model/Event.php:432 -#: src/Module/Settings/Display.php:286 +#: src/Core/L10n.php:485 src/Model/Event.php:418 +#: src/Module/Settings/Display.php:272 msgid "Wednesday" msgstr "Woensdag" -#: src/Core/L10n.php:499 src/Model/Event.php:433 -#: src/Module/Settings/Display.php:287 +#: src/Core/L10n.php:485 src/Model/Event.php:419 +#: src/Module/Settings/Display.php:273 msgid "Thursday" msgstr "Donderdag" -#: src/Core/L10n.php:499 src/Model/Event.php:434 -#: src/Module/Settings/Display.php:288 +#: src/Core/L10n.php:485 src/Model/Event.php:420 +#: src/Module/Settings/Display.php:274 msgid "Friday" msgstr "Vrijdag" -#: src/Core/L10n.php:499 src/Model/Event.php:435 -#: src/Module/Settings/Display.php:289 +#: src/Core/L10n.php:485 src/Model/Event.php:421 +#: src/Module/Settings/Display.php:275 msgid "Saturday" msgstr "Zaterdag" -#: src/Core/L10n.php:499 src/Model/Event.php:429 -#: src/Module/Settings/Display.php:283 +#: src/Core/L10n.php:485 src/Model/Event.php:415 +#: src/Module/Settings/Display.php:269 msgid "Sunday" msgstr "Zondag" -#: src/Core/L10n.php:503 src/Model/Event.php:450 +#: src/Core/L10n.php:489 src/Model/Event.php:436 msgid "January" msgstr "Januari" -#: src/Core/L10n.php:503 src/Model/Event.php:451 +#: src/Core/L10n.php:489 src/Model/Event.php:437 msgid "February" msgstr "Februari" -#: src/Core/L10n.php:503 src/Model/Event.php:452 +#: src/Core/L10n.php:489 src/Model/Event.php:438 msgid "March" msgstr "Maart" -#: src/Core/L10n.php:503 src/Model/Event.php:453 +#: src/Core/L10n.php:489 src/Model/Event.php:439 msgid "April" msgstr "April" -#: src/Core/L10n.php:503 src/Core/L10n.php:522 src/Model/Event.php:441 +#: src/Core/L10n.php:489 src/Core/L10n.php:508 src/Model/Event.php:427 msgid "May" msgstr "Mei" -#: src/Core/L10n.php:503 src/Model/Event.php:454 +#: src/Core/L10n.php:489 src/Model/Event.php:440 msgid "June" msgstr "Juni" -#: src/Core/L10n.php:503 src/Model/Event.php:455 +#: src/Core/L10n.php:489 src/Model/Event.php:441 msgid "July" msgstr "Juli" -#: src/Core/L10n.php:503 src/Model/Event.php:456 +#: src/Core/L10n.php:489 src/Model/Event.php:442 msgid "August" msgstr "Augustus" -#: src/Core/L10n.php:503 src/Model/Event.php:457 +#: src/Core/L10n.php:489 src/Model/Event.php:443 msgid "September" msgstr "September" -#: src/Core/L10n.php:503 src/Model/Event.php:458 +#: src/Core/L10n.php:489 src/Model/Event.php:444 msgid "October" msgstr "Oktober" -#: src/Core/L10n.php:503 src/Model/Event.php:459 +#: src/Core/L10n.php:489 src/Model/Event.php:445 msgid "November" msgstr "November" -#: src/Core/L10n.php:503 src/Model/Event.php:460 +#: src/Core/L10n.php:489 src/Model/Event.php:446 msgid "December" msgstr "December" -#: src/Core/L10n.php:518 src/Model/Event.php:422 +#: src/Core/L10n.php:504 src/Model/Event.php:408 msgid "Mon" msgstr "Maa" -#: src/Core/L10n.php:518 src/Model/Event.php:423 +#: src/Core/L10n.php:504 src/Model/Event.php:409 msgid "Tue" msgstr "Din" -#: src/Core/L10n.php:518 src/Model/Event.php:424 +#: src/Core/L10n.php:504 src/Model/Event.php:410 msgid "Wed" msgstr "Woe" -#: src/Core/L10n.php:518 src/Model/Event.php:425 +#: src/Core/L10n.php:504 src/Model/Event.php:411 msgid "Thu" msgstr "Don" -#: src/Core/L10n.php:518 src/Model/Event.php:426 +#: src/Core/L10n.php:504 src/Model/Event.php:412 msgid "Fri" msgstr "Vrij" -#: src/Core/L10n.php:518 src/Model/Event.php:427 +#: src/Core/L10n.php:504 src/Model/Event.php:413 msgid "Sat" msgstr "Zat" -#: src/Core/L10n.php:518 src/Model/Event.php:421 +#: src/Core/L10n.php:504 src/Model/Event.php:407 msgid "Sun" msgstr "Zon" -#: src/Core/L10n.php:522 src/Model/Event.php:437 +#: src/Core/L10n.php:508 src/Model/Event.php:423 msgid "Jan" msgstr "Jan" -#: src/Core/L10n.php:522 src/Model/Event.php:438 +#: src/Core/L10n.php:508 src/Model/Event.php:424 msgid "Feb" msgstr "Feb" -#: src/Core/L10n.php:522 src/Model/Event.php:439 +#: src/Core/L10n.php:508 src/Model/Event.php:425 msgid "Mar" msgstr "Maa" -#: src/Core/L10n.php:522 src/Model/Event.php:440 +#: src/Core/L10n.php:508 src/Model/Event.php:426 msgid "Apr" msgstr "Apr" -#: src/Core/L10n.php:522 src/Model/Event.php:442 +#: src/Core/L10n.php:508 src/Model/Event.php:428 msgid "Jun" msgstr "Jun" -#: src/Core/L10n.php:522 src/Model/Event.php:443 +#: src/Core/L10n.php:508 src/Model/Event.php:429 msgid "Jul" msgstr "Jul" -#: src/Core/L10n.php:522 src/Model/Event.php:444 +#: src/Core/L10n.php:508 src/Model/Event.php:430 msgid "Aug" msgstr "Aug" -#: src/Core/L10n.php:522 +#: src/Core/L10n.php:508 msgid "Sep" msgstr "Sep" -#: src/Core/L10n.php:522 src/Model/Event.php:446 +#: src/Core/L10n.php:508 src/Model/Event.php:432 msgid "Oct" msgstr "Okt" -#: src/Core/L10n.php:522 src/Model/Event.php:447 +#: src/Core/L10n.php:508 src/Model/Event.php:433 msgid "Nov" msgstr "Nov" -#: src/Core/L10n.php:522 src/Model/Event.php:448 +#: src/Core/L10n.php:508 src/Model/Event.php:434 msgid "Dec" msgstr "Dec" -#: src/Core/Logger/Util/LoggerSettingsCheck.php:60 +#: src/Core/Logger/Util/LoggerSettingsCheck.php:46 #, php-format msgid "The logfile '%s' is not usable. No logging possible (error: '%s')" msgstr "" -#: src/Core/Logger/Util/LoggerSettingsCheck.php:85 +#: src/Core/Logger/Util/LoggerSettingsCheck.php:71 #, php-format msgid "" "The debug logfile '%s' is not usable. No logging possible (error: '%s')" msgstr "" -#: src/Core/Renderer.php:92 src/Core/Renderer.php:121 -#: src/Core/Renderer.php:150 src/Core/Renderer.php:184 -#: src/Render/FriendicaSmartyEngine.php:60 +#: src/Core/Renderer.php:78 src/Core/Renderer.php:107 +#: src/Core/Renderer.php:136 src/Core/Renderer.php:170 +#: src/Render/FriendicaSmartyEngine.php:46 msgid "" "Friendica can't display this page at the moment, please contact the " "administrator." msgstr "Friendica kan deze pagina momenteel niet weergeven, neem contact op met de beheerder." -#: src/Core/Renderer.php:146 +#: src/Core/Renderer.php:132 msgid "template engine cannot be registered without a name." msgstr "" -#: src/Core/Renderer.php:180 +#: src/Core/Renderer.php:166 msgid "template engine is not registered!" msgstr "" -#: src/Core/Storage/Type/FilesystemConfig.php:78 +#: src/Core/Storage/Type/FilesystemConfig.php:64 msgid "Storage base path" msgstr "" -#: src/Core/Storage/Type/FilesystemConfig.php:80 +#: src/Core/Storage/Type/FilesystemConfig.php:66 msgid "" "Folder where uploaded files are saved. For maximum security, This should be " "a path outside web server folder tree" msgstr "" -#: src/Core/Storage/Type/FilesystemConfig.php:93 +#: src/Core/Storage/Type/FilesystemConfig.php:79 msgid "Enter a valid existing folder" msgstr "Geef een geldige bestaande folder in" -#: src/Core/Update.php:80 +#: src/Core/Update.php:66 #, php-format msgid "" "Updates from version %s are not supported. Please update at least to version" " 2021.01 and wait until the postupdate finished version 1383." msgstr "" -#: src/Core/Update.php:91 +#: src/Core/Update.php:77 #, php-format msgid "" "Updates from postupdate version %s are not supported. Please update at least" " to version 2021.01 and wait until the postupdate finished version 1383." msgstr "" -#: src/Core/Update.php:183 +#: src/Core/Update.php:169 #, php-format msgid "%s: executing pre update %d" msgstr "" -#: src/Core/Update.php:225 +#: src/Core/Update.php:211 #, php-format msgid "%s: executing post update %d" msgstr "" -#: src/Core/Update.php:299 +#: src/Core/Update.php:285 #, php-format msgid "Update %s failed. See error logs." msgstr "Wijziging %s mislukt. Lees de error logbestanden." -#: src/Core/Update.php:339 +#: src/Core/Update.php:325 #, php-format msgid "" "\n" @@ -3176,49 +3182,49 @@ msgid "" "\t\t\t\tfriendica developer if you can not help me on your own. My database might be invalid." msgstr "\n\t\t\t\tDe Friendica ontwikkelaars hebben recent update %svrijgegeven,\n \t\t\t\tmaar wanneer ik deze probeerde te installeren ging het verschrikkelijk fout.\n \t\t\t\tDit moet snel opgelost worden en ik kan het niet alleen. Contacteer alstublieft\n \t\t\t\teen Friendica ontwikkelaar als je mij zelf niet kan helpen. Mijn database kan ongeldig zijn." -#: src/Core/Update.php:345 +#: src/Core/Update.php:331 #, php-format msgid "The error message is\\n[pre]%s[/pre]" msgstr "" -#: src/Core/Update.php:349 src/Core/Update.php:377 +#: src/Core/Update.php:335 src/Core/Update.php:363 msgid "[Friendica Notify] Database update" msgstr "" -#: src/Core/Update.php:371 +#: src/Core/Update.php:357 #, php-format msgid "" "\n" "\t\t\t\tThe friendica database was successfully updated from %s to %s." msgstr "" -#: src/Database/DBStructure.php:57 +#: src/Database/DBStructure.php:43 #, php-format msgid "The database version had been set to %s." msgstr "" -#: src/Database/DBStructure.php:82 +#: src/Database/DBStructure.php:68 #, php-format msgid "" "The post update is at version %d, it has to be at %d to safely drop the " "tables." msgstr "" -#: src/Database/DBStructure.php:95 +#: src/Database/DBStructure.php:81 msgid "No unused tables found." msgstr "" -#: src/Database/DBStructure.php:100 +#: src/Database/DBStructure.php:86 msgid "" "These tables are not used for friendica and will be deleted when you execute" " \"dbstructure drop -e\":" msgstr "" -#: src/Database/DBStructure.php:137 +#: src/Database/DBStructure.php:123 msgid "There are no tables on MyISAM or InnoDB with the Antelope file format." msgstr "" -#: src/Database/DBStructure.php:161 +#: src/Database/DBStructure.php:147 #, php-format msgid "" "\n" @@ -3226,629 +3232,625 @@ msgid "" "%s\n" msgstr "\nFout %d is opgetreden tijdens database update:\n%s\n" -#: src/Database/DBStructure.php:164 +#: src/Database/DBStructure.php:150 msgid "Errors encountered performing database changes: " msgstr "Fouten opgetreden tijdens database aanpassingen:" -#: src/Database/DBStructure.php:232 +#: src/Database/DBStructure.php:218 msgid "Another database update is currently running." msgstr "" -#: src/Database/DBStructure.php:236 +#: src/Database/DBStructure.php:222 #, php-format msgid "%s: Database update" msgstr "%s: Database update" -#: src/Database/DBStructure.php:493 +#: src/Database/DBStructure.php:479 #, php-format msgid "%s: updating %s table." msgstr "%s: tabel %s aan het updaten." -#: src/Factory/Api/Mastodon/Error.php:42 +#: src/Factory/Api/Mastodon/Error.php:28 msgid "Record not found" msgstr "" -#: src/Factory/Api/Mastodon/Error.php:49 +#: src/Factory/Api/Mastodon/Error.php:35 msgid "Unprocessable Entity" msgstr "" -#: src/Factory/Api/Mastodon/Error.php:56 +#: src/Factory/Api/Mastodon/Error.php:42 msgid "Unauthorized" msgstr "Onbevoegd" -#: src/Factory/Api/Mastodon/Error.php:62 +#: src/Factory/Api/Mastodon/Error.php:48 msgid "" "Token is not authorized with a valid user or is missing a required scope" msgstr "" -#: src/Factory/Api/Mastodon/Error.php:69 +#: src/Factory/Api/Mastodon/Error.php:55 msgid "Internal Server Error" msgstr "" -#: src/LegacyModule.php:63 +#: src/LegacyModule.php:49 #, php-format msgid "Legacy module file not found: %s" msgstr "Legacy module bestand niet gevonden: %s" -#: src/Model/Circle.php:106 +#: src/Model/Circle.php:92 msgid "" "A deleted circle with this name was revived. Existing item permissions " "may apply to this circle and any future members. If this is" " not what you intended, please create another circle with a different name." msgstr "" -#: src/Model/Circle.php:544 +#: src/Model/Circle.php:530 msgid "Everybody" msgstr "Iedereen" -#: src/Model/Circle.php:563 +#: src/Model/Circle.php:549 msgid "edit" msgstr "verander" -#: src/Model/Circle.php:600 +#: src/Model/Circle.php:586 msgid "add" msgstr "toevoegen" -#: src/Model/Circle.php:605 +#: src/Model/Circle.php:591 msgid "Edit circle" msgstr "" -#: src/Model/Circle.php:606 src/Module/Circle.php:195 +#: src/Model/Circle.php:592 src/Module/Circle.php:181 msgid "Contacts not in any circle" msgstr "" -#: src/Model/Circle.php:608 +#: src/Model/Circle.php:594 msgid "Create a new circle" msgstr "" -#: src/Model/Circle.php:609 src/Module/Circle.php:180 -#: src/Module/Circle.php:203 src/Module/Circle.php:278 +#: src/Model/Circle.php:595 src/Module/Circle.php:166 +#: src/Module/Circle.php:189 src/Module/Circle.php:264 msgid "Circle Name: " msgstr "" -#: src/Model/Circle.php:610 +#: src/Model/Circle.php:596 msgid "Edit circles" msgstr "" -#: src/Model/Contact.php:1247 src/Module/Moderation/Users/Pending.php:102 -#: src/Module/Notifications/Introductions.php:132 -#: src/Module/Notifications/Introductions.php:204 +#: src/Model/Contact.php:1263 src/Module/Moderation/Users/Pending.php:88 +#: src/Module/Notifications/Introductions.php:124 +#: src/Module/Notifications/Introductions.php:196 msgid "Approve" msgstr "Goedkeuren" -#: src/Model/Contact.php:1725 +#: src/Model/Contact.php:1743 msgid "Organisation" msgstr "Organisatie" -#: src/Model/Contact.php:1733 +#: src/Model/Contact.php:1751 msgid "Group" msgstr "" -#: src/Model/Contact.php:1737 src/Module/Moderation/BaseUsers.php:131 +#: src/Model/Contact.php:1755 src/Module/Moderation/BaseUsers.php:120 msgid "Relay" msgstr "" -#: src/Model/Contact.php:3046 +#: src/Model/Contact.php:3070 msgid "Disallowed profile URL." msgstr "Niet toegelaten profiel adres." -#: src/Model/Contact.php:3051 src/Module/Friendica.php:100 +#: src/Model/Contact.php:3075 src/Module/Friendica.php:86 msgid "Blocked domain" msgstr "Domein geblokeerd" -#: src/Model/Contact.php:3056 +#: src/Model/Contact.php:3080 msgid "Connect URL missing." msgstr "Connectie URL ontbreekt." -#: src/Model/Contact.php:3065 +#: src/Model/Contact.php:3089 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:3083 +#: src/Model/Contact.php:3107 #, php-format msgid "Expected network %s does not match actual network %s" msgstr "" -#: src/Model/Contact.php:3100 +#: src/Model/Contact.php:3124 msgid "This seems to be a relay account. They can't be followed by users." msgstr "" -#: src/Model/Contact.php:3107 +#: src/Model/Contact.php:3131 msgid "The profile address specified does not provide adequate information." msgstr "Het opgegeven profiel adres bevat geen adequate informatie." -#: src/Model/Contact.php:3109 +#: src/Model/Contact.php:3133 msgid "No compatible communication protocols or feeds were discovered." msgstr "Er werden geen compatibele communicatieprotocols of feeds ontdekt." -#: src/Model/Contact.php:3112 +#: src/Model/Contact.php:3136 msgid "An author or name was not found." msgstr "Er werd geen auteur of naam gevonden." -#: src/Model/Contact.php:3115 +#: src/Model/Contact.php:3139 msgid "No browser URL could be matched to this address." msgstr "Er kan geen browser URL gematcht worden met dit adres." -#: src/Model/Contact.php:3118 +#: src/Model/Contact.php:3142 msgid "" "Unable to match @-style Identity Address with a known protocol or email " "contact." msgstr "Het @-stijl-identiteitsadres komt niet overeen met een nekend protocol of e-mailcontact." -#: src/Model/Contact.php:3119 +#: src/Model/Contact.php:3143 msgid "Use mailto: in front of address to force email check." msgstr "Gebruik mailto: voor het adres om een e-mailcontrole af te dwingen." -#: src/Model/Contact.php:3125 -msgid "" -"The profile address specified belongs to a network which has been disabled " -"on this site." -msgstr "Het opgegeven profiel adres behoort tot een netwerk dat gedeactiveerd is op deze site." - -#: src/Model/Contact.php:3130 +#: src/Model/Contact.php:3149 msgid "" "Limited profile. This person will be unable to receive direct/personal " "notifications from you." msgstr "Profiel met restricties. Deze peresoon zal geen directe/persoonlijke notificaties van jou kunnen ontvangen." -#: src/Model/Contact.php:3196 +#: src/Model/Contact.php:3208 msgid "Unable to retrieve contact information." msgstr "Het was niet mogelijk informatie over dit contact op te halen." -#: src/Model/Event.php:54 +#: src/Model/Event.php:40 msgid "l F d, Y \\@ g:i A \\G\\M\\TP (e)" msgstr "" -#: src/Model/Event.php:75 src/Model/Event.php:92 src/Model/Event.php:469 -#: src/Model/Event.php:942 +#: src/Model/Event.php:61 src/Model/Event.php:78 src/Model/Event.php:455 +#: src/Model/Event.php:928 msgid "Starts:" msgstr "Begint:" -#: src/Model/Event.php:78 src/Model/Event.php:98 src/Model/Event.php:470 -#: src/Model/Event.php:946 +#: src/Model/Event.php:64 src/Model/Event.php:84 src/Model/Event.php:456 +#: src/Model/Event.php:932 msgid "Finishes:" msgstr "Eindigt:" -#: src/Model/Event.php:419 +#: src/Model/Event.php:405 msgid "all-day" msgstr "de hele dag" -#: src/Model/Event.php:445 +#: src/Model/Event.php:431 msgid "Sept" msgstr "Sep" -#: src/Model/Event.php:462 src/Module/Calendar/Show.php:128 -#: src/Util/Temporal.php:343 +#: src/Model/Event.php:448 src/Module/Calendar/Show.php:114 +#: src/Util/Temporal.php:329 msgid "today" msgstr "vandaag" -#: src/Model/Event.php:463 src/Module/Calendar/Show.php:129 -#: src/Module/Settings/Display.php:294 src/Util/Temporal.php:353 +#: src/Model/Event.php:449 src/Module/Calendar/Show.php:115 +#: src/Module/Settings/Display.php:280 src/Util/Temporal.php:339 msgid "month" msgstr "maand" -#: src/Model/Event.php:464 src/Module/Calendar/Show.php:130 -#: src/Module/Settings/Display.php:295 src/Util/Temporal.php:354 +#: src/Model/Event.php:450 src/Module/Calendar/Show.php:116 +#: src/Module/Settings/Display.php:281 src/Util/Temporal.php:340 msgid "week" msgstr "week" -#: src/Model/Event.php:465 src/Module/Calendar/Show.php:131 -#: src/Module/Settings/Display.php:296 src/Util/Temporal.php:355 +#: src/Model/Event.php:451 src/Module/Calendar/Show.php:117 +#: src/Module/Settings/Display.php:282 src/Util/Temporal.php:341 msgid "day" msgstr "dag" -#: src/Model/Event.php:467 +#: src/Model/Event.php:453 msgid "No events to display" msgstr "Geen gebeurtenissen te tonen" -#: src/Model/Event.php:516 src/Module/DFRN/Poll.php:47 src/Module/Feed.php:68 -#: src/Module/Update/Profile.php:56 +#: src/Model/Event.php:502 src/Module/Feed.php:56 +#: src/Module/Update/Profile.php:42 msgid "Access to this profile has been restricted." msgstr "Toegang tot dit profiel is beperkt." -#: src/Model/Event.php:558 src/Module/Calendar/Event/Show.php:67 +#: src/Model/Event.php:544 src/Module/Calendar/Event/Show.php:53 msgid "Event not found." msgstr "" -#: src/Model/Event.php:637 +#: src/Model/Event.php:623 msgid "l, F j" msgstr "l j F" -#: src/Model/Event.php:664 +#: src/Model/Event.php:650 msgid "Edit event" msgstr "Gebeurtenis bewerken" -#: src/Model/Event.php:665 +#: src/Model/Event.php:651 msgid "Duplicate event" msgstr "Duplicate gebeurtenis" -#: src/Model/Event.php:666 +#: src/Model/Event.php:652 msgid "Delete event" msgstr "Verwijder gebeurtenis" -#: src/Model/Event.php:896 src/Module/Debug/Localtime.php:38 +#: src/Model/Event.php:882 src/Module/Debug/Localtime.php:24 msgid "l F d, Y \\@ g:i A" msgstr "l F d, Y \\@ g:i A" -#: src/Model/Event.php:897 +#: src/Model/Event.php:883 msgid "D g:i A" msgstr "D g:i A" -#: src/Model/Event.php:898 +#: src/Model/Event.php:884 msgid "g:i A" msgstr "g:i A" -#: src/Model/Event.php:961 src/Model/Event.php:963 +#: src/Model/Event.php:947 src/Model/Event.php:949 msgid "Show map" msgstr "Toon kaart" -#: src/Model/Event.php:962 +#: src/Model/Event.php:948 msgid "Hide map" msgstr "Verberg kaart" -#: src/Model/Event.php:1055 +#: src/Model/Event.php:1041 #, php-format msgid "%s's birthday" msgstr "%s's verjaardag" -#: src/Model/Event.php:1056 +#: src/Model/Event.php:1042 #, php-format msgid "Happy Birthday %s" msgstr "Gefeliciteerd %s" -#: src/Model/Item.php:2307 +#: src/Model/Item.php:2322 #, php-format msgid "%s (%s - %s): %s" msgstr "" -#: src/Model/Item.php:2309 +#: src/Model/Item.php:2324 #, php-format msgid "%s (%s): %s" msgstr "" -#: src/Model/Item.php:2312 +#: src/Model/Item.php:2327 #, php-format -msgid "Detected languages in this post:\\n%s" +msgid "" +"Detected languages in this post:\n" +"%s" msgstr "" -#: src/Model/Item.php:3260 +#: src/Model/Item.php:3276 msgid "activity" msgstr "activiteit" -#: src/Model/Item.php:3262 +#: src/Model/Item.php:3278 msgid "comment" msgstr "" -#: src/Model/Item.php:3265 src/Module/Post/Tag/Add.php:123 +#: src/Model/Item.php:3281 src/Module/Post/Tag/Add.php:109 msgid "post" msgstr "bericht" -#: src/Model/Item.php:3435 +#: src/Model/Item.php:3451 #, php-format msgid "%s is blocked" msgstr "" -#: src/Model/Item.php:3437 +#: src/Model/Item.php:3453 #, php-format msgid "%s is ignored" msgstr "" -#: src/Model/Item.php:3439 +#: src/Model/Item.php:3455 #, php-format msgid "Content from %s is collapsed" msgstr "" -#: src/Model/Item.php:3443 +#: src/Model/Item.php:3459 msgid "Sensitive content" msgstr "" -#: src/Model/Item.php:3912 +#: src/Model/Item.php:3928 msgid "bytes" msgstr "bytes" -#: src/Model/Item.php:3943 +#: src/Model/Item.php:3959 #, 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:3945 +#: src/Model/Item.php:3961 #, php-format msgid "%2$s (%1$d vote)" msgid_plural "%2$s (%1$d votes)" msgstr[0] "" msgstr[1] "" -#: src/Model/Item.php:3950 +#: src/Model/Item.php:3966 #, php-format msgid "%d voter. Poll end: %s" msgid_plural "%d voters. Poll end: %s" msgstr[0] "" msgstr[1] "" -#: src/Model/Item.php:3952 +#: src/Model/Item.php:3968 #, php-format msgid "%d voter." msgid_plural "%d voters." msgstr[0] "" msgstr[1] "" -#: src/Model/Item.php:3954 +#: src/Model/Item.php:3970 #, php-format msgid "Poll end: %s" msgstr "" -#: src/Model/Item.php:3995 src/Model/Item.php:3996 +#: src/Model/Item.php:4011 src/Model/Item.php:4012 msgid "View on separate page" msgstr "Bekijk op aparte pagina" -#: src/Model/Mail.php:135 +#: src/Model/Mail.php:121 msgid "[no subject]" msgstr "[geen onderwerp]" -#: src/Model/Photo.php:1198 src/Module/Media/Photo/Upload.php:168 +#: src/Model/Photo.php:1194 src/Module/Media/Photo/Upload.php:154 msgid "Wall Photos" msgstr "Tijdlijn foto's" -#: src/Model/Profile.php:364 src/Module/Profile/Profile.php:283 -#: src/Module/Profile/Profile.php:285 +#: src/Model/Profile.php:343 src/Module/Profile/Profile.php:271 +#: src/Module/Profile/Profile.php:273 msgid "Edit profile" msgstr "Bewerk profiel" -#: src/Model/Profile.php:366 +#: src/Model/Profile.php:345 msgid "Change profile photo" msgstr "Profiel foto wijzigen" -#: src/Model/Profile.php:379 src/Module/Directory.php:152 -#: src/Module/Profile/Profile.php:209 +#: src/Model/Profile.php:358 src/Module/Directory.php:139 +#: src/Module/Profile/Profile.php:197 msgid "Homepage:" msgstr "Website:" -#: src/Model/Profile.php:380 src/Module/Contact/Profile.php:418 -#: src/Module/Notifications/Introductions.php:189 +#: src/Model/Profile.php:359 src/Module/Contact/Profile.php:418 +#: src/Module/Notifications/Introductions.php:181 msgid "About:" msgstr "Over:" -#: src/Model/Profile.php:481 +#: src/Model/Profile.php:460 msgid "Atom feed" msgstr "Atom feed" -#: src/Model/Profile.php:488 +#: src/Model/Profile.php:467 msgid "This website has been verified to belong to the same person." msgstr "" -#: src/Model/Profile.php:539 +#: src/Model/Profile.php:518 msgid "F d" msgstr "d F" -#: src/Model/Profile.php:603 src/Model/Profile.php:680 +#: src/Model/Profile.php:582 src/Model/Profile.php:663 msgid "[today]" msgstr "[vandaag]" -#: src/Model/Profile.php:612 +#: src/Model/Profile.php:591 msgid "Birthday Reminders" msgstr "Verjaardagsherinneringen" -#: src/Model/Profile.php:613 +#: src/Model/Profile.php:592 msgid "Birthdays this week:" msgstr "Verjaardagen deze week:" -#: src/Model/Profile.php:629 +#: src/Model/Profile.php:608 msgid "g A l F d" msgstr "G l j F" -#: src/Model/Profile.php:667 +#: src/Model/Profile.php:650 msgid "[No description]" msgstr "[Geen omschrijving]" -#: src/Model/Profile.php:693 +#: src/Model/Profile.php:676 msgid "Event Reminders" msgstr "Gebeurtenisherinneringen" -#: src/Model/Profile.php:694 +#: src/Model/Profile.php:677 msgid "Upcoming events the next 7 days:" msgstr "Evenementen de komende 7 dagen:" -#: src/Model/Profile.php:882 -#, php-format -msgid "OpenWebAuth: %1$s welcomes %2$s" -msgstr "OpenWebAuth: %1$s verwelkomt %2$s" - -#: src/Model/Profile.php:1022 +#: src/Model/Profile.php:789 msgid "Hometown:" msgstr "Woonplaats:" -#: src/Model/Profile.php:1023 +#: src/Model/Profile.php:790 msgid "Marital Status:" msgstr "" -#: src/Model/Profile.php:1024 +#: src/Model/Profile.php:791 msgid "With:" msgstr "Met:" -#: src/Model/Profile.php:1025 +#: src/Model/Profile.php:792 msgid "Since:" msgstr "Sinds:" -#: src/Model/Profile.php:1026 +#: src/Model/Profile.php:793 msgid "Sexual Preference:" msgstr "Seksuele Voorkeur:" -#: src/Model/Profile.php:1027 +#: src/Model/Profile.php:794 msgid "Political Views:" msgstr "Politieke standpunten:" -#: src/Model/Profile.php:1028 +#: src/Model/Profile.php:795 msgid "Religious Views:" msgstr "Geloof:" -#: src/Model/Profile.php:1029 +#: src/Model/Profile.php:796 msgid "Likes:" msgstr "Houdt van:" -#: src/Model/Profile.php:1030 +#: src/Model/Profile.php:797 msgid "Dislikes:" msgstr "Houdt niet van:" -#: src/Model/Profile.php:1031 +#: src/Model/Profile.php:798 msgid "Title/Description:" msgstr "Titel/Beschrijving:" -#: src/Model/Profile.php:1032 src/Module/Admin/Summary.php:197 -#: src/Module/Moderation/Report/Create.php:280 -#: src/Module/Moderation/Summary.php:76 +#: src/Model/Profile.php:799 src/Module/Admin/Summary.php:183 +#: src/Module/Moderation/Report/Create.php:266 +#: src/Module/Moderation/Summary.php:62 msgid "Summary" msgstr "Samenvatting" -#: src/Model/Profile.php:1033 +#: src/Model/Profile.php:800 msgid "Musical interests" msgstr "Muzikale interesses" -#: src/Model/Profile.php:1034 +#: src/Model/Profile.php:801 msgid "Books, literature" msgstr "Boeken, literatuur" -#: src/Model/Profile.php:1035 +#: src/Model/Profile.php:802 msgid "Television" msgstr "Televisie" -#: src/Model/Profile.php:1036 +#: src/Model/Profile.php:803 msgid "Film/dance/culture/entertainment" msgstr "Film/dans/cultuur/ontspanning" -#: src/Model/Profile.php:1037 +#: src/Model/Profile.php:804 msgid "Hobbies/Interests" msgstr "Hobby's/Interesses" -#: src/Model/Profile.php:1038 +#: src/Model/Profile.php:805 msgid "Love/romance" msgstr "Liefde/romance" -#: src/Model/Profile.php:1039 +#: src/Model/Profile.php:806 msgid "Work/employment" msgstr "Werk" -#: src/Model/Profile.php:1040 +#: src/Model/Profile.php:807 msgid "School/education" msgstr "School/opleiding" -#: src/Model/Profile.php:1041 +#: src/Model/Profile.php:808 msgid "Contact information and Social Networks" msgstr "Contactinformatie en sociale netwerken" -#: src/Model/User.php:233 src/Model/User.php:1303 +#: src/Model/Profile.php:856 +#, php-format +msgid "Responsible account: %s" +msgstr "" + +#: src/Model/User.php:217 src/Model/User.php:1310 msgid "SERIOUS ERROR: Generation of security keys failed." msgstr "ERNSTIGE FOUT: aanmaken van beveiligingssleutels mislukt." -#: src/Model/User.php:733 src/Model/User.php:766 +#: src/Model/User.php:740 src/Model/User.php:773 msgid "Login failed" msgstr "Login mislukt" -#: src/Model/User.php:798 +#: src/Model/User.php:805 msgid "Not enough information to authenticate" msgstr "Niet genoeg informatie om te authentificeren" -#: src/Model/User.php:923 +#: src/Model/User.php:930 msgid "Password can't be empty" msgstr "Wachtwoord mag niet leeg zijn" -#: src/Model/User.php:965 +#: src/Model/User.php:972 msgid "Empty passwords are not allowed." msgstr "Lege wachtwoorden zijn niet toegestaan" -#: src/Model/User.php:969 +#: src/Model/User.php:976 msgid "" "The new password has been exposed in a public data dump, please choose " "another." msgstr "The nieuwe wachtwoord is gecompromitteerd in een publieke data dump, kies alsjeblieft een ander." -#: src/Model/User.php:973 +#: src/Model/User.php:980 msgid "The password length is limited to 72 characters." msgstr "" -#: src/Model/User.php:977 +#: src/Model/User.php:984 msgid "The password can't contain white spaces nor accentuated letters" msgstr "" -#: src/Model/User.php:1186 +#: src/Model/User.php:1193 msgid "Passwords do not match. Password unchanged." msgstr "Wachtwoorden komen niet overeen. Wachtwoord niet gewijzigd." -#: src/Model/User.php:1193 +#: src/Model/User.php:1200 msgid "An invitation is required." msgstr "Een uitnodiging is vereist." -#: src/Model/User.php:1197 +#: src/Model/User.php:1204 msgid "Invitation could not be verified." msgstr "Uitnodiging kon niet geverifieerd worden." -#: src/Model/User.php:1205 +#: src/Model/User.php:1212 msgid "Invalid OpenID url" msgstr "Ongeldige OpenID url" -#: src/Model/User.php:1218 src/Security/Authentication.php:230 +#: src/Model/User.php:1225 src/Security/Authentication.php:214 msgid "" "We encountered a problem while logging in with the OpenID you provided. " "Please check the correct spelling of the ID." msgstr "Er is een probleem opgetreden bij het inloggen met het opgegeven OpenID. Kijk alsjeblieft de spelling van deze ID na." -#: src/Model/User.php:1218 src/Security/Authentication.php:230 +#: src/Model/User.php:1225 src/Security/Authentication.php:214 msgid "The error message was:" msgstr "De foutboodschap was:" -#: src/Model/User.php:1224 +#: src/Model/User.php:1231 msgid "Please enter the required information." msgstr "Vul de vereiste informatie in." -#: src/Model/User.php:1238 +#: src/Model/User.php:1245 #, php-format msgid "" "system.username_min_length (%s) and system.username_max_length (%s) are " "excluding each other, swapping values." msgstr "system.username_min_length (%s) en system.username_max_length (%s) sluiten elkaar uit. Waarden worden omgedraaid." -#: src/Model/User.php:1245 +#: src/Model/User.php:1252 #, php-format msgid "Username should be at least %s character." msgid_plural "Username should be at least %s characters." msgstr[0] "Gebruikersnaam moet minimaal %s tekens bevatten." msgstr[1] "Gebruikersnaam moet minimaal %s tekens bevatten" -#: src/Model/User.php:1249 +#: src/Model/User.php:1256 #, php-format msgid "Username should be at most %s character." msgid_plural "Username should be at most %s characters." msgstr[0] "Gebruikersnaam mag maximaal %s tekens bevatten." msgstr[1] "Gebruikersnaam mag maximaal %s tekens bevatten." -#: src/Model/User.php:1257 +#: src/Model/User.php:1264 msgid "That doesn't appear to be your full (First Last) name." msgstr "Dat lijkt niet je volledige naam (voor- en achternaam) te zijn." -#: src/Model/User.php:1262 +#: src/Model/User.php:1269 msgid "Your email domain is not among those allowed on this site." msgstr "Je e-maildomein is op deze website niet toegestaan." -#: src/Model/User.php:1266 +#: src/Model/User.php:1273 msgid "Not a valid email address." msgstr "Geen geldig e-mailadres." -#: src/Model/User.php:1269 +#: src/Model/User.php:1276 msgid "The nickname was blocked from registration by the nodes admin." msgstr "De bijnaam werd geblokkeerd voor registratie door de node admin" -#: src/Model/User.php:1273 src/Model/User.php:1279 +#: src/Model/User.php:1280 src/Model/User.php:1286 msgid "Cannot use that email." msgstr "Ik kan die e-mail niet gebruiken." -#: src/Model/User.php:1285 +#: src/Model/User.php:1292 msgid "Your nickname can only contain a-z, 0-9 and _." msgstr "Je bijnaam mag alleen a-z, 0-9 of _ bevatten." -#: src/Model/User.php:1293 src/Model/User.php:1350 +#: src/Model/User.php:1300 src/Model/User.php:1350 msgid "Nickname is already registered. Please choose another." msgstr "Bijnaam is al geregistreerd. Kies een andere." @@ -3873,11 +3875,11 @@ msgid "" "An error occurred creating your default contact circle. Please try again." msgstr "" -#: src/Model/User.php:1422 +#: src/Model/User.php:1428 msgid "Profile Photos" msgstr "Profielfoto's" -#: src/Model/User.php:1604 +#: src/Model/User.php:1616 #, php-format msgid "" "\n" @@ -3885,7 +3887,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:1607 +#: src/Model/User.php:1619 #, php-format msgid "" "\n" @@ -3916,12 +3918,12 @@ msgid "" "\t\tThank you and welcome to %4$s." msgstr "" -#: src/Model/User.php:1639 src/Model/User.php:1745 +#: src/Model/User.php:1651 src/Model/User.php:1757 #, php-format msgid "Registration details for %s" msgstr "Registratie details voor %s" -#: src/Model/User.php:1659 +#: src/Model/User.php:1671 #, php-format msgid "" "\n" @@ -3936,12 +3938,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:1678 +#: src/Model/User.php:1690 #, php-format msgid "Registration at %s" msgstr "Registratie bij %s" -#: src/Model/User.php:1702 +#: src/Model/User.php:1714 #, php-format msgid "" "\n" @@ -3950,7 +3952,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:1710 +#: src/Model/User.php:1722 #, php-format msgid "" "\n" @@ -3981,93 +3983,91 @@ msgid "" "\t\t\tThank you and welcome to %2$s." msgstr "" -#: src/Model/User.php:1772 +#: src/Model/User.php:1784 msgid "" "User with delegates can't be removed, please remove delegate users first" msgstr "" -#: src/Module/Admin/Addons/Details.php:65 +#: src/Module/Admin/Addons/Details.php:51 msgid "Addon not found." msgstr "Addon niet gevonden." -#: src/Module/Admin/Addons/Details.php:76 src/Module/Admin/Addons/Index.php:49 +#: src/Module/Admin/Addons/Details.php:62 src/Module/Admin/Addons/Index.php:41 #, php-format msgid "Addon %s disabled." msgstr "Addon %s gedeactiveerd" -#: src/Module/Admin/Addons/Details.php:79 src/Module/Admin/Addons/Index.php:51 +#: src/Module/Admin/Addons/Details.php:65 src/Module/Admin/Addons/Index.php:43 #, php-format msgid "Addon %s enabled." msgstr "Addon %s geactiveerd" -#: src/Module/Admin/Addons/Details.php:88 -#: src/Module/Admin/Themes/Details.php:46 +#: src/Module/Admin/Addons/Details.php:74 +#: src/Module/Admin/Themes/Details.php:38 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/Addons/Details.php:77 +#: src/Module/Admin/Themes/Details.php:41 src/Module/Settings/Display.php:326 msgid "Enable" msgstr "Inschakelen" -#: src/Module/Admin/Addons/Details.php:111 -#: src/Module/Admin/Addons/Index.php:67 src/Module/Admin/Federation.php:220 -#: src/Module/Admin/Logs/Settings.php:88 src/Module/Admin/Logs/View.php:85 -#: src/Module/Admin/Queue.php:73 src/Module/Admin/Site.php:455 -#: 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 -#: src/Module/Moderation/Users/Pending.php:96 +#: src/Module/Admin/Addons/Details.php:97 src/Module/Admin/Addons/Index.php:59 +#: src/Module/Admin/Federation.php:206 src/Module/Admin/Logs/Settings.php:74 +#: src/Module/Admin/Logs/View.php:71 src/Module/Admin/Queue.php:59 +#: src/Module/Admin/Site.php:447 src/Module/Admin/Storage.php:124 +#: src/Module/Admin/Summary.php:182 src/Module/Admin/Themes/Details.php:82 +#: src/Module/Admin/Themes/Index.php:103 src/Module/Admin/Tos.php:63 +#: src/Module/Moderation/Users/Create.php:47 +#: src/Module/Moderation/Users/Pending.php:82 msgid "Administration" msgstr "Beheer" -#: src/Module/Admin/Addons/Details.php:112 -#: src/Module/Admin/Addons/Index.php:68 src/Module/BaseAdmin.php:92 -#: src/Module/BaseSettings.php:139 +#: src/Module/Admin/Addons/Details.php:98 src/Module/Admin/Addons/Index.php:60 +#: src/Module/BaseAdmin.php:78 src/Module/BaseSettings.php:125 msgid "Addons" msgstr "Addons" -#: src/Module/Admin/Addons/Details.php:113 -#: src/Module/Admin/Themes/Details.php:92 +#: src/Module/Admin/Addons/Details.php:99 +#: src/Module/Admin/Themes/Details.php:84 msgid "Toggle" msgstr "Schakelaar" -#: src/Module/Admin/Addons/Details.php:120 -#: src/Module/Admin/Themes/Details.php:100 +#: src/Module/Admin/Addons/Details.php:106 +#: src/Module/Admin/Themes/Details.php:92 msgid "Author: " msgstr "Auteur:" -#: src/Module/Admin/Addons/Details.php:121 -#: src/Module/Admin/Themes/Details.php:101 +#: src/Module/Admin/Addons/Details.php:107 +#: src/Module/Admin/Themes/Details.php:93 msgid "Maintainer: " msgstr "Onderhoud:" -#: src/Module/Admin/Addons/Index.php:42 +#: src/Module/Admin/Addons/Index.php:34 msgid "Addons reloaded" msgstr "" -#: src/Module/Admin/Addons/Index.php:53 +#: src/Module/Admin/Addons/Index.php:45 #, php-format msgid "Addon %s failed to install." msgstr "Installatie Addon %s is mislukt." -#: src/Module/Admin/Addons/Index.php:69 src/Module/Admin/Features.php:83 -#: src/Module/Admin/Logs/Settings.php:90 src/Module/Admin/Site.php:458 -#: src/Module/Admin/Themes/Index.php:113 src/Module/Admin/Tos.php:86 -#: src/Module/Settings/Account.php:558 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/Features.php:75 +#: src/Module/Admin/Addons/Index.php:61 src/Module/Admin/Features.php:69 +#: src/Module/Admin/Logs/Settings.php:76 src/Module/Admin/Site.php:450 +#: src/Module/Admin/Themes/Index.php:105 src/Module/Admin/Tos.php:72 +#: src/Module/Settings/Account.php:549 src/Module/Settings/Addons.php:64 +#: src/Module/Settings/Connectors.php:149 +#: src/Module/Settings/Connectors.php:235 +#: src/Module/Settings/Delegation.php:179 src/Module/Settings/Display.php:295 +#: src/Module/Settings/Features.php:61 msgid "Save Settings" msgstr "Instellingen opslaan" -#: src/Module/Admin/Addons/Index.php:70 +#: src/Module/Admin/Addons/Index.php:62 msgid "Reload active addons" msgstr "Herlaad actieve addons" -#: src/Module/Admin/Addons/Index.php:74 +#: src/Module/Admin/Addons/Index.php:66 #, php-format msgid "" "There are currently no addons available on your node. You can find the " @@ -4075,158 +4075,158 @@ msgid "" " the open addon registry at %2$s" msgstr "Er zijn op je node momenteel geen addons beschikbaar. Je kan de officiële addon repository vinden op %1$s en je kan mogelijks nog andere interessante addons vinden in de open addon registry op %2$s" -#: src/Module/Admin/DBSync.php:51 +#: src/Module/Admin/DBSync.php:37 msgid "Update has been marked successful" msgstr "Wijziging succesvol gemarkeerd " -#: src/Module/Admin/DBSync.php:59 +#: src/Module/Admin/DBSync.php:45 #, php-format msgid "Database structure update %s was successfully applied." msgstr "Database structuur update %s werd met succes toegepast." -#: src/Module/Admin/DBSync.php:61 +#: src/Module/Admin/DBSync.php:47 #, php-format msgid "Executing of database structure update %s failed with error: %s" msgstr "Uitvoering van de database structuur update %s is mislukt met fout: %s" -#: src/Module/Admin/DBSync.php:76 +#: src/Module/Admin/DBSync.php:62 #, php-format msgid "Executing %s failed with error: %s" msgstr "Uitvoering van %s mislukt met fout: %s" -#: src/Module/Admin/DBSync.php:78 +#: src/Module/Admin/DBSync.php:64 #, php-format msgid "Update %s was successfully applied." msgstr "Wijziging %s geslaagd." -#: src/Module/Admin/DBSync.php:81 +#: src/Module/Admin/DBSync.php:67 #, php-format msgid "Update %s did not return a status. Unknown if it succeeded." msgstr "Wijziging %s gaf geen status terug. We weten niet of de wijziging geslaagd is." -#: src/Module/Admin/DBSync.php:84 +#: src/Module/Admin/DBSync.php:70 #, php-format msgid "There was no additional update function %s that needed to be called." msgstr "Er was geen bijkomende update functie %s die moest opgeroepen worden." -#: src/Module/Admin/DBSync.php:105 +#: src/Module/Admin/DBSync.php:91 msgid "No failed updates." msgstr "Geen mislukte wijzigingen" -#: src/Module/Admin/DBSync.php:106 +#: src/Module/Admin/DBSync.php:92 msgid "Check database structure" msgstr "Controleer de database structuur" -#: src/Module/Admin/DBSync.php:110 +#: src/Module/Admin/DBSync.php:96 msgid "Failed Updates" msgstr "Mislukte wijzigingen" -#: src/Module/Admin/DBSync.php:111 +#: src/Module/Admin/DBSync.php:97 msgid "" "This does not include updates prior to 1139, which did not return a status." msgstr "Dit is zonder de wijzigingen voor 1139, welke geen status teruggaven." -#: src/Module/Admin/DBSync.php:112 +#: src/Module/Admin/DBSync.php:98 msgid "Mark success (if update was manually applied)" msgstr "Markeren als succes (als aanpassing manueel doorgevoerd werd)" -#: src/Module/Admin/DBSync.php:113 +#: src/Module/Admin/DBSync.php:99 msgid "Attempt to execute this update step automatically" msgstr "Probeer deze stap automatisch uit te voeren" -#: src/Module/Admin/Features.php:67 -#: src/Module/Notifications/Introductions.php:144 -#: src/Module/OAuth/Acknowledge.php:55 src/Module/Register.php:132 -#: src/Module/Settings/TwoFactor/Trusted.php:129 +#: src/Module/Admin/Features.php:53 +#: src/Module/Notifications/Introductions.php:136 +#: src/Module/OAuth/Acknowledge.php:41 src/Module/Register.php:124 +#: src/Module/Settings/TwoFactor/Trusted.php:115 msgid "No" msgstr "Nee" -#: src/Module/Admin/Features.php:67 src/Module/Contact/Revoke.php:108 -#: src/Module/Notifications/Introductions.php:144 -#: src/Module/OAuth/Acknowledge.php:54 src/Module/Register.php:131 -#: src/Module/Settings/TwoFactor/Trusted.php:129 +#: src/Module/Admin/Features.php:53 src/Module/Contact/Revoke.php:91 +#: src/Module/Notifications/Introductions.php:136 +#: src/Module/OAuth/Acknowledge.php:40 src/Module/Register.php:123 +#: src/Module/Settings/TwoFactor/Trusted.php:115 msgid "Yes" msgstr "Ja" -#: src/Module/Admin/Features.php:67 +#: src/Module/Admin/Features.php:53 msgid "Locked" msgstr "" -#: src/Module/Admin/Features.php:81 +#: src/Module/Admin/Features.php:67 msgid "Manage Additional Features" msgstr "Beheer Bijkomende Features" -#: src/Module/Admin/Federation.php:82 -#: src/Module/Moderation/Report/Create.php:191 -#: src/Module/Moderation/Report/Create.php:316 +#: src/Module/Admin/Federation.php:68 +#: src/Module/Moderation/Report/Create.php:177 +#: src/Module/Moderation/Report/Create.php:302 msgid "Other" msgstr "Anders" -#: src/Module/Admin/Federation.php:160 src/Module/Admin/Federation.php:408 +#: src/Module/Admin/Federation.php:146 src/Module/Admin/Federation.php:394 msgid "unknown" msgstr "onbekend" -#: src/Module/Admin/Federation.php:193 +#: src/Module/Admin/Federation.php:179 #, php-format msgid "%2$s total system" msgid_plural "%2$s total systems" msgstr[0] "" msgstr[1] "" -#: src/Module/Admin/Federation.php:194 +#: src/Module/Admin/Federation.php:180 #, php-format msgid "%2$s active user last month" msgid_plural "%2$s active users last month" msgstr[0] "" msgstr[1] "" -#: src/Module/Admin/Federation.php:195 +#: src/Module/Admin/Federation.php:181 #, php-format msgid "%2$s active user last six months" msgid_plural "%2$s active users last six months" msgstr[0] "" msgstr[1] "" -#: src/Module/Admin/Federation.php:196 +#: src/Module/Admin/Federation.php:182 #, php-format msgid "%2$s registered user" msgid_plural "%2$s registered users" msgstr[0] "" msgstr[1] "" -#: src/Module/Admin/Federation.php:197 +#: src/Module/Admin/Federation.php:183 #, php-format msgid "%2$s locally created post or comment" msgid_plural "%2$s locally created posts and comments" msgstr[0] "" msgstr[1] "" -#: src/Module/Admin/Federation.php:200 +#: src/Module/Admin/Federation.php:186 #, php-format msgid "%2$s post per user" msgid_plural "%2$s posts per user" msgstr[0] "" msgstr[1] "" -#: src/Module/Admin/Federation.php:205 +#: src/Module/Admin/Federation.php:191 #, php-format msgid "%2$s user per system" msgid_plural "%2$s users per system" msgstr[0] "" msgstr[1] "" -#: src/Module/Admin/Federation.php:215 +#: src/Module/Admin/Federation.php:201 msgid "" "This page offers you some numbers to the known part of the federated social " "network your Friendica node is part of. These numbers are not complete but " "only reflect the part of the network your node is aware of." msgstr "Deze pagina toont je statistieken van het gekende deel van het gefedereerde sociale netwerk waarvan je Friendica node deel uitmaakt. Deze statistieken zijn niet volledig maar reflecteren het deel van het network dat jouw node kent." -#: src/Module/Admin/Federation.php:221 src/Module/BaseAdmin.php:87 +#: src/Module/Admin/Federation.php:207 src/Module/BaseAdmin.php:73 msgid "Federation Statistics" msgstr "Federatie Statistieken" -#: src/Module/Admin/Federation.php:224 +#: src/Module/Admin/Federation.php:210 #, php-format msgid "" "Currently this node is aware of %2$s node (%3$s active users last month, " @@ -4239,58 +4239,58 @@ msgid_plural "" msgstr[0] "" msgstr[1] "" -#: src/Module/Admin/Logs/Settings.php:47 +#: src/Module/Admin/Logs/Settings.php:33 #, php-format msgid "The logfile '%s' is not writable. No logging possible" msgstr "" -#: src/Module/Admin/Logs/Settings.php:80 +#: src/Module/Admin/Logs/Settings.php:66 msgid "PHP log currently enabled." msgstr "PHP log momenteel geactiveerd" -#: src/Module/Admin/Logs/Settings.php:82 +#: src/Module/Admin/Logs/Settings.php:68 msgid "PHP log currently disabled." msgstr "PHP log momenteel gedeactiveerd" -#: src/Module/Admin/Logs/Settings.php:89 src/Module/BaseAdmin.php:102 -#: src/Module/BaseAdmin.php:103 +#: src/Module/Admin/Logs/Settings.php:75 src/Module/BaseAdmin.php:88 +#: src/Module/BaseAdmin.php:89 msgid "Logs" msgstr "Logs" -#: src/Module/Admin/Logs/Settings.php:91 +#: src/Module/Admin/Logs/Settings.php:77 msgid "Clear" msgstr "Wis" -#: src/Module/Admin/Logs/Settings.php:94 +#: src/Module/Admin/Logs/Settings.php:80 msgid "Enable Debugging" msgstr "Activeer Debugging" -#: src/Module/Admin/Logs/Settings.php:94 src/Module/Admin/Logs/Settings.php:95 -#: src/Module/Admin/Logs/Settings.php:96 src/Module/Admin/Site.php:478 -#: src/Module/Admin/Site.php:486 +#: src/Module/Admin/Logs/Settings.php:80 src/Module/Admin/Logs/Settings.php:81 +#: src/Module/Admin/Logs/Settings.php:82 src/Module/Admin/Site.php:470 +#: src/Module/Admin/Site.php:478 msgid "" "Read-only because it is set by an environment variable" msgstr "" -#: src/Module/Admin/Logs/Settings.php:95 +#: src/Module/Admin/Logs/Settings.php:81 msgid "Log file" msgstr "Logbestand" -#: src/Module/Admin/Logs/Settings.php:95 +#: src/Module/Admin/Logs/Settings.php:81 msgid "" "Must be writable by web server. Relative to your Friendica top-level " "directory." msgstr "De webserver moet hier kunnen schrijven. Relatief t.o.v. de hoogste folder binnen je Friendica-installatie." -#: src/Module/Admin/Logs/Settings.php:96 +#: src/Module/Admin/Logs/Settings.php:82 msgid "Log level" msgstr "Log niveau" -#: src/Module/Admin/Logs/Settings.php:98 +#: src/Module/Admin/Logs/Settings.php:84 msgid "PHP logging" msgstr "PHP logging" -#: src/Module/Admin/Logs/Settings.php:99 +#: src/Module/Admin/Logs/Settings.php:85 msgid "" "To temporarily enable logging of PHP errors and warnings you can prepend the" " following to the index.php file of your installation. The filename set in " @@ -4299,402 +4299,407 @@ msgid "" "'display_errors' is to enable these options, set to '0' to disable them." msgstr "Om logging van PHP fouten en waarschuwingen te activeren, kan je het volgende toevoegen aan het begin van je index.php bestand van je installatie. De naam van het bestand die ingesteld is in de 'error_log' lijn is relatief tegenover de friendica top-level folder en de server moet erin kunnen schrijven. De optie '1' voor 'log_errors' en 'display_errors' activeert deze opties, configureer '0' om ze te deactiveren. " -#: src/Module/Admin/Logs/View.php:72 +#: src/Module/Admin/Logs/View.php:58 #, php-format msgid "" "Error trying to open %1$s log file.
Check to see if " "file %1$s exist and is readable." msgstr "" -#: src/Module/Admin/Logs/View.php:81 +#: src/Module/Admin/Logs/View.php:67 #, php-format msgid "" "Couldn't open %1$s log file.
Check to see if file %1$s " "is readable." msgstr "" -#: src/Module/Admin/Logs/View.php:86 src/Module/BaseAdmin.php:104 +#: src/Module/Admin/Logs/View.php:72 src/Module/BaseAdmin.php:90 msgid "View Logs" msgstr "Bekijk Logs" -#: src/Module/Admin/Logs/View.php:89 +#: src/Module/Admin/Logs/View.php:75 msgid "Search in logs" msgstr "" -#: src/Module/Admin/Logs/View.php:90 -#: src/Module/Notifications/Notifications.php:140 +#: src/Module/Admin/Logs/View.php:76 +#: src/Module/Notifications/Notifications.php:132 msgid "Show all" msgstr "Toon alles" -#: src/Module/Admin/Logs/View.php:91 +#: src/Module/Admin/Logs/View.php:77 msgid "Date" msgstr "" -#: src/Module/Admin/Logs/View.php:92 +#: src/Module/Admin/Logs/View.php:78 msgid "Level" msgstr "" -#: src/Module/Admin/Logs/View.php:93 +#: src/Module/Admin/Logs/View.php:79 msgid "Context" msgstr "" -#: src/Module/Admin/Logs/View.php:95 +#: src/Module/Admin/Logs/View.php:81 msgid "ALL" msgstr "" -#: src/Module/Admin/Logs/View.php:96 +#: src/Module/Admin/Logs/View.php:82 msgid "View details" msgstr "" -#: src/Module/Admin/Logs/View.php:97 +#: src/Module/Admin/Logs/View.php:83 msgid "Click to view details" msgstr "" -#: src/Module/Admin/Logs/View.php:98 src/Module/Calendar/Event/Form.php:207 +#: src/Module/Admin/Logs/View.php:84 src/Module/Calendar/Event/Form.php:193 msgid "Event details" msgstr "Gebeurtenis details" -#: src/Module/Admin/Logs/View.php:99 +#: src/Module/Admin/Logs/View.php:85 msgid "Data" msgstr "" -#: src/Module/Admin/Logs/View.php:100 -#: src/Module/Debug/ActivityPubConversion.php:57 +#: src/Module/Admin/Logs/View.php:86 +#: src/Module/Debug/ActivityPubConversion.php:49 msgid "Source" msgstr "" -#: src/Module/Admin/Logs/View.php:101 +#: src/Module/Admin/Logs/View.php:87 msgid "File" msgstr "" -#: src/Module/Admin/Logs/View.php:102 +#: src/Module/Admin/Logs/View.php:88 msgid "Line" msgstr "" -#: src/Module/Admin/Logs/View.php:103 +#: src/Module/Admin/Logs/View.php:89 msgid "Function" msgstr "" -#: src/Module/Admin/Logs/View.php:104 +#: src/Module/Admin/Logs/View.php:90 msgid "UID" msgstr "" -#: src/Module/Admin/Logs/View.php:105 +#: src/Module/Admin/Logs/View.php:91 msgid "Process ID" msgstr "" -#: src/Module/Admin/Logs/View.php:106 +#: src/Module/Admin/Logs/View.php:92 msgid "Close" msgstr "" -#: src/Module/Admin/Queue.php:50 +#: src/Module/Admin/Queue.php:36 msgid "Inspect Deferred Worker Queue" msgstr "Inspecteer wachtrij van uitgestelde workers" -#: src/Module/Admin/Queue.php:51 +#: src/Module/Admin/Queue.php:37 msgid "" "This page lists the deferred worker jobs. This are jobs that couldn't be " "executed at the first time." msgstr "Deze pagine geeft alle uitgestelde workertaken. Dit zijn taken die niet onmiddelijk konden worden uitgevoerd" -#: src/Module/Admin/Queue.php:54 +#: src/Module/Admin/Queue.php:40 msgid "Inspect Worker Queue" msgstr "Taakwachtrij inspecteren" -#: src/Module/Admin/Queue.php:55 +#: src/Module/Admin/Queue.php:41 msgid "" "This page lists the currently queued worker jobs. These jobs are handled by " "the worker cronjob you've set up during install." msgstr "Deze pagina toont alle taken in de wachtrij. Deze taken worden behandeld door de geplande taak die je hebt ingesteld tijdens installatie." -#: src/Module/Admin/Queue.php:76 +#: src/Module/Admin/Queue.php:62 msgid "ID" msgstr "ID" -#: src/Module/Admin/Queue.php:77 +#: src/Module/Admin/Queue.php:63 msgid "Command" msgstr "" -#: src/Module/Admin/Queue.php:78 +#: src/Module/Admin/Queue.php:64 msgid "Job Parameters" msgstr "Taak parameters" -#: src/Module/Admin/Queue.php:79 src/Module/Moderation/Reports.php:110 -#: src/Module/Settings/OAuth.php:74 +#: src/Module/Admin/Queue.php:65 src/Module/Moderation/Reports.php:102 +#: src/Module/Settings/OAuth.php:60 msgid "Created" msgstr "Aangemaakt" -#: src/Module/Admin/Queue.php:80 +#: src/Module/Admin/Queue.php:66 msgid "Next Try" msgstr "" -#: src/Module/Admin/Queue.php:81 +#: src/Module/Admin/Queue.php:67 msgid "Priority" msgstr "Prioriteit" -#: src/Module/Admin/Site.php:243 +#: src/Module/Admin/Site.php:230 +#, php-format +msgid "%s is no valid input for maximum media size" +msgstr "" + +#: src/Module/Admin/Site.php:235 #, 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:362 src/Module/Settings/Display.php:201 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:379 src/Module/Settings/Display.php:211 #, php-format msgid "%s - (Experimental)" msgstr "%s - (Experimenteel)" -#: src/Module/Admin/Site.php:399 +#: src/Module/Admin/Site.php:391 msgid "No community page" msgstr "Geen groepspagina" -#: src/Module/Admin/Site.php:400 +#: src/Module/Admin/Site.php:392 msgid "No community page for visitors" msgstr "" -#: src/Module/Admin/Site.php:401 +#: src/Module/Admin/Site.php:393 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:394 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:395 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:401 msgid "Multi user instance" msgstr "Server voor meerdere gebruikers" -#: src/Module/Admin/Site.php:432 +#: src/Module/Admin/Site.php:424 msgid "Closed" msgstr "Gesloten" -#: src/Module/Admin/Site.php:433 +#: src/Module/Admin/Site.php:425 msgid "Requires approval" msgstr "Toestemming vereist" -#: src/Module/Admin/Site.php:434 +#: src/Module/Admin/Site.php:426 msgid "Open" msgstr "Open" -#: src/Module/Admin/Site.php:438 +#: src/Module/Admin/Site.php:430 msgid "Don't check" msgstr "Geen rekening mee houden" -#: src/Module/Admin/Site.php:439 +#: src/Module/Admin/Site.php:431 msgid "check the stable version" msgstr "Neem de stabiele versie in rekening" -#: src/Module/Admin/Site.php:440 +#: src/Module/Admin/Site.php:432 msgid "check the development version" msgstr "Neem de ontwikkel versie in rekening" -#: src/Module/Admin/Site.php:444 +#: src/Module/Admin/Site.php:436 msgid "none" msgstr "geen" -#: src/Module/Admin/Site.php:445 +#: src/Module/Admin/Site.php:437 msgid "Local contacts" msgstr "" -#: src/Module/Admin/Site.php:446 +#: src/Module/Admin/Site.php:438 msgid "Interactors" msgstr "" -#: src/Module/Admin/Site.php:456 src/Module/BaseAdmin.php:90 +#: src/Module/Admin/Site.php:448 src/Module/BaseAdmin.php:76 msgid "Site" msgstr "Website" -#: src/Module/Admin/Site.php:457 +#: src/Module/Admin/Site.php:449 msgid "General Information" msgstr "" -#: src/Module/Admin/Site.php:459 +#: src/Module/Admin/Site.php:451 msgid "Republish users to directory" msgstr "Opnieuw de gebruikers naar de gids publiceren" -#: src/Module/Admin/Site.php:460 src/Module/Register.php:153 +#: src/Module/Admin/Site.php:452 src/Module/Register.php:145 msgid "Registration" msgstr "Registratie" -#: src/Module/Admin/Site.php:461 +#: src/Module/Admin/Site.php:453 msgid "File upload" msgstr "Uploaden bestand" -#: src/Module/Admin/Site.php:462 +#: src/Module/Admin/Site.php:454 msgid "Policies" msgstr "Beleid" -#: src/Module/Admin/Site.php:463 src/Module/Calendar/Event/Form.php:252 -#: src/Module/Contact.php:546 src/Module/Profile/Profile.php:276 +#: src/Module/Admin/Site.php:455 src/Module/Calendar/Event/Form.php:238 +#: src/Module/Contact.php:528 src/Module/Profile/Profile.php:264 msgid "Advanced" msgstr "Geavanceerd" -#: src/Module/Admin/Site.php:464 +#: src/Module/Admin/Site.php:456 msgid "Auto Discovered Contact Directory" msgstr "Automatisch Achterhaalde Contact Gids" -#: src/Module/Admin/Site.php:465 +#: src/Module/Admin/Site.php:457 msgid "Performance" msgstr "Performantie" -#: src/Module/Admin/Site.php:466 +#: src/Module/Admin/Site.php:458 msgid "Worker" msgstr "Worker" -#: src/Module/Admin/Site.php:467 +#: src/Module/Admin/Site.php:459 msgid "Message Relay" msgstr "Boodschap Relais" -#: src/Module/Admin/Site.php:468 +#: src/Module/Admin/Site.php:460 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:461 msgid "The system is not subscribed to any relays at the moment." msgstr "" -#: src/Module/Admin/Site.php:470 +#: src/Module/Admin/Site.php:462 msgid "The system is currently subscribed to the following relays:" msgstr "" -#: src/Module/Admin/Site.php:473 +#: src/Module/Admin/Site.php:465 msgid "Relocate Node" msgstr "" -#: src/Module/Admin/Site.php:474 +#: src/Module/Admin/Site.php:466 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:467 msgid "(Friendica directory)# bin/console relocate https://newdomain.com" msgstr "" -#: src/Module/Admin/Site.php:478 +#: src/Module/Admin/Site.php:470 msgid "Site name" msgstr "Site naam" -#: src/Module/Admin/Site.php:479 +#: src/Module/Admin/Site.php:471 msgid "Sender Email" msgstr "Verzender Email" -#: src/Module/Admin/Site.php:479 +#: src/Module/Admin/Site.php:471 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:472 msgid "Name of the system actor" msgstr "" -#: src/Module/Admin/Site.php:480 +#: src/Module/Admin/Site.php:472 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:473 msgid "Banner/Logo" msgstr "Banner/Logo" -#: src/Module/Admin/Site.php:482 +#: src/Module/Admin/Site.php:474 msgid "Email Banner/Logo" msgstr "" -#: src/Module/Admin/Site.php:483 +#: src/Module/Admin/Site.php:475 msgid "Shortcut icon" msgstr "Snelkoppeling icoon" -#: src/Module/Admin/Site.php:483 +#: src/Module/Admin/Site.php:475 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:476 msgid "Touch icon" msgstr "Pictogram voor smartphones" -#: src/Module/Admin/Site.php:484 +#: src/Module/Admin/Site.php:476 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:477 msgid "Additional Info" msgstr "Bijkomende Info" -#: src/Module/Admin/Site.php:485 +#: src/Module/Admin/Site.php:477 #, 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:478 msgid "System language" msgstr "Systeemtaal" -#: src/Module/Admin/Site.php:487 +#: src/Module/Admin/Site.php:479 msgid "System theme" msgstr "Systeem thema" -#: src/Module/Admin/Site.php:487 +#: src/Module/Admin/Site.php:479 #, 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:480 msgid "Mobile system theme" msgstr "Mobiel systeem thema" -#: src/Module/Admin/Site.php:488 +#: src/Module/Admin/Site.php:480 msgid "Theme for mobile devices" msgstr "Thema voor mobiele apparaten" -#: src/Module/Admin/Site.php:489 +#: src/Module/Admin/Site.php:481 msgid "Force SSL" msgstr "Dwing SSL af" -#: src/Module/Admin/Site.php:489 +#: src/Module/Admin/Site.php:481 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:482 msgid "Show help entry from navigation menu" msgstr "" -#: src/Module/Admin/Site.php:490 +#: src/Module/Admin/Site.php:482 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:483 msgid "Single user instance" msgstr "Server voor één gebruiker" -#: src/Module/Admin/Site.php:491 +#: src/Module/Admin/Site.php:483 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:485 msgid "Maximum image size" msgstr "Maximum afbeeldingsgrootte" -#: src/Module/Admin/Site.php:493 +#: src/Module/Admin/Site.php:485 #, 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" @@ -4702,35 +4707,47 @@ 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:489 msgid "Maximum image length" msgstr "Maximum afbeeldingslengte" -#: src/Module/Admin/Site.php:497 +#: src/Module/Admin/Site.php:489 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:490 msgid "JPEG image quality" msgstr "JPEG afbeeldingskwaliteit" -#: src/Module/Admin/Site.php:498 +#: src/Module/Admin/Site.php:490 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:491 +msgid "Maximum media file size" +msgstr "" + +#: src/Module/Admin/Site.php:491 +#, php-format +msgid "" +"Maximum size in bytes of uploaded media files. Default is 0, which means no limits. You can put k, m, or g behind the desired value for KiB, MiB, GiB, respectively.\n" +"\t\t\t\t\t\t\t\t\t\t\t\t\tThe value of upload_max_filesize in your PHP.ini needs be set to at least the desired limit.\n" +"\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:496 msgid "Register policy" msgstr "Registratiebeleid" -#: src/Module/Admin/Site.php:501 +#: src/Module/Admin/Site.php:497 msgid "Maximum Users" msgstr "" -#: src/Module/Admin/Site.php:501 +#: src/Module/Admin/Site.php:497 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 " @@ -4738,167 +4755,167 @@ msgid "" "not when the policy is set to approval." msgstr "" -#: src/Module/Admin/Site.php:502 +#: src/Module/Admin/Site.php:498 msgid "Maximum Daily Registrations" msgstr "Maximum aantal registraties per dag" -#: src/Module/Admin/Site.php:502 +#: src/Module/Admin/Site.php:498 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:499 msgid "Register text" msgstr "Registratietekst" -#: src/Module/Admin/Site.php:503 +#: src/Module/Admin/Site.php:499 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:500 msgid "Forbidden Nicknames" msgstr "Verboden bijnamen" -#: src/Module/Admin/Site.php:504 +#: src/Module/Admin/Site.php:500 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:501 msgid "Accounts abandoned after x days" msgstr "Verlaten accounts na x dagen" -#: src/Module/Admin/Site.php:505 +#: src/Module/Admin/Site.php:501 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:502 msgid "Allowed friend domains" msgstr "Toegelaten vriend domeinen" -#: src/Module/Admin/Site.php:506 +#: src/Module/Admin/Site.php:502 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:503 msgid "Allowed email domains" msgstr "Toegelaten e-mail domeinen" -#: src/Module/Admin/Site.php:507 +#: src/Module/Admin/Site.php:503 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:504 msgid "Disallowed email domains" msgstr "" -#: src/Module/Admin/Site.php:508 +#: src/Module/Admin/Site.php:504 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:509 +#: src/Module/Admin/Site.php:505 msgid "No OEmbed rich content" msgstr "Geen OEmbed richt content" -#: src/Module/Admin/Site.php:509 +#: src/Module/Admin/Site.php:505 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:510 +#: src/Module/Admin/Site.php:506 msgid "Trusted third-party domains" msgstr "" -#: src/Module/Admin/Site.php:510 +#: src/Module/Admin/Site.php:506 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:511 +#: src/Module/Admin/Site.php:507 msgid "Block public" msgstr "Openbare toegang blokkeren" -#: src/Module/Admin/Site.php:511 +#: src/Module/Admin/Site.php:507 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:512 +#: src/Module/Admin/Site.php:508 msgid "Force publish" msgstr "Dwing publiceren af" -#: src/Module/Admin/Site.php:512 +#: src/Module/Admin/Site.php:508 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:512 +#: src/Module/Admin/Site.php:508 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:513 +#: src/Module/Admin/Site.php:509 msgid "Global directory URL" msgstr "Algemene gids URL" -#: src/Module/Admin/Site.php:513 +#: src/Module/Admin/Site.php:509 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:514 +#: src/Module/Admin/Site.php:510 msgid "Private posts by default for new users" msgstr "Privéberichten als standaard voor nieuwe gebruikers" -#: src/Module/Admin/Site.php:514 +#: src/Module/Admin/Site.php:510 msgid "" "Set default post permissions for all new members to the default privacy " "circle rather than public." msgstr "" -#: src/Module/Admin/Site.php:515 +#: src/Module/Admin/Site.php:511 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:515 +#: src/Module/Admin/Site.php:511 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:516 +#: src/Module/Admin/Site.php:512 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:516 +#: src/Module/Admin/Site.php:512 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:517 +#: src/Module/Admin/Site.php:513 msgid "Don't embed private images in posts" msgstr "Privé beelden in berichten niet inwerken" -#: src/Module/Admin/Site.php:517 +#: src/Module/Admin/Site.php:513 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 " @@ -4906,11 +4923,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:518 +#: src/Module/Admin/Site.php:514 msgid "Explicit Content" msgstr "Expliciete inhoud" -#: src/Module/Admin/Site.php:518 +#: src/Module/Admin/Site.php:514 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 " @@ -4919,329 +4936,319 @@ 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:519 +#: src/Module/Admin/Site.php:515 msgid "Only local search" msgstr "" -#: src/Module/Admin/Site.php:519 +#: src/Module/Admin/Site.php:515 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:516 msgid "Blocked tags for trending tags" msgstr "" -#: src/Module/Admin/Site.php:520 +#: src/Module/Admin/Site.php:516 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:517 msgid "Cache contact avatars" msgstr "" -#: src/Module/Admin/Site.php:521 +#: src/Module/Admin/Site.php:517 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:518 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:518 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:519 msgid "Allow Users to set up relay channels" msgstr "" -#: src/Module/Admin/Site.php:523 +#: src/Module/Admin/Site.php:519 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:520 msgid "Adjust the feed poll frequency" msgstr "" -#: src/Module/Admin/Site.php:524 +#: src/Module/Admin/Site.php:520 msgid "Automatically detect and set the best feed poll frequency." msgstr "" -#: src/Module/Admin/Site.php:525 +#: src/Module/Admin/Site.php:521 msgid "Minimum poll interval" msgstr "" -#: src/Module/Admin/Site.php:525 +#: src/Module/Admin/Site.php:521 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:522 msgid "Enable multiple registrations" msgstr "" -#: src/Module/Admin/Site.php:526 +#: src/Module/Admin/Site.php:522 msgid "Enable users to register additional accounts for use as pages." msgstr "" -#: src/Module/Admin/Site.php:527 +#: src/Module/Admin/Site.php:523 msgid "Enable OpenID" msgstr "" -#: src/Module/Admin/Site.php:527 +#: src/Module/Admin/Site.php:523 msgid "Enable OpenID support for registration and logins." msgstr "" -#: src/Module/Admin/Site.php:528 +#: src/Module/Admin/Site.php:524 msgid "Enable full name check" msgstr "" -#: src/Module/Admin/Site.php:528 +#: src/Module/Admin/Site.php:524 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:525 msgid "Email administrators on new registration" msgstr "" -#: src/Module/Admin/Site.php:529 +#: src/Module/Admin/Site.php:525 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:526 msgid "Community pages for visitors" msgstr "Groepspagina voor bezoekers" -#: src/Module/Admin/Site.php:530 +#: src/Module/Admin/Site.php:526 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:527 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:527 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:528 msgid "Posts per server on community page" msgstr "" -#: src/Module/Admin/Site.php:532 +#: src/Module/Admin/Site.php:528 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:530 msgid "Enable Mail support" msgstr "" -#: src/Module/Admin/Site.php:534 +#: src/Module/Admin/Site.php:530 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:531 msgid "" "Mail support can't be enabled because the PHP IMAP module is not installed." msgstr "" -#: src/Module/Admin/Site.php:536 -msgid "Enable OStatus support" -msgstr "" - -#: src/Module/Admin/Site.php:536 -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:533 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:534 msgid "Enable Diaspora support" msgstr "Diaspora ondersteuning activeren" -#: src/Module/Admin/Site.php:539 +#: src/Module/Admin/Site.php:534 msgid "" "Enable built-in Diaspora network compatibility for communicating with " "diaspora servers." msgstr "" -#: src/Module/Admin/Site.php:540 +#: src/Module/Admin/Site.php:535 msgid "Verify SSL" msgstr "Controleer SSL" -#: src/Module/Admin/Site.php:540 +#: src/Module/Admin/Site.php:535 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:536 msgid "Proxy user" msgstr "Proxy-gebruiker" -#: src/Module/Admin/Site.php:541 +#: src/Module/Admin/Site.php:536 msgid "User name for the proxy server." msgstr "" -#: src/Module/Admin/Site.php:542 +#: src/Module/Admin/Site.php:537 msgid "Proxy URL" msgstr "Proxy-URL" -#: src/Module/Admin/Site.php:542 +#: src/Module/Admin/Site.php:537 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:538 msgid "Network timeout" msgstr "Netwerk timeout" -#: src/Module/Admin/Site.php:543 +#: src/Module/Admin/Site.php:538 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:539 msgid "Maximum Load Average" msgstr "Maximum gemiddelde belasting" -#: src/Module/Admin/Site.php:544 +#: src/Module/Admin/Site.php:539 #, 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:540 msgid "Minimal Memory" msgstr "Minimaal Geheugen" -#: src/Module/Admin/Site.php:545 +#: src/Module/Admin/Site.php:540 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:541 msgid "Periodically optimize tables" msgstr "" -#: src/Module/Admin/Site.php:546 +#: src/Module/Admin/Site.php:541 msgid "Periodically optimize tables like the cache and the workerqueue" msgstr "" -#: src/Module/Admin/Site.php:548 +#: src/Module/Admin/Site.php:543 msgid "Discover followers/followings from contacts" msgstr "" -#: src/Module/Admin/Site.php:548 +#: src/Module/Admin/Site.php:543 msgid "" "If enabled, contacts are checked for their followers and following contacts." msgstr "" -#: src/Module/Admin/Site.php:549 +#: src/Module/Admin/Site.php:544 msgid "None - deactivated" msgstr "" -#: src/Module/Admin/Site.php:550 +#: src/Module/Admin/Site.php:545 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:546 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:548 msgid "Only update contacts/servers with local data" msgstr "" -#: src/Module/Admin/Site.php:553 +#: src/Module/Admin/Site.php:548 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:549 msgid "Synchronize the contacts with the directory server" msgstr "" -#: src/Module/Admin/Site.php:554 +#: src/Module/Admin/Site.php:549 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:551 msgid "Discover contacts from other servers" msgstr "Ontdek contacten van andere servers" -#: src/Module/Admin/Site.php:556 +#: src/Module/Admin/Site.php:551 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:552 msgid "Days between requery" msgstr "Dagen tussen herbevraging" -#: src/Module/Admin/Site.php:557 +#: src/Module/Admin/Site.php:552 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:553 msgid "Search the local directory" msgstr "Doorzoek de lokale gids" -#: src/Module/Admin/Site.php:558 +#: src/Module/Admin/Site.php:553 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:555 msgid "Publish server information" msgstr "Publiceer server informatie" -#: src/Module/Admin/Site.php:560 +#: src/Module/Admin/Site.php:555 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 " @@ -5249,50 +5256,50 @@ msgid "" " href=\"http://the-federation.info/\">the-federation.info for details." msgstr "" -#: src/Module/Admin/Site.php:562 +#: src/Module/Admin/Site.php:557 msgid "Check upstream version" msgstr "Controleer upstream versie" -#: src/Module/Admin/Site.php:562 +#: src/Module/Admin/Site.php:557 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:558 msgid "Suppress Tags" msgstr "Onderdruk Tags" -#: src/Module/Admin/Site.php:563 +#: src/Module/Admin/Site.php:558 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:559 msgid "Clean database" msgstr "Database opruimen" -#: src/Module/Admin/Site.php:564 +#: src/Module/Admin/Site.php:559 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:560 msgid "Lifespan of remote items" msgstr "Levensduur van remote items" -#: src/Module/Admin/Site.php:565 +#: src/Module/Admin/Site.php:560 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:561 msgid "Lifespan of unclaimed items" msgstr "Levensduur van niet geclaimde items" -#: src/Module/Admin/Site.php:566 +#: src/Module/Admin/Site.php:561 msgid "" "When the database cleanup is enabled, this defines the days after which " "unclaimed remote items (mostly content from the relay) will be deleted. " @@ -5300,175 +5307,184 @@ 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:562 msgid "Lifespan of raw conversation data" msgstr "Levenstijd van ruwe gespreksdata" -#: src/Module/Admin/Site.php:567 +#: src/Module/Admin/Site.php:562 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." +"The conversation data is used for ActivityPub, 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:563 msgid "Maximum numbers of comments per post" msgstr "Maximum aantal reacties per bericht" -#: src/Module/Admin/Site.php:568 +#: src/Module/Admin/Site.php:563 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:564 msgid "Maximum numbers of comments per post on the display page" msgstr "" -#: src/Module/Admin/Site.php:569 +#: src/Module/Admin/Site.php:564 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:565 msgid "Items per page" msgstr "" -#: src/Module/Admin/Site.php:570 +#: src/Module/Admin/Site.php:565 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:566 msgid "Items per page for mobile devices" msgstr "" -#: src/Module/Admin/Site.php:571 +#: src/Module/Admin/Site.php:566 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:567 msgid "Temp path" msgstr "Tijdelijk pad" -#: src/Module/Admin/Site.php:572 +#: src/Module/Admin/Site.php:567 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:568 msgid "Only search in tags" msgstr "Zoek alleen in tags" -#: src/Module/Admin/Site.php:573 +#: src/Module/Admin/Site.php:568 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:569 +msgid "Limited search scope" +msgstr "" + +#: src/Module/Admin/Site.php:569 +msgid "" +"If enabled, searches will only be performed in the data used for the " +"channels and not in all posts." +msgstr "" + +#: src/Module/Admin/Site.php:570 msgid "Maximum age of items in the search table" msgstr "" -#: src/Module/Admin/Site.php:574 +#: src/Module/Admin/Site.php:570 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:571 msgid "Generate counts per contact circle when calculating network count" msgstr "" -#: src/Module/Admin/Site.php:575 +#: src/Module/Admin/Site.php:571 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:572 msgid "Process \"view\" activities" msgstr "" -#: src/Module/Admin/Site.php:576 +#: src/Module/Admin/Site.php:572 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:573 msgid "Days, after which a contact is archived" msgstr "" -#: src/Module/Admin/Site.php:577 +#: src/Module/Admin/Site.php:573 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:575 msgid "Maximum number of parallel workers" msgstr "Maximum aantal parallelle workers" -#: src/Module/Admin/Site.php:579 +#: src/Module/Admin/Site.php:575 #, 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:576 msgid "Maximum load for workers" msgstr "" -#: src/Module/Admin/Site.php:580 +#: src/Module/Admin/Site.php:576 msgid "Maximum load that causes a cooldown before each worker function call." msgstr "" -#: src/Module/Admin/Site.php:581 +#: src/Module/Admin/Site.php:577 msgid "Enable fastlane" msgstr "Activeer fastlane" -#: src/Module/Admin/Site.php:581 +#: src/Module/Admin/Site.php:577 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:578 msgid "Decoupled receiver" msgstr "" -#: src/Module/Admin/Site.php:582 +#: src/Module/Admin/Site.php:578 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:579 msgid "Cron interval" msgstr "" -#: src/Module/Admin/Site.php:583 +#: src/Module/Admin/Site.php:579 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:580 msgid "Worker defer limit" msgstr "" -#: src/Module/Admin/Site.php:584 +#: src/Module/Admin/Site.php:580 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:581 msgid "Worker fetch limit" msgstr "" -#: src/Module/Admin/Site.php:585 +#: src/Module/Admin/Site.php:581 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" @@ -5476,214 +5492,214 @@ msgid "" "system." msgstr "" -#: src/Module/Admin/Site.php:587 +#: src/Module/Admin/Site.php:583 msgid "Direct relay transfer" msgstr "Directe relais transfer" -#: src/Module/Admin/Site.php:587 +#: src/Module/Admin/Site.php:583 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:584 msgid "Relay scope" msgstr "Scope van de relais" -#: src/Module/Admin/Site.php:588 +#: src/Module/Admin/Site.php:584 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:314 -#: src/Module/Settings/TwoFactor/Index.php:146 +#: src/Module/Admin/Site.php:584 src/Module/Contact/Profile.php:314 +#: src/Module/Settings/TwoFactor/Index.php:132 msgid "Disabled" msgstr "Uitgeschakeld" -#: src/Module/Admin/Site.php:588 +#: src/Module/Admin/Site.php:584 msgid "all" msgstr "alle" -#: src/Module/Admin/Site.php:588 +#: src/Module/Admin/Site.php:584 msgid "tags" msgstr "tags" -#: src/Module/Admin/Site.php:589 +#: src/Module/Admin/Site.php:585 msgid "Server tags" msgstr "Server tags" -#: src/Module/Admin/Site.php:589 +#: src/Module/Admin/Site.php:585 msgid "Comma separated list of tags for the \"tags\" subscription." msgstr "" -#: src/Module/Admin/Site.php:590 +#: src/Module/Admin/Site.php:586 msgid "Deny Server tags" msgstr "" -#: src/Module/Admin/Site.php:590 +#: src/Module/Admin/Site.php:586 msgid "Comma separated list of tags that are rejected." msgstr "" -#: src/Module/Admin/Site.php:591 +#: src/Module/Admin/Site.php:587 msgid "Maximum amount of tags" msgstr "" -#: src/Module/Admin/Site.php:591 +#: src/Module/Admin/Site.php:587 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:588 msgid "Allow user tags" msgstr "Sta gebruiker tags toe." -#: src/Module/Admin/Site.php:592 +#: src/Module/Admin/Site.php:588 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:589 msgid "Deny undetected languages" msgstr "" -#: src/Module/Admin/Site.php:593 +#: src/Module/Admin/Site.php:589 msgid "If enabled, posts with undetected languages will be rejected." msgstr "" -#: src/Module/Admin/Site.php:594 +#: src/Module/Admin/Site.php:590 msgid "Language Quality" msgstr "" -#: src/Module/Admin/Site.php:594 +#: src/Module/Admin/Site.php:590 msgid "The minimum language quality that is required to accept the post." msgstr "" -#: src/Module/Admin/Site.php:595 +#: src/Module/Admin/Site.php:591 msgid "Number of languages for the language detection" msgstr "" -#: src/Module/Admin/Site.php:595 +#: src/Module/Admin/Site.php:591 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:593 msgid "Maximum age of channel" msgstr "" -#: src/Module/Admin/Site.php:597 +#: src/Module/Admin/Site.php:593 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:594 msgid "Maximum number of channel posts" msgstr "" -#: src/Module/Admin/Site.php:598 +#: src/Module/Admin/Site.php:594 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:595 msgid "Interaction score days" msgstr "" -#: src/Module/Admin/Site.php:599 +#: src/Module/Admin/Site.php:595 msgid "Number of days that are used to calculate the interaction score." msgstr "" -#: src/Module/Admin/Site.php:600 +#: src/Module/Admin/Site.php:596 msgid "Maximum number of posts per author" msgstr "" -#: src/Module/Admin/Site.php:600 +#: src/Module/Admin/Site.php:596 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:597 msgid "Sharer interaction days" msgstr "" -#: src/Module/Admin/Site.php:601 +#: src/Module/Admin/Site.php:597 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:600 msgid "Start Relocation" msgstr "Start verhuis" -#: src/Module/Admin/Storage.php:46 +#: src/Module/Admin/Storage.php:32 #, php-format msgid "Storage backend, %s is invalid." msgstr "" -#: src/Module/Admin/Storage.php:73 +#: src/Module/Admin/Storage.php:59 #, php-format msgid "Storage backend %s error: %s" msgstr "" -#: src/Module/Admin/Storage.php:84 src/Module/Admin/Storage.php:87 +#: src/Module/Admin/Storage.php:70 src/Module/Admin/Storage.php:73 msgid "Invalid storage backend setting value." msgstr "" -#: src/Module/Admin/Storage.php:139 +#: src/Module/Admin/Storage.php:125 msgid "Current Storage Backend" msgstr "" -#: src/Module/Admin/Storage.php:140 +#: src/Module/Admin/Storage.php:126 msgid "Storage Configuration" msgstr "" -#: src/Module/Admin/Storage.php:141 src/Module/BaseAdmin.php:91 +#: src/Module/Admin/Storage.php:127 src/Module/BaseAdmin.php:77 msgid "Storage" msgstr "" -#: src/Module/Admin/Storage.php:143 +#: src/Module/Admin/Storage.php:129 msgid "Save & Use storage backend" msgstr "" -#: src/Module/Admin/Storage.php:144 +#: src/Module/Admin/Storage.php:130 msgid "Use storage backend" msgstr "" -#: src/Module/Admin/Storage.php:145 +#: src/Module/Admin/Storage.php:131 msgid "Save & Reload" msgstr "" -#: src/Module/Admin/Storage.php:146 +#: src/Module/Admin/Storage.php:132 msgid "This backend doesn't have custom settings" msgstr "" -#: src/Module/Admin/Storage.php:148 +#: src/Module/Admin/Storage.php:134 msgid "" "Changing the current backend is prohibited because it is set by an " "environment variable" msgstr "" -#: src/Module/Admin/Storage.php:150 +#: src/Module/Admin/Storage.php:136 msgid "Database (legacy)" msgstr "" -#: src/Module/Admin/Summary.php:55 +#: src/Module/Admin/Summary.php:41 #, php-format msgid "Template engine (%s) error: %s" msgstr "" -#: src/Module/Admin/Summary.php:59 +#: src/Module/Admin/Summary.php:45 #, php-format msgid "" "Your DB still runs with MyISAM tables. You should change the engine type to " @@ -5694,7 +5710,7 @@ msgid "" " an automatic conversion.
" msgstr "Je DB opereert nog met MyISAM tabellen. Best is van engine te veranderen naar InnoDB. Aangezien Friendica in de toekomst gebruik zal maken van InnoDB features, zou je dit best aanpassen! Zie hier voor een gids die je kan helpen om de tabel engines te converteren. Je kan ook het commandophp bin/console.php dbstructure toinnodb van je Friendica installatie gebruiken voor een automatische conversie.
" -#: src/Module/Admin/Summary.php:64 +#: src/Module/Admin/Summary.php:50 #, php-format msgid "" "Your DB still runs with InnoDB tables in the Antelope file format. You " @@ -5705,7 +5721,7 @@ msgid "" " installation for an automatic conversion.
" msgstr "" -#: src/Module/Admin/Summary.php:74 +#: src/Module/Admin/Summary.php:60 #, php-format msgid "" "Your table_definition_cache is too low (%d). This can lead to the database " @@ -5713,46 +5729,46 @@ msgid "" " to %d. See here for more information.
" msgstr "" -#: src/Module/Admin/Summary.php:85 +#: src/Module/Admin/Summary.php:71 #, php-format msgid "" "There is a new version of Friendica available for download. Your current " "version is %1$s, upstream version is %2$s" msgstr "Er is een nieuwe versie van Friendica beschikbaar om te downloaden. Je huidige versie is %1$s, upstream versie is %2$s" -#: src/Module/Admin/Summary.php:94 +#: src/Module/Admin/Summary.php:80 msgid "" "The database update failed. Please run \"php bin/console.php dbstructure " "update\" from the command line and have a look at the errors that might " "appear." msgstr "Database update is mislukt. Gelieve \"php bin/console.php dbstructure update\" vanaf de command line uit te voeren en de foutmeldingen die zouden kunnen verschijnen na te kijken." -#: src/Module/Admin/Summary.php:98 +#: src/Module/Admin/Summary.php:84 msgid "" "The last update failed. Please run \"php bin/console.php dbstructure " "update\" from the command line and have a look at the errors that might " "appear. (Some of the errors are possibly inside the logfile.)" msgstr "" -#: src/Module/Admin/Summary.php:102 +#: src/Module/Admin/Summary.php:88 msgid "" "The system.url entry is missing. This is a low level setting and can lead to" " unexpected behavior. Please add a valid entry as soon as possible in the " "config file or per console command!" msgstr "" -#: src/Module/Admin/Summary.php:107 +#: src/Module/Admin/Summary.php:93 msgid "The worker was never executed. Please check your database structure!" msgstr "De worker werd nooit uitgevoerd. Best je database structuur eens nakijken!" -#: src/Module/Admin/Summary.php:109 +#: src/Module/Admin/Summary.php:95 #, php-format msgid "" "The last worker execution was on %s UTC. This is older than one hour. Please" " check your crontab settings." msgstr "De laatste worker uitvoering was op %s UTC. Dit is langer dan 1 uur geleden. Best je crontab instellingen nakijken." -#: src/Module/Admin/Summary.php:114 +#: src/Module/Admin/Summary.php:100 #, php-format msgid "" "Friendica's configuration now is stored in config/local.config.php, please " @@ -5761,7 +5777,7 @@ msgid "" "help with the transition." msgstr "Het configuratiebestand bevind zich nu in config/local.config.php. Kopieer het bestand config/local-sample.config.php en verplaats je configuratie uit .htconfig.php. Ga naar deconfiguratie help pagina voor hulp bij transitie." -#: src/Module/Admin/Summary.php:118 +#: src/Module/Admin/Summary.php:104 #, php-format msgid "" "Friendica's configuration now is stored in config/local.config.php, please " @@ -5770,7 +5786,7 @@ msgid "" "page for help with the transition." msgstr "" -#: src/Module/Admin/Summary.php:124 +#: src/Module/Admin/Summary.php:110 #, php-format msgid "" "%s is not reachable on your system. This is a severe " @@ -5778,107 +5794,107 @@ msgid "" "href=\"%s\">the installation page for help." msgstr "%s is niet bereikbaar. Dit is een belangrijk communicatieprobleem waardoor server-naar-server communicatie niet mogelijk is. Lees de the installatie pagina voor hulp." -#: src/Module/Admin/Summary.php:148 +#: src/Module/Admin/Summary.php:134 #, php-format msgid "" "Friendica's system.basepath was updated from '%s' to '%s'. Please remove the" " system.basepath from your db to avoid differences." msgstr "" -#: src/Module/Admin/Summary.php:156 +#: src/Module/Admin/Summary.php:142 #, php-format msgid "" "Friendica's current system.basepath '%s' is wrong and the config file '%s' " "isn't used." msgstr "" -#: src/Module/Admin/Summary.php:164 +#: src/Module/Admin/Summary.php:150 #, php-format msgid "" "Friendica's current system.basepath '%s' is not equal to the config file " "'%s'. Please fix your configuration." msgstr "" -#: src/Module/Admin/Summary.php:175 +#: src/Module/Admin/Summary.php:161 msgid "Message queues" msgstr "Bericht-wachtrijen" -#: src/Module/Admin/Summary.php:181 +#: src/Module/Admin/Summary.php:167 msgid "Server Settings" msgstr "Server instellingen." -#: src/Module/Admin/Summary.php:199 +#: src/Module/Admin/Summary.php:185 msgid "Version" msgstr "Versie" -#: src/Module/Admin/Summary.php:203 +#: src/Module/Admin/Summary.php:189 msgid "Active addons" msgstr "Actieve addons" -#: src/Module/Admin/Themes/Details.php:57 src/Module/Admin/Themes/Index.php:65 +#: src/Module/Admin/Themes/Details.php:49 src/Module/Admin/Themes/Index.php:57 #, php-format msgid "Theme %s disabled." msgstr "Thema %s uitgeschakeld." -#: src/Module/Admin/Themes/Details.php:59 src/Module/Admin/Themes/Index.php:67 +#: src/Module/Admin/Themes/Details.php:51 src/Module/Admin/Themes/Index.php:59 #, php-format msgid "Theme %s successfully enabled." msgstr "Thema %s succesvol ingeschakeld." -#: src/Module/Admin/Themes/Details.php:61 src/Module/Admin/Themes/Index.php:69 +#: src/Module/Admin/Themes/Details.php:53 src/Module/Admin/Themes/Index.php:61 #, php-format msgid "Theme %s failed to install." msgstr "Thema %s installatie mislukt." -#: src/Module/Admin/Themes/Details.php:83 +#: src/Module/Admin/Themes/Details.php:75 msgid "Screenshot" msgstr "Schermafdruk" -#: src/Module/Admin/Themes/Details.php:91 -#: src/Module/Admin/Themes/Index.php:112 src/Module/BaseAdmin.php:93 +#: src/Module/Admin/Themes/Details.php:83 +#: src/Module/Admin/Themes/Index.php:104 src/Module/BaseAdmin.php:79 msgid "Themes" msgstr "Thema's" -#: src/Module/Admin/Themes/Embed.php:80 +#: src/Module/Admin/Themes/Embed.php:66 msgid "Unknown theme." msgstr "Onbekend thema." -#: src/Module/Admin/Themes/Index.php:51 +#: src/Module/Admin/Themes/Index.php:43 msgid "Themes reloaded" msgstr "" -#: src/Module/Admin/Themes/Index.php:114 +#: src/Module/Admin/Themes/Index.php:106 msgid "Reload active themes" msgstr "Herlaad actieve thema's" -#: src/Module/Admin/Themes/Index.php:118 +#: src/Module/Admin/Themes/Index.php:110 #, php-format msgid "No themes found on the system. They should be placed in %1$s" msgstr "Geen thema's gevonden op het systeem. Ze zouden zich moeten bevinden in %1$s" -#: src/Module/Admin/Themes/Index.php:119 +#: src/Module/Admin/Themes/Index.php:111 msgid "[Experimental]" msgstr "[Experimenteel]" -#: src/Module/Admin/Themes/Index.php:120 +#: src/Module/Admin/Themes/Index.php:112 msgid "[Unsupported]" msgstr "[Niet ondersteund]" -#: src/Module/Admin/Tos.php:79 +#: src/Module/Admin/Tos.php:65 msgid "Display Terms of Service" msgstr "Toon Gebruiksvoorwaarden" -#: src/Module/Admin/Tos.php:79 +#: src/Module/Admin/Tos.php:65 msgid "" "Enable the Terms of Service page. If this is enabled a link to the terms " "will be added to the registration form and the general information page." msgstr "Activeer de Gebruiksvoorwaarden pagina. Als deze geactiveerd is, dan zal er een link naar de voorwaarden toegevoegd worden aan het registratie formulier en de algemene informatie pagina." -#: src/Module/Admin/Tos.php:80 +#: src/Module/Admin/Tos.php:66 msgid "Display Privacy Statement" msgstr "Toon Privacy Verklaring" -#: src/Module/Admin/Tos.php:80 +#: src/Module/Admin/Tos.php:66 #, php-format msgid "" "Show some informations regarding the needed information to operate the node " @@ -5886,167 +5902,167 @@ msgid "" "noreferrer\">EU-GDPR." msgstr "" -#: src/Module/Admin/Tos.php:81 +#: src/Module/Admin/Tos.php:67 msgid "Privacy Statement Preview" msgstr "Privacy Verklaring Voorbeeldweergave" -#: src/Module/Admin/Tos.php:83 +#: src/Module/Admin/Tos.php:69 msgid "The Terms of Service" msgstr "De Gebruiksvoorwaarden" -#: src/Module/Admin/Tos.php:83 +#: src/Module/Admin/Tos.php:69 msgid "" "Enter the Terms of Service for your node here. You can use BBCode. Headers " "of sections should be [h2] and below." msgstr "Geef hier de Gebruiksvoorwaarden van je node op. Je kan BBCode gebruiken. Sectie headers moeten [h2] zijn of lager." -#: src/Module/Admin/Tos.php:84 +#: src/Module/Admin/Tos.php:70 msgid "The rules" msgstr "" -#: src/Module/Admin/Tos.php:84 +#: src/Module/Admin/Tos.php:70 msgid "Enter your system rules here. Each line represents one rule." msgstr "" -#: src/Module/Api/ApiResponse.php:293 +#: src/Module/Api/ApiResponse.php:279 #, php-format msgid "API endpoint %s %s is not implemented but might be in the future." msgstr "" -#: src/Module/Api/Mastodon/Apps.php:73 +#: src/Module/Api/Mastodon/Apps.php:59 msgid "Missing parameters" msgstr "" -#: src/Module/Api/Mastodon/Statuses/Bookmark.php:50 +#: src/Module/Api/Mastodon/Statuses/Bookmark.php:36 msgid "Only starting posts can be bookmarked" msgstr "" -#: src/Module/Api/Mastodon/Statuses/Mute.php:51 +#: src/Module/Api/Mastodon/Statuses/Mute.php:37 msgid "Only starting posts can be muted" msgstr "" -#: src/Module/Api/Mastodon/Statuses/Reblog.php:58 +#: src/Module/Api/Mastodon/Statuses/Reblog.php:44 #, php-format msgid "Posts from %s can't be shared" msgstr "" -#: src/Module/Api/Mastodon/Statuses/Unbookmark.php:51 +#: src/Module/Api/Mastodon/Statuses/Unbookmark.php:37 msgid "Only starting posts can be unbookmarked" msgstr "" -#: src/Module/Api/Mastodon/Statuses/Unmute.php:51 +#: src/Module/Api/Mastodon/Statuses/Unmute.php:37 msgid "Only starting posts can be unmuted" msgstr "" -#: src/Module/Api/Mastodon/Statuses/Unreblog.php:64 +#: src/Module/Api/Mastodon/Statuses/Unreblog.php:50 #, php-format msgid "Posts from %s can't be unshared" msgstr "" -#: src/Module/Api/Twitter/ContactEndpoint.php:66 +#: src/Module/Api/Twitter/ContactEndpoint.php:52 msgid "Contact not found" msgstr "Contact niet gevonden" -#: src/Module/Apps.php:62 +#: src/Module/Apps.php:48 msgid "No installed applications." msgstr "Geen toepassingen geïnstalleerd" -#: src/Module/Apps.php:67 +#: src/Module/Apps.php:53 msgid "Applications" msgstr "Toepassingen" -#: src/Module/Attach.php:49 src/Module/Attach.php:61 +#: src/Module/Attach.php:35 src/Module/Attach.php:47 msgid "Item was not found." msgstr "Item niet gevonden" -#: src/Module/BaseAdmin.php:54 src/Module/BaseAdmin.php:58 -#: src/Module/BaseModeration.php:77 src/Module/BaseModeration.php:81 +#: src/Module/BaseAdmin.php:40 src/Module/BaseAdmin.php:44 +#: src/Module/BaseModeration.php:63 src/Module/BaseModeration.php:67 msgid "Please login to continue." msgstr "Log in om verder te gaan." -#: src/Module/BaseAdmin.php:63 +#: src/Module/BaseAdmin.php:49 msgid "You don't have access to administration pages." msgstr "" -#: src/Module/BaseAdmin.php:67 +#: src/Module/BaseAdmin.php:53 msgid "" "Submanaged account can't access the administration pages. Please log back in" " as the main account." msgstr "" -#: src/Module/BaseAdmin.php:86 src/Module/BaseModeration.php:109 +#: src/Module/BaseAdmin.php:72 src/Module/BaseModeration.php:95 msgid "Overview" msgstr "Overzicht" -#: src/Module/BaseAdmin.php:89 src/Module/BaseModeration.php:112 +#: src/Module/BaseAdmin.php:75 src/Module/BaseModeration.php:98 msgid "Configuration" msgstr "Configuratie" -#: src/Module/BaseAdmin.php:94 src/Module/BaseSettings.php:110 +#: src/Module/BaseAdmin.php:80 src/Module/BaseSettings.php:96 msgid "Additional features" msgstr "Extra functies" -#: src/Module/BaseAdmin.php:97 +#: src/Module/BaseAdmin.php:83 msgid "Database" msgstr "Database" -#: src/Module/BaseAdmin.php:98 +#: src/Module/BaseAdmin.php:84 msgid "DB updates" msgstr "DB aanpassingen" -#: src/Module/BaseAdmin.php:99 +#: src/Module/BaseAdmin.php:85 msgid "Inspect Deferred Workers" msgstr "Inspecteer uitgestelde workers" -#: src/Module/BaseAdmin.php:100 +#: src/Module/BaseAdmin.php:86 msgid "Inspect worker Queue" msgstr "Taakwachtrij inspecteren" -#: src/Module/BaseAdmin.php:106 src/Module/BaseModeration.php:120 +#: src/Module/BaseAdmin.php:92 src/Module/BaseModeration.php:106 msgid "Diagnostics" msgstr "Diagnostiek" -#: src/Module/BaseAdmin.php:107 +#: src/Module/BaseAdmin.php:93 msgid "PHP Info" msgstr "PHP Info" -#: src/Module/BaseAdmin.php:108 +#: src/Module/BaseAdmin.php:94 msgid "probe address" msgstr "probe adres" -#: src/Module/BaseAdmin.php:109 +#: src/Module/BaseAdmin.php:95 msgid "check webfinger" msgstr "check webfinger" -#: src/Module/BaseAdmin.php:110 +#: src/Module/BaseAdmin.php:96 msgid "Babel" msgstr "" -#: src/Module/BaseAdmin.php:111 src/Module/Debug/ActivityPubConversion.php:137 +#: src/Module/BaseAdmin.php:97 src/Module/Debug/ActivityPubConversion.php:129 msgid "ActivityPub Conversion" msgstr "" -#: src/Module/BaseAdmin.php:120 +#: src/Module/BaseAdmin.php:106 msgid "Addon Features" msgstr "Addon Features" -#: src/Module/BaseAdmin.php:121 src/Module/BaseModeration.php:129 +#: src/Module/BaseAdmin.php:107 src/Module/BaseModeration.php:115 msgid "User registrations waiting for confirmation" msgstr "Gebruikersregistraties wachten op bevestiging" -#: src/Module/BaseApi.php:455 src/Module/BaseApi.php:471 -#: src/Module/BaseApi.php:487 +#: src/Module/BaseApi.php:441 src/Module/BaseApi.php:457 +#: src/Module/BaseApi.php:473 msgid "Too Many Requests" msgstr "" -#: src/Module/BaseApi.php:456 +#: src/Module/BaseApi.php:442 #, php-format msgid "Daily posting limit of %d post reached. The post was rejected." msgid_plural "Daily posting limit of %d posts reached. The post was rejected." msgstr[0] "De dagelijkse limiet van %d bericht is bereikt. Dit bericht werd niet aanvaard." msgstr[1] "De dagelijkse limiet van %d berichten is bereikt. Dit bericht werd niet aanvaard." -#: src/Module/BaseApi.php:472 +#: src/Module/BaseApi.php:458 #, php-format msgid "Weekly posting limit of %d post reached. The post was rejected." msgid_plural "" @@ -6054,7 +6070,7 @@ msgid_plural "" msgstr[0] "De wekelijkse limiet van %d bericht is bereikt. Dit bericht werd niet aanvaard." msgstr[1] "De wekelijkse limiet van %d berichten is bereikt. Dit bericht werd niet aanvaard." -#: src/Module/BaseApi.php:488 +#: src/Module/BaseApi.php:474 #, php-format msgid "Monthly posting limit of %d post reached. The post was rejected." msgid_plural "" @@ -6062,84 +6078,84 @@ msgid_plural "" msgstr[0] "" msgstr[1] "" -#: src/Module/BaseModeration.php:86 +#: src/Module/BaseModeration.php:72 msgid "You don't have access to moderation pages." msgstr "" -#: src/Module/BaseModeration.php:90 +#: src/Module/BaseModeration.php:76 msgid "" "Submanaged account can't access the moderation pages. Please log back in as " "the main account." msgstr "" -#: src/Module/BaseModeration.php:110 src/Module/Moderation/Reports.php:109 +#: src/Module/BaseModeration.php:96 src/Module/Moderation/Reports.php:101 msgid "Reports" msgstr "" -#: src/Module/BaseModeration.php:113 src/Module/Moderation/Users/Index.php:148 -#: src/Module/Moderation/Users/Index.php:158 +#: src/Module/BaseModeration.php:99 src/Module/Moderation/Users/Index.php:134 +#: src/Module/Moderation/Users/Index.php:144 msgid "Users" msgstr "Gebruiker" -#: src/Module/BaseModeration.php:115 +#: src/Module/BaseModeration.php:101 msgid "Tools" msgstr "Hulpmiddelen" -#: src/Module/BaseModeration.php:116 +#: src/Module/BaseModeration.php:102 msgid "Contact Blocklist" msgstr "Contact Blokkeerlijst" -#: src/Module/BaseModeration.php:117 +#: src/Module/BaseModeration.php:103 msgid "Server Blocklist" msgstr "Server Blokkeerlijst" -#: src/Module/BaseModeration.php:118 src/Module/Moderation/Item/Delete.php:62 +#: src/Module/BaseModeration.php:104 src/Module/Moderation/Item/Delete.php:48 msgid "Delete Item" msgstr "Verwijder Item" -#: src/Module/BaseModeration.php:121 src/Module/Moderation/Item/Source.php:76 +#: src/Module/BaseModeration.php:107 src/Module/Moderation/Item/Source.php:68 msgid "Item Source" msgstr "" -#: src/Module/BaseProfile.php:52 src/Module/Contact.php:506 +#: src/Module/BaseProfile.php:38 src/Module/Contact.php:488 msgid "Profile Details" msgstr "Profieldetails" -#: src/Module/BaseProfile.php:60 +#: src/Module/BaseProfile.php:46 msgid "Conversations started" msgstr "" -#: src/Module/BaseProfile.php:111 +#: src/Module/BaseProfile.php:97 msgid "Only You Can See This" msgstr "Alleen jij kunt dit zien" -#: src/Module/BaseProfile.php:116 src/Module/Profile/Schedule.php:81 +#: src/Module/BaseProfile.php:102 src/Module/Profile/Schedule.php:67 msgid "Scheduled Posts" msgstr "" -#: src/Module/BaseProfile.php:119 +#: src/Module/BaseProfile.php:105 msgid "Posts that are scheduled for publishing" msgstr "" -#: src/Module/BaseProfile.php:138 src/Module/BaseProfile.php:141 +#: src/Module/BaseProfile.php:124 src/Module/BaseProfile.php:127 msgid "Tips for New Members" msgstr "Tips voor nieuwe leden" -#: src/Module/BaseSearch.php:71 +#: src/Module/BaseSearch.php:57 #, php-format msgid "People Search - %s" msgstr "Mensen Zoeken - %s" -#: src/Module/BaseSearch.php:75 +#: src/Module/BaseSearch.php:61 #, php-format msgid "Group Search - %s" msgstr "" -#: src/Module/BaseSearch.php:121 src/Module/Contact/MatchInterests.php:140 +#: src/Module/BaseSearch.php:107 src/Module/Contact/MatchInterests.php:136 msgid "No matches" msgstr "Geen resultaten" -#: src/Module/BaseSearch.php:147 +#: src/Module/BaseSearch.php:133 #, php-format msgid "" "%d result was filtered out because your node blocks the domain it is " @@ -6152,594 +6168,590 @@ msgid_plural "" msgstr[0] "" msgstr[1] "" -#: src/Module/BaseSettings.php:78 +#: src/Module/BaseSettings.php:64 msgid "Account" msgstr "Account" -#: src/Module/BaseSettings.php:85 src/Module/Security/TwoFactor/Verify.php:96 -#: src/Module/Settings/TwoFactor/Index.php:138 +#: src/Module/BaseSettings.php:71 src/Module/Security/TwoFactor/Verify.php:82 +#: src/Module/Settings/TwoFactor/Index.php:124 msgid "Two-factor authentication" msgstr "2-factor authenticatie" -#: src/Module/BaseSettings.php:118 +#: src/Module/BaseSettings.php:104 msgid "Display" msgstr "Weergave" -#: src/Module/BaseSettings.php:132 src/Module/Settings/Connectors.php:204 +#: src/Module/BaseSettings.php:118 src/Module/Settings/Connectors.php:195 msgid "Social Networks" msgstr "Sociale netwerken" -#: src/Module/BaseSettings.php:146 src/Module/Settings/Delegation.php:194 +#: src/Module/BaseSettings.php:132 src/Module/Settings/Delegation.php:180 msgid "Manage Accounts" msgstr "Beheer Gebruikers" -#: src/Module/BaseSettings.php:153 +#: src/Module/BaseSettings.php:139 msgid "Connected apps" msgstr "Verbonden applicaties" -#: src/Module/BaseSettings.php:160 +#: src/Module/BaseSettings.php:146 msgid "Remote servers" msgstr "" -#: src/Module/BaseSettings.php:167 src/Module/Settings/UserExport.php:98 +#: src/Module/BaseSettings.php:153 src/Module/Settings/UserExport.php:84 msgid "Export personal data" msgstr "Persoonlijke gegevens exporteren" -#: src/Module/BaseSettings.php:174 +#: src/Module/BaseSettings.php:160 msgid "Remove account" msgstr "Account verwijderen" -#: src/Module/Bookmarklet.php:54 +#: src/Module/Bookmarklet.php:40 msgid "This page is missing a url parameter." msgstr "Deze pagina mist een url-parameter." -#: src/Module/Bookmarklet.php:66 +#: src/Module/Bookmarklet.php:52 msgid "The post was created" msgstr "Het bericht is aangemaakt" -#: src/Module/Calendar/Event/API.php:100 src/Module/Calendar/Event/API.php:135 -#: src/Module/Calendar/Event/Form.php:80 +#: src/Module/Calendar/Event/API.php:86 src/Module/Calendar/Event/API.php:121 +#: src/Module/Calendar/Event/Form.php:66 msgid "Invalid Request" msgstr "" -#: src/Module/Calendar/Event/API.php:109 +#: src/Module/Calendar/Event/API.php:95 msgid "Event id is missing." msgstr "" -#: src/Module/Calendar/Event/API.php:131 +#: src/Module/Calendar/Event/API.php:117 msgid "Failed to remove event" msgstr "Kon remote event niet verwijderen" -#: src/Module/Calendar/Event/API.php:187 src/Module/Calendar/Event/API.php:189 +#: src/Module/Calendar/Event/API.php:173 src/Module/Calendar/Event/API.php:175 msgid "Event can not end before it has started." msgstr "Gebeurtenis kan niet eindigen voor het begin." -#: src/Module/Calendar/Event/API.php:196 src/Module/Calendar/Event/API.php:198 +#: src/Module/Calendar/Event/API.php:182 src/Module/Calendar/Event/API.php:184 msgid "Event title and start time are required." msgstr "Titel en begintijd van de gebeurtenis zijn vereist." -#: src/Module/Calendar/Event/Form.php:208 +#: src/Module/Calendar/Event/Form.php:194 msgid "Starting date and Title are required." msgstr "Start datum en Titel zijn verplicht." -#: src/Module/Calendar/Event/Form.php:209 -#: src/Module/Calendar/Event/Form.php:214 +#: src/Module/Calendar/Event/Form.php:195 +#: src/Module/Calendar/Event/Form.php:200 msgid "Event Starts:" msgstr "Gebeurtenis begint:" -#: src/Module/Calendar/Event/Form.php:209 -#: src/Module/Calendar/Event/Form.php:237 src/Module/Debug/Probe.php:59 -#: src/Module/Install.php:201 src/Module/Install.php:227 -#: src/Module/Install.php:232 src/Module/Install.php:246 -#: src/Module/Install.php:255 src/Module/Install.php:260 -#: src/Module/Install.php:266 src/Module/Install.php:271 -#: src/Module/Install.php:285 src/Module/Install.php:298 -#: src/Module/Install.php:325 -#: src/Module/Moderation/Blocklist/Server/Add.php:136 -#: src/Module/Moderation/Blocklist/Server/Add.php:138 -#: src/Module/Moderation/Blocklist/Server/Import.php:129 -#: src/Module/Moderation/Blocklist/Server/Index.php:86 -#: src/Module/Moderation/Blocklist/Server/Index.php:87 -#: src/Module/Moderation/Blocklist/Server/Index.php:115 -#: src/Module/Moderation/Blocklist/Server/Index.php:116 -#: src/Module/Moderation/Item/Delete.php:67 src/Module/Register.php:149 -#: src/Module/Security/TwoFactor/Verify.php:101 -#: src/Module/Settings/Channels.php:190 src/Module/Settings/Channels.php:211 -#: src/Module/Settings/TwoFactor/Index.php:161 -#: src/Module/Settings/TwoFactor/Verify.php:158 +#: src/Module/Calendar/Event/Form.php:195 +#: src/Module/Calendar/Event/Form.php:223 src/Module/Debug/Probe.php:45 +#: src/Module/Install.php:187 src/Module/Install.php:213 +#: src/Module/Install.php:218 src/Module/Install.php:232 +#: src/Module/Install.php:241 src/Module/Install.php:246 +#: src/Module/Install.php:252 src/Module/Install.php:257 +#: src/Module/Install.php:271 src/Module/Install.php:284 +#: src/Module/Install.php:311 +#: src/Module/Moderation/Blocklist/Server/Add.php:122 +#: src/Module/Moderation/Blocklist/Server/Add.php:124 +#: src/Module/Moderation/Blocklist/Server/Import.php:113 +#: src/Module/Moderation/Blocklist/Server/Index.php:72 +#: src/Module/Moderation/Blocklist/Server/Index.php:73 +#: src/Module/Moderation/Blocklist/Server/Index.php:101 +#: src/Module/Moderation/Blocklist/Server/Index.php:102 +#: src/Module/Moderation/Item/Delete.php:53 src/Module/Register.php:141 +#: src/Module/Security/TwoFactor/Verify.php:87 +#: src/Module/Settings/Channels.php:176 src/Module/Settings/Channels.php:197 +#: src/Module/Settings/TwoFactor/Index.php:147 +#: src/Module/Settings/TwoFactor/Verify.php:144 msgid "Required" msgstr "Vereist" -#: src/Module/Calendar/Event/Form.php:223 -#: src/Module/Calendar/Event/Form.php:247 +#: src/Module/Calendar/Event/Form.php:209 +#: src/Module/Calendar/Event/Form.php:233 msgid "Finish date/time is not known or not relevant" msgstr "Einddatum/tijd is niet gekend of niet relevant" -#: src/Module/Calendar/Event/Form.php:225 -#: src/Module/Calendar/Event/Form.php:230 +#: src/Module/Calendar/Event/Form.php:211 +#: src/Module/Calendar/Event/Form.php:216 msgid "Event Finishes:" msgstr "Gebeurtenis eindigt:" -#: src/Module/Calendar/Event/Form.php:237 -#: src/Module/Calendar/Event/Form.php:243 +#: src/Module/Calendar/Event/Form.php:223 +#: src/Module/Calendar/Event/Form.php:229 msgid "Title (BBCode not allowed)" msgstr "" -#: src/Module/Calendar/Event/Form.php:239 +#: src/Module/Calendar/Event/Form.php:225 msgid "Description (BBCode allowed)" msgstr "" -#: src/Module/Calendar/Event/Form.php:241 +#: src/Module/Calendar/Event/Form.php:227 msgid "Location (BBCode not allowed)" msgstr "" -#: src/Module/Calendar/Event/Form.php:244 -#: src/Module/Calendar/Event/Form.php:245 +#: src/Module/Calendar/Event/Form.php:230 +#: src/Module/Calendar/Event/Form.php:231 msgid "Share this event" msgstr "Deel deze gebeurtenis" -#: src/Module/Calendar/Event/Form.php:251 src/Module/Profile/Profile.php:275 +#: src/Module/Calendar/Event/Form.php:237 src/Module/Profile/Profile.php:263 msgid "Basic" msgstr "Basis" -#: src/Module/Calendar/Export.php:94 +#: src/Module/Calendar/Export.php:80 msgid "This calendar format is not supported" msgstr "Dit kalender formaat is niet ondersteund" -#: src/Module/Calendar/Export.php:96 +#: src/Module/Calendar/Export.php:82 msgid "No exportable data found" msgstr "Geen exporteerbare data gevonden" -#: src/Module/Calendar/Export.php:113 +#: src/Module/Calendar/Export.php:99 msgid "calendar" msgstr "kalender" -#: src/Module/Calendar/Show.php:124 +#: src/Module/Calendar/Show.php:110 msgid "Events" msgstr "Gebeurtenissen" -#: src/Module/Calendar/Show.php:125 +#: src/Module/Calendar/Show.php:111 msgid "View" msgstr "Beeld" -#: src/Module/Calendar/Show.php:126 +#: src/Module/Calendar/Show.php:112 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:118 src/Module/Settings/Display.php:283 msgid "list" msgstr "lijst" -#: src/Module/Circle.php:57 +#: src/Module/Circle.php:43 msgid "Could not create circle." msgstr "" -#: src/Module/Circle.php:68 src/Module/Circle.php:216 -#: src/Module/Circle.php:240 +#: src/Module/Circle.php:54 src/Module/Circle.php:202 +#: src/Module/Circle.php:226 msgid "Circle not found." msgstr "" -#: src/Module/Circle.php:74 +#: src/Module/Circle.php:60 msgid "Circle name was not changed." msgstr "" -#: src/Module/Circle.php:92 +#: src/Module/Circle.php:78 msgid "Unknown circle." msgstr "" -#: src/Module/Circle.php:98 src/Module/Circle.php:107 -#: src/Module/Contact/Advanced.php:70 src/Module/Contact/Advanced.php:109 -#: src/Module/Contact/Contacts.php:71 src/Module/Contact/Conversations.php:86 -#: src/Module/Contact/Conversations.php:91 -#: src/Module/Contact/Conversations.php:96 src/Module/Contact/Media.php:61 -#: src/Module/Contact/Posts.php:78 src/Module/Contact/Posts.php:83 -#: src/Module/Contact/Posts.php:88 src/Module/Contact/Profile.php:159 -#: src/Module/Contact/Profile.php:164 src/Module/Contact/Profile.php:169 -#: src/Module/Contact/Redir.php:95 src/Module/Contact/Redir.php:141 -#: src/Module/FriendSuggest.php:71 src/Module/FriendSuggest.php:109 +#: src/Module/Circle.php:84 src/Module/Circle.php:93 +#: src/Module/Contact/Advanced.php:56 src/Module/Contact/Advanced.php:95 +#: src/Module/Contact/Contacts.php:57 src/Module/Contact/Conversations.php:72 +#: src/Module/Contact/Conversations.php:77 +#: src/Module/Contact/Conversations.php:82 src/Module/Contact/Media.php:47 +#: src/Module/Contact/Posts.php:64 src/Module/Contact/Posts.php:69 +#: src/Module/Contact/Posts.php:74 src/Module/Contact/Profile.php:145 +#: src/Module/Contact/Profile.php:150 src/Module/Contact/Profile.php:169 +#: src/Module/Contact/Redir.php:77 src/Module/Contact/Redir.php:131 +#: src/Module/FriendSuggest.php:57 src/Module/FriendSuggest.php:95 msgid "Contact not found." msgstr "Contact niet gevonden" -#: src/Module/Circle.php:102 src/Module/Contact/Contacts.php:66 +#: src/Module/Circle.php:88 src/Module/Contact/Contacts.php:52 msgid "Invalid contact." msgstr "Ongeldig contact." -#: src/Module/Circle.php:111 src/Module/Contact/Revoke.php:73 +#: src/Module/Circle.php:97 src/Module/Contact/Revoke.php:56 msgid "Contact is deleted." msgstr "Contact is verwijderd." -#: src/Module/Circle.php:117 +#: src/Module/Circle.php:103 msgid "Unable to add the contact to the circle." msgstr "" -#: src/Module/Circle.php:120 +#: src/Module/Circle.php:106 msgid "Contact successfully added to circle." msgstr "" -#: src/Module/Circle.php:124 +#: src/Module/Circle.php:110 msgid "Unable to remove the contact from the circle." msgstr "" -#: src/Module/Circle.php:127 +#: src/Module/Circle.php:113 msgid "Contact successfully removed from circle." msgstr "" -#: src/Module/Circle.php:131 +#: src/Module/Circle.php:117 msgid "Bad request." msgstr "Verkeerde aanvraag." -#: src/Module/Circle.php:172 +#: src/Module/Circle.php:158 msgid "Save Circle" msgstr "" -#: src/Module/Circle.php:173 +#: src/Module/Circle.php:159 msgid "Filter" msgstr "filter" -#: src/Module/Circle.php:179 +#: src/Module/Circle.php:165 msgid "Create a circle of contacts/friends." msgstr "" -#: src/Module/Circle.php:221 +#: src/Module/Circle.php:207 msgid "Unable to remove circle." msgstr "" -#: src/Module/Circle.php:272 +#: src/Module/Circle.php:258 msgid "Delete Circle" msgstr "" -#: src/Module/Circle.php:282 +#: src/Module/Circle.php:268 msgid "Edit Circle Name" msgstr "" -#: src/Module/Circle.php:292 +#: src/Module/Circle.php:278 msgid "Members" msgstr "Leden" -#: src/Module/Circle.php:295 +#: src/Module/Circle.php:281 msgid "Circle is empty" msgstr "" -#: src/Module/Circle.php:311 +#: src/Module/Circle.php:297 msgid "Remove contact from circle" msgstr "" -#: src/Module/Circle.php:334 +#: src/Module/Circle.php:320 msgid "Click on a contact to add or remove." msgstr "Klik op een contact om het toe te voegen of te verwijderen." -#: src/Module/Circle.php:351 +#: src/Module/Circle.php:337 msgid "Add contact to circle" msgstr "" -#: src/Module/Contact.php:96 +#: src/Module/Contact.php:88 #, php-format msgid "%d contact edited." msgid_plural "%d contacts edited." msgstr[0] "%d contact bewerkt." msgstr[1] "%d contacten bewerkt." -#: src/Module/Contact.php:347 +#: src/Module/Contact.php:328 msgid "Show all contacts" msgstr "Toon alle contacten" -#: src/Module/Contact.php:352 src/Module/Contact.php:431 -#: src/Module/Moderation/BaseUsers.php:85 +#: src/Module/Contact.php:333 src/Module/Contact.php:412 +#: src/Module/Moderation/BaseUsers.php:72 msgid "Pending" msgstr "In behandeling" -#: src/Module/Contact.php:355 +#: src/Module/Contact.php:336 msgid "Only show pending contacts" msgstr "Toon alleen contacten in behandeling" -#: src/Module/Contact.php:360 src/Module/Contact.php:434 -#: src/Module/Moderation/BaseUsers.php:93 +#: src/Module/Contact.php:341 src/Module/Contact.php:415 +#: src/Module/Moderation/BaseUsers.php:80 msgid "Blocked" msgstr "Geblokkeerd" -#: src/Module/Contact.php:363 +#: src/Module/Contact.php:344 msgid "Only show blocked contacts" msgstr "Toon alleen geblokkeerde contacten" -#: src/Module/Contact.php:368 src/Module/Contact.php:440 -#: src/Module/Settings/Server/Index.php:107 src/Object/Post.php:399 +#: src/Module/Contact.php:349 src/Module/Contact.php:421 +#: src/Module/Settings/Server/Index.php:93 src/Object/Post.php:385 msgid "Ignored" msgstr "Genegeerd" -#: src/Module/Contact.php:371 +#: src/Module/Contact.php:352 msgid "Only show ignored contacts" msgstr "Toon alleen genegeerde contacten" -#: src/Module/Contact.php:376 src/Module/Contact.php:443 +#: src/Module/Contact.php:357 src/Module/Contact.php:424 msgid "Collapsed" msgstr "" -#: src/Module/Contact.php:379 +#: src/Module/Contact.php:360 msgid "Only show collapsed contacts" msgstr "" -#: src/Module/Contact.php:384 src/Module/Contact.php:446 +#: src/Module/Contact.php:365 src/Module/Contact.php:427 msgid "Archived" msgstr "Gearchiveerd" -#: src/Module/Contact.php:387 +#: src/Module/Contact.php:368 msgid "Only show archived contacts" msgstr "Toon alleen gearchiveerde contacten" -#: src/Module/Contact.php:392 src/Module/Contact.php:437 +#: src/Module/Contact.php:373 src/Module/Contact.php:418 msgid "Hidden" msgstr "Verborgen" -#: src/Module/Contact.php:395 +#: src/Module/Contact.php:376 msgid "Only show hidden contacts" msgstr "Toon alleen verborgen contacten" -#: src/Module/Contact.php:403 +#: src/Module/Contact.php:384 msgid "Organize your contact circles" msgstr "" -#: src/Module/Contact.php:458 +#: src/Module/Contact.php:439 msgid "Search your contacts" msgstr "Doorzoek je contacten" -#: src/Module/Contact.php:459 src/Module/Search/Index.php:207 +#: src/Module/Contact.php:440 src/Module/Search/Index.php:193 #, php-format msgid "Results for: %s" msgstr "Resultaten voor: %s" -#: src/Module/Contact.php:466 +#: src/Module/Contact.php:448 msgid "Update" msgstr "Wijzigen" -#: src/Module/Contact.php:467 src/Module/Contact/Profile.php:518 -#: src/Module/Moderation/Blocklist/Contact.php:117 -#: src/Module/Moderation/Users/Blocked.php:138 -#: src/Module/Moderation/Users/Index.php:154 +#: src/Module/Contact.php:449 src/Module/Contact/Profile.php:518 +#: src/Module/Moderation/Blocklist/Contact.php:103 +#: src/Module/Moderation/Users/Blocked.php:124 +#: src/Module/Moderation/Users/Index.php:140 msgid "Unblock" msgstr "Blokkering opheffen" -#: src/Module/Contact.php:468 src/Module/Contact/Profile.php:526 +#: src/Module/Contact.php:450 src/Module/Contact/Profile.php:526 msgid "Unignore" msgstr "Negeer niet meer" -#: src/Module/Contact.php:469 src/Module/Contact/Profile.php:534 +#: src/Module/Contact.php:451 src/Module/Contact/Profile.php:534 msgid "Uncollapse" msgstr "" -#: src/Module/Contact.php:471 +#: src/Module/Contact.php:453 msgid "Batch Actions" msgstr "Bulk Acties" -#: src/Module/Contact.php:514 +#: src/Module/Contact.php:496 msgid "Conversations started by this contact" msgstr "Gesprekken gestart door dit contact" -#: src/Module/Contact.php:519 +#: src/Module/Contact.php:501 msgid "Posts and Comments" msgstr "Berichten en reacties" -#: src/Module/Contact.php:522 +#: src/Module/Contact.php:504 msgid "Individual Posts and Replies" msgstr "" -#: src/Module/Contact.php:530 +#: src/Module/Contact.php:512 msgid "Posts containing media objects" msgstr "" -#: src/Module/Contact.php:538 +#: src/Module/Contact.php:520 msgid "View all known contacts" msgstr "" -#: src/Module/Contact.php:549 +#: src/Module/Contact.php:531 msgid "Advanced Contact Settings" msgstr "Geavanceerde instellingen voor contacten" -#: src/Module/Contact.php:585 +#: src/Module/Contact.php:567 msgid "Mutual Friendship" msgstr "Wederzijdse vriendschap" -#: src/Module/Contact.php:589 +#: src/Module/Contact.php:571 msgid "is a fan of yours" msgstr "Is een fan van jou" -#: src/Module/Contact.php:593 +#: src/Module/Contact.php:575 msgid "you are a fan of" msgstr "Jij bent een fan van" -#: src/Module/Contact.php:611 +#: src/Module/Contact.php:593 msgid "Pending outgoing contact request" msgstr "In afwachting van uitgaande contactaanvraag" -#: src/Module/Contact.php:613 +#: src/Module/Contact.php:595 msgid "Pending incoming contact request" msgstr "In afwachting van inkomende contactaanvraag" -#: src/Module/Contact.php:626 src/Module/Contact/Profile.php:377 +#: src/Module/Contact.php:608 src/Module/Contact/Profile.php:377 #, php-format msgid "Visit %s's profile [%s]" msgstr "Bekijk het profiel van %s [%s]" -#: src/Module/Contact/Advanced.php:99 +#: src/Module/Contact/Advanced.php:85 msgid "Contact update failed." msgstr "Aanpassen van contact mislukt." -#: src/Module/Contact/Advanced.php:130 +#: src/Module/Contact/Advanced.php:116 msgid "Return to contact editor" msgstr "Ga terug naar contactbewerker" -#: src/Module/Contact/Advanced.php:134 -#: src/Module/Moderation/Blocklist/Contact.php:122 -#: src/Module/Moderation/Reports.php:110 -#: src/Module/Moderation/Users/Active.php:126 -#: src/Module/Moderation/Users/Blocked.php:126 -#: src/Module/Moderation/Users/Create.php:70 -#: src/Module/Moderation/Users/Deleted.php:83 -#: src/Module/Moderation/Users/Index.php:140 -#: src/Module/Moderation/Users/Index.php:160 -#: src/Module/Moderation/Users/Pending.php:99 src/Module/Settings/OAuth.php:72 +#: src/Module/Contact/Advanced.php:120 +#: src/Module/Moderation/Blocklist/Contact.php:108 +#: src/Module/Moderation/Reports.php:102 +#: src/Module/Moderation/Users/Active.php:112 +#: src/Module/Moderation/Users/Blocked.php:112 +#: src/Module/Moderation/Users/Create.php:56 +#: src/Module/Moderation/Users/Deleted.php:69 +#: src/Module/Moderation/Users/Index.php:126 +#: src/Module/Moderation/Users/Index.php:146 +#: src/Module/Moderation/Users/Pending.php:85 src/Module/Settings/OAuth.php:58 msgid "Name" msgstr "Naam" -#: src/Module/Contact/Advanced.php:135 +#: src/Module/Contact/Advanced.php:121 msgid "Account Nickname" msgstr "Bijnaam account" -#: src/Module/Contact/Advanced.php:136 +#: src/Module/Contact/Advanced.php:122 msgid "Account URL" msgstr "URL account" -#: src/Module/Contact/Advanced.php:137 +#: src/Module/Contact/Advanced.php:123 msgid "Poll/Feed URL" msgstr "URL poll/feed" -#: src/Module/Contact/Advanced.php:138 +#: src/Module/Contact/Advanced.php:124 msgid "New photo from this URL" msgstr "Nieuwe foto van deze URL" -#: src/Module/Contact/Contacts.php:89 +#: src/Module/Contact/Contacts.php:75 msgid "No known contacts." msgstr "" -#: src/Module/Contact/Contacts.php:103 src/Module/Profile/Common.php:128 +#: src/Module/Contact/Contacts.php:89 src/Module/Profile/Common.php:114 msgid "No common contacts." msgstr "" -#: src/Module/Contact/Contacts.php:115 src/Module/Profile/Contacts.php:135 +#: src/Module/Contact/Contacts.php:101 src/Module/Profile/Contacts.php:121 #, php-format msgid "Follower (%s)" msgid_plural "Followers (%s)" msgstr[0] "Volger (%s)" msgstr[1] "Volgers (%s)" -#: src/Module/Contact/Contacts.php:119 src/Module/Profile/Contacts.php:138 +#: src/Module/Contact/Contacts.php:105 src/Module/Profile/Contacts.php:124 #, php-format msgid "Following (%s)" msgid_plural "Following (%s)" msgstr[0] "Volgend (%s)" msgstr[1] "Volgend (%s)" -#: src/Module/Contact/Contacts.php:123 src/Module/Profile/Contacts.php:141 +#: src/Module/Contact/Contacts.php:109 src/Module/Profile/Contacts.php:127 #, php-format msgid "Mutual friend (%s)" msgid_plural "Mutual friends (%s)" msgstr[0] "Gemeenschappelijke vriend (%s)" msgstr[1] "Gemeenschappelijke vrienden (%s)" -#: src/Module/Contact/Contacts.php:125 src/Module/Profile/Contacts.php:143 +#: src/Module/Contact/Contacts.php:111 src/Module/Profile/Contacts.php:129 #, php-format msgid "These contacts both follow and are followed by %s." msgstr "" -#: src/Module/Contact/Contacts.php:131 src/Module/Profile/Common.php:116 +#: src/Module/Contact/Contacts.php:117 src/Module/Profile/Common.php:102 #, php-format msgid "Common contact (%s)" msgid_plural "Common contacts (%s)" msgstr[0] "" msgstr[1] "" -#: src/Module/Contact/Contacts.php:133 src/Module/Profile/Common.php:118 +#: src/Module/Contact/Contacts.php:119 src/Module/Profile/Common.php:104 #, php-format msgid "" "Both %s and yourself have publicly interacted with these " "contacts (follow, comment or likes on public posts)." msgstr "" -#: src/Module/Contact/Contacts.php:139 src/Module/Profile/Contacts.php:149 +#: src/Module/Contact/Contacts.php:125 src/Module/Profile/Contacts.php:135 #, php-format msgid "Contact (%s)" msgid_plural "Contacts (%s)" msgstr[0] "Contact (%s)" msgstr[1] "Contacten (%s)" -#: src/Module/Contact/Follow.php:70 src/Module/Contact/Redir.php:63 -#: src/Module/Contact/Redir.php:223 src/Module/Conversation/Community.php:166 -#: src/Module/Debug/ItemBody.php:38 src/Module/Diaspora/Receive.php:57 -#: src/Module/Item/Display.php:96 src/Module/Item/Feed.php:59 -#: src/Module/Item/Follow.php:41 src/Module/Item/Ignore.php:41 -#: src/Module/Item/Language.php:53 src/Module/Item/Pin.php:41 -#: src/Module/Item/Pin.php:56 src/Module/Item/Searchtext.php:53 -#: src/Module/Item/Star.php:42 src/Module/Update/Display.php:37 +#: src/Module/Contact/Follow.php:56 src/Module/Contact/Redir.php:45 +#: src/Module/Contact/Redir.php:206 src/Module/Conversation/Community.php:154 +#: src/Module/Debug/ItemBody.php:24 src/Module/Diaspora/Receive.php:45 +#: src/Module/Item/Display.php:82 src/Module/Item/Feed.php:45 +#: src/Module/Item/Follow.php:27 src/Module/Item/Ignore.php:27 +#: src/Module/Item/Language.php:39 src/Module/Item/Pin.php:27 +#: src/Module/Item/Pin.php:42 src/Module/Item/Searchtext.php:39 +#: src/Module/Item/Star.php:28 src/Module/Update/Display.php:23 msgid "Access denied." msgstr "Toegang geweigerd" -#: src/Module/Contact/Follow.php:105 src/Module/Contact/Unfollow.php:125 -#: src/Module/Profile/RemoteFollow.php:133 +#: src/Module/Contact/Follow.php:91 src/Module/Contact/Unfollow.php:111 +#: src/Module/Profile/RemoteFollow.php:119 msgid "Submit Request" msgstr "Aanvraag indienen" -#: src/Module/Contact/Follow.php:115 +#: src/Module/Contact/Follow.php:101 msgid "You already added this contact." msgstr "Je hebt deze kontakt al toegevoegd" -#: src/Module/Contact/Follow.php:130 +#: src/Module/Contact/Follow.php:116 msgid "The network type couldn't be detected. Contact can't be added." msgstr "Het type netwerk kon niet gedetecteerd worden. Contact kan niet toegevoegd worden." -#: src/Module/Contact/Follow.php:138 +#: src/Module/Contact/Follow.php:124 msgid "Diaspora support isn't enabled. Contact can't be added." msgstr "Diaspora ondersteuning is niet geactiveerd. Contact kan niet toegevoegd worden." -#: src/Module/Contact/Follow.php:143 -msgid "OStatus support is disabled. Contact can't be added." -msgstr "OStatus ondersteuning is niet geactiveerd. Contact kan niet toegevoegd woren." - -#: src/Module/Contact/Follow.php:168 src/Module/Profile/RemoteFollow.php:132 +#: src/Module/Contact/Follow.php:149 src/Module/Profile/RemoteFollow.php:118 msgid "Please answer the following:" msgstr "Beantwoord het volgende:" -#: src/Module/Contact/Follow.php:169 src/Module/Contact/Unfollow.php:123 +#: src/Module/Contact/Follow.php:150 src/Module/Contact/Unfollow.php:109 msgid "Your Identity Address:" msgstr "Adres van je identiteit:" -#: src/Module/Contact/Follow.php:170 src/Module/Contact/Profile.php:408 -#: src/Module/Contact/Unfollow.php:129 -#: src/Module/Moderation/Blocklist/Contact.php:131 -#: src/Module/Moderation/Reports.php:117 -#: src/Module/Notifications/Introductions.php:129 -#: src/Module/Notifications/Introductions.php:198 +#: src/Module/Contact/Follow.php:151 src/Module/Contact/Profile.php:408 +#: src/Module/Contact/Unfollow.php:115 +#: src/Module/Moderation/Blocklist/Contact.php:117 +#: src/Module/Moderation/Reports.php:109 +#: src/Module/Notifications/Introductions.php:121 +#: src/Module/Notifications/Introductions.php:190 msgid "Profile URL" msgstr "Profiel url" -#: src/Module/Contact/Follow.php:171 src/Module/Contact/Profile.php:420 -#: src/Module/Notifications/Introductions.php:191 -#: src/Module/Profile/Profile.php:234 +#: src/Module/Contact/Follow.php:152 src/Module/Contact/Profile.php:420 +#: src/Module/Notifications/Introductions.php:183 +#: src/Module/Profile/Profile.php:222 msgid "Tags:" msgstr "Labels:" -#: src/Module/Contact/Follow.php:182 +#: src/Module/Contact/Follow.php:163 #, php-format msgid "%s knows you" msgstr "%s kent je" -#: src/Module/Contact/Follow.php:183 +#: src/Module/Contact/Follow.php:164 msgid "Add a personal note:" msgstr "Voeg een persoonlijke opmerking toe:" -#: src/Module/Contact/Follow.php:192 src/Module/Contact/Unfollow.php:138 +#: src/Module/Contact/Follow.php:173 src/Module/Contact/Unfollow.php:124 msgid "Posts and Replies" msgstr "" -#: src/Module/Contact/Follow.php:221 +#: src/Module/Contact/Follow.php:202 msgid "The contact could not be added." msgstr "Het contact kon niet toegevoegd worden." -#: src/Module/Contact/MatchInterests.php:95 -#: src/Module/Media/Attachment/Upload.php:77 -#: src/Module/Media/Attachment/Upload.php:82 -#: src/Module/Media/Photo/Upload.php:81 src/Module/Media/Photo/Upload.php:86 -#: src/Module/Media/Photo/Upload.php:135 +#: src/Module/Contact/MatchInterests.php:81 +#: src/Module/Media/Attachment/Upload.php:63 +#: src/Module/Media/Attachment/Upload.php:68 +#: src/Module/Media/Photo/Upload.php:67 src/Module/Media/Photo/Upload.php:72 +#: src/Module/Media/Photo/Upload.php:121 msgid "Invalid request." msgstr "Ongeldige aanvraag." -#: src/Module/Contact/MatchInterests.php:102 +#: src/Module/Contact/MatchInterests.php:88 msgid "No keywords to match. Please add keywords to your profile." msgstr "Geen overeenkomende zoekwoorden. Voeg zoekwoorden toe aan uw profiel." -#: src/Module/Contact/MatchInterests.php:145 +#: src/Module/Contact/MatchInterests.php:141 msgid "Profile Match" msgstr "Profielmatch" -#: src/Module/Contact/Profile.php:145 +#: src/Module/Contact/Profile.php:131 msgid "Failed to update contact record." msgstr "Ik kon de contactgegevens niet aanpassen." @@ -6877,7 +6889,7 @@ msgid "Block/Unblock contact" msgstr "Blokkeer/deblokkeer contact" #: src/Module/Contact/Profile.php:379 -#: src/Module/Moderation/Report/Create.php:293 +#: src/Module/Moderation/Report/Create.php:279 msgid "Ignore contact" msgstr "Negeer contact" @@ -6922,7 +6934,7 @@ msgid "Manage remote servers" msgstr "" #: src/Module/Contact/Profile.php:400 -#: src/Module/Notifications/Introductions.php:192 +#: src/Module/Notifications/Introductions.php:184 msgid "Hide this contact from others" msgstr "Verberg dit contact voor anderen" @@ -6950,12 +6962,12 @@ msgid "" msgstr "Door komma's gescheiden lijst van sleutelwoorden die niet in hashtags mogen omgezet worden, wanneer \"Haal informatie en sleutelwoorden op\" is geselecteerd" #: src/Module/Contact/Profile.php:421 -#: src/Module/Settings/TwoFactor/Index.php:160 +#: src/Module/Settings/TwoFactor/Index.php:146 msgid "Actions" msgstr "Acties" #: src/Module/Contact/Profile.php:423 -#: src/Module/Settings/TwoFactor/Index.php:140 view/theme/frio/theme.php:232 +#: src/Module/Settings/TwoFactor/Index.php:126 view/theme/frio/theme.php:220 msgid "Status" msgstr "Tijdlijn" @@ -7030,8 +7042,8 @@ msgstr "" #: src/Module/Contact/Profile.php:441 msgid "" -"If enabled, posts from this contact will only appear in channels, but not in" -" the network stream." +"If enabled, posts from this contact will only appear in channels and network" +" streams in circles, but not in the general network stream." msgstr "" #: src/Module/Contact/Profile.php:509 @@ -7050,7 +7062,7 @@ msgstr "Schakel negeerstatus" msgid "Toggle Collapsed status" msgstr "" -#: src/Module/Contact/Profile.php:543 src/Module/Contact/Revoke.php:106 +#: src/Module/Contact/Profile.php:543 src/Module/Contact/Revoke.php:89 msgid "Revoke Follow" msgstr "" @@ -7058,639 +7070,635 @@ msgstr "" msgid "Revoke the follow from this contact" msgstr "" -#: src/Module/Contact/Redir.php:135 src/Module/Contact/Redir.php:187 +#: src/Module/Contact/Redir.php:125 msgid "Bad Request." msgstr "Verkeerde aanvraag." -#: src/Module/Contact/Revoke.php:63 -msgid "Unknown contact." -msgstr "" - -#: src/Module/Contact/Revoke.php:77 +#: src/Module/Contact/Revoke.php:60 msgid "Contact is being deleted." msgstr "" -#: src/Module/Contact/Revoke.php:91 +#: src/Module/Contact/Revoke.php:74 msgid "Follow was successfully revoked." msgstr "" -#: src/Module/Contact/Revoke.php:107 +#: src/Module/Contact/Revoke.php:90 msgid "" "Do you really want to revoke this contact's follow? This cannot be undone " "and they will have to manually follow you back again." msgstr "" -#: src/Module/Contact/Suggestions.php:62 +#: src/Module/Contact/Suggestions.php:48 msgid "" "No suggestions available. If this is a new site, please try again in 24 " "hours." msgstr "Geen voorstellen beschikbaar. Als dit een nieuwe website is, kun je het over 24 uur nog eens proberen." -#: src/Module/Contact/Unfollow.php:98 src/Module/Contact/Unfollow.php:167 +#: src/Module/Contact/Unfollow.php:84 src/Module/Contact/Unfollow.php:153 msgid "You aren't following this contact." msgstr "Je volgt dit contact niet." -#: src/Module/Contact/Unfollow.php:103 +#: src/Module/Contact/Unfollow.php:89 msgid "Unfollowing is currently not supported by your network." msgstr "Ontvolgen is momenteel niet gesupporteerd door je netwerk." -#: src/Module/Contact/Unfollow.php:121 +#: src/Module/Contact/Unfollow.php:107 msgid "Disconnect/Unfollow" msgstr "Disconnecteer/stop met volgen" -#: src/Module/Contact/Unfollow.php:175 +#: src/Module/Contact/Unfollow.php:161 msgid "Contact was successfully unfollowed" msgstr "" -#: src/Module/Contact/Unfollow.php:178 +#: src/Module/Contact/Unfollow.php:164 msgid "Unable to unfollow this contact, please contact your administrator" msgstr "" -#: src/Module/Conversation/Channel.php:139 -#: src/Module/Conversation/Community.php:126 src/Module/Search/Index.php:152 -#: src/Module/Search/Index.php:194 +#: src/Module/Conversation/Channel.php:125 +#: src/Module/Conversation/Community.php:114 src/Module/Search/Index.php:138 +#: src/Module/Search/Index.php:180 msgid "No results." msgstr "Geen resultaten." -#: src/Module/Conversation/Channel.php:177 +#: src/Module/Conversation/Channel.php:163 msgid "Channel not available." msgstr "" -#: src/Module/Conversation/Community.php:92 +#: src/Module/Conversation/Community.php:80 msgid "" "This community stream shows all public posts received by this node. They may" " not reflect the opinions of this node’s users." msgstr "Deze groepsstroom toont alle publieke berichten die deze node ontvangen heeft. Ze kunnen mogelijks niet de mening van de gebruikers van deze node weerspiegelen." -#: src/Module/Conversation/Community.php:180 +#: src/Module/Conversation/Community.php:168 msgid "Community option not available." msgstr "Groepsoptie niet beschikbaar" -#: src/Module/Conversation/Community.php:196 +#: src/Module/Conversation/Community.php:184 msgid "Not available." msgstr "Niet beschikbaar" -#: src/Module/Conversation/Network.php:214 +#: src/Module/Conversation/Network.php:202 msgid "No such circle" msgstr "" -#: src/Module/Conversation/Network.php:218 +#: src/Module/Conversation/Network.php:206 #, php-format msgid "Circle: %s" msgstr "" -#: src/Module/Conversation/Network.php:237 +#: src/Module/Conversation/Network.php:226 #, php-format msgid "Error %d (%s) while fetching the timeline." msgstr "" -#: src/Module/Conversation/Network.php:314 +#: src/Module/Conversation/Network.php:304 msgid "Network feed not available." msgstr "" -#: src/Module/Conversation/Timeline.php:203 +#: src/Module/Conversation/Timeline.php:190 msgid "Include" msgstr "" -#: src/Module/Conversation/Timeline.php:204 +#: src/Module/Conversation/Timeline.php:191 msgid "Hide" msgstr "" -#: src/Module/Credits.php:44 +#: src/Module/Credits.php:30 msgid "Credits" msgstr "Credits" -#: src/Module/Credits.php:45 +#: src/Module/Credits.php:31 msgid "" "Friendica is a community project, that would not be possible without the " "help of many people. Here is a list of those who have contributed to the " "code or the translation of Friendica. Thank you all!" msgstr "Friendica is een gemeenschapsproject dat niet mogelijk zou zijn zonder de hulp van vele mensen. Hier is een lijst van alle mensen die aan de code of vertalingen van Friendica hebben meegewerkt. Allen van harte bedankt!" -#: src/Module/Debug/ActivityPubConversion.php:53 +#: src/Module/Debug/ActivityPubConversion.php:45 msgid "Formatted" msgstr "" -#: src/Module/Debug/ActivityPubConversion.php:65 +#: src/Module/Debug/ActivityPubConversion.php:57 msgid "Activity" msgstr "" -#: src/Module/Debug/ActivityPubConversion.php:117 +#: src/Module/Debug/ActivityPubConversion.php:109 msgid "Object data" msgstr "" -#: src/Module/Debug/ActivityPubConversion.php:124 +#: src/Module/Debug/ActivityPubConversion.php:116 msgid "Result Item" msgstr "" -#: src/Module/Debug/ActivityPubConversion.php:129 -#: src/Module/Debug/Babel.php:294 src/Module/Moderation/Item/Source.php:87 -#: src/Module/Security/TwoFactor/Verify.php:98 +#: src/Module/Debug/ActivityPubConversion.php:121 +#: src/Module/Debug/Babel.php:286 src/Module/Moderation/Item/Source.php:79 +#: src/Module/Security/TwoFactor/Verify.php:84 msgid "Error" msgid_plural "Errors" msgstr[0] "Fout" msgstr[1] "Fouten" -#: src/Module/Debug/ActivityPubConversion.php:138 +#: src/Module/Debug/ActivityPubConversion.php:130 msgid "Source activity" msgstr "" -#: src/Module/Debug/Babel.php:52 +#: src/Module/Debug/Babel.php:44 msgid "Source input" msgstr "Bron input" -#: src/Module/Debug/Babel.php:58 +#: src/Module/Debug/Babel.php:50 msgid "BBCode::toPlaintext" msgstr "BBCode::toPlaintext" -#: src/Module/Debug/Babel.php:64 +#: src/Module/Debug/Babel.php:56 msgid "BBCode::convert (raw HTML)" msgstr "BBCode::convert (raw HTML)" -#: src/Module/Debug/Babel.php:69 +#: src/Module/Debug/Babel.php:61 msgid "BBCode::convert (hex)" msgstr "" -#: src/Module/Debug/Babel.php:74 +#: src/Module/Debug/Babel.php:66 msgid "BBCode::convert" msgstr "BBCode::convert" -#: src/Module/Debug/Babel.php:80 +#: src/Module/Debug/Babel.php:72 msgid "BBCode::convert => HTML::toBBCode" msgstr "BBCode::convert => HTML::toBBCode" -#: src/Module/Debug/Babel.php:86 +#: src/Module/Debug/Babel.php:78 msgid "BBCode::toMarkdown" msgstr "BBCode::toMarkdown" -#: src/Module/Debug/Babel.php:92 +#: src/Module/Debug/Babel.php:84 msgid "BBCode::toMarkdown => Markdown::convert (raw HTML)" msgstr "" -#: src/Module/Debug/Babel.php:96 +#: src/Module/Debug/Babel.php:88 msgid "BBCode::toMarkdown => Markdown::convert" msgstr "BBCode::toMarkdown => Markdown::convert" -#: src/Module/Debug/Babel.php:102 +#: src/Module/Debug/Babel.php:94 msgid "BBCode::toMarkdown => Markdown::toBBCode" msgstr "BBCode::toMarkdown => Markdown::toBBCode" -#: src/Module/Debug/Babel.php:108 +#: src/Module/Debug/Babel.php:100 msgid "BBCode::toMarkdown => Markdown::convert => HTML::toBBCode" msgstr "BBCode::toMarkdown => Markdown::convert => HTML::toBBCode" -#: src/Module/Debug/Babel.php:116 +#: src/Module/Debug/Babel.php:108 msgid "Item Body" msgstr "" -#: src/Module/Debug/Babel.php:120 +#: src/Module/Debug/Babel.php:112 msgid "Item Tags" msgstr "" -#: src/Module/Debug/Babel.php:126 +#: src/Module/Debug/Babel.php:118 msgid "PageInfo::appendToBody" msgstr "" -#: src/Module/Debug/Babel.php:131 +#: src/Module/Debug/Babel.php:123 msgid "PageInfo::appendToBody => BBCode::convert (raw HTML)" msgstr "" -#: src/Module/Debug/Babel.php:135 +#: src/Module/Debug/Babel.php:127 msgid "PageInfo::appendToBody => BBCode::convert" msgstr "" -#: src/Module/Debug/Babel.php:142 +#: src/Module/Debug/Babel.php:134 msgid "Source input (Diaspora format)" msgstr "Bron ingave (Diaspora formaat):" -#: src/Module/Debug/Babel.php:151 +#: src/Module/Debug/Babel.php:143 msgid "Source input (Markdown)" msgstr "" -#: src/Module/Debug/Babel.php:157 +#: src/Module/Debug/Babel.php:149 msgid "Markdown::convert (raw HTML)" msgstr "Markdown::convert (Ruwe HTML)" -#: src/Module/Debug/Babel.php:162 +#: src/Module/Debug/Babel.php:154 msgid "Markdown::convert" msgstr "Markdown::convert" -#: src/Module/Debug/Babel.php:168 +#: src/Module/Debug/Babel.php:160 msgid "Markdown::toBBCode" msgstr "Markdown::toBBCode" -#: src/Module/Debug/Babel.php:175 +#: src/Module/Debug/Babel.php:167 msgid "Raw HTML input" msgstr "Onverwerkte HTML input" -#: src/Module/Debug/Babel.php:180 +#: src/Module/Debug/Babel.php:172 msgid "HTML Input" msgstr "HTML Input" -#: src/Module/Debug/Babel.php:187 +#: src/Module/Debug/Babel.php:179 msgid "HTML Purified (raw)" msgstr "" -#: src/Module/Debug/Babel.php:192 +#: src/Module/Debug/Babel.php:184 msgid "HTML Purified (hex)" msgstr "" -#: src/Module/Debug/Babel.php:197 +#: src/Module/Debug/Babel.php:189 msgid "HTML Purified" msgstr "" -#: src/Module/Debug/Babel.php:203 +#: src/Module/Debug/Babel.php:195 msgid "HTML::toBBCode" msgstr "HTML::toBBCode" -#: src/Module/Debug/Babel.php:209 +#: src/Module/Debug/Babel.php:201 msgid "HTML::toBBCode => BBCode::convert" msgstr "HTML::toBBCode => BBCode::convert" -#: src/Module/Debug/Babel.php:214 +#: src/Module/Debug/Babel.php:206 msgid "HTML::toBBCode => BBCode::convert (raw HTML)" msgstr "HTML::toBBCode => BBCode::convert (Ruwe HTML)" -#: src/Module/Debug/Babel.php:220 +#: src/Module/Debug/Babel.php:212 msgid "HTML::toBBCode => BBCode::toPlaintext" msgstr "" -#: src/Module/Debug/Babel.php:226 +#: src/Module/Debug/Babel.php:218 msgid "HTML::toMarkdown" msgstr "HTML::toMarkdown" -#: src/Module/Debug/Babel.php:232 +#: src/Module/Debug/Babel.php:224 msgid "HTML::toPlaintext" msgstr "HTML::toPlaintext" -#: src/Module/Debug/Babel.php:238 +#: src/Module/Debug/Babel.php:230 msgid "HTML::toPlaintext (compact)" msgstr "" -#: src/Module/Debug/Babel.php:256 +#: src/Module/Debug/Babel.php:248 msgid "Decoded post" msgstr "" -#: src/Module/Debug/Babel.php:277 +#: src/Module/Debug/Babel.php:269 msgid "Post array before expand entities" msgstr "" -#: src/Module/Debug/Babel.php:284 +#: src/Module/Debug/Babel.php:276 msgid "Post converted" msgstr "" -#: src/Module/Debug/Babel.php:289 +#: src/Module/Debug/Babel.php:281 msgid "Converted body" msgstr "" -#: src/Module/Debug/Babel.php:295 +#: src/Module/Debug/Babel.php:287 msgid "Twitter addon is absent from the addon/ folder." msgstr "" -#: src/Module/Debug/Babel.php:305 +#: src/Module/Debug/Babel.php:297 msgid "Babel Diagnostic" msgstr "" -#: src/Module/Debug/Babel.php:307 +#: src/Module/Debug/Babel.php:299 msgid "Source text" msgstr "Brontekst" -#: src/Module/Debug/Babel.php:308 +#: src/Module/Debug/Babel.php:300 msgid "BBCode" msgstr "BBCode" -#: src/Module/Debug/Babel.php:310 +#: src/Module/Debug/Babel.php:302 msgid "Markdown" msgstr "Markdown" -#: src/Module/Debug/Babel.php:311 +#: src/Module/Debug/Babel.php:303 msgid "HTML" msgstr "HTML" -#: src/Module/Debug/Babel.php:313 +#: src/Module/Debug/Babel.php:305 msgid "Twitter Source / Tweet URL (requires API key)" msgstr "" -#: src/Module/Debug/Feed.php:53 src/Module/Filer/SaveTag.php:47 -#: src/Module/Settings/Profile/Index.php:177 +#: src/Module/Debug/Feed.php:39 src/Module/Filer/SaveTag.php:33 +#: src/Module/Settings/Profile/Index.php:166 msgid "You must be logged in to use this module" msgstr "Je moet ingelogd zijn om deze module te gebruiken" -#: src/Module/Debug/Feed.php:78 +#: src/Module/Debug/Feed.php:64 msgid "Source URL" msgstr "Bron URL" -#: src/Module/Debug/Localtime.php:49 +#: src/Module/Debug/Localtime.php:35 msgid "Time Conversion" msgstr "Tijdsconversie" -#: src/Module/Debug/Localtime.php:50 +#: src/Module/Debug/Localtime.php:36 msgid "" "Friendica provides this service for sharing events with other networks and " "friends in unknown timezones." msgstr "Friendica biedt deze dienst aan om gebeurtenissen te delen met andere netwerken en vrienden in onbekende tijdzones." -#: src/Module/Debug/Localtime.php:51 +#: src/Module/Debug/Localtime.php:37 #, php-format msgid "UTC time: %s" msgstr "UTC tijd: %s" -#: src/Module/Debug/Localtime.php:54 +#: src/Module/Debug/Localtime.php:40 #, php-format msgid "Current timezone: %s" msgstr "Huidige Tijdzone: %s" -#: src/Module/Debug/Localtime.php:58 +#: src/Module/Debug/Localtime.php:44 #, php-format msgid "Converted localtime: %s" msgstr "Omgerekende lokale tijd: %s" -#: src/Module/Debug/Localtime.php:62 +#: src/Module/Debug/Localtime.php:48 msgid "Please select your timezone:" msgstr "Selecteer je tijdzone:" -#: src/Module/Debug/Probe.php:38 src/Module/Debug/WebFinger.php:37 +#: src/Module/Debug/Probe.php:24 src/Module/Debug/WebFinger.php:23 msgid "Only logged in users are permitted to perform a probing." msgstr "Alleen ingelogde gebruikers hebben toelating om aan probing te doen." -#: src/Module/Debug/Probe.php:52 +#: src/Module/Debug/Probe.php:38 msgid "Probe Diagnostic" msgstr "" -#: src/Module/Debug/Probe.php:53 +#: src/Module/Debug/Probe.php:39 msgid "Output" msgstr "" -#: src/Module/Debug/Probe.php:56 +#: src/Module/Debug/Probe.php:42 msgid "Lookup address" msgstr "Opzoekadres" -#: src/Module/Debug/WebFinger.php:50 +#: src/Module/Debug/WebFinger.php:36 msgid "Webfinger Diagnostic" msgstr "" -#: src/Module/Debug/WebFinger.php:52 +#: src/Module/Debug/WebFinger.php:38 msgid "Lookup address:" msgstr "" -#: src/Module/Directory.php:74 +#: src/Module/Directory.php:61 msgid "No entries (some entries may be hidden)." msgstr "Geen gegevens (sommige gegevens kunnen verborgen zijn)." -#: src/Module/Directory.php:90 +#: src/Module/Directory.php:77 msgid "Find on this site" msgstr "Op deze website zoeken" -#: src/Module/Directory.php:92 +#: src/Module/Directory.php:79 msgid "Results for:" msgstr "Resultaten voor:" -#: src/Module/Directory.php:94 +#: src/Module/Directory.php:81 msgid "Site Directory" msgstr "Websitegids" -#: src/Module/Filer/RemoveTag.php:105 +#: src/Module/Filer/RemoveTag.php:91 msgid "Item was not deleted" msgstr "" -#: src/Module/Filer/RemoveTag.php:115 +#: src/Module/Filer/RemoveTag.php:101 msgid "Item was not removed" msgstr "" -#: src/Module/Filer/SaveTag.php:73 +#: src/Module/Filer/SaveTag.php:59 msgid "- select -" msgstr "- Kies -" -#: src/Module/FriendSuggest.php:82 +#: src/Module/FriendSuggest.php:68 msgid "Suggested contact not found." msgstr "Voorgesteld contact werd niet gevonden" -#: src/Module/FriendSuggest.php:100 +#: src/Module/FriendSuggest.php:86 msgid "Friend suggestion sent." msgstr "Vriendschapsvoorstel verzonden." -#: src/Module/FriendSuggest.php:137 +#: src/Module/FriendSuggest.php:123 msgid "Suggest Friends" msgstr "Stel vrienden voor" -#: src/Module/FriendSuggest.php:140 +#: src/Module/FriendSuggest.php:126 #, php-format msgid "Suggest a friend for %s" msgstr "Stel een vriend voor aan %s" -#: src/Module/Friendica.php:81 +#: src/Module/Friendica.php:67 msgid "Installed addons/apps:" msgstr "Geïnstalleerde addons/applicaties:" -#: src/Module/Friendica.php:86 +#: src/Module/Friendica.php:72 msgid "No installed addons/apps" msgstr "Geen geïnstalleerde addons/applicaties" -#: src/Module/Friendica.php:91 +#: src/Module/Friendica.php:77 #, php-format msgid "Read about the Terms of Service of this node." msgstr "Lees de Gebruiksvoorwaarden van deze node na." -#: src/Module/Friendica.php:98 +#: src/Module/Friendica.php:84 msgid "On this server the following remote servers are blocked." msgstr "De volgende remote servers zijn geblokkeerd." -#: src/Module/Friendica.php:101 -#: src/Module/Moderation/Blocklist/Server/Index.php:87 -#: src/Module/Moderation/Blocklist/Server/Index.php:111 -#: src/Module/Settings/Channels.php:232 +#: src/Module/Friendica.php:87 +#: src/Module/Moderation/Blocklist/Server/Index.php:73 +#: src/Module/Moderation/Blocklist/Server/Index.php:97 +#: src/Module/Settings/Channels.php:218 msgid "Reason for the block" msgstr "Reden van de blokkering" -#: src/Module/Friendica.php:103 +#: src/Module/Friendica.php:89 msgid "Download this list in CSV format" msgstr "" -#: src/Module/Friendica.php:117 +#: src/Module/Friendica.php:103 #, php-format msgid "" "This is Friendica, version %s that is running at the web location %s. The " "database version is %s, the post update version is %s." msgstr "Dit is Friendica, versie %s en draait op op locatie %s. De databaseversie is %s, en de bericht update versie is %s." -#: src/Module/Friendica.php:122 +#: src/Module/Friendica.php:108 msgid "" "Please visit Friendi.ca to learn more " "about the Friendica project." msgstr "Ga naar Friendi.ca om meer te vernemen over het Friendica project." -#: src/Module/Friendica.php:123 +#: src/Module/Friendica.php:109 msgid "Bug reports and issues: please visit" msgstr "Bug rapporten en problemen: bezoek" -#: src/Module/Friendica.php:123 +#: src/Module/Friendica.php:109 msgid "the bugtracker at github" msgstr "de github bugtracker" -#: src/Module/Friendica.php:124 +#: src/Module/Friendica.php:110 msgid "Suggestions, praise, etc. - please email \"info\" at \"friendi - dot - ca" msgstr "Suggesties, appreciatie, enz. - aub stuur een email naar \"info\" at \"friendi - dot - ca" -#: src/Module/HCard.php:45 +#: src/Module/HCard.php:31 msgid "No profile" msgstr "Geen profiel" -#: src/Module/HTTPException/MethodNotAllowed.php:31 +#: src/Module/HTTPException/MethodNotAllowed.php:17 msgid "Method Not Allowed." msgstr "Methode niet toegestaan." -#: src/Module/Help.php:60 +#: src/Module/Help.php:46 msgid "Help:" msgstr "Help:" -#: src/Module/Home.php:63 +#: src/Module/Home.php:52 #, php-format msgid "Welcome to %s" msgstr "Welkom op %s" -#: src/Module/Install.php:189 +#: src/Module/Install.php:175 msgid "Friendica Communications Server - Setup" msgstr "Friendica Communicatie Server - Setup" -#: src/Module/Install.php:200 +#: src/Module/Install.php:186 msgid "System check" msgstr "Systeemcontrole" -#: src/Module/Install.php:202 src/Module/Install.php:247 -#: src/Module/Install.php:326 +#: src/Module/Install.php:188 src/Module/Install.php:233 +#: src/Module/Install.php:312 msgid "Requirement not satisfied" msgstr "" -#: src/Module/Install.php:203 +#: src/Module/Install.php:189 msgid "Optional requirement not satisfied" msgstr "" -#: src/Module/Install.php:204 +#: src/Module/Install.php:190 msgid "OK" msgstr "" -#: src/Module/Install.php:208 +#: src/Module/Install.php:194 msgid "Next" msgstr "Volgende" -#: src/Module/Install.php:209 +#: src/Module/Install.php:195 msgid "Check again" msgstr "Controleer opnieuw" -#: src/Module/Install.php:222 +#: src/Module/Install.php:208 msgid "Base settings" msgstr "Basisinstellingen" -#: src/Module/Install.php:224 +#: src/Module/Install.php:210 msgid "Base path to installation" msgstr "Basispad voor installatie" -#: src/Module/Install.php:226 +#: src/Module/Install.php:212 msgid "" "If the system cannot detect the correct path to your installation, enter the" " correct path here. This setting should only be set if you are using a " "restricted system and symbolic links to your webroot." msgstr "Als het systeem het correcte pad naar je installatie niet kan detecteren, geef hier dan het correcte pad in. Deze instelling zou alleen geconfigureerd moeten worden als je een systeem met restricties hebt en symbolische links naar je webroot." -#: src/Module/Install.php:229 +#: src/Module/Install.php:215 msgid "The Friendica system URL" msgstr "" -#: src/Module/Install.php:231 +#: src/Module/Install.php:217 msgid "" "Overwrite this field in case the system URL determination isn't right, " "otherwise leave it as is." msgstr "" -#: src/Module/Install.php:242 +#: src/Module/Install.php:228 msgid "Database connection" msgstr "Verbinding met database" -#: src/Module/Install.php:243 +#: src/Module/Install.php:229 msgid "" "In order to install Friendica we need to know how to connect to your " "database." msgstr "Om Friendica te kunnen installeren moet ik weten hoe ik jouw database kan bereiken." -#: src/Module/Install.php:244 +#: src/Module/Install.php:230 msgid "" "Please contact your hosting provider or site administrator if you have " "questions about these settings." msgstr "Neem contact op met jouw hostingprovider of websitebeheerder, wanneer je vragen hebt over deze instellingen. " -#: src/Module/Install.php:245 +#: src/Module/Install.php:231 msgid "" "The database you specify below should already exist. If it does not, please " "create it before continuing." msgstr "De database die je hier opgeeft zou al moeten bestaan. Maak anders de database aan voordat je verder gaat." -#: src/Module/Install.php:252 +#: src/Module/Install.php:238 msgid "Database Server Name" msgstr "Servernaam database" -#: src/Module/Install.php:257 +#: src/Module/Install.php:243 msgid "Database Login Name" msgstr "Gebruikersnaam database" -#: src/Module/Install.php:263 +#: src/Module/Install.php:249 msgid "Database Login Password" msgstr "Wachtwoord database" -#: src/Module/Install.php:265 +#: src/Module/Install.php:251 msgid "For security reasons the password must not be empty" msgstr "Om veiligheidsreden mag het wachtwoord niet leeg zijn" -#: src/Module/Install.php:268 +#: src/Module/Install.php:254 msgid "Database Name" msgstr "Naam database" -#: src/Module/Install.php:272 src/Module/Install.php:300 +#: src/Module/Install.php:258 src/Module/Install.php:286 msgid "Please select a default timezone for your website" msgstr "Selecteer een standaard tijdzone voor je website" -#: src/Module/Install.php:287 +#: src/Module/Install.php:273 msgid "Site settings" msgstr "Website-instellingen" -#: src/Module/Install.php:295 +#: src/Module/Install.php:281 msgid "Site administrator email address" msgstr "E-mailadres van de websitebeheerder" -#: src/Module/Install.php:297 +#: src/Module/Install.php:283 msgid "" "Your account email address must match this in order to use the web admin " "panel." msgstr "Het e-mailadres van je account moet hiermee overeenkomen om het administratiepaneel te kunnen gebruiken." -#: src/Module/Install.php:304 +#: src/Module/Install.php:290 msgid "System Language:" msgstr "Systeem taal:" -#: src/Module/Install.php:306 +#: src/Module/Install.php:292 msgid "" "Set the default language for your Friendica installation interface and to " "send emails." msgstr "Stel de standaard taal in voor je Friendica installatie interface en emails." -#: src/Module/Install.php:318 +#: src/Module/Install.php:304 msgid "Your Friendica site database has been installed." msgstr "De database van je Friendica-website is geïnstalleerd." -#: src/Module/Install.php:328 +#: src/Module/Install.php:314 msgid "Installation finished" msgstr "Installaitie beëindigd" -#: src/Module/Install.php:348 +#: src/Module/Install.php:334 msgid "

What next

" msgstr "

Wat nu

" -#: src/Module/Install.php:349 +#: src/Module/Install.php:335 msgid "" "IMPORTANT: You will need to [manually] setup a scheduled task for the " "worker." msgstr "BELANGRIJK: Je zal [manueel] een geplande taak moeten opzetten voor de worker." -#: src/Module/Install.php:352 +#: src/Module/Install.php:338 #, php-format msgid "" "Go to your new Friendica node registration page " @@ -7698,40 +7706,40 @@ msgid "" " administrator email. This will allow you to enter the site admin panel." msgstr "Go naar je nieuwe Friendica node registratie pagina en registeer als nieuwe gebruiker. Vergeet niet hetzelfde email adres te gebruiken als wat je opgegeven hebt als administrator email. Dit zal je toelaten om het site administratie paneel te openen." -#: src/Module/Invite.php:57 +#: src/Module/Invite.php:43 msgid "Total invitation limit exceeded." msgstr "Totale uitnodigingslimiet overschreden." -#: src/Module/Invite.php:82 +#: src/Module/Invite.php:68 #, php-format msgid "%s : Not a valid email address." msgstr "%s: Geen geldig e-mailadres." -#: src/Module/Invite.php:108 +#: src/Module/Invite.php:94 msgid "Please join us on Friendica" msgstr "Kom bij ons op Friendica" -#: src/Module/Invite.php:117 +#: src/Module/Invite.php:103 msgid "Invitation limit exceeded. Please contact your site administrator." msgstr "Uitnodigingslimiet overschreden. Neem contact op met de beheerder van je website." -#: src/Module/Invite.php:121 +#: src/Module/Invite.php:107 #, php-format msgid "%s : Message delivery failed." msgstr "%s : Aflevering van bericht mislukt." -#: src/Module/Invite.php:125 +#: src/Module/Invite.php:111 #, php-format msgid "%d message sent." msgid_plural "%d messages sent." msgstr[0] "%d bericht verzonden." msgstr[1] "%d berichten verzonden." -#: src/Module/Invite.php:143 +#: src/Module/Invite.php:129 msgid "You have no more invitations available" msgstr "Je kunt geen uitnodigingen meer sturen" -#: src/Module/Invite.php:150 +#: src/Module/Invite.php:136 #, php-format msgid "" "Visit %s for a list of public sites that you can join. Friendica members on " @@ -7739,14 +7747,14 @@ msgid "" " other social networks." msgstr "Bezoek %s voor een lijst van openbare sites waar je je kunt aansluiten. Friendica leden op andere sites kunnen allemaal met elkaar verbonden worden, en ook met leden van verschillende andere sociale netwerken." -#: src/Module/Invite.php:152 +#: src/Module/Invite.php:138 #, php-format msgid "" "To accept this invitation, please visit and register at %s or any other " "public Friendica website." msgstr "Om deze uitnodiging te accepteren kan je je op %s registreren of op een andere vrij toegankelijke Friendica-website." -#: src/Module/Invite.php:153 +#: src/Module/Invite.php:139 #, php-format msgid "" "Friendica sites all inter-connect to create a huge privacy-enhanced social " @@ -7755,337 +7763,337 @@ msgid "" "sites you can join." msgstr "Friendica servers zijn allemaal onderling verbonden om een reusachtig sociaal web te maken met verbeterde privacy, dat eigendom is van en gecontroleerd door zijn leden. Ze kunnen ook verbindingen maken met verschillende traditionele sociale netwerken. Bekijk %s voor een lijst van alternatieve Friendica servers waar je aan kunt sluiten." -#: src/Module/Invite.php:157 +#: src/Module/Invite.php:143 msgid "" "Our apologies. This system is not currently configured to connect with other" " public sites or invite members." msgstr "Onze verontschuldigingen. Dit systeem is momenteel niet ingesteld om verbinding te maken met andere openbare plaatsen of leden uit te nodigen." -#: src/Module/Invite.php:160 +#: src/Module/Invite.php:146 msgid "" "Friendica sites all inter-connect to create a huge privacy-enhanced social " "web that is owned and controlled by its members. They can also connect with " "many traditional social networks." msgstr "Friendica servers zijn allemaal onderling verbonden om een reusachtig sociaal web te maken met verbeterde privacy, dat eigendom is van en gecontroleerd door zijn leden. Ze kunnen ook verbindingen maken met verschillende traditionele sociale netwerken." -#: src/Module/Invite.php:159 +#: src/Module/Invite.php:145 #, php-format msgid "To accept this invitation, please visit and register at %s." msgstr "Om deze uitnodiging te accepteren, ga naar en registreer op %s." -#: src/Module/Invite.php:167 +#: src/Module/Invite.php:153 msgid "Send invitations" msgstr "Verstuur uitnodigingen" -#: src/Module/Invite.php:168 +#: src/Module/Invite.php:154 msgid "Enter email addresses, one per line:" msgstr "Vul e-mailadressen in, één per lijn:" -#: src/Module/Invite.php:172 +#: src/Module/Invite.php:158 msgid "" "You are cordially invited to join me and other close friends on Friendica - " "and help us to create a better social web." msgstr "Ik nodig je vriendelijk uit om bij mij en andere vrienden te komen op Friendica - en ons te helpen om een beter sociaal web te bouwen." -#: src/Module/Invite.php:174 +#: src/Module/Invite.php:160 msgid "You will need to supply this invitation code: $invite_code" msgstr "Je zult deze uitnodigingscode moeten invullen: $invite_code" -#: src/Module/Invite.php:174 +#: src/Module/Invite.php:160 msgid "" "Once you have registered, please connect with me via my profile page at:" msgstr "Eens je geregistreerd bent kun je contact leggen met mij via mijn profielpagina op:" -#: src/Module/Invite.php:176 +#: src/Module/Invite.php:162 msgid "" "For more information about the Friendica project and why we feel it is " "important, please visit http://friendi.ca" msgstr "Voor meer informatie over het Friendica project en waarom wij denken dat het belangrijk is kun je http://friendi.ca/ bezoeken" -#: src/Module/Item/Compose.php:94 +#: src/Module/Item/Compose.php:80 msgid "Please enter a post body." msgstr "Voer een berichttekst in." -#: src/Module/Item/Compose.php:105 +#: src/Module/Item/Compose.php:91 msgid "This feature is only available with the frio theme." msgstr "Deze functie is alleen beschikbaar met het frio-thema." -#: src/Module/Item/Compose.php:129 +#: src/Module/Item/Compose.php:115 msgid "Compose new personal note" msgstr "Stel een nieuwe persoonlijke notitie op" -#: src/Module/Item/Compose.php:138 +#: src/Module/Item/Compose.php:124 msgid "Compose new post" msgstr "Nieuw bericht opstellen" -#: src/Module/Item/Compose.php:194 +#: src/Module/Item/Compose.php:180 msgid "Visibility" msgstr "Zichtbaarheid" -#: src/Module/Item/Compose.php:210 +#: src/Module/Item/Compose.php:196 msgid "Clear the location" msgstr "Wis de locatie" -#: src/Module/Item/Compose.php:211 +#: src/Module/Item/Compose.php:197 msgid "Location services are unavailable on your device" msgstr "Locatiediensten zijn niet beschikbaar op uw apparaat" -#: src/Module/Item/Compose.php:212 +#: src/Module/Item/Compose.php:198 msgid "" "Location services are disabled. Please check the website's permissions on " "your device" msgstr "Locatiediensten zijn uitgeschakeld. Controleer de toestemmingen van de website op uw apparaat" -#: src/Module/Item/Compose.php:218 +#: src/Module/Item/Compose.php:204 msgid "" "You can make this page always open when you use the New Post button in the " "Theme Customization settings." msgstr "" -#: src/Module/Item/Feed.php:86 +#: src/Module/Item/Feed.php:72 msgid "The feed for this item is unavailable." msgstr "De tijdlijn voor dit item is niet beschikbaar" -#: src/Module/Item/Follow.php:51 +#: src/Module/Item/Follow.php:37 msgid "Unable to follow this item." msgstr "" -#: src/Module/Maintenance.php:48 src/Module/Maintenance.php:53 +#: src/Module/Maintenance.php:34 src/Module/Maintenance.php:39 msgid "System down for maintenance" msgstr "Systeem onbeschikbaar wegens onderhoud" -#: src/Module/Maintenance.php:54 +#: src/Module/Maintenance.php:40 msgid "" "This Friendica node is currently in maintenance mode, either automatically " "because it is self-updating or manually by the node administrator. This " "condition should be temporary, please come back in a few minutes." msgstr "" -#: src/Module/Manifest.php:40 +#: src/Module/Manifest.php:26 msgid "A Decentralized Social Network" msgstr "Een gedecentraliseerd sociaal netwerk" -#: src/Module/Media/Attachment/Browser.php:58 -#: src/Module/Media/Photo/Browser.php:59 +#: src/Module/Media/Attachment/Browser.php:44 +#: src/Module/Media/Photo/Browser.php:45 msgid "You need to be logged in to access this page." msgstr "" -#: src/Module/Media/Attachment/Browser.php:74 +#: src/Module/Media/Attachment/Browser.php:60 msgid "Files" msgstr "Bestanden" -#: src/Module/Media/Attachment/Browser.php:79 -#: src/Module/Media/Photo/Browser.php:90 -#: src/Module/Settings/Profile/Photo/Index.php:127 +#: src/Module/Media/Attachment/Browser.php:65 +#: src/Module/Media/Photo/Browser.php:76 +#: src/Module/Settings/Profile/Photo/Index.php:113 msgid "Upload" msgstr "Uploaden" -#: src/Module/Media/Attachment/Upload.php:97 +#: src/Module/Media/Attachment/Upload.php:83 msgid "Sorry, maybe your upload is bigger than the PHP configuration allows" msgstr "Sorry, je op te laden bestand is groter dan deze PHP configuratie toelaat" -#: src/Module/Media/Attachment/Upload.php:97 +#: src/Module/Media/Attachment/Upload.php:83 msgid "Or - did you try to upload an empty file?" msgstr "Of - probeerde je een lege file op te laden?" -#: src/Module/Media/Attachment/Upload.php:104 +#: src/Module/Media/Attachment/Upload.php:90 #, php-format msgid "File exceeds size limit of %s" msgstr "Bestand is groter dan de limiet ( %s )" -#: src/Module/Media/Attachment/Upload.php:114 +#: src/Module/Media/Attachment/Upload.php:100 msgid "File upload failed." msgstr "Uploaden van bestand mislukt." -#: src/Module/Media/Photo/Upload.php:150 src/Module/Media/Photo/Upload.php:151 -#: src/Module/Profile/Photos.php:215 -#: src/Module/Settings/Profile/Photo/Index.php:67 +#: src/Module/Media/Photo/Upload.php:136 src/Module/Media/Photo/Upload.php:137 +#: src/Module/Profile/Photos.php:201 +#: src/Module/Settings/Profile/Photo/Index.php:53 msgid "Unable to process image." msgstr "Niet in staat om de afbeelding te verwerken" -#: src/Module/Media/Photo/Upload.php:176 src/Module/Profile/Photos.php:235 -#: src/Module/Settings/Profile/Photo/Index.php:94 +#: src/Module/Media/Photo/Upload.php:162 src/Module/Profile/Photos.php:221 +#: src/Module/Settings/Profile/Photo/Index.php:80 msgid "Image upload failed." msgstr "Uploaden van afbeelding mislukt." -#: src/Module/Moderation/BaseUsers.php:72 +#: src/Module/Moderation/BaseUsers.php:59 msgid "List of all users" msgstr "" -#: src/Module/Moderation/BaseUsers.php:77 +#: src/Module/Moderation/BaseUsers.php:64 msgid "Active" msgstr "" -#: src/Module/Moderation/BaseUsers.php:80 +#: src/Module/Moderation/BaseUsers.php:67 msgid "List of active accounts" msgstr "" -#: src/Module/Moderation/BaseUsers.php:88 +#: src/Module/Moderation/BaseUsers.php:75 msgid "List of pending registrations" msgstr "" -#: src/Module/Moderation/BaseUsers.php:96 +#: src/Module/Moderation/BaseUsers.php:83 msgid "List of blocked users" msgstr "" -#: src/Module/Moderation/BaseUsers.php:101 +#: src/Module/Moderation/BaseUsers.php:88 msgid "Deleted" msgstr "" -#: src/Module/Moderation/BaseUsers.php:104 +#: src/Module/Moderation/BaseUsers.php:91 msgid "List of pending user deletions" msgstr "" -#: src/Module/Moderation/BaseUsers.php:119 src/Module/Settings/Account.php:482 +#: src/Module/Moderation/BaseUsers.php:108 src/Module/Settings/Account.php:473 msgid "Normal Account Page" msgstr "Normale accountpagina" -#: src/Module/Moderation/BaseUsers.php:120 src/Module/Settings/Account.php:489 +#: src/Module/Moderation/BaseUsers.php:109 src/Module/Settings/Account.php:480 msgid "Soapbox Page" msgstr "Zeepkist-pagina" -#: src/Module/Moderation/BaseUsers.php:121 src/Module/Settings/Account.php:496 +#: src/Module/Moderation/BaseUsers.php:110 src/Module/Settings/Account.php:487 msgid "Public Group" msgstr "" -#: src/Module/Moderation/BaseUsers.php:122 src/Module/Settings/Account.php:503 +#: src/Module/Moderation/BaseUsers.php:111 src/Module/Settings/Account.php:494 msgid "Public Group - Restricted" msgstr "" -#: src/Module/Moderation/BaseUsers.php:123 src/Module/Settings/Account.php:510 +#: src/Module/Moderation/BaseUsers.php:112 src/Module/Settings/Account.php:501 msgid "Automatic Friend Page" msgstr "Automatisch Vriendschapspagina" -#: src/Module/Moderation/BaseUsers.php:124 +#: src/Module/Moderation/BaseUsers.php:113 msgid "Private Group" msgstr "" -#: src/Module/Moderation/BaseUsers.php:127 -#: src/Module/Moderation/Summary.php:53 src/Module/Settings/Account.php:453 +#: src/Module/Moderation/BaseUsers.php:116 +#: src/Module/Moderation/Summary.php:39 src/Module/Settings/Account.php:444 msgid "Personal Page" msgstr "Persoonlijke pagina" -#: src/Module/Moderation/BaseUsers.php:128 -#: src/Module/Moderation/Summary.php:54 src/Module/Settings/Account.php:460 +#: src/Module/Moderation/BaseUsers.php:117 +#: src/Module/Moderation/Summary.php:40 src/Module/Settings/Account.php:451 msgid "Organisation Page" msgstr "Organisatie Pagina" -#: src/Module/Moderation/BaseUsers.php:129 -#: src/Module/Moderation/Summary.php:55 src/Module/Settings/Account.php:467 +#: src/Module/Moderation/BaseUsers.php:118 +#: src/Module/Moderation/Summary.php:41 src/Module/Settings/Account.php:458 msgid "News Page" msgstr "Nieuws pagina" -#: src/Module/Moderation/BaseUsers.php:130 -#: src/Module/Moderation/Summary.php:56 src/Module/Settings/Account.php:474 +#: src/Module/Moderation/BaseUsers.php:119 +#: src/Module/Moderation/Summary.php:42 src/Module/Settings/Account.php:465 msgid "Community Group" msgstr "" -#: src/Module/Moderation/Blocklist/Contact.php:70 +#: src/Module/Moderation/Blocklist/Contact.php:56 msgid "You can't block a local contact, please block the user instead" msgstr "" -#: src/Module/Moderation/Blocklist/Contact.php:89 +#: src/Module/Moderation/Blocklist/Contact.php:75 #, php-format msgid "%s contact unblocked" msgid_plural "%s contacts unblocked" msgstr[0] "%s contact is niet langer geblokkeerd" msgstr[1] "%s contacten zijn niet langer geblokkeerd" -#: src/Module/Moderation/Blocklist/Contact.php:111 +#: src/Module/Moderation/Blocklist/Contact.php:97 msgid "Remote Contact Blocklist" msgstr "Remote Contact Blokkeerlijst" -#: src/Module/Moderation/Blocklist/Contact.php:112 +#: src/Module/Moderation/Blocklist/Contact.php:98 msgid "" "This page allows you to prevent any message from a remote contact to reach " "your node." msgstr "De pagina laat je toe om te vermijden dat boodschappen van een remote contact je node bereiken." -#: src/Module/Moderation/Blocklist/Contact.php:113 +#: src/Module/Moderation/Blocklist/Contact.php:99 msgid "Block Remote Contact" msgstr "Blokkeer Remote Contact" -#: src/Module/Moderation/Blocklist/Contact.php:114 -#: src/Module/Moderation/Users/Active.php:135 -#: src/Module/Moderation/Users/Blocked.php:135 -#: src/Module/Moderation/Users/Index.php:149 -#: src/Module/Moderation/Users/Pending.php:98 +#: src/Module/Moderation/Blocklist/Contact.php:100 +#: src/Module/Moderation/Users/Active.php:121 +#: src/Module/Moderation/Users/Blocked.php:121 +#: src/Module/Moderation/Users/Index.php:135 +#: src/Module/Moderation/Users/Pending.php:84 msgid "select all" msgstr "Alles selecteren" -#: src/Module/Moderation/Blocklist/Contact.php:115 +#: src/Module/Moderation/Blocklist/Contact.php:101 msgid "select none" msgstr "selecteer geen" -#: src/Module/Moderation/Blocklist/Contact.php:118 +#: src/Module/Moderation/Blocklist/Contact.php:104 msgid "No remote contact is blocked from this node." msgstr "Geen enkel remote contact is geblokkeerd van deze node." -#: src/Module/Moderation/Blocklist/Contact.php:120 +#: src/Module/Moderation/Blocklist/Contact.php:106 msgid "Blocked Remote Contacts" msgstr "Geblokkeerde Remote Contacts" -#: src/Module/Moderation/Blocklist/Contact.php:121 +#: src/Module/Moderation/Blocklist/Contact.php:107 msgid "Block New Remote Contact" msgstr "Blokkeer Nieuwe Remote Contacten" -#: src/Module/Moderation/Blocklist/Contact.php:122 -#: src/Module/Moderation/Reports.php:110 +#: src/Module/Moderation/Blocklist/Contact.php:108 +#: src/Module/Moderation/Reports.php:102 msgid "Photo" msgstr "Foto" -#: src/Module/Moderation/Blocklist/Contact.php:122 +#: src/Module/Moderation/Blocklist/Contact.php:108 msgid "Reason" msgstr "Reden" -#: src/Module/Moderation/Blocklist/Contact.php:128 +#: src/Module/Moderation/Blocklist/Contact.php:114 #, php-format msgid "%s total blocked contact" msgid_plural "%s total blocked contacts" msgstr[0] "%s geblokkeerde contacten in totaal" msgstr[1] "%s geblokkeerde contacten in totaal" -#: src/Module/Moderation/Blocklist/Contact.php:131 +#: src/Module/Moderation/Blocklist/Contact.php:117 msgid "URL of the remote contact to block." msgstr "URL van de remote contact die je wil blokkeren." -#: src/Module/Moderation/Blocklist/Contact.php:132 +#: src/Module/Moderation/Blocklist/Contact.php:118 msgid "Also purge contact" msgstr "" -#: src/Module/Moderation/Blocklist/Contact.php:132 +#: src/Module/Moderation/Blocklist/Contact.php:118 msgid "" "Removes all content related to this contact from the node. Keeps the contact" " record. This action cannot be undone." msgstr "" -#: src/Module/Moderation/Blocklist/Contact.php:133 -#: src/Module/Moderation/Blocklist/Server/Import.php:124 +#: src/Module/Moderation/Blocklist/Contact.php:119 +#: src/Module/Moderation/Blocklist/Server/Import.php:108 msgid "Block Reason" msgstr "Reden voor blokkeren" -#: src/Module/Moderation/Blocklist/Server/Add.php:80 +#: src/Module/Moderation/Blocklist/Server/Add.php:66 msgid "Server domain pattern added to the blocklist." msgstr "" -#: src/Module/Moderation/Blocklist/Server/Add.php:88 +#: src/Module/Moderation/Blocklist/Server/Add.php:74 #, php-format msgid "%s server scheduled to be purged." msgid_plural "%s servers scheduled to be purged." msgstr[0] "" msgstr[1] "" -#: src/Module/Moderation/Blocklist/Server/Add.php:120 -#: src/Module/Moderation/Blocklist/Server/Import.php:117 +#: src/Module/Moderation/Blocklist/Server/Add.php:106 +#: src/Module/Moderation/Blocklist/Server/Import.php:101 msgid "← Return to the list" msgstr "" -#: src/Module/Moderation/Blocklist/Server/Add.php:122 +#: src/Module/Moderation/Blocklist/Server/Add.php:108 msgid "Block A New Server Domain Pattern" msgstr "" -#: src/Module/Moderation/Blocklist/Server/Add.php:123 -#: src/Module/Moderation/Blocklist/Server/Index.php:99 +#: src/Module/Moderation/Blocklist/Server/Add.php:109 +#: src/Module/Moderation/Blocklist/Server/Index.php:85 msgid "" "

The server domain pattern syntax is case-insensitive shell wildcard, comprising the following special characters:

\n" "
    \n" @@ -8094,57 +8102,57 @@ msgid "" "
" msgstr "" -#: src/Module/Moderation/Blocklist/Server/Add.php:128 -#: src/Module/Moderation/Blocklist/Server/Index.php:107 +#: src/Module/Moderation/Blocklist/Server/Add.php:114 +#: src/Module/Moderation/Blocklist/Server/Index.php:93 msgid "Check pattern" msgstr "" -#: src/Module/Moderation/Blocklist/Server/Add.php:129 +#: src/Module/Moderation/Blocklist/Server/Add.php:115 msgid "Matching known servers" msgstr "" -#: src/Module/Moderation/Blocklist/Server/Add.php:130 -#: src/Module/Settings/Server/Action.php:76 -#: src/Module/Settings/Server/Index.php:106 +#: src/Module/Moderation/Blocklist/Server/Add.php:116 +#: src/Module/Settings/Server/Action.php:62 +#: src/Module/Settings/Server/Index.php:92 msgid "Server Name" msgstr "" -#: src/Module/Moderation/Blocklist/Server/Add.php:131 +#: src/Module/Moderation/Blocklist/Server/Add.php:117 msgid "Server Domain" msgstr "" -#: src/Module/Moderation/Blocklist/Server/Add.php:132 +#: src/Module/Moderation/Blocklist/Server/Add.php:118 msgid "Known Contacts" msgstr "" -#: src/Module/Moderation/Blocklist/Server/Add.php:133 +#: src/Module/Moderation/Blocklist/Server/Add.php:119 #, php-format msgid "%d known server" msgid_plural "%d known servers" msgstr[0] "" msgstr[1] "" -#: src/Module/Moderation/Blocklist/Server/Add.php:134 +#: src/Module/Moderation/Blocklist/Server/Add.php:120 msgid "Add pattern to the blocklist" msgstr "" -#: src/Module/Moderation/Blocklist/Server/Add.php:136 -#: src/Module/Moderation/Blocklist/Server/Index.php:116 +#: src/Module/Moderation/Blocklist/Server/Add.php:122 +#: src/Module/Moderation/Blocklist/Server/Index.php:102 msgid "Server Domain Pattern" msgstr "" -#: src/Module/Moderation/Blocklist/Server/Add.php:136 -#: src/Module/Moderation/Blocklist/Server/Index.php:116 +#: src/Module/Moderation/Blocklist/Server/Add.php:122 +#: src/Module/Moderation/Blocklist/Server/Index.php:102 msgid "" "The domain pattern of the new server to add to the blocklist. Do not include" " the protocol." msgstr "" -#: src/Module/Moderation/Blocklist/Server/Add.php:137 +#: src/Module/Moderation/Blocklist/Server/Add.php:123 msgid "Purge server" msgstr "" -#: src/Module/Moderation/Blocklist/Server/Add.php:137 +#: src/Module/Moderation/Blocklist/Server/Add.php:123 msgid "" "Also purges all the locally stored content authored by the known contacts " "registered on that server. Keeps the contacts and the server records. This " @@ -8156,301 +8164,301 @@ msgid_plural "" msgstr[0] "" msgstr[1] "" -#: src/Module/Moderation/Blocklist/Server/Add.php:138 +#: src/Module/Moderation/Blocklist/Server/Add.php:124 msgid "Block reason" msgstr "Reden voor blokkering" -#: src/Module/Moderation/Blocklist/Server/Add.php:138 +#: src/Module/Moderation/Blocklist/Server/Add.php:124 msgid "" "The reason why you blocked this server domain pattern. This reason will be " "shown publicly in the server information page." msgstr "" -#: src/Module/Moderation/Blocklist/Server/Import.php:74 -#: src/Module/Moderation/Blocklist/Server/Import.php:83 +#: src/Module/Moderation/Blocklist/Server/Import.php:60 +#: src/Module/Moderation/Blocklist/Server/Import.php:67 msgid "Error importing pattern file" msgstr "" -#: src/Module/Moderation/Blocklist/Server/Import.php:89 +#: src/Module/Moderation/Blocklist/Server/Import.php:74 msgid "Local blocklist replaced with the provided file." msgstr "" -#: src/Module/Moderation/Blocklist/Server/Import.php:93 +#: src/Module/Moderation/Blocklist/Server/Import.php:78 #, php-format msgid "%d pattern was added to the local blocklist." msgid_plural "%d patterns were added to the local blocklist." msgstr[0] "" msgstr[1] "" -#: src/Module/Moderation/Blocklist/Server/Import.php:95 +#: src/Module/Moderation/Blocklist/Server/Import.php:80 msgid "No pattern was added to the local blocklist." msgstr "" -#: src/Module/Moderation/Blocklist/Server/Import.php:119 +#: src/Module/Moderation/Blocklist/Server/Import.php:103 msgid "Import a Server Domain Pattern Blocklist" msgstr "" -#: src/Module/Moderation/Blocklist/Server/Import.php:120 +#: src/Module/Moderation/Blocklist/Server/Import.php:104 msgid "" "

This file can be downloaded from the /friendica path of any " "Friendica server.

" msgstr "" -#: src/Module/Moderation/Blocklist/Server/Import.php:121 -#: src/Module/Moderation/Blocklist/Server/Index.php:106 +#: src/Module/Moderation/Blocklist/Server/Import.php:105 +#: src/Module/Moderation/Blocklist/Server/Index.php:92 msgid "Upload file" msgstr "" -#: src/Module/Moderation/Blocklist/Server/Import.php:122 +#: src/Module/Moderation/Blocklist/Server/Import.php:106 msgid "Patterns to import" msgstr "" -#: src/Module/Moderation/Blocklist/Server/Import.php:123 +#: src/Module/Moderation/Blocklist/Server/Import.php:107 msgid "Domain Pattern" msgstr "" -#: src/Module/Moderation/Blocklist/Server/Import.php:125 +#: src/Module/Moderation/Blocklist/Server/Import.php:109 msgid "Import Mode" msgstr "" -#: src/Module/Moderation/Blocklist/Server/Import.php:126 +#: src/Module/Moderation/Blocklist/Server/Import.php:110 msgid "Import Patterns" msgstr "" -#: src/Module/Moderation/Blocklist/Server/Import.php:127 +#: src/Module/Moderation/Blocklist/Server/Import.php:111 #, php-format msgid "%d total pattern" msgid_plural "%d total patterns" msgstr[0] "" msgstr[1] "" -#: src/Module/Moderation/Blocklist/Server/Import.php:129 -#: src/Module/Moderation/Blocklist/Server/Index.php:115 +#: src/Module/Moderation/Blocklist/Server/Import.php:113 +#: src/Module/Moderation/Blocklist/Server/Index.php:101 msgid "Server domain pattern blocklist CSV file" msgstr "" -#: src/Module/Moderation/Blocklist/Server/Import.php:130 +#: src/Module/Moderation/Blocklist/Server/Import.php:114 msgid "Append" msgstr "" -#: src/Module/Moderation/Blocklist/Server/Import.php:130 +#: src/Module/Moderation/Blocklist/Server/Import.php:114 msgid "" "Imports patterns from the file that weren't already existing in the current " "blocklist." msgstr "" -#: src/Module/Moderation/Blocklist/Server/Import.php:131 +#: src/Module/Moderation/Blocklist/Server/Import.php:115 msgid "Replace" msgstr "" -#: src/Module/Moderation/Blocklist/Server/Import.php:131 +#: src/Module/Moderation/Blocklist/Server/Import.php:115 msgid "Replaces the current blocklist by the imported patterns." msgstr "" -#: src/Module/Moderation/Blocklist/Server/Index.php:86 -#: src/Module/Moderation/Blocklist/Server/Index.php:110 -#: src/Module/Settings/Channels.php:231 +#: src/Module/Moderation/Blocklist/Server/Index.php:72 +#: src/Module/Moderation/Blocklist/Server/Index.php:96 +#: src/Module/Settings/Channels.php:217 msgid "Blocked server domain pattern" msgstr "" -#: src/Module/Moderation/Blocklist/Server/Index.php:88 +#: src/Module/Moderation/Blocklist/Server/Index.php:74 msgid "Delete server domain pattern" msgstr "" -#: src/Module/Moderation/Blocklist/Server/Index.php:88 +#: src/Module/Moderation/Blocklist/Server/Index.php:74 msgid "Check to delete this entry from the blocklist" msgstr "Vink aan om dit item van de blokkeerlijst te verwijderen" -#: src/Module/Moderation/Blocklist/Server/Index.php:96 +#: src/Module/Moderation/Blocklist/Server/Index.php:82 msgid "Server Domain Pattern Blocklist" msgstr "" -#: src/Module/Moderation/Blocklist/Server/Index.php:97 +#: src/Module/Moderation/Blocklist/Server/Index.php:83 msgid "" "This page can be used to define a blocklist of server domain patterns from " "the federated network that are not allowed to interact with your node. For " "each domain pattern you should also provide the reason why you block it." msgstr "" -#: src/Module/Moderation/Blocklist/Server/Index.php:98 +#: src/Module/Moderation/Blocklist/Server/Index.php:84 msgid "" "The list of blocked server domain patterns will be made publically available" " on the /friendica page so that your users and " "people investigating communication problems can find the reason easily." msgstr "" -#: src/Module/Moderation/Blocklist/Server/Index.php:104 +#: src/Module/Moderation/Blocklist/Server/Index.php:90 msgid "Import server domain pattern blocklist" msgstr "" -#: src/Module/Moderation/Blocklist/Server/Index.php:105 +#: src/Module/Moderation/Blocklist/Server/Index.php:91 msgid "Add new entry to the blocklist" msgstr "" -#: src/Module/Moderation/Blocklist/Server/Index.php:108 +#: src/Module/Moderation/Blocklist/Server/Index.php:94 msgid "Save changes to the blocklist" msgstr "Sla veranderingen in de blokkeerlijst op" -#: src/Module/Moderation/Blocklist/Server/Index.php:109 +#: src/Module/Moderation/Blocklist/Server/Index.php:95 msgid "Current Entries in the Blocklist" msgstr "Huidige Items in de blokkeerlijst" -#: src/Module/Moderation/Blocklist/Server/Index.php:112 +#: src/Module/Moderation/Blocklist/Server/Index.php:98 msgid "Delete entry from the blocklist" msgstr "" -#: src/Module/Moderation/Blocklist/Server/Index.php:113 +#: src/Module/Moderation/Blocklist/Server/Index.php:99 msgid "Delete entry from the blocklist?" msgstr "" -#: src/Module/Moderation/Item/Delete.php:50 +#: src/Module/Moderation/Item/Delete.php:36 msgid "Item marked for deletion." msgstr "Item gemarkeerd om te verwijderen." -#: src/Module/Moderation/Item/Delete.php:63 +#: src/Module/Moderation/Item/Delete.php:49 msgid "Delete this Item" msgstr "Verwijder dit Item" -#: src/Module/Moderation/Item/Delete.php:64 +#: src/Module/Moderation/Item/Delete.php:50 msgid "" "On this page you can delete an item from your node. If the item is a top " "level posting, the entire thread will be deleted." msgstr "Op deze pagina kan je een item van je node verwijderen. Als het item een bericht is op het eerste niveau, dan zal de hele gesprek verwijderd worden." -#: src/Module/Moderation/Item/Delete.php:65 +#: src/Module/Moderation/Item/Delete.php:51 msgid "" "You need to know the GUID of the item. You can find it e.g. by looking at " "the display URL. The last part of http://example.com/display/123456 is the " "GUID, here 123456." msgstr "Je moet de GUID van het item kennen. Je kan het terugvinden bvb. door te kijken naar de getoonde URL. Het laatste deel van http://example.com/display/123456 is de GUID, hier 123456." -#: src/Module/Moderation/Item/Delete.php:67 +#: src/Module/Moderation/Item/Delete.php:53 msgid "GUID" msgstr "GUID" -#: src/Module/Moderation/Item/Delete.php:67 +#: src/Module/Moderation/Item/Delete.php:53 msgid "The GUID of the item you want to delete." msgstr "De GUID van het item dat je wil verwijderen." -#: src/Module/Moderation/Item/Source.php:77 +#: src/Module/Moderation/Item/Source.php:69 msgid "Item Id" msgstr "" -#: src/Module/Moderation/Item/Source.php:78 +#: src/Module/Moderation/Item/Source.php:70 msgid "Item URI" msgstr "" -#: src/Module/Moderation/Item/Source.php:80 +#: src/Module/Moderation/Item/Source.php:72 msgid "Terms" msgstr "" -#: src/Module/Moderation/Item/Source.php:81 +#: src/Module/Moderation/Item/Source.php:73 msgid "Tag" msgstr "" -#: src/Module/Moderation/Item/Source.php:82 -#: src/Module/Moderation/Users/Active.php:126 -#: src/Module/Moderation/Users/Blocked.php:126 -#: src/Module/Moderation/Users/Index.php:140 +#: src/Module/Moderation/Item/Source.php:74 +#: src/Module/Moderation/Users/Active.php:112 +#: src/Module/Moderation/Users/Blocked.php:112 +#: src/Module/Moderation/Users/Index.php:126 msgid "Type" msgstr "Type" -#: src/Module/Moderation/Item/Source.php:83 +#: src/Module/Moderation/Item/Source.php:75 msgid "Term" msgstr "" -#: src/Module/Moderation/Item/Source.php:84 +#: src/Module/Moderation/Item/Source.php:76 msgid "URL" msgstr "" -#: src/Module/Moderation/Item/Source.php:86 +#: src/Module/Moderation/Item/Source.php:78 msgid "Implicit Mention" msgstr "" -#: src/Module/Moderation/Item/Source.php:88 +#: src/Module/Moderation/Item/Source.php:80 msgid "Item not found" msgstr "Item niet gevonden" -#: src/Module/Moderation/Item/Source.php:89 +#: src/Module/Moderation/Item/Source.php:81 msgid "No source recorded" msgstr "" -#: src/Module/Moderation/Item/Source.php:90 +#: src/Module/Moderation/Item/Source.php:82 msgid "" "Please make sure the debug.store_source config key is set in " "config/local.config.php for future items to have sources." msgstr "" -#: src/Module/Moderation/Item/Source.php:92 +#: src/Module/Moderation/Item/Source.php:84 msgid "Item Guid" msgstr "Item identificatie" -#: src/Module/Moderation/Report/Create.php:95 +#: src/Module/Moderation/Report/Create.php:81 msgid "Contact not found or their server is already blocked on this node." msgstr "" -#: src/Module/Moderation/Report/Create.php:136 +#: src/Module/Moderation/Report/Create.php:122 msgid "Please login to access this page." msgstr "" -#: src/Module/Moderation/Report/Create.php:165 -#: src/Module/Moderation/Report/Create.php:180 -#: src/Module/Moderation/Report/Create.php:208 -#: src/Module/Moderation/Report/Create.php:260 -#: src/Module/Moderation/Report/Create.php:279 +#: src/Module/Moderation/Report/Create.php:151 +#: src/Module/Moderation/Report/Create.php:166 +#: src/Module/Moderation/Report/Create.php:194 +#: src/Module/Moderation/Report/Create.php:246 +#: src/Module/Moderation/Report/Create.php:265 msgid "Create Moderation Report" msgstr "" -#: src/Module/Moderation/Report/Create.php:166 +#: src/Module/Moderation/Report/Create.php:152 msgid "Pick Contact" msgstr "" -#: src/Module/Moderation/Report/Create.php:167 +#: src/Module/Moderation/Report/Create.php:153 msgid "" "Please enter below the contact address or profile URL you would like to " "create a moderation report about." msgstr "" -#: src/Module/Moderation/Report/Create.php:171 +#: src/Module/Moderation/Report/Create.php:157 msgid "Contact address/URL" msgstr "" -#: src/Module/Moderation/Report/Create.php:181 +#: src/Module/Moderation/Report/Create.php:167 msgid "Pick Category" msgstr "" -#: src/Module/Moderation/Report/Create.php:182 +#: src/Module/Moderation/Report/Create.php:168 msgid "Please pick below the category of your report." msgstr "" -#: src/Module/Moderation/Report/Create.php:186 -#: src/Module/Moderation/Report/Create.php:311 +#: src/Module/Moderation/Report/Create.php:172 +#: src/Module/Moderation/Report/Create.php:297 msgid "Spam" msgstr "" -#: src/Module/Moderation/Report/Create.php:186 +#: src/Module/Moderation/Report/Create.php:172 msgid "" "This contact is publishing many repeated/overly long posts/replies or " "advertising their product/websites in otherwise irrelevant conversations." msgstr "" -#: src/Module/Moderation/Report/Create.php:187 -#: src/Module/Moderation/Report/Create.php:312 +#: src/Module/Moderation/Report/Create.php:173 +#: src/Module/Moderation/Report/Create.php:298 msgid "Illegal Content" msgstr "" -#: src/Module/Moderation/Report/Create.php:187 +#: src/Module/Moderation/Report/Create.php:173 msgid "" "This contact is publishing content that is considered illegal in this node's" " hosting juridiction." msgstr "" -#: src/Module/Moderation/Report/Create.php:188 -#: src/Module/Moderation/Report/Create.php:313 +#: src/Module/Moderation/Report/Create.php:174 +#: src/Module/Moderation/Report/Create.php:299 msgid "Community Safety" msgstr "" -#: src/Module/Moderation/Report/Create.php:188 +#: src/Module/Moderation/Report/Create.php:174 msgid "" "This contact aggravated you or other people, by being provocative or " "insensitive, intentionally or not. This includes disclosing people's private" @@ -8458,12 +8466,12 @@ msgid "" "replies." msgstr "" -#: src/Module/Moderation/Report/Create.php:189 -#: src/Module/Moderation/Report/Create.php:314 +#: src/Module/Moderation/Report/Create.php:175 +#: src/Module/Moderation/Report/Create.php:300 msgid "Unwanted Content/Behavior" msgstr "" -#: src/Module/Moderation/Report/Create.php:189 +#: src/Module/Moderation/Report/Create.php:175 msgid "" "This contact has repeatedly published content irrelevant to the node's theme" " or is openly criticizing the node's administration/moderation without " @@ -8471,89 +8479,89 @@ msgid "" "nitpicking on a sensitive topic." msgstr "" -#: src/Module/Moderation/Report/Create.php:190 -#: src/Module/Moderation/Report/Create.php:315 +#: src/Module/Moderation/Report/Create.php:176 +#: src/Module/Moderation/Report/Create.php:301 msgid "Rules Violation" msgstr "" -#: src/Module/Moderation/Report/Create.php:190 +#: src/Module/Moderation/Report/Create.php:176 msgid "" "This contact violated one or more rules of this node. You will be able to " "pick which one(s) in the next step." msgstr "" -#: src/Module/Moderation/Report/Create.php:191 +#: src/Module/Moderation/Report/Create.php:177 msgid "" "Please elaborate below why you submitted this report. The more details you " "provide, the better your report can be handled." msgstr "" -#: src/Module/Moderation/Report/Create.php:193 +#: src/Module/Moderation/Report/Create.php:179 msgid "Additional Information" msgstr "" -#: src/Module/Moderation/Report/Create.php:193 +#: src/Module/Moderation/Report/Create.php:179 msgid "" "Please provide any additional information relevant to this particular " "report. You will be able to attach posts by this contact in the next step, " "but any context is welcome." msgstr "" -#: src/Module/Moderation/Report/Create.php:209 +#: src/Module/Moderation/Report/Create.php:195 msgid "Pick Rules" msgstr "" -#: src/Module/Moderation/Report/Create.php:210 +#: src/Module/Moderation/Report/Create.php:196 msgid "Please pick below the node rules you believe this contact violated." msgstr "" -#: src/Module/Moderation/Report/Create.php:261 +#: src/Module/Moderation/Report/Create.php:247 msgid "Pick Posts" msgstr "" -#: src/Module/Moderation/Report/Create.php:262 +#: src/Module/Moderation/Report/Create.php:248 msgid "Please optionally pick posts to attach to your report." msgstr "" -#: src/Module/Moderation/Report/Create.php:281 +#: src/Module/Moderation/Report/Create.php:267 msgid "Submit Report" msgstr "" -#: src/Module/Moderation/Report/Create.php:282 +#: src/Module/Moderation/Report/Create.php:268 msgid "Further Action" msgstr "" -#: src/Module/Moderation/Report/Create.php:283 +#: src/Module/Moderation/Report/Create.php:269 msgid "" "You can also perform one of the following action on the contact you " "reported:" msgstr "" -#: src/Module/Moderation/Report/Create.php:291 +#: src/Module/Moderation/Report/Create.php:277 msgid "Nothing" msgstr "" -#: src/Module/Moderation/Report/Create.php:292 +#: src/Module/Moderation/Report/Create.php:278 msgid "Collapse contact" msgstr "" -#: src/Module/Moderation/Report/Create.php:292 +#: src/Module/Moderation/Report/Create.php:278 msgid "" "Their posts and replies will keep appearing in your Network page but their " "content will be collapsed by default." msgstr "" -#: src/Module/Moderation/Report/Create.php:293 +#: src/Module/Moderation/Report/Create.php:279 msgid "" "Their posts won't appear in your Network page anymore, but their replies can" " appear in forum threads. They still can follow you." msgstr "" -#: src/Module/Moderation/Report/Create.php:294 +#: src/Module/Moderation/Report/Create.php:280 msgid "Block contact" msgstr "" -#: src/Module/Moderation/Report/Create.php:294 +#: src/Module/Moderation/Report/Create.php:280 msgid "" "Their posts won't appear in your Network page anymore, but their replies can" " appear in forum threads, with their content collapsed by default. They " @@ -8561,708 +8569,694 @@ msgid "" "means." msgstr "" -#: src/Module/Moderation/Report/Create.php:297 +#: src/Module/Moderation/Report/Create.php:283 msgid "Forward report" msgstr "" -#: src/Module/Moderation/Report/Create.php:297 +#: src/Module/Moderation/Report/Create.php:283 msgid "Would you ike to forward this report to the remote server?" msgstr "" -#: src/Module/Moderation/Report/Create.php:330 +#: src/Module/Moderation/Report/Create.php:316 msgid "1. Pick a contact" msgstr "" -#: src/Module/Moderation/Report/Create.php:331 +#: src/Module/Moderation/Report/Create.php:317 msgid "2. Pick a category" msgstr "" -#: src/Module/Moderation/Report/Create.php:332 +#: src/Module/Moderation/Report/Create.php:318 msgid "2a. Pick rules" msgstr "" -#: src/Module/Moderation/Report/Create.php:333 +#: src/Module/Moderation/Report/Create.php:319 msgid "2b. Add comment" msgstr "" -#: src/Module/Moderation/Report/Create.php:334 +#: src/Module/Moderation/Report/Create.php:320 msgid "3. Pick posts" msgstr "" -#: src/Module/Moderation/Reports.php:105 +#: src/Module/Moderation/Reports.php:97 msgid "List of reports" msgstr "" -#: src/Module/Moderation/Reports.php:106 +#: src/Module/Moderation/Reports.php:98 msgid "This page display reports created by our or remote users." msgstr "" -#: src/Module/Moderation/Reports.php:107 +#: src/Module/Moderation/Reports.php:99 msgid "No report exists at this node." msgstr "" -#: src/Module/Moderation/Reports.php:110 +#: src/Module/Moderation/Reports.php:102 msgid "Category" msgstr "" -#: src/Module/Moderation/Reports.php:114 +#: src/Module/Moderation/Reports.php:106 #, php-format msgid "%s total report" msgid_plural "%s total reports" msgstr[0] "" msgstr[1] "" -#: src/Module/Moderation/Reports.php:117 +#: src/Module/Moderation/Reports.php:109 msgid "URL of the reported contact." msgstr "" -#: src/Module/Moderation/Summary.php:57 src/Module/Settings/Account.php:431 +#: src/Module/Moderation/Summary.php:43 src/Module/Settings/Account.php:422 msgid "Channel Relay" msgstr "" -#: src/Module/Moderation/Summary.php:77 +#: src/Module/Moderation/Summary.php:63 msgid "Registered users" msgstr "Geregistreerde gebruikers" -#: src/Module/Moderation/Summary.php:79 +#: src/Module/Moderation/Summary.php:65 msgid "Pending registrations" msgstr "Registraties die in de wacht staan" -#: src/Module/Moderation/Users/Active.php:43 -#: src/Module/Moderation/Users/Index.php:43 +#: src/Module/Moderation/Users/Active.php:29 +#: src/Module/Moderation/Users/Index.php:29 #, php-format msgid "%s user blocked" msgid_plural "%s users blocked" msgstr[0] "" msgstr[1] "" -#: src/Module/Moderation/Users/Active.php:51 -#: src/Module/Moderation/Users/Active.php:85 -#: src/Module/Moderation/Users/Blocked.php:51 -#: src/Module/Moderation/Users/Blocked.php:85 -#: src/Module/Moderation/Users/Index.php:58 -#: src/Module/Moderation/Users/Index.php:92 +#: src/Module/Moderation/Users/Active.php:37 +#: src/Module/Moderation/Users/Active.php:71 +#: src/Module/Moderation/Users/Blocked.php:37 +#: src/Module/Moderation/Users/Blocked.php:71 +#: src/Module/Moderation/Users/Index.php:44 +#: src/Module/Moderation/Users/Index.php:78 msgid "You can't remove yourself" msgstr "Je kan jezelf niet verwijderen" -#: src/Module/Moderation/Users/Active.php:55 -#: src/Module/Moderation/Users/Blocked.php:55 -#: src/Module/Moderation/Users/Index.php:62 +#: src/Module/Moderation/Users/Active.php:41 +#: src/Module/Moderation/Users/Blocked.php:41 +#: src/Module/Moderation/Users/Index.php:48 #, php-format msgid "%s user deleted" msgid_plural "%s users deleted" msgstr[0] "%s gebruiker verwijderd" msgstr[1] "%s gebruikers verwijderd" -#: src/Module/Moderation/Users/Active.php:83 -#: src/Module/Moderation/Users/Blocked.php:83 -#: src/Module/Moderation/Users/Index.php:90 +#: src/Module/Moderation/Users/Active.php:69 +#: src/Module/Moderation/Users/Blocked.php:69 +#: src/Module/Moderation/Users/Index.php:76 #, php-format msgid "User \"%s\" deleted" msgstr "" -#: src/Module/Moderation/Users/Active.php:93 -#: src/Module/Moderation/Users/Index.php:100 +#: src/Module/Moderation/Users/Active.php:79 +#: src/Module/Moderation/Users/Index.php:86 #, php-format msgid "User \"%s\" blocked" msgstr "" -#: src/Module/Moderation/Users/Active.php:126 -#: src/Module/Moderation/Users/Blocked.php:126 -#: src/Module/Moderation/Users/Deleted.php:83 -#: src/Module/Moderation/Users/Index.php:140 -#: src/Module/Moderation/Users/Index.php:160 +#: src/Module/Moderation/Users/Active.php:112 +#: src/Module/Moderation/Users/Blocked.php:112 +#: src/Module/Moderation/Users/Deleted.php:69 +#: src/Module/Moderation/Users/Index.php:126 +#: src/Module/Moderation/Users/Index.php:146 msgid "Register date" msgstr "Registratiedatum" -#: src/Module/Moderation/Users/Active.php:126 -#: src/Module/Moderation/Users/Blocked.php:126 -#: src/Module/Moderation/Users/Deleted.php:83 -#: src/Module/Moderation/Users/Index.php:140 -#: src/Module/Moderation/Users/Index.php:160 +#: src/Module/Moderation/Users/Active.php:112 +#: src/Module/Moderation/Users/Blocked.php:112 +#: src/Module/Moderation/Users/Deleted.php:69 +#: src/Module/Moderation/Users/Index.php:126 +#: src/Module/Moderation/Users/Index.php:146 msgid "Last login" msgstr "Laatste login" -#: src/Module/Moderation/Users/Active.php:126 -#: src/Module/Moderation/Users/Blocked.php:126 -#: src/Module/Moderation/Users/Deleted.php:83 -#: src/Module/Moderation/Users/Index.php:140 -#: src/Module/Moderation/Users/Index.php:160 +#: src/Module/Moderation/Users/Active.php:112 +#: src/Module/Moderation/Users/Blocked.php:112 +#: src/Module/Moderation/Users/Deleted.php:69 +#: src/Module/Moderation/Users/Index.php:126 +#: src/Module/Moderation/Users/Index.php:146 msgid "Last public item" msgstr "" -#: src/Module/Moderation/Users/Active.php:134 +#: src/Module/Moderation/Users/Active.php:120 msgid "Active Accounts" msgstr "" -#: src/Module/Moderation/Users/Active.php:138 -#: src/Module/Moderation/Users/Blocked.php:137 -#: src/Module/Moderation/Users/Index.php:153 +#: src/Module/Moderation/Users/Active.php:124 +#: src/Module/Moderation/Users/Blocked.php:123 +#: src/Module/Moderation/Users/Index.php:139 msgid "User blocked" msgstr "Gebruiker geblokeerd" -#: src/Module/Moderation/Users/Active.php:139 -#: src/Module/Moderation/Users/Blocked.php:139 -#: src/Module/Moderation/Users/Index.php:155 +#: src/Module/Moderation/Users/Active.php:125 +#: src/Module/Moderation/Users/Blocked.php:125 +#: src/Module/Moderation/Users/Index.php:141 msgid "Site admin" msgstr "Sitebeheerder" -#: src/Module/Moderation/Users/Active.php:140 -#: src/Module/Moderation/Users/Blocked.php:140 -#: src/Module/Moderation/Users/Index.php:156 +#: src/Module/Moderation/Users/Active.php:126 +#: src/Module/Moderation/Users/Blocked.php:126 +#: src/Module/Moderation/Users/Index.php:142 msgid "Account expired" msgstr "Account verlopen" -#: src/Module/Moderation/Users/Active.php:141 -#: src/Module/Moderation/Users/Index.php:159 +#: src/Module/Moderation/Users/Active.php:127 +#: src/Module/Moderation/Users/Index.php:145 msgid "Create a new user" msgstr "" -#: src/Module/Moderation/Users/Active.php:147 -#: src/Module/Moderation/Users/Blocked.php:146 -#: src/Module/Moderation/Users/Index.php:165 +#: src/Module/Moderation/Users/Active.php:133 +#: src/Module/Moderation/Users/Blocked.php:132 +#: src/Module/Moderation/Users/Index.php:151 msgid "" "Selected users will be deleted!\\n\\nEverything these users had posted on " "this site will be permanently deleted!\\n\\nAre you sure?" msgstr "Geselecteerde gebruikers zullen verwijderd worden!\\n\\nAlles wat deze gebruikers gepost hebben op deze website zal permanent verwijderd worden!\\n\\nBen je zeker?" -#: src/Module/Moderation/Users/Active.php:148 -#: src/Module/Moderation/Users/Blocked.php:147 -#: src/Module/Moderation/Users/Index.php:166 +#: src/Module/Moderation/Users/Active.php:134 +#: src/Module/Moderation/Users/Blocked.php:133 +#: src/Module/Moderation/Users/Index.php:152 msgid "" "The user {0} will be deleted!\\n\\nEverything this user has posted on this " "site will be permanently deleted!\\n\\nAre you sure?" msgstr "De gebruiker {0} zal verwijderd worden!\\n\\nAlles wat deze gebruiker gepost heeft op deze website zal permanent verwijderd worden!\\n\\nBen je zeker?" -#: src/Module/Moderation/Users/Blocked.php:43 -#: src/Module/Moderation/Users/Index.php:50 +#: src/Module/Moderation/Users/Blocked.php:29 +#: src/Module/Moderation/Users/Index.php:36 #, php-format msgid "%s user unblocked" msgid_plural "%s users unblocked" msgstr[0] "" msgstr[1] "" -#: src/Module/Moderation/Users/Blocked.php:92 -#: src/Module/Moderation/Users/Index.php:106 +#: src/Module/Moderation/Users/Blocked.php:78 +#: src/Module/Moderation/Users/Index.php:92 #, php-format msgid "User \"%s\" unblocked" msgstr "" -#: src/Module/Moderation/Users/Blocked.php:134 +#: src/Module/Moderation/Users/Blocked.php:120 msgid "Blocked Users" msgstr "" -#: src/Module/Moderation/Users/Create.php:62 +#: src/Module/Moderation/Users/Create.php:48 msgid "New User" msgstr "Nieuwe gebruiker" -#: src/Module/Moderation/Users/Create.php:63 +#: src/Module/Moderation/Users/Create.php:49 msgid "Add User" msgstr "Gebruiker toevoegen" -#: src/Module/Moderation/Users/Create.php:70 +#: src/Module/Moderation/Users/Create.php:56 msgid "Name of the new user." msgstr "Naam van nieuwe gebruiker" -#: src/Module/Moderation/Users/Create.php:71 +#: src/Module/Moderation/Users/Create.php:57 msgid "Nickname" msgstr "Bijnaam" -#: src/Module/Moderation/Users/Create.php:71 +#: src/Module/Moderation/Users/Create.php:57 msgid "Nickname of the new user." msgstr "Bijnaam van nieuwe gebruiker" -#: src/Module/Moderation/Users/Create.php:72 +#: src/Module/Moderation/Users/Create.php:58 msgid "Email address of the new user." msgstr "E-mailadres van nieuwe gebruiker" -#: src/Module/Moderation/Users/Deleted.php:81 +#: src/Module/Moderation/Users/Deleted.php:67 msgid "Users awaiting permanent deletion" msgstr "" -#: src/Module/Moderation/Users/Deleted.php:83 -#: src/Module/Moderation/Users/Index.php:160 +#: src/Module/Moderation/Users/Deleted.php:69 +#: src/Module/Moderation/Users/Index.php:146 msgid "Permanent deletion" msgstr "" -#: src/Module/Moderation/Users/Index.php:150 +#: src/Module/Moderation/Users/Index.php:136 msgid "User waiting for permanent deletion" msgstr "Gebruiker wacht op permanente verwijdering" -#: src/Module/Moderation/Users/Pending.php:44 +#: src/Module/Moderation/Users/Pending.php:30 #, php-format msgid "%s user approved" msgid_plural "%s users approved" msgstr[0] "" msgstr[1] "" -#: src/Module/Moderation/Users/Pending.php:51 +#: src/Module/Moderation/Users/Pending.php:37 #, php-format msgid "%s registration revoked" msgid_plural "%s registrations revoked" msgstr[0] "" msgstr[1] "" -#: src/Module/Moderation/Users/Pending.php:76 +#: src/Module/Moderation/Users/Pending.php:62 msgid "Account approved." msgstr "Account goedgekeurd." -#: src/Module/Moderation/Users/Pending.php:82 +#: src/Module/Moderation/Users/Pending.php:68 msgid "Registration revoked" msgstr "" -#: src/Module/Moderation/Users/Pending.php:97 +#: src/Module/Moderation/Users/Pending.php:83 msgid "User registrations awaiting review" msgstr "" -#: src/Module/Moderation/Users/Pending.php:99 +#: src/Module/Moderation/Users/Pending.php:85 msgid "Request date" msgstr "Registratiedatum" -#: src/Module/Moderation/Users/Pending.php:100 +#: src/Module/Moderation/Users/Pending.php:86 msgid "No registrations." msgstr "Geen registraties." -#: src/Module/Moderation/Users/Pending.php:101 +#: src/Module/Moderation/Users/Pending.php:87 msgid "Note from the user" msgstr "Nota van de gebruiker" -#: src/Module/Moderation/Users/Pending.php:103 +#: src/Module/Moderation/Users/Pending.php:89 msgid "Deny" msgstr "Weiger" -#: src/Module/Notifications/Introductions.php:99 +#: src/Module/Notifications/Introductions.php:91 msgid "Show Ignored Requests" msgstr "Toon genegeerde verzoeken" -#: src/Module/Notifications/Introductions.php:99 +#: src/Module/Notifications/Introductions.php:91 msgid "Hide Ignored Requests" msgstr "Verberg genegeerde verzoeken" -#: src/Module/Notifications/Introductions.php:115 -#: src/Module/Notifications/Introductions.php:178 +#: src/Module/Notifications/Introductions.php:107 +#: src/Module/Notifications/Introductions.php:170 msgid "Notification type:" msgstr "Notificatiesoort:" -#: src/Module/Notifications/Introductions.php:118 +#: src/Module/Notifications/Introductions.php:110 msgid "Suggested by:" msgstr "Voorgesteld door:" -#: src/Module/Notifications/Introductions.php:143 +#: src/Module/Notifications/Introductions.php:135 msgid "Claims to be known to you: " msgstr "Denkt dat je hem of haar kent:" -#: src/Module/Notifications/Introductions.php:152 +#: src/Module/Notifications/Introductions.php:144 msgid "Shall your connection be bidirectional or not?" msgstr "Zal je connectie bidirectioneel zijn of niet?" -#: src/Module/Notifications/Introductions.php:153 +#: src/Module/Notifications/Introductions.php:145 #, php-format msgid "" "Accepting %s as a friend allows %s to subscribe to your posts, and you will " "also receive updates from them in your news feed." msgstr "%s als vriend accepteren laat %s toe om in te schrijven op je berichten, en je zal ook updates ontvangen van hen in je nieuws feed." -#: src/Module/Notifications/Introductions.php:154 +#: src/Module/Notifications/Introductions.php:146 #, php-format msgid "" "Accepting %s as a subscriber allows them to subscribe to your posts, but you" " will not receive updates from them in your news feed." msgstr "%s als volger accepteren laat hen toe om in te schrijven op je berichten, maar je zal geen updates ontvangen van hen in je nieuws feed." -#: src/Module/Notifications/Introductions.php:156 +#: src/Module/Notifications/Introductions.php:148 msgid "Friend" msgstr "Vriend" -#: src/Module/Notifications/Introductions.php:157 +#: src/Module/Notifications/Introductions.php:149 msgid "Subscriber" msgstr "Volger" -#: src/Module/Notifications/Introductions.php:216 +#: src/Module/Notifications/Introductions.php:208 msgid "No introductions." msgstr "Geen vriendschaps- of connectieverzoeken." -#: src/Module/Notifications/Introductions.php:217 -#: src/Module/Notifications/Notifications.php:135 +#: src/Module/Notifications/Introductions.php:209 +#: src/Module/Notifications/Notifications.php:127 #, php-format msgid "No more %s notifications." msgstr "Geen %s notificaties meer." -#: src/Module/Notifications/Notification.php:135 +#: src/Module/Notifications/Notification.php:121 msgid "You must be logged in to show this page." msgstr "Je moet ingelogd zijn om deze pagina te tonen." -#: src/Module/Notifications/Notifications.php:66 +#: src/Module/Notifications/Notifications.php:52 msgid "Network Notifications" msgstr "Netwerknotificaties" -#: src/Module/Notifications/Notifications.php:72 +#: src/Module/Notifications/Notifications.php:58 msgid "System Notifications" msgstr "Systeemnotificaties" -#: src/Module/Notifications/Notifications.php:78 +#: src/Module/Notifications/Notifications.php:64 msgid "Personal Notifications" msgstr "Persoonlijke notificaties" -#: src/Module/Notifications/Notifications.php:84 +#: src/Module/Notifications/Notifications.php:70 msgid "Home Notifications" msgstr "Tijdlijn-notificaties" -#: src/Module/Notifications/Notifications.php:140 +#: src/Module/Notifications/Notifications.php:132 msgid "Show unread" msgstr "Toon ongelezen" -#: src/Module/Notifications/Ping.php:220 +#: src/Module/Notifications/Ping.php:206 msgid "{0} requested registration" msgstr "{0} vroeg om zich te registreren" -#: src/Module/Notifications/Ping.php:229 +#: src/Module/Notifications/Ping.php:215 #, php-format msgid "{0} and %d others requested registration" msgstr "" -#: src/Module/OAuth/Acknowledge.php:51 +#: src/Module/OAuth/Acknowledge.php:37 msgid "Authorize application connection" msgstr "Verbinding met de applicatie goedkeuren" -#: src/Module/OAuth/Acknowledge.php:53 +#: src/Module/OAuth/Acknowledge.php:39 msgid "" "Do you want to authorize this application to access your posts and contacts," " and/or create new posts for you?" msgstr "Wil je deze toepassing toestemming geven om jouw berichten en contacten in te kijken, en/of nieuwe berichten in jouw plaats aan te maken?" -#: src/Module/OAuth/Authorize.php:54 +#: src/Module/OAuth/Authorize.php:40 msgid "Unsupported or missing response type" msgstr "" -#: src/Module/OAuth/Authorize.php:59 src/Module/OAuth/Token.php:75 +#: src/Module/OAuth/Authorize.php:45 src/Module/OAuth/Token.php:61 msgid "Incomplete request data" msgstr "" -#: src/Module/OAuth/Authorize.php:106 +#: src/Module/OAuth/Authorize.php:92 #, php-format msgid "" "Please copy the following authentication code into your application and " "close this window: %s" msgstr "" -#: src/Module/OAuth/Token.php:80 +#: src/Module/OAuth/Token.php:66 msgid "Invalid data or unknown client" msgstr "" -#: src/Module/OAuth/Token.php:105 +#: src/Module/OAuth/Token.php:91 msgid "Unsupported or missing grant type" msgstr "" -#: src/Module/OStatus/Repair.php:83 -msgid "Resubscribing to OStatus contacts" -msgstr "Opnieuw inschrijven bij OStatus contacten" - -#: src/Module/OStatus/Repair.php:84 src/Module/OStatus/Subscribe.php:160 -msgid "Keep this window open until done." -msgstr "Houd dit scherm open tot het klaar is" - -#: src/Module/OStatus/Repair.php:85 -msgid "✔ Done" -msgstr "" - -#: src/Module/OStatus/Repair.php:86 -msgid "No OStatus contacts to resubscribe to." -msgstr "" - -#: src/Module/OStatus/Subscribe.php:72 +#: src/Module/OStatus/Subscribe.php:58 msgid "Subscribing to contacts" msgstr "" -#: src/Module/OStatus/Subscribe.php:81 +#: src/Module/OStatus/Subscribe.php:67 msgid "No contact provided." msgstr "Geen contact opgegeven." -#: src/Module/OStatus/Subscribe.php:87 +#: src/Module/OStatus/Subscribe.php:73 msgid "Couldn't fetch information for contact." msgstr "Kon de informatie voor het contact niet ophalen." -#: src/Module/OStatus/Subscribe.php:98 +#: src/Module/OStatus/Subscribe.php:84 msgid "Couldn't fetch friends for contact." msgstr "Kon de vrienden van contact niet ophalen." -#: src/Module/OStatus/Subscribe.php:104 src/Module/OStatus/Subscribe.php:115 +#: src/Module/OStatus/Subscribe.php:90 src/Module/OStatus/Subscribe.php:101 msgid "Couldn't fetch following contacts." msgstr "" -#: src/Module/OStatus/Subscribe.php:110 +#: src/Module/OStatus/Subscribe.php:96 msgid "Couldn't fetch remote profile." msgstr "" -#: src/Module/OStatus/Subscribe.php:120 +#: src/Module/OStatus/Subscribe.php:106 msgid "Unsupported network" msgstr "" -#: src/Module/OStatus/Subscribe.php:136 +#: src/Module/OStatus/Subscribe.php:122 msgid "Done" msgstr "Klaar" -#: src/Module/OStatus/Subscribe.php:150 +#: src/Module/OStatus/Subscribe.php:136 msgid "success" msgstr "Succesvol" -#: src/Module/OStatus/Subscribe.php:152 +#: src/Module/OStatus/Subscribe.php:138 msgid "failed" msgstr "Mislukt" -#: src/Module/OStatus/Subscribe.php:155 +#: src/Module/OStatus/Subscribe.php:141 msgid "ignored" msgstr "Verboden" -#: src/Module/Photo.php:124 +#: src/Module/OStatus/Subscribe.php:146 +msgid "Keep this window open until done." +msgstr "Houd dit scherm open tot het klaar is" + +#: src/Module/Photo.php:108 msgid "The Photo is not available." msgstr "" -#: src/Module/Photo.php:149 +#: src/Module/Photo.php:133 #, php-format msgid "The Photo with id %s is not available." msgstr "De foto met id %s is niet beschikbaar" -#: src/Module/Photo.php:190 +#: src/Module/Photo.php:174 #, php-format msgid "Invalid external resource with url %s." msgstr "" -#: src/Module/Photo.php:192 +#: src/Module/Photo.php:176 #, php-format msgid "Invalid photo with id %s." msgstr "Ongeldige foto met ID %s" -#: src/Module/Post/Edit.php:82 src/Module/Post/Edit.php:96 +#: src/Module/Post/Edit.php:68 src/Module/Post/Edit.php:82 msgid "Post not found." msgstr "" -#: src/Module/Post/Edit.php:102 +#: src/Module/Post/Edit.php:88 msgid "Edit post" msgstr "Bericht bewerken" -#: src/Module/Post/Edit.php:136 +#: src/Module/Post/Edit.php:122 msgid "web link" msgstr "webadres" -#: src/Module/Post/Edit.php:137 +#: src/Module/Post/Edit.php:123 msgid "Insert video link" msgstr "Voeg video toe" -#: src/Module/Post/Edit.php:138 +#: src/Module/Post/Edit.php:124 msgid "video link" msgstr "video adres" -#: src/Module/Post/Edit.php:139 +#: src/Module/Post/Edit.php:125 msgid "Insert audio link" msgstr "Voeg audio adres toe" -#: src/Module/Post/Edit.php:140 +#: src/Module/Post/Edit.php:126 msgid "audio link" msgstr "audio adres" -#: src/Module/Post/Tag/Remove.php:106 +#: src/Module/Post/Tag/Remove.php:92 msgid "Remove Item Tag" msgstr "Verwijder label van item" -#: src/Module/Post/Tag/Remove.php:107 +#: src/Module/Post/Tag/Remove.php:93 msgid "Select a tag to remove: " msgstr "Selecteer een label om te verwijderen: " -#: src/Module/Post/Tag/Remove.php:108 -#: src/Module/Settings/TwoFactor/Trusted.php:147 +#: src/Module/Post/Tag/Remove.php:94 +#: src/Module/Settings/TwoFactor/Trusted.php:133 msgid "Remove" msgstr "Verwijderen" -#: src/Module/Privacy/PermissionTooltip.php:71 +#: src/Module/Privacy/PermissionTooltip.php:57 #, php-format msgid "Wrong type \"%s\", expected one of: %s" msgstr "" -#: src/Module/Privacy/PermissionTooltip.php:101 +#: src/Module/Privacy/PermissionTooltip.php:87 msgid "Model not found" msgstr "" -#: src/Module/Privacy/PermissionTooltip.php:118 +#: src/Module/Privacy/PermissionTooltip.php:104 msgid "Unlisted" msgstr "" -#: src/Module/Privacy/PermissionTooltip.php:124 +#: src/Module/Privacy/PermissionTooltip.php:110 msgid "Remote privacy information not available." msgstr "Privacyinformatie op afstand niet beschikbaar." -#: src/Module/Privacy/PermissionTooltip.php:131 +#: src/Module/Privacy/PermissionTooltip.php:117 msgid "Visible to:" msgstr "Zichtbaar voor:" -#: src/Module/Privacy/PermissionTooltip.php:133 +#: src/Module/Privacy/PermissionTooltip.php:119 msgid "CC:" msgstr "" -#: src/Module/Privacy/PermissionTooltip.php:134 +#: src/Module/Privacy/PermissionTooltip.php:120 msgid "BCC:" msgstr "" -#: src/Module/Privacy/PermissionTooltip.php:135 +#: src/Module/Privacy/PermissionTooltip.php:121 msgid "Audience:" msgstr "" -#: src/Module/Privacy/PermissionTooltip.php:136 +#: src/Module/Privacy/PermissionTooltip.php:122 msgid "Attributed To:" msgstr "" -#: src/Module/Privacy/PermissionTooltip.php:234 +#: src/Module/Privacy/PermissionTooltip.php:220 #, php-format msgid "Collection (%s)" msgstr "" -#: src/Module/Privacy/PermissionTooltip.php:238 +#: src/Module/Privacy/PermissionTooltip.php:224 #, php-format msgid "Followers (%s)" msgstr "" -#: src/Module/Privacy/PermissionTooltip.php:255 +#: src/Module/Privacy/PermissionTooltip.php:241 #, php-format msgid "%d more" msgstr "" -#: src/Module/Profile/Contacts.php:159 +#: src/Module/Profile/Contacts.php:145 msgid "No contacts." msgstr "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:1095 -#: src/Protocol/OStatus.php:1011 -#, 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:1099 src/Protocol/OStatus.php:1016 +#: src/Module/Profile/Conversations.php:92 src/Module/Profile/Profile.php:339 +#: src/Protocol/Feed.php:1097 #, 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:1102 src/Protocol/OStatus.php:1020 +#: src/Module/Profile/Conversations.php:93 src/Module/Profile/Profile.php:340 +#: src/Protocol/Feed.php:1100 #, 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:192 -#: src/Module/Settings/Profile/Photo/Index.php:58 +#: src/Module/Profile/Conversations.php:94 src/Module/Profile/Profile.php:341 +#: src/Protocol/Feed.php:1093 +#, php-format +msgid "%s's timeline" +msgstr "Tijdslijn van %s" + +#: src/Module/Profile/Photos.php:150 src/Module/Profile/Photos.php:153 +#: src/Module/Profile/Photos.php:178 +#: src/Module/Settings/Profile/Photo/Index.php:44 #, php-format msgid "Image exceeds size limit of %s" msgstr "Beeld is groter dan de limiet ( %s )" -#: src/Module/Profile/Photos.php:170 +#: src/Module/Profile/Photos.php:156 msgid "Image upload didn't complete, please try again" msgstr "Opladen van het beeld is niet compleet, probeer het opnieuw" -#: src/Module/Profile/Photos.php:173 +#: src/Module/Profile/Photos.php:159 msgid "Image file is missing" msgstr "Beeld bestand ontbreekt" -#: src/Module/Profile/Photos.php:178 +#: src/Module/Profile/Photos.php:164 msgid "" "Server can't accept new file upload at this time, please contact your " "administrator" msgstr "De server kan op dit moment geen nieuw bestand opladen, contacteer alsjeblieft je beheerder" -#: src/Module/Profile/Photos.php:200 +#: src/Module/Profile/Photos.php:186 msgid "Image file is empty." msgstr "Afbeeldingsbestand is leeg." -#: src/Module/Profile/Photos.php:352 +#: src/Module/Profile/Photos.php:338 msgid "View Album" msgstr "Album bekijken" -#: src/Module/Profile/Profile.php:112 src/Module/Profile/Restricted.php:50 +#: src/Module/Profile/Profile.php:100 src/Module/Profile/Restricted.php:36 msgid "Profile not found." msgstr "Profiel niet gevonden" -#: src/Module/Profile/Profile.php:158 +#: src/Module/Profile/Profile.php:146 #, php-format msgid "" "You're currently viewing your profile as %s Cancel" msgstr "" -#: src/Module/Profile/Profile.php:167 +#: src/Module/Profile/Profile.php:155 msgid "Full Name:" msgstr "Volledige Naam:" -#: src/Module/Profile/Profile.php:172 +#: src/Module/Profile/Profile.php:160 msgid "Member since:" msgstr "Lid sinds:" -#: src/Module/Profile/Profile.php:178 +#: src/Module/Profile/Profile.php:166 msgid "j F, Y" msgstr "F j Y" -#: src/Module/Profile/Profile.php:179 +#: src/Module/Profile/Profile.php:167 msgid "j F" msgstr "F j" -#: src/Module/Profile/Profile.php:187 src/Util/Temporal.php:168 +#: src/Module/Profile/Profile.php:175 src/Util/Temporal.php:154 msgid "Birthday:" msgstr "Verjaardag:" -#: src/Module/Profile/Profile.php:190 -#: src/Module/Settings/Profile/Index.php:291 src/Util/Temporal.php:170 +#: src/Module/Profile/Profile.php:178 +#: src/Module/Settings/Profile/Index.php:282 src/Util/Temporal.php:156 msgid "Age: " msgstr "Leeftijd:" -#: src/Module/Profile/Profile.php:190 -#: src/Module/Settings/Profile/Index.php:291 src/Util/Temporal.php:170 +#: src/Module/Profile/Profile.php:178 +#: src/Module/Settings/Profile/Index.php:282 src/Util/Temporal.php:156 #, php-format msgid "%d year old" msgid_plural "%d years old" msgstr[0] "%d jaar oud" msgstr[1] "%d jaar oud" -#: src/Module/Profile/Profile.php:195 -#: src/Module/Settings/Profile/Index.php:284 +#: src/Module/Profile/Profile.php:183 +#: src/Module/Settings/Profile/Index.php:275 msgid "Description:" msgstr "Beschrijving:" -#: src/Module/Profile/Profile.php:261 +#: src/Module/Profile/Profile.php:249 msgid "Groups:" msgstr "" -#: src/Module/Profile/Profile.php:273 +#: src/Module/Profile/Profile.php:261 msgid "View profile as:" msgstr "Bekijk profiel als:" -#: src/Module/Profile/Profile.php:290 +#: src/Module/Profile/Profile.php:278 msgid "View as" msgstr "" -#: src/Module/Profile/RemoteFollow.php:82 +#: src/Module/Profile/RemoteFollow.php:68 msgid "Profile unavailable." msgstr "Profiel onbeschikbaar" -#: src/Module/Profile/RemoteFollow.php:88 +#: src/Module/Profile/RemoteFollow.php:74 msgid "Invalid locator" msgstr "Ongeldige plaatsbepaler" -#: src/Module/Profile/RemoteFollow.php:95 +#: src/Module/Profile/RemoteFollow.php:81 msgid "The provided profile link doesn't seem to be valid" msgstr "De verstrekte profiellink lijkt niet geldig te zijn" -#: src/Module/Profile/RemoteFollow.php:100 +#: src/Module/Profile/RemoteFollow.php:86 msgid "" "Remote subscription can't be done for your network. Please subscribe " "directly on your system." msgstr "Remote inschrijving kan niet op jouw netwerk. Gelieve direct op je systeem in te schrijven." -#: src/Module/Profile/RemoteFollow.php:128 +#: src/Module/Profile/RemoteFollow.php:114 msgid "Friend/Connection Request" msgstr "Vriendschaps-/connectieverzoek" -#: src/Module/Profile/RemoteFollow.php:129 +#: src/Module/Profile/RemoteFollow.php:115 #, php-format msgid "" "Enter your Webfinger address (user@domain.tld) or profile URL here. If this " @@ -9270,579 +9264,579 @@ msgid "" " or %s directly on your system." msgstr "Geef hier je Webfinger adres (gebruiker@domain.tld) of profiel URL. Als dit niet wordt ondersteund door je systeem, dan dien je in te schrijven op %s of %s direct op je systeem." -#: src/Module/Profile/RemoteFollow.php:130 +#: src/Module/Profile/RemoteFollow.php:116 #, php-format msgid "" "If you are not yet a member of the free social web, follow " "this link to find a public Friendica node and join us today." msgstr "Als je nog geen lid bent van het vrije sociale web, volg dan deze link om een publieke Friendica node te vinden en sluit je vandaag bij ons aan." -#: src/Module/Profile/RemoteFollow.php:131 +#: src/Module/Profile/RemoteFollow.php:117 msgid "Your Webfinger address or profile URL:" msgstr "Uw Webfinger adres of profiel-URL:" -#: src/Module/Profile/Restricted.php:59 +#: src/Module/Profile/Restricted.php:45 msgid "Restricted profile" msgstr "" -#: src/Module/Profile/Restricted.php:60 +#: src/Module/Profile/Restricted.php:46 msgid "" "This profile has been restricted which prevents access to their public " "content from anonymous visitors." msgstr "" -#: src/Module/Profile/Schedule.php:83 +#: src/Module/Profile/Schedule.php:69 msgid "Scheduled" msgstr "" -#: src/Module/Profile/Schedule.php:84 +#: src/Module/Profile/Schedule.php:70 msgid "Content" msgstr "" -#: src/Module/Profile/Schedule.php:85 +#: src/Module/Profile/Schedule.php:71 msgid "Remove post" msgstr "" -#: src/Module/Register.php:85 +#: src/Module/Register.php:77 msgid "Only parent users can create additional accounts." msgstr "Alleen bovenliggende gebruikers kunnen extra gebruikers maken." -#: src/Module/Register.php:100 src/Module/User/Import.php:112 +#: src/Module/Register.php:92 src/Module/User/Import.php:98 msgid "" "This site has exceeded the number of allowed daily account registrations. " "Please try again tomorrow." msgstr "Deze website heeft het toegelaten dagelijkse aantal registraties overschreden. Probeer morgen opnieuw." -#: src/Module/Register.php:117 +#: src/Module/Register.php:109 msgid "" "You may (optionally) fill in this form via OpenID by supplying your OpenID " "and clicking \"Register\"." msgstr "U kunt (optioneel) dit formulier invullen via OpenID door uw OpenID in te vullen en op 'Registreren' te klikken." -#: src/Module/Register.php:118 +#: src/Module/Register.php:110 msgid "" "If you are not familiar with OpenID, please leave that field blank and fill " "in the rest of the items." msgstr "Laat dit veld leeg als je niet vertrouwd bent met OpenID, en vul de rest van de items in." -#: src/Module/Register.php:119 +#: src/Module/Register.php:111 msgid "Your OpenID (optional): " msgstr "Je OpenID (optioneel):" -#: src/Module/Register.php:128 +#: src/Module/Register.php:120 msgid "Include your profile in member directory?" msgstr "Je profiel in de ledengids opnemen?" -#: src/Module/Register.php:149 +#: src/Module/Register.php:141 msgid "Note for the admin" msgstr "Nota voor de beheerder" -#: src/Module/Register.php:149 +#: src/Module/Register.php:141 msgid "Leave a message for the admin, why you want to join this node" msgstr "Laat een boodschap na voor de beheerder, waarom je bij deze node wil komen" -#: src/Module/Register.php:150 +#: src/Module/Register.php:142 msgid "Membership on this site is by invitation only." msgstr "Lidmaatschap van deze website is uitsluitend op uitnodiging." -#: src/Module/Register.php:151 +#: src/Module/Register.php:143 msgid "Your invitation code: " msgstr "Je uitnodigingscode:" -#: src/Module/Register.php:159 +#: src/Module/Register.php:151 msgid "Your Display Name (as you would like it to be displayed on this system" msgstr "" -#: src/Module/Register.php:160 +#: src/Module/Register.php:152 msgid "" "Your Email Address: (Initial information will be send there, so this has to " "be an existing address.)" msgstr "Je Email Adres: (Initiële informatie zal hier naartoe gezonden worden, dus dit moet een bestaand adres zijn.)" -#: src/Module/Register.php:161 +#: src/Module/Register.php:153 msgid "Please repeat your e-mail address:" msgstr "Herhaal uw e-mailadres:" -#: src/Module/Register.php:163 src/Module/Security/PasswordTooLong.php:100 -#: src/Module/Settings/Account.php:564 +#: src/Module/Register.php:155 src/Module/Security/PasswordTooLong.php:86 +#: src/Module/Settings/Account.php:555 msgid "New Password:" msgstr "Nieuw Wachtwoord:" -#: src/Module/Register.php:163 +#: src/Module/Register.php:155 msgid "Leave empty for an auto generated password." msgstr "Laat leeg voor een automatisch gegenereerd wachtwoord." -#: src/Module/Register.php:164 src/Module/Security/PasswordTooLong.php:101 -#: src/Module/Settings/Account.php:565 +#: src/Module/Register.php:156 src/Module/Security/PasswordTooLong.php:87 +#: src/Module/Settings/Account.php:556 msgid "Confirm:" msgstr "Bevestig:" -#: src/Module/Register.php:165 +#: src/Module/Register.php:157 #, php-format msgid "" "Choose a profile nickname. This must begin with a text character. Your " "profile address on this site will then be \"nickname@%s\"." msgstr "Kies een profiel bijnaam. Deze dient te beginnen met een letter. Uw profiel adres op deze site zal dan \"bijnaam@%s\" zijn." -#: src/Module/Register.php:166 +#: src/Module/Register.php:158 msgid "Choose a nickname: " msgstr "Kies een bijnaam:" -#: src/Module/Register.php:174 src/Module/User/Import.php:118 +#: src/Module/Register.php:166 src/Module/User/Import.php:104 msgid "Import" msgstr "Importeren" -#: src/Module/Register.php:175 +#: src/Module/Register.php:167 msgid "Import your profile to this friendica instance" msgstr "Importeer je profiel op deze friendica server" -#: src/Module/Register.php:182 +#: src/Module/Register.php:174 msgid "Note: This node explicitly contains adult content" msgstr "Waarschuwing: Deze node heeft inhoud enkel bedoeld voor volwassenen." -#: src/Module/Register.php:184 src/Module/Settings/Delegation.php:181 +#: src/Module/Register.php:176 src/Module/Settings/Delegation.php:167 msgid "Parent Password:" msgstr "Ouderlijk wachtwoord:" -#: src/Module/Register.php:184 src/Module/Settings/Delegation.php:181 +#: src/Module/Register.php:176 src/Module/Settings/Delegation.php:167 msgid "" "Please enter the password of the parent account to legitimize your request." msgstr "Geef alstublieft het wachtwoord van het ouderlijke account om je verzoek te legitimeren." -#: src/Module/Register.php:213 +#: src/Module/Register.php:205 msgid "Password doesn't match." msgstr "Wachtwoorden komen niet overeen." -#: src/Module/Register.php:219 +#: src/Module/Register.php:211 msgid "Please enter your password." msgstr "Voer uw wachtwoord in." -#: src/Module/Register.php:261 +#: src/Module/Register.php:253 msgid "You have entered too much information." msgstr "U heeft te veel informatie ingevoerd." -#: src/Module/Register.php:284 +#: src/Module/Register.php:276 msgid "Please enter the identical mail address in the second field." msgstr "Voer in het tweede veld het identieke mailadres in." -#: src/Module/Register.php:292 +#: src/Module/Register.php:284 msgid "Nickname cannot start with a digit." msgstr "" -#: src/Module/Register.php:294 +#: src/Module/Register.php:286 msgid "Nickname can only contain US-ASCII characters." msgstr "" -#: src/Module/Register.php:323 +#: src/Module/Register.php:315 msgid "The additional account was created." msgstr "De toegevoegde gebruiker is aangemaakt." -#: src/Module/Register.php:348 +#: src/Module/Register.php:340 msgid "" "Registration successful. Please check your email for further instructions." msgstr "Registratie geslaagd. Kijk je e-mail na voor verdere instructies." -#: src/Module/Register.php:355 +#: src/Module/Register.php:347 #, php-format msgid "" "Failed to send email message. Here your accout details:
login: %s
" "password: %s

You can change your password after login." msgstr "Kon email niet verzenden. Hier zijn je account details:
login: %s
wachtwoord: %s

Je kan je wachtwoord aanpassen nadat je ingelogd bent." -#: src/Module/Register.php:361 +#: src/Module/Register.php:353 msgid "Registration successful." msgstr "Registratie succes." -#: src/Module/Register.php:370 src/Module/Register.php:377 -#: src/Module/Register.php:387 +#: src/Module/Register.php:362 src/Module/Register.php:369 +#: src/Module/Register.php:379 msgid "Your registration can not be processed." msgstr "Je registratie kan niet verwerkt worden." -#: src/Module/Register.php:376 +#: src/Module/Register.php:368 msgid "You have to leave a request note for the admin." msgstr "U dient een verzoekmelding achter te laten voor de beheerder." -#: src/Module/Register.php:386 +#: src/Module/Register.php:378 msgid "An internal error occured." msgstr "" -#: src/Module/Register.php:408 +#: src/Module/Register.php:400 msgid "Your registration is pending approval by the site owner." msgstr "Jouw registratie wacht op goedkeuring van de beheerder." -#: src/Module/Search/Acl.php:73 +#: src/Module/Search/Acl.php:64 msgid "You must be logged in to use this module." msgstr "Je moet ingelogd zijn om deze module te gebruiken." -#: src/Module/Search/Index.php:69 +#: src/Module/Search/Index.php:55 msgid "Only logged in users are permitted to perform a search." msgstr "Alleen ingelogde gebruikers mogen een zoekopdracht starten." -#: src/Module/Search/Index.php:89 +#: src/Module/Search/Index.php:75 msgid "Only one search per minute is permitted for not logged in users." msgstr "Niet ingelogde gebruikers mogen slechts 1 opzoeking doen per minuut" -#: src/Module/Search/Index.php:205 +#: src/Module/Search/Index.php:191 #, php-format msgid "Items tagged with: %s" msgstr "Items getagd met: %s" -#: src/Module/Search/Saved.php:59 +#: src/Module/Search/Saved.php:49 msgid "Search term was not saved." msgstr "" -#: src/Module/Search/Saved.php:62 +#: src/Module/Search/Saved.php:52 msgid "Search term already saved." msgstr "Zoekterm is al opgeslagen." -#: src/Module/Search/Saved.php:68 +#: src/Module/Search/Saved.php:58 msgid "Search term was not removed." msgstr "" -#: src/Module/Security/Login.php:123 +#: src/Module/Security/Login.php:113 msgid "Create a New Account" msgstr "Nieuwe account aanmaken" -#: src/Module/Security/Login.php:142 +#: src/Module/Security/Login.php:132 msgid "Your OpenID: " msgstr "Uw OpenID" -#: src/Module/Security/Login.php:145 +#: src/Module/Security/Login.php:135 msgid "" "Please enter your username and password to add the OpenID to your existing " "account." msgstr "Voer uw gebruikersnaam en wachtwoord in om de OpenID toe te voegen aan uw bestaande gebruiker." -#: src/Module/Security/Login.php:147 +#: src/Module/Security/Login.php:137 msgid "Or login using OpenID: " msgstr "Of log in met OpenID:" -#: src/Module/Security/Login.php:161 +#: src/Module/Security/Login.php:151 msgid "Password: " msgstr "Wachtwoord:" -#: src/Module/Security/Login.php:162 +#: src/Module/Security/Login.php:152 msgid "Remember me" msgstr "Onthoud mij" -#: src/Module/Security/Login.php:171 +#: src/Module/Security/Login.php:161 msgid "Forgot your password?" msgstr "Wachtwoord vergeten?" -#: src/Module/Security/Login.php:174 +#: src/Module/Security/Login.php:164 msgid "Website Terms of Service" msgstr "Gebruikersvoorwaarden website" -#: src/Module/Security/Login.php:175 +#: src/Module/Security/Login.php:165 msgid "terms of service" msgstr "servicevoorwaarden" -#: src/Module/Security/Login.php:177 +#: src/Module/Security/Login.php:167 msgid "Website Privacy Policy" msgstr "Privacybeleid website" -#: src/Module/Security/Login.php:178 +#: src/Module/Security/Login.php:168 msgid "privacy policy" msgstr "privacybeleid" -#: src/Module/Security/Logout.php:84 -#: src/Module/Security/TwoFactor/SignOut.php:78 -#: src/Module/Security/TwoFactor/SignOut.php:86 -#: src/Module/Security/TwoFactor/SignOut.php:108 -#: src/Module/Security/TwoFactor/SignOut.php:115 +#: src/Module/Security/Logout.php:75 +#: src/Module/Security/TwoFactor/SignOut.php:64 +#: src/Module/Security/TwoFactor/SignOut.php:72 +#: src/Module/Security/TwoFactor/SignOut.php:94 +#: src/Module/Security/TwoFactor/SignOut.php:101 msgid "Logged out." msgstr "Uitgelogd." -#: src/Module/Security/OpenID.php:54 +#: src/Module/Security/OpenID.php:40 msgid "OpenID protocol error. No ID returned" msgstr "OpenID-protocolfout. Geen ID terug ontvangen" -#: src/Module/Security/OpenID.php:90 +#: src/Module/Security/OpenID.php:76 msgid "" "Account not found. Please login to your existing account to add the OpenID " "to it." msgstr "Account niet gevonden. Meld je aan met je bestaande account om de OpenID toe te voegen." -#: src/Module/Security/OpenID.php:92 +#: src/Module/Security/OpenID.php:78 msgid "" "Account not found. Please register a new account or login to your existing " "account to add the OpenID to it." msgstr "Account niet gevonden. Maak een nieuwe account aan of meld je aan met je bestaande account om de OpenID toe te voegen." -#: src/Module/Security/PasswordTooLong.php:57 -#: src/Module/Settings/Account.php:67 +#: src/Module/Security/PasswordTooLong.php:43 +#: src/Module/Settings/Account.php:53 msgid "Passwords do not match." msgstr "Wachtwoorden zijn niet gelijk" -#: src/Module/Security/PasswordTooLong.php:64 +#: src/Module/Security/PasswordTooLong.php:50 msgid "Password does not need changing." msgstr "" -#: src/Module/Security/PasswordTooLong.php:77 -#: src/Module/Settings/Account.php:81 +#: src/Module/Security/PasswordTooLong.php:63 +#: src/Module/Settings/Account.php:67 msgid "Password unchanged." msgstr "Wachtwoord ongewijzigd" -#: src/Module/Security/PasswordTooLong.php:91 +#: src/Module/Security/PasswordTooLong.php:77 msgid "Password Too Long" msgstr "" -#: src/Module/Security/PasswordTooLong.php:92 +#: src/Module/Security/PasswordTooLong.php:78 msgid "" "Since version 2022.09, we've realized that any password longer than 72 " "characters is truncated during hashing. To prevent any confusion about this " "behavior, please update your password to be fewer or equal to 72 characters." msgstr "" -#: src/Module/Security/PasswordTooLong.php:93 +#: src/Module/Security/PasswordTooLong.php:79 msgid "Update Password" msgstr "" -#: src/Module/Security/PasswordTooLong.php:99 -#: src/Module/Settings/Account.php:566 +#: src/Module/Security/PasswordTooLong.php:85 +#: src/Module/Settings/Account.php:557 msgid "Current Password:" msgstr "Huidig wachtwoord:" -#: src/Module/Security/PasswordTooLong.php:99 -#: src/Module/Settings/Account.php:566 +#: src/Module/Security/PasswordTooLong.php:85 +#: src/Module/Settings/Account.php:557 msgid "Your current password to confirm the changes" msgstr "Je huidig wachtwoord om de wijzigingen te bevestigen" -#: src/Module/Security/PasswordTooLong.php:100 -#: src/Module/Settings/Account.php:550 +#: src/Module/Security/PasswordTooLong.php:86 +#: src/Module/Settings/Account.php:541 msgid "" "Allowed characters are a-z, A-Z, 0-9 and special characters except white " "spaces and accentuated letters." msgstr "" -#: src/Module/Security/PasswordTooLong.php:100 -#: src/Module/Settings/Account.php:551 +#: src/Module/Security/PasswordTooLong.php:86 +#: src/Module/Settings/Account.php:542 msgid "Password length is limited to 72 characters." msgstr "" -#: src/Module/Security/TwoFactor/Recovery.php:74 +#: src/Module/Security/TwoFactor/Recovery.php:60 #, php-format msgid "Remaining recovery codes: %d" msgstr "Resterende herstelcodes: %d" -#: src/Module/Security/TwoFactor/Recovery.php:80 -#: src/Module/Security/TwoFactor/Verify.php:77 -#: src/Module/Settings/TwoFactor/Verify.php:98 +#: src/Module/Security/TwoFactor/Recovery.php:66 +#: src/Module/Security/TwoFactor/Verify.php:63 +#: src/Module/Settings/TwoFactor/Verify.php:84 msgid "Invalid code, please retry." msgstr "Ongeldige code, probeer het opnieuw." -#: src/Module/Security/TwoFactor/Recovery.php:99 +#: src/Module/Security/TwoFactor/Recovery.php:85 msgid "Two-factor recovery" msgstr "Twee-factorenherstel" -#: src/Module/Security/TwoFactor/Recovery.php:100 +#: src/Module/Security/TwoFactor/Recovery.php:86 msgid "" "

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

" msgstr "

U kunt een van uw eenmalige herstelcodes invoeren als u de toegang tot uw mobiele apparaat bent kwijtgeraakt.

" -#: src/Module/Security/TwoFactor/Recovery.php:101 +#: src/Module/Security/TwoFactor/Recovery.php:87 #, php-format msgid "Don’t have your phone? Enter a two-factor recovery code" msgstr "Heb je je telefoon niet? Geef een twee-factor herstelcodecode in" -#: src/Module/Security/TwoFactor/Recovery.php:102 +#: src/Module/Security/TwoFactor/Recovery.php:88 msgid "Please enter a recovery code" msgstr "Voer een herstelcode in" -#: src/Module/Security/TwoFactor/Recovery.php:103 +#: src/Module/Security/TwoFactor/Recovery.php:89 msgid "Submit recovery code and complete login" msgstr "Voer de herstelcode in en voltooi de login" -#: src/Module/Security/TwoFactor/SignOut.php:122 +#: src/Module/Security/TwoFactor/SignOut.php:108 msgid "Sign out of this browser?" msgstr "" -#: src/Module/Security/TwoFactor/SignOut.php:123 +#: src/Module/Security/TwoFactor/SignOut.php:109 msgid "" "

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

" msgstr "" -#: src/Module/Security/TwoFactor/SignOut.php:124 +#: src/Module/Security/TwoFactor/SignOut.php:110 msgid "Sign out" msgstr "" -#: src/Module/Security/TwoFactor/SignOut.php:126 +#: src/Module/Security/TwoFactor/SignOut.php:112 msgid "Trust and sign out" msgstr "" -#: src/Module/Security/TwoFactor/Trust.php:96 +#: src/Module/Security/TwoFactor/Trust.php:82 msgid "Couldn't save browser to Cookie." msgstr "" -#: src/Module/Security/TwoFactor/Trust.php:141 +#: src/Module/Security/TwoFactor/Trust.php:127 msgid "Trust this browser?" msgstr "" -#: src/Module/Security/TwoFactor/Trust.php:142 +#: src/Module/Security/TwoFactor/Trust.php:128 msgid "" "

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

" msgstr "" -#: src/Module/Security/TwoFactor/Trust.php:143 +#: src/Module/Security/TwoFactor/Trust.php:129 msgid "Not now" msgstr "" -#: src/Module/Security/TwoFactor/Trust.php:144 +#: src/Module/Security/TwoFactor/Trust.php:130 msgid "Don't trust" msgstr "" -#: src/Module/Security/TwoFactor/Trust.php:145 +#: src/Module/Security/TwoFactor/Trust.php:131 msgid "Trust" msgstr "" -#: src/Module/Security/TwoFactor/Verify.php:97 +#: src/Module/Security/TwoFactor/Verify.php:83 msgid "" "

Open the two-factor authentication app on your device to get an " "authentication code and verify your identity.

" msgstr "

Open de tweefactorauthenticatie-app op uw apparaat om een ​​authenticatiecode te krijgen en uw identiteit te verifiëren.

" -#: src/Module/Security/TwoFactor/Verify.php:100 +#: src/Module/Security/TwoFactor/Verify.php:86 #, php-format msgid "" "If you do not have access to your authentication code you can use a two-factor recovery code." msgstr "" -#: src/Module/Security/TwoFactor/Verify.php:101 -#: src/Module/Settings/TwoFactor/Verify.php:158 +#: src/Module/Security/TwoFactor/Verify.php:87 +#: src/Module/Settings/TwoFactor/Verify.php:144 msgid "Please enter a code from your authentication app" msgstr "Voer een code in van uw authenticatie-app" -#: src/Module/Security/TwoFactor/Verify.php:102 +#: src/Module/Security/TwoFactor/Verify.php:88 msgid "Verify code and complete login" msgstr "Controleer de code en voltooi de login" -#: src/Module/Settings/Account.php:96 +#: src/Module/Settings/Account.php:82 msgid "Please use a shorter name." msgstr "Gebruik een kortere naam." -#: src/Module/Settings/Account.php:99 +#: src/Module/Settings/Account.php:85 msgid "Name too short." msgstr "Naam is te kort." -#: src/Module/Settings/Account.php:108 +#: src/Module/Settings/Account.php:94 msgid "Wrong Password." msgstr "Verkeerd wachtwoord." -#: src/Module/Settings/Account.php:113 +#: src/Module/Settings/Account.php:99 msgid "Invalid email." msgstr "Ongeldig email adres." -#: src/Module/Settings/Account.php:117 +#: src/Module/Settings/Account.php:103 msgid "Cannot change to that email." msgstr "Kan niet naar dat email adres veranderen." -#: src/Module/Settings/Account.php:146 src/Module/Settings/Account.php:195 -#: src/Module/Settings/Account.php:216 src/Module/Settings/Account.php:300 -#: src/Module/Settings/Account.php:329 +#: src/Module/Settings/Account.php:132 src/Module/Settings/Account.php:181 +#: src/Module/Settings/Account.php:202 src/Module/Settings/Account.php:286 +#: src/Module/Settings/Account.php:315 msgid "Settings were not updated." msgstr "Wijziging instellingen is niet opgeslagen." -#: src/Module/Settings/Account.php:342 +#: src/Module/Settings/Account.php:333 msgid "Contact CSV file upload error" msgstr "" -#: src/Module/Settings/Account.php:361 +#: src/Module/Settings/Account.php:352 msgid "Importing Contacts done" msgstr "Importeren Contacten voltooid" -#: src/Module/Settings/Account.php:374 +#: src/Module/Settings/Account.php:365 msgid "Relocate message has been send to your contacts" msgstr "Verhuis boodschap is verzonden naar je contacten" -#: src/Module/Settings/Account.php:391 +#: src/Module/Settings/Account.php:382 msgid "Unable to find your profile. Please contact your admin." msgstr "Kan je profiel niet vinden. Contacteer alsjeblieft je beheerder." -#: src/Module/Settings/Account.php:433 +#: src/Module/Settings/Account.php:424 msgid "" "Account for a service that automatically shares content based on user " "defined channels." msgstr "" -#: src/Module/Settings/Account.php:443 +#: src/Module/Settings/Account.php:434 msgid "Personal Page Subtypes" msgstr "Persoonlijke Pagina Subtypes" -#: src/Module/Settings/Account.php:444 +#: src/Module/Settings/Account.php:435 msgid "Community Group Subtypes" msgstr "" -#: src/Module/Settings/Account.php:455 +#: src/Module/Settings/Account.php:446 msgid "Account for a personal profile." msgstr "Account voor een persoonlijk profiel" -#: src/Module/Settings/Account.php:462 +#: src/Module/Settings/Account.php:453 msgid "" "Account for an organisation that automatically approves contact requests as " "\"Followers\"." msgstr "Account voor een organisatie die automatisch contact aanvragen goedkeurt als \"Volgers\"." -#: src/Module/Settings/Account.php:469 +#: src/Module/Settings/Account.php:460 msgid "" "Account for a news reflector that automatically approves contact requests as" " \"Followers\"." msgstr "Account voor een nieuws reflector die automatisch contact aanvragen goedkeurt als \"Volgers\"." -#: src/Module/Settings/Account.php:476 +#: src/Module/Settings/Account.php:467 msgid "Account for community discussions." msgstr "Account voor groepsdiscussies." -#: src/Module/Settings/Account.php:484 +#: src/Module/Settings/Account.php:475 msgid "" "Account for a regular personal profile that requires manual approval of " "\"Friends\" and \"Followers\"." msgstr "Account voor een normaal persoonlijk profiel dat manuele goedkeuring vereist van \"Vrienden\" en \"Volgers\"." -#: src/Module/Settings/Account.php:491 +#: src/Module/Settings/Account.php:482 msgid "" "Account for a public profile that automatically approves contact requests as" " \"Followers\"." msgstr "Account voor een publiek profiel dat automatisch contact aanvragen goedkeurt als \"Volgers\"." -#: src/Module/Settings/Account.php:498 +#: src/Module/Settings/Account.php:489 msgid "Automatically approves all contact requests." msgstr "Aanvaardt automatisch all contact aanvragen." -#: src/Module/Settings/Account.php:505 +#: src/Module/Settings/Account.php:496 msgid "Contact requests have to be manually approved." msgstr "" -#: src/Module/Settings/Account.php:512 +#: src/Module/Settings/Account.php:503 msgid "" "Account for a popular profile that automatically approves contact requests " "as \"Friends\"." msgstr "Account voor een populair profiel dat automatisch contact aanvragen goedkeurt als \"Vrienden\"." -#: src/Module/Settings/Account.php:517 +#: src/Module/Settings/Account.php:508 msgid "Private Group [Experimental]" msgstr "" -#: src/Module/Settings/Account.php:519 +#: src/Module/Settings/Account.php:510 msgid "Requires manual approval of contact requests." msgstr "Vereist manuele goedkeuring van contact aanvragen." -#: src/Module/Settings/Account.php:528 +#: src/Module/Settings/Account.php:519 msgid "OpenID:" msgstr "OpenID:" -#: src/Module/Settings/Account.php:528 +#: src/Module/Settings/Account.php:519 msgid "(Optional) Allow this OpenID to login to this account." msgstr "(Optioneel) Laat dit OpenID toe om in te loggen op deze account." -#: src/Module/Settings/Account.php:536 +#: src/Module/Settings/Account.php:527 msgid "Publish your profile in your local site directory?" msgstr "Uw profiel publiceren in uw lokale sitemap?" -#: src/Module/Settings/Account.php:536 +#: src/Module/Settings/Account.php:527 #, php-format msgid "" "Your profile will be published in this node's local " @@ -9850,94 +9844,94 @@ msgid "" " system settings." msgstr "Je profiel zal gepubliceerd worden de lokale gids van deze node. Je profiel details kunnen publiek zichtbaar zijn afhankelijk van de systeem instellingen." -#: src/Module/Settings/Account.php:542 +#: src/Module/Settings/Account.php:533 #, php-format msgid "" "Your profile will also be published in the global friendica directories " "(e.g. %s)." msgstr "Je profiel zal ook worden gepubliceerd in de globale Friendica directories (e.g. %s)." -#: src/Module/Settings/Account.php:555 +#: src/Module/Settings/Account.php:546 msgid "Account Settings" msgstr "Account Instellingen" -#: src/Module/Settings/Account.php:556 +#: src/Module/Settings/Account.php:547 #, php-format msgid "Your Identity Address is '%s' or '%s'." msgstr "Je Identiteit adres is '%s' of '%s'." -#: src/Module/Settings/Account.php:563 +#: src/Module/Settings/Account.php:554 msgid "Password Settings" msgstr "Wachtwoord Instellingen" -#: src/Module/Settings/Account.php:565 +#: src/Module/Settings/Account.php:556 msgid "Leave password fields blank unless changing" msgstr "Laat de wachtwoord-velden leeg, tenzij je het wilt veranderen" -#: src/Module/Settings/Account.php:567 +#: src/Module/Settings/Account.php:558 msgid "Password:" msgstr "Wachtwoord:" -#: src/Module/Settings/Account.php:567 +#: src/Module/Settings/Account.php:558 msgid "Your current password to confirm the changes of the email address" msgstr "Je huidige wachtwoord om de verandering in het email adres te bevestigen" -#: src/Module/Settings/Account.php:570 +#: src/Module/Settings/Account.php:561 msgid "Delete OpenID URL" msgstr "Verwijder OpenID URL" -#: src/Module/Settings/Account.php:572 +#: src/Module/Settings/Account.php:563 msgid "Basic Settings" msgstr "Basis Instellingen" -#: src/Module/Settings/Account.php:573 -#: src/Module/Settings/Profile/Index.php:283 +#: src/Module/Settings/Account.php:564 +#: src/Module/Settings/Profile/Index.php:274 msgid "Display name:" msgstr "Weergave naam:" -#: src/Module/Settings/Account.php:574 +#: src/Module/Settings/Account.php:565 msgid "Email Address:" msgstr "E-mailadres:" -#: src/Module/Settings/Account.php:575 +#: src/Module/Settings/Account.php:566 msgid "Your Timezone:" msgstr "Je Tijdzone:" -#: src/Module/Settings/Account.php:576 +#: src/Module/Settings/Account.php:567 msgid "Your Language:" msgstr "Je taal:" -#: src/Module/Settings/Account.php:576 +#: src/Module/Settings/Account.php:567 msgid "" "Set the language we use to show you friendica interface and to send you " "emails" msgstr "Configureer de taal van die we gebruiken als friendica interface en om je emails te sturen" -#: src/Module/Settings/Account.php:577 +#: src/Module/Settings/Account.php:568 msgid "Default Post Location:" msgstr "Standaard locatie:" -#: src/Module/Settings/Account.php:578 +#: src/Module/Settings/Account.php:569 msgid "Use Browser Location:" msgstr "Gebruik Webbrowser Locatie:" -#: src/Module/Settings/Account.php:580 +#: src/Module/Settings/Account.php:571 msgid "Security and Privacy Settings" msgstr "Instellingen voor Beveiliging en Privacy" -#: src/Module/Settings/Account.php:582 +#: src/Module/Settings/Account.php:573 msgid "Maximum Friend Requests/Day:" msgstr "Maximum aantal vriendschapsverzoeken per dag:" -#: src/Module/Settings/Account.php:582 +#: src/Module/Settings/Account.php:573 msgid "(to prevent spam abuse)" msgstr "(om spam misbruik te voorkomen)" -#: src/Module/Settings/Account.php:584 +#: src/Module/Settings/Account.php:575 msgid "Allow your profile to be searchable globally?" msgstr "Wilt u dat uw profiel globaal doorzoekbaar is?" -#: src/Module/Settings/Account.php:584 +#: src/Module/Settings/Account.php:575 msgid "" "Activate this setting if you want others to easily find and follow you. Your" " profile will be searchable on remote systems. This setting also determines " @@ -9945,43 +9939,43 @@ msgid "" "indexed or not." msgstr "Activeer deze instelling als u wilt dat anderen u gemakkelijk kunnen vinden en volgen. Uw profiel is doorzoekbaar op externe systemen. Deze instelling bepaalt ook of Friendica zoekmachines zal informeren dat uw profiel moet worden geïndexeerd of niet." -#: src/Module/Settings/Account.php:585 +#: src/Module/Settings/Account.php:576 msgid "Hide your contact/friend list from viewers of your profile?" msgstr "Uw contact- / vriendenlijst verbergen voor hen die uw profiel bekijken?" -#: src/Module/Settings/Account.php:585 +#: src/Module/Settings/Account.php:576 msgid "" "A list of your contacts is displayed on your profile page. Activate this " "option to disable the display of your contact list." msgstr "Een lijst met uw contacten wordt weergegeven op uw profielpagina. Activeer deze optie om de weergave van uw contactenlijst uit te schakelen." -#: src/Module/Settings/Account.php:586 +#: src/Module/Settings/Account.php:577 msgid "Hide your public content from anonymous viewers" msgstr "" -#: src/Module/Settings/Account.php:586 +#: src/Module/Settings/Account.php:577 msgid "" "Anonymous visitors will only see your basic profile details. Your public " "posts and replies will still be freely accessible on the remote servers of " "your followers and through relays." msgstr "" -#: src/Module/Settings/Account.php:587 +#: src/Module/Settings/Account.php:578 msgid "Make public posts unlisted" msgstr "Maak openbare berichten verborgen" -#: src/Module/Settings/Account.php:587 +#: src/Module/Settings/Account.php:578 msgid "" "Your public posts will not appear on the community pages or in search " "results, nor be sent to relay servers. However they can still appear on " "public feeds on remote servers." msgstr "Je openbare berichten verschijnen niet op de communitypagina's of in de zoekresultaten en worden ook niet naar relayservers gestuurd. Ze kunnen echter nog steeds verschijnen op openbare feeds op externe servers." -#: src/Module/Settings/Account.php:588 +#: src/Module/Settings/Account.php:579 msgid "Make all posted pictures accessible" msgstr "Maak alle geplaatste foto's toegankelijk" -#: src/Module/Settings/Account.php:588 +#: src/Module/Settings/Account.php:579 msgid "" "This option makes every posted picture accessible via the direct link. This " "is a workaround for the problem that most other networks can't handle " @@ -9989,352 +9983,352 @@ msgid "" "public on your photo albums though." msgstr "Deze optie maakt elke geplaatste foto toegankelijk via de directe link. Dit is een tijdelijke oplossing voor het probleem dat de meeste andere netwerken de rechten op afbeeldingen niet kunnen verwerken. Niet-openbare afbeeldingen zijn echter nog steeds niet zichtbaar voor het publiek in uw fotoalbums." -#: src/Module/Settings/Account.php:589 +#: src/Module/Settings/Account.php:580 msgid "Allow friends to post to your profile page?" msgstr "Vrienden toestaan om op jouw profielpagina te posten?" -#: src/Module/Settings/Account.php:589 +#: src/Module/Settings/Account.php:580 msgid "" "Your contacts may write posts on your profile wall. These posts will be " "distributed to your contacts" msgstr "Je contacten kunnen berichten schrijven op je tijdslijn. Deze berichten zullen verspreid worden naar je contacten" -#: src/Module/Settings/Account.php:590 +#: src/Module/Settings/Account.php:581 msgid "Allow friends to tag your posts?" msgstr "Sta vrienden toe om jouw berichten te labelen?" -#: src/Module/Settings/Account.php:590 +#: src/Module/Settings/Account.php:581 msgid "Your contacts can add additional tags to your posts." msgstr "Je contacten kunnen tags toevoegen aan je berichten." -#: src/Module/Settings/Account.php:591 +#: src/Module/Settings/Account.php:582 msgid "Default privacy circle for new contacts" msgstr "" -#: src/Module/Settings/Account.php:592 +#: src/Module/Settings/Account.php:583 msgid "Default privacy circle for new group contacts" msgstr "" -#: src/Module/Settings/Account.php:593 +#: src/Module/Settings/Account.php:584 msgid "Default Post Permissions" msgstr "Standaard rechten voor nieuwe berichten" -#: src/Module/Settings/Account.php:597 +#: src/Module/Settings/Account.php:588 msgid "Expiration settings" msgstr "Vervalinstellingen" -#: src/Module/Settings/Account.php:598 +#: src/Module/Settings/Account.php:589 msgid "Automatically expire posts after this many days:" msgstr "Laat berichten automatisch vervallen na zo veel dagen:" -#: src/Module/Settings/Account.php:598 +#: src/Module/Settings/Account.php:589 msgid "If empty, posts will not expire. Expired posts will be deleted" msgstr "Berichten zullen niet vervallen indien leeg. Vervallen berichten zullen worden verwijderd." -#: src/Module/Settings/Account.php:599 +#: src/Module/Settings/Account.php:590 msgid "Expire posts" msgstr "Verlopen berichten" -#: src/Module/Settings/Account.php:599 +#: src/Module/Settings/Account.php:590 msgid "When activated, posts and comments will be expired." msgstr "Indien geactiveerd, zullen berichten en opmerkingen verlopen." -#: src/Module/Settings/Account.php:600 +#: src/Module/Settings/Account.php:591 msgid "Expire personal notes" msgstr "Verloop persoonlijke notities" -#: src/Module/Settings/Account.php:600 +#: src/Module/Settings/Account.php:591 msgid "" "When activated, the personal notes on your profile page will be expired." msgstr "Indien geactiveerd, verlopen de persoonlijke notities op uw profielpagina." -#: src/Module/Settings/Account.php:601 +#: src/Module/Settings/Account.php:592 msgid "Expire starred posts" msgstr "Berichten met ster laten vervallen" -#: src/Module/Settings/Account.php:601 +#: src/Module/Settings/Account.php:592 msgid "" "Starring posts keeps them from being expired. That behaviour is overwritten " "by this setting." msgstr "Berichten met een ster verhinderen dat ze verlopen. Dat gedrag wordt door deze instelling overschreven." -#: src/Module/Settings/Account.php:602 +#: src/Module/Settings/Account.php:593 msgid "Only expire posts by others" msgstr "Laat alleen berichten van anderen verlopen" -#: src/Module/Settings/Account.php:602 +#: src/Module/Settings/Account.php:593 msgid "" "When activated, your own posts never expire. Then the settings above are " "only valid for posts you received." msgstr "Indien geactiveerd, vervallen je eigen berichten nooit. Dan zijn bovenstaande instellingen alleen geldig voor berichten die je hebt ontvangen." -#: src/Module/Settings/Account.php:605 +#: src/Module/Settings/Account.php:596 msgid "Notification Settings" msgstr "Notificatie Instellingen" -#: src/Module/Settings/Account.php:606 +#: src/Module/Settings/Account.php:597 msgid "Send a notification email when:" msgstr "Stuur een notificatie e-mail wanneer:" -#: src/Module/Settings/Account.php:607 +#: src/Module/Settings/Account.php:598 msgid "You receive an introduction" msgstr "Je ontvangt een vriendschaps- of connectieverzoek" -#: src/Module/Settings/Account.php:608 +#: src/Module/Settings/Account.php:599 msgid "Your introductions are confirmed" msgstr "Jouw vriendschaps- of connectieverzoeken zijn bevestigd" -#: src/Module/Settings/Account.php:609 +#: src/Module/Settings/Account.php:600 msgid "Someone writes on your profile wall" msgstr "Iemand iets op je tijdlijn schrijft" -#: src/Module/Settings/Account.php:610 +#: src/Module/Settings/Account.php:601 msgid "Someone writes a followup comment" msgstr "Iemand een reactie schrijft" -#: src/Module/Settings/Account.php:611 +#: src/Module/Settings/Account.php:602 msgid "You receive a private message" msgstr "Je een privé-bericht ontvangt" -#: src/Module/Settings/Account.php:612 +#: src/Module/Settings/Account.php:603 msgid "You receive a friend suggestion" msgstr "Je een suggestie voor een vriendschap ontvangt" -#: src/Module/Settings/Account.php:613 +#: src/Module/Settings/Account.php:604 msgid "You are tagged in a post" msgstr "Je expliciet in een bericht bent genoemd" -#: src/Module/Settings/Account.php:615 +#: src/Module/Settings/Account.php:606 msgid "Create a desktop notification when:" msgstr "" -#: src/Module/Settings/Account.php:616 +#: src/Module/Settings/Account.php:607 msgid "Someone tagged you" msgstr "" -#: src/Module/Settings/Account.php:617 +#: src/Module/Settings/Account.php:608 msgid "Someone directly commented on your post" msgstr "" -#: src/Module/Settings/Account.php:618 +#: src/Module/Settings/Account.php:609 msgid "Someone liked your content" msgstr "" -#: src/Module/Settings/Account.php:618 src/Module/Settings/Account.php:619 +#: src/Module/Settings/Account.php:609 src/Module/Settings/Account.php:610 msgid "Can only be enabled, when the direct comment notification is enabled." msgstr "" -#: src/Module/Settings/Account.php:619 +#: src/Module/Settings/Account.php:610 msgid "Someone shared your content" msgstr "" -#: src/Module/Settings/Account.php:620 +#: src/Module/Settings/Account.php:611 msgid "Someone commented in your thread" msgstr "" -#: src/Module/Settings/Account.php:621 +#: src/Module/Settings/Account.php:612 msgid "Someone commented in a thread where you commented" msgstr "" -#: src/Module/Settings/Account.php:622 +#: src/Module/Settings/Account.php:613 msgid "Someone commented in a thread where you interacted" msgstr "" -#: src/Module/Settings/Account.php:624 +#: src/Module/Settings/Account.php:615 msgid "Activate desktop notifications" msgstr "Activeer desktop notificaties" -#: src/Module/Settings/Account.php:624 +#: src/Module/Settings/Account.php:615 msgid "Show desktop popup on new notifications" msgstr "Toon desktop pop-up bij nieuwe notificaties" -#: src/Module/Settings/Account.php:628 +#: src/Module/Settings/Account.php:619 msgid "Text-only notification emails" msgstr "Alleen-tekst notificatie emails" -#: src/Module/Settings/Account.php:630 +#: src/Module/Settings/Account.php:621 msgid "Send text only notification emails, without the html part" msgstr "Stuur alleen-tekst notificatie emails, zonder het html gedeelte" -#: src/Module/Settings/Account.php:634 +#: src/Module/Settings/Account.php:625 msgid "Show detailled notifications" msgstr "Toon gedetailleerde notificaties" -#: src/Module/Settings/Account.php:636 +#: src/Module/Settings/Account.php:627 msgid "" "Per default, notifications are condensed to a single notification per item. " "When enabled every notification is displayed." msgstr "Standaard worden notificaties samengevoegd in een enkele notificatie per item. Als je deze parameter activeert wordt elke notificatie getoond." -#: src/Module/Settings/Account.php:640 +#: src/Module/Settings/Account.php:631 msgid "Show notifications of ignored contacts" msgstr "" -#: src/Module/Settings/Account.php:642 +#: src/Module/Settings/Account.php:633 msgid "" "You don't see posts from ignored contacts. But you still see their comments." " This setting controls if you want to still receive regular notifications " "that are caused by ignored contacts or not." msgstr "" -#: src/Module/Settings/Account.php:645 +#: src/Module/Settings/Account.php:636 msgid "Advanced Account/Page Type Settings" msgstr "Geavanceerde Account/Pagina Type Instellingen" -#: src/Module/Settings/Account.php:646 +#: src/Module/Settings/Account.php:637 msgid "Change the behaviour of this account for special situations" msgstr "Pas het gedrag van dit account aan voor speciale situaties" -#: src/Module/Settings/Account.php:649 +#: src/Module/Settings/Account.php:640 msgid "Import Contacts" msgstr "Importeer contacten" -#: src/Module/Settings/Account.php:650 +#: src/Module/Settings/Account.php:641 msgid "" "Upload a CSV file that contains the handle of your followed accounts in the " "first column you exported from the old account." msgstr "Upload een CSV-bestand met de handle van uw gevolgde gebruikers in de eerste kolom die u uit de oude gebruiker hebt geëxporteerd." -#: src/Module/Settings/Account.php:651 +#: src/Module/Settings/Account.php:642 msgid "Upload File" msgstr "Upload bestand" -#: src/Module/Settings/Account.php:654 +#: src/Module/Settings/Account.php:645 msgid "Relocate" msgstr "Verhuis" -#: src/Module/Settings/Account.php:655 +#: src/Module/Settings/Account.php:646 msgid "" "If you have moved this profile from another server, and some of your " "contacts don't receive your updates, try pushing this button." msgstr "Als je je profiel van een andere server hebt verhuisd, en er zijn contacten die geen updates van je ontvangen, probeer dan eens deze knop." -#: src/Module/Settings/Account.php:656 +#: src/Module/Settings/Account.php:647 msgid "Resend relocate message to contacts" msgstr "Stuur verhuis boodschap naar contacten" -#: src/Module/Settings/Addons.php:86 +#: src/Module/Settings/Addons.php:72 msgid "Addon Settings" msgstr "Addon instellingen" -#: src/Module/Settings/Addons.php:87 +#: src/Module/Settings/Addons.php:73 msgid "No Addon settings configured" msgstr "Geen Addon instellingen geconfigureerd" -#: src/Module/Settings/Channels.php:148 +#: src/Module/Settings/Channels.php:134 msgid "" "This page can be used to define the channels that will automatically be " "reshared by your account." msgstr "" -#: src/Module/Settings/Channels.php:153 +#: src/Module/Settings/Channels.php:139 msgid "This page can be used to define your own channels." msgstr "" -#: src/Module/Settings/Channels.php:182 +#: src/Module/Settings/Channels.php:168 msgid "Publish" msgstr "" -#: src/Module/Settings/Channels.php:182 +#: src/Module/Settings/Channels.php:168 msgid "" "When selected, the channel results are reshared. This only works for public " "ActivityPub posts from the public timeline or the user defined circles." msgstr "" -#: src/Module/Settings/Channels.php:190 src/Module/Settings/Channels.php:211 -#: src/Module/Settings/Display.php:338 +#: src/Module/Settings/Channels.php:176 src/Module/Settings/Channels.php:197 +#: src/Module/Settings/Display.php:324 msgid "Label" msgstr "" -#: src/Module/Settings/Channels.php:191 src/Module/Settings/Channels.php:212 -#: src/Module/Settings/Display.php:339 -#: src/Module/Settings/TwoFactor/AppSpecific.php:137 +#: src/Module/Settings/Channels.php:177 src/Module/Settings/Channels.php:198 +#: src/Module/Settings/Display.php:325 +#: src/Module/Settings/TwoFactor/AppSpecific.php:123 msgid "Description" msgstr "Omschrijving" -#: src/Module/Settings/Channels.php:192 src/Module/Settings/Channels.php:213 +#: src/Module/Settings/Channels.php:178 src/Module/Settings/Channels.php:199 msgid "Access Key" msgstr "" -#: src/Module/Settings/Channels.php:193 src/Module/Settings/Channels.php:214 +#: src/Module/Settings/Channels.php:179 src/Module/Settings/Channels.php:200 msgid "Circle/Channel" msgstr "" -#: src/Module/Settings/Channels.php:194 src/Module/Settings/Channels.php:215 +#: src/Module/Settings/Channels.php:180 src/Module/Settings/Channels.php:201 msgid "Include Tags" msgstr "" -#: src/Module/Settings/Channels.php:195 src/Module/Settings/Channels.php:216 +#: src/Module/Settings/Channels.php:181 src/Module/Settings/Channels.php:202 msgid "Exclude Tags" msgstr "" -#: src/Module/Settings/Channels.php:196 src/Module/Settings/Channels.php:217 +#: src/Module/Settings/Channels.php:182 src/Module/Settings/Channels.php:203 msgid "Minimum Size" msgstr "" -#: src/Module/Settings/Channels.php:197 src/Module/Settings/Channels.php:218 +#: src/Module/Settings/Channels.php:183 src/Module/Settings/Channels.php:204 msgid "Maximum Size" msgstr "" -#: src/Module/Settings/Channels.php:198 src/Module/Settings/Channels.php:219 +#: src/Module/Settings/Channels.php:184 src/Module/Settings/Channels.php:205 msgid "Full Text Search" msgstr "" -#: src/Module/Settings/Channels.php:202 src/Module/Settings/Channels.php:223 +#: src/Module/Settings/Channels.php:188 src/Module/Settings/Channels.php:209 msgid "Select all languages that you want to see in this channel." msgstr "" -#: src/Module/Settings/Channels.php:204 +#: src/Module/Settings/Channels.php:190 msgid "Delete channel" msgstr "" -#: src/Module/Settings/Channels.php:204 +#: src/Module/Settings/Channels.php:190 msgid "Check to delete this entry from the channel list" msgstr "" -#: src/Module/Settings/Channels.php:211 +#: src/Module/Settings/Channels.php:197 msgid "Short name for the channel. It is displayed on the channels widget." msgstr "" -#: src/Module/Settings/Channels.php:212 +#: src/Module/Settings/Channels.php:198 msgid "This should describe the content of the channel in a few word." msgstr "" -#: src/Module/Settings/Channels.php:213 +#: src/Module/Settings/Channels.php:199 msgid "" "When you want to access this channel via an access key, you can define it " "here. Pay attention to not use an already used one." msgstr "" -#: src/Module/Settings/Channels.php:214 +#: src/Module/Settings/Channels.php:200 msgid "Select a circle or channel, that your channel should be based on." msgstr "" -#: src/Module/Settings/Channels.php:215 +#: src/Module/Settings/Channels.php:201 msgid "" "Comma separated list of tags. A post will be used when it contains any of " "the listed tags." msgstr "" -#: src/Module/Settings/Channels.php:216 +#: src/Module/Settings/Channels.php:202 msgid "" "Comma separated list of tags. If a post contain any of these tags, then it " "will not be part of nthis channel." msgstr "" -#: src/Module/Settings/Channels.php:217 +#: src/Module/Settings/Channels.php:203 msgid "" "Minimum post size. Leave empty for no minimum size. The size is calculated " "without links, attached posts, mentions or hashtags." msgstr "" -#: src/Module/Settings/Channels.php:218 +#: src/Module/Settings/Channels.php:204 msgid "" "Maximum post size. Leave empty for no maximum size. The size is calculated " "without links, attached posts, mentions or hashtags." msgstr "" -#: src/Module/Settings/Channels.php:219 +#: src/Module/Settings/Channels.php:205 #, php-format msgid "" "Search terms for the body, supports the \"boolean mode\" operators from " @@ -10342,576 +10336,589 @@ msgid "" "keywords: %s" msgstr "" -#: src/Module/Settings/Channels.php:220 +#: src/Module/Settings/Channels.php:206 msgid "Check to display images in the channel." msgstr "" -#: src/Module/Settings/Channels.php:221 +#: src/Module/Settings/Channels.php:207 msgid "Check to display videos in the channel." msgstr "" -#: src/Module/Settings/Channels.php:222 +#: src/Module/Settings/Channels.php:208 msgid "Check to display audio in the channel." msgstr "" -#: src/Module/Settings/Channels.php:227 +#: src/Module/Settings/Channels.php:213 msgid "Add new entry to the channel list" msgstr "" -#: src/Module/Settings/Channels.php:228 +#: src/Module/Settings/Channels.php:214 msgid "Add" msgstr "Toevoegen" -#: src/Module/Settings/Channels.php:230 +#: src/Module/Settings/Channels.php:216 msgid "Current Entries in the channel list" msgstr "" -#: src/Module/Settings/Channels.php:233 +#: src/Module/Settings/Channels.php:219 msgid "Delete entry from the channel list" msgstr "" -#: src/Module/Settings/Channels.php:234 +#: src/Module/Settings/Channels.php:220 msgid "Delete entry from the channel list?" msgstr "" -#: src/Module/Settings/Connectors.php:120 +#: src/Module/Settings/Connectors.php:108 msgid "Failed to connect with email account using the settings provided." msgstr "Ik kon geen verbinding maken met het e-mail account met de gegeven instellingen." -#: src/Module/Settings/Connectors.php:166 -#: src/Module/Settings/Connectors.php:167 +#: src/Module/Settings/Connectors.php:155 +#: src/Module/Settings/Connectors.php:156 msgid "Diaspora (Socialhome, Hubzilla)" msgstr "Diaspora (Socialhome, Hubzilla)" -#: src/Module/Settings/Connectors.php:166 -#: src/Module/Settings/Connectors.php:170 +#: src/Module/Settings/Connectors.php:155 #, php-format msgid "Built-in support for %s connectivity is enabled" msgstr "" -#: src/Module/Settings/Connectors.php:167 -#: src/Module/Settings/Connectors.php:169 +#: src/Module/Settings/Connectors.php:156 #, php-format msgid "Built-in support for %s connectivity is disabled" msgstr "" -#: src/Module/Settings/Connectors.php:169 -#: src/Module/Settings/Connectors.php:170 -msgid "OStatus (GNU Social)" -msgstr "" - -#: src/Module/Settings/Connectors.php:182 +#: src/Module/Settings/Connectors.php:167 msgid "Email access is disabled on this site." msgstr "E-mailtoegang is op deze website uitgeschakeld." -#: src/Module/Settings/Connectors.php:197 -#: src/Module/Settings/Connectors.php:244 +#: src/Module/Settings/Connectors.php:182 +#: src/Module/Settings/Connectors.php:233 msgid "None" msgstr "Geen" -#: src/Module/Settings/Connectors.php:209 +#: src/Module/Settings/Connectors.php:186 +msgid "Default (Mastodon will display the title and a link to the post)" +msgstr "" + +#: src/Module/Settings/Connectors.php:187 +msgid "" +"Use the summary (Mastodon and some others will treat it as content warning)" +msgstr "" + +#: src/Module/Settings/Connectors.php:188 +msgid "Embed the title in the body" +msgstr "" + +#: src/Module/Settings/Connectors.php:199 msgid "General Social Media Settings" msgstr "Algemene Sociale Media Instellingen" -#: src/Module/Settings/Connectors.php:212 +#: src/Module/Settings/Connectors.php:202 msgid "Followed content scope" msgstr "" -#: src/Module/Settings/Connectors.php:214 +#: src/Module/Settings/Connectors.php:204 msgid "" "By default, conversations in which your follows participated but didn't " "start will be shown in your timeline. You can turn this behavior off, or " "expand it to the conversations in which your follows liked a post." msgstr "" -#: src/Module/Settings/Connectors.php:216 +#: src/Module/Settings/Connectors.php:206 msgid "Only conversations my follows started" msgstr "" -#: src/Module/Settings/Connectors.php:217 +#: src/Module/Settings/Connectors.php:207 msgid "Conversations my follows started or commented on (default)" msgstr "" -#: src/Module/Settings/Connectors.php:218 +#: src/Module/Settings/Connectors.php:208 msgid "Any conversation my follows interacted with, including likes" msgstr "" -#: src/Module/Settings/Connectors.php:221 +#: src/Module/Settings/Connectors.php:211 msgid "Collapse sensitive posts" msgstr "" -#: src/Module/Settings/Connectors.php:221 +#: src/Module/Settings/Connectors.php:211 msgid "" "If a post is marked as \"sensitive\", it will be displayed in a collapsed " "state, if this option is enabled." msgstr "" -#: src/Module/Settings/Connectors.php:222 +#: src/Module/Settings/Connectors.php:212 msgid "Enable intelligent shortening" msgstr "" -#: src/Module/Settings/Connectors.php:222 +#: src/Module/Settings/Connectors.php:212 msgid "" "Normally the system tries to find the best link to add to shortened posts. " "If disabled, every shortened post will always point to the original " "friendica post." msgstr "" -#: src/Module/Settings/Connectors.php:223 +#: src/Module/Settings/Connectors.php:213 msgid "Enable simple text shortening" msgstr "" -#: src/Module/Settings/Connectors.php:223 +#: src/Module/Settings/Connectors.php:213 msgid "" "Normally the system shortens posts at the next line feed. If this option is " "enabled then the system will shorten the text at the maximum character " "limit." msgstr "" -#: src/Module/Settings/Connectors.php:224 +#: src/Module/Settings/Connectors.php:214 msgid "Attach the link title" msgstr "Voeg de linktitel toe" -#: src/Module/Settings/Connectors.php:224 +#: src/Module/Settings/Connectors.php:214 msgid "" "When activated, the title of the attached link will be added as a title on " "posts to Diaspora. This is mostly helpful with \"remote-self\" contacts that" " share feed content." msgstr "Indien geactiveerd, wordt de titel van de bijgevoegde link toegevoegd als titel op berichten op Diaspora. Dit is vooral handig bij contacten op afstand die zelf feed-inhoud delen." -#: src/Module/Settings/Connectors.php:225 +#: src/Module/Settings/Connectors.php:215 msgid "API: Use spoiler field as title" msgstr "" -#: src/Module/Settings/Connectors.php:225 +#: src/Module/Settings/Connectors.php:215 msgid "" "When activated, the \"spoiler_text\" field in the API will be used for the " "title on standalone posts. When deactivated it will be used for spoiler " "text. For comments it will always be used for spoiler text." msgstr "" -#: src/Module/Settings/Connectors.php:226 +#: src/Module/Settings/Connectors.php:216 msgid "API: Automatically links at the end of the post as attached posts" msgstr "" -#: src/Module/Settings/Connectors.php:226 +#: src/Module/Settings/Connectors.php:216 msgid "" "When activated, added links at the end of the post react the same way as " "added links in the web interface." msgstr "" -#: src/Module/Settings/Connectors.php:227 +#: src/Module/Settings/Connectors.php:217 +msgid "Article Mode" +msgstr "" + +#: src/Module/Settings/Connectors.php:217 +msgid "" +"Controls how posts with titles are transmitted. Mastodon and its forks don't" +" display the content of these posts if the post is created in the correct " +"(default) way." +msgstr "" + +#: src/Module/Settings/Connectors.php:218 msgid "Your legacy ActivityPub/GNU Social account" msgstr "" -#: src/Module/Settings/Connectors.php:227 +#: src/Module/Settings/Connectors.php:218 msgid "" "If you enter your old account name from an ActivityPub based system or your " "GNU Social/Statusnet account name here (in the format user@domain.tld), your" " contacts will be added automatically. The field will be emptied when done." msgstr "" -#: src/Module/Settings/Connectors.php:229 -msgid "Repair OStatus subscriptions" -msgstr "Herstel OStatus inschrijvingen" - -#: src/Module/Settings/Connectors.php:233 +#: src/Module/Settings/Connectors.php:222 msgid "Email/Mailbox Setup" msgstr "E-mail Instellen" -#: src/Module/Settings/Connectors.php:234 +#: src/Module/Settings/Connectors.php:223 msgid "" "If you wish to communicate with email contacts using this service " "(optional), please specify how to connect to your mailbox." msgstr "Als je wilt communiceren met e-mail contacten via deze dienst (optioneel), moet je hier opgeven hoe ik jouw mailbox kan bereiken." -#: src/Module/Settings/Connectors.php:235 +#: src/Module/Settings/Connectors.php:224 msgid "Last successful email check:" msgstr "Laatste succesvolle e-mail controle:" -#: src/Module/Settings/Connectors.php:237 +#: src/Module/Settings/Connectors.php:226 msgid "IMAP server name:" msgstr "IMAP server naam:" -#: src/Module/Settings/Connectors.php:238 +#: src/Module/Settings/Connectors.php:227 msgid "IMAP port:" msgstr "IMAP poort:" -#: src/Module/Settings/Connectors.php:239 +#: src/Module/Settings/Connectors.php:228 msgid "Security:" msgstr "Beveiliging:" -#: src/Module/Settings/Connectors.php:240 +#: src/Module/Settings/Connectors.php:229 msgid "Email login name:" msgstr "E-mail login naam:" -#: src/Module/Settings/Connectors.php:241 +#: src/Module/Settings/Connectors.php:230 msgid "Email password:" msgstr "E-mail wachtwoord:" -#: src/Module/Settings/Connectors.php:242 +#: src/Module/Settings/Connectors.php:231 msgid "Reply-to address:" msgstr "Antwoord adres:" -#: src/Module/Settings/Connectors.php:243 +#: src/Module/Settings/Connectors.php:232 msgid "Send public posts to all email contacts:" msgstr "Openbare posts naar alle e-mail contacten versturen:" -#: src/Module/Settings/Connectors.php:244 +#: src/Module/Settings/Connectors.php:233 msgid "Action after import:" msgstr "Actie na importeren:" -#: src/Module/Settings/Connectors.php:244 +#: src/Module/Settings/Connectors.php:233 msgid "Move to folder" msgstr "Naar map verplaatsen" -#: src/Module/Settings/Connectors.php:245 +#: src/Module/Settings/Connectors.php:234 msgid "Move to folder:" msgstr "Verplaatsen naar map:" -#: src/Module/Settings/Delegation.php:73 +#: src/Module/Settings/Delegation.php:59 msgid "Delegation successfully granted." msgstr "Delegatie met succes verleend." -#: src/Module/Settings/Delegation.php:75 +#: src/Module/Settings/Delegation.php:61 msgid "Parent user not found, unavailable or password doesn't match." msgstr "Brongebruiker niet gevonden, niet beschikbaar of wachtwoord komt niet overeen." -#: src/Module/Settings/Delegation.php:79 +#: src/Module/Settings/Delegation.php:65 msgid "Delegation successfully revoked." msgstr "Delegatie is ingetrokken." -#: src/Module/Settings/Delegation.php:98 -#: src/Module/Settings/Delegation.php:120 +#: src/Module/Settings/Delegation.php:84 +#: src/Module/Settings/Delegation.php:106 msgid "" "Delegated administrators can view but not change delegation permissions." msgstr "Gedelegeerde beheerders kunnen delegatierechten bekijken, maar niet wijzigen." -#: src/Module/Settings/Delegation.php:112 +#: src/Module/Settings/Delegation.php:98 msgid "Delegate user not found." msgstr "Gemachtigde gebruiker niet gevonden." -#: src/Module/Settings/Delegation.php:169 +#: src/Module/Settings/Delegation.php:155 msgid "No parent user" msgstr "Ouderlijke gebruiker ontbreekt" -#: src/Module/Settings/Delegation.php:180 -#: src/Module/Settings/Delegation.php:191 +#: src/Module/Settings/Delegation.php:166 +#: src/Module/Settings/Delegation.php:177 msgid "Parent User" msgstr "Ouderlijke gebruiker" -#: src/Module/Settings/Delegation.php:188 +#: src/Module/Settings/Delegation.php:174 msgid "Additional Accounts" msgstr "Toegevoegde gebruikers" -#: src/Module/Settings/Delegation.php:189 +#: src/Module/Settings/Delegation.php:175 msgid "" "Register additional accounts that are automatically connected to your " "existing account so you can manage them from this account." msgstr "Registreer extra gebruikers die automatisch zijn verbonden met uw bestaande gebruiker, zodat u ze vanuit deze gebruiker kunt beheren." -#: src/Module/Settings/Delegation.php:190 +#: src/Module/Settings/Delegation.php:176 msgid "Register an additional account" msgstr "Registreer een toegevoegde gebruiker" -#: src/Module/Settings/Delegation.php:192 +#: src/Module/Settings/Delegation.php:178 msgid "" "Parent users have total control about this account, including the account " "settings. Please double check whom you give this access." msgstr "Ouderlijke gebruikers hebben totale controle over dit account, de account instellingen inbegrepen. Dubbel check dus alstublieft aan wie je deze toegang geeft." -#: src/Module/Settings/Delegation.php:195 +#: src/Module/Settings/Delegation.php:181 msgid "Delegates" msgstr "Gemachtigden" -#: src/Module/Settings/Delegation.php:196 +#: src/Module/Settings/Delegation.php:182 msgid "" "Delegates are able to manage all aspects of this account/page except for " "basic account settings. Please do not delegate your personal account to " "anybody that you do not trust completely." msgstr "Personen waaraan het beheer is uitbesteed kunnen alle onderdelen van een account/pagina beheren, behalve de basisinstellingen van een account. Besteed je persoonlijke account daarom niet uit aan personen die je niet volledig vertrouwt." -#: src/Module/Settings/Delegation.php:197 +#: src/Module/Settings/Delegation.php:183 msgid "Existing Page Delegates" msgstr "Bestaande personen waaraan het paginabeheer is uitbesteed" -#: src/Module/Settings/Delegation.php:198 +#: src/Module/Settings/Delegation.php:184 msgid "Potential Delegates" msgstr "Mogelijke personen waaraan het paginabeheer kan worden uitbesteed " -#: src/Module/Settings/Delegation.php:199 +#: src/Module/Settings/Delegation.php:185 msgid "No entries." msgstr "Geen gegevens." -#: src/Module/Settings/Display.php:183 +#: src/Module/Settings/Display.php:169 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:209 #, php-format msgid "%s - (Unsupported)" msgstr "%s - (Niet ondersteund)" -#: src/Module/Settings/Display.php:260 +#: src/Module/Settings/Display.php:246 msgid "No preview" msgstr "" -#: src/Module/Settings/Display.php:261 +#: src/Module/Settings/Display.php:247 msgid "No image" msgstr "" -#: src/Module/Settings/Display.php:262 +#: src/Module/Settings/Display.php:248 msgid "Small Image" msgstr "" -#: src/Module/Settings/Display.php:263 +#: src/Module/Settings/Display.php:249 msgid "Large Image" msgstr "" -#: src/Module/Settings/Display.php:308 +#: src/Module/Settings/Display.php:294 msgid "Display Settings" msgstr "Scherminstellingen" -#: src/Module/Settings/Display.php:310 +#: src/Module/Settings/Display.php:296 msgid "General Theme Settings" msgstr "Algemene Thema Instellingen" -#: src/Module/Settings/Display.php:311 +#: src/Module/Settings/Display.php:297 msgid "Custom Theme Settings" msgstr "Speciale Thema Instellingen" -#: src/Module/Settings/Display.php:312 +#: src/Module/Settings/Display.php:298 msgid "Content Settings" msgstr "Content Instellingen" -#: src/Module/Settings/Display.php:313 view/theme/duepuntozero/config.php:86 -#: view/theme/frio/config.php:151 view/theme/quattro/config.php:88 -#: view/theme/vier/config.php:136 +#: src/Module/Settings/Display.php:299 view/theme/duepuntozero/config.php:74 +#: view/theme/frio/config.php:139 view/theme/quattro/config.php:76 +#: view/theme/vier/config.php:124 msgid "Theme settings" msgstr "Thema-instellingen" -#: src/Module/Settings/Display.php:314 +#: src/Module/Settings/Display.php:300 msgid "Timelines" msgstr "" -#: src/Module/Settings/Display.php:321 +#: src/Module/Settings/Display.php:307 msgid "Display Theme:" msgstr "Schermthema:" -#: src/Module/Settings/Display.php:322 +#: src/Module/Settings/Display.php:308 msgid "Mobile Theme:" msgstr "Mobiel thema:" -#: src/Module/Settings/Display.php:325 +#: src/Module/Settings/Display.php:311 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:311 src/Module/Settings/Display.php:312 msgid "Maximum of 100 items" msgstr "Maximum 100 items" -#: src/Module/Settings/Display.php:326 +#: src/Module/Settings/Display.php:312 msgid "Number of items to display per page when viewed from mobile device:" msgstr "Aantal items per pagina als je een mobiel toestel gebruikt:" -#: src/Module/Settings/Display.php:327 +#: src/Module/Settings/Display.php:313 msgid "Update browser every xx seconds" msgstr "Browser elke xx seconden verversen" -#: src/Module/Settings/Display.php:327 +#: src/Module/Settings/Display.php:313 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:314 msgid "Display emoticons" msgstr "" -#: src/Module/Settings/Display.php:328 +#: src/Module/Settings/Display.php:314 msgid "When enabled, emoticons are replaced with matching symbols." msgstr "" -#: src/Module/Settings/Display.php:329 +#: src/Module/Settings/Display.php:315 msgid "Infinite scroll" msgstr "Oneindig scrollen" -#: src/Module/Settings/Display.php:329 +#: src/Module/Settings/Display.php:315 msgid "Automatic fetch new items when reaching the page end." msgstr "" -#: src/Module/Settings/Display.php:330 +#: src/Module/Settings/Display.php:316 msgid "Enable Smart Threading" msgstr "" -#: src/Module/Settings/Display.php:330 +#: src/Module/Settings/Display.php:316 msgid "Enable the automatic suppression of extraneous thread indentation." msgstr "" -#: src/Module/Settings/Display.php:331 +#: src/Module/Settings/Display.php:317 msgid "Display the Dislike feature" msgstr "" -#: src/Module/Settings/Display.php:331 +#: src/Module/Settings/Display.php:317 msgid "" "Display the Dislike button and dislike reactions on posts and comments." msgstr "" -#: src/Module/Settings/Display.php:332 +#: src/Module/Settings/Display.php:318 msgid "Display the resharer" msgstr "" -#: src/Module/Settings/Display.php:332 +#: src/Module/Settings/Display.php:318 msgid "Display the first resharer as icon and text on a reshared item." msgstr "" -#: src/Module/Settings/Display.php:333 +#: src/Module/Settings/Display.php:319 msgid "Stay local" msgstr "" -#: src/Module/Settings/Display.php:333 +#: src/Module/Settings/Display.php:319 msgid "Don't go to a remote system when following a contact link." msgstr "" -#: src/Module/Settings/Display.php:334 +#: src/Module/Settings/Display.php:320 msgid "Show the post deletion checkbox" msgstr "" -#: src/Module/Settings/Display.php:334 +#: src/Module/Settings/Display.php:320 msgid "Display the checkbox for the post deletion on the network page." msgstr "" -#: src/Module/Settings/Display.php:335 +#: src/Module/Settings/Display.php:321 msgid "DIsplay the event list" msgstr "" -#: src/Module/Settings/Display.php:335 +#: src/Module/Settings/Display.php:321 msgid "Display the birthday reminder and event list on the network page." msgstr "" -#: src/Module/Settings/Display.php:336 +#: src/Module/Settings/Display.php:322 msgid "Link preview mode" msgstr "" -#: src/Module/Settings/Display.php:336 +#: src/Module/Settings/Display.php:322 msgid "Appearance of the link preview that is added to each post with a link." msgstr "" -#: src/Module/Settings/Display.php:341 +#: src/Module/Settings/Display.php:327 msgid "Bookmark" msgstr "" -#: src/Module/Settings/Display.php:343 +#: src/Module/Settings/Display.php:329 msgid "" "Enable timelines that you want to see in the channels widget. Bookmark " "timelines that you want to see in the top menu." msgstr "" -#: src/Module/Settings/Display.php:345 +#: src/Module/Settings/Display.php:331 msgid "Channel languages:" msgstr "" -#: src/Module/Settings/Display.php:345 +#: src/Module/Settings/Display.php:331 msgid "Select all languages that you want to see in your channels." msgstr "" -#: src/Module/Settings/Display.php:347 +#: src/Module/Settings/Display.php:333 msgid "Beginning of week:" msgstr "Begin van de week:" -#: src/Module/Settings/Display.php:348 +#: src/Module/Settings/Display.php:334 msgid "Default calendar view:" msgstr "" -#: src/Module/Settings/Features.php:73 +#: src/Module/Settings/Features.php:59 msgid "Additional Features" msgstr "Extra functies" -#: src/Module/Settings/OAuth.php:71 +#: src/Module/Settings/OAuth.php:57 msgid "Connected Apps" msgstr "Verbonden applicaties" -#: src/Module/Settings/OAuth.php:75 +#: src/Module/Settings/OAuth.php:61 msgid "Remove authorization" msgstr "Verwijder authorisatie" -#: src/Module/Settings/Profile/Index.php:116 +#: src/Module/Settings/Profile/Index.php:102 msgid "Display Name is required." msgstr "" -#: src/Module/Settings/Profile/Index.php:167 +#: src/Module/Settings/Profile/Index.php:156 msgid "Profile couldn't be updated." msgstr "Profiel kan niet worden bijgewerkt." -#: src/Module/Settings/Profile/Index.php:205 -#: src/Module/Settings/Profile/Index.php:226 +#: src/Module/Settings/Profile/Index.php:196 +#: src/Module/Settings/Profile/Index.php:217 msgid "Label:" msgstr "Label:" -#: src/Module/Settings/Profile/Index.php:206 -#: src/Module/Settings/Profile/Index.php:227 +#: src/Module/Settings/Profile/Index.php:197 +#: src/Module/Settings/Profile/Index.php:218 msgid "Value:" msgstr "Waarde:" -#: src/Module/Settings/Profile/Index.php:217 -#: src/Module/Settings/Profile/Index.php:238 +#: src/Module/Settings/Profile/Index.php:208 +#: src/Module/Settings/Profile/Index.php:229 msgid "Field Permissions" msgstr "Veldrechten" -#: src/Module/Settings/Profile/Index.php:218 -#: src/Module/Settings/Profile/Index.php:239 +#: src/Module/Settings/Profile/Index.php:209 +#: src/Module/Settings/Profile/Index.php:230 msgid "(click to open/close)" msgstr "(klik om te openen/sluiten)" -#: src/Module/Settings/Profile/Index.php:224 +#: src/Module/Settings/Profile/Index.php:215 msgid "Add a new profile field" msgstr "Voeg nieuw profielveld toe" -#: src/Module/Settings/Profile/Index.php:247 +#: src/Module/Settings/Profile/Index.php:238 msgid "" "The homepage is verified. A rel=\"me\" link back to your Friendica profile " "page was found on the homepage." msgstr "" -#: src/Module/Settings/Profile/Index.php:249 +#: src/Module/Settings/Profile/Index.php:240 #, php-format msgid "" "To verify your homepage, add a rel=\"me\" link to it, pointing to your " "profile URL (%s)." msgstr "" -#: src/Module/Settings/Profile/Index.php:255 +#: src/Module/Settings/Profile/Index.php:246 msgid "Profile Actions" msgstr "Profiel Acties" -#: src/Module/Settings/Profile/Index.php:256 +#: src/Module/Settings/Profile/Index.php:247 msgid "Edit Profile Details" msgstr "Profieldetails bewerken" -#: src/Module/Settings/Profile/Index.php:258 +#: src/Module/Settings/Profile/Index.php:249 msgid "Change Profile Photo" msgstr "Profielfoto wijzigen" -#: src/Module/Settings/Profile/Index.php:261 +#: src/Module/Settings/Profile/Index.php:252 msgid "Profile picture" msgstr "Profiel foto" -#: src/Module/Settings/Profile/Index.php:262 +#: src/Module/Settings/Profile/Index.php:253 msgid "Location" msgstr "Plaats" -#: src/Module/Settings/Profile/Index.php:263 src/Util/Temporal.php:97 -#: src/Util/Temporal.php:99 +#: src/Module/Settings/Profile/Index.php:254 src/Util/Temporal.php:83 +#: src/Util/Temporal.php:85 msgid "Miscellaneous" msgstr "Diversen" -#: src/Module/Settings/Profile/Index.php:264 +#: src/Module/Settings/Profile/Index.php:255 msgid "Custom Profile Fields" msgstr "Aangepaste profielvelden" -#: src/Module/Settings/Profile/Index.php:265 src/Module/Welcome.php:58 +#: src/Module/Settings/Profile/Index.php:256 src/Module/Welcome.php:44 msgid "Upload Profile Photo" msgstr "Profielfoto uploaden" -#: src/Module/Settings/Profile/Index.php:266 +#: src/Module/Settings/Profile/Index.php:257 #, php-format msgid "" "

Custom fields appear on your profile page.

\n" @@ -10921,396 +10928,396 @@ msgid "" "\t\t\t\t

Non-public fields can only be seen by the selected Friendica contacts or the Friendica contacts in the selected circles.

" msgstr "" -#: src/Module/Settings/Profile/Index.php:286 +#: src/Module/Settings/Profile/Index.php:277 msgid "Street Address:" msgstr "Postadres:" -#: src/Module/Settings/Profile/Index.php:287 +#: src/Module/Settings/Profile/Index.php:278 msgid "Locality/City:" msgstr "Gemeente/Stad:" -#: src/Module/Settings/Profile/Index.php:288 +#: src/Module/Settings/Profile/Index.php:279 msgid "Region/State:" msgstr "Regio/Staat:" -#: src/Module/Settings/Profile/Index.php:289 +#: src/Module/Settings/Profile/Index.php:280 msgid "Postal/Zip Code:" msgstr "Postcode:" -#: src/Module/Settings/Profile/Index.php:290 +#: src/Module/Settings/Profile/Index.php:281 msgid "Country:" msgstr "Land:" -#: src/Module/Settings/Profile/Index.php:292 +#: src/Module/Settings/Profile/Index.php:283 msgid "XMPP (Jabber) address:" msgstr "XMPP (Jabber) adres:" -#: src/Module/Settings/Profile/Index.php:292 +#: src/Module/Settings/Profile/Index.php:283 msgid "" "The XMPP address will be published so that people can follow you there." msgstr "" -#: src/Module/Settings/Profile/Index.php:293 +#: src/Module/Settings/Profile/Index.php:284 msgid "Matrix (Element) address:" msgstr "" -#: src/Module/Settings/Profile/Index.php:293 +#: src/Module/Settings/Profile/Index.php:284 msgid "" "The Matrix address will be published so that people can follow you there." msgstr "" -#: src/Module/Settings/Profile/Index.php:294 +#: src/Module/Settings/Profile/Index.php:285 msgid "Homepage URL:" msgstr "Adres tijdlijn:" -#: src/Module/Settings/Profile/Index.php:295 +#: src/Module/Settings/Profile/Index.php:286 msgid "Public Keywords:" msgstr "Publieke Sleutelwoorden:" -#: src/Module/Settings/Profile/Index.php:295 +#: src/Module/Settings/Profile/Index.php:286 msgid "(Used for suggesting potential friends, can be seen by others)" msgstr "(Gebruikt om mogelijke vrienden voor te stellen, kan door anderen gezien worden)" -#: src/Module/Settings/Profile/Index.php:296 +#: src/Module/Settings/Profile/Index.php:287 msgid "Private Keywords:" msgstr "Privé Sleutelwoorden:" -#: src/Module/Settings/Profile/Index.php:296 +#: src/Module/Settings/Profile/Index.php:287 msgid "(Used for searching profiles, never shown to others)" 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:100 +#: src/Module/Settings/Profile/Photo/Crop.php:93 +#: src/Module/Settings/Profile/Photo/Crop.php:111 +#: src/Module/Settings/Profile/Photo/Crop.php:129 +#: src/Module/Settings/Profile/Photo/Index.php:86 #, php-format msgid "Image size reduction [%s] failed." msgstr "Verkleining van de afbeelding [%s] mislukt." -#: src/Module/Settings/Profile/Photo/Crop.php:150 +#: src/Module/Settings/Profile/Photo/Crop.php:136 msgid "" "Shift-reload the page or clear browser cache if the new photo does not " "display immediately." msgstr "Shift-herlaad de pagina, of maak de browser cache leeg als nieuwe foto's niet onmiddellijk verschijnen." -#: src/Module/Settings/Profile/Photo/Crop.php:155 +#: src/Module/Settings/Profile/Photo/Crop.php:141 msgid "Unable to process image" msgstr "Ik kan de afbeelding niet verwerken" -#: src/Module/Settings/Profile/Photo/Crop.php:174 +#: src/Module/Settings/Profile/Photo/Crop.php:160 msgid "Photo not found." msgstr "Foto niet gevonden." -#: src/Module/Settings/Profile/Photo/Crop.php:196 +#: src/Module/Settings/Profile/Photo/Crop.php:182 msgid "Profile picture successfully updated." msgstr "Profielfoto geüpdatet." -#: src/Module/Settings/Profile/Photo/Crop.php:222 -#: src/Module/Settings/Profile/Photo/Crop.php:226 +#: src/Module/Settings/Profile/Photo/Crop.php:208 +#: src/Module/Settings/Profile/Photo/Crop.php:212 msgid "Crop Image" msgstr "Afbeelding bijsnijden" -#: src/Module/Settings/Profile/Photo/Crop.php:223 +#: src/Module/Settings/Profile/Photo/Crop.php:209 msgid "Please adjust the image cropping for optimum viewing." msgstr "Pas het afsnijden van de afbeelding aan voor het beste resultaat." -#: src/Module/Settings/Profile/Photo/Crop.php:225 +#: src/Module/Settings/Profile/Photo/Crop.php:211 msgid "Use Image As Is" msgstr "Gebruik afbeelding zoals deze is" -#: src/Module/Settings/Profile/Photo/Index.php:46 +#: src/Module/Settings/Profile/Photo/Index.php:32 msgid "Missing uploaded image." msgstr "Ontbrekende geüploade afbeelding." -#: src/Module/Settings/Profile/Photo/Index.php:123 +#: src/Module/Settings/Profile/Photo/Index.php:109 msgid "Profile Picture Settings" msgstr "Profiel afbeelding instellingen" -#: src/Module/Settings/Profile/Photo/Index.php:124 +#: src/Module/Settings/Profile/Photo/Index.php:110 msgid "Current Profile Picture" msgstr "Huidige profielafbeelding" -#: src/Module/Settings/Profile/Photo/Index.php:125 +#: src/Module/Settings/Profile/Photo/Index.php:111 msgid "Upload Profile Picture" msgstr "Upload profiel afbeelding" -#: src/Module/Settings/Profile/Photo/Index.php:126 +#: src/Module/Settings/Profile/Photo/Index.php:112 msgid "Upload Picture:" msgstr "Upload afbeelding" -#: src/Module/Settings/Profile/Photo/Index.php:131 +#: src/Module/Settings/Profile/Photo/Index.php:117 msgid "or" msgstr "of" -#: src/Module/Settings/Profile/Photo/Index.php:133 +#: src/Module/Settings/Profile/Photo/Index.php:119 msgid "skip this step" msgstr "Deze stap overslaan" -#: src/Module/Settings/Profile/Photo/Index.php:135 +#: src/Module/Settings/Profile/Photo/Index.php:121 msgid "select a photo from your photo albums" msgstr "Kies een foto uit je fotoalbums" -#: src/Module/Settings/RemoveMe.php:76 +#: src/Module/Settings/RemoveMe.php:62 msgid "" "There was a validation error, please make sure you're logged in with the " "account you want to remove and try again." msgstr "" -#: src/Module/Settings/RemoveMe.php:76 +#: src/Module/Settings/RemoveMe.php:62 msgid "If this error persists, please contact your administrator." msgstr "" -#: src/Module/Settings/RemoveMe.php:90 -#: src/Navigation/Notifications/Repository/Notify.php:471 -#: src/Navigation/Notifications/Repository/Notify.php:492 +#: src/Module/Settings/RemoveMe.php:76 +#: src/Navigation/Notifications/Repository/Notify.php:457 +#: src/Navigation/Notifications/Repository/Notify.php:478 msgid "[Friendica System Notify]" msgstr "[Friendica systeem notificatie]" -#: src/Module/Settings/RemoveMe.php:90 +#: src/Module/Settings/RemoveMe.php:76 msgid "User deleted their account" msgstr "Gebruiker verwijderde zijn of haar account" -#: src/Module/Settings/RemoveMe.php:91 +#: src/Module/Settings/RemoveMe.php:77 msgid "" "On your Friendica node an user deleted their account. Please ensure that " "their data is removed from the backups." msgstr "Een gebruiker heeft zijn of haar account verwijderd op je Friendica node. Zorg er zeker voor dat zijn of haar data verwijderd is uit de backups." -#: src/Module/Settings/RemoveMe.php:92 +#: src/Module/Settings/RemoveMe.php:78 #, php-format msgid "The user id is %d" msgstr "De gebruikers id is %d" -#: src/Module/Settings/RemoveMe.php:105 +#: src/Module/Settings/RemoveMe.php:91 msgid "Your account has been successfully removed. Bye bye!" msgstr "" -#: src/Module/Settings/RemoveMe.php:130 +#: src/Module/Settings/RemoveMe.php:116 msgid "Remove My Account" msgstr "Verwijder mijn account" -#: src/Module/Settings/RemoveMe.php:131 +#: src/Module/Settings/RemoveMe.php:117 msgid "" "This will completely remove your account. Once this has been done it is not " "recoverable." msgstr "Dit zal je account volledig verwijderen. Dit kan niet hersteld worden als het eenmaal uitgevoerd is." -#: src/Module/Settings/RemoveMe.php:136 +#: src/Module/Settings/RemoveMe.php:122 msgid "Please enter your password for verification:" msgstr "Voer je wachtwoord in voor verificatie:" -#: src/Module/Settings/Server/Action.php:60 +#: src/Module/Settings/Server/Action.php:46 msgid "Do you want to ignore this server?" msgstr "" -#: src/Module/Settings/Server/Action.php:64 +#: src/Module/Settings/Server/Action.php:50 msgid "Do you want to unignore this server?" msgstr "" -#: src/Module/Settings/Server/Action.php:74 -#: src/Module/Settings/Server/Index.php:104 +#: src/Module/Settings/Server/Action.php:60 +#: src/Module/Settings/Server/Index.php:90 msgid "Remote server settings" msgstr "" -#: src/Module/Settings/Server/Action.php:77 +#: src/Module/Settings/Server/Action.php:63 msgid "Server URL" msgstr "" -#: src/Module/Settings/Server/Index.php:78 +#: src/Module/Settings/Server/Index.php:64 msgid "Settings saved" msgstr "" -#: src/Module/Settings/Server/Index.php:105 +#: src/Module/Settings/Server/Index.php:91 msgid "" "Here you can find all the remote servers you have taken individual " "moderation actions against. For a list of servers your node has blocked, " "please check out the Information page." msgstr "" -#: src/Module/Settings/Server/Index.php:110 +#: src/Module/Settings/Server/Index.php:96 msgid "Delete all your settings for the remote server" msgstr "" -#: src/Module/Settings/Server/Index.php:111 +#: src/Module/Settings/Server/Index.php:97 msgid "Save changes" msgstr "" -#: src/Module/Settings/TwoFactor/AppSpecific.php:69 -#: src/Module/Settings/TwoFactor/Recovery.php:67 -#: src/Module/Settings/TwoFactor/Trusted.php:70 -#: src/Module/Settings/TwoFactor/Verify.php:72 +#: src/Module/Settings/TwoFactor/AppSpecific.php:55 +#: src/Module/Settings/TwoFactor/Recovery.php:53 +#: src/Module/Settings/TwoFactor/Trusted.php:56 +#: src/Module/Settings/TwoFactor/Verify.php:58 msgid "Please enter your password to access this page." msgstr "Voer uw wachtwoord in om deze pagina te openen." -#: src/Module/Settings/TwoFactor/AppSpecific.php:87 +#: src/Module/Settings/TwoFactor/AppSpecific.php:73 msgid "App-specific password generation failed: The description is empty." msgstr "App-specifiek wachtwoord genereren mislukt: de beschrijving is leeg." -#: src/Module/Settings/TwoFactor/AppSpecific.php:90 +#: src/Module/Settings/TwoFactor/AppSpecific.php:76 msgid "" "App-specific password generation failed: This description already exists." msgstr "App-specifieke wachtwoordgeneratie mislukt: deze beschrijving bestaat al." -#: src/Module/Settings/TwoFactor/AppSpecific.php:94 +#: src/Module/Settings/TwoFactor/AppSpecific.php:80 msgid "New app-specific password generated." msgstr "Nieuw app-specifiek wachtwoord gegenereerd." -#: src/Module/Settings/TwoFactor/AppSpecific.php:100 +#: src/Module/Settings/TwoFactor/AppSpecific.php:86 msgid "App-specific passwords successfully revoked." msgstr "App-specifieke wachtwoorden succesvol ingetrokken." -#: src/Module/Settings/TwoFactor/AppSpecific.php:110 +#: src/Module/Settings/TwoFactor/AppSpecific.php:96 msgid "App-specific password successfully revoked." msgstr "App-specifiek wachtwoord succesvol ingetrokken." -#: src/Module/Settings/TwoFactor/AppSpecific.php:131 +#: src/Module/Settings/TwoFactor/AppSpecific.php:117 msgid "Two-factor app-specific passwords" msgstr "Twee-factor app-specifieke wachtwoorden" -#: src/Module/Settings/TwoFactor/AppSpecific.php:133 +#: src/Module/Settings/TwoFactor/AppSpecific.php:119 msgid "" "

App-specific passwords are randomly generated passwords used instead your" " regular password to authenticate your account on third-party applications " "that don't support two-factor authentication.

" msgstr "

App-specifieke wachtwoorden zijn willekeurig gegenereerde wachtwoorden die in plaats daarvan uw normale wachtwoord worden gebruikt om uw account te verifiëren bij applicaties van derden die geen tweefactorauthenticatie ondersteunen.

" -#: src/Module/Settings/TwoFactor/AppSpecific.php:134 +#: src/Module/Settings/TwoFactor/AppSpecific.php:120 msgid "" "Make sure to copy your new app-specific password now. You won’t be able to " "see it again!" msgstr "Zorg ervoor dat u nu uw nieuwe app-specifieke wachtwoord kopieert. U zult het niet meer kunnen zien!" -#: src/Module/Settings/TwoFactor/AppSpecific.php:138 +#: src/Module/Settings/TwoFactor/AppSpecific.php:124 msgid "Last Used" msgstr "Laatst gebruikt" -#: src/Module/Settings/TwoFactor/AppSpecific.php:139 +#: src/Module/Settings/TwoFactor/AppSpecific.php:125 msgid "Revoke" msgstr "Intrekken" -#: src/Module/Settings/TwoFactor/AppSpecific.php:140 +#: src/Module/Settings/TwoFactor/AppSpecific.php:126 msgid "Revoke All" msgstr "Alles intrekken" -#: src/Module/Settings/TwoFactor/AppSpecific.php:143 +#: src/Module/Settings/TwoFactor/AppSpecific.php:129 msgid "" "When you generate a new app-specific password, you must use it right away, " "it will be shown to you once after you generate it." msgstr "Wanneer u een nieuw app-specifiek wachtwoord genereert, moet u dit meteen gebruiken, het wordt u een keer getoond nadat u het hebt gegenereerd." -#: src/Module/Settings/TwoFactor/AppSpecific.php:144 +#: src/Module/Settings/TwoFactor/AppSpecific.php:130 msgid "Generate new app-specific password" msgstr "Genereer een nieuw app-specifiek wachtwoord" -#: src/Module/Settings/TwoFactor/AppSpecific.php:145 +#: src/Module/Settings/TwoFactor/AppSpecific.php:131 msgid "Friendiqa on my Fairphone 2..." msgstr "" -#: src/Module/Settings/TwoFactor/AppSpecific.php:146 +#: src/Module/Settings/TwoFactor/AppSpecific.php:132 msgid "Generate" msgstr "Genereer" -#: src/Module/Settings/TwoFactor/Index.php:88 +#: src/Module/Settings/TwoFactor/Index.php:74 msgid "Two-factor authentication successfully disabled." msgstr "Twee-factor-authenticatie succesvol uitgeschakeld." -#: src/Module/Settings/TwoFactor/Index.php:141 +#: src/Module/Settings/TwoFactor/Index.php:127 msgid "" "

Use an application on a mobile device to get two-factor authentication " "codes when prompted on login.

" msgstr "

Gebruik een applicatie op een mobiel apparaat om tweefactorauthenticatiecodes te krijgen wanneer daarom wordt gevraagd bij het inloggen.

" -#: src/Module/Settings/TwoFactor/Index.php:145 +#: src/Module/Settings/TwoFactor/Index.php:131 msgid "Authenticator app" msgstr "Authenticatie-app" -#: src/Module/Settings/TwoFactor/Index.php:146 +#: src/Module/Settings/TwoFactor/Index.php:132 msgid "Configured" msgstr "Geconfigureerd" -#: src/Module/Settings/TwoFactor/Index.php:146 +#: src/Module/Settings/TwoFactor/Index.php:132 msgid "Not Configured" msgstr "Niet geconfigureerd" -#: src/Module/Settings/TwoFactor/Index.php:147 +#: src/Module/Settings/TwoFactor/Index.php:133 msgid "

You haven't finished configuring your authenticator app.

" msgstr "

U bent nog niet klaar met het configureren van uw authenticator-app.

" -#: src/Module/Settings/TwoFactor/Index.php:148 +#: src/Module/Settings/TwoFactor/Index.php:134 msgid "

Your authenticator app is correctly configured.

" msgstr "

Uw authenticator-app is correct geconfigureerd.

" -#: src/Module/Settings/TwoFactor/Index.php:150 +#: src/Module/Settings/TwoFactor/Index.php:136 msgid "Recovery codes" msgstr "Herstelcodes" -#: src/Module/Settings/TwoFactor/Index.php:151 +#: src/Module/Settings/TwoFactor/Index.php:137 msgid "Remaining valid codes" msgstr "Resterende geldige codes" -#: src/Module/Settings/TwoFactor/Index.php:153 +#: src/Module/Settings/TwoFactor/Index.php:139 msgid "" "

These one-use codes can replace an authenticator app code in case you " "have lost access to it.

" msgstr "

Deze codes voor eenmalig gebruik kunnen een authenticator-app-code vervangen als u er geen toegang toe heeft.

" -#: src/Module/Settings/TwoFactor/Index.php:155 +#: src/Module/Settings/TwoFactor/Index.php:141 msgid "App-specific passwords" msgstr "App-specifieke wachtwoorden" -#: src/Module/Settings/TwoFactor/Index.php:156 +#: src/Module/Settings/TwoFactor/Index.php:142 msgid "Generated app-specific passwords" msgstr "App-specifieke wachtwoorden gegenereerd" -#: src/Module/Settings/TwoFactor/Index.php:158 +#: src/Module/Settings/TwoFactor/Index.php:144 msgid "" "

These randomly generated passwords allow you to authenticate on apps not " "supporting two-factor authentication.

" msgstr "

Met deze willekeurig gegenereerde wachtwoorden kunt u verifiëren bij apps die geen tweefactorauthenticatie ondersteunen.

" -#: src/Module/Settings/TwoFactor/Index.php:161 +#: src/Module/Settings/TwoFactor/Index.php:147 msgid "Current password:" msgstr "Huidig wachtwoord:" -#: src/Module/Settings/TwoFactor/Index.php:161 +#: src/Module/Settings/TwoFactor/Index.php:147 msgid "" "You need to provide your current password to change two-factor " "authentication settings." msgstr "U moet uw huidige wachtwoord opgeven om de instellingen voor tweefactorauthenticatie te wijzigen." -#: src/Module/Settings/TwoFactor/Index.php:162 +#: src/Module/Settings/TwoFactor/Index.php:148 msgid "Enable two-factor authentication" msgstr "Schakel tweefactorauthenticatie in" -#: src/Module/Settings/TwoFactor/Index.php:163 +#: src/Module/Settings/TwoFactor/Index.php:149 msgid "Disable two-factor authentication" msgstr "Schakel tweefactorauthenticatie uit" -#: src/Module/Settings/TwoFactor/Index.php:164 +#: src/Module/Settings/TwoFactor/Index.php:150 msgid "Show recovery codes" msgstr "Toon herstelcodes" -#: src/Module/Settings/TwoFactor/Index.php:165 +#: src/Module/Settings/TwoFactor/Index.php:151 msgid "Manage app-specific passwords" msgstr "Beheer app-specifieke wachtwoorden" -#: src/Module/Settings/TwoFactor/Index.php:166 +#: src/Module/Settings/TwoFactor/Index.php:152 msgid "Manage trusted browsers" msgstr "" -#: src/Module/Settings/TwoFactor/Index.php:167 +#: src/Module/Settings/TwoFactor/Index.php:153 msgid "Finish app configuration" msgstr "Voltooi de app-configuratie" -#: src/Module/Settings/TwoFactor/Recovery.php:83 +#: src/Module/Settings/TwoFactor/Recovery.php:69 msgid "New recovery codes successfully generated." msgstr "Nieuwe herstelcodes zijn succesvol gegenereerd." -#: src/Module/Settings/TwoFactor/Recovery.php:109 +#: src/Module/Settings/TwoFactor/Recovery.php:95 msgid "Two-factor recovery codes" msgstr "Twee-factor herstelcodes" -#: src/Module/Settings/TwoFactor/Recovery.php:111 +#: src/Module/Settings/TwoFactor/Recovery.php:97 msgid "" "

Recovery codes can be used to access your account in the event you lose " "access to your device and cannot receive two-factor authentication " @@ -11319,68 +11326,68 @@ msgid "" "account.

" msgstr "

Herstelcodes kunnen worden gebruikt om je gebruiker te benaderen in het geval dat je geen toegang meer hebt tot je apparaat en je geen twee-factor autentificatie codes kunt ontvangen.

Bewaar deze op een veilige plek! Als je je apparaat verliest en je hebt geen toegang tot de herstelcodes dan heb je geen toegang meer tot je gebruiker.

" -#: src/Module/Settings/TwoFactor/Recovery.php:113 +#: src/Module/Settings/TwoFactor/Recovery.php:99 msgid "" "When you generate new recovery codes, you must copy the new codes. Your old " "codes won’t work anymore." msgstr "Wanneer u nieuwe herstelcodes genereert, moet u de nieuwe codes kopiëren. Uw oude codes werken niet meer." -#: src/Module/Settings/TwoFactor/Recovery.php:114 +#: src/Module/Settings/TwoFactor/Recovery.php:100 msgid "Generate new recovery codes" msgstr "Genereer nieuwe herstelcodes" -#: src/Module/Settings/TwoFactor/Recovery.php:116 +#: src/Module/Settings/TwoFactor/Recovery.php:102 msgid "Next: Verification" msgstr "Volgende: verificatie" -#: src/Module/Settings/TwoFactor/Trusted.php:87 +#: src/Module/Settings/TwoFactor/Trusted.php:73 msgid "Trusted browsers successfully removed." msgstr "" -#: src/Module/Settings/TwoFactor/Trusted.php:97 +#: src/Module/Settings/TwoFactor/Trusted.php:83 msgid "Trusted browser successfully removed." msgstr "" -#: src/Module/Settings/TwoFactor/Trusted.php:139 +#: src/Module/Settings/TwoFactor/Trusted.php:125 msgid "Two-factor Trusted Browsers" msgstr "" -#: src/Module/Settings/TwoFactor/Trusted.php:140 +#: src/Module/Settings/TwoFactor/Trusted.php:126 msgid "" "Trusted browsers are individual browsers you chose to skip two-factor " "authentication to access Friendica. Please use this feature sparingly, as it" " can negate the benefit of two-factor authentication." msgstr "" -#: src/Module/Settings/TwoFactor/Trusted.php:141 +#: src/Module/Settings/TwoFactor/Trusted.php:127 msgid "Device" msgstr "" -#: src/Module/Settings/TwoFactor/Trusted.php:142 +#: src/Module/Settings/TwoFactor/Trusted.php:128 msgid "OS" msgstr "" -#: src/Module/Settings/TwoFactor/Trusted.php:144 +#: src/Module/Settings/TwoFactor/Trusted.php:130 msgid "Trusted" msgstr "" -#: src/Module/Settings/TwoFactor/Trusted.php:145 +#: src/Module/Settings/TwoFactor/Trusted.php:131 msgid "Created At" msgstr "" -#: src/Module/Settings/TwoFactor/Trusted.php:146 +#: src/Module/Settings/TwoFactor/Trusted.php:132 msgid "Last Use" msgstr "" -#: src/Module/Settings/TwoFactor/Trusted.php:148 +#: src/Module/Settings/TwoFactor/Trusted.php:134 msgid "Remove All" msgstr "" -#: src/Module/Settings/TwoFactor/Verify.php:94 +#: src/Module/Settings/TwoFactor/Verify.php:80 msgid "Two-factor authentication successfully activated." msgstr "Twee-factor-authenticatie succesvol geactiveerd." -#: src/Module/Settings/TwoFactor/Verify.php:128 +#: src/Module/Settings/TwoFactor/Verify.php:114 #, php-format msgid "" "

Or you can submit the authentication settings manually:

\n" @@ -11400,105 +11407,105 @@ msgid "" "" msgstr "

Of je kan de autentificatie instellingen handmatig versturen:

\n
\n\t
Uitgever
\n\t
%s
\n\t
Gebruikersnaam
\n\t
%s
\n\t
Geheime sleutel
\n\t
%s
\n\t
Type
\n\t
Time-based
\n\t
Aantal tekens
\n\t
6
\n\t
Hashing algorithm
\n\t
SHA-1
\n
" -#: src/Module/Settings/TwoFactor/Verify.php:148 +#: src/Module/Settings/TwoFactor/Verify.php:134 msgid "Two-factor code verification" msgstr "Tweeledige codeverificatie" -#: src/Module/Settings/TwoFactor/Verify.php:150 +#: src/Module/Settings/TwoFactor/Verify.php:136 msgid "" "

Please scan this QR Code with your authenticator app and submit the " "provided code.

" msgstr "

Scan deze QR-code met uw authenticator-app en verzend de opgegeven code.

" -#: src/Module/Settings/TwoFactor/Verify.php:152 +#: src/Module/Settings/TwoFactor/Verify.php:138 #, php-format msgid "" "

Or you can open the following URL in your mobile device:

%s

" msgstr "" -#: src/Module/Settings/TwoFactor/Verify.php:159 +#: src/Module/Settings/TwoFactor/Verify.php:145 msgid "Verify code and enable two-factor authentication" msgstr "Controleer de code en schakel tweefactorauthenticatie in" -#: src/Module/Settings/UserExport.php:90 +#: src/Module/Settings/UserExport.php:76 msgid "Export account" msgstr "Account exporteren" -#: src/Module/Settings/UserExport.php:90 +#: src/Module/Settings/UserExport.php:76 msgid "" "Export your account info and contacts. Use this to make a backup of your " "account and/or to move it to another server." msgstr "Je account informatie en contacten exporteren. Gebruik dit om een backup van je account te maken en/of om het te verhuizen naar een andere server." -#: src/Module/Settings/UserExport.php:91 +#: src/Module/Settings/UserExport.php:77 msgid "Export all" msgstr "Alles exporteren" -#: src/Module/Settings/UserExport.php:91 +#: src/Module/Settings/UserExport.php:77 msgid "" "Export your account info, contacts and all your items as json. Could be a " "very big file, and could take a lot of time. Use this to make a full backup " "of your account (photos are not exported)" msgstr "Exporteer uw gebruikersgegevens, contacten en al uw items als json. Kan een heel groot bestand zijn en kan veel tijd in beslag nemen. Gebruik dit om een ​​volledige back-up van uw account te maken (foto's worden niet geëxporteerd)" -#: src/Module/Settings/UserExport.php:92 +#: src/Module/Settings/UserExport.php:78 msgid "Export Contacts to CSV" msgstr "Export Contacten naar CSV" -#: src/Module/Settings/UserExport.php:92 +#: src/Module/Settings/UserExport.php:78 msgid "" "Export the list of the accounts you are following as CSV file. Compatible to" " e.g. Mastodon." msgstr "Exporteer de lijst met de gebruikers die u volgt als CSV-bestand. Compatibel met b.v. Mastodont." -#: src/Module/Special/DisplayNotFound.php:35 +#: src/Module/Special/DisplayNotFound.php:21 msgid "The top-level post isn't visible." msgstr "" -#: src/Module/Special/DisplayNotFound.php:36 +#: src/Module/Special/DisplayNotFound.php:22 msgid "The top-level post was deleted." msgstr "" -#: src/Module/Special/DisplayNotFound.php:37 +#: src/Module/Special/DisplayNotFound.php:23 msgid "" "This node has blocked the top-level author or the author of the shared post." msgstr "" -#: src/Module/Special/DisplayNotFound.php:38 +#: src/Module/Special/DisplayNotFound.php:24 msgid "" "You have ignored or blocked the top-level author or the author of the shared" " post." msgstr "" -#: src/Module/Special/DisplayNotFound.php:39 +#: src/Module/Special/DisplayNotFound.php:25 msgid "" "You have ignored the top-level author's server or the shared post author's " "server." msgstr "" -#: src/Module/Special/DisplayNotFound.php:45 +#: src/Module/Special/DisplayNotFound.php:31 msgid "Conversation Not Found" msgstr "" -#: src/Module/Special/DisplayNotFound.php:46 +#: src/Module/Special/DisplayNotFound.php:32 msgid "Unfortunately, the requested conversation isn't available to you." msgstr "" -#: src/Module/Special/DisplayNotFound.php:47 +#: src/Module/Special/DisplayNotFound.php:33 msgid "Possible reasons include:" msgstr "" -#: src/Module/Special/HTTPException.php:78 +#: src/Module/Special/HTTPException.php:64 msgid "Stack trace:" msgstr "" -#: src/Module/Special/HTTPException.php:83 +#: src/Module/Special/HTTPException.php:69 #, php-format msgid "Exception thrown in %s:%d" msgstr "" -#: src/Module/Tos.php:58 src/Module/Tos.php:107 +#: src/Module/Tos.php:44 src/Module/Tos.php:93 msgid "" "At the time of registration, and for providing communications between the " "user account and their contacts, the user has to provide a display name (pen" @@ -11511,14 +11518,14 @@ msgid "" "settings, it is not necessary for communication." msgstr "Op het moment van de registratie, en om communicatie mogelijk te maken tussen de gebruikersaccount en zijn of haar contacten, moet de gebruiker een weergave naam opgeven, een gebruikersnaam (bijnaam) en een werkend email adres. De namen zullen toegankelijk zijn op de profiel pagina van het account voor elke bezoeker van de pagina, zelfs als andere profiel details niet getoond worden. Het email adres zal enkel gebruikt worden om de gebruiker notificaties te sturen over interacties, maar zal niet zichtbaar getoond worden. Het oplijsten van een account in de gids van de node van de gebruiker of in de globale gids is optioneel en kan beheerd worden in de gebruikersinstellingen, dit is niet nodig voor communicatie." -#: src/Module/Tos.php:59 src/Module/Tos.php:108 +#: src/Module/Tos.php:45 src/Module/Tos.php:94 msgid "" "This data is required for communication and is passed on to the nodes of the" " communication partners and is stored there. Users can enter additional " "private data that may be transmitted to the communication partners accounts." msgstr "Deze data is vereist voor communicatie en wordt doorgegeven aan de nodes van de communicatie partners en wordt daar opgeslagen. Gebruikers kunnen bijkomende privé data opgeven die mag doorgegeven worden aan de accounts van de communicatie partners." -#: src/Module/Tos.php:60 src/Module/Tos.php:109 +#: src/Module/Tos.php:46 src/Module/Tos.php:95 #, php-format msgid "" "At any point in time a logged in user can export their account data from the" @@ -11529,121 +11536,121 @@ msgid "" "from the nodes of the communication partners." msgstr "" -#: src/Module/Tos.php:63 src/Module/Tos.php:106 +#: src/Module/Tos.php:49 src/Module/Tos.php:92 msgid "Privacy Statement" msgstr "Privacy Verklaring" -#: src/Module/Tos.php:103 +#: src/Module/Tos.php:89 msgid "Rules" msgstr "" -#: src/Module/Update/Display.php:45 +#: src/Module/Update/Display.php:31 msgid "Parameter uri_id is missing." msgstr "" -#: src/Module/Update/Display.php:55 +#: src/Module/Update/Display.php:41 msgid "The requested item doesn't exist or has been deleted." msgstr "Het gevraagde item bestaat niet of is verwijderd" -#: src/Module/User/Delegation.php:146 +#: src/Module/User/Delegation.php:132 #, php-format msgid "You are now logged in as %s" msgstr "" -#: src/Module/User/Delegation.php:185 +#: src/Module/User/Delegation.php:171 msgid "Switch between your accounts" msgstr "" -#: src/Module/User/Delegation.php:186 +#: src/Module/User/Delegation.php:172 msgid "Manage your accounts" msgstr "" -#: src/Module/User/Delegation.php:187 +#: src/Module/User/Delegation.php:173 msgid "" "Toggle between different identities or community/group pages which share " "your account details or which you have been granted \"manage\" permissions" msgstr "Wissel tussen verschillende identiteiten of forum/groeppagina's die jouw accountdetails delen of waar je \"beheerdersrechten\" hebt gekregen." -#: src/Module/User/Delegation.php:188 +#: src/Module/User/Delegation.php:174 msgid "Select an identity to manage: " msgstr "Selecteer een identiteit om te beheren:" -#: src/Module/User/Import.php:104 +#: src/Module/User/Import.php:90 msgid "User imports on closed servers can only be done by an administrator." msgstr "Importen van een gebruiker op een gesloten node kan enkel gedaan worden door een administrator" -#: src/Module/User/Import.php:120 +#: src/Module/User/Import.php:106 msgid "Move account" msgstr "Account verplaatsen" -#: src/Module/User/Import.php:121 +#: src/Module/User/Import.php:107 msgid "You can import an account from another Friendica server." msgstr "Je kunt een account van een andere Friendica server importeren." -#: src/Module/User/Import.php:122 +#: src/Module/User/Import.php:108 msgid "" "You need to export your account from the old server and upload it here. We " "will recreate your old account here with all your contacts. We will try also" " to inform your friends that you moved here." msgstr "Je moet je account bij de oude server exporteren, en hier uploaden. We zullen je oude account hier opnieuw aanmaken, met al je contacten. We zullen ook proberen om je vrienden in te lichten dat je naar hier verhuisd bent." -#: src/Module/User/Import.php:123 +#: src/Module/User/Import.php:109 msgid "" "This feature is experimental. We can't import contacts from the OStatus " "network (GNU Social/Statusnet) or from Diaspora" msgstr "Dit feature is experimenteel. We kunnen contacten van het OStatus netwerk (GNU Social/Statusnet) of van Diaspora niet importeren." -#: src/Module/User/Import.php:124 +#: src/Module/User/Import.php:110 msgid "Account file" msgstr "Account bestand" -#: src/Module/User/Import.php:124 +#: src/Module/User/Import.php:110 msgid "" "To export your account, go to \"Settings->Export your personal data\" and " "select \"Export account\"" msgstr "Om je account te exporteren, ga naar \"Instellingen->Exporteer je persoonlijke data\" en selecteer \"Exporteer account\"" -#: src/Module/User/Import.php:218 +#: src/Module/User/Import.php:204 msgid "Error decoding account file" msgstr "Fout bij decoderen van het account bestand" -#: src/Module/User/Import.php:223 +#: src/Module/User/Import.php:209 msgid "Error! No version data in file! This is not a Friendica account file?" msgstr "Fout! Geen versie data in het bestand! Is dit wel een Friendica account bestand?" -#: src/Module/User/Import.php:231 +#: src/Module/User/Import.php:217 #, php-format msgid "User '%s' already exists on this server!" msgstr "Gebruiker '%s' bestaat al op deze server!" -#: src/Module/User/Import.php:268 +#: src/Module/User/Import.php:254 msgid "User creation error" msgstr "Fout bij het aanmaken van de gebruiker" -#: src/Module/User/Import.php:317 +#: src/Module/User/Import.php:303 #, php-format msgid "%d contact not imported" msgid_plural "%d contacts not imported" msgstr[0] "%d contact werd niet geïmporteerd" msgstr[1] "%d contacten werden niet geïmporteerd" -#: src/Module/User/Import.php:366 +#: src/Module/User/Import.php:352 msgid "User profile creation error" msgstr "Fout bij het aanmaken van het gebruikersprofiel" -#: src/Module/User/Import.php:417 +#: src/Module/User/Import.php:403 msgid "Done. You can now login with your username and password" msgstr "Gebeurd. Je kunt nu inloggen met je gebruikersnaam en wachtwoord" -#: src/Module/Welcome.php:44 +#: src/Module/Welcome.php:30 msgid "Welcome to Friendica" msgstr "Welkom bij Friendica" -#: src/Module/Welcome.php:45 +#: src/Module/Welcome.php:31 msgid "New Member Checklist" msgstr "Checklist voor nieuwe leden" -#: src/Module/Welcome.php:46 +#: src/Module/Welcome.php:32 msgid "" "We would like to offer some tips and links to help make your experience " "enjoyable. Click any item to visit the relevant page. A link to this page " @@ -11651,33 +11658,33 @@ msgid "" "registration and then will quietly disappear." msgstr "We willen je een paar tips en verwijzingen aanreiken om je een aangename ervaring te bezorgen. Klik op een item om de relevante pagina's te bezoeken. Een verwijzing naar deze pagina zal twee weken lang na je registratie zichtbaar zijn op je tijdlijn. Daarna zal de verwijzing stilletjes verdwijnen." -#: src/Module/Welcome.php:48 +#: src/Module/Welcome.php:34 msgid "Getting Started" msgstr "Aan de slag" -#: src/Module/Welcome.php:49 +#: src/Module/Welcome.php:35 msgid "Friendica Walk-Through" msgstr "Doorloop Friendica" -#: src/Module/Welcome.php:50 +#: src/Module/Welcome.php:36 msgid "" "On your Quick Start page - find a brief introduction to your " "profile and network tabs, make some new connections, and find some groups to" " join." msgstr "Op je Snelstart pagina kun je een korte inleiding vinden over je profiel en netwerk tabs, om enkele nieuwe connecties te leggen en groepen te vinden om lid van te worden." -#: src/Module/Welcome.php:53 +#: src/Module/Welcome.php:39 msgid "Go to Your Settings" msgstr "Ga naar je instellingen" -#: src/Module/Welcome.php:54 +#: src/Module/Welcome.php:40 msgid "" "On your Settings page - change your initial password. Also make a " "note of your Identity Address. This looks just like an email address - and " "will be useful in making friends on the free social web." msgstr "Verander je initieel wachtwoord op je instellingenpagina. Noteer ook het adres van je identiteit. Dit ziet er uit als een e-mailadres - en zal nuttig zijn om vrienden te maken op het vrije sociale web." -#: src/Module/Welcome.php:55 +#: src/Module/Welcome.php:41 msgid "" "Review the other settings, particularly the privacy settings. An unpublished" " directory listing is like having an unlisted phone number. In general, you " @@ -11685,77 +11692,77 @@ msgid "" "potential friends know exactly how to find you." msgstr "Controleer ook de andere instellingen, in het bijzonder de privacy-instellingen. Een niet-gepubliceerd adres is zoals een privé-telefoonnummer. In het algemeen wil je waarschijnlijk je adres publiceren - tenzij al je vrienden en mogelijke vrienden precies weten hoe je te vinden." -#: src/Module/Welcome.php:59 +#: src/Module/Welcome.php:45 msgid "" "Upload a profile photo if you have not done so already. Studies have shown " "that people with real photos of themselves are ten times more likely to make" " friends than people who do not." msgstr "Upload een profielfoto, als je dat nog niet gedaan hebt. Studies tonen aan dat mensen met echte foto's van zichzelf tien keer gemakkelijker vrienden maken dan mensen die dat niet doen." -#: src/Module/Welcome.php:60 +#: src/Module/Welcome.php:46 msgid "Edit Your Profile" msgstr "Bewerk je profiel" -#: src/Module/Welcome.php:61 +#: src/Module/Welcome.php:47 msgid "" "Edit your default profile to your liking. Review the " "settings for hiding your list of friends and hiding the profile from unknown" " visitors." msgstr "Bewerk je standaard profiel zoals je wilt. Controleer de instellingen om je vriendenlijst te verbergen, en om je profiel voor ongekende bezoekers te verbergen." -#: src/Module/Welcome.php:62 +#: src/Module/Welcome.php:48 msgid "Profile Keywords" msgstr "Sleutelwoorden voor dit profiel" -#: src/Module/Welcome.php:63 +#: src/Module/Welcome.php:49 msgid "" "Set some public keywords for your profile which describe your interests. We " "may be able to find other people with similar interests and suggest " "friendships." msgstr "Stel een aantal openbare zoekwoorden in voor uw profiel die uw interesses beschrijven. Mogelijk kunnen we andere mensen met dezelfde interesses vinden en vriendschappen voorstellen." -#: src/Module/Welcome.php:65 +#: src/Module/Welcome.php:51 msgid "Connecting" msgstr "Verbinding aan het maken" -#: src/Module/Welcome.php:67 +#: src/Module/Welcome.php:53 msgid "Importing Emails" msgstr "E-mails importeren" -#: src/Module/Welcome.php:68 +#: src/Module/Welcome.php:54 msgid "" "Enter your email access information on your Connector Settings page if you " "wish to import and interact with friends or mailing lists from your email " "INBOX" msgstr "Vul je e-mailtoegangsinformatie in op je pagina met verbindingsinstellingen als je vrienden of mailinglijsten uit je e-mail-inbox wilt importeren, en met hen wilt communiceren" -#: src/Module/Welcome.php:69 +#: src/Module/Welcome.php:55 msgid "Go to Your Contacts Page" msgstr "Ga naar je contactenpagina" -#: src/Module/Welcome.php:70 +#: src/Module/Welcome.php:56 msgid "" "Your Contacts page is your gateway to managing friendships and connecting " "with friends on other networks. Typically you enter their address or site " "URL in the Add New Contact dialog." msgstr "Je contactenpagina is jouw poort om vriendschappen te beheren en verbinding te leggen met vrienden op andere netwerken. Je kunt hun adres of URL toevoegen in de Voeg nieuw contact toe dialoog." -#: src/Module/Welcome.php:71 +#: src/Module/Welcome.php:57 msgid "Go to Your Site's Directory" msgstr "Ga naar de gids van je website" -#: src/Module/Welcome.php:72 +#: src/Module/Welcome.php:58 msgid "" "The Directory page lets you find other people in this network or other " "federated sites. Look for a Connect or Follow link on " "their profile page. Provide your own Identity Address if requested." msgstr "In de gids vind je andere mensen in dit netwerk of op andere federatieve sites. Zoek naar het woord Connect of Follow op hun profielpagina (meestal aan de linkerkant). Vul je eigen identiteitsadres in wanneer daar om wordt gevraagd." -#: src/Module/Welcome.php:73 +#: src/Module/Welcome.php:59 msgid "Finding New People" msgstr "Nieuwe mensen vinden" -#: src/Module/Welcome.php:74 +#: src/Module/Welcome.php:60 msgid "" "On the side panel of the Contacts page are several tools to find new " "friends. We can match people by interest, look up people by name or " @@ -11764,412 +11771,408 @@ msgid "" "hours." msgstr "Op het zijpaneel van de Contacten pagina vind je verschillende tools om nieuwe vrienden te zoeken. We kunnen mensen op interesses matchen, mensen opzoeken op naam of hobby, en suggesties doen gebaseerd op netwerk-relaties. Op een nieuwe webstek beginnen vriendschapssuggesties meestal binnen de 24 uur beschikbaar te worden." -#: src/Module/Welcome.php:77 +#: src/Module/Welcome.php:63 msgid "Add Your Contacts To Circle" msgstr "" -#: src/Module/Welcome.php:78 +#: src/Module/Welcome.php:64 msgid "" "Once you have made some friends, organize them into private conversation " "circles from the sidebar of your Contacts page and then you can interact " "with each circle privately on your Network page." msgstr "" -#: src/Module/Welcome.php:80 +#: src/Module/Welcome.php:66 msgid "Why Aren't My Posts Public?" msgstr "Waarom zijn mijn berichten niet openbaar?" -#: src/Module/Welcome.php:81 +#: src/Module/Welcome.php:67 msgid "" "Friendica respects your privacy. By default, your posts will only show up to" " people you've added as friends. For more information, see the help section " "from the link above." msgstr "Friendica respecteert je privacy. Standaard zullen je berichten alleen zichtbaar zijn voor personen die jij als vriend hebt toegevoegd. Lees de help (zie de verwijzing hierboven) voor meer informatie." -#: src/Module/Welcome.php:83 +#: src/Module/Welcome.php:69 msgid "Getting Help" msgstr "Hulp krijgen" -#: src/Module/Welcome.php:84 +#: src/Module/Welcome.php:70 msgid "Go to the Help Section" msgstr "Ga naar de help" -#: src/Module/Welcome.php:85 +#: src/Module/Welcome.php:71 msgid "" "Our help pages may be consulted for detail on other program" " features and resources." msgstr "Je kunt onze help pagina's raadplegen voor gedetailleerde informatie over andere functies van dit programma." -#: src/Navigation/Notifications/Factory/FormattedNavNotification.php:161 +#: src/Navigation/Notifications/Factory/FormattedNavNotification.php:147 msgid "{0} wants to follow you" msgstr "" -#: src/Navigation/Notifications/Factory/FormattedNavNotification.php:163 +#: src/Navigation/Notifications/Factory/FormattedNavNotification.php:149 msgid "{0} has started following you" msgstr "" -#: src/Navigation/Notifications/Factory/FormattedNotify.php:96 +#: src/Navigation/Notifications/Factory/FormattedNotify.php:82 #, php-format msgid "%s liked %s's post" msgstr "%s vond het bericht van %s leuk" -#: src/Navigation/Notifications/Factory/FormattedNotify.php:108 +#: src/Navigation/Notifications/Factory/FormattedNotify.php:94 #, php-format msgid "%s disliked %s's post" msgstr "%s vond het bericht van %s niet leuk" -#: src/Navigation/Notifications/Factory/FormattedNotify.php:120 +#: src/Navigation/Notifications/Factory/FormattedNotify.php:106 #, php-format msgid "%s is attending %s's event" msgstr "%s woont het event van %s bij" -#: src/Navigation/Notifications/Factory/FormattedNotify.php:132 +#: src/Navigation/Notifications/Factory/FormattedNotify.php:118 #, php-format msgid "%s is not attending %s's event" msgstr "%s woont het event van %s niet bij" -#: src/Navigation/Notifications/Factory/FormattedNotify.php:144 +#: src/Navigation/Notifications/Factory/FormattedNotify.php:130 #, php-format msgid "%s may attending %s's event" msgstr "%s kan aanwezig zijn op %s's gebeurtenis" -#: src/Navigation/Notifications/Factory/FormattedNotify.php:174 +#: src/Navigation/Notifications/Factory/FormattedNotify.php:160 #, php-format msgid "%s is now friends with %s" msgstr "%s is nu bevriend met %s" -#: src/Navigation/Notifications/Factory/FormattedNotify.php:341 -#: src/Navigation/Notifications/Factory/FormattedNotify.php:379 +#: src/Navigation/Notifications/Factory/FormattedNotify.php:327 +#: src/Navigation/Notifications/Factory/FormattedNotify.php:365 #, php-format msgid "%s commented on %s's post" msgstr "%s gaf een reactie op het bericht van %s" -#: src/Navigation/Notifications/Factory/FormattedNotify.php:378 +#: src/Navigation/Notifications/Factory/FormattedNotify.php:364 #, php-format msgid "%s created a new post" msgstr "%s schreef een nieuw bericht" -#: src/Navigation/Notifications/Factory/Introduction.php:132 +#: src/Navigation/Notifications/Factory/Introduction.php:118 msgid "Friend Suggestion" msgstr "Vriendschapsvoorstel" -#: src/Navigation/Notifications/Factory/Introduction.php:158 +#: src/Navigation/Notifications/Factory/Introduction.php:144 msgid "Friend/Connect Request" msgstr "Vriendschapsverzoek" -#: src/Navigation/Notifications/Factory/Introduction.php:158 -msgid "New Follower" -msgstr "Nieuwe Volger" - -#: src/Navigation/Notifications/Factory/Notification.php:134 +#: src/Navigation/Notifications/Factory/Notification.php:120 #, php-format msgid "%1$s wants to follow you" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:136 +#: src/Navigation/Notifications/Factory/Notification.php:122 #, php-format msgid "%1$s has started following you" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:208 +#: src/Navigation/Notifications/Factory/Notification.php:194 #, php-format msgid "%1$s liked your comment on %2$s" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:211 +#: src/Navigation/Notifications/Factory/Notification.php:197 #, php-format msgid "%1$s liked your post %2$s" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:218 +#: src/Navigation/Notifications/Factory/Notification.php:204 #, php-format msgid "%1$s disliked your comment on %2$s" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:221 +#: src/Navigation/Notifications/Factory/Notification.php:207 #, php-format msgid "%1$s disliked your post %2$s" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:228 +#: src/Navigation/Notifications/Factory/Notification.php:214 #, php-format msgid "%1$s shared your comment %2$s" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:231 -#: src/Navigation/Notifications/Factory/Notification.php:316 +#: src/Navigation/Notifications/Factory/Notification.php:217 +#: src/Navigation/Notifications/Factory/Notification.php:302 #, php-format msgid "%1$s shared your post %2$s" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:235 -#: src/Navigation/Notifications/Factory/Notification.php:305 +#: src/Navigation/Notifications/Factory/Notification.php:221 +#: src/Navigation/Notifications/Factory/Notification.php:291 #, php-format msgid "%1$s shared the post %2$s from %3$s" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:237 -#: src/Navigation/Notifications/Factory/Notification.php:307 +#: src/Navigation/Notifications/Factory/Notification.php:223 +#: src/Navigation/Notifications/Factory/Notification.php:293 #, php-format msgid "%1$s shared a post from %3$s" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:239 -#: src/Navigation/Notifications/Factory/Notification.php:309 +#: src/Navigation/Notifications/Factory/Notification.php:225 +#: src/Navigation/Notifications/Factory/Notification.php:295 #, php-format msgid "%1$s shared the post %2$s" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:241 -#: src/Navigation/Notifications/Factory/Notification.php:311 +#: src/Navigation/Notifications/Factory/Notification.php:227 +#: src/Navigation/Notifications/Factory/Notification.php:297 #, php-format msgid "%1$s shared a post" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:249 +#: src/Navigation/Notifications/Factory/Notification.php:235 #, php-format msgid "%1$s wants to attend your event %2$s" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:256 +#: src/Navigation/Notifications/Factory/Notification.php:242 #, php-format msgid "%1$s does not want to attend your event %2$s" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:263 +#: src/Navigation/Notifications/Factory/Notification.php:249 #, php-format msgid "%1$s maybe wants to attend your event %2$s" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:270 +#: src/Navigation/Notifications/Factory/Notification.php:256 #, php-format msgid "%1$s tagged you on %2$s" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:274 +#: src/Navigation/Notifications/Factory/Notification.php:260 #, php-format msgid "%1$s replied to you on %2$s" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:278 +#: src/Navigation/Notifications/Factory/Notification.php:264 #, php-format msgid "%1$s commented in your thread %2$s" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:282 +#: src/Navigation/Notifications/Factory/Notification.php:268 #, php-format msgid "%1$s commented on your comment %2$s" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:289 +#: src/Navigation/Notifications/Factory/Notification.php:275 #, php-format msgid "%1$s commented in their thread %2$s" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:291 +#: src/Navigation/Notifications/Factory/Notification.php:277 #, php-format msgid "%1$s commented in their thread" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:293 +#: src/Navigation/Notifications/Factory/Notification.php:279 #, php-format msgid "%1$s commented in the thread %2$s from %3$s" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:295 +#: src/Navigation/Notifications/Factory/Notification.php:281 #, php-format msgid "%1$s commented in the thread from %3$s" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:300 +#: src/Navigation/Notifications/Factory/Notification.php:286 #, php-format msgid "%1$s commented on your thread %2$s" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:225 -#: src/Navigation/Notifications/Repository/Notify.php:754 +#: src/Navigation/Notifications/Repository/Notify.php:211 +#: src/Navigation/Notifications/Repository/Notify.php:740 msgid "[Friendica:Notify]" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:293 +#: src/Navigation/Notifications/Repository/Notify.php:279 #, php-format msgid "%s New mail received at %s" msgstr "%s Nieuw bericht ontvangen op %s" -#: src/Navigation/Notifications/Repository/Notify.php:295 +#: src/Navigation/Notifications/Repository/Notify.php:281 #, php-format msgid "%1$s sent you a new private message at %2$s." msgstr "%1$s sent you a new private message at %2$s." -#: src/Navigation/Notifications/Repository/Notify.php:296 +#: src/Navigation/Notifications/Repository/Notify.php:282 msgid "a private message" msgstr "een prive bericht" -#: src/Navigation/Notifications/Repository/Notify.php:296 +#: src/Navigation/Notifications/Repository/Notify.php:282 #, php-format msgid "%1$s sent you %2$s." msgstr "%1$s stuurde jou %2$s." -#: src/Navigation/Notifications/Repository/Notify.php:298 +#: src/Navigation/Notifications/Repository/Notify.php:284 #, php-format msgid "Please visit %s to view and/or reply to your private messages." msgstr "Bezoek %s om je privé-berichten te bekijken en/of te beantwoorden." -#: src/Navigation/Notifications/Repository/Notify.php:328 +#: src/Navigation/Notifications/Repository/Notify.php:314 #, php-format msgid "%1$s commented on %2$s's %3$s %4$s" msgstr "%1$s heeft een opmerking geplaatst op %2$s's %3$s %4$s" -#: src/Navigation/Notifications/Repository/Notify.php:333 +#: src/Navigation/Notifications/Repository/Notify.php:319 #, php-format msgid "%1$s commented on your %2$s %3$s" msgstr "%1$s heeft een opmerking geplaatst op jou %2$s %3$s" -#: src/Navigation/Notifications/Repository/Notify.php:337 +#: src/Navigation/Notifications/Repository/Notify.php:323 #, php-format msgid "%1$s commented on their %2$s %3$s" msgstr "%1$s heeft een opmering geschreven op hun %2$s %3$s" -#: src/Navigation/Notifications/Repository/Notify.php:341 -#: src/Navigation/Notifications/Repository/Notify.php:788 +#: src/Navigation/Notifications/Repository/Notify.php:327 +#: src/Navigation/Notifications/Repository/Notify.php:774 #, php-format msgid "%1$s Comment to conversation #%2$d by %3$s" msgstr "%1$s Opmerking bij conversatie #%2$d door %3$s" -#: src/Navigation/Notifications/Repository/Notify.php:343 +#: src/Navigation/Notifications/Repository/Notify.php:329 #, php-format msgid "%s commented on an item/conversation you have been following." msgstr "%s gaf een reactie op een bericht/gesprek die jij volgt." -#: src/Navigation/Notifications/Repository/Notify.php:347 -#: src/Navigation/Notifications/Repository/Notify.php:362 -#: src/Navigation/Notifications/Repository/Notify.php:814 +#: src/Navigation/Notifications/Repository/Notify.php:333 +#: src/Navigation/Notifications/Repository/Notify.php:348 +#: src/Navigation/Notifications/Repository/Notify.php:800 #, php-format msgid "Please visit %s to view and/or reply to the conversation." msgstr "Bezoek %s om het gesprek te bekijken en/of te beantwoorden." -#: src/Navigation/Notifications/Repository/Notify.php:354 +#: src/Navigation/Notifications/Repository/Notify.php:340 #, php-format msgid "%s %s posted to your profile wall" msgstr "%s %s heeft op je profiel wall gepost" -#: src/Navigation/Notifications/Repository/Notify.php:356 +#: src/Navigation/Notifications/Repository/Notify.php:342 #, php-format msgid "%1$s posted to your profile wall at %2$s" msgstr "%1$splaatste een bericht op je tijdlijn op %2$s" -#: src/Navigation/Notifications/Repository/Notify.php:357 +#: src/Navigation/Notifications/Repository/Notify.php:343 #, php-format msgid "%1$s posted to [url=%2$s]your wall[/url]" msgstr "%1$s schreef op [url=%2$s]jouw tijdlijn[/url]" -#: src/Navigation/Notifications/Repository/Notify.php:370 +#: src/Navigation/Notifications/Repository/Notify.php:356 #, php-format msgid "%s Introduction received" msgstr "%s Introductie ontvangen" -#: src/Navigation/Notifications/Repository/Notify.php:372 +#: src/Navigation/Notifications/Repository/Notify.php:358 #, php-format msgid "You've received an introduction from '%1$s' at %2$s" msgstr "Je hebt een vriendschaps- of connectieverzoek ontvangen van '%1$s' om %2$s" -#: src/Navigation/Notifications/Repository/Notify.php:373 +#: src/Navigation/Notifications/Repository/Notify.php:359 #, php-format msgid "You've received [url=%1$s]an introduction[/url] from %2$s." msgstr "Je ontving [url=%1$s]een vriendschaps- of connectieverzoek[/url] van %2$s." -#: src/Navigation/Notifications/Repository/Notify.php:378 -#: src/Navigation/Notifications/Repository/Notify.php:424 +#: src/Navigation/Notifications/Repository/Notify.php:364 +#: src/Navigation/Notifications/Repository/Notify.php:410 #, php-format msgid "You may visit their profile at %s" msgstr "Je kunt hun profiel bezoeken op %s" -#: src/Navigation/Notifications/Repository/Notify.php:380 +#: src/Navigation/Notifications/Repository/Notify.php:366 #, php-format msgid "Please visit %s to approve or reject the introduction." msgstr "Bezoek %s om het verzoek goed of af te keuren." -#: src/Navigation/Notifications/Repository/Notify.php:387 +#: src/Navigation/Notifications/Repository/Notify.php:373 #, php-format msgid "%s A new person is sharing with you" msgstr "%s Een nieuwe persoon deelt met je" -#: src/Navigation/Notifications/Repository/Notify.php:389 -#: src/Navigation/Notifications/Repository/Notify.php:390 +#: src/Navigation/Notifications/Repository/Notify.php:375 +#: src/Navigation/Notifications/Repository/Notify.php:376 #, php-format msgid "%1$s is sharing with you at %2$s" msgstr "%1$s deelt met jou in %2$s" -#: src/Navigation/Notifications/Repository/Notify.php:397 +#: src/Navigation/Notifications/Repository/Notify.php:383 #, php-format msgid "%s You have a new follower" msgstr "%s Je hebt een nieuwe volger" -#: src/Navigation/Notifications/Repository/Notify.php:399 -#: src/Navigation/Notifications/Repository/Notify.php:400 +#: src/Navigation/Notifications/Repository/Notify.php:385 +#: src/Navigation/Notifications/Repository/Notify.php:386 #, php-format msgid "You have a new follower at %2$s : %1$s" msgstr "Je hebt een nieuwe volger op %2$s: %1$s" -#: src/Navigation/Notifications/Repository/Notify.php:413 +#: src/Navigation/Notifications/Repository/Notify.php:399 #, php-format msgid "%s Friend suggestion received" msgstr "%s Vriend suggestie ontvangen" -#: src/Navigation/Notifications/Repository/Notify.php:415 +#: src/Navigation/Notifications/Repository/Notify.php:401 #, php-format msgid "You've received a friend suggestion from '%1$s' at %2$s" msgstr "Je kreeg een vriendschapssuggestie van '%1$s' op %2$s" -#: src/Navigation/Notifications/Repository/Notify.php:416 +#: src/Navigation/Notifications/Repository/Notify.php:402 #, php-format msgid "" "You've received [url=%1$s]a friend suggestion[/url] for %2$s from %3$s." msgstr "Je kreeg een [url=%1$s]vriendschapssuggestie[/url] voor %2$s op %3$s." -#: src/Navigation/Notifications/Repository/Notify.php:422 +#: src/Navigation/Notifications/Repository/Notify.php:408 msgid "Name:" msgstr "Naam:" -#: src/Navigation/Notifications/Repository/Notify.php:423 +#: src/Navigation/Notifications/Repository/Notify.php:409 msgid "Photo:" msgstr "Foto: " -#: src/Navigation/Notifications/Repository/Notify.php:426 +#: src/Navigation/Notifications/Repository/Notify.php:412 #, php-format msgid "Please visit %s to approve or reject the suggestion." msgstr "Bezoek %s om de suggestie goed of af te keuren." -#: src/Navigation/Notifications/Repository/Notify.php:434 -#: src/Navigation/Notifications/Repository/Notify.php:449 +#: src/Navigation/Notifications/Repository/Notify.php:420 +#: src/Navigation/Notifications/Repository/Notify.php:435 #, php-format msgid "%s Connection accepted" msgstr "%s Verbinding geaccepteerd" -#: src/Navigation/Notifications/Repository/Notify.php:436 -#: src/Navigation/Notifications/Repository/Notify.php:451 +#: src/Navigation/Notifications/Repository/Notify.php:422 +#: src/Navigation/Notifications/Repository/Notify.php:437 #, php-format msgid "'%1$s' has accepted your connection request at %2$s" msgstr "'%1$s' aanvaarde je contactaanvraag op %2$s" -#: src/Navigation/Notifications/Repository/Notify.php:437 -#: src/Navigation/Notifications/Repository/Notify.php:452 +#: src/Navigation/Notifications/Repository/Notify.php:423 +#: src/Navigation/Notifications/Repository/Notify.php:438 #, php-format msgid "%2$s has accepted your [url=%1$s]connection request[/url]." msgstr "%2$saanvaardde jouw [url=%1$s]contactaanvraag[/url]." -#: src/Navigation/Notifications/Repository/Notify.php:442 +#: src/Navigation/Notifications/Repository/Notify.php:428 msgid "" "You are now mutual friends and may exchange status updates, photos, and " "email without restriction." msgstr "Jullie zijn nu in contact met elkaar en kunnen statusberichten, foto's en email delen zonder beperkingen." -#: src/Navigation/Notifications/Repository/Notify.php:444 +#: src/Navigation/Notifications/Repository/Notify.php:430 #, php-format msgid "Please visit %s if you wish to make any changes to this relationship." msgstr "Bezoek alstublieft %s als je deze relatie wil wijzigen." -#: src/Navigation/Notifications/Repository/Notify.php:457 +#: src/Navigation/Notifications/Repository/Notify.php:443 #, php-format msgid "" "'%1$s' has chosen to accept you a fan, which restricts some forms of " @@ -12178,34 +12181,34 @@ msgid "" "automatically." msgstr "'%1$s' koos om je te accepteren als fan, wat sommige communicatievormen beperkt - zoals privéberichten en sommige profielfuncties. Als dit een beroemdheid- of groepspagina is, werd dit automatisch toegepast." -#: src/Navigation/Notifications/Repository/Notify.php:459 +#: src/Navigation/Notifications/Repository/Notify.php:445 #, php-format msgid "" "'%1$s' may choose to extend this into a two-way or more permissive " "relationship in the future." msgstr "'%1$s' kan er later voor kiezen om deze beperkingen aan te passen." -#: src/Navigation/Notifications/Repository/Notify.php:461 +#: src/Navigation/Notifications/Repository/Notify.php:447 #, php-format msgid "Please visit %s if you wish to make any changes to this relationship." msgstr "Bezoek %s wanneer je deze relatie wil wijzigen." -#: src/Navigation/Notifications/Repository/Notify.php:471 +#: src/Navigation/Notifications/Repository/Notify.php:457 msgid "registration request" msgstr "registratie verzoek" -#: src/Navigation/Notifications/Repository/Notify.php:473 +#: src/Navigation/Notifications/Repository/Notify.php:459 #, php-format msgid "You've received a registration request from '%1$s' at %2$s" msgstr "Je kreeg een registratieaanvraag van '%1$s' op %2$s" -#: src/Navigation/Notifications/Repository/Notify.php:474 +#: src/Navigation/Notifications/Repository/Notify.php:460 #, php-format msgid "You've received a [url=%1$s]registration request[/url] from %2$s." msgstr "Je kreeg een [url=%1$s]registratieaanvraag[/url] van %2$s." -#: src/Navigation/Notifications/Repository/Notify.php:479 -#: src/Navigation/Notifications/Repository/Notify.php:500 +#: src/Navigation/Notifications/Repository/Notify.php:465 +#: src/Navigation/Notifications/Repository/Notify.php:486 #, php-format msgid "" "Display Name:\t%s\n" @@ -12213,768 +12216,755 @@ msgid "" "Login Name:\t%s (%s)" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:485 +#: src/Navigation/Notifications/Repository/Notify.php:471 #, php-format msgid "Please visit %s to approve or reject the request." msgstr "Bezoek %s om de aanvraag goed of af te keuren." -#: src/Navigation/Notifications/Repository/Notify.php:492 +#: src/Navigation/Notifications/Repository/Notify.php:478 msgid "new registration" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:494 +#: src/Navigation/Notifications/Repository/Notify.php:480 #, php-format msgid "You've received a new registration from '%1$s' at %2$s" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:495 +#: src/Navigation/Notifications/Repository/Notify.php:481 #, php-format msgid "You've received a [url=%1$s]new registration[/url] from %2$s." msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:506 +#: src/Navigation/Notifications/Repository/Notify.php:492 #, php-format msgid "Please visit %s to have a look at the new registration." msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:782 +#: src/Navigation/Notifications/Repository/Notify.php:768 #, php-format msgid "%s %s tagged you" msgstr "%s %s heeft jou getagged" -#: src/Navigation/Notifications/Repository/Notify.php:785 +#: src/Navigation/Notifications/Repository/Notify.php:771 #, php-format msgid "%s %s shared a new post" msgstr "%s %s deelde een nieuwe post" -#: src/Navigation/Notifications/Repository/Notify.php:793 +#: src/Navigation/Notifications/Repository/Notify.php:779 #, php-format msgid "%1$s %2$s liked your post #%3$d" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:796 +#: src/Navigation/Notifications/Repository/Notify.php:782 #, php-format msgid "%1$s %2$s liked your comment on #%3$d" msgstr "" -#: src/Object/EMail/ItemCCEMail.php:42 +#: src/Object/EMail/ItemCCEMail.php:28 #, php-format msgid "" "This message was sent to you by %s, a member of the Friendica social " "network." msgstr "Dit bericht werd naar jou gestuurd door %s, een lid van het Friendica sociale netwerk." -#: src/Object/EMail/ItemCCEMail.php:44 +#: src/Object/EMail/ItemCCEMail.php:30 #, php-format msgid "You may visit them online at %s" msgstr "Je kunt ze online bezoeken op %s" -#: src/Object/EMail/ItemCCEMail.php:45 +#: src/Object/EMail/ItemCCEMail.php:31 msgid "" "Please contact the sender by replying to this post if you do not wish to " "receive these messages." msgstr "Contacteer de afzender door op dit bericht te antwoorden als je deze berichten niet wilt ontvangen." -#: src/Object/EMail/ItemCCEMail.php:49 +#: src/Object/EMail/ItemCCEMail.php:35 #, php-format msgid "%s posted an update." msgstr "%s heeft een wijziging geplaatst." -#: src/Object/Post.php:138 +#: src/Object/Post.php:124 msgid "Private Message" msgstr "Privébericht" -#: src/Object/Post.php:142 +#: src/Object/Post.php:128 msgid "Public Message" msgstr "" -#: src/Object/Post.php:146 +#: src/Object/Post.php:132 msgid "Unlisted Message" msgstr "" -#: src/Object/Post.php:182 +#: src/Object/Post.php:168 msgid "This entry was edited" msgstr "Deze entry werd bewerkt" -#: src/Object/Post.php:210 +#: src/Object/Post.php:196 msgid "Connector Message" msgstr "" -#: src/Object/Post.php:239 src/Object/Post.php:241 +#: src/Object/Post.php:225 src/Object/Post.php:227 msgid "Edit" msgstr "Bewerken" -#: src/Object/Post.php:275 +#: src/Object/Post.php:261 msgid "Delete globally" msgstr "Verwijder globaal" -#: src/Object/Post.php:275 +#: src/Object/Post.php:261 msgid "Remove locally" msgstr "Verwijder lokaal" -#: src/Object/Post.php:282 +#: src/Object/Post.php:268 #, php-format msgid "Block %s" msgstr "" -#: src/Object/Post.php:287 +#: src/Object/Post.php:273 #, php-format msgid "Ignore %s" msgstr "" -#: src/Object/Post.php:292 +#: src/Object/Post.php:278 #, php-format msgid "Collapse %s" msgstr "" -#: src/Object/Post.php:296 +#: src/Object/Post.php:282 msgid "Report post" msgstr "" -#: src/Object/Post.php:307 +#: src/Object/Post.php:293 msgid "Save to folder" msgstr "" -#: src/Object/Post.php:347 +#: src/Object/Post.php:333 msgid "I will attend" msgstr "Ik zal er zijn" -#: src/Object/Post.php:347 +#: src/Object/Post.php:333 msgid "I will not attend" msgstr "Ik zal er niet zijn" -#: src/Object/Post.php:347 +#: src/Object/Post.php:333 msgid "I might attend" msgstr "Ik ga misschien" -#: src/Object/Post.php:394 +#: src/Object/Post.php:380 msgid "Ignore thread" msgstr "" -#: src/Object/Post.php:395 +#: src/Object/Post.php:381 msgid "Unignore thread" msgstr "" -#: src/Object/Post.php:396 +#: src/Object/Post.php:382 msgid "Toggle ignore status" msgstr "" -#: src/Object/Post.php:406 +#: src/Object/Post.php:392 msgid "Add star" msgstr "" -#: src/Object/Post.php:407 +#: src/Object/Post.php:393 msgid "Remove star" msgstr "" -#: src/Object/Post.php:408 +#: src/Object/Post.php:394 msgid "Toggle star status" msgstr "" -#: src/Object/Post.php:419 +#: src/Object/Post.php:405 msgid "Pin" msgstr "" -#: src/Object/Post.php:420 +#: src/Object/Post.php:406 msgid "Unpin" msgstr "" -#: src/Object/Post.php:421 +#: src/Object/Post.php:407 msgid "Toggle pin status" msgstr "" -#: src/Object/Post.php:424 +#: src/Object/Post.php:410 msgid "Pinned" msgstr "" -#: src/Object/Post.php:429 +#: src/Object/Post.php:415 msgid "Add tag" msgstr "" -#: src/Object/Post.php:444 +#: src/Object/Post.php:430 msgid "Quote share this" msgstr "" -#: src/Object/Post.php:444 +#: src/Object/Post.php:430 msgid "Quote Share" msgstr "" -#: src/Object/Post.php:447 +#: src/Object/Post.php:433 msgid "Reshare this" msgstr "" -#: src/Object/Post.php:447 +#: src/Object/Post.php:433 msgid "Reshare" msgstr "" -#: src/Object/Post.php:448 +#: src/Object/Post.php:434 msgid "Cancel your Reshare" msgstr "" -#: src/Object/Post.php:448 +#: src/Object/Post.php:434 msgid "Unshare" msgstr "" -#: src/Object/Post.php:492 +#: src/Object/Post.php:478 #, php-format msgid "%s (Received %s)" msgstr "" -#: src/Object/Post.php:498 +#: src/Object/Post.php:484 msgid "Comment this item on your system" msgstr "" -#: src/Object/Post.php:498 +#: src/Object/Post.php:484 msgid "Remote comment" msgstr "" -#: src/Object/Post.php:520 +#: src/Object/Post.php:506 msgid "Share via ..." msgstr "" -#: src/Object/Post.php:520 +#: src/Object/Post.php:506 msgid "Share via external services" msgstr "" -#: src/Object/Post.php:527 +#: src/Object/Post.php:513 msgid "Unknown parent" msgstr "" -#: src/Object/Post.php:531 +#: src/Object/Post.php:517 #, php-format msgid "in reply to %s" msgstr "" -#: src/Object/Post.php:533 +#: src/Object/Post.php:519 msgid "Parent is probably private or not federated." msgstr "" -#: src/Object/Post.php:557 +#: src/Object/Post.php:543 msgid "to" msgstr "aan" -#: src/Object/Post.php:558 +#: src/Object/Post.php:544 msgid "via" msgstr "via" -#: src/Object/Post.php:559 +#: src/Object/Post.php:545 msgid "Wall-to-Wall" msgstr "wall-to-wall" -#: src/Object/Post.php:560 +#: src/Object/Post.php:546 msgid "via Wall-To-Wall:" msgstr "via wall-to-wall" -#: src/Object/Post.php:613 +#: src/Object/Post.php:599 #, php-format msgid "Reply to %s" msgstr "Antwoord aan %s" -#: src/Object/Post.php:616 +#: src/Object/Post.php:602 msgid "More" msgstr "Meer" -#: src/Object/Post.php:635 +#: src/Object/Post.php:621 msgid "Notifier task is pending" msgstr "Meldingstaak is in behandeling" -#: src/Object/Post.php:636 +#: src/Object/Post.php:622 msgid "Delivery to remote servers is pending" msgstr "Levering aan externe servers is in behandeling" -#: src/Object/Post.php:637 +#: src/Object/Post.php:623 msgid "Delivery to remote servers is underway" msgstr "" -#: src/Object/Post.php:638 +#: src/Object/Post.php:624 msgid "Delivery to remote servers is mostly done" msgstr "" -#: src/Object/Post.php:639 +#: src/Object/Post.php:625 msgid "Delivery to remote servers is done" msgstr "" -#: src/Object/Post.php:661 +#: src/Object/Post.php:647 #, php-format msgid "%d comment" msgid_plural "%d comments" msgstr[0] "%d reactie" msgstr[1] "%d reacties" -#: src/Object/Post.php:662 +#: src/Object/Post.php:648 msgid "Show more" msgstr "Toon meer" -#: src/Object/Post.php:663 +#: src/Object/Post.php:649 msgid "Show fewer" msgstr "Toon minder" -#: src/Object/Post.php:700 +#: src/Object/Post.php:686 #, php-format msgid "Reshared by: %s" msgstr "" -#: src/Object/Post.php:705 +#: src/Object/Post.php:691 #, php-format msgid "Viewed by: %s" msgstr "" -#: src/Object/Post.php:710 +#: src/Object/Post.php:696 #, php-format msgid "Read by: %s" msgstr "" -#: src/Object/Post.php:715 +#: src/Object/Post.php:701 #, php-format msgid "Liked by: %s" msgstr "" -#: src/Object/Post.php:720 +#: src/Object/Post.php:706 #, php-format msgid "Disliked by: %s" msgstr "" -#: src/Object/Post.php:725 +#: src/Object/Post.php:711 #, php-format msgid "Attended by: %s" msgstr "" -#: src/Object/Post.php:730 +#: src/Object/Post.php:716 #, php-format msgid "Maybe attended by: %s" msgstr "" -#: src/Object/Post.php:735 +#: src/Object/Post.php:721 #, php-format msgid "Not attended by: %s" msgstr "" -#: src/Object/Post.php:740 +#: src/Object/Post.php:726 #, php-format msgid "Commented by: %s" msgstr "" -#: src/Object/Post.php:745 +#: src/Object/Post.php:731 #, php-format msgid "Reacted with %s by: %s" msgstr "" -#: src/Object/Post.php:768 +#: src/Object/Post.php:754 #, php-format msgid "Quote shared by: %s" msgstr "" -#: src/Protocol/ActivityPub/Receiver.php:568 +#: src/Protocol/ActivityPub/Receiver.php:557 msgid "Chat" msgstr "" -#: src/Protocol/Delivery.php:544 +#: src/Protocol/Delivery.php:530 msgid "(no subject)" msgstr "" -#: src/Protocol/OStatus.php:1392 -#, php-format -msgid "%s is now following %s." -msgstr "%s volgt nu %s." - -#: src/Protocol/OStatus.php:1393 -msgid "following" -msgstr "volgend" - -#: src/Protocol/OStatus.php:1396 -#, php-format -msgid "%s stopped following %s." -msgstr "%s stopte %s te volgen." - -#: src/Protocol/OStatus.php:1397 -msgid "stopped following" -msgstr "is gestopt met volgen" - -#: src/Render/FriendicaSmartyEngine.php:56 +#: src/Render/FriendicaSmartyEngine.php:42 #, php-format msgid "The folder %s must be writable by webserver." msgstr "" -#: src/Security/Authentication.php:216 +#: src/Security/Authentication.php:200 msgid "Login failed." msgstr "Login mislukt." -#: src/Security/Authentication.php:261 +#: src/Security/Authentication.php:245 msgid "Login failed. Please check your credentials." msgstr "Aanmelden mislukt. Controleer uw inloggegevens." -#: src/Security/Authentication.php:375 +#: src/Security/Authentication.php:359 #, php-format msgid "Welcome %s" msgstr "Welkom %s" -#: src/Security/Authentication.php:376 +#: src/Security/Authentication.php:360 msgid "Please upload a profile photo." msgstr "Upload een profielfoto." -#: src/Util/EMailer/MailBuilder.php:260 +#: src/Security/OpenWebAuth.php:149 +#, php-format +msgid "OpenWebAuth: %1$s welcomes %2$s" +msgstr "OpenWebAuth: %1$s verwelkomt %2$s" + +#: src/Util/EMailer/MailBuilder.php:246 msgid "Friendica Notification" msgstr "" -#: src/Util/EMailer/NotifyMailBuilder.php:78 -#: src/Util/EMailer/SystemMailBuilder.php:54 +#: src/Util/EMailer/NotifyMailBuilder.php:64 +#: src/Util/EMailer/SystemMailBuilder.php:40 #, php-format msgid "%1$s, %2$s Administrator" msgstr "" -#: src/Util/EMailer/NotifyMailBuilder.php:80 -#: src/Util/EMailer/SystemMailBuilder.php:56 +#: src/Util/EMailer/NotifyMailBuilder.php:66 +#: src/Util/EMailer/SystemMailBuilder.php:42 #, php-format msgid "%s Administrator" msgstr "" -#: src/Util/EMailer/NotifyMailBuilder.php:193 -#: src/Util/EMailer/NotifyMailBuilder.php:217 -#: src/Util/EMailer/SystemMailBuilder.php:101 -#: src/Util/EMailer/SystemMailBuilder.php:118 +#: src/Util/EMailer/NotifyMailBuilder.php:179 +#: src/Util/EMailer/NotifyMailBuilder.php:203 +#: src/Util/EMailer/SystemMailBuilder.php:87 +#: src/Util/EMailer/SystemMailBuilder.php:104 msgid "thanks" msgstr "" -#: src/Util/Temporal.php:172 +#: src/Util/Temporal.php:158 msgid "YYYY-MM-DD or MM-DD" msgstr "" -#: src/Util/Temporal.php:280 +#: src/Util/Temporal.php:266 #, php-format msgid "Time zone: %s Change in Settings" msgstr "" -#: src/Util/Temporal.php:320 src/Util/Temporal.php:329 +#: src/Util/Temporal.php:306 src/Util/Temporal.php:315 msgid "never" msgstr "" -#: src/Util/Temporal.php:343 +#: src/Util/Temporal.php:329 msgid "less than a second ago" msgstr "" -#: src/Util/Temporal.php:352 +#: src/Util/Temporal.php:338 msgid "year" msgstr "" -#: src/Util/Temporal.php:352 +#: src/Util/Temporal.php:338 msgid "years" msgstr "" -#: src/Util/Temporal.php:353 +#: src/Util/Temporal.php:339 msgid "months" msgstr "" -#: src/Util/Temporal.php:354 +#: src/Util/Temporal.php:340 msgid "weeks" msgstr "" -#: src/Util/Temporal.php:355 +#: src/Util/Temporal.php:341 msgid "days" msgstr "" -#: src/Util/Temporal.php:356 +#: src/Util/Temporal.php:342 msgid "hour" msgstr "" -#: src/Util/Temporal.php:356 +#: src/Util/Temporal.php:342 msgid "hours" msgstr "" -#: src/Util/Temporal.php:357 +#: src/Util/Temporal.php:343 msgid "minute" msgstr "" -#: src/Util/Temporal.php:357 +#: src/Util/Temporal.php:343 msgid "minutes" msgstr "" -#: src/Util/Temporal.php:358 +#: src/Util/Temporal.php:344 msgid "second" msgstr "" -#: src/Util/Temporal.php:358 +#: src/Util/Temporal.php:344 msgid "seconds" msgstr "" -#: src/Util/Temporal.php:367 +#: src/Util/Temporal.php:353 #, php-format msgid "in %1$d %2$s" msgstr "" -#: src/Util/Temporal.php:370 +#: src/Util/Temporal.php:356 #, php-format msgid "%1$d %2$s ago" msgstr "" -#: src/Worker/PushSubscription.php:110 +#: src/Worker/PushSubscription.php:96 msgid "Notification from Friendica" msgstr "" -#: src/Worker/PushSubscription.php:111 +#: src/Worker/PushSubscription.php:97 msgid "Empty Post" msgstr "" -#: view/theme/duepuntozero/config.php:68 +#: view/theme/duepuntozero/config.php:56 msgid "default" msgstr "" -#: view/theme/duepuntozero/config.php:69 +#: view/theme/duepuntozero/config.php:57 msgid "greenzero" msgstr "" -#: view/theme/duepuntozero/config.php:70 +#: view/theme/duepuntozero/config.php:58 msgid "purplezero" msgstr "" -#: view/theme/duepuntozero/config.php:71 +#: view/theme/duepuntozero/config.php:59 msgid "easterbunny" msgstr "" -#: view/theme/duepuntozero/config.php:72 +#: view/theme/duepuntozero/config.php:60 msgid "darkzero" msgstr "" -#: view/theme/duepuntozero/config.php:73 +#: view/theme/duepuntozero/config.php:61 msgid "comix" msgstr "" -#: view/theme/duepuntozero/config.php:74 +#: view/theme/duepuntozero/config.php:62 msgid "slackr" msgstr "" -#: view/theme/duepuntozero/config.php:87 +#: view/theme/duepuntozero/config.php:75 msgid "Variations" msgstr "" -#: view/theme/frio/config.php:146 +#: view/theme/frio/config.php:134 msgid "Note" msgstr "" -#: view/theme/frio/config.php:146 +#: view/theme/frio/config.php:134 msgid "Check image permissions if all users are allowed to see the image" msgstr "" -#: view/theme/frio/config.php:152 +#: view/theme/frio/config.php:140 msgid "Appearance" msgstr "" -#: view/theme/frio/config.php:153 +#: view/theme/frio/config.php:141 msgid "Accent color" msgstr "" -#: view/theme/frio/config.php:153 +#: view/theme/frio/config.php:141 msgid "Blue" msgstr "" -#: view/theme/frio/config.php:153 +#: view/theme/frio/config.php:141 msgid "Red" msgstr "" -#: view/theme/frio/config.php:153 +#: view/theme/frio/config.php:141 msgid "Purple" msgstr "" -#: view/theme/frio/config.php:153 +#: view/theme/frio/config.php:141 msgid "Green" msgstr "" -#: view/theme/frio/config.php:153 +#: view/theme/frio/config.php:141 msgid "Pink" msgstr "" -#: view/theme/frio/config.php:154 +#: view/theme/frio/config.php:142 msgid "Copy or paste schemestring" msgstr "" -#: view/theme/frio/config.php:154 +#: view/theme/frio/config.php:142 msgid "" "You can copy this string to share your theme with others. Pasting here " "applies the schemestring" msgstr "" -#: view/theme/frio/config.php:155 +#: view/theme/frio/config.php:143 msgid "Navigation bar background color" msgstr "" -#: view/theme/frio/config.php:156 +#: view/theme/frio/config.php:144 msgid "Navigation bar icon color " msgstr "" -#: view/theme/frio/config.php:157 +#: view/theme/frio/config.php:145 msgid "Link color" msgstr "" -#: view/theme/frio/config.php:158 +#: view/theme/frio/config.php:146 msgid "Set the background color" msgstr "" -#: view/theme/frio/config.php:159 +#: view/theme/frio/config.php:147 msgid "Content background opacity" msgstr "" -#: view/theme/frio/config.php:160 +#: view/theme/frio/config.php:148 msgid "Set the background image" msgstr "" -#: view/theme/frio/config.php:161 +#: view/theme/frio/config.php:149 msgid "Background image style" msgstr "" -#: view/theme/frio/config.php:164 +#: view/theme/frio/config.php:152 msgid "Always open Compose page" msgstr "" -#: view/theme/frio/config.php:164 +#: view/theme/frio/config.php:152 msgid "" "The New Post button always open the 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:168 +#: view/theme/frio/config.php:156 msgid "Login page background image" msgstr "" -#: view/theme/frio/config.php:172 +#: view/theme/frio/config.php:160 msgid "Login page background color" msgstr "" -#: view/theme/frio/config.php:172 +#: view/theme/frio/config.php:160 msgid "Leave background image and color empty for theme defaults" msgstr "" -#: view/theme/frio/php/Image.php:39 +#: view/theme/frio/php/Image.php:27 msgid "Top Banner" msgstr "" -#: view/theme/frio/php/Image.php:39 +#: view/theme/frio/php/Image.php:27 msgid "" "Resize image to the width of the screen and show background color below on " "long pages." msgstr "" -#: view/theme/frio/php/Image.php:40 +#: view/theme/frio/php/Image.php:28 msgid "Full screen" msgstr "" -#: view/theme/frio/php/Image.php:40 +#: view/theme/frio/php/Image.php:28 msgid "" "Resize image to fill entire screen, clipping either the right or the bottom." msgstr "" -#: view/theme/frio/php/Image.php:41 +#: view/theme/frio/php/Image.php:29 msgid "Single row mosaic" msgstr "" -#: view/theme/frio/php/Image.php:41 +#: view/theme/frio/php/Image.php:29 msgid "" "Resize image to repeat it on a single row, either vertical or horizontal." msgstr "" -#: view/theme/frio/php/Image.php:42 +#: view/theme/frio/php/Image.php:30 msgid "Mosaic" msgstr "" -#: view/theme/frio/php/Image.php:42 +#: view/theme/frio/php/Image.php:30 msgid "Repeat image to fill the screen." msgstr "" -#: view/theme/frio/php/default.php:82 view/theme/frio/php/standard.php:40 +#: view/theme/frio/php/default.php:70 view/theme/frio/php/standard.php:28 msgid "Skip to main content" msgstr "" -#: view/theme/frio/php/default.php:153 view/theme/frio/php/standard.php:75 +#: view/theme/frio/php/default.php:141 view/theme/frio/php/standard.php:63 msgid "Back to top" msgstr "" -#: view/theme/frio/php/scheme.php:105 +#: view/theme/frio/php/scheme.php:93 msgid "Light" msgstr "" -#: view/theme/frio/php/scheme.php:106 +#: view/theme/frio/php/scheme.php:94 msgid "Dark" msgstr "" -#: view/theme/frio/php/scheme.php:107 +#: view/theme/frio/php/scheme.php:95 msgid "Black" msgstr "" -#: view/theme/frio/php/scheme.php:118 +#: view/theme/frio/php/scheme.php:106 msgid "Custom" msgstr "" -#: view/theme/frio/theme.php:214 +#: view/theme/frio/theme.php:202 msgid "Guest" msgstr "" -#: view/theme/frio/theme.php:217 +#: view/theme/frio/theme.php:205 msgid "Visitor" msgstr "" -#: view/theme/quattro/config.php:89 +#: view/theme/quattro/config.php:77 msgid "Alignment" msgstr "" -#: view/theme/quattro/config.php:89 +#: view/theme/quattro/config.php:77 msgid "Left" msgstr "" -#: view/theme/quattro/config.php:89 +#: view/theme/quattro/config.php:77 msgid "Center" msgstr "" -#: view/theme/quattro/config.php:90 +#: view/theme/quattro/config.php:78 msgid "Color scheme" msgstr "" -#: view/theme/quattro/config.php:91 +#: view/theme/quattro/config.php:79 msgid "Posts font size" msgstr "" -#: view/theme/quattro/config.php:92 +#: view/theme/quattro/config.php:80 msgid "Textareas font size" msgstr "" -#: view/theme/vier/config.php:91 +#: view/theme/vier/config.php:79 msgid "Comma separated list of helper groups" msgstr "" -#: view/theme/vier/config.php:131 +#: view/theme/vier/config.php:119 msgid "don't show" msgstr "" -#: view/theme/vier/config.php:131 +#: view/theme/vier/config.php:119 msgid "show" msgstr "" -#: view/theme/vier/config.php:137 +#: view/theme/vier/config.php:125 msgid "Set style" msgstr "" -#: view/theme/vier/config.php:138 +#: view/theme/vier/config.php:126 msgid "Community Pages" msgstr "" -#: view/theme/vier/config.php:139 view/theme/vier/theme.php:148 +#: view/theme/vier/config.php:127 view/theme/vier/theme.php:136 msgid "Community Profiles" msgstr "" -#: view/theme/vier/config.php:140 +#: view/theme/vier/config.php:128 msgid "Help or @NewHere ?" msgstr "" -#: view/theme/vier/config.php:141 view/theme/vier/theme.php:319 +#: view/theme/vier/config.php:129 view/theme/vier/theme.php:307 msgid "Connect Services" msgstr "" -#: view/theme/vier/config.php:142 +#: view/theme/vier/config.php:130 msgid "Find Friends" msgstr "" -#: view/theme/vier/config.php:143 view/theme/vier/theme.php:175 +#: view/theme/vier/config.php:131 view/theme/vier/theme.php:163 msgid "Last users" msgstr "" -#: view/theme/vier/theme.php:234 +#: view/theme/vier/theme.php:222 msgid "Quick Start" msgstr "" diff --git a/view/lang/nl/strings.php b/view/lang/nl/strings.php index a28a2266c2..8c4096e011 100644 --- a/view/lang/nl/strings.php +++ b/view/lang/nl/strings.php @@ -586,7 +586,6 @@ $a->strings['An author or name was not found.'] = 'Er werd geen auteur of naam g $a->strings['No browser URL could be matched to this address.'] = 'Er kan geen browser URL gematcht worden met dit adres.'; $a->strings['Unable to match @-style Identity Address with a known protocol or email contact.'] = 'Het @-stijl-identiteitsadres komt niet overeen met een nekend protocol of e-mailcontact.'; $a->strings['Use mailto: in front of address to force email check.'] = 'Gebruik mailto: voor het adres om een e-mailcontrole af te dwingen.'; -$a->strings['The profile address specified belongs to a network which has been disabled on this site.'] = 'Het opgegeven profiel adres behoort tot een netwerk dat gedeactiveerd is op deze site.'; $a->strings['Limited profile. This person will be unable to receive direct/personal notifications from you.'] = 'Profiel met restricties. Deze peresoon zal geen directe/persoonlijke notificaties van jou kunnen ontvangen.'; $a->strings['Unable to retrieve contact information.'] = 'Het was niet mogelijk informatie over dit contact op te halen.'; $a->strings['Starts:'] = 'Begint:'; @@ -629,7 +628,6 @@ $a->strings['g A l F d'] = 'G l j F'; $a->strings['[No description]'] = '[Geen omschrijving]'; $a->strings['Event Reminders'] = 'Gebeurtenisherinneringen'; $a->strings['Upcoming events the next 7 days:'] = 'Evenementen de komende 7 dagen:'; -$a->strings['OpenWebAuth: %1$s welcomes %2$s'] = 'OpenWebAuth: %1$s verwelkomt %2$s'; $a->strings['Hometown:'] = 'Woonplaats:'; $a->strings['With:'] = 'Met:'; $a->strings['Since:'] = 'Sinds:'; @@ -882,7 +880,6 @@ $a->strings['When the database cleanup is enabled, this defines the days after w $a->strings['Lifespan of unclaimed items'] = 'Levensduur van niet geclaimde items'; $a->strings['When the database cleanup is enabled, this defines the days after which unclaimed remote items (mostly content from the relay) will be deleted. Default value is 90 days. Defaults to the general lifespan value of remote items if set to 0.'] = '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.'; $a->strings['Lifespan of raw conversation data'] = 'Levenstijd van ruwe gespreksdata'; -$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.'] = '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.'; $a->strings['Maximum numbers of comments per post'] = 'Maximum aantal reacties per bericht'; $a->strings['How much comments should be shown for each post? Default value is 100.'] = 'Hoeveel reacties moeten getoond worden per bericht? Standaard waarde is 100.'; $a->strings['Temp path'] = 'Tijdelijk pad'; @@ -1057,7 +1054,6 @@ $a->strings['Submit Request'] = 'Aanvraag indienen'; $a->strings['You already added this contact.'] = 'Je hebt deze kontakt al toegevoegd'; $a->strings['The network type couldn\'t be detected. Contact can\'t be added.'] = 'Het type netwerk kon niet gedetecteerd worden. Contact kan niet toegevoegd worden.'; $a->strings['Diaspora support isn\'t enabled. Contact can\'t be added.'] = 'Diaspora ondersteuning is niet geactiveerd. Contact kan niet toegevoegd worden.'; -$a->strings['OStatus support is disabled. Contact can\'t be added.'] = 'OStatus ondersteuning is niet geactiveerd. Contact kan niet toegevoegd woren.'; $a->strings['Please answer the following:'] = 'Beantwoord het volgende:'; $a->strings['Your Identity Address:'] = 'Adres van je identiteit:'; $a->strings['Profile URL'] = 'Profiel url'; @@ -1343,8 +1339,6 @@ $a->strings['Show unread'] = 'Toon ongelezen'; $a->strings['{0} requested registration'] = '{0} vroeg om zich te registreren'; $a->strings['Authorize application connection'] = 'Verbinding met de applicatie goedkeuren'; $a->strings['Do you want to authorize this application to access your posts and contacts, and/or create new posts for you?'] = 'Wil je deze toepassing toestemming geven om jouw berichten en contacten in te kijken, en/of nieuwe berichten in jouw plaats aan te maken?'; -$a->strings['Resubscribing to OStatus contacts'] = 'Opnieuw inschrijven bij OStatus contacten'; -$a->strings['Keep this window open until done.'] = 'Houd dit scherm open tot het klaar is'; $a->strings['No contact provided.'] = 'Geen contact opgegeven.'; $a->strings['Couldn\'t fetch information for contact.'] = 'Kon de informatie voor het contact niet ophalen.'; $a->strings['Couldn\'t fetch friends for contact.'] = 'Kon de vrienden van contact niet ophalen.'; @@ -1352,6 +1346,7 @@ $a->strings['Done'] = 'Klaar'; $a->strings['success'] = 'Succesvol'; $a->strings['failed'] = 'Mislukt'; $a->strings['ignored'] = 'Verboden'; +$a->strings['Keep this window open until done.'] = 'Houd dit scherm open tot het klaar is'; $a->strings['The Photo with id %s is not available.'] = 'De foto met id %s is niet beschikbaar'; $a->strings['Invalid photo with id %s.'] = 'Ongeldige foto met ID %s'; $a->strings['Edit post'] = 'Bericht bewerken'; @@ -1366,9 +1361,9 @@ $a->strings['Remove'] = 'Verwijderen'; $a->strings['Remote privacy information not available.'] = 'Privacyinformatie op afstand niet beschikbaar.'; $a->strings['Visible to:'] = 'Zichtbaar voor:'; $a->strings['No contacts.'] = 'Geen contacten.'; -$a->strings['%s\'s timeline'] = 'Tijdslijn van %s'; $a->strings['%s\'s posts'] = 'Berichten van %s'; $a->strings['%s\'s comments'] = 'reactie van %s'; +$a->strings['%s\'s timeline'] = 'Tijdslijn van %s'; $a->strings['Image exceeds size limit of %s'] = 'Beeld is groter dan de limiet ( %s )'; $a->strings['Image upload didn\'t complete, please try again'] = 'Opladen van het beeld is niet compleet, probeer het opnieuw'; $a->strings['Image file is missing'] = 'Beeld bestand ontbreekt'; @@ -1563,7 +1558,6 @@ $a->strings['None'] = 'Geen'; $a->strings['General Social Media Settings'] = 'Algemene Sociale Media Instellingen'; $a->strings['Attach the link title'] = 'Voeg de linktitel toe'; $a->strings['When activated, the title of the attached link will be added as a title on posts to Diaspora. This is mostly helpful with "remote-self" contacts that share feed content.'] = 'Indien geactiveerd, wordt de titel van de bijgevoegde link toegevoegd als titel op berichten op Diaspora. Dit is vooral handig bij contacten op afstand die zelf feed-inhoud delen.'; -$a->strings['Repair OStatus subscriptions'] = 'Herstel OStatus inschrijvingen'; $a->strings['Email/Mailbox Setup'] = 'E-mail Instellen'; $a->strings['If you wish to communicate with email contacts using this service (optional), please specify how to connect to your mailbox.'] = 'Als je wilt communiceren met e-mail contacten via deze dienst (optioneel), moet je hier opgeven hoe ik jouw mailbox kan bereiken.'; $a->strings['Last successful email check:'] = 'Laatste succesvolle e-mail controle:'; @@ -1801,7 +1795,6 @@ $a->strings['%s commented on %s\'s post'] = '%s gaf een reactie op het bericht v $a->strings['%s created a new post'] = '%s schreef een nieuw bericht'; $a->strings['Friend Suggestion'] = 'Vriendschapsvoorstel'; $a->strings['Friend/Connect Request'] = 'Vriendschapsverzoek'; -$a->strings['New Follower'] = 'Nieuwe Volger'; $a->strings['%s New mail received at %s'] = '%s Nieuw bericht ontvangen op %s'; $a->strings['%1$s sent you a new private message at %2$s.'] = '%1$s sent you a new private message at %2$s.'; $a->strings['a private message'] = 'een prive bericht'; @@ -1871,11 +1864,8 @@ $a->strings['%d comment'] = [ ]; $a->strings['Show more'] = 'Toon meer'; $a->strings['Show fewer'] = 'Toon minder'; -$a->strings['%s is now following %s.'] = '%s volgt nu %s.'; -$a->strings['following'] = 'volgend'; -$a->strings['%s stopped following %s.'] = '%s stopte %s te volgen.'; -$a->strings['stopped following'] = 'is gestopt met volgen'; $a->strings['Login failed.'] = 'Login mislukt.'; $a->strings['Login failed. Please check your credentials.'] = 'Aanmelden mislukt. Controleer uw inloggegevens.'; $a->strings['Welcome %s'] = 'Welkom %s'; $a->strings['Please upload a profile photo.'] = 'Upload een profielfoto.'; +$a->strings['OpenWebAuth: %1$s welcomes %2$s'] = 'OpenWebAuth: %1$s verwelkomt %2$s'; diff --git a/view/lang/pl/messages.po b/view/lang/pl/messages.po index 3c29db6d92..4a14eae481 100644 --- a/view/lang/pl/messages.po +++ b/view/lang/pl/messages.po @@ -1,8 +1,7 @@ # FRIENDICA Distributed Social Network -# SPDX-FileCopyrightText: Copyright (C) 2010-2024, the Friendica project -# -# SPDX-License-Identifier: AGPL-3.0-or-later -# +# Copyright (C) 2010-2024, the Friendica project +# This file is distributed under the same license as the Friendica package. +# # Translators: # Adam Jurkiewicz , 2012 # Adam Jurkiewicz , 2012 @@ -60,7 +59,7 @@ msgid "" msgstr "" "Project-Id-Version: friendica\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-08-11 06:43+0000\n" +"POT-Creation-Date: 2024-10-07 20:46+0000\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" @@ -70,77 +69,77 @@ msgstr "" "Language: pl\n" "Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n" -#: mod/item.php:101 mod/item.php:104 mod/item.php:171 mod/item.php:174 +#: mod/item.php:89 mod/item.php:92 mod/item.php:159 mod/item.php:162 msgid "Unable to locate original post." msgstr "Nie można zlokalizować oryginalnej wiadomości." -#: mod/item.php:139 +#: mod/item.php:127 msgid "Post updated." msgstr "Wpis zaktualizowany." -#: mod/item.php:204 mod/item.php:208 +#: mod/item.php:192 mod/item.php:196 msgid "Item wasn't stored." msgstr "Element nie został zapisany. " -#: mod/item.php:218 +#: mod/item.php:206 msgid "Item couldn't be fetched." msgstr "Nie można pobrać elementu." -#: mod/item.php:262 mod/item.php:266 +#: mod/item.php:250 mod/item.php:254 msgid "Empty post discarded." msgstr "Pusty wpis został odrzucony." -#: mod/item.php:437 src/Module/Admin/Themes/Details.php:45 -#: src/Module/Admin/Themes/Index.php:65 src/Module/Debug/ItemBody.php:42 -#: src/Module/Debug/ItemBody.php:57 src/Module/Item/Feed.php:80 +#: mod/item.php:425 src/Module/Admin/Themes/Details.php:31 +#: src/Module/Admin/Themes/Index.php:51 src/Module/Debug/ItemBody.php:28 +#: src/Module/Debug/ItemBody.php:43 src/Module/Item/Feed.php:66 msgid "Item not found." msgstr "Element nie znaleziony." -#: mod/item.php:461 mod/message.php:66 mod/message.php:112 mod/notes.php:45 -#: mod/photos.php:147 mod/photos.php:663 src/Model/Event.php:520 -#: src/Module/Attach.php:55 src/Module/BaseApi.php:103 -#: src/Module/BaseNotifications.php:98 src/Module/BaseSettings.php:50 -#: src/Module/Calendar/Event/API.php:88 src/Module/Calendar/Event/Form.php:84 -#: src/Module/Calendar/Export.php:82 src/Module/Calendar/Show.php:82 -#: src/Module/Circle.php:41 src/Module/Circle.php:84 -#: src/Module/Contact/Advanced.php:60 src/Module/Contact/Follow.php:87 -#: src/Module/Contact/Follow.php:160 src/Module/Contact/MatchInterests.php:87 -#: src/Module/Contact/Suggestions.php:54 src/Module/Contact/Unfollow.php:66 -#: src/Module/Contact/Unfollow.php:80 src/Module/Contact/Unfollow.php:112 -#: src/Module/FollowConfirm.php:38 src/Module/FriendSuggest.php:57 -#: src/Module/Invite.php:42 src/Module/Invite.php:131 -#: src/Module/Notifications/Notification.php:76 -#: src/Module/Notifications/Notification.php:107 -#: src/Module/OStatus/Repair.php:60 src/Module/OStatus/Subscribe.php:68 -#: src/Module/Post/Edit.php:76 src/Module/Profile/Common.php:75 -#: src/Module/Profile/Contacts.php:78 src/Module/Profile/Photos.php:92 -#: src/Module/Profile/Schedule.php:39 src/Module/Profile/Schedule.php:56 -#: src/Module/Register.php:84 src/Module/Register.php:97 -#: src/Module/Register.php:213 src/Module/Register.php:252 -#: src/Module/Search/Directory.php:37 src/Module/Settings/Account.php:50 -#: src/Module/Settings/Account.php:391 src/Module/Settings/Channels.php:66 -#: src/Module/Settings/Channels.php:141 src/Module/Settings/Delegation.php:90 -#: src/Module/Settings/Display.php:90 src/Module/Settings/Display.php:197 -#: src/Module/Settings/Profile/Photo/Crop.php:165 -#: src/Module/Settings/Profile/Photo/Index.php:110 -#: src/Module/Settings/RemoveMe.php:119 src/Module/Settings/UserExport.php:78 -#: src/Module/Settings/UserExport.php:114 -#: src/Module/Settings/UserExport.php:213 -#: src/Module/Settings/UserExport.php:233 -#: src/Module/Settings/UserExport.php:298 src/Module/User/Delegation.php:154 -#: src/Module/User/Import.php:85 src/Module/User/Import.php:92 +#: mod/item.php:449 mod/message.php:54 mod/message.php:100 mod/notes.php:33 +#: mod/photos.php:135 mod/photos.php:627 src/Model/Event.php:506 +#: src/Module/Attach.php:41 src/Module/BaseApi.php:89 +#: src/Module/BaseNotifications.php:84 src/Module/BaseSettings.php:36 +#: src/Module/Calendar/Event/API.php:74 src/Module/Calendar/Event/Form.php:70 +#: src/Module/Calendar/Export.php:68 src/Module/Calendar/Show.php:68 +#: src/Module/Circle.php:27 src/Module/Circle.php:70 +#: src/Module/Contact/Advanced.php:46 src/Module/Contact/Follow.php:73 +#: src/Module/Contact/Follow.php:141 src/Module/Contact/MatchInterests.php:73 +#: src/Module/Contact/Suggestions.php:40 src/Module/Contact/Unfollow.php:52 +#: src/Module/Contact/Unfollow.php:66 src/Module/Contact/Unfollow.php:98 +#: src/Module/FollowConfirm.php:24 src/Module/FriendSuggest.php:43 +#: src/Module/Invite.php:28 src/Module/Invite.php:117 +#: src/Module/Notifications/Notification.php:62 +#: src/Module/Notifications/Notification.php:93 +#: src/Module/OStatus/Subscribe.php:54 src/Module/Post/Edit.php:62 +#: src/Module/Profile/Common.php:61 src/Module/Profile/Contacts.php:64 +#: src/Module/Profile/Photos.php:78 src/Module/Profile/Schedule.php:25 +#: src/Module/Profile/Schedule.php:42 src/Module/Register.php:70 +#: src/Module/Register.php:83 src/Module/Register.php:199 +#: src/Module/Register.php:238 src/Module/Search/Directory.php:23 +#: src/Module/Settings/Account.php:36 src/Module/Settings/Account.php:377 +#: src/Module/Settings/Channels.php:52 src/Module/Settings/Channels.php:127 +#: src/Module/Settings/Delegation.php:76 src/Module/Settings/Display.php:76 +#: src/Module/Settings/Display.php:183 +#: src/Module/Settings/Profile/Photo/Crop.php:151 +#: src/Module/Settings/Profile/Photo/Index.php:96 +#: src/Module/Settings/RemoveMe.php:105 src/Module/Settings/UserExport.php:64 +#: src/Module/Settings/UserExport.php:100 +#: src/Module/Settings/UserExport.php:199 +#: src/Module/Settings/UserExport.php:219 +#: src/Module/Settings/UserExport.php:284 src/Module/User/Delegation.php:140 +#: src/Module/User/Import.php:71 src/Module/User/Import.php:78 msgid "Permission denied." msgstr "Brak uprawnień." -#: mod/lostpass.php:40 +#: mod/lostpass.php:28 msgid "No valid account found." msgstr "Nie znaleziono ważnego konta." -#: mod/lostpass.php:52 +#: mod/lostpass.php:40 msgid "Password reset request issued. Check your email." msgstr "Prośba o zresetowanie hasła została zatwierdzona. Sprawdź swój e-mail." -#: mod/lostpass.php:58 +#: mod/lostpass.php:46 #, php-format msgid "" "\n" @@ -156,7 +155,7 @@ msgid "" "\t\tissued this request." msgstr "\n\t\tSzanowny Użytkowniku %1$s, \n\t\t\tOtrzymano prośbę o ''%2$s\" zresetowanie hasła do konta. \n\t\tAby potwierdzić tę prośbę, kliknij link weryfikacyjny \n\t\tponiżej lub wklej go w pasek adresu przeglądarki internetowej. \n \n\t\tJeśli nie prosisz o tę zmianę, nie klikaj w link.\n\t\tJeśli zignorujesz i/lub usuniesz ten e-mail, prośba wkrótce wygaśnie. \n \n\t\tTwoje hasło nie zostanie zmienione, chyba że będziemy mogli potwierdzić \n\t\tTwoje żądanie." -#: mod/lostpass.php:69 +#: mod/lostpass.php:57 #, php-format msgid "" "\n" @@ -173,70 +172,70 @@ msgid "" "\t\tLogin Name:\t%3$s" msgstr "\nPostępuj zgodnie z poniższym linkiem, aby zweryfikować swoją tożsamość: \n\n\t\t%1$s\n\n\t\tOtrzymasz następnie komunikat uzupełniający zawierający nowe hasło. \n\t\tMożesz zmienić to hasło ze strony ustawień swojego konta po zalogowaniu. \n \n\t\tDane logowania są następujące: \n \nLokalizacja strony: \t%2$s\nNazwa użytkownika:\t%3$s" -#: mod/lostpass.php:84 +#: mod/lostpass.php:72 #, php-format msgid "Password reset requested at %s" msgstr "Prośba o reset hasła na %s" -#: mod/lostpass.php:100 +#: mod/lostpass.php:88 msgid "" "Request could not be verified. (You may have previously submitted it.) " "Password reset failed." msgstr "Prośba nie może być zweryfikowana. (Mogłeś już ją poprzednio wysłać.) Reset hasła nie powiódł się." -#: mod/lostpass.php:113 +#: mod/lostpass.php:101 msgid "Request has expired, please make a new one." msgstr "Żądanie wygasło. Zrób nowe." -#: mod/lostpass.php:128 +#: mod/lostpass.php:116 msgid "Forgot your Password?" msgstr "Zapomniałeś hasła?" -#: mod/lostpass.php:129 +#: mod/lostpass.php:117 msgid "" "Enter your email address and submit to have your password reset. Then check " "your email for further instructions." msgstr "Wpisz swój adres email i wyślij, aby zresetować hasło. Później sprawdź swojego emaila w celu uzyskania dalszych instrukcji." -#: mod/lostpass.php:130 src/Module/Security/Login.php:164 +#: mod/lostpass.php:118 src/Module/Security/Login.php:150 msgid "Nickname or Email: " msgstr "Pseudonim lub e-mail: " -#: mod/lostpass.php:131 +#: mod/lostpass.php:119 msgid "Reset" msgstr "Zresetuj" -#: mod/lostpass.php:146 src/Module/Security/Login.php:176 +#: mod/lostpass.php:134 src/Module/Security/Login.php:162 msgid "Password Reset" msgstr "Zresetuj hasło" -#: mod/lostpass.php:147 +#: mod/lostpass.php:135 msgid "Your password has been reset as requested." msgstr "Twoje hasło zostało zresetowane zgodnie z żądaniem." -#: mod/lostpass.php:148 +#: mod/lostpass.php:136 msgid "Your new password is" msgstr "Twoje nowe hasło to" -#: mod/lostpass.php:149 +#: mod/lostpass.php:137 msgid "Save or copy your new password - and then" msgstr "Zapisz lub skopiuj nowe hasło - a następnie" -#: mod/lostpass.php:150 +#: mod/lostpass.php:138 msgid "click here to login" msgstr "naciśnij tutaj, aby zalogować się" -#: mod/lostpass.php:151 +#: mod/lostpass.php:139 msgid "" "Your password may be changed from the Settings page after " "successful login." msgstr "Twoje hasło może być zmienione w Ustawieniach po udanym zalogowaniu." -#: mod/lostpass.php:155 +#: mod/lostpass.php:143 msgid "Your password has been reset." msgstr "Twoje hasło zostało zresetowane." -#: mod/lostpass.php:158 +#: mod/lostpass.php:146 #, php-format msgid "" "\n" @@ -247,7 +246,7 @@ msgid "" "\t\t" msgstr "\n\t\t\tSzanowny Użytkowniku %1$s, \n\t\t\t\tTwoje hasło zostało zmienione zgodnie z życzeniem. Proszę, zachowaj te \n\t\t\tinformacje dotyczące twoich rekordów (lub natychmiast zmień hasło na \n\t\t\tcoś, co zapamiętasz).\n\t\t" -#: mod/lostpass.php:164 +#: mod/lostpass.php:152 #, php-format msgid "" "\n" @@ -261,161 +260,161 @@ msgid "" "\t\t" msgstr "\n\t\t\tDane logowania są następujące:\n\n\t\t\tLokalizacja witryny:\t%1$s\n\t\t\tNazwa użytkownika:\t%2$s\n\t\t\tHasło:\t%3$s\n\n\t\t\tMożesz zmienić hasło na stronie ustawień konta po zalogowaniu.\n\t\t" -#: mod/lostpass.php:176 +#: mod/lostpass.php:164 #, php-format msgid "Your password has been changed at %s" msgstr "Twoje hasło zostało zmienione na %s" -#: mod/message.php:45 mod/message.php:127 src/Content/Nav.php:321 +#: mod/message.php:33 mod/message.php:115 src/Content/Nav.php:307 msgid "New Message" msgstr "Nowa wiadomość" -#: mod/message.php:81 +#: mod/message.php:69 msgid "No recipient selected." msgstr "Nie wybrano odbiorcy." -#: mod/message.php:86 +#: mod/message.php:74 msgid "Unable to locate contact information." msgstr "Nie można znaleźć informacji kontaktowych." -#: mod/message.php:90 +#: mod/message.php:78 msgid "Message could not be sent." msgstr "Nie udało się wysłać wiadomości." -#: mod/message.php:94 +#: mod/message.php:82 msgid "Message collection failure." msgstr "Błąd zbierania komunikatów." -#: mod/message.php:121 src/Module/Notifications/Introductions.php:141 -#: src/Module/Notifications/Introductions.php:176 -#: src/Module/Notifications/Notification.php:85 +#: mod/message.php:109 src/Module/Notifications/Introductions.php:127 +#: src/Module/Notifications/Introductions.php:162 +#: src/Module/Notifications/Notification.php:71 msgid "Discard" msgstr "Odrzuć" -#: mod/message.php:134 src/Content/Nav.php:318 view/theme/frio/theme.php:244 +#: mod/message.php:122 src/Content/Nav.php:304 view/theme/frio/theme.php:232 msgid "Messages" msgstr "Wiadomości" -#: mod/message.php:147 +#: mod/message.php:135 msgid "Conversation not found." msgstr "Nie znaleziono rozmowy." -#: mod/message.php:152 +#: mod/message.php:140 msgid "Message was not deleted." msgstr "Wiadomość nie została usunięta." -#: mod/message.php:167 +#: mod/message.php:155 msgid "Conversation was not removed." msgstr "Rozmowa nie została usunięta." -#: mod/message.php:180 mod/message.php:285 +#: mod/message.php:168 mod/message.php:273 msgid "Please enter a link URL:" msgstr "Proszę wpisać adres URL:" -#: mod/message.php:189 +#: mod/message.php:177 msgid "Send Private Message" msgstr "Wyślij prywatną wiadomość" -#: mod/message.php:190 mod/message.php:345 -#: src/Module/Privacy/PermissionTooltip.php:132 +#: mod/message.php:178 mod/message.php:333 +#: src/Module/Privacy/PermissionTooltip.php:118 msgid "To:" msgstr "Do:" -#: mod/message.php:191 mod/message.php:346 +#: mod/message.php:179 mod/message.php:334 msgid "Subject:" msgstr "Temat:" -#: mod/message.php:195 mod/message.php:349 src/Module/Invite.php:171 +#: mod/message.php:183 mod/message.php:337 src/Module/Invite.php:157 msgid "Your message:" msgstr "Twoja wiadomość:" -#: mod/message.php:198 mod/message.php:353 src/Content/Conversation.php:369 -#: src/Module/Post/Edit.php:131 +#: mod/message.php:186 mod/message.php:341 src/Content/Conversation.php:355 +#: src/Module/Post/Edit.php:117 msgid "Upload photo" msgstr "Wyślij zdjęcie" -#: mod/message.php:199 mod/message.php:354 src/Module/Post/Edit.php:135 +#: mod/message.php:187 mod/message.php:342 src/Module/Post/Edit.php:121 msgid "Insert web link" msgstr "Wstaw link" -#: mod/message.php:200 mod/message.php:356 mod/photos.php:1291 -#: src/Content/Conversation.php:400 src/Content/Conversation.php:1576 -#: src/Module/Item/Compose.php:213 src/Module/Post/Edit.php:145 -#: src/Object/Post.php:618 +#: mod/message.php:188 mod/message.php:344 mod/photos.php:1255 +#: src/Content/Conversation.php:386 src/Content/Conversation.php:1562 +#: src/Module/Item/Compose.php:199 src/Module/Post/Edit.php:131 +#: src/Object/Post.php:604 msgid "Please wait" msgstr "Proszę czekać" -#: mod/message.php:201 mod/message.php:355 mod/photos.php:694 -#: mod/photos.php:814 mod/photos.php:1091 mod/photos.php:1132 -#: mod/photos.php:1188 mod/photos.php:1268 -#: src/Module/Calendar/Event/Form.php:250 src/Module/Contact/Advanced.php:132 -#: src/Module/Contact/Profile.php:384 -#: src/Module/Debug/ActivityPubConversion.php:146 -#: src/Module/Debug/Babel.php:321 src/Module/Debug/Localtime.php:64 -#: src/Module/Debug/Probe.php:54 src/Module/Debug/WebFinger.php:51 -#: src/Module/FriendSuggest.php:145 src/Module/Install.php:234 -#: src/Module/Install.php:274 src/Module/Install.php:309 -#: src/Module/Invite.php:178 src/Module/Item/Compose.php:196 -#: src/Module/Moderation/Item/Source.php:85 -#: src/Module/Moderation/Report/Create.php:168 -#: src/Module/Moderation/Report/Create.php:183 -#: src/Module/Moderation/Report/Create.php:211 -#: src/Module/Moderation/Report/Create.php:263 -#: src/Module/Profile/Profile.php:276 -#: src/Module/Settings/Profile/Index.php:262 -#: src/Module/Settings/Server/Action.php:79 src/Module/User/Delegation.php:189 -#: src/Object/Post.php:1159 view/theme/duepuntozero/config.php:85 -#: view/theme/frio/config.php:150 view/theme/quattro/config.php:87 -#: view/theme/vier/config.php:135 +#: mod/message.php:189 mod/message.php:343 mod/photos.php:658 +#: mod/photos.php:778 mod/photos.php:1055 mod/photos.php:1096 +#: mod/photos.php:1152 mod/photos.php:1232 +#: src/Module/Calendar/Event/Form.php:236 src/Module/Contact/Advanced.php:118 +#: src/Module/Contact/Profile.php:370 +#: src/Module/Debug/ActivityPubConversion.php:132 +#: src/Module/Debug/Babel.php:307 src/Module/Debug/Localtime.php:50 +#: src/Module/Debug/Probe.php:40 src/Module/Debug/WebFinger.php:37 +#: src/Module/FriendSuggest.php:131 src/Module/Install.php:220 +#: src/Module/Install.php:260 src/Module/Install.php:295 +#: src/Module/Invite.php:164 src/Module/Item/Compose.php:182 +#: src/Module/Moderation/Item/Source.php:71 +#: src/Module/Moderation/Report/Create.php:154 +#: src/Module/Moderation/Report/Create.php:169 +#: src/Module/Moderation/Report/Create.php:197 +#: src/Module/Moderation/Report/Create.php:249 +#: src/Module/Profile/Profile.php:262 +#: src/Module/Settings/Profile/Index.php:248 +#: src/Module/Settings/Server/Action.php:65 src/Module/User/Delegation.php:175 +#: src/Object/Post.php:1145 view/theme/duepuntozero/config.php:73 +#: view/theme/frio/config.php:138 view/theme/quattro/config.php:75 +#: view/theme/vier/config.php:123 msgid "Submit" msgstr "Potwierdź" -#: mod/message.php:222 +#: mod/message.php:210 msgid "No messages." msgstr "Brak wiadomości." -#: mod/message.php:278 +#: mod/message.php:266 msgid "Message not available." msgstr "Wiadomość nie jest dostępna." -#: mod/message.php:322 +#: mod/message.php:310 msgid "Delete message" msgstr "Usuń wiadomość" -#: mod/message.php:324 mod/message.php:453 +#: mod/message.php:312 mod/message.php:441 msgid "D, d M Y - g:i A" msgstr "D, d M Y - g:m A" -#: mod/message.php:339 mod/message.php:450 +#: mod/message.php:327 mod/message.php:438 msgid "Delete conversation" msgstr "Usuń rozmowę" -#: mod/message.php:341 +#: mod/message.php:329 msgid "" "No secure communications available. You may be able to " "respond from the sender's profile page." msgstr "Brak bezpiecznej komunikacji. Możesz odpowiedzieć na stronie profilu nadawcy." -#: mod/message.php:344 +#: mod/message.php:332 msgid "Send Reply" msgstr "Odpowiedz" -#: mod/message.php:424 +#: mod/message.php:412 #, php-format msgid "Unknown sender - %s" msgstr "Nieznany nadawca - %s" -#: mod/message.php:426 +#: mod/message.php:414 #, php-format msgid "You and %s" msgstr "Ty i %s" -#: mod/message.php:428 +#: mod/message.php:416 #, php-format msgid "%s and You" msgstr "%s i ty" -#: mod/message.php:456 +#: mod/message.php:444 #, php-format msgid "%d message" msgid_plural "%d messages" @@ -424,799 +423,799 @@ msgstr[1] "%d wiadomości" msgstr[2] "%d wiadomości" msgstr[3] "%d wiadomości" -#: mod/notes.php:52 src/Module/BaseProfile.php:108 +#: mod/notes.php:40 src/Module/BaseProfile.php:94 msgid "Personal Notes" msgstr "Notatki" -#: mod/notes.php:56 +#: mod/notes.php:44 msgid "Personal notes are visible only by yourself." msgstr "Notatki osobiste są widziane tylko przez Ciebie." -#: mod/notes.php:57 src/Content/Text/HTML.php:861 -#: src/Module/Admin/Storage.php:142 src/Module/Filer/SaveTag.php:74 -#: src/Module/Post/Edit.php:129 src/Module/Settings/Channels.php:229 +#: mod/notes.php:45 src/Content/Text/HTML.php:847 +#: src/Module/Admin/Storage.php:128 src/Module/Filer/SaveTag.php:60 +#: src/Module/Post/Edit.php:115 src/Module/Settings/Channels.php:215 msgid "Save" msgstr "Zapisz" -#: mod/photos.php:66 mod/photos.php:129 mod/photos.php:573 -#: src/Model/Event.php:512 src/Model/Profile.php:227 -#: src/Module/Calendar/Export.php:74 src/Module/Calendar/Show.php:74 -#: src/Module/DFRN/Poll.php:43 src/Module/Feed.php:66 src/Module/HCard.php:51 -#: src/Module/Profile/Common.php:62 src/Module/Profile/Common.php:71 -#: src/Module/Profile/Contacts.php:64 src/Module/Profile/Contacts.php:72 -#: src/Module/Profile/Conversations.php:91 src/Module/Profile/Media.php:56 -#: src/Module/Profile/Photos.php:83 src/Module/Profile/RemoteFollow.php:71 -#: src/Module/Register.php:274 +#: mod/photos.php:54 mod/photos.php:117 mod/photos.php:537 +#: src/Model/Event.php:498 src/Model/Profile.php:213 +#: src/Module/Calendar/Export.php:60 src/Module/Calendar/Show.php:60 +#: src/Module/Feed.php:52 src/Module/HCard.php:37 +#: src/Module/Profile/Common.php:48 src/Module/Profile/Common.php:57 +#: src/Module/Profile/Contacts.php:50 src/Module/Profile/Contacts.php:58 +#: src/Module/Profile/Conversations.php:77 src/Module/Profile/Media.php:42 +#: src/Module/Profile/Photos.php:69 src/Module/Profile/RemoteFollow.php:57 +#: src/Module/Register.php:260 msgid "User not found." msgstr "Użytkownik nie znaleziony." -#: mod/photos.php:103 src/Module/BaseProfile.php:68 -#: src/Module/Profile/Photos.php:375 +#: mod/photos.php:91 src/Module/BaseProfile.php:54 +#: src/Module/Profile/Photos.php:361 msgid "Photo Albums" msgstr "Albumy zdjęć" -#: mod/photos.php:104 src/Module/Profile/Photos.php:376 -#: src/Module/Profile/Photos.php:396 +#: mod/photos.php:92 src/Module/Profile/Photos.php:362 +#: src/Module/Profile/Photos.php:382 msgid "Recent Photos" msgstr "Ostatnio dodane zdjęcia" -#: mod/photos.php:106 mod/photos.php:862 src/Module/Profile/Photos.php:378 -#: src/Module/Profile/Photos.php:398 +#: mod/photos.php:94 mod/photos.php:826 src/Module/Profile/Photos.php:364 +#: src/Module/Profile/Photos.php:384 msgid "Upload New Photos" msgstr "Wyślij nowe zdjęcie" -#: mod/photos.php:118 src/Module/BaseSettings.php:72 -#: src/Module/Profile/Photos.php:359 +#: mod/photos.php:106 src/Module/BaseSettings.php:58 +#: src/Module/Profile/Photos.php:345 msgid "everybody" msgstr "wszyscy" -#: mod/photos.php:154 +#: mod/photos.php:142 msgid "Contact information unavailable" msgstr "Informacje o kontakcie są niedostępne" -#: mod/photos.php:183 +#: mod/photos.php:171 msgid "Album not found." msgstr "Nie znaleziono albumu." -#: mod/photos.php:239 +#: mod/photos.php:227 msgid "Album successfully deleted" msgstr "Album został pomyślnie usunięty" -#: mod/photos.php:241 +#: mod/photos.php:229 msgid "Album was empty." msgstr "Album był pusty." -#: mod/photos.php:272 +#: mod/photos.php:260 msgid "Failed to delete the photo." msgstr "Błąd usunięcia zdjęcia." -#: mod/photos.php:540 +#: mod/photos.php:504 msgid "a photo" msgstr "zdjęcie" -#: mod/photos.php:540 +#: mod/photos.php:504 #, 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:577 src/Module/Conversation/Community.php:160 -#: src/Module/Directory.php:49 src/Module/Profile/Photos.php:293 -#: src/Module/Search/Index.php:65 +#: mod/photos.php:541 src/Module/Conversation/Community.php:148 +#: src/Module/Directory.php:35 src/Module/Profile/Photos.php:279 +#: src/Module/Search/Index.php:51 msgid "Public access denied." msgstr "Odmowa dostępu publicznego." -#: mod/photos.php:582 +#: mod/photos.php:546 msgid "No photos selected" msgstr "Nie zaznaczono zdjęć" -#: mod/photos.php:710 +#: mod/photos.php:674 #, php-format msgid "The maximum accepted image size is %s" msgstr "" -#: mod/photos.php:717 +#: mod/photos.php:681 msgid "Upload Photos" msgstr "Prześlij zdjęcia" -#: mod/photos.php:721 mod/photos.php:810 +#: mod/photos.php:685 mod/photos.php:774 msgid "New album name: " msgstr "Nazwa nowego albumu: " -#: mod/photos.php:722 +#: mod/photos.php:686 msgid "or select existing album:" msgstr "lub wybierz istniejący album:" -#: mod/photos.php:723 +#: mod/photos.php:687 msgid "Do not show a status post for this upload" msgstr "Nie pokazuj stanu wpisów dla tego wysłania" -#: mod/photos.php:726 mod/photos.php:1087 src/Content/Conversation.php:402 -#: src/Module/Calendar/Event/Form.php:253 src/Module/Post/Edit.php:183 +#: mod/photos.php:690 mod/photos.php:1051 src/Content/Conversation.php:388 +#: src/Module/Calendar/Event/Form.php:239 src/Module/Post/Edit.php:169 msgid "Permissions" msgstr "Uprawnienia" -#: mod/photos.php:791 +#: mod/photos.php:755 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:792 mod/photos.php:815 +#: mod/photos.php:756 mod/photos.php:779 msgid "Delete Album" msgstr "Usuń album" -#: mod/photos.php:793 mod/photos.php:893 src/Content/Conversation.php:417 -#: src/Module/Contact/Follow.php:173 src/Module/Contact/Revoke.php:106 -#: src/Module/Contact/Unfollow.php:126 -#: src/Module/Media/Attachment/Browser.php:77 -#: src/Module/Media/Photo/Browser.php:88 src/Module/Post/Edit.php:167 -#: src/Module/Post/Tag/Remove.php:109 src/Module/Profile/RemoteFollow.php:134 -#: src/Module/Security/TwoFactor/SignOut.php:125 +#: mod/photos.php:757 mod/photos.php:857 src/Content/Conversation.php:403 +#: src/Module/Contact/Follow.php:154 src/Module/Contact/Revoke.php:92 +#: src/Module/Contact/Unfollow.php:112 +#: src/Module/Media/Attachment/Browser.php:63 +#: src/Module/Media/Photo/Browser.php:74 src/Module/Post/Edit.php:153 +#: src/Module/Post/Tag/Remove.php:95 src/Module/Profile/RemoteFollow.php:120 +#: src/Module/Security/TwoFactor/SignOut.php:111 msgid "Cancel" msgstr "Anuluj" -#: mod/photos.php:819 +#: mod/photos.php:783 msgid "Edit Album" msgstr "Edytuj album" -#: mod/photos.php:820 +#: mod/photos.php:784 msgid "Drop Album" msgstr "Upuść Album" -#: mod/photos.php:824 +#: mod/photos.php:788 msgid "Show Newest First" msgstr "Pokaż najpierw najnowsze" -#: mod/photos.php:826 +#: mod/photos.php:790 msgid "Show Oldest First" msgstr "Pokaż najpierw najstarsze" -#: mod/photos.php:847 src/Module/Profile/Photos.php:346 +#: mod/photos.php:811 src/Module/Profile/Photos.php:332 msgid "View Photo" msgstr "Zobacz zdjęcie" -#: mod/photos.php:879 +#: mod/photos.php:843 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:881 +#: mod/photos.php:845 msgid "Photo not available" msgstr "Zdjęcie niedostępne" -#: mod/photos.php:891 +#: mod/photos.php:855 msgid "Do you really want to delete this photo?" msgstr "Czy na pewno chcesz usunąć to zdjęcie ?" -#: mod/photos.php:892 mod/photos.php:1092 +#: mod/photos.php:856 mod/photos.php:1056 msgid "Delete Photo" msgstr "Usuń zdjęcie" -#: mod/photos.php:990 +#: mod/photos.php:954 msgid "View photo" msgstr "Zobacz zdjęcie" -#: mod/photos.php:992 +#: mod/photos.php:956 msgid "Edit photo" msgstr "Edytuj zdjęcie" -#: mod/photos.php:993 +#: mod/photos.php:957 msgid "Delete photo" msgstr "Usuń zdjęcie" -#: mod/photos.php:994 +#: mod/photos.php:958 msgid "Use as profile photo" msgstr "Ustaw jako zdjęcie profilowe" -#: mod/photos.php:1001 +#: mod/photos.php:965 msgid "Private Photo" msgstr "Prywatne zdjęcie" -#: mod/photos.php:1007 +#: mod/photos.php:971 msgid "View Full Size" msgstr "Zobacz w pełnym rozmiarze" -#: mod/photos.php:1060 +#: mod/photos.php:1024 msgid "Tags: " msgstr "Znaczniki: " -#: mod/photos.php:1063 +#: mod/photos.php:1027 msgid "[Select tags to remove]" msgstr "[Wybierz znaczniki do usunięcia]" -#: mod/photos.php:1078 +#: mod/photos.php:1042 msgid "New album name" msgstr "Nazwa nowego albumu" -#: mod/photos.php:1079 +#: mod/photos.php:1043 msgid "Caption" msgstr "Zawartość" -#: mod/photos.php:1080 +#: mod/photos.php:1044 msgid "Add a Tag" msgstr "Dodaj znacznik" -#: mod/photos.php:1080 +#: mod/photos.php:1044 msgid "" "Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping" msgstr "Przykładowo: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping" -#: mod/photos.php:1081 +#: mod/photos.php:1045 msgid "Do not rotate" msgstr "Nie obracaj" -#: mod/photos.php:1082 +#: mod/photos.php:1046 msgid "Rotate CW (right)" msgstr "Obróć zgodnie z kierunkiem wskazówek zegara (w prawo)" -#: mod/photos.php:1083 +#: mod/photos.php:1047 msgid "Rotate CCW (left)" msgstr "Obróć w przeciwnym kierunku do ruchu wskazówek zegara (w lewo)" -#: mod/photos.php:1129 mod/photos.php:1185 mod/photos.php:1265 -#: src/Module/Contact.php:625 src/Module/Item/Compose.php:195 -#: src/Object/Post.php:1156 +#: mod/photos.php:1093 mod/photos.php:1149 mod/photos.php:1229 +#: src/Module/Contact.php:600 src/Module/Item/Compose.php:181 +#: src/Object/Post.php:1142 msgid "This is you" msgstr "To jesteś Ty" -#: mod/photos.php:1131 mod/photos.php:1187 mod/photos.php:1267 -#: src/Module/Moderation/Reports.php:116 src/Object/Post.php:612 -#: src/Object/Post.php:1158 +#: mod/photos.php:1095 mod/photos.php:1151 mod/photos.php:1231 +#: src/Module/Moderation/Reports.php:102 src/Object/Post.php:598 +#: src/Object/Post.php:1144 msgid "Comment" msgstr "Komentarz" -#: mod/photos.php:1133 mod/photos.php:1189 mod/photos.php:1269 -#: src/Content/Conversation.php:414 src/Module/Calendar/Event/Form.php:248 -#: src/Module/Item/Compose.php:208 src/Module/Post/Edit.php:165 -#: src/Object/Post.php:1172 +#: mod/photos.php:1097 mod/photos.php:1153 mod/photos.php:1233 +#: src/Content/Conversation.php:400 src/Module/Calendar/Event/Form.php:234 +#: src/Module/Item/Compose.php:194 src/Module/Post/Edit.php:151 +#: src/Object/Post.php:1158 msgid "Preview" msgstr "Podgląd" -#: mod/photos.php:1134 src/Content/Conversation.php:368 -#: src/Module/Post/Edit.php:130 src/Object/Post.php:1160 +#: mod/photos.php:1098 src/Content/Conversation.php:354 +#: src/Module/Post/Edit.php:116 src/Object/Post.php:1146 msgid "Loading..." msgstr "Wczytywanie..." -#: mod/photos.php:1226 src/Content/Conversation.php:1498 -#: src/Object/Post.php:274 +#: mod/photos.php:1190 src/Content/Conversation.php:1484 +#: src/Object/Post.php:260 msgid "Select" msgstr "Wybierz" -#: mod/photos.php:1227 src/Content/Conversation.php:1499 -#: src/Module/Moderation/Users/Active.php:136 -#: src/Module/Moderation/Users/Blocked.php:136 -#: src/Module/Moderation/Users/Index.php:151 -#: src/Module/Settings/Connectors.php:254 -#: src/Module/Settings/Server/Index.php:109 +#: mod/photos.php:1191 src/Content/Conversation.php:1485 +#: src/Module/Moderation/Users/Active.php:122 +#: src/Module/Moderation/Users/Blocked.php:122 +#: src/Module/Moderation/Users/Index.php:137 +#: src/Module/Settings/Connectors.php:233 +#: src/Module/Settings/Server/Index.php:95 msgid "Delete" msgstr "Usuń" -#: mod/photos.php:1288 src/Object/Post.php:440 +#: mod/photos.php:1252 src/Object/Post.php:426 msgid "Like" msgstr "Lubię" -#: mod/photos.php:1289 src/Object/Post.php:440 +#: mod/photos.php:1253 src/Object/Post.php:426 msgid "I like this (toggle)" msgstr "Lubię to (zmień)" -#: mod/photos.php:1290 src/Object/Post.php:441 +#: mod/photos.php:1254 src/Object/Post.php:427 msgid "Dislike" msgstr "Nie lubię" -#: mod/photos.php:1292 src/Object/Post.php:441 +#: mod/photos.php:1256 src/Object/Post.php:427 msgid "I don't like this (toggle)" msgstr "Nie lubię tego (zmień)" -#: mod/photos.php:1314 +#: mod/photos.php:1278 msgid "Map" msgstr "Mapa" -#: src/App.php:446 +#: src/App.php:432 msgid "No system theme config value set." msgstr "Nie ustawiono wartości konfiguracyjnej zestawu tematycznego." -#: src/App.php:554 +#: src/App.php:540 msgid "Apologies but the website is unavailable at the moment." msgstr "Przepraszamy, ale strona jest w tej chwili niedostępna." -#: src/App/Page.php:250 +#: src/App/Page.php:236 msgid "Delete this item?" msgstr "Usunąć ten element?" -#: src/App/Page.php:251 +#: src/App/Page.php:237 msgid "" "Block this author? They won't be able to follow you nor see your public " "posts, and you won't be able to see their posts and their notifications." msgstr "Zablokować tego autora? Nie będą mogli Cię obserwować ani widzieć Twoich publicznych wpisów, a Ty nie będziesz widzieć ich wpisów i powiadomień." -#: src/App/Page.php:252 +#: src/App/Page.php:238 msgid "" "Ignore this author? You won't be able to see their posts and their " "notifications." msgstr "" -#: src/App/Page.php:253 +#: src/App/Page.php:239 msgid "Collapse this author's posts?" msgstr "" -#: src/App/Page.php:254 +#: src/App/Page.php:240 msgid "Ignore this author's server?" msgstr "" -#: src/App/Page.php:255 src/Module/Settings/Server/Action.php:61 -#: src/Module/Settings/Server/Index.php:108 +#: src/App/Page.php:241 src/Module/Settings/Server/Action.php:47 +#: src/Module/Settings/Server/Index.php:94 msgid "" "You won't see any content from this server including reshares in your " "Network page, the community pages and individual conversations." msgstr "" -#: src/App/Page.php:257 +#: src/App/Page.php:243 msgid "Like not successful" msgstr "" -#: src/App/Page.php:258 +#: src/App/Page.php:244 msgid "Dislike not successful" msgstr "" -#: src/App/Page.php:259 +#: src/App/Page.php:245 msgid "Sharing not successful" msgstr "" -#: src/App/Page.php:260 +#: src/App/Page.php:246 msgid "Attendance unsuccessful" msgstr "" -#: src/App/Page.php:261 +#: src/App/Page.php:247 msgid "Backend error" msgstr "" -#: src/App/Page.php:262 +#: src/App/Page.php:248 msgid "Network error" msgstr "" -#: src/App/Page.php:265 +#: src/App/Page.php:251 msgid "Drop files here to upload" msgstr "" -#: src/App/Page.php:266 +#: src/App/Page.php:252 msgid "Your browser does not support drag and drop file uploads." msgstr "" -#: src/App/Page.php:267 +#: src/App/Page.php:253 msgid "" "Please use the fallback form below to upload your files like in the olden " "days." msgstr "" -#: src/App/Page.php:268 +#: src/App/Page.php:254 msgid "File is too big ({{filesize}}MiB). Max filesize: {{maxFilesize}}MiB." msgstr "" -#: src/App/Page.php:269 +#: src/App/Page.php:255 msgid "You can't upload files of this type." msgstr "" -#: src/App/Page.php:270 +#: src/App/Page.php:256 msgid "Server responded with {{statusCode}} code." msgstr "" -#: src/App/Page.php:271 +#: src/App/Page.php:257 msgid "Cancel upload" msgstr "" -#: src/App/Page.php:272 +#: src/App/Page.php:258 msgid "Upload canceled." msgstr "" -#: src/App/Page.php:273 +#: src/App/Page.php:259 msgid "Are you sure you want to cancel this upload?" msgstr "" -#: src/App/Page.php:274 +#: src/App/Page.php:260 msgid "Remove file" msgstr "" -#: src/App/Page.php:275 +#: src/App/Page.php:261 msgid "You can't upload any more files." msgstr "" -#: src/App/Page.php:353 +#: src/App/Page.php:339 msgid "toggle mobile" msgstr "przełącz na mobilny" -#: src/App/Router.php:309 +#: src/App/Router.php:295 #, php-format msgid "Method not allowed for this module. Allowed method(s): %s" msgstr "Metoda niedozwolona dla tego modułu. Dozwolona metoda(y): %s" -#: src/App/Router.php:311 src/Module/HTTPException/PageNotFound.php:49 -#: src/Module/Stats.php:63 +#: src/App/Router.php:297 src/Module/HTTPException/PageNotFound.php:35 +#: src/Module/Stats.php:49 msgid "Page not found." msgstr "Strona nie znaleziona." -#: src/App/Router.php:323 +#: src/App/Router.php:309 msgid "You must be logged in to use addons. " msgstr "Musisz być zalogowany(-a), aby korzystać z dodatków. " -#: src/BaseModule.php:407 +#: src/BaseModule.php:393 msgid "" "The form security token was not correct. This probably happened because the " "form has been opened for too long (>3 hours) before submitting it." msgstr "Znacznik zabezpieczeń formularza nie był poprawny. Prawdopodobnie stało się tak, ponieważ formularz został otwarty zbyt długo (> 3 godziny) przed jego przesłaniem." -#: src/BaseModule.php:434 +#: src/BaseModule.php:420 msgid "All contacts" msgstr "Wszystkie kontakty" -#: src/BaseModule.php:439 src/Content/Conversation/Factory/Channel.php:46 -#: src/Content/Widget.php:240 src/Core/ACL.php:195 src/Module/Contact.php:420 -#: src/Module/Privacy/PermissionTooltip.php:164 -#: src/Module/Privacy/PermissionTooltip.php:186 -#: src/Module/Settings/Channels.php:160 +#: src/BaseModule.php:425 src/Content/Conversation/Factory/Channel.php:32 +#: src/Content/Widget.php:218 src/Core/ACL.php:181 src/Module/Contact.php:395 +#: src/Module/Privacy/PermissionTooltip.php:150 +#: src/Module/Privacy/PermissionTooltip.php:172 +#: src/Module/Settings/Channels.php:146 msgid "Followers" msgstr "Zwolenników" -#: src/BaseModule.php:444 src/Content/Widget.php:241 -#: src/Module/Contact.php:423 src/Module/Settings/Channels.php:159 +#: src/BaseModule.php:430 src/Content/Widget.php:219 +#: src/Module/Contact.php:398 src/Module/Settings/Channels.php:145 msgid "Following" msgstr "Kolejny" -#: src/BaseModule.php:449 src/Content/Widget.php:242 -#: src/Module/Contact.php:426 +#: src/BaseModule.php:435 src/Content/Widget.php:220 +#: src/Module/Contact.php:401 msgid "Mutual friends" msgstr "" -#: src/BaseModule.php:457 +#: src/BaseModule.php:443 msgid "Common" msgstr "Wspólne" -#: src/Console/Addon.php:175 src/Console/Addon.php:199 +#: src/Console/Addon.php:161 src/Console/Addon.php:185 msgid "Addon not found" msgstr "Dodatek nie został odnaleziony" -#: src/Console/Addon.php:179 +#: src/Console/Addon.php:165 msgid "Addon already enabled" msgstr "Dodatek już włączony" -#: src/Console/Addon.php:203 +#: src/Console/Addon.php:189 msgid "Addon already disabled" msgstr "Dodatek już wyłączony" -#: src/Console/ArchiveContact.php:106 +#: src/Console/ArchiveContact.php:92 #, php-format msgid "Could not find any unarchived contact entry for this URL (%s)" msgstr "Nie można znaleźć żadnego wpisu kontaktu zarchiwizowanego dla tego adresu URL (%s)" -#: src/Console/ArchiveContact.php:109 +#: src/Console/ArchiveContact.php:95 msgid "The contact entries have been archived" msgstr "Wpisy kontaktów zostały zarchiwizowane" -#: src/Console/ClearAvatarCache.php:87 +#: src/Console/ClearAvatarCache.php:73 msgid "" "The avatar cache needs to be disabled in local.config.php to use this " "command." msgstr "" -#: src/Console/GlobalCommunityBlock.php:96 -#: src/Module/Moderation/Blocklist/Contact.php:65 +#: src/Console/GlobalCommunityBlock.php:82 +#: src/Module/Moderation/Blocklist/Contact.php:51 #, php-format msgid "Could not find any contact entry for this URL (%s)" msgstr "Nie można znaleźć żadnego kontaktu dla tego adresu URL (%s)" -#: src/Console/GlobalCommunityBlock.php:101 -#: src/Module/Moderation/Blocklist/Contact.php:82 +#: src/Console/GlobalCommunityBlock.php:87 +#: src/Module/Moderation/Blocklist/Contact.php:68 msgid "The contact has been blocked from the node" msgstr "Kontakt został zablokowany w węźle" -#: src/Console/MergeContacts.php:75 +#: src/Console/MergeContacts.php:61 #, php-format msgid "%d %s, %d duplicates." msgstr "%d %s, %d duplikaty." -#: src/Console/MergeContacts.php:78 +#: src/Console/MergeContacts.php:64 #, php-format msgid "uri-id is empty for contact %s." msgstr "uri-id jest pusty dla kontaktu%s." -#: src/Console/MergeContacts.php:91 +#: src/Console/MergeContacts.php:77 #, php-format msgid "No valid first contact found for uri-id %d." msgstr "" -#: src/Console/MergeContacts.php:102 +#: src/Console/MergeContacts.php:88 #, php-format msgid "Wrong duplicate found for uri-id %d in %d (url: %s != %s)." msgstr "Odnaleziono nieprawidłowy duplikat dla identyfikatora uri %d w %d (url: %s != %s)." -#: src/Console/MergeContacts.php:106 +#: src/Console/MergeContacts.php:92 #, php-format msgid "Wrong duplicate found for uri-id %d in %d (nurl: %s != %s)." msgstr "Odnaleziono nieprawidłowy duplikat dla identyfikatora uri %d w %d (nurl: %s != %s)." -#: src/Console/MergeContacts.php:142 +#: src/Console/MergeContacts.php:128 #, php-format msgid "Deletion of id %d failed" msgstr "Nie udało się usunąć identyfikatora %d" -#: src/Console/MergeContacts.php:144 +#: src/Console/MergeContacts.php:130 #, php-format msgid "Deletion of id %d was successful" msgstr "Usunięcie identyfikatora %d powiodło się" -#: src/Console/MergeContacts.php:150 +#: src/Console/MergeContacts.php:136 #, php-format msgid "Updating \"%s\" in \"%s\" from %d to %d" msgstr "Aktualizowanie \"%s\" w \"%s\" z %d do %d" -#: src/Console/MergeContacts.php:152 +#: src/Console/MergeContacts.php:138 msgid " - found" msgstr "- znaleziono" -#: src/Console/MergeContacts.php:159 +#: src/Console/MergeContacts.php:145 msgid " - failed" msgstr " - błąd" -#: src/Console/MergeContacts.php:161 +#: src/Console/MergeContacts.php:147 msgid " - success" msgstr " - powodzenie" -#: src/Console/MergeContacts.php:165 +#: src/Console/MergeContacts.php:151 msgid " - deleted" msgstr " - usunięto" -#: src/Console/MergeContacts.php:168 +#: src/Console/MergeContacts.php:154 msgid " - done" msgstr " - zrobiono" -#: src/Console/MoveToAvatarCache.php:91 +#: src/Console/MoveToAvatarCache.php:77 msgid "The avatar cache needs to be enabled to use this command." msgstr "Aby użyć tego polecenia, pamięć podręczna awatarów musi być włączona." -#: src/Console/MoveToAvatarCache.php:109 +#: src/Console/MoveToAvatarCache.php:95 #, php-format msgid "no resource in photo %s" msgstr "brak zasobu na zdjęciu %s" -#: src/Console/MoveToAvatarCache.php:137 +#: src/Console/MoveToAvatarCache.php:123 #, php-format msgid "no photo with id %s" msgstr "brak zdjęcia z identyfikatorem %s" -#: src/Console/MoveToAvatarCache.php:146 +#: src/Console/MoveToAvatarCache.php:132 #, php-format msgid "no image data for photo with id %s" msgstr "brak danych obrazu dla zdjęcia z identyfikatorem %s" -#: src/Console/MoveToAvatarCache.php:155 +#: src/Console/MoveToAvatarCache.php:141 #, php-format msgid "invalid image for id %s" msgstr "nieprawidłowy obraz dla identyfikatora %s" -#: src/Console/MoveToAvatarCache.php:168 +#: src/Console/MoveToAvatarCache.php:154 #, php-format msgid "Quit on invalid photo %s" msgstr "Zakończ na nieprawidłowym zdjęciu %s" -#: src/Console/PostUpdate.php:87 +#: src/Console/PostUpdate.php:73 #, php-format msgid "Post update version number has been set to %s." msgstr "Numer wersji aktualizacji posta został ustawiony na %s." -#: src/Console/PostUpdate.php:95 +#: src/Console/PostUpdate.php:81 msgid "Check for pending update actions." msgstr "Sprawdź oczekujące działania aktualizacji." -#: src/Console/PostUpdate.php:97 +#: src/Console/PostUpdate.php:83 msgid "Done." msgstr "Gotowe." -#: src/Console/PostUpdate.php:99 +#: src/Console/PostUpdate.php:85 msgid "Execute pending post updates." msgstr "Wykonaj oczekujące aktualizacje wpisów." -#: src/Console/PostUpdate.php:105 +#: src/Console/PostUpdate.php:91 msgid "All pending post updates are done." msgstr "Wszystkie oczekujące aktualizacje wpisów są gotowe." -#: src/Console/User.php:158 src/Console/User.php:246 +#: src/Console/User.php:144 src/Console/User.php:232 msgid "Enter user nickname: " msgstr "Wpisz nazwę użytkownika:" -#: src/Console/User.php:182 src/Model/User.php:847 -#: src/Module/Api/Twitter/ContactEndpoint.php:74 -#: src/Module/Moderation/Users/Active.php:71 -#: src/Module/Moderation/Users/Blocked.php:71 -#: src/Module/Moderation/Users/Index.php:78 -#: src/Module/Moderation/Users/Pending.php:67 +#: src/Console/User.php:168 src/Model/User.php:831 +#: src/Module/Api/Twitter/ContactEndpoint.php:60 +#: src/Module/Moderation/Users/Active.php:57 +#: src/Module/Moderation/Users/Blocked.php:57 +#: src/Module/Moderation/Users/Index.php:64 +#: src/Module/Moderation/Users/Pending.php:53 msgid "User not found" msgstr "Użytkownik nie znaleziony" -#: src/Console/User.php:202 +#: src/Console/User.php:188 msgid "Enter new password: " msgstr "Wprowadź nowe hasło: " -#: src/Console/User.php:210 src/Module/Security/PasswordTooLong.php:69 -#: src/Module/Settings/Account.php:75 +#: src/Console/User.php:196 src/Module/Security/PasswordTooLong.php:55 +#: src/Module/Settings/Account.php:61 msgid "Password update failed. Please try again." msgstr "Aktualizacja hasła nie powiodła się. Proszę spróbować ponownie." -#: src/Console/User.php:213 src/Module/Security/PasswordTooLong.php:72 -#: src/Module/Settings/Account.php:78 +#: src/Console/User.php:199 src/Module/Security/PasswordTooLong.php:58 +#: src/Module/Settings/Account.php:64 msgid "Password changed." msgstr "Hasło zostało zmienione." -#: src/Console/User.php:238 +#: src/Console/User.php:224 msgid "Enter user name: " msgstr "Wpisz nazwę użytkownika:" -#: src/Console/User.php:254 +#: src/Console/User.php:240 msgid "Enter user email address: " msgstr "Wpisz adres e-mail użytkownika:" -#: src/Console/User.php:262 +#: src/Console/User.php:248 msgid "Enter a language (optional): " msgstr "Wpisz język (opcjonalnie):" -#: src/Console/User.php:267 +#: src/Console/User.php:253 msgid "Enter URL of an image to use as avatar (optional): " msgstr "" -#: src/Console/User.php:292 +#: src/Console/User.php:278 msgid "User is not pending." msgstr "Użytkownik nie jest oczekujący." -#: src/Console/User.php:324 +#: src/Console/User.php:310 msgid "User has already been marked for deletion." msgstr "Użytkownik został już oznaczony do usunięcia." -#: src/Console/User.php:329 +#: src/Console/User.php:315 #, php-format msgid "Type \"yes\" to delete %s" msgstr "Wpisz „tak”, aby usunąć %s" -#: src/Console/User.php:331 +#: src/Console/User.php:317 msgid "Deletion aborted." msgstr "Przerwano kasowanie." -#: src/Console/User.php:456 +#: src/Console/User.php:442 msgid "Enter category: " msgstr "Wpisz kategorię:" -#: src/Console/User.php:466 +#: src/Console/User.php:452 msgid "Enter key: " msgstr "Wpisz klucz:" -#: src/Console/User.php:500 +#: src/Console/User.php:486 msgid "Enter value: " msgstr "Wpisz wartość:" -#: src/Content/BoundariesPager.php:116 src/Content/Pager.php:171 +#: src/Content/BoundariesPager.php:102 src/Content/Pager.php:157 msgid "newer" msgstr "nowsze" -#: src/Content/BoundariesPager.php:124 src/Content/Pager.php:176 +#: src/Content/BoundariesPager.php:110 src/Content/Pager.php:162 msgid "older" msgstr "starsze" -#: src/Content/ContactSelector.php:51 +#: src/Content/ContactSelector.php:37 msgid "Frequently" msgstr "Często" -#: src/Content/ContactSelector.php:52 +#: src/Content/ContactSelector.php:38 msgid "Hourly" msgstr "Co godzinę" -#: src/Content/ContactSelector.php:53 +#: src/Content/ContactSelector.php:39 msgid "Twice daily" msgstr "Dwa razy dziennie" -#: src/Content/ContactSelector.php:54 +#: src/Content/ContactSelector.php:40 msgid "Daily" msgstr "Codziennie" -#: src/Content/ContactSelector.php:55 +#: src/Content/ContactSelector.php:41 msgid "Weekly" msgstr "Co tydzień" -#: src/Content/ContactSelector.php:56 +#: src/Content/ContactSelector.php:42 msgid "Monthly" msgstr "Miesięczne" -#: src/Content/ContactSelector.php:126 +#: src/Content/ContactSelector.php:112 msgid "DFRN" msgstr "DFRN" -#: src/Content/ContactSelector.php:127 +#: src/Content/ContactSelector.php:113 msgid "OStatus" msgstr "OStatus" -#: src/Content/ContactSelector.php:128 +#: src/Content/ContactSelector.php:114 msgid "RSS/Atom" msgstr "RSS/Atom" -#: src/Content/ContactSelector.php:129 -#: src/Module/Moderation/Users/Active.php:126 -#: src/Module/Moderation/Users/Blocked.php:126 -#: src/Module/Moderation/Users/Create.php:72 -#: src/Module/Moderation/Users/Deleted.php:83 -#: src/Module/Moderation/Users/Index.php:140 -#: src/Module/Moderation/Users/Index.php:160 -#: src/Module/Moderation/Users/Pending.php:99 +#: src/Content/ContactSelector.php:115 +#: src/Module/Moderation/Users/Active.php:112 +#: src/Module/Moderation/Users/Blocked.php:112 +#: src/Module/Moderation/Users/Create.php:58 +#: src/Module/Moderation/Users/Deleted.php:69 +#: src/Module/Moderation/Users/Index.php:126 +#: src/Module/Moderation/Users/Index.php:146 +#: src/Module/Moderation/Users/Pending.php:85 msgid "Email" msgstr "E-mail" -#: src/Content/ContactSelector.php:130 src/Module/Debug/Babel.php:315 +#: src/Content/ContactSelector.php:116 src/Module/Debug/Babel.php:301 msgid "Diaspora" msgstr "Diaspora" -#: src/Content/ContactSelector.php:131 +#: src/Content/ContactSelector.php:117 msgid "Zot!" msgstr "Zot!" -#: src/Content/ContactSelector.php:132 +#: src/Content/ContactSelector.php:118 msgid "LinkedIn" msgstr "LinkedIn" -#: src/Content/ContactSelector.php:133 +#: src/Content/ContactSelector.php:119 msgid "XMPP/IM" msgstr "XMPP/IM" -#: src/Content/ContactSelector.php:134 +#: src/Content/ContactSelector.php:120 msgid "MySpace" msgstr "MySpace" -#: src/Content/ContactSelector.php:135 +#: src/Content/ContactSelector.php:121 msgid "Google+" msgstr "Google+" -#: src/Content/ContactSelector.php:136 +#: src/Content/ContactSelector.php:122 msgid "pump.io" msgstr "pump.io" -#: src/Content/ContactSelector.php:137 +#: src/Content/ContactSelector.php:123 msgid "Twitter" msgstr "Twitter" -#: src/Content/ContactSelector.php:138 +#: src/Content/ContactSelector.php:124 msgid "Discourse" msgstr "Discourse" -#: src/Content/ContactSelector.php:139 +#: src/Content/ContactSelector.php:125 msgid "Diaspora Connector" msgstr "Łącze Diaspora" -#: src/Content/ContactSelector.php:140 +#: src/Content/ContactSelector.php:126 msgid "GNU Social Connector" msgstr "Łącze GNU Social" -#: src/Content/ContactSelector.php:141 +#: src/Content/ContactSelector.php:127 msgid "ActivityPub" msgstr "ActivityPub" -#: src/Content/ContactSelector.php:142 +#: src/Content/ContactSelector.php:128 msgid "pnut" msgstr "pnut" -#: src/Content/ContactSelector.php:143 +#: src/Content/ContactSelector.php:129 msgid "Tumblr" msgstr "" -#: src/Content/ContactSelector.php:144 +#: src/Content/ContactSelector.php:130 msgid "Bluesky" msgstr "" -#: src/Content/ContactSelector.php:180 +#: src/Content/ContactSelector.php:166 #, php-format msgid "%s (via %s)" msgstr "%s (przez %s)" -#: src/Content/Conversation.php:226 +#: src/Content/Conversation.php:212 msgid "and" msgstr "i" -#: src/Content/Conversation.php:229 +#: src/Content/Conversation.php:215 #, php-format msgid "and %d other people" msgstr "i %d inni ludzie" -#: src/Content/Conversation.php:235 +#: src/Content/Conversation.php:221 #, php-format msgid "%2$s likes this." msgid_plural "%2$s like this." @@ -1225,7 +1224,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: src/Content/Conversation.php:237 +#: src/Content/Conversation.php:223 #, php-format msgid "%2$s doesn't like this." msgid_plural "%2$s don't like this." @@ -1234,7 +1233,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: src/Content/Conversation.php:239 +#: src/Content/Conversation.php:225 #, php-format msgid "%2$s attends." msgid_plural "%2$s attend." @@ -1243,7 +1242,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: src/Content/Conversation.php:241 +#: src/Content/Conversation.php:227 #, php-format msgid "%2$s doesn't attend." msgid_plural "%2$s don't attend." @@ -1252,7 +1251,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: src/Content/Conversation.php:243 +#: src/Content/Conversation.php:229 #, php-format msgid "%2$s attends maybe." msgid_plural "%2$s attend maybe." @@ -1261,7 +1260,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: src/Content/Conversation.php:245 +#: src/Content/Conversation.php:231 #, php-format msgid "%2$s reshared this." msgid_plural "%2$s reshared this." @@ -1270,7 +1269,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: src/Content/Conversation.php:276 +#: src/Content/Conversation.php:262 #, php-format msgid " likes this" msgid_plural " like this" @@ -1279,7 +1278,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: src/Content/Conversation.php:279 +#: src/Content/Conversation.php:265 #, php-format msgid " doesn't like this" msgid_plural " don't like this" @@ -1288,7 +1287,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: src/Content/Conversation.php:282 +#: src/Content/Conversation.php:268 #, php-format msgid " attends" msgid_plural " attend" @@ -1297,7 +1296,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: src/Content/Conversation.php:285 +#: src/Content/Conversation.php:271 #, php-format msgid " doesn't attend" msgid_plural " don't attend" @@ -1306,7 +1305,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: src/Content/Conversation.php:288 +#: src/Content/Conversation.php:274 #, php-format msgid " attends maybe" msgid_plural " attend maybe" @@ -1315,7 +1314,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: src/Content/Conversation.php:291 +#: src/Content/Conversation.php:277 #, php-format msgid " reshared this" msgid_plural " reshared this" @@ -1324,1099 +1323,1099 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: src/Content/Conversation.php:337 +#: src/Content/Conversation.php:323 msgid "Visible to everybody" msgstr "Widoczne dla wszystkich" -#: src/Content/Conversation.php:338 src/Module/Item/Compose.php:207 -#: src/Object/Post.php:1171 +#: src/Content/Conversation.php:324 src/Module/Item/Compose.php:193 +#: src/Object/Post.php:1157 msgid "Please enter a image/video/audio/webpage URL:" msgstr "Wprowadź adres URL obrazu/wideo/audio/strony:" -#: src/Content/Conversation.php:339 +#: src/Content/Conversation.php:325 msgid "Tag term:" msgstr "Termin tagu:" -#: src/Content/Conversation.php:340 src/Module/Filer/SaveTag.php:73 +#: src/Content/Conversation.php:326 src/Module/Filer/SaveTag.php:59 msgid "Save to Folder:" msgstr "Zapisz w katalogu:" -#: src/Content/Conversation.php:341 +#: src/Content/Conversation.php:327 msgid "Where are you right now?" msgstr "Gdzie teraz jesteś?" -#: src/Content/Conversation.php:342 +#: src/Content/Conversation.php:328 msgid "Delete item(s)?" msgstr "Usunąć pozycję (pozycje)?" -#: src/Content/Conversation.php:354 src/Module/Item/Compose.php:182 +#: src/Content/Conversation.php:340 src/Module/Item/Compose.php:168 msgid "Created at" msgstr "Utworzono" -#: src/Content/Conversation.php:364 +#: src/Content/Conversation.php:350 msgid "New Post" msgstr "Nowy wpis" -#: src/Content/Conversation.php:367 +#: src/Content/Conversation.php:353 msgid "Share" msgstr "Podziel się" -#: src/Content/Conversation.php:370 src/Module/Post/Edit.php:132 +#: src/Content/Conversation.php:356 src/Module/Post/Edit.php:118 msgid "upload photo" msgstr "wyślij zdjęcie" -#: src/Content/Conversation.php:371 src/Module/Post/Edit.php:133 +#: src/Content/Conversation.php:357 src/Module/Post/Edit.php:119 msgid "Attach file" msgstr "Załącz plik" -#: src/Content/Conversation.php:372 src/Module/Post/Edit.php:134 +#: src/Content/Conversation.php:358 src/Module/Post/Edit.php:120 msgid "attach file" msgstr "załącz plik" -#: src/Content/Conversation.php:373 src/Module/Item/Compose.php:197 -#: src/Module/Post/Edit.php:171 src/Object/Post.php:1161 +#: src/Content/Conversation.php:359 src/Module/Item/Compose.php:183 +#: src/Module/Post/Edit.php:157 src/Object/Post.php:1147 msgid "Bold" msgstr "Pogrubienie" -#: src/Content/Conversation.php:374 src/Module/Item/Compose.php:198 -#: src/Module/Post/Edit.php:172 src/Object/Post.php:1162 +#: src/Content/Conversation.php:360 src/Module/Item/Compose.php:184 +#: src/Module/Post/Edit.php:158 src/Object/Post.php:1148 msgid "Italic" msgstr "Kursywa" -#: src/Content/Conversation.php:375 src/Module/Item/Compose.php:199 -#: src/Module/Post/Edit.php:173 src/Object/Post.php:1163 +#: src/Content/Conversation.php:361 src/Module/Item/Compose.php:185 +#: src/Module/Post/Edit.php:159 src/Object/Post.php:1149 msgid "Underline" msgstr "Podkreślenie" -#: src/Content/Conversation.php:376 src/Module/Item/Compose.php:200 -#: src/Module/Post/Edit.php:174 src/Object/Post.php:1165 +#: src/Content/Conversation.php:362 src/Module/Item/Compose.php:186 +#: src/Module/Post/Edit.php:160 src/Object/Post.php:1151 msgid "Quote" msgstr "Cytat" -#: src/Content/Conversation.php:377 src/Module/Item/Compose.php:201 -#: src/Module/Post/Edit.php:175 src/Object/Post.php:1166 +#: src/Content/Conversation.php:363 src/Module/Item/Compose.php:187 +#: src/Module/Post/Edit.php:161 src/Object/Post.php:1152 msgid "Add emojis" msgstr "" -#: src/Content/Conversation.php:378 src/Module/Item/Compose.php:202 -#: src/Object/Post.php:1164 +#: src/Content/Conversation.php:364 src/Module/Item/Compose.php:188 +#: src/Object/Post.php:1150 msgid "Content Warning" msgstr "" -#: src/Content/Conversation.php:379 src/Module/Item/Compose.php:203 -#: src/Module/Post/Edit.php:176 src/Object/Post.php:1167 +#: src/Content/Conversation.php:365 src/Module/Item/Compose.php:189 +#: src/Module/Post/Edit.php:162 src/Object/Post.php:1153 msgid "Code" msgstr "Kod" -#: src/Content/Conversation.php:380 src/Module/Item/Compose.php:204 -#: src/Object/Post.php:1168 +#: src/Content/Conversation.php:366 src/Module/Item/Compose.php:190 +#: src/Object/Post.php:1154 msgid "Image" msgstr "Obraz" -#: src/Content/Conversation.php:381 src/Module/Item/Compose.php:205 -#: src/Module/Post/Edit.php:177 src/Object/Post.php:1169 +#: src/Content/Conversation.php:367 src/Module/Item/Compose.php:191 +#: src/Module/Post/Edit.php:163 src/Object/Post.php:1155 msgid "Link" msgstr "Odnośnik" -#: src/Content/Conversation.php:382 src/Module/Item/Compose.php:206 -#: src/Module/Post/Edit.php:178 src/Object/Post.php:1170 +#: src/Content/Conversation.php:368 src/Module/Item/Compose.php:192 +#: src/Module/Post/Edit.php:164 src/Object/Post.php:1156 msgid "Link or Media" msgstr "Odnośnik lub Media" -#: src/Content/Conversation.php:383 +#: src/Content/Conversation.php:369 msgid "Video" msgstr "Filmy" -#: src/Content/Conversation.php:384 src/Module/Item/Compose.php:209 -#: src/Module/Post/Edit.php:141 +#: src/Content/Conversation.php:370 src/Module/Item/Compose.php:195 +#: src/Module/Post/Edit.php:127 msgid "Set your location" msgstr "Ustaw swoją lokalizację" -#: src/Content/Conversation.php:385 src/Module/Post/Edit.php:142 +#: src/Content/Conversation.php:371 src/Module/Post/Edit.php:128 msgid "set location" msgstr "wybierz lokalizację" -#: src/Content/Conversation.php:386 src/Module/Post/Edit.php:143 +#: src/Content/Conversation.php:372 src/Module/Post/Edit.php:129 msgid "Clear browser location" msgstr "Wyczyść lokalizację przeglądarki" -#: src/Content/Conversation.php:387 src/Module/Post/Edit.php:144 +#: src/Content/Conversation.php:373 src/Module/Post/Edit.php:130 msgid "clear location" msgstr "wyczyść lokalizację" -#: src/Content/Conversation.php:389 src/Module/Item/Compose.php:214 -#: src/Module/Post/Edit.php:157 +#: src/Content/Conversation.php:375 src/Module/Item/Compose.php:200 +#: src/Module/Post/Edit.php:143 msgid "Set title" msgstr "Podaj tytuł" -#: src/Content/Conversation.php:391 src/Module/Item/Compose.php:215 -#: src/Module/Post/Edit.php:159 +#: src/Content/Conversation.php:377 src/Module/Item/Compose.php:201 +#: src/Module/Post/Edit.php:145 msgid "Categories (comma-separated list)" msgstr "Kategorie (lista słów oddzielonych przecinkiem)" -#: src/Content/Conversation.php:396 src/Module/Item/Compose.php:231 +#: src/Content/Conversation.php:382 src/Module/Item/Compose.php:217 msgid "Scheduled at" msgstr "Zaplanowane na" -#: src/Content/Conversation.php:401 src/Module/Post/Edit.php:146 +#: src/Content/Conversation.php:387 src/Module/Post/Edit.php:132 msgid "Permission settings" msgstr "Ustawienia uprawnień" -#: src/Content/Conversation.php:410 src/Module/Post/Edit.php:155 +#: src/Content/Conversation.php:396 src/Module/Post/Edit.php:141 msgid "Public post" msgstr "Wpis publiczny" -#: src/Content/Conversation.php:424 src/Content/Widget/VCard.php:131 -#: src/Model/Profile.php:476 src/Module/Admin/Logs/View.php:94 -#: src/Module/Post/Edit.php:181 +#: src/Content/Conversation.php:410 src/Content/Widget/VCard.php:117 +#: src/Model/Profile.php:462 src/Module/Admin/Logs/View.php:80 +#: src/Module/Post/Edit.php:167 msgid "Message" msgstr "Wiadomość" -#: src/Content/Conversation.php:425 src/Module/Post/Edit.php:182 -#: src/Module/Settings/TwoFactor/Trusted.php:143 +#: src/Content/Conversation.php:411 src/Module/Post/Edit.php:168 +#: src/Module/Settings/TwoFactor/Trusted.php:129 msgid "Browser" msgstr "Przeglądarka" -#: src/Content/Conversation.php:427 src/Module/Post/Edit.php:185 +#: src/Content/Conversation.php:413 src/Module/Post/Edit.php:171 msgid "Open Compose page" msgstr "Otwórz stronę Redagowanie" -#: src/Content/Conversation.php:594 +#: src/Content/Conversation.php:580 msgid "remove" msgstr "usuń" -#: src/Content/Conversation.php:598 +#: src/Content/Conversation.php:584 msgid "Delete Selected Items" msgstr "Usuń zaznaczone elementy" -#: src/Content/Conversation.php:726 src/Content/Conversation.php:729 -#: src/Content/Conversation.php:732 src/Content/Conversation.php:735 -#: src/Content/Conversation.php:738 +#: src/Content/Conversation.php:712 src/Content/Conversation.php:715 +#: src/Content/Conversation.php:718 src/Content/Conversation.php:721 +#: src/Content/Conversation.php:724 #, php-format msgid "You had been addressed (%s)." msgstr "Zostałeś zaadresowany (%s)." -#: src/Content/Conversation.php:741 +#: src/Content/Conversation.php:727 #, php-format msgid "You are following %s." msgstr "Zacząłeś obserwować %s." -#: src/Content/Conversation.php:746 +#: src/Content/Conversation.php:732 #, php-format msgid "You subscribed to %s." msgstr "" -#: src/Content/Conversation.php:748 +#: src/Content/Conversation.php:734 msgid "You subscribed to one or more tags in this post." msgstr "Zasubskrybowałeś jeden lub więcej znaczników w tym wpisie." -#: src/Content/Conversation.php:768 +#: src/Content/Conversation.php:754 #, php-format msgid "%s reshared this." msgstr "%sudostępnił to. " -#: src/Content/Conversation.php:770 +#: src/Content/Conversation.php:756 msgid "Reshared" msgstr "Udostępnione" -#: src/Content/Conversation.php:770 +#: src/Content/Conversation.php:756 #, php-format msgid "Reshared by %s <%s>" msgstr "Udostępnione przez %s <%s>" -#: src/Content/Conversation.php:773 +#: src/Content/Conversation.php:759 #, php-format msgid "%s is participating in this thread." msgstr "%s bierze udział w tym wątku." -#: src/Content/Conversation.php:776 +#: src/Content/Conversation.php:762 msgid "Stored for general reasons" msgstr "Przechowywane z powodów ogólnych" -#: src/Content/Conversation.php:779 +#: src/Content/Conversation.php:765 msgid "Global post" msgstr "Wpis globalny" -#: src/Content/Conversation.php:782 +#: src/Content/Conversation.php:768 msgid "Sent via an relay server" msgstr "Wysłane przez serwer przekazujący" -#: src/Content/Conversation.php:782 +#: src/Content/Conversation.php:768 #, php-format msgid "Sent via the relay server %s <%s>" msgstr "" -#: src/Content/Conversation.php:785 +#: src/Content/Conversation.php:771 msgid "Fetched" msgstr "Pobrane" -#: src/Content/Conversation.php:785 +#: src/Content/Conversation.php:771 #, php-format msgid "Fetched because of %s <%s>" msgstr "Pobrano ponieważ %s <%s>" -#: src/Content/Conversation.php:788 +#: src/Content/Conversation.php:774 msgid "Stored because of a child post to complete this thread." msgstr "Zapisano z powodu wpisu podrzędnego, który miał zakończyć ten wątek." -#: src/Content/Conversation.php:791 +#: src/Content/Conversation.php:777 msgid "Local delivery" msgstr "Dostarczone lokalnie" -#: src/Content/Conversation.php:794 +#: src/Content/Conversation.php:780 msgid "Stored because of your activity (like, comment, star, ...)" msgstr "Przechowywane z powodu Twojej aktywności (polubienie, komentarz, gwiazdka, ...)" -#: src/Content/Conversation.php:797 +#: src/Content/Conversation.php:783 msgid "Distributed" msgstr "Rozpowszechniane" -#: src/Content/Conversation.php:800 +#: src/Content/Conversation.php:786 msgid "Pushed to us" msgstr "" -#: src/Content/Conversation.php:1518 src/Object/Post.php:261 +#: src/Content/Conversation.php:1504 src/Object/Post.php:247 msgid "Pinned item" msgstr "Przypięty element" -#: src/Content/Conversation.php:1535 src/Object/Post.php:555 -#: src/Object/Post.php:556 +#: src/Content/Conversation.php:1521 src/Object/Post.php:541 +#: src/Object/Post.php:542 #, php-format msgid "View %s's profile @ %s" msgstr "Pokaż profil %s @ %s" -#: src/Content/Conversation.php:1549 src/Object/Post.php:543 +#: src/Content/Conversation.php:1535 src/Object/Post.php:529 msgid "Categories:" msgstr "Kategorie:" -#: src/Content/Conversation.php:1550 src/Object/Post.php:544 +#: src/Content/Conversation.php:1536 src/Object/Post.php:530 msgid "Filed under:" msgstr "Umieszczono w:" -#: src/Content/Conversation.php:1558 src/Object/Post.php:570 +#: src/Content/Conversation.php:1544 src/Object/Post.php:556 #, php-format msgid "%s from %s" msgstr "%s od %s" -#: src/Content/Conversation.php:1574 +#: src/Content/Conversation.php:1560 msgid "View in context" msgstr "Zobacz w kontekście" -#: src/Content/Conversation/Factory/Channel.php:42 +#: src/Content/Conversation/Factory/Channel.php:28 msgid "For you" msgstr "" -#: src/Content/Conversation/Factory/Channel.php:42 +#: src/Content/Conversation/Factory/Channel.php:28 msgid "Posts from contacts you interact with and who interact with you" msgstr "" -#: src/Content/Conversation/Factory/Channel.php:43 +#: src/Content/Conversation/Factory/Channel.php:29 msgid "Discover" msgstr "" -#: src/Content/Conversation/Factory/Channel.php:43 +#: src/Content/Conversation/Factory/Channel.php:29 msgid "Posts from accounts that you don't follow, but that you might like." msgstr "" -#: src/Content/Conversation/Factory/Channel.php:44 +#: src/Content/Conversation/Factory/Channel.php:30 msgid "What's Hot" msgstr "" -#: src/Content/Conversation/Factory/Channel.php:44 +#: src/Content/Conversation/Factory/Channel.php:30 msgid "Posts with a lot of interactions" msgstr "" -#: src/Content/Conversation/Factory/Channel.php:45 +#: src/Content/Conversation/Factory/Channel.php:31 #, php-format msgid "Posts in %s" msgstr "" -#: src/Content/Conversation/Factory/Channel.php:46 +#: src/Content/Conversation/Factory/Channel.php:32 msgid "Posts from your followers that you don't follow" msgstr "" -#: src/Content/Conversation/Factory/Channel.php:47 +#: src/Content/Conversation/Factory/Channel.php:33 msgid "Sharers of sharers" msgstr "" -#: src/Content/Conversation/Factory/Channel.php:47 +#: src/Content/Conversation/Factory/Channel.php:33 msgid "Posts from accounts that are followed by accounts that you follow" msgstr "" -#: src/Content/Conversation/Factory/Channel.php:48 +#: src/Content/Conversation/Factory/Channel.php:34 msgid "Quiet sharers" msgstr "" -#: src/Content/Conversation/Factory/Channel.php:48 +#: src/Content/Conversation/Factory/Channel.php:34 msgid "Posts from accounts that you follow but who don't post very often" msgstr "" -#: src/Content/Conversation/Factory/Channel.php:49 -#: src/Module/Settings/Channels.php:199 src/Module/Settings/Channels.php:220 +#: src/Content/Conversation/Factory/Channel.php:35 +#: src/Module/Settings/Channels.php:185 src/Module/Settings/Channels.php:206 msgid "Images" msgstr "" -#: src/Content/Conversation/Factory/Channel.php:49 +#: src/Content/Conversation/Factory/Channel.php:35 msgid "Posts with images" msgstr "" -#: src/Content/Conversation/Factory/Channel.php:50 -#: src/Module/Settings/Channels.php:201 src/Module/Settings/Channels.php:222 +#: src/Content/Conversation/Factory/Channel.php:36 +#: src/Module/Settings/Channels.php:187 src/Module/Settings/Channels.php:208 msgid "Audio" msgstr "" -#: src/Content/Conversation/Factory/Channel.php:50 +#: src/Content/Conversation/Factory/Channel.php:36 msgid "Posts with audio" msgstr "" -#: src/Content/Conversation/Factory/Channel.php:51 -#: src/Module/Settings/Channels.php:200 src/Module/Settings/Channels.php:221 +#: src/Content/Conversation/Factory/Channel.php:37 +#: src/Module/Settings/Channels.php:186 src/Module/Settings/Channels.php:207 msgid "Videos" msgstr "" -#: src/Content/Conversation/Factory/Channel.php:51 +#: src/Content/Conversation/Factory/Channel.php:37 msgid "Posts with videos" msgstr "" -#: src/Content/Conversation/Factory/Community.php:43 +#: src/Content/Conversation/Factory/Community.php:29 msgid "Local Community" msgstr "Lokalna społeczność" -#: src/Content/Conversation/Factory/Community.php:43 +#: src/Content/Conversation/Factory/Community.php:29 msgid "Posts from local users on this server" msgstr "Wpisy od lokalnych użytkowników na tym serwerze" -#: src/Content/Conversation/Factory/Community.php:47 -#: src/Module/Settings/Channels.php:150 src/Module/Settings/Channels.php:155 +#: src/Content/Conversation/Factory/Community.php:33 +#: src/Module/Settings/Channels.php:136 src/Module/Settings/Channels.php:141 msgid "Global Community" msgstr "Globalna społeczność" -#: src/Content/Conversation/Factory/Community.php:47 +#: src/Content/Conversation/Factory/Community.php:33 msgid "Posts from users of the whole federated network" msgstr "Wpisy od użytkowników całej sieci stowarzyszonej" -#: src/Content/Conversation/Factory/Network.php:38 -#: src/Module/Settings/Channels.php:156 +#: src/Content/Conversation/Factory/Network.php:24 +#: src/Module/Settings/Channels.php:142 msgid "Latest Activity" msgstr "Ostatnia Aktywność" -#: src/Content/Conversation/Factory/Network.php:38 +#: src/Content/Conversation/Factory/Network.php:24 msgid "Sort by latest activity" msgstr "Sortuj wg. ostatniej aktywności" -#: src/Content/Conversation/Factory/Network.php:39 -#: src/Module/Settings/Channels.php:157 +#: src/Content/Conversation/Factory/Network.php:25 +#: src/Module/Settings/Channels.php:143 msgid "Latest Posts" msgstr "Najnowsze wpisy" -#: src/Content/Conversation/Factory/Network.php:39 +#: src/Content/Conversation/Factory/Network.php:25 msgid "Sort by post received date" msgstr "Sortuj wg. daty otrzymania wpisu" -#: src/Content/Conversation/Factory/Network.php:40 -#: src/Module/Settings/Channels.php:158 +#: src/Content/Conversation/Factory/Network.php:26 +#: src/Module/Settings/Channels.php:144 msgid "Latest Creation" msgstr "Najnowsze utworzenia" -#: src/Content/Conversation/Factory/Network.php:40 +#: src/Content/Conversation/Factory/Network.php:26 msgid "Sort by post creation date" msgstr "Sortuj wg. daty utworzenia wpisu" -#: src/Content/Conversation/Factory/Network.php:41 -#: src/Module/Settings/Profile/Index.php:265 +#: src/Content/Conversation/Factory/Network.php:27 +#: src/Module/Settings/Profile/Index.php:251 msgid "Personal" msgstr "Osobiste" -#: src/Content/Conversation/Factory/Network.php:41 +#: src/Content/Conversation/Factory/Network.php:27 msgid "Posts that mention or involve you" msgstr "Wpisy, które wspominają lub angażują Ciebie" -#: src/Content/Conversation/Factory/Network.php:42 src/Object/Post.php:411 +#: src/Content/Conversation/Factory/Network.php:28 src/Object/Post.php:397 msgid "Starred" msgstr "Ulubione" -#: src/Content/Conversation/Factory/Network.php:42 +#: src/Content/Conversation/Factory/Network.php:28 msgid "Favourite Posts" msgstr "Ulubione wpisy" -#: src/Content/Feature.php:107 +#: src/Content/Feature.php:93 msgid "General Features" msgstr "Funkcje ogólne" -#: src/Content/Feature.php:109 +#: src/Content/Feature.php:95 msgid "Photo Location" msgstr "Lokalizacja zdjęcia" -#: src/Content/Feature.php:109 +#: src/Content/Feature.php:95 msgid "" "Photo metadata is normally stripped. This extracts the location (if present)" " prior to stripping metadata and links it to a map." msgstr "Metadane zdjęć są zwykle usuwane. Wyodrębnia to położenie (jeśli jest obecne) przed usunięciem metadanych i łączy je z mapą." -#: src/Content/Feature.php:110 +#: src/Content/Feature.php:96 msgid "Display the community in the navigation" msgstr "" -#: src/Content/Feature.php:110 +#: src/Content/Feature.php:96 msgid "" "If enabled, the community can be accessed via the navigation menu. " "Independent from this setting, the community timelines can always be " "accessed via the channels." msgstr "" -#: src/Content/Feature.php:115 +#: src/Content/Feature.php:101 msgid "Post Composition Features" msgstr "Ustawienia funkcji postów" -#: src/Content/Feature.php:116 +#: src/Content/Feature.php:102 msgid "Explicit Mentions" msgstr "Wyraźne wzmianki" -#: src/Content/Feature.php:116 +#: src/Content/Feature.php:102 msgid "" "Add explicit mentions to comment box for manual control over who gets " "mentioned in replies." msgstr "Dodaj wyraźne wzmianki do pola komentarza, aby ręcznie kontrolować, kto zostanie wymieniony w odpowiedziach." -#: src/Content/Feature.php:117 +#: src/Content/Feature.php:103 msgid "Add an abstract from ActivityPub content warnings" msgstr "Dodaj streszczenie z ostrzeżeń dotyczących treści w ActivityPub" -#: src/Content/Feature.php:117 +#: src/Content/Feature.php:103 msgid "" "Add an abstract when commenting on ActivityPub posts with a content warning." " Abstracts are displayed as content warning on systems like Mastodon or " "Pleroma." msgstr "Dodaj streszczenie, gdy komentujesz wpisy ActivityPub z ostrzeżeniem o treści. Streszczenia są wyświetlane jako ostrzeżenie dotyczące treści w systemach takich jak Mastodon czy Pleroma." -#: src/Content/Feature.php:122 +#: src/Content/Feature.php:108 msgid "Post/Comment Tools" msgstr "Narzędzia post/komentarz" -#: src/Content/Feature.php:123 +#: src/Content/Feature.php:109 msgid "Post Categories" msgstr "Kategorie wpisów" -#: src/Content/Feature.php:123 +#: src/Content/Feature.php:109 msgid "Add categories to your posts" msgstr "Umożliwia dodawanie kategorii do Twoich wpisów" -#: src/Content/Feature.php:128 +#: src/Content/Feature.php:114 msgid "Network Widgets" msgstr "" -#: src/Content/Feature.php:129 src/Content/Widget.php:216 -#: src/Model/Circle.php:601 src/Module/Contact.php:406 -#: src/Module/Welcome.php:76 +#: src/Content/Feature.php:115 src/Content/Widget.php:194 +#: src/Model/Circle.php:587 src/Module/Contact.php:381 +#: src/Module/Welcome.php:62 msgid "Circles" msgstr "" -#: src/Content/Feature.php:129 +#: src/Content/Feature.php:115 msgid "" "Display posts that have been created by accounts of the selected circle." msgstr "" -#: src/Content/Feature.php:130 src/Content/GroupManager.php:147 -#: src/Content/Nav.php:278 src/Content/Text/HTML.php:882 -#: src/Content/Widget.php:538 src/Model/User.php:1413 +#: src/Content/Feature.php:116 src/Content/GroupManager.php:133 +#: src/Content/Nav.php:264 src/Content/Text/HTML.php:868 +#: src/Content/Widget.php:516 src/Model/User.php:1390 msgid "Groups" msgstr "" -#: src/Content/Feature.php:130 +#: src/Content/Feature.php:116 msgid "Display posts that have been distributed by the selected group." msgstr "" -#: src/Content/Feature.php:131 src/Content/Widget.php:507 +#: src/Content/Feature.php:117 src/Content/Widget.php:485 msgid "Archives" msgstr "Archiwa" -#: src/Content/Feature.php:131 +#: src/Content/Feature.php:117 msgid "Display an archive where posts can be selected by month and year." msgstr "" -#: src/Content/Feature.php:132 src/Content/Widget.php:289 +#: src/Content/Feature.php:118 src/Content/Widget.php:267 msgid "Protocols" msgstr "Protokoły" -#: src/Content/Feature.php:132 +#: src/Content/Feature.php:118 msgid "Display posts with the selected protocols." msgstr "" -#: src/Content/Feature.php:133 src/Content/Widget.php:544 -#: src/Module/Settings/Account.php:447 +#: src/Content/Feature.php:119 src/Content/Widget.php:522 +#: src/Module/Settings/Account.php:433 msgid "Account Types" msgstr "Rodzaje kont" -#: src/Content/Feature.php:133 +#: src/Content/Feature.php:119 msgid "Display posts done by accounts with the selected account type." msgstr "" -#: src/Content/Feature.php:134 src/Content/Widget.php:593 -#: src/Module/Admin/Site.php:474 src/Module/BaseSettings.php:125 -#: src/Module/Settings/Channels.php:225 src/Module/Settings/Display.php:315 +#: src/Content/Feature.php:120 src/Content/Widget.php:571 +#: src/Module/Admin/Site.php:464 src/Module/BaseSettings.php:111 +#: src/Module/Settings/Channels.php:211 src/Module/Settings/Display.php:301 msgid "Channels" msgstr "" -#: src/Content/Feature.php:134 +#: src/Content/Feature.php:120 msgid "Display posts in the system channels and user defined channels." msgstr "" -#: src/Content/Feature.php:135 src/Content/Widget/SavedSearches.php:60 +#: src/Content/Feature.php:121 src/Content/Widget/SavedSearches.php:46 msgid "Saved Searches" msgstr "Zapisywanie wyszukiwania" -#: src/Content/Feature.php:135 +#: src/Content/Feature.php:121 msgid "Display posts that contain subscribed hashtags." msgstr "" -#: src/Content/Feature.php:136 src/Content/Widget.php:319 +#: src/Content/Feature.php:122 src/Content/Widget.php:297 msgid "Saved Folders" msgstr "Zapisane katalogi" -#: src/Content/Feature.php:136 +#: src/Content/Feature.php:122 msgid "Display a list of folders in which posts are stored." msgstr "" -#: src/Content/Feature.php:137 src/Module/Conversation/Timeline.php:200 +#: src/Content/Feature.php:123 src/Module/Conversation/Timeline.php:186 msgid "Own Contacts" msgstr "Własne kontakty" -#: src/Content/Feature.php:137 +#: src/Content/Feature.php:123 msgid "" "Include or exclude posts from subscribed accounts. This widget is not " "visible on all channels." msgstr "" -#: src/Content/Feature.php:138 +#: src/Content/Feature.php:124 msgid "Trending Tags" msgstr "Popularne znaczniki" -#: src/Content/Feature.php:138 +#: src/Content/Feature.php:124 msgid "Display a list of the most popular tags in recent public posts." msgstr "" -#: src/Content/Feature.php:143 +#: src/Content/Feature.php:129 msgid "Advanced Profile Settings" msgstr "Zaawansowane ustawienia profilu" -#: src/Content/Feature.php:144 +#: src/Content/Feature.php:130 msgid "Tag Cloud" msgstr "Chmura znaczników" -#: src/Content/Feature.php:144 +#: src/Content/Feature.php:130 msgid "Provide a personal tag cloud on your profile page" msgstr "Podaj osobistą chmurę tagów na stronie profilu" -#: src/Content/Feature.php:145 +#: src/Content/Feature.php:131 msgid "Display Membership Date" msgstr "Wyświetl datę członkostwa" -#: src/Content/Feature.php:145 +#: src/Content/Feature.php:131 msgid "Display membership date in profile" msgstr "Wyświetla datę członkostwa w profilu" -#: src/Content/Feature.php:150 +#: src/Content/Feature.php:136 msgid "Advanced Calendar Settings" msgstr "Zaawansowane ustawienia kalendarza" -#: src/Content/Feature.php:151 +#: src/Content/Feature.php:137 msgid "Allow anonymous access to your calendar" msgstr "Zezwól na anonimowy dostęp do swojego kalendarza" -#: src/Content/Feature.php:151 +#: src/Content/Feature.php:137 msgid "" "Allows anonymous visitors to consult your calendar and your public events. " "Contact birthday events are private to you." msgstr "Pozwala anonimowym odwiedzającym przeglądać Twój kalendarz i wydarzenia publiczne. Kontaktowe wydarzenia urodzinowe są prywatne dla Ciebie." -#: src/Content/GroupManager.php:149 +#: src/Content/GroupManager.php:135 msgid "External link to group" msgstr "" -#: src/Content/GroupManager.php:153 src/Content/Widget.php:513 +#: src/Content/GroupManager.php:139 src/Content/Widget.php:491 msgid "show less" msgstr "pokaż mniej" -#: src/Content/GroupManager.php:154 src/Content/Widget.php:411 -#: src/Content/Widget.php:514 +#: src/Content/GroupManager.php:140 src/Content/Widget.php:389 +#: src/Content/Widget.php:492 msgid "show more" msgstr "pokaż więcej" -#: src/Content/GroupManager.php:155 +#: src/Content/GroupManager.php:141 msgid "Create new group" msgstr "" -#: src/Content/Item.php:331 src/Model/Item.php:3304 +#: src/Content/Item.php:317 src/Model/Item.php:3272 msgid "event" msgstr "wydarzenie" -#: src/Content/Item.php:334 src/Content/Item.php:344 +#: src/Content/Item.php:320 src/Content/Item.php:330 msgid "status" msgstr "stan" -#: src/Content/Item.php:340 src/Model/Item.php:3306 -#: src/Module/Post/Tag/Add.php:123 +#: src/Content/Item.php:326 src/Model/Item.php:3274 +#: src/Module/Post/Tag/Add.php:109 msgid "photo" msgstr "zdjęcie" -#: src/Content/Item.php:354 src/Module/Post/Tag/Add.php:141 +#: src/Content/Item.php:340 src/Module/Post/Tag/Add.php:127 #, php-format msgid "%1$s tagged %2$s's %3$s with %4$s" msgstr "%1$s zaznaczył %2$s'go %3$s przy użyciu %4$s" -#: src/Content/Item.php:428 view/theme/frio/theme.php:265 +#: src/Content/Item.php:414 view/theme/frio/theme.php:253 msgid "Follow Thread" msgstr "Śledź wątek" -#: src/Content/Item.php:429 src/Model/Contact.php:1256 +#: src/Content/Item.php:415 src/Model/Contact.php:1249 msgid "View Status" msgstr "Zobacz status" -#: src/Content/Item.php:430 src/Content/Item.php:453 -#: src/Model/Contact.php:1191 src/Model/Contact.php:1247 -#: src/Model/Contact.php:1257 src/Module/Directory.php:158 -#: src/Module/Settings/Profile/Index.php:264 +#: src/Content/Item.php:416 src/Content/Item.php:439 +#: src/Model/Contact.php:1184 src/Model/Contact.php:1240 +#: src/Model/Contact.php:1250 src/Module/Directory.php:144 +#: src/Module/Settings/Profile/Index.php:250 msgid "View Profile" msgstr "Zobacz profil" -#: src/Content/Item.php:431 src/Model/Contact.php:1258 +#: src/Content/Item.php:417 src/Model/Contact.php:1251 msgid "View Photos" msgstr "Zobacz zdjęcia" -#: src/Content/Item.php:432 src/Model/Contact.php:1225 -#: src/Model/Profile.php:461 +#: src/Content/Item.php:418 src/Model/Contact.php:1218 +#: src/Model/Profile.php:447 msgid "Network Posts" msgstr "Wiadomości sieciowe" -#: src/Content/Item.php:433 src/Model/Contact.php:1249 -#: src/Model/Contact.php:1260 +#: src/Content/Item.php:419 src/Model/Contact.php:1242 +#: src/Model/Contact.php:1253 msgid "View Contact" msgstr "Pokaż kontakt" -#: src/Content/Item.php:434 src/Model/Contact.php:1261 +#: src/Content/Item.php:420 src/Model/Contact.php:1254 msgid "Send PM" msgstr "Wyślij prywatną wiadomość" -#: src/Content/Item.php:435 src/Module/Contact.php:474 -#: src/Module/Contact/Profile.php:532 -#: src/Module/Moderation/Blocklist/Contact.php:116 -#: src/Module/Moderation/Users/Active.php:137 -#: src/Module/Moderation/Users/Index.php:152 +#: src/Content/Item.php:421 src/Module/Contact.php:449 +#: src/Module/Contact/Profile.php:518 +#: src/Module/Moderation/Blocklist/Contact.php:102 +#: src/Module/Moderation/Users/Active.php:123 +#: src/Module/Moderation/Users/Index.php:138 msgid "Block" msgstr "Zablokuj" -#: src/Content/Item.php:436 src/Module/Contact.php:475 -#: src/Module/Contact/Profile.php:540 -#: src/Module/Notifications/Introductions.php:140 -#: src/Module/Notifications/Introductions.php:212 -#: src/Module/Notifications/Notification.php:89 +#: src/Content/Item.php:422 src/Module/Contact.php:450 +#: src/Module/Contact/Profile.php:526 +#: src/Module/Notifications/Introductions.php:126 +#: src/Module/Notifications/Introductions.php:198 +#: src/Module/Notifications/Notification.php:75 msgid "Ignore" msgstr "Ignoruj" -#: src/Content/Item.php:437 src/Module/Contact.php:476 -#: src/Module/Contact/Profile.php:548 +#: src/Content/Item.php:423 src/Module/Contact.php:451 +#: src/Module/Contact/Profile.php:534 msgid "Collapse" msgstr "" -#: src/Content/Item.php:438 src/Object/Post.php:302 +#: src/Content/Item.php:424 src/Object/Post.php:288 #, php-format msgid "Ignore %s server" msgstr "" -#: src/Content/Item.php:442 src/Module/Settings/Channels.php:202 -#: src/Module/Settings/Channels.php:223 src/Object/Post.php:516 +#: src/Content/Item.php:428 src/Module/Settings/Channels.php:188 +#: src/Module/Settings/Channels.php:209 src/Object/Post.php:502 msgid "Languages" msgstr "Języki" -#: src/Content/Item.php:445 src/Object/Post.php:596 +#: src/Content/Item.php:431 src/Object/Post.php:582 msgid "Search Text" msgstr "" -#: src/Content/Item.php:450 src/Content/Widget.php:80 -#: src/Model/Contact.php:1250 src/Model/Contact.php:1262 -#: src/Module/Contact/Follow.php:167 view/theme/vier/theme.php:195 +#: src/Content/Item.php:436 src/Content/Widget.php:66 +#: src/Model/Contact.php:1243 src/Model/Contact.php:1255 +#: src/Module/Contact/Follow.php:148 view/theme/vier/theme.php:183 msgid "Connect/Follow" msgstr "Połącz/Obserwuj" -#: src/Content/Item.php:884 +#: src/Content/Item.php:870 msgid "Unable to fetch user." msgstr "" -#: src/Content/Nav.php:121 +#: src/Content/Nav.php:107 msgid "Nothing new here" msgstr "Brak nowych zdarzeń" -#: src/Content/Nav.php:125 src/Module/Special/HTTPException.php:77 +#: src/Content/Nav.php:111 src/Module/Special/HTTPException.php:63 msgid "Go back" msgstr "Wróć" -#: src/Content/Nav.php:126 +#: src/Content/Nav.php:112 msgid "Clear notifications" msgstr "Wyczyść powiadomienia" -#: src/Content/Nav.php:127 src/Content/Text/HTML.php:869 +#: src/Content/Nav.php:113 src/Content/Text/HTML.php:855 msgid "@name, !group, #tags, content" msgstr "" -#: src/Content/Nav.php:222 src/Module/Security/Login.php:161 +#: src/Content/Nav.php:208 src/Module/Security/Login.php:147 msgid "Logout" msgstr "Wyloguj" -#: src/Content/Nav.php:222 +#: src/Content/Nav.php:208 msgid "End this session" msgstr "Zakończ sesję" -#: src/Content/Nav.php:224 src/Module/Bookmarklet.php:44 -#: src/Module/Security/Login.php:162 +#: src/Content/Nav.php:210 src/Module/Bookmarklet.php:30 +#: src/Module/Security/Login.php:148 msgid "Login" msgstr "Zaloguj się" -#: src/Content/Nav.php:224 +#: src/Content/Nav.php:210 msgid "Sign in" msgstr "Zaloguj się" -#: src/Content/Nav.php:229 src/Module/BaseProfile.php:57 -#: src/Module/Contact.php:518 +#: src/Content/Nav.php:215 src/Module/BaseProfile.php:43 +#: src/Module/Contact.php:493 msgid "Conversations" msgstr "" -#: src/Content/Nav.php:229 +#: src/Content/Nav.php:215 msgid "Conversations you started" msgstr "" -#: src/Content/Nav.php:230 src/Module/BaseProfile.php:49 -#: src/Module/BaseSettings.php:98 src/Module/Contact.php:510 -#: src/Module/Contact/Profile.php:439 src/Module/Profile/Profile.php:270 -#: src/Module/Welcome.php:57 view/theme/frio/theme.php:233 +#: src/Content/Nav.php:216 src/Module/BaseProfile.php:35 +#: src/Module/BaseSettings.php:84 src/Module/Contact.php:485 +#: src/Module/Contact/Profile.php:425 src/Module/Profile/Profile.php:256 +#: src/Module/Welcome.php:43 view/theme/frio/theme.php:221 msgid "Profile" msgstr "Profil" -#: src/Content/Nav.php:230 view/theme/frio/theme.php:233 +#: src/Content/Nav.php:216 view/theme/frio/theme.php:221 msgid "Your profile page" msgstr "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:237 +#: src/Content/Nav.php:217 src/Module/BaseProfile.php:51 +#: src/Module/Media/Photo/Browser.php:60 view/theme/frio/theme.php:225 msgid "Photos" msgstr "Zdjęcia" -#: src/Content/Nav.php:231 view/theme/frio/theme.php:237 +#: src/Content/Nav.php:217 view/theme/frio/theme.php:225 msgid "Your photos" msgstr "Twoje zdjęcia" -#: src/Content/Nav.php:232 src/Module/BaseProfile.php:73 -#: src/Module/BaseProfile.php:76 src/Module/Contact.php:534 -#: view/theme/frio/theme.php:238 +#: src/Content/Nav.php:218 src/Module/BaseProfile.php:59 +#: src/Module/BaseProfile.php:62 src/Module/Contact.php:509 +#: view/theme/frio/theme.php:226 msgid "Media" msgstr "Media" -#: src/Content/Nav.php:232 view/theme/frio/theme.php:238 +#: src/Content/Nav.php:218 view/theme/frio/theme.php:226 msgid "Your postings with media" msgstr "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:239 -#: view/theme/frio/theme.php:243 +#: src/Content/Nav.php:219 src/Content/Nav.php:279 +#: src/Module/BaseProfile.php:71 src/Module/BaseProfile.php:74 +#: src/Module/BaseProfile.php:82 src/Module/BaseProfile.php:85 +#: src/Module/Settings/Display.php:302 view/theme/frio/theme.php:227 +#: view/theme/frio/theme.php:231 msgid "Calendar" msgstr "Kalendarz" -#: src/Content/Nav.php:233 view/theme/frio/theme.php:239 +#: src/Content/Nav.php:219 view/theme/frio/theme.php:227 msgid "Your calendar" msgstr "Twój kalendarz" -#: src/Content/Nav.php:234 +#: src/Content/Nav.php:220 msgid "Personal notes" msgstr "Osobiste notatki" -#: src/Content/Nav.php:234 +#: src/Content/Nav.php:220 msgid "Your personal notes" msgstr "Twoje osobiste notatki" -#: src/Content/Nav.php:251 src/Content/Nav.php:308 +#: src/Content/Nav.php:237 src/Content/Nav.php:294 msgid "Home" msgstr "Strona domowa" -#: src/Content/Nav.php:251 src/Module/Settings/OAuth.php:73 +#: src/Content/Nav.php:237 src/Module/Settings/OAuth.php:59 msgid "Home Page" msgstr "Strona startowa" -#: src/Content/Nav.php:255 src/Module/Register.php:175 -#: src/Module/Security/Login.php:128 +#: src/Content/Nav.php:241 src/Module/Register.php:161 +#: src/Module/Security/Login.php:114 msgid "Register" msgstr "Zarejestruj" -#: src/Content/Nav.php:255 +#: src/Content/Nav.php:241 msgid "Create an account" msgstr "Załóż konto" -#: src/Content/Nav.php:261 src/Module/Help.php:67 -#: src/Module/Settings/TwoFactor/AppSpecific.php:132 -#: src/Module/Settings/TwoFactor/Index.php:139 -#: src/Module/Settings/TwoFactor/Recovery.php:110 -#: src/Module/Settings/TwoFactor/Verify.php:149 view/theme/vier/theme.php:240 +#: src/Content/Nav.php:247 src/Module/Help.php:53 +#: src/Module/Settings/TwoFactor/AppSpecific.php:118 +#: src/Module/Settings/TwoFactor/Index.php:125 +#: src/Module/Settings/TwoFactor/Recovery.php:96 +#: src/Module/Settings/TwoFactor/Verify.php:135 view/theme/vier/theme.php:228 msgid "Help" msgstr "Pomoc" -#: src/Content/Nav.php:261 +#: src/Content/Nav.php:247 msgid "Help and documentation" msgstr "Pomoc i dokumentacja" -#: src/Content/Nav.php:265 +#: src/Content/Nav.php:251 msgid "Apps" msgstr "Aplikacje" -#: src/Content/Nav.php:265 +#: src/Content/Nav.php:251 msgid "Addon applications, utilities, games" msgstr "Wtyczki, aplikacje, narzędzia, gry" -#: src/Content/Nav.php:269 src/Content/Text/HTML.php:867 -#: src/Module/Admin/Logs/View.php:88 src/Module/Search/Index.php:112 +#: src/Content/Nav.php:255 src/Content/Text/HTML.php:853 +#: src/Module/Admin/Logs/View.php:74 src/Module/Search/Index.php:98 msgid "Search" msgstr "Szukaj" -#: src/Content/Nav.php:269 +#: src/Content/Nav.php:255 msgid "Search site content" msgstr "Przeszukaj zawartość strony" -#: src/Content/Nav.php:272 src/Content/Text/HTML.php:876 +#: src/Content/Nav.php:258 src/Content/Text/HTML.php:862 msgid "Full Text" msgstr "Pełny tekst" -#: src/Content/Nav.php:273 src/Content/Text/HTML.php:877 -#: src/Content/Widget/TagCloud.php:68 +#: src/Content/Nav.php:259 src/Content/Text/HTML.php:863 +#: src/Content/Widget/TagCloud.php:54 msgid "Tags" msgstr "Znaczniki" -#: src/Content/Nav.php:274 src/Content/Nav.php:329 -#: src/Content/Text/HTML.php:878 src/Module/BaseProfile.php:127 -#: src/Module/BaseProfile.php:130 src/Module/Contact.php:432 -#: src/Module/Contact.php:542 view/theme/frio/theme.php:246 +#: src/Content/Nav.php:260 src/Content/Nav.php:315 +#: src/Content/Text/HTML.php:864 src/Module/BaseProfile.php:113 +#: src/Module/BaseProfile.php:116 src/Module/Contact.php:407 +#: src/Module/Contact.php:517 view/theme/frio/theme.php:234 msgid "Contacts" msgstr "Kontakty" -#: src/Content/Nav.php:289 +#: src/Content/Nav.php:275 msgid "Community" msgstr "Społeczność" -#: src/Content/Nav.php:289 +#: src/Content/Nav.php:275 msgid "Conversations on this and other servers" msgstr "Rozmowy na tym i innych serwerach" -#: src/Content/Nav.php:296 +#: src/Content/Nav.php:282 msgid "Directory" msgstr "Katalog" -#: src/Content/Nav.php:296 +#: src/Content/Nav.php:282 msgid "People directory" msgstr "Katalog osób" -#: src/Content/Nav.php:298 src/Module/BaseAdmin.php:85 -#: src/Module/BaseModeration.php:108 +#: src/Content/Nav.php:284 src/Module/BaseAdmin.php:71 +#: src/Module/BaseModeration.php:94 msgid "Information" msgstr "Informacje" -#: src/Content/Nav.php:298 +#: src/Content/Nav.php:284 msgid "Information about this friendica instance" msgstr "Informacje o tej instancji friendica" -#: src/Content/Nav.php:301 src/Module/Admin/Tos.php:78 -#: src/Module/BaseAdmin.php:95 src/Module/Register.php:183 -#: src/Module/Tos.php:101 +#: src/Content/Nav.php:287 src/Module/Admin/Tos.php:64 +#: src/Module/BaseAdmin.php:81 src/Module/Register.php:169 +#: src/Module/Tos.php:87 msgid "Terms of Service" msgstr "Warunki usługi" -#: src/Content/Nav.php:301 +#: src/Content/Nav.php:287 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:242 +#: src/Content/Nav.php:292 view/theme/frio/theme.php:230 msgid "Network" msgstr "Sieć" -#: src/Content/Nav.php:306 view/theme/frio/theme.php:242 +#: src/Content/Nav.php:292 view/theme/frio/theme.php:230 msgid "Conversations from your friends" msgstr "Rozmowy Twoich przyjaciół" -#: src/Content/Nav.php:308 view/theme/frio/theme.php:232 +#: src/Content/Nav.php:294 view/theme/frio/theme.php:220 msgid "Your posts and conversations" msgstr "Twoje wpisy i rozmowy" -#: src/Content/Nav.php:312 +#: src/Content/Nav.php:298 msgid "Introductions" msgstr "Zapoznanie" -#: src/Content/Nav.php:312 +#: src/Content/Nav.php:298 msgid "Friend Requests" msgstr "Prośba o przyjęcie do grona znajomych" -#: src/Content/Nav.php:313 src/Module/BaseNotifications.php:149 -#: src/Module/Notifications/Introductions.php:75 +#: src/Content/Nav.php:299 src/Module/BaseNotifications.php:135 +#: src/Module/Notifications/Introductions.php:61 msgid "Notifications" msgstr "Powiadomienia" -#: src/Content/Nav.php:314 +#: src/Content/Nav.php:300 msgid "See all notifications" msgstr "Zobacz wszystkie powiadomienia" -#: src/Content/Nav.php:315 src/Module/Settings/Connectors.php:254 +#: src/Content/Nav.php:301 src/Module/Settings/Connectors.php:233 msgid "Mark as seen" msgstr "Oznacz jako przeczytane" -#: src/Content/Nav.php:315 +#: src/Content/Nav.php:301 msgid "Mark all system notifications as seen" msgstr "Oznacz wszystkie powiadomienia systemowe jako przeczytane" -#: src/Content/Nav.php:318 view/theme/frio/theme.php:244 +#: src/Content/Nav.php:304 view/theme/frio/theme.php:232 msgid "Private mail" msgstr "Prywatne maile" -#: src/Content/Nav.php:319 +#: src/Content/Nav.php:305 msgid "Inbox" msgstr "Odebrane" -#: src/Content/Nav.php:320 +#: src/Content/Nav.php:306 msgid "Outbox" msgstr "Wysłane" -#: src/Content/Nav.php:324 +#: src/Content/Nav.php:310 msgid "Accounts" msgstr "Konta" -#: src/Content/Nav.php:324 +#: src/Content/Nav.php:310 msgid "Manage other pages" msgstr "Zarządzaj innymi stronami" -#: src/Content/Nav.php:327 src/Module/Admin/Addons/Details.php:114 -#: src/Module/Admin/Themes/Details.php:99 src/Module/BaseSettings.php:182 -#: src/Module/Welcome.php:52 view/theme/frio/theme.php:245 +#: src/Content/Nav.php:313 src/Module/Admin/Addons/Details.php:100 +#: src/Module/Admin/Themes/Details.php:85 src/Module/BaseSettings.php:168 +#: src/Module/Welcome.php:38 view/theme/frio/theme.php:233 msgid "Settings" msgstr "Ustawienia" -#: src/Content/Nav.php:327 view/theme/frio/theme.php:245 +#: src/Content/Nav.php:313 view/theme/frio/theme.php:233 msgid "Account settings" msgstr "Ustawienia konta" -#: src/Content/Nav.php:329 view/theme/frio/theme.php:246 +#: src/Content/Nav.php:315 view/theme/frio/theme.php:234 msgid "Manage/edit friends and contacts" msgstr "Zarządzaj listą przyjaciół i kontaktami" -#: src/Content/Nav.php:334 src/Module/BaseAdmin.php:119 +#: src/Content/Nav.php:320 src/Module/BaseAdmin.php:105 msgid "Admin" msgstr "Administrator" -#: src/Content/Nav.php:334 +#: src/Content/Nav.php:320 msgid "Site setup and configuration" msgstr "Konfiguracja i ustawienia strony" -#: src/Content/Nav.php:335 src/Module/BaseModeration.php:128 -#: src/Module/Moderation/Blocklist/Contact.php:110 -#: src/Module/Moderation/Blocklist/Server/Add.php:121 -#: src/Module/Moderation/Blocklist/Server/Import.php:118 -#: src/Module/Moderation/Blocklist/Server/Index.php:95 -#: src/Module/Moderation/Item/Delete.php:61 -#: src/Module/Moderation/Reports.php:110 src/Module/Moderation/Summary.php:75 -#: src/Module/Moderation/Users/Active.php:133 -#: src/Module/Moderation/Users/Blocked.php:133 -#: src/Module/Moderation/Users/Deleted.php:80 -#: src/Module/Moderation/Users/Index.php:147 +#: src/Content/Nav.php:321 src/Module/BaseModeration.php:114 +#: src/Module/Moderation/Blocklist/Contact.php:96 +#: src/Module/Moderation/Blocklist/Server/Add.php:107 +#: src/Module/Moderation/Blocklist/Server/Import.php:102 +#: src/Module/Moderation/Blocklist/Server/Index.php:81 +#: src/Module/Moderation/Item/Delete.php:47 +#: src/Module/Moderation/Reports.php:96 src/Module/Moderation/Summary.php:61 +#: src/Module/Moderation/Users/Active.php:119 +#: src/Module/Moderation/Users/Blocked.php:119 +#: src/Module/Moderation/Users/Deleted.php:66 +#: src/Module/Moderation/Users/Index.php:133 msgid "Moderation" msgstr "Moderacja" -#: src/Content/Nav.php:335 +#: src/Content/Nav.php:321 msgid "Content and user moderation" msgstr "Moderacja treści i użytkowników" -#: src/Content/Nav.php:338 +#: src/Content/Nav.php:324 msgid "Navigation" msgstr "Nawigacja" -#: src/Content/Nav.php:338 +#: src/Content/Nav.php:324 msgid "Site map" msgstr "Mapa strony" -#: src/Content/Pager.php:216 +#: src/Content/Pager.php:202 msgid "first" msgstr "pierwszy" -#: src/Content/Pager.php:221 +#: src/Content/Pager.php:207 msgid "prev" msgstr "poprzedni" -#: src/Content/Pager.php:276 +#: src/Content/Pager.php:262 msgid "next" msgstr "następny" -#: src/Content/Pager.php:281 +#: src/Content/Pager.php:267 msgid "last" msgstr "ostatni" -#: src/Content/Text/BBCode.php:704 src/Content/Text/BBCode.php:1880 -#: src/Content/Text/BBCode.php:1881 +#: src/Content/Text/BBCode.php:689 src/Content/Text/BBCode.php:1862 +#: src/Content/Text/BBCode.php:1863 msgid "Image/photo" msgstr "Obrazek/zdjęcie" -#: src/Content/Text/BBCode.php:922 +#: src/Content/Text/BBCode.php:907 #, php-format msgid "%2$s %3$s" msgstr "%2$s %3$s" -#: src/Content/Text/BBCode.php:947 src/Model/Item.php:4060 -#: src/Model/Item.php:4066 src/Model/Item.php:4067 +#: src/Content/Text/BBCode.php:929 src/Model/Item.php:4028 +#: src/Model/Item.php:4034 src/Model/Item.php:4035 msgid "Link to source" msgstr "Odnośnik do źródła" -#: src/Content/Text/BBCode.php:1761 src/Content/Text/HTML.php:906 +#: src/Content/Text/BBCode.php:1743 src/Content/Text/HTML.php:892 msgid "Click to open/close" msgstr "Kliknij aby otworzyć/zamknąć" -#: src/Content/Text/BBCode.php:1816 +#: src/Content/Text/BBCode.php:1798 msgid "$1 wrote:" msgstr "$1 napisał:" -#: src/Content/Text/BBCode.php:1890 src/Content/Text/BBCode.php:1891 +#: src/Content/Text/BBCode.php:1872 src/Content/Text/BBCode.php:1873 msgid "Encrypted content" msgstr "Szyfrowana treść" -#: src/Content/Text/BBCode.php:2223 +#: src/Content/Text/BBCode.php:2205 msgid "Invalid source protocol" msgstr "Nieprawidłowy protokół źródłowy" -#: src/Content/Text/BBCode.php:2242 +#: src/Content/Text/BBCode.php:2224 msgid "Invalid link protocol" msgstr "Niepoprawny link protokołu" -#: src/Content/Text/HTML.php:784 +#: src/Content/Text/HTML.php:770 msgid "Loading more entries..." msgstr "Wczytywanie kolejnych wpisów..." -#: src/Content/Text/HTML.php:785 +#: src/Content/Text/HTML.php:771 msgid "The end" msgstr "Koniec" -#: src/Content/Text/HTML.php:861 src/Content/Widget/VCard.php:127 -#: src/Model/Profile.php:470 src/Module/Contact/Profile.php:492 +#: src/Content/Text/HTML.php:847 src/Content/Widget/VCard.php:113 +#: src/Model/Profile.php:456 src/Module/Contact/Profile.php:478 msgid "Follow" msgstr "Śledź" -#: src/Content/Widget.php:51 +#: src/Content/Widget.php:37 msgid "Add New Contact" msgstr "Dodaj nowy kontakt" -#: src/Content/Widget.php:52 +#: src/Content/Widget.php:38 msgid "Enter address or web location" msgstr "Wpisz adres lub lokalizację sieciową" -#: src/Content/Widget.php:53 +#: src/Content/Widget.php:39 msgid "Example: bob@example.com, http://example.com/barbara" msgstr "Przykład: bob@przykład.com, http://przykład.com/barbara" -#: src/Content/Widget.php:55 +#: src/Content/Widget.php:41 msgid "Connect" msgstr "Połącz" -#: src/Content/Widget.php:72 +#: src/Content/Widget.php:58 #, php-format msgid "%d invitation available" msgid_plural "%d invitations available" @@ -2425,79 +2424,79 @@ msgstr[1] "%d zaproszeń dostępnych" msgstr[2] "%d zaproszenia dostępne" msgstr[3] "%d zaproszenia dostępne" -#: src/Content/Widget.php:78 view/theme/vier/theme.php:193 +#: src/Content/Widget.php:64 view/theme/vier/theme.php:181 msgid "Find People" msgstr "Znajdź ludzi" -#: src/Content/Widget.php:79 view/theme/vier/theme.php:194 +#: src/Content/Widget.php:65 view/theme/vier/theme.php:182 msgid "Enter name or interest" msgstr "Wpisz nazwę lub zainteresowanie" -#: src/Content/Widget.php:81 view/theme/vier/theme.php:196 +#: src/Content/Widget.php:67 view/theme/vier/theme.php:184 msgid "Examples: Robert Morgenstein, Fishing" msgstr "Przykład: Jan Kowalski, Wędkarstwo" -#: src/Content/Widget.php:82 src/Module/Contact.php:466 -#: src/Module/Directory.php:97 view/theme/vier/theme.php:197 +#: src/Content/Widget.php:68 src/Module/Contact.php:441 +#: src/Module/Directory.php:83 view/theme/vier/theme.php:185 msgid "Find" msgstr "Znajdź" -#: src/Content/Widget.php:83 src/Module/Contact/Suggestions.php:73 -#: view/theme/vier/theme.php:198 +#: src/Content/Widget.php:69 src/Module/Contact/Suggestions.php:59 +#: view/theme/vier/theme.php:186 msgid "Friend Suggestions" msgstr "Osoby, które możesz znać" -#: src/Content/Widget.php:84 view/theme/vier/theme.php:199 +#: src/Content/Widget.php:70 view/theme/vier/theme.php:187 msgid "Similar Interests" msgstr "Podobne zainteresowania" -#: src/Content/Widget.php:85 view/theme/vier/theme.php:200 +#: src/Content/Widget.php:71 view/theme/vier/theme.php:188 msgid "Random Profile" msgstr "Domyślny profil" -#: src/Content/Widget.php:86 view/theme/vier/theme.php:201 +#: src/Content/Widget.php:72 view/theme/vier/theme.php:189 msgid "Invite Friends" msgstr "Zaproś znajomych" -#: src/Content/Widget.php:87 src/Module/Directory.php:89 -#: view/theme/vier/theme.php:202 +#: src/Content/Widget.php:73 src/Module/Directory.php:75 +#: view/theme/vier/theme.php:190 msgid "Global Directory" msgstr "Katalog globalny" -#: src/Content/Widget.php:89 view/theme/vier/theme.php:204 +#: src/Content/Widget.php:75 view/theme/vier/theme.php:192 msgid "Local Directory" msgstr "Katalog lokalny" -#: src/Content/Widget.php:218 +#: src/Content/Widget.php:196 msgid "Everyone" msgstr "Wszyscy" -#: src/Content/Widget.php:243 src/Module/Contact.php:429 +#: src/Content/Widget.php:221 src/Module/Contact.php:404 msgid "No relationship" msgstr "" -#: src/Content/Widget.php:248 +#: src/Content/Widget.php:226 msgid "Relationships" msgstr "Relacje" -#: src/Content/Widget.php:250 src/Module/Circle.php:294 -#: src/Module/Contact.php:350 +#: src/Content/Widget.php:228 src/Module/Circle.php:280 +#: src/Module/Contact.php:325 msgid "All Contacts" msgstr "Wszystkie kontakty" -#: src/Content/Widget.php:291 +#: src/Content/Widget.php:269 msgid "All Protocols" msgstr "Wszystkie protokoły" -#: src/Content/Widget.php:321 src/Content/Widget.php:352 +#: src/Content/Widget.php:299 src/Content/Widget.php:330 msgid "Everything" msgstr "Wszystko" -#: src/Content/Widget.php:350 +#: src/Content/Widget.php:328 msgid "Categories" msgstr "Kategorie" -#: src/Content/Widget.php:407 +#: src/Content/Widget.php:385 #, php-format msgid "%d contact in common" msgid_plural "%d contacts in common" @@ -2506,47 +2505,47 @@ msgstr[1] "%d wspólne kontakty" msgstr[2] "%d wspólnych kontaktów" msgstr[3] "%d wspólnych kontaktów" -#: src/Content/Widget.php:515 +#: src/Content/Widget.php:493 msgid "On this date" msgstr "" -#: src/Content/Widget.php:535 +#: src/Content/Widget.php:513 msgid "Persons" msgstr "Osoby" -#: src/Content/Widget.php:536 +#: src/Content/Widget.php:514 msgid "Organisations" msgstr "Organizacje" -#: src/Content/Widget.php:537 src/Model/Contact.php:1754 +#: src/Content/Widget.php:515 src/Model/Contact.php:1747 msgid "News" msgstr "Aktualności" -#: src/Content/Widget.php:539 +#: src/Content/Widget.php:517 msgid "Relays" msgstr "" -#: src/Content/Widget.php:546 src/Module/Moderation/BaseUsers.php:69 +#: src/Content/Widget.php:524 src/Module/Moderation/BaseUsers.php:56 msgid "All" msgstr "Wszyscy" -#: src/Content/Widget/CalendarExport.php:56 +#: src/Content/Widget/CalendarExport.php:42 msgid "Export" msgstr "Eksport" -#: src/Content/Widget/CalendarExport.php:57 +#: src/Content/Widget/CalendarExport.php:43 msgid "Export calendar as ical" msgstr "Wyeksportuj kalendarz jako ical" -#: src/Content/Widget/CalendarExport.php:58 +#: src/Content/Widget/CalendarExport.php:44 msgid "Export calendar as csv" msgstr "Eksportuj kalendarz jako csv" -#: src/Content/Widget/ContactBlock.php:79 +#: src/Content/Widget/ContactBlock.php:65 msgid "No contacts" msgstr "Brak kontaktów" -#: src/Content/Widget/ContactBlock.php:110 +#: src/Content/Widget/ContactBlock.php:96 #, php-format msgid "%d Contact" msgid_plural "%d Contacts" @@ -2555,15 +2554,15 @@ msgstr[1] "%d kontaktów" msgstr[2] "%d kontakty" msgstr[3] "%d Kontakty" -#: src/Content/Widget/ContactBlock.php:127 +#: src/Content/Widget/ContactBlock.php:113 msgid "View Contacts" msgstr "Widok kontaktów" -#: src/Content/Widget/SavedSearches.php:47 +#: src/Content/Widget/SavedSearches.php:33 msgid "Remove term" msgstr "Usuń wpis" -#: src/Content/Widget/TrendingTags.php:53 +#: src/Content/Widget/TrendingTags.php:39 #, php-format msgid "Trending Tags (last %d hour)" msgid_plural "Trending Tags (last %d hours)" @@ -2572,138 +2571,138 @@ msgstr[1] "Popularne znaczniki (ostatnie %d godziny)" msgstr[2] "Popularne znaczniki (ostatnie %d godzin)" msgstr[3] "Popularne znaczniki (ostatnie %d godzin)" -#: src/Content/Widget/TrendingTags.php:54 +#: src/Content/Widget/TrendingTags.php:40 msgid "More Trending Tags" msgstr "Więcej popularnych znaczników" -#: src/Content/Widget/VCard.php:105 src/Model/Contact.php:1219 -#: src/Model/Profile.php:455 +#: src/Content/Widget/VCard.php:91 src/Model/Contact.php:1212 +#: src/Model/Profile.php:441 msgid "Post to group" msgstr "" -#: src/Content/Widget/VCard.php:110 src/Model/Contact.php:1223 -#: src/Model/Profile.php:459 src/Module/Moderation/Item/Source.php:91 +#: src/Content/Widget/VCard.php:96 src/Model/Contact.php:1216 +#: src/Model/Profile.php:445 src/Module/Moderation/Item/Source.php:77 msgid "Mention" msgstr "Wzmianka" -#: src/Content/Widget/VCard.php:120 src/Model/Profile.php:374 -#: src/Module/Contact/Profile.php:428 src/Module/Profile/Profile.php:201 +#: src/Content/Widget/VCard.php:106 src/Model/Profile.php:360 +#: src/Module/Contact/Profile.php:414 src/Module/Profile/Profile.php:187 msgid "XMPP:" msgstr "XMPP:" -#: src/Content/Widget/VCard.php:121 src/Model/Profile.php:375 -#: src/Module/Contact/Profile.php:430 src/Module/Profile/Profile.php:205 +#: src/Content/Widget/VCard.php:107 src/Model/Profile.php:361 +#: src/Module/Contact/Profile.php:416 src/Module/Profile/Profile.php:191 msgid "Matrix:" msgstr "Matrix:" -#: src/Content/Widget/VCard.php:122 src/Model/Event.php:82 -#: src/Model/Event.php:109 src/Model/Event.php:471 src/Model/Event.php:960 -#: src/Model/Profile.php:369 src/Module/Contact/Profile.php:426 -#: src/Module/Directory.php:148 src/Module/Notifications/Introductions.php:193 -#: src/Module/Profile/Profile.php:223 +#: src/Content/Widget/VCard.php:108 src/Model/Event.php:68 +#: src/Model/Event.php:95 src/Model/Event.php:457 src/Model/Event.php:946 +#: src/Model/Profile.php:355 src/Module/Contact/Profile.php:412 +#: src/Module/Directory.php:134 src/Module/Notifications/Introductions.php:179 +#: src/Module/Profile/Profile.php:209 msgid "Location:" msgstr "Lokalizacja:" -#: src/Content/Widget/VCard.php:125 src/Model/Profile.php:483 -#: src/Module/Notifications/Introductions.php:207 +#: src/Content/Widget/VCard.php:111 src/Model/Profile.php:469 +#: src/Module/Notifications/Introductions.php:193 msgid "Network:" msgstr "Sieć:" -#: src/Content/Widget/VCard.php:129 src/Model/Contact.php:1251 -#: src/Model/Contact.php:1263 src/Model/Profile.php:472 -#: src/Module/Contact/Profile.php:484 +#: src/Content/Widget/VCard.php:115 src/Model/Contact.php:1244 +#: src/Model/Contact.php:1256 src/Model/Profile.php:458 +#: src/Module/Contact/Profile.php:470 msgid "Unfollow" msgstr "Przestań obserwować" -#: src/Content/Widget/VCard.php:135 src/Model/Contact.php:1221 -#: src/Model/Profile.php:457 +#: src/Content/Widget/VCard.php:121 src/Model/Contact.php:1214 +#: src/Model/Profile.php:443 msgid "View group" msgstr "" -#: src/Core/ACL.php:166 src/Module/Profile/Profile.php:271 +#: src/Core/ACL.php:152 src/Module/Profile/Profile.php:257 msgid "Yourself" msgstr "Siebie" -#: src/Core/ACL.php:202 src/Module/Privacy/PermissionTooltip.php:170 -#: src/Module/Privacy/PermissionTooltip.php:192 +#: src/Core/ACL.php:188 src/Module/Privacy/PermissionTooltip.php:156 +#: src/Module/Privacy/PermissionTooltip.php:178 msgid "Mutuals" msgstr "Wzajemne" -#: src/Core/ACL.php:294 +#: src/Core/ACL.php:280 msgid "Post to Email" msgstr "Prześlij e-mailem" -#: src/Core/ACL.php:321 src/Module/Privacy/PermissionTooltip.php:117 -#: src/Module/Privacy/PermissionTooltip.php:231 +#: src/Core/ACL.php:307 src/Module/Privacy/PermissionTooltip.php:103 +#: src/Module/Privacy/PermissionTooltip.php:217 msgid "Public" msgstr "Publiczny" -#: src/Core/ACL.php:322 +#: src/Core/ACL.php:308 msgid "" "This content will be shown to all your followers and can be seen in the " "community pages and by anyone with its link." msgstr "Ta treść zostanie wyświetlona wszystkim Twoim obserwatorom i będzie widoczna na stronach społeczności oraz przez każdego z jej linkiem." -#: src/Core/ACL.php:323 src/Module/Privacy/PermissionTooltip.php:119 +#: src/Core/ACL.php:309 src/Module/Privacy/PermissionTooltip.php:105 msgid "Limited/Private" msgstr "Ograniczony/Prywatny" -#: src/Core/ACL.php:324 +#: src/Core/ACL.php:310 msgid "" "This content will be shown only to the people in the first box, to the " "exception of the people mentioned in the second box. It won't appear " "anywhere public." msgstr "Ta zawartość będzie wyświetlana tylko osobom w pierwszym polu, z wyjątkiem osób wymienionych w drugim polu. Nie pojawi się nigdzie publicznie." -#: src/Core/ACL.php:324 +#: src/Core/ACL.php:310 msgid "" "Start typing the name of a contact or a circle to show a filtered list. You " "can also mention the special circles \"Followers\" and \"Mutuals\"." msgstr "" -#: src/Core/ACL.php:325 +#: src/Core/ACL.php:311 msgid "Show to:" msgstr "Pokaż na:" -#: src/Core/ACL.php:326 +#: src/Core/ACL.php:312 msgid "Except to:" msgstr "Z wyjątkiem:" -#: src/Core/ACL.php:327 src/Module/Post/Edit.php:154 +#: src/Core/ACL.php:313 src/Module/Post/Edit.php:140 msgid "CC: email addresses" msgstr "DW: adresy e-mail" -#: src/Core/ACL.php:328 src/Module/Post/Edit.php:160 +#: src/Core/ACL.php:314 src/Module/Post/Edit.php:146 msgid "Example: bob@example.com, mary@example.com" msgstr "Przykład: bob@example.com, mary@example.com" -#: src/Core/ACL.php:329 +#: src/Core/ACL.php:315 msgid "Connectors" msgstr "Wtyczki" -#: src/Core/Installer.php:180 +#: src/Core/Installer.php:166 msgid "" "The database configuration file \"config/local.config.php\" could not be " "written. Please use the enclosed text to create a configuration file in your" " web server root." msgstr "Plik konfiguracyjny bazy danych \"config/local.config.php\" nie mógł zostać zapisany. Proszę użyć załączonego tekstu, aby utworzyć plik konfiguracyjny w katalogu głównym serwera." -#: src/Core/Installer.php:197 +#: src/Core/Installer.php:183 msgid "" "You may need to import the file \"database.sql\" manually using phpmyadmin " "or mysql." msgstr "Może być konieczne zaimportowanie pliku \"database.sql\" ręcznie, używając phpmyadmin lub mysql." -#: src/Core/Installer.php:198 src/Module/Install.php:207 -#: src/Module/Install.php:350 +#: src/Core/Installer.php:184 src/Module/Install.php:193 +#: src/Module/Install.php:336 msgid "Please see the file \"doc/INSTALL.md\"." msgstr "Proszę zobaczyć plik \"doc/INSTALL.md\"." -#: src/Core/Installer.php:259 +#: src/Core/Installer.php:245 msgid "Could not find a command line version of PHP in the web server PATH." msgstr "Nie można znaleźć PHP dla wiersza poleceń w PATH serwera." -#: src/Core/Installer.php:260 +#: src/Core/Installer.php:246 msgid "" "If you don't have a command line version of PHP installed on your server, " "you will not be able to run the background processing. See 'Setup the worker'" msgstr "Jeśli nie masz zainstalowanej na serwerze wersji PHP działającej w wierszu poleceń, nie będziesz w stanie uruchomić przetwarzania w tle. Zobacz „Ustawienie workera”." -#: src/Core/Installer.php:265 +#: src/Core/Installer.php:251 msgid "PHP executable path" msgstr "Ścieżka wykonywalna PHP" -#: src/Core/Installer.php:265 +#: src/Core/Installer.php:251 msgid "" "Enter full path to php executable. You can leave this blank to continue the " "installation." msgstr "Wprowadź pełną ścieżkę do pliku wykonywalnego php. Możesz pozostawić to pole puste, aby kontynuować instalację." -#: src/Core/Installer.php:270 +#: src/Core/Installer.php:256 msgid "Command line PHP" msgstr "Wiersz poleceń PHP" -#: src/Core/Installer.php:279 +#: src/Core/Installer.php:265 msgid "PHP executable is not the php cli binary (could be cgi-fgci version)" msgstr "Plik wykonywalny PHP nie jest php cli binarny (może być wersją cgi-fgci)" -#: src/Core/Installer.php:280 +#: src/Core/Installer.php:266 msgid "Found PHP version: " msgstr "Znaleziona wersja PHP: " -#: src/Core/Installer.php:282 +#: src/Core/Installer.php:268 msgid "PHP cli binary" msgstr "PHP cli binarny" -#: src/Core/Installer.php:295 +#: src/Core/Installer.php:281 msgid "" "The command line version of PHP on your system does not have " "\"register_argc_argv\" enabled." msgstr "Wersja linii poleceń PHP w twoim systemie nie ma aktywowanego \"register_argc_argv\"." -#: src/Core/Installer.php:296 +#: src/Core/Installer.php:282 msgid "This is required for message delivery to work." msgstr "Jest wymagane, aby dostarczanie wiadomości działało." -#: src/Core/Installer.php:301 +#: src/Core/Installer.php:287 msgid "PHP register_argc_argv" msgstr "PHP register_argc_argv" -#: src/Core/Installer.php:333 +#: src/Core/Installer.php:319 msgid "" "Error: the \"openssl_pkey_new\" function on this system is not able to " "generate encryption keys" msgstr "Błąd: funkcja \"openssl_pkey_new\" w tym systemie nie jest w stanie wygenerować kluczy szyfrujących" -#: src/Core/Installer.php:334 +#: src/Core/Installer.php:320 msgid "" "If running under Windows, please see " "\"http://www.php.net/manual/en/openssl.installation.php\"." msgstr "Jeśli korzystasz z Windowsa, proszę odwiedzić \"http://www.php.net/manual/en/openssl.installation.php\"." -#: src/Core/Installer.php:337 +#: src/Core/Installer.php:323 msgid "Generate encryption keys" msgstr "Generuj klucz kodowania" -#: src/Core/Installer.php:388 +#: src/Core/Installer.php:374 msgid "" "Error: Apache webserver mod-rewrite module is required but not installed." msgstr "Błąd: moduł Apache webserver mod-rewrite jest potrzebny, jednakże nie jest zainstalowany." -#: src/Core/Installer.php:392 +#: src/Core/Installer.php:378 msgid "Apache mod_rewrite module" msgstr "Moduł Apache mod_rewrite" -#: src/Core/Installer.php:398 +#: src/Core/Installer.php:384 msgid "Error: PDO or MySQLi PHP module required but not installed." msgstr "Błąd: Wymagany moduł PDO lub MySQLi PHP, ale nie zainstalowany." -#: src/Core/Installer.php:402 +#: src/Core/Installer.php:388 msgid "Error: The MySQL driver for PDO is not installed." msgstr "Błąd: Sterownik MySQL dla PDO nie jest zainstalowany." -#: src/Core/Installer.php:405 +#: src/Core/Installer.php:391 msgid "PDO or MySQLi PHP module" msgstr "Moduł PDO lub MySQLi PHP" -#: src/Core/Installer.php:411 +#: src/Core/Installer.php:397 msgid "Error: The IntlChar module is not installed." msgstr "" -#: src/Core/Installer.php:414 +#: src/Core/Installer.php:400 msgid "IntlChar PHP module" msgstr "" -#: src/Core/Installer.php:422 +#: src/Core/Installer.php:408 msgid "Error, XML PHP module required but not installed." msgstr "Błąd, wymagany moduł XML PHP, ale nie zainstalowany." -#: src/Core/Installer.php:426 +#: src/Core/Installer.php:412 msgid "XML PHP module" msgstr "Moduł XML PHP" -#: src/Core/Installer.php:429 +#: src/Core/Installer.php:415 msgid "libCurl PHP module" msgstr "Moduł PHP libCurl" -#: src/Core/Installer.php:430 +#: src/Core/Installer.php:416 msgid "Error: libCURL PHP module required but not installed." msgstr "Błąd: libCURL PHP wymagany moduł, lecz nie zainstalowany." -#: src/Core/Installer.php:436 +#: src/Core/Installer.php:422 msgid "GD graphics PHP module" msgstr "Moduł PHP-GD" -#: src/Core/Installer.php:437 +#: src/Core/Installer.php:423 msgid "" "Error: GD graphics PHP module with JPEG support required but not installed." msgstr "Błąd: moduł graficzny GD z PHP potrzebuje wsparcia technicznego JPEG, jednakże on nie jest zainstalowany." -#: src/Core/Installer.php:443 +#: src/Core/Installer.php:429 msgid "OpenSSL PHP module" msgstr "Moduł PHP OpenSSL" -#: src/Core/Installer.php:444 +#: src/Core/Installer.php:430 msgid "Error: openssl PHP module required but not installed." msgstr "Błąd: openssl PHP wymagany moduł, lecz nie zainstalowany." -#: src/Core/Installer.php:450 +#: src/Core/Installer.php:436 msgid "mb_string PHP module" msgstr "Moduł PHP mb_string" -#: src/Core/Installer.php:451 +#: src/Core/Installer.php:437 msgid "Error: mb_string PHP module required but not installed." msgstr "Błąd: moduł PHP mb_string jest wymagany ,ale nie jest zainstalowany." -#: src/Core/Installer.php:457 +#: src/Core/Installer.php:443 msgid "iconv PHP module" msgstr "Moduł PHP iconv" -#: src/Core/Installer.php:458 +#: src/Core/Installer.php:444 msgid "Error: iconv PHP module required but not installed." msgstr "Błąd: wymagany moduł PHP iconv, ale nie zainstalowany." -#: src/Core/Installer.php:464 +#: src/Core/Installer.php:450 msgid "POSIX PHP module" msgstr "Moduł POSIX PHP" -#: src/Core/Installer.php:465 +#: src/Core/Installer.php:451 msgid "Error: POSIX PHP module required but not installed." msgstr "Błąd: wymagany moduł POSIX PHP, ale nie zainstalowany." -#: src/Core/Installer.php:471 +#: src/Core/Installer.php:457 msgid "Program execution functions" msgstr "Funkcje wykonywania programu" -#: src/Core/Installer.php:472 +#: src/Core/Installer.php:458 msgid "" "Error: Program execution functions (proc_open) required but not enabled." msgstr "Błąd: Funkcje wykonywania programu (proc_open) są wymagane, ale nie są włączone." -#: src/Core/Installer.php:478 +#: src/Core/Installer.php:464 msgid "JSON PHP module" msgstr "Moduł PHP JSON" -#: src/Core/Installer.php:479 +#: src/Core/Installer.php:465 msgid "Error: JSON PHP module required but not installed." msgstr "Błąd: wymagany jest moduł JSON PHP, ale nie jest zainstalowany." -#: src/Core/Installer.php:485 +#: src/Core/Installer.php:471 msgid "File Information PHP module" msgstr "Informacje o pliku Moduł PHP" -#: src/Core/Installer.php:486 +#: src/Core/Installer.php:472 msgid "Error: File Information PHP module required but not installed." msgstr "Błąd: wymagane informacje o pliku Moduł PHP, ale nie jest zainstalowany." -#: src/Core/Installer.php:492 +#: src/Core/Installer.php:478 msgid "GNU Multiple Precision PHP module" msgstr "" -#: src/Core/Installer.php:493 +#: src/Core/Installer.php:479 msgid "Error: GNU Multiple Precision PHP module required but not installed." msgstr "" -#: src/Core/Installer.php:499 +#: src/Core/Installer.php:485 msgid "IDN Functions PHP module" msgstr "" -#: src/Core/Installer.php:500 +#: src/Core/Installer.php:486 msgid "Error: IDN Functions PHP module required but not installed." msgstr "" -#: src/Core/Installer.php:523 +#: src/Core/Installer.php:509 msgid "" "The web installer needs to be able to create a file called " "\"local.config.php\" in the \"config\" folder of your web server and it is " "unable to do so." msgstr "Instalator internetowy musi mieć możliwość utworzenia pliku o nazwie \"local.config.php\" w katalogu \"config\" serwera WWW i nie może tego zrobić." -#: src/Core/Installer.php:524 +#: src/Core/Installer.php:510 msgid "" "This is most often a permission setting, as the web server may not be able " "to write files in your folder - even if you can." msgstr "Jest to najczęściej ustawienie uprawnień, ponieważ serwer sieciowy może nie być w stanie zapisywać plików w katalogu - nawet jeśli Ty możesz." -#: src/Core/Installer.php:525 +#: src/Core/Installer.php:511 msgid "" "At the end of this procedure, we will give you a text to save in a file " "named local.config.php in your Friendica \"config\" folder." msgstr "Pod koniec tej procedury otrzymasz tekst do zapisania w pliku o nazwie local.config.php w katalogu \"config\" Friendica." -#: src/Core/Installer.php:526 +#: src/Core/Installer.php:512 msgid "" "You can alternatively skip this procedure and perform a manual installation." " Please see the file \"doc/INSTALL.md\" for instructions." msgstr "Alternatywnie można pominąć tę procedurę i przeprowadzić instalację ręczną. Proszę zobaczyć plik \"doc/INSTALL.md\" z instrukcjami." -#: src/Core/Installer.php:529 +#: src/Core/Installer.php:515 msgid "config/local.config.php is writable" msgstr "config/local.config.php jest zapisywalny" -#: src/Core/Installer.php:549 +#: src/Core/Installer.php:535 msgid "" "Friendica uses the Smarty3 template engine to render its web views. Smarty3 " "compiles templates to PHP to speed up rendering." msgstr "Friendica używa silnika szablonów Smarty3 do renderowania swoich widoków. Smarty3 kompiluje szablony do PHP, aby przyspieszyć renderowanie." -#: src/Core/Installer.php:550 +#: src/Core/Installer.php:536 msgid "" "In order to store these compiled templates, the web server needs to have " "write access to the directory view/smarty3/ under the Friendica top level " "folder." msgstr "Aby przechowywać te skompilowane szablony, serwer WWW musi mieć dostęp do zapisu do katalogu view/smarty3/ w katalogu najwyższego poziomu Friendica." -#: src/Core/Installer.php:551 +#: src/Core/Installer.php:537 msgid "" "Please ensure that the user that your web server runs as (e.g. www-data) has" " write access to this folder." msgstr "Upewnij się, że użytkownik, na którym działa serwer WWW (np. www-data), ma prawo do zapisu do tego katalogu." -#: src/Core/Installer.php:552 +#: src/Core/Installer.php:538 msgid "" "Note: as a security measure, you should give the web server write access to " "view/smarty3/ only--not the template files (.tpl) that it contains." msgstr "Uwaga: jako środek bezpieczeństwa, powinieneś dać serwerowi dostęp do zapisu view/smarty3/ jedynie - nie do plików szablonów (.tpl), które zawiera." -#: src/Core/Installer.php:555 +#: src/Core/Installer.php:541 msgid "view/smarty3 is writable" msgstr "view/smarty3 jest zapisywalny" -#: src/Core/Installer.php:583 +#: src/Core/Installer.php:569 msgid "" "Url rewrite in .htaccess seems not working. Make sure you copied .htaccess-" "dist to .htaccess." msgstr "Adres URL zapisany w .htaccess wydaje się nie działać. Upewnij się, że skopiowano .htaccess-dist do .htaccess." -#: src/Core/Installer.php:584 +#: src/Core/Installer.php:570 msgid "" "In some circumstances (like running inside containers), you can skip this " "error." msgstr "W niektórych okolicznościach (np. uruchamianie wewnątrz kontenerów) możesz pominąć ten błąd." -#: src/Core/Installer.php:586 +#: src/Core/Installer.php:572 msgid "Error message from Curl when fetching" msgstr "Komunikat o błędzie z Curl podczas pobierania" -#: src/Core/Installer.php:592 +#: src/Core/Installer.php:578 msgid "Url rewrite is working" msgstr "Działający adres URL" -#: src/Core/Installer.php:621 +#: src/Core/Installer.php:607 msgid "" "The detection of TLS to secure the communication between the browser and the" " new Friendica server failed." msgstr "Wykrycie TLS w celu zabezpieczenia komunikacji między przeglądarką a nowym serwerem Friendica nie powiodło się." -#: src/Core/Installer.php:622 +#: src/Core/Installer.php:608 msgid "" "It is highly encouraged to use Friendica only over a secure connection as " "sensitive information like passwords will be transmitted." msgstr "Zachęcamy do korzystania z Friendica tylko przez bezpieczne połączenie, ponieważ przesyłane będą poufne informacje, takie jak hasła." -#: src/Core/Installer.php:623 +#: src/Core/Installer.php:609 msgid "Please ensure that the connection to the server is secure." msgstr "Upewnij się, że połączenie z serwerem jest bezpieczne." -#: src/Core/Installer.php:624 +#: src/Core/Installer.php:610 msgid "No TLS detected" msgstr "Nie wykryto TLS" -#: src/Core/Installer.php:626 +#: src/Core/Installer.php:612 msgid "TLS detected" msgstr "Wykryto TLS" -#: src/Core/Installer.php:643 +#: src/Core/Installer.php:629 msgid "ImageMagick PHP extension is not installed" msgstr "Rozszerzenie PHP ImageMagick nie jest zainstalowane" -#: src/Core/Installer.php:645 +#: src/Core/Installer.php:631 msgid "ImageMagick PHP extension is installed" msgstr "Rozszerzenie PHP ImageMagick jest zainstalowane" -#: src/Core/Installer.php:666 +#: src/Core/Installer.php:652 msgid "Database already in use." msgstr "Baza danych jest już w użyciu." -#: src/Core/Installer.php:671 +#: src/Core/Installer.php:657 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:2348 +#: src/Core/L10n.php:430 src/Model/Item.php:2315 msgid "Undetermined" msgstr "" -#: src/Core/L10n.php:451 +#: src/Core/L10n.php:437 #, php-format msgid "%s (%s)" msgstr "" -#: src/Core/L10n.php:499 src/Model/Event.php:430 -#: src/Module/Settings/Display.php:284 +#: src/Core/L10n.php:485 src/Model/Event.php:416 +#: src/Module/Settings/Display.php:270 msgid "Monday" msgstr "Poniedziałek" -#: src/Core/L10n.php:499 src/Model/Event.php:431 -#: src/Module/Settings/Display.php:285 +#: src/Core/L10n.php:485 src/Model/Event.php:417 +#: src/Module/Settings/Display.php:271 msgid "Tuesday" msgstr "Wtorek" -#: src/Core/L10n.php:499 src/Model/Event.php:432 -#: src/Module/Settings/Display.php:286 +#: src/Core/L10n.php:485 src/Model/Event.php:418 +#: src/Module/Settings/Display.php:272 msgid "Wednesday" msgstr "Środa" -#: src/Core/L10n.php:499 src/Model/Event.php:433 -#: src/Module/Settings/Display.php:287 +#: src/Core/L10n.php:485 src/Model/Event.php:419 +#: src/Module/Settings/Display.php:273 msgid "Thursday" msgstr "Czwartek" -#: src/Core/L10n.php:499 src/Model/Event.php:434 -#: src/Module/Settings/Display.php:288 +#: src/Core/L10n.php:485 src/Model/Event.php:420 +#: src/Module/Settings/Display.php:274 msgid "Friday" msgstr "Piątek" -#: src/Core/L10n.php:499 src/Model/Event.php:435 -#: src/Module/Settings/Display.php:289 +#: src/Core/L10n.php:485 src/Model/Event.php:421 +#: src/Module/Settings/Display.php:275 msgid "Saturday" msgstr "Sobota" -#: src/Core/L10n.php:499 src/Model/Event.php:429 -#: src/Module/Settings/Display.php:283 +#: src/Core/L10n.php:485 src/Model/Event.php:415 +#: src/Module/Settings/Display.php:269 msgid "Sunday" msgstr "Niedziela" -#: src/Core/L10n.php:503 src/Model/Event.php:450 +#: src/Core/L10n.php:489 src/Model/Event.php:436 msgid "January" msgstr "Styczeń" -#: src/Core/L10n.php:503 src/Model/Event.php:451 +#: src/Core/L10n.php:489 src/Model/Event.php:437 msgid "February" msgstr "Luty" -#: src/Core/L10n.php:503 src/Model/Event.php:452 +#: src/Core/L10n.php:489 src/Model/Event.php:438 msgid "March" msgstr "Marzec" -#: src/Core/L10n.php:503 src/Model/Event.php:453 +#: src/Core/L10n.php:489 src/Model/Event.php:439 msgid "April" msgstr "Kwiecień" -#: src/Core/L10n.php:503 src/Core/L10n.php:522 src/Model/Event.php:441 +#: src/Core/L10n.php:489 src/Core/L10n.php:508 src/Model/Event.php:427 msgid "May" msgstr "Maj" -#: src/Core/L10n.php:503 src/Model/Event.php:454 +#: src/Core/L10n.php:489 src/Model/Event.php:440 msgid "June" msgstr "Czerwiec" -#: src/Core/L10n.php:503 src/Model/Event.php:455 +#: src/Core/L10n.php:489 src/Model/Event.php:441 msgid "July" msgstr "Lipiec" -#: src/Core/L10n.php:503 src/Model/Event.php:456 +#: src/Core/L10n.php:489 src/Model/Event.php:442 msgid "August" msgstr "Sierpień" -#: src/Core/L10n.php:503 src/Model/Event.php:457 +#: src/Core/L10n.php:489 src/Model/Event.php:443 msgid "September" msgstr "Wrzesień" -#: src/Core/L10n.php:503 src/Model/Event.php:458 +#: src/Core/L10n.php:489 src/Model/Event.php:444 msgid "October" msgstr "Październik" -#: src/Core/L10n.php:503 src/Model/Event.php:459 +#: src/Core/L10n.php:489 src/Model/Event.php:445 msgid "November" msgstr "Listopad" -#: src/Core/L10n.php:503 src/Model/Event.php:460 +#: src/Core/L10n.php:489 src/Model/Event.php:446 msgid "December" msgstr "Grudzień" -#: src/Core/L10n.php:518 src/Model/Event.php:422 +#: src/Core/L10n.php:504 src/Model/Event.php:408 msgid "Mon" msgstr "Pon" -#: src/Core/L10n.php:518 src/Model/Event.php:423 +#: src/Core/L10n.php:504 src/Model/Event.php:409 msgid "Tue" msgstr "Wt" -#: src/Core/L10n.php:518 src/Model/Event.php:424 +#: src/Core/L10n.php:504 src/Model/Event.php:410 msgid "Wed" msgstr "Śr" -#: src/Core/L10n.php:518 src/Model/Event.php:425 +#: src/Core/L10n.php:504 src/Model/Event.php:411 msgid "Thu" msgstr "Czw" -#: src/Core/L10n.php:518 src/Model/Event.php:426 +#: src/Core/L10n.php:504 src/Model/Event.php:412 msgid "Fri" msgstr "Pt" -#: src/Core/L10n.php:518 src/Model/Event.php:427 +#: src/Core/L10n.php:504 src/Model/Event.php:413 msgid "Sat" msgstr "Sob" -#: src/Core/L10n.php:518 src/Model/Event.php:421 +#: src/Core/L10n.php:504 src/Model/Event.php:407 msgid "Sun" msgstr "Niedz" -#: src/Core/L10n.php:522 src/Model/Event.php:437 +#: src/Core/L10n.php:508 src/Model/Event.php:423 msgid "Jan" msgstr "Sty" -#: src/Core/L10n.php:522 src/Model/Event.php:438 +#: src/Core/L10n.php:508 src/Model/Event.php:424 msgid "Feb" msgstr "Lut" -#: src/Core/L10n.php:522 src/Model/Event.php:439 +#: src/Core/L10n.php:508 src/Model/Event.php:425 msgid "Mar" msgstr "Mar" -#: src/Core/L10n.php:522 src/Model/Event.php:440 +#: src/Core/L10n.php:508 src/Model/Event.php:426 msgid "Apr" msgstr "Kwi" -#: src/Core/L10n.php:522 src/Model/Event.php:442 +#: src/Core/L10n.php:508 src/Model/Event.php:428 msgid "Jun" msgstr "Cze" -#: src/Core/L10n.php:522 src/Model/Event.php:443 +#: src/Core/L10n.php:508 src/Model/Event.php:429 msgid "Jul" msgstr "Lip" -#: src/Core/L10n.php:522 src/Model/Event.php:444 +#: src/Core/L10n.php:508 src/Model/Event.php:430 msgid "Aug" msgstr "Sie" -#: src/Core/L10n.php:522 +#: src/Core/L10n.php:508 msgid "Sep" msgstr "Wrz" -#: src/Core/L10n.php:522 src/Model/Event.php:446 +#: src/Core/L10n.php:508 src/Model/Event.php:432 msgid "Oct" msgstr "Paź" -#: src/Core/L10n.php:522 src/Model/Event.php:447 +#: src/Core/L10n.php:508 src/Model/Event.php:433 msgid "Nov" msgstr "Lis" -#: src/Core/L10n.php:522 src/Model/Event.php:448 +#: src/Core/L10n.php:508 src/Model/Event.php:434 msgid "Dec" msgstr "Gru" -#: src/Core/Logger/Util/LoggerSettingsCheck.php:60 +#: src/Core/Logger/Util/LoggerSettingsCheck.php:46 #, php-format msgid "The logfile '%s' is not usable. No logging possible (error: '%s')" msgstr "Plik dziennika „%s” nie nadaje się do użytku. Brak możliwości logowania (błąd: '%s')" -#: src/Core/Logger/Util/LoggerSettingsCheck.php:85 +#: src/Core/Logger/Util/LoggerSettingsCheck.php:71 #, php-format msgid "" "The debug logfile '%s' is not usable. No logging possible (error: '%s')" msgstr "Plik dziennika debugowania „%s” nie nadaje się do użytku. Brak możliwości logowania (błąd: '%s')" -#: src/Core/Renderer.php:92 src/Core/Renderer.php:121 -#: src/Core/Renderer.php:150 src/Core/Renderer.php:184 -#: src/Render/FriendicaSmartyEngine.php:60 +#: src/Core/Renderer.php:78 src/Core/Renderer.php:107 +#: src/Core/Renderer.php:136 src/Core/Renderer.php:170 +#: src/Render/FriendicaSmartyEngine.php:46 msgid "" "Friendica can't display this page at the moment, please contact the " "administrator." msgstr "Friendica nie może obecnie wyświetlić tej strony, skontaktuj się z administratorem." -#: src/Core/Renderer.php:146 +#: src/Core/Renderer.php:132 msgid "template engine cannot be registered without a name." msgstr "silnik szablonów nie może być zarejestrowany bez nazwy." -#: src/Core/Renderer.php:180 +#: src/Core/Renderer.php:166 msgid "template engine is not registered!" msgstr "silnik szablonów nie jest zarejestrowany!" -#: src/Core/Storage/Type/FilesystemConfig.php:78 +#: src/Core/Storage/Type/FilesystemConfig.php:64 msgid "Storage base path" msgstr "Ścieżka bazy pamięci masowej" -#: src/Core/Storage/Type/FilesystemConfig.php:80 +#: src/Core/Storage/Type/FilesystemConfig.php:66 msgid "" "Folder where uploaded files are saved. For maximum security, This should be " "a path outside web server folder tree" msgstr "Katalog, w którym zapisywane są przesłane pliki. Dla maksymalnego bezpieczeństwa, powinna to być ścieżka poza drzewem katalogów serwera WWW." -#: src/Core/Storage/Type/FilesystemConfig.php:93 +#: src/Core/Storage/Type/FilesystemConfig.php:79 msgid "Enter a valid existing folder" msgstr "Wprowadź poprawny istniejący katalog" -#: src/Core/Update.php:80 +#: src/Core/Update.php:66 #, php-format msgid "" "Updates from version %s are not supported. Please update at least to version" " 2021.01 and wait until the postupdate finished version 1383." msgstr "Aktualizacje z wersji %s nie są obsługiwane. Zaktualizuj co najmniej do wersji 2021.01 i poczekaj, aż po aktualizacji zakończy się wersja 1383." -#: src/Core/Update.php:91 +#: src/Core/Update.php:77 #, php-format msgid "" "Updates from postupdate version %s are not supported. Please update at least" " to version 2021.01 and wait until the postupdate finished version 1383." msgstr "Aktualizacje z wersji postupdate %s nie są obsługiwane. Zaktualizuj co najmniej do wersji 2021.01 i poczekaj, aż po aktualizacji zakończy się wersja 1383." -#: src/Core/Update.php:183 +#: src/Core/Update.php:169 #, php-format msgid "%s: executing pre update %d" msgstr "%s: wykonywanie wstępnej aktualizacji %d" -#: src/Core/Update.php:225 +#: src/Core/Update.php:211 #, php-format msgid "%s: executing post update %d" msgstr "%s: wykonywanie czynności poaktualizacyjnych %d" -#: src/Core/Update.php:299 +#: src/Core/Update.php:285 #, php-format msgid "Update %s failed. See error logs." msgstr "Aktualizacja %s nie powiodła się. Zobacz dziennik błędów." -#: src/Core/Update.php:339 +#: src/Core/Update.php:325 #, php-format msgid "" "\n" @@ -3256,49 +3255,49 @@ msgid "" "\t\t\t\tfriendica developer if you can not help me on your own. My database might be invalid." msgstr "\n\t\t\t\tDeweloperzy friendica wydali niedawno aktualizację %s,\n\t\t\t\tale podczas próby instalacji, coś poszło nie tak.\n\t\t\t\tZostanie to naprawione wkrótce i nie mogę tego zrobić sam. Proszę skontaktować się z \n\t\t\t\tprogramistami friendica, jeśli nie możesz mi pomóc na własną rękę. Moja baza danych może być nieprawidłowa." -#: src/Core/Update.php:345 +#: src/Core/Update.php:331 #, php-format msgid "The error message is\\n[pre]%s[/pre]" msgstr "Komunikat o błędzie:\\n[pre]%s[/pre]" -#: src/Core/Update.php:349 src/Core/Update.php:377 +#: src/Core/Update.php:335 src/Core/Update.php:363 msgid "[Friendica Notify] Database update" msgstr "[Powiadomienie Friendica] Aktualizacja bazy danych" -#: src/Core/Update.php:371 +#: src/Core/Update.php:357 #, php-format msgid "" "\n" "\t\t\t\tThe friendica database was successfully updated from %s to %s." msgstr "" -#: src/Database/DBStructure.php:57 +#: src/Database/DBStructure.php:43 #, php-format msgid "The database version had been set to %s." msgstr "Wersja bazy danych została ustawiona na %s." -#: src/Database/DBStructure.php:82 +#: src/Database/DBStructure.php:68 #, php-format msgid "" "The post update is at version %d, it has to be at %d to safely drop the " "tables." msgstr "Aktualizacja po aktualizacji jest w wersji %d, musi nastąpić %d, aby bezpiecznie usunąć tabele." -#: src/Database/DBStructure.php:95 +#: src/Database/DBStructure.php:81 msgid "No unused tables found." msgstr "Nie odnaleziono nieużywanych tabel" -#: src/Database/DBStructure.php:100 +#: src/Database/DBStructure.php:86 msgid "" "These tables are not used for friendica and will be deleted when you execute" " \"dbstructure drop -e\":" msgstr "Te tabele nie są używane we friendice i zostaną usunięte po wykonaniu \"dbstructure drop -e\":" -#: src/Database/DBStructure.php:137 +#: src/Database/DBStructure.php:123 msgid "There are no tables on MyISAM or InnoDB with the Antelope file format." msgstr "Brak tabel w MyISAM lub InnoDB z formatem pliku Antelope." -#: src/Database/DBStructure.php:161 +#: src/Database/DBStructure.php:147 #, php-format msgid "" "\n" @@ -3306,329 +3305,325 @@ msgid "" "%s\n" msgstr "\nWystąpił błąd %d podczas aktualizacji bazy danych:\n%s\n" -#: src/Database/DBStructure.php:164 +#: src/Database/DBStructure.php:150 msgid "Errors encountered performing database changes: " msgstr "Błędy napotkane podczas dokonywania zmian w bazie danych: " -#: src/Database/DBStructure.php:232 +#: src/Database/DBStructure.php:218 msgid "Another database update is currently running." msgstr "Trwa inna aktualizacja bazy danych." -#: src/Database/DBStructure.php:236 +#: src/Database/DBStructure.php:222 #, php-format msgid "%s: Database update" msgstr "%s: Aktualizacja bazy danych" -#: src/Database/DBStructure.php:493 +#: src/Database/DBStructure.php:479 #, php-format msgid "%s: updating %s table." msgstr "%s: aktualizowanie %s tabeli." -#: src/Factory/Api/Mastodon/Error.php:42 +#: src/Factory/Api/Mastodon/Error.php:28 msgid "Record not found" msgstr "Rekord nie został odnaleziony" -#: src/Factory/Api/Mastodon/Error.php:49 +#: src/Factory/Api/Mastodon/Error.php:35 msgid "Unprocessable Entity" msgstr "Podmiot nieprzetwarzalny" -#: src/Factory/Api/Mastodon/Error.php:56 +#: src/Factory/Api/Mastodon/Error.php:42 msgid "Unauthorized" msgstr "Nieautoryzowane" -#: src/Factory/Api/Mastodon/Error.php:62 +#: src/Factory/Api/Mastodon/Error.php:48 msgid "" "Token is not authorized with a valid user or is missing a required scope" msgstr "Token nie jest autoryzowany z prawidłowym użytkownikiem lub nie ma wymaganego zakresu" -#: src/Factory/Api/Mastodon/Error.php:69 +#: src/Factory/Api/Mastodon/Error.php:55 msgid "Internal Server Error" msgstr "Wewnętrzny błąd serwera" -#: src/LegacyModule.php:63 +#: src/LegacyModule.php:49 #, php-format msgid "Legacy module file not found: %s" msgstr "Nie znaleziono pliku modułu: %s" -#: src/Model/Circle.php:106 +#: src/Model/Circle.php:92 msgid "" "A deleted circle with this name was revived. Existing item permissions " "may apply to this circle and any future members. If this is" " not what you intended, please create another circle with a different name." msgstr "" -#: src/Model/Circle.php:544 +#: src/Model/Circle.php:530 msgid "Everybody" msgstr "Wszyscy" -#: src/Model/Circle.php:563 +#: src/Model/Circle.php:549 msgid "edit" msgstr "edytuj" -#: src/Model/Circle.php:600 +#: src/Model/Circle.php:586 msgid "add" msgstr "dodaj" -#: src/Model/Circle.php:605 +#: src/Model/Circle.php:591 msgid "Edit circle" msgstr "" -#: src/Model/Circle.php:606 src/Module/Circle.php:195 +#: src/Model/Circle.php:592 src/Module/Circle.php:181 msgid "Contacts not in any circle" msgstr "" -#: src/Model/Circle.php:608 +#: src/Model/Circle.php:594 msgid "Create a new circle" msgstr "" -#: src/Model/Circle.php:609 src/Module/Circle.php:180 -#: src/Module/Circle.php:203 src/Module/Circle.php:278 +#: src/Model/Circle.php:595 src/Module/Circle.php:166 +#: src/Module/Circle.php:189 src/Module/Circle.php:264 msgid "Circle Name: " msgstr "" -#: src/Model/Circle.php:610 +#: src/Model/Circle.php:596 msgid "Edit circles" msgstr "" -#: src/Model/Contact.php:1270 src/Module/Moderation/Users/Pending.php:102 -#: src/Module/Notifications/Introductions.php:138 -#: src/Module/Notifications/Introductions.php:210 +#: src/Model/Contact.php:1263 src/Module/Moderation/Users/Pending.php:88 +#: src/Module/Notifications/Introductions.php:124 +#: src/Module/Notifications/Introductions.php:196 msgid "Approve" msgstr "Zatwierdź" -#: src/Model/Contact.php:1750 +#: src/Model/Contact.php:1743 msgid "Organisation" msgstr "Organizacja" -#: src/Model/Contact.php:1758 +#: src/Model/Contact.php:1751 msgid "Group" msgstr "" -#: src/Model/Contact.php:1762 src/Module/Moderation/BaseUsers.php:131 +#: src/Model/Contact.php:1755 src/Module/Moderation/BaseUsers.php:120 msgid "Relay" msgstr "Przekaźnik" -#: src/Model/Contact.php:3084 +#: src/Model/Contact.php:3070 msgid "Disallowed profile URL." msgstr "Nie dozwolony adres URL profilu." -#: src/Model/Contact.php:3089 src/Module/Friendica.php:100 +#: src/Model/Contact.php:3075 src/Module/Friendica.php:86 msgid "Blocked domain" msgstr "Zablokowana domena" -#: src/Model/Contact.php:3094 +#: src/Model/Contact.php:3080 msgid "Connect URL missing." msgstr "Brak adresu URL połączenia." -#: src/Model/Contact.php:3103 +#: src/Model/Contact.php:3089 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:3121 +#: src/Model/Contact.php:3107 #, php-format msgid "Expected network %s does not match actual network %s" msgstr "" -#: src/Model/Contact.php:3138 +#: src/Model/Contact.php:3124 msgid "This seems to be a relay account. They can't be followed by users." msgstr "" -#: src/Model/Contact.php:3145 +#: src/Model/Contact.php:3131 msgid "The profile address specified does not provide adequate information." msgstr "Dany adres profilu nie dostarcza odpowiednich informacji." -#: src/Model/Contact.php:3147 +#: src/Model/Contact.php:3133 msgid "No compatible communication protocols or feeds were discovered." msgstr "Nie znaleziono żadnych kompatybilnych protokołów komunikacyjnych ani źródeł." -#: src/Model/Contact.php:3150 +#: src/Model/Contact.php:3136 msgid "An author or name was not found." msgstr "Autor lub nazwa nie zostało znalezione." -#: src/Model/Contact.php:3153 +#: src/Model/Contact.php:3139 msgid "No browser URL could be matched to this address." msgstr "Przeglądarka WWW nie może odnaleźć podanego adresu" -#: src/Model/Contact.php:3156 +#: src/Model/Contact.php:3142 msgid "" "Unable to match @-style Identity Address with a known protocol or email " "contact." msgstr "Nie można dopasować @-stylu Adres identyfikacyjny ze znanym protokołem lub kontaktem e-mail." -#: src/Model/Contact.php:3157 +#: src/Model/Contact.php:3143 msgid "Use mailto: in front of address to force email check." msgstr "Użyj mailto: przed adresem, aby wymusić sprawdzanie poczty e-mail." -#: src/Model/Contact.php:3163 -msgid "" -"The profile address specified belongs to a network which has been disabled " -"on this site." -msgstr "Określony adres profilu należy do sieci, która została wyłączona na tej stronie." - -#: src/Model/Contact.php:3168 +#: src/Model/Contact.php:3149 msgid "" "Limited profile. This person will be unable to receive direct/personal " "notifications from you." msgstr "Profil ograniczony. Ta osoba będzie niezdolna do odbierania osobistych powiadomień od ciebie." -#: src/Model/Contact.php:3234 +#: src/Model/Contact.php:3208 msgid "Unable to retrieve contact information." msgstr "Nie można otrzymać informacji kontaktowych" -#: src/Model/Event.php:54 +#: src/Model/Event.php:40 msgid "l F d, Y \\@ g:i A \\G\\M\\TP (e)" msgstr "" -#: src/Model/Event.php:75 src/Model/Event.php:92 src/Model/Event.php:469 -#: src/Model/Event.php:942 +#: src/Model/Event.php:61 src/Model/Event.php:78 src/Model/Event.php:455 +#: src/Model/Event.php:928 msgid "Starts:" msgstr "Rozpoczęcie:" -#: src/Model/Event.php:78 src/Model/Event.php:98 src/Model/Event.php:470 -#: src/Model/Event.php:946 +#: src/Model/Event.php:64 src/Model/Event.php:84 src/Model/Event.php:456 +#: src/Model/Event.php:932 msgid "Finishes:" msgstr "Zakończenie:" -#: src/Model/Event.php:419 +#: src/Model/Event.php:405 msgid "all-day" msgstr "cały dzień" -#: src/Model/Event.php:445 +#: src/Model/Event.php:431 msgid "Sept" msgstr "Wrz" -#: src/Model/Event.php:462 src/Module/Calendar/Show.php:128 -#: src/Util/Temporal.php:343 +#: src/Model/Event.php:448 src/Module/Calendar/Show.php:114 +#: src/Util/Temporal.php:329 msgid "today" msgstr "dzisiaj" -#: src/Model/Event.php:463 src/Module/Calendar/Show.php:129 -#: src/Module/Settings/Display.php:294 src/Util/Temporal.php:353 +#: src/Model/Event.php:449 src/Module/Calendar/Show.php:115 +#: src/Module/Settings/Display.php:280 src/Util/Temporal.php:339 msgid "month" msgstr "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/Model/Event.php:450 src/Module/Calendar/Show.php:116 +#: src/Module/Settings/Display.php:281 src/Util/Temporal.php:340 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/Model/Event.php:451 src/Module/Calendar/Show.php:117 +#: src/Module/Settings/Display.php:282 src/Util/Temporal.php:341 msgid "day" msgstr "dzień" -#: src/Model/Event.php:467 +#: src/Model/Event.php:453 msgid "No events to display" msgstr "Brak wydarzeń do wyświetlenia" -#: src/Model/Event.php:516 src/Module/DFRN/Poll.php:47 src/Module/Feed.php:70 -#: src/Module/Update/Profile.php:56 +#: src/Model/Event.php:502 src/Module/Feed.php:56 +#: src/Module/Update/Profile.php:42 msgid "Access to this profile has been restricted." msgstr "Dostęp do tego profilu został ograniczony." -#: src/Model/Event.php:558 src/Module/Calendar/Event/Show.php:67 +#: src/Model/Event.php:544 src/Module/Calendar/Event/Show.php:53 msgid "Event not found." msgstr "Nie znaleziono wydarzenia." -#: src/Model/Event.php:637 +#: src/Model/Event.php:623 msgid "l, F j" msgstr "l, F j" -#: src/Model/Event.php:664 +#: src/Model/Event.php:650 msgid "Edit event" msgstr "Edytuj wydarzenie" -#: src/Model/Event.php:665 +#: src/Model/Event.php:651 msgid "Duplicate event" msgstr "Zduplikowane zdarzenie" -#: src/Model/Event.php:666 +#: src/Model/Event.php:652 msgid "Delete event" msgstr "Usuń wydarzenie" -#: src/Model/Event.php:896 src/Module/Debug/Localtime.php:38 +#: src/Model/Event.php:882 src/Module/Debug/Localtime.php:24 msgid "l F d, Y \\@ g:i A" msgstr "l F d, Y \\@ g:i A" -#: src/Model/Event.php:897 +#: src/Model/Event.php:883 msgid "D g:i A" msgstr "D g:i A" -#: src/Model/Event.php:898 +#: src/Model/Event.php:884 msgid "g:i A" msgstr "g:i A" -#: src/Model/Event.php:961 src/Model/Event.php:963 +#: src/Model/Event.php:947 src/Model/Event.php:949 msgid "Show map" msgstr "Pokaż mapę" -#: src/Model/Event.php:962 +#: src/Model/Event.php:948 msgid "Hide map" msgstr "Ukryj mapę" -#: src/Model/Event.php:1055 +#: src/Model/Event.php:1041 #, php-format msgid "%s's birthday" msgstr "Urodziny %s" -#: src/Model/Event.php:1056 +#: src/Model/Event.php:1042 #, php-format msgid "Happy Birthday %s" msgstr "Wszystkiego najlepszego %s" -#: src/Model/Item.php:2355 +#: src/Model/Item.php:2322 #, php-format msgid "%s (%s - %s): %s" msgstr "" -#: src/Model/Item.php:2357 +#: src/Model/Item.php:2324 #, php-format msgid "%s (%s): %s" msgstr "" -#: src/Model/Item.php:2360 +#: src/Model/Item.php:2327 #, php-format -msgid "Detected languages in this post:\\n%s" -msgstr "Wykryte języki w tym wpisie:\\n%s" +msgid "" +"Detected languages in this post:\n" +"%s" +msgstr "" -#: src/Model/Item.php:3308 +#: src/Model/Item.php:3276 msgid "activity" msgstr "aktywność" -#: src/Model/Item.php:3310 +#: src/Model/Item.php:3278 msgid "comment" msgstr "komentarz" -#: src/Model/Item.php:3313 src/Module/Post/Tag/Add.php:123 +#: src/Model/Item.php:3281 src/Module/Post/Tag/Add.php:109 msgid "post" msgstr "wpis" -#: src/Model/Item.php:3483 +#: src/Model/Item.php:3451 #, php-format msgid "%s is blocked" msgstr "" -#: src/Model/Item.php:3485 +#: src/Model/Item.php:3453 #, php-format msgid "%s is ignored" msgstr "" -#: src/Model/Item.php:3487 +#: src/Model/Item.php:3455 #, php-format msgid "Content from %s is collapsed" msgstr "" -#: src/Model/Item.php:3491 +#: src/Model/Item.php:3459 msgid "Sensitive content" msgstr "" -#: src/Model/Item.php:3960 +#: src/Model/Item.php:3928 msgid "bytes" msgstr "bajty" -#: src/Model/Item.php:3991 +#: src/Model/Item.php:3959 #, php-format msgid "%2$s (%3$d%%, %1$d vote)" msgid_plural "%2$s (%3$d%%, %1$d votes)" @@ -3637,7 +3632,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: src/Model/Item.php:3993 +#: src/Model/Item.php:3961 #, php-format msgid "%2$s (%1$d vote)" msgid_plural "%2$s (%1$d votes)" @@ -3646,7 +3641,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: src/Model/Item.php:3998 +#: src/Model/Item.php:3966 #, php-format msgid "%d voter. Poll end: %s" msgid_plural "%d voters. Poll end: %s" @@ -3655,7 +3650,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: src/Model/Item.php:4000 +#: src/Model/Item.php:3968 #, php-format msgid "%d voter." msgid_plural "%d voters." @@ -3664,241 +3659,241 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: src/Model/Item.php:4002 +#: src/Model/Item.php:3970 #, php-format msgid "Poll end: %s" msgstr "Koniec ankiety: %s" -#: src/Model/Item.php:4043 src/Model/Item.php:4044 +#: src/Model/Item.php:4011 src/Model/Item.php:4012 msgid "View on separate page" msgstr "Zobacz na oddzielnej stronie" -#: src/Model/Mail.php:135 +#: src/Model/Mail.php:121 msgid "[no subject]" msgstr "[bez tematu]" -#: src/Model/Photo.php:1198 src/Module/Media/Photo/Upload.php:168 +#: src/Model/Photo.php:1194 src/Module/Media/Photo/Upload.php:154 msgid "Wall Photos" msgstr "Tablica zdjęć" -#: src/Model/Profile.php:357 src/Module/Profile/Profile.php:285 -#: src/Module/Profile/Profile.php:287 +#: src/Model/Profile.php:343 src/Module/Profile/Profile.php:271 +#: src/Module/Profile/Profile.php:273 msgid "Edit profile" msgstr "Edytuj profil" -#: src/Model/Profile.php:359 +#: src/Model/Profile.php:345 msgid "Change profile photo" msgstr "Zmień zdjęcie profilowe" -#: src/Model/Profile.php:372 src/Module/Directory.php:153 -#: src/Module/Profile/Profile.php:211 +#: src/Model/Profile.php:358 src/Module/Directory.php:139 +#: src/Module/Profile/Profile.php:197 msgid "Homepage:" msgstr "Strona główna:" -#: src/Model/Profile.php:373 src/Module/Contact/Profile.php:432 -#: src/Module/Notifications/Introductions.php:195 +#: src/Model/Profile.php:359 src/Module/Contact/Profile.php:418 +#: src/Module/Notifications/Introductions.php:181 msgid "About:" msgstr "O:" -#: src/Model/Profile.php:474 +#: src/Model/Profile.php:460 msgid "Atom feed" msgstr "Kanał Atom" -#: src/Model/Profile.php:481 +#: src/Model/Profile.php:467 msgid "This website has been verified to belong to the same person." msgstr "Zweryfikowano, że ta witryna należy do tej samej osoby." -#: src/Model/Profile.php:532 +#: src/Model/Profile.php:518 msgid "F d" msgstr "F d" -#: src/Model/Profile.php:596 src/Model/Profile.php:677 +#: src/Model/Profile.php:582 src/Model/Profile.php:663 msgid "[today]" msgstr "[dziś]" -#: src/Model/Profile.php:605 +#: src/Model/Profile.php:591 msgid "Birthday Reminders" msgstr "Przypomnienia o urodzinach" -#: src/Model/Profile.php:606 +#: src/Model/Profile.php:592 msgid "Birthdays this week:" msgstr "Urodziny w tym tygodniu:" -#: src/Model/Profile.php:622 +#: src/Model/Profile.php:608 msgid "g A l F d" msgstr "g A I F d" -#: src/Model/Profile.php:664 +#: src/Model/Profile.php:650 msgid "[No description]" msgstr "[Brak opisu]" -#: src/Model/Profile.php:690 +#: src/Model/Profile.php:676 msgid "Event Reminders" msgstr "Przypominacze wydarzeń" -#: src/Model/Profile.php:691 +#: src/Model/Profile.php:677 msgid "Upcoming events the next 7 days:" msgstr "Nadchodzące wydarzenia w ciągu następnych 7 dni:" -#: src/Model/Profile.php:803 +#: src/Model/Profile.php:789 msgid "Hometown:" msgstr "Miasto rodzinne:" -#: src/Model/Profile.php:804 +#: src/Model/Profile.php:790 msgid "Marital Status:" msgstr "Stan cywilny:" -#: src/Model/Profile.php:805 +#: src/Model/Profile.php:791 msgid "With:" msgstr "Z:" -#: src/Model/Profile.php:806 +#: src/Model/Profile.php:792 msgid "Since:" msgstr "Od:" -#: src/Model/Profile.php:807 +#: src/Model/Profile.php:793 msgid "Sexual Preference:" msgstr "Preferencje seksualne:" -#: src/Model/Profile.php:808 +#: src/Model/Profile.php:794 msgid "Political Views:" msgstr "Poglądy polityczne:" -#: src/Model/Profile.php:809 +#: src/Model/Profile.php:795 msgid "Religious Views:" msgstr "Poglądy religijne:" -#: src/Model/Profile.php:810 +#: src/Model/Profile.php:796 msgid "Likes:" msgstr "Lubię to:" -#: src/Model/Profile.php:811 +#: src/Model/Profile.php:797 msgid "Dislikes:" msgstr "Nie lubię tego:" -#: src/Model/Profile.php:812 +#: src/Model/Profile.php:798 msgid "Title/Description:" msgstr "Tytuł/Opis:" -#: src/Model/Profile.php:813 src/Module/Admin/Summary.php:197 -#: src/Module/Moderation/Report/Create.php:280 -#: src/Module/Moderation/Summary.php:76 +#: src/Model/Profile.php:799 src/Module/Admin/Summary.php:183 +#: src/Module/Moderation/Report/Create.php:266 +#: src/Module/Moderation/Summary.php:62 msgid "Summary" msgstr "Podsumowanie" -#: src/Model/Profile.php:814 +#: src/Model/Profile.php:800 msgid "Musical interests" msgstr "Muzyka" -#: src/Model/Profile.php:815 +#: src/Model/Profile.php:801 msgid "Books, literature" msgstr "Literatura" -#: src/Model/Profile.php:816 +#: src/Model/Profile.php:802 msgid "Television" msgstr "Telewizja" -#: src/Model/Profile.php:817 +#: src/Model/Profile.php:803 msgid "Film/dance/culture/entertainment" msgstr "Film/taniec/kultura/rozrywka" -#: src/Model/Profile.php:818 +#: src/Model/Profile.php:804 msgid "Hobbies/Interests" msgstr "Zainteresowania" -#: src/Model/Profile.php:819 +#: src/Model/Profile.php:805 msgid "Love/romance" msgstr "Miłość/romans" -#: src/Model/Profile.php:820 +#: src/Model/Profile.php:806 msgid "Work/employment" msgstr "Praca/zatrudnienie" -#: src/Model/Profile.php:821 +#: src/Model/Profile.php:807 msgid "School/education" msgstr "Szkoła/edukacja" -#: src/Model/Profile.php:822 +#: src/Model/Profile.php:808 msgid "Contact information and Social Networks" msgstr "Dane kontaktowe i Sieci społecznościowe" -#: src/Model/Profile.php:870 +#: src/Model/Profile.php:856 #, php-format msgid "Responsible account: %s" msgstr "" -#: src/Model/User.php:233 src/Model/User.php:1326 +#: src/Model/User.php:217 src/Model/User.php:1310 msgid "SERIOUS ERROR: Generation of security keys failed." msgstr "POWAŻNY BŁĄD: niepowodzenie podczas tworzenia kluczy zabezpieczeń." -#: src/Model/User.php:756 src/Model/User.php:789 +#: src/Model/User.php:740 src/Model/User.php:773 msgid "Login failed" msgstr "Logowanie nieudane" -#: src/Model/User.php:821 +#: src/Model/User.php:805 msgid "Not enough information to authenticate" msgstr "Za mało informacji do uwierzytelnienia" -#: src/Model/User.php:946 +#: src/Model/User.php:930 msgid "Password can't be empty" msgstr "Hasło nie może być puste" -#: src/Model/User.php:988 +#: src/Model/User.php:972 msgid "Empty passwords are not allowed." msgstr "Puste hasła są niedozwolone." -#: src/Model/User.php:992 +#: src/Model/User.php:976 msgid "" "The new password has been exposed in a public data dump, please choose " "another." msgstr "Nowe hasło zostało ujawnione w publicznym zrzucie danych, wybierz inne." -#: src/Model/User.php:996 +#: src/Model/User.php:980 msgid "The password length is limited to 72 characters." msgstr "Długość hasła jest ograniczona do 72 znaków." -#: src/Model/User.php:1000 +#: src/Model/User.php:984 msgid "The password can't contain white spaces nor accentuated letters" msgstr "" -#: src/Model/User.php:1209 +#: src/Model/User.php:1193 msgid "Passwords do not match. Password unchanged." msgstr "Hasła nie pasują do siebie. Hasło niezmienione." -#: src/Model/User.php:1216 +#: src/Model/User.php:1200 msgid "An invitation is required." msgstr "Wymagane zaproszenie." -#: src/Model/User.php:1220 +#: src/Model/User.php:1204 msgid "Invitation could not be verified." msgstr "Zaproszenie niezweryfikowane." -#: src/Model/User.php:1228 +#: src/Model/User.php:1212 msgid "Invalid OpenID url" msgstr "Nieprawidłowy adres url OpenID" -#: src/Model/User.php:1241 src/Security/Authentication.php:228 +#: src/Model/User.php:1225 src/Security/Authentication.php:214 msgid "" "We encountered a problem while logging in with the OpenID you provided. " "Please check the correct spelling of the ID." msgstr "Napotkaliśmy problem podczas logowania z podanym przez nas identyfikatorem OpenID. Sprawdź poprawną pisownię identyfikatora." -#: src/Model/User.php:1241 src/Security/Authentication.php:228 +#: src/Model/User.php:1225 src/Security/Authentication.php:214 msgid "The error message was:" msgstr "Komunikat o błędzie:" -#: src/Model/User.php:1247 +#: src/Model/User.php:1231 msgid "Please enter the required information." msgstr "Wprowadź wymagane informacje." -#: src/Model/User.php:1261 +#: src/Model/User.php:1245 #, php-format msgid "" "system.username_min_length (%s) and system.username_max_length (%s) are " "excluding each other, swapping values." msgstr "system.username_min_length (%s) i system.username_max_length (%s) wykluczają się nawzajem, zamieniając wartości." -#: src/Model/User.php:1268 +#: src/Model/User.php:1252 #, php-format msgid "Username should be at least %s character." msgid_plural "Username should be at least %s characters." @@ -3907,7 +3902,7 @@ msgstr[1] "Nazwa użytkownika powinna wynosić co najmniej %s znaków." msgstr[2] "Nazwa użytkownika powinna wynosić co najmniej %s znaków." msgstr[3] "Nazwa użytkownika powinna wynosić co najmniej %s znaków." -#: src/Model/User.php:1272 +#: src/Model/User.php:1256 #, php-format msgid "Username should be at most %s character." msgid_plural "Username should be at most %s characters." @@ -3916,60 +3911,60 @@ msgstr[1] "Nazwa użytkownika nie może mieć więcej niż %s znaków." msgstr[2] "Nazwa użytkownika nie może mieć więcej niż %s znaków." msgstr[3] "Nazwa użytkownika nie może mieć więcej niż %s znaków." -#: src/Model/User.php:1280 +#: src/Model/User.php:1264 msgid "That doesn't appear to be your full (First Last) name." msgstr "Wydaje mi się, że to nie jest twoje pełne imię (pierwsze imię) i nazwisko." -#: src/Model/User.php:1285 +#: src/Model/User.php:1269 msgid "Your email domain is not among those allowed on this site." msgstr "Twoja domena internetowa nie jest obsługiwana na tej stronie." -#: src/Model/User.php:1289 +#: src/Model/User.php:1273 msgid "Not a valid email address." msgstr "Niepoprawny adres e-mail." -#: src/Model/User.php:1292 +#: src/Model/User.php:1276 msgid "The nickname was blocked from registration by the nodes admin." msgstr "Pseudonim został zablokowany przed rejestracją przez administratora węzłów." -#: src/Model/User.php:1296 src/Model/User.php:1302 +#: src/Model/User.php:1280 src/Model/User.php:1286 msgid "Cannot use that email." msgstr "Nie można użyć tego e-maila." -#: src/Model/User.php:1308 +#: src/Model/User.php:1292 msgid "Your nickname can only contain a-z, 0-9 and _." msgstr "Twój pseudonim może zawierać tylko a-z, 0-9 i _." -#: src/Model/User.php:1316 src/Model/User.php:1373 +#: src/Model/User.php:1300 src/Model/User.php:1350 msgid "Nickname is already registered. Please choose another." msgstr "Ten login jest zajęty. Wybierz inny." -#: src/Model/User.php:1360 src/Model/User.php:1364 +#: src/Model/User.php:1337 src/Model/User.php:1341 msgid "An error occurred during registration. Please try again." msgstr "Wystąpił bład podczas rejestracji, Spróbuj ponownie." -#: src/Model/User.php:1387 +#: src/Model/User.php:1364 msgid "An error occurred creating your default profile. Please try again." msgstr "Wystąpił błąd podczas tworzenia profilu. Spróbuj ponownie." -#: src/Model/User.php:1394 +#: src/Model/User.php:1371 msgid "An error occurred creating your self contact. Please try again." msgstr "Wystąpił błąd podczas tworzenia własnego kontaktu. Proszę spróbuj ponownie." -#: src/Model/User.php:1399 +#: src/Model/User.php:1376 msgid "Friends" msgstr "Przyjaciele" -#: src/Model/User.php:1403 +#: src/Model/User.php:1380 msgid "" "An error occurred creating your default contact circle. Please try again." msgstr "" -#: src/Model/User.php:1445 +#: src/Model/User.php:1428 msgid "Profile Photos" msgstr "Zdjęcie profilowe" -#: src/Model/User.php:1633 +#: src/Model/User.php:1616 #, php-format msgid "" "\n" @@ -3977,7 +3972,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:1636 +#: src/Model/User.php:1619 #, php-format msgid "" "\n" @@ -4008,12 +4003,12 @@ msgid "" "\t\tThank you and welcome to %4$s." msgstr "" -#: src/Model/User.php:1668 src/Model/User.php:1774 +#: src/Model/User.php:1651 src/Model/User.php:1757 #, php-format msgid "Registration details for %s" msgstr "Szczegóły rejestracji dla %s" -#: src/Model/User.php:1688 +#: src/Model/User.php:1671 #, php-format msgid "" "\n" @@ -4028,12 +4023,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:1707 +#: src/Model/User.php:1690 #, php-format msgid "Registration at %s" msgstr "Rejestracja w %s" -#: src/Model/User.php:1731 +#: src/Model/User.php:1714 #, php-format msgid "" "\n" @@ -4042,7 +4037,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:1739 +#: src/Model/User.php:1722 #, php-format msgid "" "\n" @@ -4073,93 +4068,91 @@ msgid "" "\t\t\tThank you and welcome to %2$s." msgstr "" -#: src/Model/User.php:1801 +#: src/Model/User.php:1784 msgid "" "User with delegates can't be removed, please remove delegate users first" msgstr "" -#: src/Module/Admin/Addons/Details.php:65 +#: src/Module/Admin/Addons/Details.php:51 msgid "Addon not found." msgstr "Nie znaleziono dodatku." -#: src/Module/Admin/Addons/Details.php:76 src/Module/Admin/Addons/Index.php:55 +#: src/Module/Admin/Addons/Details.php:62 src/Module/Admin/Addons/Index.php:41 #, php-format msgid "Addon %s disabled." msgstr "Dodatek %s wyłączony." -#: src/Module/Admin/Addons/Details.php:79 src/Module/Admin/Addons/Index.php:57 +#: src/Module/Admin/Addons/Details.php:65 src/Module/Admin/Addons/Index.php:43 #, php-format msgid "Addon %s enabled." msgstr "Dodatek %s włączony." -#: src/Module/Admin/Addons/Details.php:88 -#: src/Module/Admin/Themes/Details.php:52 +#: src/Module/Admin/Addons/Details.php:74 +#: src/Module/Admin/Themes/Details.php:38 msgid "Disable" msgstr "Wyłącz" -#: src/Module/Admin/Addons/Details.php:91 -#: src/Module/Admin/Themes/Details.php:55 src/Module/Settings/Display.php:340 +#: src/Module/Admin/Addons/Details.php:77 +#: src/Module/Admin/Themes/Details.php:41 src/Module/Settings/Display.php:326 msgid "Enable" msgstr "Zezwól" -#: src/Module/Admin/Addons/Details.php:111 -#: src/Module/Admin/Addons/Index.php:73 src/Module/Admin/Federation.php:220 -#: src/Module/Admin/Logs/Settings.php:88 src/Module/Admin/Logs/View.php:85 -#: src/Module/Admin/Queue.php:73 src/Module/Admin/Site.php:457 -#: src/Module/Admin/Storage.php:138 src/Module/Admin/Summary.php:196 -#: src/Module/Admin/Themes/Details.php:96 -#: src/Module/Admin/Themes/Index.php:117 src/Module/Admin/Tos.php:77 -#: src/Module/Moderation/Users/Create.php:61 -#: src/Module/Moderation/Users/Pending.php:96 +#: src/Module/Admin/Addons/Details.php:97 src/Module/Admin/Addons/Index.php:59 +#: src/Module/Admin/Federation.php:206 src/Module/Admin/Logs/Settings.php:74 +#: src/Module/Admin/Logs/View.php:71 src/Module/Admin/Queue.php:59 +#: src/Module/Admin/Site.php:447 src/Module/Admin/Storage.php:124 +#: src/Module/Admin/Summary.php:182 src/Module/Admin/Themes/Details.php:82 +#: src/Module/Admin/Themes/Index.php:103 src/Module/Admin/Tos.php:63 +#: src/Module/Moderation/Users/Create.php:47 +#: src/Module/Moderation/Users/Pending.php:82 msgid "Administration" msgstr "Administracja" -#: src/Module/Admin/Addons/Details.php:112 -#: src/Module/Admin/Addons/Index.php:74 src/Module/BaseAdmin.php:92 -#: src/Module/BaseSettings.php:139 +#: src/Module/Admin/Addons/Details.php:98 src/Module/Admin/Addons/Index.php:60 +#: src/Module/BaseAdmin.php:78 src/Module/BaseSettings.php:125 msgid "Addons" msgstr "Dodatki" -#: src/Module/Admin/Addons/Details.php:113 -#: src/Module/Admin/Themes/Details.php:98 +#: src/Module/Admin/Addons/Details.php:99 +#: src/Module/Admin/Themes/Details.php:84 msgid "Toggle" msgstr "Włącz" -#: src/Module/Admin/Addons/Details.php:120 -#: src/Module/Admin/Themes/Details.php:106 +#: src/Module/Admin/Addons/Details.php:106 +#: src/Module/Admin/Themes/Details.php:92 msgid "Author: " msgstr "Autor: " -#: src/Module/Admin/Addons/Details.php:121 -#: src/Module/Admin/Themes/Details.php:107 +#: src/Module/Admin/Addons/Details.php:107 +#: src/Module/Admin/Themes/Details.php:93 msgid "Maintainer: " msgstr "Opiekun: " -#: src/Module/Admin/Addons/Index.php:48 +#: src/Module/Admin/Addons/Index.php:34 msgid "Addons reloaded" msgstr "Dodatki zostały ponownie wczytane" -#: src/Module/Admin/Addons/Index.php:59 +#: src/Module/Admin/Addons/Index.php:45 #, php-format msgid "Addon %s failed to install." msgstr "Instalacja dodatku %s nie powiodła się." -#: src/Module/Admin/Addons/Index.php:75 src/Module/Admin/Features.php:83 -#: src/Module/Admin/Logs/Settings.php:90 src/Module/Admin/Site.php:460 -#: src/Module/Admin/Themes/Index.php:119 src/Module/Admin/Tos.php:86 -#: src/Module/Settings/Account.php:563 src/Module/Settings/Addons.php:78 -#: src/Module/Settings/Connectors.php:163 -#: src/Module/Settings/Connectors.php:256 -#: src/Module/Settings/Delegation.php:193 src/Module/Settings/Display.php:309 -#: src/Module/Settings/Features.php:75 +#: src/Module/Admin/Addons/Index.php:61 src/Module/Admin/Features.php:69 +#: src/Module/Admin/Logs/Settings.php:76 src/Module/Admin/Site.php:450 +#: src/Module/Admin/Themes/Index.php:105 src/Module/Admin/Tos.php:72 +#: src/Module/Settings/Account.php:549 src/Module/Settings/Addons.php:64 +#: src/Module/Settings/Connectors.php:149 +#: src/Module/Settings/Connectors.php:235 +#: src/Module/Settings/Delegation.php:179 src/Module/Settings/Display.php:295 +#: src/Module/Settings/Features.php:61 msgid "Save Settings" msgstr "Zapisz ustawienia" -#: src/Module/Admin/Addons/Index.php:76 +#: src/Module/Admin/Addons/Index.php:62 msgid "Reload active addons" msgstr "Wczytaj ponownie aktywne dodatki" -#: src/Module/Admin/Addons/Index.php:80 +#: src/Module/Admin/Addons/Index.php:66 #, php-format msgid "" "There are currently no addons available on your node. You can find the " @@ -4167,98 +4160,98 @@ msgid "" " the open addon registry at %2$s" msgstr "W twoim węźle nie ma obecnie żadnych dodatków. Możesz znaleźć oficjalne repozytorium dodatków na %1$s i możesz znaleźć inne interesujące dodatki w otwartym rejestrze dodatków na %2$s" -#: src/Module/Admin/DBSync.php:51 +#: src/Module/Admin/DBSync.php:37 msgid "Update has been marked successful" msgstr "Aktualizacja została oznaczona jako udana" -#: src/Module/Admin/DBSync.php:59 +#: src/Module/Admin/DBSync.php:45 #, php-format msgid "Database structure update %s was successfully applied." msgstr "Pomyślnie zastosowano aktualizację %s struktury bazy danych." -#: src/Module/Admin/DBSync.php:61 +#: src/Module/Admin/DBSync.php:47 #, php-format msgid "Executing of database structure update %s failed with error: %s" msgstr "Wykonanie aktualizacji %s struktury bazy danych nie powiodło się z powodu błędu:%s" -#: src/Module/Admin/DBSync.php:76 +#: src/Module/Admin/DBSync.php:62 #, php-format msgid "Executing %s failed with error: %s" msgstr "Wykonanie %s nie powiodło się z powodu błędu:%s" -#: src/Module/Admin/DBSync.php:78 +#: src/Module/Admin/DBSync.php:64 #, php-format msgid "Update %s was successfully applied." msgstr "Aktualizacja %s została pomyślnie zastosowana." -#: src/Module/Admin/DBSync.php:81 +#: src/Module/Admin/DBSync.php:67 #, php-format msgid "Update %s did not return a status. Unknown if it succeeded." msgstr "Aktualizacja %s nie zwróciła statusu. Nieznane, jeśli się udało." -#: src/Module/Admin/DBSync.php:84 +#: src/Module/Admin/DBSync.php:70 #, php-format msgid "There was no additional update function %s that needed to be called." msgstr "Nie było dodatkowej funkcji %s aktualizacji, która musiała zostać wywołana." -#: src/Module/Admin/DBSync.php:105 +#: src/Module/Admin/DBSync.php:91 msgid "No failed updates." msgstr "Brak błędów aktualizacji." -#: src/Module/Admin/DBSync.php:106 +#: src/Module/Admin/DBSync.php:92 msgid "Check database structure" msgstr "Sprawdź strukturę bazy danych" -#: src/Module/Admin/DBSync.php:110 +#: src/Module/Admin/DBSync.php:96 msgid "Failed Updates" msgstr "Błąd aktualizacji" -#: src/Module/Admin/DBSync.php:111 +#: src/Module/Admin/DBSync.php:97 msgid "" "This does not include updates prior to 1139, which did not return a status." msgstr "Nie dotyczy to aktualizacji przed 1139, który nie zwrócił statusu." -#: src/Module/Admin/DBSync.php:112 +#: src/Module/Admin/DBSync.php:98 msgid "Mark success (if update was manually applied)" msgstr "Oznacz sukces (jeśli aktualizacja została ręcznie zastosowana)" -#: src/Module/Admin/DBSync.php:113 +#: src/Module/Admin/DBSync.php:99 msgid "Attempt to execute this update step automatically" msgstr "Spróbuj automatycznie wykonać ten krok aktualizacji" -#: src/Module/Admin/Features.php:67 -#: src/Module/Notifications/Introductions.php:150 -#: src/Module/OAuth/Acknowledge.php:55 src/Module/Register.php:138 -#: src/Module/Settings/TwoFactor/Trusted.php:129 +#: src/Module/Admin/Features.php:53 +#: src/Module/Notifications/Introductions.php:136 +#: src/Module/OAuth/Acknowledge.php:41 src/Module/Register.php:124 +#: src/Module/Settings/TwoFactor/Trusted.php:115 msgid "No" msgstr "Nie" -#: src/Module/Admin/Features.php:67 src/Module/Contact/Revoke.php:105 -#: src/Module/Notifications/Introductions.php:150 -#: src/Module/OAuth/Acknowledge.php:54 src/Module/Register.php:137 -#: src/Module/Settings/TwoFactor/Trusted.php:129 +#: src/Module/Admin/Features.php:53 src/Module/Contact/Revoke.php:91 +#: src/Module/Notifications/Introductions.php:136 +#: src/Module/OAuth/Acknowledge.php:40 src/Module/Register.php:123 +#: src/Module/Settings/TwoFactor/Trusted.php:115 msgid "Yes" msgstr "Tak" -#: src/Module/Admin/Features.php:67 +#: src/Module/Admin/Features.php:53 msgid "Locked" msgstr "" -#: src/Module/Admin/Features.php:81 +#: src/Module/Admin/Features.php:67 msgid "Manage Additional Features" msgstr "Zarządzanie dodatkowymi funkcjami" -#: src/Module/Admin/Federation.php:82 -#: src/Module/Moderation/Report/Create.php:191 -#: src/Module/Moderation/Report/Create.php:316 +#: src/Module/Admin/Federation.php:68 +#: src/Module/Moderation/Report/Create.php:177 +#: src/Module/Moderation/Report/Create.php:302 msgid "Other" msgstr "Inne" -#: src/Module/Admin/Federation.php:160 src/Module/Admin/Federation.php:408 +#: src/Module/Admin/Federation.php:146 src/Module/Admin/Federation.php:394 msgid "unknown" msgstr "nieznany" -#: src/Module/Admin/Federation.php:193 +#: src/Module/Admin/Federation.php:179 #, php-format msgid "%2$s total system" msgid_plural "%2$s total systems" @@ -4267,7 +4260,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: src/Module/Admin/Federation.php:194 +#: src/Module/Admin/Federation.php:180 #, php-format msgid "%2$s active user last month" msgid_plural "%2$s active users last month" @@ -4276,7 +4269,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: src/Module/Admin/Federation.php:195 +#: src/Module/Admin/Federation.php:181 #, php-format msgid "%2$s active user last six months" msgid_plural "%2$s active users last six months" @@ -4285,7 +4278,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: src/Module/Admin/Federation.php:196 +#: src/Module/Admin/Federation.php:182 #, php-format msgid "%2$s registered user" msgid_plural "%2$s registered users" @@ -4294,7 +4287,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: src/Module/Admin/Federation.php:197 +#: src/Module/Admin/Federation.php:183 #, php-format msgid "%2$s locally created post or comment" msgid_plural "%2$s locally created posts and comments" @@ -4303,7 +4296,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: src/Module/Admin/Federation.php:200 +#: src/Module/Admin/Federation.php:186 #, php-format msgid "%2$s post per user" msgid_plural "%2$s posts per user" @@ -4312,7 +4305,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: src/Module/Admin/Federation.php:205 +#: src/Module/Admin/Federation.php:191 #, php-format msgid "%2$s user per system" msgid_plural "%2$s users per system" @@ -4321,18 +4314,18 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: src/Module/Admin/Federation.php:215 +#: src/Module/Admin/Federation.php:201 msgid "" "This page offers you some numbers to the known part of the federated social " "network your Friendica node is part of. These numbers are not complete but " "only reflect the part of the network your node is aware of." msgstr "Ta strona zawiera kilka numerów do znanej części federacyjnej sieci społecznościowej, do której należy Twój węzeł Friendica. Liczby te nie są kompletne, ale odzwierciedlają tylko część sieci, o której wie twój węzeł." -#: src/Module/Admin/Federation.php:221 src/Module/BaseAdmin.php:87 +#: src/Module/Admin/Federation.php:207 src/Module/BaseAdmin.php:73 msgid "Federation Statistics" msgstr "Statystyki Federacji" -#: src/Module/Admin/Federation.php:224 +#: src/Module/Admin/Federation.php:210 #, php-format msgid "" "Currently this node is aware of %2$s node (%3$s active users last month, " @@ -4347,58 +4340,58 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: src/Module/Admin/Logs/Settings.php:47 +#: src/Module/Admin/Logs/Settings.php:33 #, php-format msgid "The logfile '%s' is not writable. No logging possible" msgstr "Plik dziennika '%s' nie jest zapisywalny. Brak możliwości logowania" -#: src/Module/Admin/Logs/Settings.php:80 +#: src/Module/Admin/Logs/Settings.php:66 msgid "PHP log currently enabled." msgstr "Dziennik PHP jest obecnie włączony." -#: src/Module/Admin/Logs/Settings.php:82 +#: src/Module/Admin/Logs/Settings.php:68 msgid "PHP log currently disabled." msgstr "Dziennik PHP jest obecnie wyłączony." -#: src/Module/Admin/Logs/Settings.php:89 src/Module/BaseAdmin.php:102 -#: src/Module/BaseAdmin.php:103 +#: src/Module/Admin/Logs/Settings.php:75 src/Module/BaseAdmin.php:88 +#: src/Module/BaseAdmin.php:89 msgid "Logs" msgstr "Dzienniki" -#: src/Module/Admin/Logs/Settings.php:91 +#: src/Module/Admin/Logs/Settings.php:77 msgid "Clear" msgstr "Wyczyść" -#: src/Module/Admin/Logs/Settings.php:94 +#: src/Module/Admin/Logs/Settings.php:80 msgid "Enable Debugging" msgstr "Włącz debugowanie" -#: src/Module/Admin/Logs/Settings.php:94 src/Module/Admin/Logs/Settings.php:95 -#: src/Module/Admin/Logs/Settings.php:96 src/Module/Admin/Site.php:480 -#: src/Module/Admin/Site.php:488 +#: src/Module/Admin/Logs/Settings.php:80 src/Module/Admin/Logs/Settings.php:81 +#: src/Module/Admin/Logs/Settings.php:82 src/Module/Admin/Site.php:470 +#: src/Module/Admin/Site.php:478 msgid "" "Read-only because it is set by an environment variable" msgstr "" -#: src/Module/Admin/Logs/Settings.php:95 +#: src/Module/Admin/Logs/Settings.php:81 msgid "Log file" msgstr "Plik logów" -#: src/Module/Admin/Logs/Settings.php:95 +#: src/Module/Admin/Logs/Settings.php:81 msgid "" "Must be writable by web server. Relative to your Friendica top-level " "directory." msgstr "Musi być zapisywalny przez serwer sieciowy. W stosunku do katalogu najwyższego poziomu Friendica." -#: src/Module/Admin/Logs/Settings.php:96 +#: src/Module/Admin/Logs/Settings.php:82 msgid "Log level" msgstr "Poziom logów" -#: src/Module/Admin/Logs/Settings.php:98 +#: src/Module/Admin/Logs/Settings.php:84 msgid "PHP logging" msgstr "Logowanie w PHP" -#: src/Module/Admin/Logs/Settings.php:99 +#: src/Module/Admin/Logs/Settings.php:85 msgid "" "To temporarily enable logging of PHP errors and warnings you can prepend the" " following to the index.php file of your installation. The filename set in " @@ -4407,402 +4400,407 @@ msgid "" "'display_errors' is to enable these options, set to '0' to disable them." msgstr "Aby tymczasowo włączyć rejestrowanie błędów i ostrzeżeń PHP, możesz dołączyć do pliku index.php swojej instalacji. Nazwa pliku ustawiona w linii 'error_log' odnosi się do katalogu najwyższego poziomu friendiki i musi być zapisywalna przez serwer WWW. Opcja '1' dla 'log_errors' i 'display_errors' polega na włączeniu tych opcji, ustawieniu na '0', aby je wyłączyć." -#: src/Module/Admin/Logs/View.php:72 +#: src/Module/Admin/Logs/View.php:58 #, php-format msgid "" "Error trying to open %1$s log file.
Check to see if " "file %1$s exist and is readable." msgstr "Błąd podczas próby otwarcia pliku dziennika %1$s. Sprawdź, czy plik %1$s istnieje i czy można go odczytać." -#: src/Module/Admin/Logs/View.php:81 +#: src/Module/Admin/Logs/View.php:67 #, php-format msgid "" "Couldn't open %1$s log file.
Check to see if file %1$s " "is readable." msgstr "Nie udało się otworzyć pliku dziennika %1$s. Sprawdź, czy plik %1$s jest odczytywalny." -#: src/Module/Admin/Logs/View.php:86 src/Module/BaseAdmin.php:104 +#: src/Module/Admin/Logs/View.php:72 src/Module/BaseAdmin.php:90 msgid "View Logs" msgstr "Zobacz rejestry" -#: src/Module/Admin/Logs/View.php:89 +#: src/Module/Admin/Logs/View.php:75 msgid "Search in logs" msgstr "Szukaj w dziennikach" -#: src/Module/Admin/Logs/View.php:90 -#: src/Module/Notifications/Notifications.php:146 +#: src/Module/Admin/Logs/View.php:76 +#: src/Module/Notifications/Notifications.php:132 msgid "Show all" msgstr "Pokaż wszystko" -#: src/Module/Admin/Logs/View.php:91 +#: src/Module/Admin/Logs/View.php:77 msgid "Date" msgstr "Data" -#: src/Module/Admin/Logs/View.php:92 +#: src/Module/Admin/Logs/View.php:78 msgid "Level" msgstr "Poziom" -#: src/Module/Admin/Logs/View.php:93 +#: src/Module/Admin/Logs/View.php:79 msgid "Context" msgstr "Kontekst" -#: src/Module/Admin/Logs/View.php:95 +#: src/Module/Admin/Logs/View.php:81 msgid "ALL" msgstr "WSZYSTKO" -#: src/Module/Admin/Logs/View.php:96 +#: src/Module/Admin/Logs/View.php:82 msgid "View details" msgstr "Zobacz szczegóły" -#: src/Module/Admin/Logs/View.php:97 +#: src/Module/Admin/Logs/View.php:83 msgid "Click to view details" msgstr "Kliknij, aby zobaczyć szczegóły" -#: src/Module/Admin/Logs/View.php:98 src/Module/Calendar/Event/Form.php:207 +#: src/Module/Admin/Logs/View.php:84 src/Module/Calendar/Event/Form.php:193 msgid "Event details" msgstr "Szczegóły wydarzenia" -#: src/Module/Admin/Logs/View.php:99 +#: src/Module/Admin/Logs/View.php:85 msgid "Data" msgstr "Dane" -#: src/Module/Admin/Logs/View.php:100 -#: src/Module/Debug/ActivityPubConversion.php:63 +#: src/Module/Admin/Logs/View.php:86 +#: src/Module/Debug/ActivityPubConversion.php:49 msgid "Source" msgstr "Źródło" -#: src/Module/Admin/Logs/View.php:101 +#: src/Module/Admin/Logs/View.php:87 msgid "File" msgstr "Plik" -#: src/Module/Admin/Logs/View.php:102 +#: src/Module/Admin/Logs/View.php:88 msgid "Line" msgstr "Linia" -#: src/Module/Admin/Logs/View.php:103 +#: src/Module/Admin/Logs/View.php:89 msgid "Function" msgstr "Funkcja" -#: src/Module/Admin/Logs/View.php:104 +#: src/Module/Admin/Logs/View.php:90 msgid "UID" msgstr "UID" -#: src/Module/Admin/Logs/View.php:105 +#: src/Module/Admin/Logs/View.php:91 msgid "Process ID" msgstr "Identyfikator procesu" -#: src/Module/Admin/Logs/View.php:106 +#: src/Module/Admin/Logs/View.php:92 msgid "Close" msgstr "Zamknij" -#: src/Module/Admin/Queue.php:50 +#: src/Module/Admin/Queue.php:36 msgid "Inspect Deferred Worker Queue" msgstr "Sprawdź kolejkę odroczonych workerów" -#: src/Module/Admin/Queue.php:51 +#: src/Module/Admin/Queue.php:37 msgid "" "This page lists the deferred worker jobs. This are jobs that couldn't be " "executed at the first time." msgstr "Ta strona zawiera listę zadań odroczonych workerów. Są to zadania, które nie mogą być wykonywane po raz pierwszy." -#: src/Module/Admin/Queue.php:54 +#: src/Module/Admin/Queue.php:40 msgid "Inspect Worker Queue" msgstr "Sprawdź kolejkę workerów" -#: src/Module/Admin/Queue.php:55 +#: src/Module/Admin/Queue.php:41 msgid "" "This page lists the currently queued worker jobs. These jobs are handled by " "the worker cronjob you've set up during install." msgstr "Ta strona zawiera listę aktualnie ustawionych zadań dla workerów. Te zadania są obsługiwane przez cronjob workera, który skonfigurowałeś podczas instalacji." -#: src/Module/Admin/Queue.php:76 +#: src/Module/Admin/Queue.php:62 msgid "ID" msgstr "ID" -#: src/Module/Admin/Queue.php:77 +#: src/Module/Admin/Queue.php:63 msgid "Command" msgstr "Polecenie" -#: src/Module/Admin/Queue.php:78 +#: src/Module/Admin/Queue.php:64 msgid "Job Parameters" msgstr "Parametry zadania" -#: src/Module/Admin/Queue.php:79 src/Module/Moderation/Reports.php:116 -#: src/Module/Settings/OAuth.php:74 +#: src/Module/Admin/Queue.php:65 src/Module/Moderation/Reports.php:102 +#: src/Module/Settings/OAuth.php:60 msgid "Created" msgstr "Utwórz" -#: src/Module/Admin/Queue.php:80 +#: src/Module/Admin/Queue.php:66 msgid "Next Try" msgstr "" -#: src/Module/Admin/Queue.php:81 +#: src/Module/Admin/Queue.php:67 msgid "Priority" msgstr "Priorytet" -#: src/Module/Admin/Site.php:244 +#: src/Module/Admin/Site.php:230 +#, php-format +msgid "%s is no valid input for maximum media size" +msgstr "" + +#: src/Module/Admin/Site.php:235 #, php-format msgid "%s is no valid input for maximum image size" msgstr "" -#: src/Module/Admin/Site.php:372 src/Module/Settings/Display.php:215 +#: src/Module/Admin/Site.php:362 src/Module/Settings/Display.php:201 msgid "No special theme for mobile devices" msgstr "Brak specialnego motywu dla urządzeń mobilnych" -#: src/Module/Admin/Site.php:389 src/Module/Settings/Display.php:225 +#: src/Module/Admin/Site.php:379 src/Module/Settings/Display.php:211 #, php-format msgid "%s - (Experimental)" msgstr "%s- (Eksperymentalne)" -#: src/Module/Admin/Site.php:401 +#: src/Module/Admin/Site.php:391 msgid "No community page" msgstr "Brak strony społeczności" -#: src/Module/Admin/Site.php:402 +#: src/Module/Admin/Site.php:392 msgid "No community page for visitors" msgstr "Brak strony społeczności dla odwiedzających" -#: src/Module/Admin/Site.php:403 +#: src/Module/Admin/Site.php:393 msgid "Public postings from users of this site" msgstr "Publikacje publiczne od użytkowników tej strony" -#: src/Module/Admin/Site.php:404 +#: src/Module/Admin/Site.php:394 msgid "Public postings from the federated network" msgstr "Publikacje wpisy ze sfederowanej sieci" -#: src/Module/Admin/Site.php:405 +#: src/Module/Admin/Site.php:395 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:411 +#: src/Module/Admin/Site.php:401 msgid "Multi user instance" msgstr "Tryb wielu użytkowników" -#: src/Module/Admin/Site.php:434 +#: src/Module/Admin/Site.php:424 msgid "Closed" msgstr "Zamknięte" -#: src/Module/Admin/Site.php:435 +#: src/Module/Admin/Site.php:425 msgid "Requires approval" msgstr "Wymaga zatwierdzenia" -#: src/Module/Admin/Site.php:436 +#: src/Module/Admin/Site.php:426 msgid "Open" msgstr "Otwarta" -#: src/Module/Admin/Site.php:440 +#: src/Module/Admin/Site.php:430 msgid "Don't check" msgstr "Nie sprawdzaj" -#: src/Module/Admin/Site.php:441 +#: src/Module/Admin/Site.php:431 msgid "check the stable version" msgstr "sprawdź wersję stabilną" -#: src/Module/Admin/Site.php:442 +#: src/Module/Admin/Site.php:432 msgid "check the development version" msgstr "sprawdź wersję rozwojową" -#: src/Module/Admin/Site.php:446 +#: src/Module/Admin/Site.php:436 msgid "none" msgstr "brak" -#: src/Module/Admin/Site.php:447 +#: src/Module/Admin/Site.php:437 msgid "Local contacts" msgstr "Kontakty lokalne" -#: src/Module/Admin/Site.php:448 +#: src/Module/Admin/Site.php:438 msgid "Interactors" msgstr "Interaktorzy" -#: src/Module/Admin/Site.php:458 src/Module/BaseAdmin.php:90 +#: src/Module/Admin/Site.php:448 src/Module/BaseAdmin.php:76 msgid "Site" msgstr "Strona" -#: src/Module/Admin/Site.php:459 +#: src/Module/Admin/Site.php:449 msgid "General Information" msgstr "Ogólne informacje" -#: src/Module/Admin/Site.php:461 +#: src/Module/Admin/Site.php:451 msgid "Republish users to directory" msgstr "Ponownie opublikuj użytkowników w katalogu" -#: src/Module/Admin/Site.php:462 src/Module/Register.php:159 +#: src/Module/Admin/Site.php:452 src/Module/Register.php:145 msgid "Registration" msgstr "Rejestracja" -#: src/Module/Admin/Site.php:463 +#: src/Module/Admin/Site.php:453 msgid "File upload" msgstr "Przesyłanie plików" -#: src/Module/Admin/Site.php:464 +#: src/Module/Admin/Site.php:454 msgid "Policies" msgstr "Zasady" -#: src/Module/Admin/Site.php:465 src/Module/Calendar/Event/Form.php:252 -#: src/Module/Contact.php:553 src/Module/Profile/Profile.php:278 +#: src/Module/Admin/Site.php:455 src/Module/Calendar/Event/Form.php:238 +#: src/Module/Contact.php:528 src/Module/Profile/Profile.php:264 msgid "Advanced" msgstr "Zaawansowany" -#: src/Module/Admin/Site.php:466 +#: src/Module/Admin/Site.php:456 msgid "Auto Discovered Contact Directory" msgstr "Katalog kontaktów automatycznie odkrytych" -#: src/Module/Admin/Site.php:467 +#: src/Module/Admin/Site.php:457 msgid "Performance" msgstr "Ustawienia" -#: src/Module/Admin/Site.php:468 +#: src/Module/Admin/Site.php:458 msgid "Worker" msgstr "Worker" -#: src/Module/Admin/Site.php:469 +#: src/Module/Admin/Site.php:459 msgid "Message Relay" msgstr "Przekaźnik wiadomości" -#: src/Module/Admin/Site.php:470 +#: src/Module/Admin/Site.php:460 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:471 +#: src/Module/Admin/Site.php:461 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:472 +#: src/Module/Admin/Site.php:462 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:475 +#: src/Module/Admin/Site.php:465 msgid "Relocate Node" msgstr "Przenieś węzeł" -#: src/Module/Admin/Site.php:476 +#: src/Module/Admin/Site.php:466 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:477 +#: src/Module/Admin/Site.php:467 msgid "(Friendica directory)# bin/console relocate https://newdomain.com" msgstr "(Katalog Friendica)# bin/console relocate https://nowadomena.pl" -#: src/Module/Admin/Site.php:480 +#: src/Module/Admin/Site.php:470 msgid "Site name" msgstr "Nazwa strony" -#: src/Module/Admin/Site.php:481 +#: src/Module/Admin/Site.php:471 msgid "Sender Email" msgstr "E-mail nadawcy" -#: src/Module/Admin/Site.php:481 +#: src/Module/Admin/Site.php:471 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:482 +#: src/Module/Admin/Site.php:472 msgid "Name of the system actor" msgstr "Imię i nazwisko aktora systemu" -#: src/Module/Admin/Site.php:482 +#: src/Module/Admin/Site.php:472 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:483 +#: src/Module/Admin/Site.php:473 msgid "Banner/Logo" msgstr "Baner/Logo" -#: src/Module/Admin/Site.php:484 +#: src/Module/Admin/Site.php:474 msgid "Email Banner/Logo" msgstr "Baner/logo e-maila" -#: src/Module/Admin/Site.php:485 +#: src/Module/Admin/Site.php:475 msgid "Shortcut icon" msgstr "Ikona skrótu" -#: src/Module/Admin/Site.php:485 +#: src/Module/Admin/Site.php:475 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:486 +#: src/Module/Admin/Site.php:476 msgid "Touch icon" msgstr "Dołącz ikonę" -#: src/Module/Admin/Site.php:486 +#: src/Module/Admin/Site.php:476 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:487 +#: src/Module/Admin/Site.php:477 msgid "Additional Info" msgstr "Dodatkowe informacje" -#: src/Module/Admin/Site.php:487 +#: src/Module/Admin/Site.php:477 #, 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:488 +#: src/Module/Admin/Site.php:478 msgid "System language" msgstr "Język systemu" -#: src/Module/Admin/Site.php:489 +#: src/Module/Admin/Site.php:479 msgid "System theme" msgstr "Motyw systemowy" -#: src/Module/Admin/Site.php:489 +#: src/Module/Admin/Site.php:479 #, 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:490 +#: src/Module/Admin/Site.php:480 msgid "Mobile system theme" msgstr "Motyw systemu mobilnego" -#: src/Module/Admin/Site.php:490 +#: src/Module/Admin/Site.php:480 msgid "Theme for mobile devices" msgstr "Motyw na urządzenia mobilne" -#: src/Module/Admin/Site.php:491 +#: src/Module/Admin/Site.php:481 msgid "Force SSL" msgstr "Wymuś SSL" -#: src/Module/Admin/Site.php:491 +#: src/Module/Admin/Site.php:481 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:492 +#: src/Module/Admin/Site.php:482 msgid "Show help entry from navigation menu" msgstr "Pokaż wpis pomocy z menu nawigacyjnego" -#: src/Module/Admin/Site.php:492 +#: src/Module/Admin/Site.php:482 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:493 +#: src/Module/Admin/Site.php:483 msgid "Single user instance" msgstr "Tryb pojedynczego użytkownika" -#: src/Module/Admin/Site.php:493 +#: src/Module/Admin/Site.php:483 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:495 +#: src/Module/Admin/Site.php:485 msgid "Maximum image size" msgstr "Maksymalny rozmiar zdjęcia" -#: src/Module/Admin/Site.php:495 +#: src/Module/Admin/Site.php:485 #, 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" @@ -4810,35 +4808,47 @@ 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:499 +#: src/Module/Admin/Site.php:489 msgid "Maximum image length" msgstr "Maksymalna długość obrazu" -#: src/Module/Admin/Site.php:499 +#: src/Module/Admin/Site.php:489 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:500 +#: src/Module/Admin/Site.php:490 msgid "JPEG image quality" msgstr "Jakość obrazu JPEG" -#: src/Module/Admin/Site.php:500 +#: src/Module/Admin/Site.php:490 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:502 +#: src/Module/Admin/Site.php:491 +msgid "Maximum media file size" +msgstr "" + +#: src/Module/Admin/Site.php:491 +#, php-format +msgid "" +"Maximum size in bytes of uploaded media files. Default is 0, which means no limits. You can put k, m, or g behind the desired value for KiB, MiB, GiB, respectively.\n" +"\t\t\t\t\t\t\t\t\t\t\t\t\tThe value of upload_max_filesize in your PHP.ini needs be set to at least the desired limit.\n" +"\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:496 msgid "Register policy" msgstr "Zasady rejestracji" -#: src/Module/Admin/Site.php:503 +#: src/Module/Admin/Site.php:497 msgid "Maximum Users" msgstr "" -#: src/Module/Admin/Site.php:503 +#: src/Module/Admin/Site.php:497 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 " @@ -4846,167 +4856,167 @@ msgid "" "not when the policy is set to approval." msgstr "" -#: src/Module/Admin/Site.php:504 +#: src/Module/Admin/Site.php:498 msgid "Maximum Daily Registrations" msgstr "Maksymalna dzienna rejestracja" -#: src/Module/Admin/Site.php:504 +#: src/Module/Admin/Site.php:498 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:505 +#: src/Module/Admin/Site.php:499 msgid "Register text" msgstr "Zarejestruj tekst" -#: src/Module/Admin/Site.php:505 +#: src/Module/Admin/Site.php:499 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:506 +#: src/Module/Admin/Site.php:500 msgid "Forbidden Nicknames" msgstr "Zakazane pseudonimy" -#: src/Module/Admin/Site.php:506 +#: src/Module/Admin/Site.php:500 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:507 +#: src/Module/Admin/Site.php:501 msgid "Accounts abandoned after x days" msgstr "Konta porzucone po x dni" -#: src/Module/Admin/Site.php:507 +#: src/Module/Admin/Site.php:501 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:508 +#: src/Module/Admin/Site.php:502 msgid "Allowed friend domains" msgstr "Dozwolone domeny przyjaciół" -#: src/Module/Admin/Site.php:508 +#: src/Module/Admin/Site.php:502 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:509 +#: src/Module/Admin/Site.php:503 msgid "Allowed email domains" msgstr "Dozwolone domeny e-mailowe" -#: src/Module/Admin/Site.php:509 +#: src/Module/Admin/Site.php:503 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:510 +#: src/Module/Admin/Site.php:504 msgid "Disallowed email domains" msgstr "" -#: src/Module/Admin/Site.php:510 +#: src/Module/Admin/Site.php:504 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 +#: src/Module/Admin/Site.php:505 msgid "No OEmbed rich content" msgstr "Brak treści multimedialnych ze znaczkiem HTML" -#: src/Module/Admin/Site.php:511 +#: src/Module/Admin/Site.php:505 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:512 +#: src/Module/Admin/Site.php:506 msgid "Trusted third-party domains" msgstr "Zaufane domeny zewnętrzne" -#: src/Module/Admin/Site.php:512 +#: src/Module/Admin/Site.php:506 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:513 +#: src/Module/Admin/Site.php:507 msgid "Block public" msgstr "Blokuj publicznie" -#: src/Module/Admin/Site.php:513 +#: src/Module/Admin/Site.php:507 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:514 +#: src/Module/Admin/Site.php:508 msgid "Force publish" msgstr "Wymuś publikację" -#: src/Module/Admin/Site.php:514 +#: src/Module/Admin/Site.php:508 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:514 +#: src/Module/Admin/Site.php:508 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:515 +#: src/Module/Admin/Site.php:509 msgid "Global directory URL" msgstr "Globalny adres URL katalogu" -#: src/Module/Admin/Site.php:515 +#: src/Module/Admin/Site.php:509 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:516 +#: src/Module/Admin/Site.php:510 msgid "Private posts by default for new users" msgstr "Prywatne posty domyślnie dla nowych użytkowników" -#: src/Module/Admin/Site.php:516 +#: src/Module/Admin/Site.php:510 msgid "" "Set default post permissions for all new members to the default privacy " "circle rather than public." msgstr "" -#: src/Module/Admin/Site.php:517 +#: src/Module/Admin/Site.php:511 msgid "Don't include post content in email notifications" msgstr "Nie wklejaj zawartości postu do powiadomienia o poczcie" -#: src/Module/Admin/Site.php:517 +#: src/Module/Admin/Site.php:511 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:518 +#: src/Module/Admin/Site.php:512 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:518 +#: src/Module/Admin/Site.php:512 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:519 +#: src/Module/Admin/Site.php:513 msgid "Don't embed private images in posts" msgstr "Nie umieszczaj prywatnych zdjęć we wpisach" -#: src/Module/Admin/Site.php:519 +#: src/Module/Admin/Site.php:513 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 " @@ -5014,11 +5024,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:520 +#: src/Module/Admin/Site.php:514 msgid "Explicit Content" msgstr "Treści dla dorosłych" -#: src/Module/Admin/Site.php:520 +#: src/Module/Admin/Site.php:514 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 " @@ -5027,329 +5037,319 @@ 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:521 +#: src/Module/Admin/Site.php:515 msgid "Only local search" msgstr "" -#: src/Module/Admin/Site.php:521 +#: src/Module/Admin/Site.php:515 msgid "" "Blocks search for users who are not logged in to prevent crawlers from " "blocking your system." msgstr "" -#: src/Module/Admin/Site.php:522 +#: src/Module/Admin/Site.php:516 msgid "Blocked tags for trending tags" msgstr "" -#: src/Module/Admin/Site.php:522 +#: src/Module/Admin/Site.php:516 msgid "" "Comma separated list of hashtags that shouldn't be displayed in the trending" " tags." msgstr "" -#: src/Module/Admin/Site.php:523 +#: src/Module/Admin/Site.php:517 msgid "Cache contact avatars" msgstr "Buforuj awatary kontaktów" -#: src/Module/Admin/Site.php:523 +#: src/Module/Admin/Site.php:517 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:524 +#: src/Module/Admin/Site.php:518 msgid "Allow Users to set remote_self" msgstr "Zezwól użytkownikom na ustawienie remote_self" -#: src/Module/Admin/Site.php:524 +#: src/Module/Admin/Site.php:518 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:525 +#: src/Module/Admin/Site.php:519 msgid "Allow Users to set up relay channels" msgstr "" -#: src/Module/Admin/Site.php:525 +#: src/Module/Admin/Site.php:519 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:526 +#: src/Module/Admin/Site.php:520 msgid "Adjust the feed poll frequency" msgstr "" -#: src/Module/Admin/Site.php:526 +#: src/Module/Admin/Site.php:520 msgid "Automatically detect and set the best feed poll frequency." msgstr "" -#: src/Module/Admin/Site.php:527 +#: src/Module/Admin/Site.php:521 msgid "Minimum poll interval" msgstr "" -#: src/Module/Admin/Site.php:527 +#: src/Module/Admin/Site.php:521 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:528 +#: src/Module/Admin/Site.php:522 msgid "Enable multiple registrations" msgstr "Włącz wiele rejestracji" -#: src/Module/Admin/Site.php:528 +#: src/Module/Admin/Site.php:522 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:529 +#: src/Module/Admin/Site.php:523 msgid "Enable OpenID" msgstr "Włącz OpenID" -#: src/Module/Admin/Site.php:529 +#: src/Module/Admin/Site.php:523 msgid "Enable OpenID support for registration and logins." msgstr "Włącz obsługę OpenID dla rejestracji i logowania." -#: src/Module/Admin/Site.php:530 +#: src/Module/Admin/Site.php:524 msgid "Enable full name check" msgstr "" -#: src/Module/Admin/Site.php:530 +#: src/Module/Admin/Site.php:524 msgid "" "Prevents users from registering with a display name with fewer than two " "parts separated by spaces." msgstr "" -#: src/Module/Admin/Site.php:531 +#: src/Module/Admin/Site.php:525 msgid "Email administrators on new registration" msgstr "" -#: src/Module/Admin/Site.php:531 +#: src/Module/Admin/Site.php:525 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:532 +#: src/Module/Admin/Site.php:526 msgid "Community pages for visitors" msgstr "Strony społecznościowe dla odwiedzających" -#: src/Module/Admin/Site.php:532 +#: src/Module/Admin/Site.php:526 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:533 +#: src/Module/Admin/Site.php:527 msgid "Posts per user on community page" msgstr "Lista wpisów użytkownika na stronie społeczności" -#: src/Module/Admin/Site.php:533 +#: src/Module/Admin/Site.php:527 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:534 +#: src/Module/Admin/Site.php:528 msgid "Posts per server on community page" msgstr "" -#: src/Module/Admin/Site.php:534 +#: src/Module/Admin/Site.php:528 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:536 +#: src/Module/Admin/Site.php:530 msgid "Enable Mail support" msgstr "Włącz obsługę maili" -#: src/Module/Admin/Site.php:536 +#: src/Module/Admin/Site.php:530 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:537 +#: src/Module/Admin/Site.php:531 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:538 -msgid "Enable OStatus support" -msgstr "Włącz obsługę OStatus" - -#: src/Module/Admin/Site.php:538 -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:540 +#: src/Module/Admin/Site.php:533 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:541 +#: src/Module/Admin/Site.php:534 msgid "Enable Diaspora support" msgstr "Włączyć obsługę Diaspory" -#: src/Module/Admin/Site.php:541 +#: src/Module/Admin/Site.php:534 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:542 +#: src/Module/Admin/Site.php:535 msgid "Verify SSL" msgstr "Weryfikacja SSL" -#: src/Module/Admin/Site.php:542 +#: src/Module/Admin/Site.php:535 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:543 +#: src/Module/Admin/Site.php:536 msgid "Proxy user" msgstr "Użytkownik proxy" -#: src/Module/Admin/Site.php:543 +#: src/Module/Admin/Site.php:536 msgid "User name for the proxy server." msgstr "Nazwa użytkownika serwera proxy." -#: src/Module/Admin/Site.php:544 +#: src/Module/Admin/Site.php:537 msgid "Proxy URL" msgstr "URL pośrednika" -#: src/Module/Admin/Site.php:544 +#: src/Module/Admin/Site.php:537 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:545 +#: src/Module/Admin/Site.php:538 msgid "Network timeout" msgstr "Limit czasu sieci" -#: src/Module/Admin/Site.php:545 +#: src/Module/Admin/Site.php:538 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:546 +#: src/Module/Admin/Site.php:539 msgid "Maximum Load Average" msgstr "Maksymalne obciążenie średnie" -#: src/Module/Admin/Site.php:546 +#: src/Module/Admin/Site.php:539 #, 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:547 +#: src/Module/Admin/Site.php:540 msgid "Minimal Memory" msgstr "Minimalna pamięć" -#: src/Module/Admin/Site.php:547 +#: src/Module/Admin/Site.php:540 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:548 +#: src/Module/Admin/Site.php:541 msgid "Periodically optimize tables" msgstr "Okresowo optymalizuj tabele" -#: src/Module/Admin/Site.php:548 +#: src/Module/Admin/Site.php:541 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:550 +#: src/Module/Admin/Site.php:543 msgid "Discover followers/followings from contacts" msgstr "Odkryj obserwujących/obserwowanych z kontaktów" -#: src/Module/Admin/Site.php:550 +#: src/Module/Admin/Site.php:543 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:551 +#: src/Module/Admin/Site.php:544 msgid "None - deactivated" msgstr "Brak - dezaktywowany" -#: src/Module/Admin/Site.php:552 +#: src/Module/Admin/Site.php:545 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:553 +#: src/Module/Admin/Site.php:546 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:555 +#: src/Module/Admin/Site.php:548 msgid "Only update contacts/servers with local data" msgstr "" -#: src/Module/Admin/Site.php:555 +#: src/Module/Admin/Site.php:548 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:556 +#: src/Module/Admin/Site.php:549 msgid "Synchronize the contacts with the directory server" msgstr "Synchronizuj kontakty z serwerem katalogowym" -#: src/Module/Admin/Site.php:556 +#: src/Module/Admin/Site.php:549 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:558 +#: src/Module/Admin/Site.php:551 msgid "Discover contacts from other servers" msgstr "Odkryj kontakty z innych serwerów" -#: src/Module/Admin/Site.php:558 +#: src/Module/Admin/Site.php:551 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:559 +#: src/Module/Admin/Site.php:552 msgid "Days between requery" msgstr "Dni między żądaniem" -#: src/Module/Admin/Site.php:559 +#: src/Module/Admin/Site.php:552 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:560 +#: src/Module/Admin/Site.php:553 msgid "Search the local directory" msgstr "Wyszukaj w lokalnym katalogu" -#: src/Module/Admin/Site.php:560 +#: src/Module/Admin/Site.php:553 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:562 +#: src/Module/Admin/Site.php:555 msgid "Publish server information" msgstr "Publikuj informacje o serwerze" -#: src/Module/Admin/Site.php:562 +#: src/Module/Admin/Site.php:555 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 " @@ -5357,50 +5357,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:564 +#: src/Module/Admin/Site.php:557 msgid "Check upstream version" msgstr "Sprawdź wersję powyżej" -#: src/Module/Admin/Site.php:564 +#: src/Module/Admin/Site.php:557 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:565 +#: src/Module/Admin/Site.php:558 msgid "Suppress Tags" msgstr "Pomiń znaczniki" -#: src/Module/Admin/Site.php:565 +#: src/Module/Admin/Site.php:558 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:566 +#: src/Module/Admin/Site.php:559 msgid "Clean database" msgstr "Wyczyść bazę danych" -#: src/Module/Admin/Site.php:566 +#: src/Module/Admin/Site.php:559 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:567 +#: src/Module/Admin/Site.php:560 msgid "Lifespan of remote items" msgstr "Żywotność odległych przedmiotów" -#: src/Module/Admin/Site.php:567 +#: src/Module/Admin/Site.php:560 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:568 +#: src/Module/Admin/Site.php:561 msgid "Lifespan of unclaimed items" msgstr "Żywotność nieodebranych przedmiotów" -#: src/Module/Admin/Site.php:568 +#: src/Module/Admin/Site.php:561 msgid "" "When the database cleanup is enabled, this defines the days after which " "unclaimed remote items (mostly content from the relay) will be deleted. " @@ -5408,185 +5408,184 @@ 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:569 +#: src/Module/Admin/Site.php:562 msgid "Lifespan of raw conversation data" msgstr "Trwałość nieprzetworzonych danych konwersacji" -#: src/Module/Admin/Site.php:569 +#: src/Module/Admin/Site.php:562 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." +"The conversation data is used for ActivityPub, 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:570 +#: src/Module/Admin/Site.php:563 msgid "Maximum numbers of comments per post" msgstr "Maksymalna liczba komentarzy na wpis" -#: src/Module/Admin/Site.php:570 +#: src/Module/Admin/Site.php:563 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:571 +#: src/Module/Admin/Site.php:564 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:571 +#: src/Module/Admin/Site.php:564 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:572 +#: src/Module/Admin/Site.php:565 msgid "Items per page" msgstr "" -#: src/Module/Admin/Site.php:572 +#: src/Module/Admin/Site.php:565 msgid "" "Number of items per page in stream pages (network, community, " "profile/contact statuses, search)." msgstr "" -#: src/Module/Admin/Site.php:573 +#: src/Module/Admin/Site.php:566 msgid "Items per page for mobile devices" msgstr "" -#: src/Module/Admin/Site.php:573 +#: src/Module/Admin/Site.php:566 msgid "" "Number of items per page in stream pages (network, community, " "profile/contact statuses, search) for mobile devices." msgstr "" -#: src/Module/Admin/Site.php:574 +#: src/Module/Admin/Site.php:567 msgid "Temp path" msgstr "Ścieżka do temp" -#: src/Module/Admin/Site.php:574 +#: src/Module/Admin/Site.php:567 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:575 +#: src/Module/Admin/Site.php:568 msgid "Only search in tags" msgstr "Szukaj tylko w znacznikach" -#: src/Module/Admin/Site.php:575 +#: src/Module/Admin/Site.php:568 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:576 +#: src/Module/Admin/Site.php:569 msgid "Limited search scope" msgstr "" -#: src/Module/Admin/Site.php:576 +#: src/Module/Admin/Site.php:569 msgid "" "If enabled, searches will only be performed in the data used for the " "channels and not in all posts." msgstr "" -#: src/Module/Admin/Site.php:577 +#: src/Module/Admin/Site.php:570 msgid "Maximum age of items in the search table" msgstr "" -#: src/Module/Admin/Site.php:577 +#: src/Module/Admin/Site.php:570 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:578 +#: src/Module/Admin/Site.php:571 msgid "Generate counts per contact circle when calculating network count" msgstr "" -#: src/Module/Admin/Site.php:578 +#: src/Module/Admin/Site.php:571 msgid "" "On systems with users that heavily use contact circles the query can be very" " expensive." msgstr "" -#: src/Module/Admin/Site.php:579 +#: src/Module/Admin/Site.php:572 msgid "Process \"view\" activities" msgstr "" -#: src/Module/Admin/Site.php:579 +#: src/Module/Admin/Site.php:572 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:580 +#: src/Module/Admin/Site.php:573 msgid "Days, after which a contact is archived" msgstr "" -#: src/Module/Admin/Site.php:580 +#: src/Module/Admin/Site.php:573 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:582 +#: src/Module/Admin/Site.php:575 msgid "Maximum number of parallel workers" msgstr "Maksymalna liczba równoległych workerów" -#: src/Module/Admin/Site.php:582 +#: src/Module/Admin/Site.php:575 #, 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:583 +#: src/Module/Admin/Site.php:576 msgid "Maximum load for workers" msgstr "" -#: src/Module/Admin/Site.php:583 +#: src/Module/Admin/Site.php:576 msgid "Maximum load that causes a cooldown before each worker function call." msgstr "" -#: src/Module/Admin/Site.php:584 +#: src/Module/Admin/Site.php:577 msgid "Enable fastlane" msgstr "Włącz Fastlane" -#: src/Module/Admin/Site.php:584 +#: src/Module/Admin/Site.php:577 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:585 +#: src/Module/Admin/Site.php:578 msgid "Decoupled receiver" msgstr "" -#: src/Module/Admin/Site.php:585 +#: src/Module/Admin/Site.php:578 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:586 +#: src/Module/Admin/Site.php:579 msgid "Cron interval" msgstr "" -#: src/Module/Admin/Site.php:586 +#: src/Module/Admin/Site.php:579 msgid "Minimal period in minutes between two calls of the \"Cron\" worker job." msgstr "" -#: src/Module/Admin/Site.php:587 +#: src/Module/Admin/Site.php:580 msgid "Worker defer limit" msgstr "" -#: src/Module/Admin/Site.php:587 +#: src/Module/Admin/Site.php:580 msgid "" "Per default the systems tries delivering for 15 times before dropping it." msgstr "" -#: src/Module/Admin/Site.php:588 +#: src/Module/Admin/Site.php:581 msgid "Worker fetch limit" msgstr "" -#: src/Module/Admin/Site.php:588 +#: src/Module/Admin/Site.php:581 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" @@ -5594,214 +5593,214 @@ msgid "" "system." msgstr "" -#: src/Module/Admin/Site.php:590 +#: src/Module/Admin/Site.php:583 msgid "Direct relay transfer" msgstr "Bezpośredni transfer przekaźników" -#: src/Module/Admin/Site.php:590 +#: src/Module/Admin/Site.php:583 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:591 +#: src/Module/Admin/Site.php:584 msgid "Relay scope" msgstr "Zakres przekaźnika" -#: src/Module/Admin/Site.php:591 +#: src/Module/Admin/Site.php:584 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:591 src/Module/Contact/Profile.php:328 -#: src/Module/Settings/TwoFactor/Index.php:146 +#: src/Module/Admin/Site.php:584 src/Module/Contact/Profile.php:314 +#: src/Module/Settings/TwoFactor/Index.php:132 msgid "Disabled" msgstr "Wyłączony" -#: src/Module/Admin/Site.php:591 +#: src/Module/Admin/Site.php:584 msgid "all" msgstr "wszystko" -#: src/Module/Admin/Site.php:591 +#: src/Module/Admin/Site.php:584 msgid "tags" msgstr "znaczniki" -#: src/Module/Admin/Site.php:592 +#: src/Module/Admin/Site.php:585 msgid "Server tags" msgstr "Znaczniki serwera" -#: src/Module/Admin/Site.php:592 +#: src/Module/Admin/Site.php:585 msgid "Comma separated list of tags for the \"tags\" subscription." msgstr "Rozdzielana przecinkami lista tagów dla subskrypcji „tagi”." -#: src/Module/Admin/Site.php:593 +#: src/Module/Admin/Site.php:586 msgid "Deny Server tags" msgstr "Odrzuć znaczniki serwera" -#: src/Module/Admin/Site.php:593 +#: src/Module/Admin/Site.php:586 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:594 +#: src/Module/Admin/Site.php:587 msgid "Maximum amount of tags" msgstr "" -#: src/Module/Admin/Site.php:594 +#: src/Module/Admin/Site.php:587 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:595 +#: src/Module/Admin/Site.php:588 msgid "Allow user tags" msgstr "Pozwól na znaczniki użytkowników" -#: src/Module/Admin/Site.php:595 +#: src/Module/Admin/Site.php:588 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:596 +#: src/Module/Admin/Site.php:589 msgid "Deny undetected languages" msgstr "" -#: src/Module/Admin/Site.php:596 +#: src/Module/Admin/Site.php:589 msgid "If enabled, posts with undetected languages will be rejected." msgstr "" -#: src/Module/Admin/Site.php:597 +#: src/Module/Admin/Site.php:590 msgid "Language Quality" msgstr "" -#: src/Module/Admin/Site.php:597 +#: src/Module/Admin/Site.php:590 msgid "The minimum language quality that is required to accept the post." msgstr "" -#: src/Module/Admin/Site.php:598 +#: src/Module/Admin/Site.php:591 msgid "Number of languages for the language detection" msgstr "" -#: src/Module/Admin/Site.php:598 +#: src/Module/Admin/Site.php:591 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:600 +#: src/Module/Admin/Site.php:593 msgid "Maximum age of channel" msgstr "" -#: src/Module/Admin/Site.php:600 +#: src/Module/Admin/Site.php:593 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:601 +#: src/Module/Admin/Site.php:594 msgid "Maximum number of channel posts" msgstr "" -#: src/Module/Admin/Site.php:601 +#: src/Module/Admin/Site.php:594 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:602 +#: src/Module/Admin/Site.php:595 msgid "Interaction score days" msgstr "" -#: src/Module/Admin/Site.php:602 +#: src/Module/Admin/Site.php:595 msgid "Number of days that are used to calculate the interaction score." msgstr "" -#: src/Module/Admin/Site.php:603 +#: src/Module/Admin/Site.php:596 msgid "Maximum number of posts per author" msgstr "" -#: src/Module/Admin/Site.php:603 +#: src/Module/Admin/Site.php:596 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:604 +#: src/Module/Admin/Site.php:597 msgid "Sharer interaction days" msgstr "" -#: src/Module/Admin/Site.php:604 +#: src/Module/Admin/Site.php:597 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:607 +#: src/Module/Admin/Site.php:600 msgid "Start Relocation" msgstr "Rozpocznij przenoszenie" -#: src/Module/Admin/Storage.php:46 +#: src/Module/Admin/Storage.php:32 #, php-format msgid "Storage backend, %s is invalid." msgstr "Zaplecze pamięci przechowywania, %s jest nieprawidłowe." -#: src/Module/Admin/Storage.php:73 +#: src/Module/Admin/Storage.php:59 #, php-format msgid "Storage backend %s error: %s" msgstr "Błąd zaplecza %s pamięci przechowywania: %s" -#: src/Module/Admin/Storage.php:84 src/Module/Admin/Storage.php:87 +#: src/Module/Admin/Storage.php:70 src/Module/Admin/Storage.php:73 msgid "Invalid storage backend setting value." msgstr "Nieprawidłowa wartość ustawienia magazynu pamięci." -#: src/Module/Admin/Storage.php:139 +#: src/Module/Admin/Storage.php:125 msgid "Current Storage Backend" msgstr "Bieżące zaplecze pamięci przechowywania" -#: src/Module/Admin/Storage.php:140 +#: src/Module/Admin/Storage.php:126 msgid "Storage Configuration" msgstr "Konfiguracja przechowywania" -#: src/Module/Admin/Storage.php:141 src/Module/BaseAdmin.php:91 +#: src/Module/Admin/Storage.php:127 src/Module/BaseAdmin.php:77 msgid "Storage" msgstr "Przechowywanie" -#: src/Module/Admin/Storage.php:143 +#: src/Module/Admin/Storage.php:129 msgid "Save & Use storage backend" msgstr "Zapisz i użyj backendu przechowywania" -#: src/Module/Admin/Storage.php:144 +#: src/Module/Admin/Storage.php:130 msgid "Use storage backend" msgstr "Użyj backendu pamięci przechowywania" -#: src/Module/Admin/Storage.php:145 +#: src/Module/Admin/Storage.php:131 msgid "Save & Reload" msgstr "Zapisz i wczytaj ponownie" -#: src/Module/Admin/Storage.php:146 +#: src/Module/Admin/Storage.php:132 msgid "This backend doesn't have custom settings" msgstr "Ten backend nie ma niestandardowych ustawień" -#: src/Module/Admin/Storage.php:148 +#: src/Module/Admin/Storage.php:134 msgid "" "Changing the current backend is prohibited because it is set by an " "environment variable" msgstr "" -#: src/Module/Admin/Storage.php:150 +#: src/Module/Admin/Storage.php:136 msgid "Database (legacy)" msgstr "Baza danych (legacy)" -#: src/Module/Admin/Summary.php:55 +#: src/Module/Admin/Summary.php:41 #, php-format msgid "Template engine (%s) error: %s" msgstr "Silnik szablonów (%s) błąd: %s" -#: src/Module/Admin/Summary.php:59 +#: src/Module/Admin/Summary.php:45 #, php-format msgid "" "Your DB still runs with MyISAM tables. You should change the engine type to " @@ -5812,7 +5811,7 @@ msgid "" " an automatic conversion.
" msgstr "Twoja baza danych nadal używa tabel MyISAM. Powinieneś(-naś) zmienić typ silnika na InnoDB. Ponieważ Friendica będzie używać w przyszłości wyłącznie funkcji InnoDB, powinieneś(-naś) to zmienić! Zobacz tutaj przewodnik, który może być pomocny w konwersji silników tabel. Możesz także użyć polecenia php bin/console.php dbstructure toinnodb instalacji Friendica, aby dokonać automatycznej konwersji.
" -#: src/Module/Admin/Summary.php:64 +#: src/Module/Admin/Summary.php:50 #, php-format msgid "" "Your DB still runs with InnoDB tables in the Antelope file format. You " @@ -5823,7 +5822,7 @@ msgid "" " installation for an automatic conversion.
" msgstr "Twoja baza danych nadal działa z tabelami InnoDB w formacie pliku Antelope. Powinieneś zmienić format pliku na Barracuda. Friendica korzysta z funkcji, których nie zapewnia format Antelope. Zobacz tutaj przewodnik, który może być pomocny w konwersji silników tabel. Możesz również użyć polecenia php bin/console.php dbstructure toinnodb Twojej instalacji Friendica do automatycznej konwersji.
" -#: src/Module/Admin/Summary.php:74 +#: src/Module/Admin/Summary.php:60 #, php-format msgid "" "Your table_definition_cache is too low (%d). This can lead to the database " @@ -5831,46 +5830,46 @@ msgid "" " to %d. See here for more information.
" msgstr "Twoja pamięć podręczna w table_definition_cache jest zbyt niska (%d). Może to prowadzić do błędu bazy danych „Przygotowana instrukcja wymaga ponownego przygotowania”. Ustaw przynajmniej na %d. Zobacz tutaj, aby uzyskać więcej informacji.
" -#: src/Module/Admin/Summary.php:85 +#: src/Module/Admin/Summary.php:71 #, php-format msgid "" "There is a new version of Friendica available for download. Your current " "version is %1$s, upstream version is %2$s" msgstr "Dostępna jest nowa wersja aplikacji Friendica. Twoja aktualna wersja to %1$s wyższa wersja to %2$s" -#: src/Module/Admin/Summary.php:94 +#: src/Module/Admin/Summary.php:80 msgid "" "The database update failed. Please run \"php bin/console.php dbstructure " "update\" from the command line and have a look at the errors that might " "appear." msgstr "Aktualizacja bazy danych nie powiodła się. Uruchom polecenie \"php bin/console.php dbstructure update\" z wiersza poleceń i sprawdź błędy, które mogą się pojawić." -#: src/Module/Admin/Summary.php:98 +#: src/Module/Admin/Summary.php:84 msgid "" "The last update failed. Please run \"php bin/console.php dbstructure " "update\" from the command line and have a look at the errors that might " "appear. (Some of the errors are possibly inside the logfile.)" msgstr "Ostatnia aktualizacja nie powiodła się. Uruchom polecenie \"php bin/console.php dbstructure update\" z wiersza poleceń i spójrz na błędy, które mogą się pojawić. (Niektóre błędy są prawdopodobnie w pliku dziennika)." -#: src/Module/Admin/Summary.php:102 +#: src/Module/Admin/Summary.php:88 msgid "" "The system.url entry is missing. This is a low level setting and can lead to" " unexpected behavior. Please add a valid entry as soon as possible in the " "config file or per console command!" msgstr "" -#: src/Module/Admin/Summary.php:107 +#: src/Module/Admin/Summary.php:93 msgid "The worker was never executed. Please check your database structure!" msgstr "Worker nigdy nie został wykonany. Sprawdź swoją strukturę bazy danych!" -#: src/Module/Admin/Summary.php:109 +#: src/Module/Admin/Summary.php:95 #, php-format msgid "" "The last worker execution was on %s UTC. This is older than one hour. Please" " check your crontab settings." msgstr "Ostatnie wykonanie workera było w %s UTC. To jest starsze niż jedna godzina. Sprawdź ustawienia crontab." -#: src/Module/Admin/Summary.php:114 +#: src/Module/Admin/Summary.php:100 #, php-format msgid "" "Friendica's configuration now is stored in config/local.config.php, please " @@ -5879,7 +5878,7 @@ msgid "" "help with the transition." msgstr "Konfiguracja Friendiki jest teraz przechowywana w config/local.config.php, skopiuj config/local-sample.config.php i przenieś swoją konfigurację z .htconfig.php. Zobacz stronę pomocy Config, aby uzyskać pomoc dotyczącą przejścia." -#: src/Module/Admin/Summary.php:118 +#: src/Module/Admin/Summary.php:104 #, php-format msgid "" "Friendica's configuration now is stored in config/local.config.php, please " @@ -5888,7 +5887,7 @@ msgid "" "page for help with the transition." msgstr "Konfiguracja Friendiki jest teraz przechowywana w config/local.config.php, skopiuj config/local-sample.config.php i przenieś konfigurację z config/local.ini.php. Zobacz stronę pomocy Config, aby uzyskać pomoc dotyczącą przejścia." -#: src/Module/Admin/Summary.php:124 +#: src/Module/Admin/Summary.php:110 #, php-format msgid "" "%s is not reachable on your system. This is a severe " @@ -5896,107 +5895,107 @@ msgid "" "href=\"%s\">the installation page for help." msgstr "%s nie jest osiągalny w twoim systemie. Jest to poważny problem z konfiguracją, który uniemożliwia komunikację między serwerami. Zobacz pomoc na stronie instalacji." -#: src/Module/Admin/Summary.php:148 +#: src/Module/Admin/Summary.php:134 #, php-format msgid "" "Friendica's system.basepath was updated from '%s' to '%s'. Please remove the" " system.basepath from your db to avoid differences." msgstr "System.basepath Friendiki został zaktualizowany z '%s' do '%s'. Usuń system.basepath z bazy danych, aby uniknąć różnic." -#: src/Module/Admin/Summary.php:156 +#: src/Module/Admin/Summary.php:142 #, php-format msgid "" "Friendica's current system.basepath '%s' is wrong and the config file '%s' " "isn't used." msgstr "Obecny system.basepath Friendiki '%s' jest nieprawidłowy i plik konfiguracyjny '%s' nie jest używany." -#: src/Module/Admin/Summary.php:164 +#: src/Module/Admin/Summary.php:150 #, php-format msgid "" "Friendica's current system.basepath '%s' is not equal to the config file " "'%s'. Please fix your configuration." msgstr "Obecny system.basepath Friendiki '%s' nie jest równy plikowi konfiguracyjnemu '%s'. Napraw konfigurację." -#: src/Module/Admin/Summary.php:175 +#: src/Module/Admin/Summary.php:161 msgid "Message queues" msgstr "Wiadomości" -#: src/Module/Admin/Summary.php:181 +#: src/Module/Admin/Summary.php:167 msgid "Server Settings" msgstr "Ustawienia serwera" -#: src/Module/Admin/Summary.php:199 +#: src/Module/Admin/Summary.php:185 msgid "Version" msgstr "Wersja" -#: src/Module/Admin/Summary.php:203 +#: src/Module/Admin/Summary.php:189 msgid "Active addons" msgstr "Aktywne dodatki" -#: src/Module/Admin/Themes/Details.php:63 src/Module/Admin/Themes/Index.php:71 +#: src/Module/Admin/Themes/Details.php:49 src/Module/Admin/Themes/Index.php:57 #, php-format msgid "Theme %s disabled." msgstr "Motyw %s wyłączony." -#: src/Module/Admin/Themes/Details.php:65 src/Module/Admin/Themes/Index.php:73 +#: src/Module/Admin/Themes/Details.php:51 src/Module/Admin/Themes/Index.php:59 #, php-format msgid "Theme %s successfully enabled." msgstr "Motyw %s został pomyślnie włączony." -#: src/Module/Admin/Themes/Details.php:67 src/Module/Admin/Themes/Index.php:75 +#: src/Module/Admin/Themes/Details.php:53 src/Module/Admin/Themes/Index.php:61 #, php-format msgid "Theme %s failed to install." msgstr "Nie udało się zainstalować motywu %s." -#: src/Module/Admin/Themes/Details.php:89 +#: src/Module/Admin/Themes/Details.php:75 msgid "Screenshot" msgstr "Zrzut ekranu" -#: src/Module/Admin/Themes/Details.php:97 -#: src/Module/Admin/Themes/Index.php:118 src/Module/BaseAdmin.php:93 +#: src/Module/Admin/Themes/Details.php:83 +#: src/Module/Admin/Themes/Index.php:104 src/Module/BaseAdmin.php:79 msgid "Themes" msgstr "Wygląd" -#: src/Module/Admin/Themes/Embed.php:80 +#: src/Module/Admin/Themes/Embed.php:66 msgid "Unknown theme." msgstr "Nieznany motyw." -#: src/Module/Admin/Themes/Index.php:57 +#: src/Module/Admin/Themes/Index.php:43 msgid "Themes reloaded" msgstr "Motywy zostały ponownie wczytane" -#: src/Module/Admin/Themes/Index.php:120 +#: src/Module/Admin/Themes/Index.php:106 msgid "Reload active themes" msgstr "Wczytaj ponownie aktywne motywy" -#: src/Module/Admin/Themes/Index.php:124 +#: src/Module/Admin/Themes/Index.php:110 #, php-format msgid "No themes found on the system. They should be placed in %1$s" msgstr "Nie znaleziono motywów w systemie. Powinny zostać umieszczone %1$s" -#: src/Module/Admin/Themes/Index.php:125 +#: src/Module/Admin/Themes/Index.php:111 msgid "[Experimental]" msgstr "[Eksperymentalne]" -#: src/Module/Admin/Themes/Index.php:126 +#: src/Module/Admin/Themes/Index.php:112 msgid "[Unsupported]" msgstr "[Niewspieralne]" -#: src/Module/Admin/Tos.php:79 +#: src/Module/Admin/Tos.php:65 msgid "Display Terms of Service" msgstr "Wyświetl Warunki korzystania z usługi" -#: src/Module/Admin/Tos.php:79 +#: src/Module/Admin/Tos.php:65 msgid "" "Enable the Terms of Service page. If this is enabled a link to the terms " "will be added to the registration form and the general information page." msgstr "Włącz stronę Warunki świadczenia usług. Jeśli ta opcja jest włączona, link do warunków zostanie dodany do formularza rejestracyjnego i strony z informacjami ogólnymi." -#: src/Module/Admin/Tos.php:80 +#: src/Module/Admin/Tos.php:66 msgid "Display Privacy Statement" msgstr "Wyświetl oświadczenie o prywatności" -#: src/Module/Admin/Tos.php:80 +#: src/Module/Admin/Tos.php:66 #, php-format msgid "" "Show some informations regarding the needed information to operate the node " @@ -6004,160 +6003,160 @@ msgid "" "noreferrer\">EU-GDPR." msgstr "Pokaż informacje dotyczące potrzebnych informacji do obsługi węzła zgodnie z np. EU-RODO." -#: src/Module/Admin/Tos.php:81 +#: src/Module/Admin/Tos.php:67 msgid "Privacy Statement Preview" msgstr "Podgląd oświadczenia o prywatności" -#: src/Module/Admin/Tos.php:83 +#: src/Module/Admin/Tos.php:69 msgid "The Terms of Service" msgstr "Warunki świadczenia usług" -#: src/Module/Admin/Tos.php:83 +#: src/Module/Admin/Tos.php:69 msgid "" "Enter the Terms of Service for your node here. You can use BBCode. Headers " "of sections should be [h2] and below." msgstr "Wprowadź tutaj Warunki świadczenia usług dla swojego węzła. Możesz użyć BBCode. Nagłówki sekcji powinny być [h2] i poniżej." -#: src/Module/Admin/Tos.php:84 +#: src/Module/Admin/Tos.php:70 msgid "The rules" msgstr "Zasady" -#: src/Module/Admin/Tos.php:84 +#: src/Module/Admin/Tos.php:70 msgid "Enter your system rules here. Each line represents one rule." msgstr "Wprowadź tutaj swoje reguły systemowe. Każda linia reprezentuje jedną regułę." -#: src/Module/Api/ApiResponse.php:293 +#: src/Module/Api/ApiResponse.php:279 #, php-format msgid "API endpoint %s %s is not implemented but might be in the future." msgstr "" -#: src/Module/Api/Mastodon/Apps.php:73 +#: src/Module/Api/Mastodon/Apps.php:59 msgid "Missing parameters" msgstr "Brakuje parametrów" -#: src/Module/Api/Mastodon/Statuses/Bookmark.php:50 +#: src/Module/Api/Mastodon/Statuses/Bookmark.php:36 msgid "Only starting posts can be bookmarked" msgstr "Tylko początkowe wpisy można dodawać do zakładek" -#: src/Module/Api/Mastodon/Statuses/Mute.php:51 +#: src/Module/Api/Mastodon/Statuses/Mute.php:37 msgid "Only starting posts can be muted" msgstr "Można wyciszyć tylko początkowe wpisy" -#: src/Module/Api/Mastodon/Statuses/Reblog.php:58 +#: src/Module/Api/Mastodon/Statuses/Reblog.php:44 #, php-format msgid "Posts from %s can't be shared" msgstr "Wpisy od %s nie mogą być udostępniane" -#: src/Module/Api/Mastodon/Statuses/Unbookmark.php:51 +#: src/Module/Api/Mastodon/Statuses/Unbookmark.php:37 msgid "Only starting posts can be unbookmarked" msgstr "Tylko początkowe wpisy można usunąć z zakładek" -#: src/Module/Api/Mastodon/Statuses/Unmute.php:51 +#: src/Module/Api/Mastodon/Statuses/Unmute.php:37 msgid "Only starting posts can be unmuted" msgstr "Wyłączać wyciszenie można tylko we wpisach początkowych" -#: src/Module/Api/Mastodon/Statuses/Unreblog.php:64 +#: src/Module/Api/Mastodon/Statuses/Unreblog.php:50 #, php-format msgid "Posts from %s can't be unshared" msgstr "Nie można cofnąć udostępniania wpisów %s" -#: src/Module/Api/Twitter/ContactEndpoint.php:66 +#: src/Module/Api/Twitter/ContactEndpoint.php:52 msgid "Contact not found" msgstr "Nie znaleziono kontaktu" -#: src/Module/Apps.php:62 +#: src/Module/Apps.php:48 msgid "No installed applications." msgstr "Brak zainstalowanych aplikacji." -#: src/Module/Apps.php:67 +#: src/Module/Apps.php:53 msgid "Applications" msgstr "Aplikacje" -#: src/Module/Attach.php:49 src/Module/Attach.php:61 +#: src/Module/Attach.php:35 src/Module/Attach.php:47 msgid "Item was not found." msgstr "Element nie znaleziony." -#: src/Module/BaseAdmin.php:54 src/Module/BaseAdmin.php:58 -#: src/Module/BaseModeration.php:77 src/Module/BaseModeration.php:81 +#: src/Module/BaseAdmin.php:40 src/Module/BaseAdmin.php:44 +#: src/Module/BaseModeration.php:63 src/Module/BaseModeration.php:67 msgid "Please login to continue." msgstr "Zaloguj się aby kontynuować." -#: src/Module/BaseAdmin.php:63 +#: src/Module/BaseAdmin.php:49 msgid "You don't have access to administration pages." msgstr "Nie masz dostępu do stron administracyjnych." -#: src/Module/BaseAdmin.php:67 +#: src/Module/BaseAdmin.php:53 msgid "" "Submanaged account can't access the administration pages. Please log back in" " as the main account." msgstr "Konto zarządzane podrzędnie nie ma dostępu do stron administracyjnych. Zaloguj się ponownie poprzez konto główne." -#: src/Module/BaseAdmin.php:86 src/Module/BaseModeration.php:109 +#: src/Module/BaseAdmin.php:72 src/Module/BaseModeration.php:95 msgid "Overview" msgstr "Przegląd" -#: src/Module/BaseAdmin.php:89 src/Module/BaseModeration.php:112 +#: src/Module/BaseAdmin.php:75 src/Module/BaseModeration.php:98 msgid "Configuration" msgstr "Konfiguracja" -#: src/Module/BaseAdmin.php:94 src/Module/BaseSettings.php:110 +#: src/Module/BaseAdmin.php:80 src/Module/BaseSettings.php:96 msgid "Additional features" msgstr "Dodatkowe funkcje" -#: src/Module/BaseAdmin.php:97 +#: src/Module/BaseAdmin.php:83 msgid "Database" msgstr "Baza danych" -#: src/Module/BaseAdmin.php:98 +#: src/Module/BaseAdmin.php:84 msgid "DB updates" msgstr "Aktualizacje bazy danych" -#: src/Module/BaseAdmin.php:99 +#: src/Module/BaseAdmin.php:85 msgid "Inspect Deferred Workers" msgstr "Sprawdź odroczonych workerów" -#: src/Module/BaseAdmin.php:100 +#: src/Module/BaseAdmin.php:86 msgid "Inspect worker Queue" msgstr "Sprawdź kolejkę workerów" -#: src/Module/BaseAdmin.php:106 src/Module/BaseModeration.php:120 +#: src/Module/BaseAdmin.php:92 src/Module/BaseModeration.php:106 msgid "Diagnostics" msgstr "Diagnostyka" -#: src/Module/BaseAdmin.php:107 +#: src/Module/BaseAdmin.php:93 msgid "PHP Info" msgstr "Informacje o PHP" -#: src/Module/BaseAdmin.php:108 +#: src/Module/BaseAdmin.php:94 msgid "probe address" msgstr "adres probe" -#: src/Module/BaseAdmin.php:109 +#: src/Module/BaseAdmin.php:95 msgid "check webfinger" msgstr "sprawdź webfinger" -#: src/Module/BaseAdmin.php:110 +#: src/Module/BaseAdmin.php:96 msgid "Babel" msgstr "Babel" -#: src/Module/BaseAdmin.php:111 src/Module/Debug/ActivityPubConversion.php:143 +#: src/Module/BaseAdmin.php:97 src/Module/Debug/ActivityPubConversion.php:129 msgid "ActivityPub Conversion" msgstr "Konwersja ActivityPub" -#: src/Module/BaseAdmin.php:120 +#: src/Module/BaseAdmin.php:106 msgid "Addon Features" msgstr "Funkcje dodatkowe" -#: src/Module/BaseAdmin.php:121 src/Module/BaseModeration.php:129 +#: src/Module/BaseAdmin.php:107 src/Module/BaseModeration.php:115 msgid "User registrations waiting for confirmation" msgstr "Rejestracje użytkowników czekające na potwierdzenie" -#: src/Module/BaseApi.php:455 src/Module/BaseApi.php:471 -#: src/Module/BaseApi.php:487 +#: src/Module/BaseApi.php:441 src/Module/BaseApi.php:457 +#: src/Module/BaseApi.php:473 msgid "Too Many Requests" msgstr "Zbyt dużo próśb" -#: src/Module/BaseApi.php:456 +#: src/Module/BaseApi.php:442 #, php-format msgid "Daily posting limit of %d post reached. The post was rejected." msgid_plural "Daily posting limit of %d posts reached. The post was rejected." @@ -6166,7 +6165,7 @@ msgstr[1] "Dzienny limit opublikowanych %d postów. Post został odrzucony." msgstr[2] "Dzienny limit opublikowanych %d postów. Post został odrzucony." msgstr[3] "Został osiągnięty dzienny limit %d wysyłania wpisów. Wpis został odrzucony." -#: src/Module/BaseApi.php:472 +#: src/Module/BaseApi.php:458 #, php-format msgid "Weekly posting limit of %d post reached. The post was rejected." msgid_plural "" @@ -6176,7 +6175,7 @@ msgstr[1] "Tygodniowy limit wysyłania %d postów. Post został odrzucony." msgstr[2] "Tygodniowy limit wysyłania %d postów. Post został odrzucony." msgstr[3] "Został osiągnięty tygodniowy limit %d wysyłania wpisów. Wpis został odrzucony." -#: src/Module/BaseApi.php:488 +#: src/Module/BaseApi.php:474 #, php-format msgid "Monthly posting limit of %d post reached. The post was rejected." msgid_plural "" @@ -6186,84 +6185,84 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: src/Module/BaseModeration.php:86 +#: src/Module/BaseModeration.php:72 msgid "You don't have access to moderation pages." msgstr "" -#: src/Module/BaseModeration.php:90 +#: src/Module/BaseModeration.php:76 msgid "" "Submanaged account can't access the moderation pages. Please log back in as " "the main account." msgstr "" -#: src/Module/BaseModeration.php:110 src/Module/Moderation/Reports.php:115 +#: src/Module/BaseModeration.php:96 src/Module/Moderation/Reports.php:101 msgid "Reports" msgstr "" -#: src/Module/BaseModeration.php:113 src/Module/Moderation/Users/Index.php:148 -#: src/Module/Moderation/Users/Index.php:158 +#: src/Module/BaseModeration.php:99 src/Module/Moderation/Users/Index.php:134 +#: src/Module/Moderation/Users/Index.php:144 msgid "Users" msgstr "Użytkownicy" -#: src/Module/BaseModeration.php:115 +#: src/Module/BaseModeration.php:101 msgid "Tools" msgstr "Narzędzia" -#: src/Module/BaseModeration.php:116 +#: src/Module/BaseModeration.php:102 msgid "Contact Blocklist" msgstr "Lista zablokowanych kontaktów" -#: src/Module/BaseModeration.php:117 +#: src/Module/BaseModeration.php:103 msgid "Server Blocklist" msgstr "Lista zablokowanych serwerów" -#: src/Module/BaseModeration.php:118 src/Module/Moderation/Item/Delete.php:62 +#: src/Module/BaseModeration.php:104 src/Module/Moderation/Item/Delete.php:48 msgid "Delete Item" msgstr "Usuń przedmiot" -#: src/Module/BaseModeration.php:121 src/Module/Moderation/Item/Source.php:82 +#: src/Module/BaseModeration.php:107 src/Module/Moderation/Item/Source.php:68 msgid "Item Source" msgstr "Źródło elementu" -#: src/Module/BaseProfile.php:52 src/Module/Contact.php:513 +#: src/Module/BaseProfile.php:38 src/Module/Contact.php:488 msgid "Profile Details" msgstr "Szczegóły profilu" -#: src/Module/BaseProfile.php:60 +#: src/Module/BaseProfile.php:46 msgid "Conversations started" msgstr "" -#: src/Module/BaseProfile.php:111 +#: src/Module/BaseProfile.php:97 msgid "Only You Can See This" msgstr "Tylko ty możesz to zobaczyć" -#: src/Module/BaseProfile.php:116 src/Module/Profile/Schedule.php:81 +#: src/Module/BaseProfile.php:102 src/Module/Profile/Schedule.php:67 msgid "Scheduled Posts" msgstr "Zaplanowane wpisy" -#: src/Module/BaseProfile.php:119 +#: src/Module/BaseProfile.php:105 msgid "Posts that are scheduled for publishing" msgstr "Wpisy zaplanowane do publikacji" -#: src/Module/BaseProfile.php:138 src/Module/BaseProfile.php:141 +#: src/Module/BaseProfile.php:124 src/Module/BaseProfile.php:127 msgid "Tips for New Members" msgstr "Wskazówki dla nowych użytkowników" -#: src/Module/BaseSearch.php:71 +#: src/Module/BaseSearch.php:57 #, php-format msgid "People Search - %s" msgstr "Szukaj osób - %s" -#: src/Module/BaseSearch.php:75 +#: src/Module/BaseSearch.php:61 #, php-format msgid "Group Search - %s" msgstr "" -#: src/Module/BaseSearch.php:121 src/Module/Contact/MatchInterests.php:140 +#: src/Module/BaseSearch.php:107 src/Module/Contact/MatchInterests.php:136 msgid "No matches" msgstr "Brak wyników" -#: src/Module/BaseSearch.php:147 +#: src/Module/BaseSearch.php:133 #, php-format msgid "" "%d result was filtered out because your node blocks the domain it is " @@ -6278,267 +6277,267 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: src/Module/BaseSettings.php:78 +#: src/Module/BaseSettings.php:64 msgid "Account" msgstr "Konto" -#: src/Module/BaseSettings.php:85 src/Module/Security/TwoFactor/Verify.php:96 -#: src/Module/Settings/TwoFactor/Index.php:138 +#: src/Module/BaseSettings.php:71 src/Module/Security/TwoFactor/Verify.php:82 +#: src/Module/Settings/TwoFactor/Index.php:124 msgid "Two-factor authentication" msgstr "Uwierzytelnianie dwuskładnikowe" -#: src/Module/BaseSettings.php:118 +#: src/Module/BaseSettings.php:104 msgid "Display" msgstr "Wygląd" -#: src/Module/BaseSettings.php:132 src/Module/Settings/Connectors.php:213 +#: src/Module/BaseSettings.php:118 src/Module/Settings/Connectors.php:195 msgid "Social Networks" msgstr "Portale społecznościowe" -#: src/Module/BaseSettings.php:146 src/Module/Settings/Delegation.php:194 +#: src/Module/BaseSettings.php:132 src/Module/Settings/Delegation.php:180 msgid "Manage Accounts" msgstr "Zarządzanie kontami" -#: src/Module/BaseSettings.php:153 +#: src/Module/BaseSettings.php:139 msgid "Connected apps" msgstr "Powiązane aplikacje" -#: src/Module/BaseSettings.php:160 +#: src/Module/BaseSettings.php:146 msgid "Remote servers" msgstr "" -#: src/Module/BaseSettings.php:167 src/Module/Settings/UserExport.php:98 +#: src/Module/BaseSettings.php:153 src/Module/Settings/UserExport.php:84 msgid "Export personal data" msgstr "Eksportuj dane osobiste" -#: src/Module/BaseSettings.php:174 +#: src/Module/BaseSettings.php:160 msgid "Remove account" msgstr "Usuń konto" -#: src/Module/Bookmarklet.php:54 +#: src/Module/Bookmarklet.php:40 msgid "This page is missing a url parameter." msgstr "Na tej stronie brakuje parametru url." -#: src/Module/Bookmarklet.php:66 +#: src/Module/Bookmarklet.php:52 msgid "The post was created" msgstr "Wpis został utworzony" -#: src/Module/Calendar/Event/API.php:100 src/Module/Calendar/Event/API.php:135 -#: src/Module/Calendar/Event/Form.php:80 +#: src/Module/Calendar/Event/API.php:86 src/Module/Calendar/Event/API.php:121 +#: src/Module/Calendar/Event/Form.php:66 msgid "Invalid Request" msgstr "Nieprawidłowe żądanie" -#: src/Module/Calendar/Event/API.php:109 +#: src/Module/Calendar/Event/API.php:95 msgid "Event id is missing." msgstr "Brak identyfikatora wydarzenia." -#: src/Module/Calendar/Event/API.php:131 +#: src/Module/Calendar/Event/API.php:117 msgid "Failed to remove event" msgstr "Nie udało się usunąć wydarzenia" -#: src/Module/Calendar/Event/API.php:187 src/Module/Calendar/Event/API.php:189 +#: src/Module/Calendar/Event/API.php:173 src/Module/Calendar/Event/API.php:175 msgid "Event can not end before it has started." msgstr "Wydarzenie nie może się zakończyć przed jego rozpoczęciem." -#: src/Module/Calendar/Event/API.php:196 src/Module/Calendar/Event/API.php:198 +#: src/Module/Calendar/Event/API.php:182 src/Module/Calendar/Event/API.php:184 msgid "Event title and start time are required." msgstr "Wymagany tytuł wydarzenia i czas rozpoczęcia." -#: src/Module/Calendar/Event/Form.php:208 +#: src/Module/Calendar/Event/Form.php:194 msgid "Starting date and Title are required." msgstr "Data rozpoczęcia i tytuł są wymagane." -#: src/Module/Calendar/Event/Form.php:209 -#: src/Module/Calendar/Event/Form.php:214 +#: src/Module/Calendar/Event/Form.php:195 +#: src/Module/Calendar/Event/Form.php:200 msgid "Event Starts:" msgstr "Rozpoczęcie wydarzenia:" -#: src/Module/Calendar/Event/Form.php:209 -#: src/Module/Calendar/Event/Form.php:237 src/Module/Debug/Probe.php:59 -#: src/Module/Install.php:201 src/Module/Install.php:227 -#: src/Module/Install.php:232 src/Module/Install.php:246 -#: src/Module/Install.php:255 src/Module/Install.php:260 -#: src/Module/Install.php:266 src/Module/Install.php:271 -#: src/Module/Install.php:285 src/Module/Install.php:298 -#: src/Module/Install.php:325 -#: src/Module/Moderation/Blocklist/Server/Add.php:136 -#: src/Module/Moderation/Blocklist/Server/Add.php:138 -#: src/Module/Moderation/Blocklist/Server/Import.php:129 -#: src/Module/Moderation/Blocklist/Server/Index.php:86 -#: src/Module/Moderation/Blocklist/Server/Index.php:87 -#: src/Module/Moderation/Blocklist/Server/Index.php:115 -#: src/Module/Moderation/Blocklist/Server/Index.php:116 -#: src/Module/Moderation/Item/Delete.php:67 src/Module/Register.php:155 -#: src/Module/Security/TwoFactor/Verify.php:101 -#: src/Module/Settings/Channels.php:190 src/Module/Settings/Channels.php:211 -#: src/Module/Settings/TwoFactor/Index.php:161 -#: src/Module/Settings/TwoFactor/Verify.php:158 +#: src/Module/Calendar/Event/Form.php:195 +#: src/Module/Calendar/Event/Form.php:223 src/Module/Debug/Probe.php:45 +#: src/Module/Install.php:187 src/Module/Install.php:213 +#: src/Module/Install.php:218 src/Module/Install.php:232 +#: src/Module/Install.php:241 src/Module/Install.php:246 +#: src/Module/Install.php:252 src/Module/Install.php:257 +#: src/Module/Install.php:271 src/Module/Install.php:284 +#: src/Module/Install.php:311 +#: src/Module/Moderation/Blocklist/Server/Add.php:122 +#: src/Module/Moderation/Blocklist/Server/Add.php:124 +#: src/Module/Moderation/Blocklist/Server/Import.php:113 +#: src/Module/Moderation/Blocklist/Server/Index.php:72 +#: src/Module/Moderation/Blocklist/Server/Index.php:73 +#: src/Module/Moderation/Blocklist/Server/Index.php:101 +#: src/Module/Moderation/Blocklist/Server/Index.php:102 +#: src/Module/Moderation/Item/Delete.php:53 src/Module/Register.php:141 +#: src/Module/Security/TwoFactor/Verify.php:87 +#: src/Module/Settings/Channels.php:176 src/Module/Settings/Channels.php:197 +#: src/Module/Settings/TwoFactor/Index.php:147 +#: src/Module/Settings/TwoFactor/Verify.php:144 msgid "Required" msgstr "Wymagany" -#: src/Module/Calendar/Event/Form.php:223 -#: src/Module/Calendar/Event/Form.php:247 +#: src/Module/Calendar/Event/Form.php:209 +#: src/Module/Calendar/Event/Form.php:233 msgid "Finish date/time is not known or not relevant" msgstr "Data/czas zakończenia nie jest znana lub jest nieistotna" -#: src/Module/Calendar/Event/Form.php:225 -#: src/Module/Calendar/Event/Form.php:230 +#: src/Module/Calendar/Event/Form.php:211 +#: src/Module/Calendar/Event/Form.php:216 msgid "Event Finishes:" msgstr "Zakończenie wydarzenia:" -#: src/Module/Calendar/Event/Form.php:237 -#: src/Module/Calendar/Event/Form.php:243 +#: src/Module/Calendar/Event/Form.php:223 +#: src/Module/Calendar/Event/Form.php:229 msgid "Title (BBCode not allowed)" msgstr "" -#: src/Module/Calendar/Event/Form.php:239 +#: src/Module/Calendar/Event/Form.php:225 msgid "Description (BBCode allowed)" msgstr "" -#: src/Module/Calendar/Event/Form.php:241 +#: src/Module/Calendar/Event/Form.php:227 msgid "Location (BBCode not allowed)" msgstr "" -#: src/Module/Calendar/Event/Form.php:244 -#: src/Module/Calendar/Event/Form.php:245 +#: src/Module/Calendar/Event/Form.php:230 +#: src/Module/Calendar/Event/Form.php:231 msgid "Share this event" msgstr "Udostępnij te wydarzenie" -#: src/Module/Calendar/Event/Form.php:251 src/Module/Profile/Profile.php:277 +#: src/Module/Calendar/Event/Form.php:237 src/Module/Profile/Profile.php:263 msgid "Basic" msgstr "Podstawowy" -#: src/Module/Calendar/Export.php:94 +#: src/Module/Calendar/Export.php:80 msgid "This calendar format is not supported" msgstr "Ten format kalendarza nie jest obsługiwany" -#: src/Module/Calendar/Export.php:96 +#: src/Module/Calendar/Export.php:82 msgid "No exportable data found" msgstr "Nie znaleziono danych do eksportu" -#: src/Module/Calendar/Export.php:113 +#: src/Module/Calendar/Export.php:99 msgid "calendar" msgstr "kalendarz" -#: src/Module/Calendar/Show.php:124 +#: src/Module/Calendar/Show.php:110 msgid "Events" msgstr "Wydarzenia" -#: src/Module/Calendar/Show.php:125 +#: src/Module/Calendar/Show.php:111 msgid "View" msgstr "Widok" -#: src/Module/Calendar/Show.php:126 +#: src/Module/Calendar/Show.php:112 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:118 src/Module/Settings/Display.php:283 msgid "list" msgstr "lista" -#: src/Module/Circle.php:57 +#: src/Module/Circle.php:43 msgid "Could not create circle." msgstr "" -#: src/Module/Circle.php:68 src/Module/Circle.php:216 -#: src/Module/Circle.php:240 +#: src/Module/Circle.php:54 src/Module/Circle.php:202 +#: src/Module/Circle.php:226 msgid "Circle not found." msgstr "" -#: src/Module/Circle.php:74 +#: src/Module/Circle.php:60 msgid "Circle name was not changed." msgstr "" -#: src/Module/Circle.php:92 +#: src/Module/Circle.php:78 msgid "Unknown circle." msgstr "" -#: src/Module/Circle.php:98 src/Module/Circle.php:107 -#: src/Module/Contact/Advanced.php:70 src/Module/Contact/Advanced.php:109 -#: src/Module/Contact/Contacts.php:71 src/Module/Contact/Conversations.php:86 -#: src/Module/Contact/Conversations.php:91 -#: src/Module/Contact/Conversations.php:96 src/Module/Contact/Media.php:61 -#: src/Module/Contact/Posts.php:78 src/Module/Contact/Posts.php:83 -#: src/Module/Contact/Posts.php:88 src/Module/Contact/Profile.php:159 -#: src/Module/Contact/Profile.php:164 src/Module/Contact/Profile.php:183 -#: src/Module/Contact/Redir.php:91 src/Module/Contact/Redir.php:145 -#: src/Module/FriendSuggest.php:71 src/Module/FriendSuggest.php:109 +#: src/Module/Circle.php:84 src/Module/Circle.php:93 +#: src/Module/Contact/Advanced.php:56 src/Module/Contact/Advanced.php:95 +#: src/Module/Contact/Contacts.php:57 src/Module/Contact/Conversations.php:72 +#: src/Module/Contact/Conversations.php:77 +#: src/Module/Contact/Conversations.php:82 src/Module/Contact/Media.php:47 +#: src/Module/Contact/Posts.php:64 src/Module/Contact/Posts.php:69 +#: src/Module/Contact/Posts.php:74 src/Module/Contact/Profile.php:145 +#: src/Module/Contact/Profile.php:150 src/Module/Contact/Profile.php:169 +#: src/Module/Contact/Redir.php:77 src/Module/Contact/Redir.php:131 +#: src/Module/FriendSuggest.php:57 src/Module/FriendSuggest.php:95 msgid "Contact not found." msgstr "Nie znaleziono kontaktu." -#: src/Module/Circle.php:102 src/Module/Contact/Contacts.php:66 +#: src/Module/Circle.php:88 src/Module/Contact/Contacts.php:52 msgid "Invalid contact." msgstr "Nieprawidłowy kontakt." -#: src/Module/Circle.php:111 src/Module/Contact/Revoke.php:70 +#: src/Module/Circle.php:97 src/Module/Contact/Revoke.php:56 msgid "Contact is deleted." msgstr "Kontakt został usunięty." -#: src/Module/Circle.php:117 +#: src/Module/Circle.php:103 msgid "Unable to add the contact to the circle." msgstr "" -#: src/Module/Circle.php:120 +#: src/Module/Circle.php:106 msgid "Contact successfully added to circle." msgstr "" -#: src/Module/Circle.php:124 +#: src/Module/Circle.php:110 msgid "Unable to remove the contact from the circle." msgstr "" -#: src/Module/Circle.php:127 +#: src/Module/Circle.php:113 msgid "Contact successfully removed from circle." msgstr "" -#: src/Module/Circle.php:131 +#: src/Module/Circle.php:117 msgid "Bad request." msgstr "Błędne żądanie." -#: src/Module/Circle.php:172 +#: src/Module/Circle.php:158 msgid "Save Circle" msgstr "" -#: src/Module/Circle.php:173 +#: src/Module/Circle.php:159 msgid "Filter" msgstr "Filtr" -#: src/Module/Circle.php:179 +#: src/Module/Circle.php:165 msgid "Create a circle of contacts/friends." msgstr "" -#: src/Module/Circle.php:221 +#: src/Module/Circle.php:207 msgid "Unable to remove circle." msgstr "" -#: src/Module/Circle.php:272 +#: src/Module/Circle.php:258 msgid "Delete Circle" msgstr "" -#: src/Module/Circle.php:282 +#: src/Module/Circle.php:268 msgid "Edit Circle Name" msgstr "" -#: src/Module/Circle.php:292 +#: src/Module/Circle.php:278 msgid "Members" msgstr "Członkowie" -#: src/Module/Circle.php:295 +#: src/Module/Circle.php:281 msgid "Circle is empty" msgstr "" -#: src/Module/Circle.php:311 +#: src/Module/Circle.php:297 msgid "Remove contact from circle" msgstr "" -#: src/Module/Circle.php:334 +#: src/Module/Circle.php:320 msgid "Click on a contact to add or remove." msgstr "Kliknij na kontakt w celu dodania lub usunięcia." -#: src/Module/Circle.php:351 +#: src/Module/Circle.php:337 msgid "Add contact to circle" msgstr "" -#: src/Module/Contact.php:102 +#: src/Module/Contact.php:88 #, php-format msgid "%d contact edited." msgid_plural "%d contacts edited." @@ -6547,192 +6546,192 @@ msgstr[1] "Zedytowano %d kontakty." msgstr[2] "Zedytowano %d kontaktów." msgstr[3] "%dedytuj kontakty." -#: src/Module/Contact.php:353 +#: src/Module/Contact.php:328 msgid "Show all contacts" msgstr "Pokaż wszystkie kontakty" -#: src/Module/Contact.php:358 src/Module/Contact.php:437 -#: src/Module/Moderation/BaseUsers.php:85 +#: src/Module/Contact.php:333 src/Module/Contact.php:412 +#: src/Module/Moderation/BaseUsers.php:72 msgid "Pending" msgstr "Oczekujące" -#: src/Module/Contact.php:361 +#: src/Module/Contact.php:336 msgid "Only show pending contacts" msgstr "Pokaż tylko oczekujące kontakty" -#: src/Module/Contact.php:366 src/Module/Contact.php:440 -#: src/Module/Moderation/BaseUsers.php:93 +#: src/Module/Contact.php:341 src/Module/Contact.php:415 +#: src/Module/Moderation/BaseUsers.php:80 msgid "Blocked" msgstr "Zablokowane" -#: src/Module/Contact.php:369 +#: src/Module/Contact.php:344 msgid "Only show blocked contacts" msgstr "Pokaż tylko zablokowane kontakty" -#: src/Module/Contact.php:374 src/Module/Contact.php:446 -#: src/Module/Settings/Server/Index.php:107 src/Object/Post.php:399 +#: src/Module/Contact.php:349 src/Module/Contact.php:421 +#: src/Module/Settings/Server/Index.php:93 src/Object/Post.php:385 msgid "Ignored" msgstr "Ignorowane" -#: src/Module/Contact.php:377 +#: src/Module/Contact.php:352 msgid "Only show ignored contacts" msgstr "Pokaż tylko ignorowane kontakty" -#: src/Module/Contact.php:382 src/Module/Contact.php:449 +#: src/Module/Contact.php:357 src/Module/Contact.php:424 msgid "Collapsed" msgstr "" -#: src/Module/Contact.php:385 +#: src/Module/Contact.php:360 msgid "Only show collapsed contacts" msgstr "" -#: src/Module/Contact.php:390 src/Module/Contact.php:452 +#: src/Module/Contact.php:365 src/Module/Contact.php:427 msgid "Archived" msgstr "Zarchiwizowane" -#: src/Module/Contact.php:393 +#: src/Module/Contact.php:368 msgid "Only show archived contacts" msgstr "Pokaż tylko zarchiwizowane kontakty" -#: src/Module/Contact.php:398 src/Module/Contact.php:443 +#: src/Module/Contact.php:373 src/Module/Contact.php:418 msgid "Hidden" msgstr "Ukryte" -#: src/Module/Contact.php:401 +#: src/Module/Contact.php:376 msgid "Only show hidden contacts" msgstr "Pokaż tylko ukryte kontakty" -#: src/Module/Contact.php:409 +#: src/Module/Contact.php:384 msgid "Organize your contact circles" msgstr "" -#: src/Module/Contact.php:464 +#: src/Module/Contact.php:439 msgid "Search your contacts" msgstr "Wyszukaj w kontaktach" -#: src/Module/Contact.php:465 src/Module/Search/Index.php:207 +#: src/Module/Contact.php:440 src/Module/Search/Index.php:193 #, php-format msgid "Results for: %s" msgstr "Wyniki dla: %s" -#: src/Module/Contact.php:473 +#: src/Module/Contact.php:448 msgid "Update" msgstr "Zaktualizuj" -#: src/Module/Contact.php:474 src/Module/Contact/Profile.php:532 -#: src/Module/Moderation/Blocklist/Contact.php:117 -#: src/Module/Moderation/Users/Blocked.php:138 -#: src/Module/Moderation/Users/Index.php:154 +#: src/Module/Contact.php:449 src/Module/Contact/Profile.php:518 +#: src/Module/Moderation/Blocklist/Contact.php:103 +#: src/Module/Moderation/Users/Blocked.php:124 +#: src/Module/Moderation/Users/Index.php:140 msgid "Unblock" msgstr "Odblokuj" -#: src/Module/Contact.php:475 src/Module/Contact/Profile.php:540 +#: src/Module/Contact.php:450 src/Module/Contact/Profile.php:526 msgid "Unignore" msgstr "Odblokuj" -#: src/Module/Contact.php:476 src/Module/Contact/Profile.php:548 +#: src/Module/Contact.php:451 src/Module/Contact/Profile.php:534 msgid "Uncollapse" msgstr "" -#: src/Module/Contact.php:478 +#: src/Module/Contact.php:453 msgid "Batch Actions" msgstr "Akcje wsadowe" -#: src/Module/Contact.php:521 +#: src/Module/Contact.php:496 msgid "Conversations started by this contact" msgstr "Rozmowy rozpoczęły się od tego kontaktu" -#: src/Module/Contact.php:526 +#: src/Module/Contact.php:501 msgid "Posts and Comments" msgstr "Wpisy i komentarze" -#: src/Module/Contact.php:529 +#: src/Module/Contact.php:504 msgid "Individual Posts and Replies" msgstr "" -#: src/Module/Contact.php:537 +#: src/Module/Contact.php:512 msgid "Posts containing media objects" msgstr "Wpisy zawierające obiekty multimedialne" -#: src/Module/Contact.php:545 +#: src/Module/Contact.php:520 msgid "View all known contacts" msgstr "Zobacz wszystkie znane kontakty" -#: src/Module/Contact.php:556 +#: src/Module/Contact.php:531 msgid "Advanced Contact Settings" msgstr "Zaawansowane ustawienia kontaktów" -#: src/Module/Contact.php:592 +#: src/Module/Contact.php:567 msgid "Mutual Friendship" msgstr "Wzajemna przyjaźń" -#: src/Module/Contact.php:596 +#: src/Module/Contact.php:571 msgid "is a fan of yours" msgstr "jest twoim fanem" -#: src/Module/Contact.php:600 +#: src/Module/Contact.php:575 msgid "you are a fan of" msgstr "jesteś fanem" -#: src/Module/Contact.php:618 +#: src/Module/Contact.php:593 msgid "Pending outgoing contact request" msgstr "Oczekujące żądanie kontaktu wychodzącego" -#: src/Module/Contact.php:620 +#: src/Module/Contact.php:595 msgid "Pending incoming contact request" msgstr "Oczekujące żądanie kontaktu przychodzącego" -#: src/Module/Contact.php:633 src/Module/Contact/Profile.php:391 +#: src/Module/Contact.php:608 src/Module/Contact/Profile.php:377 #, php-format msgid "Visit %s's profile [%s]" msgstr "Obejrzyj %s's profil [%s]" -#: src/Module/Contact/Advanced.php:99 +#: src/Module/Contact/Advanced.php:85 msgid "Contact update failed." msgstr "Nie udało się zaktualizować kontaktu." -#: src/Module/Contact/Advanced.php:130 +#: src/Module/Contact/Advanced.php:116 msgid "Return to contact editor" msgstr "Wróć do edytora kontaktów" -#: src/Module/Contact/Advanced.php:134 -#: src/Module/Moderation/Blocklist/Contact.php:122 -#: src/Module/Moderation/Reports.php:116 -#: src/Module/Moderation/Users/Active.php:126 -#: src/Module/Moderation/Users/Blocked.php:126 -#: src/Module/Moderation/Users/Create.php:70 -#: src/Module/Moderation/Users/Deleted.php:83 -#: src/Module/Moderation/Users/Index.php:140 -#: src/Module/Moderation/Users/Index.php:160 -#: src/Module/Moderation/Users/Pending.php:99 src/Module/Settings/OAuth.php:72 +#: src/Module/Contact/Advanced.php:120 +#: src/Module/Moderation/Blocklist/Contact.php:108 +#: src/Module/Moderation/Reports.php:102 +#: src/Module/Moderation/Users/Active.php:112 +#: src/Module/Moderation/Users/Blocked.php:112 +#: src/Module/Moderation/Users/Create.php:56 +#: src/Module/Moderation/Users/Deleted.php:69 +#: src/Module/Moderation/Users/Index.php:126 +#: src/Module/Moderation/Users/Index.php:146 +#: src/Module/Moderation/Users/Pending.php:85 src/Module/Settings/OAuth.php:58 msgid "Name" msgstr "Nazwa" -#: src/Module/Contact/Advanced.php:135 +#: src/Module/Contact/Advanced.php:121 msgid "Account Nickname" msgstr "Nazwa konta" -#: src/Module/Contact/Advanced.php:136 +#: src/Module/Contact/Advanced.php:122 msgid "Account URL" msgstr "Adres URL konta" -#: src/Module/Contact/Advanced.php:137 +#: src/Module/Contact/Advanced.php:123 msgid "Poll/Feed URL" msgstr "Adres Ankiety/RSS" -#: src/Module/Contact/Advanced.php:138 +#: src/Module/Contact/Advanced.php:124 msgid "New photo from this URL" msgstr "Nowe zdjęcie z tego adresu URL" -#: src/Module/Contact/Contacts.php:89 +#: src/Module/Contact/Contacts.php:75 msgid "No known contacts." msgstr "Brak znanych kontaktów." -#: src/Module/Contact/Contacts.php:103 src/Module/Profile/Common.php:128 +#: src/Module/Contact/Contacts.php:89 src/Module/Profile/Common.php:114 msgid "No common contacts." msgstr "Brak wspólnych kontaktów." -#: src/Module/Contact/Contacts.php:115 src/Module/Profile/Contacts.php:135 +#: src/Module/Contact/Contacts.php:101 src/Module/Profile/Contacts.php:121 #, php-format msgid "Follower (%s)" msgid_plural "Followers (%s)" @@ -6741,7 +6740,7 @@ msgstr[1] "Obserwujących (%s)" msgstr[2] "Obserwujących (%s)" msgstr[3] "Obserwujących (%s)" -#: src/Module/Contact/Contacts.php:119 src/Module/Profile/Contacts.php:138 +#: src/Module/Contact/Contacts.php:105 src/Module/Profile/Contacts.php:124 #, php-format msgid "Following (%s)" msgid_plural "Following (%s)" @@ -6750,7 +6749,7 @@ msgstr[1] "Obserwowanych (%s)" msgstr[2] "Obserwowanych (%s)" msgstr[3] "Obserwowanych (%s)" -#: src/Module/Contact/Contacts.php:123 src/Module/Profile/Contacts.php:141 +#: src/Module/Contact/Contacts.php:109 src/Module/Profile/Contacts.php:127 #, php-format msgid "Mutual friend (%s)" msgid_plural "Mutual friends (%s)" @@ -6759,12 +6758,12 @@ msgstr[1] "Wspólnych przyjaciół (%s)" msgstr[2] "Wspólnych przyjaciół (%s)" msgstr[3] "Wspólnych przyjaciół (%s)" -#: src/Module/Contact/Contacts.php:125 src/Module/Profile/Contacts.php:143 +#: src/Module/Contact/Contacts.php:111 src/Module/Profile/Contacts.php:129 #, php-format msgid "These contacts both follow and are followed by %s." msgstr "Te kontakty zarówno śledzą, jak i są śledzone przez %s." -#: src/Module/Contact/Contacts.php:131 src/Module/Profile/Common.php:116 +#: src/Module/Contact/Contacts.php:117 src/Module/Profile/Common.php:102 #, php-format msgid "Common contact (%s)" msgid_plural "Common contacts (%s)" @@ -6773,14 +6772,14 @@ msgstr[1] "Wspólne kontakty (%s)" msgstr[2] "Wspólnych kontaktów (%s)" msgstr[3] "Wspólnych kontaktów (%s)" -#: src/Module/Contact/Contacts.php:133 src/Module/Profile/Common.php:118 +#: src/Module/Contact/Contacts.php:119 src/Module/Profile/Common.php:104 #, php-format msgid "" "Both %s and yourself have publicly interacted with these " "contacts (follow, comment or likes on public posts)." msgstr "Zarówno %s, jak i Ty, nawiązaliście publiczną interakcję z tymi kontaktami (obserwujecie, komentujecie lub polubiliście publiczne wpisy)." -#: src/Module/Contact/Contacts.php:139 src/Module/Profile/Contacts.php:149 +#: src/Module/Contact/Contacts.php:125 src/Module/Profile/Contacts.php:135 #, php-format msgid "Contact (%s)" msgid_plural "Contacts (%s)" @@ -6789,333 +6788,329 @@ msgstr[1] "Kontakty (%s)" msgstr[2] "Kontaktów (%s)" msgstr[3] "Kontaktów (%s)" -#: src/Module/Contact/Follow.php:70 src/Module/Contact/Redir.php:59 -#: src/Module/Contact/Redir.php:220 src/Module/Conversation/Community.php:166 -#: src/Module/Debug/ItemBody.php:38 src/Module/Diaspora/Receive.php:59 -#: src/Module/Item/Display.php:96 src/Module/Item/Feed.php:59 -#: src/Module/Item/Follow.php:41 src/Module/Item/Ignore.php:41 -#: src/Module/Item/Language.php:53 src/Module/Item/Pin.php:41 -#: src/Module/Item/Pin.php:56 src/Module/Item/Searchtext.php:53 -#: src/Module/Item/Star.php:42 src/Module/Update/Display.php:37 +#: src/Module/Contact/Follow.php:56 src/Module/Contact/Redir.php:45 +#: src/Module/Contact/Redir.php:206 src/Module/Conversation/Community.php:154 +#: src/Module/Debug/ItemBody.php:24 src/Module/Diaspora/Receive.php:45 +#: src/Module/Item/Display.php:82 src/Module/Item/Feed.php:45 +#: src/Module/Item/Follow.php:27 src/Module/Item/Ignore.php:27 +#: src/Module/Item/Language.php:39 src/Module/Item/Pin.php:27 +#: src/Module/Item/Pin.php:42 src/Module/Item/Searchtext.php:39 +#: src/Module/Item/Star.php:28 src/Module/Update/Display.php:23 msgid "Access denied." msgstr "Brak dostępu." -#: src/Module/Contact/Follow.php:105 src/Module/Contact/Unfollow.php:125 -#: src/Module/Profile/RemoteFollow.php:133 +#: src/Module/Contact/Follow.php:91 src/Module/Contact/Unfollow.php:111 +#: src/Module/Profile/RemoteFollow.php:119 msgid "Submit Request" msgstr "Wyślij zgłoszenie" -#: src/Module/Contact/Follow.php:115 +#: src/Module/Contact/Follow.php:101 msgid "You already added this contact." msgstr "Już dodałeś ten kontakt." -#: src/Module/Contact/Follow.php:130 +#: src/Module/Contact/Follow.php:116 msgid "The network type couldn't be detected. Contact can't be added." msgstr "Nie można wykryć typu sieci. Kontakt nie może zostać dodany." -#: src/Module/Contact/Follow.php:138 +#: src/Module/Contact/Follow.php:124 msgid "Diaspora support isn't enabled. Contact can't be added." msgstr "Obsługa Diaspory nie jest włączona. Kontakt nie może zostać dodany." -#: src/Module/Contact/Follow.php:143 -msgid "OStatus support is disabled. Contact can't be added." -msgstr "Obsługa OStatus jest wyłączona. Kontakt nie może zostać dodany." - -#: src/Module/Contact/Follow.php:168 src/Module/Profile/RemoteFollow.php:132 +#: src/Module/Contact/Follow.php:149 src/Module/Profile/RemoteFollow.php:118 msgid "Please answer the following:" msgstr "Proszę odpowiedzieć na następujące pytania:" -#: src/Module/Contact/Follow.php:169 src/Module/Contact/Unfollow.php:123 +#: src/Module/Contact/Follow.php:150 src/Module/Contact/Unfollow.php:109 msgid "Your Identity Address:" msgstr "Twój adres tożsamości:" -#: src/Module/Contact/Follow.php:170 src/Module/Contact/Profile.php:422 -#: src/Module/Contact/Unfollow.php:129 -#: src/Module/Moderation/Blocklist/Contact.php:131 -#: src/Module/Moderation/Reports.php:123 -#: src/Module/Notifications/Introductions.php:135 -#: src/Module/Notifications/Introductions.php:204 +#: src/Module/Contact/Follow.php:151 src/Module/Contact/Profile.php:408 +#: src/Module/Contact/Unfollow.php:115 +#: src/Module/Moderation/Blocklist/Contact.php:117 +#: src/Module/Moderation/Reports.php:109 +#: src/Module/Notifications/Introductions.php:121 +#: src/Module/Notifications/Introductions.php:190 msgid "Profile URL" msgstr "Adres URL profilu" -#: src/Module/Contact/Follow.php:171 src/Module/Contact/Profile.php:434 -#: src/Module/Notifications/Introductions.php:197 -#: src/Module/Profile/Profile.php:236 +#: src/Module/Contact/Follow.php:152 src/Module/Contact/Profile.php:420 +#: src/Module/Notifications/Introductions.php:183 +#: src/Module/Profile/Profile.php:222 msgid "Tags:" msgstr "Znaczniki:" -#: src/Module/Contact/Follow.php:182 +#: src/Module/Contact/Follow.php:163 #, php-format msgid "%s knows you" msgstr "%s zna cię" -#: src/Module/Contact/Follow.php:183 +#: src/Module/Contact/Follow.php:164 msgid "Add a personal note:" msgstr "Dodaj osobistą notkę:" -#: src/Module/Contact/Follow.php:192 src/Module/Contact/Unfollow.php:138 +#: src/Module/Contact/Follow.php:173 src/Module/Contact/Unfollow.php:124 msgid "Posts and Replies" msgstr "" -#: src/Module/Contact/Follow.php:221 +#: src/Module/Contact/Follow.php:202 msgid "The contact could not be added." msgstr "Nie można dodać kontaktu." -#: src/Module/Contact/MatchInterests.php:95 -#: src/Module/Media/Attachment/Upload.php:77 -#: src/Module/Media/Attachment/Upload.php:82 -#: src/Module/Media/Photo/Upload.php:81 src/Module/Media/Photo/Upload.php:86 -#: src/Module/Media/Photo/Upload.php:135 +#: src/Module/Contact/MatchInterests.php:81 +#: src/Module/Media/Attachment/Upload.php:63 +#: src/Module/Media/Attachment/Upload.php:68 +#: src/Module/Media/Photo/Upload.php:67 src/Module/Media/Photo/Upload.php:72 +#: src/Module/Media/Photo/Upload.php:121 msgid "Invalid request." msgstr "Nieprawidłowe żądanie." -#: src/Module/Contact/MatchInterests.php:102 +#: src/Module/Contact/MatchInterests.php:88 msgid "No keywords to match. Please add keywords to your profile." msgstr "Brak pasujących słów kluczowych. Dodaj słowa kluczowe do swojego profilu." -#: src/Module/Contact/MatchInterests.php:145 +#: src/Module/Contact/MatchInterests.php:141 msgid "Profile Match" msgstr "Dopasowanie profilu" -#: src/Module/Contact/Profile.php:145 +#: src/Module/Contact/Profile.php:131 msgid "Failed to update contact record." msgstr "Aktualizacja rekordu kontaktu nie powiodła się." -#: src/Module/Contact/Profile.php:209 +#: src/Module/Contact/Profile.php:195 msgid "Contact has been unblocked" msgstr "Kontakt został odblokowany" -#: src/Module/Contact/Profile.php:213 +#: src/Module/Contact/Profile.php:199 msgid "Contact has been blocked" msgstr "Kontakt został zablokowany" -#: src/Module/Contact/Profile.php:225 +#: src/Module/Contact/Profile.php:211 msgid "Contact has been unignored" msgstr "Kontakt nie jest ignorowany" -#: src/Module/Contact/Profile.php:229 +#: src/Module/Contact/Profile.php:215 msgid "Contact has been ignored" msgstr "Kontakt jest ignorowany" -#: src/Module/Contact/Profile.php:241 +#: src/Module/Contact/Profile.php:227 msgid "Contact has been uncollapsed" msgstr "" -#: src/Module/Contact/Profile.php:245 +#: src/Module/Contact/Profile.php:231 msgid "Contact has been collapsed" msgstr "" -#: src/Module/Contact/Profile.php:273 +#: src/Module/Contact/Profile.php:259 #, php-format msgid "You are mutual friends with %s" msgstr "Jesteś już znajomym z %s" -#: src/Module/Contact/Profile.php:274 +#: src/Module/Contact/Profile.php:260 #, php-format msgid "You are sharing with %s" msgstr "Współdzielisz z %s" -#: src/Module/Contact/Profile.php:275 +#: src/Module/Contact/Profile.php:261 #, php-format msgid "%s is sharing with you" msgstr "%s współdzieli z tobą" -#: src/Module/Contact/Profile.php:291 +#: src/Module/Contact/Profile.php:277 msgid "Private communications are not available for this contact." msgstr "Nie można nawiązać prywatnej rozmowy z tym kontaktem." -#: src/Module/Contact/Profile.php:301 +#: src/Module/Contact/Profile.php:287 msgid "This contact is on a server you ignored." msgstr "" -#: src/Module/Contact/Profile.php:304 +#: src/Module/Contact/Profile.php:290 msgid "Never" msgstr "Nigdy" -#: src/Module/Contact/Profile.php:307 +#: src/Module/Contact/Profile.php:293 msgid "(Update was not successful)" msgstr "(Aktualizacja nie powiodła się)" -#: src/Module/Contact/Profile.php:307 +#: src/Module/Contact/Profile.php:293 msgid "(Update was successful)" msgstr "(Aktualizacja przebiegła pomyślnie)" -#: src/Module/Contact/Profile.php:309 src/Module/Contact/Profile.php:503 +#: src/Module/Contact/Profile.php:295 src/Module/Contact/Profile.php:489 msgid "Suggest friends" msgstr "Osoby, które możesz znać" -#: src/Module/Contact/Profile.php:313 +#: src/Module/Contact/Profile.php:299 #, php-format msgid "Network type: %s" msgstr "Typ sieci: %s" -#: src/Module/Contact/Profile.php:318 +#: src/Module/Contact/Profile.php:304 msgid "Communications lost with this contact!" msgstr "Utracono komunikację z tym kontaktem!" -#: src/Module/Contact/Profile.php:324 +#: src/Module/Contact/Profile.php:310 msgid "Fetch further information for feeds" msgstr "Pobierz dalsze informacje dla kanałów" -#: src/Module/Contact/Profile.php:326 +#: src/Module/Contact/Profile.php:312 msgid "" "Fetch information like preview pictures, title and teaser from the feed " "item. You can activate this if the feed doesn't contain much text. Keywords " "are taken from the meta header in the feed item and are posted as hash tags." msgstr "Pobieranie informacji, takich jak zdjęcia podglądu, tytuł i zwiastun z elementu kanału. Możesz to aktywować, jeśli plik danych nie zawiera dużo tekstu. Słowa kluczowe są pobierane z nagłówka meta w elemencie kanału i są publikowane jako znaczniki haszowania." -#: src/Module/Contact/Profile.php:329 +#: src/Module/Contact/Profile.php:315 msgid "Fetch information" msgstr "Pobierz informacje" -#: src/Module/Contact/Profile.php:330 +#: src/Module/Contact/Profile.php:316 msgid "Fetch keywords" msgstr "Pobierz słowa kluczowe" -#: src/Module/Contact/Profile.php:331 +#: src/Module/Contact/Profile.php:317 msgid "Fetch information and keywords" msgstr "Pobierz informacje i słowa kluczowe" -#: src/Module/Contact/Profile.php:341 src/Module/Contact/Profile.php:346 -#: src/Module/Contact/Profile.php:351 src/Module/Contact/Profile.php:357 +#: src/Module/Contact/Profile.php:327 src/Module/Contact/Profile.php:332 +#: src/Module/Contact/Profile.php:337 src/Module/Contact/Profile.php:343 msgid "No mirroring" msgstr "Bez dublowania" -#: src/Module/Contact/Profile.php:342 src/Module/Contact/Profile.php:352 -#: src/Module/Contact/Profile.php:358 +#: src/Module/Contact/Profile.php:328 src/Module/Contact/Profile.php:338 +#: src/Module/Contact/Profile.php:344 msgid "Mirror as my own posting" msgstr "Lustro mojego własnego komentarza" -#: src/Module/Contact/Profile.php:347 src/Module/Contact/Profile.php:353 +#: src/Module/Contact/Profile.php:333 src/Module/Contact/Profile.php:339 msgid "Native reshare" msgstr "Udostępnianie natywne" -#: src/Module/Contact/Profile.php:373 +#: src/Module/Contact/Profile.php:359 msgid "Contact Information / Notes" msgstr "Informacje kontaktowe/Notatki" -#: src/Module/Contact/Profile.php:374 +#: src/Module/Contact/Profile.php:360 msgid "Contact Settings" msgstr "Ustawienia kontaktów" -#: src/Module/Contact/Profile.php:382 +#: src/Module/Contact/Profile.php:368 msgid "Contact" msgstr "Kontakt" -#: src/Module/Contact/Profile.php:386 +#: src/Module/Contact/Profile.php:372 msgid "Their personal note" msgstr "Ich osobista uwaga" -#: src/Module/Contact/Profile.php:388 +#: src/Module/Contact/Profile.php:374 msgid "Edit contact notes" msgstr "Edytuj notatki kontaktu" -#: src/Module/Contact/Profile.php:392 +#: src/Module/Contact/Profile.php:378 msgid "Block/Unblock contact" msgstr "Zablokuj/odblokuj kontakt" -#: src/Module/Contact/Profile.php:393 -#: src/Module/Moderation/Report/Create.php:293 +#: src/Module/Contact/Profile.php:379 +#: src/Module/Moderation/Report/Create.php:279 msgid "Ignore contact" msgstr "Ignoruj kontakt" -#: src/Module/Contact/Profile.php:394 +#: src/Module/Contact/Profile.php:380 msgid "View conversations" msgstr "Wyświetl rozmowy" -#: src/Module/Contact/Profile.php:399 +#: src/Module/Contact/Profile.php:385 msgid "Last update:" msgstr "Ostatnia aktualizacja:" -#: src/Module/Contact/Profile.php:401 +#: src/Module/Contact/Profile.php:387 msgid "Update public posts" msgstr "Zaktualizuj publiczne wpisy" -#: src/Module/Contact/Profile.php:403 src/Module/Contact/Profile.php:513 +#: src/Module/Contact/Profile.php:389 src/Module/Contact/Profile.php:499 msgid "Update now" msgstr "Aktualizuj teraz" -#: src/Module/Contact/Profile.php:405 +#: src/Module/Contact/Profile.php:391 msgid "Awaiting connection acknowledge" msgstr "Oczekiwanie na potwierdzenie połączenia" -#: src/Module/Contact/Profile.php:406 +#: src/Module/Contact/Profile.php:392 msgid "Currently blocked" msgstr "Obecnie zablokowany" -#: src/Module/Contact/Profile.php:407 +#: src/Module/Contact/Profile.php:393 msgid "Currently ignored" msgstr "Obecnie zignorowany" -#: src/Module/Contact/Profile.php:408 +#: src/Module/Contact/Profile.php:394 msgid "Currently collapsed" msgstr "" -#: src/Module/Contact/Profile.php:409 +#: src/Module/Contact/Profile.php:395 msgid "Currently archived" msgstr "Obecnie zarchiwizowany" -#: src/Module/Contact/Profile.php:412 +#: src/Module/Contact/Profile.php:398 msgid "Manage remote servers" msgstr "" -#: src/Module/Contact/Profile.php:414 -#: src/Module/Notifications/Introductions.php:198 +#: src/Module/Contact/Profile.php:400 +#: src/Module/Notifications/Introductions.php:184 msgid "Hide this contact from others" msgstr "Ukryj ten kontakt przed innymi" -#: src/Module/Contact/Profile.php:414 +#: src/Module/Contact/Profile.php:400 msgid "" "Replies/likes to your public posts may still be visible" msgstr "Odpowiedzi/kliknięcia \"lubię to\" do Twoich publicznych wpisów nadal mogą być widoczne" -#: src/Module/Contact/Profile.php:415 +#: src/Module/Contact/Profile.php:401 msgid "Notification for new posts" msgstr "Powiadomienie o nowych wpisach" -#: src/Module/Contact/Profile.php:415 +#: src/Module/Contact/Profile.php:401 msgid "Send a notification of every new post of this contact" msgstr "Wyślij powiadomienie o każdym nowym poście tego kontaktu" -#: src/Module/Contact/Profile.php:417 +#: src/Module/Contact/Profile.php:403 msgid "Keyword Deny List" msgstr "Lista odrzuconych słów kluczowych" -#: src/Module/Contact/Profile.php:417 +#: src/Module/Contact/Profile.php:403 msgid "" "Comma separated list of keywords that should not be converted to hashtags, " "when \"Fetch information and keywords\" is selected" msgstr "Rozdzielana przecinkami lista słów kluczowych, które nie powinny zostać przekonwertowane na hashtagi, gdy wybrana jest opcja 'Pobierz informacje i słowa kluczowe'" -#: src/Module/Contact/Profile.php:435 -#: src/Module/Settings/TwoFactor/Index.php:160 +#: src/Module/Contact/Profile.php:421 +#: src/Module/Settings/TwoFactor/Index.php:146 msgid "Actions" msgstr "Akcja" -#: src/Module/Contact/Profile.php:437 -#: src/Module/Settings/TwoFactor/Index.php:140 view/theme/frio/theme.php:232 +#: src/Module/Contact/Profile.php:423 +#: src/Module/Settings/TwoFactor/Index.php:126 view/theme/frio/theme.php:220 msgid "Status" msgstr "Stan" -#: src/Module/Contact/Profile.php:443 +#: src/Module/Contact/Profile.php:429 msgid "Mirror postings from this contact" msgstr "Publikacje lustrzane od tego kontaktu" -#: src/Module/Contact/Profile.php:445 +#: src/Module/Contact/Profile.php:431 msgid "" "Mark this contact as remote_self, this will cause friendica to repost new " "entries from this contact." msgstr "Oznacz ten kontakt jako remote_self, spowoduje to, że friendica odeśle nowe wpisy z tego kontaktu." -#: src/Module/Contact/Profile.php:448 +#: src/Module/Contact/Profile.php:434 msgid "Channel Settings" msgstr "" -#: src/Module/Contact/Profile.php:449 +#: src/Module/Contact/Profile.php:435 msgid "Frequency of this contact in relevant channels" msgstr "" -#: src/Module/Contact/Profile.php:450 +#: src/Module/Contact/Profile.php:436 msgid "" "Depending on the type of the channel not all posts from this contact are " "displayed. By default, posts need to have a minimum amount of interactions " @@ -7125,201 +7120,201 @@ msgid "" "block or hide the contact completely." msgstr "" -#: src/Module/Contact/Profile.php:451 +#: src/Module/Contact/Profile.php:437 msgid "Default frequency" msgstr "" -#: src/Module/Contact/Profile.php:451 +#: src/Module/Contact/Profile.php:437 msgid "" "Posts by this contact are displayed in the \"for you\" channel if you " "interact often with this contact or if a post reached some level of " "interaction." msgstr "" -#: src/Module/Contact/Profile.php:452 +#: src/Module/Contact/Profile.php:438 msgid "Display all posts of this contact" msgstr "" -#: src/Module/Contact/Profile.php:452 +#: src/Module/Contact/Profile.php:438 msgid "All posts from this contact will appear on the \"for you\" channel" msgstr "" -#: src/Module/Contact/Profile.php:453 +#: src/Module/Contact/Profile.php:439 msgid "Display only few posts" msgstr "" -#: src/Module/Contact/Profile.php:453 +#: src/Module/Contact/Profile.php:439 msgid "" "When a contact creates a lot of posts in a short period, this setting " "reduces the number of displayed posts in every channel." msgstr "" -#: src/Module/Contact/Profile.php:454 +#: src/Module/Contact/Profile.php:440 msgid "Never display posts" msgstr "" -#: src/Module/Contact/Profile.php:454 +#: src/Module/Contact/Profile.php:440 msgid "Posts from this contact will never be displayed in any channel" msgstr "" -#: src/Module/Contact/Profile.php:455 +#: src/Module/Contact/Profile.php:441 msgid "Channel Only" msgstr "" -#: src/Module/Contact/Profile.php:455 +#: src/Module/Contact/Profile.php:441 msgid "" "If enabled, posts from this contact will only appear in channels and network" " streams in circles, but not in the general network stream." msgstr "" -#: src/Module/Contact/Profile.php:523 +#: src/Module/Contact/Profile.php:509 msgid "Refetch contact data" msgstr "Pobierz ponownie dane kontaktowe" -#: src/Module/Contact/Profile.php:534 +#: src/Module/Contact/Profile.php:520 msgid "Toggle Blocked status" msgstr "Przełącz stan na Zablokowany" -#: src/Module/Contact/Profile.php:542 +#: src/Module/Contact/Profile.php:528 msgid "Toggle Ignored status" msgstr "Przełącz stan na Ignorowany" -#: src/Module/Contact/Profile.php:550 +#: src/Module/Contact/Profile.php:536 msgid "Toggle Collapsed status" msgstr "" -#: src/Module/Contact/Profile.php:557 src/Module/Contact/Revoke.php:103 +#: src/Module/Contact/Profile.php:543 src/Module/Contact/Revoke.php:89 msgid "Revoke Follow" msgstr "Anuluj obserwowanie" -#: src/Module/Contact/Profile.php:559 +#: src/Module/Contact/Profile.php:545 msgid "Revoke the follow from this contact" msgstr "Anuluj obserwację przez ten kontakt" -#: src/Module/Contact/Redir.php:139 +#: src/Module/Contact/Redir.php:125 msgid "Bad Request." msgstr "Błędne zapytanie." -#: src/Module/Contact/Revoke.php:74 +#: src/Module/Contact/Revoke.php:60 msgid "Contact is being deleted." msgstr "Kontakt jest usuwany." -#: src/Module/Contact/Revoke.php:88 +#: src/Module/Contact/Revoke.php:74 msgid "Follow was successfully revoked." msgstr "Obserwacja została pomyślnie anulowana." -#: src/Module/Contact/Revoke.php:104 +#: src/Module/Contact/Revoke.php:90 msgid "" "Do you really want to revoke this contact's follow? This cannot be undone " "and they will have to manually follow you back again." msgstr "Czy na pewno chcesz cofnąć obserwowanie przez ten kontakt? Nie można tego cofnąć i przy chęci przywrócenia obserwacji będzie trzeba zrobić to ponownie ręcznie." -#: src/Module/Contact/Suggestions.php:62 +#: src/Module/Contact/Suggestions.php:48 msgid "" "No suggestions available. If this is a new site, please try again in 24 " "hours." msgstr "Brak dostępnych sugestii. Jeśli jest to nowa witryna, spróbuj ponownie za 24 godziny." -#: src/Module/Contact/Unfollow.php:98 src/Module/Contact/Unfollow.php:167 +#: src/Module/Contact/Unfollow.php:84 src/Module/Contact/Unfollow.php:153 msgid "You aren't following this contact." msgstr "Nie obserwujesz tego kontaktu." -#: src/Module/Contact/Unfollow.php:103 +#: src/Module/Contact/Unfollow.php:89 msgid "Unfollowing is currently not supported by your network." msgstr "Brak obserwowania nie jest obecnie obsługiwany przez twoją sieć." -#: src/Module/Contact/Unfollow.php:121 +#: src/Module/Contact/Unfollow.php:107 msgid "Disconnect/Unfollow" msgstr "Rozłącz/Nie obserwuj" -#: src/Module/Contact/Unfollow.php:175 +#: src/Module/Contact/Unfollow.php:161 msgid "Contact was successfully unfollowed" msgstr "Kontakt pomyślnie przestał być obserwowany" -#: src/Module/Contact/Unfollow.php:178 +#: src/Module/Contact/Unfollow.php:164 msgid "Unable to unfollow this contact, please contact your administrator" msgstr "Nie można przestać obserwować tego kontaktu, skontaktuj się z administratorem" -#: src/Module/Conversation/Channel.php:139 -#: src/Module/Conversation/Community.php:126 src/Module/Search/Index.php:152 -#: src/Module/Search/Index.php:194 +#: src/Module/Conversation/Channel.php:125 +#: src/Module/Conversation/Community.php:114 src/Module/Search/Index.php:138 +#: src/Module/Search/Index.php:180 msgid "No results." msgstr "Brak wyników." -#: src/Module/Conversation/Channel.php:177 +#: src/Module/Conversation/Channel.php:163 msgid "Channel not available." msgstr "" -#: src/Module/Conversation/Community.php:92 +#: src/Module/Conversation/Community.php:80 msgid "" "This community stream shows all public posts received by this node. They may" " not reflect the opinions of this node’s users." msgstr "Ten strumień społeczności pokazuje wszystkie publiczne posty otrzymane przez ten węzeł. Mogą nie odzwierciedlać opinii użytkowników tego węzła." -#: src/Module/Conversation/Community.php:180 +#: src/Module/Conversation/Community.php:168 msgid "Community option not available." msgstr "Opcja wspólnotowa jest niedostępna." -#: src/Module/Conversation/Community.php:196 +#: src/Module/Conversation/Community.php:184 msgid "Not available." msgstr "Niedostępne." -#: src/Module/Conversation/Network.php:216 +#: src/Module/Conversation/Network.php:202 msgid "No such circle" msgstr "" -#: src/Module/Conversation/Network.php:220 +#: src/Module/Conversation/Network.php:206 #, php-format msgid "Circle: %s" msgstr "" -#: src/Module/Conversation/Network.php:239 +#: src/Module/Conversation/Network.php:226 #, php-format msgid "Error %d (%s) while fetching the timeline." msgstr "" -#: src/Module/Conversation/Network.php:316 +#: src/Module/Conversation/Network.php:304 msgid "Network feed not available." msgstr "" -#: src/Module/Conversation/Timeline.php:204 +#: src/Module/Conversation/Timeline.php:190 msgid "Include" msgstr "Zawiera" -#: src/Module/Conversation/Timeline.php:205 +#: src/Module/Conversation/Timeline.php:191 msgid "Hide" msgstr "Ukryj" -#: src/Module/Credits.php:44 +#: src/Module/Credits.php:30 msgid "Credits" msgstr "Zaufany" -#: src/Module/Credits.php:45 +#: src/Module/Credits.php:31 msgid "" "Friendica is a community project, that would not be possible without the " "help of many people. Here is a list of those who have contributed to the " "code or the translation of Friendica. Thank you all!" msgstr "Friendica to projekt społecznościowy, który nie byłby możliwy bez pomocy wielu osób. Oto lista osób, które przyczyniły się do tworzenia kodu lub tłumaczenia Friendica. Dziękuję wam wszystkim!" -#: src/Module/Debug/ActivityPubConversion.php:59 +#: src/Module/Debug/ActivityPubConversion.php:45 msgid "Formatted" msgstr "Sformatowany" -#: src/Module/Debug/ActivityPubConversion.php:71 +#: src/Module/Debug/ActivityPubConversion.php:57 msgid "Activity" msgstr "Aktywność" -#: src/Module/Debug/ActivityPubConversion.php:123 +#: src/Module/Debug/ActivityPubConversion.php:109 msgid "Object data" msgstr "Dane obiektu" -#: src/Module/Debug/ActivityPubConversion.php:130 +#: src/Module/Debug/ActivityPubConversion.php:116 msgid "Result Item" msgstr "Pozycja wynikowa" -#: src/Module/Debug/ActivityPubConversion.php:135 -#: src/Module/Debug/Babel.php:300 src/Module/Moderation/Item/Source.php:93 -#: src/Module/Security/TwoFactor/Verify.php:98 +#: src/Module/Debug/ActivityPubConversion.php:121 +#: src/Module/Debug/Babel.php:286 src/Module/Moderation/Item/Source.php:79 +#: src/Module/Security/TwoFactor/Verify.php:84 msgid "Error" msgid_plural "Errors" msgstr[0] "Błąd" @@ -7327,506 +7322,506 @@ msgstr[1] "Błędów" msgstr[2] "Błędy" msgstr[3] "Błędów" -#: src/Module/Debug/ActivityPubConversion.php:144 +#: src/Module/Debug/ActivityPubConversion.php:130 msgid "Source activity" msgstr "Aktywność źródła" -#: src/Module/Debug/Babel.php:58 +#: src/Module/Debug/Babel.php:44 msgid "Source input" msgstr "Źródło wejściowe" -#: src/Module/Debug/Babel.php:64 +#: src/Module/Debug/Babel.php:50 msgid "BBCode::toPlaintext" msgstr "BBCode::na prosty tekst" -#: src/Module/Debug/Babel.php:70 +#: src/Module/Debug/Babel.php:56 msgid "BBCode::convert (raw HTML)" msgstr "BBCode:: konwersjia (raw HTML)" -#: src/Module/Debug/Babel.php:75 +#: src/Module/Debug/Babel.php:61 msgid "BBCode::convert (hex)" msgstr "" -#: src/Module/Debug/Babel.php:80 +#: src/Module/Debug/Babel.php:66 msgid "BBCode::convert" msgstr "BBCode::przekształć" -#: src/Module/Debug/Babel.php:86 +#: src/Module/Debug/Babel.php:72 msgid "BBCode::convert => HTML::toBBCode" msgstr "BBCode::przekształć => HTML::toBBCode" -#: src/Module/Debug/Babel.php:92 +#: src/Module/Debug/Babel.php:78 msgid "BBCode::toMarkdown" msgstr "BBCode::toMarkdown" -#: src/Module/Debug/Babel.php:98 +#: src/Module/Debug/Babel.php:84 msgid "BBCode::toMarkdown => Markdown::convert (raw HTML)" msgstr "" -#: src/Module/Debug/Babel.php:102 +#: src/Module/Debug/Babel.php:88 msgid "BBCode::toMarkdown => Markdown::convert" msgstr "BBCode::toMarkdown => Markdown::przekształć" -#: src/Module/Debug/Babel.php:108 +#: src/Module/Debug/Babel.php:94 msgid "BBCode::toMarkdown => Markdown::toBBCode" msgstr "BBCode::toMarkdown => Markdown::toBBCode" -#: src/Module/Debug/Babel.php:114 +#: src/Module/Debug/Babel.php:100 msgid "BBCode::toMarkdown => Markdown::convert => HTML::toBBCode" msgstr "BBCode::toMarkdown => Markdown::przekształć => HTML::toBBCode" -#: src/Module/Debug/Babel.php:122 +#: src/Module/Debug/Babel.php:108 msgid "Item Body" msgstr "Element Body" -#: src/Module/Debug/Babel.php:126 +#: src/Module/Debug/Babel.php:112 msgid "Item Tags" msgstr "Znaczniki elementu" -#: src/Module/Debug/Babel.php:132 +#: src/Module/Debug/Babel.php:118 msgid "PageInfo::appendToBody" msgstr "" -#: src/Module/Debug/Babel.php:137 +#: src/Module/Debug/Babel.php:123 msgid "PageInfo::appendToBody => BBCode::convert (raw HTML)" msgstr "" -#: src/Module/Debug/Babel.php:141 +#: src/Module/Debug/Babel.php:127 msgid "PageInfo::appendToBody => BBCode::convert" msgstr "" -#: src/Module/Debug/Babel.php:148 +#: src/Module/Debug/Babel.php:134 msgid "Source input (Diaspora format)" msgstr "Źródło wejściowe (format Diaspora)" -#: src/Module/Debug/Babel.php:157 +#: src/Module/Debug/Babel.php:143 msgid "Source input (Markdown)" msgstr "Wejście źródłowe (Markdown)" -#: src/Module/Debug/Babel.php:163 +#: src/Module/Debug/Babel.php:149 msgid "Markdown::convert (raw HTML)" msgstr "Markdown::convert (raw HTML)" -#: src/Module/Debug/Babel.php:168 +#: src/Module/Debug/Babel.php:154 msgid "Markdown::convert" msgstr "Markdown::convert" -#: src/Module/Debug/Babel.php:174 +#: src/Module/Debug/Babel.php:160 msgid "Markdown::toBBCode" msgstr "Markdown::toBBCode" -#: src/Module/Debug/Babel.php:181 +#: src/Module/Debug/Babel.php:167 msgid "Raw HTML input" msgstr "Surowe wejście HTML" -#: src/Module/Debug/Babel.php:186 +#: src/Module/Debug/Babel.php:172 msgid "HTML Input" msgstr "Wejście HTML" -#: src/Module/Debug/Babel.php:193 +#: src/Module/Debug/Babel.php:179 msgid "HTML Purified (raw)" msgstr "Oczyszczony HTML (surowy)" -#: src/Module/Debug/Babel.php:198 +#: src/Module/Debug/Babel.php:184 msgid "HTML Purified (hex)" msgstr "Oczyszczony HTML (szesnastkowy)" -#: src/Module/Debug/Babel.php:203 +#: src/Module/Debug/Babel.php:189 msgid "HTML Purified" msgstr "Oczyszczony HTML" -#: src/Module/Debug/Babel.php:209 +#: src/Module/Debug/Babel.php:195 msgid "HTML::toBBCode" msgstr "HTML::toBBCode" -#: src/Module/Debug/Babel.php:215 +#: src/Module/Debug/Babel.php:201 msgid "HTML::toBBCode => BBCode::convert" msgstr "HTML::toBBCode => BBCode::convert" -#: src/Module/Debug/Babel.php:220 +#: src/Module/Debug/Babel.php:206 msgid "HTML::toBBCode => BBCode::convert (raw HTML)" msgstr "HTML::toBBCode => BBCode::convert (raw HTML)" -#: src/Module/Debug/Babel.php:226 +#: src/Module/Debug/Babel.php:212 msgid "HTML::toBBCode => BBCode::toPlaintext" msgstr "" -#: src/Module/Debug/Babel.php:232 +#: src/Module/Debug/Babel.php:218 msgid "HTML::toMarkdown" msgstr "HTML::toMarkdown" -#: src/Module/Debug/Babel.php:238 +#: src/Module/Debug/Babel.php:224 msgid "HTML::toPlaintext" msgstr "HTML::toPlaintext" -#: src/Module/Debug/Babel.php:244 +#: src/Module/Debug/Babel.php:230 msgid "HTML::toPlaintext (compact)" msgstr "" -#: src/Module/Debug/Babel.php:262 +#: src/Module/Debug/Babel.php:248 msgid "Decoded post" msgstr "Odkodowany wpis" -#: src/Module/Debug/Babel.php:283 +#: src/Module/Debug/Babel.php:269 msgid "Post array before expand entities" msgstr "" -#: src/Module/Debug/Babel.php:290 +#: src/Module/Debug/Babel.php:276 msgid "Post converted" msgstr "Wpis przekonwertowany" -#: src/Module/Debug/Babel.php:295 +#: src/Module/Debug/Babel.php:281 msgid "Converted body" msgstr "" -#: src/Module/Debug/Babel.php:301 +#: src/Module/Debug/Babel.php:287 msgid "Twitter addon is absent from the addon/ folder." msgstr "Dodatek do Twittera jest nieobecny w katalogu addon/." -#: src/Module/Debug/Babel.php:311 +#: src/Module/Debug/Babel.php:297 msgid "Babel Diagnostic" msgstr "Diagnostyka Babel" -#: src/Module/Debug/Babel.php:313 +#: src/Module/Debug/Babel.php:299 msgid "Source text" msgstr "Tekst źródłowy" -#: src/Module/Debug/Babel.php:314 +#: src/Module/Debug/Babel.php:300 msgid "BBCode" msgstr "BBCode" -#: src/Module/Debug/Babel.php:316 +#: src/Module/Debug/Babel.php:302 msgid "Markdown" msgstr "Markdown" -#: src/Module/Debug/Babel.php:317 +#: src/Module/Debug/Babel.php:303 msgid "HTML" msgstr "HTML" -#: src/Module/Debug/Babel.php:319 +#: src/Module/Debug/Babel.php:305 msgid "Twitter Source / Tweet URL (requires API key)" msgstr "Źródło Twitter / URL Tweeta (wymaga klucza API)" -#: src/Module/Debug/Feed.php:53 src/Module/Filer/SaveTag.php:47 -#: src/Module/Settings/Profile/Index.php:180 +#: src/Module/Debug/Feed.php:39 src/Module/Filer/SaveTag.php:33 +#: src/Module/Settings/Profile/Index.php:166 msgid "You must be logged in to use this module" msgstr "Musisz być zalogowany, aby korzystać z tego modułu" -#: src/Module/Debug/Feed.php:78 +#: src/Module/Debug/Feed.php:64 msgid "Source URL" msgstr "Źródłowy adres URL" -#: src/Module/Debug/Localtime.php:49 +#: src/Module/Debug/Localtime.php:35 msgid "Time Conversion" msgstr "Zmiana czasu" -#: src/Module/Debug/Localtime.php:50 +#: src/Module/Debug/Localtime.php:36 msgid "" "Friendica provides this service for sharing events with other networks and " "friends in unknown timezones." msgstr "Friendica udostępnia tę usługę do udostępniania wydarzeń innym sieciom i znajomym w nieznanych strefach czasowych." -#: src/Module/Debug/Localtime.php:51 +#: src/Module/Debug/Localtime.php:37 #, php-format msgid "UTC time: %s" msgstr "Czas UTC %s" -#: src/Module/Debug/Localtime.php:54 +#: src/Module/Debug/Localtime.php:40 #, php-format msgid "Current timezone: %s" msgstr "Obecna strefa czasowa: %s" -#: src/Module/Debug/Localtime.php:58 +#: src/Module/Debug/Localtime.php:44 #, php-format msgid "Converted localtime: %s" msgstr "Zmień strefę czasową: %s" -#: src/Module/Debug/Localtime.php:62 +#: src/Module/Debug/Localtime.php:48 msgid "Please select your timezone:" msgstr "Wybierz swoją strefę czasową:" -#: src/Module/Debug/Probe.php:38 src/Module/Debug/WebFinger.php:37 +#: src/Module/Debug/Probe.php:24 src/Module/Debug/WebFinger.php:23 msgid "Only logged in users are permitted to perform a probing." msgstr "Tylko zalogowani użytkownicy mogą wykonywać sondowanie." -#: src/Module/Debug/Probe.php:52 +#: src/Module/Debug/Probe.php:38 msgid "Probe Diagnostic" msgstr "Diagnostyka Probe" -#: src/Module/Debug/Probe.php:53 +#: src/Module/Debug/Probe.php:39 msgid "Output" msgstr "Wyjście" -#: src/Module/Debug/Probe.php:56 +#: src/Module/Debug/Probe.php:42 msgid "Lookup address" msgstr "Wyszukaj adres" -#: src/Module/Debug/WebFinger.php:50 +#: src/Module/Debug/WebFinger.php:36 msgid "Webfinger Diagnostic" msgstr "Diagnostyka Webfinger" -#: src/Module/Debug/WebFinger.php:52 +#: src/Module/Debug/WebFinger.php:38 msgid "Lookup address:" msgstr "Wyszukaj adres:" -#: src/Module/Directory.php:75 +#: src/Module/Directory.php:61 msgid "No entries (some entries may be hidden)." msgstr "Brak odwiedzin (niektóre odwiedziny mogą być ukryte)." -#: src/Module/Directory.php:91 +#: src/Module/Directory.php:77 msgid "Find on this site" msgstr "Znajdź na tej stronie" -#: src/Module/Directory.php:93 +#: src/Module/Directory.php:79 msgid "Results for:" msgstr "Wyniki dla:" -#: src/Module/Directory.php:95 +#: src/Module/Directory.php:81 msgid "Site Directory" msgstr "Katalog Witryny" -#: src/Module/Filer/RemoveTag.php:105 +#: src/Module/Filer/RemoveTag.php:91 msgid "Item was not deleted" msgstr "Element nie został skasowany" -#: src/Module/Filer/RemoveTag.php:115 +#: src/Module/Filer/RemoveTag.php:101 msgid "Item was not removed" msgstr "Element nie został usunięty" -#: src/Module/Filer/SaveTag.php:73 +#: src/Module/Filer/SaveTag.php:59 msgid "- select -" msgstr "- wybierz -" -#: src/Module/FriendSuggest.php:82 +#: src/Module/FriendSuggest.php:68 msgid "Suggested contact not found." msgstr "Nie znaleziono sugerowanego kontaktu." -#: src/Module/FriendSuggest.php:100 +#: src/Module/FriendSuggest.php:86 msgid "Friend suggestion sent." msgstr "Wysłana propozycja dodania do znajomych." -#: src/Module/FriendSuggest.php:137 +#: src/Module/FriendSuggest.php:123 msgid "Suggest Friends" msgstr "Zaproponuj znajomych" -#: src/Module/FriendSuggest.php:140 +#: src/Module/FriendSuggest.php:126 #, php-format msgid "Suggest a friend for %s" msgstr "Zaproponuj znajomych dla %s" -#: src/Module/Friendica.php:81 +#: src/Module/Friendica.php:67 msgid "Installed addons/apps:" msgstr "Zainstalowane dodatki/aplikacje:" -#: src/Module/Friendica.php:86 +#: src/Module/Friendica.php:72 msgid "No installed addons/apps" msgstr "Brak zainstalowanych dodatków/aplikacji" -#: src/Module/Friendica.php:91 +#: src/Module/Friendica.php:77 #, php-format msgid "Read about the Terms of Service of this node." msgstr "Przeczytaj o Warunkach świadczenia usług tego węzła." -#: src/Module/Friendica.php:98 +#: src/Module/Friendica.php:84 msgid "On this server the following remote servers are blocked." msgstr "Na tym serwerze następujące serwery zdalne są blokowane." -#: src/Module/Friendica.php:101 -#: src/Module/Moderation/Blocklist/Server/Index.php:87 -#: src/Module/Moderation/Blocklist/Server/Index.php:111 -#: src/Module/Settings/Channels.php:232 +#: src/Module/Friendica.php:87 +#: src/Module/Moderation/Blocklist/Server/Index.php:73 +#: src/Module/Moderation/Blocklist/Server/Index.php:97 +#: src/Module/Settings/Channels.php:218 msgid "Reason for the block" msgstr "Powód blokowania" -#: src/Module/Friendica.php:103 +#: src/Module/Friendica.php:89 msgid "Download this list in CSV format" msgstr "" -#: src/Module/Friendica.php:117 +#: src/Module/Friendica.php:103 #, php-format msgid "" "This is Friendica, version %s that is running at the web location %s. The " "database version is %s, the post update version is %s." msgstr "To jest wersja Friendica, %s która działa w lokalizacji internetowej %s. Wersja bazy danych to %s wersja po aktualizacji %s." -#: src/Module/Friendica.php:122 +#: src/Module/Friendica.php:108 msgid "" "Please visit Friendi.ca to learn more " "about the Friendica project." msgstr "Odwiedź stronę Friendi.ca aby dowiedzieć się więcej o projekcie Friendica." -#: src/Module/Friendica.php:123 +#: src/Module/Friendica.php:109 msgid "Bug reports and issues: please visit" msgstr "Raporty o błędach i problemy: odwiedź stronę" -#: src/Module/Friendica.php:123 +#: src/Module/Friendica.php:109 msgid "the bugtracker at github" msgstr "śledzenie błędów na github" -#: src/Module/Friendica.php:124 +#: src/Module/Friendica.php:110 msgid "Suggestions, praise, etc. - please email \"info\" at \"friendi - dot - ca" msgstr "Propozycje, pochwały itd. – napisz e-mail do „info” małpa „friendi” - kropka - „ca”" -#: src/Module/HCard.php:45 +#: src/Module/HCard.php:31 msgid "No profile" msgstr "Brak profilu" -#: src/Module/HTTPException/MethodNotAllowed.php:31 +#: src/Module/HTTPException/MethodNotAllowed.php:17 msgid "Method Not Allowed." msgstr "Metoda nie akceptowana." -#: src/Module/Help.php:60 +#: src/Module/Help.php:46 msgid "Help:" msgstr "Pomoc:" -#: src/Module/Home.php:66 +#: src/Module/Home.php:52 #, php-format msgid "Welcome to %s" msgstr "Witamy w %s" -#: src/Module/Install.php:189 +#: src/Module/Install.php:175 msgid "Friendica Communications Server - Setup" msgstr "Friendica Communications Server - Instalator" -#: src/Module/Install.php:200 +#: src/Module/Install.php:186 msgid "System check" msgstr "Sprawdzanie systemu" -#: src/Module/Install.php:202 src/Module/Install.php:247 -#: src/Module/Install.php:326 +#: src/Module/Install.php:188 src/Module/Install.php:233 +#: src/Module/Install.php:312 msgid "Requirement not satisfied" msgstr "Wymaganie niespełnione" -#: src/Module/Install.php:203 +#: src/Module/Install.php:189 msgid "Optional requirement not satisfied" msgstr "Opcjonalne wymagania niespełnione" -#: src/Module/Install.php:204 +#: src/Module/Install.php:190 msgid "OK" msgstr "OK" -#: src/Module/Install.php:208 +#: src/Module/Install.php:194 msgid "Next" msgstr "Następny" -#: src/Module/Install.php:209 +#: src/Module/Install.php:195 msgid "Check again" msgstr "Sprawdź ponownie" -#: src/Module/Install.php:222 +#: src/Module/Install.php:208 msgid "Base settings" msgstr "Ustawienia bazy" -#: src/Module/Install.php:224 +#: src/Module/Install.php:210 msgid "Base path to installation" msgstr "Podstawowa ścieżka do instalacji" -#: src/Module/Install.php:226 +#: src/Module/Install.php:212 msgid "" "If the system cannot detect the correct path to your installation, enter the" " correct path here. This setting should only be set if you are using a " "restricted system and symbolic links to your webroot." msgstr "Jeśli system nie może wykryć poprawnej ścieżki do instalacji, wprowadź tutaj poprawną ścieżkę. To ustawienie powinno być ustawione tylko wtedy, gdy używasz ograniczonego systemu i dowiązań symbolicznych do twojego webroota." -#: src/Module/Install.php:229 +#: src/Module/Install.php:215 msgid "The Friendica system URL" msgstr "" -#: src/Module/Install.php:231 +#: src/Module/Install.php:217 msgid "" "Overwrite this field in case the system URL determination isn't right, " "otherwise leave it as is." msgstr "" -#: src/Module/Install.php:242 +#: src/Module/Install.php:228 msgid "Database connection" msgstr "Połączenie z bazą danych" -#: src/Module/Install.php:243 +#: src/Module/Install.php:229 msgid "" "In order to install Friendica we need to know how to connect to your " "database." msgstr "W celu zainstalowania Friendica musimy wiedzieć jak połączyć się z twoją bazą danych." -#: src/Module/Install.php:244 +#: src/Module/Install.php:230 msgid "" "Please contact your hosting provider or site administrator if you have " "questions about these settings." msgstr "Proszę skontaktuj się ze swoim dostawcą usług hostingowych bądź administratorem strony jeśli masz pytania co do tych ustawień ." -#: src/Module/Install.php:245 +#: src/Module/Install.php:231 msgid "" "The database you specify below should already exist. If it does not, please " "create it before continuing." msgstr "Wymieniona przez Ciebie baza danych powinna już istnieć. Jeżeli nie, utwórz ją przed kontynuacją." -#: src/Module/Install.php:252 +#: src/Module/Install.php:238 msgid "Database Server Name" msgstr "Nazwa serwera bazy danych" -#: src/Module/Install.php:257 +#: src/Module/Install.php:243 msgid "Database Login Name" msgstr "Nazwa użytkownika bazy danych" -#: src/Module/Install.php:263 +#: src/Module/Install.php:249 msgid "Database Login Password" msgstr "Hasło logowania do bazy danych" -#: src/Module/Install.php:265 +#: src/Module/Install.php:251 msgid "For security reasons the password must not be empty" msgstr "Ze względów bezpieczeństwa hasło nie może być puste" -#: src/Module/Install.php:268 +#: src/Module/Install.php:254 msgid "Database Name" msgstr "Nazwa bazy danych" -#: src/Module/Install.php:272 src/Module/Install.php:300 +#: src/Module/Install.php:258 src/Module/Install.php:286 msgid "Please select a default timezone for your website" msgstr "Proszę wybrać domyślną strefę czasową dla swojej strony" -#: src/Module/Install.php:287 +#: src/Module/Install.php:273 msgid "Site settings" msgstr "Ustawienia strony" -#: src/Module/Install.php:295 +#: src/Module/Install.php:281 msgid "Site administrator email address" msgstr "Adres e-mail administratora strony" -#: src/Module/Install.php:297 +#: src/Module/Install.php:283 msgid "" "Your account email address must match this in order to use the web admin " "panel." msgstr "Adres e-mail konta musi pasować do tego, aby móc korzystać z panelu administracyjnego." -#: src/Module/Install.php:304 +#: src/Module/Install.php:290 msgid "System Language:" msgstr "Język systemu:" -#: src/Module/Install.php:306 +#: src/Module/Install.php:292 msgid "" "Set the default language for your Friendica installation interface and to " "send emails." msgstr "Ustaw domyślny język dla interfejsu instalacyjnego Friendica i wysyłaj e-maile." -#: src/Module/Install.php:318 +#: src/Module/Install.php:304 msgid "Your Friendica site database has been installed." msgstr "Twoja baza danych witryny Friendica została zainstalowana." -#: src/Module/Install.php:328 +#: src/Module/Install.php:314 msgid "Installation finished" msgstr "Instalacja zakończona" -#: src/Module/Install.php:348 +#: src/Module/Install.php:334 msgid "

What next

" msgstr "

Co dalej

" -#: src/Module/Install.php:349 +#: src/Module/Install.php:335 msgid "" "IMPORTANT: You will need to [manually] setup a scheduled task for the " "worker." msgstr "WAŻNE: Będziesz musiał [ręcznie] ustawić zaplanowane zadanie dla workera." -#: src/Module/Install.php:352 +#: src/Module/Install.php:338 #, php-format msgid "" "Go to your new Friendica node registration page " @@ -7834,29 +7829,29 @@ msgid "" " administrator email. This will allow you to enter the site admin panel." msgstr "Przejdź do strony rejestracji nowego węzła Friendica i zarejestruj się jako nowy użytkownik. Pamiętaj, aby użyć adresu e-mail wprowadzonego jako e-mail administratora. To pozwoli Ci wejść do panelu administratora witryny." -#: src/Module/Invite.php:57 +#: src/Module/Invite.php:43 msgid "Total invitation limit exceeded." msgstr "Przekroczono limit zaproszeń ogółem." -#: src/Module/Invite.php:82 +#: src/Module/Invite.php:68 #, php-format msgid "%s : Not a valid email address." msgstr "%s : Nieprawidłowy adres e-mail." -#: src/Module/Invite.php:108 +#: src/Module/Invite.php:94 msgid "Please join us on Friendica" msgstr "Dołącz do nas na Friendica" -#: src/Module/Invite.php:117 +#: src/Module/Invite.php:103 msgid "Invitation limit exceeded. Please contact your site administrator." msgstr "Przekroczono limit zaproszeń. Skontaktuj się z administratorem witryny." -#: src/Module/Invite.php:121 +#: src/Module/Invite.php:107 #, php-format msgid "%s : Message delivery failed." msgstr "%s : Nie udało się dostarczyć wiadomości." -#: src/Module/Invite.php:125 +#: src/Module/Invite.php:111 #, php-format msgid "%d message sent." msgid_plural "%d messages sent." @@ -7865,11 +7860,11 @@ msgstr[1] "%d wiadomości wysłane." msgstr[2] "%d wysłano ." msgstr[3] "%d wiadomość wysłano." -#: src/Module/Invite.php:143 +#: src/Module/Invite.php:129 msgid "You have no more invitations available" msgstr "Nie masz już dostępnych zaproszeń" -#: src/Module/Invite.php:150 +#: src/Module/Invite.php:136 #, php-format msgid "" "Visit %s for a list of public sites that you can join. Friendica members on " @@ -7877,14 +7872,14 @@ msgid "" " other social networks." msgstr "Odwiedź %s listę publicznych witryn, do których możesz dołączyć. Członkowie Friendica na innych stronach mogą łączyć się ze sobą, jak również z członkami wielu innych sieci społecznościowych." -#: src/Module/Invite.php:152 +#: src/Module/Invite.php:138 #, php-format msgid "" "To accept this invitation, please visit and register at %s or any other " "public Friendica website." msgstr "Aby zaakceptować to zaproszenie, odwiedź i zarejestruj się %s lub w dowolnej innej publicznej witrynie internetowej Friendica." -#: src/Module/Invite.php:153 +#: src/Module/Invite.php:139 #, php-format msgid "" "Friendica sites all inter-connect to create a huge privacy-enhanced social " @@ -7893,236 +7888,236 @@ msgid "" "sites you can join." msgstr "Strony Friendica łączą się ze sobą, tworząc ogromną sieć społecznościową o zwiększonej prywatności, która jest własnością i jest kontrolowana przez jej członków. Mogą również łączyć się z wieloma tradycyjnymi sieciami społecznościowymi. Zobacz %s listę alternatywnych witryn Friendica, do których możesz dołączyć." -#: src/Module/Invite.php:157 +#: src/Module/Invite.php:143 msgid "" "Our apologies. This system is not currently configured to connect with other" " public sites or invite members." msgstr "Przepraszamy. System nie jest obecnie skonfigurowany do łączenia się z innymi publicznymi witrynami lub zapraszania członków." -#: src/Module/Invite.php:160 +#: src/Module/Invite.php:146 msgid "" "Friendica sites all inter-connect to create a huge privacy-enhanced social " "web that is owned and controlled by its members. They can also connect with " "many traditional social networks." msgstr "Strony Friendica łączą się ze sobą, tworząc ogromną sieć społecznościową o zwiększonej prywatności, która jest własnością i jest kontrolowana przez jej członków. Mogą również łączyć się z wieloma tradycyjnymi sieciami społecznościowymi." -#: src/Module/Invite.php:159 +#: src/Module/Invite.php:145 #, php-format msgid "To accept this invitation, please visit and register at %s." msgstr "Aby zaakceptować to zaproszenie, odwiedź stronę i zarejestruj się na stronie %s." -#: src/Module/Invite.php:167 +#: src/Module/Invite.php:153 msgid "Send invitations" msgstr "Wyślij zaproszenie" -#: src/Module/Invite.php:168 +#: src/Module/Invite.php:154 msgid "Enter email addresses, one per line:" msgstr "Wprowadź adresy e-mail, po jednym w wierszu:" -#: src/Module/Invite.php:172 +#: src/Module/Invite.php:158 msgid "" "You are cordially invited to join me and other close friends on Friendica - " "and help us to create a better social web." msgstr "Serdecznie zapraszam do przyłączenia się do mnie i innych bliskich znajomych na stronie Friendica - i pomóż nam stworzyć lepszą sieć społecznościową." -#: src/Module/Invite.php:174 +#: src/Module/Invite.php:160 msgid "You will need to supply this invitation code: $invite_code" msgstr "Musisz podać ten kod zaproszenia: $invite_code" -#: src/Module/Invite.php:174 +#: src/Module/Invite.php:160 msgid "" "Once you have registered, please connect with me via my profile page at:" msgstr "Po rejestracji połącz się ze mną na stronie mojego profilu pod adresem:" -#: src/Module/Invite.php:176 +#: src/Module/Invite.php:162 msgid "" "For more information about the Friendica project and why we feel it is " "important, please visit http://friendi.ca" msgstr "Aby uzyskać więcej informacji na temat projektu Friendica i dlaczego uważamy, że jest to ważne, odwiedź http://friendi.ca" -#: src/Module/Item/Compose.php:94 +#: src/Module/Item/Compose.php:80 msgid "Please enter a post body." msgstr "Podaj treść wpisu." -#: src/Module/Item/Compose.php:105 +#: src/Module/Item/Compose.php:91 msgid "This feature is only available with the frio theme." msgstr "Ta funkcja jest dostępna tylko z motywem Frio." -#: src/Module/Item/Compose.php:129 +#: src/Module/Item/Compose.php:115 msgid "Compose new personal note" msgstr "Utwórz nową notatkę osobistą" -#: src/Module/Item/Compose.php:138 +#: src/Module/Item/Compose.php:124 msgid "Compose new post" msgstr "Utwórz nowy wpis" -#: src/Module/Item/Compose.php:194 +#: src/Module/Item/Compose.php:180 msgid "Visibility" msgstr "Widoczność" -#: src/Module/Item/Compose.php:210 +#: src/Module/Item/Compose.php:196 msgid "Clear the location" msgstr "Wyczyść lokalizację" -#: src/Module/Item/Compose.php:211 +#: src/Module/Item/Compose.php:197 msgid "Location services are unavailable on your device" msgstr "Usługi lokalizacyjne są niedostępne na twoim urządzeniu" -#: src/Module/Item/Compose.php:212 +#: src/Module/Item/Compose.php:198 msgid "" "Location services are disabled. Please check the website's permissions on " "your device" msgstr "Usługi lokalizacyjne są wyłączone. Sprawdź uprawnienia strony internetowej na swoim urządzeniu" -#: src/Module/Item/Compose.php:218 +#: src/Module/Item/Compose.php:204 msgid "" "You can make this page always open when you use the New Post button in the " "Theme Customization settings." msgstr "" -#: src/Module/Item/Feed.php:86 +#: src/Module/Item/Feed.php:72 msgid "The feed for this item is unavailable." msgstr "Kanał dla tego elementu jest niedostępny." -#: src/Module/Item/Follow.php:51 +#: src/Module/Item/Follow.php:37 msgid "Unable to follow this item." msgstr "Nie można obserwować tego elementu." -#: src/Module/Maintenance.php:48 src/Module/Maintenance.php:53 +#: src/Module/Maintenance.php:34 src/Module/Maintenance.php:39 msgid "System down for maintenance" msgstr "System wyłączony w celu konserwacji" -#: src/Module/Maintenance.php:54 +#: src/Module/Maintenance.php:40 msgid "" "This Friendica node is currently in maintenance mode, either automatically " "because it is self-updating or manually by the node administrator. This " "condition should be temporary, please come back in a few minutes." msgstr "Ten węzeł Friendica jest obecnie w trybie konserwacji, przełączanej automatycznie, ponieważ jest aktualizowany samodzielnie lub ręcznie przez administratora węzła. Ten stan powinien być tymczasowy, proszę wrócić za kilka minut." -#: src/Module/Manifest.php:40 +#: src/Module/Manifest.php:26 msgid "A Decentralized Social Network" msgstr "Zdecentralizowana sieć społecznościowa" -#: src/Module/Media/Attachment/Browser.php:58 -#: src/Module/Media/Photo/Browser.php:59 +#: src/Module/Media/Attachment/Browser.php:44 +#: src/Module/Media/Photo/Browser.php:45 msgid "You need to be logged in to access this page." msgstr "" -#: src/Module/Media/Attachment/Browser.php:74 +#: src/Module/Media/Attachment/Browser.php:60 msgid "Files" msgstr "Pliki" -#: src/Module/Media/Attachment/Browser.php:79 -#: src/Module/Media/Photo/Browser.php:90 -#: src/Module/Settings/Profile/Photo/Index.php:127 +#: src/Module/Media/Attachment/Browser.php:65 +#: src/Module/Media/Photo/Browser.php:76 +#: src/Module/Settings/Profile/Photo/Index.php:113 msgid "Upload" msgstr "Wyślij" -#: src/Module/Media/Attachment/Upload.php:97 +#: src/Module/Media/Attachment/Upload.php:83 msgid "Sorry, maybe your upload is bigger than the PHP configuration allows" msgstr "Przepraszam, Twój przesyłany plik jest większy niż pozwala konfiguracja PHP" -#: src/Module/Media/Attachment/Upload.php:97 +#: src/Module/Media/Attachment/Upload.php:83 msgid "Or - did you try to upload an empty file?" msgstr "Lub - czy próbowałeś przesłać pusty plik?" -#: src/Module/Media/Attachment/Upload.php:104 +#: src/Module/Media/Attachment/Upload.php:90 #, php-format msgid "File exceeds size limit of %s" msgstr "Plik przekracza limit rozmiaru wynoszący %s" -#: src/Module/Media/Attachment/Upload.php:114 +#: src/Module/Media/Attachment/Upload.php:100 msgid "File upload failed." msgstr "Przesyłanie pliku nie powiodło się." -#: src/Module/Media/Photo/Upload.php:150 src/Module/Media/Photo/Upload.php:151 -#: src/Module/Profile/Photos.php:215 -#: src/Module/Settings/Profile/Photo/Index.php:67 +#: src/Module/Media/Photo/Upload.php:136 src/Module/Media/Photo/Upload.php:137 +#: src/Module/Profile/Photos.php:201 +#: src/Module/Settings/Profile/Photo/Index.php:53 msgid "Unable to process image." msgstr "Przetwarzanie obrazu nie powiodło się." -#: src/Module/Media/Photo/Upload.php:176 src/Module/Profile/Photos.php:235 -#: src/Module/Settings/Profile/Photo/Index.php:94 +#: src/Module/Media/Photo/Upload.php:162 src/Module/Profile/Photos.php:221 +#: src/Module/Settings/Profile/Photo/Index.php:80 msgid "Image upload failed." msgstr "Przesyłanie obrazu nie powiodło się." -#: src/Module/Moderation/BaseUsers.php:72 +#: src/Module/Moderation/BaseUsers.php:59 msgid "List of all users" msgstr "Lista wszystkich użytkowników" -#: src/Module/Moderation/BaseUsers.php:77 +#: src/Module/Moderation/BaseUsers.php:64 msgid "Active" msgstr "Aktywne" -#: src/Module/Moderation/BaseUsers.php:80 +#: src/Module/Moderation/BaseUsers.php:67 msgid "List of active accounts" msgstr "Lista aktywnych kont" -#: src/Module/Moderation/BaseUsers.php:88 +#: src/Module/Moderation/BaseUsers.php:75 msgid "List of pending registrations" msgstr "Lista oczekujących rejestracji" -#: src/Module/Moderation/BaseUsers.php:96 +#: src/Module/Moderation/BaseUsers.php:83 msgid "List of blocked users" msgstr "Lista zablokowanych użytkowników" -#: src/Module/Moderation/BaseUsers.php:101 +#: src/Module/Moderation/BaseUsers.php:88 msgid "Deleted" msgstr "Usunięte" -#: src/Module/Moderation/BaseUsers.php:104 +#: src/Module/Moderation/BaseUsers.php:91 msgid "List of pending user deletions" msgstr "Lista oczekujących na usunięcie użytkowników" -#: src/Module/Moderation/BaseUsers.php:119 src/Module/Settings/Account.php:487 +#: src/Module/Moderation/BaseUsers.php:108 src/Module/Settings/Account.php:473 msgid "Normal Account Page" msgstr "Normalna strona konta" -#: src/Module/Moderation/BaseUsers.php:120 src/Module/Settings/Account.php:494 +#: src/Module/Moderation/BaseUsers.php:109 src/Module/Settings/Account.php:480 msgid "Soapbox Page" msgstr "Strona Soapbox" -#: src/Module/Moderation/BaseUsers.php:121 src/Module/Settings/Account.php:501 +#: src/Module/Moderation/BaseUsers.php:110 src/Module/Settings/Account.php:487 msgid "Public Group" msgstr "" -#: src/Module/Moderation/BaseUsers.php:122 src/Module/Settings/Account.php:508 +#: src/Module/Moderation/BaseUsers.php:111 src/Module/Settings/Account.php:494 msgid "Public Group - Restricted" msgstr "" -#: src/Module/Moderation/BaseUsers.php:123 src/Module/Settings/Account.php:515 +#: src/Module/Moderation/BaseUsers.php:112 src/Module/Settings/Account.php:501 msgid "Automatic Friend Page" msgstr "Automatyczna strona znajomego" -#: src/Module/Moderation/BaseUsers.php:124 +#: src/Module/Moderation/BaseUsers.php:113 msgid "Private Group" msgstr "" -#: src/Module/Moderation/BaseUsers.php:127 -#: src/Module/Moderation/Summary.php:53 src/Module/Settings/Account.php:458 +#: src/Module/Moderation/BaseUsers.php:116 +#: src/Module/Moderation/Summary.php:39 src/Module/Settings/Account.php:444 msgid "Personal Page" msgstr "Strona osobista" -#: src/Module/Moderation/BaseUsers.php:128 -#: src/Module/Moderation/Summary.php:54 src/Module/Settings/Account.php:465 +#: src/Module/Moderation/BaseUsers.php:117 +#: src/Module/Moderation/Summary.php:40 src/Module/Settings/Account.php:451 msgid "Organisation Page" msgstr "Strona Organizacji" -#: src/Module/Moderation/BaseUsers.php:129 -#: src/Module/Moderation/Summary.php:55 src/Module/Settings/Account.php:472 +#: src/Module/Moderation/BaseUsers.php:118 +#: src/Module/Moderation/Summary.php:41 src/Module/Settings/Account.php:458 msgid "News Page" msgstr "Strona Wiadomości" -#: src/Module/Moderation/BaseUsers.php:130 -#: src/Module/Moderation/Summary.php:56 src/Module/Settings/Account.php:479 +#: src/Module/Moderation/BaseUsers.php:119 +#: src/Module/Moderation/Summary.php:42 src/Module/Settings/Account.php:465 msgid "Community Group" msgstr "" -#: src/Module/Moderation/Blocklist/Contact.php:70 +#: src/Module/Moderation/Blocklist/Contact.php:56 msgid "You can't block a local contact, please block the user instead" msgstr "Nie możesz zablokować lokalnego kontaktu, zamiast tego zablokuj użytkownika" -#: src/Module/Moderation/Blocklist/Contact.php:89 +#: src/Module/Moderation/Blocklist/Contact.php:75 #, php-format msgid "%s contact unblocked" msgid_plural "%s contacts unblocked" @@ -8131,54 +8126,54 @@ msgstr[1] "%s kontakty odblokowane" msgstr[2] "%s kontaktów odblokowanych" msgstr[3] "%s kontaktów odblokowanych" -#: src/Module/Moderation/Blocklist/Contact.php:111 +#: src/Module/Moderation/Blocklist/Contact.php:97 msgid "Remote Contact Blocklist" msgstr "Lista zablokowanych kontaktów zdalnych" -#: src/Module/Moderation/Blocklist/Contact.php:112 +#: src/Module/Moderation/Blocklist/Contact.php:98 msgid "" "This page allows you to prevent any message from a remote contact to reach " "your node." msgstr "Ta strona pozwala zapobiec wysyłaniu do węzła wiadomości od kontaktu zdalnego." -#: src/Module/Moderation/Blocklist/Contact.php:113 +#: src/Module/Moderation/Blocklist/Contact.php:99 msgid "Block Remote Contact" msgstr "Zablokuj kontakt zdalny" -#: src/Module/Moderation/Blocklist/Contact.php:114 -#: src/Module/Moderation/Users/Active.php:135 -#: src/Module/Moderation/Users/Blocked.php:135 -#: src/Module/Moderation/Users/Index.php:149 -#: src/Module/Moderation/Users/Pending.php:98 +#: src/Module/Moderation/Blocklist/Contact.php:100 +#: src/Module/Moderation/Users/Active.php:121 +#: src/Module/Moderation/Users/Blocked.php:121 +#: src/Module/Moderation/Users/Index.php:135 +#: src/Module/Moderation/Users/Pending.php:84 msgid "select all" msgstr "zaznacz wszystko" -#: src/Module/Moderation/Blocklist/Contact.php:115 +#: src/Module/Moderation/Blocklist/Contact.php:101 msgid "select none" msgstr "wybierz brak" -#: src/Module/Moderation/Blocklist/Contact.php:118 +#: src/Module/Moderation/Blocklist/Contact.php:104 msgid "No remote contact is blocked from this node." msgstr "Z tego węzła nie jest blokowany kontakt zdalny." -#: src/Module/Moderation/Blocklist/Contact.php:120 +#: src/Module/Moderation/Blocklist/Contact.php:106 msgid "Blocked Remote Contacts" msgstr "Zablokowane kontakty zdalne" -#: src/Module/Moderation/Blocklist/Contact.php:121 +#: src/Module/Moderation/Blocklist/Contact.php:107 msgid "Block New Remote Contact" msgstr "Zablokuj nowy kontakt zdalny" -#: src/Module/Moderation/Blocklist/Contact.php:122 -#: src/Module/Moderation/Reports.php:116 +#: src/Module/Moderation/Blocklist/Contact.php:108 +#: src/Module/Moderation/Reports.php:102 msgid "Photo" msgstr "Zdjęcie" -#: src/Module/Moderation/Blocklist/Contact.php:122 +#: src/Module/Moderation/Blocklist/Contact.php:108 msgid "Reason" msgstr "Powód" -#: src/Module/Moderation/Blocklist/Contact.php:128 +#: src/Module/Moderation/Blocklist/Contact.php:114 #, php-format msgid "%s total blocked contact" msgid_plural "%s total blocked contacts" @@ -8187,30 +8182,30 @@ msgstr[1] "łącznie %s zablokowane kontakty" msgstr[2] "łącznie %s zablokowanych kontaktów" msgstr[3] "%s całkowicie zablokowane kontakty" -#: src/Module/Moderation/Blocklist/Contact.php:131 +#: src/Module/Moderation/Blocklist/Contact.php:117 msgid "URL of the remote contact to block." msgstr "Adres URL kontaktu zdalnego do zablokowania." -#: src/Module/Moderation/Blocklist/Contact.php:132 +#: src/Module/Moderation/Blocklist/Contact.php:118 msgid "Also purge contact" msgstr "Wyczyść również kontakt" -#: src/Module/Moderation/Blocklist/Contact.php:132 +#: src/Module/Moderation/Blocklist/Contact.php:118 msgid "" "Removes all content related to this contact from the node. Keeps the contact" " record. This action cannot be undone." msgstr "Usuwa z węzła całą zawartość związaną z tym kontaktem. Zachowuje rejestr kontaktów. Tej czynności nie można cofnąć." -#: src/Module/Moderation/Blocklist/Contact.php:133 -#: src/Module/Moderation/Blocklist/Server/Import.php:124 +#: src/Module/Moderation/Blocklist/Contact.php:119 +#: src/Module/Moderation/Blocklist/Server/Import.php:108 msgid "Block Reason" msgstr "Powód blokady" -#: src/Module/Moderation/Blocklist/Server/Add.php:80 +#: src/Module/Moderation/Blocklist/Server/Add.php:66 msgid "Server domain pattern added to the blocklist." msgstr "Do listy zablokowanych dodano wzorzec domeny serwera." -#: src/Module/Moderation/Blocklist/Server/Add.php:88 +#: src/Module/Moderation/Blocklist/Server/Add.php:74 #, php-format msgid "%s server scheduled to be purged." msgid_plural "%s servers scheduled to be purged." @@ -8219,17 +8214,17 @@ msgstr[1] "%s serwery zaplanowane do usunięcia." msgstr[2] "%s serwerów zaplanowanych do usunięcia." msgstr[3] "%s serwerów zaplanowanych do usunięcia." -#: src/Module/Moderation/Blocklist/Server/Add.php:120 -#: src/Module/Moderation/Blocklist/Server/Import.php:117 +#: src/Module/Moderation/Blocklist/Server/Add.php:106 +#: src/Module/Moderation/Blocklist/Server/Import.php:101 msgid "← Return to the list" msgstr "← Wróć do listy" -#: src/Module/Moderation/Blocklist/Server/Add.php:122 +#: src/Module/Moderation/Blocklist/Server/Add.php:108 msgid "Block A New Server Domain Pattern" msgstr "Zablokuj nowy wzorzec domeny serwera" -#: src/Module/Moderation/Blocklist/Server/Add.php:123 -#: src/Module/Moderation/Blocklist/Server/Index.php:99 +#: src/Module/Moderation/Blocklist/Server/Add.php:109 +#: src/Module/Moderation/Blocklist/Server/Index.php:85 msgid "" "

The server domain pattern syntax is case-insensitive shell wildcard, comprising the following special characters:

\n" "
    \n" @@ -8238,30 +8233,30 @@ msgid "" "
" msgstr "

Składnia wzorca domeny serwera to symbol wieloznaczny powłoki bez rozróżniania wielkości liter, zawierający następujące znaki specjalne:

\n
    \n\t
  • *: Dowolna liczba znaków
  • \n\t
  • ?: Dowolny pojedynczy znak
  • \n
" -#: src/Module/Moderation/Blocklist/Server/Add.php:128 -#: src/Module/Moderation/Blocklist/Server/Index.php:107 +#: src/Module/Moderation/Blocklist/Server/Add.php:114 +#: src/Module/Moderation/Blocklist/Server/Index.php:93 msgid "Check pattern" msgstr "Sprawdź wzór" -#: src/Module/Moderation/Blocklist/Server/Add.php:129 +#: src/Module/Moderation/Blocklist/Server/Add.php:115 msgid "Matching known servers" msgstr "Dopasowanie znanych serwerów" -#: src/Module/Moderation/Blocklist/Server/Add.php:130 -#: src/Module/Settings/Server/Action.php:76 -#: src/Module/Settings/Server/Index.php:106 +#: src/Module/Moderation/Blocklist/Server/Add.php:116 +#: src/Module/Settings/Server/Action.php:62 +#: src/Module/Settings/Server/Index.php:92 msgid "Server Name" msgstr "Nazwa serwera" -#: src/Module/Moderation/Blocklist/Server/Add.php:131 +#: src/Module/Moderation/Blocklist/Server/Add.php:117 msgid "Server Domain" msgstr "Domena serwera" -#: src/Module/Moderation/Blocklist/Server/Add.php:132 +#: src/Module/Moderation/Blocklist/Server/Add.php:118 msgid "Known Contacts" msgstr "Znane kontakty" -#: src/Module/Moderation/Blocklist/Server/Add.php:133 +#: src/Module/Moderation/Blocklist/Server/Add.php:119 #, php-format msgid "%d known server" msgid_plural "%d known servers" @@ -8270,27 +8265,27 @@ msgstr[1] "%d znane serwery" msgstr[2] "%d znanych serwerów" msgstr[3] "%d znanych serwerów" -#: src/Module/Moderation/Blocklist/Server/Add.php:134 +#: src/Module/Moderation/Blocklist/Server/Add.php:120 msgid "Add pattern to the blocklist" msgstr "Dodaj wzór do listy blokad" -#: src/Module/Moderation/Blocklist/Server/Add.php:136 -#: src/Module/Moderation/Blocklist/Server/Index.php:116 +#: src/Module/Moderation/Blocklist/Server/Add.php:122 +#: src/Module/Moderation/Blocklist/Server/Index.php:102 msgid "Server Domain Pattern" msgstr "Wzorzec domeny serwera" -#: src/Module/Moderation/Blocklist/Server/Add.php:136 -#: src/Module/Moderation/Blocklist/Server/Index.php:116 +#: src/Module/Moderation/Blocklist/Server/Add.php:122 +#: src/Module/Moderation/Blocklist/Server/Index.php:102 msgid "" "The domain pattern of the new server to add to the blocklist. Do not include" " the protocol." msgstr "Wzorzec domeny nowego serwera do dodania do listy blokad. Nie dołączaj protokołu." -#: src/Module/Moderation/Blocklist/Server/Add.php:137 +#: src/Module/Moderation/Blocklist/Server/Add.php:123 msgid "Purge server" msgstr "Wyczyść serwer" -#: src/Module/Moderation/Blocklist/Server/Add.php:137 +#: src/Module/Moderation/Blocklist/Server/Add.php:123 msgid "" "Also purges all the locally stored content authored by the known contacts " "registered on that server. Keeps the contacts and the server records. This " @@ -8304,26 +8299,26 @@ msgstr[1] "Usuwa również całą lokalnie przechowywaną zawartość stworzoną msgstr[2] "Usuwa również całą lokalnie przechowywaną zawartość stworzoną przez znane kontakty zarejestrowane na tych serwerach. Zachowuje ewidencję kontaktów i serwerów. Tej czynności nie można cofnąć." msgstr[3] "Usuwa również całą lokalnie przechowywaną zawartość stworzoną przez znane kontakty zarejestrowane na tych serwerach. Zachowuje ewidencję kontaktów i serwerów. Tej czynności nie można cofnąć." -#: src/Module/Moderation/Blocklist/Server/Add.php:138 +#: src/Module/Moderation/Blocklist/Server/Add.php:124 msgid "Block reason" msgstr "Powód zablokowania" -#: src/Module/Moderation/Blocklist/Server/Add.php:138 +#: src/Module/Moderation/Blocklist/Server/Add.php:124 msgid "" "The reason why you blocked this server domain pattern. This reason will be " "shown publicly in the server information page." msgstr "Powód, dla którego zablokowałeś ten wzorzec domeny serwera. Powód ten zostanie pokazany publicznie na stronie informacyjnej serwera." -#: src/Module/Moderation/Blocklist/Server/Import.php:74 -#: src/Module/Moderation/Blocklist/Server/Import.php:83 +#: src/Module/Moderation/Blocklist/Server/Import.php:60 +#: src/Module/Moderation/Blocklist/Server/Import.php:67 msgid "Error importing pattern file" msgstr "" -#: src/Module/Moderation/Blocklist/Server/Import.php:89 +#: src/Module/Moderation/Blocklist/Server/Import.php:74 msgid "Local blocklist replaced with the provided file." msgstr "" -#: src/Module/Moderation/Blocklist/Server/Import.php:93 +#: src/Module/Moderation/Blocklist/Server/Import.php:78 #, php-format msgid "%d pattern was added to the local blocklist." msgid_plural "%d patterns were added to the local blocklist." @@ -8332,42 +8327,42 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: src/Module/Moderation/Blocklist/Server/Import.php:95 +#: src/Module/Moderation/Blocklist/Server/Import.php:80 msgid "No pattern was added to the local blocklist." msgstr "" -#: src/Module/Moderation/Blocklist/Server/Import.php:119 +#: src/Module/Moderation/Blocklist/Server/Import.php:103 msgid "Import a Server Domain Pattern Blocklist" msgstr "" -#: src/Module/Moderation/Blocklist/Server/Import.php:120 +#: src/Module/Moderation/Blocklist/Server/Import.php:104 msgid "" "

This file can be downloaded from the /friendica path of any " "Friendica server.

" msgstr "" -#: src/Module/Moderation/Blocklist/Server/Import.php:121 -#: src/Module/Moderation/Blocklist/Server/Index.php:106 +#: src/Module/Moderation/Blocklist/Server/Import.php:105 +#: src/Module/Moderation/Blocklist/Server/Index.php:92 msgid "Upload file" msgstr "" -#: src/Module/Moderation/Blocklist/Server/Import.php:122 +#: src/Module/Moderation/Blocklist/Server/Import.php:106 msgid "Patterns to import" msgstr "" -#: src/Module/Moderation/Blocklist/Server/Import.php:123 +#: src/Module/Moderation/Blocklist/Server/Import.php:107 msgid "Domain Pattern" msgstr "" -#: src/Module/Moderation/Blocklist/Server/Import.php:125 +#: src/Module/Moderation/Blocklist/Server/Import.php:109 msgid "Import Mode" msgstr "" -#: src/Module/Moderation/Blocklist/Server/Import.php:126 +#: src/Module/Moderation/Blocklist/Server/Import.php:110 msgid "Import Patterns" msgstr "" -#: src/Module/Moderation/Blocklist/Server/Import.php:127 +#: src/Module/Moderation/Blocklist/Server/Import.php:111 #, php-format msgid "%d total pattern" msgid_plural "%d total patterns" @@ -8376,233 +8371,233 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: src/Module/Moderation/Blocklist/Server/Import.php:129 -#: src/Module/Moderation/Blocklist/Server/Index.php:115 +#: src/Module/Moderation/Blocklist/Server/Import.php:113 +#: src/Module/Moderation/Blocklist/Server/Index.php:101 msgid "Server domain pattern blocklist CSV file" msgstr "" -#: src/Module/Moderation/Blocklist/Server/Import.php:130 +#: src/Module/Moderation/Blocklist/Server/Import.php:114 msgid "Append" msgstr "" -#: src/Module/Moderation/Blocklist/Server/Import.php:130 +#: src/Module/Moderation/Blocklist/Server/Import.php:114 msgid "" "Imports patterns from the file that weren't already existing in the current " "blocklist." msgstr "" -#: src/Module/Moderation/Blocklist/Server/Import.php:131 +#: src/Module/Moderation/Blocklist/Server/Import.php:115 msgid "Replace" msgstr "" -#: src/Module/Moderation/Blocklist/Server/Import.php:131 +#: src/Module/Moderation/Blocklist/Server/Import.php:115 msgid "Replaces the current blocklist by the imported patterns." msgstr "" -#: src/Module/Moderation/Blocklist/Server/Index.php:86 -#: src/Module/Moderation/Blocklist/Server/Index.php:110 -#: src/Module/Settings/Channels.php:231 +#: src/Module/Moderation/Blocklist/Server/Index.php:72 +#: src/Module/Moderation/Blocklist/Server/Index.php:96 +#: src/Module/Settings/Channels.php:217 msgid "Blocked server domain pattern" msgstr "Zablokowany wzorzec domeny serwera" -#: src/Module/Moderation/Blocklist/Server/Index.php:88 +#: src/Module/Moderation/Blocklist/Server/Index.php:74 msgid "Delete server domain pattern" msgstr "Usuń wzorzec domeny serwera" -#: src/Module/Moderation/Blocklist/Server/Index.php:88 +#: src/Module/Moderation/Blocklist/Server/Index.php:74 msgid "Check to delete this entry from the blocklist" msgstr "Zaznacz, aby usunąć ten wpis z listy bloków" -#: src/Module/Moderation/Blocklist/Server/Index.php:96 +#: src/Module/Moderation/Blocklist/Server/Index.php:82 msgid "Server Domain Pattern Blocklist" msgstr "Lista bloków wzorców domen serwerów" -#: src/Module/Moderation/Blocklist/Server/Index.php:97 +#: src/Module/Moderation/Blocklist/Server/Index.php:83 msgid "" "This page can be used to define a blocklist of server domain patterns from " "the federated network that are not allowed to interact with your node. For " "each domain pattern you should also provide the reason why you block it." msgstr "Ta strona może służyć do definiowania listy zablokowanych wzorców domen serwera z sieci stowarzyszonej, które nie mogą komunikować się z węzłem. Dla każdego wzorca domeny należy również podać powód, dla którego go blokujesz." -#: src/Module/Moderation/Blocklist/Server/Index.php:98 +#: src/Module/Moderation/Blocklist/Server/Index.php:84 msgid "" "The list of blocked server domain patterns will be made publically available" " on the /friendica page so that your users and " "people investigating communication problems can find the reason easily." msgstr "Lista zablokowanych wzorców domen serwera zostanie udostępniona publicznie na stronie /friendica, aby użytkownicy i osoby badające problemy z komunikacją mogły łatwo znaleźć przyczynę." -#: src/Module/Moderation/Blocklist/Server/Index.php:104 +#: src/Module/Moderation/Blocklist/Server/Index.php:90 msgid "Import server domain pattern blocklist" msgstr "" -#: src/Module/Moderation/Blocklist/Server/Index.php:105 +#: src/Module/Moderation/Blocklist/Server/Index.php:91 msgid "Add new entry to the blocklist" msgstr "Dodaj nowy wpis do listy zablokowanych" -#: src/Module/Moderation/Blocklist/Server/Index.php:108 +#: src/Module/Moderation/Blocklist/Server/Index.php:94 msgid "Save changes to the blocklist" msgstr "Zapisz zmiany w liście zablokowanych" -#: src/Module/Moderation/Blocklist/Server/Index.php:109 +#: src/Module/Moderation/Blocklist/Server/Index.php:95 msgid "Current Entries in the Blocklist" msgstr "Aktualne wpisy na liście zablokowanych" -#: src/Module/Moderation/Blocklist/Server/Index.php:112 +#: src/Module/Moderation/Blocklist/Server/Index.php:98 msgid "Delete entry from the blocklist" msgstr "Usuń wpis z listy zablokowanych" -#: src/Module/Moderation/Blocklist/Server/Index.php:113 +#: src/Module/Moderation/Blocklist/Server/Index.php:99 msgid "Delete entry from the blocklist?" msgstr "Usunąć wpis z listy zablokowanych?" -#: src/Module/Moderation/Item/Delete.php:50 +#: src/Module/Moderation/Item/Delete.php:36 msgid "Item marked for deletion." msgstr "Przedmiot oznaczony do usunięcia." -#: src/Module/Moderation/Item/Delete.php:63 +#: src/Module/Moderation/Item/Delete.php:49 msgid "Delete this Item" msgstr "Usuń ten przedmiot" -#: src/Module/Moderation/Item/Delete.php:64 +#: src/Module/Moderation/Item/Delete.php:50 msgid "" "On this page you can delete an item from your node. If the item is a top " "level posting, the entire thread will be deleted." msgstr "Na tej stronie możesz usunąć przedmiot ze swojego węzła. Jeśli element jest publikowaniem na najwyższym poziomie, cały wątek zostanie usunięty." -#: src/Module/Moderation/Item/Delete.php:65 +#: src/Module/Moderation/Item/Delete.php:51 msgid "" "You need to know the GUID of the item. You can find it e.g. by looking at " "the display URL. The last part of http://example.com/display/123456 is the " "GUID, here 123456." msgstr "Musisz znać identyfikator GUID tego przedmiotu. Możesz go znaleźć np. patrząc na wyświetlany adres URL. Ostatnia część http://example.com/display/123456 to GUID, tutaj 123456." -#: src/Module/Moderation/Item/Delete.php:67 +#: src/Module/Moderation/Item/Delete.php:53 msgid "GUID" msgstr "GUID" -#: src/Module/Moderation/Item/Delete.php:67 +#: src/Module/Moderation/Item/Delete.php:53 msgid "The GUID of the item you want to delete." msgstr "Identyfikator elementu GUID, który chcesz usunąć." -#: src/Module/Moderation/Item/Source.php:83 +#: src/Module/Moderation/Item/Source.php:69 msgid "Item Id" msgstr "Identyfikator elementu" -#: src/Module/Moderation/Item/Source.php:84 +#: src/Module/Moderation/Item/Source.php:70 msgid "Item URI" msgstr "Identyfikator URI elementu" -#: src/Module/Moderation/Item/Source.php:86 +#: src/Module/Moderation/Item/Source.php:72 msgid "Terms" msgstr "Zasady" -#: src/Module/Moderation/Item/Source.php:87 +#: src/Module/Moderation/Item/Source.php:73 msgid "Tag" msgstr "Znacznik" -#: src/Module/Moderation/Item/Source.php:88 -#: src/Module/Moderation/Users/Active.php:126 -#: src/Module/Moderation/Users/Blocked.php:126 -#: src/Module/Moderation/Users/Index.php:140 +#: src/Module/Moderation/Item/Source.php:74 +#: src/Module/Moderation/Users/Active.php:112 +#: src/Module/Moderation/Users/Blocked.php:112 +#: src/Module/Moderation/Users/Index.php:126 msgid "Type" msgstr "Typu" -#: src/Module/Moderation/Item/Source.php:89 +#: src/Module/Moderation/Item/Source.php:75 msgid "Term" msgstr "Zasada" -#: src/Module/Moderation/Item/Source.php:90 +#: src/Module/Moderation/Item/Source.php:76 msgid "URL" msgstr "URL" -#: src/Module/Moderation/Item/Source.php:92 +#: src/Module/Moderation/Item/Source.php:78 msgid "Implicit Mention" msgstr "Wzmianka niejawna" -#: src/Module/Moderation/Item/Source.php:94 +#: src/Module/Moderation/Item/Source.php:80 msgid "Item not found" msgstr "Nie znaleziono elementu" -#: src/Module/Moderation/Item/Source.php:95 +#: src/Module/Moderation/Item/Source.php:81 msgid "No source recorded" msgstr "" -#: src/Module/Moderation/Item/Source.php:96 +#: src/Module/Moderation/Item/Source.php:82 msgid "" "Please make sure the debug.store_source config key is set in " "config/local.config.php for future items to have sources." msgstr "" -#: src/Module/Moderation/Item/Source.php:98 +#: src/Module/Moderation/Item/Source.php:84 msgid "Item Guid" msgstr "Element Guid" -#: src/Module/Moderation/Report/Create.php:95 +#: src/Module/Moderation/Report/Create.php:81 msgid "Contact not found or their server is already blocked on this node." msgstr "" -#: src/Module/Moderation/Report/Create.php:136 +#: src/Module/Moderation/Report/Create.php:122 msgid "Please login to access this page." msgstr "" -#: src/Module/Moderation/Report/Create.php:165 -#: src/Module/Moderation/Report/Create.php:180 -#: src/Module/Moderation/Report/Create.php:208 -#: src/Module/Moderation/Report/Create.php:260 -#: src/Module/Moderation/Report/Create.php:279 +#: src/Module/Moderation/Report/Create.php:151 +#: src/Module/Moderation/Report/Create.php:166 +#: src/Module/Moderation/Report/Create.php:194 +#: src/Module/Moderation/Report/Create.php:246 +#: src/Module/Moderation/Report/Create.php:265 msgid "Create Moderation Report" msgstr "" -#: src/Module/Moderation/Report/Create.php:166 +#: src/Module/Moderation/Report/Create.php:152 msgid "Pick Contact" msgstr "" -#: src/Module/Moderation/Report/Create.php:167 +#: src/Module/Moderation/Report/Create.php:153 msgid "" "Please enter below the contact address or profile URL you would like to " "create a moderation report about." msgstr "" -#: src/Module/Moderation/Report/Create.php:171 +#: src/Module/Moderation/Report/Create.php:157 msgid "Contact address/URL" msgstr "" -#: src/Module/Moderation/Report/Create.php:181 +#: src/Module/Moderation/Report/Create.php:167 msgid "Pick Category" msgstr "" -#: src/Module/Moderation/Report/Create.php:182 +#: src/Module/Moderation/Report/Create.php:168 msgid "Please pick below the category of your report." msgstr "" -#: src/Module/Moderation/Report/Create.php:186 -#: src/Module/Moderation/Report/Create.php:311 +#: src/Module/Moderation/Report/Create.php:172 +#: src/Module/Moderation/Report/Create.php:297 msgid "Spam" msgstr "" -#: src/Module/Moderation/Report/Create.php:186 +#: src/Module/Moderation/Report/Create.php:172 msgid "" "This contact is publishing many repeated/overly long posts/replies or " "advertising their product/websites in otherwise irrelevant conversations." msgstr "" -#: src/Module/Moderation/Report/Create.php:187 -#: src/Module/Moderation/Report/Create.php:312 +#: src/Module/Moderation/Report/Create.php:173 +#: src/Module/Moderation/Report/Create.php:298 msgid "Illegal Content" msgstr "" -#: src/Module/Moderation/Report/Create.php:187 +#: src/Module/Moderation/Report/Create.php:173 msgid "" "This contact is publishing content that is considered illegal in this node's" " hosting juridiction." msgstr "" -#: src/Module/Moderation/Report/Create.php:188 -#: src/Module/Moderation/Report/Create.php:313 +#: src/Module/Moderation/Report/Create.php:174 +#: src/Module/Moderation/Report/Create.php:299 msgid "Community Safety" msgstr "" -#: src/Module/Moderation/Report/Create.php:188 +#: src/Module/Moderation/Report/Create.php:174 msgid "" "This contact aggravated you or other people, by being provocative or " "insensitive, intentionally or not. This includes disclosing people's private" @@ -8610,12 +8605,12 @@ msgid "" "replies." msgstr "" -#: src/Module/Moderation/Report/Create.php:189 -#: src/Module/Moderation/Report/Create.php:314 +#: src/Module/Moderation/Report/Create.php:175 +#: src/Module/Moderation/Report/Create.php:300 msgid "Unwanted Content/Behavior" msgstr "" -#: src/Module/Moderation/Report/Create.php:189 +#: src/Module/Moderation/Report/Create.php:175 msgid "" "This contact has repeatedly published content irrelevant to the node's theme" " or is openly criticizing the node's administration/moderation without " @@ -8623,89 +8618,89 @@ msgid "" "nitpicking on a sensitive topic." msgstr "" -#: src/Module/Moderation/Report/Create.php:190 -#: src/Module/Moderation/Report/Create.php:315 +#: src/Module/Moderation/Report/Create.php:176 +#: src/Module/Moderation/Report/Create.php:301 msgid "Rules Violation" msgstr "" -#: src/Module/Moderation/Report/Create.php:190 +#: src/Module/Moderation/Report/Create.php:176 msgid "" "This contact violated one or more rules of this node. You will be able to " "pick which one(s) in the next step." msgstr "" -#: src/Module/Moderation/Report/Create.php:191 +#: src/Module/Moderation/Report/Create.php:177 msgid "" "Please elaborate below why you submitted this report. The more details you " "provide, the better your report can be handled." msgstr "" -#: src/Module/Moderation/Report/Create.php:193 +#: src/Module/Moderation/Report/Create.php:179 msgid "Additional Information" msgstr "" -#: src/Module/Moderation/Report/Create.php:193 +#: src/Module/Moderation/Report/Create.php:179 msgid "" "Please provide any additional information relevant to this particular " "report. You will be able to attach posts by this contact in the next step, " "but any context is welcome." msgstr "" -#: src/Module/Moderation/Report/Create.php:209 +#: src/Module/Moderation/Report/Create.php:195 msgid "Pick Rules" msgstr "" -#: src/Module/Moderation/Report/Create.php:210 +#: src/Module/Moderation/Report/Create.php:196 msgid "Please pick below the node rules you believe this contact violated." msgstr "" -#: src/Module/Moderation/Report/Create.php:261 +#: src/Module/Moderation/Report/Create.php:247 msgid "Pick Posts" msgstr "" -#: src/Module/Moderation/Report/Create.php:262 +#: src/Module/Moderation/Report/Create.php:248 msgid "Please optionally pick posts to attach to your report." msgstr "" -#: src/Module/Moderation/Report/Create.php:281 +#: src/Module/Moderation/Report/Create.php:267 msgid "Submit Report" msgstr "" -#: src/Module/Moderation/Report/Create.php:282 +#: src/Module/Moderation/Report/Create.php:268 msgid "Further Action" msgstr "" -#: src/Module/Moderation/Report/Create.php:283 +#: src/Module/Moderation/Report/Create.php:269 msgid "" "You can also perform one of the following action on the contact you " "reported:" msgstr "" -#: src/Module/Moderation/Report/Create.php:291 +#: src/Module/Moderation/Report/Create.php:277 msgid "Nothing" msgstr "" -#: src/Module/Moderation/Report/Create.php:292 +#: src/Module/Moderation/Report/Create.php:278 msgid "Collapse contact" msgstr "" -#: src/Module/Moderation/Report/Create.php:292 +#: src/Module/Moderation/Report/Create.php:278 msgid "" "Their posts and replies will keep appearing in your Network page but their " "content will be collapsed by default." msgstr "" -#: src/Module/Moderation/Report/Create.php:293 +#: src/Module/Moderation/Report/Create.php:279 msgid "" "Their posts won't appear in your Network page anymore, but their replies can" " appear in forum threads. They still can follow you." msgstr "" -#: src/Module/Moderation/Report/Create.php:294 +#: src/Module/Moderation/Report/Create.php:280 msgid "Block contact" msgstr "" -#: src/Module/Moderation/Report/Create.php:294 +#: src/Module/Moderation/Report/Create.php:280 msgid "" "Their posts won't appear in your Network page anymore, but their replies can" " appear in forum threads, with their content collapsed by default. They " @@ -8713,51 +8708,51 @@ msgid "" "means." msgstr "" -#: src/Module/Moderation/Report/Create.php:297 +#: src/Module/Moderation/Report/Create.php:283 msgid "Forward report" msgstr "" -#: src/Module/Moderation/Report/Create.php:297 +#: src/Module/Moderation/Report/Create.php:283 msgid "Would you ike to forward this report to the remote server?" msgstr "" -#: src/Module/Moderation/Report/Create.php:330 +#: src/Module/Moderation/Report/Create.php:316 msgid "1. Pick a contact" msgstr "" -#: src/Module/Moderation/Report/Create.php:331 +#: src/Module/Moderation/Report/Create.php:317 msgid "2. Pick a category" msgstr "" -#: src/Module/Moderation/Report/Create.php:332 +#: src/Module/Moderation/Report/Create.php:318 msgid "2a. Pick rules" msgstr "" -#: src/Module/Moderation/Report/Create.php:333 +#: src/Module/Moderation/Report/Create.php:319 msgid "2b. Add comment" msgstr "" -#: src/Module/Moderation/Report/Create.php:334 +#: src/Module/Moderation/Report/Create.php:320 msgid "3. Pick posts" msgstr "" -#: src/Module/Moderation/Reports.php:111 +#: src/Module/Moderation/Reports.php:97 msgid "List of reports" msgstr "" -#: src/Module/Moderation/Reports.php:112 +#: src/Module/Moderation/Reports.php:98 msgid "This page display reports created by our or remote users." msgstr "" -#: src/Module/Moderation/Reports.php:113 +#: src/Module/Moderation/Reports.php:99 msgid "No report exists at this node." msgstr "" -#: src/Module/Moderation/Reports.php:116 +#: src/Module/Moderation/Reports.php:102 msgid "Category" msgstr "" -#: src/Module/Moderation/Reports.php:120 +#: src/Module/Moderation/Reports.php:106 #, php-format msgid "%s total report" msgid_plural "%s total reports" @@ -8766,24 +8761,24 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: src/Module/Moderation/Reports.php:123 +#: src/Module/Moderation/Reports.php:109 msgid "URL of the reported contact." msgstr "" -#: src/Module/Moderation/Summary.php:57 src/Module/Settings/Account.php:436 +#: src/Module/Moderation/Summary.php:43 src/Module/Settings/Account.php:422 msgid "Channel Relay" msgstr "" -#: src/Module/Moderation/Summary.php:77 +#: src/Module/Moderation/Summary.php:63 msgid "Registered users" msgstr "Zarejestrowani użytkownicy" -#: src/Module/Moderation/Summary.php:79 +#: src/Module/Moderation/Summary.php:65 msgid "Pending registrations" msgstr "Oczekujące rejestracje" -#: src/Module/Moderation/Users/Active.php:43 -#: src/Module/Moderation/Users/Index.php:43 +#: src/Module/Moderation/Users/Active.php:29 +#: src/Module/Moderation/Users/Index.php:29 #, php-format msgid "%s user blocked" msgid_plural "%s users blocked" @@ -8792,18 +8787,18 @@ msgstr[1] "%s użytkowników zablokowanych" msgstr[2] "%s użytkowników zablokowanych" msgstr[3] "%s użytkownicy zablokowani" -#: src/Module/Moderation/Users/Active.php:51 -#: src/Module/Moderation/Users/Active.php:85 -#: src/Module/Moderation/Users/Blocked.php:51 -#: src/Module/Moderation/Users/Blocked.php:85 -#: src/Module/Moderation/Users/Index.php:58 -#: src/Module/Moderation/Users/Index.php:92 +#: src/Module/Moderation/Users/Active.php:37 +#: src/Module/Moderation/Users/Active.php:71 +#: src/Module/Moderation/Users/Blocked.php:37 +#: src/Module/Moderation/Users/Blocked.php:71 +#: src/Module/Moderation/Users/Index.php:44 +#: src/Module/Moderation/Users/Index.php:78 msgid "You can't remove yourself" msgstr "Nie możesz usunąć siebie" -#: src/Module/Moderation/Users/Active.php:55 -#: src/Module/Moderation/Users/Blocked.php:55 -#: src/Module/Moderation/Users/Index.php:62 +#: src/Module/Moderation/Users/Active.php:41 +#: src/Module/Moderation/Users/Blocked.php:41 +#: src/Module/Moderation/Users/Index.php:48 #, php-format msgid "%s user deleted" msgid_plural "%s users deleted" @@ -8812,88 +8807,88 @@ msgstr[1] "usunięto %s użytkowników" msgstr[2] "usunięto %s użytkowników" msgstr[3] "%s usuniętych użytkowników" -#: src/Module/Moderation/Users/Active.php:83 -#: src/Module/Moderation/Users/Blocked.php:83 -#: src/Module/Moderation/Users/Index.php:90 +#: src/Module/Moderation/Users/Active.php:69 +#: src/Module/Moderation/Users/Blocked.php:69 +#: src/Module/Moderation/Users/Index.php:76 #, php-format msgid "User \"%s\" deleted" msgstr "Użytkownik \"%s\" usunięty" -#: src/Module/Moderation/Users/Active.php:93 -#: src/Module/Moderation/Users/Index.php:100 +#: src/Module/Moderation/Users/Active.php:79 +#: src/Module/Moderation/Users/Index.php:86 #, php-format msgid "User \"%s\" blocked" msgstr "Użytkownik \"%s\" zablokowany" -#: src/Module/Moderation/Users/Active.php:126 -#: src/Module/Moderation/Users/Blocked.php:126 -#: src/Module/Moderation/Users/Deleted.php:83 -#: src/Module/Moderation/Users/Index.php:140 -#: src/Module/Moderation/Users/Index.php:160 +#: src/Module/Moderation/Users/Active.php:112 +#: src/Module/Moderation/Users/Blocked.php:112 +#: src/Module/Moderation/Users/Deleted.php:69 +#: src/Module/Moderation/Users/Index.php:126 +#: src/Module/Moderation/Users/Index.php:146 msgid "Register date" msgstr "Data rejestracji" -#: src/Module/Moderation/Users/Active.php:126 -#: src/Module/Moderation/Users/Blocked.php:126 -#: src/Module/Moderation/Users/Deleted.php:83 -#: src/Module/Moderation/Users/Index.php:140 -#: src/Module/Moderation/Users/Index.php:160 +#: src/Module/Moderation/Users/Active.php:112 +#: src/Module/Moderation/Users/Blocked.php:112 +#: src/Module/Moderation/Users/Deleted.php:69 +#: src/Module/Moderation/Users/Index.php:126 +#: src/Module/Moderation/Users/Index.php:146 msgid "Last login" msgstr "Ostatnie logowanie" -#: src/Module/Moderation/Users/Active.php:126 -#: src/Module/Moderation/Users/Blocked.php:126 -#: src/Module/Moderation/Users/Deleted.php:83 -#: src/Module/Moderation/Users/Index.php:140 -#: src/Module/Moderation/Users/Index.php:160 +#: src/Module/Moderation/Users/Active.php:112 +#: src/Module/Moderation/Users/Blocked.php:112 +#: src/Module/Moderation/Users/Deleted.php:69 +#: src/Module/Moderation/Users/Index.php:126 +#: src/Module/Moderation/Users/Index.php:146 msgid "Last public item" msgstr "Ostatni element publiczny" -#: src/Module/Moderation/Users/Active.php:134 +#: src/Module/Moderation/Users/Active.php:120 msgid "Active Accounts" msgstr "Aktywne konta" -#: src/Module/Moderation/Users/Active.php:138 -#: src/Module/Moderation/Users/Blocked.php:137 -#: src/Module/Moderation/Users/Index.php:153 +#: src/Module/Moderation/Users/Active.php:124 +#: src/Module/Moderation/Users/Blocked.php:123 +#: src/Module/Moderation/Users/Index.php:139 msgid "User blocked" msgstr "Użytkownik zablokowany" -#: src/Module/Moderation/Users/Active.php:139 -#: src/Module/Moderation/Users/Blocked.php:139 -#: src/Module/Moderation/Users/Index.php:155 +#: src/Module/Moderation/Users/Active.php:125 +#: src/Module/Moderation/Users/Blocked.php:125 +#: src/Module/Moderation/Users/Index.php:141 msgid "Site admin" msgstr "Administracja stroną" -#: src/Module/Moderation/Users/Active.php:140 -#: src/Module/Moderation/Users/Blocked.php:140 -#: src/Module/Moderation/Users/Index.php:156 +#: src/Module/Moderation/Users/Active.php:126 +#: src/Module/Moderation/Users/Blocked.php:126 +#: src/Module/Moderation/Users/Index.php:142 msgid "Account expired" msgstr "Konto wygasło" -#: src/Module/Moderation/Users/Active.php:141 -#: src/Module/Moderation/Users/Index.php:159 +#: src/Module/Moderation/Users/Active.php:127 +#: src/Module/Moderation/Users/Index.php:145 msgid "Create a new user" msgstr "Utwórz nowego użytkownika" -#: src/Module/Moderation/Users/Active.php:147 -#: src/Module/Moderation/Users/Blocked.php:146 -#: src/Module/Moderation/Users/Index.php:165 +#: src/Module/Moderation/Users/Active.php:133 +#: src/Module/Moderation/Users/Blocked.php:132 +#: src/Module/Moderation/Users/Index.php:151 msgid "" "Selected users will be deleted!\\n\\nEverything these users had posted on " "this site will be permanently deleted!\\n\\nAre you sure?" msgstr "Zaznaczeni użytkownicy zostaną usunięci!\\n\\n Wszystko co zamieścili na tej stronie będzie trwale skasowane!\\n\\n Jesteś pewien?" -#: src/Module/Moderation/Users/Active.php:148 -#: src/Module/Moderation/Users/Blocked.php:147 -#: src/Module/Moderation/Users/Index.php:166 +#: src/Module/Moderation/Users/Active.php:134 +#: src/Module/Moderation/Users/Blocked.php:133 +#: src/Module/Moderation/Users/Index.php:152 msgid "" "The user {0} will be deleted!\\n\\nEverything this user has posted on this " "site will be permanently deleted!\\n\\nAre you sure?" msgstr "Użytkownik {0} zostanie usunięty!\\n\\n Wszystko co zamieścił na tej stronie będzie trwale skasowane!\\n\\n Jesteś pewien?" -#: src/Module/Moderation/Users/Blocked.php:43 -#: src/Module/Moderation/Users/Index.php:50 +#: src/Module/Moderation/Users/Blocked.php:29 +#: src/Module/Moderation/Users/Index.php:36 #, php-format msgid "%s user unblocked" msgid_plural "%s users unblocked" @@ -8902,54 +8897,54 @@ msgstr[1] "%s użytkowników odblokowanych" msgstr[2] "%s użytkowników odblokowanych" msgstr[3] "%s użytkowników odblokowanych" -#: src/Module/Moderation/Users/Blocked.php:92 -#: src/Module/Moderation/Users/Index.php:106 +#: src/Module/Moderation/Users/Blocked.php:78 +#: src/Module/Moderation/Users/Index.php:92 #, php-format msgid "User \"%s\" unblocked" msgstr "Użytkownik \"%s\" odblokowany" -#: src/Module/Moderation/Users/Blocked.php:134 +#: src/Module/Moderation/Users/Blocked.php:120 msgid "Blocked Users" msgstr "Zablokowani użytkownicy" -#: src/Module/Moderation/Users/Create.php:62 +#: src/Module/Moderation/Users/Create.php:48 msgid "New User" msgstr "Nowy użytkownik" -#: src/Module/Moderation/Users/Create.php:63 +#: src/Module/Moderation/Users/Create.php:49 msgid "Add User" msgstr "Dodaj użytkownika" -#: src/Module/Moderation/Users/Create.php:70 +#: src/Module/Moderation/Users/Create.php:56 msgid "Name of the new user." msgstr "Nazwa nowego użytkownika." -#: src/Module/Moderation/Users/Create.php:71 +#: src/Module/Moderation/Users/Create.php:57 msgid "Nickname" msgstr "Pseudonim" -#: src/Module/Moderation/Users/Create.php:71 +#: src/Module/Moderation/Users/Create.php:57 msgid "Nickname of the new user." msgstr "Pseudonim nowego użytkownika." -#: src/Module/Moderation/Users/Create.php:72 +#: src/Module/Moderation/Users/Create.php:58 msgid "Email address of the new user." msgstr "Adres email nowego użytkownika." -#: src/Module/Moderation/Users/Deleted.php:81 +#: src/Module/Moderation/Users/Deleted.php:67 msgid "Users awaiting permanent deletion" msgstr "Użytkownicy oczekujący na trwałe usunięcie" -#: src/Module/Moderation/Users/Deleted.php:83 -#: src/Module/Moderation/Users/Index.php:160 +#: src/Module/Moderation/Users/Deleted.php:69 +#: src/Module/Moderation/Users/Index.php:146 msgid "Permanent deletion" msgstr "Trwałe usunięcie" -#: src/Module/Moderation/Users/Index.php:150 +#: src/Module/Moderation/Users/Index.php:136 msgid "User waiting for permanent deletion" msgstr "Użytkownik czekający na trwałe usunięcie" -#: src/Module/Moderation/Users/Pending.php:44 +#: src/Module/Moderation/Users/Pending.php:30 #, php-format msgid "%s user approved" msgid_plural "%s users approved" @@ -8958,7 +8953,7 @@ msgstr[1] "%s użytkowników zatwierdzonych" msgstr[2] "%s użytkowników zatwierdzonych" msgstr[3] "%s użytkowników zatwierdzonych" -#: src/Module/Moderation/Users/Pending.php:51 +#: src/Module/Moderation/Users/Pending.php:37 #, php-format msgid "%s registration revoked" msgid_plural "%s registrations revoked" @@ -8967,420 +8962,406 @@ msgstr[1] "%s rejestracje cofnięto" msgstr[2] "%s rejestracji cofnięto" msgstr[3] "%s rejestracji cofnięto " -#: src/Module/Moderation/Users/Pending.php:76 +#: src/Module/Moderation/Users/Pending.php:62 msgid "Account approved." msgstr "Konto zatwierdzone." -#: src/Module/Moderation/Users/Pending.php:82 +#: src/Module/Moderation/Users/Pending.php:68 msgid "Registration revoked" msgstr "Rejestracja odwołana" -#: src/Module/Moderation/Users/Pending.php:97 +#: src/Module/Moderation/Users/Pending.php:83 msgid "User registrations awaiting review" msgstr "Rejestracje użytkowników oczekujące na sprawdzenie" -#: src/Module/Moderation/Users/Pending.php:99 +#: src/Module/Moderation/Users/Pending.php:85 msgid "Request date" msgstr "Data prośby" -#: src/Module/Moderation/Users/Pending.php:100 +#: src/Module/Moderation/Users/Pending.php:86 msgid "No registrations." msgstr "Brak rejestracji." -#: src/Module/Moderation/Users/Pending.php:101 +#: src/Module/Moderation/Users/Pending.php:87 msgid "Note from the user" msgstr "Uwaga od użytkownika" -#: src/Module/Moderation/Users/Pending.php:103 +#: src/Module/Moderation/Users/Pending.php:89 msgid "Deny" msgstr "Odmów" -#: src/Module/Notifications/Introductions.php:105 +#: src/Module/Notifications/Introductions.php:91 msgid "Show Ignored Requests" msgstr "Pokaż ignorowane żądania" -#: src/Module/Notifications/Introductions.php:105 +#: src/Module/Notifications/Introductions.php:91 msgid "Hide Ignored Requests" msgstr "Ukryj zignorowane prośby" -#: src/Module/Notifications/Introductions.php:121 -#: src/Module/Notifications/Introductions.php:184 +#: src/Module/Notifications/Introductions.php:107 +#: src/Module/Notifications/Introductions.php:170 msgid "Notification type:" msgstr "Typ powiadomienia:" -#: src/Module/Notifications/Introductions.php:124 +#: src/Module/Notifications/Introductions.php:110 msgid "Suggested by:" msgstr "Sugerowany przez:" -#: src/Module/Notifications/Introductions.php:149 +#: src/Module/Notifications/Introductions.php:135 msgid "Claims to be known to you: " msgstr "Twierdzi, że go/ją znasz: " -#: src/Module/Notifications/Introductions.php:158 +#: src/Module/Notifications/Introductions.php:144 msgid "Shall your connection be bidirectional or not?" msgstr "Czy twoje połączenie ma być dwukierunkowe, czy nie?" -#: src/Module/Notifications/Introductions.php:159 +#: src/Module/Notifications/Introductions.php:145 #, php-format msgid "" "Accepting %s as a friend allows %s to subscribe to your posts, and you will " "also receive updates from them in your news feed." msgstr "Przyjmowanie %s jako znajomego pozwala %s zasubskrybować twoje posty, a także otrzymywać od nich aktualizacje w swoim kanale wiadomości." -#: src/Module/Notifications/Introductions.php:160 +#: src/Module/Notifications/Introductions.php:146 #, php-format msgid "" "Accepting %s as a subscriber allows them to subscribe to your posts, but you" " will not receive updates from them in your news feed." msgstr "Zaakceptowanie %s jako subskrybenta umożliwia im subskrybowanie Twoich postów, ale nie otrzymasz od nich aktualizacji w swoim kanale wiadomości." -#: src/Module/Notifications/Introductions.php:162 +#: src/Module/Notifications/Introductions.php:148 msgid "Friend" msgstr "Znajomy" -#: src/Module/Notifications/Introductions.php:163 +#: src/Module/Notifications/Introductions.php:149 msgid "Subscriber" msgstr "Subskrybent" -#: src/Module/Notifications/Introductions.php:222 +#: src/Module/Notifications/Introductions.php:208 msgid "No introductions." msgstr "Brak dostępu." -#: src/Module/Notifications/Introductions.php:223 -#: src/Module/Notifications/Notifications.php:141 +#: src/Module/Notifications/Introductions.php:209 +#: src/Module/Notifications/Notifications.php:127 #, php-format msgid "No more %s notifications." msgstr "Brak kolejnych %s powiadomień." -#: src/Module/Notifications/Notification.php:135 +#: src/Module/Notifications/Notification.php:121 msgid "You must be logged in to show this page." msgstr "Musisz być zalogowany, aby zobaczyć tę stronę." -#: src/Module/Notifications/Notifications.php:66 +#: src/Module/Notifications/Notifications.php:52 msgid "Network Notifications" msgstr "Powiadomienia sieciowe" -#: src/Module/Notifications/Notifications.php:72 +#: src/Module/Notifications/Notifications.php:58 msgid "System Notifications" msgstr "Powiadomienia systemowe" -#: src/Module/Notifications/Notifications.php:78 +#: src/Module/Notifications/Notifications.php:64 msgid "Personal Notifications" msgstr "Prywatne powiadomienia" -#: src/Module/Notifications/Notifications.php:84 +#: src/Module/Notifications/Notifications.php:70 msgid "Home Notifications" msgstr "Powiadomienia domowe" -#: src/Module/Notifications/Notifications.php:146 +#: src/Module/Notifications/Notifications.php:132 msgid "Show unread" msgstr "Pokaż nieprzeczytane" -#: src/Module/Notifications/Ping.php:220 +#: src/Module/Notifications/Ping.php:206 msgid "{0} requested registration" msgstr "{0} wymagana rejestracja" -#: src/Module/Notifications/Ping.php:229 +#: src/Module/Notifications/Ping.php:215 #, php-format msgid "{0} and %d others requested registration" msgstr "{0} i %d innych poprosili o rejestrację" -#: src/Module/OAuth/Acknowledge.php:51 +#: src/Module/OAuth/Acknowledge.php:37 msgid "Authorize application connection" msgstr "Autoryzacja połączenia aplikacji" -#: src/Module/OAuth/Acknowledge.php:53 +#: src/Module/OAuth/Acknowledge.php:39 msgid "" "Do you want to authorize this application to access your posts and contacts," " and/or create new posts for you?" msgstr "Czy chcesz zezwolić tej aplikacji na dostęp do swoich postów i kontaktów i/lub tworzenie nowych postów?" -#: src/Module/OAuth/Authorize.php:54 +#: src/Module/OAuth/Authorize.php:40 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:75 +#: src/Module/OAuth/Authorize.php:45 src/Module/OAuth/Token.php:61 msgid "Incomplete request data" msgstr "Niekompletne dane żądania" -#: src/Module/OAuth/Authorize.php:106 +#: src/Module/OAuth/Authorize.php:92 #, php-format msgid "" "Please copy the following authentication code into your application and " "close this window: %s" msgstr "Skopiuj następujący kod uwierzytelniający do swojej aplikacji i zamknij to okno: %s" -#: src/Module/OAuth/Token.php:80 +#: src/Module/OAuth/Token.php:66 msgid "Invalid data or unknown client" msgstr "" -#: src/Module/OAuth/Token.php:105 +#: src/Module/OAuth/Token.php:91 msgid "Unsupported or missing grant type" msgstr "Nieobsługiwany lub brakujący typ dotacji" -#: src/Module/OStatus/Repair.php:83 -msgid "Resubscribing to OStatus contacts" -msgstr "Ponowne subskrybowanie kontaktów OStatus" - -#: src/Module/OStatus/Repair.php:84 src/Module/OStatus/Subscribe.php:160 -msgid "Keep this window open until done." -msgstr "Pozostaw to okno otwarte, dopóki nie będzie gotowe." - -#: src/Module/OStatus/Repair.php:85 -msgid "✔ Done" -msgstr "✔ Gotowe" - -#: src/Module/OStatus/Repair.php:86 -msgid "No OStatus contacts to resubscribe to." -msgstr "" - -#: src/Module/OStatus/Subscribe.php:72 +#: src/Module/OStatus/Subscribe.php:58 msgid "Subscribing to contacts" msgstr "Subskrybowanie kontaktów" -#: src/Module/OStatus/Subscribe.php:81 +#: src/Module/OStatus/Subscribe.php:67 msgid "No contact provided." msgstr "Brak kontaktu." -#: src/Module/OStatus/Subscribe.php:87 +#: src/Module/OStatus/Subscribe.php:73 msgid "Couldn't fetch information for contact." msgstr "Nie można pobrać informacji o kontakcie." -#: src/Module/OStatus/Subscribe.php:98 +#: src/Module/OStatus/Subscribe.php:84 msgid "Couldn't fetch friends for contact." msgstr "Nie można pobrać znajomych do kontaktu." -#: src/Module/OStatus/Subscribe.php:104 src/Module/OStatus/Subscribe.php:115 +#: src/Module/OStatus/Subscribe.php:90 src/Module/OStatus/Subscribe.php:101 msgid "Couldn't fetch following contacts." msgstr "Nie udało się pobrać następujących kontaktów." -#: src/Module/OStatus/Subscribe.php:110 +#: src/Module/OStatus/Subscribe.php:96 msgid "Couldn't fetch remote profile." msgstr "Nie można pobrać profilu zdalnego." -#: src/Module/OStatus/Subscribe.php:120 +#: src/Module/OStatus/Subscribe.php:106 msgid "Unsupported network" msgstr "Sieć nieobsługiwana" -#: src/Module/OStatus/Subscribe.php:136 +#: src/Module/OStatus/Subscribe.php:122 msgid "Done" msgstr "Gotowe" -#: src/Module/OStatus/Subscribe.php:150 +#: src/Module/OStatus/Subscribe.php:136 msgid "success" msgstr "powodzenie" -#: src/Module/OStatus/Subscribe.php:152 +#: src/Module/OStatus/Subscribe.php:138 msgid "failed" msgstr "nie powiodło się" -#: src/Module/OStatus/Subscribe.php:155 +#: src/Module/OStatus/Subscribe.php:141 msgid "ignored" msgstr "ignorowany(-a)" -#: src/Module/Photo.php:122 +#: src/Module/OStatus/Subscribe.php:146 +msgid "Keep this window open until done." +msgstr "Pozostaw to okno otwarte, dopóki nie będzie gotowe." + +#: src/Module/Photo.php:108 msgid "The Photo is not available." msgstr "Zdjęcie jest niedostępne." -#: src/Module/Photo.php:147 +#: src/Module/Photo.php:133 #, 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:188 +#: src/Module/Photo.php:174 #, php-format msgid "Invalid external resource with url %s." msgstr "Nieprawidłowy zasób zewnętrzny z adresem URL %s." -#: src/Module/Photo.php:190 +#: src/Module/Photo.php:176 #, php-format msgid "Invalid photo with id %s." msgstr "Nieprawidłowe zdjęcie z identyfikatorem %s." -#: src/Module/Post/Edit.php:82 src/Module/Post/Edit.php:96 +#: src/Module/Post/Edit.php:68 src/Module/Post/Edit.php:82 msgid "Post not found." msgstr "Nie znaleziono wpisu." -#: src/Module/Post/Edit.php:102 +#: src/Module/Post/Edit.php:88 msgid "Edit post" msgstr "Edytuj wpis" -#: src/Module/Post/Edit.php:136 +#: src/Module/Post/Edit.php:122 msgid "web link" msgstr "link" -#: src/Module/Post/Edit.php:137 +#: src/Module/Post/Edit.php:123 msgid "Insert video link" msgstr "Wstaw link do filmu" -#: src/Module/Post/Edit.php:138 +#: src/Module/Post/Edit.php:124 msgid "video link" msgstr "link do filmu" -#: src/Module/Post/Edit.php:139 +#: src/Module/Post/Edit.php:125 msgid "Insert audio link" msgstr "Wstaw link do audio" -#: src/Module/Post/Edit.php:140 +#: src/Module/Post/Edit.php:126 msgid "audio link" msgstr "link do audio" -#: src/Module/Post/Tag/Remove.php:106 +#: src/Module/Post/Tag/Remove.php:92 msgid "Remove Item Tag" msgstr "Usuń pozycję znacznika" -#: src/Module/Post/Tag/Remove.php:107 +#: src/Module/Post/Tag/Remove.php:93 msgid "Select a tag to remove: " msgstr "Wybierz znacznik do usunięcia: " -#: src/Module/Post/Tag/Remove.php:108 -#: src/Module/Settings/TwoFactor/Trusted.php:147 +#: src/Module/Post/Tag/Remove.php:94 +#: src/Module/Settings/TwoFactor/Trusted.php:133 msgid "Remove" msgstr "Usuń" -#: src/Module/Privacy/PermissionTooltip.php:71 +#: src/Module/Privacy/PermissionTooltip.php:57 #, php-format msgid "Wrong type \"%s\", expected one of: %s" msgstr "Nieprawidłowy typ „%s”, oczekiwano jednego z:%s" -#: src/Module/Privacy/PermissionTooltip.php:101 +#: src/Module/Privacy/PermissionTooltip.php:87 msgid "Model not found" msgstr "Nie znaleziono modelu" -#: src/Module/Privacy/PermissionTooltip.php:118 +#: src/Module/Privacy/PermissionTooltip.php:104 msgid "Unlisted" msgstr "Niekatalogowany" -#: src/Module/Privacy/PermissionTooltip.php:124 +#: src/Module/Privacy/PermissionTooltip.php:110 msgid "Remote privacy information not available." msgstr "Nie są dostępne zdalne informacje o prywatności." -#: src/Module/Privacy/PermissionTooltip.php:131 +#: src/Module/Privacy/PermissionTooltip.php:117 msgid "Visible to:" msgstr "Widoczne dla:" -#: src/Module/Privacy/PermissionTooltip.php:133 +#: src/Module/Privacy/PermissionTooltip.php:119 msgid "CC:" msgstr "" -#: src/Module/Privacy/PermissionTooltip.php:134 +#: src/Module/Privacy/PermissionTooltip.php:120 msgid "BCC:" msgstr "" -#: src/Module/Privacy/PermissionTooltip.php:135 +#: src/Module/Privacy/PermissionTooltip.php:121 msgid "Audience:" msgstr "" -#: src/Module/Privacy/PermissionTooltip.php:136 +#: src/Module/Privacy/PermissionTooltip.php:122 msgid "Attributed To:" msgstr "" -#: src/Module/Privacy/PermissionTooltip.php:234 +#: src/Module/Privacy/PermissionTooltip.php:220 #, php-format msgid "Collection (%s)" msgstr "Kolekcja (%s)" -#: src/Module/Privacy/PermissionTooltip.php:238 +#: src/Module/Privacy/PermissionTooltip.php:224 #, php-format msgid "Followers (%s)" msgstr "Obserwujący (%s)" -#: src/Module/Privacy/PermissionTooltip.php:255 +#: src/Module/Privacy/PermissionTooltip.php:241 #, php-format msgid "%d more" msgstr "%d więcej" -#: src/Module/Profile/Contacts.php:159 +#: src/Module/Profile/Contacts.php:145 msgid "No contacts." msgstr "Brak kontaktów." -#: src/Module/Profile/Conversations.php:106 -#: src/Module/Profile/Conversations.php:109 src/Module/Profile/Profile.php:353 -#: src/Module/Profile/Profile.php:356 src/Protocol/Feed.php:1114 -#: src/Protocol/OStatus.php:1011 -#, php-format -msgid "%s's timeline" -msgstr "oś czasu %s" - -#: src/Module/Profile/Conversations.php:107 src/Module/Profile/Profile.php:354 -#: src/Protocol/Feed.php:1118 src/Protocol/OStatus.php:1016 +#: src/Module/Profile/Conversations.php:92 src/Module/Profile/Profile.php:339 +#: src/Protocol/Feed.php:1097 #, php-format msgid "%s's posts" msgstr "wpisy %s" -#: src/Module/Profile/Conversations.php:108 src/Module/Profile/Profile.php:355 -#: src/Protocol/Feed.php:1121 src/Protocol/OStatus.php:1020 +#: src/Module/Profile/Conversations.php:93 src/Module/Profile/Profile.php:340 +#: src/Protocol/Feed.php:1100 #, 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:192 -#: src/Module/Settings/Profile/Photo/Index.php:58 +#: src/Module/Profile/Conversations.php:94 src/Module/Profile/Profile.php:341 +#: src/Protocol/Feed.php:1093 +#, php-format +msgid "%s's timeline" +msgstr "oś czasu %s" + +#: src/Module/Profile/Photos.php:150 src/Module/Profile/Photos.php:153 +#: src/Module/Profile/Photos.php:178 +#: src/Module/Settings/Profile/Photo/Index.php:44 #, php-format msgid "Image exceeds size limit of %s" msgstr "Obraz przekracza limit rozmiaru wynoszący %s" -#: src/Module/Profile/Photos.php:170 +#: src/Module/Profile/Photos.php:156 msgid "Image upload didn't complete, please try again" msgstr "Przesyłanie zdjęć nie zostało zakończone, spróbuj ponownie" -#: src/Module/Profile/Photos.php:173 +#: src/Module/Profile/Photos.php:159 msgid "Image file is missing" msgstr "Brak pliku obrazu" -#: src/Module/Profile/Photos.php:178 +#: src/Module/Profile/Photos.php:164 msgid "" "Server can't accept new file upload at this time, please contact your " "administrator" msgstr "Serwer nie może teraz przyjąć nowego pliku, skontaktuj się z administratorem" -#: src/Module/Profile/Photos.php:200 +#: src/Module/Profile/Photos.php:186 msgid "Image file is empty." msgstr "Plik obrazka jest pusty." -#: src/Module/Profile/Photos.php:352 +#: src/Module/Profile/Photos.php:338 msgid "View Album" msgstr "Zobacz album" -#: src/Module/Profile/Profile.php:114 src/Module/Profile/Restricted.php:50 +#: src/Module/Profile/Profile.php:100 src/Module/Profile/Restricted.php:36 msgid "Profile not found." msgstr "Nie znaleziono profilu." -#: src/Module/Profile/Profile.php:160 +#: src/Module/Profile/Profile.php:146 #, php-format msgid "" "You're currently viewing your profile as %s Cancel" msgstr "Obecnie przeglądasz swój profil jako %s Anuluj" -#: src/Module/Profile/Profile.php:169 +#: src/Module/Profile/Profile.php:155 msgid "Full Name:" msgstr "Imię i nazwisko:" -#: src/Module/Profile/Profile.php:174 +#: src/Module/Profile/Profile.php:160 msgid "Member since:" msgstr "Członek od:" -#: src/Module/Profile/Profile.php:180 +#: src/Module/Profile/Profile.php:166 msgid "j F, Y" msgstr "d M, R" -#: src/Module/Profile/Profile.php:181 +#: src/Module/Profile/Profile.php:167 msgid "j F" msgstr "d M" -#: src/Module/Profile/Profile.php:189 src/Util/Temporal.php:168 +#: src/Module/Profile/Profile.php:175 src/Util/Temporal.php:154 msgid "Birthday:" msgstr "Urodziny:" -#: src/Module/Profile/Profile.php:192 -#: src/Module/Settings/Profile/Index.php:296 src/Util/Temporal.php:170 +#: src/Module/Profile/Profile.php:178 +#: src/Module/Settings/Profile/Index.php:282 src/Util/Temporal.php:156 msgid "Age: " msgstr "Wiek: " -#: src/Module/Profile/Profile.php:192 -#: src/Module/Settings/Profile/Index.php:296 src/Util/Temporal.php:170 +#: src/Module/Profile/Profile.php:178 +#: src/Module/Settings/Profile/Index.php:282 src/Util/Temporal.php:156 #, php-format msgid "%d year old" msgid_plural "%d years old" @@ -9389,46 +9370,46 @@ msgstr[1] "%d lata" msgstr[2] "%d lat" msgstr[3] "%d lat" -#: src/Module/Profile/Profile.php:197 -#: src/Module/Settings/Profile/Index.php:289 +#: src/Module/Profile/Profile.php:183 +#: src/Module/Settings/Profile/Index.php:275 msgid "Description:" msgstr "Opis:" -#: src/Module/Profile/Profile.php:263 +#: src/Module/Profile/Profile.php:249 msgid "Groups:" msgstr "" -#: src/Module/Profile/Profile.php:275 +#: src/Module/Profile/Profile.php:261 msgid "View profile as:" msgstr "Wyświetl profil jako:" -#: src/Module/Profile/Profile.php:292 +#: src/Module/Profile/Profile.php:278 msgid "View as" msgstr "Zobacz jako" -#: src/Module/Profile/RemoteFollow.php:82 +#: src/Module/Profile/RemoteFollow.php:68 msgid "Profile unavailable." msgstr "Profil niedostępny." -#: src/Module/Profile/RemoteFollow.php:88 +#: src/Module/Profile/RemoteFollow.php:74 msgid "Invalid locator" msgstr "Nieprawidłowy lokalizator" -#: src/Module/Profile/RemoteFollow.php:95 +#: src/Module/Profile/RemoteFollow.php:81 msgid "The provided profile link doesn't seem to be valid" msgstr "Podany link profilu wydaje się być nieprawidłowy" -#: src/Module/Profile/RemoteFollow.php:100 +#: src/Module/Profile/RemoteFollow.php:86 msgid "" "Remote subscription can't be done for your network. Please subscribe " "directly on your system." msgstr "Zdalnej subskrypcji nie można wykonać dla swojej sieci. Proszę zasubskrybuj bezpośrednio w swoim systemie." -#: src/Module/Profile/RemoteFollow.php:128 +#: src/Module/Profile/RemoteFollow.php:114 msgid "Friend/Connection Request" msgstr "Przyjaciel/Prośba o połączenie" -#: src/Module/Profile/RemoteFollow.php:129 +#: src/Module/Profile/RemoteFollow.php:115 #, php-format msgid "" "Enter your Webfinger address (user@domain.tld) or profile URL here. If this " @@ -9436,579 +9417,579 @@ msgid "" " or %s directly on your system." msgstr "Wpisz tutaj swój adres Webfinger (user@domain.tld) lub adres URL profilu. Jeśli nie jest to obsługiwane przez system, musisz subskrybować %s lub %s bezpośrednio w systemie." -#: src/Module/Profile/RemoteFollow.php:130 +#: src/Module/Profile/RemoteFollow.php:116 #, php-format msgid "" "If you are not yet a member of the free social web, follow " "this link to find a public Friendica node and join us today." msgstr "Jeśli nie jesteś jeszcze członkiem darmowej sieci społecznościowej, kliknij ten odnośnik, aby znaleźć publiczny węzeł Friendica i dołącz do nas już dziś." -#: src/Module/Profile/RemoteFollow.php:131 +#: src/Module/Profile/RemoteFollow.php:117 msgid "Your Webfinger address or profile URL:" msgstr "Twój adres lub adres URL profilu Webfinger:" -#: src/Module/Profile/Restricted.php:59 +#: src/Module/Profile/Restricted.php:45 msgid "Restricted profile" msgstr "Ograniczony profil" -#: src/Module/Profile/Restricted.php:60 +#: src/Module/Profile/Restricted.php:46 msgid "" "This profile has been restricted which prevents access to their public " "content from anonymous visitors." msgstr "" -#: src/Module/Profile/Schedule.php:83 +#: src/Module/Profile/Schedule.php:69 msgid "Scheduled" msgstr "Zaplanowane" -#: src/Module/Profile/Schedule.php:84 +#: src/Module/Profile/Schedule.php:70 msgid "Content" msgstr "Zawartość" -#: src/Module/Profile/Schedule.php:85 +#: src/Module/Profile/Schedule.php:71 msgid "Remove post" msgstr "Usuń wpis" -#: src/Module/Register.php:91 +#: src/Module/Register.php:77 msgid "Only parent users can create additional accounts." msgstr "Tylko użytkownicy nadrzędni mogą tworzyć dodatkowe konta." -#: src/Module/Register.php:106 src/Module/User/Import.php:112 +#: src/Module/Register.php:92 src/Module/User/Import.php:98 msgid "" "This site has exceeded the number of allowed daily account registrations. " "Please try again tomorrow." msgstr "Strona przekroczyła ilość dozwolonych rejestracji na dzień. Proszę spróbuj ponownie jutro." -#: src/Module/Register.php:123 +#: src/Module/Register.php:109 msgid "" "You may (optionally) fill in this form via OpenID by supplying your OpenID " "and clicking \"Register\"." msgstr "Możesz (opcjonalnie) wypełnić ten formularz za pośrednictwem OpenID, podając swój OpenID i klikając \"Register\"." -#: src/Module/Register.php:124 +#: src/Module/Register.php:110 msgid "" "If you are not familiar with OpenID, please leave that field blank and fill " "in the rest of the items." msgstr "Jeśli nie jesteś zaznajomiony z OpenID, zostaw to pole puste i uzupełnij resztę elementów." -#: src/Module/Register.php:125 +#: src/Module/Register.php:111 msgid "Your OpenID (optional): " msgstr "Twój OpenID (opcjonalnie): " -#: src/Module/Register.php:134 +#: src/Module/Register.php:120 msgid "Include your profile in member directory?" msgstr "Czy dołączyć twój profil do katalogu członków?" -#: src/Module/Register.php:155 +#: src/Module/Register.php:141 msgid "Note for the admin" msgstr "Uwaga dla administratora" -#: src/Module/Register.php:155 +#: src/Module/Register.php:141 msgid "Leave a message for the admin, why you want to join this node" msgstr "Pozostaw wiadomość dla administratora, dlaczego chcesz dołączyć do tego węzła" -#: src/Module/Register.php:156 +#: src/Module/Register.php:142 msgid "Membership on this site is by invitation only." msgstr "Członkostwo na tej stronie możliwe tylko dzięki zaproszeniu." -#: src/Module/Register.php:157 +#: src/Module/Register.php:143 msgid "Your invitation code: " msgstr "Twój kod zaproszenia: " -#: src/Module/Register.php:165 +#: src/Module/Register.php:151 msgid "Your Display Name (as you would like it to be displayed on this system" msgstr "" -#: src/Module/Register.php:166 +#: src/Module/Register.php:152 msgid "" "Your Email Address: (Initial information will be send there, so this has to " "be an existing address.)" msgstr "Twój adres e-mail: (Informacje początkowe zostaną wysłane tam, więc musi to być istniejący adres)." -#: src/Module/Register.php:167 +#: src/Module/Register.php:153 msgid "Please repeat your e-mail address:" msgstr "Powtórz swój adres e-mail:" -#: src/Module/Register.php:169 src/Module/Security/PasswordTooLong.php:100 -#: src/Module/Settings/Account.php:569 +#: src/Module/Register.php:155 src/Module/Security/PasswordTooLong.php:86 +#: src/Module/Settings/Account.php:555 msgid "New Password:" msgstr "Nowe hasło:" -#: src/Module/Register.php:169 +#: src/Module/Register.php:155 msgid "Leave empty for an auto generated password." msgstr "Pozostaw puste dla wygenerowanego automatycznie hasła." -#: src/Module/Register.php:170 src/Module/Security/PasswordTooLong.php:101 -#: src/Module/Settings/Account.php:570 +#: src/Module/Register.php:156 src/Module/Security/PasswordTooLong.php:87 +#: src/Module/Settings/Account.php:556 msgid "Confirm:" msgstr "Potwierdź:" -#: src/Module/Register.php:171 +#: src/Module/Register.php:157 #, php-format msgid "" "Choose a profile nickname. This must begin with a text character. Your " "profile address on this site will then be \"nickname@%s\"." msgstr "Wybierz pseudonim profilu. Musi zaczynać się od znaku tekstowego. Twój adres profilu na tej stronie to \"nickname@%s\"." -#: src/Module/Register.php:172 +#: src/Module/Register.php:158 msgid "Choose a nickname: " msgstr "Wybierz pseudonim: " -#: src/Module/Register.php:180 src/Module/User/Import.php:118 +#: src/Module/Register.php:166 src/Module/User/Import.php:104 msgid "Import" msgstr "Import" -#: src/Module/Register.php:181 +#: src/Module/Register.php:167 msgid "Import your profile to this friendica instance" msgstr "Zaimportuj swój profil do tej instancji friendica" -#: src/Module/Register.php:188 +#: src/Module/Register.php:174 msgid "Note: This node explicitly contains adult content" msgstr "Uwaga: Ten węzeł jawnie zawiera treści dla dorosłych" -#: src/Module/Register.php:190 src/Module/Settings/Delegation.php:181 +#: src/Module/Register.php:176 src/Module/Settings/Delegation.php:167 msgid "Parent Password:" msgstr "Hasło nadrzędne:" -#: src/Module/Register.php:190 src/Module/Settings/Delegation.php:181 +#: src/Module/Register.php:176 src/Module/Settings/Delegation.php:167 msgid "" "Please enter the password of the parent account to legitimize your request." msgstr "Wprowadź hasło konta nadrzędnego, aby legalizować swoje żądanie." -#: src/Module/Register.php:219 +#: src/Module/Register.php:205 msgid "Password doesn't match." msgstr "Hasło nie jest zgodne." -#: src/Module/Register.php:225 +#: src/Module/Register.php:211 msgid "Please enter your password." msgstr "Wprowadź hasło." -#: src/Module/Register.php:267 +#: src/Module/Register.php:253 msgid "You have entered too much information." msgstr "Podałeś za dużo informacji." -#: src/Module/Register.php:290 +#: src/Module/Register.php:276 msgid "Please enter the identical mail address in the second field." msgstr "Wpisz identyczny adres e-mail w drugim polu." -#: src/Module/Register.php:298 +#: src/Module/Register.php:284 msgid "Nickname cannot start with a digit." msgstr "" -#: src/Module/Register.php:300 +#: src/Module/Register.php:286 msgid "Nickname can only contain US-ASCII characters." msgstr "" -#: src/Module/Register.php:329 +#: src/Module/Register.php:315 msgid "The additional account was created." msgstr "Dodatkowe konto zostało utworzone." -#: src/Module/Register.php:354 +#: src/Module/Register.php:340 msgid "" "Registration successful. Please check your email for further instructions." msgstr "Rejestracja zakończona pomyślnie. Dalsze instrukcje zostały wysłane na twojego e-maila." -#: src/Module/Register.php:361 +#: src/Module/Register.php:347 #, php-format msgid "" "Failed to send email message. Here your accout details:
login: %s
" "password: %s

You can change your password after login." msgstr "Nie udało się wysłać wiadomości e-mail. Tutaj szczegóły twojego konta:
login: %s
hasło: %s

Możesz zmienić swoje hasło po zalogowaniu." -#: src/Module/Register.php:367 +#: src/Module/Register.php:353 msgid "Registration successful." msgstr "Rejestracja udana." -#: src/Module/Register.php:376 src/Module/Register.php:383 -#: src/Module/Register.php:393 +#: src/Module/Register.php:362 src/Module/Register.php:369 +#: src/Module/Register.php:379 msgid "Your registration can not be processed." msgstr "Nie można przetworzyć Twojej rejestracji." -#: src/Module/Register.php:382 +#: src/Module/Register.php:368 msgid "You have to leave a request note for the admin." msgstr "Musisz zostawić notatkę z prośbą do administratora." -#: src/Module/Register.php:392 +#: src/Module/Register.php:378 msgid "An internal error occured." msgstr "Wystąpił błąd wewnętrzny." -#: src/Module/Register.php:414 +#: src/Module/Register.php:400 msgid "Your registration is pending approval by the site owner." msgstr "Twoja rejestracja oczekuje na zaakceptowanie przez właściciela witryny." -#: src/Module/Search/Acl.php:78 +#: src/Module/Search/Acl.php:64 msgid "You must be logged in to use this module." msgstr "Musisz być zalogowany, aby korzystać z tego modułu." -#: src/Module/Search/Index.php:69 +#: src/Module/Search/Index.php:55 msgid "Only logged in users are permitted to perform a search." msgstr "Tylko zalogowani użytkownicy mogą wyszukiwać." -#: src/Module/Search/Index.php:89 +#: src/Module/Search/Index.php:75 msgid "Only one search per minute is permitted for not logged in users." msgstr "Dla niezalogowanych użytkowników dozwolone jest tylko jedno wyszukiwanie na minutę." -#: src/Module/Search/Index.php:205 +#: src/Module/Search/Index.php:191 #, php-format msgid "Items tagged with: %s" msgstr "Elementy oznaczone znacznikiem: %s" -#: src/Module/Search/Saved.php:63 +#: src/Module/Search/Saved.php:49 msgid "Search term was not saved." msgstr "Wyszukiwane hasło nie zostało zapisane." -#: src/Module/Search/Saved.php:66 +#: src/Module/Search/Saved.php:52 msgid "Search term already saved." msgstr "Wyszukiwane hasło jest już zapisane." -#: src/Module/Search/Saved.php:72 +#: src/Module/Search/Saved.php:58 msgid "Search term was not removed." msgstr "Wyszukiwane hasło nie zostało usunięte." -#: src/Module/Security/Login.php:127 +#: src/Module/Security/Login.php:113 msgid "Create a New Account" msgstr "Załóż nowe konto" -#: src/Module/Security/Login.php:146 +#: src/Module/Security/Login.php:132 msgid "Your OpenID: " msgstr "Twój OpenID: " -#: src/Module/Security/Login.php:149 +#: src/Module/Security/Login.php:135 msgid "" "Please enter your username and password to add the OpenID to your existing " "account." msgstr "Wprowadź nazwę użytkownika i hasło, aby dodać OpenID do istniejącego konta." -#: src/Module/Security/Login.php:151 +#: src/Module/Security/Login.php:137 msgid "Or login using OpenID: " msgstr "Lub zaloguj się za pośrednictwem OpenID: " -#: src/Module/Security/Login.php:165 +#: src/Module/Security/Login.php:151 msgid "Password: " msgstr "Hasło: " -#: src/Module/Security/Login.php:166 +#: src/Module/Security/Login.php:152 msgid "Remember me" msgstr "Zapamiętaj mnie" -#: src/Module/Security/Login.php:175 +#: src/Module/Security/Login.php:161 msgid "Forgot your password?" msgstr "Zapomniałeś swojego hasła?" -#: src/Module/Security/Login.php:178 +#: src/Module/Security/Login.php:164 msgid "Website Terms of Service" msgstr "Warunki korzystania z witryny" -#: src/Module/Security/Login.php:179 +#: src/Module/Security/Login.php:165 msgid "terms of service" msgstr "warunki użytkowania" -#: src/Module/Security/Login.php:181 +#: src/Module/Security/Login.php:167 msgid "Website Privacy Policy" msgstr "Polityka Prywatności Witryny" -#: src/Module/Security/Login.php:182 +#: src/Module/Security/Login.php:168 msgid "privacy policy" msgstr "polityka prywatności" -#: src/Module/Security/Logout.php:89 -#: src/Module/Security/TwoFactor/SignOut.php:78 -#: src/Module/Security/TwoFactor/SignOut.php:86 -#: src/Module/Security/TwoFactor/SignOut.php:108 -#: src/Module/Security/TwoFactor/SignOut.php:115 +#: src/Module/Security/Logout.php:75 +#: src/Module/Security/TwoFactor/SignOut.php:64 +#: src/Module/Security/TwoFactor/SignOut.php:72 +#: src/Module/Security/TwoFactor/SignOut.php:94 +#: src/Module/Security/TwoFactor/SignOut.php:101 msgid "Logged out." msgstr "Wylogowano." -#: src/Module/Security/OpenID.php:54 +#: src/Module/Security/OpenID.php:40 msgid "OpenID protocol error. No ID returned" msgstr "Błąd protokołu OpenID. Nie zwrócono identyfikatora" -#: src/Module/Security/OpenID.php:90 +#: src/Module/Security/OpenID.php:76 msgid "" "Account not found. Please login to your existing account to add the OpenID " "to it." msgstr "Konto nie znalezione. Zaloguj się do swojego istniejącego konta, aby dodać do niego OpenID." -#: src/Module/Security/OpenID.php:92 +#: src/Module/Security/OpenID.php:78 msgid "" "Account not found. Please register a new account or login to your existing " "account to add the OpenID to it." msgstr "Konto nie znalezione. Zarejestruj nowe konto lub zaloguj się na istniejące konto, aby dodać do niego OpenID." -#: src/Module/Security/PasswordTooLong.php:57 -#: src/Module/Settings/Account.php:67 +#: src/Module/Security/PasswordTooLong.php:43 +#: src/Module/Settings/Account.php:53 msgid "Passwords do not match." msgstr "Hasła nie pasują do siebie." -#: src/Module/Security/PasswordTooLong.php:64 +#: src/Module/Security/PasswordTooLong.php:50 msgid "Password does not need changing." msgstr "Hasło nie wymaga zmiany." -#: src/Module/Security/PasswordTooLong.php:77 -#: src/Module/Settings/Account.php:81 +#: src/Module/Security/PasswordTooLong.php:63 +#: src/Module/Settings/Account.php:67 msgid "Password unchanged." msgstr "Hasło niezmienione." -#: src/Module/Security/PasswordTooLong.php:91 +#: src/Module/Security/PasswordTooLong.php:77 msgid "Password Too Long" msgstr "Hasło za długie" -#: src/Module/Security/PasswordTooLong.php:92 +#: src/Module/Security/PasswordTooLong.php:78 msgid "" "Since version 2022.09, we've realized that any password longer than 72 " "characters is truncated during hashing. To prevent any confusion about this " "behavior, please update your password to be fewer or equal to 72 characters." msgstr "" -#: src/Module/Security/PasswordTooLong.php:93 +#: src/Module/Security/PasswordTooLong.php:79 msgid "Update Password" msgstr "" -#: src/Module/Security/PasswordTooLong.php:99 -#: src/Module/Settings/Account.php:571 +#: src/Module/Security/PasswordTooLong.php:85 +#: src/Module/Settings/Account.php:557 msgid "Current Password:" msgstr "Aktualne hasło:" -#: src/Module/Security/PasswordTooLong.php:99 -#: src/Module/Settings/Account.php:571 +#: src/Module/Security/PasswordTooLong.php:85 +#: src/Module/Settings/Account.php:557 msgid "Your current password to confirm the changes" msgstr "Wpisz aktualne hasło, aby potwierdzić zmiany" -#: src/Module/Security/PasswordTooLong.php:100 -#: src/Module/Settings/Account.php:555 +#: src/Module/Security/PasswordTooLong.php:86 +#: src/Module/Settings/Account.php:541 msgid "" "Allowed characters are a-z, A-Z, 0-9 and special characters except white " "spaces and accentuated letters." msgstr "" -#: src/Module/Security/PasswordTooLong.php:100 -#: src/Module/Settings/Account.php:556 +#: src/Module/Security/PasswordTooLong.php:86 +#: src/Module/Settings/Account.php:542 msgid "Password length is limited to 72 characters." msgstr "" -#: src/Module/Security/TwoFactor/Recovery.php:74 +#: src/Module/Security/TwoFactor/Recovery.php:60 #, php-format msgid "Remaining recovery codes: %d" msgstr "Pozostałe kody odzyskiwania: %d" -#: src/Module/Security/TwoFactor/Recovery.php:80 -#: src/Module/Security/TwoFactor/Verify.php:77 -#: src/Module/Settings/TwoFactor/Verify.php:98 +#: src/Module/Security/TwoFactor/Recovery.php:66 +#: src/Module/Security/TwoFactor/Verify.php:63 +#: src/Module/Settings/TwoFactor/Verify.php:84 msgid "Invalid code, please retry." msgstr "Nieprawidłowy kod, spróbuj ponownie." -#: src/Module/Security/TwoFactor/Recovery.php:99 +#: src/Module/Security/TwoFactor/Recovery.php:85 msgid "Two-factor recovery" msgstr "Odzyskiwanie dwuczynnikowe" -#: src/Module/Security/TwoFactor/Recovery.php:100 +#: src/Module/Security/TwoFactor/Recovery.php:86 msgid "" "

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

" msgstr "

Możesz wprowadzić jeden ze swoich jednorazowych kodów odzyskiwania w przypadku utraty dostępu do urządzenia mobilnego.

" -#: src/Module/Security/TwoFactor/Recovery.php:101 +#: src/Module/Security/TwoFactor/Recovery.php:87 #, php-format msgid "Don’t have your phone? Enter a two-factor recovery code" msgstr "Nie masz telefonu? Wprowadzić dwuetapowy kod przywracania " -#: src/Module/Security/TwoFactor/Recovery.php:102 +#: src/Module/Security/TwoFactor/Recovery.php:88 msgid "Please enter a recovery code" msgstr "Wprowadź kod odzyskiwania" -#: src/Module/Security/TwoFactor/Recovery.php:103 +#: src/Module/Security/TwoFactor/Recovery.php:89 msgid "Submit recovery code and complete login" msgstr "Prześlij kod odzyskiwania i pełne logowanie" -#: src/Module/Security/TwoFactor/SignOut.php:122 +#: src/Module/Security/TwoFactor/SignOut.php:108 msgid "Sign out of this browser?" msgstr "Wylogować z tej przeglądarki?" -#: src/Module/Security/TwoFactor/SignOut.php:123 +#: src/Module/Security/TwoFactor/SignOut.php:109 msgid "" "

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

" msgstr "

Jeśli ufasz tej przeglądarce, przy następnym logowaniu nie zostaniesz poproszony o podanie kodu weryfikacyjnego.

" -#: src/Module/Security/TwoFactor/SignOut.php:124 +#: src/Module/Security/TwoFactor/SignOut.php:110 msgid "Sign out" msgstr "Wyloguj" -#: src/Module/Security/TwoFactor/SignOut.php:126 +#: src/Module/Security/TwoFactor/SignOut.php:112 msgid "Trust and sign out" msgstr "Zaufaj i wyloguj" -#: src/Module/Security/TwoFactor/Trust.php:96 +#: src/Module/Security/TwoFactor/Trust.php:82 msgid "Couldn't save browser to Cookie." msgstr "Nie można zapisać informacji o przeglądarce do ciasteczek." -#: src/Module/Security/TwoFactor/Trust.php:141 +#: src/Module/Security/TwoFactor/Trust.php:127 msgid "Trust this browser?" msgstr "Ufać tej przeglądarce?" -#: src/Module/Security/TwoFactor/Trust.php:142 +#: src/Module/Security/TwoFactor/Trust.php:128 msgid "" "

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

" msgstr "

Jeśli zdecydujesz się zaufać tej przeglądarce, przy następnym logowaniu nie zostaniesz poproszony o podanie kodu weryfikacyjnego.

" -#: src/Module/Security/TwoFactor/Trust.php:143 +#: src/Module/Security/TwoFactor/Trust.php:129 msgid "Not now" msgstr "Nie teraz" -#: src/Module/Security/TwoFactor/Trust.php:144 +#: src/Module/Security/TwoFactor/Trust.php:130 msgid "Don't trust" msgstr "Nie ufaj" -#: src/Module/Security/TwoFactor/Trust.php:145 +#: src/Module/Security/TwoFactor/Trust.php:131 msgid "Trust" msgstr "Ufaj" -#: src/Module/Security/TwoFactor/Verify.php:97 +#: src/Module/Security/TwoFactor/Verify.php:83 msgid "" "

Open the two-factor authentication app on your device to get an " "authentication code and verify your identity.

" msgstr "

Otwórz aplikację uwierzytelniania dwuskładnikowego na swoim urządzeniu, aby uzyskać kod uwierzytelniający i zweryfikować swoją tożsamość.

" -#: src/Module/Security/TwoFactor/Verify.php:100 +#: src/Module/Security/TwoFactor/Verify.php:86 #, php-format msgid "" "If you do not have access to your authentication code you can use a two-factor recovery code." msgstr "Jeśli nie masz dostępu do swojego kodu uwierzytelniającego, możesz użyć dwuskładnikowego kodu odzyskiwania." -#: src/Module/Security/TwoFactor/Verify.php:101 -#: src/Module/Settings/TwoFactor/Verify.php:158 +#: src/Module/Security/TwoFactor/Verify.php:87 +#: src/Module/Settings/TwoFactor/Verify.php:144 msgid "Please enter a code from your authentication app" msgstr "Wprowadź kod z aplikacji uwierzytelniającej" -#: src/Module/Security/TwoFactor/Verify.php:102 +#: src/Module/Security/TwoFactor/Verify.php:88 msgid "Verify code and complete login" msgstr "Zweryfikuj kod i zakończ logowanie" -#: src/Module/Settings/Account.php:96 +#: src/Module/Settings/Account.php:82 msgid "Please use a shorter name." msgstr "Użyj krótszej nazwy." -#: src/Module/Settings/Account.php:99 +#: src/Module/Settings/Account.php:85 msgid "Name too short." msgstr "Nazwa jest za krótka. " -#: src/Module/Settings/Account.php:108 +#: src/Module/Settings/Account.php:94 msgid "Wrong Password." msgstr "Nieprawidłowe hasło." -#: src/Module/Settings/Account.php:113 +#: src/Module/Settings/Account.php:99 msgid "Invalid email." msgstr "Niepoprawny e-mail." -#: src/Module/Settings/Account.php:117 +#: src/Module/Settings/Account.php:103 msgid "Cannot change to that email." msgstr "Nie można zmienić tego e-maila." -#: src/Module/Settings/Account.php:146 src/Module/Settings/Account.php:195 -#: src/Module/Settings/Account.php:216 src/Module/Settings/Account.php:300 -#: src/Module/Settings/Account.php:329 +#: src/Module/Settings/Account.php:132 src/Module/Settings/Account.php:181 +#: src/Module/Settings/Account.php:202 src/Module/Settings/Account.php:286 +#: src/Module/Settings/Account.php:315 msgid "Settings were not updated." msgstr "Ustawienia nie zostały zaktualizowane." -#: src/Module/Settings/Account.php:347 +#: src/Module/Settings/Account.php:333 msgid "Contact CSV file upload error" msgstr "Kontakt z plikiem CSV błąd przekazywania plików" -#: src/Module/Settings/Account.php:366 +#: src/Module/Settings/Account.php:352 msgid "Importing Contacts done" msgstr "Importowanie kontaktów zakończone" -#: src/Module/Settings/Account.php:379 +#: src/Module/Settings/Account.php:365 msgid "Relocate message has been send to your contacts" msgstr "Przeniesienie wiadomości zostało wysłane do Twoich kontaktów" -#: src/Module/Settings/Account.php:396 +#: src/Module/Settings/Account.php:382 msgid "Unable to find your profile. Please contact your admin." msgstr "Nie można znaleźć Twojego profilu. Skontaktuj się z administratorem." -#: src/Module/Settings/Account.php:438 +#: src/Module/Settings/Account.php:424 msgid "" "Account for a service that automatically shares content based on user " "defined channels." msgstr "" -#: src/Module/Settings/Account.php:448 +#: src/Module/Settings/Account.php:434 msgid "Personal Page Subtypes" msgstr "Podtypy osobistych stron" -#: src/Module/Settings/Account.php:449 +#: src/Module/Settings/Account.php:435 msgid "Community Group Subtypes" msgstr "" -#: src/Module/Settings/Account.php:460 +#: src/Module/Settings/Account.php:446 msgid "Account for a personal profile." msgstr "Konto dla profilu osobistego." -#: src/Module/Settings/Account.php:467 +#: src/Module/Settings/Account.php:453 msgid "" "Account for an organisation that automatically approves contact requests as " "\"Followers\"." msgstr "Konto dla organizacji, która automatycznie zatwierdza prośby o kontakt jako \"Obserwatorzy\"." -#: src/Module/Settings/Account.php:474 +#: src/Module/Settings/Account.php:460 msgid "" "Account for a news reflector that automatically approves contact requests as" " \"Followers\"." msgstr "Konto dla reflektora wiadomości, który automatycznie zatwierdza prośby o kontakt jako \"Obserwatorzy\"." -#: src/Module/Settings/Account.php:481 +#: src/Module/Settings/Account.php:467 msgid "Account for community discussions." msgstr "Konto do dyskusji w społeczności." -#: src/Module/Settings/Account.php:489 +#: src/Module/Settings/Account.php:475 msgid "" "Account for a regular personal profile that requires manual approval of " "\"Friends\" and \"Followers\"." msgstr "Konto dla zwykłego profilu osobistego, który wymaga ręcznej zgody \"Przyjaciół\" i \"Obserwatorów\"." -#: src/Module/Settings/Account.php:496 +#: src/Module/Settings/Account.php:482 msgid "" "Account for a public profile that automatically approves contact requests as" " \"Followers\"." msgstr "Konto dla profilu publicznego, który automatycznie zatwierdza prośby o kontakt jako \"Obserwatorzy\"." -#: src/Module/Settings/Account.php:503 +#: src/Module/Settings/Account.php:489 msgid "Automatically approves all contact requests." msgstr "Automatycznie zatwierdza wszystkie prośby o kontakt." -#: src/Module/Settings/Account.php:510 +#: src/Module/Settings/Account.php:496 msgid "Contact requests have to be manually approved." msgstr "" -#: src/Module/Settings/Account.php:517 +#: src/Module/Settings/Account.php:503 msgid "" "Account for a popular profile that automatically approves contact requests " "as \"Friends\"." msgstr "Konto popularnego profilu, które automatycznie zatwierdza prośby o kontakt jako \"Przyjaciele\"." -#: src/Module/Settings/Account.php:522 +#: src/Module/Settings/Account.php:508 msgid "Private Group [Experimental]" msgstr "" -#: src/Module/Settings/Account.php:524 +#: src/Module/Settings/Account.php:510 msgid "Requires manual approval of contact requests." msgstr "Wymaga ręcznego zatwierdzania żądań kontaktów." -#: src/Module/Settings/Account.php:533 +#: src/Module/Settings/Account.php:519 msgid "OpenID:" msgstr "OpenID:" -#: src/Module/Settings/Account.php:533 +#: src/Module/Settings/Account.php:519 msgid "(Optional) Allow this OpenID to login to this account." msgstr "(Opcjonalnie) Pozwól zalogować się na to konto przy pomocy OpenID." -#: src/Module/Settings/Account.php:541 +#: src/Module/Settings/Account.php:527 msgid "Publish your profile in your local site directory?" msgstr "Czy opublikować twój profil w katalogu lokalnej witryny?" -#: src/Module/Settings/Account.php:541 +#: src/Module/Settings/Account.php:527 #, php-format msgid "" "Your profile will be published in this node's local " @@ -10016,94 +9997,94 @@ msgid "" " system settings." msgstr "Twój profil zostanie opublikowany w lokalnym katalogu tego węzła. Dane Twojego profilu mogą być publicznie widoczne w zależności od ustawień systemu." -#: src/Module/Settings/Account.php:547 +#: src/Module/Settings/Account.php:533 #, php-format msgid "" "Your profile will also be published in the global friendica directories " "(e.g. %s)." msgstr "Twój profil zostanie również opublikowany w globalnych katalogach Friendica (np. %s)." -#: src/Module/Settings/Account.php:560 +#: src/Module/Settings/Account.php:546 msgid "Account Settings" msgstr "Ustawienia konta" -#: src/Module/Settings/Account.php:561 +#: src/Module/Settings/Account.php:547 #, php-format msgid "Your Identity Address is '%s' or '%s'." msgstr "Twój adres tożsamości to '%s' lub '%s'." -#: src/Module/Settings/Account.php:568 +#: src/Module/Settings/Account.php:554 msgid "Password Settings" msgstr "Ustawienia hasła" -#: src/Module/Settings/Account.php:570 +#: src/Module/Settings/Account.php:556 msgid "Leave password fields blank unless changing" msgstr "Pozostaw pole hasła puste, jeżeli nie chcesz go zmienić." -#: src/Module/Settings/Account.php:572 +#: src/Module/Settings/Account.php:558 msgid "Password:" msgstr "Hasło:" -#: src/Module/Settings/Account.php:572 +#: src/Module/Settings/Account.php:558 msgid "Your current password to confirm the changes of the email address" msgstr "Twoje obecne hasło, aby potwierdzić zmiany adresu e-mail" -#: src/Module/Settings/Account.php:575 +#: src/Module/Settings/Account.php:561 msgid "Delete OpenID URL" msgstr "Usuń adres URL OpenID" -#: src/Module/Settings/Account.php:577 +#: src/Module/Settings/Account.php:563 msgid "Basic Settings" msgstr "Ustawienia podstawowe" -#: src/Module/Settings/Account.php:578 -#: src/Module/Settings/Profile/Index.php:288 +#: src/Module/Settings/Account.php:564 +#: src/Module/Settings/Profile/Index.php:274 msgid "Display name:" msgstr "Nazwa wyświetlana:" -#: src/Module/Settings/Account.php:579 +#: src/Module/Settings/Account.php:565 msgid "Email Address:" msgstr "Adres email:" -#: src/Module/Settings/Account.php:580 +#: src/Module/Settings/Account.php:566 msgid "Your Timezone:" msgstr "Twoja strefa czasowa:" -#: src/Module/Settings/Account.php:581 +#: src/Module/Settings/Account.php:567 msgid "Your Language:" msgstr "Twój język:" -#: src/Module/Settings/Account.php:581 +#: src/Module/Settings/Account.php:567 msgid "" "Set the language we use to show you friendica interface and to send you " "emails" msgstr "Wybierz język, ktory bedzie używany do wyświetlania użytkownika friendica i wysłania Ci e-maili" -#: src/Module/Settings/Account.php:582 +#: src/Module/Settings/Account.php:568 msgid "Default Post Location:" msgstr "Domyślna lokalizacja wpisów:" -#: src/Module/Settings/Account.php:583 +#: src/Module/Settings/Account.php:569 msgid "Use Browser Location:" msgstr "Używaj lokalizacji przeglądarki:" -#: src/Module/Settings/Account.php:585 +#: src/Module/Settings/Account.php:571 msgid "Security and Privacy Settings" msgstr "Ustawienia bezpieczeństwa i prywatności" -#: src/Module/Settings/Account.php:587 +#: src/Module/Settings/Account.php:573 msgid "Maximum Friend Requests/Day:" msgstr "Maksymalna dzienna liczba zaproszeń do grona przyjaciół:" -#: src/Module/Settings/Account.php:587 +#: src/Module/Settings/Account.php:573 msgid "(to prevent spam abuse)" msgstr "(aby zapobiec spamowaniu)" -#: src/Module/Settings/Account.php:589 +#: src/Module/Settings/Account.php:575 msgid "Allow your profile to be searchable globally?" msgstr "Czy Twój profil ma być dostępny do wyszukiwania na całym świecie?" -#: src/Module/Settings/Account.php:589 +#: src/Module/Settings/Account.php:575 msgid "" "Activate this setting if you want others to easily find and follow you. Your" " profile will be searchable on remote systems. This setting also determines " @@ -10111,43 +10092,43 @@ msgid "" "indexed or not." msgstr "Aktywuj to ustawienie, jeśli chcesz, aby inni mogli Cię łatwo znaleźć i śledzić. Twój profil będzie można przeszukiwać na zdalnych systemach. To ustawienie określa również, czy Friendica poinformuje wyszukiwarki, że Twój profil powinien być indeksowany, czy nie." -#: src/Module/Settings/Account.php:590 +#: src/Module/Settings/Account.php:576 msgid "Hide your contact/friend list from viewers of your profile?" msgstr "Ukryć listę kontaktów/znajomych przed osobami przeglądającymi Twój profil?" -#: src/Module/Settings/Account.php:590 +#: src/Module/Settings/Account.php:576 msgid "" "A list of your contacts is displayed on your profile page. Activate this " "option to disable the display of your contact list." msgstr "Lista kontaktów jest wyświetlana na stronie profilu. Aktywuj tę opcję, aby wyłączyć wyświetlanie listy kontaktów." -#: src/Module/Settings/Account.php:591 +#: src/Module/Settings/Account.php:577 msgid "Hide your public content from anonymous viewers" msgstr "" -#: src/Module/Settings/Account.php:591 +#: src/Module/Settings/Account.php:577 msgid "" "Anonymous visitors will only see your basic profile details. Your public " "posts and replies will still be freely accessible on the remote servers of " "your followers and through relays." msgstr "" -#: src/Module/Settings/Account.php:592 +#: src/Module/Settings/Account.php:578 msgid "Make public posts unlisted" msgstr "Ustaw publiczne wpisy jako niepubliczne" -#: src/Module/Settings/Account.php:592 +#: src/Module/Settings/Account.php:578 msgid "" "Your public posts will not appear on the community pages or in search " "results, nor be sent to relay servers. However they can still appear on " "public feeds on remote servers." msgstr "Twoje publiczne posty nie będą wyświetlane na stronach społeczności ani w wynikach wyszukiwania ani nie będą wysyłane do serwerów przekazywania. Jednak nadal mogą one pojawiać się w publicznych kanałach na serwerach zdalnych." -#: src/Module/Settings/Account.php:593 +#: src/Module/Settings/Account.php:579 msgid "Make all posted pictures accessible" msgstr "Udostępnij wszystkie opublikowane zdjęcia" -#: src/Module/Settings/Account.php:593 +#: src/Module/Settings/Account.php:579 msgid "" "This option makes every posted picture accessible via the direct link. This " "is a workaround for the problem that most other networks can't handle " @@ -10155,352 +10136,352 @@ msgid "" "public on your photo albums though." msgstr "Ta opcja powoduje, że każde opublikowane zdjęcie jest dostępne poprzez bezpośredni link. Jest to obejście problemu polegającego na tym, że większość innych sieci nie może obsłużyć uprawnień do zdjęć. Jednak zdjęcia niepubliczne nadal nie będą widoczne publicznie w Twoich albumach." -#: src/Module/Settings/Account.php:594 +#: src/Module/Settings/Account.php:580 msgid "Allow friends to post to your profile page?" msgstr "Zezwalać znajomym na publikowanie postów na stronie Twojego profilu?" -#: src/Module/Settings/Account.php:594 +#: src/Module/Settings/Account.php:580 msgid "" "Your contacts may write posts on your profile wall. These posts will be " "distributed to your contacts" msgstr "Twoi znajomi mogą pisać posty na stronie Twojego profilu. Posty zostaną przesłane do Twoich kontaktów." -#: src/Module/Settings/Account.php:595 +#: src/Module/Settings/Account.php:581 msgid "Allow friends to tag your posts?" msgstr "Zezwolić na oznaczanie Twoich postów przez znajomych?" -#: src/Module/Settings/Account.php:595 +#: src/Module/Settings/Account.php:581 msgid "Your contacts can add additional tags to your posts." msgstr "Twoje kontakty mogą dodawać do tagów dodatkowe posty." -#: src/Module/Settings/Account.php:596 +#: src/Module/Settings/Account.php:582 msgid "Default privacy circle for new contacts" msgstr "" -#: src/Module/Settings/Account.php:597 +#: src/Module/Settings/Account.php:583 msgid "Default privacy circle for new group contacts" msgstr "" -#: src/Module/Settings/Account.php:598 +#: src/Module/Settings/Account.php:584 msgid "Default Post Permissions" msgstr "Domyślne prawa dostępu wiadomości" -#: src/Module/Settings/Account.php:602 +#: src/Module/Settings/Account.php:588 msgid "Expiration settings" msgstr "Ustawienia ważności" -#: src/Module/Settings/Account.php:603 +#: src/Module/Settings/Account.php:589 msgid "Automatically expire posts after this many days:" msgstr "Posty wygasną automatycznie po następującej liczbie dni:" -#: src/Module/Settings/Account.php:603 +#: src/Module/Settings/Account.php:589 msgid "If empty, posts will not expire. Expired posts will be deleted" msgstr "Pole puste, wiadomość nie wygaśnie. Niezapisane wpisy zostaną usunięte." -#: src/Module/Settings/Account.php:604 +#: src/Module/Settings/Account.php:590 msgid "Expire posts" msgstr "Ważność wpisów" -#: src/Module/Settings/Account.php:604 +#: src/Module/Settings/Account.php:590 msgid "When activated, posts and comments will be expired." msgstr "Po aktywacji posty i komentarze wygasną." -#: src/Module/Settings/Account.php:605 +#: src/Module/Settings/Account.php:591 msgid "Expire personal notes" msgstr "Ważność osobistych notatek" -#: src/Module/Settings/Account.php:605 +#: src/Module/Settings/Account.php:591 msgid "" "When activated, the personal notes on your profile page will be expired." msgstr "Po aktywacji osobiste notatki na stronie profilu wygasną." -#: src/Module/Settings/Account.php:606 +#: src/Module/Settings/Account.php:592 msgid "Expire starred posts" msgstr "Wygasaj wpisy oznaczone gwiazdką" -#: src/Module/Settings/Account.php:606 +#: src/Module/Settings/Account.php:592 msgid "" "Starring posts keeps them from being expired. That behaviour is overwritten " "by this setting." msgstr "Oznaczanie postów gwiazdką powoduje, że wygasają. To zachowanie jest zastępowane przez to ustawienie." -#: src/Module/Settings/Account.php:607 +#: src/Module/Settings/Account.php:593 msgid "Only expire posts by others" msgstr "Wygasają tylko wpisy innych osób" -#: src/Module/Settings/Account.php:607 +#: src/Module/Settings/Account.php:593 msgid "" "When activated, your own posts never expire. Then the settings above are " "only valid for posts you received." msgstr "Po aktywacji Twoje posty nigdy nie wygasają. Zatem powyższe ustawienia obowiązują tylko dla otrzymanych postów." -#: src/Module/Settings/Account.php:610 +#: src/Module/Settings/Account.php:596 msgid "Notification Settings" msgstr "Ustawienia powiadomień" -#: src/Module/Settings/Account.php:611 +#: src/Module/Settings/Account.php:597 msgid "Send a notification email when:" msgstr "Wysyłaj powiadmonienia na email, kiedy:" -#: src/Module/Settings/Account.php:612 +#: src/Module/Settings/Account.php:598 msgid "You receive an introduction" msgstr "Otrzymałeś zaproszenie" -#: src/Module/Settings/Account.php:613 +#: src/Module/Settings/Account.php:599 msgid "Your introductions are confirmed" msgstr "Twoje zaproszenie jest potwierdzone" -#: src/Module/Settings/Account.php:614 +#: src/Module/Settings/Account.php:600 msgid "Someone writes on your profile wall" msgstr "Ktoś pisze na Twojej tablicy profilu" -#: src/Module/Settings/Account.php:615 +#: src/Module/Settings/Account.php:601 msgid "Someone writes a followup comment" msgstr "Ktoś pisze komentarz nawiązujący." -#: src/Module/Settings/Account.php:616 +#: src/Module/Settings/Account.php:602 msgid "You receive a private message" msgstr "Otrzymałeś prywatną wiadomość" -#: src/Module/Settings/Account.php:617 +#: src/Module/Settings/Account.php:603 msgid "You receive a friend suggestion" msgstr "Otrzymałeś propozycję od znajomych" -#: src/Module/Settings/Account.php:618 +#: src/Module/Settings/Account.php:604 msgid "You are tagged in a post" msgstr "Jesteś oznaczony znacznikiem we wpisie" -#: src/Module/Settings/Account.php:620 +#: src/Module/Settings/Account.php:606 msgid "Create a desktop notification when:" msgstr "Utwórz powiadomienia na pulpicie gdy:" -#: src/Module/Settings/Account.php:621 +#: src/Module/Settings/Account.php:607 msgid "Someone tagged you" msgstr "Ktoś Cię oznaczył" -#: src/Module/Settings/Account.php:622 +#: src/Module/Settings/Account.php:608 msgid "Someone directly commented on your post" msgstr "Ktoś bezpośrednio skomentował Twój wpis" -#: src/Module/Settings/Account.php:623 +#: src/Module/Settings/Account.php:609 msgid "Someone liked your content" msgstr "Ktoś polubił Twoje treści" -#: src/Module/Settings/Account.php:623 src/Module/Settings/Account.php:624 +#: src/Module/Settings/Account.php:609 src/Module/Settings/Account.php:610 msgid "Can only be enabled, when the direct comment notification is enabled." msgstr "Można włączyć tylko wtedy, gdy włączone jest bezpośrednie powiadomienie o komentarzach." -#: src/Module/Settings/Account.php:624 +#: src/Module/Settings/Account.php:610 msgid "Someone shared your content" msgstr "Ktoś udostępnił Twoje treści" -#: src/Module/Settings/Account.php:625 +#: src/Module/Settings/Account.php:611 msgid "Someone commented in your thread" msgstr "Ktoś skomentował w Twoim wątku" -#: src/Module/Settings/Account.php:626 +#: src/Module/Settings/Account.php:612 msgid "Someone commented in a thread where you commented" msgstr "Ktoś skomentował w wątku, w którym Ty skomentowałeś" -#: src/Module/Settings/Account.php:627 +#: src/Module/Settings/Account.php:613 msgid "Someone commented in a thread where you interacted" msgstr "Ktoś skomentował w wątku, w którym wchodziłeś w interakcję" -#: src/Module/Settings/Account.php:629 +#: src/Module/Settings/Account.php:615 msgid "Activate desktop notifications" msgstr "Aktywuj powiadomienia na pulpicie" -#: src/Module/Settings/Account.php:629 +#: src/Module/Settings/Account.php:615 msgid "Show desktop popup on new notifications" msgstr "Pokazuj wyskakujące okienko gdy otrzymasz powiadomienie" -#: src/Module/Settings/Account.php:633 +#: src/Module/Settings/Account.php:619 msgid "Text-only notification emails" msgstr "E-maile z powiadomieniami tekstowymi" -#: src/Module/Settings/Account.php:635 +#: src/Module/Settings/Account.php:621 msgid "Send text only notification emails, without the html part" msgstr "Wysyłaj tylko e-maile z powiadomieniami tekstowymi, bez części html" -#: src/Module/Settings/Account.php:639 +#: src/Module/Settings/Account.php:625 msgid "Show detailled notifications" msgstr "Pokazuj szczegółowe powiadomienia" -#: src/Module/Settings/Account.php:641 +#: src/Module/Settings/Account.php:627 msgid "" "Per default, notifications are condensed to a single notification per item. " "When enabled every notification is displayed." msgstr "Domyślne powiadomienia są skondensowane z jednym powiadomieniem dla każdego przedmiotu. Po włączeniu wyświetlane jest każde powiadomienie." -#: src/Module/Settings/Account.php:645 +#: src/Module/Settings/Account.php:631 msgid "Show notifications of ignored contacts" msgstr "Pokaż powiadomienia o zignorowanych kontaktach" -#: src/Module/Settings/Account.php:647 +#: src/Module/Settings/Account.php:633 msgid "" "You don't see posts from ignored contacts. But you still see their comments." " This setting controls if you want to still receive regular notifications " "that are caused by ignored contacts or not." msgstr "Nie widzisz wpisów od ignorowanych kontaktów. Ale nadal widzisz ich komentarze. To ustawienie określa, czy chcesz nadal otrzymywać regularne powiadomienia, które są powodowane przez ignorowane kontakty, czy nie." -#: src/Module/Settings/Account.php:650 +#: src/Module/Settings/Account.php:636 msgid "Advanced Account/Page Type Settings" msgstr "Zaawansowane ustawienia konta/rodzaju strony" -#: src/Module/Settings/Account.php:651 +#: src/Module/Settings/Account.php:637 msgid "Change the behaviour of this account for special situations" msgstr "Zmień zachowanie tego konta w sytuacjach specjalnych" -#: src/Module/Settings/Account.php:654 +#: src/Module/Settings/Account.php:640 msgid "Import Contacts" msgstr "Import kontaktów" -#: src/Module/Settings/Account.php:655 +#: src/Module/Settings/Account.php:641 msgid "" "Upload a CSV file that contains the handle of your followed accounts in the " "first column you exported from the old account." msgstr "Prześlij plik CSV zawierający obsługę obserwowanych kont w pierwszej kolumnie wyeksportowanej ze starego konta." -#: src/Module/Settings/Account.php:656 +#: src/Module/Settings/Account.php:642 msgid "Upload File" msgstr "Prześlij plik" -#: src/Module/Settings/Account.php:659 +#: src/Module/Settings/Account.php:645 msgid "Relocate" msgstr "Przeniesienie" -#: src/Module/Settings/Account.php:660 +#: src/Module/Settings/Account.php:646 msgid "" "If you have moved this profile from another server, and some of your " "contacts don't receive your updates, try pushing this button." msgstr "Jeśli ten profil został przeniesiony z innego serwera, a niektóre z Twoich kontaktów nie otrzymają aktualizacji, spróbuj nacisnąć ten przycisk." -#: src/Module/Settings/Account.php:661 +#: src/Module/Settings/Account.php:647 msgid "Resend relocate message to contacts" msgstr "Wyślij ponownie przenieść wiadomości do kontaktów" -#: src/Module/Settings/Addons.php:86 +#: src/Module/Settings/Addons.php:72 msgid "Addon Settings" msgstr "Ustawienia dodatków" -#: src/Module/Settings/Addons.php:87 +#: src/Module/Settings/Addons.php:73 msgid "No Addon settings configured" msgstr "Brak skonfigurowanych ustawień dodatków" -#: src/Module/Settings/Channels.php:148 +#: src/Module/Settings/Channels.php:134 msgid "" "This page can be used to define the channels that will automatically be " "reshared by your account." msgstr "" -#: src/Module/Settings/Channels.php:153 +#: src/Module/Settings/Channels.php:139 msgid "This page can be used to define your own channels." msgstr "" -#: src/Module/Settings/Channels.php:182 +#: src/Module/Settings/Channels.php:168 msgid "Publish" msgstr "" -#: src/Module/Settings/Channels.php:182 +#: src/Module/Settings/Channels.php:168 msgid "" "When selected, the channel results are reshared. This only works for public " "ActivityPub posts from the public timeline or the user defined circles." msgstr "" -#: src/Module/Settings/Channels.php:190 src/Module/Settings/Channels.php:211 -#: src/Module/Settings/Display.php:338 +#: src/Module/Settings/Channels.php:176 src/Module/Settings/Channels.php:197 +#: src/Module/Settings/Display.php:324 msgid "Label" msgstr "" -#: src/Module/Settings/Channels.php:191 src/Module/Settings/Channels.php:212 -#: src/Module/Settings/Display.php:339 -#: src/Module/Settings/TwoFactor/AppSpecific.php:137 +#: src/Module/Settings/Channels.php:177 src/Module/Settings/Channels.php:198 +#: src/Module/Settings/Display.php:325 +#: src/Module/Settings/TwoFactor/AppSpecific.php:123 msgid "Description" msgstr "Opis" -#: src/Module/Settings/Channels.php:192 src/Module/Settings/Channels.php:213 +#: src/Module/Settings/Channels.php:178 src/Module/Settings/Channels.php:199 msgid "Access Key" msgstr "" -#: src/Module/Settings/Channels.php:193 src/Module/Settings/Channels.php:214 +#: src/Module/Settings/Channels.php:179 src/Module/Settings/Channels.php:200 msgid "Circle/Channel" msgstr "" -#: src/Module/Settings/Channels.php:194 src/Module/Settings/Channels.php:215 +#: src/Module/Settings/Channels.php:180 src/Module/Settings/Channels.php:201 msgid "Include Tags" msgstr "" -#: src/Module/Settings/Channels.php:195 src/Module/Settings/Channels.php:216 +#: src/Module/Settings/Channels.php:181 src/Module/Settings/Channels.php:202 msgid "Exclude Tags" msgstr "" -#: src/Module/Settings/Channels.php:196 src/Module/Settings/Channels.php:217 +#: src/Module/Settings/Channels.php:182 src/Module/Settings/Channels.php:203 msgid "Minimum Size" msgstr "" -#: src/Module/Settings/Channels.php:197 src/Module/Settings/Channels.php:218 +#: src/Module/Settings/Channels.php:183 src/Module/Settings/Channels.php:204 msgid "Maximum Size" msgstr "" -#: src/Module/Settings/Channels.php:198 src/Module/Settings/Channels.php:219 +#: src/Module/Settings/Channels.php:184 src/Module/Settings/Channels.php:205 msgid "Full Text Search" msgstr "" -#: src/Module/Settings/Channels.php:202 src/Module/Settings/Channels.php:223 +#: src/Module/Settings/Channels.php:188 src/Module/Settings/Channels.php:209 msgid "Select all languages that you want to see in this channel." msgstr "" -#: src/Module/Settings/Channels.php:204 +#: src/Module/Settings/Channels.php:190 msgid "Delete channel" msgstr "" -#: src/Module/Settings/Channels.php:204 +#: src/Module/Settings/Channels.php:190 msgid "Check to delete this entry from the channel list" msgstr "" -#: src/Module/Settings/Channels.php:211 +#: src/Module/Settings/Channels.php:197 msgid "Short name for the channel. It is displayed on the channels widget." msgstr "" -#: src/Module/Settings/Channels.php:212 +#: src/Module/Settings/Channels.php:198 msgid "This should describe the content of the channel in a few word." msgstr "" -#: src/Module/Settings/Channels.php:213 +#: src/Module/Settings/Channels.php:199 msgid "" "When you want to access this channel via an access key, you can define it " "here. Pay attention to not use an already used one." msgstr "" -#: src/Module/Settings/Channels.php:214 +#: src/Module/Settings/Channels.php:200 msgid "Select a circle or channel, that your channel should be based on." msgstr "" -#: src/Module/Settings/Channels.php:215 +#: src/Module/Settings/Channels.php:201 msgid "" "Comma separated list of tags. A post will be used when it contains any of " "the listed tags." msgstr "" -#: src/Module/Settings/Channels.php:216 +#: src/Module/Settings/Channels.php:202 msgid "" "Comma separated list of tags. If a post contain any of these tags, then it " "will not be part of nthis channel." msgstr "" -#: src/Module/Settings/Channels.php:217 +#: src/Module/Settings/Channels.php:203 msgid "" "Minimum post size. Leave empty for no minimum size. The size is calculated " "without links, attached posts, mentions or hashtags." msgstr "" -#: src/Module/Settings/Channels.php:218 +#: src/Module/Settings/Channels.php:204 msgid "" "Maximum post size. Leave empty for no maximum size. The size is calculated " "without links, attached posts, mentions or hashtags." msgstr "" -#: src/Module/Settings/Channels.php:219 +#: src/Module/Settings/Channels.php:205 #, php-format msgid "" "Search terms for the body, supports the \"boolean mode\" operators from " @@ -10508,600 +10489,589 @@ msgid "" "keywords: %s" msgstr "" -#: src/Module/Settings/Channels.php:220 +#: src/Module/Settings/Channels.php:206 msgid "Check to display images in the channel." msgstr "" -#: src/Module/Settings/Channels.php:221 +#: src/Module/Settings/Channels.php:207 msgid "Check to display videos in the channel." msgstr "" -#: src/Module/Settings/Channels.php:222 +#: src/Module/Settings/Channels.php:208 msgid "Check to display audio in the channel." msgstr "" -#: src/Module/Settings/Channels.php:227 +#: src/Module/Settings/Channels.php:213 msgid "Add new entry to the channel list" msgstr "" -#: src/Module/Settings/Channels.php:228 +#: src/Module/Settings/Channels.php:214 msgid "Add" msgstr "Dodaj" -#: src/Module/Settings/Channels.php:230 +#: src/Module/Settings/Channels.php:216 msgid "Current Entries in the channel list" msgstr "" -#: src/Module/Settings/Channels.php:233 +#: src/Module/Settings/Channels.php:219 msgid "Delete entry from the channel list" msgstr "" -#: src/Module/Settings/Channels.php:234 +#: src/Module/Settings/Channels.php:220 msgid "Delete entry from the channel list?" msgstr "" -#: src/Module/Settings/Connectors.php:122 +#: src/Module/Settings/Connectors.php:108 msgid "Failed to connect with email account using the settings provided." msgstr "Połączenie z kontem email używając wybranych ustawień nie powiodło się." -#: src/Module/Settings/Connectors.php:169 -#: src/Module/Settings/Connectors.php:170 +#: src/Module/Settings/Connectors.php:155 +#: src/Module/Settings/Connectors.php:156 msgid "Diaspora (Socialhome, Hubzilla)" msgstr "Diaspora (Socialhome, Hubzilla)" -#: src/Module/Settings/Connectors.php:169 -#: src/Module/Settings/Connectors.php:173 +#: src/Module/Settings/Connectors.php:155 #, php-format msgid "Built-in support for %s connectivity is enabled" msgstr "" -#: src/Module/Settings/Connectors.php:170 -#: src/Module/Settings/Connectors.php:172 +#: src/Module/Settings/Connectors.php:156 #, php-format msgid "Built-in support for %s connectivity is disabled" msgstr "" -#: src/Module/Settings/Connectors.php:172 -#: src/Module/Settings/Connectors.php:173 -msgid "OStatus (GNU Social)" -msgstr "OStatus (GNU Social)" - -#: src/Module/Settings/Connectors.php:185 +#: src/Module/Settings/Connectors.php:167 msgid "Email access is disabled on this site." msgstr "Dostęp do e-maila jest wyłączony na tej stronie." -#: src/Module/Settings/Connectors.php:200 -#: src/Module/Settings/Connectors.php:254 +#: src/Module/Settings/Connectors.php:182 +#: src/Module/Settings/Connectors.php:233 msgid "None" msgstr "Brak" -#: src/Module/Settings/Connectors.php:204 +#: src/Module/Settings/Connectors.php:186 msgid "Default (Mastodon will display the title and a link to the post)" msgstr "" -#: src/Module/Settings/Connectors.php:205 +#: src/Module/Settings/Connectors.php:187 msgid "" "Use the summary (Mastodon and some others will treat it as content warning)" msgstr "" -#: src/Module/Settings/Connectors.php:206 +#: src/Module/Settings/Connectors.php:188 msgid "Embed the title in the body" msgstr "" -#: src/Module/Settings/Connectors.php:218 +#: src/Module/Settings/Connectors.php:199 msgid "General Social Media Settings" msgstr "Ogólne ustawienia mediów społecznościowych" -#: src/Module/Settings/Connectors.php:221 +#: src/Module/Settings/Connectors.php:202 msgid "Followed content scope" msgstr "Obserwowany zakres treści" -#: src/Module/Settings/Connectors.php:223 +#: src/Module/Settings/Connectors.php:204 msgid "" "By default, conversations in which your follows participated but didn't " "start will be shown in your timeline. You can turn this behavior off, or " "expand it to the conversations in which your follows liked a post." msgstr "Domyślnie na Twojej osi czasu będą pokazywane wątki, w których uczestniczyli Twoi obserwowani, ale które nie zostały przez nich rozpoczęte. Możesz wyłączyć tę funkcję lub rozszerzyć ją na konwersacje, w których Twoi obserwujący polubili dany wpis." -#: src/Module/Settings/Connectors.php:225 +#: src/Module/Settings/Connectors.php:206 msgid "Only conversations my follows started" msgstr "Tylko rozmowy, które rozpoczęli moi obserwowani" -#: src/Module/Settings/Connectors.php:226 +#: src/Module/Settings/Connectors.php:207 msgid "Conversations my follows started or commented on (default)" msgstr "Rozmowy, które rozpoczęli moi obserwowani, lub które komentowali (domyślnie)" -#: src/Module/Settings/Connectors.php:227 +#: src/Module/Settings/Connectors.php:208 msgid "Any conversation my follows interacted with, including likes" msgstr "Wszelkie rozmowy, z którymi wchodziłem w interakcję, w tym polubienia" -#: src/Module/Settings/Connectors.php:230 +#: src/Module/Settings/Connectors.php:211 msgid "Collapse sensitive posts" msgstr "" -#: src/Module/Settings/Connectors.php:230 +#: src/Module/Settings/Connectors.php:211 msgid "" "If a post is marked as \"sensitive\", it will be displayed in a collapsed " "state, if this option is enabled." msgstr "" -#: src/Module/Settings/Connectors.php:231 +#: src/Module/Settings/Connectors.php:212 msgid "Enable intelligent shortening" msgstr "Włącz inteligentne skracanie" -#: src/Module/Settings/Connectors.php:231 +#: src/Module/Settings/Connectors.php:212 msgid "" "Normally the system tries to find the best link to add to shortened posts. " "If disabled, every shortened post will always point to the original " "friendica post." msgstr "Zwykle system próbuje znaleźć najlepszy odnośnik do dodania do skróconych postów. Jeśli wyłączone, każdy skrócony wpis będzie zawsze wskazywał na oryginalny wpis friendica." -#: src/Module/Settings/Connectors.php:232 +#: src/Module/Settings/Connectors.php:213 msgid "Enable simple text shortening" msgstr "Włącz proste skracanie tekstu" -#: src/Module/Settings/Connectors.php:232 +#: src/Module/Settings/Connectors.php:213 msgid "" "Normally the system shortens posts at the next line feed. If this option is " "enabled then the system will shorten the text at the maximum character " "limit." msgstr "Zwykle system skraca wpisy przy następnym wysunięciu wiersza. Jeśli ta opcja jest włączona, system skróci tekst do maksymalnego limitu znaków." -#: src/Module/Settings/Connectors.php:233 +#: src/Module/Settings/Connectors.php:214 msgid "Attach the link title" msgstr "Dołącz tytuł linku" -#: src/Module/Settings/Connectors.php:233 +#: src/Module/Settings/Connectors.php:214 msgid "" "When activated, the title of the attached link will be added as a title on " "posts to Diaspora. This is mostly helpful with \"remote-self\" contacts that" " share feed content." msgstr "Po aktywacji tytuł dołączonego linku zostanie dodany jako tytuł postów do Diaspory. Jest to szczególnie pomocne w przypadku kontaktów „zdalnych”, które udostępniają treść kanału." -#: src/Module/Settings/Connectors.php:234 +#: src/Module/Settings/Connectors.php:215 msgid "API: Use spoiler field as title" msgstr "" -#: src/Module/Settings/Connectors.php:234 +#: src/Module/Settings/Connectors.php:215 msgid "" "When activated, the \"spoiler_text\" field in the API will be used for the " "title on standalone posts. When deactivated it will be used for spoiler " "text. For comments it will always be used for spoiler text." msgstr "" -#: src/Module/Settings/Connectors.php:235 +#: src/Module/Settings/Connectors.php:216 msgid "API: Automatically links at the end of the post as attached posts" msgstr "" -#: src/Module/Settings/Connectors.php:235 +#: src/Module/Settings/Connectors.php:216 msgid "" "When activated, added links at the end of the post react the same way as " "added links in the web interface." msgstr "" -#: src/Module/Settings/Connectors.php:236 +#: src/Module/Settings/Connectors.php:217 msgid "Article Mode" msgstr "" -#: src/Module/Settings/Connectors.php:236 +#: src/Module/Settings/Connectors.php:217 msgid "" "Controls how posts with titles are transmitted. Mastodon and its forks don't" " display the content of these posts if the post is created in the correct " "(default) way." msgstr "" -#: src/Module/Settings/Connectors.php:237 +#: src/Module/Settings/Connectors.php:218 msgid "Your legacy ActivityPub/GNU Social account" msgstr "Twoje stare konto ActivityPub/GNU Social" -#: src/Module/Settings/Connectors.php:237 +#: src/Module/Settings/Connectors.php:218 msgid "" "If you enter your old account name from an ActivityPub based system or your " "GNU Social/Statusnet account name here (in the format user@domain.tld), your" " contacts will be added automatically. The field will be emptied when done." msgstr "Jeśli wprowadzisz tutaj swoją starą nazwę konta z systemu opartego na ActivityPub lub nazwę konta GNU Social/Statusnet (w formacie użytkownik@domena.tld), Twoje kontakty zostaną dodane automatycznie. Po zakończeniu pole zostanie opróżnione." -#: src/Module/Settings/Connectors.php:239 -msgid "Repair OStatus subscriptions" -msgstr "Napraw subskrypcje OStatus" - -#: src/Module/Settings/Connectors.php:243 +#: src/Module/Settings/Connectors.php:222 msgid "Email/Mailbox Setup" msgstr "Ustawienia emaila/skrzynki mailowej" -#: src/Module/Settings/Connectors.php:244 +#: src/Module/Settings/Connectors.php:223 msgid "" "If you wish to communicate with email contacts using this service " "(optional), please specify how to connect to your mailbox." msgstr "Jeśli chcesz komunikować się z kontaktami e-mail za pomocą tej usługi (opcjonalnie), określ sposób łączenia się ze skrzynką pocztową." -#: src/Module/Settings/Connectors.php:245 +#: src/Module/Settings/Connectors.php:224 msgid "Last successful email check:" msgstr "Ostatni sprawdzony e-mail:" -#: src/Module/Settings/Connectors.php:247 +#: src/Module/Settings/Connectors.php:226 msgid "IMAP server name:" msgstr "Nazwa serwera IMAP:" -#: src/Module/Settings/Connectors.php:248 +#: src/Module/Settings/Connectors.php:227 msgid "IMAP port:" msgstr "Port IMAP:" -#: src/Module/Settings/Connectors.php:249 +#: src/Module/Settings/Connectors.php:228 msgid "Security:" msgstr "Bezpieczeństwo:" -#: src/Module/Settings/Connectors.php:250 +#: src/Module/Settings/Connectors.php:229 msgid "Email login name:" msgstr "Nazwa logowania e-mail:" -#: src/Module/Settings/Connectors.php:251 +#: src/Module/Settings/Connectors.php:230 msgid "Email password:" msgstr "Hasło e-mail:" -#: src/Module/Settings/Connectors.php:252 +#: src/Module/Settings/Connectors.php:231 msgid "Reply-to address:" msgstr "Adres zwrotny:" -#: src/Module/Settings/Connectors.php:253 +#: src/Module/Settings/Connectors.php:232 msgid "Send public posts to all email contacts:" msgstr "Wyślij publiczny wpis do wszystkich kontaktów e-mail:" -#: src/Module/Settings/Connectors.php:254 +#: src/Module/Settings/Connectors.php:233 msgid "Action after import:" msgstr "Akcja po zaimportowaniu:" -#: src/Module/Settings/Connectors.php:254 +#: src/Module/Settings/Connectors.php:233 msgid "Move to folder" msgstr "Przenieś do katalogu" -#: src/Module/Settings/Connectors.php:255 +#: src/Module/Settings/Connectors.php:234 msgid "Move to folder:" msgstr "Przenieś do katalogu:" -#: src/Module/Settings/Delegation.php:73 +#: src/Module/Settings/Delegation.php:59 msgid "Delegation successfully granted." msgstr "Delegacja została pomyślnie przyznana." -#: src/Module/Settings/Delegation.php:75 +#: src/Module/Settings/Delegation.php:61 msgid "Parent user not found, unavailable or password doesn't match." msgstr "Nie znaleziono użytkownika nadrzędnego, jest on niedostępny lub hasło nie pasuje." -#: src/Module/Settings/Delegation.php:79 +#: src/Module/Settings/Delegation.php:65 msgid "Delegation successfully revoked." msgstr "Delegacja została pomyślnie odwołana." -#: src/Module/Settings/Delegation.php:98 -#: src/Module/Settings/Delegation.php:120 +#: src/Module/Settings/Delegation.php:84 +#: src/Module/Settings/Delegation.php:106 msgid "" "Delegated administrators can view but not change delegation permissions." msgstr "Delegowani administratorzy mogą przeglądać uprawnienia do delegowania, ale nie mogą ich zmieniać." -#: src/Module/Settings/Delegation.php:112 +#: src/Module/Settings/Delegation.php:98 msgid "Delegate user not found." msgstr "Nie znaleziono delegowanego użytkownika." -#: src/Module/Settings/Delegation.php:169 +#: src/Module/Settings/Delegation.php:155 msgid "No parent user" msgstr "Brak nadrzędnego użytkownika" -#: src/Module/Settings/Delegation.php:180 -#: src/Module/Settings/Delegation.php:191 +#: src/Module/Settings/Delegation.php:166 +#: src/Module/Settings/Delegation.php:177 msgid "Parent User" msgstr "Użytkownik nadrzędny" -#: src/Module/Settings/Delegation.php:188 +#: src/Module/Settings/Delegation.php:174 msgid "Additional Accounts" msgstr "Dodatkowe konta" -#: src/Module/Settings/Delegation.php:189 +#: src/Module/Settings/Delegation.php:175 msgid "" "Register additional accounts that are automatically connected to your " "existing account so you can manage them from this account." msgstr "Zarejestruj dodatkowe konta, które są automatycznie połączone z istniejącym kontem, aby móc nimi zarządzać z tego konta." -#: src/Module/Settings/Delegation.php:190 +#: src/Module/Settings/Delegation.php:176 msgid "Register an additional account" msgstr "Zarejestruj dodatkowe konto" -#: src/Module/Settings/Delegation.php:192 +#: src/Module/Settings/Delegation.php:178 msgid "" "Parent users have total control about this account, including the account " "settings. Please double check whom you give this access." msgstr "Użytkownicy nadrzędni mają pełną kontrolę nad tym kontem, w tym także ustawienia konta. Sprawdź dokładnie, komu przyznasz ten dostęp." -#: src/Module/Settings/Delegation.php:195 +#: src/Module/Settings/Delegation.php:181 msgid "Delegates" msgstr "Oddeleguj" -#: src/Module/Settings/Delegation.php:196 +#: src/Module/Settings/Delegation.php:182 msgid "" "Delegates are able to manage all aspects of this account/page except for " "basic account settings. Please do not delegate your personal account to " "anybody that you do not trust completely." msgstr "Delegaci mogą zarządzać wszystkimi aspektami tego konta/strony, z wyjątkiem podstawowych ustawień konta. Nie przekazuj swojego konta osobistego nikomu, komu nie ufasz całkowicie." -#: src/Module/Settings/Delegation.php:197 +#: src/Module/Settings/Delegation.php:183 msgid "Existing Page Delegates" msgstr "Obecni delegaci stron" -#: src/Module/Settings/Delegation.php:198 +#: src/Module/Settings/Delegation.php:184 msgid "Potential Delegates" msgstr "Potencjalni delegaci" -#: src/Module/Settings/Delegation.php:199 +#: src/Module/Settings/Delegation.php:185 msgid "No entries." msgstr "Brak wpisów." -#: src/Module/Settings/Display.php:183 +#: src/Module/Settings/Display.php:169 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:209 #, php-format msgid "%s - (Unsupported)" msgstr "%s - (Nieobsługiwane)" -#: src/Module/Settings/Display.php:260 +#: src/Module/Settings/Display.php:246 msgid "No preview" msgstr "" -#: src/Module/Settings/Display.php:261 +#: src/Module/Settings/Display.php:247 msgid "No image" msgstr "" -#: src/Module/Settings/Display.php:262 +#: src/Module/Settings/Display.php:248 msgid "Small Image" msgstr "" -#: src/Module/Settings/Display.php:263 +#: src/Module/Settings/Display.php:249 msgid "Large Image" msgstr "" -#: src/Module/Settings/Display.php:308 +#: src/Module/Settings/Display.php:294 msgid "Display Settings" msgstr "Ustawienia wyglądu" -#: src/Module/Settings/Display.php:310 +#: src/Module/Settings/Display.php:296 msgid "General Theme Settings" msgstr "Ogólne ustawienia motywu" -#: src/Module/Settings/Display.php:311 +#: src/Module/Settings/Display.php:297 msgid "Custom Theme Settings" msgstr "Niestandardowe ustawienia motywów" -#: src/Module/Settings/Display.php:312 +#: src/Module/Settings/Display.php:298 msgid "Content Settings" msgstr "Ustawienia zawartości" -#: src/Module/Settings/Display.php:313 view/theme/duepuntozero/config.php:86 -#: view/theme/frio/config.php:151 view/theme/quattro/config.php:88 -#: view/theme/vier/config.php:136 +#: src/Module/Settings/Display.php:299 view/theme/duepuntozero/config.php:74 +#: view/theme/frio/config.php:139 view/theme/quattro/config.php:76 +#: view/theme/vier/config.php:124 msgid "Theme settings" msgstr "Ustawienia motywu" -#: src/Module/Settings/Display.php:314 +#: src/Module/Settings/Display.php:300 msgid "Timelines" msgstr "" -#: src/Module/Settings/Display.php:321 +#: src/Module/Settings/Display.php:307 msgid "Display Theme:" msgstr "Wyświetl motyw:" -#: src/Module/Settings/Display.php:322 +#: src/Module/Settings/Display.php:308 msgid "Mobile Theme:" msgstr "Motyw dla urządzeń mobilnych:" -#: src/Module/Settings/Display.php:325 +#: src/Module/Settings/Display.php:311 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:311 src/Module/Settings/Display.php:312 msgid "Maximum of 100 items" msgstr "Maksymalnie 100 elementów" -#: src/Module/Settings/Display.php:326 +#: src/Module/Settings/Display.php:312 msgid "Number of items to display per page when viewed from mobile device:" msgstr "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:313 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:313 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:314 msgid "Display emoticons" msgstr "Wyświetl emotikony" -#: src/Module/Settings/Display.php:328 +#: src/Module/Settings/Display.php:314 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:315 msgid "Infinite scroll" msgstr "Nieskończone przewijanie" -#: src/Module/Settings/Display.php:329 +#: src/Module/Settings/Display.php:315 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:316 msgid "Enable Smart Threading" msgstr "Włącz inteligentne wątkowanie" -#: src/Module/Settings/Display.php:330 +#: src/Module/Settings/Display.php:316 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:317 msgid "Display the Dislike feature" msgstr "Wyświetl funkcję \"Nie lubię\"" -#: src/Module/Settings/Display.php:331 +#: src/Module/Settings/Display.php:317 msgid "" "Display the Dislike button and dislike reactions on posts and comments." msgstr "Wyświetlaj przycisk \"Nie lubię\" i reakcje na wpisy i komentarze." -#: src/Module/Settings/Display.php:332 +#: src/Module/Settings/Display.php:318 msgid "Display the resharer" msgstr "Wyświetl udostępniającego" -#: src/Module/Settings/Display.php:332 +#: src/Module/Settings/Display.php:318 msgid "Display the first resharer as icon and text on a reshared item." msgstr "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:319 msgid "Stay local" msgstr "Pozostań lokalny" -#: src/Module/Settings/Display.php:333 +#: src/Module/Settings/Display.php:319 msgid "Don't go to a remote system when following a contact link." msgstr "Nie przechodź do zdalnego systemu podczas korzystania z łącza kontaktowego." -#: src/Module/Settings/Display.php:334 +#: src/Module/Settings/Display.php:320 msgid "Show the post deletion checkbox" msgstr "" -#: src/Module/Settings/Display.php:334 +#: src/Module/Settings/Display.php:320 msgid "Display the checkbox for the post deletion on the network page." msgstr "" -#: src/Module/Settings/Display.php:335 +#: src/Module/Settings/Display.php:321 msgid "DIsplay the event list" msgstr "" -#: src/Module/Settings/Display.php:335 +#: src/Module/Settings/Display.php:321 msgid "Display the birthday reminder and event list on the network page." msgstr "" -#: src/Module/Settings/Display.php:336 +#: src/Module/Settings/Display.php:322 msgid "Link preview mode" msgstr "" -#: src/Module/Settings/Display.php:336 +#: src/Module/Settings/Display.php:322 msgid "Appearance of the link preview that is added to each post with a link." msgstr "" -#: src/Module/Settings/Display.php:341 +#: src/Module/Settings/Display.php:327 msgid "Bookmark" msgstr "" -#: src/Module/Settings/Display.php:343 +#: src/Module/Settings/Display.php:329 msgid "" "Enable timelines that you want to see in the channels widget. Bookmark " "timelines that you want to see in the top menu." msgstr "" -#: src/Module/Settings/Display.php:345 +#: src/Module/Settings/Display.php:331 msgid "Channel languages:" msgstr "" -#: src/Module/Settings/Display.php:345 +#: src/Module/Settings/Display.php:331 msgid "Select all languages that you want to see in your channels." msgstr "" -#: src/Module/Settings/Display.php:347 +#: src/Module/Settings/Display.php:333 msgid "Beginning of week:" msgstr "Początek tygodnia:" -#: src/Module/Settings/Display.php:348 +#: src/Module/Settings/Display.php:334 msgid "Default calendar view:" msgstr "" -#: src/Module/Settings/Features.php:73 +#: src/Module/Settings/Features.php:59 msgid "Additional Features" msgstr "Dodatkowe funkcje" -#: src/Module/Settings/OAuth.php:71 +#: src/Module/Settings/OAuth.php:57 msgid "Connected Apps" msgstr "Powiązane aplikacje" -#: src/Module/Settings/OAuth.php:75 +#: src/Module/Settings/OAuth.php:61 msgid "Remove authorization" msgstr "Odwołaj upoważnienie" -#: src/Module/Settings/Profile/Index.php:116 +#: src/Module/Settings/Profile/Index.php:102 msgid "Display Name is required." msgstr "" -#: src/Module/Settings/Profile/Index.php:170 +#: src/Module/Settings/Profile/Index.php:156 msgid "Profile couldn't be updated." msgstr "Profil nie mógł zostać zaktualizowany." -#: src/Module/Settings/Profile/Index.php:210 -#: src/Module/Settings/Profile/Index.php:231 +#: src/Module/Settings/Profile/Index.php:196 +#: src/Module/Settings/Profile/Index.php:217 msgid "Label:" msgstr "Etykieta:" -#: src/Module/Settings/Profile/Index.php:211 -#: src/Module/Settings/Profile/Index.php:232 +#: src/Module/Settings/Profile/Index.php:197 +#: src/Module/Settings/Profile/Index.php:218 msgid "Value:" msgstr "Wartość:" -#: src/Module/Settings/Profile/Index.php:222 -#: src/Module/Settings/Profile/Index.php:243 +#: src/Module/Settings/Profile/Index.php:208 +#: src/Module/Settings/Profile/Index.php:229 msgid "Field Permissions" msgstr "Uprawnienia pola" -#: src/Module/Settings/Profile/Index.php:223 -#: src/Module/Settings/Profile/Index.php:244 +#: src/Module/Settings/Profile/Index.php:209 +#: src/Module/Settings/Profile/Index.php:230 msgid "(click to open/close)" msgstr "(kliknij by otworzyć/zamknąć)" -#: src/Module/Settings/Profile/Index.php:229 +#: src/Module/Settings/Profile/Index.php:215 msgid "Add a new profile field" msgstr "Dodaj nowe pole profilu" -#: src/Module/Settings/Profile/Index.php:252 +#: src/Module/Settings/Profile/Index.php:238 msgid "" "The homepage is verified. A rel=\"me\" link back to your Friendica profile " "page was found on the homepage." msgstr "" -#: src/Module/Settings/Profile/Index.php:254 +#: src/Module/Settings/Profile/Index.php:240 #, php-format msgid "" "To verify your homepage, add a rel=\"me\" link to it, pointing to your " "profile URL (%s)." msgstr "" -#: src/Module/Settings/Profile/Index.php:260 +#: src/Module/Settings/Profile/Index.php:246 msgid "Profile Actions" msgstr "Akcje profilowe" -#: src/Module/Settings/Profile/Index.php:261 +#: src/Module/Settings/Profile/Index.php:247 msgid "Edit Profile Details" msgstr "Edytuj informacje o profilu" -#: src/Module/Settings/Profile/Index.php:263 +#: src/Module/Settings/Profile/Index.php:249 msgid "Change Profile Photo" msgstr "Zmień zdjęcie profilowe" -#: src/Module/Settings/Profile/Index.php:266 +#: src/Module/Settings/Profile/Index.php:252 msgid "Profile picture" msgstr "Zdjęcie profilowe" -#: src/Module/Settings/Profile/Index.php:267 +#: src/Module/Settings/Profile/Index.php:253 msgid "Location" msgstr "Lokalizacja" -#: src/Module/Settings/Profile/Index.php:268 src/Util/Temporal.php:97 -#: src/Util/Temporal.php:99 +#: src/Module/Settings/Profile/Index.php:254 src/Util/Temporal.php:83 +#: src/Util/Temporal.php:85 msgid "Miscellaneous" msgstr "Różne" -#: src/Module/Settings/Profile/Index.php:269 +#: src/Module/Settings/Profile/Index.php:255 msgid "Custom Profile Fields" msgstr "Niestandardowe pola profilu" -#: src/Module/Settings/Profile/Index.php:270 src/Module/Welcome.php:58 +#: src/Module/Settings/Profile/Index.php:256 src/Module/Welcome.php:44 msgid "Upload Profile Photo" msgstr "Wyślij zdjęcie profilowe" -#: src/Module/Settings/Profile/Index.php:271 +#: src/Module/Settings/Profile/Index.php:257 #, php-format msgid "" "

Custom fields appear on your profile page.

\n" @@ -11111,396 +11081,396 @@ msgid "" "\t\t\t\t

Non-public fields can only be seen by the selected Friendica contacts or the Friendica contacts in the selected circles.

" msgstr "" -#: src/Module/Settings/Profile/Index.php:291 +#: src/Module/Settings/Profile/Index.php:277 msgid "Street Address:" msgstr "Ulica:" -#: src/Module/Settings/Profile/Index.php:292 +#: src/Module/Settings/Profile/Index.php:278 msgid "Locality/City:" msgstr "Miasto:" -#: src/Module/Settings/Profile/Index.php:293 +#: src/Module/Settings/Profile/Index.php:279 msgid "Region/State:" msgstr "Województwo/Stan:" -#: src/Module/Settings/Profile/Index.php:294 +#: src/Module/Settings/Profile/Index.php:280 msgid "Postal/Zip Code:" msgstr "Kod pocztowy:" -#: src/Module/Settings/Profile/Index.php:295 +#: src/Module/Settings/Profile/Index.php:281 msgid "Country:" msgstr "Kraj:" -#: src/Module/Settings/Profile/Index.php:297 +#: src/Module/Settings/Profile/Index.php:283 msgid "XMPP (Jabber) address:" msgstr "Adres XMPP (Jabber):" -#: src/Module/Settings/Profile/Index.php:297 +#: src/Module/Settings/Profile/Index.php:283 msgid "" "The XMPP address will be published so that people can follow you there." msgstr "Adres XMPP zostanie opublikowany, aby ludzie mogli Cię tam śledzić." -#: src/Module/Settings/Profile/Index.php:298 +#: src/Module/Settings/Profile/Index.php:284 msgid "Matrix (Element) address:" msgstr "Adres Matrix (Element):" -#: src/Module/Settings/Profile/Index.php:298 +#: src/Module/Settings/Profile/Index.php:284 msgid "" "The Matrix address will be published so that people can follow you there." msgstr "Adres Matrix zostanie opublikowany, aby ludzie mogli Cię tam śledzić." -#: src/Module/Settings/Profile/Index.php:299 +#: src/Module/Settings/Profile/Index.php:285 msgid "Homepage URL:" msgstr "Adres URL strony domowej:" -#: src/Module/Settings/Profile/Index.php:300 +#: src/Module/Settings/Profile/Index.php:286 msgid "Public Keywords:" msgstr "Publiczne słowa kluczowe:" -#: src/Module/Settings/Profile/Index.php:300 +#: src/Module/Settings/Profile/Index.php:286 msgid "(Used for suggesting potential friends, can be seen by others)" msgstr "(Używany do sugerowania potencjalnych znajomych, jest widoczny dla innych)" -#: src/Module/Settings/Profile/Index.php:301 +#: src/Module/Settings/Profile/Index.php:287 msgid "Private Keywords:" msgstr "Prywatne słowa kluczowe:" -#: src/Module/Settings/Profile/Index.php:301 +#: src/Module/Settings/Profile/Index.php:287 msgid "(Used for searching profiles, never shown to others)" 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:100 +#: src/Module/Settings/Profile/Photo/Crop.php:93 +#: src/Module/Settings/Profile/Photo/Crop.php:111 +#: src/Module/Settings/Profile/Photo/Crop.php:129 +#: src/Module/Settings/Profile/Photo/Index.php:86 #, php-format msgid "Image size reduction [%s] failed." msgstr "Redukcja rozmiaru obrazka [%s] nie powiodła się." -#: src/Module/Settings/Profile/Photo/Crop.php:150 +#: src/Module/Settings/Profile/Photo/Crop.php:136 msgid "" "Shift-reload the page or clear browser cache if the new photo does not " "display immediately." msgstr "Ponownie załaduj stronę lub wyczyść pamięć podręczną przeglądarki, jeśli nowe zdjęcie nie pojawi się natychmiast." -#: src/Module/Settings/Profile/Photo/Crop.php:155 +#: src/Module/Settings/Profile/Photo/Crop.php:141 msgid "Unable to process image" msgstr "Nie udało się przetworzyć obrazu" -#: src/Module/Settings/Profile/Photo/Crop.php:174 +#: src/Module/Settings/Profile/Photo/Crop.php:160 msgid "Photo not found." msgstr "Nie znaleziono zdjęcia." -#: src/Module/Settings/Profile/Photo/Crop.php:196 +#: src/Module/Settings/Profile/Photo/Crop.php:182 msgid "Profile picture successfully updated." msgstr "Zdjęcie profilowe zostało pomyślnie zaktualizowane." -#: src/Module/Settings/Profile/Photo/Crop.php:222 -#: src/Module/Settings/Profile/Photo/Crop.php:226 +#: src/Module/Settings/Profile/Photo/Crop.php:208 +#: src/Module/Settings/Profile/Photo/Crop.php:212 msgid "Crop Image" msgstr "Przytnij zdjęcie" -#: src/Module/Settings/Profile/Photo/Crop.php:223 +#: src/Module/Settings/Profile/Photo/Crop.php:209 msgid "Please adjust the image cropping for optimum viewing." msgstr "Dostosuj kadrowanie obrazu, aby uzyskać optymalny obraz." -#: src/Module/Settings/Profile/Photo/Crop.php:225 +#: src/Module/Settings/Profile/Photo/Crop.php:211 msgid "Use Image As Is" msgstr "Użyj obrazu takim, jaki jest" -#: src/Module/Settings/Profile/Photo/Index.php:46 +#: src/Module/Settings/Profile/Photo/Index.php:32 msgid "Missing uploaded image." msgstr " Brak przesłanego obrazu." -#: src/Module/Settings/Profile/Photo/Index.php:123 +#: src/Module/Settings/Profile/Photo/Index.php:109 msgid "Profile Picture Settings" msgstr "Ustawienia zdjęcia profilowego" -#: src/Module/Settings/Profile/Photo/Index.php:124 +#: src/Module/Settings/Profile/Photo/Index.php:110 msgid "Current Profile Picture" msgstr "Bieżące zdjęcie profilowe" -#: src/Module/Settings/Profile/Photo/Index.php:125 +#: src/Module/Settings/Profile/Photo/Index.php:111 msgid "Upload Profile Picture" msgstr "Prześlij zdjęcie profilowe" -#: src/Module/Settings/Profile/Photo/Index.php:126 +#: src/Module/Settings/Profile/Photo/Index.php:112 msgid "Upload Picture:" msgstr "Załaduj zdjęcie:" -#: src/Module/Settings/Profile/Photo/Index.php:131 +#: src/Module/Settings/Profile/Photo/Index.php:117 msgid "or" msgstr "lub" -#: src/Module/Settings/Profile/Photo/Index.php:133 +#: src/Module/Settings/Profile/Photo/Index.php:119 msgid "skip this step" msgstr "pomiń ten krok" -#: src/Module/Settings/Profile/Photo/Index.php:135 +#: src/Module/Settings/Profile/Photo/Index.php:121 msgid "select a photo from your photo albums" msgstr "wybierz zdjęcie z twojego albumu" -#: src/Module/Settings/RemoveMe.php:76 +#: src/Module/Settings/RemoveMe.php:62 msgid "" "There was a validation error, please make sure you're logged in with the " "account you want to remove and try again." msgstr "" -#: src/Module/Settings/RemoveMe.php:76 +#: src/Module/Settings/RemoveMe.php:62 msgid "If this error persists, please contact your administrator." msgstr "" -#: src/Module/Settings/RemoveMe.php:90 -#: src/Navigation/Notifications/Repository/Notify.php:471 -#: src/Navigation/Notifications/Repository/Notify.php:492 +#: src/Module/Settings/RemoveMe.php:76 +#: src/Navigation/Notifications/Repository/Notify.php:457 +#: src/Navigation/Notifications/Repository/Notify.php:478 msgid "[Friendica System Notify]" msgstr "[Powiadomienie Systemu Friendica]" -#: src/Module/Settings/RemoveMe.php:90 +#: src/Module/Settings/RemoveMe.php:76 msgid "User deleted their account" msgstr "Użytkownik usunął swoje konto" -#: src/Module/Settings/RemoveMe.php:91 +#: src/Module/Settings/RemoveMe.php:77 msgid "" "On your Friendica node an user deleted their account. Please ensure that " "their data is removed from the backups." msgstr "W twoim węźle Friendica użytkownik usunął swoje konto. Upewnij się, że ich dane zostały usunięte z kopii zapasowych." -#: src/Module/Settings/RemoveMe.php:92 +#: src/Module/Settings/RemoveMe.php:78 #, php-format msgid "The user id is %d" msgstr "Identyfikatorem użytkownika jest %d" -#: src/Module/Settings/RemoveMe.php:105 +#: src/Module/Settings/RemoveMe.php:91 msgid "Your account has been successfully removed. Bye bye!" msgstr "" -#: src/Module/Settings/RemoveMe.php:130 +#: src/Module/Settings/RemoveMe.php:116 msgid "Remove My Account" msgstr "Usuń moje konto" -#: src/Module/Settings/RemoveMe.php:131 +#: src/Module/Settings/RemoveMe.php:117 msgid "" "This will completely remove your account. Once this has been done it is not " "recoverable." msgstr "Spowoduje to całkowite usunięcie Twojego konta. Po wykonaniu tej czynności nie można jej cofnąć." -#: src/Module/Settings/RemoveMe.php:136 +#: src/Module/Settings/RemoveMe.php:122 msgid "Please enter your password for verification:" msgstr "Wprowadź hasło w celu weryfikacji:" -#: src/Module/Settings/Server/Action.php:60 +#: src/Module/Settings/Server/Action.php:46 msgid "Do you want to ignore this server?" msgstr "" -#: src/Module/Settings/Server/Action.php:64 +#: src/Module/Settings/Server/Action.php:50 msgid "Do you want to unignore this server?" msgstr "" -#: src/Module/Settings/Server/Action.php:74 -#: src/Module/Settings/Server/Index.php:104 +#: src/Module/Settings/Server/Action.php:60 +#: src/Module/Settings/Server/Index.php:90 msgid "Remote server settings" msgstr "" -#: src/Module/Settings/Server/Action.php:77 +#: src/Module/Settings/Server/Action.php:63 msgid "Server URL" msgstr "" -#: src/Module/Settings/Server/Index.php:78 +#: src/Module/Settings/Server/Index.php:64 msgid "Settings saved" msgstr "" -#: src/Module/Settings/Server/Index.php:105 +#: src/Module/Settings/Server/Index.php:91 msgid "" "Here you can find all the remote servers you have taken individual " "moderation actions against. For a list of servers your node has blocked, " "please check out the Information page." msgstr "" -#: src/Module/Settings/Server/Index.php:110 +#: src/Module/Settings/Server/Index.php:96 msgid "Delete all your settings for the remote server" msgstr "" -#: src/Module/Settings/Server/Index.php:111 +#: src/Module/Settings/Server/Index.php:97 msgid "Save changes" msgstr "" -#: src/Module/Settings/TwoFactor/AppSpecific.php:69 -#: src/Module/Settings/TwoFactor/Recovery.php:67 -#: src/Module/Settings/TwoFactor/Trusted.php:70 -#: src/Module/Settings/TwoFactor/Verify.php:72 +#: src/Module/Settings/TwoFactor/AppSpecific.php:55 +#: src/Module/Settings/TwoFactor/Recovery.php:53 +#: src/Module/Settings/TwoFactor/Trusted.php:56 +#: src/Module/Settings/TwoFactor/Verify.php:58 msgid "Please enter your password to access this page." msgstr "Wprowadź hasło, aby uzyskać dostęp do tej strony." -#: src/Module/Settings/TwoFactor/AppSpecific.php:87 +#: src/Module/Settings/TwoFactor/AppSpecific.php:73 msgid "App-specific password generation failed: The description is empty." msgstr "Generowanie hasła aplikacji nie powiodło się: Opis jest pusty." -#: src/Module/Settings/TwoFactor/AppSpecific.php:90 +#: src/Module/Settings/TwoFactor/AppSpecific.php:76 msgid "" "App-specific password generation failed: This description already exists." msgstr "Generowanie hasła aplikacji nie powiodło się: Opis ten już istnieje." -#: src/Module/Settings/TwoFactor/AppSpecific.php:94 +#: src/Module/Settings/TwoFactor/AppSpecific.php:80 msgid "New app-specific password generated." msgstr "Nowe hasło specyficzne dla aplikacji." -#: src/Module/Settings/TwoFactor/AppSpecific.php:100 +#: src/Module/Settings/TwoFactor/AppSpecific.php:86 msgid "App-specific passwords successfully revoked." msgstr "Hasła specyficzne dla aplikacji zostały pomyślnie cofnięte." -#: src/Module/Settings/TwoFactor/AppSpecific.php:110 +#: src/Module/Settings/TwoFactor/AppSpecific.php:96 msgid "App-specific password successfully revoked." msgstr "Hasło specyficzne dla aplikacji zostało pomyślnie odwołane." -#: src/Module/Settings/TwoFactor/AppSpecific.php:131 +#: src/Module/Settings/TwoFactor/AppSpecific.php:117 msgid "Two-factor app-specific passwords" msgstr "Dwuskładnikowe hasła aplikacji" -#: src/Module/Settings/TwoFactor/AppSpecific.php:133 +#: src/Module/Settings/TwoFactor/AppSpecific.php:119 msgid "" "

App-specific passwords are randomly generated passwords used instead your" " regular password to authenticate your account on third-party applications " "that don't support two-factor authentication.

" msgstr "

Hasła aplikacji to losowo generowane hasła używane zamiast zwykłego hasła do uwierzytelniania konta w aplikacjach innych firm, które nie obsługują uwierzytelniania dwuskładnikowego.

" -#: src/Module/Settings/TwoFactor/AppSpecific.php:134 +#: src/Module/Settings/TwoFactor/AppSpecific.php:120 msgid "" "Make sure to copy your new app-specific password now. You won’t be able to " "see it again!" msgstr "Pamiętaj, aby teraz skopiować nowe hasło aplikacji. Nie będziesz mógł go zobaczyć ponownie!" -#: src/Module/Settings/TwoFactor/AppSpecific.php:138 +#: src/Module/Settings/TwoFactor/AppSpecific.php:124 msgid "Last Used" msgstr "Ostatnio używane" -#: src/Module/Settings/TwoFactor/AppSpecific.php:139 +#: src/Module/Settings/TwoFactor/AppSpecific.php:125 msgid "Revoke" msgstr "Unieważnij" -#: src/Module/Settings/TwoFactor/AppSpecific.php:140 +#: src/Module/Settings/TwoFactor/AppSpecific.php:126 msgid "Revoke All" msgstr "Unieważnij wszyskie" -#: src/Module/Settings/TwoFactor/AppSpecific.php:143 +#: src/Module/Settings/TwoFactor/AppSpecific.php:129 msgid "" "When you generate a new app-specific password, you must use it right away, " "it will be shown to you once after you generate it." msgstr "Gdy generujesz nowe hasło aplikacji, musisz go od razu użyć. Zostanie ono wyświetlone raz po wygenerowaniu." -#: src/Module/Settings/TwoFactor/AppSpecific.php:144 +#: src/Module/Settings/TwoFactor/AppSpecific.php:130 msgid "Generate new app-specific password" msgstr "Wygeneruj nowe hasło specyficzne dla aplikacji" -#: src/Module/Settings/TwoFactor/AppSpecific.php:145 +#: src/Module/Settings/TwoFactor/AppSpecific.php:131 msgid "Friendiqa on my Fairphone 2..." msgstr "Friendiqa na moim Fairphone 2..." -#: src/Module/Settings/TwoFactor/AppSpecific.php:146 +#: src/Module/Settings/TwoFactor/AppSpecific.php:132 msgid "Generate" msgstr "Utwórz" -#: src/Module/Settings/TwoFactor/Index.php:88 +#: src/Module/Settings/TwoFactor/Index.php:74 msgid "Two-factor authentication successfully disabled." msgstr "Autoryzacja dwuskładnikowa została pomyślnie wyłączona." -#: src/Module/Settings/TwoFactor/Index.php:141 +#: src/Module/Settings/TwoFactor/Index.php:127 msgid "" "

Use an application on a mobile device to get two-factor authentication " "codes when prompted on login.

" msgstr "

Użyj aplikacji na urządzeniu mobilnym, aby uzyskać dwuskładnikowe kody uwierzytelniające po wyświetleniu monitu o zalogowanie.

" -#: src/Module/Settings/TwoFactor/Index.php:145 +#: src/Module/Settings/TwoFactor/Index.php:131 msgid "Authenticator app" msgstr "Aplikacja Authenticator" -#: src/Module/Settings/TwoFactor/Index.php:146 +#: src/Module/Settings/TwoFactor/Index.php:132 msgid "Configured" msgstr "Skonfigurowane" -#: src/Module/Settings/TwoFactor/Index.php:146 +#: src/Module/Settings/TwoFactor/Index.php:132 msgid "Not Configured" msgstr "Nie skonfigurowane" -#: src/Module/Settings/TwoFactor/Index.php:147 +#: src/Module/Settings/TwoFactor/Index.php:133 msgid "

You haven't finished configuring your authenticator app.

" msgstr "

Nie zakończyłeś konfigurowania aplikacji uwierzytelniającej.

" -#: src/Module/Settings/TwoFactor/Index.php:148 +#: src/Module/Settings/TwoFactor/Index.php:134 msgid "

Your authenticator app is correctly configured.

" msgstr "

Twoja aplikacja uwierzytelniająca jest poprawnie skonfigurowana.

" -#: src/Module/Settings/TwoFactor/Index.php:150 +#: src/Module/Settings/TwoFactor/Index.php:136 msgid "Recovery codes" msgstr "Kody odzyskiwania" -#: src/Module/Settings/TwoFactor/Index.php:151 +#: src/Module/Settings/TwoFactor/Index.php:137 msgid "Remaining valid codes" msgstr "Pozostałe ważne kody" -#: src/Module/Settings/TwoFactor/Index.php:153 +#: src/Module/Settings/TwoFactor/Index.php:139 msgid "" "

These one-use codes can replace an authenticator app code in case you " "have lost access to it.

" msgstr "

Te jednorazowe kody mogą zastąpić kod aplikacji uwierzytelniającej w przypadku utraty dostępu do niej.

" -#: src/Module/Settings/TwoFactor/Index.php:155 +#: src/Module/Settings/TwoFactor/Index.php:141 msgid "App-specific passwords" msgstr "Hasła specyficzne dla aplikacji" -#: src/Module/Settings/TwoFactor/Index.php:156 +#: src/Module/Settings/TwoFactor/Index.php:142 msgid "Generated app-specific passwords" msgstr "Wygenerowane hasła specyficzne dla aplikacji" -#: src/Module/Settings/TwoFactor/Index.php:158 +#: src/Module/Settings/TwoFactor/Index.php:144 msgid "" "

These randomly generated passwords allow you to authenticate on apps not " "supporting two-factor authentication.

" msgstr "

Losowo generowane hasła umożliwiają uwierzytelnianie w aplikacjach nie obsługujących uwierzytelniania dwuskładnikowego.

" -#: src/Module/Settings/TwoFactor/Index.php:161 +#: src/Module/Settings/TwoFactor/Index.php:147 msgid "Current password:" msgstr "Aktualne hasło:" -#: src/Module/Settings/TwoFactor/Index.php:161 +#: src/Module/Settings/TwoFactor/Index.php:147 msgid "" "You need to provide your current password to change two-factor " "authentication settings." msgstr "Musisz podać swoje aktualne hasło, aby zmienić ustawienia uwierzytelniania dwuskładnikowego." -#: src/Module/Settings/TwoFactor/Index.php:162 +#: src/Module/Settings/TwoFactor/Index.php:148 msgid "Enable two-factor authentication" msgstr "Włącz uwierzytelnianie dwuskładnikowe" -#: src/Module/Settings/TwoFactor/Index.php:163 +#: src/Module/Settings/TwoFactor/Index.php:149 msgid "Disable two-factor authentication" msgstr "Wyłącz uwierzytelnianie dwuskładnikowe" -#: src/Module/Settings/TwoFactor/Index.php:164 +#: src/Module/Settings/TwoFactor/Index.php:150 msgid "Show recovery codes" msgstr "Pokaż kody odzyskiwania" -#: src/Module/Settings/TwoFactor/Index.php:165 +#: src/Module/Settings/TwoFactor/Index.php:151 msgid "Manage app-specific passwords" msgstr "Zarządzaj hasłami specyficznymi dla aplikacji" -#: src/Module/Settings/TwoFactor/Index.php:166 +#: src/Module/Settings/TwoFactor/Index.php:152 msgid "Manage trusted browsers" msgstr "Zarządzaj zaufanymi przeglądarkami" -#: src/Module/Settings/TwoFactor/Index.php:167 +#: src/Module/Settings/TwoFactor/Index.php:153 msgid "Finish app configuration" msgstr "Zakończ konfigurację aplikacji" -#: src/Module/Settings/TwoFactor/Recovery.php:83 +#: src/Module/Settings/TwoFactor/Recovery.php:69 msgid "New recovery codes successfully generated." msgstr "Wygenerowano nowe kody odzyskiwania." -#: src/Module/Settings/TwoFactor/Recovery.php:109 +#: src/Module/Settings/TwoFactor/Recovery.php:95 msgid "Two-factor recovery codes" msgstr "Dwuskładnikowe kody odzyskiwania" -#: src/Module/Settings/TwoFactor/Recovery.php:111 +#: src/Module/Settings/TwoFactor/Recovery.php:97 msgid "" "

Recovery codes can be used to access your account in the event you lose " "access to your device and cannot receive two-factor authentication " @@ -11509,68 +11479,68 @@ msgid "" "account.

" msgstr "

Kody odzyskiwania mogą służyć do uzyskiwania dostępu do konta w przypadku utraty dostępu do urządzenia i braku możliwości otrzymania kodów uwierzytelniania dwuskładnikowego.

Umieść je w bezpiecznym miejscu! Jeśli zgubisz urządzenie i nie będziesz mieć kodów odzyskiwania, utracisz dostęp do swojego konta.

" -#: src/Module/Settings/TwoFactor/Recovery.php:113 +#: src/Module/Settings/TwoFactor/Recovery.php:99 msgid "" "When you generate new recovery codes, you must copy the new codes. Your old " "codes won’t work anymore." msgstr "Kiedy generujesz nowe kody odzyskiwania, musisz skopiować nowe kody. Twoje stare kody nie będą już działać." -#: src/Module/Settings/TwoFactor/Recovery.php:114 +#: src/Module/Settings/TwoFactor/Recovery.php:100 msgid "Generate new recovery codes" msgstr "Wygeneruj nowe kody odzyskiwania" -#: src/Module/Settings/TwoFactor/Recovery.php:116 +#: src/Module/Settings/TwoFactor/Recovery.php:102 msgid "Next: Verification" msgstr "Następny: Weryfikacja" -#: src/Module/Settings/TwoFactor/Trusted.php:87 +#: src/Module/Settings/TwoFactor/Trusted.php:73 msgid "Trusted browsers successfully removed." msgstr "Zaufane przeglądarki zostały pomyślnie usunięte." -#: src/Module/Settings/TwoFactor/Trusted.php:97 +#: src/Module/Settings/TwoFactor/Trusted.php:83 msgid "Trusted browser successfully removed." msgstr "Zaufana przeglądarka została pomyślnie usunięta." -#: src/Module/Settings/TwoFactor/Trusted.php:139 +#: src/Module/Settings/TwoFactor/Trusted.php:125 msgid "Two-factor Trusted Browsers" msgstr "Zaufane przeglądarki dwuskładnikowe" -#: src/Module/Settings/TwoFactor/Trusted.php:140 +#: src/Module/Settings/TwoFactor/Trusted.php:126 msgid "" "Trusted browsers are individual browsers you chose to skip two-factor " "authentication to access Friendica. Please use this feature sparingly, as it" " can negate the benefit of two-factor authentication." msgstr "Zaufane przeglądarki to indywidualne przeglądarki, które zostały wybrane, aby pominąć uwierzytelnianie dwuskładnikowe celem uzyskania dostępu do Friendica. Korzystaj z tej funkcji oszczędnie, ponieważ może ona negować korzyści płynące z uwierzytelniania dwuskładnikowego." -#: src/Module/Settings/TwoFactor/Trusted.php:141 +#: src/Module/Settings/TwoFactor/Trusted.php:127 msgid "Device" msgstr "Urządzenie" -#: src/Module/Settings/TwoFactor/Trusted.php:142 +#: src/Module/Settings/TwoFactor/Trusted.php:128 msgid "OS" msgstr "System operacyjny" -#: src/Module/Settings/TwoFactor/Trusted.php:144 +#: src/Module/Settings/TwoFactor/Trusted.php:130 msgid "Trusted" msgstr "Zaufane" -#: src/Module/Settings/TwoFactor/Trusted.php:145 +#: src/Module/Settings/TwoFactor/Trusted.php:131 msgid "Created At" msgstr "Utworzono" -#: src/Module/Settings/TwoFactor/Trusted.php:146 +#: src/Module/Settings/TwoFactor/Trusted.php:132 msgid "Last Use" msgstr "Ostatnie użycie" -#: src/Module/Settings/TwoFactor/Trusted.php:148 +#: src/Module/Settings/TwoFactor/Trusted.php:134 msgid "Remove All" msgstr "Usuń wszystkie" -#: src/Module/Settings/TwoFactor/Verify.php:94 +#: src/Module/Settings/TwoFactor/Verify.php:80 msgid "Two-factor authentication successfully activated." msgstr "Uwierzytelnienie dwuskładnikowe zostało pomyślnie aktywowane." -#: src/Module/Settings/TwoFactor/Verify.php:128 +#: src/Module/Settings/TwoFactor/Verify.php:114 #, php-format msgid "" "

Or you can submit the authentication settings manually:

\n" @@ -11590,105 +11560,105 @@ msgid "" "" msgstr "

Możesz przesłać ustawienia uwierzytelniania ręcznie:

\n
\n\t
Wystawc
\n\t
%s
\n\t
Nazwa konta
\n\t
%s
\n\t
Sekretny klucz
\n\t
%s
\n\t
Typ
\n\t
Oparte na czasie
\n\t
Liczba cyfr
\n\t
6
\n\t
Hashing algorytmu
\n\t
SHA-1
\n
" -#: src/Module/Settings/TwoFactor/Verify.php:148 +#: src/Module/Settings/TwoFactor/Verify.php:134 msgid "Two-factor code verification" msgstr "Weryfikacja kodu dwuskładnikowego" -#: src/Module/Settings/TwoFactor/Verify.php:150 +#: src/Module/Settings/TwoFactor/Verify.php:136 msgid "" "

Please scan this QR Code with your authenticator app and submit the " "provided code.

" msgstr "

Zeskanuj kod QR za pomocą aplikacji uwierzytelniającej i prześlij podany kod.

" -#: src/Module/Settings/TwoFactor/Verify.php:152 +#: src/Module/Settings/TwoFactor/Verify.php:138 #, php-format msgid "" "

Or you can open the following URL in your mobile device:

%s

" msgstr "

Możesz też otworzyć następujący adres URL w urządzeniu mobilnym:

%s

" -#: src/Module/Settings/TwoFactor/Verify.php:159 +#: src/Module/Settings/TwoFactor/Verify.php:145 msgid "Verify code and enable two-factor authentication" msgstr "Sprawdź kod i włącz uwierzytelnianie dwuskładnikowe" -#: src/Module/Settings/UserExport.php:90 +#: src/Module/Settings/UserExport.php:76 msgid "Export account" msgstr "Eksportuj konto" -#: src/Module/Settings/UserExport.php:90 +#: src/Module/Settings/UserExport.php:76 msgid "" "Export your account info and contacts. Use this to make a backup of your " "account and/or to move it to another server." msgstr "Eksportuj informacje o swoim koncie i kontaktach. Użyj tego do utworzenia kopii zapasowej konta i/lub przeniesienia go na inny serwer." -#: src/Module/Settings/UserExport.php:91 +#: src/Module/Settings/UserExport.php:77 msgid "Export all" msgstr "Eksportuj wszystko" -#: src/Module/Settings/UserExport.php:91 +#: src/Module/Settings/UserExport.php:77 msgid "" "Export your account info, contacts and all your items as json. Could be a " "very big file, and could take a lot of time. Use this to make a full backup " "of your account (photos are not exported)" msgstr "Wyeksportuj informacje o swoim koncie, kontakty i wszystkie swoje elementy jako json. Może to być bardzo duży plik i może zająć dużo czasu. Użyj tego, aby wykonać pełną kopię zapasową swojego konta (zdjęcia nie są eksportowane)." -#: src/Module/Settings/UserExport.php:92 +#: src/Module/Settings/UserExport.php:78 msgid "Export Contacts to CSV" msgstr "Eksportuj kontakty do CSV" -#: src/Module/Settings/UserExport.php:92 +#: src/Module/Settings/UserExport.php:78 msgid "" "Export the list of the accounts you are following as CSV file. Compatible to" " e.g. Mastodon." msgstr "Wyeksportuj listę kont, które obserwujesz, jako plik CSV. Kompatybilny np. Mastodont." -#: src/Module/Special/DisplayNotFound.php:35 +#: src/Module/Special/DisplayNotFound.php:21 msgid "The top-level post isn't visible." msgstr "" -#: src/Module/Special/DisplayNotFound.php:36 +#: src/Module/Special/DisplayNotFound.php:22 msgid "The top-level post was deleted." msgstr "" -#: src/Module/Special/DisplayNotFound.php:37 +#: src/Module/Special/DisplayNotFound.php:23 msgid "" "This node has blocked the top-level author or the author of the shared post." msgstr "" -#: src/Module/Special/DisplayNotFound.php:38 +#: src/Module/Special/DisplayNotFound.php:24 msgid "" "You have ignored or blocked the top-level author or the author of the shared" " post." msgstr "" -#: src/Module/Special/DisplayNotFound.php:39 +#: src/Module/Special/DisplayNotFound.php:25 msgid "" "You have ignored the top-level author's server or the shared post author's " "server." msgstr "" -#: src/Module/Special/DisplayNotFound.php:45 +#: src/Module/Special/DisplayNotFound.php:31 msgid "Conversation Not Found" msgstr "" -#: src/Module/Special/DisplayNotFound.php:46 +#: src/Module/Special/DisplayNotFound.php:32 msgid "Unfortunately, the requested conversation isn't available to you." msgstr "" -#: src/Module/Special/DisplayNotFound.php:47 +#: src/Module/Special/DisplayNotFound.php:33 msgid "Possible reasons include:" msgstr "" -#: src/Module/Special/HTTPException.php:78 +#: src/Module/Special/HTTPException.php:64 msgid "Stack trace:" msgstr "Ślad stosu:" -#: src/Module/Special/HTTPException.php:83 +#: src/Module/Special/HTTPException.php:69 #, php-format msgid "Exception thrown in %s:%d" msgstr "Zgłoszono wyjątek %s:%d" -#: src/Module/Tos.php:58 src/Module/Tos.php:107 +#: src/Module/Tos.php:44 src/Module/Tos.php:93 msgid "" "At the time of registration, and for providing communications between the " "user account and their contacts, the user has to provide a display name (pen" @@ -11701,14 +11671,14 @@ msgid "" "settings, it is not necessary for communication." msgstr "W momencie rejestracji oraz w celu zapewnienia komunikacji między kontem użytkownika, a jego kontaktami, użytkownik musi podać nazwę wyświetlaną (pseudonim), nazwę użytkownika (przydomek) i działający adres e-mail. Nazwy będą dostępne na stronie profilu konta dla każdego odwiedzającego stronę, nawet jeśli inne szczegóły profilu nie zostaną wyświetlone. Adres e-mail będzie używany tylko do wysyłania powiadomień użytkownika o interakcjach, ale nie będzie wyświetlany w widoczny sposób. Lista kont w katalogu użytkownika węzła lub globalnym katalogu użytkownika jest opcjonalna i może być kontrolowana w ustawieniach użytkownika, nie jest konieczna do komunikacji." -#: src/Module/Tos.php:59 src/Module/Tos.php:108 +#: src/Module/Tos.php:45 src/Module/Tos.php:94 msgid "" "This data is required for communication and is passed on to the nodes of the" " communication partners and is stored there. Users can enter additional " "private data that may be transmitted to the communication partners accounts." msgstr "Te dane są wymagane do komunikacji i są przekazywane do węzłów partnerów komunikacyjnych i są tam przechowywane. Użytkownicy mogą wprowadzać dodatkowe prywatne dane, które mogą być przesyłane na konta partnerów komunikacyjnych." -#: src/Module/Tos.php:60 src/Module/Tos.php:109 +#: src/Module/Tos.php:46 src/Module/Tos.php:95 #, php-format msgid "" "At any point in time a logged in user can export their account data from the" @@ -11719,98 +11689,98 @@ msgid "" "from the nodes of the communication partners." msgstr "" -#: src/Module/Tos.php:63 src/Module/Tos.php:106 +#: src/Module/Tos.php:49 src/Module/Tos.php:92 msgid "Privacy Statement" msgstr "Oświadczenie o prywatności" -#: src/Module/Tos.php:103 +#: src/Module/Tos.php:89 msgid "Rules" msgstr "" -#: src/Module/Update/Display.php:45 +#: src/Module/Update/Display.php:31 msgid "Parameter uri_id is missing." msgstr "" -#: src/Module/Update/Display.php:55 +#: src/Module/Update/Display.php:41 msgid "The requested item doesn't exist or has been deleted." msgstr "Żądany element nie istnieje lub został usunięty." -#: src/Module/User/Delegation.php:146 +#: src/Module/User/Delegation.php:132 #, php-format msgid "You are now logged in as %s" msgstr "Jesteś teraz zalogowany jako %s" -#: src/Module/User/Delegation.php:185 +#: src/Module/User/Delegation.php:171 msgid "Switch between your accounts" msgstr "Przełącz się pomiędzy kontami" -#: src/Module/User/Delegation.php:186 +#: src/Module/User/Delegation.php:172 msgid "Manage your accounts" msgstr "Zarządzaj swoimi kontami" -#: src/Module/User/Delegation.php:187 +#: src/Module/User/Delegation.php:173 msgid "" "Toggle between different identities or community/group pages which share " "your account details or which you have been granted \"manage\" permissions" msgstr "Przełącz między różnymi tożsamościami lub stronami społeczność/grupy, które udostępniają dane Twojego konta lub które otrzymałeś uprawnienia \"zarządzaj\"" -#: src/Module/User/Delegation.php:188 +#: src/Module/User/Delegation.php:174 msgid "Select an identity to manage: " msgstr "Wybierz tożsamość do zarządzania: " -#: src/Module/User/Import.php:104 +#: src/Module/User/Import.php:90 msgid "User imports on closed servers can only be done by an administrator." msgstr "Import użytkowników na zamkniętych serwerach może być wykonywany tylko przez administratora." -#: src/Module/User/Import.php:120 +#: src/Module/User/Import.php:106 msgid "Move account" msgstr "Przenieś konto" -#: src/Module/User/Import.php:121 +#: src/Module/User/Import.php:107 msgid "You can import an account from another Friendica server." msgstr "Możesz zaimportować konto z innego serwera Friendica." -#: src/Module/User/Import.php:122 +#: src/Module/User/Import.php:108 msgid "" "You need to export your account from the old server and upload it here. We " "will recreate your old account here with all your contacts. We will try also" " to inform your friends that you moved here." msgstr "Musisz wyeksportować konto ze starego serwera i przesłać je tutaj. Odtworzymy twoje stare konto tutaj ze wszystkimi twoimi kontaktami. Postaramy się również poinformować twoich znajomych, że się tutaj przeniosłeś." -#: src/Module/User/Import.php:123 +#: src/Module/User/Import.php:109 msgid "" "This feature is experimental. We can't import contacts from the OStatus " "network (GNU Social/Statusnet) or from Diaspora" msgstr "Ta funkcja jest eksperymentalna. Nie możemy importować kontaktów z sieci OStatus (GNU Social/Statusnet) lub z Diaspory" -#: src/Module/User/Import.php:124 +#: src/Module/User/Import.php:110 msgid "Account file" msgstr "Pliki konta" -#: src/Module/User/Import.php:124 +#: src/Module/User/Import.php:110 msgid "" "To export your account, go to \"Settings->Export your personal data\" and " "select \"Export account\"" msgstr "Aby eksportować konto, wejdź w \"Ustawienia->Eksport danych osobistych\" i wybierz \"Eksportuj konto\"" -#: src/Module/User/Import.php:218 +#: src/Module/User/Import.php:204 msgid "Error decoding account file" msgstr "Błąd podczas odczytu pliku konta" -#: src/Module/User/Import.php:223 +#: src/Module/User/Import.php:209 msgid "Error! No version data in file! This is not a Friendica account file?" msgstr "Błąd! Brak danych wersji w pliku! To nie jest plik konta Friendica?" -#: src/Module/User/Import.php:231 +#: src/Module/User/Import.php:217 #, php-format msgid "User '%s' already exists on this server!" msgstr "Użytkownik '%s' już istnieje na tym serwerze!" -#: src/Module/User/Import.php:268 +#: src/Module/User/Import.php:254 msgid "User creation error" msgstr "Błąd tworzenia użytkownika" -#: src/Module/User/Import.php:317 +#: src/Module/User/Import.php:303 #, php-format msgid "%d contact not imported" msgid_plural "%d contacts not imported" @@ -11819,23 +11789,23 @@ msgstr[1] "Nie zaimportowano %d kontaktów" msgstr[2] "Nie zaimportowano %d kontaktów" msgstr[3] "%d kontakty nie zostały zaimportowane " -#: src/Module/User/Import.php:366 +#: src/Module/User/Import.php:352 msgid "User profile creation error" msgstr "Błąd tworzenia profilu użytkownika" -#: src/Module/User/Import.php:417 +#: src/Module/User/Import.php:403 msgid "Done. You can now login with your username and password" msgstr "Gotowe. Możesz teraz zalogować się z użyciem nazwy użytkownika i hasła" -#: src/Module/Welcome.php:44 +#: src/Module/Welcome.php:30 msgid "Welcome to Friendica" msgstr "Witamy na Friendica" -#: src/Module/Welcome.php:45 +#: src/Module/Welcome.php:31 msgid "New Member Checklist" msgstr "Lista nowych członków" -#: src/Module/Welcome.php:46 +#: src/Module/Welcome.php:32 msgid "" "We would like to offer some tips and links to help make your experience " "enjoyable. Click any item to visit the relevant page. A link to this page " @@ -11843,33 +11813,33 @@ msgid "" "registration and then will quietly disappear." msgstr "Chcielibyśmy zaproponować kilka porad i linków, które pomogą uczynić twoje doświadczenie przyjemnym. Kliknij dowolny element, aby odwiedzić odpowiednią stronę. Link do tej strony będzie widoczny na stronie głównej przez dwa tygodnie od czasu rejestracji, a następnie zniknie." -#: src/Module/Welcome.php:48 +#: src/Module/Welcome.php:34 msgid "Getting Started" msgstr "Pierwsze kroki" -#: src/Module/Welcome.php:49 +#: src/Module/Welcome.php:35 msgid "Friendica Walk-Through" msgstr "Friendica Przejdź-Przez" -#: src/Module/Welcome.php:50 +#: src/Module/Welcome.php:36 msgid "" "On your Quick Start page - find a brief introduction to your " "profile and network tabs, make some new connections, and find some groups to" " join." msgstr "Na stronie Szybki start - znajdź krótkie wprowadzenie do swojego profilu i kart sieciowych, stwórz nowe połączenia i znajdź kilka grup do przyłączenia się." -#: src/Module/Welcome.php:53 +#: src/Module/Welcome.php:39 msgid "Go to Your Settings" msgstr "Idź do swoich ustawień" -#: src/Module/Welcome.php:54 +#: src/Module/Welcome.php:40 msgid "" "On your Settings page - change your initial password. Also make a " "note of your Identity Address. This looks just like an email address - and " "will be useful in making friends on the free social web." msgstr "Na stronie Ustawienia - zmień swoje początkowe hasło. Zanotuj także swój adres tożsamości. Wygląda to jak adres e-mail - będzie przydatny w nawiązywaniu znajomości w bezpłatnej sieci społecznościowej." -#: src/Module/Welcome.php:55 +#: src/Module/Welcome.php:41 msgid "" "Review the other settings, particularly the privacy settings. An unpublished" " directory listing is like having an unlisted phone number. In general, you " @@ -11877,77 +11847,77 @@ msgid "" "potential friends know exactly how to find you." msgstr "Przejrzyj pozostałe ustawienia, w szczególności ustawienia prywatności. Niepublikowany wykaz katalogów jest podobny do niepublicznego numeru telefonu. Ogólnie rzecz biorąc, powinieneś opublikować swój wpis - chyba, że wszyscy twoi znajomi i potencjalni znajomi dokładnie wiedzą, jak Cię znaleźć." -#: src/Module/Welcome.php:59 +#: src/Module/Welcome.php:45 msgid "" "Upload a profile photo if you have not done so already. Studies have shown " "that people with real photos of themselves are ten times more likely to make" " friends than people who do not." msgstr "Dodaj swoje zdjęcie profilowe jeśli jeszcze tego nie zrobiłeś. Twoje szanse na zwiększenie liczby znajomych rosną dziesięciokrotnie, kiedy na tym zdjęciu jesteś ty." -#: src/Module/Welcome.php:60 +#: src/Module/Welcome.php:46 msgid "Edit Your Profile" msgstr "Edytuj własny profil" -#: src/Module/Welcome.php:61 +#: src/Module/Welcome.php:47 msgid "" "Edit your default profile to your liking. Review the " "settings for hiding your list of friends and hiding the profile from unknown" " visitors." msgstr "Edytuj swój domyślny profil do swoich potrzeb. Przejrzyj ustawienia ukrywania listy znajomych i ukrywania profilu przed nieznanymi użytkownikami." -#: src/Module/Welcome.php:62 +#: src/Module/Welcome.php:48 msgid "Profile Keywords" msgstr "Słowa kluczowe profilu" -#: src/Module/Welcome.php:63 +#: src/Module/Welcome.php:49 msgid "" "Set some public keywords for your profile which describe your interests. We " "may be able to find other people with similar interests and suggest " "friendships." msgstr "Ustaw kilka publicznych słów kluczowych dla swojego profilu, które opisują Twoje zainteresowania. Możemy znaleźć inne osoby o podobnych zainteresowaniach i zasugerować przyjaźnie." -#: src/Module/Welcome.php:65 +#: src/Module/Welcome.php:51 msgid "Connecting" msgstr "Łączenie" -#: src/Module/Welcome.php:67 +#: src/Module/Welcome.php:53 msgid "Importing Emails" msgstr "Importowanie e-maili" -#: src/Module/Welcome.php:68 +#: src/Module/Welcome.php:54 msgid "" "Enter your email access information on your Connector Settings page if you " "wish to import and interact with friends or mailing lists from your email " "INBOX" msgstr "Wprowadź informacje dotyczące dostępu do poczty e-mail na stronie Ustawienia oprogramowania, jeśli chcesz importować i wchodzić w interakcje z przyjaciółmi lub listami adresowymi z poziomu konta e-mail INBOX" -#: src/Module/Welcome.php:69 +#: src/Module/Welcome.php:55 msgid "Go to Your Contacts Page" msgstr "Idź do strony z Twoimi kontaktami" -#: src/Module/Welcome.php:70 +#: src/Module/Welcome.php:56 msgid "" "Your Contacts page is your gateway to managing friendships and connecting " "with friends on other networks. Typically you enter their address or site " "URL in the Add New Contact dialog." msgstr "Strona Kontakty jest twoją bramą do zarządzania przyjaciółmi i łączenia się z przyjaciółmi w innych sieciach. Zazwyczaj podaje się adres lub adres URL strony w oknie dialogowym Dodaj nowy kontakt." -#: src/Module/Welcome.php:71 +#: src/Module/Welcome.php:57 msgid "Go to Your Site's Directory" msgstr "Idż do twojej strony" -#: src/Module/Welcome.php:72 +#: src/Module/Welcome.php:58 msgid "" "The Directory page lets you find other people in this network or other " "federated sites. Look for a Connect or Follow link on " "their profile page. Provide your own Identity Address if requested." msgstr "Strona Katalog umożliwia znalezienie innych osób w tej sieci lub innych witrynach stowarzyszonych. Poszukaj łącza Połącz lub Śledź na stronie profilu. Jeśli chcesz, podaj swój własny adres tożsamości." -#: src/Module/Welcome.php:73 +#: src/Module/Welcome.php:59 msgid "Finding New People" msgstr "Znajdowanie nowych osób" -#: src/Module/Welcome.php:74 +#: src/Module/Welcome.php:60 msgid "" "On the side panel of the Contacts page are several tools to find new " "friends. We can match people by interest, look up people by name or " @@ -11956,412 +11926,408 @@ msgid "" "hours." msgstr "Na bocznym panelu strony Kontaktów znajduje się kilka narzędzi do znajdowania nowych przyjaciół. Możemy dopasować osoby według zainteresowań, wyszukiwać osoby według nazwisk i zainteresowań oraz dostarczać sugestie oparte na relacjach sieciowych. Na zupełnie nowej stronie sugestie znajomych zwykle zaczynają być wypełniane w ciągu 24 godzin" -#: src/Module/Welcome.php:77 +#: src/Module/Welcome.php:63 msgid "Add Your Contacts To Circle" msgstr "" -#: src/Module/Welcome.php:78 +#: src/Module/Welcome.php:64 msgid "" "Once you have made some friends, organize them into private conversation " "circles from the sidebar of your Contacts page and then you can interact " "with each circle privately on your Network page." msgstr "" -#: src/Module/Welcome.php:80 +#: src/Module/Welcome.php:66 msgid "Why Aren't My Posts Public?" msgstr "Dlaczego moje wpisy nie są publiczne?" -#: src/Module/Welcome.php:81 +#: src/Module/Welcome.php:67 msgid "" "Friendica respects your privacy. By default, your posts will only show up to" " people you've added as friends. For more information, see the help section " "from the link above." msgstr "Friendica szanuje Twoją prywatność. Domyślnie Twoje wpisy będą wyświetlane tylko osobom, które dodałeś jako znajomi. Aby uzyskać więcej informacji, zobacz sekcję pomocy na powyższym łączu." -#: src/Module/Welcome.php:83 +#: src/Module/Welcome.php:69 msgid "Getting Help" msgstr "Otrzymaj pomoc" -#: src/Module/Welcome.php:84 +#: src/Module/Welcome.php:70 msgid "Go to the Help Section" msgstr "Przejdź do sekcji pomocy" -#: src/Module/Welcome.php:85 +#: src/Module/Welcome.php:71 msgid "" "Our help pages may be consulted for detail on other program" " features and resources." msgstr "Na naszych stronach pomocy można znaleźć szczegółowe informacje na temat innych funkcji programu i zasobów." -#: src/Navigation/Notifications/Factory/FormattedNavNotification.php:161 +#: src/Navigation/Notifications/Factory/FormattedNavNotification.php:147 msgid "{0} wants to follow you" msgstr "{0} chce Cię obserwować" -#: src/Navigation/Notifications/Factory/FormattedNavNotification.php:163 +#: src/Navigation/Notifications/Factory/FormattedNavNotification.php:149 msgid "{0} has started following you" msgstr "{0} zaczął Cię obserwować" -#: src/Navigation/Notifications/Factory/FormattedNotify.php:96 +#: src/Navigation/Notifications/Factory/FormattedNotify.php:82 #, php-format msgid "%s liked %s's post" msgstr "%s polubił wpis %s" -#: src/Navigation/Notifications/Factory/FormattedNotify.php:108 +#: src/Navigation/Notifications/Factory/FormattedNotify.php:94 #, php-format msgid "%s disliked %s's post" msgstr "%s nie lubi wpisów %s" -#: src/Navigation/Notifications/Factory/FormattedNotify.php:120 +#: src/Navigation/Notifications/Factory/FormattedNotify.php:106 #, php-format msgid "%s is attending %s's event" msgstr "%s uczestniczy w wydarzeniu %s" -#: src/Navigation/Notifications/Factory/FormattedNotify.php:132 +#: src/Navigation/Notifications/Factory/FormattedNotify.php:118 #, php-format msgid "%s is not attending %s's event" msgstr "%s nie uczestniczy w wydarzeniu %s" -#: src/Navigation/Notifications/Factory/FormattedNotify.php:144 +#: src/Navigation/Notifications/Factory/FormattedNotify.php:130 #, php-format msgid "%s may attending %s's event" msgstr "%s może uczestniczyć w wydarzeniu %s" -#: src/Navigation/Notifications/Factory/FormattedNotify.php:174 +#: src/Navigation/Notifications/Factory/FormattedNotify.php:160 #, php-format msgid "%s is now friends with %s" msgstr "%s jest teraz znajomym %s" -#: src/Navigation/Notifications/Factory/FormattedNotify.php:341 -#: src/Navigation/Notifications/Factory/FormattedNotify.php:379 +#: src/Navigation/Notifications/Factory/FormattedNotify.php:327 +#: src/Navigation/Notifications/Factory/FormattedNotify.php:365 #, php-format msgid "%s commented on %s's post" msgstr "%s skomentował wpis %s" -#: src/Navigation/Notifications/Factory/FormattedNotify.php:378 +#: src/Navigation/Notifications/Factory/FormattedNotify.php:364 #, php-format msgid "%s created a new post" msgstr "%s dodał nowy wpis" -#: src/Navigation/Notifications/Factory/Introduction.php:132 +#: src/Navigation/Notifications/Factory/Introduction.php:118 msgid "Friend Suggestion" msgstr "Propozycja znajomych" -#: src/Navigation/Notifications/Factory/Introduction.php:158 +#: src/Navigation/Notifications/Factory/Introduction.php:144 msgid "Friend/Connect Request" msgstr "Prośba o dodanie do przyjaciół/powiązanych" -#: src/Navigation/Notifications/Factory/Introduction.php:158 -msgid "New Follower" -msgstr "Nowy obserwujący" - -#: src/Navigation/Notifications/Factory/Notification.php:134 +#: src/Navigation/Notifications/Factory/Notification.php:120 #, php-format msgid "%1$s wants to follow you" msgstr "%1$s chce Cię obserwować" -#: src/Navigation/Notifications/Factory/Notification.php:136 +#: src/Navigation/Notifications/Factory/Notification.php:122 #, php-format msgid "%1$s has started following you" msgstr "%1$s zaczął Cię obserwować" -#: src/Navigation/Notifications/Factory/Notification.php:208 +#: src/Navigation/Notifications/Factory/Notification.php:194 #, php-format msgid "%1$s liked your comment on %2$s" msgstr "%1$s polubił Twój komentarz o %2$s" -#: src/Navigation/Notifications/Factory/Notification.php:211 +#: src/Navigation/Notifications/Factory/Notification.php:197 #, php-format msgid "%1$s liked your post %2$s" msgstr "%1$s polubił Twój wpis %2$s" -#: src/Navigation/Notifications/Factory/Notification.php:218 +#: src/Navigation/Notifications/Factory/Notification.php:204 #, php-format msgid "%1$s disliked your comment on %2$s" msgstr "%1$s nie lubi Twojego komentarza o %2$s" -#: src/Navigation/Notifications/Factory/Notification.php:221 +#: src/Navigation/Notifications/Factory/Notification.php:207 #, php-format msgid "%1$s disliked your post %2$s" msgstr "%1$s nie lubi Twojego wpisu %2$s" -#: src/Navigation/Notifications/Factory/Notification.php:228 +#: src/Navigation/Notifications/Factory/Notification.php:214 #, php-format msgid "%1$s shared your comment %2$s" msgstr "%1$s udostępnił Twój komentarz %2$s" -#: src/Navigation/Notifications/Factory/Notification.php:231 -#: src/Navigation/Notifications/Factory/Notification.php:316 +#: src/Navigation/Notifications/Factory/Notification.php:217 +#: src/Navigation/Notifications/Factory/Notification.php:302 #, php-format msgid "%1$s shared your post %2$s" msgstr "%1$s udostępnił Twój wpis %2$s" -#: src/Navigation/Notifications/Factory/Notification.php:235 -#: src/Navigation/Notifications/Factory/Notification.php:305 +#: src/Navigation/Notifications/Factory/Notification.php:221 +#: src/Navigation/Notifications/Factory/Notification.php:291 #, php-format msgid "%1$s shared the post %2$s from %3$s" msgstr "%1$s udostępnił wpis %2$s z %3$s" -#: src/Navigation/Notifications/Factory/Notification.php:237 -#: src/Navigation/Notifications/Factory/Notification.php:307 +#: src/Navigation/Notifications/Factory/Notification.php:223 +#: src/Navigation/Notifications/Factory/Notification.php:293 #, php-format msgid "%1$s shared a post from %3$s" msgstr "%1$s udostępnił wpis z %3$s" -#: src/Navigation/Notifications/Factory/Notification.php:239 -#: src/Navigation/Notifications/Factory/Notification.php:309 +#: src/Navigation/Notifications/Factory/Notification.php:225 +#: src/Navigation/Notifications/Factory/Notification.php:295 #, php-format msgid "%1$s shared the post %2$s" msgstr "%1$s udostępnił wpis %2$s" -#: src/Navigation/Notifications/Factory/Notification.php:241 -#: src/Navigation/Notifications/Factory/Notification.php:311 +#: src/Navigation/Notifications/Factory/Notification.php:227 +#: src/Navigation/Notifications/Factory/Notification.php:297 #, php-format msgid "%1$s shared a post" msgstr "%1$s udostępnił wpis" -#: src/Navigation/Notifications/Factory/Notification.php:249 +#: src/Navigation/Notifications/Factory/Notification.php:235 #, php-format msgid "%1$s wants to attend your event %2$s" msgstr "%1$s chce uczestniczyć w Twoim wydarzeniu %2$s" -#: src/Navigation/Notifications/Factory/Notification.php:256 +#: src/Navigation/Notifications/Factory/Notification.php:242 #, php-format msgid "%1$s does not want to attend your event %2$s" msgstr "%1$s nie chce uczestniczyć w Twoim wydarzeniu %2$s" -#: src/Navigation/Notifications/Factory/Notification.php:263 +#: src/Navigation/Notifications/Factory/Notification.php:249 #, php-format msgid "%1$s maybe wants to attend your event %2$s" msgstr "%1$s może chcieć wziąć udział w Twoim wydarzeniu %2$s" -#: src/Navigation/Notifications/Factory/Notification.php:270 +#: src/Navigation/Notifications/Factory/Notification.php:256 #, php-format msgid "%1$s tagged you on %2$s" msgstr "%1$s oznaczył Cię na %2$s" -#: src/Navigation/Notifications/Factory/Notification.php:274 +#: src/Navigation/Notifications/Factory/Notification.php:260 #, php-format msgid "%1$s replied to you on %2$s" msgstr "%1$s odpowiedział Ci na %2$s" -#: src/Navigation/Notifications/Factory/Notification.php:278 +#: src/Navigation/Notifications/Factory/Notification.php:264 #, php-format msgid "%1$s commented in your thread %2$s" msgstr "%1$s skomentował w Twoim wątku %2$s" -#: src/Navigation/Notifications/Factory/Notification.php:282 +#: src/Navigation/Notifications/Factory/Notification.php:268 #, php-format msgid "%1$s commented on your comment %2$s" msgstr "%1$s skomentował Twój komentarz %2$s" -#: src/Navigation/Notifications/Factory/Notification.php:289 +#: src/Navigation/Notifications/Factory/Notification.php:275 #, php-format msgid "%1$s commented in their thread %2$s" msgstr "%1$s skomentował w swoim wątku %2$s" -#: src/Navigation/Notifications/Factory/Notification.php:291 +#: src/Navigation/Notifications/Factory/Notification.php:277 #, php-format msgid "%1$s commented in their thread" msgstr "%1$s skomentował w swoim wątku" -#: src/Navigation/Notifications/Factory/Notification.php:293 +#: src/Navigation/Notifications/Factory/Notification.php:279 #, php-format msgid "%1$s commented in the thread %2$s from %3$s" msgstr "%1$s skomentował w wątku %2$s od %3$s" -#: src/Navigation/Notifications/Factory/Notification.php:295 +#: src/Navigation/Notifications/Factory/Notification.php:281 #, php-format msgid "%1$s commented in the thread from %3$s" msgstr "%1$s skomentował w wątku od %3$s" -#: src/Navigation/Notifications/Factory/Notification.php:300 +#: src/Navigation/Notifications/Factory/Notification.php:286 #, php-format msgid "%1$s commented on your thread %2$s" msgstr "%1$s skomentował Twój wątek %2$s" -#: src/Navigation/Notifications/Repository/Notify.php:225 -#: src/Navigation/Notifications/Repository/Notify.php:754 +#: src/Navigation/Notifications/Repository/Notify.php:211 +#: src/Navigation/Notifications/Repository/Notify.php:740 msgid "[Friendica:Notify]" msgstr "[Friendica: Powiadomienie]" -#: src/Navigation/Notifications/Repository/Notify.php:293 +#: src/Navigation/Notifications/Repository/Notify.php:279 #, php-format msgid "%s New mail received at %s" msgstr "%s Nowa poczta otrzymana o %s" -#: src/Navigation/Notifications/Repository/Notify.php:295 +#: src/Navigation/Notifications/Repository/Notify.php:281 #, php-format msgid "%1$s sent you a new private message at %2$s." msgstr "%1$s wysłał(-a) ci nową prywatną wiadomość na %2$s." -#: src/Navigation/Notifications/Repository/Notify.php:296 +#: src/Navigation/Notifications/Repository/Notify.php:282 msgid "a private message" msgstr "prywatna wiadomość" -#: src/Navigation/Notifications/Repository/Notify.php:296 +#: src/Navigation/Notifications/Repository/Notify.php:282 #, php-format msgid "%1$s sent you %2$s." msgstr "%1$s wysłał(-a) ci %2$s." -#: src/Navigation/Notifications/Repository/Notify.php:298 +#: src/Navigation/Notifications/Repository/Notify.php:284 #, php-format msgid "Please visit %s to view and/or reply to your private messages." msgstr "Odwiedź %s, aby zobaczyć i/lub odpowiedzieć na twoje prywatne wiadomości." -#: src/Navigation/Notifications/Repository/Notify.php:328 +#: src/Navigation/Notifications/Repository/Notify.php:314 #, php-format msgid "%1$s commented on %2$s's %3$s %4$s" msgstr "%1$s skomentował %2$s's %3$s %4$s" -#: src/Navigation/Notifications/Repository/Notify.php:333 +#: src/Navigation/Notifications/Repository/Notify.php:319 #, php-format msgid "%1$s commented on your %2$s %3$s" msgstr "%1$s skomentował Twój %2$s %3$s" -#: src/Navigation/Notifications/Repository/Notify.php:337 +#: src/Navigation/Notifications/Repository/Notify.php:323 #, php-format msgid "%1$s commented on their %2$s %3$s" msgstr "%1$s skomentował swój %2$s %3$s" -#: src/Navigation/Notifications/Repository/Notify.php:341 -#: src/Navigation/Notifications/Repository/Notify.php:788 +#: src/Navigation/Notifications/Repository/Notify.php:327 +#: src/Navigation/Notifications/Repository/Notify.php:774 #, php-format msgid "%1$s Comment to conversation #%2$d by %3$s" msgstr "%1$s Komentarz do rozmowy #%2$d autor %3$s" -#: src/Navigation/Notifications/Repository/Notify.php:343 +#: src/Navigation/Notifications/Repository/Notify.php:329 #, php-format msgid "%s commented on an item/conversation you have been following." msgstr "%s skomentował(-a) rozmowę którą śledzisz." -#: src/Navigation/Notifications/Repository/Notify.php:347 -#: src/Navigation/Notifications/Repository/Notify.php:362 -#: src/Navigation/Notifications/Repository/Notify.php:814 +#: src/Navigation/Notifications/Repository/Notify.php:333 +#: src/Navigation/Notifications/Repository/Notify.php:348 +#: src/Navigation/Notifications/Repository/Notify.php:800 #, php-format msgid "Please visit %s to view and/or reply to the conversation." msgstr "Odwiedź %s, aby zobaczyć i/lub odpowiedzieć na rozmowę." -#: src/Navigation/Notifications/Repository/Notify.php:354 +#: src/Navigation/Notifications/Repository/Notify.php:340 #, php-format msgid "%s %s posted to your profile wall" msgstr "%s %s opublikował na Twojej tablicy profilu" -#: src/Navigation/Notifications/Repository/Notify.php:356 +#: src/Navigation/Notifications/Repository/Notify.php:342 #, php-format msgid "%1$s posted to your profile wall at %2$s" msgstr "%1$s opublikował(-a) wpis na Twojej tablicy o %2$s" -#: src/Navigation/Notifications/Repository/Notify.php:357 +#: src/Navigation/Notifications/Repository/Notify.php:343 #, php-format msgid "%1$s posted to [url=%2$s]your wall[/url]" msgstr "%1$s opublikował(-a) na [url=%2$s]Twojej tablicy[/url]" -#: src/Navigation/Notifications/Repository/Notify.php:370 +#: src/Navigation/Notifications/Repository/Notify.php:356 #, php-format msgid "%s Introduction received" msgstr "%s Otrzymano wprowadzenie" -#: src/Navigation/Notifications/Repository/Notify.php:372 +#: src/Navigation/Notifications/Repository/Notify.php:358 #, php-format msgid "You've received an introduction from '%1$s' at %2$s" msgstr "Otrzymałeś wstęp od '%1$s' z %2$s" -#: src/Navigation/Notifications/Repository/Notify.php:373 +#: src/Navigation/Notifications/Repository/Notify.php:359 #, php-format msgid "You've received [url=%1$s]an introduction[/url] from %2$s." msgstr "Zostałeś [url=%1$s] przyjęty [/ url] z %2$s." -#: src/Navigation/Notifications/Repository/Notify.php:378 -#: src/Navigation/Notifications/Repository/Notify.php:424 +#: src/Navigation/Notifications/Repository/Notify.php:364 +#: src/Navigation/Notifications/Repository/Notify.php:410 #, php-format msgid "You may visit their profile at %s" msgstr "Możesz odwiedzić ich profil na stronie %s" -#: src/Navigation/Notifications/Repository/Notify.php:380 +#: src/Navigation/Notifications/Repository/Notify.php:366 #, php-format msgid "Please visit %s to approve or reject the introduction." msgstr "Odwiedż %s aby zatwierdzić lub odrzucić przedstawienie." -#: src/Navigation/Notifications/Repository/Notify.php:387 +#: src/Navigation/Notifications/Repository/Notify.php:373 #, php-format msgid "%s A new person is sharing with you" msgstr "%s Nowa osoba udostępnia Ci coś" -#: src/Navigation/Notifications/Repository/Notify.php:389 -#: src/Navigation/Notifications/Repository/Notify.php:390 +#: src/Navigation/Notifications/Repository/Notify.php:375 +#: src/Navigation/Notifications/Repository/Notify.php:376 #, php-format msgid "%1$s is sharing with you at %2$s" msgstr "%1$s dzieli się z tobą w %2$s" -#: src/Navigation/Notifications/Repository/Notify.php:397 +#: src/Navigation/Notifications/Repository/Notify.php:383 #, php-format msgid "%s You have a new follower" msgstr "%s Masz nowego obserwującego" -#: src/Navigation/Notifications/Repository/Notify.php:399 -#: src/Navigation/Notifications/Repository/Notify.php:400 +#: src/Navigation/Notifications/Repository/Notify.php:385 +#: src/Navigation/Notifications/Repository/Notify.php:386 #, php-format msgid "You have a new follower at %2$s : %1$s" msgstr "Masz nowego obserwatora na %2$s : %1$s" -#: src/Navigation/Notifications/Repository/Notify.php:413 +#: src/Navigation/Notifications/Repository/Notify.php:399 #, php-format msgid "%s Friend suggestion received" msgstr "%s Otrzymano sugestię znajomego" -#: src/Navigation/Notifications/Repository/Notify.php:415 +#: src/Navigation/Notifications/Repository/Notify.php:401 #, php-format msgid "You've received a friend suggestion from '%1$s' at %2$s" msgstr "Otrzymałeś od znajomego sugestię '%1$s' na %2$s" -#: src/Navigation/Notifications/Repository/Notify.php:416 +#: src/Navigation/Notifications/Repository/Notify.php:402 #, php-format msgid "" "You've received [url=%1$s]a friend suggestion[/url] for %2$s from %3$s." msgstr "Otrzymałeś [url=%1$s] sugestię znajomego [/url] dla %2$s od %3$s." -#: src/Navigation/Notifications/Repository/Notify.php:422 +#: src/Navigation/Notifications/Repository/Notify.php:408 msgid "Name:" msgstr "Imię:" -#: src/Navigation/Notifications/Repository/Notify.php:423 +#: src/Navigation/Notifications/Repository/Notify.php:409 msgid "Photo:" msgstr "Zdjęcie:" -#: src/Navigation/Notifications/Repository/Notify.php:426 +#: src/Navigation/Notifications/Repository/Notify.php:412 #, php-format msgid "Please visit %s to approve or reject the suggestion." msgstr "Odwiedź stronę %s, aby zatwierdzić lub odrzucić sugestię." -#: src/Navigation/Notifications/Repository/Notify.php:434 -#: src/Navigation/Notifications/Repository/Notify.php:449 +#: src/Navigation/Notifications/Repository/Notify.php:420 +#: src/Navigation/Notifications/Repository/Notify.php:435 #, php-format msgid "%s Connection accepted" msgstr "%s Połączenie zaakceptowane" -#: src/Navigation/Notifications/Repository/Notify.php:436 -#: src/Navigation/Notifications/Repository/Notify.php:451 +#: src/Navigation/Notifications/Repository/Notify.php:422 +#: src/Navigation/Notifications/Repository/Notify.php:437 #, php-format msgid "'%1$s' has accepted your connection request at %2$s" msgstr "'%1$s' zaakceptował Twoją prośbę o połączenie na %2$s" -#: src/Navigation/Notifications/Repository/Notify.php:437 -#: src/Navigation/Notifications/Repository/Notify.php:452 +#: src/Navigation/Notifications/Repository/Notify.php:423 +#: src/Navigation/Notifications/Repository/Notify.php:438 #, php-format msgid "%2$s has accepted your [url=%1$s]connection request[/url]." msgstr "%2$s zaakceptował twoją [url=%1$s] prośbę o połączenie [/url]." -#: src/Navigation/Notifications/Repository/Notify.php:442 +#: src/Navigation/Notifications/Repository/Notify.php:428 msgid "" "You are now mutual friends and may exchange status updates, photos, and " "email without restriction." msgstr "Jesteście teraz przyjaciółmi i możesz wymieniać aktualizacje stanu, zdjęcia i e-maile bez ograniczeń." -#: src/Navigation/Notifications/Repository/Notify.php:444 +#: src/Navigation/Notifications/Repository/Notify.php:430 #, php-format msgid "Please visit %s if you wish to make any changes to this relationship." msgstr "Odwiedź stronę %s jeśli chcesz wprowadzić zmiany w tym związku." -#: src/Navigation/Notifications/Repository/Notify.php:457 +#: src/Navigation/Notifications/Repository/Notify.php:443 #, php-format msgid "" "'%1$s' has chosen to accept you a fan, which restricts some forms of " @@ -12370,34 +12336,34 @@ msgid "" "automatically." msgstr "'%1$s' zdecydował się zaakceptować Cię jako fana, który ogranicza niektóre formy komunikacji - takie jak prywatne wiadomości i niektóre interakcje w profilu. Jeśli jest to strona celebrytów lub społeczności, ustawienia te zostały zastosowane automatycznie." -#: src/Navigation/Notifications/Repository/Notify.php:459 +#: src/Navigation/Notifications/Repository/Notify.php:445 #, php-format msgid "" "'%1$s' may choose to extend this into a two-way or more permissive " "relationship in the future." msgstr "'%1$s' możesz zdecydować o przedłużeniu tego w dwukierunkową lub bardziej ścisłą relację w przyszłości. " -#: src/Navigation/Notifications/Repository/Notify.php:461 +#: src/Navigation/Notifications/Repository/Notify.php:447 #, php-format msgid "Please visit %s if you wish to make any changes to this relationship." msgstr "Odwiedź stronę %s, jeśli chcesz wprowadzić zmiany w tej relacji." -#: src/Navigation/Notifications/Repository/Notify.php:471 +#: src/Navigation/Notifications/Repository/Notify.php:457 msgid "registration request" msgstr "prośba o rejestrację" -#: src/Navigation/Notifications/Repository/Notify.php:473 +#: src/Navigation/Notifications/Repository/Notify.php:459 #, php-format msgid "You've received a registration request from '%1$s' at %2$s" msgstr "Otrzymałeś wniosek rejestracyjny od '%1$s' na %2$s" -#: src/Navigation/Notifications/Repository/Notify.php:474 +#: src/Navigation/Notifications/Repository/Notify.php:460 #, php-format msgid "You've received a [url=%1$s]registration request[/url] from %2$s." msgstr "Otrzymałeś [url=%1$s] żądanie rejestracji [/url] od %2$s." -#: src/Navigation/Notifications/Repository/Notify.php:479 -#: src/Navigation/Notifications/Repository/Notify.php:500 +#: src/Navigation/Notifications/Repository/Notify.php:465 +#: src/Navigation/Notifications/Repository/Notify.php:486 #, php-format msgid "" "Display Name:\t%s\n" @@ -12405,288 +12371,288 @@ msgid "" "Login Name:\t%s (%s)" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:485 +#: src/Navigation/Notifications/Repository/Notify.php:471 #, php-format msgid "Please visit %s to approve or reject the request." msgstr "Odwiedź stronę %s, aby zatwierdzić lub odrzucić wniosek." -#: src/Navigation/Notifications/Repository/Notify.php:492 +#: src/Navigation/Notifications/Repository/Notify.php:478 msgid "new registration" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:494 +#: src/Navigation/Notifications/Repository/Notify.php:480 #, php-format msgid "You've received a new registration from '%1$s' at %2$s" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:495 +#: src/Navigation/Notifications/Repository/Notify.php:481 #, php-format msgid "You've received a [url=%1$s]new registration[/url] from %2$s." msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:506 +#: src/Navigation/Notifications/Repository/Notify.php:492 #, php-format msgid "Please visit %s to have a look at the new registration." msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:782 +#: src/Navigation/Notifications/Repository/Notify.php:768 #, php-format msgid "%s %s tagged you" msgstr "%s %s oznaczył Cię" -#: src/Navigation/Notifications/Repository/Notify.php:785 +#: src/Navigation/Notifications/Repository/Notify.php:771 #, php-format msgid "%s %s shared a new post" msgstr "%s %s udostępnił nowy wpis" -#: src/Navigation/Notifications/Repository/Notify.php:793 +#: src/Navigation/Notifications/Repository/Notify.php:779 #, php-format msgid "%1$s %2$s liked your post #%3$d" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:796 +#: src/Navigation/Notifications/Repository/Notify.php:782 #, php-format msgid "%1$s %2$s liked your comment on #%3$d" msgstr "" -#: src/Object/EMail/ItemCCEMail.php:42 +#: src/Object/EMail/ItemCCEMail.php:28 #, php-format msgid "" "This message was sent to you by %s, a member of the Friendica social " "network." msgstr "Wiadomość została wysłana do ciebie od %s, członka sieci społecznościowej Friendica." -#: src/Object/EMail/ItemCCEMail.php:44 +#: src/Object/EMail/ItemCCEMail.php:30 #, php-format msgid "You may visit them online at %s" msgstr "Możesz odwiedzić ich online pod adresem %s" -#: src/Object/EMail/ItemCCEMail.php:45 +#: src/Object/EMail/ItemCCEMail.php:31 msgid "" "Please contact the sender by replying to this post if you do not wish to " "receive these messages." msgstr "Jeśli nie chcesz otrzymywać tych wiadomości kontaktuj się z nadawcą odpowiadając na ten wpis." -#: src/Object/EMail/ItemCCEMail.php:49 +#: src/Object/EMail/ItemCCEMail.php:35 #, php-format msgid "%s posted an update." msgstr "%s zaktualizował wpis." -#: src/Object/Post.php:138 +#: src/Object/Post.php:124 msgid "Private Message" msgstr "Wiadomość prywatna" -#: src/Object/Post.php:142 +#: src/Object/Post.php:128 msgid "Public Message" msgstr "Wiadomość publiczna" -#: src/Object/Post.php:146 +#: src/Object/Post.php:132 msgid "Unlisted Message" msgstr "Wiadomość niepubliczna" -#: src/Object/Post.php:182 +#: src/Object/Post.php:168 msgid "This entry was edited" msgstr "Ten wpis został zedytowany" -#: src/Object/Post.php:210 +#: src/Object/Post.php:196 msgid "Connector Message" msgstr "Komunikat łącznika" -#: src/Object/Post.php:239 src/Object/Post.php:241 +#: src/Object/Post.php:225 src/Object/Post.php:227 msgid "Edit" msgstr "Edytuj" -#: src/Object/Post.php:275 +#: src/Object/Post.php:261 msgid "Delete globally" msgstr "Usuń globalnie" -#: src/Object/Post.php:275 +#: src/Object/Post.php:261 msgid "Remove locally" msgstr "Usuń lokalnie" -#: src/Object/Post.php:282 +#: src/Object/Post.php:268 #, php-format msgid "Block %s" msgstr "Zablokuj %s" -#: src/Object/Post.php:287 +#: src/Object/Post.php:273 #, php-format msgid "Ignore %s" msgstr "" -#: src/Object/Post.php:292 +#: src/Object/Post.php:278 #, php-format msgid "Collapse %s" msgstr "" -#: src/Object/Post.php:296 +#: src/Object/Post.php:282 msgid "Report post" msgstr "" -#: src/Object/Post.php:307 +#: src/Object/Post.php:293 msgid "Save to folder" msgstr "Zapisz w katalogu" -#: src/Object/Post.php:347 +#: src/Object/Post.php:333 msgid "I will attend" msgstr "Będę uczestniczyć" -#: src/Object/Post.php:347 +#: src/Object/Post.php:333 msgid "I will not attend" msgstr "Nie będę uczestniczyć" -#: src/Object/Post.php:347 +#: src/Object/Post.php:333 msgid "I might attend" msgstr "Mogę wziąć udział" -#: src/Object/Post.php:394 +#: src/Object/Post.php:380 msgid "Ignore thread" msgstr "Zignoruj ​​wątek" -#: src/Object/Post.php:395 +#: src/Object/Post.php:381 msgid "Unignore thread" msgstr "Przestań ignorować ​​wątek" -#: src/Object/Post.php:396 +#: src/Object/Post.php:382 msgid "Toggle ignore status" msgstr "Przełącz stan ignorowania" -#: src/Object/Post.php:406 +#: src/Object/Post.php:392 msgid "Add star" msgstr "Dodaj gwiazdkę" -#: src/Object/Post.php:407 +#: src/Object/Post.php:393 msgid "Remove star" msgstr "Usuń gwiazdkę" -#: src/Object/Post.php:408 +#: src/Object/Post.php:394 msgid "Toggle star status" msgstr "Przełącz stan gwiazdy" -#: src/Object/Post.php:419 +#: src/Object/Post.php:405 msgid "Pin" msgstr "Przypnij" -#: src/Object/Post.php:420 +#: src/Object/Post.php:406 msgid "Unpin" msgstr "Odepnij" -#: src/Object/Post.php:421 +#: src/Object/Post.php:407 msgid "Toggle pin status" msgstr "Przełącz stan podpięcia" -#: src/Object/Post.php:424 +#: src/Object/Post.php:410 msgid "Pinned" msgstr "Przypięty" -#: src/Object/Post.php:429 +#: src/Object/Post.php:415 msgid "Add tag" msgstr "Dodaj znacznik" -#: src/Object/Post.php:444 +#: src/Object/Post.php:430 msgid "Quote share this" msgstr "Cytuj udostępnij to" -#: src/Object/Post.php:444 +#: src/Object/Post.php:430 msgid "Quote Share" msgstr "Udostępnienie cytatu" -#: src/Object/Post.php:447 +#: src/Object/Post.php:433 msgid "Reshare this" msgstr "Udostępnij to dalej" -#: src/Object/Post.php:447 +#: src/Object/Post.php:433 msgid "Reshare" msgstr "Udostępnij dalej" -#: src/Object/Post.php:448 +#: src/Object/Post.php:434 msgid "Cancel your Reshare" msgstr "Anuluj swoje dalsze udostępnianie" -#: src/Object/Post.php:448 +#: src/Object/Post.php:434 msgid "Unshare" msgstr "Przestań udostępniać" -#: src/Object/Post.php:492 +#: src/Object/Post.php:478 #, php-format msgid "%s (Received %s)" msgstr "%s (Otrzymano %s)" -#: src/Object/Post.php:498 +#: src/Object/Post.php:484 msgid "Comment this item on your system" msgstr "Skomentuj ten element w swoim systemie" -#: src/Object/Post.php:498 +#: src/Object/Post.php:484 msgid "Remote comment" msgstr "Zdalny komentarz" -#: src/Object/Post.php:520 +#: src/Object/Post.php:506 msgid "Share via ..." msgstr "Udostępnij poprzez..." -#: src/Object/Post.php:520 +#: src/Object/Post.php:506 msgid "Share via external services" msgstr "Udostępnij za pośrednictwem usług zewnętrznych" -#: src/Object/Post.php:527 +#: src/Object/Post.php:513 msgid "Unknown parent" msgstr "" -#: src/Object/Post.php:531 +#: src/Object/Post.php:517 #, php-format msgid "in reply to %s" msgstr "" -#: src/Object/Post.php:533 +#: src/Object/Post.php:519 msgid "Parent is probably private or not federated." msgstr "" -#: src/Object/Post.php:557 +#: src/Object/Post.php:543 msgid "to" msgstr "do" -#: src/Object/Post.php:558 +#: src/Object/Post.php:544 msgid "via" msgstr "przez" -#: src/Object/Post.php:559 +#: src/Object/Post.php:545 msgid "Wall-to-Wall" msgstr "Tablica-w-Tablicę" -#: src/Object/Post.php:560 +#: src/Object/Post.php:546 msgid "via Wall-To-Wall:" msgstr "przez Tablica-w-Tablicę:" -#: src/Object/Post.php:613 +#: src/Object/Post.php:599 #, php-format msgid "Reply to %s" msgstr "Odpowiedź %s" -#: src/Object/Post.php:616 +#: src/Object/Post.php:602 msgid "More" msgstr "Więcej" -#: src/Object/Post.php:635 +#: src/Object/Post.php:621 msgid "Notifier task is pending" msgstr "Zadanie Notifier jest w toku" -#: src/Object/Post.php:636 +#: src/Object/Post.php:622 msgid "Delivery to remote servers is pending" msgstr "Trwa przesyłanie do serwerów zdalnych" -#: src/Object/Post.php:637 +#: src/Object/Post.php:623 msgid "Delivery to remote servers is underway" msgstr "Trwa dostawa do serwerów zdalnych" -#: src/Object/Post.php:638 +#: src/Object/Post.php:624 msgid "Delivery to remote servers is mostly done" msgstr "Dostawa do zdalnych serwerów jest w większości wykonywana" -#: src/Object/Post.php:639 +#: src/Object/Post.php:625 msgid "Delivery to remote servers is done" msgstr "Trwa dostarczanie do zdalnych serwerów" -#: src/Object/Post.php:661 +#: src/Object/Post.php:647 #, php-format msgid "%d comment" msgid_plural "%d comments" @@ -12695,485 +12661,467 @@ msgstr[1] "%d komentarze" msgstr[2] "%d komentarzy" msgstr[3] "%d komentarzy" -#: src/Object/Post.php:662 +#: src/Object/Post.php:648 msgid "Show more" msgstr "Pokaż więcej" -#: src/Object/Post.php:663 +#: src/Object/Post.php:649 msgid "Show fewer" msgstr "Pokaż mniej" -#: src/Object/Post.php:700 +#: src/Object/Post.php:686 #, php-format msgid "Reshared by: %s" msgstr "" -#: src/Object/Post.php:705 +#: src/Object/Post.php:691 #, php-format msgid "Viewed by: %s" msgstr "" -#: src/Object/Post.php:710 +#: src/Object/Post.php:696 #, php-format msgid "Read by: %s" msgstr "" -#: src/Object/Post.php:715 +#: src/Object/Post.php:701 #, php-format msgid "Liked by: %s" msgstr "" -#: src/Object/Post.php:720 +#: src/Object/Post.php:706 #, php-format msgid "Disliked by: %s" msgstr "" -#: src/Object/Post.php:725 +#: src/Object/Post.php:711 #, php-format msgid "Attended by: %s" msgstr "" -#: src/Object/Post.php:730 +#: src/Object/Post.php:716 #, php-format msgid "Maybe attended by: %s" msgstr "" -#: src/Object/Post.php:735 +#: src/Object/Post.php:721 #, php-format msgid "Not attended by: %s" msgstr "" -#: src/Object/Post.php:740 +#: src/Object/Post.php:726 #, php-format msgid "Commented by: %s" msgstr "" -#: src/Object/Post.php:745 +#: src/Object/Post.php:731 #, php-format msgid "Reacted with %s by: %s" msgstr "" -#: src/Object/Post.php:768 +#: src/Object/Post.php:754 #, php-format msgid "Quote shared by: %s" msgstr "" -#: src/Protocol/ActivityPub/Receiver.php:571 +#: src/Protocol/ActivityPub/Receiver.php:557 msgid "Chat" msgstr "" -#: src/Protocol/Delivery.php:544 +#: src/Protocol/Delivery.php:530 msgid "(no subject)" msgstr "(bez tematu)" -#: src/Protocol/OStatus.php:1392 -#, php-format -msgid "%s is now following %s." -msgstr "%s zaczął(-ęła) obserwować %s." - -#: src/Protocol/OStatus.php:1393 -msgid "following" -msgstr "następujący" - -#: src/Protocol/OStatus.php:1396 -#, php-format -msgid "%s stopped following %s." -msgstr "%s przestał(a) obserwować %s." - -#: src/Protocol/OStatus.php:1397 -msgid "stopped following" -msgstr "przestał śledzić" - -#: src/Render/FriendicaSmartyEngine.php:56 +#: src/Render/FriendicaSmartyEngine.php:42 #, php-format msgid "The folder %s must be writable by webserver." msgstr "" -#: src/Security/Authentication.php:214 +#: src/Security/Authentication.php:200 msgid "Login failed." msgstr "Logowanie nieudane." -#: src/Security/Authentication.php:259 +#: src/Security/Authentication.php:245 msgid "Login failed. Please check your credentials." msgstr "Logowanie nie powiodło się. Sprawdź swoje dane uwierzytelniające." -#: src/Security/Authentication.php:373 +#: src/Security/Authentication.php:359 #, php-format msgid "Welcome %s" msgstr "Witaj %s" -#: src/Security/Authentication.php:374 +#: src/Security/Authentication.php:360 msgid "Please upload a profile photo." msgstr "Proszę dodać zdjęcie profilowe." -#: src/Security/OpenWebAuth.php:163 +#: src/Security/OpenWebAuth.php:149 #, php-format msgid "OpenWebAuth: %1$s welcomes %2$s" msgstr "OpenWebAuth: %1$s wita %2$s" -#: src/Util/EMailer/MailBuilder.php:260 +#: src/Util/EMailer/MailBuilder.php:246 msgid "Friendica Notification" msgstr "Powiadomienia Friendica" -#: src/Util/EMailer/NotifyMailBuilder.php:78 -#: src/Util/EMailer/SystemMailBuilder.php:54 +#: src/Util/EMailer/NotifyMailBuilder.php:64 +#: src/Util/EMailer/SystemMailBuilder.php:40 #, php-format msgid "%1$s, %2$s Administrator" msgstr "%1$s, %2$s Administrator" -#: src/Util/EMailer/NotifyMailBuilder.php:80 -#: src/Util/EMailer/SystemMailBuilder.php:56 +#: src/Util/EMailer/NotifyMailBuilder.php:66 +#: src/Util/EMailer/SystemMailBuilder.php:42 #, php-format msgid "%s Administrator" msgstr "%s Administrator" -#: src/Util/EMailer/NotifyMailBuilder.php:193 -#: src/Util/EMailer/NotifyMailBuilder.php:217 -#: src/Util/EMailer/SystemMailBuilder.php:101 -#: src/Util/EMailer/SystemMailBuilder.php:118 +#: src/Util/EMailer/NotifyMailBuilder.php:179 +#: src/Util/EMailer/NotifyMailBuilder.php:203 +#: src/Util/EMailer/SystemMailBuilder.php:87 +#: src/Util/EMailer/SystemMailBuilder.php:104 msgid "thanks" msgstr "dziękuję" -#: src/Util/Temporal.php:172 +#: src/Util/Temporal.php:158 msgid "YYYY-MM-DD or MM-DD" msgstr "RRRR-MM-DD lub MM-DD" -#: src/Util/Temporal.php:280 +#: src/Util/Temporal.php:266 #, php-format msgid "Time zone: %s Change in Settings" msgstr "Strefa czasowa: %s Zmień w ustawieniach" -#: src/Util/Temporal.php:320 src/Util/Temporal.php:329 +#: src/Util/Temporal.php:306 src/Util/Temporal.php:315 msgid "never" msgstr "nigdy" -#: src/Util/Temporal.php:343 +#: src/Util/Temporal.php:329 msgid "less than a second ago" msgstr "mniej niż sekundę temu" -#: src/Util/Temporal.php:352 +#: src/Util/Temporal.php:338 msgid "year" msgstr "rok" -#: src/Util/Temporal.php:352 +#: src/Util/Temporal.php:338 msgid "years" msgstr "lata" -#: src/Util/Temporal.php:353 +#: src/Util/Temporal.php:339 msgid "months" msgstr "miesiące" -#: src/Util/Temporal.php:354 +#: src/Util/Temporal.php:340 msgid "weeks" msgstr "tygodnie" -#: src/Util/Temporal.php:355 +#: src/Util/Temporal.php:341 msgid "days" msgstr "dni" -#: src/Util/Temporal.php:356 +#: src/Util/Temporal.php:342 msgid "hour" msgstr "godzina" -#: src/Util/Temporal.php:356 +#: src/Util/Temporal.php:342 msgid "hours" msgstr "godziny" -#: src/Util/Temporal.php:357 +#: src/Util/Temporal.php:343 msgid "minute" msgstr "minuta" -#: src/Util/Temporal.php:357 +#: src/Util/Temporal.php:343 msgid "minutes" msgstr "minut" -#: src/Util/Temporal.php:358 +#: src/Util/Temporal.php:344 msgid "second" msgstr "sekunda" -#: src/Util/Temporal.php:358 +#: src/Util/Temporal.php:344 msgid "seconds" msgstr "sekundy" -#: src/Util/Temporal.php:367 +#: src/Util/Temporal.php:353 #, php-format msgid "in %1$d %2$s" msgstr "w %1$d %2$s" -#: src/Util/Temporal.php:370 +#: src/Util/Temporal.php:356 #, php-format msgid "%1$d %2$s ago" msgstr "%1$d %2$s temu" -#: src/Worker/PushSubscription.php:110 +#: src/Worker/PushSubscription.php:96 msgid "Notification from Friendica" msgstr "Powiadomienia z Friendica" -#: src/Worker/PushSubscription.php:111 +#: src/Worker/PushSubscription.php:97 msgid "Empty Post" msgstr "Pusty wpis" -#: view/theme/duepuntozero/config.php:68 +#: view/theme/duepuntozero/config.php:56 msgid "default" msgstr "standardowe" -#: view/theme/duepuntozero/config.php:69 +#: view/theme/duepuntozero/config.php:57 msgid "greenzero" msgstr "zielone zero" -#: view/theme/duepuntozero/config.php:70 +#: view/theme/duepuntozero/config.php:58 msgid "purplezero" msgstr "fioletowe zero" -#: view/theme/duepuntozero/config.php:71 +#: view/theme/duepuntozero/config.php:59 msgid "easterbunny" msgstr "zajączek wielkanocny" -#: view/theme/duepuntozero/config.php:72 +#: view/theme/duepuntozero/config.php:60 msgid "darkzero" msgstr "ciemne zero" -#: view/theme/duepuntozero/config.php:73 +#: view/theme/duepuntozero/config.php:61 msgid "comix" msgstr "comix" -#: view/theme/duepuntozero/config.php:74 +#: view/theme/duepuntozero/config.php:62 msgid "slackr" msgstr "luźny" -#: view/theme/duepuntozero/config.php:87 +#: view/theme/duepuntozero/config.php:75 msgid "Variations" msgstr "Wariacje" -#: view/theme/frio/config.php:146 +#: view/theme/frio/config.php:134 msgid "Note" msgstr "Uwaga" -#: view/theme/frio/config.php:146 +#: view/theme/frio/config.php:134 msgid "Check image permissions if all users are allowed to see the image" msgstr "Sprawdź uprawnienia do obrazu, jeśli wszyscy użytkownicy mogą oglądać obraz" -#: view/theme/frio/config.php:152 +#: view/theme/frio/config.php:140 msgid "Appearance" msgstr "" -#: view/theme/frio/config.php:153 +#: view/theme/frio/config.php:141 msgid "Accent color" msgstr "" -#: view/theme/frio/config.php:153 +#: view/theme/frio/config.php:141 msgid "Blue" msgstr "Niebieski" -#: view/theme/frio/config.php:153 +#: view/theme/frio/config.php:141 msgid "Red" msgstr "Czerwony" -#: view/theme/frio/config.php:153 +#: view/theme/frio/config.php:141 msgid "Purple" msgstr "Purpurowy" -#: view/theme/frio/config.php:153 +#: view/theme/frio/config.php:141 msgid "Green" msgstr "Zielony" -#: view/theme/frio/config.php:153 +#: view/theme/frio/config.php:141 msgid "Pink" msgstr "Różowy" -#: view/theme/frio/config.php:154 +#: view/theme/frio/config.php:142 msgid "Copy or paste schemestring" msgstr "Skopiuj lub wklej ciąg schematu" -#: view/theme/frio/config.php:154 +#: view/theme/frio/config.php:142 msgid "" "You can copy this string to share your theme with others. Pasting here " "applies the schemestring" msgstr "Możesz skopiować ten ciąg, aby podzielić się swoim motywem z innymi. Wklejanie tutaj stosuje schemat" -#: view/theme/frio/config.php:155 +#: view/theme/frio/config.php:143 msgid "Navigation bar background color" msgstr "Kolor tła paska nawigacyjnego" -#: view/theme/frio/config.php:156 +#: view/theme/frio/config.php:144 msgid "Navigation bar icon color " msgstr "Kolor ikon na pasku nawigacyjnym " -#: view/theme/frio/config.php:157 +#: view/theme/frio/config.php:145 msgid "Link color" msgstr "Kolor odnośników" -#: view/theme/frio/config.php:158 +#: view/theme/frio/config.php:146 msgid "Set the background color" msgstr "Ustaw kolor tła" -#: view/theme/frio/config.php:159 +#: view/theme/frio/config.php:147 msgid "Content background opacity" msgstr "Nieprzezroczystość tła treści" -#: view/theme/frio/config.php:160 +#: view/theme/frio/config.php:148 msgid "Set the background image" msgstr "Ustaw obraz tła" -#: view/theme/frio/config.php:161 +#: view/theme/frio/config.php:149 msgid "Background image style" msgstr "Styl obrazu tła" -#: view/theme/frio/config.php:164 +#: view/theme/frio/config.php:152 msgid "Always open Compose page" msgstr "" -#: view/theme/frio/config.php:164 +#: view/theme/frio/config.php:152 msgid "" "The New Post button always open the 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:168 +#: view/theme/frio/config.php:156 msgid "Login page background image" msgstr "Obraz tła strony logowania" -#: view/theme/frio/config.php:172 +#: view/theme/frio/config.php:160 msgid "Login page background color" msgstr "Kolor tła strony logowania" -#: view/theme/frio/config.php:172 +#: view/theme/frio/config.php:160 msgid "Leave background image and color empty for theme defaults" msgstr "Pozostaw pusty obraz tła i kolor dla domyślnych ustawień motywu" -#: view/theme/frio/php/Image.php:39 +#: view/theme/frio/php/Image.php:27 msgid "Top Banner" msgstr "Górny baner" -#: view/theme/frio/php/Image.php:39 +#: view/theme/frio/php/Image.php:27 msgid "" "Resize image to the width of the screen and show background color below on " "long pages." msgstr "Zmień rozmiar obrazu do szerokości ekranu i pokaż kolor tła poniżej na długich stronach." -#: view/theme/frio/php/Image.php:40 +#: view/theme/frio/php/Image.php:28 msgid "Full screen" msgstr "Pełny ekran" -#: view/theme/frio/php/Image.php:40 +#: view/theme/frio/php/Image.php:28 msgid "" "Resize image to fill entire screen, clipping either the right or the bottom." msgstr "Zmień rozmiar obrazu, aby wypełnić cały ekran, przycinając prawy lub dolny." -#: view/theme/frio/php/Image.php:41 +#: view/theme/frio/php/Image.php:29 msgid "Single row mosaic" msgstr "Mozaika jednorzędowa" -#: view/theme/frio/php/Image.php:41 +#: view/theme/frio/php/Image.php:29 msgid "" "Resize image to repeat it on a single row, either vertical or horizontal." msgstr "Zmień rozmiar obrazu, aby powtórzyć go w jednym wierszu, w pionie lub w poziomie." -#: view/theme/frio/php/Image.php:42 +#: view/theme/frio/php/Image.php:30 msgid "Mosaic" msgstr "Mozaika" -#: view/theme/frio/php/Image.php:42 +#: view/theme/frio/php/Image.php:30 msgid "Repeat image to fill the screen." msgstr "Powtórz obraz, aby wypełnić ekran." -#: view/theme/frio/php/default.php:82 view/theme/frio/php/standard.php:40 +#: view/theme/frio/php/default.php:70 view/theme/frio/php/standard.php:28 msgid "Skip to main content" msgstr "Przejdź do głównej zawartości" -#: view/theme/frio/php/default.php:153 view/theme/frio/php/standard.php:75 +#: view/theme/frio/php/default.php:141 view/theme/frio/php/standard.php:63 msgid "Back to top" msgstr "Powrót do góry" -#: view/theme/frio/php/scheme.php:105 +#: view/theme/frio/php/scheme.php:93 msgid "Light" msgstr "" -#: view/theme/frio/php/scheme.php:106 +#: view/theme/frio/php/scheme.php:94 msgid "Dark" msgstr "" -#: view/theme/frio/php/scheme.php:107 +#: view/theme/frio/php/scheme.php:95 msgid "Black" msgstr "" -#: view/theme/frio/php/scheme.php:118 +#: view/theme/frio/php/scheme.php:106 msgid "Custom" msgstr "Własne" -#: view/theme/frio/theme.php:214 +#: view/theme/frio/theme.php:202 msgid "Guest" msgstr "Gość" -#: view/theme/frio/theme.php:217 +#: view/theme/frio/theme.php:205 msgid "Visitor" msgstr "Odwiedzający" -#: view/theme/quattro/config.php:89 +#: view/theme/quattro/config.php:77 msgid "Alignment" msgstr "Wyrównanie" -#: view/theme/quattro/config.php:89 +#: view/theme/quattro/config.php:77 msgid "Left" msgstr "Do lewej" -#: view/theme/quattro/config.php:89 +#: view/theme/quattro/config.php:77 msgid "Center" msgstr "Do środka" -#: view/theme/quattro/config.php:90 +#: view/theme/quattro/config.php:78 msgid "Color scheme" msgstr "Schemat kolorów" -#: view/theme/quattro/config.php:91 +#: view/theme/quattro/config.php:79 msgid "Posts font size" msgstr "Rozmiar czcionki wpisów" -#: view/theme/quattro/config.php:92 +#: view/theme/quattro/config.php:80 msgid "Textareas font size" msgstr "Rozmiar czcionki obszarów tekstowych" -#: view/theme/vier/config.php:91 +#: view/theme/vier/config.php:79 msgid "Comma separated list of helper groups" msgstr "" -#: view/theme/vier/config.php:131 +#: view/theme/vier/config.php:119 msgid "don't show" msgstr "nie pokazuj" -#: view/theme/vier/config.php:131 +#: view/theme/vier/config.php:119 msgid "show" msgstr "pokazuj" -#: view/theme/vier/config.php:137 +#: view/theme/vier/config.php:125 msgid "Set style" msgstr "Ustaw styl" -#: view/theme/vier/config.php:138 +#: view/theme/vier/config.php:126 msgid "Community Pages" msgstr "Strony społeczności" -#: view/theme/vier/config.php:139 view/theme/vier/theme.php:148 +#: view/theme/vier/config.php:127 view/theme/vier/theme.php:136 msgid "Community Profiles" msgstr "Profile społeczności" -#: view/theme/vier/config.php:140 +#: view/theme/vier/config.php:128 msgid "Help or @NewHere ?" msgstr "Pomóż lub @NowyTutaj ?" -#: view/theme/vier/config.php:141 view/theme/vier/theme.php:319 +#: view/theme/vier/config.php:129 view/theme/vier/theme.php:307 msgid "Connect Services" msgstr "Połączone serwisy" -#: view/theme/vier/config.php:142 +#: view/theme/vier/config.php:130 msgid "Find Friends" msgstr "Znajdź znajomych" -#: view/theme/vier/config.php:143 view/theme/vier/theme.php:175 +#: view/theme/vier/config.php:131 view/theme/vier/theme.php:163 msgid "Last users" msgstr "Ostatni użytkownicy" -#: view/theme/vier/theme.php:234 +#: view/theme/vier/theme.php:222 msgid "Quick Start" msgstr "Szybki start" diff --git a/view/lang/pl/strings.php b/view/lang/pl/strings.php index 562b084f09..05edd2abb1 100644 --- a/view/lang/pl/strings.php +++ b/view/lang/pl/strings.php @@ -709,7 +709,6 @@ $a->strings['An author or name was not found.'] = 'Autor lub nazwa nie zostało $a->strings['No browser URL could be matched to this address.'] = 'Przeglądarka WWW nie może odnaleźć podanego adresu'; $a->strings['Unable to match @-style Identity Address with a known protocol or email contact.'] = 'Nie można dopasować @-stylu Adres identyfikacyjny ze znanym protokołem lub kontaktem e-mail.'; $a->strings['Use mailto: in front of address to force email check.'] = 'Użyj mailto: przed adresem, aby wymusić sprawdzanie poczty e-mail.'; -$a->strings['The profile address specified belongs to a network which has been disabled on this site.'] = 'Określony adres profilu należy do sieci, która została wyłączona na tej stronie.'; $a->strings['Limited profile. This person will be unable to receive direct/personal notifications from you.'] = 'Profil ograniczony. Ta osoba będzie niezdolna do odbierania osobistych powiadomień od ciebie.'; $a->strings['Unable to retrieve contact information.'] = 'Nie można otrzymać informacji kontaktowych'; $a->strings['Starts:'] = 'Rozpoczęcie:'; @@ -734,7 +733,6 @@ $a->strings['Show map'] = 'Pokaż mapę'; $a->strings['Hide map'] = 'Ukryj mapę'; $a->strings['%s\'s birthday'] = 'Urodziny %s'; $a->strings['Happy Birthday %s'] = 'Wszystkiego najlepszego %s'; -$a->strings['Detected languages in this post:\n%s'] = 'Wykryte języki w tym wpisie:\n%s'; $a->strings['activity'] = 'aktywność'; $a->strings['comment'] = 'komentarz'; $a->strings['post'] = 'wpis'; @@ -1035,8 +1033,6 @@ $a->strings['Posts per user on community page'] = 'Lista wpisów użytkownika na $a->strings['Enable Mail support'] = 'Włącz obsługę maili'; $a->strings['Enable built-in mail support to poll IMAP folders and to reply via mail.'] = 'Włącz wbudowaną obsługę poczty, aby odpytywać katalogi IMAP i odpowiadać pocztą.'; $a->strings['Mail support can\'t be enabled because the PHP IMAP module is not installed.'] = 'Nie można włączyć obsługi poczty, ponieważ moduł PHP IMAP nie jest zainstalowany.'; -$a->strings['Enable OStatus support'] = 'Włącz obsługę OStatus'; -$a->strings['Enable built-in OStatus (StatusNet, GNU Social etc.) compatibility. All communications in OStatus are public.'] = 'Włącz wbudowaną kompatybilność z OStatus (StatusNet, GNU Social itp.). Wszystkie komunikaty w OSstatus są publiczne.'; $a->strings['Diaspora support can\'t be enabled because Friendica was installed into a sub directory.'] = 'Obsługa Diaspory nie może być włączona, ponieważ Friendica została zainstalowana w podkatalogu.'; $a->strings['Enable Diaspora support'] = 'Włączyć obsługę Diaspory'; $a->strings['Enable built-in Diaspora network compatibility for communicating with diaspora servers.'] = 'Włącz wbudowaną kompatybilność sieci Diaspora do komunikacji z serwerami diaspory.'; @@ -1078,7 +1074,6 @@ $a->strings['When the database cleanup is enabled, this defines the days after w $a->strings['Lifespan of unclaimed items'] = 'Żywotność nieodebranych przedmiotów'; $a->strings['When the database cleanup is enabled, this defines the days after which unclaimed remote items (mostly content from the relay) will be deleted. Default value is 90 days. Defaults to the general lifespan value of remote items if set to 0.'] = '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.'; $a->strings['Lifespan of raw conversation data'] = 'Trwałość nieprzetworzonych danych konwersacji'; -$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.'] = '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.'; $a->strings['Maximum numbers of comments per post'] = 'Maksymalna liczba komentarzy na wpis'; $a->strings['How much comments should be shown for each post? Default value is 100.'] = 'Ile komentarzy powinno być wyświetlanych dla każdego wpisu? Domyślna wartość to 100.'; $a->strings['Maximum numbers of comments per post on the display page'] = 'Maksymalna liczba komentarzy na wpis na wyświetlanej stronie'; @@ -1326,7 +1321,6 @@ $a->strings['Submit Request'] = 'Wyślij zgłoszenie'; $a->strings['You already added this contact.'] = 'Już dodałeś ten kontakt.'; $a->strings['The network type couldn\'t be detected. Contact can\'t be added.'] = 'Nie można wykryć typu sieci. Kontakt nie może zostać dodany.'; $a->strings['Diaspora support isn\'t enabled. Contact can\'t be added.'] = 'Obsługa Diaspory nie jest włączona. Kontakt nie może zostać dodany.'; -$a->strings['OStatus support is disabled. Contact can\'t be added.'] = 'Obsługa OStatus jest wyłączona. Kontakt nie może zostać dodany.'; $a->strings['Please answer the following:'] = 'Proszę odpowiedzieć na następujące pytania:'; $a->strings['Your Identity Address:'] = 'Twój adres tożsamości:'; $a->strings['Profile URL'] = 'Adres URL profilu'; @@ -1765,9 +1759,6 @@ $a->strings['Unsupported or missing response type'] = 'Nieobsługiwany lub braku $a->strings['Incomplete request data'] = 'Niekompletne dane żądania'; $a->strings['Please copy the following authentication code into your application and close this window: %s'] = 'Skopiuj następujący kod uwierzytelniający do swojej aplikacji i zamknij to okno: %s'; $a->strings['Unsupported or missing grant type'] = 'Nieobsługiwany lub brakujący typ dotacji'; -$a->strings['Resubscribing to OStatus contacts'] = 'Ponowne subskrybowanie kontaktów OStatus'; -$a->strings['Keep this window open until done.'] = 'Pozostaw to okno otwarte, dopóki nie będzie gotowe.'; -$a->strings['✔ Done'] = '✔ Gotowe'; $a->strings['Subscribing to contacts'] = 'Subskrybowanie kontaktów'; $a->strings['No contact provided.'] = 'Brak kontaktu.'; $a->strings['Couldn\'t fetch information for contact.'] = 'Nie można pobrać informacji o kontakcie.'; @@ -1779,6 +1770,7 @@ $a->strings['Done'] = 'Gotowe'; $a->strings['success'] = 'powodzenie'; $a->strings['failed'] = 'nie powiodło się'; $a->strings['ignored'] = 'ignorowany(-a)'; +$a->strings['Keep this window open until done.'] = 'Pozostaw to okno otwarte, dopóki nie będzie gotowe.'; $a->strings['The Photo is not available.'] = 'Zdjęcie jest niedostępne.'; $a->strings['The Photo with id %s is not available.'] = 'Zdjęcie z identyfikatorem %s nie jest dostępne.'; $a->strings['Invalid external resource with url %s.'] = 'Nieprawidłowy zasób zewnętrzny z adresem URL %s.'; @@ -1802,9 +1794,9 @@ $a->strings['Collection (%s)'] = 'Kolekcja (%s)'; $a->strings['Followers (%s)'] = 'Obserwujący (%s)'; $a->strings['%d more'] = '%d więcej'; $a->strings['No contacts.'] = 'Brak kontaktów.'; -$a->strings['%s\'s timeline'] = 'oś czasu %s'; $a->strings['%s\'s posts'] = 'wpisy %s'; $a->strings['%s\'s comments'] = 'komentarze %s'; +$a->strings['%s\'s timeline'] = 'oś czasu %s'; $a->strings['Image exceeds size limit of %s'] = 'Obraz przekracza limit rozmiaru wynoszący %s'; $a->strings['Image upload didn\'t complete, please try again'] = 'Przesyłanie zdjęć nie zostało zakończone, spróbuj ponownie'; $a->strings['Image file is missing'] = 'Brak pliku obrazu'; @@ -2030,7 +2022,6 @@ $a->strings['Description'] = 'Opis'; $a->strings['Add'] = 'Dodaj'; $a->strings['Failed to connect with email account using the settings provided.'] = 'Połączenie z kontem email używając wybranych ustawień nie powiodło się.'; $a->strings['Diaspora (Socialhome, Hubzilla)'] = 'Diaspora (Socialhome, Hubzilla)'; -$a->strings['OStatus (GNU Social)'] = 'OStatus (GNU Social)'; $a->strings['Email access is disabled on this site.'] = 'Dostęp do e-maila jest wyłączony na tej stronie.'; $a->strings['None'] = 'Brak'; $a->strings['General Social Media Settings'] = 'Ogólne ustawienia mediów społecznościowych'; @@ -2047,7 +2038,6 @@ $a->strings['Attach the link title'] = 'Dołącz tytuł linku'; $a->strings['When activated, the title of the attached link will be added as a title on posts to Diaspora. This is mostly helpful with "remote-self" contacts that share feed content.'] = 'Po aktywacji tytuł dołączonego linku zostanie dodany jako tytuł postów do Diaspory. Jest to szczególnie pomocne w przypadku kontaktów „zdalnych”, które udostępniają treść kanału.'; $a->strings['Your legacy ActivityPub/GNU Social account'] = 'Twoje stare konto ActivityPub/GNU Social'; $a->strings['If you enter your old account name from an ActivityPub based system or your GNU Social/Statusnet account name here (in the format user@domain.tld), your contacts will be added automatically. The field will be emptied when done.'] = 'Jeśli wprowadzisz tutaj swoją starą nazwę konta z systemu opartego na ActivityPub lub nazwę konta GNU Social/Statusnet (w formacie użytkownik@domena.tld), Twoje kontakty zostaną dodane automatycznie. Po zakończeniu pole zostanie opróżnione.'; -$a->strings['Repair OStatus subscriptions'] = 'Napraw subskrypcje OStatus'; $a->strings['Email/Mailbox Setup'] = 'Ustawienia emaila/skrzynki mailowej'; $a->strings['If you wish to communicate with email contacts using this service (optional), please specify how to connect to your mailbox.'] = 'Jeśli chcesz komunikować się z kontaktami e-mail za pomocą tej usługi (opcjonalnie), określ sposób łączenia się ze skrzynką pocztową.'; $a->strings['Last successful email check:'] = 'Ostatni sprawdzony e-mail:'; @@ -2321,7 +2311,6 @@ $a->strings['%s commented on %s\'s post'] = '%s skomentował wpis %s'; $a->strings['%s created a new post'] = '%s dodał nowy wpis'; $a->strings['Friend Suggestion'] = 'Propozycja znajomych'; $a->strings['Friend/Connect Request'] = 'Prośba o dodanie do przyjaciół/powiązanych'; -$a->strings['New Follower'] = 'Nowy obserwujący'; $a->strings['%1$s wants to follow you'] = '%1$s chce Cię obserwować'; $a->strings['%1$s has started following you'] = '%1$s zaczął Cię obserwować'; $a->strings['%1$s liked your comment on %2$s'] = '%1$s polubił Twój komentarz o %2$s'; @@ -2449,10 +2438,6 @@ $a->strings['%d comment'] = [ $a->strings['Show more'] = 'Pokaż więcej'; $a->strings['Show fewer'] = 'Pokaż mniej'; $a->strings['(no subject)'] = '(bez tematu)'; -$a->strings['%s is now following %s.'] = '%s zaczął(-ęła) obserwować %s.'; -$a->strings['following'] = 'następujący'; -$a->strings['%s stopped following %s.'] = '%s przestał(a) obserwować %s.'; -$a->strings['stopped following'] = 'przestał śledzić'; $a->strings['Login failed.'] = 'Logowanie nieudane.'; $a->strings['Login failed. Please check your credentials.'] = 'Logowanie nie powiodło się. Sprawdź swoje dane uwierzytelniające.'; $a->strings['Welcome %s'] = 'Witaj %s'; diff --git a/view/lang/ru/messages.po b/view/lang/ru/messages.po index a4b2196811..bbfe55663e 100644 --- a/view/lang/ru/messages.po +++ b/view/lang/ru/messages.po @@ -1,8 +1,7 @@ # FRIENDICA Distributed Social Network -# SPDX-FileCopyrightText: Copyright (C) 2010-2024, the Friendica project -# -# SPDX-License-Identifier: AGPL-3.0-or-later -# +# Copyright (C) 2010-2024, the Friendica project +# This file is distributed under the same license as the Friendica package. +# # Translators: # Aleksandr "M.O.Z.G" Dikov , 2020 # Alexander An , 2020-2024 @@ -26,7 +25,7 @@ msgid "" msgstr "" "Project-Id-Version: friendica\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-08-11 06:43+0000\n" +"POT-Creation-Date: 2024-10-07 20:46+0000\n" "PO-Revision-Date: 2011-05-05 10:19+0000\n" "Last-Translator: Andrey Esin, 2024\n" "Language-Team: Russian (http://app.transifex.com/Friendica/friendica/language/ru/)\n" @@ -36,77 +35,77 @@ msgstr "" "Language: ru\n" "Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n" -#: mod/item.php:101 mod/item.php:104 mod/item.php:171 mod/item.php:174 +#: mod/item.php:89 mod/item.php:92 mod/item.php:159 mod/item.php:162 msgid "Unable to locate original post." msgstr "Не удалось найти оригинальную запись." -#: mod/item.php:139 +#: mod/item.php:127 msgid "Post updated." msgstr "Запись обновлена." -#: mod/item.php:204 mod/item.php:208 +#: mod/item.php:192 mod/item.php:196 msgid "Item wasn't stored." msgstr "Запись не была сохранена." -#: mod/item.php:218 +#: mod/item.php:206 msgid "Item couldn't be fetched." msgstr "Не удалось получить запись." -#: mod/item.php:262 mod/item.php:266 +#: mod/item.php:250 mod/item.php:254 msgid "Empty post discarded." msgstr "Пустое сообщение отбрасывается." -#: mod/item.php:437 src/Module/Admin/Themes/Details.php:45 -#: src/Module/Admin/Themes/Index.php:65 src/Module/Debug/ItemBody.php:42 -#: src/Module/Debug/ItemBody.php:57 src/Module/Item/Feed.php:80 +#: mod/item.php:425 src/Module/Admin/Themes/Details.php:31 +#: src/Module/Admin/Themes/Index.php:51 src/Module/Debug/ItemBody.php:28 +#: src/Module/Debug/ItemBody.php:43 src/Module/Item/Feed.php:66 msgid "Item not found." msgstr "Пункт не найден." -#: mod/item.php:461 mod/message.php:66 mod/message.php:112 mod/notes.php:45 -#: mod/photos.php:147 mod/photos.php:663 src/Model/Event.php:520 -#: src/Module/Attach.php:55 src/Module/BaseApi.php:103 -#: src/Module/BaseNotifications.php:98 src/Module/BaseSettings.php:50 -#: src/Module/Calendar/Event/API.php:88 src/Module/Calendar/Event/Form.php:84 -#: src/Module/Calendar/Export.php:82 src/Module/Calendar/Show.php:82 -#: src/Module/Circle.php:41 src/Module/Circle.php:84 -#: src/Module/Contact/Advanced.php:60 src/Module/Contact/Follow.php:87 -#: src/Module/Contact/Follow.php:160 src/Module/Contact/MatchInterests.php:87 -#: src/Module/Contact/Suggestions.php:54 src/Module/Contact/Unfollow.php:66 -#: src/Module/Contact/Unfollow.php:80 src/Module/Contact/Unfollow.php:112 -#: src/Module/FollowConfirm.php:38 src/Module/FriendSuggest.php:57 -#: src/Module/Invite.php:42 src/Module/Invite.php:131 -#: src/Module/Notifications/Notification.php:76 -#: src/Module/Notifications/Notification.php:107 -#: src/Module/OStatus/Repair.php:60 src/Module/OStatus/Subscribe.php:68 -#: src/Module/Post/Edit.php:76 src/Module/Profile/Common.php:75 -#: src/Module/Profile/Contacts.php:78 src/Module/Profile/Photos.php:92 -#: src/Module/Profile/Schedule.php:39 src/Module/Profile/Schedule.php:56 -#: src/Module/Register.php:84 src/Module/Register.php:97 -#: src/Module/Register.php:213 src/Module/Register.php:252 -#: src/Module/Search/Directory.php:37 src/Module/Settings/Account.php:50 -#: src/Module/Settings/Account.php:391 src/Module/Settings/Channels.php:66 -#: src/Module/Settings/Channels.php:141 src/Module/Settings/Delegation.php:90 -#: src/Module/Settings/Display.php:90 src/Module/Settings/Display.php:197 -#: src/Module/Settings/Profile/Photo/Crop.php:165 -#: src/Module/Settings/Profile/Photo/Index.php:110 -#: src/Module/Settings/RemoveMe.php:119 src/Module/Settings/UserExport.php:78 -#: src/Module/Settings/UserExport.php:114 -#: src/Module/Settings/UserExport.php:213 -#: src/Module/Settings/UserExport.php:233 -#: src/Module/Settings/UserExport.php:298 src/Module/User/Delegation.php:154 -#: src/Module/User/Import.php:85 src/Module/User/Import.php:92 +#: mod/item.php:449 mod/message.php:54 mod/message.php:100 mod/notes.php:33 +#: mod/photos.php:135 mod/photos.php:627 src/Model/Event.php:506 +#: src/Module/Attach.php:41 src/Module/BaseApi.php:89 +#: src/Module/BaseNotifications.php:84 src/Module/BaseSettings.php:36 +#: src/Module/Calendar/Event/API.php:74 src/Module/Calendar/Event/Form.php:70 +#: src/Module/Calendar/Export.php:68 src/Module/Calendar/Show.php:68 +#: src/Module/Circle.php:27 src/Module/Circle.php:70 +#: src/Module/Contact/Advanced.php:46 src/Module/Contact/Follow.php:73 +#: src/Module/Contact/Follow.php:141 src/Module/Contact/MatchInterests.php:73 +#: src/Module/Contact/Suggestions.php:40 src/Module/Contact/Unfollow.php:52 +#: src/Module/Contact/Unfollow.php:66 src/Module/Contact/Unfollow.php:98 +#: src/Module/FollowConfirm.php:24 src/Module/FriendSuggest.php:43 +#: src/Module/Invite.php:28 src/Module/Invite.php:117 +#: src/Module/Notifications/Notification.php:62 +#: src/Module/Notifications/Notification.php:93 +#: src/Module/OStatus/Subscribe.php:54 src/Module/Post/Edit.php:62 +#: src/Module/Profile/Common.php:61 src/Module/Profile/Contacts.php:64 +#: src/Module/Profile/Photos.php:78 src/Module/Profile/Schedule.php:25 +#: src/Module/Profile/Schedule.php:42 src/Module/Register.php:70 +#: src/Module/Register.php:83 src/Module/Register.php:199 +#: src/Module/Register.php:238 src/Module/Search/Directory.php:23 +#: src/Module/Settings/Account.php:36 src/Module/Settings/Account.php:377 +#: src/Module/Settings/Channels.php:52 src/Module/Settings/Channels.php:127 +#: src/Module/Settings/Delegation.php:76 src/Module/Settings/Display.php:76 +#: src/Module/Settings/Display.php:183 +#: src/Module/Settings/Profile/Photo/Crop.php:151 +#: src/Module/Settings/Profile/Photo/Index.php:96 +#: src/Module/Settings/RemoveMe.php:105 src/Module/Settings/UserExport.php:64 +#: src/Module/Settings/UserExport.php:100 +#: src/Module/Settings/UserExport.php:199 +#: src/Module/Settings/UserExport.php:219 +#: src/Module/Settings/UserExport.php:284 src/Module/User/Delegation.php:140 +#: src/Module/User/Import.php:71 src/Module/User/Import.php:78 msgid "Permission denied." msgstr "Нет разрешения." -#: mod/lostpass.php:40 +#: mod/lostpass.php:28 msgid "No valid account found." msgstr "Не найдено действительного аккаунта." -#: mod/lostpass.php:52 +#: mod/lostpass.php:40 msgid "Password reset request issued. Check your email." msgstr "Запрос на сброс пароля принят. Проверьте вашу электронную почту." -#: mod/lostpass.php:58 +#: mod/lostpass.php:46 #, php-format msgid "" "\n" @@ -122,7 +121,7 @@ msgid "" "\t\tissued this request." msgstr "\n\t\tПривет, %1$s,\n\t\t\"%2$s\" был получен запрос на сброс вашего пароля.\n\t\tЧтобы подтвердить запрос, перейдите по ссылке ниже или \n\t\tскопируйте её в адресную строку вашего браузера.\n\n\t\tЕсли вы НЕ отправляли этот запрос, то НЕ ПЕРЕХОДИТЕ по\n\t\tэтой ссылке, просто проигнорируйте это письмо. Запрос скоро отменится.\n\n\t\tВаш пароль не будет изменён до тех пор, пока вы не подтвердите,\n\t\tчто вы отправляли этот запрос как описано выше." -#: mod/lostpass.php:69 +#: mod/lostpass.php:57 #, php-format msgid "" "\n" @@ -139,70 +138,70 @@ msgid "" "\t\tLogin Name:\t%3$s" msgstr "\n\t\tПерейдите по этой ссылке для подтверждения вашей личности:\n\n\t\t%1$s\n\n\t\tЗатем вы получите ещё одно письмо, содержащее ваш пароль.\n\t\tВы сможете сменить этот пароль в настройках вашей учётной записи после входа.\n\n\t\tДанные для входа:\n\n\t\tАдрес сервера:\t%2$s\n\t\tИмя для входа:\t%3$s" -#: mod/lostpass.php:84 +#: mod/lostpass.php:72 #, php-format msgid "Password reset requested at %s" msgstr "Запрос на сброс пароля получен %s" -#: mod/lostpass.php:100 +#: mod/lostpass.php:88 msgid "" "Request could not be verified. (You may have previously submitted it.) " "Password reset failed." msgstr "Запрос не может быть проверен. (Вы, возможно, ранее представляли его.) Попытка сброса пароля неудачная." -#: mod/lostpass.php:113 +#: mod/lostpass.php:101 msgid "Request has expired, please make a new one." msgstr "Запрос истёк, пожалуйста, повторите его." -#: mod/lostpass.php:128 +#: mod/lostpass.php:116 msgid "Forgot your Password?" msgstr "Забыли пароль?" -#: mod/lostpass.php:129 +#: mod/lostpass.php:117 msgid "" "Enter your email address and submit to have your password reset. Then check " "your email for further instructions." msgstr "Введите адрес электронной почты и подтвердите, что вы хотите сбросить ваш пароль. Затем проверьте свою электронную почту для получения дальнейших инструкций." -#: mod/lostpass.php:130 src/Module/Security/Login.php:164 +#: mod/lostpass.php:118 src/Module/Security/Login.php:150 msgid "Nickname or Email: " msgstr "Ник или E-mail: " -#: mod/lostpass.php:131 +#: mod/lostpass.php:119 msgid "Reset" msgstr "Сброс" -#: mod/lostpass.php:146 src/Module/Security/Login.php:176 +#: mod/lostpass.php:134 src/Module/Security/Login.php:162 msgid "Password Reset" msgstr "Сброс пароля" -#: mod/lostpass.php:147 +#: mod/lostpass.php:135 msgid "Your password has been reset as requested." msgstr "Ваш пароль был сброшен по требованию." -#: mod/lostpass.php:148 +#: mod/lostpass.php:136 msgid "Your new password is" msgstr "Ваш новый пароль" -#: mod/lostpass.php:149 +#: mod/lostpass.php:137 msgid "Save or copy your new password - and then" msgstr "Сохраните или скопируйте новый пароль - и затем" -#: mod/lostpass.php:150 +#: mod/lostpass.php:138 msgid "click here to login" msgstr "нажмите здесь для входа" -#: mod/lostpass.php:151 +#: mod/lostpass.php:139 msgid "" "Your password may be changed from the Settings page after " "successful login." msgstr "Ваш пароль может быть изменен на странице Настройки после успешного входа." -#: mod/lostpass.php:155 +#: mod/lostpass.php:143 msgid "Your password has been reset." msgstr "Ваш пароль был сброшен." -#: mod/lostpass.php:158 +#: mod/lostpass.php:146 #, php-format msgid "" "\n" @@ -213,7 +212,7 @@ msgid "" "\t\t" msgstr "\n\t\t\tПривет, %1$s!\n\t\t\t\tВаш пароль был сменён по вашему запросу. Пожалуйста, сохраните эту информацию в надёжном месте (или сразу смените пароль на тот, который вы сможете запомнить).\n\t\t" -#: mod/lostpass.php:164 +#: mod/lostpass.php:152 #, php-format msgid "" "\n" @@ -227,161 +226,161 @@ msgid "" "\t\t" msgstr "\n\t\t\tВаши данные для входа ниже:\n\n\t\t\tАдрес сервера:\t%1$s\n\t\t\tИмя для входа:\t%2$s\n\t\t\tПароль:\t%3$s\n\n\t\t\tВы можете сменить этот пароль в настройках учётной записи после входа.\n\t\t" -#: mod/lostpass.php:176 +#: mod/lostpass.php:164 #, php-format msgid "Your password has been changed at %s" msgstr "Ваш пароль был изменен %s" -#: mod/message.php:45 mod/message.php:127 src/Content/Nav.php:321 +#: mod/message.php:33 mod/message.php:115 src/Content/Nav.php:307 msgid "New Message" msgstr "Новое сообщение" -#: mod/message.php:81 +#: mod/message.php:69 msgid "No recipient selected." msgstr "Не выбран получатель." -#: mod/message.php:86 +#: mod/message.php:74 msgid "Unable to locate contact information." msgstr "Не удалось найти контактную информацию." -#: mod/message.php:90 +#: mod/message.php:78 msgid "Message could not be sent." msgstr "Сообщение не может быть отправлено." -#: mod/message.php:94 +#: mod/message.php:82 msgid "Message collection failure." msgstr "Неудача коллекции сообщения." -#: mod/message.php:121 src/Module/Notifications/Introductions.php:141 -#: src/Module/Notifications/Introductions.php:176 -#: src/Module/Notifications/Notification.php:85 +#: mod/message.php:109 src/Module/Notifications/Introductions.php:127 +#: src/Module/Notifications/Introductions.php:162 +#: src/Module/Notifications/Notification.php:71 msgid "Discard" msgstr "Отказаться" -#: mod/message.php:134 src/Content/Nav.php:318 view/theme/frio/theme.php:244 +#: mod/message.php:122 src/Content/Nav.php:304 view/theme/frio/theme.php:232 msgid "Messages" msgstr "Сообщения" -#: mod/message.php:147 +#: mod/message.php:135 msgid "Conversation not found." msgstr "Беседа не найдена." -#: mod/message.php:152 +#: mod/message.php:140 msgid "Message was not deleted." msgstr "Сообщение не было удалено." -#: mod/message.php:167 +#: mod/message.php:155 msgid "Conversation was not removed." msgstr "Беседа не была удалена." -#: mod/message.php:180 mod/message.php:285 +#: mod/message.php:168 mod/message.php:273 msgid "Please enter a link URL:" msgstr "Пожалуйста, введите URL ссылки:" -#: mod/message.php:189 +#: mod/message.php:177 msgid "Send Private Message" msgstr "Отправить личное сообщение" -#: mod/message.php:190 mod/message.php:345 -#: src/Module/Privacy/PermissionTooltip.php:132 +#: mod/message.php:178 mod/message.php:333 +#: src/Module/Privacy/PermissionTooltip.php:118 msgid "To:" msgstr "Кому:" -#: mod/message.php:191 mod/message.php:346 +#: mod/message.php:179 mod/message.php:334 msgid "Subject:" msgstr "Тема:" -#: mod/message.php:195 mod/message.php:349 src/Module/Invite.php:171 +#: mod/message.php:183 mod/message.php:337 src/Module/Invite.php:157 msgid "Your message:" msgstr "Ваше сообщение:" -#: mod/message.php:198 mod/message.php:353 src/Content/Conversation.php:369 -#: src/Module/Post/Edit.php:131 +#: mod/message.php:186 mod/message.php:341 src/Content/Conversation.php:355 +#: src/Module/Post/Edit.php:117 msgid "Upload photo" msgstr "Загрузить фото" -#: mod/message.php:199 mod/message.php:354 src/Module/Post/Edit.php:135 +#: mod/message.php:187 mod/message.php:342 src/Module/Post/Edit.php:121 msgid "Insert web link" msgstr "Вставить веб-ссылку" -#: mod/message.php:200 mod/message.php:356 mod/photos.php:1291 -#: src/Content/Conversation.php:400 src/Content/Conversation.php:1576 -#: src/Module/Item/Compose.php:213 src/Module/Post/Edit.php:145 -#: src/Object/Post.php:618 +#: mod/message.php:188 mod/message.php:344 mod/photos.php:1255 +#: src/Content/Conversation.php:386 src/Content/Conversation.php:1562 +#: src/Module/Item/Compose.php:199 src/Module/Post/Edit.php:131 +#: src/Object/Post.php:604 msgid "Please wait" msgstr "Пожалуйста, подождите" -#: mod/message.php:201 mod/message.php:355 mod/photos.php:694 -#: mod/photos.php:814 mod/photos.php:1091 mod/photos.php:1132 -#: mod/photos.php:1188 mod/photos.php:1268 -#: src/Module/Calendar/Event/Form.php:250 src/Module/Contact/Advanced.php:132 -#: src/Module/Contact/Profile.php:384 -#: src/Module/Debug/ActivityPubConversion.php:146 -#: src/Module/Debug/Babel.php:321 src/Module/Debug/Localtime.php:64 -#: src/Module/Debug/Probe.php:54 src/Module/Debug/WebFinger.php:51 -#: src/Module/FriendSuggest.php:145 src/Module/Install.php:234 -#: src/Module/Install.php:274 src/Module/Install.php:309 -#: src/Module/Invite.php:178 src/Module/Item/Compose.php:196 -#: src/Module/Moderation/Item/Source.php:85 -#: src/Module/Moderation/Report/Create.php:168 -#: src/Module/Moderation/Report/Create.php:183 -#: src/Module/Moderation/Report/Create.php:211 -#: src/Module/Moderation/Report/Create.php:263 -#: src/Module/Profile/Profile.php:276 -#: src/Module/Settings/Profile/Index.php:262 -#: src/Module/Settings/Server/Action.php:79 src/Module/User/Delegation.php:189 -#: src/Object/Post.php:1159 view/theme/duepuntozero/config.php:85 -#: view/theme/frio/config.php:150 view/theme/quattro/config.php:87 -#: view/theme/vier/config.php:135 +#: mod/message.php:189 mod/message.php:343 mod/photos.php:658 +#: mod/photos.php:778 mod/photos.php:1055 mod/photos.php:1096 +#: mod/photos.php:1152 mod/photos.php:1232 +#: src/Module/Calendar/Event/Form.php:236 src/Module/Contact/Advanced.php:118 +#: src/Module/Contact/Profile.php:370 +#: src/Module/Debug/ActivityPubConversion.php:132 +#: src/Module/Debug/Babel.php:307 src/Module/Debug/Localtime.php:50 +#: src/Module/Debug/Probe.php:40 src/Module/Debug/WebFinger.php:37 +#: src/Module/FriendSuggest.php:131 src/Module/Install.php:220 +#: src/Module/Install.php:260 src/Module/Install.php:295 +#: src/Module/Invite.php:164 src/Module/Item/Compose.php:182 +#: src/Module/Moderation/Item/Source.php:71 +#: src/Module/Moderation/Report/Create.php:154 +#: src/Module/Moderation/Report/Create.php:169 +#: src/Module/Moderation/Report/Create.php:197 +#: src/Module/Moderation/Report/Create.php:249 +#: src/Module/Profile/Profile.php:262 +#: src/Module/Settings/Profile/Index.php:248 +#: src/Module/Settings/Server/Action.php:65 src/Module/User/Delegation.php:175 +#: src/Object/Post.php:1145 view/theme/duepuntozero/config.php:73 +#: view/theme/frio/config.php:138 view/theme/quattro/config.php:75 +#: view/theme/vier/config.php:123 msgid "Submit" msgstr "Отправить" -#: mod/message.php:222 +#: mod/message.php:210 msgid "No messages." msgstr "Нет сообщений." -#: mod/message.php:278 +#: mod/message.php:266 msgid "Message not available." msgstr "Сообщение не доступно." -#: mod/message.php:322 +#: mod/message.php:310 msgid "Delete message" msgstr "Удалить сообщение" -#: mod/message.php:324 mod/message.php:453 +#: mod/message.php:312 mod/message.php:441 msgid "D, d M Y - g:i A" msgstr "D, d M Y - g:i A" -#: mod/message.php:339 mod/message.php:450 +#: mod/message.php:327 mod/message.php:438 msgid "Delete conversation" msgstr "Удалить историю общения" -#: mod/message.php:341 +#: mod/message.php:329 msgid "" "No secure communications available. You may be able to " "respond from the sender's profile page." msgstr "Невозможно защищённое соединение. Вы имеете возможность ответить со страницы профиля отправителя." -#: mod/message.php:344 +#: mod/message.php:332 msgid "Send Reply" msgstr "Отправить ответ" -#: mod/message.php:424 +#: mod/message.php:412 #, php-format msgid "Unknown sender - %s" msgstr "Неизвестный отправитель - %s" -#: mod/message.php:426 +#: mod/message.php:414 #, php-format msgid "You and %s" msgstr "Вы и %s" -#: mod/message.php:428 +#: mod/message.php:416 #, php-format msgid "%s and You" msgstr "%s и Вы" -#: mod/message.php:456 +#: mod/message.php:444 #, php-format msgid "%d message" msgid_plural "%d messages" @@ -390,799 +389,799 @@ msgstr[1] "%d сообщений" msgstr[2] "%d сообщений" msgstr[3] "%d сообщений" -#: mod/notes.php:52 src/Module/BaseProfile.php:108 +#: mod/notes.php:40 src/Module/BaseProfile.php:94 msgid "Personal Notes" msgstr "Личные заметки" -#: mod/notes.php:56 +#: mod/notes.php:44 msgid "Personal notes are visible only by yourself." msgstr "Личные заметки видны только вам." -#: mod/notes.php:57 src/Content/Text/HTML.php:861 -#: src/Module/Admin/Storage.php:142 src/Module/Filer/SaveTag.php:74 -#: src/Module/Post/Edit.php:129 src/Module/Settings/Channels.php:229 +#: mod/notes.php:45 src/Content/Text/HTML.php:847 +#: src/Module/Admin/Storage.php:128 src/Module/Filer/SaveTag.php:60 +#: src/Module/Post/Edit.php:115 src/Module/Settings/Channels.php:215 msgid "Save" msgstr "Сохранить" -#: mod/photos.php:66 mod/photos.php:129 mod/photos.php:573 -#: src/Model/Event.php:512 src/Model/Profile.php:227 -#: src/Module/Calendar/Export.php:74 src/Module/Calendar/Show.php:74 -#: src/Module/DFRN/Poll.php:43 src/Module/Feed.php:66 src/Module/HCard.php:51 -#: src/Module/Profile/Common.php:62 src/Module/Profile/Common.php:71 -#: src/Module/Profile/Contacts.php:64 src/Module/Profile/Contacts.php:72 -#: src/Module/Profile/Conversations.php:91 src/Module/Profile/Media.php:56 -#: src/Module/Profile/Photos.php:83 src/Module/Profile/RemoteFollow.php:71 -#: src/Module/Register.php:274 +#: mod/photos.php:54 mod/photos.php:117 mod/photos.php:537 +#: src/Model/Event.php:498 src/Model/Profile.php:213 +#: src/Module/Calendar/Export.php:60 src/Module/Calendar/Show.php:60 +#: src/Module/Feed.php:52 src/Module/HCard.php:37 +#: src/Module/Profile/Common.php:48 src/Module/Profile/Common.php:57 +#: src/Module/Profile/Contacts.php:50 src/Module/Profile/Contacts.php:58 +#: src/Module/Profile/Conversations.php:77 src/Module/Profile/Media.php:42 +#: src/Module/Profile/Photos.php:69 src/Module/Profile/RemoteFollow.php:57 +#: src/Module/Register.php:260 msgid "User not found." msgstr "Пользователь не найден." -#: mod/photos.php:103 src/Module/BaseProfile.php:68 -#: src/Module/Profile/Photos.php:375 +#: mod/photos.php:91 src/Module/BaseProfile.php:54 +#: src/Module/Profile/Photos.php:361 msgid "Photo Albums" msgstr "Фотоальбомы" -#: mod/photos.php:104 src/Module/Profile/Photos.php:376 -#: src/Module/Profile/Photos.php:396 +#: mod/photos.php:92 src/Module/Profile/Photos.php:362 +#: src/Module/Profile/Photos.php:382 msgid "Recent Photos" msgstr "Последние фото" -#: mod/photos.php:106 mod/photos.php:862 src/Module/Profile/Photos.php:378 -#: src/Module/Profile/Photos.php:398 +#: mod/photos.php:94 mod/photos.php:826 src/Module/Profile/Photos.php:364 +#: src/Module/Profile/Photos.php:384 msgid "Upload New Photos" msgstr "Загрузить новые фото" -#: mod/photos.php:118 src/Module/BaseSettings.php:72 -#: src/Module/Profile/Photos.php:359 +#: mod/photos.php:106 src/Module/BaseSettings.php:58 +#: src/Module/Profile/Photos.php:345 msgid "everybody" msgstr "все" -#: mod/photos.php:154 +#: mod/photos.php:142 msgid "Contact information unavailable" msgstr "Информация о контакте недоступна" -#: mod/photos.php:183 +#: mod/photos.php:171 msgid "Album not found." msgstr "Альбом не найден." -#: mod/photos.php:239 +#: mod/photos.php:227 msgid "Album successfully deleted" msgstr "Альбом успешно удалён" -#: mod/photos.php:241 +#: mod/photos.php:229 msgid "Album was empty." msgstr "Альбом был пуст." -#: mod/photos.php:272 +#: mod/photos.php:260 msgid "Failed to delete the photo." msgstr "Не получилось удалить фото." -#: mod/photos.php:540 +#: mod/photos.php:504 msgid "a photo" msgstr "фото" -#: mod/photos.php:540 +#: mod/photos.php:504 #, php-format msgid "%1$s was tagged in %2$s by %3$s" msgstr "%1$s отмечен/а/ в %2$s by %3$s" -#: mod/photos.php:577 src/Module/Conversation/Community.php:160 -#: src/Module/Directory.php:49 src/Module/Profile/Photos.php:293 -#: src/Module/Search/Index.php:65 +#: mod/photos.php:541 src/Module/Conversation/Community.php:148 +#: src/Module/Directory.php:35 src/Module/Profile/Photos.php:279 +#: src/Module/Search/Index.php:51 msgid "Public access denied." msgstr "Публичный доступ закрыт." -#: mod/photos.php:582 +#: mod/photos.php:546 msgid "No photos selected" msgstr "Не выбрано фото." -#: mod/photos.php:710 +#: mod/photos.php:674 #, php-format msgid "The maximum accepted image size is %s" msgstr "Максимально допустимый размер изображения %s" -#: mod/photos.php:717 +#: mod/photos.php:681 msgid "Upload Photos" msgstr "Загрузить фото" -#: mod/photos.php:721 mod/photos.php:810 +#: mod/photos.php:685 mod/photos.php:774 msgid "New album name: " msgstr "Название нового альбома: " -#: mod/photos.php:722 +#: mod/photos.php:686 msgid "or select existing album:" msgstr "или выберите имеющийся альбом:" -#: mod/photos.php:723 +#: mod/photos.php:687 msgid "Do not show a status post for this upload" msgstr "Не показывать статус-сообщение для этой закачки" -#: mod/photos.php:726 mod/photos.php:1087 src/Content/Conversation.php:402 -#: src/Module/Calendar/Event/Form.php:253 src/Module/Post/Edit.php:183 +#: mod/photos.php:690 mod/photos.php:1051 src/Content/Conversation.php:388 +#: src/Module/Calendar/Event/Form.php:239 src/Module/Post/Edit.php:169 msgid "Permissions" msgstr "Разрешения" -#: mod/photos.php:791 +#: mod/photos.php:755 msgid "Do you really want to delete this photo album and all its photos?" msgstr "Вы действительно хотите удалить этот альбом и все его фотографии?" -#: mod/photos.php:792 mod/photos.php:815 +#: mod/photos.php:756 mod/photos.php:779 msgid "Delete Album" msgstr "Удалить альбом" -#: mod/photos.php:793 mod/photos.php:893 src/Content/Conversation.php:417 -#: src/Module/Contact/Follow.php:173 src/Module/Contact/Revoke.php:106 -#: src/Module/Contact/Unfollow.php:126 -#: src/Module/Media/Attachment/Browser.php:77 -#: src/Module/Media/Photo/Browser.php:88 src/Module/Post/Edit.php:167 -#: src/Module/Post/Tag/Remove.php:109 src/Module/Profile/RemoteFollow.php:134 -#: src/Module/Security/TwoFactor/SignOut.php:125 +#: mod/photos.php:757 mod/photos.php:857 src/Content/Conversation.php:403 +#: src/Module/Contact/Follow.php:154 src/Module/Contact/Revoke.php:92 +#: src/Module/Contact/Unfollow.php:112 +#: src/Module/Media/Attachment/Browser.php:63 +#: src/Module/Media/Photo/Browser.php:74 src/Module/Post/Edit.php:153 +#: src/Module/Post/Tag/Remove.php:95 src/Module/Profile/RemoteFollow.php:120 +#: src/Module/Security/TwoFactor/SignOut.php:111 msgid "Cancel" msgstr "Отмена" -#: mod/photos.php:819 +#: mod/photos.php:783 msgid "Edit Album" msgstr "Редактировать альбом" -#: mod/photos.php:820 +#: mod/photos.php:784 msgid "Drop Album" msgstr "Удалить альбом" -#: mod/photos.php:824 +#: mod/photos.php:788 msgid "Show Newest First" msgstr "Показать новые первыми" -#: mod/photos.php:826 +#: mod/photos.php:790 msgid "Show Oldest First" msgstr "Показать старые первыми" -#: mod/photos.php:847 src/Module/Profile/Photos.php:346 +#: mod/photos.php:811 src/Module/Profile/Photos.php:332 msgid "View Photo" msgstr "Просмотр фото" -#: mod/photos.php:879 +#: mod/photos.php:843 msgid "Permission denied. Access to this item may be restricted." msgstr "Нет разрешения. Доступ к этому элементу ограничен." -#: mod/photos.php:881 +#: mod/photos.php:845 msgid "Photo not available" msgstr "Фото недоступно" -#: mod/photos.php:891 +#: mod/photos.php:855 msgid "Do you really want to delete this photo?" msgstr "Вы действительно хотите удалить эту фотографию?" -#: mod/photos.php:892 mod/photos.php:1092 +#: mod/photos.php:856 mod/photos.php:1056 msgid "Delete Photo" msgstr "Удалить фото" -#: mod/photos.php:990 +#: mod/photos.php:954 msgid "View photo" msgstr "Просмотр фото" -#: mod/photos.php:992 +#: mod/photos.php:956 msgid "Edit photo" msgstr "Редактировать фото" -#: mod/photos.php:993 +#: mod/photos.php:957 msgid "Delete photo" msgstr "Удалить фото" -#: mod/photos.php:994 +#: mod/photos.php:958 msgid "Use as profile photo" msgstr "Использовать как фото профиля" -#: mod/photos.php:1001 +#: mod/photos.php:965 msgid "Private Photo" msgstr "Закрытое фото" -#: mod/photos.php:1007 +#: mod/photos.php:971 msgid "View Full Size" msgstr "Просмотреть полный размер" -#: mod/photos.php:1060 +#: mod/photos.php:1024 msgid "Tags: " msgstr "Ключевые слова: " -#: mod/photos.php:1063 +#: mod/photos.php:1027 msgid "[Select tags to remove]" msgstr "[выберите тэги для удаления]" -#: mod/photos.php:1078 +#: mod/photos.php:1042 msgid "New album name" msgstr "Название нового альбома" -#: mod/photos.php:1079 +#: mod/photos.php:1043 msgid "Caption" msgstr "Подпись" -#: mod/photos.php:1080 +#: mod/photos.php:1044 msgid "Add a Tag" msgstr "Добавить тег" -#: mod/photos.php:1080 +#: mod/photos.php:1044 msgid "" "Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping" msgstr "Пример: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping" -#: mod/photos.php:1081 +#: mod/photos.php:1045 msgid "Do not rotate" msgstr "Не поворачивать" -#: mod/photos.php:1082 +#: mod/photos.php:1046 msgid "Rotate CW (right)" msgstr "Поворот по часовой стрелке (направо)" -#: mod/photos.php:1083 +#: mod/photos.php:1047 msgid "Rotate CCW (left)" msgstr "Поворот против часовой стрелки (налево)" -#: mod/photos.php:1129 mod/photos.php:1185 mod/photos.php:1265 -#: src/Module/Contact.php:625 src/Module/Item/Compose.php:195 -#: src/Object/Post.php:1156 +#: mod/photos.php:1093 mod/photos.php:1149 mod/photos.php:1229 +#: src/Module/Contact.php:600 src/Module/Item/Compose.php:181 +#: src/Object/Post.php:1142 msgid "This is you" msgstr "Это вы" -#: mod/photos.php:1131 mod/photos.php:1187 mod/photos.php:1267 -#: src/Module/Moderation/Reports.php:116 src/Object/Post.php:612 -#: src/Object/Post.php:1158 +#: mod/photos.php:1095 mod/photos.php:1151 mod/photos.php:1231 +#: src/Module/Moderation/Reports.php:102 src/Object/Post.php:598 +#: src/Object/Post.php:1144 msgid "Comment" msgstr "Комментировать" -#: mod/photos.php:1133 mod/photos.php:1189 mod/photos.php:1269 -#: src/Content/Conversation.php:414 src/Module/Calendar/Event/Form.php:248 -#: src/Module/Item/Compose.php:208 src/Module/Post/Edit.php:165 -#: src/Object/Post.php:1172 +#: mod/photos.php:1097 mod/photos.php:1153 mod/photos.php:1233 +#: src/Content/Conversation.php:400 src/Module/Calendar/Event/Form.php:234 +#: src/Module/Item/Compose.php:194 src/Module/Post/Edit.php:151 +#: src/Object/Post.php:1158 msgid "Preview" msgstr "Просмотр" -#: mod/photos.php:1134 src/Content/Conversation.php:368 -#: src/Module/Post/Edit.php:130 src/Object/Post.php:1160 +#: mod/photos.php:1098 src/Content/Conversation.php:354 +#: src/Module/Post/Edit.php:116 src/Object/Post.php:1146 msgid "Loading..." msgstr "Загрузка..." -#: mod/photos.php:1226 src/Content/Conversation.php:1498 -#: src/Object/Post.php:274 +#: mod/photos.php:1190 src/Content/Conversation.php:1484 +#: src/Object/Post.php:260 msgid "Select" msgstr "Выберите" -#: mod/photos.php:1227 src/Content/Conversation.php:1499 -#: src/Module/Moderation/Users/Active.php:136 -#: src/Module/Moderation/Users/Blocked.php:136 -#: src/Module/Moderation/Users/Index.php:151 -#: src/Module/Settings/Connectors.php:254 -#: src/Module/Settings/Server/Index.php:109 +#: mod/photos.php:1191 src/Content/Conversation.php:1485 +#: src/Module/Moderation/Users/Active.php:122 +#: src/Module/Moderation/Users/Blocked.php:122 +#: src/Module/Moderation/Users/Index.php:137 +#: src/Module/Settings/Connectors.php:233 +#: src/Module/Settings/Server/Index.php:95 msgid "Delete" msgstr "Удалить" -#: mod/photos.php:1288 src/Object/Post.php:440 +#: mod/photos.php:1252 src/Object/Post.php:426 msgid "Like" msgstr "Нравится" -#: mod/photos.php:1289 src/Object/Post.php:440 +#: mod/photos.php:1253 src/Object/Post.php:426 msgid "I like this (toggle)" msgstr "Нравится" -#: mod/photos.php:1290 src/Object/Post.php:441 +#: mod/photos.php:1254 src/Object/Post.php:427 msgid "Dislike" msgstr "Не нравится" -#: mod/photos.php:1292 src/Object/Post.php:441 +#: mod/photos.php:1256 src/Object/Post.php:427 msgid "I don't like this (toggle)" msgstr "Не нравится" -#: mod/photos.php:1314 +#: mod/photos.php:1278 msgid "Map" msgstr "Карта" -#: src/App.php:446 +#: src/App.php:432 msgid "No system theme config value set." msgstr "Настройки системной темы не установлены." -#: src/App.php:554 +#: src/App.php:540 msgid "Apologies but the website is unavailable at the moment." msgstr "Приносим извинения, но этот сервис сейчас недоступен." -#: src/App/Page.php:250 +#: src/App/Page.php:236 msgid "Delete this item?" msgstr "Удалить этот элемент?" -#: src/App/Page.php:251 +#: src/App/Page.php:237 msgid "" "Block this author? They won't be able to follow you nor see your public " "posts, and you won't be able to see their posts and their notifications." msgstr "Заблокировать этого автора? Они не смогут подписаться на вас или видеть ваши записи, вы не будете видеть их записи и получать от них уведомления." -#: src/App/Page.php:252 +#: src/App/Page.php:238 msgid "" "Ignore this author? You won't be able to see their posts and their " "notifications." msgstr "Игнорировать этого автора? Вы не увидите их записи и уведомления." -#: src/App/Page.php:253 +#: src/App/Page.php:239 msgid "Collapse this author's posts?" msgstr "Сворачивать записи этого автора?" -#: src/App/Page.php:254 +#: src/App/Page.php:240 msgid "Ignore this author's server?" msgstr "Игнорировать сервер этого автора?" -#: src/App/Page.php:255 src/Module/Settings/Server/Action.php:61 -#: src/Module/Settings/Server/Index.php:108 +#: src/App/Page.php:241 src/Module/Settings/Server/Action.php:47 +#: src/Module/Settings/Server/Index.php:94 msgid "" "You won't see any content from this server including reshares in your " "Network page, the community pages and individual conversations." msgstr "Вы не будете видеть любые записи с этого сервера, включая репосты, в вашей ленте, в сообществах и в комментариях." -#: src/App/Page.php:257 +#: src/App/Page.php:243 msgid "Like not successful" msgstr "Ошибка отправки \"мне нравится\"" -#: src/App/Page.php:258 +#: src/App/Page.php:244 msgid "Dislike not successful" msgstr "Ошибка оправки \"мне не нравится\"" -#: src/App/Page.php:259 +#: src/App/Page.php:245 msgid "Sharing not successful" msgstr "Ошибка при попытке поделиться" -#: src/App/Page.php:260 +#: src/App/Page.php:246 msgid "Attendance unsuccessful" msgstr "Ошибка обновления календаря" -#: src/App/Page.php:261 +#: src/App/Page.php:247 msgid "Backend error" msgstr "Ошибка бэкенда" -#: src/App/Page.php:262 +#: src/App/Page.php:248 msgid "Network error" msgstr "Ошибка сети" -#: src/App/Page.php:265 +#: src/App/Page.php:251 msgid "Drop files here to upload" msgstr "Перетащите сюда файлы для загрузки" -#: src/App/Page.php:266 +#: src/App/Page.php:252 msgid "Your browser does not support drag and drop file uploads." msgstr "Ваш браузер не поддерживает перетаскивание файлов для загрузки" -#: src/App/Page.php:267 +#: src/App/Page.php:253 msgid "" "Please use the fallback form below to upload your files like in the olden " "days." msgstr "Пожалуйста, используйте форму ниже для загрузки файлов" -#: src/App/Page.php:268 +#: src/App/Page.php:254 msgid "File is too big ({{filesize}}MiB). Max filesize: {{maxFilesize}}MiB." msgstr "Файл слишком большой ({{filesize}}MiB). Ограничение: {{maxFilesize}}MiB." -#: src/App/Page.php:269 +#: src/App/Page.php:255 msgid "You can't upload files of this type." msgstr "Нельзя загрузить этот тип файла." -#: src/App/Page.php:270 +#: src/App/Page.php:256 msgid "Server responded with {{statusCode}} code." msgstr "Сервер ответил с кодом {{statusCode}}." -#: src/App/Page.php:271 +#: src/App/Page.php:257 msgid "Cancel upload" msgstr "Отменить загрузку" -#: src/App/Page.php:272 +#: src/App/Page.php:258 msgid "Upload canceled." msgstr "Загрузка отменена" -#: src/App/Page.php:273 +#: src/App/Page.php:259 msgid "Are you sure you want to cancel this upload?" msgstr "Вы уверены, что хотите отменить загрузку?" -#: src/App/Page.php:274 +#: src/App/Page.php:260 msgid "Remove file" msgstr "Убрать файл" -#: src/App/Page.php:275 +#: src/App/Page.php:261 msgid "You can't upload any more files." msgstr "Вы не можете загрузить больше файлов." -#: src/App/Page.php:353 +#: src/App/Page.php:339 msgid "toggle mobile" msgstr "мобильная версия" -#: src/App/Router.php:309 +#: src/App/Router.php:295 #, php-format msgid "Method not allowed for this module. Allowed method(s): %s" msgstr "Метод не разрешён для этого модуля. Разрешенный метод(ы): %s" -#: src/App/Router.php:311 src/Module/HTTPException/PageNotFound.php:49 -#: src/Module/Stats.php:63 +#: src/App/Router.php:297 src/Module/HTTPException/PageNotFound.php:35 +#: src/Module/Stats.php:49 msgid "Page not found." msgstr "Страница не найдена." -#: src/App/Router.php:323 +#: src/App/Router.php:309 msgid "You must be logged in to use addons. " msgstr "Вы должны войти в систему, чтобы использовать аддоны." -#: src/BaseModule.php:407 +#: src/BaseModule.php:393 msgid "" "The form security token was not correct. This probably happened because the " "form has been opened for too long (>3 hours) before submitting it." msgstr "Ключ формы безопасности неправильный. Вероятно, это произошло потому, что форма была открыта слишком долго (более 3 часов) до её отправки." -#: src/BaseModule.php:434 +#: src/BaseModule.php:420 msgid "All contacts" msgstr "Все контакты" -#: src/BaseModule.php:439 src/Content/Conversation/Factory/Channel.php:46 -#: src/Content/Widget.php:240 src/Core/ACL.php:195 src/Module/Contact.php:420 -#: src/Module/Privacy/PermissionTooltip.php:164 -#: src/Module/Privacy/PermissionTooltip.php:186 -#: src/Module/Settings/Channels.php:160 +#: src/BaseModule.php:425 src/Content/Conversation/Factory/Channel.php:32 +#: src/Content/Widget.php:218 src/Core/ACL.php:181 src/Module/Contact.php:395 +#: src/Module/Privacy/PermissionTooltip.php:150 +#: src/Module/Privacy/PermissionTooltip.php:172 +#: src/Module/Settings/Channels.php:146 msgid "Followers" msgstr "Подписаны на вас" -#: src/BaseModule.php:444 src/Content/Widget.php:241 -#: src/Module/Contact.php:423 src/Module/Settings/Channels.php:159 +#: src/BaseModule.php:430 src/Content/Widget.php:219 +#: src/Module/Contact.php:398 src/Module/Settings/Channels.php:145 msgid "Following" msgstr "Ваши подписки" -#: src/BaseModule.php:449 src/Content/Widget.php:242 -#: src/Module/Contact.php:426 +#: src/BaseModule.php:435 src/Content/Widget.php:220 +#: src/Module/Contact.php:401 msgid "Mutual friends" msgstr "Взаимные друзья" -#: src/BaseModule.php:457 +#: src/BaseModule.php:443 msgid "Common" msgstr "Общее" -#: src/Console/Addon.php:175 src/Console/Addon.php:199 +#: src/Console/Addon.php:161 src/Console/Addon.php:185 msgid "Addon not found" msgstr "Дополнение не найдено" -#: src/Console/Addon.php:179 +#: src/Console/Addon.php:165 msgid "Addon already enabled" msgstr "Дополнение уже включено" -#: src/Console/Addon.php:203 +#: src/Console/Addon.php:189 msgid "Addon already disabled" msgstr "Дополнение уже отключено" -#: src/Console/ArchiveContact.php:106 +#: src/Console/ArchiveContact.php:92 #, php-format msgid "Could not find any unarchived contact entry for this URL (%s)" msgstr "Не удалось найти не архивированных контактов для этой URL (%s)" -#: src/Console/ArchiveContact.php:109 +#: src/Console/ArchiveContact.php:95 msgid "The contact entries have been archived" msgstr "Записи этого контакта были архивированы." -#: src/Console/ClearAvatarCache.php:87 +#: src/Console/ClearAvatarCache.php:73 msgid "" "The avatar cache needs to be disabled in local.config.php to use this " "command." msgstr "" -#: src/Console/GlobalCommunityBlock.php:96 -#: src/Module/Moderation/Blocklist/Contact.php:65 +#: src/Console/GlobalCommunityBlock.php:82 +#: src/Module/Moderation/Blocklist/Contact.php:51 #, php-format msgid "Could not find any contact entry for this URL (%s)" msgstr "Не удалось найти контактных данных по этой ссылке (%s)" -#: src/Console/GlobalCommunityBlock.php:101 -#: src/Module/Moderation/Blocklist/Contact.php:82 +#: src/Console/GlobalCommunityBlock.php:87 +#: src/Module/Moderation/Blocklist/Contact.php:68 msgid "The contact has been blocked from the node" msgstr "Контакт был заблокирован на узле." -#: src/Console/MergeContacts.php:75 +#: src/Console/MergeContacts.php:61 #, php-format msgid "%d %s, %d duplicates." msgstr "%d %s, %d дубликаты." -#: src/Console/MergeContacts.php:78 +#: src/Console/MergeContacts.php:64 #, php-format msgid "uri-id is empty for contact %s." msgstr "uri-id пустой для контакта %s." -#: src/Console/MergeContacts.php:91 +#: src/Console/MergeContacts.php:77 #, php-format msgid "No valid first contact found for uri-id %d." msgstr "Не найден первый контакт для uri-id %d." -#: src/Console/MergeContacts.php:102 +#: src/Console/MergeContacts.php:88 #, php-format msgid "Wrong duplicate found for uri-id %d in %d (url: %s != %s)." msgstr "" -#: src/Console/MergeContacts.php:106 +#: src/Console/MergeContacts.php:92 #, php-format msgid "Wrong duplicate found for uri-id %d in %d (nurl: %s != %s)." msgstr "" -#: src/Console/MergeContacts.php:142 +#: src/Console/MergeContacts.php:128 #, php-format msgid "Deletion of id %d failed" msgstr "" -#: src/Console/MergeContacts.php:144 +#: src/Console/MergeContacts.php:130 #, php-format msgid "Deletion of id %d was successful" msgstr "" -#: src/Console/MergeContacts.php:150 +#: src/Console/MergeContacts.php:136 #, php-format msgid "Updating \"%s\" in \"%s\" from %d to %d" msgstr "" -#: src/Console/MergeContacts.php:152 +#: src/Console/MergeContacts.php:138 msgid " - found" msgstr "" -#: src/Console/MergeContacts.php:159 +#: src/Console/MergeContacts.php:145 msgid " - failed" msgstr "" -#: src/Console/MergeContacts.php:161 +#: src/Console/MergeContacts.php:147 msgid " - success" msgstr "" -#: src/Console/MergeContacts.php:165 +#: src/Console/MergeContacts.php:151 msgid " - deleted" msgstr "" -#: src/Console/MergeContacts.php:168 +#: src/Console/MergeContacts.php:154 msgid " - done" msgstr "" -#: src/Console/MoveToAvatarCache.php:91 +#: src/Console/MoveToAvatarCache.php:77 msgid "The avatar cache needs to be enabled to use this command." msgstr "Кэширование аватаров должно быть включено для использования этой команды." -#: src/Console/MoveToAvatarCache.php:109 +#: src/Console/MoveToAvatarCache.php:95 #, php-format msgid "no resource in photo %s" msgstr "нет ресурса для фото %s" -#: src/Console/MoveToAvatarCache.php:137 +#: src/Console/MoveToAvatarCache.php:123 #, php-format msgid "no photo with id %s" msgstr "нет фото с id %s" -#: src/Console/MoveToAvatarCache.php:146 +#: src/Console/MoveToAvatarCache.php:132 #, php-format msgid "no image data for photo with id %s" msgstr "нет данных изображения для фото с id %s" -#: src/Console/MoveToAvatarCache.php:155 +#: src/Console/MoveToAvatarCache.php:141 #, php-format msgid "invalid image for id %s" msgstr "неправильное изображение с id %s" -#: src/Console/MoveToAvatarCache.php:168 +#: src/Console/MoveToAvatarCache.php:154 #, php-format msgid "Quit on invalid photo %s" msgstr "Выход на неправильном фото %s" -#: src/Console/PostUpdate.php:87 +#: src/Console/PostUpdate.php:73 #, php-format msgid "Post update version number has been set to %s." msgstr "Версия post update установлена на %s." -#: src/Console/PostUpdate.php:95 +#: src/Console/PostUpdate.php:81 msgid "Check for pending update actions." msgstr "Проверить наличие отложенных действий." -#: src/Console/PostUpdate.php:97 +#: src/Console/PostUpdate.php:83 msgid "Done." msgstr "Готово." -#: src/Console/PostUpdate.php:99 +#: src/Console/PostUpdate.php:85 msgid "Execute pending post updates." msgstr "Выполнить обновления записей из очереди." -#: src/Console/PostUpdate.php:105 +#: src/Console/PostUpdate.php:91 msgid "All pending post updates are done." msgstr "Все операции по обновлению записей выполнены." -#: src/Console/User.php:158 src/Console/User.php:246 +#: src/Console/User.php:144 src/Console/User.php:232 msgid "Enter user nickname: " msgstr "Введите ник пользователя:" -#: src/Console/User.php:182 src/Model/User.php:847 -#: src/Module/Api/Twitter/ContactEndpoint.php:74 -#: src/Module/Moderation/Users/Active.php:71 -#: src/Module/Moderation/Users/Blocked.php:71 -#: src/Module/Moderation/Users/Index.php:78 -#: src/Module/Moderation/Users/Pending.php:67 +#: src/Console/User.php:168 src/Model/User.php:831 +#: src/Module/Api/Twitter/ContactEndpoint.php:60 +#: src/Module/Moderation/Users/Active.php:57 +#: src/Module/Moderation/Users/Blocked.php:57 +#: src/Module/Moderation/Users/Index.php:64 +#: src/Module/Moderation/Users/Pending.php:53 msgid "User not found" msgstr "Пользователь не найден" -#: src/Console/User.php:202 +#: src/Console/User.php:188 msgid "Enter new password: " msgstr "Введите новый пароль:" -#: src/Console/User.php:210 src/Module/Security/PasswordTooLong.php:69 -#: src/Module/Settings/Account.php:75 +#: src/Console/User.php:196 src/Module/Security/PasswordTooLong.php:55 +#: src/Module/Settings/Account.php:61 msgid "Password update failed. Please try again." msgstr "Обновление пароля не удалось. Пожалуйста, попробуйте еще раз." -#: src/Console/User.php:213 src/Module/Security/PasswordTooLong.php:72 -#: src/Module/Settings/Account.php:78 +#: src/Console/User.php:199 src/Module/Security/PasswordTooLong.php:58 +#: src/Module/Settings/Account.php:64 msgid "Password changed." msgstr "Пароль изменен." -#: src/Console/User.php:238 +#: src/Console/User.php:224 msgid "Enter user name: " msgstr "Введите имя пользователя:" -#: src/Console/User.php:254 +#: src/Console/User.php:240 msgid "Enter user email address: " msgstr "Введите адрес почты пользователя:" -#: src/Console/User.php:262 +#: src/Console/User.php:248 msgid "Enter a language (optional): " msgstr "Введите язык (не обязательно):" -#: src/Console/User.php:267 +#: src/Console/User.php:253 msgid "Enter URL of an image to use as avatar (optional): " msgstr "Введите URL изображения для аватара (необязательно):" -#: src/Console/User.php:292 +#: src/Console/User.php:278 msgid "User is not pending." msgstr "Пользователь не в ожидании" -#: src/Console/User.php:324 +#: src/Console/User.php:310 msgid "User has already been marked for deletion." msgstr "Пользователь уже помечен для удаления." -#: src/Console/User.php:329 +#: src/Console/User.php:315 #, php-format msgid "Type \"yes\" to delete %s" msgstr "Введите \"yes\" для удаления %s" -#: src/Console/User.php:331 +#: src/Console/User.php:317 msgid "Deletion aborted." msgstr "Удаление отменено." -#: src/Console/User.php:456 +#: src/Console/User.php:442 msgid "Enter category: " msgstr "Введите категорию:" -#: src/Console/User.php:466 +#: src/Console/User.php:452 msgid "Enter key: " msgstr "Введите ключ:" -#: src/Console/User.php:500 +#: src/Console/User.php:486 msgid "Enter value: " msgstr "Введите значение:" -#: src/Content/BoundariesPager.php:116 src/Content/Pager.php:171 +#: src/Content/BoundariesPager.php:102 src/Content/Pager.php:157 msgid "newer" msgstr "новее" -#: src/Content/BoundariesPager.php:124 src/Content/Pager.php:176 +#: src/Content/BoundariesPager.php:110 src/Content/Pager.php:162 msgid "older" msgstr "старее" -#: src/Content/ContactSelector.php:51 +#: src/Content/ContactSelector.php:37 msgid "Frequently" msgstr "Часто" -#: src/Content/ContactSelector.php:52 +#: src/Content/ContactSelector.php:38 msgid "Hourly" msgstr "Раз в час" -#: src/Content/ContactSelector.php:53 +#: src/Content/ContactSelector.php:39 msgid "Twice daily" msgstr "Дважды в день" -#: src/Content/ContactSelector.php:54 +#: src/Content/ContactSelector.php:40 msgid "Daily" msgstr "Раз в день" -#: src/Content/ContactSelector.php:55 +#: src/Content/ContactSelector.php:41 msgid "Weekly" msgstr "Раз в неделю" -#: src/Content/ContactSelector.php:56 +#: src/Content/ContactSelector.php:42 msgid "Monthly" msgstr "Раз в месяц" -#: src/Content/ContactSelector.php:126 +#: src/Content/ContactSelector.php:112 msgid "DFRN" msgstr "DFRN" -#: src/Content/ContactSelector.php:127 +#: src/Content/ContactSelector.php:113 msgid "OStatus" msgstr "OStatus" -#: src/Content/ContactSelector.php:128 +#: src/Content/ContactSelector.php:114 msgid "RSS/Atom" msgstr "RSS/Atom" -#: src/Content/ContactSelector.php:129 -#: src/Module/Moderation/Users/Active.php:126 -#: src/Module/Moderation/Users/Blocked.php:126 -#: src/Module/Moderation/Users/Create.php:72 -#: src/Module/Moderation/Users/Deleted.php:83 -#: src/Module/Moderation/Users/Index.php:140 -#: src/Module/Moderation/Users/Index.php:160 -#: src/Module/Moderation/Users/Pending.php:99 +#: src/Content/ContactSelector.php:115 +#: src/Module/Moderation/Users/Active.php:112 +#: src/Module/Moderation/Users/Blocked.php:112 +#: src/Module/Moderation/Users/Create.php:58 +#: src/Module/Moderation/Users/Deleted.php:69 +#: src/Module/Moderation/Users/Index.php:126 +#: src/Module/Moderation/Users/Index.php:146 +#: src/Module/Moderation/Users/Pending.php:85 msgid "Email" msgstr "Эл. почта" -#: src/Content/ContactSelector.php:130 src/Module/Debug/Babel.php:315 +#: src/Content/ContactSelector.php:116 src/Module/Debug/Babel.php:301 msgid "Diaspora" msgstr "Diaspora" -#: src/Content/ContactSelector.php:131 +#: src/Content/ContactSelector.php:117 msgid "Zot!" msgstr "Zot!" -#: src/Content/ContactSelector.php:132 +#: src/Content/ContactSelector.php:118 msgid "LinkedIn" msgstr "LinkedIn" -#: src/Content/ContactSelector.php:133 +#: src/Content/ContactSelector.php:119 msgid "XMPP/IM" msgstr "XMPP/IM" -#: src/Content/ContactSelector.php:134 +#: src/Content/ContactSelector.php:120 msgid "MySpace" msgstr "MySpace" -#: src/Content/ContactSelector.php:135 +#: src/Content/ContactSelector.php:121 msgid "Google+" msgstr "Google+" -#: src/Content/ContactSelector.php:136 +#: src/Content/ContactSelector.php:122 msgid "pump.io" msgstr "pump.io" -#: src/Content/ContactSelector.php:137 +#: src/Content/ContactSelector.php:123 msgid "Twitter" msgstr "Twitter" -#: src/Content/ContactSelector.php:138 +#: src/Content/ContactSelector.php:124 msgid "Discourse" msgstr "Discourse" -#: src/Content/ContactSelector.php:139 +#: src/Content/ContactSelector.php:125 msgid "Diaspora Connector" msgstr "Diaspora Connector" -#: src/Content/ContactSelector.php:140 +#: src/Content/ContactSelector.php:126 msgid "GNU Social Connector" msgstr "GNU Social Connector" -#: src/Content/ContactSelector.php:141 +#: src/Content/ContactSelector.php:127 msgid "ActivityPub" msgstr "ActivityPub" -#: src/Content/ContactSelector.php:142 +#: src/Content/ContactSelector.php:128 msgid "pnut" msgstr "pnut" -#: src/Content/ContactSelector.php:143 +#: src/Content/ContactSelector.php:129 msgid "Tumblr" msgstr "Tumblr" -#: src/Content/ContactSelector.php:144 +#: src/Content/ContactSelector.php:130 msgid "Bluesky" msgstr "Bluesky" -#: src/Content/ContactSelector.php:180 +#: src/Content/ContactSelector.php:166 #, php-format msgid "%s (via %s)" msgstr "%s (через %s)" -#: src/Content/Conversation.php:226 +#: src/Content/Conversation.php:212 msgid "and" msgstr "и" -#: src/Content/Conversation.php:229 +#: src/Content/Conversation.php:215 #, php-format msgid "and %d other people" msgstr "и еще %d человек" -#: src/Content/Conversation.php:235 +#: src/Content/Conversation.php:221 #, php-format msgid "%2$s likes this." msgid_plural "%2$s like this." @@ -1191,7 +1190,7 @@ msgstr[1] "%2$s нравится это." msgstr[2] "%2$s нравится это." msgstr[3] "%2$s нравится это." -#: src/Content/Conversation.php:237 +#: src/Content/Conversation.php:223 #, php-format msgid "%2$s doesn't like this." msgid_plural "%2$s don't like this." @@ -1200,7 +1199,7 @@ msgstr[1] "%2$s не нравится это." msgstr[2] "%2$s не нравится это." msgstr[3] "%2$s не нравится это." -#: src/Content/Conversation.php:239 +#: src/Content/Conversation.php:225 #, php-format msgid "%2$s attends." msgid_plural "%2$s attend." @@ -1209,7 +1208,7 @@ msgstr[1] "%2$s посетят." msgstr[2] "%2$s посетят." msgstr[3] "%2$s посетят." -#: src/Content/Conversation.php:241 +#: src/Content/Conversation.php:227 #, php-format msgid "%2$s doesn't attend." msgid_plural "%2$s don't attend." @@ -1218,7 +1217,7 @@ msgstr[1] "%2$s не посетят." msgstr[2] "%2$s не посетят." msgstr[3] "%2$s не посетят." -#: src/Content/Conversation.php:243 +#: src/Content/Conversation.php:229 #, php-format msgid "%2$s attends maybe." msgid_plural "%2$s attend maybe." @@ -1227,7 +1226,7 @@ msgstr[1] "%2$s могут посетить." msgstr[2] "%2$s могут посетить." msgstr[3] "%2$s могут посетить." -#: src/Content/Conversation.php:245 +#: src/Content/Conversation.php:231 #, php-format msgid "%2$s reshared this." msgid_plural "%2$s reshared this." @@ -1236,7 +1235,7 @@ msgstr[1] "%2$s поделились этим." msgstr[2] "%2$s поделились этим." msgstr[3] "%2$s поделились этим." -#: src/Content/Conversation.php:276 +#: src/Content/Conversation.php:262 #, php-format msgid " likes this" msgid_plural " like this" @@ -1245,7 +1244,7 @@ msgstr[1] " нравитс msgstr[2] " нравится это" msgstr[3] " нравится это" -#: src/Content/Conversation.php:279 +#: src/Content/Conversation.php:265 #, php-format msgid " doesn't like this" msgid_plural " don't like this" @@ -1254,7 +1253,7 @@ msgstr[1] " не нрави msgstr[2] " не нравится это" msgstr[3] " не нравится это" -#: src/Content/Conversation.php:282 +#: src/Content/Conversation.php:268 #, php-format msgid " attends" msgid_plural " attend" @@ -1263,7 +1262,7 @@ msgstr[1] " посетят" msgstr[2] " посетят" msgstr[3] " посетят" -#: src/Content/Conversation.php:285 +#: src/Content/Conversation.php:271 #, php-format msgid " doesn't attend" msgid_plural " don't attend" @@ -1272,7 +1271,7 @@ msgstr[1] " не посет msgstr[2] " не посетят" msgstr[3] " не посетят" -#: src/Content/Conversation.php:288 +#: src/Content/Conversation.php:274 #, php-format msgid " attends maybe" msgid_plural " attend maybe" @@ -1281,7 +1280,7 @@ msgstr[1] " возможн msgstr[2] " возможно посетят" msgstr[3] " возможно посетят" -#: src/Content/Conversation.php:291 +#: src/Content/Conversation.php:277 #, php-format msgid " reshared this" msgid_plural " reshared this" @@ -1290,1099 +1289,1099 @@ msgstr[1] " поделил msgstr[2] " поделились этим" msgstr[3] " поделились этим" -#: src/Content/Conversation.php:337 +#: src/Content/Conversation.php:323 msgid "Visible to everybody" msgstr "Видимое всем" -#: src/Content/Conversation.php:338 src/Module/Item/Compose.php:207 -#: src/Object/Post.php:1171 +#: src/Content/Conversation.php:324 src/Module/Item/Compose.php:193 +#: src/Object/Post.php:1157 msgid "Please enter a image/video/audio/webpage URL:" msgstr "Пожалуйста, введите адрес картинки/видео/аудио/странички:" -#: src/Content/Conversation.php:339 +#: src/Content/Conversation.php:325 msgid "Tag term:" msgstr "Тег:" -#: src/Content/Conversation.php:340 src/Module/Filer/SaveTag.php:73 +#: src/Content/Conversation.php:326 src/Module/Filer/SaveTag.php:59 msgid "Save to Folder:" msgstr "Сохранить в папку:" -#: src/Content/Conversation.php:341 +#: src/Content/Conversation.php:327 msgid "Where are you right now?" msgstr "И где вы сейчас?" -#: src/Content/Conversation.php:342 +#: src/Content/Conversation.php:328 msgid "Delete item(s)?" msgstr "Удалить елемент(ты)?" -#: src/Content/Conversation.php:354 src/Module/Item/Compose.php:182 +#: src/Content/Conversation.php:340 src/Module/Item/Compose.php:168 msgid "Created at" msgstr "Создано" -#: src/Content/Conversation.php:364 +#: src/Content/Conversation.php:350 msgid "New Post" msgstr "Новая запись" -#: src/Content/Conversation.php:367 +#: src/Content/Conversation.php:353 msgid "Share" msgstr "Поделиться" -#: src/Content/Conversation.php:370 src/Module/Post/Edit.php:132 +#: src/Content/Conversation.php:356 src/Module/Post/Edit.php:118 msgid "upload photo" msgstr "загрузить фото" -#: src/Content/Conversation.php:371 src/Module/Post/Edit.php:133 +#: src/Content/Conversation.php:357 src/Module/Post/Edit.php:119 msgid "Attach file" msgstr "Прикрепить файл" -#: src/Content/Conversation.php:372 src/Module/Post/Edit.php:134 +#: src/Content/Conversation.php:358 src/Module/Post/Edit.php:120 msgid "attach file" msgstr "приложить файл" -#: src/Content/Conversation.php:373 src/Module/Item/Compose.php:197 -#: src/Module/Post/Edit.php:171 src/Object/Post.php:1161 +#: src/Content/Conversation.php:359 src/Module/Item/Compose.php:183 +#: src/Module/Post/Edit.php:157 src/Object/Post.php:1147 msgid "Bold" msgstr "Жирный" -#: src/Content/Conversation.php:374 src/Module/Item/Compose.php:198 -#: src/Module/Post/Edit.php:172 src/Object/Post.php:1162 +#: src/Content/Conversation.php:360 src/Module/Item/Compose.php:184 +#: src/Module/Post/Edit.php:158 src/Object/Post.php:1148 msgid "Italic" msgstr "Kурсивный" -#: src/Content/Conversation.php:375 src/Module/Item/Compose.php:199 -#: src/Module/Post/Edit.php:173 src/Object/Post.php:1163 +#: src/Content/Conversation.php:361 src/Module/Item/Compose.php:185 +#: src/Module/Post/Edit.php:159 src/Object/Post.php:1149 msgid "Underline" msgstr "Подчеркнутый" -#: src/Content/Conversation.php:376 src/Module/Item/Compose.php:200 -#: src/Module/Post/Edit.php:174 src/Object/Post.php:1165 +#: src/Content/Conversation.php:362 src/Module/Item/Compose.php:186 +#: src/Module/Post/Edit.php:160 src/Object/Post.php:1151 msgid "Quote" msgstr "Цитата" -#: src/Content/Conversation.php:377 src/Module/Item/Compose.php:201 -#: src/Module/Post/Edit.php:175 src/Object/Post.php:1166 +#: src/Content/Conversation.php:363 src/Module/Item/Compose.php:187 +#: src/Module/Post/Edit.php:161 src/Object/Post.php:1152 msgid "Add emojis" msgstr "Добавить эмодзи" -#: src/Content/Conversation.php:378 src/Module/Item/Compose.php:202 -#: src/Object/Post.php:1164 +#: src/Content/Conversation.php:364 src/Module/Item/Compose.php:188 +#: src/Object/Post.php:1150 msgid "Content Warning" msgstr "Предупреждение о контенте (CW)" -#: src/Content/Conversation.php:379 src/Module/Item/Compose.php:203 -#: src/Module/Post/Edit.php:176 src/Object/Post.php:1167 +#: src/Content/Conversation.php:365 src/Module/Item/Compose.php:189 +#: src/Module/Post/Edit.php:162 src/Object/Post.php:1153 msgid "Code" msgstr "Код" -#: src/Content/Conversation.php:380 src/Module/Item/Compose.php:204 -#: src/Object/Post.php:1168 +#: src/Content/Conversation.php:366 src/Module/Item/Compose.php:190 +#: src/Object/Post.php:1154 msgid "Image" msgstr "Изображение / Фото" -#: src/Content/Conversation.php:381 src/Module/Item/Compose.php:205 -#: src/Module/Post/Edit.php:177 src/Object/Post.php:1169 +#: src/Content/Conversation.php:367 src/Module/Item/Compose.php:191 +#: src/Module/Post/Edit.php:163 src/Object/Post.php:1155 msgid "Link" msgstr "Ссылка" -#: src/Content/Conversation.php:382 src/Module/Item/Compose.php:206 -#: src/Module/Post/Edit.php:178 src/Object/Post.php:1170 +#: src/Content/Conversation.php:368 src/Module/Item/Compose.php:192 +#: src/Module/Post/Edit.php:164 src/Object/Post.php:1156 msgid "Link or Media" msgstr "Ссылка или медиа" -#: src/Content/Conversation.php:383 +#: src/Content/Conversation.php:369 msgid "Video" msgstr "Видео" -#: src/Content/Conversation.php:384 src/Module/Item/Compose.php:209 -#: src/Module/Post/Edit.php:141 +#: src/Content/Conversation.php:370 src/Module/Item/Compose.php:195 +#: src/Module/Post/Edit.php:127 msgid "Set your location" msgstr "Задать ваше местоположение" -#: src/Content/Conversation.php:385 src/Module/Post/Edit.php:142 +#: src/Content/Conversation.php:371 src/Module/Post/Edit.php:128 msgid "set location" msgstr "установить местонахождение" -#: src/Content/Conversation.php:386 src/Module/Post/Edit.php:143 +#: src/Content/Conversation.php:372 src/Module/Post/Edit.php:129 msgid "Clear browser location" msgstr "Очистить местонахождение браузера" -#: src/Content/Conversation.php:387 src/Module/Post/Edit.php:144 +#: src/Content/Conversation.php:373 src/Module/Post/Edit.php:130 msgid "clear location" msgstr "убрать местонахождение" -#: src/Content/Conversation.php:389 src/Module/Item/Compose.php:214 -#: src/Module/Post/Edit.php:157 +#: src/Content/Conversation.php:375 src/Module/Item/Compose.php:200 +#: src/Module/Post/Edit.php:143 msgid "Set title" msgstr "Установить заголовок" -#: src/Content/Conversation.php:391 src/Module/Item/Compose.php:215 -#: src/Module/Post/Edit.php:159 +#: src/Content/Conversation.php:377 src/Module/Item/Compose.php:201 +#: src/Module/Post/Edit.php:145 msgid "Categories (comma-separated list)" msgstr "Категории (список через запятую)" -#: src/Content/Conversation.php:396 src/Module/Item/Compose.php:231 +#: src/Content/Conversation.php:382 src/Module/Item/Compose.php:217 msgid "Scheduled at" msgstr "Запланировано на" -#: src/Content/Conversation.php:401 src/Module/Post/Edit.php:146 +#: src/Content/Conversation.php:387 src/Module/Post/Edit.php:132 msgid "Permission settings" msgstr "Настройки разрешений" -#: src/Content/Conversation.php:410 src/Module/Post/Edit.php:155 +#: src/Content/Conversation.php:396 src/Module/Post/Edit.php:141 msgid "Public post" msgstr "Публичная запись" -#: src/Content/Conversation.php:424 src/Content/Widget/VCard.php:131 -#: src/Model/Profile.php:476 src/Module/Admin/Logs/View.php:94 -#: src/Module/Post/Edit.php:181 +#: src/Content/Conversation.php:410 src/Content/Widget/VCard.php:117 +#: src/Model/Profile.php:462 src/Module/Admin/Logs/View.php:80 +#: src/Module/Post/Edit.php:167 msgid "Message" msgstr "Написать" -#: src/Content/Conversation.php:425 src/Module/Post/Edit.php:182 -#: src/Module/Settings/TwoFactor/Trusted.php:143 +#: src/Content/Conversation.php:411 src/Module/Post/Edit.php:168 +#: src/Module/Settings/TwoFactor/Trusted.php:129 msgid "Browser" msgstr "Браузер" -#: src/Content/Conversation.php:427 src/Module/Post/Edit.php:185 +#: src/Content/Conversation.php:413 src/Module/Post/Edit.php:171 msgid "Open Compose page" msgstr "Развернуть редактор" -#: src/Content/Conversation.php:594 +#: src/Content/Conversation.php:580 msgid "remove" msgstr "удалить" -#: src/Content/Conversation.php:598 +#: src/Content/Conversation.php:584 msgid "Delete Selected Items" msgstr "Удалить выбранные позиции" -#: src/Content/Conversation.php:726 src/Content/Conversation.php:729 -#: src/Content/Conversation.php:732 src/Content/Conversation.php:735 -#: src/Content/Conversation.php:738 +#: src/Content/Conversation.php:712 src/Content/Conversation.php:715 +#: src/Content/Conversation.php:718 src/Content/Conversation.php:721 +#: src/Content/Conversation.php:724 #, php-format msgid "You had been addressed (%s)." msgstr "К вам обратились (%s)." -#: src/Content/Conversation.php:741 +#: src/Content/Conversation.php:727 #, php-format msgid "You are following %s." msgstr "Вы подписаны на %s." -#: src/Content/Conversation.php:746 +#: src/Content/Conversation.php:732 #, php-format msgid "You subscribed to %s." msgstr "Вы подписаны на %s." -#: src/Content/Conversation.php:748 +#: src/Content/Conversation.php:734 msgid "You subscribed to one or more tags in this post." msgstr "Вы подписаны на один или несколько тегов в этой записи." -#: src/Content/Conversation.php:768 +#: src/Content/Conversation.php:754 #, php-format msgid "%s reshared this." msgstr "%s поделился этим." -#: src/Content/Conversation.php:770 +#: src/Content/Conversation.php:756 msgid "Reshared" msgstr "Репост" -#: src/Content/Conversation.php:770 +#: src/Content/Conversation.php:756 #, php-format msgid "Reshared by %s <%s>" msgstr "Репост от %s <%s>" -#: src/Content/Conversation.php:773 +#: src/Content/Conversation.php:759 #, php-format msgid "%s is participating in this thread." msgstr "%s участвует в этом обсуждении" -#: src/Content/Conversation.php:776 +#: src/Content/Conversation.php:762 msgid "Stored for general reasons" msgstr "Загружено по необходимости" -#: src/Content/Conversation.php:779 +#: src/Content/Conversation.php:765 msgid "Global post" msgstr "Глобальная запись" -#: src/Content/Conversation.php:782 +#: src/Content/Conversation.php:768 msgid "Sent via an relay server" msgstr "Прислано через релей" -#: src/Content/Conversation.php:782 +#: src/Content/Conversation.php:768 #, php-format msgid "Sent via the relay server %s <%s>" msgstr "Прислано через релей %s <%s>" -#: src/Content/Conversation.php:785 +#: src/Content/Conversation.php:771 msgid "Fetched" msgstr "Загружено" -#: src/Content/Conversation.php:785 +#: src/Content/Conversation.php:771 #, php-format msgid "Fetched because of %s <%s>" msgstr "Загружено из-за %s <%s>" -#: src/Content/Conversation.php:788 +#: src/Content/Conversation.php:774 msgid "Stored because of a child post to complete this thread." msgstr "Загружено из-за комментария в этой ветке." -#: src/Content/Conversation.php:791 +#: src/Content/Conversation.php:777 msgid "Local delivery" msgstr "Местная доставка" -#: src/Content/Conversation.php:794 +#: src/Content/Conversation.php:780 msgid "Stored because of your activity (like, comment, star, ...)" msgstr "Загружено из-за ваших действий (лайк, комментарий, ...)" -#: src/Content/Conversation.php:797 +#: src/Content/Conversation.php:783 msgid "Distributed" msgstr "Распространено" -#: src/Content/Conversation.php:800 +#: src/Content/Conversation.php:786 msgid "Pushed to us" msgstr "Прислано нам" -#: src/Content/Conversation.php:1518 src/Object/Post.php:261 +#: src/Content/Conversation.php:1504 src/Object/Post.php:247 msgid "Pinned item" msgstr "Закреплённая запись" -#: src/Content/Conversation.php:1535 src/Object/Post.php:555 -#: src/Object/Post.php:556 +#: src/Content/Conversation.php:1521 src/Object/Post.php:541 +#: src/Object/Post.php:542 #, php-format msgid "View %s's profile @ %s" msgstr "Просмотреть профиль %s [@ %s]" -#: src/Content/Conversation.php:1549 src/Object/Post.php:543 +#: src/Content/Conversation.php:1535 src/Object/Post.php:529 msgid "Categories:" msgstr "Категории:" -#: src/Content/Conversation.php:1550 src/Object/Post.php:544 +#: src/Content/Conversation.php:1536 src/Object/Post.php:530 msgid "Filed under:" msgstr "В рубрике:" -#: src/Content/Conversation.php:1558 src/Object/Post.php:570 +#: src/Content/Conversation.php:1544 src/Object/Post.php:556 #, php-format msgid "%s from %s" msgstr "%s из %s" -#: src/Content/Conversation.php:1574 +#: src/Content/Conversation.php:1560 msgid "View in context" msgstr "Смотреть в контексте" -#: src/Content/Conversation/Factory/Channel.php:42 +#: src/Content/Conversation/Factory/Channel.php:28 msgid "For you" msgstr "Для Вас" -#: src/Content/Conversation/Factory/Channel.php:42 +#: src/Content/Conversation/Factory/Channel.php:28 msgid "Posts from contacts you interact with and who interact with you" msgstr "Записи от людей, с которыми вы часто общаетесь" -#: src/Content/Conversation/Factory/Channel.php:43 +#: src/Content/Conversation/Factory/Channel.php:29 msgid "Discover" msgstr "Интересное" -#: src/Content/Conversation/Factory/Channel.php:43 +#: src/Content/Conversation/Factory/Channel.php:29 msgid "Posts from accounts that you don't follow, but that you might like." msgstr "Записи не из ваших подписок, которые могут понравиться. " -#: src/Content/Conversation/Factory/Channel.php:44 +#: src/Content/Conversation/Factory/Channel.php:30 msgid "What's Hot" msgstr "Популярное" -#: src/Content/Conversation/Factory/Channel.php:44 +#: src/Content/Conversation/Factory/Channel.php:30 msgid "Posts with a lot of interactions" msgstr "Записи с большой активностью" -#: src/Content/Conversation/Factory/Channel.php:45 +#: src/Content/Conversation/Factory/Channel.php:31 #, php-format msgid "Posts in %s" msgstr "Записи от %s" -#: src/Content/Conversation/Factory/Channel.php:46 +#: src/Content/Conversation/Factory/Channel.php:32 msgid "Posts from your followers that you don't follow" msgstr "Записи от ваших подписчиков, на которых вы не подписаны" -#: src/Content/Conversation/Factory/Channel.php:47 +#: src/Content/Conversation/Factory/Channel.php:33 msgid "Sharers of sharers" msgstr "Друзья друзей" -#: src/Content/Conversation/Factory/Channel.php:47 +#: src/Content/Conversation/Factory/Channel.php:33 msgid "Posts from accounts that are followed by accounts that you follow" msgstr "Записи от людей, на которых подписаны ваши контакты" -#: src/Content/Conversation/Factory/Channel.php:48 +#: src/Content/Conversation/Factory/Channel.php:34 msgid "Quiet sharers" msgstr "Немногословные" -#: src/Content/Conversation/Factory/Channel.php:48 +#: src/Content/Conversation/Factory/Channel.php:34 msgid "Posts from accounts that you follow but who don't post very often" msgstr "Записи ваших друзей, которые пишут не слишком часто" -#: src/Content/Conversation/Factory/Channel.php:49 -#: src/Module/Settings/Channels.php:199 src/Module/Settings/Channels.php:220 +#: src/Content/Conversation/Factory/Channel.php:35 +#: src/Module/Settings/Channels.php:185 src/Module/Settings/Channels.php:206 msgid "Images" msgstr "Картинки" -#: src/Content/Conversation/Factory/Channel.php:49 +#: src/Content/Conversation/Factory/Channel.php:35 msgid "Posts with images" msgstr "Записи с изображениями" -#: src/Content/Conversation/Factory/Channel.php:50 -#: src/Module/Settings/Channels.php:201 src/Module/Settings/Channels.php:222 +#: src/Content/Conversation/Factory/Channel.php:36 +#: src/Module/Settings/Channels.php:187 src/Module/Settings/Channels.php:208 msgid "Audio" msgstr "Аудио" -#: src/Content/Conversation/Factory/Channel.php:50 +#: src/Content/Conversation/Factory/Channel.php:36 msgid "Posts with audio" msgstr "Записи с аудио" -#: src/Content/Conversation/Factory/Channel.php:51 -#: src/Module/Settings/Channels.php:200 src/Module/Settings/Channels.php:221 +#: src/Content/Conversation/Factory/Channel.php:37 +#: src/Module/Settings/Channels.php:186 src/Module/Settings/Channels.php:207 msgid "Videos" msgstr "Видео" -#: src/Content/Conversation/Factory/Channel.php:51 +#: src/Content/Conversation/Factory/Channel.php:37 msgid "Posts with videos" msgstr "Записи с видео" -#: src/Content/Conversation/Factory/Community.php:43 +#: src/Content/Conversation/Factory/Community.php:29 msgid "Local Community" msgstr "Местное сообщество" -#: src/Content/Conversation/Factory/Community.php:43 +#: src/Content/Conversation/Factory/Community.php:29 msgid "Posts from local users on this server" msgstr "Записи пользователей с этого сервера" -#: src/Content/Conversation/Factory/Community.php:47 -#: src/Module/Settings/Channels.php:150 src/Module/Settings/Channels.php:155 +#: src/Content/Conversation/Factory/Community.php:33 +#: src/Module/Settings/Channels.php:136 src/Module/Settings/Channels.php:141 msgid "Global Community" msgstr "Глобальное сообщество" -#: src/Content/Conversation/Factory/Community.php:47 +#: src/Content/Conversation/Factory/Community.php:33 msgid "Posts from users of the whole federated network" msgstr "Записи пользователей со всей федеративной сети" -#: src/Content/Conversation/Factory/Network.php:38 -#: src/Module/Settings/Channels.php:156 +#: src/Content/Conversation/Factory/Network.php:24 +#: src/Module/Settings/Channels.php:142 msgid "Latest Activity" msgstr "Вся активность" -#: src/Content/Conversation/Factory/Network.php:38 +#: src/Content/Conversation/Factory/Network.php:24 msgid "Sort by latest activity" msgstr "Отсортировать по свежей активности" -#: src/Content/Conversation/Factory/Network.php:39 -#: src/Module/Settings/Channels.php:157 +#: src/Content/Conversation/Factory/Network.php:25 +#: src/Module/Settings/Channels.php:143 msgid "Latest Posts" msgstr "Новые записи" -#: src/Content/Conversation/Factory/Network.php:39 +#: src/Content/Conversation/Factory/Network.php:25 msgid "Sort by post received date" msgstr "Отсортировать по времени получения записей" -#: src/Content/Conversation/Factory/Network.php:40 -#: src/Module/Settings/Channels.php:158 +#: src/Content/Conversation/Factory/Network.php:26 +#: src/Module/Settings/Channels.php:144 msgid "Latest Creation" msgstr "По времени" -#: src/Content/Conversation/Factory/Network.php:40 +#: src/Content/Conversation/Factory/Network.php:26 msgid "Sort by post creation date" msgstr "Отсортировать по времени создания записей" -#: src/Content/Conversation/Factory/Network.php:41 -#: src/Module/Settings/Profile/Index.php:265 +#: src/Content/Conversation/Factory/Network.php:27 +#: src/Module/Settings/Profile/Index.php:251 msgid "Personal" msgstr "Личные" -#: src/Content/Conversation/Factory/Network.php:41 +#: src/Content/Conversation/Factory/Network.php:27 msgid "Posts that mention or involve you" msgstr "Записи, которые упоминают вас или в которых вы участвуете" -#: src/Content/Conversation/Factory/Network.php:42 src/Object/Post.php:411 +#: src/Content/Conversation/Factory/Network.php:28 src/Object/Post.php:397 msgid "Starred" msgstr "Избранное" -#: src/Content/Conversation/Factory/Network.php:42 +#: src/Content/Conversation/Factory/Network.php:28 msgid "Favourite Posts" msgstr "Избранные записи" -#: src/Content/Feature.php:107 +#: src/Content/Feature.php:93 msgid "General Features" msgstr "Основные возможности" -#: src/Content/Feature.php:109 +#: src/Content/Feature.php:95 msgid "Photo Location" msgstr "Место фотографирования" -#: src/Content/Feature.php:109 +#: src/Content/Feature.php:95 msgid "" "Photo metadata is normally stripped. This extracts the location (if present)" " prior to stripping metadata and links it to a map." msgstr "Метаданные фотографий обычно вырезаются. Эта настройка получает местоположение (если есть) до вырезки метаданных и связывает с координатами на карте." -#: src/Content/Feature.php:110 +#: src/Content/Feature.php:96 msgid "Display the community in the navigation" msgstr "Показывать сообщество в главном меню" -#: src/Content/Feature.php:110 +#: src/Content/Feature.php:96 msgid "" "If enabled, the community can be accessed via the navigation menu. " "Independent from this setting, the community timelines can always be " "accessed via the channels." msgstr "Если включено, ленты сообщества будут отображаться в главном навигационном меню. Независимо от этой настройки, ленты сообществ так же всегда доступны в меню каналов." -#: src/Content/Feature.php:115 +#: src/Content/Feature.php:101 msgid "Post Composition Features" msgstr "Составление сообщений" -#: src/Content/Feature.php:116 +#: src/Content/Feature.php:102 msgid "Explicit Mentions" msgstr "Явные отметки" -#: src/Content/Feature.php:116 +#: src/Content/Feature.php:102 msgid "" "Add explicit mentions to comment box for manual control over who gets " "mentioned in replies." msgstr "Вставлять отметки пользователей в поле комментариев, чтобы иметь ручной контроль над тем, кто будет упомянут в ответе." -#: src/Content/Feature.php:117 +#: src/Content/Feature.php:103 msgid "Add an abstract from ActivityPub content warnings" msgstr "Добавлять abstract для записей ActivityPub с content warning" -#: src/Content/Feature.php:117 +#: src/Content/Feature.php:103 msgid "" "Add an abstract when commenting on ActivityPub posts with a content warning." " Abstracts are displayed as content warning on systems like Mastodon or " "Pleroma." msgstr "Добавлять сокращение abstract при комментировании записей ActivityPub с content warning. Элементы abstract отображаются как тэги content warning на системах Mastodon и Pleroma." -#: src/Content/Feature.php:122 +#: src/Content/Feature.php:108 msgid "Post/Comment Tools" msgstr "Инструменты записей/комментариев" -#: src/Content/Feature.php:123 +#: src/Content/Feature.php:109 msgid "Post Categories" msgstr "Категории записей" -#: src/Content/Feature.php:123 +#: src/Content/Feature.php:109 msgid "Add categories to your posts" msgstr "Добавить категории для ваших записей" -#: src/Content/Feature.php:128 +#: src/Content/Feature.php:114 msgid "Network Widgets" msgstr "Виджеты лент" -#: src/Content/Feature.php:129 src/Content/Widget.php:216 -#: src/Model/Circle.php:601 src/Module/Contact.php:406 -#: src/Module/Welcome.php:76 +#: src/Content/Feature.php:115 src/Content/Widget.php:194 +#: src/Model/Circle.php:587 src/Module/Contact.php:381 +#: src/Module/Welcome.php:62 msgid "Circles" msgstr "Круги" -#: src/Content/Feature.php:129 +#: src/Content/Feature.php:115 msgid "" "Display posts that have been created by accounts of the selected circle." msgstr "Показывать записи, созданные контактами выбранных кругов." -#: src/Content/Feature.php:130 src/Content/GroupManager.php:147 -#: src/Content/Nav.php:278 src/Content/Text/HTML.php:882 -#: src/Content/Widget.php:538 src/Model/User.php:1413 +#: src/Content/Feature.php:116 src/Content/GroupManager.php:133 +#: src/Content/Nav.php:264 src/Content/Text/HTML.php:868 +#: src/Content/Widget.php:516 src/Model/User.php:1390 msgid "Groups" msgstr "Группы" -#: src/Content/Feature.php:130 +#: src/Content/Feature.php:116 msgid "Display posts that have been distributed by the selected group." msgstr "Показывать записи из выбранных групп." -#: src/Content/Feature.php:131 src/Content/Widget.php:507 +#: src/Content/Feature.php:117 src/Content/Widget.php:485 msgid "Archives" msgstr "Архивы" -#: src/Content/Feature.php:131 +#: src/Content/Feature.php:117 msgid "Display an archive where posts can be selected by month and year." msgstr "Показывать архив записей по месяцам и годам." -#: src/Content/Feature.php:132 src/Content/Widget.php:289 +#: src/Content/Feature.php:118 src/Content/Widget.php:267 msgid "Protocols" msgstr "Протоколы" -#: src/Content/Feature.php:132 +#: src/Content/Feature.php:118 msgid "Display posts with the selected protocols." msgstr "Показывать записи по выбранным протоколам." -#: src/Content/Feature.php:133 src/Content/Widget.php:544 -#: src/Module/Settings/Account.php:447 +#: src/Content/Feature.php:119 src/Content/Widget.php:522 +#: src/Module/Settings/Account.php:433 msgid "Account Types" msgstr "Тип учетной записи" -#: src/Content/Feature.php:133 +#: src/Content/Feature.php:119 msgid "Display posts done by accounts with the selected account type." msgstr "Показывать записи от выбранных типов контактов." -#: src/Content/Feature.php:134 src/Content/Widget.php:593 -#: src/Module/Admin/Site.php:474 src/Module/BaseSettings.php:125 -#: src/Module/Settings/Channels.php:225 src/Module/Settings/Display.php:315 +#: src/Content/Feature.php:120 src/Content/Widget.php:571 +#: src/Module/Admin/Site.php:464 src/Module/BaseSettings.php:111 +#: src/Module/Settings/Channels.php:211 src/Module/Settings/Display.php:301 msgid "Channels" msgstr "Каналы" -#: src/Content/Feature.php:134 +#: src/Content/Feature.php:120 msgid "Display posts in the system channels and user defined channels." msgstr "Показывать записи из встроенных и пользовательских каналов." -#: src/Content/Feature.php:135 src/Content/Widget/SavedSearches.php:60 +#: src/Content/Feature.php:121 src/Content/Widget/SavedSearches.php:46 msgid "Saved Searches" msgstr "Сохранённые поиски" -#: src/Content/Feature.php:135 +#: src/Content/Feature.php:121 msgid "Display posts that contain subscribed hashtags." msgstr "Показывать записи с тегами, на которые есть подписка." -#: src/Content/Feature.php:136 src/Content/Widget.php:319 +#: src/Content/Feature.php:122 src/Content/Widget.php:297 msgid "Saved Folders" msgstr "Сохранённые папки" -#: src/Content/Feature.php:136 +#: src/Content/Feature.php:122 msgid "Display a list of folders in which posts are stored." msgstr "Показывать папки, по которым разложены записи." -#: src/Content/Feature.php:137 src/Module/Conversation/Timeline.php:200 +#: src/Content/Feature.php:123 src/Module/Conversation/Timeline.php:186 msgid "Own Contacts" msgstr "Свои контакты" -#: src/Content/Feature.php:137 +#: src/Content/Feature.php:123 msgid "" "Include or exclude posts from subscribed accounts. This widget is not " "visible on all channels." msgstr "Включить или скрыть записи от ваших контактов. Этот виджет доступен не для всех каналов." -#: src/Content/Feature.php:138 +#: src/Content/Feature.php:124 msgid "Trending Tags" msgstr "Популярные тэги" -#: src/Content/Feature.php:138 +#: src/Content/Feature.php:124 msgid "Display a list of the most popular tags in recent public posts." msgstr "Показывать список самых популярных тегов из недавних публичных записей." -#: src/Content/Feature.php:143 +#: src/Content/Feature.php:129 msgid "Advanced Profile Settings" msgstr "Расширенные настройки профиля" -#: src/Content/Feature.php:144 +#: src/Content/Feature.php:130 msgid "Tag Cloud" msgstr "Облако тэгов" -#: src/Content/Feature.php:144 +#: src/Content/Feature.php:130 msgid "Provide a personal tag cloud on your profile page" msgstr "Показывать ваше личное облако тэгов в вашем профиле" -#: src/Content/Feature.php:145 +#: src/Content/Feature.php:131 msgid "Display Membership Date" msgstr "Показывать дату регистрации" -#: src/Content/Feature.php:145 +#: src/Content/Feature.php:131 msgid "Display membership date in profile" msgstr "Дата вашей регистрации будет отображаться в вашем профиле" -#: src/Content/Feature.php:150 +#: src/Content/Feature.php:136 msgid "Advanced Calendar Settings" msgstr "Дополнительные настройки календаря" -#: src/Content/Feature.php:151 +#: src/Content/Feature.php:137 msgid "Allow anonymous access to your calendar" msgstr "Разрешить анонимный доступ к вашему календарю" -#: src/Content/Feature.php:151 +#: src/Content/Feature.php:137 msgid "" "Allows anonymous visitors to consult your calendar and your public events. " "Contact birthday events are private to you." msgstr "Разрешает анонимным пользователям просматривать ваш календарь и публичные мероприятия. Дни рождения контактов видны только вам." -#: src/Content/GroupManager.php:149 +#: src/Content/GroupManager.php:135 msgid "External link to group" msgstr "Внешняя ссылка на группу" -#: src/Content/GroupManager.php:153 src/Content/Widget.php:513 +#: src/Content/GroupManager.php:139 src/Content/Widget.php:491 msgid "show less" msgstr "показать меньше" -#: src/Content/GroupManager.php:154 src/Content/Widget.php:411 -#: src/Content/Widget.php:514 +#: src/Content/GroupManager.php:140 src/Content/Widget.php:389 +#: src/Content/Widget.php:492 msgid "show more" msgstr "показать больше" -#: src/Content/GroupManager.php:155 +#: src/Content/GroupManager.php:141 msgid "Create new group" msgstr "Создать новую группу" -#: src/Content/Item.php:331 src/Model/Item.php:3304 +#: src/Content/Item.php:317 src/Model/Item.php:3272 msgid "event" msgstr "мероприятие" -#: src/Content/Item.php:334 src/Content/Item.php:344 +#: src/Content/Item.php:320 src/Content/Item.php:330 msgid "status" msgstr "статус" -#: src/Content/Item.php:340 src/Model/Item.php:3306 -#: src/Module/Post/Tag/Add.php:123 +#: src/Content/Item.php:326 src/Model/Item.php:3274 +#: src/Module/Post/Tag/Add.php:109 msgid "photo" msgstr "фото" -#: src/Content/Item.php:354 src/Module/Post/Tag/Add.php:141 +#: src/Content/Item.php:340 src/Module/Post/Tag/Add.php:127 #, php-format msgid "%1$s tagged %2$s's %3$s with %4$s" msgstr "%1$s tagged %2$s's %3$s в %4$s" -#: src/Content/Item.php:428 view/theme/frio/theme.php:265 +#: src/Content/Item.php:414 view/theme/frio/theme.php:253 msgid "Follow Thread" msgstr "Подписаться на обсуждение" -#: src/Content/Item.php:429 src/Model/Contact.php:1256 +#: src/Content/Item.php:415 src/Model/Contact.php:1249 msgid "View Status" msgstr "Просмотреть статус" -#: src/Content/Item.php:430 src/Content/Item.php:453 -#: src/Model/Contact.php:1191 src/Model/Contact.php:1247 -#: src/Model/Contact.php:1257 src/Module/Directory.php:158 -#: src/Module/Settings/Profile/Index.php:264 +#: src/Content/Item.php:416 src/Content/Item.php:439 +#: src/Model/Contact.php:1184 src/Model/Contact.php:1240 +#: src/Model/Contact.php:1250 src/Module/Directory.php:144 +#: src/Module/Settings/Profile/Index.php:250 msgid "View Profile" msgstr "Просмотреть профиль" -#: src/Content/Item.php:431 src/Model/Contact.php:1258 +#: src/Content/Item.php:417 src/Model/Contact.php:1251 msgid "View Photos" msgstr "Просмотреть фото" -#: src/Content/Item.php:432 src/Model/Contact.php:1225 -#: src/Model/Profile.php:461 +#: src/Content/Item.php:418 src/Model/Contact.php:1218 +#: src/Model/Profile.php:447 msgid "Network Posts" msgstr "Записи сети" -#: src/Content/Item.php:433 src/Model/Contact.php:1249 -#: src/Model/Contact.php:1260 +#: src/Content/Item.php:419 src/Model/Contact.php:1242 +#: src/Model/Contact.php:1253 msgid "View Contact" msgstr "Просмотреть контакт" -#: src/Content/Item.php:434 src/Model/Contact.php:1261 +#: src/Content/Item.php:420 src/Model/Contact.php:1254 msgid "Send PM" msgstr "Отправить ЛС" -#: src/Content/Item.php:435 src/Module/Contact.php:474 -#: src/Module/Contact/Profile.php:532 -#: src/Module/Moderation/Blocklist/Contact.php:116 -#: src/Module/Moderation/Users/Active.php:137 -#: src/Module/Moderation/Users/Index.php:152 +#: src/Content/Item.php:421 src/Module/Contact.php:449 +#: src/Module/Contact/Profile.php:518 +#: src/Module/Moderation/Blocklist/Contact.php:102 +#: src/Module/Moderation/Users/Active.php:123 +#: src/Module/Moderation/Users/Index.php:138 msgid "Block" msgstr "Заблокировать" -#: src/Content/Item.php:436 src/Module/Contact.php:475 -#: src/Module/Contact/Profile.php:540 -#: src/Module/Notifications/Introductions.php:140 -#: src/Module/Notifications/Introductions.php:212 -#: src/Module/Notifications/Notification.php:89 +#: src/Content/Item.php:422 src/Module/Contact.php:450 +#: src/Module/Contact/Profile.php:526 +#: src/Module/Notifications/Introductions.php:126 +#: src/Module/Notifications/Introductions.php:198 +#: src/Module/Notifications/Notification.php:75 msgid "Ignore" msgstr "Игнорировать" -#: src/Content/Item.php:437 src/Module/Contact.php:476 -#: src/Module/Contact/Profile.php:548 +#: src/Content/Item.php:423 src/Module/Contact.php:451 +#: src/Module/Contact/Profile.php:534 msgid "Collapse" msgstr "Сворачивать" -#: src/Content/Item.php:438 src/Object/Post.php:302 +#: src/Content/Item.php:424 src/Object/Post.php:288 #, php-format msgid "Ignore %s server" msgstr "Игнорировать сервер %s " -#: src/Content/Item.php:442 src/Module/Settings/Channels.php:202 -#: src/Module/Settings/Channels.php:223 src/Object/Post.php:516 +#: src/Content/Item.php:428 src/Module/Settings/Channels.php:188 +#: src/Module/Settings/Channels.php:209 src/Object/Post.php:502 msgid "Languages" msgstr "Языки" -#: src/Content/Item.php:445 src/Object/Post.php:596 +#: src/Content/Item.php:431 src/Object/Post.php:582 msgid "Search Text" msgstr "Текст поиска" -#: src/Content/Item.php:450 src/Content/Widget.php:80 -#: src/Model/Contact.php:1250 src/Model/Contact.php:1262 -#: src/Module/Contact/Follow.php:167 view/theme/vier/theme.php:195 +#: src/Content/Item.php:436 src/Content/Widget.php:66 +#: src/Model/Contact.php:1243 src/Model/Contact.php:1255 +#: src/Module/Contact/Follow.php:148 view/theme/vier/theme.php:183 msgid "Connect/Follow" msgstr "Подключиться/Подписаться" -#: src/Content/Item.php:884 +#: src/Content/Item.php:870 msgid "Unable to fetch user." msgstr "Ошибка получения информации пользователя" -#: src/Content/Nav.php:121 +#: src/Content/Nav.php:107 msgid "Nothing new here" msgstr "Ничего нового здесь" -#: src/Content/Nav.php:125 src/Module/Special/HTTPException.php:77 +#: src/Content/Nav.php:111 src/Module/Special/HTTPException.php:63 msgid "Go back" msgstr "Назад" -#: src/Content/Nav.php:126 +#: src/Content/Nav.php:112 msgid "Clear notifications" msgstr "Стереть уведомления" -#: src/Content/Nav.php:127 src/Content/Text/HTML.php:869 +#: src/Content/Nav.php:113 src/Content/Text/HTML.php:855 msgid "@name, !group, #tags, content" msgstr "@имя, !группа, #тег, контент" -#: src/Content/Nav.php:222 src/Module/Security/Login.php:161 +#: src/Content/Nav.php:208 src/Module/Security/Login.php:147 msgid "Logout" msgstr "Выход" -#: src/Content/Nav.php:222 +#: src/Content/Nav.php:208 msgid "End this session" msgstr "Завершить эту сессию" -#: src/Content/Nav.php:224 src/Module/Bookmarklet.php:44 -#: src/Module/Security/Login.php:162 +#: src/Content/Nav.php:210 src/Module/Bookmarklet.php:30 +#: src/Module/Security/Login.php:148 msgid "Login" msgstr "Вход" -#: src/Content/Nav.php:224 +#: src/Content/Nav.php:210 msgid "Sign in" msgstr "Вход" -#: src/Content/Nav.php:229 src/Module/BaseProfile.php:57 -#: src/Module/Contact.php:518 +#: src/Content/Nav.php:215 src/Module/BaseProfile.php:43 +#: src/Module/Contact.php:493 msgid "Conversations" msgstr "Записи" -#: src/Content/Nav.php:229 +#: src/Content/Nav.php:215 msgid "Conversations you started" msgstr "Ваши записи" -#: src/Content/Nav.php:230 src/Module/BaseProfile.php:49 -#: src/Module/BaseSettings.php:98 src/Module/Contact.php:510 -#: src/Module/Contact/Profile.php:439 src/Module/Profile/Profile.php:270 -#: src/Module/Welcome.php:57 view/theme/frio/theme.php:233 +#: src/Content/Nav.php:216 src/Module/BaseProfile.php:35 +#: src/Module/BaseSettings.php:84 src/Module/Contact.php:485 +#: src/Module/Contact/Profile.php:425 src/Module/Profile/Profile.php:256 +#: src/Module/Welcome.php:43 view/theme/frio/theme.php:221 msgid "Profile" msgstr "Профиль" -#: src/Content/Nav.php:230 view/theme/frio/theme.php:233 +#: src/Content/Nav.php:216 view/theme/frio/theme.php:221 msgid "Your profile page" msgstr "Информация о вас" -#: src/Content/Nav.php:231 src/Module/BaseProfile.php:65 -#: src/Module/Media/Photo/Browser.php:74 view/theme/frio/theme.php:237 +#: src/Content/Nav.php:217 src/Module/BaseProfile.php:51 +#: src/Module/Media/Photo/Browser.php:60 view/theme/frio/theme.php:225 msgid "Photos" msgstr "Фото" -#: src/Content/Nav.php:231 view/theme/frio/theme.php:237 +#: src/Content/Nav.php:217 view/theme/frio/theme.php:225 msgid "Your photos" msgstr "Ваши фотографии" -#: src/Content/Nav.php:232 src/Module/BaseProfile.php:73 -#: src/Module/BaseProfile.php:76 src/Module/Contact.php:534 -#: view/theme/frio/theme.php:238 +#: src/Content/Nav.php:218 src/Module/BaseProfile.php:59 +#: src/Module/BaseProfile.php:62 src/Module/Contact.php:509 +#: view/theme/frio/theme.php:226 msgid "Media" msgstr "Медиа" -#: src/Content/Nav.php:232 view/theme/frio/theme.php:238 +#: src/Content/Nav.php:218 view/theme/frio/theme.php:226 msgid "Your postings with media" msgstr "Ваши записи с фото и видео" -#: src/Content/Nav.php:233 src/Content/Nav.php:293 -#: src/Module/BaseProfile.php:85 src/Module/BaseProfile.php:88 -#: src/Module/BaseProfile.php:96 src/Module/BaseProfile.php:99 -#: src/Module/Settings/Display.php:316 view/theme/frio/theme.php:239 -#: view/theme/frio/theme.php:243 +#: src/Content/Nav.php:219 src/Content/Nav.php:279 +#: src/Module/BaseProfile.php:71 src/Module/BaseProfile.php:74 +#: src/Module/BaseProfile.php:82 src/Module/BaseProfile.php:85 +#: src/Module/Settings/Display.php:302 view/theme/frio/theme.php:227 +#: view/theme/frio/theme.php:231 msgid "Calendar" msgstr "Календарь" -#: src/Content/Nav.php:233 view/theme/frio/theme.php:239 +#: src/Content/Nav.php:219 view/theme/frio/theme.php:227 msgid "Your calendar" msgstr "Ваш календарь" -#: src/Content/Nav.php:234 +#: src/Content/Nav.php:220 msgid "Personal notes" msgstr "Личные заметки" -#: src/Content/Nav.php:234 +#: src/Content/Nav.php:220 msgid "Your personal notes" msgstr "Ваши личные заметки" -#: src/Content/Nav.php:251 src/Content/Nav.php:308 +#: src/Content/Nav.php:237 src/Content/Nav.php:294 msgid "Home" msgstr "Мой профиль" -#: src/Content/Nav.php:251 src/Module/Settings/OAuth.php:73 +#: src/Content/Nav.php:237 src/Module/Settings/OAuth.php:59 msgid "Home Page" msgstr "Главная страница" -#: src/Content/Nav.php:255 src/Module/Register.php:175 -#: src/Module/Security/Login.php:128 +#: src/Content/Nav.php:241 src/Module/Register.php:161 +#: src/Module/Security/Login.php:114 msgid "Register" msgstr "Регистрация" -#: src/Content/Nav.php:255 +#: src/Content/Nav.php:241 msgid "Create an account" msgstr "Создать аккаунт" -#: src/Content/Nav.php:261 src/Module/Help.php:67 -#: src/Module/Settings/TwoFactor/AppSpecific.php:132 -#: src/Module/Settings/TwoFactor/Index.php:139 -#: src/Module/Settings/TwoFactor/Recovery.php:110 -#: src/Module/Settings/TwoFactor/Verify.php:149 view/theme/vier/theme.php:240 +#: src/Content/Nav.php:247 src/Module/Help.php:53 +#: src/Module/Settings/TwoFactor/AppSpecific.php:118 +#: src/Module/Settings/TwoFactor/Index.php:125 +#: src/Module/Settings/TwoFactor/Recovery.php:96 +#: src/Module/Settings/TwoFactor/Verify.php:135 view/theme/vier/theme.php:228 msgid "Help" msgstr "Помощь" -#: src/Content/Nav.php:261 +#: src/Content/Nav.php:247 msgid "Help and documentation" msgstr "Помощь и документация" -#: src/Content/Nav.php:265 +#: src/Content/Nav.php:251 msgid "Apps" msgstr "Приложения" -#: src/Content/Nav.php:265 +#: src/Content/Nav.php:251 msgid "Addon applications, utilities, games" msgstr "Дополнительные приложения, утилиты, игры" -#: src/Content/Nav.php:269 src/Content/Text/HTML.php:867 -#: src/Module/Admin/Logs/View.php:88 src/Module/Search/Index.php:112 +#: src/Content/Nav.php:255 src/Content/Text/HTML.php:853 +#: src/Module/Admin/Logs/View.php:74 src/Module/Search/Index.php:98 msgid "Search" msgstr "Поиск" -#: src/Content/Nav.php:269 +#: src/Content/Nav.php:255 msgid "Search site content" msgstr "Поиск по сайту" -#: src/Content/Nav.php:272 src/Content/Text/HTML.php:876 +#: src/Content/Nav.php:258 src/Content/Text/HTML.php:862 msgid "Full Text" msgstr "Контент" -#: src/Content/Nav.php:273 src/Content/Text/HTML.php:877 -#: src/Content/Widget/TagCloud.php:68 +#: src/Content/Nav.php:259 src/Content/Text/HTML.php:863 +#: src/Content/Widget/TagCloud.php:54 msgid "Tags" msgstr "Тэги" -#: src/Content/Nav.php:274 src/Content/Nav.php:329 -#: src/Content/Text/HTML.php:878 src/Module/BaseProfile.php:127 -#: src/Module/BaseProfile.php:130 src/Module/Contact.php:432 -#: src/Module/Contact.php:542 view/theme/frio/theme.php:246 +#: src/Content/Nav.php:260 src/Content/Nav.php:315 +#: src/Content/Text/HTML.php:864 src/Module/BaseProfile.php:113 +#: src/Module/BaseProfile.php:116 src/Module/Contact.php:407 +#: src/Module/Contact.php:517 view/theme/frio/theme.php:234 msgid "Contacts" msgstr "Контакты" -#: src/Content/Nav.php:289 +#: src/Content/Nav.php:275 msgid "Community" msgstr "Сообщество" -#: src/Content/Nav.php:289 +#: src/Content/Nav.php:275 msgid "Conversations on this and other servers" msgstr "Диалоги на этом и других серверах" -#: src/Content/Nav.php:296 +#: src/Content/Nav.php:282 msgid "Directory" msgstr "Каталог" -#: src/Content/Nav.php:296 +#: src/Content/Nav.php:282 msgid "People directory" msgstr "Каталог участников" -#: src/Content/Nav.php:298 src/Module/BaseAdmin.php:85 -#: src/Module/BaseModeration.php:108 +#: src/Content/Nav.php:284 src/Module/BaseAdmin.php:71 +#: src/Module/BaseModeration.php:94 msgid "Information" msgstr "Информация" -#: src/Content/Nav.php:298 +#: src/Content/Nav.php:284 msgid "Information about this friendica instance" msgstr "Информация об этом экземпляре Friendica" -#: src/Content/Nav.php:301 src/Module/Admin/Tos.php:78 -#: src/Module/BaseAdmin.php:95 src/Module/Register.php:183 -#: src/Module/Tos.php:101 +#: src/Content/Nav.php:287 src/Module/Admin/Tos.php:64 +#: src/Module/BaseAdmin.php:81 src/Module/Register.php:169 +#: src/Module/Tos.php:87 msgid "Terms of Service" msgstr "Условия оказания услуг" -#: src/Content/Nav.php:301 +#: src/Content/Nav.php:287 msgid "Terms of Service of this Friendica instance" msgstr "Условия оказания услуг для этого узла Friendica" -#: src/Content/Nav.php:306 view/theme/frio/theme.php:242 +#: src/Content/Nav.php:292 view/theme/frio/theme.php:230 msgid "Network" msgstr "Новости" -#: src/Content/Nav.php:306 view/theme/frio/theme.php:242 +#: src/Content/Nav.php:292 view/theme/frio/theme.php:230 msgid "Conversations from your friends" msgstr "Сообщения ваших друзей" -#: src/Content/Nav.php:308 view/theme/frio/theme.php:232 +#: src/Content/Nav.php:294 view/theme/frio/theme.php:220 msgid "Your posts and conversations" msgstr "Ваши записи и диалоги" -#: src/Content/Nav.php:312 +#: src/Content/Nav.php:298 msgid "Introductions" msgstr "Запросы" -#: src/Content/Nav.php:312 +#: src/Content/Nav.php:298 msgid "Friend Requests" msgstr "Запросы на добавление в список друзей" -#: src/Content/Nav.php:313 src/Module/BaseNotifications.php:149 -#: src/Module/Notifications/Introductions.php:75 +#: src/Content/Nav.php:299 src/Module/BaseNotifications.php:135 +#: src/Module/Notifications/Introductions.php:61 msgid "Notifications" msgstr "Уведомления" -#: src/Content/Nav.php:314 +#: src/Content/Nav.php:300 msgid "See all notifications" msgstr "Посмотреть все уведомления" -#: src/Content/Nav.php:315 src/Module/Settings/Connectors.php:254 +#: src/Content/Nav.php:301 src/Module/Settings/Connectors.php:233 msgid "Mark as seen" msgstr "Отметить, как прочитанное" -#: src/Content/Nav.php:315 +#: src/Content/Nav.php:301 msgid "Mark all system notifications as seen" msgstr "Пометить все уведомления прочитанными" -#: src/Content/Nav.php:318 view/theme/frio/theme.php:244 +#: src/Content/Nav.php:304 view/theme/frio/theme.php:232 msgid "Private mail" msgstr "Личная почта" -#: src/Content/Nav.php:319 +#: src/Content/Nav.php:305 msgid "Inbox" msgstr "Входящие" -#: src/Content/Nav.php:320 +#: src/Content/Nav.php:306 msgid "Outbox" msgstr "Исходящие" -#: src/Content/Nav.php:324 +#: src/Content/Nav.php:310 msgid "Accounts" msgstr "Учётные записи" -#: src/Content/Nav.php:324 +#: src/Content/Nav.php:310 msgid "Manage other pages" msgstr "Управление другими страницами" -#: src/Content/Nav.php:327 src/Module/Admin/Addons/Details.php:114 -#: src/Module/Admin/Themes/Details.php:99 src/Module/BaseSettings.php:182 -#: src/Module/Welcome.php:52 view/theme/frio/theme.php:245 +#: src/Content/Nav.php:313 src/Module/Admin/Addons/Details.php:100 +#: src/Module/Admin/Themes/Details.php:85 src/Module/BaseSettings.php:168 +#: src/Module/Welcome.php:38 view/theme/frio/theme.php:233 msgid "Settings" msgstr "Настройки" -#: src/Content/Nav.php:327 view/theme/frio/theme.php:245 +#: src/Content/Nav.php:313 view/theme/frio/theme.php:233 msgid "Account settings" msgstr "Настройки аккаунта" -#: src/Content/Nav.php:329 view/theme/frio/theme.php:246 +#: src/Content/Nav.php:315 view/theme/frio/theme.php:234 msgid "Manage/edit friends and contacts" msgstr "Управление / редактирование друзей и контактов" -#: src/Content/Nav.php:334 src/Module/BaseAdmin.php:119 +#: src/Content/Nav.php:320 src/Module/BaseAdmin.php:105 msgid "Admin" msgstr "Администратор" -#: src/Content/Nav.php:334 +#: src/Content/Nav.php:320 msgid "Site setup and configuration" msgstr "Конфигурация сайта" -#: src/Content/Nav.php:335 src/Module/BaseModeration.php:128 -#: src/Module/Moderation/Blocklist/Contact.php:110 -#: src/Module/Moderation/Blocklist/Server/Add.php:121 -#: src/Module/Moderation/Blocklist/Server/Import.php:118 -#: src/Module/Moderation/Blocklist/Server/Index.php:95 -#: src/Module/Moderation/Item/Delete.php:61 -#: src/Module/Moderation/Reports.php:110 src/Module/Moderation/Summary.php:75 -#: src/Module/Moderation/Users/Active.php:133 -#: src/Module/Moderation/Users/Blocked.php:133 -#: src/Module/Moderation/Users/Deleted.php:80 -#: src/Module/Moderation/Users/Index.php:147 +#: src/Content/Nav.php:321 src/Module/BaseModeration.php:114 +#: src/Module/Moderation/Blocklist/Contact.php:96 +#: src/Module/Moderation/Blocklist/Server/Add.php:107 +#: src/Module/Moderation/Blocklist/Server/Import.php:102 +#: src/Module/Moderation/Blocklist/Server/Index.php:81 +#: src/Module/Moderation/Item/Delete.php:47 +#: src/Module/Moderation/Reports.php:96 src/Module/Moderation/Summary.php:61 +#: src/Module/Moderation/Users/Active.php:119 +#: src/Module/Moderation/Users/Blocked.php:119 +#: src/Module/Moderation/Users/Deleted.php:66 +#: src/Module/Moderation/Users/Index.php:133 msgid "Moderation" msgstr "Модерация" -#: src/Content/Nav.php:335 +#: src/Content/Nav.php:321 msgid "Content and user moderation" msgstr "Модерация пользователей и контента" -#: src/Content/Nav.php:338 +#: src/Content/Nav.php:324 msgid "Navigation" msgstr "Навигация" -#: src/Content/Nav.php:338 +#: src/Content/Nav.php:324 msgid "Site map" msgstr "Карта сайта" -#: src/Content/Pager.php:216 +#: src/Content/Pager.php:202 msgid "first" msgstr "первый" -#: src/Content/Pager.php:221 +#: src/Content/Pager.php:207 msgid "prev" msgstr "пред." -#: src/Content/Pager.php:276 +#: src/Content/Pager.php:262 msgid "next" msgstr "след." -#: src/Content/Pager.php:281 +#: src/Content/Pager.php:267 msgid "last" msgstr "последний" -#: src/Content/Text/BBCode.php:704 src/Content/Text/BBCode.php:1880 -#: src/Content/Text/BBCode.php:1881 +#: src/Content/Text/BBCode.php:689 src/Content/Text/BBCode.php:1862 +#: src/Content/Text/BBCode.php:1863 msgid "Image/photo" msgstr "Изображение / Фото" -#: src/Content/Text/BBCode.php:922 +#: src/Content/Text/BBCode.php:907 #, php-format msgid "%2$s %3$s" msgstr "%2$s %3$s" -#: src/Content/Text/BBCode.php:947 src/Model/Item.php:4060 -#: src/Model/Item.php:4066 src/Model/Item.php:4067 +#: src/Content/Text/BBCode.php:929 src/Model/Item.php:4028 +#: src/Model/Item.php:4034 src/Model/Item.php:4035 msgid "Link to source" msgstr "Ссылка на источник" -#: src/Content/Text/BBCode.php:1761 src/Content/Text/HTML.php:906 +#: src/Content/Text/BBCode.php:1743 src/Content/Text/HTML.php:892 msgid "Click to open/close" msgstr "Нажмите, чтобы открыть / закрыть" -#: src/Content/Text/BBCode.php:1816 +#: src/Content/Text/BBCode.php:1798 msgid "$1 wrote:" msgstr "$1 написал:" -#: src/Content/Text/BBCode.php:1890 src/Content/Text/BBCode.php:1891 +#: src/Content/Text/BBCode.php:1872 src/Content/Text/BBCode.php:1873 msgid "Encrypted content" msgstr "Зашифрованный контент" -#: src/Content/Text/BBCode.php:2223 +#: src/Content/Text/BBCode.php:2205 msgid "Invalid source protocol" msgstr "Неправильный протокол источника" -#: src/Content/Text/BBCode.php:2242 +#: src/Content/Text/BBCode.php:2224 msgid "Invalid link protocol" msgstr "Неправильная протокольная ссылка" -#: src/Content/Text/HTML.php:784 +#: src/Content/Text/HTML.php:770 msgid "Loading more entries..." msgstr "Загружаю больше сообщений..." -#: src/Content/Text/HTML.php:785 +#: src/Content/Text/HTML.php:771 msgid "The end" msgstr "Конец" -#: src/Content/Text/HTML.php:861 src/Content/Widget/VCard.php:127 -#: src/Model/Profile.php:470 src/Module/Contact/Profile.php:492 +#: src/Content/Text/HTML.php:847 src/Content/Widget/VCard.php:113 +#: src/Model/Profile.php:456 src/Module/Contact/Profile.php:478 msgid "Follow" msgstr "Подписка" -#: src/Content/Widget.php:51 +#: src/Content/Widget.php:37 msgid "Add New Contact" msgstr "Добавить контакт" -#: src/Content/Widget.php:52 +#: src/Content/Widget.php:38 msgid "Enter address or web location" msgstr "Введите адрес или веб-местонахождение" -#: src/Content/Widget.php:53 +#: src/Content/Widget.php:39 msgid "Example: bob@example.com, http://example.com/barbara" msgstr "Пример: bob@example.com, http://example.com/barbara" -#: src/Content/Widget.php:55 +#: src/Content/Widget.php:41 msgid "Connect" msgstr "Подключить" -#: src/Content/Widget.php:72 +#: src/Content/Widget.php:58 #, php-format msgid "%d invitation available" msgid_plural "%d invitations available" @@ -2391,79 +2390,79 @@ msgstr[1] "%d приглашений доступно" msgstr[2] "%d приглашений доступно" msgstr[3] "%d приглашений доступно" -#: src/Content/Widget.php:78 view/theme/vier/theme.php:193 +#: src/Content/Widget.php:64 view/theme/vier/theme.php:181 msgid "Find People" msgstr "Поиск людей" -#: src/Content/Widget.php:79 view/theme/vier/theme.php:194 +#: src/Content/Widget.php:65 view/theme/vier/theme.php:182 msgid "Enter name or interest" msgstr "Введите имя или интерес" -#: src/Content/Widget.php:81 view/theme/vier/theme.php:196 +#: src/Content/Widget.php:67 view/theme/vier/theme.php:184 msgid "Examples: Robert Morgenstein, Fishing" msgstr "Примеры: Роберт Morgenstein, Рыбалка" -#: src/Content/Widget.php:82 src/Module/Contact.php:466 -#: src/Module/Directory.php:97 view/theme/vier/theme.php:197 +#: src/Content/Widget.php:68 src/Module/Contact.php:441 +#: src/Module/Directory.php:83 view/theme/vier/theme.php:185 msgid "Find" msgstr "Найти" -#: src/Content/Widget.php:83 src/Module/Contact/Suggestions.php:73 -#: view/theme/vier/theme.php:198 +#: src/Content/Widget.php:69 src/Module/Contact/Suggestions.php:59 +#: view/theme/vier/theme.php:186 msgid "Friend Suggestions" msgstr "Предложения друзей" -#: src/Content/Widget.php:84 view/theme/vier/theme.php:199 +#: src/Content/Widget.php:70 view/theme/vier/theme.php:187 msgid "Similar Interests" msgstr "Похожие интересы" -#: src/Content/Widget.php:85 view/theme/vier/theme.php:200 +#: src/Content/Widget.php:71 view/theme/vier/theme.php:188 msgid "Random Profile" msgstr "Случайный профиль" -#: src/Content/Widget.php:86 view/theme/vier/theme.php:201 +#: src/Content/Widget.php:72 view/theme/vier/theme.php:189 msgid "Invite Friends" msgstr "Пригласить друзей" -#: src/Content/Widget.php:87 src/Module/Directory.php:89 -#: view/theme/vier/theme.php:202 +#: src/Content/Widget.php:73 src/Module/Directory.php:75 +#: view/theme/vier/theme.php:190 msgid "Global Directory" msgstr "Глобальный каталог" -#: src/Content/Widget.php:89 view/theme/vier/theme.php:204 +#: src/Content/Widget.php:75 view/theme/vier/theme.php:192 msgid "Local Directory" msgstr "Локальный каталог" -#: src/Content/Widget.php:218 +#: src/Content/Widget.php:196 msgid "Everyone" msgstr "Все" -#: src/Content/Widget.php:243 src/Module/Contact.php:429 +#: src/Content/Widget.php:221 src/Module/Contact.php:404 msgid "No relationship" msgstr "Нет связи" -#: src/Content/Widget.php:248 +#: src/Content/Widget.php:226 msgid "Relationships" msgstr "Отношения" -#: src/Content/Widget.php:250 src/Module/Circle.php:294 -#: src/Module/Contact.php:350 +#: src/Content/Widget.php:228 src/Module/Circle.php:280 +#: src/Module/Contact.php:325 msgid "All Contacts" msgstr "Все контакты" -#: src/Content/Widget.php:291 +#: src/Content/Widget.php:269 msgid "All Protocols" msgstr "Все протоколы" -#: src/Content/Widget.php:321 src/Content/Widget.php:352 +#: src/Content/Widget.php:299 src/Content/Widget.php:330 msgid "Everything" msgstr "Всё" -#: src/Content/Widget.php:350 +#: src/Content/Widget.php:328 msgid "Categories" msgstr "Категории" -#: src/Content/Widget.php:407 +#: src/Content/Widget.php:385 #, php-format msgid "%d contact in common" msgid_plural "%d contacts in common" @@ -2472,47 +2471,47 @@ msgstr[1] "%d Контактов" msgstr[2] "%d Контактов" msgstr[3] "%d Контактов" -#: src/Content/Widget.php:515 +#: src/Content/Widget.php:493 msgid "On this date" msgstr "В этот день" -#: src/Content/Widget.php:535 +#: src/Content/Widget.php:513 msgid "Persons" msgstr "Люди" -#: src/Content/Widget.php:536 +#: src/Content/Widget.php:514 msgid "Organisations" msgstr "Организации" -#: src/Content/Widget.php:537 src/Model/Contact.php:1754 +#: src/Content/Widget.php:515 src/Model/Contact.php:1747 msgid "News" msgstr "Новости" -#: src/Content/Widget.php:539 +#: src/Content/Widget.php:517 msgid "Relays" msgstr "Ретрансляторы" -#: src/Content/Widget.php:546 src/Module/Moderation/BaseUsers.php:69 +#: src/Content/Widget.php:524 src/Module/Moderation/BaseUsers.php:56 msgid "All" msgstr "Все" -#: src/Content/Widget/CalendarExport.php:56 +#: src/Content/Widget/CalendarExport.php:42 msgid "Export" msgstr "Экспорт" -#: src/Content/Widget/CalendarExport.php:57 +#: src/Content/Widget/CalendarExport.php:43 msgid "Export calendar as ical" msgstr "Экспортировать календарь в формат ical" -#: src/Content/Widget/CalendarExport.php:58 +#: src/Content/Widget/CalendarExport.php:44 msgid "Export calendar as csv" msgstr "Экспортировать календарь в формат csv" -#: src/Content/Widget/ContactBlock.php:79 +#: src/Content/Widget/ContactBlock.php:65 msgid "No contacts" msgstr "Нет контактов" -#: src/Content/Widget/ContactBlock.php:110 +#: src/Content/Widget/ContactBlock.php:96 #, php-format msgid "%d Contact" msgid_plural "%d Contacts" @@ -2521,15 +2520,15 @@ msgstr[1] "%d контактов" msgstr[2] "%d контактов" msgstr[3] "%d контактов" -#: src/Content/Widget/ContactBlock.php:127 +#: src/Content/Widget/ContactBlock.php:113 msgid "View Contacts" msgstr "Просмотр контактов" -#: src/Content/Widget/SavedSearches.php:47 +#: src/Content/Widget/SavedSearches.php:33 msgid "Remove term" msgstr "Удалить элемент" -#: src/Content/Widget/TrendingTags.php:53 +#: src/Content/Widget/TrendingTags.php:39 #, php-format msgid "Trending Tags (last %d hour)" msgid_plural "Trending Tags (last %d hours)" @@ -2538,138 +2537,138 @@ msgstr[1] "Популярные тэги (за %d часа)" msgstr[2] "Популярные тэги (за %d часов)" msgstr[3] "Популярные тэги (за %d часов)" -#: src/Content/Widget/TrendingTags.php:54 +#: src/Content/Widget/TrendingTags.php:40 msgid "More Trending Tags" msgstr "Больше популярных тэгов" -#: src/Content/Widget/VCard.php:105 src/Model/Contact.php:1219 -#: src/Model/Profile.php:455 +#: src/Content/Widget/VCard.php:91 src/Model/Contact.php:1212 +#: src/Model/Profile.php:441 msgid "Post to group" msgstr "Запись для группы" -#: src/Content/Widget/VCard.php:110 src/Model/Contact.php:1223 -#: src/Model/Profile.php:459 src/Module/Moderation/Item/Source.php:91 +#: src/Content/Widget/VCard.php:96 src/Model/Contact.php:1216 +#: src/Model/Profile.php:445 src/Module/Moderation/Item/Source.php:77 msgid "Mention" msgstr "Отметка" -#: src/Content/Widget/VCard.php:120 src/Model/Profile.php:374 -#: src/Module/Contact/Profile.php:428 src/Module/Profile/Profile.php:201 +#: src/Content/Widget/VCard.php:106 src/Model/Profile.php:360 +#: src/Module/Contact/Profile.php:414 src/Module/Profile/Profile.php:187 msgid "XMPP:" msgstr "XMPP:" -#: src/Content/Widget/VCard.php:121 src/Model/Profile.php:375 -#: src/Module/Contact/Profile.php:430 src/Module/Profile/Profile.php:205 +#: src/Content/Widget/VCard.php:107 src/Model/Profile.php:361 +#: src/Module/Contact/Profile.php:416 src/Module/Profile/Profile.php:191 msgid "Matrix:" msgstr "Matrix:" -#: src/Content/Widget/VCard.php:122 src/Model/Event.php:82 -#: src/Model/Event.php:109 src/Model/Event.php:471 src/Model/Event.php:960 -#: src/Model/Profile.php:369 src/Module/Contact/Profile.php:426 -#: src/Module/Directory.php:148 src/Module/Notifications/Introductions.php:193 -#: src/Module/Profile/Profile.php:223 +#: src/Content/Widget/VCard.php:108 src/Model/Event.php:68 +#: src/Model/Event.php:95 src/Model/Event.php:457 src/Model/Event.php:946 +#: src/Model/Profile.php:355 src/Module/Contact/Profile.php:412 +#: src/Module/Directory.php:134 src/Module/Notifications/Introductions.php:179 +#: src/Module/Profile/Profile.php:209 msgid "Location:" msgstr "Откуда:" -#: src/Content/Widget/VCard.php:125 src/Model/Profile.php:483 -#: src/Module/Notifications/Introductions.php:207 +#: src/Content/Widget/VCard.php:111 src/Model/Profile.php:469 +#: src/Module/Notifications/Introductions.php:193 msgid "Network:" msgstr "Сеть:" -#: src/Content/Widget/VCard.php:129 src/Model/Contact.php:1251 -#: src/Model/Contact.php:1263 src/Model/Profile.php:472 -#: src/Module/Contact/Profile.php:484 +#: src/Content/Widget/VCard.php:115 src/Model/Contact.php:1244 +#: src/Model/Contact.php:1256 src/Model/Profile.php:458 +#: src/Module/Contact/Profile.php:470 msgid "Unfollow" msgstr "Отписка" -#: src/Content/Widget/VCard.php:135 src/Model/Contact.php:1221 -#: src/Model/Profile.php:457 +#: src/Content/Widget/VCard.php:121 src/Model/Contact.php:1214 +#: src/Model/Profile.php:443 msgid "View group" msgstr "Просмотр группы" -#: src/Core/ACL.php:166 src/Module/Profile/Profile.php:271 +#: src/Core/ACL.php:152 src/Module/Profile/Profile.php:257 msgid "Yourself" msgstr "Вы" -#: src/Core/ACL.php:202 src/Module/Privacy/PermissionTooltip.php:170 -#: src/Module/Privacy/PermissionTooltip.php:192 +#: src/Core/ACL.php:188 src/Module/Privacy/PermissionTooltip.php:156 +#: src/Module/Privacy/PermissionTooltip.php:178 msgid "Mutuals" msgstr "Взаимные" -#: src/Core/ACL.php:294 +#: src/Core/ACL.php:280 msgid "Post to Email" msgstr "Отправить на Email" -#: src/Core/ACL.php:321 src/Module/Privacy/PermissionTooltip.php:117 -#: src/Module/Privacy/PermissionTooltip.php:231 +#: src/Core/ACL.php:307 src/Module/Privacy/PermissionTooltip.php:103 +#: src/Module/Privacy/PermissionTooltip.php:217 msgid "Public" msgstr "Публично" -#: src/Core/ACL.php:322 +#: src/Core/ACL.php:308 msgid "" "This content will be shown to all your followers and can be seen in the " "community pages and by anyone with its link." msgstr "Это будет показано всем вашим подписчикам и так же будет доступно в общей ленте и по прямой ссылке." -#: src/Core/ACL.php:323 src/Module/Privacy/PermissionTooltip.php:119 +#: src/Core/ACL.php:309 src/Module/Privacy/PermissionTooltip.php:105 msgid "Limited/Private" msgstr "Ограниченный доступ" -#: src/Core/ACL.php:324 +#: src/Core/ACL.php:310 msgid "" "This content will be shown only to the people in the first box, to the " "exception of the people mentioned in the second box. It won't appear " "anywhere public." msgstr "Это будет доступно только получателям, перечисленным в первом поле, за исключением тех, кто добавлен во второе поле. Нигде в открытом доступе это не появится." -#: src/Core/ACL.php:324 +#: src/Core/ACL.php:310 msgid "" "Start typing the name of a contact or a circle to show a filtered list. You " "can also mention the special circles \"Followers\" and \"Mutuals\"." msgstr "Начните набирать имя контакта или круга для появления списка. Вы так же можете выбрать специальные круги \"Подписаны на вас\" и \"Взаимные\"." -#: src/Core/ACL.php:325 +#: src/Core/ACL.php:311 msgid "Show to:" msgstr "Доступно:" -#: src/Core/ACL.php:326 +#: src/Core/ACL.php:312 msgid "Except to:" msgstr "За исключением:" -#: src/Core/ACL.php:327 src/Module/Post/Edit.php:154 +#: src/Core/ACL.php:313 src/Module/Post/Edit.php:140 msgid "CC: email addresses" msgstr "Копии на email адреса" -#: src/Core/ACL.php:328 src/Module/Post/Edit.php:160 +#: src/Core/ACL.php:314 src/Module/Post/Edit.php:146 msgid "Example: bob@example.com, mary@example.com" msgstr "Пример: bob@example.com, mary@example.com" -#: src/Core/ACL.php:329 +#: src/Core/ACL.php:315 msgid "Connectors" msgstr "Соединители" -#: src/Core/Installer.php:180 +#: src/Core/Installer.php:166 msgid "" "The database configuration file \"config/local.config.php\" could not be " "written. Please use the enclosed text to create a configuration file in your" " web server root." msgstr "Не получается записать файл конфигурации базы данных \"config/local.config.php\". Пожалуйста, создайте этот файл в корневом каталоге веб-сервера вручную, вставив в него приведённые здесь данные." -#: src/Core/Installer.php:197 +#: src/Core/Installer.php:183 msgid "" "You may need to import the file \"database.sql\" manually using phpmyadmin " "or mysql." msgstr "Вам может понадобиться импортировать файл \"database.sql\" вручную с помощью PhpMyAdmin или MySQL." -#: src/Core/Installer.php:198 src/Module/Install.php:207 -#: src/Module/Install.php:350 +#: src/Core/Installer.php:184 src/Module/Install.php:193 +#: src/Module/Install.php:336 msgid "Please see the file \"doc/INSTALL.md\"." msgstr "Пожалуйста посмотрите файл \"doc/INSTALL.md\"." -#: src/Core/Installer.php:259 +#: src/Core/Installer.php:245 msgid "Could not find a command line version of PHP in the web server PATH." msgstr "Не удалось найти PATH веб-сервера в установках PHP." -#: src/Core/Installer.php:260 +#: src/Core/Installer.php:246 msgid "" "If you don't have a command line version of PHP installed on your server, " "you will not be able to run the background processing. See 'Setup the worker'" msgstr "Если у вас нет доступа к командной строке PHP на вашем сервере, вы не сможете использовать фоновые задания. Посмотрите 'Настройка фоновых заданий'" -#: src/Core/Installer.php:265 +#: src/Core/Installer.php:251 msgid "PHP executable path" msgstr "PHP executable path" -#: src/Core/Installer.php:265 +#: src/Core/Installer.php:251 msgid "" "Enter full path to php executable. You can leave this blank to continue the " "installation." msgstr "Введите полный путь к исполняемому файлу PHP. Вы можете оставить это поле пустым, чтобы продолжить установку." -#: src/Core/Installer.php:270 +#: src/Core/Installer.php:256 msgid "Command line PHP" msgstr "Command line PHP" -#: src/Core/Installer.php:279 +#: src/Core/Installer.php:265 msgid "PHP executable is not the php cli binary (could be cgi-fgci version)" msgstr "Бинарник PHP не является CLI версией (может быть это cgi-fcgi версия)" -#: src/Core/Installer.php:280 +#: src/Core/Installer.php:266 msgid "Found PHP version: " msgstr "Найденная PHP версия: " -#: src/Core/Installer.php:282 +#: src/Core/Installer.php:268 msgid "PHP cli binary" msgstr "PHP cli binary" -#: src/Core/Installer.php:295 +#: src/Core/Installer.php:281 msgid "" "The command line version of PHP on your system does not have " "\"register_argc_argv\" enabled." msgstr "Не включено \"register_argc_argv\" в установках PHP." -#: src/Core/Installer.php:296 +#: src/Core/Installer.php:282 msgid "This is required for message delivery to work." msgstr "Это необходимо для работы доставки сообщений." -#: src/Core/Installer.php:301 +#: src/Core/Installer.php:287 msgid "PHP register_argc_argv" msgstr "PHP register_argc_argv" -#: src/Core/Installer.php:333 +#: src/Core/Installer.php:319 msgid "" "Error: the \"openssl_pkey_new\" function on this system is not able to " "generate encryption keys" msgstr "Ошибка: функция \"openssl_pkey_new\" в этой системе не в состоянии генерировать ключи шифрования" -#: src/Core/Installer.php:334 +#: src/Core/Installer.php:320 msgid "" "If running under Windows, please see " "\"http://www.php.net/manual/en/openssl.installation.php\"." msgstr "Если вы работаете под Windows, см. \"http://www.php.net/manual/en/openssl.installation.php\"." -#: src/Core/Installer.php:337 +#: src/Core/Installer.php:323 msgid "Generate encryption keys" msgstr "Генерация шифрованых ключей" -#: src/Core/Installer.php:388 +#: src/Core/Installer.php:374 msgid "" "Error: Apache webserver mod-rewrite module is required but not installed." msgstr "Ошибка: необходим модуль веб-сервера Apache mod-rewrite, но он не установлен." -#: src/Core/Installer.php:392 +#: src/Core/Installer.php:378 msgid "Apache mod_rewrite module" msgstr "Apache mod_rewrite module" -#: src/Core/Installer.php:398 +#: src/Core/Installer.php:384 msgid "Error: PDO or MySQLi PHP module required but not installed." msgstr "Ошибка: PDO или MySQLi модули PHP требуются, но не установлены." -#: src/Core/Installer.php:402 +#: src/Core/Installer.php:388 msgid "Error: The MySQL driver for PDO is not installed." msgstr "Ошибка: Драйвер MySQL для PDO не установлен." -#: src/Core/Installer.php:405 +#: src/Core/Installer.php:391 msgid "PDO or MySQLi PHP module" msgstr "PDO или MySQLi PHP модуль" -#: src/Core/Installer.php:411 +#: src/Core/Installer.php:397 msgid "Error: The IntlChar module is not installed." msgstr "" -#: src/Core/Installer.php:414 +#: src/Core/Installer.php:400 msgid "IntlChar PHP module" msgstr "" -#: src/Core/Installer.php:422 +#: src/Core/Installer.php:408 msgid "Error, XML PHP module required but not installed." msgstr "Ошибка, необходим PHP модуль XML, но он не установлен" -#: src/Core/Installer.php:426 +#: src/Core/Installer.php:412 msgid "XML PHP module" msgstr "XML PHP модуль" -#: src/Core/Installer.php:429 +#: src/Core/Installer.php:415 msgid "libCurl PHP module" msgstr "libCurl PHP модуль" -#: src/Core/Installer.php:430 +#: src/Core/Installer.php:416 msgid "Error: libCURL PHP module required but not installed." msgstr "Ошибка: необходим libCURL PHP модуль, но он не установлен." -#: src/Core/Installer.php:436 +#: src/Core/Installer.php:422 msgid "GD graphics PHP module" msgstr "GD graphics PHP модуль" -#: src/Core/Installer.php:437 +#: src/Core/Installer.php:423 msgid "" "Error: GD graphics PHP module with JPEG support required but not installed." msgstr "Ошибка: необходим PHP модуль GD графики с поддержкой JPEG, но он не установлен." -#: src/Core/Installer.php:443 +#: src/Core/Installer.php:429 msgid "OpenSSL PHP module" msgstr "OpenSSL PHP модуль" -#: src/Core/Installer.php:444 +#: src/Core/Installer.php:430 msgid "Error: openssl PHP module required but not installed." msgstr "Ошибка: необходим PHP модуль OpenSSL, но он не установлен." -#: src/Core/Installer.php:450 +#: src/Core/Installer.php:436 msgid "mb_string PHP module" msgstr "mb_string PHP модуль" -#: src/Core/Installer.php:451 +#: src/Core/Installer.php:437 msgid "Error: mb_string PHP module required but not installed." msgstr "Ошибка: необходим PHP модуль mb_string, но он не установлен." -#: src/Core/Installer.php:457 +#: src/Core/Installer.php:443 msgid "iconv PHP module" msgstr "iconv PHP модуль" -#: src/Core/Installer.php:458 +#: src/Core/Installer.php:444 msgid "Error: iconv PHP module required but not installed." msgstr "Ошибка: необходим PHP модуль iconv, но он не установлен." -#: src/Core/Installer.php:464 +#: src/Core/Installer.php:450 msgid "POSIX PHP module" msgstr "POSIX PHP модуль" -#: src/Core/Installer.php:465 +#: src/Core/Installer.php:451 msgid "Error: POSIX PHP module required but not installed." msgstr "Ошибка: POSIX PHP модуль требуется, но не установлен." -#: src/Core/Installer.php:471 +#: src/Core/Installer.php:457 msgid "Program execution functions" msgstr "Функции исполнения программ" -#: src/Core/Installer.php:472 +#: src/Core/Installer.php:458 msgid "" "Error: Program execution functions (proc_open) required but not enabled." msgstr "Ошибка: Требуется наличие функций исполнения программ (proc_open), но они не включены." -#: src/Core/Installer.php:478 +#: src/Core/Installer.php:464 msgid "JSON PHP module" msgstr "JSON PHP модуль" -#: src/Core/Installer.php:479 +#: src/Core/Installer.php:465 msgid "Error: JSON PHP module required but not installed." msgstr "Ошибка: JSON PHP модуль требуется, но не установлен." -#: src/Core/Installer.php:485 +#: src/Core/Installer.php:471 msgid "File Information PHP module" msgstr "File Information PHP модуль" -#: src/Core/Installer.php:486 +#: src/Core/Installer.php:472 msgid "Error: File Information PHP module required but not installed." msgstr "Ошибка File Information PHP модуль требуется, но не установлен." -#: src/Core/Installer.php:492 +#: src/Core/Installer.php:478 msgid "GNU Multiple Precision PHP module" msgstr "" -#: src/Core/Installer.php:493 +#: src/Core/Installer.php:479 msgid "Error: GNU Multiple Precision PHP module required but not installed." msgstr "" -#: src/Core/Installer.php:499 +#: src/Core/Installer.php:485 msgid "IDN Functions PHP module" msgstr "" -#: src/Core/Installer.php:500 +#: src/Core/Installer.php:486 msgid "Error: IDN Functions PHP module required but not installed." msgstr "" -#: src/Core/Installer.php:523 +#: src/Core/Installer.php:509 msgid "" "The web installer needs to be able to create a file called " "\"local.config.php\" in the \"config\" folder of your web server and it is " "unable to do so." msgstr "Установщику требуется создать файл \"local.config.php\" в каталоге \"config\" на вашем веб-сервере, но у него не получается это сделать." -#: src/Core/Installer.php:524 +#: src/Core/Installer.php:510 msgid "" "This is most often a permission setting, as the web server may not be able " "to write files in your folder - even if you can." msgstr "Это наиболее частые параметры разрешений, когда веб-сервер не может записать файлы в папке - даже если вы можете." -#: src/Core/Installer.php:525 +#: src/Core/Installer.php:511 msgid "" "At the end of this procedure, we will give you a text to save in a file " "named local.config.php in your Friendica \"config\" folder." msgstr "В конце этой операции мы предоставим вам текст конфигурации, которую вам нужно будет сохранить в виде файла local.config.php в каталоге \"config\" вашей установки Френдики." -#: src/Core/Installer.php:526 +#: src/Core/Installer.php:512 msgid "" "You can alternatively skip this procedure and perform a manual installation." " Please see the file \"doc/INSTALL.md\" for instructions." msgstr "В качестве альтернативы вы можете пропустить эту процедуру и выполнить установку вручную. Пожалуйста, обратитесь к файлу \"INSTALL.md\" для получения инструкций." -#: src/Core/Installer.php:529 +#: src/Core/Installer.php:515 msgid "config/local.config.php is writable" msgstr "config/local.config.php доступен для записи" -#: src/Core/Installer.php:549 +#: src/Core/Installer.php:535 msgid "" "Friendica uses the Smarty3 template engine to render its web views. Smarty3 " "compiles templates to PHP to speed up rendering." msgstr "Friendica использует механизм шаблонов Smarty3 для генерации веб-страниц. Smarty3 компилирует шаблоны в PHP для увеличения скорости загрузки." -#: src/Core/Installer.php:550 +#: src/Core/Installer.php:536 msgid "" "In order to store these compiled templates, the web server needs to have " "write access to the directory view/smarty3/ under the Friendica top level " "folder." msgstr "Для того чтобы хранить эти скомпилированные шаблоны, веб-сервер должен иметь доступ на запись для папки view/smarty3 в директории, где установлена Friendica." -#: src/Core/Installer.php:551 +#: src/Core/Installer.php:537 msgid "" "Please ensure that the user that your web server runs as (e.g. www-data) has" " write access to this folder." msgstr "Пожалуйста, убедитесь, что пользователь, под которым работает ваш веб-сервер (например www-data), имеет доступ на запись в этой папке." -#: src/Core/Installer.php:552 +#: src/Core/Installer.php:538 msgid "" "Note: as a security measure, you should give the web server write access to " "view/smarty3/ only--not the template files (.tpl) that it contains." msgstr "Примечание: в качестве меры безопасности, вы должны дать вебсерверу доступ на запись только в view/smarty3 - но не на сами файлы шаблонов (.tpl)., Которые содержатся в этой папке." -#: src/Core/Installer.php:555 +#: src/Core/Installer.php:541 msgid "view/smarty3 is writable" msgstr "view/smarty3 доступен для записи" -#: src/Core/Installer.php:583 +#: src/Core/Installer.php:569 msgid "" "Url rewrite in .htaccess seems not working. Make sure you copied .htaccess-" "dist to .htaccess." msgstr "Похоже, что Url rewrite в .htaccess не работает. Убедитесь, что вы скопировали .htaccess-dist в .htaccess." -#: src/Core/Installer.php:584 +#: src/Core/Installer.php:570 msgid "" "In some circumstances (like running inside containers), you can skip this " "error." msgstr "В некоторых случаях (например, при запуске в контейнерах) вы можете пропустить эту ошибку." -#: src/Core/Installer.php:586 +#: src/Core/Installer.php:572 msgid "Error message from Curl when fetching" msgstr "Ошибка Curl при закачке" -#: src/Core/Installer.php:592 +#: src/Core/Installer.php:578 msgid "Url rewrite is working" msgstr "Url rewrite работает" -#: src/Core/Installer.php:621 +#: src/Core/Installer.php:607 msgid "" "The detection of TLS to secure the communication between the browser and the" " new Friendica server failed." msgstr "Не удалось обнаружить TLS-соединение между браузером и новым сервером Friendica." -#: src/Core/Installer.php:622 +#: src/Core/Installer.php:608 msgid "" "It is highly encouraged to use Friendica only over a secure connection as " "sensitive information like passwords will be transmitted." msgstr "Настоятельно рекомендуется использовать Friendica только с безопасным соединением, так как передаётся чувствительная информация, например - пароли." -#: src/Core/Installer.php:623 +#: src/Core/Installer.php:609 msgid "Please ensure that the connection to the server is secure." msgstr "Пожалуйста, убедитесь, что соединение с сервером безопасно." -#: src/Core/Installer.php:624 +#: src/Core/Installer.php:610 msgid "No TLS detected" msgstr "TLS не обнаружено." -#: src/Core/Installer.php:626 +#: src/Core/Installer.php:612 msgid "TLS detected" msgstr "TLS обнаружено." -#: src/Core/Installer.php:643 +#: src/Core/Installer.php:629 msgid "ImageMagick PHP extension is not installed" msgstr "Модуль PHP ImageMagick не установлен" -#: src/Core/Installer.php:645 +#: src/Core/Installer.php:631 msgid "ImageMagick PHP extension is installed" msgstr "Модуль PHP ImageMagick установлен" -#: src/Core/Installer.php:666 +#: src/Core/Installer.php:652 msgid "Database already in use." msgstr "База данных уже используется." -#: src/Core/Installer.php:671 +#: src/Core/Installer.php:657 msgid "Could not connect to database." msgstr "Не удалось подключиться к базе данных." -#: src/Core/L10n.php:444 src/Model/Item.php:2348 +#: src/Core/L10n.php:430 src/Model/Item.php:2315 msgid "Undetermined" msgstr "" -#: src/Core/L10n.php:451 +#: src/Core/L10n.php:437 #, php-format msgid "%s (%s)" msgstr "" -#: src/Core/L10n.php:499 src/Model/Event.php:430 -#: src/Module/Settings/Display.php:284 +#: src/Core/L10n.php:485 src/Model/Event.php:416 +#: src/Module/Settings/Display.php:270 msgid "Monday" msgstr "Понедельник" -#: src/Core/L10n.php:499 src/Model/Event.php:431 -#: src/Module/Settings/Display.php:285 +#: src/Core/L10n.php:485 src/Model/Event.php:417 +#: src/Module/Settings/Display.php:271 msgid "Tuesday" msgstr "Вторник" -#: src/Core/L10n.php:499 src/Model/Event.php:432 -#: src/Module/Settings/Display.php:286 +#: src/Core/L10n.php:485 src/Model/Event.php:418 +#: src/Module/Settings/Display.php:272 msgid "Wednesday" msgstr "Среда" -#: src/Core/L10n.php:499 src/Model/Event.php:433 -#: src/Module/Settings/Display.php:287 +#: src/Core/L10n.php:485 src/Model/Event.php:419 +#: src/Module/Settings/Display.php:273 msgid "Thursday" msgstr "Четверг" -#: src/Core/L10n.php:499 src/Model/Event.php:434 -#: src/Module/Settings/Display.php:288 +#: src/Core/L10n.php:485 src/Model/Event.php:420 +#: src/Module/Settings/Display.php:274 msgid "Friday" msgstr "Пятница" -#: src/Core/L10n.php:499 src/Model/Event.php:435 -#: src/Module/Settings/Display.php:289 +#: src/Core/L10n.php:485 src/Model/Event.php:421 +#: src/Module/Settings/Display.php:275 msgid "Saturday" msgstr "Суббота" -#: src/Core/L10n.php:499 src/Model/Event.php:429 -#: src/Module/Settings/Display.php:283 +#: src/Core/L10n.php:485 src/Model/Event.php:415 +#: src/Module/Settings/Display.php:269 msgid "Sunday" msgstr "Воскресенье" -#: src/Core/L10n.php:503 src/Model/Event.php:450 +#: src/Core/L10n.php:489 src/Model/Event.php:436 msgid "January" msgstr "Январь" -#: src/Core/L10n.php:503 src/Model/Event.php:451 +#: src/Core/L10n.php:489 src/Model/Event.php:437 msgid "February" msgstr "Февраль" -#: src/Core/L10n.php:503 src/Model/Event.php:452 +#: src/Core/L10n.php:489 src/Model/Event.php:438 msgid "March" msgstr "Март" -#: src/Core/L10n.php:503 src/Model/Event.php:453 +#: src/Core/L10n.php:489 src/Model/Event.php:439 msgid "April" msgstr "Апрель" -#: src/Core/L10n.php:503 src/Core/L10n.php:522 src/Model/Event.php:441 +#: src/Core/L10n.php:489 src/Core/L10n.php:508 src/Model/Event.php:427 msgid "May" msgstr "Май" -#: src/Core/L10n.php:503 src/Model/Event.php:454 +#: src/Core/L10n.php:489 src/Model/Event.php:440 msgid "June" msgstr "Июнь" -#: src/Core/L10n.php:503 src/Model/Event.php:455 +#: src/Core/L10n.php:489 src/Model/Event.php:441 msgid "July" msgstr "Июль" -#: src/Core/L10n.php:503 src/Model/Event.php:456 +#: src/Core/L10n.php:489 src/Model/Event.php:442 msgid "August" msgstr "Август" -#: src/Core/L10n.php:503 src/Model/Event.php:457 +#: src/Core/L10n.php:489 src/Model/Event.php:443 msgid "September" msgstr "Сентябрь" -#: src/Core/L10n.php:503 src/Model/Event.php:458 +#: src/Core/L10n.php:489 src/Model/Event.php:444 msgid "October" msgstr "Октябрь" -#: src/Core/L10n.php:503 src/Model/Event.php:459 +#: src/Core/L10n.php:489 src/Model/Event.php:445 msgid "November" msgstr "Ноябрь" -#: src/Core/L10n.php:503 src/Model/Event.php:460 +#: src/Core/L10n.php:489 src/Model/Event.php:446 msgid "December" msgstr "Декабрь" -#: src/Core/L10n.php:518 src/Model/Event.php:422 +#: src/Core/L10n.php:504 src/Model/Event.php:408 msgid "Mon" msgstr "Пн" -#: src/Core/L10n.php:518 src/Model/Event.php:423 +#: src/Core/L10n.php:504 src/Model/Event.php:409 msgid "Tue" msgstr "Вт" -#: src/Core/L10n.php:518 src/Model/Event.php:424 +#: src/Core/L10n.php:504 src/Model/Event.php:410 msgid "Wed" msgstr "Ср" -#: src/Core/L10n.php:518 src/Model/Event.php:425 +#: src/Core/L10n.php:504 src/Model/Event.php:411 msgid "Thu" msgstr "Чт" -#: src/Core/L10n.php:518 src/Model/Event.php:426 +#: src/Core/L10n.php:504 src/Model/Event.php:412 msgid "Fri" msgstr "Пт" -#: src/Core/L10n.php:518 src/Model/Event.php:427 +#: src/Core/L10n.php:504 src/Model/Event.php:413 msgid "Sat" msgstr "Сб" -#: src/Core/L10n.php:518 src/Model/Event.php:421 +#: src/Core/L10n.php:504 src/Model/Event.php:407 msgid "Sun" msgstr "Вс" -#: src/Core/L10n.php:522 src/Model/Event.php:437 +#: src/Core/L10n.php:508 src/Model/Event.php:423 msgid "Jan" msgstr "Янв" -#: src/Core/L10n.php:522 src/Model/Event.php:438 +#: src/Core/L10n.php:508 src/Model/Event.php:424 msgid "Feb" msgstr "Фев" -#: src/Core/L10n.php:522 src/Model/Event.php:439 +#: src/Core/L10n.php:508 src/Model/Event.php:425 msgid "Mar" msgstr "Мрт" -#: src/Core/L10n.php:522 src/Model/Event.php:440 +#: src/Core/L10n.php:508 src/Model/Event.php:426 msgid "Apr" msgstr "Апр" -#: src/Core/L10n.php:522 src/Model/Event.php:442 +#: src/Core/L10n.php:508 src/Model/Event.php:428 msgid "Jun" msgstr "Июн" -#: src/Core/L10n.php:522 src/Model/Event.php:443 +#: src/Core/L10n.php:508 src/Model/Event.php:429 msgid "Jul" msgstr "Июл" -#: src/Core/L10n.php:522 src/Model/Event.php:444 +#: src/Core/L10n.php:508 src/Model/Event.php:430 msgid "Aug" msgstr "Авг" -#: src/Core/L10n.php:522 +#: src/Core/L10n.php:508 msgid "Sep" msgstr "Сен" -#: src/Core/L10n.php:522 src/Model/Event.php:446 +#: src/Core/L10n.php:508 src/Model/Event.php:432 msgid "Oct" msgstr "Окт" -#: src/Core/L10n.php:522 src/Model/Event.php:447 +#: src/Core/L10n.php:508 src/Model/Event.php:433 msgid "Nov" msgstr "Нбр" -#: src/Core/L10n.php:522 src/Model/Event.php:448 +#: src/Core/L10n.php:508 src/Model/Event.php:434 msgid "Dec" msgstr "Дек" -#: src/Core/Logger/Util/LoggerSettingsCheck.php:60 +#: src/Core/Logger/Util/LoggerSettingsCheck.php:46 #, php-format msgid "The logfile '%s' is not usable. No logging possible (error: '%s')" msgstr "" -#: src/Core/Logger/Util/LoggerSettingsCheck.php:85 +#: src/Core/Logger/Util/LoggerSettingsCheck.php:71 #, php-format msgid "" "The debug logfile '%s' is not usable. No logging possible (error: '%s')" msgstr "" -#: src/Core/Renderer.php:92 src/Core/Renderer.php:121 -#: src/Core/Renderer.php:150 src/Core/Renderer.php:184 -#: src/Render/FriendicaSmartyEngine.php:60 +#: src/Core/Renderer.php:78 src/Core/Renderer.php:107 +#: src/Core/Renderer.php:136 src/Core/Renderer.php:170 +#: src/Render/FriendicaSmartyEngine.php:46 msgid "" "Friendica can't display this page at the moment, please contact the " "administrator." msgstr "Friendica не может отобразить эту страницу в данный момент, пожалуйста, свяжитесь с администратором." -#: src/Core/Renderer.php:146 +#: src/Core/Renderer.php:132 msgid "template engine cannot be registered without a name." msgstr "" -#: src/Core/Renderer.php:180 +#: src/Core/Renderer.php:166 msgid "template engine is not registered!" msgstr "" -#: src/Core/Storage/Type/FilesystemConfig.php:78 +#: src/Core/Storage/Type/FilesystemConfig.php:64 msgid "Storage base path" msgstr "Корневой каталог хранилища" -#: src/Core/Storage/Type/FilesystemConfig.php:80 +#: src/Core/Storage/Type/FilesystemConfig.php:66 msgid "" "Folder where uploaded files are saved. For maximum security, This should be " "a path outside web server folder tree" msgstr "Каталог, куда сохраняются загруженные файлы. Для максимальной безопасности этот каталог должен быть размещён вне каталогов веб-сервера." -#: src/Core/Storage/Type/FilesystemConfig.php:93 +#: src/Core/Storage/Type/FilesystemConfig.php:79 msgid "Enter a valid existing folder" msgstr "Введите путь к существующему каталогу" -#: src/Core/Update.php:80 +#: src/Core/Update.php:66 #, php-format msgid "" "Updates from version %s are not supported. Please update at least to version" " 2021.01 and wait until the postupdate finished version 1383." msgstr "Обновления для версии %s не поддерживаются. Пожалуйста, обновитесь хотя бы до версии 2021.01 и дождитесь выполнения postupdate до версии 1383." -#: src/Core/Update.php:91 +#: src/Core/Update.php:77 #, php-format msgid "" "Updates from postupdate version %s are not supported. Please update at least" " to version 2021.01 and wait until the postupdate finished version 1383." msgstr "Обновления для postupdate версии %s не поддерживаются. Пожалуйста, обновитесь хотя бы до версии 2021.01 и дождитесь выполнения postupdate до версии 1383." -#: src/Core/Update.php:183 +#: src/Core/Update.php:169 #, php-format msgid "%s: executing pre update %d" msgstr "%s: выполняется предварительное обновление %d" -#: src/Core/Update.php:225 +#: src/Core/Update.php:211 #, php-format msgid "%s: executing post update %d" msgstr "%s: выполняется завершение обновления %d" -#: src/Core/Update.php:299 +#: src/Core/Update.php:285 #, php-format msgid "Update %s failed. See error logs." msgstr "Обновление %s не удалось. Смотрите журнал ошибок." -#: src/Core/Update.php:339 +#: src/Core/Update.php:325 #, php-format msgid "" "\n" @@ -3222,49 +3221,49 @@ msgid "" "\t\t\t\tfriendica developer if you can not help me on your own. My database might be invalid." msgstr "\n\t\t\t\tРазработчики Френдики недавно выпустили обновление %s,\n\t\t\t\tно при установке что-то пошло не так.\n\t\t\t\tЭто нужно исправить в ближайшее время и у меня не получается сделать это самостоятельно. Пожалуйста, свяжитесь с разработчиками Френдики, если вы не можете мне помочь сами. База данных может быть повреждена." -#: src/Core/Update.php:345 +#: src/Core/Update.php:331 #, php-format msgid "The error message is\\n[pre]%s[/pre]" msgstr "Сообщение об ошибке\\n[pre]%s[/pre]" -#: src/Core/Update.php:349 src/Core/Update.php:377 +#: src/Core/Update.php:335 src/Core/Update.php:363 msgid "[Friendica Notify] Database update" msgstr "[Friendica Notify] Обновление базы данных" -#: src/Core/Update.php:371 +#: src/Core/Update.php:357 #, php-format msgid "" "\n" "\t\t\t\tThe friendica database was successfully updated from %s to %s." msgstr "\n\t\t\t\tБаза данных Friendica была успешно обновлена с версии %s на %s." -#: src/Database/DBStructure.php:57 +#: src/Database/DBStructure.php:43 #, php-format msgid "The database version had been set to %s." msgstr "Версия базы данных была установлена на %s." -#: src/Database/DBStructure.php:82 +#: src/Database/DBStructure.php:68 #, php-format msgid "" "The post update is at version %d, it has to be at %d to safely drop the " "tables." msgstr "Версия postupdate сейчас %d, она должна достигнуть %d для безопасного удаления таблиц." -#: src/Database/DBStructure.php:95 +#: src/Database/DBStructure.php:81 msgid "No unused tables found." msgstr "Неиспользуемые таблицы не найдены." -#: src/Database/DBStructure.php:100 +#: src/Database/DBStructure.php:86 msgid "" "These tables are not used for friendica and will be deleted when you execute" " \"dbstructure drop -e\":" msgstr "Эти таблицы не используются Friendica и будут удалены, когда вы выполните команду \"dbstructure drop -e\":" -#: src/Database/DBStructure.php:137 +#: src/Database/DBStructure.php:123 msgid "There are no tables on MyISAM or InnoDB with the Antelope file format." msgstr "В MyISAM или InnoDB нет таблиц в формате Antelope." -#: src/Database/DBStructure.php:161 +#: src/Database/DBStructure.php:147 #, php-format msgid "" "\n" @@ -3272,329 +3271,325 @@ msgid "" "%s\n" msgstr "\nОшибка %d возникла при обновлении базы данных:\n%s\n" -#: src/Database/DBStructure.php:164 +#: src/Database/DBStructure.php:150 msgid "Errors encountered performing database changes: " msgstr "Ошибки, возникшие при применении изменений базы данных: " -#: src/Database/DBStructure.php:232 +#: src/Database/DBStructure.php:218 msgid "Another database update is currently running." msgstr "Другая операция обновления базы данных уже запущена." -#: src/Database/DBStructure.php:236 +#: src/Database/DBStructure.php:222 #, php-format msgid "%s: Database update" msgstr "%s: Обновление базы данных" -#: src/Database/DBStructure.php:493 +#: src/Database/DBStructure.php:479 #, php-format msgid "%s: updating %s table." msgstr "%s: обновляется %s таблица." -#: src/Factory/Api/Mastodon/Error.php:42 +#: src/Factory/Api/Mastodon/Error.php:28 msgid "Record not found" msgstr "Запись не найдена" -#: src/Factory/Api/Mastodon/Error.php:49 +#: src/Factory/Api/Mastodon/Error.php:35 msgid "Unprocessable Entity" msgstr "Необрабатываемая сущность" -#: src/Factory/Api/Mastodon/Error.php:56 +#: src/Factory/Api/Mastodon/Error.php:42 msgid "Unauthorized" msgstr "Нет авторизации" -#: src/Factory/Api/Mastodon/Error.php:62 +#: src/Factory/Api/Mastodon/Error.php:48 msgid "" "Token is not authorized with a valid user or is missing a required scope" msgstr "" -#: src/Factory/Api/Mastodon/Error.php:69 +#: src/Factory/Api/Mastodon/Error.php:55 msgid "Internal Server Error" msgstr "Внутренняя ошибка сервера" -#: src/LegacyModule.php:63 +#: src/LegacyModule.php:49 #, php-format msgid "Legacy module file not found: %s" msgstr "Legacy-модуль не найден: %s" -#: src/Model/Circle.php:106 +#: src/Model/Circle.php:92 msgid "" "A deleted circle with this name was revived. Existing item permissions " "may apply to this circle and any future members. If this is" " not what you intended, please create another circle with a different name." msgstr "Удалённый круг с таким названием был восстановлен. Существующие права доступа могут применяться к этому кругу и любым будущим участникам. Если это не то, что вы хотели, пожалуйста, создайте ещё ​​один круг с другим названием." -#: src/Model/Circle.php:544 +#: src/Model/Circle.php:530 msgid "Everybody" msgstr "Все" -#: src/Model/Circle.php:563 +#: src/Model/Circle.php:549 msgid "edit" msgstr "редактировать" -#: src/Model/Circle.php:600 +#: src/Model/Circle.php:586 msgid "add" msgstr "добавить" -#: src/Model/Circle.php:605 +#: src/Model/Circle.php:591 msgid "Edit circle" msgstr "Редактировать круг" -#: src/Model/Circle.php:606 src/Module/Circle.php:195 +#: src/Model/Circle.php:592 src/Module/Circle.php:181 msgid "Contacts not in any circle" msgstr "Контакты вне кругов" -#: src/Model/Circle.php:608 +#: src/Model/Circle.php:594 msgid "Create a new circle" msgstr "Создать круг" -#: src/Model/Circle.php:609 src/Module/Circle.php:180 -#: src/Module/Circle.php:203 src/Module/Circle.php:278 +#: src/Model/Circle.php:595 src/Module/Circle.php:166 +#: src/Module/Circle.php:189 src/Module/Circle.php:264 msgid "Circle Name: " msgstr "Название круга:" -#: src/Model/Circle.php:610 +#: src/Model/Circle.php:596 msgid "Edit circles" msgstr "Редактировать круги" -#: src/Model/Contact.php:1270 src/Module/Moderation/Users/Pending.php:102 -#: src/Module/Notifications/Introductions.php:138 -#: src/Module/Notifications/Introductions.php:210 +#: src/Model/Contact.php:1263 src/Module/Moderation/Users/Pending.php:88 +#: src/Module/Notifications/Introductions.php:124 +#: src/Module/Notifications/Introductions.php:196 msgid "Approve" msgstr "Одобрить" -#: src/Model/Contact.php:1750 +#: src/Model/Contact.php:1743 msgid "Organisation" msgstr "Организация" -#: src/Model/Contact.php:1758 +#: src/Model/Contact.php:1751 msgid "Group" msgstr "Группа" -#: src/Model/Contact.php:1762 src/Module/Moderation/BaseUsers.php:131 +#: src/Model/Contact.php:1755 src/Module/Moderation/BaseUsers.php:120 msgid "Relay" msgstr "Ретранслятор" -#: src/Model/Contact.php:3084 +#: src/Model/Contact.php:3070 msgid "Disallowed profile URL." msgstr "Запрещенный URL профиля." -#: src/Model/Contact.php:3089 src/Module/Friendica.php:100 +#: src/Model/Contact.php:3075 src/Module/Friendica.php:86 msgid "Blocked domain" msgstr "Заблокированный домен" -#: src/Model/Contact.php:3094 +#: src/Model/Contact.php:3080 msgid "Connect URL missing." msgstr "Connect-URL отсутствует." -#: src/Model/Contact.php:3103 +#: src/Model/Contact.php:3089 msgid "" "The contact could not be added. Please check the relevant network " "credentials in your Settings -> Social Networks page." msgstr "Контакт не может быть добавлен. Пожалуйста проверьте учётные данные на странице Настройки -> Социальные сети." -#: src/Model/Contact.php:3121 +#: src/Model/Contact.php:3107 #, php-format msgid "Expected network %s does not match actual network %s" msgstr "Ожидаемая сеть %s не соответствует обнаруженной сети %s" -#: src/Model/Contact.php:3138 +#: src/Model/Contact.php:3124 msgid "This seems to be a relay account. They can't be followed by users." msgstr "Похоже, что это аккаунт релея. На такие нельзя подписаться." -#: src/Model/Contact.php:3145 +#: src/Model/Contact.php:3131 msgid "The profile address specified does not provide adequate information." msgstr "Указанный адрес профиля не дает адекватной информации." -#: src/Model/Contact.php:3147 +#: src/Model/Contact.php:3133 msgid "No compatible communication protocols or feeds were discovered." msgstr "Обнаружены несовместимые протоколы связи или каналы." -#: src/Model/Contact.php:3150 +#: src/Model/Contact.php:3136 msgid "An author or name was not found." msgstr "Автор или имя не найдены." -#: src/Model/Contact.php:3153 +#: src/Model/Contact.php:3139 msgid "No browser URL could be matched to this address." msgstr "Нет URL браузера, который соответствует этому адресу." -#: src/Model/Contact.php:3156 +#: src/Model/Contact.php:3142 msgid "" "Unable to match @-style Identity Address with a known protocol or email " "contact." msgstr "Не получается совместить этот адрес с известным протоколом или контактом электронной почты." -#: src/Model/Contact.php:3157 +#: src/Model/Contact.php:3143 msgid "Use mailto: in front of address to force email check." msgstr "Bcgjkmpeqnt mailto: перед адресом для быстрого доступа к email." -#: src/Model/Contact.php:3163 -msgid "" -"The profile address specified belongs to a network which has been disabled " -"on this site." -msgstr "Указанный адрес профиля принадлежит сети, недоступной на этом сайта." - -#: src/Model/Contact.php:3168 +#: src/Model/Contact.php:3149 msgid "" "Limited profile. This person will be unable to receive direct/personal " "notifications from you." msgstr "Ограниченный профиль. Этот человек не сможет получить прямые / личные уведомления от вас." -#: src/Model/Contact.php:3234 +#: src/Model/Contact.php:3208 msgid "Unable to retrieve contact information." msgstr "Невозможно получить контактную информацию." -#: src/Model/Event.php:54 +#: src/Model/Event.php:40 msgid "l F d, Y \\@ g:i A \\G\\M\\TP (e)" msgstr "" -#: src/Model/Event.php:75 src/Model/Event.php:92 src/Model/Event.php:469 -#: src/Model/Event.php:942 +#: src/Model/Event.php:61 src/Model/Event.php:78 src/Model/Event.php:455 +#: src/Model/Event.php:928 msgid "Starts:" msgstr "Начало:" -#: src/Model/Event.php:78 src/Model/Event.php:98 src/Model/Event.php:470 -#: src/Model/Event.php:946 +#: src/Model/Event.php:64 src/Model/Event.php:84 src/Model/Event.php:456 +#: src/Model/Event.php:932 msgid "Finishes:" msgstr "Окончание:" -#: src/Model/Event.php:419 +#: src/Model/Event.php:405 msgid "all-day" msgstr "Весь день" -#: src/Model/Event.php:445 +#: src/Model/Event.php:431 msgid "Sept" msgstr "Сен" -#: src/Model/Event.php:462 src/Module/Calendar/Show.php:128 -#: src/Util/Temporal.php:343 +#: src/Model/Event.php:448 src/Module/Calendar/Show.php:114 +#: src/Util/Temporal.php:329 msgid "today" msgstr "сегодня" -#: src/Model/Event.php:463 src/Module/Calendar/Show.php:129 -#: src/Module/Settings/Display.php:294 src/Util/Temporal.php:353 +#: src/Model/Event.php:449 src/Module/Calendar/Show.php:115 +#: src/Module/Settings/Display.php:280 src/Util/Temporal.php:339 msgid "month" msgstr "мес." -#: src/Model/Event.php:464 src/Module/Calendar/Show.php:130 -#: src/Module/Settings/Display.php:295 src/Util/Temporal.php:354 +#: src/Model/Event.php:450 src/Module/Calendar/Show.php:116 +#: src/Module/Settings/Display.php:281 src/Util/Temporal.php:340 msgid "week" msgstr "неделя" -#: src/Model/Event.php:465 src/Module/Calendar/Show.php:131 -#: src/Module/Settings/Display.php:296 src/Util/Temporal.php:355 +#: src/Model/Event.php:451 src/Module/Calendar/Show.php:117 +#: src/Module/Settings/Display.php:282 src/Util/Temporal.php:341 msgid "day" msgstr "день" -#: src/Model/Event.php:467 +#: src/Model/Event.php:453 msgid "No events to display" msgstr "Нет событий для показа" -#: src/Model/Event.php:516 src/Module/DFRN/Poll.php:47 src/Module/Feed.php:70 -#: src/Module/Update/Profile.php:56 +#: src/Model/Event.php:502 src/Module/Feed.php:56 +#: src/Module/Update/Profile.php:42 msgid "Access to this profile has been restricted." msgstr "Доступ к этому профилю ограничен." -#: src/Model/Event.php:558 src/Module/Calendar/Event/Show.php:67 +#: src/Model/Event.php:544 src/Module/Calendar/Event/Show.php:53 msgid "Event not found." msgstr "Событие не найдено" -#: src/Model/Event.php:637 +#: src/Model/Event.php:623 msgid "l, F j" msgstr "l, j F" -#: src/Model/Event.php:664 +#: src/Model/Event.php:650 msgid "Edit event" msgstr "Редактировать мероприятие" -#: src/Model/Event.php:665 +#: src/Model/Event.php:651 msgid "Duplicate event" msgstr "Дубликат события" -#: src/Model/Event.php:666 +#: src/Model/Event.php:652 msgid "Delete event" msgstr "Удалить событие" -#: src/Model/Event.php:896 src/Module/Debug/Localtime.php:38 +#: src/Model/Event.php:882 src/Module/Debug/Localtime.php:24 msgid "l F d, Y \\@ g:i A" msgstr "l F d, Y \\@ g:i A" -#: src/Model/Event.php:897 +#: src/Model/Event.php:883 msgid "D g:i A" msgstr "D g:i A" -#: src/Model/Event.php:898 +#: src/Model/Event.php:884 msgid "g:i A" msgstr "g:i A" -#: src/Model/Event.php:961 src/Model/Event.php:963 +#: src/Model/Event.php:947 src/Model/Event.php:949 msgid "Show map" msgstr "Показать карту" -#: src/Model/Event.php:962 +#: src/Model/Event.php:948 msgid "Hide map" msgstr "Скрыть карту" -#: src/Model/Event.php:1055 +#: src/Model/Event.php:1041 #, php-format msgid "%s's birthday" msgstr "день рождения %s" -#: src/Model/Event.php:1056 +#: src/Model/Event.php:1042 #, php-format msgid "Happy Birthday %s" msgstr "С днём рождения %s" -#: src/Model/Item.php:2355 +#: src/Model/Item.php:2322 #, php-format msgid "%s (%s - %s): %s" msgstr "" -#: src/Model/Item.php:2357 +#: src/Model/Item.php:2324 #, php-format msgid "%s (%s): %s" msgstr "" -#: src/Model/Item.php:2360 +#: src/Model/Item.php:2327 #, php-format -msgid "Detected languages in this post:\\n%s" -msgstr "Обнаруженные в этой записи языки:\\n%s" +msgid "" +"Detected languages in this post:\n" +"%s" +msgstr "" -#: src/Model/Item.php:3308 +#: src/Model/Item.php:3276 msgid "activity" msgstr "активность" -#: src/Model/Item.php:3310 +#: src/Model/Item.php:3278 msgid "comment" msgstr "комментарий" -#: src/Model/Item.php:3313 src/Module/Post/Tag/Add.php:123 +#: src/Model/Item.php:3281 src/Module/Post/Tag/Add.php:109 msgid "post" msgstr "пост" -#: src/Model/Item.php:3483 +#: src/Model/Item.php:3451 #, php-format msgid "%s is blocked" msgstr "%s заблокирован" -#: src/Model/Item.php:3485 +#: src/Model/Item.php:3453 #, php-format msgid "%s is ignored" msgstr "%s игнорируется" -#: src/Model/Item.php:3487 +#: src/Model/Item.php:3455 #, php-format msgid "Content from %s is collapsed" msgstr "Запись от %s скрыта" -#: src/Model/Item.php:3491 +#: src/Model/Item.php:3459 msgid "Sensitive content" msgstr "" -#: src/Model/Item.php:3960 +#: src/Model/Item.php:3928 msgid "bytes" msgstr "байт" -#: src/Model/Item.php:3991 +#: src/Model/Item.php:3959 #, php-format msgid "%2$s (%3$d%%, %1$d vote)" msgid_plural "%2$s (%3$d%%, %1$d votes)" @@ -3603,7 +3598,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:3993 +#: src/Model/Item.php:3961 #, php-format msgid "%2$s (%1$d vote)" msgid_plural "%2$s (%1$d votes)" @@ -3612,7 +3607,7 @@ msgstr[1] "%2$s (%1$d голоса)" msgstr[2] "%2$s (%1$d голосов)" msgstr[3] "%2$s (%1$d голосов)" -#: src/Model/Item.php:3998 +#: src/Model/Item.php:3966 #, php-format msgid "%d voter. Poll end: %s" msgid_plural "%d voters. Poll end: %s" @@ -3621,7 +3616,7 @@ msgstr[1] "%d голоса. Конец опроса: %s" msgstr[2] "%d голосов. Конец опроса: %s" msgstr[3] "%d голосов. Конец опроса: %s" -#: src/Model/Item.php:4000 +#: src/Model/Item.php:3968 #, php-format msgid "%d voter." msgid_plural "%d voters." @@ -3630,241 +3625,241 @@ msgstr[1] "%d голоса." msgstr[2] "%d голосов." msgstr[3] "%d голосов." -#: src/Model/Item.php:4002 +#: src/Model/Item.php:3970 #, php-format msgid "Poll end: %s" msgstr "Конец опроса: %s" -#: src/Model/Item.php:4043 src/Model/Item.php:4044 +#: src/Model/Item.php:4011 src/Model/Item.php:4012 msgid "View on separate page" msgstr "Посмотреть в отдельной вкладке" -#: src/Model/Mail.php:135 +#: src/Model/Mail.php:121 msgid "[no subject]" msgstr "[без темы]" -#: src/Model/Photo.php:1198 src/Module/Media/Photo/Upload.php:168 +#: src/Model/Photo.php:1194 src/Module/Media/Photo/Upload.php:154 msgid "Wall Photos" msgstr "Фото стены" -#: src/Model/Profile.php:357 src/Module/Profile/Profile.php:285 -#: src/Module/Profile/Profile.php:287 +#: src/Model/Profile.php:343 src/Module/Profile/Profile.php:271 +#: src/Module/Profile/Profile.php:273 msgid "Edit profile" msgstr "Редактировать профиль" -#: src/Model/Profile.php:359 +#: src/Model/Profile.php:345 msgid "Change profile photo" msgstr "Изменить фото профиля" -#: src/Model/Profile.php:372 src/Module/Directory.php:153 -#: src/Module/Profile/Profile.php:211 +#: src/Model/Profile.php:358 src/Module/Directory.php:139 +#: src/Module/Profile/Profile.php:197 msgid "Homepage:" msgstr "Домашняя страничка:" -#: src/Model/Profile.php:373 src/Module/Contact/Profile.php:432 -#: src/Module/Notifications/Introductions.php:195 +#: src/Model/Profile.php:359 src/Module/Contact/Profile.php:418 +#: src/Module/Notifications/Introductions.php:181 msgid "About:" msgstr "О себе:" -#: src/Model/Profile.php:474 +#: src/Model/Profile.php:460 msgid "Atom feed" msgstr "Фид Atom" -#: src/Model/Profile.php:481 +#: src/Model/Profile.php:467 msgid "This website has been verified to belong to the same person." msgstr "Принадлежность этой веб-страницы данному пользователю была подтверждена." -#: src/Model/Profile.php:532 +#: src/Model/Profile.php:518 msgid "F d" msgstr "F d" -#: src/Model/Profile.php:596 src/Model/Profile.php:677 +#: src/Model/Profile.php:582 src/Model/Profile.php:663 msgid "[today]" msgstr "[сегодня]" -#: src/Model/Profile.php:605 +#: src/Model/Profile.php:591 msgid "Birthday Reminders" msgstr "Напоминания о днях рождения" -#: src/Model/Profile.php:606 +#: src/Model/Profile.php:592 msgid "Birthdays this week:" msgstr "Дни рождения на этой неделе:" -#: src/Model/Profile.php:622 +#: src/Model/Profile.php:608 msgid "g A l F d" msgstr "g A l F d" -#: src/Model/Profile.php:664 +#: src/Model/Profile.php:650 msgid "[No description]" msgstr "[без описания]" -#: src/Model/Profile.php:690 +#: src/Model/Profile.php:676 msgid "Event Reminders" msgstr "Напоминания о мероприятиях" -#: src/Model/Profile.php:691 +#: src/Model/Profile.php:677 msgid "Upcoming events the next 7 days:" msgstr "События на ближайшие 7 дней:" -#: src/Model/Profile.php:803 +#: src/Model/Profile.php:789 msgid "Hometown:" msgstr "Родной город:" -#: src/Model/Profile.php:804 +#: src/Model/Profile.php:790 msgid "Marital Status:" msgstr "Семейное положение:" -#: src/Model/Profile.php:805 +#: src/Model/Profile.php:791 msgid "With:" msgstr "Вместе:" -#: src/Model/Profile.php:806 +#: src/Model/Profile.php:792 msgid "Since:" msgstr "С:" -#: src/Model/Profile.php:807 +#: src/Model/Profile.php:793 msgid "Sexual Preference:" msgstr "Сексуальные предпочтения:" -#: src/Model/Profile.php:808 +#: src/Model/Profile.php:794 msgid "Political Views:" msgstr "Политические взгляды:" -#: src/Model/Profile.php:809 +#: src/Model/Profile.php:795 msgid "Religious Views:" msgstr "Религиозные взгляды:" -#: src/Model/Profile.php:810 +#: src/Model/Profile.php:796 msgid "Likes:" msgstr "Нравится:" -#: src/Model/Profile.php:811 +#: src/Model/Profile.php:797 msgid "Dislikes:" msgstr "Не нравится:" -#: src/Model/Profile.php:812 +#: src/Model/Profile.php:798 msgid "Title/Description:" msgstr "Заголовок / Описание:" -#: src/Model/Profile.php:813 src/Module/Admin/Summary.php:197 -#: src/Module/Moderation/Report/Create.php:280 -#: src/Module/Moderation/Summary.php:76 +#: src/Model/Profile.php:799 src/Module/Admin/Summary.php:183 +#: src/Module/Moderation/Report/Create.php:266 +#: src/Module/Moderation/Summary.php:62 msgid "Summary" msgstr "Резюме" -#: src/Model/Profile.php:814 +#: src/Model/Profile.php:800 msgid "Musical interests" msgstr "Музыкальные интересы" -#: src/Model/Profile.php:815 +#: src/Model/Profile.php:801 msgid "Books, literature" msgstr "Книги, литература" -#: src/Model/Profile.php:816 +#: src/Model/Profile.php:802 msgid "Television" msgstr "Телевидение" -#: src/Model/Profile.php:817 +#: src/Model/Profile.php:803 msgid "Film/dance/culture/entertainment" msgstr "Кино / танцы / культура / развлечения" -#: src/Model/Profile.php:818 +#: src/Model/Profile.php:804 msgid "Hobbies/Interests" msgstr "Хобби / Интересы" -#: src/Model/Profile.php:819 +#: src/Model/Profile.php:805 msgid "Love/romance" msgstr "Любовь / романтика" -#: src/Model/Profile.php:820 +#: src/Model/Profile.php:806 msgid "Work/employment" msgstr "Работа / занятость" -#: src/Model/Profile.php:821 +#: src/Model/Profile.php:807 msgid "School/education" msgstr "Школа / образование" -#: src/Model/Profile.php:822 +#: src/Model/Profile.php:808 msgid "Contact information and Social Networks" msgstr "Контактная информация и социальные сети" -#: src/Model/Profile.php:870 +#: src/Model/Profile.php:856 #, php-format msgid "Responsible account: %s" msgstr "" -#: src/Model/User.php:233 src/Model/User.php:1326 +#: src/Model/User.php:217 src/Model/User.php:1310 msgid "SERIOUS ERROR: Generation of security keys failed." msgstr "СЕРЬЕЗНАЯ ОШИБКА: генерация ключей безопасности не удалась." -#: src/Model/User.php:756 src/Model/User.php:789 +#: src/Model/User.php:740 src/Model/User.php:773 msgid "Login failed" msgstr "Вход не удался" -#: src/Model/User.php:821 +#: src/Model/User.php:805 msgid "Not enough information to authenticate" msgstr "Недостаточно информации для входа" -#: src/Model/User.php:946 +#: src/Model/User.php:930 msgid "Password can't be empty" msgstr "Пароль не может быть пустым" -#: src/Model/User.php:988 +#: src/Model/User.php:972 msgid "Empty passwords are not allowed." msgstr "Пароль не должен быть пустым." -#: src/Model/User.php:992 +#: src/Model/User.php:976 msgid "" "The new password has been exposed in a public data dump, please choose " "another." msgstr "Новый пароль содержится в опубликованных списках украденных паролей, пожалуйста, используйте другой." -#: src/Model/User.php:996 +#: src/Model/User.php:980 msgid "The password length is limited to 72 characters." msgstr "Длина пароля ограничена 72 символами." -#: src/Model/User.php:1000 +#: src/Model/User.php:984 msgid "The password can't contain white spaces nor accentuated letters" msgstr "Пароль не может содержать пробелов и букв с акцентами." -#: src/Model/User.php:1209 +#: src/Model/User.php:1193 msgid "Passwords do not match. Password unchanged." msgstr "Пароли не совпадают. Пароль не изменен." -#: src/Model/User.php:1216 +#: src/Model/User.php:1200 msgid "An invitation is required." msgstr "Требуется приглашение." -#: src/Model/User.php:1220 +#: src/Model/User.php:1204 msgid "Invitation could not be verified." msgstr "Приглашение не может быть проверено." -#: src/Model/User.php:1228 +#: src/Model/User.php:1212 msgid "Invalid OpenID url" msgstr "Неверный URL OpenID" -#: src/Model/User.php:1241 src/Security/Authentication.php:228 +#: src/Model/User.php:1225 src/Security/Authentication.php:214 msgid "" "We encountered a problem while logging in with the OpenID you provided. " "Please check the correct spelling of the ID." msgstr "Мы столкнулись с проблемой при входе с OpenID, который вы указали. Пожалуйста, проверьте правильность написания ID." -#: src/Model/User.php:1241 src/Security/Authentication.php:228 +#: src/Model/User.php:1225 src/Security/Authentication.php:214 msgid "The error message was:" msgstr "Сообщение об ошибке было:" -#: src/Model/User.php:1247 +#: src/Model/User.php:1231 msgid "Please enter the required information." msgstr "Пожалуйста, введите необходимую информацию." -#: src/Model/User.php:1261 +#: src/Model/User.php:1245 #, php-format msgid "" "system.username_min_length (%s) and system.username_max_length (%s) are " "excluding each other, swapping values." msgstr "system.username_min_length (%s) и system.username_max_length (%s) противоречат друг другу, меняем их местами." -#: src/Model/User.php:1268 +#: src/Model/User.php:1252 #, php-format msgid "Username should be at least %s character." msgid_plural "Username should be at least %s characters." @@ -3873,7 +3868,7 @@ msgstr[1] "Имя пользователя должно быть хотя бы % msgstr[2] "Имя пользователя должно быть хотя бы %s символов." msgstr[3] "Имя пользователя должно быть хотя бы %s символов." -#: src/Model/User.php:1272 +#: src/Model/User.php:1256 #, php-format msgid "Username should be at most %s character." msgid_plural "Username should be at most %s characters." @@ -3882,60 +3877,60 @@ msgstr[1] "Имя пользователя должно быть не больш msgstr[2] "Имя пользователя должно быть не больше %s символов." msgstr[3] "Имя пользователя должно быть не больше %s символов." -#: src/Model/User.php:1280 +#: src/Model/User.php:1264 msgid "That doesn't appear to be your full (First Last) name." msgstr "Кажется, что это ваше неполное (Имя Фамилия) имя." -#: src/Model/User.php:1285 +#: src/Model/User.php:1269 msgid "Your email domain is not among those allowed on this site." msgstr "Домен вашего адреса электронной почты не относится к числу разрешенных на этом сайте." -#: src/Model/User.php:1289 +#: src/Model/User.php:1273 msgid "Not a valid email address." msgstr "Неверный адрес электронной почты." -#: src/Model/User.php:1292 +#: src/Model/User.php:1276 msgid "The nickname was blocked from registration by the nodes admin." msgstr "Этот ник был заблокирован для регистрации администратором узла." -#: src/Model/User.php:1296 src/Model/User.php:1302 +#: src/Model/User.php:1280 src/Model/User.php:1286 msgid "Cannot use that email." msgstr "Нельзя использовать этот Email." -#: src/Model/User.php:1308 +#: src/Model/User.php:1292 msgid "Your nickname can only contain a-z, 0-9 and _." msgstr "Ваш ник может содержать только символы a-z, 0-9 и _." -#: src/Model/User.php:1316 src/Model/User.php:1373 +#: src/Model/User.php:1300 src/Model/User.php:1350 msgid "Nickname is already registered. Please choose another." msgstr "Такой ник уже зарегистрирован. Пожалуйста, выберите другой." -#: src/Model/User.php:1360 src/Model/User.php:1364 +#: src/Model/User.php:1337 src/Model/User.php:1341 msgid "An error occurred during registration. Please try again." msgstr "Ошибка при регистрации. Пожалуйста, попробуйте еще раз." -#: src/Model/User.php:1387 +#: src/Model/User.php:1364 msgid "An error occurred creating your default profile. Please try again." msgstr "Ошибка создания вашего профиля. Пожалуйста, попробуйте еще раз." -#: src/Model/User.php:1394 +#: src/Model/User.php:1371 msgid "An error occurred creating your self contact. Please try again." msgstr "При создании вашего контакта возникла проблема. Пожалуйста, попробуйте ещё раз." -#: src/Model/User.php:1399 +#: src/Model/User.php:1376 msgid "Friends" msgstr "Друзья" -#: src/Model/User.php:1403 +#: src/Model/User.php:1380 msgid "" "An error occurred creating your default contact circle. Please try again." msgstr "При создании круга контактов по-умолчанию возникла ошибка. Пожалуйста, попробуйте ещё раз." -#: src/Model/User.php:1445 +#: src/Model/User.php:1428 msgid "Profile Photos" msgstr "Фотографии профиля" -#: src/Model/User.php:1633 +#: src/Model/User.php:1616 #, php-format msgid "" "\n" @@ -3943,7 +3938,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:1636 +#: src/Model/User.php:1619 #, php-format msgid "" "\n" @@ -3974,12 +3969,12 @@ msgid "" "\t\tThank you and welcome to %4$s." msgstr "" -#: src/Model/User.php:1668 src/Model/User.php:1774 +#: src/Model/User.php:1651 src/Model/User.php:1757 #, php-format msgid "Registration details for %s" msgstr "Подробности регистрации для %s" -#: src/Model/User.php:1688 +#: src/Model/User.php:1671 #, php-format msgid "" "\n" @@ -3994,12 +3989,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:1707 +#: src/Model/User.php:1690 #, php-format msgid "Registration at %s" msgstr "Регистрация на %s" -#: src/Model/User.php:1731 +#: src/Model/User.php:1714 #, php-format msgid "" "\n" @@ -4008,7 +4003,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:1739 +#: src/Model/User.php:1722 #, php-format msgid "" "\n" @@ -4039,93 +4034,91 @@ msgid "" "\t\t\tThank you and welcome to %2$s." msgstr "" -#: src/Model/User.php:1801 +#: src/Model/User.php:1784 msgid "" "User with delegates can't be removed, please remove delegate users first" msgstr "" -#: src/Module/Admin/Addons/Details.php:65 +#: src/Module/Admin/Addons/Details.php:51 msgid "Addon not found." msgstr "Дополнение не найдено." -#: src/Module/Admin/Addons/Details.php:76 src/Module/Admin/Addons/Index.php:55 +#: src/Module/Admin/Addons/Details.php:62 src/Module/Admin/Addons/Index.php:41 #, php-format msgid "Addon %s disabled." msgstr "Дополнение %s отключено." -#: src/Module/Admin/Addons/Details.php:79 src/Module/Admin/Addons/Index.php:57 +#: src/Module/Admin/Addons/Details.php:65 src/Module/Admin/Addons/Index.php:43 #, php-format msgid "Addon %s enabled." msgstr "Дополнение %s включено." -#: src/Module/Admin/Addons/Details.php:88 -#: src/Module/Admin/Themes/Details.php:52 +#: src/Module/Admin/Addons/Details.php:74 +#: src/Module/Admin/Themes/Details.php:38 msgid "Disable" msgstr "Отключить" -#: src/Module/Admin/Addons/Details.php:91 -#: src/Module/Admin/Themes/Details.php:55 src/Module/Settings/Display.php:340 +#: src/Module/Admin/Addons/Details.php:77 +#: src/Module/Admin/Themes/Details.php:41 src/Module/Settings/Display.php:326 msgid "Enable" msgstr "Включить" -#: src/Module/Admin/Addons/Details.php:111 -#: src/Module/Admin/Addons/Index.php:73 src/Module/Admin/Federation.php:220 -#: src/Module/Admin/Logs/Settings.php:88 src/Module/Admin/Logs/View.php:85 -#: src/Module/Admin/Queue.php:73 src/Module/Admin/Site.php:457 -#: src/Module/Admin/Storage.php:138 src/Module/Admin/Summary.php:196 -#: src/Module/Admin/Themes/Details.php:96 -#: src/Module/Admin/Themes/Index.php:117 src/Module/Admin/Tos.php:77 -#: src/Module/Moderation/Users/Create.php:61 -#: src/Module/Moderation/Users/Pending.php:96 +#: src/Module/Admin/Addons/Details.php:97 src/Module/Admin/Addons/Index.php:59 +#: src/Module/Admin/Federation.php:206 src/Module/Admin/Logs/Settings.php:74 +#: src/Module/Admin/Logs/View.php:71 src/Module/Admin/Queue.php:59 +#: src/Module/Admin/Site.php:447 src/Module/Admin/Storage.php:124 +#: src/Module/Admin/Summary.php:182 src/Module/Admin/Themes/Details.php:82 +#: src/Module/Admin/Themes/Index.php:103 src/Module/Admin/Tos.php:63 +#: src/Module/Moderation/Users/Create.php:47 +#: src/Module/Moderation/Users/Pending.php:82 msgid "Administration" msgstr "Администрирование" -#: src/Module/Admin/Addons/Details.php:112 -#: src/Module/Admin/Addons/Index.php:74 src/Module/BaseAdmin.php:92 -#: src/Module/BaseSettings.php:139 +#: src/Module/Admin/Addons/Details.php:98 src/Module/Admin/Addons/Index.php:60 +#: src/Module/BaseAdmin.php:78 src/Module/BaseSettings.php:125 msgid "Addons" msgstr "Дополнения" -#: src/Module/Admin/Addons/Details.php:113 -#: src/Module/Admin/Themes/Details.php:98 +#: src/Module/Admin/Addons/Details.php:99 +#: src/Module/Admin/Themes/Details.php:84 msgid "Toggle" msgstr "Переключить" -#: src/Module/Admin/Addons/Details.php:120 -#: src/Module/Admin/Themes/Details.php:106 +#: src/Module/Admin/Addons/Details.php:106 +#: src/Module/Admin/Themes/Details.php:92 msgid "Author: " msgstr "Автор:" -#: src/Module/Admin/Addons/Details.php:121 -#: src/Module/Admin/Themes/Details.php:107 +#: src/Module/Admin/Addons/Details.php:107 +#: src/Module/Admin/Themes/Details.php:93 msgid "Maintainer: " msgstr "Программа обслуживания: " -#: src/Module/Admin/Addons/Index.php:48 +#: src/Module/Admin/Addons/Index.php:34 msgid "Addons reloaded" msgstr "Дополнения перезагружены" -#: src/Module/Admin/Addons/Index.php:59 +#: src/Module/Admin/Addons/Index.php:45 #, php-format msgid "Addon %s failed to install." msgstr "Не удалось установить дополнение %s." -#: src/Module/Admin/Addons/Index.php:75 src/Module/Admin/Features.php:83 -#: src/Module/Admin/Logs/Settings.php:90 src/Module/Admin/Site.php:460 -#: src/Module/Admin/Themes/Index.php:119 src/Module/Admin/Tos.php:86 -#: src/Module/Settings/Account.php:563 src/Module/Settings/Addons.php:78 -#: src/Module/Settings/Connectors.php:163 -#: src/Module/Settings/Connectors.php:256 -#: src/Module/Settings/Delegation.php:193 src/Module/Settings/Display.php:309 -#: src/Module/Settings/Features.php:75 +#: src/Module/Admin/Addons/Index.php:61 src/Module/Admin/Features.php:69 +#: src/Module/Admin/Logs/Settings.php:76 src/Module/Admin/Site.php:450 +#: src/Module/Admin/Themes/Index.php:105 src/Module/Admin/Tos.php:72 +#: src/Module/Settings/Account.php:549 src/Module/Settings/Addons.php:64 +#: src/Module/Settings/Connectors.php:149 +#: src/Module/Settings/Connectors.php:235 +#: src/Module/Settings/Delegation.php:179 src/Module/Settings/Display.php:295 +#: src/Module/Settings/Features.php:61 msgid "Save Settings" msgstr "Сохранить настройки" -#: src/Module/Admin/Addons/Index.php:76 +#: src/Module/Admin/Addons/Index.php:62 msgid "Reload active addons" msgstr "Перезагрузить активные дополнения" -#: src/Module/Admin/Addons/Index.php:80 +#: src/Module/Admin/Addons/Index.php:66 #, php-format msgid "" "There are currently no addons available on your node. You can find the " @@ -4133,98 +4126,98 @@ msgid "" " the open addon registry at %2$s" msgstr "На вашем узле пока нет доступных дополнений. Вы можете найти официальный репозиторий дополнений на %1$s и найти больше интересных дополнений в открытой библиотеке на %2$s" -#: src/Module/Admin/DBSync.php:51 +#: src/Module/Admin/DBSync.php:37 msgid "Update has been marked successful" msgstr "Обновление было успешно отмечено" -#: src/Module/Admin/DBSync.php:59 +#: src/Module/Admin/DBSync.php:45 #, php-format msgid "Database structure update %s was successfully applied." msgstr "Обновление базы данных %s успешно применено." -#: src/Module/Admin/DBSync.php:61 +#: src/Module/Admin/DBSync.php:47 #, php-format msgid "Executing of database structure update %s failed with error: %s" msgstr "Выполнение обновления базы данных %s завершено с ошибкой: %s" -#: src/Module/Admin/DBSync.php:76 +#: src/Module/Admin/DBSync.php:62 #, php-format msgid "Executing %s failed with error: %s" msgstr "Выполнение %s завершено с ошибкой: %s" -#: src/Module/Admin/DBSync.php:78 +#: src/Module/Admin/DBSync.php:64 #, php-format msgid "Update %s was successfully applied." msgstr "Обновление %s успешно применено." -#: src/Module/Admin/DBSync.php:81 +#: src/Module/Admin/DBSync.php:67 #, php-format msgid "Update %s did not return a status. Unknown if it succeeded." msgstr "Процесс обновления %s не вернул статус. Не известно, выполнено, или нет." -#: src/Module/Admin/DBSync.php:84 +#: src/Module/Admin/DBSync.php:70 #, php-format msgid "There was no additional update function %s that needed to be called." msgstr "Не было процедур обновления %s, которые нужно было запустить." -#: src/Module/Admin/DBSync.php:105 +#: src/Module/Admin/DBSync.php:91 msgid "No failed updates." msgstr "Неудавшихся обновлений нет." -#: src/Module/Admin/DBSync.php:106 +#: src/Module/Admin/DBSync.php:92 msgid "Check database structure" msgstr "Проверить структуру базы данных" -#: src/Module/Admin/DBSync.php:110 +#: src/Module/Admin/DBSync.php:96 msgid "Failed Updates" msgstr "Неудавшиеся обновления" -#: src/Module/Admin/DBSync.php:111 +#: src/Module/Admin/DBSync.php:97 msgid "" "This does not include updates prior to 1139, which did not return a status." msgstr "Эта цифра не включает обновления до 1139, которое не возвращает статус." -#: src/Module/Admin/DBSync.php:112 +#: src/Module/Admin/DBSync.php:98 msgid "Mark success (if update was manually applied)" msgstr "Отмечено успешно (если обновление было применено вручную)" -#: src/Module/Admin/DBSync.php:113 +#: src/Module/Admin/DBSync.php:99 msgid "Attempt to execute this update step automatically" msgstr "Попытаться выполнить этот шаг обновления автоматически" -#: src/Module/Admin/Features.php:67 -#: src/Module/Notifications/Introductions.php:150 -#: src/Module/OAuth/Acknowledge.php:55 src/Module/Register.php:138 -#: src/Module/Settings/TwoFactor/Trusted.php:129 +#: src/Module/Admin/Features.php:53 +#: src/Module/Notifications/Introductions.php:136 +#: src/Module/OAuth/Acknowledge.php:41 src/Module/Register.php:124 +#: src/Module/Settings/TwoFactor/Trusted.php:115 msgid "No" msgstr "Нет" -#: src/Module/Admin/Features.php:67 src/Module/Contact/Revoke.php:105 -#: src/Module/Notifications/Introductions.php:150 -#: src/Module/OAuth/Acknowledge.php:54 src/Module/Register.php:137 -#: src/Module/Settings/TwoFactor/Trusted.php:129 +#: src/Module/Admin/Features.php:53 src/Module/Contact/Revoke.php:91 +#: src/Module/Notifications/Introductions.php:136 +#: src/Module/OAuth/Acknowledge.php:40 src/Module/Register.php:123 +#: src/Module/Settings/TwoFactor/Trusted.php:115 msgid "Yes" msgstr "Да" -#: src/Module/Admin/Features.php:67 +#: src/Module/Admin/Features.php:53 msgid "Locked" msgstr "" -#: src/Module/Admin/Features.php:81 +#: src/Module/Admin/Features.php:67 msgid "Manage Additional Features" msgstr "Управление дополнительными возможностями" -#: src/Module/Admin/Federation.php:82 -#: src/Module/Moderation/Report/Create.php:191 -#: src/Module/Moderation/Report/Create.php:316 +#: src/Module/Admin/Federation.php:68 +#: src/Module/Moderation/Report/Create.php:177 +#: src/Module/Moderation/Report/Create.php:302 msgid "Other" msgstr "Другой" -#: src/Module/Admin/Federation.php:160 src/Module/Admin/Federation.php:408 +#: src/Module/Admin/Federation.php:146 src/Module/Admin/Federation.php:394 msgid "unknown" msgstr "неизвестно" -#: src/Module/Admin/Federation.php:193 +#: src/Module/Admin/Federation.php:179 #, php-format msgid "%2$s total system" msgid_plural "%2$s total systems" @@ -4233,7 +4226,7 @@ msgstr[1] "%2$s системы всего" msgstr[2] "%2$s систем всего" msgstr[3] "%2$s систем всего" -#: src/Module/Admin/Federation.php:194 +#: src/Module/Admin/Federation.php:180 #, php-format msgid "%2$s active user last month" msgid_plural "%2$s active users last month" @@ -4242,7 +4235,7 @@ msgstr[1] "%2$s активных пользователя за месяц" msgstr[2] "%2$s активных пользователей за месяц" msgstr[3] "%2$s активных пользователей за месяц" -#: src/Module/Admin/Federation.php:195 +#: src/Module/Admin/Federation.php:181 #, php-format msgid "%2$s active user last six months" msgid_plural "%2$s active users last six months" @@ -4251,7 +4244,7 @@ msgstr[1] "%2$s активных пользователя за полгода" msgstr[2] "%2$s активных пользователей за полгода" msgstr[3] "%2$s активных пользователей за полгода" -#: src/Module/Admin/Federation.php:196 +#: src/Module/Admin/Federation.php:182 #, php-format msgid "%2$s registered user" msgid_plural "%2$s registered users" @@ -4260,7 +4253,7 @@ msgstr[1] "%2$s зарегистрированных пользователя" msgstr[2] "%2$s зарегистрированных пользователей" msgstr[3] "%2$s зарегистрированных пользователей" -#: src/Module/Admin/Federation.php:197 +#: src/Module/Admin/Federation.php:183 #, php-format msgid "%2$s locally created post or comment" msgid_plural "%2$s locally created posts and comments" @@ -4269,7 +4262,7 @@ msgstr[1] "%2$s местных записей и комментариев" msgstr[2] "%2$s местных записей и комментариев" msgstr[3] "%2$s местных записей и комментариев" -#: src/Module/Admin/Federation.php:200 +#: src/Module/Admin/Federation.php:186 #, php-format msgid "%2$s post per user" msgid_plural "%2$s posts per user" @@ -4278,7 +4271,7 @@ msgstr[1] "%2$s записи на пользователя" msgstr[2] "%2$s записей на пользователя" msgstr[3] "%2$s записей на пользователя" -#: src/Module/Admin/Federation.php:205 +#: src/Module/Admin/Federation.php:191 #, php-format msgid "%2$s user per system" msgid_plural "%2$s users per system" @@ -4287,18 +4280,18 @@ msgstr[1] "%2$s пользователя на систему" msgstr[2] "%2$s пользователей на систему" msgstr[3] "%2$s пользователей на систему" -#: src/Module/Admin/Federation.php:215 +#: src/Module/Admin/Federation.php:201 msgid "" "This page offers you some numbers to the known part of the federated social " "network your Friendica node is part of. These numbers are not complete but " "only reflect the part of the network your node is aware of." msgstr "На этой странице вы можете увидеть немного статистики из известной вашему узлу федеративной сети. Эти данные неполные и только отражают ту часть сети, с которой ваш узел взаимодействовал." -#: src/Module/Admin/Federation.php:221 src/Module/BaseAdmin.php:87 +#: src/Module/Admin/Federation.php:207 src/Module/BaseAdmin.php:73 msgid "Federation Statistics" msgstr "Статистика федерации" -#: src/Module/Admin/Federation.php:224 +#: src/Module/Admin/Federation.php:210 #, php-format msgid "" "Currently this node is aware of %2$s node (%3$s active users last month, " @@ -4313,58 +4306,58 @@ msgstr[1] "Сейчас этому узлу известно о %2$s узлах msgstr[2] "Сейчас этому узлу известно о%2$s узлах (%3$s активных пользователей за месяц, %4$s активных пользователей за полгода, %5$s всего зарегистрированных) со следующими платформами:" msgstr[3] "Сейчас этому узлу известно о %2$s узлах (%3$s активных пользователей за месяц, %4$s активных пользователей за полгода, %5$s всего зарегистрированных) со следующими платформами:" -#: src/Module/Admin/Logs/Settings.php:47 +#: src/Module/Admin/Logs/Settings.php:33 #, php-format msgid "The logfile '%s' is not writable. No logging possible" msgstr "Файл журнала '%s' недоступен для записи. Журналирование невозможно." -#: src/Module/Admin/Logs/Settings.php:80 +#: src/Module/Admin/Logs/Settings.php:66 msgid "PHP log currently enabled." msgstr "Лог PHP включен." -#: src/Module/Admin/Logs/Settings.php:82 +#: src/Module/Admin/Logs/Settings.php:68 msgid "PHP log currently disabled." msgstr "Лог PHP выключен." -#: src/Module/Admin/Logs/Settings.php:89 src/Module/BaseAdmin.php:102 -#: src/Module/BaseAdmin.php:103 +#: src/Module/Admin/Logs/Settings.php:75 src/Module/BaseAdmin.php:88 +#: src/Module/BaseAdmin.php:89 msgid "Logs" msgstr "Журналы" -#: src/Module/Admin/Logs/Settings.php:91 +#: src/Module/Admin/Logs/Settings.php:77 msgid "Clear" msgstr "Очистить" -#: src/Module/Admin/Logs/Settings.php:94 +#: src/Module/Admin/Logs/Settings.php:80 msgid "Enable Debugging" msgstr "Включить отладку" -#: src/Module/Admin/Logs/Settings.php:94 src/Module/Admin/Logs/Settings.php:95 -#: src/Module/Admin/Logs/Settings.php:96 src/Module/Admin/Site.php:480 -#: src/Module/Admin/Site.php:488 +#: src/Module/Admin/Logs/Settings.php:80 src/Module/Admin/Logs/Settings.php:81 +#: src/Module/Admin/Logs/Settings.php:82 src/Module/Admin/Site.php:470 +#: src/Module/Admin/Site.php:478 msgid "" "Read-only because it is set by an environment variable" msgstr "" -#: src/Module/Admin/Logs/Settings.php:95 +#: src/Module/Admin/Logs/Settings.php:81 msgid "Log file" msgstr "Лог-файл" -#: src/Module/Admin/Logs/Settings.php:95 +#: src/Module/Admin/Logs/Settings.php:81 msgid "" "Must be writable by web server. Relative to your Friendica top-level " "directory." msgstr "Должно быть доступно для записи в веб-сервере. Относительно вашего Friendica каталога верхнего уровня." -#: src/Module/Admin/Logs/Settings.php:96 +#: src/Module/Admin/Logs/Settings.php:82 msgid "Log level" msgstr "Уровень лога" -#: src/Module/Admin/Logs/Settings.php:98 +#: src/Module/Admin/Logs/Settings.php:84 msgid "PHP logging" msgstr "PHP логирование" -#: src/Module/Admin/Logs/Settings.php:99 +#: src/Module/Admin/Logs/Settings.php:85 msgid "" "To temporarily enable logging of PHP errors and warnings you can prepend the" " following to the index.php file of your installation. The filename set in " @@ -4373,402 +4366,407 @@ msgid "" "'display_errors' is to enable these options, set to '0' to disable them." msgstr "Чтобы временно включить журналирование ошибок и предупреждений PHP, вы можете добавить следующее в файл index.php вашей установки. Имя файла, установленное в 'error_log', задаётся относительно каталога установки Френдики и у веб-сервера должно быть разрешение на запись в этот файл. Настройка 1' для 'log_errors' и 'display_errors' включает журналирование и отображение ошибок, '0' отключает." -#: src/Module/Admin/Logs/View.php:72 +#: src/Module/Admin/Logs/View.php:58 #, php-format msgid "" "Error trying to open %1$s log file.
Check to see if " "file %1$s exist and is readable." msgstr "Ошибка при открытии файла журнала %1$s.
Проверьте, что файл %1$s существует и может быть прочитан веб-сервером." -#: src/Module/Admin/Logs/View.php:81 +#: src/Module/Admin/Logs/View.php:67 #, php-format msgid "" "Couldn't open %1$s log file.
Check to see if file %1$s " "is readable." msgstr "Не получилось открыть файл журнала %1$s. Проверьте, что файл %1$s может быть прочитан веб-сервером." -#: src/Module/Admin/Logs/View.php:86 src/Module/BaseAdmin.php:104 +#: src/Module/Admin/Logs/View.php:72 src/Module/BaseAdmin.php:90 msgid "View Logs" msgstr "Просмотр журналов" -#: src/Module/Admin/Logs/View.php:89 +#: src/Module/Admin/Logs/View.php:75 msgid "Search in logs" msgstr "Поиск в журналах событий" -#: src/Module/Admin/Logs/View.php:90 -#: src/Module/Notifications/Notifications.php:146 +#: src/Module/Admin/Logs/View.php:76 +#: src/Module/Notifications/Notifications.php:132 msgid "Show all" msgstr "Показать все" -#: src/Module/Admin/Logs/View.php:91 +#: src/Module/Admin/Logs/View.php:77 msgid "Date" msgstr "Дата" -#: src/Module/Admin/Logs/View.php:92 +#: src/Module/Admin/Logs/View.php:78 msgid "Level" msgstr "Уровень" -#: src/Module/Admin/Logs/View.php:93 +#: src/Module/Admin/Logs/View.php:79 msgid "Context" msgstr "Контекст" -#: src/Module/Admin/Logs/View.php:95 +#: src/Module/Admin/Logs/View.php:81 msgid "ALL" msgstr "ВСЕ" -#: src/Module/Admin/Logs/View.php:96 +#: src/Module/Admin/Logs/View.php:82 msgid "View details" msgstr "Посмотреть детали" -#: src/Module/Admin/Logs/View.php:97 +#: src/Module/Admin/Logs/View.php:83 msgid "Click to view details" msgstr "Нажмите для просмотра подробностей" -#: src/Module/Admin/Logs/View.php:98 src/Module/Calendar/Event/Form.php:207 +#: src/Module/Admin/Logs/View.php:84 src/Module/Calendar/Event/Form.php:193 msgid "Event details" msgstr "Сведения о мероприятии" -#: src/Module/Admin/Logs/View.php:99 +#: src/Module/Admin/Logs/View.php:85 msgid "Data" msgstr "Данные" -#: src/Module/Admin/Logs/View.php:100 -#: src/Module/Debug/ActivityPubConversion.php:63 +#: src/Module/Admin/Logs/View.php:86 +#: src/Module/Debug/ActivityPubConversion.php:49 msgid "Source" msgstr "Источник" -#: src/Module/Admin/Logs/View.php:101 +#: src/Module/Admin/Logs/View.php:87 msgid "File" msgstr "Файл" -#: src/Module/Admin/Logs/View.php:102 +#: src/Module/Admin/Logs/View.php:88 msgid "Line" msgstr "Строка" -#: src/Module/Admin/Logs/View.php:103 +#: src/Module/Admin/Logs/View.php:89 msgid "Function" msgstr "Функция" -#: src/Module/Admin/Logs/View.php:104 +#: src/Module/Admin/Logs/View.php:90 msgid "UID" msgstr "UID" -#: src/Module/Admin/Logs/View.php:105 +#: src/Module/Admin/Logs/View.php:91 msgid "Process ID" msgstr "ID процесса" -#: src/Module/Admin/Logs/View.php:106 +#: src/Module/Admin/Logs/View.php:92 msgid "Close" msgstr "Закрыть" -#: src/Module/Admin/Queue.php:50 +#: src/Module/Admin/Queue.php:36 msgid "Inspect Deferred Worker Queue" msgstr "Посмотреть очередь отложенных заданий" -#: src/Module/Admin/Queue.php:51 +#: src/Module/Admin/Queue.php:37 msgid "" "This page lists the deferred worker jobs. This are jobs that couldn't be " "executed at the first time." msgstr "На этой странице отображаюттся отложенные задания планировщика. Эти задания по какой-то причине не были выполнены с первого раза." -#: src/Module/Admin/Queue.php:54 +#: src/Module/Admin/Queue.php:40 msgid "Inspect Worker Queue" msgstr "Посмотреть очередь заданий" -#: src/Module/Admin/Queue.php:55 +#: src/Module/Admin/Queue.php:41 msgid "" "This page lists the currently queued worker jobs. These jobs are handled by " "the worker cronjob you've set up during install." msgstr "На этой странице отображаются задания планировщика, которые в настоящий момент стоят в очереди на выполнение. Эти задания запускаются посредством планировщика cron, который вы настроили при установке." -#: src/Module/Admin/Queue.php:76 +#: src/Module/Admin/Queue.php:62 msgid "ID" msgstr "ID" -#: src/Module/Admin/Queue.php:77 +#: src/Module/Admin/Queue.php:63 msgid "Command" msgstr "Команда" -#: src/Module/Admin/Queue.php:78 +#: src/Module/Admin/Queue.php:64 msgid "Job Parameters" msgstr "Параметры задания" -#: src/Module/Admin/Queue.php:79 src/Module/Moderation/Reports.php:116 -#: src/Module/Settings/OAuth.php:74 +#: src/Module/Admin/Queue.php:65 src/Module/Moderation/Reports.php:102 +#: src/Module/Settings/OAuth.php:60 msgid "Created" msgstr "Создано" -#: src/Module/Admin/Queue.php:80 +#: src/Module/Admin/Queue.php:66 msgid "Next Try" msgstr "" -#: src/Module/Admin/Queue.php:81 +#: src/Module/Admin/Queue.php:67 msgid "Priority" msgstr "Приоритет" -#: src/Module/Admin/Site.php:244 +#: src/Module/Admin/Site.php:230 +#, php-format +msgid "%s is no valid input for maximum media size" +msgstr "" + +#: src/Module/Admin/Site.php:235 #, php-format msgid "%s is no valid input for maximum image size" msgstr "%s недопустимое значение для максимального размера изображений" -#: src/Module/Admin/Site.php:372 src/Module/Settings/Display.php:215 +#: src/Module/Admin/Site.php:362 src/Module/Settings/Display.php:201 msgid "No special theme for mobile devices" msgstr "Нет специальной темы для мобильных устройств" -#: src/Module/Admin/Site.php:389 src/Module/Settings/Display.php:225 +#: src/Module/Admin/Site.php:379 src/Module/Settings/Display.php:211 #, php-format msgid "%s - (Experimental)" msgstr "%s - (экспериментально)" -#: src/Module/Admin/Site.php:401 +#: src/Module/Admin/Site.php:391 msgid "No community page" msgstr "Нет общей ленты записей" -#: src/Module/Admin/Site.php:402 +#: src/Module/Admin/Site.php:392 msgid "No community page for visitors" msgstr "Нет общей ленты записей для гостей" -#: src/Module/Admin/Site.php:403 +#: src/Module/Admin/Site.php:393 msgid "Public postings from users of this site" msgstr "Публичные записи от пользователей этого узла" -#: src/Module/Admin/Site.php:404 +#: src/Module/Admin/Site.php:394 msgid "Public postings from the federated network" msgstr "Публичные записи федеративной сети" -#: src/Module/Admin/Site.php:405 +#: src/Module/Admin/Site.php:395 msgid "Public postings from local users and the federated network" msgstr "Публичные записи от местных пользователей и федеративной сети." -#: src/Module/Admin/Site.php:411 +#: src/Module/Admin/Site.php:401 msgid "Multi user instance" msgstr "Многопользовательский вид" -#: src/Module/Admin/Site.php:434 +#: src/Module/Admin/Site.php:424 msgid "Closed" msgstr "Закрыто" -#: src/Module/Admin/Site.php:435 +#: src/Module/Admin/Site.php:425 msgid "Requires approval" msgstr "Требуется подтверждение" -#: src/Module/Admin/Site.php:436 +#: src/Module/Admin/Site.php:426 msgid "Open" msgstr "Открыто" -#: src/Module/Admin/Site.php:440 +#: src/Module/Admin/Site.php:430 msgid "Don't check" msgstr "Не проверять" -#: src/Module/Admin/Site.php:441 +#: src/Module/Admin/Site.php:431 msgid "check the stable version" msgstr "проверить стабильную версию" -#: src/Module/Admin/Site.php:442 +#: src/Module/Admin/Site.php:432 msgid "check the development version" msgstr "проверить development-версию" -#: src/Module/Admin/Site.php:446 +#: src/Module/Admin/Site.php:436 msgid "none" msgstr "нет" -#: src/Module/Admin/Site.php:447 +#: src/Module/Admin/Site.php:437 msgid "Local contacts" msgstr "Местные контакты" -#: src/Module/Admin/Site.php:448 +#: src/Module/Admin/Site.php:438 msgid "Interactors" msgstr "" -#: src/Module/Admin/Site.php:458 src/Module/BaseAdmin.php:90 +#: src/Module/Admin/Site.php:448 src/Module/BaseAdmin.php:76 msgid "Site" msgstr "Сайт" -#: src/Module/Admin/Site.php:459 +#: src/Module/Admin/Site.php:449 msgid "General Information" msgstr "Общая информация" -#: src/Module/Admin/Site.php:461 +#: src/Module/Admin/Site.php:451 msgid "Republish users to directory" msgstr "Переопубликовать пользователей в каталог" -#: src/Module/Admin/Site.php:462 src/Module/Register.php:159 +#: src/Module/Admin/Site.php:452 src/Module/Register.php:145 msgid "Registration" msgstr "Регистрация" -#: src/Module/Admin/Site.php:463 +#: src/Module/Admin/Site.php:453 msgid "File upload" msgstr "Загрузка файлов" -#: src/Module/Admin/Site.php:464 +#: src/Module/Admin/Site.php:454 msgid "Policies" msgstr "Политики" -#: src/Module/Admin/Site.php:465 src/Module/Calendar/Event/Form.php:252 -#: src/Module/Contact.php:553 src/Module/Profile/Profile.php:278 +#: src/Module/Admin/Site.php:455 src/Module/Calendar/Event/Form.php:238 +#: src/Module/Contact.php:528 src/Module/Profile/Profile.php:264 msgid "Advanced" msgstr "Дополнительно" -#: src/Module/Admin/Site.php:466 +#: src/Module/Admin/Site.php:456 msgid "Auto Discovered Contact Directory" msgstr "Каталог автообнаружения контактов" -#: src/Module/Admin/Site.php:467 +#: src/Module/Admin/Site.php:457 msgid "Performance" msgstr "Производительность" -#: src/Module/Admin/Site.php:468 +#: src/Module/Admin/Site.php:458 msgid "Worker" msgstr "Обработчик" -#: src/Module/Admin/Site.php:469 +#: src/Module/Admin/Site.php:459 msgid "Message Relay" msgstr "Ретранслятор записей" -#: src/Module/Admin/Site.php:470 +#: src/Module/Admin/Site.php:460 msgid "" "Use the command \"console relay\" in the command line to add or remove " "relays." msgstr "Используйте команду \"console relay\" в командной строке для добавления и удаления ретрансляторов." -#: src/Module/Admin/Site.php:471 +#: src/Module/Admin/Site.php:461 msgid "The system is not subscribed to any relays at the moment." msgstr "Система сейчас не подписана на ретрансляторы." -#: src/Module/Admin/Site.php:472 +#: src/Module/Admin/Site.php:462 msgid "The system is currently subscribed to the following relays:" msgstr "Система сейчас подписана на следующие ретрансляторы:" -#: src/Module/Admin/Site.php:475 +#: src/Module/Admin/Site.php:465 msgid "Relocate Node" msgstr "Переместить узел" -#: src/Module/Admin/Site.php:476 +#: src/Module/Admin/Site.php:466 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:477 +#: src/Module/Admin/Site.php:467 msgid "(Friendica directory)# bin/console relocate https://newdomain.com" msgstr "(каталог Friendica)# bin/console relocate https://newdomain.com" -#: src/Module/Admin/Site.php:480 +#: src/Module/Admin/Site.php:470 msgid "Site name" msgstr "Название сайта" -#: src/Module/Admin/Site.php:481 +#: src/Module/Admin/Site.php:471 msgid "Sender Email" msgstr "Системный Email" -#: src/Module/Admin/Site.php:481 +#: src/Module/Admin/Site.php:471 msgid "" "The email address your server shall use to send notification emails from." msgstr "Адрес с которого будут приходить письма пользователям." -#: src/Module/Admin/Site.php:482 +#: src/Module/Admin/Site.php:472 msgid "Name of the system actor" msgstr "Имя системного аккаунта" -#: src/Module/Admin/Site.php:482 +#: src/Module/Admin/Site.php:472 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:483 +#: src/Module/Admin/Site.php:473 msgid "Banner/Logo" msgstr "Баннер/Логотип" -#: src/Module/Admin/Site.php:484 +#: src/Module/Admin/Site.php:474 msgid "Email Banner/Logo" msgstr "Лого для писем" -#: src/Module/Admin/Site.php:485 +#: src/Module/Admin/Site.php:475 msgid "Shortcut icon" msgstr "Иконка сайта" -#: src/Module/Admin/Site.php:485 +#: src/Module/Admin/Site.php:475 msgid "Link to an icon that will be used for browsers." msgstr "Ссылка на иконку, которая будет использоваться браузерами." -#: src/Module/Admin/Site.php:486 +#: src/Module/Admin/Site.php:476 msgid "Touch icon" msgstr "Иконка веб-приложения" -#: src/Module/Admin/Site.php:486 +#: src/Module/Admin/Site.php:476 msgid "Link to an icon that will be used for tablets and mobiles." msgstr "Ссылка на иконку, которая будет использоваться для создания ярлыка на смартфонах и планшетах." -#: src/Module/Admin/Site.php:487 +#: src/Module/Admin/Site.php:477 msgid "Additional Info" msgstr "Дополнительная информация" -#: src/Module/Admin/Site.php:487 +#: src/Module/Admin/Site.php:477 #, 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:488 +#: src/Module/Admin/Site.php:478 msgid "System language" msgstr "Системный язык" -#: src/Module/Admin/Site.php:489 +#: src/Module/Admin/Site.php:479 msgid "System theme" msgstr "Системная тема" -#: src/Module/Admin/Site.php:489 +#: src/Module/Admin/Site.php:479 #, php-format msgid "" "Default system theme - may be over-ridden by user profiles - Change default theme settings" msgstr "Тема по-умолчанию - пользователи могут менять её в настройках своего профиля - Изменить тему по-умолчанию" -#: src/Module/Admin/Site.php:490 +#: src/Module/Admin/Site.php:480 msgid "Mobile system theme" msgstr "Мобильная тема системы" -#: src/Module/Admin/Site.php:490 +#: src/Module/Admin/Site.php:480 msgid "Theme for mobile devices" msgstr "Тема для мобильных устройств" -#: src/Module/Admin/Site.php:491 +#: src/Module/Admin/Site.php:481 msgid "Force SSL" msgstr "SSL принудительно" -#: src/Module/Admin/Site.php:491 +#: src/Module/Admin/Site.php:481 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:492 +#: src/Module/Admin/Site.php:482 msgid "Show help entry from navigation menu" msgstr "Показать пункт \"помощь\" в меню навигации" -#: src/Module/Admin/Site.php:492 +#: src/Module/Admin/Site.php:482 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:493 +#: src/Module/Admin/Site.php:483 msgid "Single user instance" msgstr "Однопользовательский режим" -#: src/Module/Admin/Site.php:493 +#: src/Module/Admin/Site.php:483 msgid "Make this instance multi-user or single-user for the named user" msgstr "Сделать этот экземпляр многопользовательским, или однопользовательским для названного пользователя" -#: src/Module/Admin/Site.php:495 +#: src/Module/Admin/Site.php:485 msgid "Maximum image size" msgstr "Максимальный размер изображения" -#: src/Module/Admin/Site.php:495 +#: src/Module/Admin/Site.php:485 #, 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" @@ -4776,35 +4774,47 @@ 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:499 +#: src/Module/Admin/Site.php:489 msgid "Maximum image length" msgstr "Максимальная длина картинки" -#: src/Module/Admin/Site.php:499 +#: src/Module/Admin/Site.php:489 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:500 +#: src/Module/Admin/Site.php:490 msgid "JPEG image quality" msgstr "Качество JPEG изображения" -#: src/Module/Admin/Site.php:500 +#: src/Module/Admin/Site.php:490 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:502 +#: src/Module/Admin/Site.php:491 +msgid "Maximum media file size" +msgstr "" + +#: src/Module/Admin/Site.php:491 +#, php-format +msgid "" +"Maximum size in bytes of uploaded media files. Default is 0, which means no limits. You can put k, m, or g behind the desired value for KiB, MiB, GiB, respectively.\n" +"\t\t\t\t\t\t\t\t\t\t\t\t\tThe value of upload_max_filesize in your PHP.ini needs be set to at least the desired limit.\n" +"\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:496 msgid "Register policy" msgstr "Политика регистрации" -#: src/Module/Admin/Site.php:503 +#: src/Module/Admin/Site.php:497 msgid "Maximum Users" msgstr "Максимум пользователей" -#: src/Module/Admin/Site.php:503 +#: src/Module/Admin/Site.php:497 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 " @@ -4812,167 +4822,167 @@ msgid "" "not when the policy is set to approval." msgstr "Если включено, регистрация будет автоматически закрываться при достижении указанного числа пользователей и вновь открываться, если число пользователей снова снизится. Это работает только, если регистрация установлена как открытая или закрытая, но не когда включено её одобрение." -#: src/Module/Admin/Site.php:504 +#: src/Module/Admin/Site.php:498 msgid "Maximum Daily Registrations" msgstr "Максимальное число регистраций в день" -#: src/Module/Admin/Site.php:504 +#: src/Module/Admin/Site.php:498 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:505 +#: src/Module/Admin/Site.php:499 msgid "Register text" msgstr "Текст регистрации" -#: src/Module/Admin/Site.php:505 +#: src/Module/Admin/Site.php:499 msgid "" "Will be displayed prominently on the registration page. You can use BBCode " "here." msgstr "Будет отображаться на видном месте на странице регистрации. Вы можете использовать BBCode для оформления." -#: src/Module/Admin/Site.php:506 +#: src/Module/Admin/Site.php:500 msgid "Forbidden Nicknames" msgstr "Запрещённые ники" -#: src/Module/Admin/Site.php:506 +#: src/Module/Admin/Site.php:500 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:507 +#: src/Module/Admin/Site.php:501 msgid "Accounts abandoned after x days" msgstr "Аккаунт считается после x дней не воспользованным" -#: src/Module/Admin/Site.php:507 +#: src/Module/Admin/Site.php:501 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:508 +#: src/Module/Admin/Site.php:502 msgid "Allowed friend domains" msgstr "Разрешенные домены друзей" -#: src/Module/Admin/Site.php:508 +#: src/Module/Admin/Site.php:502 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:509 +#: src/Module/Admin/Site.php:503 msgid "Allowed email domains" msgstr "Разрешенные почтовые домены" -#: src/Module/Admin/Site.php:509 +#: src/Module/Admin/Site.php:503 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:510 +#: src/Module/Admin/Site.php:504 msgid "Disallowed email domains" msgstr "" -#: src/Module/Admin/Site.php:510 +#: src/Module/Admin/Site.php:504 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 +#: src/Module/Admin/Site.php:505 msgid "No OEmbed rich content" msgstr "Не показывать контент OEmbed" -#: src/Module/Admin/Site.php:511 +#: src/Module/Admin/Site.php:505 msgid "" "Don't show the rich content (e.g. embedded PDF), except from the domains " "listed below." msgstr "Не показывать внедрённое содержимое (например, PDF), если источником не являются домены из списка ниже." -#: src/Module/Admin/Site.php:512 +#: src/Module/Admin/Site.php:506 msgid "Trusted third-party domains" msgstr "Доверенные внешние домены" -#: src/Module/Admin/Site.php:512 +#: src/Module/Admin/Site.php:506 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:513 +#: src/Module/Admin/Site.php:507 msgid "Block public" msgstr "Блокировать общественный доступ" -#: src/Module/Admin/Site.php:513 +#: src/Module/Admin/Site.php:507 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:514 +#: src/Module/Admin/Site.php:508 msgid "Force publish" msgstr "Принудительная публикация" -#: src/Module/Admin/Site.php:514 +#: src/Module/Admin/Site.php:508 msgid "" "Check to force all profiles on this site to be listed in the site directory." msgstr "Отметьте, чтобы принудительно заставить все профили на этом сайте, быть перечислеными в каталоге сайта." -#: src/Module/Admin/Site.php:514 +#: src/Module/Admin/Site.php:508 msgid "Enabling this may violate privacy laws like the GDPR" msgstr "Включение этого может нарушить законы о личных данных, например, GDPR." -#: src/Module/Admin/Site.php:515 +#: src/Module/Admin/Site.php:509 msgid "Global directory URL" msgstr "URL глобального каталога" -#: src/Module/Admin/Site.php:515 +#: src/Module/Admin/Site.php:509 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:516 +#: src/Module/Admin/Site.php:510 msgid "Private posts by default for new users" msgstr "Частные сообщения по умолчанию для новых пользователей" -#: src/Module/Admin/Site.php:516 +#: src/Module/Admin/Site.php:510 msgid "" "Set default post permissions for all new members to the default privacy " "circle rather than public." msgstr "Установить права на создание записей по-умолчанию для всех участников в приватный круг, а не для публично." -#: src/Module/Admin/Site.php:517 +#: src/Module/Admin/Site.php:511 msgid "Don't include post content in email notifications" msgstr "Не включать текст сообщения в email-оповещение." -#: src/Module/Admin/Site.php:517 +#: src/Module/Admin/Site.php:511 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:518 +#: src/Module/Admin/Site.php:512 msgid "Disallow public access to addons listed in the apps menu." msgstr "Запретить публичный доступ к аддонам, перечисленным в меню приложений." -#: src/Module/Admin/Site.php:518 +#: src/Module/Admin/Site.php:512 msgid "" "Checking this box will restrict addons listed in the apps menu to members " "only." msgstr "При установке этого флажка, будут ограничены аддоны, перечисленные в меню приложений, только для участников." -#: src/Module/Admin/Site.php:519 +#: src/Module/Admin/Site.php:513 msgid "Don't embed private images in posts" msgstr "Не вставлять личные картинки в записи" -#: src/Module/Admin/Site.php:519 +#: src/Module/Admin/Site.php:513 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 " @@ -4980,11 +4990,11 @@ msgid "" "while." msgstr "Не заменяйте локально расположенные фотографии в записях на внедрённые копии изображений. Это означает, что контакты, которые получают сообщения, содержащие личные фотографии, будут вынуждены идентефицироваться и грузить каждое изображение, что может занять некоторое время." -#: src/Module/Admin/Site.php:520 +#: src/Module/Admin/Site.php:514 msgid "Explicit Content" msgstr "Контент для взрослых" -#: src/Module/Admin/Site.php:520 +#: src/Module/Admin/Site.php:514 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 " @@ -4993,329 +5003,319 @@ msgid "" "will be shown at the user registration page." msgstr "Включите, если ваш узел будет содержать преимущественно откровенный/чувствительный контент, который не должен быть показан несовершеннолетним. Эта информация появится в информации об узле и может быть использована, например, в глобальном каталоге для скрытия вашего узла при подборе узлов для регистрации. Так же пометка об этом появится на странице регистрации." -#: src/Module/Admin/Site.php:521 +#: src/Module/Admin/Site.php:515 msgid "Only local search" msgstr "" -#: src/Module/Admin/Site.php:521 +#: src/Module/Admin/Site.php:515 msgid "" "Blocks search for users who are not logged in to prevent crawlers from " "blocking your system." msgstr "" -#: src/Module/Admin/Site.php:522 +#: src/Module/Admin/Site.php:516 msgid "Blocked tags for trending tags" msgstr "" -#: src/Module/Admin/Site.php:522 +#: src/Module/Admin/Site.php:516 msgid "" "Comma separated list of hashtags that shouldn't be displayed in the trending" " tags." msgstr "" -#: src/Module/Admin/Site.php:523 +#: src/Module/Admin/Site.php:517 msgid "Cache contact avatars" msgstr "Кэшировать аватары" -#: src/Module/Admin/Site.php:523 +#: src/Module/Admin/Site.php:517 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:524 +#: src/Module/Admin/Site.php:518 msgid "Allow Users to set remote_self" msgstr "Разрешить пользователям установить remote_self" -#: src/Module/Admin/Site.php:524 +#: src/Module/Admin/Site.php:518 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:525 +#: src/Module/Admin/Site.php:519 msgid "Allow Users to set up relay channels" msgstr "" -#: src/Module/Admin/Site.php:525 +#: src/Module/Admin/Site.php:519 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:526 +#: src/Module/Admin/Site.php:520 msgid "Adjust the feed poll frequency" msgstr "" -#: src/Module/Admin/Site.php:526 +#: src/Module/Admin/Site.php:520 msgid "Automatically detect and set the best feed poll frequency." msgstr "" -#: src/Module/Admin/Site.php:527 +#: src/Module/Admin/Site.php:521 msgid "Minimum poll interval" msgstr "" -#: src/Module/Admin/Site.php:527 +#: src/Module/Admin/Site.php:521 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:528 +#: src/Module/Admin/Site.php:522 msgid "Enable multiple registrations" msgstr "Разрешить несколько регистраций" -#: src/Module/Admin/Site.php:528 +#: src/Module/Admin/Site.php:522 msgid "Enable users to register additional accounts for use as pages." msgstr "Разрешить пользователям регистрировать дополнительные аккаунты для использования в качестве страниц." -#: src/Module/Admin/Site.php:529 +#: src/Module/Admin/Site.php:523 msgid "Enable OpenID" msgstr "Включить OpenID" -#: src/Module/Admin/Site.php:529 +#: src/Module/Admin/Site.php:523 msgid "Enable OpenID support for registration and logins." msgstr "Включить поддержку OpenID для регистрации и входа." -#: src/Module/Admin/Site.php:530 +#: src/Module/Admin/Site.php:524 msgid "Enable full name check" msgstr "" -#: src/Module/Admin/Site.php:530 +#: src/Module/Admin/Site.php:524 msgid "" "Prevents users from registering with a display name with fewer than two " "parts separated by spaces." msgstr "" -#: src/Module/Admin/Site.php:531 +#: src/Module/Admin/Site.php:525 msgid "Email administrators on new registration" msgstr "Уведомлять администраторов о новых регистрациях" -#: src/Module/Admin/Site.php:531 +#: src/Module/Admin/Site.php:525 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:532 +#: src/Module/Admin/Site.php:526 msgid "Community pages for visitors" msgstr "Публичная лента для посетителей" -#: src/Module/Admin/Site.php:532 +#: src/Module/Admin/Site.php:526 msgid "" "Which community pages should be available for visitors. Local users always " "see both pages." msgstr "Какие публичные ленты будут доступны для гостей. Местные пользователи всегда видят обе ленты." -#: src/Module/Admin/Site.php:533 +#: src/Module/Admin/Site.php:527 msgid "Posts per user on community page" msgstr "Число записей на пользователя в публичной ленте" -#: src/Module/Admin/Site.php:533 +#: src/Module/Admin/Site.php:527 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:534 +#: src/Module/Admin/Site.php:528 msgid "Posts per server on community page" msgstr "" -#: src/Module/Admin/Site.php:534 +#: src/Module/Admin/Site.php:528 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:536 +#: src/Module/Admin/Site.php:530 msgid "Enable Mail support" msgstr "Включить поддержку электронной почты" -#: src/Module/Admin/Site.php:536 +#: src/Module/Admin/Site.php:530 msgid "" "Enable built-in mail support to poll IMAP folders and to reply via mail." msgstr "Включает встроенную поддержку электронной почты, позволяющую работать с папками IMAP и отвечать по почте." -#: src/Module/Admin/Site.php:537 +#: src/Module/Admin/Site.php:531 msgid "" "Mail support can't be enabled because the PHP IMAP module is not installed." msgstr "Поддержка почты не может быть включена, так как не установлен модуль PHP IMAP." -#: src/Module/Admin/Site.php:538 -msgid "Enable OStatus support" -msgstr "Включить поддержку OStatus" - -#: src/Module/Admin/Site.php:538 -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:540 +#: src/Module/Admin/Site.php:533 msgid "" "Diaspora support can't be enabled because Friendica was installed into a sub" " directory." msgstr "Поддержка Diaspora не может быть включена, так как Френдика была установлена в подкаталог." -#: src/Module/Admin/Site.php:541 +#: src/Module/Admin/Site.php:534 msgid "Enable Diaspora support" msgstr "Включить поддержку Diaspora" -#: src/Module/Admin/Site.php:541 +#: src/Module/Admin/Site.php:534 msgid "" "Enable built-in Diaspora network compatibility for communicating with " "diaspora servers." msgstr "Включить встроенную поддержку Diaspora для общения с серверами сети Diaspora." -#: src/Module/Admin/Site.php:542 +#: src/Module/Admin/Site.php:535 msgid "Verify SSL" msgstr "Проверка SSL" -#: src/Module/Admin/Site.php:542 +#: src/Module/Admin/Site.php:535 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:543 +#: src/Module/Admin/Site.php:536 msgid "Proxy user" msgstr "Прокси пользователь" -#: src/Module/Admin/Site.php:543 +#: src/Module/Admin/Site.php:536 msgid "User name for the proxy server." msgstr "Имя пользователя прокси" -#: src/Module/Admin/Site.php:544 +#: src/Module/Admin/Site.php:537 msgid "Proxy URL" msgstr "Прокси URL" -#: src/Module/Admin/Site.php:544 +#: src/Module/Admin/Site.php:537 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:545 +#: src/Module/Admin/Site.php:538 msgid "Network timeout" msgstr "Тайм-аут сети" -#: src/Module/Admin/Site.php:545 +#: src/Module/Admin/Site.php:538 msgid "Value is in seconds. Set to 0 for unlimited (not recommended)." msgstr "Значение указывается в секундах. Установите 0 для снятия ограничений (не рекомендуется)." -#: src/Module/Admin/Site.php:546 +#: src/Module/Admin/Site.php:539 msgid "Maximum Load Average" msgstr "Средняя максимальная нагрузка" -#: src/Module/Admin/Site.php:546 +#: src/Module/Admin/Site.php:539 #, php-format msgid "" "Maximum system load before delivery and poll processes are deferred - " "default %d." msgstr "Максимальная нагрузка на систему, прежде чем задания опроса и доставки начнут приостанавливаться - по-умолчанию %d." -#: src/Module/Admin/Site.php:547 +#: src/Module/Admin/Site.php:540 msgid "Minimal Memory" msgstr "Минимум памяти" -#: src/Module/Admin/Site.php:547 +#: src/Module/Admin/Site.php:540 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:548 +#: src/Module/Admin/Site.php:541 msgid "Periodically optimize tables" msgstr "Периодически оптимизировать таблицы" -#: src/Module/Admin/Site.php:548 +#: src/Module/Admin/Site.php:541 msgid "Periodically optimize tables like the cache and the workerqueue" msgstr "Периодически оптимизировать таблицы, такие как cache и workerqueue" -#: src/Module/Admin/Site.php:550 +#: src/Module/Admin/Site.php:543 msgid "Discover followers/followings from contacts" msgstr "Обнаруживать подписчиков и друзей для контактов" -#: src/Module/Admin/Site.php:550 +#: src/Module/Admin/Site.php:543 msgid "" "If enabled, contacts are checked for their followers and following contacts." msgstr "Если включено, контакты будут проверяться на наличие подписчиков и друзей." -#: src/Module/Admin/Site.php:551 +#: src/Module/Admin/Site.php:544 msgid "None - deactivated" msgstr "None - выключено." -#: src/Module/Admin/Site.php:552 +#: src/Module/Admin/Site.php:545 msgid "" "Local contacts - contacts of our local contacts are discovered for their " "followers/followings." msgstr "Local contacts - местные контакты будут проверяться на наличие подписчиков и друзей." -#: src/Module/Admin/Site.php:553 +#: src/Module/Admin/Site.php:546 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:555 +#: src/Module/Admin/Site.php:548 msgid "Only update contacts/servers with local data" msgstr "" -#: src/Module/Admin/Site.php:555 +#: src/Module/Admin/Site.php:548 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:556 +#: src/Module/Admin/Site.php:549 msgid "Synchronize the contacts with the directory server" msgstr "Синхронизировать контакты с сервером каталога" -#: src/Module/Admin/Site.php:556 +#: src/Module/Admin/Site.php:549 msgid "" "if enabled, the system will check periodically for new contacts on the " "defined directory server." msgstr "Если включено, то система будет периодически проверять новые контакты на указанном сервере каталога." -#: src/Module/Admin/Site.php:558 +#: src/Module/Admin/Site.php:551 msgid "Discover contacts from other servers" msgstr "Обнаруживать контакты с других серверов" -#: src/Module/Admin/Site.php:558 +#: src/Module/Admin/Site.php:551 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:559 +#: src/Module/Admin/Site.php:552 msgid "Days between requery" msgstr "Интервал запросов" -#: src/Module/Admin/Site.php:559 +#: src/Module/Admin/Site.php:552 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:560 +#: src/Module/Admin/Site.php:553 msgid "Search the local directory" msgstr "Искать в местном каталоге" -#: src/Module/Admin/Site.php:560 +#: src/Module/Admin/Site.php:553 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:562 +#: src/Module/Admin/Site.php:555 msgid "Publish server information" msgstr "Опубликовать информацию о сервере" -#: src/Module/Admin/Site.php:562 +#: src/Module/Admin/Site.php:555 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 " @@ -5323,50 +5323,50 @@ msgid "" " href=\"http://the-federation.info/\">the-federation.info for details." msgstr "Если включено, общая информация о сервере и статистика будут опубликованы. В данных содержатся имя сервера, версия ПО, число пользователей с открытыми профилями, число записей, подключенные протоколы и соединители. Подробности смотрите на the-federation.info." -#: src/Module/Admin/Site.php:564 +#: src/Module/Admin/Site.php:557 msgid "Check upstream version" msgstr "Проверять версию в репозитории" -#: src/Module/Admin/Site.php:564 +#: src/Module/Admin/Site.php:557 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:565 +#: src/Module/Admin/Site.php:558 msgid "Suppress Tags" msgstr "Скрывать тэги" -#: src/Module/Admin/Site.php:565 +#: src/Module/Admin/Site.php:558 msgid "Suppress showing a list of hashtags at the end of the posting." msgstr "Отключить показ списка тэгов в конце записей." -#: src/Module/Admin/Site.php:566 +#: src/Module/Admin/Site.php:559 msgid "Clean database" msgstr "Очистка базы данных" -#: src/Module/Admin/Site.php:566 +#: src/Module/Admin/Site.php:559 msgid "" "Remove old remote items, orphaned database records and old content from some" " other helper tables." msgstr "Удалять старые записи, полученные с других серверов, ненужные записи в базе данных." -#: src/Module/Admin/Site.php:567 +#: src/Module/Admin/Site.php:560 msgid "Lifespan of remote items" msgstr "Время жизни записей с других серверов" -#: src/Module/Admin/Site.php:567 +#: src/Module/Admin/Site.php:560 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:568 +#: src/Module/Admin/Site.php:561 msgid "Lifespan of unclaimed items" msgstr "Время жизни ничейных элементов" -#: src/Module/Admin/Site.php:568 +#: src/Module/Admin/Site.php:561 msgid "" "When the database cleanup is enabled, this defines the days after which " "unclaimed remote items (mostly content from the relay) will be deleted. " @@ -5374,185 +5374,184 @@ msgid "" "items if set to 0." msgstr "Когда очистка базы данных включена, эта настройка определяет число дней, после которого ничейные элементы (в основном, данные с ретранслятора) будут удалены. Значение по умолчанию 90 дней. Приравнивается ко времени жизни элементов других серверов, если выставлено в 0." -#: src/Module/Admin/Site.php:569 +#: src/Module/Admin/Site.php:562 msgid "Lifespan of raw conversation data" msgstr "Время жизни необработанных данных коммуникаций." -#: src/Module/Admin/Site.php:569 +#: src/Module/Admin/Site.php:562 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 дней." +"The conversation data is used for ActivityPub, 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:570 +#: src/Module/Admin/Site.php:563 msgid "Maximum numbers of comments per post" msgstr "Максимальное число комментариев для записи" -#: src/Module/Admin/Site.php:570 +#: src/Module/Admin/Site.php:563 msgid "How much comments should be shown for each post? Default value is 100." msgstr "Сколько комментариев должно быть показано для каждой записи? Значение по-умолчанию: 100." -#: src/Module/Admin/Site.php:571 +#: src/Module/Admin/Site.php:564 msgid "Maximum numbers of comments per post on the display page" msgstr "Максимальное число комментариев на запись при его просмотре" -#: src/Module/Admin/Site.php:571 +#: src/Module/Admin/Site.php:564 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:572 +#: src/Module/Admin/Site.php:565 msgid "Items per page" msgstr "" -#: src/Module/Admin/Site.php:572 +#: src/Module/Admin/Site.php:565 msgid "" "Number of items per page in stream pages (network, community, " "profile/contact statuses, search)." msgstr "Число записей на странице (ленты, сообщества, сообщения профиля, поиск)." -#: src/Module/Admin/Site.php:573 +#: src/Module/Admin/Site.php:566 msgid "Items per page for mobile devices" msgstr "" -#: src/Module/Admin/Site.php:573 +#: src/Module/Admin/Site.php:566 msgid "" "Number of items per page in stream pages (network, community, " "profile/contact statuses, search) for mobile devices." msgstr "Число записей на странице (ленты, сообщества, сообщения профиля, поиск) для мобильных устройств." -#: src/Module/Admin/Site.php:574 +#: src/Module/Admin/Site.php:567 msgid "Temp path" msgstr "Временная папка" -#: src/Module/Admin/Site.php:574 +#: src/Module/Admin/Site.php:567 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:575 +#: src/Module/Admin/Site.php:568 msgid "Only search in tags" msgstr "Искать только в тегах" -#: src/Module/Admin/Site.php:575 +#: src/Module/Admin/Site.php:568 msgid "On large systems the text search can slow down the system extremely." msgstr "На больших системах текстовый поиск может сильно замедлить систему." -#: src/Module/Admin/Site.php:576 +#: src/Module/Admin/Site.php:569 msgid "Limited search scope" msgstr "" -#: src/Module/Admin/Site.php:576 +#: src/Module/Admin/Site.php:569 msgid "" "If enabled, searches will only be performed in the data used for the " "channels and not in all posts." msgstr "" -#: src/Module/Admin/Site.php:577 +#: src/Module/Admin/Site.php:570 msgid "Maximum age of items in the search table" msgstr "" -#: src/Module/Admin/Site.php:577 +#: src/Module/Admin/Site.php:570 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:578 +#: src/Module/Admin/Site.php:571 msgid "Generate counts per contact circle when calculating network count" msgstr "Показывать счётчики записей по кругам при обновлении страницы сети" -#: src/Module/Admin/Site.php:578 +#: src/Module/Admin/Site.php:571 msgid "" "On systems with users that heavily use contact circles the query can be very" " expensive." msgstr "Для систем, где активно используются круги контактов, это может быть затратно по ресурсам." -#: src/Module/Admin/Site.php:579 +#: src/Module/Admin/Site.php:572 msgid "Process \"view\" activities" msgstr "" -#: src/Module/Admin/Site.php:579 +#: src/Module/Admin/Site.php:572 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:580 +#: src/Module/Admin/Site.php:573 msgid "Days, after which a contact is archived" msgstr "" -#: src/Module/Admin/Site.php:580 +#: src/Module/Admin/Site.php:573 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:582 +#: src/Module/Admin/Site.php:575 msgid "Maximum number of parallel workers" msgstr "Максимальное число параллельно работающих worker'ов" -#: src/Module/Admin/Site.php:582 +#: src/Module/Admin/Site.php:575 #, 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:583 +#: src/Module/Admin/Site.php:576 msgid "Maximum load for workers" msgstr "" -#: src/Module/Admin/Site.php:583 +#: src/Module/Admin/Site.php:576 msgid "Maximum load that causes a cooldown before each worker function call." msgstr "" -#: src/Module/Admin/Site.php:584 +#: src/Module/Admin/Site.php:577 msgid "Enable fastlane" msgstr "Включить fastlane" -#: src/Module/Admin/Site.php:584 +#: src/Module/Admin/Site.php:577 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:585 +#: src/Module/Admin/Site.php:578 msgid "Decoupled receiver" msgstr "" -#: src/Module/Admin/Site.php:585 +#: src/Module/Admin/Site.php:578 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:586 +#: src/Module/Admin/Site.php:579 msgid "Cron interval" msgstr "" -#: src/Module/Admin/Site.php:586 +#: src/Module/Admin/Site.php:579 msgid "Minimal period in minutes between two calls of the \"Cron\" worker job." msgstr "" -#: src/Module/Admin/Site.php:587 +#: src/Module/Admin/Site.php:580 msgid "Worker defer limit" msgstr "" -#: src/Module/Admin/Site.php:587 +#: src/Module/Admin/Site.php:580 msgid "" "Per default the systems tries delivering for 15 times before dropping it." msgstr "" -#: src/Module/Admin/Site.php:588 +#: src/Module/Admin/Site.php:581 msgid "Worker fetch limit" msgstr "" -#: src/Module/Admin/Site.php:588 +#: src/Module/Admin/Site.php:581 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" @@ -5560,214 +5559,214 @@ msgid "" "system." msgstr "" -#: src/Module/Admin/Site.php:590 +#: src/Module/Admin/Site.php:583 msgid "Direct relay transfer" msgstr "Прямая ретрансляция" -#: src/Module/Admin/Site.php:590 +#: src/Module/Admin/Site.php:583 msgid "" "Enables the direct transfer to other servers without using the relay servers" msgstr "Разрешает прямую отправку на другие серверы без использования ретрансляторов" -#: src/Module/Admin/Site.php:591 +#: src/Module/Admin/Site.php:584 msgid "Relay scope" msgstr "Область ретрансляции" -#: src/Module/Admin/Site.php:591 +#: src/Module/Admin/Site.php:584 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:591 src/Module/Contact/Profile.php:328 -#: src/Module/Settings/TwoFactor/Index.php:146 +#: src/Module/Admin/Site.php:584 src/Module/Contact/Profile.php:314 +#: src/Module/Settings/TwoFactor/Index.php:132 msgid "Disabled" msgstr "Отключено" -#: src/Module/Admin/Site.php:591 +#: src/Module/Admin/Site.php:584 msgid "all" msgstr "all" -#: src/Module/Admin/Site.php:591 +#: src/Module/Admin/Site.php:584 msgid "tags" msgstr "tags" -#: src/Module/Admin/Site.php:592 +#: src/Module/Admin/Site.php:585 msgid "Server tags" msgstr "Тэги сервера" -#: src/Module/Admin/Site.php:592 +#: src/Module/Admin/Site.php:585 msgid "Comma separated list of tags for the \"tags\" subscription." msgstr "Список тэгов, разделённых запятыми, используемый для подписки в режиме \"tags\"" -#: src/Module/Admin/Site.php:593 +#: src/Module/Admin/Site.php:586 msgid "Deny Server tags" msgstr "Запретить тэги сервера" -#: src/Module/Admin/Site.php:593 +#: src/Module/Admin/Site.php:586 msgid "Comma separated list of tags that are rejected." msgstr "Разделённый запятыми список тэгов, которые будут отбрасываться." -#: src/Module/Admin/Site.php:594 +#: src/Module/Admin/Site.php:587 msgid "Maximum amount of tags" msgstr "" -#: src/Module/Admin/Site.php:594 +#: src/Module/Admin/Site.php:587 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:595 +#: src/Module/Admin/Site.php:588 msgid "Allow user tags" msgstr "Разрешить пользовательские тэги" -#: src/Module/Admin/Site.php:595 +#: src/Module/Admin/Site.php:588 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:596 +#: src/Module/Admin/Site.php:589 msgid "Deny undetected languages" msgstr "" -#: src/Module/Admin/Site.php:596 +#: src/Module/Admin/Site.php:589 msgid "If enabled, posts with undetected languages will be rejected." msgstr "" -#: src/Module/Admin/Site.php:597 +#: src/Module/Admin/Site.php:590 msgid "Language Quality" msgstr "" -#: src/Module/Admin/Site.php:597 +#: src/Module/Admin/Site.php:590 msgid "The minimum language quality that is required to accept the post." msgstr "" -#: src/Module/Admin/Site.php:598 +#: src/Module/Admin/Site.php:591 msgid "Number of languages for the language detection" msgstr "" -#: src/Module/Admin/Site.php:598 +#: src/Module/Admin/Site.php:591 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:600 +#: src/Module/Admin/Site.php:593 msgid "Maximum age of channel" msgstr "" -#: src/Module/Admin/Site.php:600 +#: src/Module/Admin/Site.php:593 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:601 +#: src/Module/Admin/Site.php:594 msgid "Maximum number of channel posts" msgstr "" -#: src/Module/Admin/Site.php:601 +#: src/Module/Admin/Site.php:594 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:602 +#: src/Module/Admin/Site.php:595 msgid "Interaction score days" msgstr "" -#: src/Module/Admin/Site.php:602 +#: src/Module/Admin/Site.php:595 msgid "Number of days that are used to calculate the interaction score." msgstr "" -#: src/Module/Admin/Site.php:603 +#: src/Module/Admin/Site.php:596 msgid "Maximum number of posts per author" msgstr "" -#: src/Module/Admin/Site.php:603 +#: src/Module/Admin/Site.php:596 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:604 +#: src/Module/Admin/Site.php:597 msgid "Sharer interaction days" msgstr "" -#: src/Module/Admin/Site.php:604 +#: src/Module/Admin/Site.php:597 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:607 +#: src/Module/Admin/Site.php:600 msgid "Start Relocation" msgstr "Начать перемещение" -#: src/Module/Admin/Storage.php:46 +#: src/Module/Admin/Storage.php:32 #, php-format msgid "Storage backend, %s is invalid." msgstr "Бэкенд хранилища, %s неправильный." -#: src/Module/Admin/Storage.php:73 +#: src/Module/Admin/Storage.php:59 #, php-format msgid "Storage backend %s error: %s" msgstr "Бэкенд хранилища %s вызвал ошибку: %s" -#: src/Module/Admin/Storage.php:84 src/Module/Admin/Storage.php:87 +#: src/Module/Admin/Storage.php:70 src/Module/Admin/Storage.php:73 msgid "Invalid storage backend setting value." msgstr "Недопустимое значение типа хранилища." -#: src/Module/Admin/Storage.php:139 +#: src/Module/Admin/Storage.php:125 msgid "Current Storage Backend" msgstr "Текущий бэкенд хранилища" -#: src/Module/Admin/Storage.php:140 +#: src/Module/Admin/Storage.php:126 msgid "Storage Configuration" msgstr "Конфигурация хранилища" -#: src/Module/Admin/Storage.php:141 src/Module/BaseAdmin.php:91 +#: src/Module/Admin/Storage.php:127 src/Module/BaseAdmin.php:77 msgid "Storage" msgstr "Хранилище" -#: src/Module/Admin/Storage.php:143 +#: src/Module/Admin/Storage.php:129 msgid "Save & Use storage backend" msgstr "Сохранить и использовать этот бэкенд" -#: src/Module/Admin/Storage.php:144 +#: src/Module/Admin/Storage.php:130 msgid "Use storage backend" msgstr "Использовать этот бэкенд" -#: src/Module/Admin/Storage.php:145 +#: src/Module/Admin/Storage.php:131 msgid "Save & Reload" msgstr "Сохранить и применить" -#: src/Module/Admin/Storage.php:146 +#: src/Module/Admin/Storage.php:132 msgid "This backend doesn't have custom settings" msgstr "Этот бэкенд не имеет дополнительных настроек." -#: src/Module/Admin/Storage.php:148 +#: src/Module/Admin/Storage.php:134 msgid "" "Changing the current backend is prohibited because it is set by an " "environment variable" msgstr "" -#: src/Module/Admin/Storage.php:150 +#: src/Module/Admin/Storage.php:136 msgid "Database (legacy)" msgstr "База данных (устаревшее)" -#: src/Module/Admin/Summary.php:55 +#: src/Module/Admin/Summary.php:41 #, php-format msgid "Template engine (%s) error: %s" msgstr "" -#: src/Module/Admin/Summary.php:59 +#: src/Module/Admin/Summary.php:45 #, php-format msgid "" "Your DB still runs with MyISAM tables. You should change the engine type to " @@ -5778,7 +5777,7 @@ msgid "" " an automatic conversion.
" msgstr "" -#: src/Module/Admin/Summary.php:64 +#: src/Module/Admin/Summary.php:50 #, php-format msgid "" "Your DB still runs with InnoDB tables in the Antelope file format. You " @@ -5789,7 +5788,7 @@ msgid "" " installation for an automatic conversion.
" msgstr "" -#: src/Module/Admin/Summary.php:74 +#: src/Module/Admin/Summary.php:60 #, php-format msgid "" "Your table_definition_cache is too low (%d). This can lead to the database " @@ -5797,46 +5796,46 @@ msgid "" " to %d. See here for more information.
" msgstr "Ваше значение table_definition_cache слишком маленькое (%d). Это может вызвать ошибку базы данных \"Prepared statement needs to be re-prepared\". Пожалуйста, установите его хотя бы в %d. Смотрите здесь для дополнительной информации.
" -#: src/Module/Admin/Summary.php:85 +#: src/Module/Admin/Summary.php:71 #, php-format msgid "" "There is a new version of Friendica available for download. Your current " "version is %1$s, upstream version is %2$s" msgstr "Новая версия Friendica доступна для загрузки. Ваша текущая версия %1$s, последняя версия %2$s" -#: src/Module/Admin/Summary.php:94 +#: src/Module/Admin/Summary.php:80 msgid "" "The database update failed. Please run \"php bin/console.php dbstructure " "update\" from the command line and have a look at the errors that might " "appear." msgstr "Обновление базы данных завершилось неудачно. Пожалуйста, запустите \"php bin/console.php dbstructure update\" в командной строке и посмотрите какие ошибки там могут появиться." -#: src/Module/Admin/Summary.php:98 +#: src/Module/Admin/Summary.php:84 msgid "" "The last update failed. Please run \"php bin/console.php dbstructure " "update\" from the command line and have a look at the errors that might " "appear. (Some of the errors are possibly inside the logfile.)" msgstr "" -#: src/Module/Admin/Summary.php:102 +#: src/Module/Admin/Summary.php:88 msgid "" "The system.url entry is missing. This is a low level setting and can lead to" " unexpected behavior. Please add a valid entry as soon as possible in the " "config file or per console command!" msgstr "" -#: src/Module/Admin/Summary.php:107 +#: src/Module/Admin/Summary.php:93 msgid "The worker was never executed. Please check your database structure!" msgstr "Фоновые задания ни разу не выполнялись. Пожалуйста, проверьте структуру базы данных!" -#: src/Module/Admin/Summary.php:109 +#: src/Module/Admin/Summary.php:95 #, php-format msgid "" "The last worker execution was on %s UTC. This is older than one hour. Please" " check your crontab settings." msgstr "Последний раз фоновое задание выполнялось %s UTC. Это более одного часа назад. Пожалуйста, проверьте настройки crontab." -#: src/Module/Admin/Summary.php:114 +#: src/Module/Admin/Summary.php:100 #, php-format msgid "" "Friendica's configuration now is stored in config/local.config.php, please " @@ -5845,7 +5844,7 @@ msgid "" "help with the transition." msgstr "" -#: src/Module/Admin/Summary.php:118 +#: src/Module/Admin/Summary.php:104 #, php-format msgid "" "Friendica's configuration now is stored in config/local.config.php, please " @@ -5854,7 +5853,7 @@ msgid "" "page for help with the transition." msgstr "" -#: src/Module/Admin/Summary.php:124 +#: src/Module/Admin/Summary.php:110 #, php-format msgid "" "%s is not reachable on your system. This is a severe " @@ -5862,107 +5861,107 @@ msgid "" "href=\"%s\">the installation page for help." msgstr "%s не доступен на вашей системе. Это серьёзная проблема, которая мешает межсерверной коммуникации. Посмотрите страницу установки для помощи." -#: src/Module/Admin/Summary.php:148 +#: src/Module/Admin/Summary.php:134 #, php-format msgid "" "Friendica's system.basepath was updated from '%s' to '%s'. Please remove the" " system.basepath from your db to avoid differences." msgstr "" -#: src/Module/Admin/Summary.php:156 +#: src/Module/Admin/Summary.php:142 #, php-format msgid "" "Friendica's current system.basepath '%s' is wrong and the config file '%s' " "isn't used." msgstr "" -#: src/Module/Admin/Summary.php:164 +#: src/Module/Admin/Summary.php:150 #, php-format msgid "" "Friendica's current system.basepath '%s' is not equal to the config file " "'%s'. Please fix your configuration." msgstr "" -#: src/Module/Admin/Summary.php:175 +#: src/Module/Admin/Summary.php:161 msgid "Message queues" msgstr "Очереди сообщений" -#: src/Module/Admin/Summary.php:181 +#: src/Module/Admin/Summary.php:167 msgid "Server Settings" msgstr "Настройки сервера" -#: src/Module/Admin/Summary.php:199 +#: src/Module/Admin/Summary.php:185 msgid "Version" msgstr "Версия" -#: src/Module/Admin/Summary.php:203 +#: src/Module/Admin/Summary.php:189 msgid "Active addons" msgstr "Активные дополнения" -#: src/Module/Admin/Themes/Details.php:63 src/Module/Admin/Themes/Index.php:71 +#: src/Module/Admin/Themes/Details.php:49 src/Module/Admin/Themes/Index.php:57 #, php-format msgid "Theme %s disabled." msgstr "Тема %s отключена." -#: src/Module/Admin/Themes/Details.php:65 src/Module/Admin/Themes/Index.php:73 +#: src/Module/Admin/Themes/Details.php:51 src/Module/Admin/Themes/Index.php:59 #, php-format msgid "Theme %s successfully enabled." msgstr "Тема %s успешно включена." -#: src/Module/Admin/Themes/Details.php:67 src/Module/Admin/Themes/Index.php:75 +#: src/Module/Admin/Themes/Details.php:53 src/Module/Admin/Themes/Index.php:61 #, php-format msgid "Theme %s failed to install." msgstr "Не удалось установить тему %s." -#: src/Module/Admin/Themes/Details.php:89 +#: src/Module/Admin/Themes/Details.php:75 msgid "Screenshot" msgstr "Скриншот" -#: src/Module/Admin/Themes/Details.php:97 -#: src/Module/Admin/Themes/Index.php:118 src/Module/BaseAdmin.php:93 +#: src/Module/Admin/Themes/Details.php:83 +#: src/Module/Admin/Themes/Index.php:104 src/Module/BaseAdmin.php:79 msgid "Themes" msgstr "Темы" -#: src/Module/Admin/Themes/Embed.php:80 +#: src/Module/Admin/Themes/Embed.php:66 msgid "Unknown theme." msgstr "Неизвестная тема." -#: src/Module/Admin/Themes/Index.php:57 +#: src/Module/Admin/Themes/Index.php:43 msgid "Themes reloaded" msgstr "Темы перезагружены" -#: src/Module/Admin/Themes/Index.php:120 +#: src/Module/Admin/Themes/Index.php:106 msgid "Reload active themes" msgstr "Перезагрузить активные темы" -#: src/Module/Admin/Themes/Index.php:124 +#: src/Module/Admin/Themes/Index.php:110 #, php-format msgid "No themes found on the system. They should be placed in %1$s" msgstr "Ни одной темы не найдено на сервере. Они должны быть размещены в %1$s" -#: src/Module/Admin/Themes/Index.php:125 +#: src/Module/Admin/Themes/Index.php:111 msgid "[Experimental]" msgstr "[экспериментально]" -#: src/Module/Admin/Themes/Index.php:126 +#: src/Module/Admin/Themes/Index.php:112 msgid "[Unsupported]" msgstr "[Неподдерживаемое]" -#: src/Module/Admin/Tos.php:79 +#: src/Module/Admin/Tos.php:65 msgid "Display Terms of Service" msgstr "Показать Условия оказания услуг" -#: src/Module/Admin/Tos.php:79 +#: src/Module/Admin/Tos.php:65 msgid "" "Enable the Terms of Service page. If this is enabled a link to the terms " "will be added to the registration form and the general information page." msgstr "Включить страницу с Условиями Оказания Услуг. Если эта настройка активна, ссылка на страницу с Условиями будет добавлена в форму регистрации и на страницу общей информации." -#: src/Module/Admin/Tos.php:80 +#: src/Module/Admin/Tos.php:66 msgid "Display Privacy Statement" msgstr "Показать Положение о конфиденциальности" -#: src/Module/Admin/Tos.php:80 +#: src/Module/Admin/Tos.php:66 #, php-format msgid "" "Show some informations regarding the needed information to operate the node " @@ -5970,160 +5969,160 @@ msgid "" "noreferrer\">EU-GDPR." msgstr "Показать различную информацию о соответствии узла различным требованиям конфиденциальности, например, EU-GDPR." -#: src/Module/Admin/Tos.php:81 +#: src/Module/Admin/Tos.php:67 msgid "Privacy Statement Preview" msgstr "Предпросмотр Положения о конфиденциальности" -#: src/Module/Admin/Tos.php:83 +#: src/Module/Admin/Tos.php:69 msgid "The Terms of Service" msgstr "Условия оказания услуг" -#: src/Module/Admin/Tos.php:83 +#: src/Module/Admin/Tos.php:69 msgid "" "Enter the Terms of Service for your node here. You can use BBCode. Headers " "of sections should be [h2] and below." msgstr "Введите здесь текст Условий оказания услуг для вашего узла. Можно использовать BBCode. Заголовки отдельных секций должны использовать [h2] и ниже." -#: src/Module/Admin/Tos.php:84 +#: src/Module/Admin/Tos.php:70 msgid "The rules" msgstr "Правила сервера" -#: src/Module/Admin/Tos.php:84 +#: src/Module/Admin/Tos.php:70 msgid "Enter your system rules here. Each line represents one rule." msgstr "Введите здесь правила поведения на сервере. Каждая линия - отдельное правило." -#: src/Module/Api/ApiResponse.php:293 +#: src/Module/Api/ApiResponse.php:279 #, php-format msgid "API endpoint %s %s is not implemented but might be in the future." msgstr "" -#: src/Module/Api/Mastodon/Apps.php:73 +#: src/Module/Api/Mastodon/Apps.php:59 msgid "Missing parameters" msgstr "" -#: src/Module/Api/Mastodon/Statuses/Bookmark.php:50 +#: src/Module/Api/Mastodon/Statuses/Bookmark.php:36 msgid "Only starting posts can be bookmarked" msgstr "Только заглавные записи могут быть добавлены в закладки" -#: src/Module/Api/Mastodon/Statuses/Mute.php:51 +#: src/Module/Api/Mastodon/Statuses/Mute.php:37 msgid "Only starting posts can be muted" msgstr "Только заглавные записи можно заглушить" -#: src/Module/Api/Mastodon/Statuses/Reblog.php:58 +#: src/Module/Api/Mastodon/Statuses/Reblog.php:44 #, php-format msgid "Posts from %s can't be shared" msgstr "Записями от %s нельзя поделиться" -#: src/Module/Api/Mastodon/Statuses/Unbookmark.php:51 +#: src/Module/Api/Mastodon/Statuses/Unbookmark.php:37 msgid "Only starting posts can be unbookmarked" msgstr "Только заглавные записи можно удалить из закладок" -#: src/Module/Api/Mastodon/Statuses/Unmute.php:51 +#: src/Module/Api/Mastodon/Statuses/Unmute.php:37 msgid "Only starting posts can be unmuted" msgstr "Только с заглавных записей можно снять заглушение" -#: src/Module/Api/Mastodon/Statuses/Unreblog.php:64 +#: src/Module/Api/Mastodon/Statuses/Unreblog.php:50 #, php-format msgid "Posts from %s can't be unshared" msgstr "Нельзя отменить продвижение для записей от %s " -#: src/Module/Api/Twitter/ContactEndpoint.php:66 +#: src/Module/Api/Twitter/ContactEndpoint.php:52 msgid "Contact not found" msgstr "Контакт не найден" -#: src/Module/Apps.php:62 +#: src/Module/Apps.php:48 msgid "No installed applications." msgstr "Нет установленных приложений." -#: src/Module/Apps.php:67 +#: src/Module/Apps.php:53 msgid "Applications" msgstr "Приложения" -#: src/Module/Attach.php:49 src/Module/Attach.php:61 +#: src/Module/Attach.php:35 src/Module/Attach.php:47 msgid "Item was not found." msgstr "Пункт не был найден." -#: src/Module/BaseAdmin.php:54 src/Module/BaseAdmin.php:58 -#: src/Module/BaseModeration.php:77 src/Module/BaseModeration.php:81 +#: src/Module/BaseAdmin.php:40 src/Module/BaseAdmin.php:44 +#: src/Module/BaseModeration.php:63 src/Module/BaseModeration.php:67 msgid "Please login to continue." msgstr "Пожалуйста, войдите для продолжения." -#: src/Module/BaseAdmin.php:63 +#: src/Module/BaseAdmin.php:49 msgid "You don't have access to administration pages." msgstr "У вас нет доступа к страницам администратора." -#: src/Module/BaseAdmin.php:67 +#: src/Module/BaseAdmin.php:53 msgid "" "Submanaged account can't access the administration pages. Please log back in" " as the main account." msgstr "Дополнительная учётная запись не имеет доступа к административным страницам. Пожалуйста, зайдите непосредственно как администратор." -#: src/Module/BaseAdmin.php:86 src/Module/BaseModeration.php:109 +#: src/Module/BaseAdmin.php:72 src/Module/BaseModeration.php:95 msgid "Overview" msgstr "Общая информация" -#: src/Module/BaseAdmin.php:89 src/Module/BaseModeration.php:112 +#: src/Module/BaseAdmin.php:75 src/Module/BaseModeration.php:98 msgid "Configuration" msgstr "Конфигурация" -#: src/Module/BaseAdmin.php:94 src/Module/BaseSettings.php:110 +#: src/Module/BaseAdmin.php:80 src/Module/BaseSettings.php:96 msgid "Additional features" msgstr "Дополнительные возможности" -#: src/Module/BaseAdmin.php:97 +#: src/Module/BaseAdmin.php:83 msgid "Database" msgstr "База данных" -#: src/Module/BaseAdmin.php:98 +#: src/Module/BaseAdmin.php:84 msgid "DB updates" msgstr "Обновление БД" -#: src/Module/BaseAdmin.php:99 +#: src/Module/BaseAdmin.php:85 msgid "Inspect Deferred Workers" msgstr "Посмотреть отложенные задания" -#: src/Module/BaseAdmin.php:100 +#: src/Module/BaseAdmin.php:86 msgid "Inspect worker Queue" msgstr "Посмотреть очередь заданий" -#: src/Module/BaseAdmin.php:106 src/Module/BaseModeration.php:120 +#: src/Module/BaseAdmin.php:92 src/Module/BaseModeration.php:106 msgid "Diagnostics" msgstr "Диагностика" -#: src/Module/BaseAdmin.php:107 +#: src/Module/BaseAdmin.php:93 msgid "PHP Info" msgstr "" -#: src/Module/BaseAdmin.php:108 +#: src/Module/BaseAdmin.php:94 msgid "probe address" msgstr "" -#: src/Module/BaseAdmin.php:109 +#: src/Module/BaseAdmin.php:95 msgid "check webfinger" msgstr "" -#: src/Module/BaseAdmin.php:110 +#: src/Module/BaseAdmin.php:96 msgid "Babel" msgstr "" -#: src/Module/BaseAdmin.php:111 src/Module/Debug/ActivityPubConversion.php:143 +#: src/Module/BaseAdmin.php:97 src/Module/Debug/ActivityPubConversion.php:129 msgid "ActivityPub Conversion" msgstr "" -#: src/Module/BaseAdmin.php:120 +#: src/Module/BaseAdmin.php:106 msgid "Addon Features" msgstr "" -#: src/Module/BaseAdmin.php:121 src/Module/BaseModeration.php:129 +#: src/Module/BaseAdmin.php:107 src/Module/BaseModeration.php:115 msgid "User registrations waiting for confirmation" msgstr "Регистрации пользователей, ожидающие подтверждения" -#: src/Module/BaseApi.php:455 src/Module/BaseApi.php:471 -#: src/Module/BaseApi.php:487 +#: src/Module/BaseApi.php:441 src/Module/BaseApi.php:457 +#: src/Module/BaseApi.php:473 msgid "Too Many Requests" msgstr "Слишком много запросов" -#: src/Module/BaseApi.php:456 +#: src/Module/BaseApi.php:442 #, php-format msgid "Daily posting limit of %d post reached. The post was rejected." msgid_plural "Daily posting limit of %d posts reached. The post was rejected." @@ -6132,7 +6131,7 @@ msgstr[1] "Дневной лимит в %d записи достигнут. За msgstr[2] "Дневной лимит в %d записей достигнут. Запись отклонена." msgstr[3] "Дневной лимит в %d записей достигнут. Запись отклонена." -#: src/Module/BaseApi.php:472 +#: src/Module/BaseApi.php:458 #, php-format msgid "Weekly posting limit of %d post reached. The post was rejected." msgid_plural "" @@ -6142,7 +6141,7 @@ msgstr[1] "Недельный лимит в %d записи достигнут. msgstr[2] "Недельный лимит в %d записей достигнут. Запись была отклонена." msgstr[3] "Недельный лимит в %d записей достигнут. Запись была отклонена." -#: src/Module/BaseApi.php:488 +#: src/Module/BaseApi.php:474 #, php-format msgid "Monthly posting limit of %d post reached. The post was rejected." msgid_plural "" @@ -6152,84 +6151,84 @@ msgstr[1] "Месячный лимит в %d записей достигнут. msgstr[2] "Месячный лимит в%d записей достигнут. Запись была отклонена." msgstr[3] "Месячный лимит в %d записей достигнут. Запись была отклонена." -#: src/Module/BaseModeration.php:86 +#: src/Module/BaseModeration.php:72 msgid "You don't have access to moderation pages." msgstr "У вас нет доступа к страницам модераторов." -#: src/Module/BaseModeration.php:90 +#: src/Module/BaseModeration.php:76 msgid "" "Submanaged account can't access the moderation pages. Please log back in as " "the main account." msgstr "Дополнительная учётная запись не имеет доступа к модераторским страницам. Пожалуйста, зайдите под основной." -#: src/Module/BaseModeration.php:110 src/Module/Moderation/Reports.php:115 +#: src/Module/BaseModeration.php:96 src/Module/Moderation/Reports.php:101 msgid "Reports" msgstr "Обращения" -#: src/Module/BaseModeration.php:113 src/Module/Moderation/Users/Index.php:148 -#: src/Module/Moderation/Users/Index.php:158 +#: src/Module/BaseModeration.php:99 src/Module/Moderation/Users/Index.php:134 +#: src/Module/Moderation/Users/Index.php:144 msgid "Users" msgstr "Пользователи" -#: src/Module/BaseModeration.php:115 +#: src/Module/BaseModeration.php:101 msgid "Tools" msgstr "Инструменты" -#: src/Module/BaseModeration.php:116 +#: src/Module/BaseModeration.php:102 msgid "Contact Blocklist" msgstr "Чёрный список контактов" -#: src/Module/BaseModeration.php:117 +#: src/Module/BaseModeration.php:103 msgid "Server Blocklist" msgstr "Чёрный список серверов" -#: src/Module/BaseModeration.php:118 src/Module/Moderation/Item/Delete.php:62 +#: src/Module/BaseModeration.php:104 src/Module/Moderation/Item/Delete.php:48 msgid "Delete Item" msgstr "Удалить запись" -#: src/Module/BaseModeration.php:121 src/Module/Moderation/Item/Source.php:82 +#: src/Module/BaseModeration.php:107 src/Module/Moderation/Item/Source.php:68 msgid "Item Source" msgstr "Исходник" -#: src/Module/BaseProfile.php:52 src/Module/Contact.php:513 +#: src/Module/BaseProfile.php:38 src/Module/Contact.php:488 msgid "Profile Details" msgstr "Информация о вас" -#: src/Module/BaseProfile.php:60 +#: src/Module/BaseProfile.php:46 msgid "Conversations started" msgstr "Записи этого автора" -#: src/Module/BaseProfile.php:111 +#: src/Module/BaseProfile.php:97 msgid "Only You Can See This" msgstr "Только вы можете это видеть" -#: src/Module/BaseProfile.php:116 src/Module/Profile/Schedule.php:81 +#: src/Module/BaseProfile.php:102 src/Module/Profile/Schedule.php:67 msgid "Scheduled Posts" msgstr "Запланированные записи" -#: src/Module/BaseProfile.php:119 +#: src/Module/BaseProfile.php:105 msgid "Posts that are scheduled for publishing" msgstr "Записи, публикация которых запланирована" -#: src/Module/BaseProfile.php:138 src/Module/BaseProfile.php:141 +#: src/Module/BaseProfile.php:124 src/Module/BaseProfile.php:127 msgid "Tips for New Members" msgstr "Советы для новых участников" -#: src/Module/BaseSearch.php:71 +#: src/Module/BaseSearch.php:57 #, php-format msgid "People Search - %s" msgstr "Поиск по людям - %s" -#: src/Module/BaseSearch.php:75 +#: src/Module/BaseSearch.php:61 #, php-format msgid "Group Search - %s" msgstr "Поиск по группам - %s" -#: src/Module/BaseSearch.php:121 src/Module/Contact/MatchInterests.php:140 +#: src/Module/BaseSearch.php:107 src/Module/Contact/MatchInterests.php:136 msgid "No matches" msgstr "Нет соответствий" -#: src/Module/BaseSearch.php:147 +#: src/Module/BaseSearch.php:133 #, php-format msgid "" "%d result was filtered out because your node blocks the domain it is " @@ -6244,267 +6243,267 @@ msgstr[1] "%d результатов не были показаны, так ка msgstr[2] "%d результатов не были показаны, так как ваш сервер блокирует домен их источника. Вы можете посмотреть список заблокированных доменов на странице информации Об узле." msgstr[3] "%d результатов не были показаны, так как ваш сервер блокирует домен их источника. Вы можете посмотреть список заблокированных доменов на странице информации Об узле." -#: src/Module/BaseSettings.php:78 +#: src/Module/BaseSettings.php:64 msgid "Account" msgstr "Аккаунт" -#: src/Module/BaseSettings.php:85 src/Module/Security/TwoFactor/Verify.php:96 -#: src/Module/Settings/TwoFactor/Index.php:138 +#: src/Module/BaseSettings.php:71 src/Module/Security/TwoFactor/Verify.php:82 +#: src/Module/Settings/TwoFactor/Index.php:124 msgid "Two-factor authentication" msgstr "Двухфакторная аутентификация" -#: src/Module/BaseSettings.php:118 +#: src/Module/BaseSettings.php:104 msgid "Display" msgstr "Внешний вид" -#: src/Module/BaseSettings.php:132 src/Module/Settings/Connectors.php:213 +#: src/Module/BaseSettings.php:118 src/Module/Settings/Connectors.php:195 msgid "Social Networks" msgstr "Социальные сети" -#: src/Module/BaseSettings.php:146 src/Module/Settings/Delegation.php:194 +#: src/Module/BaseSettings.php:132 src/Module/Settings/Delegation.php:180 msgid "Manage Accounts" msgstr "Управление учётными записями" -#: src/Module/BaseSettings.php:153 +#: src/Module/BaseSettings.php:139 msgid "Connected apps" msgstr "Подключенные приложения" -#: src/Module/BaseSettings.php:160 +#: src/Module/BaseSettings.php:146 msgid "Remote servers" msgstr "Другие серверы" -#: src/Module/BaseSettings.php:167 src/Module/Settings/UserExport.php:98 +#: src/Module/BaseSettings.php:153 src/Module/Settings/UserExport.php:84 msgid "Export personal data" msgstr "Экспорт личных данных" -#: src/Module/BaseSettings.php:174 +#: src/Module/BaseSettings.php:160 msgid "Remove account" msgstr "Удалить аккаунт" -#: src/Module/Bookmarklet.php:54 +#: src/Module/Bookmarklet.php:40 msgid "This page is missing a url parameter." msgstr "" -#: src/Module/Bookmarklet.php:66 +#: src/Module/Bookmarklet.php:52 msgid "The post was created" msgstr "Запись создана" -#: src/Module/Calendar/Event/API.php:100 src/Module/Calendar/Event/API.php:135 -#: src/Module/Calendar/Event/Form.php:80 +#: src/Module/Calendar/Event/API.php:86 src/Module/Calendar/Event/API.php:121 +#: src/Module/Calendar/Event/Form.php:66 msgid "Invalid Request" msgstr "Неверный запрос" -#: src/Module/Calendar/Event/API.php:109 +#: src/Module/Calendar/Event/API.php:95 msgid "Event id is missing." msgstr "Отсутствует id события" -#: src/Module/Calendar/Event/API.php:131 +#: src/Module/Calendar/Event/API.php:117 msgid "Failed to remove event" msgstr "Ошибка удаления события" -#: src/Module/Calendar/Event/API.php:187 src/Module/Calendar/Event/API.php:189 +#: src/Module/Calendar/Event/API.php:173 src/Module/Calendar/Event/API.php:175 msgid "Event can not end before it has started." msgstr "Эвент не может закончится до старта." -#: src/Module/Calendar/Event/API.php:196 src/Module/Calendar/Event/API.php:198 +#: src/Module/Calendar/Event/API.php:182 src/Module/Calendar/Event/API.php:184 msgid "Event title and start time are required." msgstr "Название мероприятия и время начала обязательны для заполнения." -#: src/Module/Calendar/Event/Form.php:208 +#: src/Module/Calendar/Event/Form.php:194 msgid "Starting date and Title are required." msgstr "Необходима дата старта и заголовок." -#: src/Module/Calendar/Event/Form.php:209 -#: src/Module/Calendar/Event/Form.php:214 +#: src/Module/Calendar/Event/Form.php:195 +#: src/Module/Calendar/Event/Form.php:200 msgid "Event Starts:" msgstr "Начало мероприятия:" -#: src/Module/Calendar/Event/Form.php:209 -#: src/Module/Calendar/Event/Form.php:237 src/Module/Debug/Probe.php:59 -#: src/Module/Install.php:201 src/Module/Install.php:227 -#: src/Module/Install.php:232 src/Module/Install.php:246 -#: src/Module/Install.php:255 src/Module/Install.php:260 -#: src/Module/Install.php:266 src/Module/Install.php:271 -#: src/Module/Install.php:285 src/Module/Install.php:298 -#: src/Module/Install.php:325 -#: src/Module/Moderation/Blocklist/Server/Add.php:136 -#: src/Module/Moderation/Blocklist/Server/Add.php:138 -#: src/Module/Moderation/Blocklist/Server/Import.php:129 -#: src/Module/Moderation/Blocklist/Server/Index.php:86 -#: src/Module/Moderation/Blocklist/Server/Index.php:87 -#: src/Module/Moderation/Blocklist/Server/Index.php:115 -#: src/Module/Moderation/Blocklist/Server/Index.php:116 -#: src/Module/Moderation/Item/Delete.php:67 src/Module/Register.php:155 -#: src/Module/Security/TwoFactor/Verify.php:101 -#: src/Module/Settings/Channels.php:190 src/Module/Settings/Channels.php:211 -#: src/Module/Settings/TwoFactor/Index.php:161 -#: src/Module/Settings/TwoFactor/Verify.php:158 +#: src/Module/Calendar/Event/Form.php:195 +#: src/Module/Calendar/Event/Form.php:223 src/Module/Debug/Probe.php:45 +#: src/Module/Install.php:187 src/Module/Install.php:213 +#: src/Module/Install.php:218 src/Module/Install.php:232 +#: src/Module/Install.php:241 src/Module/Install.php:246 +#: src/Module/Install.php:252 src/Module/Install.php:257 +#: src/Module/Install.php:271 src/Module/Install.php:284 +#: src/Module/Install.php:311 +#: src/Module/Moderation/Blocklist/Server/Add.php:122 +#: src/Module/Moderation/Blocklist/Server/Add.php:124 +#: src/Module/Moderation/Blocklist/Server/Import.php:113 +#: src/Module/Moderation/Blocklist/Server/Index.php:72 +#: src/Module/Moderation/Blocklist/Server/Index.php:73 +#: src/Module/Moderation/Blocklist/Server/Index.php:101 +#: src/Module/Moderation/Blocklist/Server/Index.php:102 +#: src/Module/Moderation/Item/Delete.php:53 src/Module/Register.php:141 +#: src/Module/Security/TwoFactor/Verify.php:87 +#: src/Module/Settings/Channels.php:176 src/Module/Settings/Channels.php:197 +#: src/Module/Settings/TwoFactor/Index.php:147 +#: src/Module/Settings/TwoFactor/Verify.php:144 msgid "Required" msgstr "Требуется" -#: src/Module/Calendar/Event/Form.php:223 -#: src/Module/Calendar/Event/Form.php:247 +#: src/Module/Calendar/Event/Form.php:209 +#: src/Module/Calendar/Event/Form.php:233 msgid "Finish date/time is not known or not relevant" msgstr "Дата/время окончания не известны, или не указаны" -#: src/Module/Calendar/Event/Form.php:225 -#: src/Module/Calendar/Event/Form.php:230 +#: src/Module/Calendar/Event/Form.php:211 +#: src/Module/Calendar/Event/Form.php:216 msgid "Event Finishes:" msgstr "Окончание мероприятия:" -#: src/Module/Calendar/Event/Form.php:237 -#: src/Module/Calendar/Event/Form.php:243 +#: src/Module/Calendar/Event/Form.php:223 +#: src/Module/Calendar/Event/Form.php:229 msgid "Title (BBCode not allowed)" msgstr "" -#: src/Module/Calendar/Event/Form.php:239 +#: src/Module/Calendar/Event/Form.php:225 msgid "Description (BBCode allowed)" msgstr "" -#: src/Module/Calendar/Event/Form.php:241 +#: src/Module/Calendar/Event/Form.php:227 msgid "Location (BBCode not allowed)" msgstr "" -#: src/Module/Calendar/Event/Form.php:244 -#: src/Module/Calendar/Event/Form.php:245 +#: src/Module/Calendar/Event/Form.php:230 +#: src/Module/Calendar/Event/Form.php:231 msgid "Share this event" msgstr "Поделиться этим мероприятием" -#: src/Module/Calendar/Event/Form.php:251 src/Module/Profile/Profile.php:277 +#: src/Module/Calendar/Event/Form.php:237 src/Module/Profile/Profile.php:263 msgid "Basic" msgstr "Базовый" -#: src/Module/Calendar/Export.php:94 +#: src/Module/Calendar/Export.php:80 msgid "This calendar format is not supported" msgstr "Этот формат календарей не поддерживается" -#: src/Module/Calendar/Export.php:96 +#: src/Module/Calendar/Export.php:82 msgid "No exportable data found" msgstr "Нет данных для экспорта" -#: src/Module/Calendar/Export.php:113 +#: src/Module/Calendar/Export.php:99 msgid "calendar" msgstr "календарь" -#: src/Module/Calendar/Show.php:124 +#: src/Module/Calendar/Show.php:110 msgid "Events" msgstr "Мероприятия" -#: src/Module/Calendar/Show.php:125 +#: src/Module/Calendar/Show.php:111 msgid "View" msgstr "Смотреть" -#: src/Module/Calendar/Show.php:126 +#: src/Module/Calendar/Show.php:112 msgid "Create New Event" msgstr "Создать новое мероприятие" -#: src/Module/Calendar/Show.php:132 src/Module/Settings/Display.php:297 +#: src/Module/Calendar/Show.php:118 src/Module/Settings/Display.php:283 msgid "list" msgstr "список" -#: src/Module/Circle.php:57 +#: src/Module/Circle.php:43 msgid "Could not create circle." msgstr "Не удалось создать круг." -#: src/Module/Circle.php:68 src/Module/Circle.php:216 -#: src/Module/Circle.php:240 +#: src/Module/Circle.php:54 src/Module/Circle.php:202 +#: src/Module/Circle.php:226 msgid "Circle not found." msgstr "Круг не найден." -#: src/Module/Circle.php:74 +#: src/Module/Circle.php:60 msgid "Circle name was not changed." msgstr "Название круга не изменено." -#: src/Module/Circle.php:92 +#: src/Module/Circle.php:78 msgid "Unknown circle." msgstr "Неизвестный круг." -#: src/Module/Circle.php:98 src/Module/Circle.php:107 -#: src/Module/Contact/Advanced.php:70 src/Module/Contact/Advanced.php:109 -#: src/Module/Contact/Contacts.php:71 src/Module/Contact/Conversations.php:86 -#: src/Module/Contact/Conversations.php:91 -#: src/Module/Contact/Conversations.php:96 src/Module/Contact/Media.php:61 -#: src/Module/Contact/Posts.php:78 src/Module/Contact/Posts.php:83 -#: src/Module/Contact/Posts.php:88 src/Module/Contact/Profile.php:159 -#: src/Module/Contact/Profile.php:164 src/Module/Contact/Profile.php:183 -#: src/Module/Contact/Redir.php:91 src/Module/Contact/Redir.php:145 -#: src/Module/FriendSuggest.php:71 src/Module/FriendSuggest.php:109 +#: src/Module/Circle.php:84 src/Module/Circle.php:93 +#: src/Module/Contact/Advanced.php:56 src/Module/Contact/Advanced.php:95 +#: src/Module/Contact/Contacts.php:57 src/Module/Contact/Conversations.php:72 +#: src/Module/Contact/Conversations.php:77 +#: src/Module/Contact/Conversations.php:82 src/Module/Contact/Media.php:47 +#: src/Module/Contact/Posts.php:64 src/Module/Contact/Posts.php:69 +#: src/Module/Contact/Posts.php:74 src/Module/Contact/Profile.php:145 +#: src/Module/Contact/Profile.php:150 src/Module/Contact/Profile.php:169 +#: src/Module/Contact/Redir.php:77 src/Module/Contact/Redir.php:131 +#: src/Module/FriendSuggest.php:57 src/Module/FriendSuggest.php:95 msgid "Contact not found." msgstr "Контакт не найден." -#: src/Module/Circle.php:102 src/Module/Contact/Contacts.php:66 +#: src/Module/Circle.php:88 src/Module/Contact/Contacts.php:52 msgid "Invalid contact." msgstr "Недопустимый контакт." -#: src/Module/Circle.php:111 src/Module/Contact/Revoke.php:70 +#: src/Module/Circle.php:97 src/Module/Contact/Revoke.php:56 msgid "Contact is deleted." msgstr "Контакт удалён." -#: src/Module/Circle.php:117 +#: src/Module/Circle.php:103 msgid "Unable to add the contact to the circle." msgstr "Не удалось добавить контакт в круг." -#: src/Module/Circle.php:120 +#: src/Module/Circle.php:106 msgid "Contact successfully added to circle." msgstr "Контакт успешно добавлен в круг." -#: src/Module/Circle.php:124 +#: src/Module/Circle.php:110 msgid "Unable to remove the contact from the circle." msgstr "Не удалось удалить контакт из круга." -#: src/Module/Circle.php:127 +#: src/Module/Circle.php:113 msgid "Contact successfully removed from circle." msgstr "Контакт успешно удалён из круга." -#: src/Module/Circle.php:131 +#: src/Module/Circle.php:117 msgid "Bad request." msgstr "Ошибочный запрос." -#: src/Module/Circle.php:172 +#: src/Module/Circle.php:158 msgid "Save Circle" msgstr "Сохранить круг" -#: src/Module/Circle.php:173 +#: src/Module/Circle.php:159 msgid "Filter" msgstr "Фильтр" -#: src/Module/Circle.php:179 +#: src/Module/Circle.php:165 msgid "Create a circle of contacts/friends." msgstr "Создать круг контактов/друзей." -#: src/Module/Circle.php:221 +#: src/Module/Circle.php:207 msgid "Unable to remove circle." msgstr "Не удаётся удалить круг." -#: src/Module/Circle.php:272 +#: src/Module/Circle.php:258 msgid "Delete Circle" msgstr "Удалить круг" -#: src/Module/Circle.php:282 +#: src/Module/Circle.php:268 msgid "Edit Circle Name" msgstr "Изменить имя круга" -#: src/Module/Circle.php:292 +#: src/Module/Circle.php:278 msgid "Members" msgstr "Участники" -#: src/Module/Circle.php:295 +#: src/Module/Circle.php:281 msgid "Circle is empty" msgstr "Круг пуст" -#: src/Module/Circle.php:311 +#: src/Module/Circle.php:297 msgid "Remove contact from circle" msgstr "Удалить контакт из круга" -#: src/Module/Circle.php:334 +#: src/Module/Circle.php:320 msgid "Click on a contact to add or remove." msgstr "Нажмите на контакт, чтобы добавить или удалить." -#: src/Module/Circle.php:351 +#: src/Module/Circle.php:337 msgid "Add contact to circle" msgstr "Добавить контакт в круг" -#: src/Module/Contact.php:102 +#: src/Module/Contact.php:88 #, php-format msgid "%d contact edited." msgid_plural "%d contacts edited." @@ -6513,192 +6512,192 @@ msgstr[1] "%d контакта изменено." msgstr[2] "%d контактов изменены." msgstr[3] "%d контактов изменены." -#: src/Module/Contact.php:353 +#: src/Module/Contact.php:328 msgid "Show all contacts" msgstr "Показать все контакты" -#: src/Module/Contact.php:358 src/Module/Contact.php:437 -#: src/Module/Moderation/BaseUsers.php:85 +#: src/Module/Contact.php:333 src/Module/Contact.php:412 +#: src/Module/Moderation/BaseUsers.php:72 msgid "Pending" msgstr "В ожидании" -#: src/Module/Contact.php:361 +#: src/Module/Contact.php:336 msgid "Only show pending contacts" msgstr "Показать только контакты \"в ожидании\"" -#: src/Module/Contact.php:366 src/Module/Contact.php:440 -#: src/Module/Moderation/BaseUsers.php:93 +#: src/Module/Contact.php:341 src/Module/Contact.php:415 +#: src/Module/Moderation/BaseUsers.php:80 msgid "Blocked" msgstr "Заблокированы" -#: src/Module/Contact.php:369 +#: src/Module/Contact.php:344 msgid "Only show blocked contacts" msgstr "Показать только блокированные контакты" -#: src/Module/Contact.php:374 src/Module/Contact.php:446 -#: src/Module/Settings/Server/Index.php:107 src/Object/Post.php:399 +#: src/Module/Contact.php:349 src/Module/Contact.php:421 +#: src/Module/Settings/Server/Index.php:93 src/Object/Post.php:385 msgid "Ignored" msgstr "Игнорируются" -#: src/Module/Contact.php:377 +#: src/Module/Contact.php:352 msgid "Only show ignored contacts" msgstr "Показать только игнорируемые контакты" -#: src/Module/Contact.php:382 src/Module/Contact.php:449 +#: src/Module/Contact.php:357 src/Module/Contact.php:424 msgid "Collapsed" msgstr "Свёрнуто" -#: src/Module/Contact.php:385 +#: src/Module/Contact.php:360 msgid "Only show collapsed contacts" msgstr "Показать только сворачиваемые контакты" -#: src/Module/Contact.php:390 src/Module/Contact.php:452 +#: src/Module/Contact.php:365 src/Module/Contact.php:427 msgid "Archived" msgstr "Архивированные" -#: src/Module/Contact.php:393 +#: src/Module/Contact.php:368 msgid "Only show archived contacts" msgstr "Показывать только архивные контакты" -#: src/Module/Contact.php:398 src/Module/Contact.php:443 +#: src/Module/Contact.php:373 src/Module/Contact.php:418 msgid "Hidden" msgstr "Скрытые" -#: src/Module/Contact.php:401 +#: src/Module/Contact.php:376 msgid "Only show hidden contacts" msgstr "Показывать только скрытые контакты" -#: src/Module/Contact.php:409 +#: src/Module/Contact.php:384 msgid "Organize your contact circles" msgstr "Настроить круги контактов" -#: src/Module/Contact.php:464 +#: src/Module/Contact.php:439 msgid "Search your contacts" msgstr "Поиск ваших контактов" -#: src/Module/Contact.php:465 src/Module/Search/Index.php:207 +#: src/Module/Contact.php:440 src/Module/Search/Index.php:193 #, php-format msgid "Results for: %s" msgstr "Результаты для: %s" -#: src/Module/Contact.php:473 +#: src/Module/Contact.php:448 msgid "Update" msgstr "Обновление" -#: src/Module/Contact.php:474 src/Module/Contact/Profile.php:532 -#: src/Module/Moderation/Blocklist/Contact.php:117 -#: src/Module/Moderation/Users/Blocked.php:138 -#: src/Module/Moderation/Users/Index.php:154 +#: src/Module/Contact.php:449 src/Module/Contact/Profile.php:518 +#: src/Module/Moderation/Blocklist/Contact.php:103 +#: src/Module/Moderation/Users/Blocked.php:124 +#: src/Module/Moderation/Users/Index.php:140 msgid "Unblock" msgstr "Разблокировать" -#: src/Module/Contact.php:475 src/Module/Contact/Profile.php:540 +#: src/Module/Contact.php:450 src/Module/Contact/Profile.php:526 msgid "Unignore" msgstr "Не игнорировать" -#: src/Module/Contact.php:476 src/Module/Contact/Profile.php:548 +#: src/Module/Contact.php:451 src/Module/Contact/Profile.php:534 msgid "Uncollapse" msgstr "Не сворачивать" -#: src/Module/Contact.php:478 +#: src/Module/Contact.php:453 msgid "Batch Actions" msgstr "Пакетные действия" -#: src/Module/Contact.php:521 +#: src/Module/Contact.php:496 msgid "Conversations started by this contact" msgstr "Диалоги этого контакта" -#: src/Module/Contact.php:526 +#: src/Module/Contact.php:501 msgid "Posts and Comments" msgstr "Записи и комментарии" -#: src/Module/Contact.php:529 +#: src/Module/Contact.php:504 msgid "Individual Posts and Replies" msgstr "Отдельные записи и ответы" -#: src/Module/Contact.php:537 +#: src/Module/Contact.php:512 msgid "Posts containing media objects" msgstr "Записи с медиа" -#: src/Module/Contact.php:545 +#: src/Module/Contact.php:520 msgid "View all known contacts" msgstr "Показать все известные контакты" -#: src/Module/Contact.php:556 +#: src/Module/Contact.php:531 msgid "Advanced Contact Settings" msgstr "Дополнительные Настройки Контакта" -#: src/Module/Contact.php:592 +#: src/Module/Contact.php:567 msgid "Mutual Friendship" msgstr "Взаимная дружба" -#: src/Module/Contact.php:596 +#: src/Module/Contact.php:571 msgid "is a fan of yours" msgstr "является вашим поклонником" -#: src/Module/Contact.php:600 +#: src/Module/Contact.php:575 msgid "you are a fan of" msgstr "Вы - поклонник" -#: src/Module/Contact.php:618 +#: src/Module/Contact.php:593 msgid "Pending outgoing contact request" msgstr "Исходящий запрос на подписку" -#: src/Module/Contact.php:620 +#: src/Module/Contact.php:595 msgid "Pending incoming contact request" msgstr "Входящий запрос на подписку" -#: src/Module/Contact.php:633 src/Module/Contact/Profile.php:391 +#: src/Module/Contact.php:608 src/Module/Contact/Profile.php:377 #, php-format msgid "Visit %s's profile [%s]" msgstr "Посетить профиль %s [%s]" -#: src/Module/Contact/Advanced.php:99 +#: src/Module/Contact/Advanced.php:85 msgid "Contact update failed." msgstr "Обновление контакта неудачное." -#: src/Module/Contact/Advanced.php:130 +#: src/Module/Contact/Advanced.php:116 msgid "Return to contact editor" msgstr "Возврат к редактору контакта" -#: src/Module/Contact/Advanced.php:134 -#: src/Module/Moderation/Blocklist/Contact.php:122 -#: src/Module/Moderation/Reports.php:116 -#: src/Module/Moderation/Users/Active.php:126 -#: src/Module/Moderation/Users/Blocked.php:126 -#: src/Module/Moderation/Users/Create.php:70 -#: src/Module/Moderation/Users/Deleted.php:83 -#: src/Module/Moderation/Users/Index.php:140 -#: src/Module/Moderation/Users/Index.php:160 -#: src/Module/Moderation/Users/Pending.php:99 src/Module/Settings/OAuth.php:72 +#: src/Module/Contact/Advanced.php:120 +#: src/Module/Moderation/Blocklist/Contact.php:108 +#: src/Module/Moderation/Reports.php:102 +#: src/Module/Moderation/Users/Active.php:112 +#: src/Module/Moderation/Users/Blocked.php:112 +#: src/Module/Moderation/Users/Create.php:56 +#: src/Module/Moderation/Users/Deleted.php:69 +#: src/Module/Moderation/Users/Index.php:126 +#: src/Module/Moderation/Users/Index.php:146 +#: src/Module/Moderation/Users/Pending.php:85 src/Module/Settings/OAuth.php:58 msgid "Name" msgstr "Имя" -#: src/Module/Contact/Advanced.php:135 +#: src/Module/Contact/Advanced.php:121 msgid "Account Nickname" msgstr "Ник аккаунта" -#: src/Module/Contact/Advanced.php:136 +#: src/Module/Contact/Advanced.php:122 msgid "Account URL" msgstr "URL аккаунта" -#: src/Module/Contact/Advanced.php:137 +#: src/Module/Contact/Advanced.php:123 msgid "Poll/Feed URL" msgstr "URL опроса/ленты" -#: src/Module/Contact/Advanced.php:138 +#: src/Module/Contact/Advanced.php:124 msgid "New photo from this URL" msgstr "Новое фото из этой URL" -#: src/Module/Contact/Contacts.php:89 +#: src/Module/Contact/Contacts.php:75 msgid "No known contacts." msgstr "Нет известных контактов." -#: src/Module/Contact/Contacts.php:103 src/Module/Profile/Common.php:128 +#: src/Module/Contact/Contacts.php:89 src/Module/Profile/Common.php:114 msgid "No common contacts." msgstr "Общих контактов нет." -#: src/Module/Contact/Contacts.php:115 src/Module/Profile/Contacts.php:135 +#: src/Module/Contact/Contacts.php:101 src/Module/Profile/Contacts.php:121 #, php-format msgid "Follower (%s)" msgid_plural "Followers (%s)" @@ -6707,7 +6706,7 @@ msgstr[1] "Подписчики (%s)" msgstr[2] "Подписчики (%s)" msgstr[3] "Подписчики (%s)" -#: src/Module/Contact/Contacts.php:119 src/Module/Profile/Contacts.php:138 +#: src/Module/Contact/Contacts.php:105 src/Module/Profile/Contacts.php:124 #, php-format msgid "Following (%s)" msgid_plural "Following (%s)" @@ -6716,7 +6715,7 @@ msgstr[1] "Подписаны на (%s)" msgstr[2] "Подписаны на (%s)" msgstr[3] "Подписаны на (%s)" -#: src/Module/Contact/Contacts.php:123 src/Module/Profile/Contacts.php:141 +#: src/Module/Contact/Contacts.php:109 src/Module/Profile/Contacts.php:127 #, php-format msgid "Mutual friend (%s)" msgid_plural "Mutual friends (%s)" @@ -6725,12 +6724,12 @@ msgstr[1] "Взаимные друзья (%s)" msgstr[2] "Взаимные друзья (%s)" msgstr[3] "Взаимные друзья (%s)" -#: src/Module/Contact/Contacts.php:125 src/Module/Profile/Contacts.php:143 +#: src/Module/Contact/Contacts.php:111 src/Module/Profile/Contacts.php:129 #, php-format msgid "These contacts both follow and are followed by %s." msgstr "Эти контакты взаимно добавлены в друзья %s." -#: src/Module/Contact/Contacts.php:131 src/Module/Profile/Common.php:116 +#: src/Module/Contact/Contacts.php:117 src/Module/Profile/Common.php:102 #, php-format msgid "Common contact (%s)" msgid_plural "Common contacts (%s)" @@ -6739,14 +6738,14 @@ msgstr[1] "Общие контакты (%s)" msgstr[2] "Общие контакты (%s)" msgstr[3] "Общие контакты (%s)" -#: src/Module/Contact/Contacts.php:133 src/Module/Profile/Common.php:118 +#: src/Module/Contact/Contacts.php:119 src/Module/Profile/Common.php:104 #, php-format msgid "" "Both %s and yourself have publicly interacted with these " "contacts (follow, comment or likes on public posts)." msgstr "%s и вы публично взаимодействовали с этими контактами (добавляли их, комментировали публичные посты или оставляли лайки к ним)." -#: src/Module/Contact/Contacts.php:139 src/Module/Profile/Contacts.php:149 +#: src/Module/Contact/Contacts.php:125 src/Module/Profile/Contacts.php:135 #, php-format msgid "Contact (%s)" msgid_plural "Contacts (%s)" @@ -6755,333 +6754,329 @@ msgstr[1] "Контакты (%s)" msgstr[2] "Контакты (%s)" msgstr[3] "Контакты (%s)" -#: src/Module/Contact/Follow.php:70 src/Module/Contact/Redir.php:59 -#: src/Module/Contact/Redir.php:220 src/Module/Conversation/Community.php:166 -#: src/Module/Debug/ItemBody.php:38 src/Module/Diaspora/Receive.php:59 -#: src/Module/Item/Display.php:96 src/Module/Item/Feed.php:59 -#: src/Module/Item/Follow.php:41 src/Module/Item/Ignore.php:41 -#: src/Module/Item/Language.php:53 src/Module/Item/Pin.php:41 -#: src/Module/Item/Pin.php:56 src/Module/Item/Searchtext.php:53 -#: src/Module/Item/Star.php:42 src/Module/Update/Display.php:37 +#: src/Module/Contact/Follow.php:56 src/Module/Contact/Redir.php:45 +#: src/Module/Contact/Redir.php:206 src/Module/Conversation/Community.php:154 +#: src/Module/Debug/ItemBody.php:24 src/Module/Diaspora/Receive.php:45 +#: src/Module/Item/Display.php:82 src/Module/Item/Feed.php:45 +#: src/Module/Item/Follow.php:27 src/Module/Item/Ignore.php:27 +#: src/Module/Item/Language.php:39 src/Module/Item/Pin.php:27 +#: src/Module/Item/Pin.php:42 src/Module/Item/Searchtext.php:39 +#: src/Module/Item/Star.php:28 src/Module/Update/Display.php:23 msgid "Access denied." msgstr "Доступ запрещен." -#: src/Module/Contact/Follow.php:105 src/Module/Contact/Unfollow.php:125 -#: src/Module/Profile/RemoteFollow.php:133 +#: src/Module/Contact/Follow.php:91 src/Module/Contact/Unfollow.php:111 +#: src/Module/Profile/RemoteFollow.php:119 msgid "Submit Request" msgstr "Отправить запрос" -#: src/Module/Contact/Follow.php:115 +#: src/Module/Contact/Follow.php:101 msgid "You already added this contact." msgstr "Вы уже добавили этот контакт." -#: src/Module/Contact/Follow.php:130 +#: src/Module/Contact/Follow.php:116 msgid "The network type couldn't be detected. Contact can't be added." msgstr "Тип сети не может быть определен. Контакт не может быть добавлен." -#: src/Module/Contact/Follow.php:138 +#: src/Module/Contact/Follow.php:124 msgid "Diaspora support isn't enabled. Contact can't be added." msgstr "Поддержка Diaspora не включена. Контакт не может быть добавлен." -#: src/Module/Contact/Follow.php:143 -msgid "OStatus support is disabled. Contact can't be added." -msgstr "Поддержка OStatus выключена. Контакт не может быть добавлен." - -#: src/Module/Contact/Follow.php:168 src/Module/Profile/RemoteFollow.php:132 +#: src/Module/Contact/Follow.php:149 src/Module/Profile/RemoteFollow.php:118 msgid "Please answer the following:" msgstr "Пожалуйста, ответьте следующее:" -#: src/Module/Contact/Follow.php:169 src/Module/Contact/Unfollow.php:123 +#: src/Module/Contact/Follow.php:150 src/Module/Contact/Unfollow.php:109 msgid "Your Identity Address:" msgstr "Ваш адрес:" -#: src/Module/Contact/Follow.php:170 src/Module/Contact/Profile.php:422 -#: src/Module/Contact/Unfollow.php:129 -#: src/Module/Moderation/Blocklist/Contact.php:131 -#: src/Module/Moderation/Reports.php:123 -#: src/Module/Notifications/Introductions.php:135 -#: src/Module/Notifications/Introductions.php:204 +#: src/Module/Contact/Follow.php:151 src/Module/Contact/Profile.php:408 +#: src/Module/Contact/Unfollow.php:115 +#: src/Module/Moderation/Blocklist/Contact.php:117 +#: src/Module/Moderation/Reports.php:109 +#: src/Module/Notifications/Introductions.php:121 +#: src/Module/Notifications/Introductions.php:190 msgid "Profile URL" msgstr "URL профиля" -#: src/Module/Contact/Follow.php:171 src/Module/Contact/Profile.php:434 -#: src/Module/Notifications/Introductions.php:197 -#: src/Module/Profile/Profile.php:236 +#: src/Module/Contact/Follow.php:152 src/Module/Contact/Profile.php:420 +#: src/Module/Notifications/Introductions.php:183 +#: src/Module/Profile/Profile.php:222 msgid "Tags:" msgstr "Ключевые слова: " -#: src/Module/Contact/Follow.php:182 +#: src/Module/Contact/Follow.php:163 #, php-format msgid "%s knows you" msgstr "%s знают Вас" -#: src/Module/Contact/Follow.php:183 +#: src/Module/Contact/Follow.php:164 msgid "Add a personal note:" msgstr "Добавить личную заметку:" -#: src/Module/Contact/Follow.php:192 src/Module/Contact/Unfollow.php:138 +#: src/Module/Contact/Follow.php:173 src/Module/Contact/Unfollow.php:124 msgid "Posts and Replies" msgstr "Записи и ответы" -#: src/Module/Contact/Follow.php:221 +#: src/Module/Contact/Follow.php:202 msgid "The contact could not be added." msgstr "Не удалось добавить этот контакт." -#: src/Module/Contact/MatchInterests.php:95 -#: src/Module/Media/Attachment/Upload.php:77 -#: src/Module/Media/Attachment/Upload.php:82 -#: src/Module/Media/Photo/Upload.php:81 src/Module/Media/Photo/Upload.php:86 -#: src/Module/Media/Photo/Upload.php:135 +#: src/Module/Contact/MatchInterests.php:81 +#: src/Module/Media/Attachment/Upload.php:63 +#: src/Module/Media/Attachment/Upload.php:68 +#: src/Module/Media/Photo/Upload.php:67 src/Module/Media/Photo/Upload.php:72 +#: src/Module/Media/Photo/Upload.php:121 msgid "Invalid request." msgstr "Неверный запрос." -#: src/Module/Contact/MatchInterests.php:102 +#: src/Module/Contact/MatchInterests.php:88 msgid "No keywords to match. Please add keywords to your profile." msgstr "Нет совпадающих ключевых слов. Пожалуйста, добавьте ключевые слова в ваш профиль." -#: src/Module/Contact/MatchInterests.php:145 +#: src/Module/Contact/MatchInterests.php:141 msgid "Profile Match" msgstr "Похожие профили" -#: src/Module/Contact/Profile.php:145 +#: src/Module/Contact/Profile.php:131 msgid "Failed to update contact record." msgstr "Не удалось обновить запись контакта." -#: src/Module/Contact/Profile.php:209 +#: src/Module/Contact/Profile.php:195 msgid "Contact has been unblocked" msgstr "Контакт разблокирован" -#: src/Module/Contact/Profile.php:213 +#: src/Module/Contact/Profile.php:199 msgid "Contact has been blocked" msgstr "Контакт заблокирован" -#: src/Module/Contact/Profile.php:225 +#: src/Module/Contact/Profile.php:211 msgid "Contact has been unignored" msgstr "У контакта отменено игнорирование" -#: src/Module/Contact/Profile.php:229 +#: src/Module/Contact/Profile.php:215 msgid "Contact has been ignored" msgstr "Контакт проигнорирован" -#: src/Module/Contact/Profile.php:241 +#: src/Module/Contact/Profile.php:227 msgid "Contact has been uncollapsed" msgstr "Записи контакта не сворачиваются" -#: src/Module/Contact/Profile.php:245 +#: src/Module/Contact/Profile.php:231 msgid "Contact has been collapsed" msgstr "Записи контакта сворачиваются" -#: src/Module/Contact/Profile.php:273 +#: src/Module/Contact/Profile.php:259 #, php-format msgid "You are mutual friends with %s" msgstr "У Вас взаимная дружба с %s" -#: src/Module/Contact/Profile.php:274 +#: src/Module/Contact/Profile.php:260 #, php-format msgid "You are sharing with %s" msgstr "Вы делитесь с %s" -#: src/Module/Contact/Profile.php:275 +#: src/Module/Contact/Profile.php:261 #, php-format msgid "%s is sharing with you" msgstr "%s делится с Вами" -#: src/Module/Contact/Profile.php:291 +#: src/Module/Contact/Profile.php:277 msgid "Private communications are not available for this contact." msgstr "Приватные коммуникации недоступны для этого контакта." -#: src/Module/Contact/Profile.php:301 +#: src/Module/Contact/Profile.php:287 msgid "This contact is on a server you ignored." msgstr "Этот контакт на игнорируемом вами сервере." -#: src/Module/Contact/Profile.php:304 +#: src/Module/Contact/Profile.php:290 msgid "Never" msgstr "Никогда" -#: src/Module/Contact/Profile.php:307 +#: src/Module/Contact/Profile.php:293 msgid "(Update was not successful)" msgstr "(Обновление не удалось)" -#: src/Module/Contact/Profile.php:307 +#: src/Module/Contact/Profile.php:293 msgid "(Update was successful)" msgstr "(Обновление было успешно)" -#: src/Module/Contact/Profile.php:309 src/Module/Contact/Profile.php:503 +#: src/Module/Contact/Profile.php:295 src/Module/Contact/Profile.php:489 msgid "Suggest friends" msgstr "Предложить друзей" -#: src/Module/Contact/Profile.php:313 +#: src/Module/Contact/Profile.php:299 #, php-format msgid "Network type: %s" msgstr "Сеть: %s" -#: src/Module/Contact/Profile.php:318 +#: src/Module/Contact/Profile.php:304 msgid "Communications lost with this contact!" msgstr "Связь с контактом утеряна!" -#: src/Module/Contact/Profile.php:324 +#: src/Module/Contact/Profile.php:310 msgid "Fetch further information for feeds" msgstr "Получить подробную информацию о фидах" -#: src/Module/Contact/Profile.php:326 +#: src/Module/Contact/Profile.php:312 msgid "" "Fetch information like preview pictures, title and teaser from the feed " "item. You can activate this if the feed doesn't contain much text. Keywords " "are taken from the meta header in the feed item and are posted as hash tags." msgstr "Извлекать картинки предпросмотра, заголовок и вступление из записи ленты. Вы можете включить эту опцию, если лента не содержит много текста. Ключевые слова берутся из метаданных записи и публикуются как теги." -#: src/Module/Contact/Profile.php:329 +#: src/Module/Contact/Profile.php:315 msgid "Fetch information" msgstr "Получить информацию" -#: src/Module/Contact/Profile.php:330 +#: src/Module/Contact/Profile.php:316 msgid "Fetch keywords" msgstr "Получить ключевые слова" -#: src/Module/Contact/Profile.php:331 +#: src/Module/Contact/Profile.php:317 msgid "Fetch information and keywords" msgstr "Получить информацию и ключевые слова" -#: src/Module/Contact/Profile.php:341 src/Module/Contact/Profile.php:346 -#: src/Module/Contact/Profile.php:351 src/Module/Contact/Profile.php:357 +#: src/Module/Contact/Profile.php:327 src/Module/Contact/Profile.php:332 +#: src/Module/Contact/Profile.php:337 src/Module/Contact/Profile.php:343 msgid "No mirroring" msgstr "Не зеркалировать" -#: src/Module/Contact/Profile.php:342 src/Module/Contact/Profile.php:352 -#: src/Module/Contact/Profile.php:358 +#: src/Module/Contact/Profile.php:328 src/Module/Contact/Profile.php:338 +#: src/Module/Contact/Profile.php:344 msgid "Mirror as my own posting" msgstr "Зеркалировать как мои сообщения" -#: src/Module/Contact/Profile.php:347 src/Module/Contact/Profile.php:353 +#: src/Module/Contact/Profile.php:333 src/Module/Contact/Profile.php:339 msgid "Native reshare" msgstr "Обычный репост" -#: src/Module/Contact/Profile.php:373 +#: src/Module/Contact/Profile.php:359 msgid "Contact Information / Notes" msgstr "Информация о контакте / Заметки" -#: src/Module/Contact/Profile.php:374 +#: src/Module/Contact/Profile.php:360 msgid "Contact Settings" msgstr "Настройки контакта" -#: src/Module/Contact/Profile.php:382 +#: src/Module/Contact/Profile.php:368 msgid "Contact" msgstr "Контакт" -#: src/Module/Contact/Profile.php:386 +#: src/Module/Contact/Profile.php:372 msgid "Their personal note" msgstr "Персональная заметка" -#: src/Module/Contact/Profile.php:388 +#: src/Module/Contact/Profile.php:374 msgid "Edit contact notes" msgstr "Редактировать заметки контакта" -#: src/Module/Contact/Profile.php:392 +#: src/Module/Contact/Profile.php:378 msgid "Block/Unblock contact" msgstr "Блокировать / Разблокировать контакт" -#: src/Module/Contact/Profile.php:393 -#: src/Module/Moderation/Report/Create.php:293 +#: src/Module/Contact/Profile.php:379 +#: src/Module/Moderation/Report/Create.php:279 msgid "Ignore contact" msgstr "Игнорировать контакт" -#: src/Module/Contact/Profile.php:394 +#: src/Module/Contact/Profile.php:380 msgid "View conversations" msgstr "Просмотр бесед" -#: src/Module/Contact/Profile.php:399 +#: src/Module/Contact/Profile.php:385 msgid "Last update:" msgstr "Последнее обновление: " -#: src/Module/Contact/Profile.php:401 +#: src/Module/Contact/Profile.php:387 msgid "Update public posts" msgstr "Обновить публичные сообщения" -#: src/Module/Contact/Profile.php:403 src/Module/Contact/Profile.php:513 +#: src/Module/Contact/Profile.php:389 src/Module/Contact/Profile.php:499 msgid "Update now" msgstr "Обновить сейчас" -#: src/Module/Contact/Profile.php:405 +#: src/Module/Contact/Profile.php:391 msgid "Awaiting connection acknowledge" msgstr "Ожидаем подтверждения соединения" -#: src/Module/Contact/Profile.php:406 +#: src/Module/Contact/Profile.php:392 msgid "Currently blocked" msgstr "В настоящее время заблокирован" -#: src/Module/Contact/Profile.php:407 +#: src/Module/Contact/Profile.php:393 msgid "Currently ignored" msgstr "В настоящее время игнорируется" -#: src/Module/Contact/Profile.php:408 +#: src/Module/Contact/Profile.php:394 msgid "Currently collapsed" msgstr "В настоящее время сворачивается" -#: src/Module/Contact/Profile.php:409 +#: src/Module/Contact/Profile.php:395 msgid "Currently archived" msgstr "В данный момент архивирован" -#: src/Module/Contact/Profile.php:412 +#: src/Module/Contact/Profile.php:398 msgid "Manage remote servers" msgstr "Управлять удалёнными серверами" -#: src/Module/Contact/Profile.php:414 -#: src/Module/Notifications/Introductions.php:198 +#: src/Module/Contact/Profile.php:400 +#: src/Module/Notifications/Introductions.php:184 msgid "Hide this contact from others" msgstr "Скрыть этот контакт от других" -#: src/Module/Contact/Profile.php:414 +#: src/Module/Contact/Profile.php:400 msgid "" "Replies/likes to your public posts may still be visible" msgstr "Ответы/лайки ваших публичных сообщений будут видимы." -#: src/Module/Contact/Profile.php:415 +#: src/Module/Contact/Profile.php:401 msgid "Notification for new posts" msgstr "Уведомление о новых записях" -#: src/Module/Contact/Profile.php:415 +#: src/Module/Contact/Profile.php:401 msgid "Send a notification of every new post of this contact" msgstr "Отправлять уведомление о каждом новой записи контакта" -#: src/Module/Contact/Profile.php:417 +#: src/Module/Contact/Profile.php:403 msgid "Keyword Deny List" msgstr "Запретный список слов" -#: src/Module/Contact/Profile.php:417 +#: src/Module/Contact/Profile.php:403 msgid "" "Comma separated list of keywords that should not be converted to hashtags, " "when \"Fetch information and keywords\" is selected" msgstr "Список слов через запятую, которые не должны конвертироваться в хэштеги, когда включено \"Получать информацию и хэштеги\"" -#: src/Module/Contact/Profile.php:435 -#: src/Module/Settings/TwoFactor/Index.php:160 +#: src/Module/Contact/Profile.php:421 +#: src/Module/Settings/TwoFactor/Index.php:146 msgid "Actions" msgstr "Действия" -#: src/Module/Contact/Profile.php:437 -#: src/Module/Settings/TwoFactor/Index.php:140 view/theme/frio/theme.php:232 +#: src/Module/Contact/Profile.php:423 +#: src/Module/Settings/TwoFactor/Index.php:126 view/theme/frio/theme.php:220 msgid "Status" msgstr "Записи" -#: src/Module/Contact/Profile.php:443 +#: src/Module/Contact/Profile.php:429 msgid "Mirror postings from this contact" msgstr "Зекралировать сообщения от этого контакта" -#: src/Module/Contact/Profile.php:445 +#: src/Module/Contact/Profile.php:431 msgid "" "Mark this contact as remote_self, this will cause friendica to repost new " "entries from this contact." msgstr "Пометить этот контакт как remote_self, что заставит Friendica отправлять сообщения от этого контакта." -#: src/Module/Contact/Profile.php:448 +#: src/Module/Contact/Profile.php:434 msgid "Channel Settings" msgstr "Настройки каналов" -#: src/Module/Contact/Profile.php:449 +#: src/Module/Contact/Profile.php:435 msgid "Frequency of this contact in relevant channels" msgstr "Частота появления этого контакта в каналах" -#: src/Module/Contact/Profile.php:450 +#: src/Module/Contact/Profile.php:436 msgid "" "Depending on the type of the channel not all posts from this contact are " "displayed. By default, posts need to have a minimum amount of interactions " @@ -7091,201 +7086,201 @@ msgid "" "block or hide the contact completely." msgstr "В зависимости от типа канала, не все записи этого контакта могут отображаться в них. По-умолчанию записи должны получить некоторое число взаимодействий (комментарии, лайки), чтобы попасть в каналы. Так же некоторые контакты могут заполнять каналы слишком частыми записями или вы можете не хотеть видеть их в каналах вообще, но не готовы их игнорировать или блокировать полностью." -#: src/Module/Contact/Profile.php:451 +#: src/Module/Contact/Profile.php:437 msgid "Default frequency" msgstr "Обычная частота" -#: src/Module/Contact/Profile.php:451 +#: src/Module/Contact/Profile.php:437 msgid "" "Posts by this contact are displayed in the \"for you\" channel if you " "interact often with this contact or if a post reached some level of " "interaction." msgstr "Записи этого контакта будут показаны в канале \"Для Вас\", если вы часто взаимодействуете с ним, либо запись этого контакта получит какую-то активность." -#: src/Module/Contact/Profile.php:452 +#: src/Module/Contact/Profile.php:438 msgid "Display all posts of this contact" msgstr "Показывать все" -#: src/Module/Contact/Profile.php:452 +#: src/Module/Contact/Profile.php:438 msgid "All posts from this contact will appear on the \"for you\" channel" msgstr "Все записи от этого контакта будут показаны в канале \"Для Вас\"" -#: src/Module/Contact/Profile.php:453 +#: src/Module/Contact/Profile.php:439 msgid "Display only few posts" msgstr "Показывать немного" -#: src/Module/Contact/Profile.php:453 +#: src/Module/Contact/Profile.php:439 msgid "" "When a contact creates a lot of posts in a short period, this setting " "reduces the number of displayed posts in every channel." msgstr "Когда контакт создаёт много записей за короткий период, эта настройка сократит число отображаемых записей в каналах." -#: src/Module/Contact/Profile.php:454 +#: src/Module/Contact/Profile.php:440 msgid "Never display posts" msgstr "Не показывать" -#: src/Module/Contact/Profile.php:454 +#: src/Module/Contact/Profile.php:440 msgid "Posts from this contact will never be displayed in any channel" msgstr "Записи этого контакта никогда не будут показаны в каналах" -#: src/Module/Contact/Profile.php:455 +#: src/Module/Contact/Profile.php:441 msgid "Channel Only" msgstr "" -#: src/Module/Contact/Profile.php:455 +#: src/Module/Contact/Profile.php:441 msgid "" "If enabled, posts from this contact will only appear in channels and network" " streams in circles, but not in the general network stream." msgstr "" -#: src/Module/Contact/Profile.php:523 +#: src/Module/Contact/Profile.php:509 msgid "Refetch contact data" msgstr "Обновить данные контакта" -#: src/Module/Contact/Profile.php:534 +#: src/Module/Contact/Profile.php:520 msgid "Toggle Blocked status" msgstr "Изменить статус блокированности (заблокировать/разблокировать)" -#: src/Module/Contact/Profile.php:542 +#: src/Module/Contact/Profile.php:528 msgid "Toggle Ignored status" msgstr "Изменить статус игнорирования" -#: src/Module/Contact/Profile.php:550 +#: src/Module/Contact/Profile.php:536 msgid "Toggle Collapsed status" msgstr "Изменить статус сворачивания" -#: src/Module/Contact/Profile.php:557 src/Module/Contact/Revoke.php:103 +#: src/Module/Contact/Profile.php:543 src/Module/Contact/Revoke.php:89 msgid "Revoke Follow" msgstr "Отозвать подписку" -#: src/Module/Contact/Profile.php:559 +#: src/Module/Contact/Profile.php:545 msgid "Revoke the follow from this contact" msgstr "Отменить подписку этого контакта на вас" -#: src/Module/Contact/Redir.php:139 +#: src/Module/Contact/Redir.php:125 msgid "Bad Request." msgstr "Ошибочный запрос." -#: src/Module/Contact/Revoke.php:74 +#: src/Module/Contact/Revoke.php:60 msgid "Contact is being deleted." msgstr "Контакт удаляется." -#: src/Module/Contact/Revoke.php:88 +#: src/Module/Contact/Revoke.php:74 msgid "Follow was successfully revoked." msgstr "Подписка была успешно отозвана." -#: src/Module/Contact/Revoke.php:104 +#: src/Module/Contact/Revoke.php:90 msgid "" "Do you really want to revoke this contact's follow? This cannot be undone " "and they will have to manually follow you back again." msgstr "Вы действительно хотите отозвать подписку этого контакта на вас? Это нельзя будет отменить позже, им потребуется снова подписаться на вас." -#: src/Module/Contact/Suggestions.php:62 +#: src/Module/Contact/Suggestions.php:48 msgid "" "No suggestions available. If this is a new site, please try again in 24 " "hours." msgstr "Нет предложений. Если это новый сайт, пожалуйста, попробуйте снова через 24 часа." -#: src/Module/Contact/Unfollow.php:98 src/Module/Contact/Unfollow.php:167 +#: src/Module/Contact/Unfollow.php:84 src/Module/Contact/Unfollow.php:153 msgid "You aren't following this contact." msgstr "Вы не подписаны на этот контакт." -#: src/Module/Contact/Unfollow.php:103 +#: src/Module/Contact/Unfollow.php:89 msgid "Unfollowing is currently not supported by your network." msgstr "Отписка в настоящий момент не предусмотрена этой сетью" -#: src/Module/Contact/Unfollow.php:121 +#: src/Module/Contact/Unfollow.php:107 msgid "Disconnect/Unfollow" msgstr "Отсоединиться/Отписаться" -#: src/Module/Contact/Unfollow.php:175 +#: src/Module/Contact/Unfollow.php:161 msgid "Contact was successfully unfollowed" msgstr "Подписка успешно удалена" -#: src/Module/Contact/Unfollow.php:178 +#: src/Module/Contact/Unfollow.php:164 msgid "Unable to unfollow this contact, please contact your administrator" msgstr "Не получается отписаться от этого контакта, пожалуйста, свяжитесь с вашим администратором" -#: src/Module/Conversation/Channel.php:139 -#: src/Module/Conversation/Community.php:126 src/Module/Search/Index.php:152 -#: src/Module/Search/Index.php:194 +#: src/Module/Conversation/Channel.php:125 +#: src/Module/Conversation/Community.php:114 src/Module/Search/Index.php:138 +#: src/Module/Search/Index.php:180 msgid "No results." msgstr "Нет результатов." -#: src/Module/Conversation/Channel.php:177 +#: src/Module/Conversation/Channel.php:163 msgid "Channel not available." msgstr "Канал недоступен" -#: src/Module/Conversation/Community.php:92 +#: src/Module/Conversation/Community.php:80 msgid "" "This community stream shows all public posts received by this node. They may" " not reflect the opinions of this node’s users." msgstr "Эта общая лента показывает все публичные записи, которые получил этот сервер. Они могут не отражать мнений пользователей этого сервера." -#: src/Module/Conversation/Community.php:180 +#: src/Module/Conversation/Community.php:168 msgid "Community option not available." msgstr "Сообщество недоступно." -#: src/Module/Conversation/Community.php:196 +#: src/Module/Conversation/Community.php:184 msgid "Not available." msgstr "Недоступно." -#: src/Module/Conversation/Network.php:216 +#: src/Module/Conversation/Network.php:202 msgid "No such circle" msgstr "Нет такого круга" -#: src/Module/Conversation/Network.php:220 +#: src/Module/Conversation/Network.php:206 #, php-format msgid "Circle: %s" msgstr "Круг: %s" -#: src/Module/Conversation/Network.php:239 +#: src/Module/Conversation/Network.php:226 #, php-format msgid "Error %d (%s) while fetching the timeline." msgstr "" -#: src/Module/Conversation/Network.php:316 +#: src/Module/Conversation/Network.php:304 msgid "Network feed not available." msgstr "Лента недоступна" -#: src/Module/Conversation/Timeline.php:204 +#: src/Module/Conversation/Timeline.php:190 msgid "Include" msgstr "Включить" -#: src/Module/Conversation/Timeline.php:205 +#: src/Module/Conversation/Timeline.php:191 msgid "Hide" msgstr "Скрыть" -#: src/Module/Credits.php:44 +#: src/Module/Credits.php:30 msgid "Credits" msgstr "Признательность" -#: src/Module/Credits.php:45 +#: src/Module/Credits.php:31 msgid "" "Friendica is a community project, that would not be possible without the " "help of many people. Here is a list of those who have contributed to the " "code or the translation of Friendica. Thank you all!" msgstr "Friendica это проект сообщества, который был бы невозможен без помощи многих людей. Вот лист тех, кто писал код или помогал с переводом. Спасибо вам всем!" -#: src/Module/Debug/ActivityPubConversion.php:59 +#: src/Module/Debug/ActivityPubConversion.php:45 msgid "Formatted" msgstr "" -#: src/Module/Debug/ActivityPubConversion.php:71 +#: src/Module/Debug/ActivityPubConversion.php:57 msgid "Activity" msgstr "" -#: src/Module/Debug/ActivityPubConversion.php:123 +#: src/Module/Debug/ActivityPubConversion.php:109 msgid "Object data" msgstr "" -#: src/Module/Debug/ActivityPubConversion.php:130 +#: src/Module/Debug/ActivityPubConversion.php:116 msgid "Result Item" msgstr "" -#: src/Module/Debug/ActivityPubConversion.php:135 -#: src/Module/Debug/Babel.php:300 src/Module/Moderation/Item/Source.php:93 -#: src/Module/Security/TwoFactor/Verify.php:98 +#: src/Module/Debug/ActivityPubConversion.php:121 +#: src/Module/Debug/Babel.php:286 src/Module/Moderation/Item/Source.php:79 +#: src/Module/Security/TwoFactor/Verify.php:84 msgid "Error" msgid_plural "Errors" msgstr[0] "Ошибка" @@ -7293,506 +7288,506 @@ msgstr[1] "Ошибки" msgstr[2] "Ошибки" msgstr[3] "Ошибки" -#: src/Module/Debug/ActivityPubConversion.php:144 +#: src/Module/Debug/ActivityPubConversion.php:130 msgid "Source activity" msgstr "" -#: src/Module/Debug/Babel.php:58 +#: src/Module/Debug/Babel.php:44 msgid "Source input" msgstr "" -#: src/Module/Debug/Babel.php:64 +#: src/Module/Debug/Babel.php:50 msgid "BBCode::toPlaintext" msgstr "" -#: src/Module/Debug/Babel.php:70 +#: src/Module/Debug/Babel.php:56 msgid "BBCode::convert (raw HTML)" msgstr "" -#: src/Module/Debug/Babel.php:75 +#: src/Module/Debug/Babel.php:61 msgid "BBCode::convert (hex)" msgstr "" -#: src/Module/Debug/Babel.php:80 +#: src/Module/Debug/Babel.php:66 msgid "BBCode::convert" msgstr "" -#: src/Module/Debug/Babel.php:86 +#: src/Module/Debug/Babel.php:72 msgid "BBCode::convert => HTML::toBBCode" msgstr "" -#: src/Module/Debug/Babel.php:92 +#: src/Module/Debug/Babel.php:78 msgid "BBCode::toMarkdown" msgstr "" -#: src/Module/Debug/Babel.php:98 +#: src/Module/Debug/Babel.php:84 msgid "BBCode::toMarkdown => Markdown::convert (raw HTML)" msgstr "" -#: src/Module/Debug/Babel.php:102 +#: src/Module/Debug/Babel.php:88 msgid "BBCode::toMarkdown => Markdown::convert" msgstr "" -#: src/Module/Debug/Babel.php:108 +#: src/Module/Debug/Babel.php:94 msgid "BBCode::toMarkdown => Markdown::toBBCode" msgstr "" -#: src/Module/Debug/Babel.php:114 +#: src/Module/Debug/Babel.php:100 msgid "BBCode::toMarkdown => Markdown::convert => HTML::toBBCode" msgstr "" -#: src/Module/Debug/Babel.php:122 +#: src/Module/Debug/Babel.php:108 msgid "Item Body" msgstr "" -#: src/Module/Debug/Babel.php:126 +#: src/Module/Debug/Babel.php:112 msgid "Item Tags" msgstr "" -#: src/Module/Debug/Babel.php:132 +#: src/Module/Debug/Babel.php:118 msgid "PageInfo::appendToBody" msgstr "" -#: src/Module/Debug/Babel.php:137 +#: src/Module/Debug/Babel.php:123 msgid "PageInfo::appendToBody => BBCode::convert (raw HTML)" msgstr "" -#: src/Module/Debug/Babel.php:141 +#: src/Module/Debug/Babel.php:127 msgid "PageInfo::appendToBody => BBCode::convert" msgstr "" -#: src/Module/Debug/Babel.php:148 +#: src/Module/Debug/Babel.php:134 msgid "Source input (Diaspora format)" msgstr "" -#: src/Module/Debug/Babel.php:157 +#: src/Module/Debug/Babel.php:143 msgid "Source input (Markdown)" msgstr "" -#: src/Module/Debug/Babel.php:163 +#: src/Module/Debug/Babel.php:149 msgid "Markdown::convert (raw HTML)" msgstr "" -#: src/Module/Debug/Babel.php:168 +#: src/Module/Debug/Babel.php:154 msgid "Markdown::convert" msgstr "" -#: src/Module/Debug/Babel.php:174 +#: src/Module/Debug/Babel.php:160 msgid "Markdown::toBBCode" msgstr "" -#: src/Module/Debug/Babel.php:181 +#: src/Module/Debug/Babel.php:167 msgid "Raw HTML input" msgstr "" -#: src/Module/Debug/Babel.php:186 +#: src/Module/Debug/Babel.php:172 msgid "HTML Input" msgstr "" -#: src/Module/Debug/Babel.php:193 +#: src/Module/Debug/Babel.php:179 msgid "HTML Purified (raw)" msgstr "" -#: src/Module/Debug/Babel.php:198 +#: src/Module/Debug/Babel.php:184 msgid "HTML Purified (hex)" msgstr "" -#: src/Module/Debug/Babel.php:203 +#: src/Module/Debug/Babel.php:189 msgid "HTML Purified" msgstr "" -#: src/Module/Debug/Babel.php:209 +#: src/Module/Debug/Babel.php:195 msgid "HTML::toBBCode" msgstr "" -#: src/Module/Debug/Babel.php:215 +#: src/Module/Debug/Babel.php:201 msgid "HTML::toBBCode => BBCode::convert" msgstr "" -#: src/Module/Debug/Babel.php:220 +#: src/Module/Debug/Babel.php:206 msgid "HTML::toBBCode => BBCode::convert (raw HTML)" msgstr "" -#: src/Module/Debug/Babel.php:226 +#: src/Module/Debug/Babel.php:212 msgid "HTML::toBBCode => BBCode::toPlaintext" msgstr "" -#: src/Module/Debug/Babel.php:232 +#: src/Module/Debug/Babel.php:218 msgid "HTML::toMarkdown" msgstr "" -#: src/Module/Debug/Babel.php:238 +#: src/Module/Debug/Babel.php:224 msgid "HTML::toPlaintext" msgstr "" -#: src/Module/Debug/Babel.php:244 +#: src/Module/Debug/Babel.php:230 msgid "HTML::toPlaintext (compact)" msgstr "" -#: src/Module/Debug/Babel.php:262 +#: src/Module/Debug/Babel.php:248 msgid "Decoded post" msgstr "Декодированная запись" -#: src/Module/Debug/Babel.php:283 +#: src/Module/Debug/Babel.php:269 msgid "Post array before expand entities" msgstr "Массив записи до развертывания объектов" -#: src/Module/Debug/Babel.php:290 +#: src/Module/Debug/Babel.php:276 msgid "Post converted" msgstr "Запись преобразована" -#: src/Module/Debug/Babel.php:295 +#: src/Module/Debug/Babel.php:281 msgid "Converted body" msgstr "" -#: src/Module/Debug/Babel.php:301 +#: src/Module/Debug/Babel.php:287 msgid "Twitter addon is absent from the addon/ folder." msgstr "" -#: src/Module/Debug/Babel.php:311 +#: src/Module/Debug/Babel.php:297 msgid "Babel Diagnostic" msgstr "" -#: src/Module/Debug/Babel.php:313 +#: src/Module/Debug/Babel.php:299 msgid "Source text" msgstr "" -#: src/Module/Debug/Babel.php:314 +#: src/Module/Debug/Babel.php:300 msgid "BBCode" msgstr "" -#: src/Module/Debug/Babel.php:316 +#: src/Module/Debug/Babel.php:302 msgid "Markdown" msgstr "" -#: src/Module/Debug/Babel.php:317 +#: src/Module/Debug/Babel.php:303 msgid "HTML" msgstr "" -#: src/Module/Debug/Babel.php:319 +#: src/Module/Debug/Babel.php:305 msgid "Twitter Source / Tweet URL (requires API key)" msgstr "" -#: src/Module/Debug/Feed.php:53 src/Module/Filer/SaveTag.php:47 -#: src/Module/Settings/Profile/Index.php:180 +#: src/Module/Debug/Feed.php:39 src/Module/Filer/SaveTag.php:33 +#: src/Module/Settings/Profile/Index.php:166 msgid "You must be logged in to use this module" msgstr "Вы должны быть залогинены для использования этого модуля" -#: src/Module/Debug/Feed.php:78 +#: src/Module/Debug/Feed.php:64 msgid "Source URL" msgstr "Исходный URL" -#: src/Module/Debug/Localtime.php:49 +#: src/Module/Debug/Localtime.php:35 msgid "Time Conversion" msgstr "История общения" -#: src/Module/Debug/Localtime.php:50 +#: src/Module/Debug/Localtime.php:36 msgid "" "Friendica provides this service for sharing events with other networks and " "friends in unknown timezones." msgstr "Friendica предоставляет этот сервис для обмена событиями с другими сетями и друзьями, находящимися в неопределённых часовых поясах." -#: src/Module/Debug/Localtime.php:51 +#: src/Module/Debug/Localtime.php:37 #, php-format msgid "UTC time: %s" msgstr "UTC время: %s" -#: src/Module/Debug/Localtime.php:54 +#: src/Module/Debug/Localtime.php:40 #, php-format msgid "Current timezone: %s" msgstr "Ваш часовой пояс: %s" -#: src/Module/Debug/Localtime.php:58 +#: src/Module/Debug/Localtime.php:44 #, php-format msgid "Converted localtime: %s" msgstr "Ваше изменённое время: %s" -#: src/Module/Debug/Localtime.php:62 +#: src/Module/Debug/Localtime.php:48 msgid "Please select your timezone:" msgstr "Выберите пожалуйста ваш часовой пояс:" -#: src/Module/Debug/Probe.php:38 src/Module/Debug/WebFinger.php:37 +#: src/Module/Debug/Probe.php:24 src/Module/Debug/WebFinger.php:23 msgid "Only logged in users are permitted to perform a probing." msgstr "Для использования этой функции нужно войти." -#: src/Module/Debug/Probe.php:52 +#: src/Module/Debug/Probe.php:38 msgid "Probe Diagnostic" msgstr "" -#: src/Module/Debug/Probe.php:53 +#: src/Module/Debug/Probe.php:39 msgid "Output" msgstr "" -#: src/Module/Debug/Probe.php:56 +#: src/Module/Debug/Probe.php:42 msgid "Lookup address" msgstr "" -#: src/Module/Debug/WebFinger.php:50 +#: src/Module/Debug/WebFinger.php:36 msgid "Webfinger Diagnostic" msgstr "" -#: src/Module/Debug/WebFinger.php:52 +#: src/Module/Debug/WebFinger.php:38 msgid "Lookup address:" msgstr "" -#: src/Module/Directory.php:75 +#: src/Module/Directory.php:61 msgid "No entries (some entries may be hidden)." msgstr "Нет записей (некоторые записи могут быть скрыты)." -#: src/Module/Directory.php:91 +#: src/Module/Directory.php:77 msgid "Find on this site" msgstr "Найти на этом сайте" -#: src/Module/Directory.php:93 +#: src/Module/Directory.php:79 msgid "Results for:" msgstr "Результаты для:" -#: src/Module/Directory.php:95 +#: src/Module/Directory.php:81 msgid "Site Directory" msgstr "Каталог сайта" -#: src/Module/Filer/RemoveTag.php:105 +#: src/Module/Filer/RemoveTag.php:91 msgid "Item was not deleted" msgstr "Запись не была удалена" -#: src/Module/Filer/RemoveTag.php:115 +#: src/Module/Filer/RemoveTag.php:101 msgid "Item was not removed" msgstr "Запись не была удалена" -#: src/Module/Filer/SaveTag.php:73 +#: src/Module/Filer/SaveTag.php:59 msgid "- select -" msgstr "- выбрать -" -#: src/Module/FriendSuggest.php:82 +#: src/Module/FriendSuggest.php:68 msgid "Suggested contact not found." msgstr "Рекомендованный контакт не найден." -#: src/Module/FriendSuggest.php:100 +#: src/Module/FriendSuggest.php:86 msgid "Friend suggestion sent." msgstr "Приглашение в друзья отправлено." -#: src/Module/FriendSuggest.php:137 +#: src/Module/FriendSuggest.php:123 msgid "Suggest Friends" msgstr "Предложить друзей" -#: src/Module/FriendSuggest.php:140 +#: src/Module/FriendSuggest.php:126 #, php-format msgid "Suggest a friend for %s" msgstr "Предложить друга для %s." -#: src/Module/Friendica.php:81 +#: src/Module/Friendica.php:67 msgid "Installed addons/apps:" msgstr "Установленные дополнения:" -#: src/Module/Friendica.php:86 +#: src/Module/Friendica.php:72 msgid "No installed addons/apps" msgstr "Нет установленных дополнений" -#: src/Module/Friendica.php:91 +#: src/Module/Friendica.php:77 #, php-format msgid "Read about the Terms of Service of this node." msgstr "Ознакомьтесь с Условиями Предоставления Услуг этого узла." -#: src/Module/Friendica.php:98 +#: src/Module/Friendica.php:84 msgid "On this server the following remote servers are blocked." msgstr "На этом сервере заблокированы следующие удалённые серверы." -#: src/Module/Friendica.php:101 -#: src/Module/Moderation/Blocklist/Server/Index.php:87 -#: src/Module/Moderation/Blocklist/Server/Index.php:111 -#: src/Module/Settings/Channels.php:232 +#: src/Module/Friendica.php:87 +#: src/Module/Moderation/Blocklist/Server/Index.php:73 +#: src/Module/Moderation/Blocklist/Server/Index.php:97 +#: src/Module/Settings/Channels.php:218 msgid "Reason for the block" msgstr "Причина блокировки" -#: src/Module/Friendica.php:103 +#: src/Module/Friendica.php:89 msgid "Download this list in CSV format" msgstr "Скачать этот список в формате CSV" -#: src/Module/Friendica.php:117 +#: src/Module/Friendica.php:103 #, php-format msgid "" "This is Friendica, version %s that is running at the web location %s. The " "database version is %s, the post update version is %s." msgstr "Это сервер Friendica, версия %s, работающий по адресу %s. Версия базы данных %s, версия post update %s." -#: src/Module/Friendica.php:122 +#: src/Module/Friendica.php:108 msgid "" "Please visit Friendi.ca to learn more " "about the Friendica project." msgstr "Посетите Friendi.ca, чтобы узнать больше о проекте Friendica." -#: src/Module/Friendica.php:123 +#: src/Module/Friendica.php:109 msgid "Bug reports and issues: please visit" msgstr "Отчет об ошибках и проблемах: пожалуйста, посетите" -#: src/Module/Friendica.php:123 +#: src/Module/Friendica.php:109 msgid "the bugtracker at github" msgstr "багтрекер на github" -#: src/Module/Friendica.php:124 +#: src/Module/Friendica.php:110 msgid "Suggestions, praise, etc. - please email \"info\" at \"friendi - dot - ca" msgstr "Предложения, отзывы, похвала - пишите нам на info[собака]friendi[точка]ca" -#: src/Module/HCard.php:45 +#: src/Module/HCard.php:31 msgid "No profile" msgstr "Нет профиля" -#: src/Module/HTTPException/MethodNotAllowed.php:31 +#: src/Module/HTTPException/MethodNotAllowed.php:17 msgid "Method Not Allowed." msgstr "Метод не разрешён" -#: src/Module/Help.php:60 +#: src/Module/Help.php:46 msgid "Help:" msgstr "Помощь:" -#: src/Module/Home.php:66 +#: src/Module/Home.php:52 #, php-format msgid "Welcome to %s" msgstr "Добро пожаловать на %s!" -#: src/Module/Install.php:189 +#: src/Module/Install.php:175 msgid "Friendica Communications Server - Setup" msgstr "Социальная сеть Friendica - Установка" -#: src/Module/Install.php:200 +#: src/Module/Install.php:186 msgid "System check" msgstr "Проверить систему" -#: src/Module/Install.php:202 src/Module/Install.php:247 -#: src/Module/Install.php:326 +#: src/Module/Install.php:188 src/Module/Install.php:233 +#: src/Module/Install.php:312 msgid "Requirement not satisfied" msgstr "" -#: src/Module/Install.php:203 +#: src/Module/Install.php:189 msgid "Optional requirement not satisfied" msgstr "" -#: src/Module/Install.php:204 +#: src/Module/Install.php:190 msgid "OK" msgstr "ОК" -#: src/Module/Install.php:208 +#: src/Module/Install.php:194 msgid "Next" msgstr "Далее" -#: src/Module/Install.php:209 +#: src/Module/Install.php:195 msgid "Check again" msgstr "Проверить еще раз" -#: src/Module/Install.php:222 +#: src/Module/Install.php:208 msgid "Base settings" msgstr "Основные настройки" -#: src/Module/Install.php:224 +#: src/Module/Install.php:210 msgid "Base path to installation" msgstr "Путь для установки" -#: src/Module/Install.php:226 +#: src/Module/Install.php:212 msgid "" "If the system cannot detect the correct path to your installation, enter the" " correct path here. This setting should only be set if you are using a " "restricted system and symbolic links to your webroot." msgstr "Если система не смогла определить правильный путь к вашей установке, введите правильный путь здесь. Эта настройка должна использоваться только, если вы используете систему с ограниченным доступом с символьными ссылками в ваш веб-каталог." -#: src/Module/Install.php:229 +#: src/Module/Install.php:215 msgid "The Friendica system URL" msgstr "" -#: src/Module/Install.php:231 +#: src/Module/Install.php:217 msgid "" "Overwrite this field in case the system URL determination isn't right, " "otherwise leave it as is." msgstr "" -#: src/Module/Install.php:242 +#: src/Module/Install.php:228 msgid "Database connection" msgstr "Подключение к базе данных" -#: src/Module/Install.php:243 +#: src/Module/Install.php:229 msgid "" "In order to install Friendica we need to know how to connect to your " "database." msgstr "Для того, чтобы установить Friendica, мы должны знать, как подключиться к базе данных." -#: src/Module/Install.php:244 +#: src/Module/Install.php:230 msgid "" "Please contact your hosting provider or site administrator if you have " "questions about these settings." msgstr "Пожалуйста, свяжитесь с вашим хостинг-провайдером или администратором сайта, если у вас есть вопросы об этих параметрах." -#: src/Module/Install.php:245 +#: src/Module/Install.php:231 msgid "" "The database you specify below should already exist. If it does not, please " "create it before continuing." msgstr "Базы данных, указанная ниже, должна уже существовать. Если этого нет, пожалуйста, создайте ее перед продолжением." -#: src/Module/Install.php:252 +#: src/Module/Install.php:238 msgid "Database Server Name" msgstr "Имя сервера базы данных" -#: src/Module/Install.php:257 +#: src/Module/Install.php:243 msgid "Database Login Name" msgstr "Логин базы данных" -#: src/Module/Install.php:263 +#: src/Module/Install.php:249 msgid "Database Login Password" msgstr "Пароль базы данных" -#: src/Module/Install.php:265 +#: src/Module/Install.php:251 msgid "For security reasons the password must not be empty" msgstr "Для безопасности пароль не должен быть пустым" -#: src/Module/Install.php:268 +#: src/Module/Install.php:254 msgid "Database Name" msgstr "Имя базы данных" -#: src/Module/Install.php:272 src/Module/Install.php:300 +#: src/Module/Install.php:258 src/Module/Install.php:286 msgid "Please select a default timezone for your website" msgstr "Пожалуйста, выберите часовой пояс по умолчанию для вашего сайта" -#: src/Module/Install.php:287 +#: src/Module/Install.php:273 msgid "Site settings" msgstr "Настройки сайта" -#: src/Module/Install.php:295 +#: src/Module/Install.php:281 msgid "Site administrator email address" msgstr "Адрес электронной почты администратора сайта" -#: src/Module/Install.php:297 +#: src/Module/Install.php:283 msgid "" "Your account email address must match this in order to use the web admin " "panel." msgstr "Ваш адрес электронной почты аккаунта должен соответствовать этому, чтобы использовать веб-панель администратора." -#: src/Module/Install.php:304 +#: src/Module/Install.php:290 msgid "System Language:" msgstr "Язык системы:" -#: src/Module/Install.php:306 +#: src/Module/Install.php:292 msgid "" "Set the default language for your Friendica installation interface and to " "send emails." msgstr "Язык по-умолчанию для интерфейса Friendica и для отправки писем." -#: src/Module/Install.php:318 +#: src/Module/Install.php:304 msgid "Your Friendica site database has been installed." msgstr "База данных сайта установлена." -#: src/Module/Install.php:328 +#: src/Module/Install.php:314 msgid "Installation finished" msgstr "Установка завершена" -#: src/Module/Install.php:348 +#: src/Module/Install.php:334 msgid "

What next

" msgstr "

Что далее

" -#: src/Module/Install.php:349 +#: src/Module/Install.php:335 msgid "" "IMPORTANT: You will need to [manually] setup a scheduled task for the " "worker." msgstr "ВАЖНО: Вам нужно будет [вручную] настроить фоновое задание в планировщике." -#: src/Module/Install.php:352 +#: src/Module/Install.php:338 #, php-format msgid "" "Go to your new Friendica node registration page " @@ -7800,29 +7795,29 @@ msgid "" " administrator email. This will allow you to enter the site admin panel." msgstr "Зайдите на страницу регистрации вашего нового сервера Friendica и зарегистрируйтесь как новый пользователь. Обратите внимание, что нужно использовать тот же адрес почты, какой вы указали в настройках администратора. Это позволит вам зайти в панель администратора." -#: src/Module/Invite.php:57 +#: src/Module/Invite.php:43 msgid "Total invitation limit exceeded." msgstr "Превышен общий лимит приглашений." -#: src/Module/Invite.php:82 +#: src/Module/Invite.php:68 #, php-format msgid "%s : Not a valid email address." msgstr "%s: Неверный адрес электронной почты." -#: src/Module/Invite.php:108 +#: src/Module/Invite.php:94 msgid "Please join us on Friendica" msgstr "Пожалуйста, присоединяйтесь к нам на Friendica" -#: src/Module/Invite.php:117 +#: src/Module/Invite.php:103 msgid "Invitation limit exceeded. Please contact your site administrator." msgstr "Лимит приглашений превышен. Пожалуйста, свяжитесь с администратором сайта." -#: src/Module/Invite.php:121 +#: src/Module/Invite.php:107 #, php-format msgid "%s : Message delivery failed." msgstr "%s: Доставка сообщения не удалась." -#: src/Module/Invite.php:125 +#: src/Module/Invite.php:111 #, php-format msgid "%d message sent." msgid_plural "%d messages sent." @@ -7831,11 +7826,11 @@ msgstr[1] "%d сообщений отправлено." msgstr[2] "%d сообщений отправлено." msgstr[3] "%d сообщений отправлено." -#: src/Module/Invite.php:143 +#: src/Module/Invite.php:129 msgid "You have no more invitations available" msgstr "У вас нет больше приглашений" -#: src/Module/Invite.php:150 +#: src/Module/Invite.php:136 #, php-format msgid "" "Visit %s for a list of public sites that you can join. Friendica members on " @@ -7843,14 +7838,14 @@ msgid "" " other social networks." msgstr "Посетите %s со списком общедоступных сайтов, к которым вы можете присоединиться. Все участники Friendica на других сайтах могут соединиться друг с другом, а также с участниками многих других социальных сетей." -#: src/Module/Invite.php:152 +#: src/Module/Invite.php:138 #, php-format msgid "" "To accept this invitation, please visit and register at %s or any other " "public Friendica website." msgstr "Для одобрения этого приглашения, пожалуйста, посетите и зарегистрируйтесь на %s ,или любом другом публичном сервере Friendica" -#: src/Module/Invite.php:153 +#: src/Module/Invite.php:139 #, php-format msgid "" "Friendica sites all inter-connect to create a huge privacy-enhanced social " @@ -7859,236 +7854,236 @@ msgid "" "sites you can join." msgstr "Сайты Friendica, подключившись между собой, могут создать сеть с повышенной безопасностью, которая принадлежит и управляется её членами. Они также могут подключаться ко многим традиционным социальным сетям. См. %s со списком альтернативных сайтов Friendica, к которым вы можете присоединиться." -#: src/Module/Invite.php:157 +#: src/Module/Invite.php:143 msgid "" "Our apologies. This system is not currently configured to connect with other" " public sites or invite members." msgstr "Извините. Эта система в настоящее время не сконфигурирована для соединения с другими общественными сайтами и для приглашения участников." -#: src/Module/Invite.php:160 +#: src/Module/Invite.php:146 msgid "" "Friendica sites all inter-connect to create a huge privacy-enhanced social " "web that is owned and controlled by its members. They can also connect with " "many traditional social networks." msgstr "Серверы Френдики взаимосвязаны друг с другом и образуют огромную социальную сеть, которой владеют все её члены. Так же они могут соединяться со многими традиционными социальными сетями." -#: src/Module/Invite.php:159 +#: src/Module/Invite.php:145 #, php-format msgid "To accept this invitation, please visit and register at %s." msgstr "Чтобы принять это приглашение, пожалуйста зайдите на %s и зарегистрируйтесь." -#: src/Module/Invite.php:167 +#: src/Module/Invite.php:153 msgid "Send invitations" msgstr "Отправить приглашения" -#: src/Module/Invite.php:168 +#: src/Module/Invite.php:154 msgid "Enter email addresses, one per line:" msgstr "Введите адреса электронной почты, по одному в строке:" -#: src/Module/Invite.php:172 +#: src/Module/Invite.php:158 msgid "" "You are cordially invited to join me and other close friends on Friendica - " "and help us to create a better social web." msgstr "Приглашаем Вас присоединиться ко мне и другим близким друзьям на Friendica - помочь нам создать лучшую социальную сеть." -#: src/Module/Invite.php:174 +#: src/Module/Invite.php:160 msgid "You will need to supply this invitation code: $invite_code" msgstr "Вам нужно будет предоставить этот код приглашения: $invite_code" -#: src/Module/Invite.php:174 +#: src/Module/Invite.php:160 msgid "" "Once you have registered, please connect with me via my profile page at:" msgstr "После того как вы зарегистрировались, пожалуйста, свяжитесь со мной через мою страницу профиля по адресу:" -#: src/Module/Invite.php:176 +#: src/Module/Invite.php:162 msgid "" "For more information about the Friendica project and why we feel it is " "important, please visit http://friendi.ca" msgstr "Чтобы узнать больше о проекте Friendica и почему мы считаем это важным, посетите http://friendi.ca" -#: src/Module/Item/Compose.php:94 +#: src/Module/Item/Compose.php:80 msgid "Please enter a post body." msgstr "Пожалуйста, введите текст записи." -#: src/Module/Item/Compose.php:105 +#: src/Module/Item/Compose.php:91 msgid "This feature is only available with the frio theme." msgstr "Эта функция доступна только для темы frio." -#: src/Module/Item/Compose.php:129 +#: src/Module/Item/Compose.php:115 msgid "Compose new personal note" msgstr "Создать новую личную заметку" -#: src/Module/Item/Compose.php:138 +#: src/Module/Item/Compose.php:124 msgid "Compose new post" msgstr "Создать новую запись" -#: src/Module/Item/Compose.php:194 +#: src/Module/Item/Compose.php:180 msgid "Visibility" msgstr "Видимость" -#: src/Module/Item/Compose.php:210 +#: src/Module/Item/Compose.php:196 msgid "Clear the location" msgstr "Очистить локацию" -#: src/Module/Item/Compose.php:211 +#: src/Module/Item/Compose.php:197 msgid "Location services are unavailable on your device" msgstr "Геолокация на вашем устройстве недоступна" -#: src/Module/Item/Compose.php:212 +#: src/Module/Item/Compose.php:198 msgid "" "Location services are disabled. Please check the website's permissions on " "your device" msgstr "Геолокация отключена. Пожалуйста, проверьте разрешения этого сайта на вашем устройстве" -#: src/Module/Item/Compose.php:218 +#: src/Module/Item/Compose.php:204 msgid "" "You can make this page always open when you use the New Post button in the " "Theme Customization settings." msgstr "Вы можете включить открытие этой страницы по кнопке создания новой записи в настройках отображения темы." -#: src/Module/Item/Feed.php:86 +#: src/Module/Item/Feed.php:72 msgid "The feed for this item is unavailable." msgstr "Лента недоступна для этого объекта." -#: src/Module/Item/Follow.php:51 +#: src/Module/Item/Follow.php:37 msgid "Unable to follow this item." msgstr "Не получается подписаться на эту запись." -#: src/Module/Maintenance.php:48 src/Module/Maintenance.php:53 +#: src/Module/Maintenance.php:34 src/Module/Maintenance.php:39 msgid "System down for maintenance" msgstr "Система закрыта на техническое обслуживание" -#: src/Module/Maintenance.php:54 +#: src/Module/Maintenance.php:40 msgid "" "This Friendica node is currently in maintenance mode, either automatically " "because it is self-updating or manually by the node administrator. This " "condition should be temporary, please come back in a few minutes." msgstr "Этот сервер Friendica в настоящее время закрыт на обслуживание, либо по причине автоматического обновления, либо администратором. Обычно это временное явление, пожалуйста, попробуйте вернуться через некоторое время." -#: src/Module/Manifest.php:40 +#: src/Module/Manifest.php:26 msgid "A Decentralized Social Network" msgstr "Децентрализованная социальная сеть" -#: src/Module/Media/Attachment/Browser.php:58 -#: src/Module/Media/Photo/Browser.php:59 +#: src/Module/Media/Attachment/Browser.php:44 +#: src/Module/Media/Photo/Browser.php:45 msgid "You need to be logged in to access this page." msgstr "Вам нужно войти, чтобы увидеть эту страницу." -#: src/Module/Media/Attachment/Browser.php:74 +#: src/Module/Media/Attachment/Browser.php:60 msgid "Files" msgstr "Файлы" -#: src/Module/Media/Attachment/Browser.php:79 -#: src/Module/Media/Photo/Browser.php:90 -#: src/Module/Settings/Profile/Photo/Index.php:127 +#: src/Module/Media/Attachment/Browser.php:65 +#: src/Module/Media/Photo/Browser.php:76 +#: src/Module/Settings/Profile/Photo/Index.php:113 msgid "Upload" msgstr "Загрузить" -#: src/Module/Media/Attachment/Upload.php:97 +#: src/Module/Media/Attachment/Upload.php:83 msgid "Sorry, maybe your upload is bigger than the PHP configuration allows" msgstr "Извините, похоже что загружаемый файл превышает лимиты, разрешенные конфигурацией PHP" -#: src/Module/Media/Attachment/Upload.php:97 +#: src/Module/Media/Attachment/Upload.php:83 msgid "Or - did you try to upload an empty file?" msgstr "Или вы пытались загрузить пустой файл?" -#: src/Module/Media/Attachment/Upload.php:104 +#: src/Module/Media/Attachment/Upload.php:90 #, php-format msgid "File exceeds size limit of %s" msgstr "Файл превышает лимит размера в %s" -#: src/Module/Media/Attachment/Upload.php:114 +#: src/Module/Media/Attachment/Upload.php:100 msgid "File upload failed." msgstr "Загрузка файла не удалась." -#: src/Module/Media/Photo/Upload.php:150 src/Module/Media/Photo/Upload.php:151 -#: src/Module/Profile/Photos.php:215 -#: src/Module/Settings/Profile/Photo/Index.php:67 +#: src/Module/Media/Photo/Upload.php:136 src/Module/Media/Photo/Upload.php:137 +#: src/Module/Profile/Photos.php:201 +#: src/Module/Settings/Profile/Photo/Index.php:53 msgid "Unable to process image." msgstr "Невозможно обработать фото." -#: src/Module/Media/Photo/Upload.php:176 src/Module/Profile/Photos.php:235 -#: src/Module/Settings/Profile/Photo/Index.php:94 +#: src/Module/Media/Photo/Upload.php:162 src/Module/Profile/Photos.php:221 +#: src/Module/Settings/Profile/Photo/Index.php:80 msgid "Image upload failed." msgstr "Загрузка фото неудачная." -#: src/Module/Moderation/BaseUsers.php:72 +#: src/Module/Moderation/BaseUsers.php:59 msgid "List of all users" msgstr "Все пользователи" -#: src/Module/Moderation/BaseUsers.php:77 +#: src/Module/Moderation/BaseUsers.php:64 msgid "Active" msgstr "Активные" -#: src/Module/Moderation/BaseUsers.php:80 +#: src/Module/Moderation/BaseUsers.php:67 msgid "List of active accounts" msgstr "Список активных пользователей" -#: src/Module/Moderation/BaseUsers.php:88 +#: src/Module/Moderation/BaseUsers.php:75 msgid "List of pending registrations" msgstr "Список ожидающих регистрацию" -#: src/Module/Moderation/BaseUsers.php:96 +#: src/Module/Moderation/BaseUsers.php:83 msgid "List of blocked users" msgstr "Заблокированные пользователи" -#: src/Module/Moderation/BaseUsers.php:101 +#: src/Module/Moderation/BaseUsers.php:88 msgid "Deleted" msgstr "Удалённые" -#: src/Module/Moderation/BaseUsers.php:104 +#: src/Module/Moderation/BaseUsers.php:91 msgid "List of pending user deletions" msgstr "Список ожидающих удаления" -#: src/Module/Moderation/BaseUsers.php:119 src/Module/Settings/Account.php:487 +#: src/Module/Moderation/BaseUsers.php:108 src/Module/Settings/Account.php:473 msgid "Normal Account Page" msgstr "Стандартная страница аккаунта" -#: src/Module/Moderation/BaseUsers.php:120 src/Module/Settings/Account.php:494 +#: src/Module/Moderation/BaseUsers.php:109 src/Module/Settings/Account.php:480 msgid "Soapbox Page" msgstr "Публичная страница" -#: src/Module/Moderation/BaseUsers.php:121 src/Module/Settings/Account.php:501 +#: src/Module/Moderation/BaseUsers.php:110 src/Module/Settings/Account.php:487 msgid "Public Group" msgstr "Публичная группа" -#: src/Module/Moderation/BaseUsers.php:122 src/Module/Settings/Account.php:508 +#: src/Module/Moderation/BaseUsers.php:111 src/Module/Settings/Account.php:494 msgid "Public Group - Restricted" msgstr "Публичная группа - ограниченная" -#: src/Module/Moderation/BaseUsers.php:123 src/Module/Settings/Account.php:515 +#: src/Module/Moderation/BaseUsers.php:112 src/Module/Settings/Account.php:501 msgid "Automatic Friend Page" msgstr "\"Автоматический друг\" страница" -#: src/Module/Moderation/BaseUsers.php:124 +#: src/Module/Moderation/BaseUsers.php:113 msgid "Private Group" msgstr "Закрытая группа" -#: src/Module/Moderation/BaseUsers.php:127 -#: src/Module/Moderation/Summary.php:53 src/Module/Settings/Account.php:458 +#: src/Module/Moderation/BaseUsers.php:116 +#: src/Module/Moderation/Summary.php:39 src/Module/Settings/Account.php:444 msgid "Personal Page" msgstr "Личная страница" -#: src/Module/Moderation/BaseUsers.php:128 -#: src/Module/Moderation/Summary.php:54 src/Module/Settings/Account.php:465 +#: src/Module/Moderation/BaseUsers.php:117 +#: src/Module/Moderation/Summary.php:40 src/Module/Settings/Account.php:451 msgid "Organisation Page" msgstr "Организационная страница" -#: src/Module/Moderation/BaseUsers.php:129 -#: src/Module/Moderation/Summary.php:55 src/Module/Settings/Account.php:472 +#: src/Module/Moderation/BaseUsers.php:118 +#: src/Module/Moderation/Summary.php:41 src/Module/Settings/Account.php:458 msgid "News Page" msgstr "Новостная страница" -#: src/Module/Moderation/BaseUsers.php:130 -#: src/Module/Moderation/Summary.php:56 src/Module/Settings/Account.php:479 +#: src/Module/Moderation/BaseUsers.php:119 +#: src/Module/Moderation/Summary.php:42 src/Module/Settings/Account.php:465 msgid "Community Group" msgstr "Группа сообщества" -#: src/Module/Moderation/Blocklist/Contact.php:70 +#: src/Module/Moderation/Blocklist/Contact.php:56 msgid "You can't block a local contact, please block the user instead" msgstr "Нельзя заблокировать локальный контакт, пожалуйста заблокируйте самого пользователя." -#: src/Module/Moderation/Blocklist/Contact.php:89 +#: src/Module/Moderation/Blocklist/Contact.php:75 #, php-format msgid "%s contact unblocked" msgid_plural "%s contacts unblocked" @@ -8097,54 +8092,54 @@ msgstr[1] "%s контакта разблокированы" msgstr[2] "%s контактов разблокировано" msgstr[3] "%s контактов разблокировано" -#: src/Module/Moderation/Blocklist/Contact.php:111 +#: src/Module/Moderation/Blocklist/Contact.php:97 msgid "Remote Contact Blocklist" msgstr "Чёрный список удалённых контактов" -#: src/Module/Moderation/Blocklist/Contact.php:112 +#: src/Module/Moderation/Blocklist/Contact.php:98 msgid "" "This page allows you to prevent any message from a remote contact to reach " "your node." msgstr "На этой странице вы можете заблокировать приём вашим узлом любых записей от определённых контактов." -#: src/Module/Moderation/Blocklist/Contact.php:113 +#: src/Module/Moderation/Blocklist/Contact.php:99 msgid "Block Remote Contact" msgstr "Заблокировать удалённый контакт" -#: src/Module/Moderation/Blocklist/Contact.php:114 -#: src/Module/Moderation/Users/Active.php:135 -#: src/Module/Moderation/Users/Blocked.php:135 -#: src/Module/Moderation/Users/Index.php:149 -#: src/Module/Moderation/Users/Pending.php:98 +#: src/Module/Moderation/Blocklist/Contact.php:100 +#: src/Module/Moderation/Users/Active.php:121 +#: src/Module/Moderation/Users/Blocked.php:121 +#: src/Module/Moderation/Users/Index.php:135 +#: src/Module/Moderation/Users/Pending.php:84 msgid "select all" msgstr "выбрать все" -#: src/Module/Moderation/Blocklist/Contact.php:115 +#: src/Module/Moderation/Blocklist/Contact.php:101 msgid "select none" msgstr "сбросить выбор" -#: src/Module/Moderation/Blocklist/Contact.php:118 +#: src/Module/Moderation/Blocklist/Contact.php:104 msgid "No remote contact is blocked from this node." msgstr "Для этого узла нет заблокированных контактов." -#: src/Module/Moderation/Blocklist/Contact.php:120 +#: src/Module/Moderation/Blocklist/Contact.php:106 msgid "Blocked Remote Contacts" msgstr "Заблокированные контакты" -#: src/Module/Moderation/Blocklist/Contact.php:121 +#: src/Module/Moderation/Blocklist/Contact.php:107 msgid "Block New Remote Contact" msgstr "Заблокировать новый контакт" -#: src/Module/Moderation/Blocklist/Contact.php:122 -#: src/Module/Moderation/Reports.php:116 +#: src/Module/Moderation/Blocklist/Contact.php:108 +#: src/Module/Moderation/Reports.php:102 msgid "Photo" msgstr "Фото" -#: src/Module/Moderation/Blocklist/Contact.php:122 +#: src/Module/Moderation/Blocklist/Contact.php:108 msgid "Reason" msgstr "Причина" -#: src/Module/Moderation/Blocklist/Contact.php:128 +#: src/Module/Moderation/Blocklist/Contact.php:114 #, php-format msgid "%s total blocked contact" msgid_plural "%s total blocked contacts" @@ -8153,30 +8148,30 @@ msgstr[1] "%s заблокированных контакта" msgstr[2] "%s заблокированных контактов" msgstr[3] "%s заблокированных контактов" -#: src/Module/Moderation/Blocklist/Contact.php:131 +#: src/Module/Moderation/Blocklist/Contact.php:117 msgid "URL of the remote contact to block." msgstr "URL блокируемого контакта." -#: src/Module/Moderation/Blocklist/Contact.php:132 +#: src/Module/Moderation/Blocklist/Contact.php:118 msgid "Also purge contact" msgstr "Так же очистить контакт" -#: src/Module/Moderation/Blocklist/Contact.php:132 +#: src/Module/Moderation/Blocklist/Contact.php:118 msgid "" "Removes all content related to this contact from the node. Keeps the contact" " record. This action cannot be undone." msgstr "Удалить всё содержимое, относящееся к данному контакту на этом узле. Запись контакта будет сохранена. Это действие нельзя отменить." -#: src/Module/Moderation/Blocklist/Contact.php:133 -#: src/Module/Moderation/Blocklist/Server/Import.php:124 +#: src/Module/Moderation/Blocklist/Contact.php:119 +#: src/Module/Moderation/Blocklist/Server/Import.php:108 msgid "Block Reason" msgstr "Причина блокировки" -#: src/Module/Moderation/Blocklist/Server/Add.php:80 +#: src/Module/Moderation/Blocklist/Server/Add.php:66 msgid "Server domain pattern added to the blocklist." msgstr "Маска адреса сервера добавлена в чёрный список." -#: src/Module/Moderation/Blocklist/Server/Add.php:88 +#: src/Module/Moderation/Blocklist/Server/Add.php:74 #, php-format msgid "%s server scheduled to be purged." msgid_plural "%s servers scheduled to be purged." @@ -8185,17 +8180,17 @@ msgstr[1] "%s сервера ожидают очистки." msgstr[2] "%s серверов ожидают очистки." msgstr[3] "%s серверов ожидают очистки." -#: src/Module/Moderation/Blocklist/Server/Add.php:120 -#: src/Module/Moderation/Blocklist/Server/Import.php:117 +#: src/Module/Moderation/Blocklist/Server/Add.php:106 +#: src/Module/Moderation/Blocklist/Server/Import.php:101 msgid "← Return to the list" msgstr "← Вернуться к списку" -#: src/Module/Moderation/Blocklist/Server/Add.php:122 +#: src/Module/Moderation/Blocklist/Server/Add.php:108 msgid "Block A New Server Domain Pattern" msgstr "Заблокировать новый сервер по маске" -#: src/Module/Moderation/Blocklist/Server/Add.php:123 -#: src/Module/Moderation/Blocklist/Server/Index.php:99 +#: src/Module/Moderation/Blocklist/Server/Add.php:109 +#: src/Module/Moderation/Blocklist/Server/Index.php:85 msgid "" "

The server domain pattern syntax is case-insensitive shell wildcard, comprising the following special characters:

\n" "
    \n" @@ -8204,30 +8199,30 @@ msgid "" "
" msgstr "

Маска домена сервера нечувствительна к регистру и представляет собой выражение shell со следующими спецсимволами:

\n
    \n\t
  • *: Любое число символов
  • \n\t
  • ?: Один любой символ
  • \n
" -#: src/Module/Moderation/Blocklist/Server/Add.php:128 -#: src/Module/Moderation/Blocklist/Server/Index.php:107 +#: src/Module/Moderation/Blocklist/Server/Add.php:114 +#: src/Module/Moderation/Blocklist/Server/Index.php:93 msgid "Check pattern" msgstr "Проверить маску" -#: src/Module/Moderation/Blocklist/Server/Add.php:129 +#: src/Module/Moderation/Blocklist/Server/Add.php:115 msgid "Matching known servers" msgstr "Совпадающие известные серверы" -#: src/Module/Moderation/Blocklist/Server/Add.php:130 -#: src/Module/Settings/Server/Action.php:76 -#: src/Module/Settings/Server/Index.php:106 +#: src/Module/Moderation/Blocklist/Server/Add.php:116 +#: src/Module/Settings/Server/Action.php:62 +#: src/Module/Settings/Server/Index.php:92 msgid "Server Name" msgstr "Имя сервера" -#: src/Module/Moderation/Blocklist/Server/Add.php:131 +#: src/Module/Moderation/Blocklist/Server/Add.php:117 msgid "Server Domain" msgstr "Домен сервера" -#: src/Module/Moderation/Blocklist/Server/Add.php:132 +#: src/Module/Moderation/Blocklist/Server/Add.php:118 msgid "Known Contacts" msgstr "Известные контакты" -#: src/Module/Moderation/Blocklist/Server/Add.php:133 +#: src/Module/Moderation/Blocklist/Server/Add.php:119 #, php-format msgid "%d known server" msgid_plural "%d known servers" @@ -8236,27 +8231,27 @@ msgstr[1] "%d известных сервера" msgstr[2] "%d известных серверов" msgstr[3] "%d известных серверов" -#: src/Module/Moderation/Blocklist/Server/Add.php:134 +#: src/Module/Moderation/Blocklist/Server/Add.php:120 msgid "Add pattern to the blocklist" msgstr "Добавить маску в чёрный список" -#: src/Module/Moderation/Blocklist/Server/Add.php:136 -#: src/Module/Moderation/Blocklist/Server/Index.php:116 +#: src/Module/Moderation/Blocklist/Server/Add.php:122 +#: src/Module/Moderation/Blocklist/Server/Index.php:102 msgid "Server Domain Pattern" msgstr "Маска домена узла" -#: src/Module/Moderation/Blocklist/Server/Add.php:136 -#: src/Module/Moderation/Blocklist/Server/Index.php:116 +#: src/Module/Moderation/Blocklist/Server/Add.php:122 +#: src/Module/Moderation/Blocklist/Server/Index.php:102 msgid "" "The domain pattern of the new server to add to the blocklist. Do not include" " the protocol." msgstr "Маска домена сервера, который вы хотите добавить в чёрный список. Не включайте префикс протокола." -#: src/Module/Moderation/Blocklist/Server/Add.php:137 +#: src/Module/Moderation/Blocklist/Server/Add.php:123 msgid "Purge server" msgstr "Очистить сервер" -#: src/Module/Moderation/Blocklist/Server/Add.php:137 +#: src/Module/Moderation/Blocklist/Server/Add.php:123 msgid "" "Also purges all the locally stored content authored by the known contacts " "registered on that server. Keeps the contacts and the server records. This " @@ -8270,26 +8265,26 @@ msgstr[1] "Так же удаляет все локальные данные, с msgstr[2] "Так же удаляет все локальные данные, созданные контактами, зарегистрированными на этих серверах. Сохраняет записи о самих контактах и серверах. Это действие нельзя отменить." msgstr[3] "Так же удаляет все локальные данные, созданные контактами, зарегистрированными на этих серверах. Сохраняет записи о самих контактах и серверах. Это действие нельзя отменить." -#: src/Module/Moderation/Blocklist/Server/Add.php:138 +#: src/Module/Moderation/Blocklist/Server/Add.php:124 msgid "Block reason" msgstr "Причина блокировки" -#: src/Module/Moderation/Blocklist/Server/Add.php:138 +#: src/Module/Moderation/Blocklist/Server/Add.php:124 msgid "" "The reason why you blocked this server domain pattern. This reason will be " "shown publicly in the server information page." msgstr "Причина, по которой вы заблокировали этот домен. Это будет показано публично на странице с информацией о сервере." -#: src/Module/Moderation/Blocklist/Server/Import.php:74 -#: src/Module/Moderation/Blocklist/Server/Import.php:83 +#: src/Module/Moderation/Blocklist/Server/Import.php:60 +#: src/Module/Moderation/Blocklist/Server/Import.php:67 msgid "Error importing pattern file" msgstr "Ошибка импорта файла списка" -#: src/Module/Moderation/Blocklist/Server/Import.php:89 +#: src/Module/Moderation/Blocklist/Server/Import.php:74 msgid "Local blocklist replaced with the provided file." msgstr "Список блокировки заменён на список из файла." -#: src/Module/Moderation/Blocklist/Server/Import.php:93 +#: src/Module/Moderation/Blocklist/Server/Import.php:78 #, php-format msgid "%d pattern was added to the local blocklist." msgid_plural "%d patterns were added to the local blocklist." @@ -8298,42 +8293,42 @@ msgstr[1] "%d маски были добавлены в список блоки msgstr[2] "%d масок было добавлено в список блокировки." msgstr[3] "%d масок было добавлено в список блокировки." -#: src/Module/Moderation/Blocklist/Server/Import.php:95 +#: src/Module/Moderation/Blocklist/Server/Import.php:80 msgid "No pattern was added to the local blocklist." msgstr "Новых масок не было добавлено." -#: src/Module/Moderation/Blocklist/Server/Import.php:119 +#: src/Module/Moderation/Blocklist/Server/Import.php:103 msgid "Import a Server Domain Pattern Blocklist" msgstr "Импорт списка блокировки серверов" -#: src/Module/Moderation/Blocklist/Server/Import.php:120 +#: src/Module/Moderation/Blocklist/Server/Import.php:104 msgid "" "

This file can be downloaded from the /friendica path of any " "Friendica server.

" msgstr "

Этот файл может быть загружен по ссылке /friendica с любого сервера Friendica.

" -#: src/Module/Moderation/Blocklist/Server/Import.php:121 -#: src/Module/Moderation/Blocklist/Server/Index.php:106 +#: src/Module/Moderation/Blocklist/Server/Import.php:105 +#: src/Module/Moderation/Blocklist/Server/Index.php:92 msgid "Upload file" msgstr "Загрузить файл" -#: src/Module/Moderation/Blocklist/Server/Import.php:122 +#: src/Module/Moderation/Blocklist/Server/Import.php:106 msgid "Patterns to import" msgstr "Маски для импорта" -#: src/Module/Moderation/Blocklist/Server/Import.php:123 +#: src/Module/Moderation/Blocklist/Server/Import.php:107 msgid "Domain Pattern" msgstr "Маска домена" -#: src/Module/Moderation/Blocklist/Server/Import.php:125 +#: src/Module/Moderation/Blocklist/Server/Import.php:109 msgid "Import Mode" msgstr "Режим импорта" -#: src/Module/Moderation/Blocklist/Server/Import.php:126 +#: src/Module/Moderation/Blocklist/Server/Import.php:110 msgid "Import Patterns" msgstr "Импорт значений" -#: src/Module/Moderation/Blocklist/Server/Import.php:127 +#: src/Module/Moderation/Blocklist/Server/Import.php:111 #, php-format msgid "%d total pattern" msgid_plural "%d total patterns" @@ -8342,233 +8337,233 @@ msgstr[1] "%d маски всего" msgstr[2] "%d масок всего" msgstr[3] "%d масок всего" -#: src/Module/Moderation/Blocklist/Server/Import.php:129 -#: src/Module/Moderation/Blocklist/Server/Index.php:115 +#: src/Module/Moderation/Blocklist/Server/Import.php:113 +#: src/Module/Moderation/Blocklist/Server/Index.php:101 msgid "Server domain pattern blocklist CSV file" msgstr "Список блокировки серверов в виде файла CSV" -#: src/Module/Moderation/Blocklist/Server/Import.php:130 +#: src/Module/Moderation/Blocklist/Server/Import.php:114 msgid "Append" msgstr "Добавить" -#: src/Module/Moderation/Blocklist/Server/Import.php:130 +#: src/Module/Moderation/Blocklist/Server/Import.php:114 msgid "" "Imports patterns from the file that weren't already existing in the current " "blocklist." msgstr "Добавляет маски из файла, которые ещё не существуют в текущем списке блокировки." -#: src/Module/Moderation/Blocklist/Server/Import.php:131 +#: src/Module/Moderation/Blocklist/Server/Import.php:115 msgid "Replace" msgstr "Заменить" -#: src/Module/Moderation/Blocklist/Server/Import.php:131 +#: src/Module/Moderation/Blocklist/Server/Import.php:115 msgid "Replaces the current blocklist by the imported patterns." msgstr "Заменяет текущий список загруженными значениями." -#: src/Module/Moderation/Blocklist/Server/Index.php:86 -#: src/Module/Moderation/Blocklist/Server/Index.php:110 -#: src/Module/Settings/Channels.php:231 +#: src/Module/Moderation/Blocklist/Server/Index.php:72 +#: src/Module/Moderation/Blocklist/Server/Index.php:96 +#: src/Module/Settings/Channels.php:217 msgid "Blocked server domain pattern" msgstr "Маска домена блокируемого сервера" -#: src/Module/Moderation/Blocklist/Server/Index.php:88 +#: src/Module/Moderation/Blocklist/Server/Index.php:74 msgid "Delete server domain pattern" msgstr "Удалить маску домена" -#: src/Module/Moderation/Blocklist/Server/Index.php:88 +#: src/Module/Moderation/Blocklist/Server/Index.php:74 msgid "Check to delete this entry from the blocklist" msgstr "Отметьте, чтобы удалить эту запись из списка блокировки" -#: src/Module/Moderation/Blocklist/Server/Index.php:96 +#: src/Module/Moderation/Blocklist/Server/Index.php:82 msgid "Server Domain Pattern Blocklist" msgstr "Список блокировки доменов" -#: src/Module/Moderation/Blocklist/Server/Index.php:97 +#: src/Module/Moderation/Blocklist/Server/Index.php:83 msgid "" "This page can be used to define a blocklist of server domain patterns from " "the federated network that are not allowed to interact with your node. For " "each domain pattern you should also provide the reason why you block it." msgstr "На этой странице можно настроить список блокировки доменов узлов федеративной сети, которые не должны взаимодействовать с вашим узлом. Для каждой записи вы должны предоставить причину блокировки." -#: src/Module/Moderation/Blocklist/Server/Index.php:98 +#: src/Module/Moderation/Blocklist/Server/Index.php:84 msgid "" "The list of blocked server domain patterns will be made publically available" " on the /friendica page so that your users and " "people investigating communication problems can find the reason easily." msgstr "Список блокируемых доменов будет отображаться публично на странице /friendica, чтобы ваши пользователи и другие люди могли легко понять причину проблем с доставкой записей." -#: src/Module/Moderation/Blocklist/Server/Index.php:104 +#: src/Module/Moderation/Blocklist/Server/Index.php:90 msgid "Import server domain pattern blocklist" msgstr "Импорт списка блокировки" -#: src/Module/Moderation/Blocklist/Server/Index.php:105 +#: src/Module/Moderation/Blocklist/Server/Index.php:91 msgid "Add new entry to the blocklist" msgstr "Добавить новую запись в список блокировки" -#: src/Module/Moderation/Blocklist/Server/Index.php:108 +#: src/Module/Moderation/Blocklist/Server/Index.php:94 msgid "Save changes to the blocklist" msgstr "Сохранить изменения списка блокировки" -#: src/Module/Moderation/Blocklist/Server/Index.php:109 +#: src/Module/Moderation/Blocklist/Server/Index.php:95 msgid "Current Entries in the Blocklist" msgstr "Текущие значения списка блокировки" -#: src/Module/Moderation/Blocklist/Server/Index.php:112 +#: src/Module/Moderation/Blocklist/Server/Index.php:98 msgid "Delete entry from the blocklist" msgstr "Удалить запись из списка" -#: src/Module/Moderation/Blocklist/Server/Index.php:113 +#: src/Module/Moderation/Blocklist/Server/Index.php:99 msgid "Delete entry from the blocklist?" msgstr "Удалить запись из списка блокировки?" -#: src/Module/Moderation/Item/Delete.php:50 +#: src/Module/Moderation/Item/Delete.php:36 msgid "Item marked for deletion." msgstr "Запись помечена для удаления." -#: src/Module/Moderation/Item/Delete.php:63 +#: src/Module/Moderation/Item/Delete.php:49 msgid "Delete this Item" msgstr "Удалить эту запись" -#: src/Module/Moderation/Item/Delete.php:64 +#: src/Module/Moderation/Item/Delete.php:50 msgid "" "On this page you can delete an item from your node. If the item is a top " "level posting, the entire thread will be deleted." msgstr "На этой странице вы можете удалять записи на вашем узле. Если запись является родительской, то будет удалена вся её ветка." -#: src/Module/Moderation/Item/Delete.php:65 +#: src/Module/Moderation/Item/Delete.php:51 msgid "" "You need to know the GUID of the item. You can find it e.g. by looking at " "the display URL. The last part of http://example.com/display/123456 is the " "GUID, here 123456." msgstr "Вам нужно знать GUID записи. Вы можете узнать его, посмотрев на ссылку записи. Последняя часть ссылки - GUID. Например, для http://example.com/display/123456 - GUID будет 123456." -#: src/Module/Moderation/Item/Delete.php:67 +#: src/Module/Moderation/Item/Delete.php:53 msgid "GUID" msgstr "GUID" -#: src/Module/Moderation/Item/Delete.php:67 +#: src/Module/Moderation/Item/Delete.php:53 msgid "The GUID of the item you want to delete." msgstr "GUID записи, которую вы хотите удалить." -#: src/Module/Moderation/Item/Source.php:83 +#: src/Module/Moderation/Item/Source.php:69 msgid "Item Id" msgstr "Id записи" -#: src/Module/Moderation/Item/Source.php:84 +#: src/Module/Moderation/Item/Source.php:70 msgid "Item URI" msgstr "URI записи" -#: src/Module/Moderation/Item/Source.php:86 +#: src/Module/Moderation/Item/Source.php:72 msgid "Terms" msgstr "Ключевые слова" -#: src/Module/Moderation/Item/Source.php:87 +#: src/Module/Moderation/Item/Source.php:73 msgid "Tag" msgstr "Тэг" -#: src/Module/Moderation/Item/Source.php:88 -#: src/Module/Moderation/Users/Active.php:126 -#: src/Module/Moderation/Users/Blocked.php:126 -#: src/Module/Moderation/Users/Index.php:140 +#: src/Module/Moderation/Item/Source.php:74 +#: src/Module/Moderation/Users/Active.php:112 +#: src/Module/Moderation/Users/Blocked.php:112 +#: src/Module/Moderation/Users/Index.php:126 msgid "Type" msgstr "Тип" -#: src/Module/Moderation/Item/Source.php:89 +#: src/Module/Moderation/Item/Source.php:75 msgid "Term" msgstr "Ключевое слово" -#: src/Module/Moderation/Item/Source.php:90 +#: src/Module/Moderation/Item/Source.php:76 msgid "URL" msgstr "URL" -#: src/Module/Moderation/Item/Source.php:92 +#: src/Module/Moderation/Item/Source.php:78 msgid "Implicit Mention" msgstr "Неявная отметка" -#: src/Module/Moderation/Item/Source.php:94 +#: src/Module/Moderation/Item/Source.php:80 msgid "Item not found" msgstr "Элемент не найден" -#: src/Module/Moderation/Item/Source.php:95 +#: src/Module/Moderation/Item/Source.php:81 msgid "No source recorded" msgstr "Источник не сохранён" -#: src/Module/Moderation/Item/Source.php:96 +#: src/Module/Moderation/Item/Source.php:82 msgid "" "Please make sure the debug.store_source config key is set in " "config/local.config.php for future items to have sources." msgstr "" -#: src/Module/Moderation/Item/Source.php:98 +#: src/Module/Moderation/Item/Source.php:84 msgid "Item Guid" msgstr "GUID записи" -#: src/Module/Moderation/Report/Create.php:95 +#: src/Module/Moderation/Report/Create.php:81 msgid "Contact not found or their server is already blocked on this node." msgstr "Контакт не найден или их сервер уже заблокирован на этом узле." -#: src/Module/Moderation/Report/Create.php:136 +#: src/Module/Moderation/Report/Create.php:122 msgid "Please login to access this page." msgstr "Пожалуйста, войдите для доступа к этой странице." -#: src/Module/Moderation/Report/Create.php:165 -#: src/Module/Moderation/Report/Create.php:180 -#: src/Module/Moderation/Report/Create.php:208 -#: src/Module/Moderation/Report/Create.php:260 -#: src/Module/Moderation/Report/Create.php:279 +#: src/Module/Moderation/Report/Create.php:151 +#: src/Module/Moderation/Report/Create.php:166 +#: src/Module/Moderation/Report/Create.php:194 +#: src/Module/Moderation/Report/Create.php:246 +#: src/Module/Moderation/Report/Create.php:265 msgid "Create Moderation Report" msgstr "Создать обращение к модераторам" -#: src/Module/Moderation/Report/Create.php:166 +#: src/Module/Moderation/Report/Create.php:152 msgid "Pick Contact" msgstr "Выбор контакта" -#: src/Module/Moderation/Report/Create.php:167 +#: src/Module/Moderation/Report/Create.php:153 msgid "" "Please enter below the contact address or profile URL you would like to " "create a moderation report about." msgstr "Пожалуйста, выберите адрес контакта или URL профиля, о котором вы хотите отправить обращение." -#: src/Module/Moderation/Report/Create.php:171 +#: src/Module/Moderation/Report/Create.php:157 msgid "Contact address/URL" msgstr "Адрес контакта/URL" -#: src/Module/Moderation/Report/Create.php:181 +#: src/Module/Moderation/Report/Create.php:167 msgid "Pick Category" msgstr "Выбор категории" -#: src/Module/Moderation/Report/Create.php:182 +#: src/Module/Moderation/Report/Create.php:168 msgid "Please pick below the category of your report." msgstr "Пожалуйста, выберите категорию обращения." -#: src/Module/Moderation/Report/Create.php:186 -#: src/Module/Moderation/Report/Create.php:311 +#: src/Module/Moderation/Report/Create.php:172 +#: src/Module/Moderation/Report/Create.php:297 msgid "Spam" msgstr "Спам" -#: src/Module/Moderation/Report/Create.php:186 +#: src/Module/Moderation/Report/Create.php:172 msgid "" "This contact is publishing many repeated/overly long posts/replies or " "advertising their product/websites in otherwise irrelevant conversations." msgstr "Этот контакт публикует много повторяющихся/слишком длинных записей/комментариев, либо рекламирует свои товары/услуги там, где это неуместно." -#: src/Module/Moderation/Report/Create.php:187 -#: src/Module/Moderation/Report/Create.php:312 +#: src/Module/Moderation/Report/Create.php:173 +#: src/Module/Moderation/Report/Create.php:298 msgid "Illegal Content" msgstr "Противозаконный контент" -#: src/Module/Moderation/Report/Create.php:187 +#: src/Module/Moderation/Report/Create.php:173 msgid "" "This contact is publishing content that is considered illegal in this node's" " hosting juridiction." msgstr "Этот контакт публикует что-то, что запрещено законом в юрисдикции данного узла." -#: src/Module/Moderation/Report/Create.php:188 -#: src/Module/Moderation/Report/Create.php:313 +#: src/Module/Moderation/Report/Create.php:174 +#: src/Module/Moderation/Report/Create.php:299 msgid "Community Safety" msgstr "Общественный порядок" -#: src/Module/Moderation/Report/Create.php:188 +#: src/Module/Moderation/Report/Create.php:174 msgid "" "This contact aggravated you or other people, by being provocative or " "insensitive, intentionally or not. This includes disclosing people's private" @@ -8576,12 +8571,12 @@ msgid "" "replies." msgstr "Этот контакт раздражает вас или других людей провокационным или невежливым поведением, намеренно или нет. Это включает распространение частной информации о других людях (doxxing), угрозы, оскорбительные изображения в записях или комментариях." -#: src/Module/Moderation/Report/Create.php:189 -#: src/Module/Moderation/Report/Create.php:314 +#: src/Module/Moderation/Report/Create.php:175 +#: src/Module/Moderation/Report/Create.php:300 msgid "Unwanted Content/Behavior" msgstr "Нежелательные материалы/поведение" -#: src/Module/Moderation/Report/Create.php:189 +#: src/Module/Moderation/Report/Create.php:175 msgid "" "This contact has repeatedly published content irrelevant to the node's theme" " or is openly criticizing the node's administration/moderation without " @@ -8589,89 +8584,89 @@ msgid "" "nitpicking on a sensitive topic." msgstr "Этот контакт неоднократно публикует что-то, не относящееся к тематике узла, открыто критикует администраторов/модераторов без непосредственного обращения к ним, намеренно провоцирует раздор в чувствительных темах." -#: src/Module/Moderation/Report/Create.php:190 -#: src/Module/Moderation/Report/Create.php:315 +#: src/Module/Moderation/Report/Create.php:176 +#: src/Module/Moderation/Report/Create.php:301 msgid "Rules Violation" msgstr "Нарушение правил" -#: src/Module/Moderation/Report/Create.php:190 +#: src/Module/Moderation/Report/Create.php:176 msgid "" "This contact violated one or more rules of this node. You will be able to " "pick which one(s) in the next step." msgstr "Этот контакт нарушил одно или несколько правил этого узла. Вы сможете выбрать какие на следующем шаге." -#: src/Module/Moderation/Report/Create.php:191 +#: src/Module/Moderation/Report/Create.php:177 msgid "" "Please elaborate below why you submitted this report. The more details you " "provide, the better your report can be handled." msgstr "Пожалуйста, расскажите о причинах вашего обращения. Чем больше деталей вы предоставите, тем лучше ваше обращение будет обработано." -#: src/Module/Moderation/Report/Create.php:193 +#: src/Module/Moderation/Report/Create.php:179 msgid "Additional Information" msgstr "Дополнительная информация" -#: src/Module/Moderation/Report/Create.php:193 +#: src/Module/Moderation/Report/Create.php:179 msgid "" "Please provide any additional information relevant to this particular " "report. You will be able to attach posts by this contact in the next step, " "but any context is welcome." msgstr "Пожалуйста, добавьте любую дополнительную информацию, относящуюся к ситуации. Вы сможете прикрепить записи на следующем шаге, но любые детали пригодятся." -#: src/Module/Moderation/Report/Create.php:209 +#: src/Module/Moderation/Report/Create.php:195 msgid "Pick Rules" msgstr "Выберите правила" -#: src/Module/Moderation/Report/Create.php:210 +#: src/Module/Moderation/Report/Create.php:196 msgid "Please pick below the node rules you believe this contact violated." msgstr "Пожалуйста, выберите правила, которые по вашему мнению были нарушены." -#: src/Module/Moderation/Report/Create.php:261 +#: src/Module/Moderation/Report/Create.php:247 msgid "Pick Posts" msgstr "Выберите записи" -#: src/Module/Moderation/Report/Create.php:262 +#: src/Module/Moderation/Report/Create.php:248 msgid "Please optionally pick posts to attach to your report." msgstr "Пожалуйста, выберите записи, которые вы хотите добавить к обращению." -#: src/Module/Moderation/Report/Create.php:281 +#: src/Module/Moderation/Report/Create.php:267 msgid "Submit Report" msgstr "Отправить обращение" -#: src/Module/Moderation/Report/Create.php:282 +#: src/Module/Moderation/Report/Create.php:268 msgid "Further Action" msgstr "Дальнейшие действия" -#: src/Module/Moderation/Report/Create.php:283 +#: src/Module/Moderation/Report/Create.php:269 msgid "" "You can also perform one of the following action on the contact you " "reported:" msgstr "Вы так же можете сделать следующее с этим контактом:" -#: src/Module/Moderation/Report/Create.php:291 +#: src/Module/Moderation/Report/Create.php:277 msgid "Nothing" msgstr "Ничего" -#: src/Module/Moderation/Report/Create.php:292 +#: src/Module/Moderation/Report/Create.php:278 msgid "Collapse contact" msgstr "Сворачивать контакт" -#: src/Module/Moderation/Report/Create.php:292 +#: src/Module/Moderation/Report/Create.php:278 msgid "" "Their posts and replies will keep appearing in your Network page but their " "content will be collapsed by default." msgstr "Их записи и комментарии будут появляться в вашей ленте, но они будут свёрнуты." -#: src/Module/Moderation/Report/Create.php:293 +#: src/Module/Moderation/Report/Create.php:279 msgid "" "Their posts won't appear in your Network page anymore, but their replies can" " appear in forum threads. They still can follow you." msgstr "Их записи и комментарии не будут больше появляться в вашей ленте, но могут появляться в групповых ветках. Так же они могут подписаться на вас." -#: src/Module/Moderation/Report/Create.php:294 +#: src/Module/Moderation/Report/Create.php:280 msgid "Block contact" msgstr "Заблокировать контакт" -#: src/Module/Moderation/Report/Create.php:294 +#: src/Module/Moderation/Report/Create.php:280 msgid "" "Their posts won't appear in your Network page anymore, but their replies can" " appear in forum threads, with their content collapsed by default. They " @@ -8679,51 +8674,51 @@ msgid "" "means." msgstr "Их записи не будут появляться в вашей ленте, но их ответы могут появляться в групповых ветках в свёрнутом виде. Они не смогут подписаться на вас, но могут увидеть ваши публичные записи другими способами." -#: src/Module/Moderation/Report/Create.php:297 +#: src/Module/Moderation/Report/Create.php:283 msgid "Forward report" msgstr "Переслать обращение" -#: src/Module/Moderation/Report/Create.php:297 +#: src/Module/Moderation/Report/Create.php:283 msgid "Would you ike to forward this report to the remote server?" msgstr "Вы хотите переслать это обращение на удалённый сервер?" -#: src/Module/Moderation/Report/Create.php:330 +#: src/Module/Moderation/Report/Create.php:316 msgid "1. Pick a contact" msgstr "1. Выберите контакт" -#: src/Module/Moderation/Report/Create.php:331 +#: src/Module/Moderation/Report/Create.php:317 msgid "2. Pick a category" msgstr "2. Выберите категорию" -#: src/Module/Moderation/Report/Create.php:332 +#: src/Module/Moderation/Report/Create.php:318 msgid "2a. Pick rules" msgstr "2a. Выберите правила" -#: src/Module/Moderation/Report/Create.php:333 +#: src/Module/Moderation/Report/Create.php:319 msgid "2b. Add comment" msgstr "2b. Добавьте комментарий" -#: src/Module/Moderation/Report/Create.php:334 +#: src/Module/Moderation/Report/Create.php:320 msgid "3. Pick posts" msgstr "3. Выберите записи" -#: src/Module/Moderation/Reports.php:111 +#: src/Module/Moderation/Reports.php:97 msgid "List of reports" msgstr "Список обращений" -#: src/Module/Moderation/Reports.php:112 +#: src/Module/Moderation/Reports.php:98 msgid "This page display reports created by our or remote users." msgstr "Эта страница показывает обращения, созданные нашими или удалёнными пользователями." -#: src/Module/Moderation/Reports.php:113 +#: src/Module/Moderation/Reports.php:99 msgid "No report exists at this node." msgstr "Обращений на этом узле нет." -#: src/Module/Moderation/Reports.php:116 +#: src/Module/Moderation/Reports.php:102 msgid "Category" msgstr "Категория" -#: src/Module/Moderation/Reports.php:120 +#: src/Module/Moderation/Reports.php:106 #, php-format msgid "%s total report" msgid_plural "%s total reports" @@ -8732,24 +8727,24 @@ msgstr[1] "%s обращения" msgstr[2] "%s обращений" msgstr[3] "%s обращений" -#: src/Module/Moderation/Reports.php:123 +#: src/Module/Moderation/Reports.php:109 msgid "URL of the reported contact." msgstr "URL контакта в обращении." -#: src/Module/Moderation/Summary.php:57 src/Module/Settings/Account.php:436 +#: src/Module/Moderation/Summary.php:43 src/Module/Settings/Account.php:422 msgid "Channel Relay" msgstr "Ретранслятор канала" -#: src/Module/Moderation/Summary.php:77 +#: src/Module/Moderation/Summary.php:63 msgid "Registered users" msgstr "Зарегистрированные пользователи" -#: src/Module/Moderation/Summary.php:79 +#: src/Module/Moderation/Summary.php:65 msgid "Pending registrations" msgstr "Ожидающие регистрации" -#: src/Module/Moderation/Users/Active.php:43 -#: src/Module/Moderation/Users/Index.php:43 +#: src/Module/Moderation/Users/Active.php:29 +#: src/Module/Moderation/Users/Index.php:29 #, php-format msgid "%s user blocked" msgid_plural "%s users blocked" @@ -8758,18 +8753,18 @@ msgstr[1] "%s пользователя заблокировано" msgstr[2] "%s пользователей заблокировано" msgstr[3] "%s пользователей заблокировано" -#: src/Module/Moderation/Users/Active.php:51 -#: src/Module/Moderation/Users/Active.php:85 -#: src/Module/Moderation/Users/Blocked.php:51 -#: src/Module/Moderation/Users/Blocked.php:85 -#: src/Module/Moderation/Users/Index.php:58 -#: src/Module/Moderation/Users/Index.php:92 +#: src/Module/Moderation/Users/Active.php:37 +#: src/Module/Moderation/Users/Active.php:71 +#: src/Module/Moderation/Users/Blocked.php:37 +#: src/Module/Moderation/Users/Blocked.php:71 +#: src/Module/Moderation/Users/Index.php:44 +#: src/Module/Moderation/Users/Index.php:78 msgid "You can't remove yourself" msgstr "Вы не можете удалить самого себя" -#: src/Module/Moderation/Users/Active.php:55 -#: src/Module/Moderation/Users/Blocked.php:55 -#: src/Module/Moderation/Users/Index.php:62 +#: src/Module/Moderation/Users/Active.php:41 +#: src/Module/Moderation/Users/Blocked.php:41 +#: src/Module/Moderation/Users/Index.php:48 #, php-format msgid "%s user deleted" msgid_plural "%s users deleted" @@ -8778,88 +8773,88 @@ msgstr[1] "%s чел. удалено" msgstr[2] "%s чел. удалено" msgstr[3] "%s чел. удалено" -#: src/Module/Moderation/Users/Active.php:83 -#: src/Module/Moderation/Users/Blocked.php:83 -#: src/Module/Moderation/Users/Index.php:90 +#: src/Module/Moderation/Users/Active.php:69 +#: src/Module/Moderation/Users/Blocked.php:69 +#: src/Module/Moderation/Users/Index.php:76 #, php-format msgid "User \"%s\" deleted" msgstr "Пользователь \"%s\" удалён" -#: src/Module/Moderation/Users/Active.php:93 -#: src/Module/Moderation/Users/Index.php:100 +#: src/Module/Moderation/Users/Active.php:79 +#: src/Module/Moderation/Users/Index.php:86 #, php-format msgid "User \"%s\" blocked" msgstr "Пользователь \"%s\" заблокирован" -#: src/Module/Moderation/Users/Active.php:126 -#: src/Module/Moderation/Users/Blocked.php:126 -#: src/Module/Moderation/Users/Deleted.php:83 -#: src/Module/Moderation/Users/Index.php:140 -#: src/Module/Moderation/Users/Index.php:160 +#: src/Module/Moderation/Users/Active.php:112 +#: src/Module/Moderation/Users/Blocked.php:112 +#: src/Module/Moderation/Users/Deleted.php:69 +#: src/Module/Moderation/Users/Index.php:126 +#: src/Module/Moderation/Users/Index.php:146 msgid "Register date" msgstr "Дата регистрации" -#: src/Module/Moderation/Users/Active.php:126 -#: src/Module/Moderation/Users/Blocked.php:126 -#: src/Module/Moderation/Users/Deleted.php:83 -#: src/Module/Moderation/Users/Index.php:140 -#: src/Module/Moderation/Users/Index.php:160 +#: src/Module/Moderation/Users/Active.php:112 +#: src/Module/Moderation/Users/Blocked.php:112 +#: src/Module/Moderation/Users/Deleted.php:69 +#: src/Module/Moderation/Users/Index.php:126 +#: src/Module/Moderation/Users/Index.php:146 msgid "Last login" msgstr "Последний вход" -#: src/Module/Moderation/Users/Active.php:126 -#: src/Module/Moderation/Users/Blocked.php:126 -#: src/Module/Moderation/Users/Deleted.php:83 -#: src/Module/Moderation/Users/Index.php:140 -#: src/Module/Moderation/Users/Index.php:160 +#: src/Module/Moderation/Users/Active.php:112 +#: src/Module/Moderation/Users/Blocked.php:112 +#: src/Module/Moderation/Users/Deleted.php:69 +#: src/Module/Moderation/Users/Index.php:126 +#: src/Module/Moderation/Users/Index.php:146 msgid "Last public item" msgstr "Последняя публичная запись" -#: src/Module/Moderation/Users/Active.php:134 +#: src/Module/Moderation/Users/Active.php:120 msgid "Active Accounts" msgstr "Активные учётные записи" -#: src/Module/Moderation/Users/Active.php:138 -#: src/Module/Moderation/Users/Blocked.php:137 -#: src/Module/Moderation/Users/Index.php:153 +#: src/Module/Moderation/Users/Active.php:124 +#: src/Module/Moderation/Users/Blocked.php:123 +#: src/Module/Moderation/Users/Index.php:139 msgid "User blocked" msgstr "Пользователь заблокирован" -#: src/Module/Moderation/Users/Active.php:139 -#: src/Module/Moderation/Users/Blocked.php:139 -#: src/Module/Moderation/Users/Index.php:155 +#: src/Module/Moderation/Users/Active.php:125 +#: src/Module/Moderation/Users/Blocked.php:125 +#: src/Module/Moderation/Users/Index.php:141 msgid "Site admin" msgstr "Админ сайта" -#: src/Module/Moderation/Users/Active.php:140 -#: src/Module/Moderation/Users/Blocked.php:140 -#: src/Module/Moderation/Users/Index.php:156 +#: src/Module/Moderation/Users/Active.php:126 +#: src/Module/Moderation/Users/Blocked.php:126 +#: src/Module/Moderation/Users/Index.php:142 msgid "Account expired" msgstr "Аккаунт просрочен" -#: src/Module/Moderation/Users/Active.php:141 -#: src/Module/Moderation/Users/Index.php:159 +#: src/Module/Moderation/Users/Active.php:127 +#: src/Module/Moderation/Users/Index.php:145 msgid "Create a new user" msgstr "Создать нового" -#: src/Module/Moderation/Users/Active.php:147 -#: src/Module/Moderation/Users/Blocked.php:146 -#: src/Module/Moderation/Users/Index.php:165 +#: src/Module/Moderation/Users/Active.php:133 +#: src/Module/Moderation/Users/Blocked.php:132 +#: src/Module/Moderation/Users/Index.php:151 msgid "" "Selected users will be deleted!\\n\\nEverything these users had posted on " "this site will be permanently deleted!\\n\\nAre you sure?" msgstr "Выбранные пользователи будут удалены!\\n\\nВсе, что эти пользователи написали на этом сайте, будет удалено!\\n\\nВы уверены в вашем действии?" -#: src/Module/Moderation/Users/Active.php:148 -#: src/Module/Moderation/Users/Blocked.php:147 -#: src/Module/Moderation/Users/Index.php:166 +#: src/Module/Moderation/Users/Active.php:134 +#: src/Module/Moderation/Users/Blocked.php:133 +#: src/Module/Moderation/Users/Index.php:152 msgid "" "The user {0} will be deleted!\\n\\nEverything this user has posted on this " "site will be permanently deleted!\\n\\nAre you sure?" msgstr "Пользователь {0} будет удален!\\n\\nВсе, что этот пользователь написал на этом сайте, будет удалено!\\n\\nВы уверены в вашем действии?" -#: src/Module/Moderation/Users/Blocked.php:43 -#: src/Module/Moderation/Users/Index.php:50 +#: src/Module/Moderation/Users/Blocked.php:29 +#: src/Module/Moderation/Users/Index.php:36 #, php-format msgid "%s user unblocked" msgid_plural "%s users unblocked" @@ -8868,54 +8863,54 @@ msgstr[1] "%s пользователя разблокировано" msgstr[2] "%s пользователей разблокировано" msgstr[3] "%s пользователей разблокировано" -#: src/Module/Moderation/Users/Blocked.php:92 -#: src/Module/Moderation/Users/Index.php:106 +#: src/Module/Moderation/Users/Blocked.php:78 +#: src/Module/Moderation/Users/Index.php:92 #, php-format msgid "User \"%s\" unblocked" msgstr "Пользователь \"%s\" разблокирован" -#: src/Module/Moderation/Users/Blocked.php:134 +#: src/Module/Moderation/Users/Blocked.php:120 msgid "Blocked Users" msgstr "Заблокированные" -#: src/Module/Moderation/Users/Create.php:62 +#: src/Module/Moderation/Users/Create.php:48 msgid "New User" msgstr "Новый пользователь" -#: src/Module/Moderation/Users/Create.php:63 +#: src/Module/Moderation/Users/Create.php:49 msgid "Add User" msgstr "Добавить пользователя" -#: src/Module/Moderation/Users/Create.php:70 +#: src/Module/Moderation/Users/Create.php:56 msgid "Name of the new user." msgstr "Имя нового пользователя." -#: src/Module/Moderation/Users/Create.php:71 +#: src/Module/Moderation/Users/Create.php:57 msgid "Nickname" msgstr "Ник" -#: src/Module/Moderation/Users/Create.php:71 +#: src/Module/Moderation/Users/Create.php:57 msgid "Nickname of the new user." msgstr "Ник нового пользователя." -#: src/Module/Moderation/Users/Create.php:72 +#: src/Module/Moderation/Users/Create.php:58 msgid "Email address of the new user." msgstr "Email адрес нового пользователя." -#: src/Module/Moderation/Users/Deleted.php:81 +#: src/Module/Moderation/Users/Deleted.php:67 msgid "Users awaiting permanent deletion" msgstr "Пользователи, ожидающие окончательного удаления" -#: src/Module/Moderation/Users/Deleted.php:83 -#: src/Module/Moderation/Users/Index.php:160 +#: src/Module/Moderation/Users/Deleted.php:69 +#: src/Module/Moderation/Users/Index.php:146 msgid "Permanent deletion" msgstr "Постоянное удаление" -#: src/Module/Moderation/Users/Index.php:150 +#: src/Module/Moderation/Users/Index.php:136 msgid "User waiting for permanent deletion" msgstr "Пользователь ожидает окончательного удаления" -#: src/Module/Moderation/Users/Pending.php:44 +#: src/Module/Moderation/Users/Pending.php:30 #, php-format msgid "%s user approved" msgid_plural "%s users approved" @@ -8924,7 +8919,7 @@ msgstr[1] "%s пользователя одобрено" msgstr[2] "%s пользователей одобрено" msgstr[3] "%s пользователей одобрено" -#: src/Module/Moderation/Users/Pending.php:51 +#: src/Module/Moderation/Users/Pending.php:37 #, php-format msgid "%s registration revoked" msgid_plural "%s registrations revoked" @@ -8933,420 +8928,406 @@ msgstr[1] "%s регистрации отменены" msgstr[2] "%s регистраций отменены" msgstr[3] "%s регистраций отменены" -#: src/Module/Moderation/Users/Pending.php:76 +#: src/Module/Moderation/Users/Pending.php:62 msgid "Account approved." msgstr "Аккаунт утвержден." -#: src/Module/Moderation/Users/Pending.php:82 +#: src/Module/Moderation/Users/Pending.php:68 msgid "Registration revoked" msgstr "Регистрация отменена" -#: src/Module/Moderation/Users/Pending.php:97 +#: src/Module/Moderation/Users/Pending.php:83 msgid "User registrations awaiting review" msgstr "Регистрации пользователей, ожидающие подтверждения" -#: src/Module/Moderation/Users/Pending.php:99 +#: src/Module/Moderation/Users/Pending.php:85 msgid "Request date" msgstr "Запрос даты" -#: src/Module/Moderation/Users/Pending.php:100 +#: src/Module/Moderation/Users/Pending.php:86 msgid "No registrations." msgstr "Нет регистраций." -#: src/Module/Moderation/Users/Pending.php:101 +#: src/Module/Moderation/Users/Pending.php:87 msgid "Note from the user" msgstr "Сообщение от пользователя" -#: src/Module/Moderation/Users/Pending.php:103 +#: src/Module/Moderation/Users/Pending.php:89 msgid "Deny" msgstr "Отклонить" -#: src/Module/Notifications/Introductions.php:105 +#: src/Module/Notifications/Introductions.php:91 msgid "Show Ignored Requests" msgstr "Показать проигнорированные запросы" -#: src/Module/Notifications/Introductions.php:105 +#: src/Module/Notifications/Introductions.php:91 msgid "Hide Ignored Requests" msgstr "Скрыть проигнорированные запросы" -#: src/Module/Notifications/Introductions.php:121 -#: src/Module/Notifications/Introductions.php:184 +#: src/Module/Notifications/Introductions.php:107 +#: src/Module/Notifications/Introductions.php:170 msgid "Notification type:" msgstr "Тип уведомления:" -#: src/Module/Notifications/Introductions.php:124 +#: src/Module/Notifications/Introductions.php:110 msgid "Suggested by:" msgstr "Рекомендовано:" -#: src/Module/Notifications/Introductions.php:149 +#: src/Module/Notifications/Introductions.php:135 msgid "Claims to be known to you: " msgstr "Утверждения, о которых должно быть вам известно: " -#: src/Module/Notifications/Introductions.php:158 +#: src/Module/Notifications/Introductions.php:144 msgid "Shall your connection be bidirectional or not?" msgstr "Должно ли ваше соединение быть двухсторонним или нет?" -#: src/Module/Notifications/Introductions.php:159 +#: src/Module/Notifications/Introductions.php:145 #, php-format msgid "" "Accepting %s as a friend allows %s to subscribe to your posts, and you will " "also receive updates from them in your news feed." msgstr "Принимая %s как друга вы позволяете %s читать ему свои записи, а также будете получать записи от него." -#: src/Module/Notifications/Introductions.php:160 +#: src/Module/Notifications/Introductions.php:146 #, php-format msgid "" "Accepting %s as a subscriber allows them to subscribe to your posts, but you" " will not receive updates from them in your news feed." msgstr "Принимая %s как подписчика вы позволяете читать ему свои записи, но вы не будете получать записей от него." -#: src/Module/Notifications/Introductions.php:162 +#: src/Module/Notifications/Introductions.php:148 msgid "Friend" msgstr "Друг" -#: src/Module/Notifications/Introductions.php:163 +#: src/Module/Notifications/Introductions.php:149 msgid "Subscriber" msgstr "Подписчик" -#: src/Module/Notifications/Introductions.php:222 +#: src/Module/Notifications/Introductions.php:208 msgid "No introductions." msgstr "Запросов нет." -#: src/Module/Notifications/Introductions.php:223 -#: src/Module/Notifications/Notifications.php:141 +#: src/Module/Notifications/Introductions.php:209 +#: src/Module/Notifications/Notifications.php:127 #, php-format msgid "No more %s notifications." msgstr "Больше нет уведомлений о %s." -#: src/Module/Notifications/Notification.php:135 +#: src/Module/Notifications/Notification.php:121 msgid "You must be logged in to show this page." msgstr "Вам нужно войти, чтобы увидеть эту страницу." -#: src/Module/Notifications/Notifications.php:66 +#: src/Module/Notifications/Notifications.php:52 msgid "Network Notifications" msgstr "Уведомления сети" -#: src/Module/Notifications/Notifications.php:72 +#: src/Module/Notifications/Notifications.php:58 msgid "System Notifications" msgstr "Уведомления системы" -#: src/Module/Notifications/Notifications.php:78 +#: src/Module/Notifications/Notifications.php:64 msgid "Personal Notifications" msgstr "Личные уведомления" -#: src/Module/Notifications/Notifications.php:84 +#: src/Module/Notifications/Notifications.php:70 msgid "Home Notifications" msgstr "Уведомления" -#: src/Module/Notifications/Notifications.php:146 +#: src/Module/Notifications/Notifications.php:132 msgid "Show unread" msgstr "Показать непрочитанные" -#: src/Module/Notifications/Ping.php:220 +#: src/Module/Notifications/Ping.php:206 msgid "{0} requested registration" msgstr "{0} запрос на регистрацию" -#: src/Module/Notifications/Ping.php:229 +#: src/Module/Notifications/Ping.php:215 #, php-format msgid "{0} and %d others requested registration" msgstr "{0} и %d других запросов на регистрацию" -#: src/Module/OAuth/Acknowledge.php:51 +#: src/Module/OAuth/Acknowledge.php:37 msgid "Authorize application connection" msgstr "Разрешить связь с приложением" -#: src/Module/OAuth/Acknowledge.php:53 +#: src/Module/OAuth/Acknowledge.php:39 msgid "" "Do you want to authorize this application to access your posts and contacts," " and/or create new posts for you?" msgstr "Вы действительно хотите разрешить этому приложению доступ к своим записям и контактам, а также создавать новые записи от вашего имени?" -#: src/Module/OAuth/Authorize.php:54 +#: src/Module/OAuth/Authorize.php:40 msgid "Unsupported or missing response type" msgstr "Неподдерживаемый или отсутствующий тип отклика" -#: src/Module/OAuth/Authorize.php:59 src/Module/OAuth/Token.php:75 +#: src/Module/OAuth/Authorize.php:45 src/Module/OAuth/Token.php:61 msgid "Incomplete request data" msgstr "Неполные данные запроса" -#: src/Module/OAuth/Authorize.php:106 +#: src/Module/OAuth/Authorize.php:92 #, php-format msgid "" "Please copy the following authentication code into your application and " "close this window: %s" msgstr "Пожалуйста, скопируйте следующий код аутентификации в ваше приложение и закройте это окно: %s" -#: src/Module/OAuth/Token.php:80 +#: src/Module/OAuth/Token.php:66 msgid "Invalid data or unknown client" msgstr "Ошибочные данные или неизвестный клиент" -#: src/Module/OAuth/Token.php:105 +#: src/Module/OAuth/Token.php:91 msgid "Unsupported or missing grant type" msgstr "Неподдерживаемый или отсутствующий тип гранта." -#: src/Module/OStatus/Repair.php:83 -msgid "Resubscribing to OStatus contacts" -msgstr "Переподписаться на OStatus-контакты." - -#: src/Module/OStatus/Repair.php:84 src/Module/OStatus/Subscribe.php:160 -msgid "Keep this window open until done." -msgstr "Держать окно открытым до завершения." - -#: src/Module/OStatus/Repair.php:85 -msgid "✔ Done" -msgstr "✔ Готово" - -#: src/Module/OStatus/Repair.php:86 -msgid "No OStatus contacts to resubscribe to." -msgstr "Нет контактов OStatus для переподписки." - -#: src/Module/OStatus/Subscribe.php:72 +#: src/Module/OStatus/Subscribe.php:58 msgid "Subscribing to contacts" msgstr "Подписка на контакты" -#: src/Module/OStatus/Subscribe.php:81 +#: src/Module/OStatus/Subscribe.php:67 msgid "No contact provided." msgstr "Не указан контакт." -#: src/Module/OStatus/Subscribe.php:87 +#: src/Module/OStatus/Subscribe.php:73 msgid "Couldn't fetch information for contact." msgstr "Невозможно получить информацию о контакте." -#: src/Module/OStatus/Subscribe.php:98 +#: src/Module/OStatus/Subscribe.php:84 msgid "Couldn't fetch friends for contact." msgstr "Невозможно получить друзей для контакта." -#: src/Module/OStatus/Subscribe.php:104 src/Module/OStatus/Subscribe.php:115 +#: src/Module/OStatus/Subscribe.php:90 src/Module/OStatus/Subscribe.php:101 msgid "Couldn't fetch following contacts." msgstr "Не удалось загрузить контакты подписчиков." -#: src/Module/OStatus/Subscribe.php:110 +#: src/Module/OStatus/Subscribe.php:96 msgid "Couldn't fetch remote profile." msgstr "Не получилось загрузить профиль." -#: src/Module/OStatus/Subscribe.php:120 +#: src/Module/OStatus/Subscribe.php:106 msgid "Unsupported network" msgstr "Сеть не поддерживается" -#: src/Module/OStatus/Subscribe.php:136 +#: src/Module/OStatus/Subscribe.php:122 msgid "Done" msgstr "Готово" -#: src/Module/OStatus/Subscribe.php:150 +#: src/Module/OStatus/Subscribe.php:136 msgid "success" msgstr "удачно" -#: src/Module/OStatus/Subscribe.php:152 +#: src/Module/OStatus/Subscribe.php:138 msgid "failed" msgstr "неудача" -#: src/Module/OStatus/Subscribe.php:155 +#: src/Module/OStatus/Subscribe.php:141 msgid "ignored" msgstr "игнорирован" -#: src/Module/Photo.php:122 +#: src/Module/OStatus/Subscribe.php:146 +msgid "Keep this window open until done." +msgstr "Держать окно открытым до завершения." + +#: src/Module/Photo.php:108 msgid "The Photo is not available." msgstr "Фото недоступно." -#: src/Module/Photo.php:147 +#: src/Module/Photo.php:133 #, php-format msgid "The Photo with id %s is not available." msgstr "Фотография с id %s недоступна." -#: src/Module/Photo.php:188 +#: src/Module/Photo.php:174 #, php-format msgid "Invalid external resource with url %s." msgstr "Проблема с внешним ресурсом по адресу %s." -#: src/Module/Photo.php:190 +#: src/Module/Photo.php:176 #, php-format msgid "Invalid photo with id %s." msgstr "Неправильное фото с id %s." -#: src/Module/Post/Edit.php:82 src/Module/Post/Edit.php:96 +#: src/Module/Post/Edit.php:68 src/Module/Post/Edit.php:82 msgid "Post not found." msgstr "Запись не найдена" -#: src/Module/Post/Edit.php:102 +#: src/Module/Post/Edit.php:88 msgid "Edit post" msgstr "Редактировать запись" -#: src/Module/Post/Edit.php:136 +#: src/Module/Post/Edit.php:122 msgid "web link" msgstr "веб-ссылка" -#: src/Module/Post/Edit.php:137 +#: src/Module/Post/Edit.php:123 msgid "Insert video link" msgstr "Вставить ссылку видео" -#: src/Module/Post/Edit.php:138 +#: src/Module/Post/Edit.php:124 msgid "video link" msgstr "видео-ссылка" -#: src/Module/Post/Edit.php:139 +#: src/Module/Post/Edit.php:125 msgid "Insert audio link" msgstr "Вставить ссылку аудио" -#: src/Module/Post/Edit.php:140 +#: src/Module/Post/Edit.php:126 msgid "audio link" msgstr "аудио-ссылка" -#: src/Module/Post/Tag/Remove.php:106 +#: src/Module/Post/Tag/Remove.php:92 msgid "Remove Item Tag" msgstr "Удалить ключевое слово" -#: src/Module/Post/Tag/Remove.php:107 +#: src/Module/Post/Tag/Remove.php:93 msgid "Select a tag to remove: " msgstr "Выберите ключевое слово для удаления: " -#: src/Module/Post/Tag/Remove.php:108 -#: src/Module/Settings/TwoFactor/Trusted.php:147 +#: src/Module/Post/Tag/Remove.php:94 +#: src/Module/Settings/TwoFactor/Trusted.php:133 msgid "Remove" msgstr "Удалить" -#: src/Module/Privacy/PermissionTooltip.php:71 +#: src/Module/Privacy/PermissionTooltip.php:57 #, php-format msgid "Wrong type \"%s\", expected one of: %s" msgstr "Ошибочный тип \"%s\", ожидался один из: %s" -#: src/Module/Privacy/PermissionTooltip.php:101 +#: src/Module/Privacy/PermissionTooltip.php:87 msgid "Model not found" msgstr "Модель не найдена" -#: src/Module/Privacy/PermissionTooltip.php:118 +#: src/Module/Privacy/PermissionTooltip.php:104 msgid "Unlisted" msgstr "Непублично" -#: src/Module/Privacy/PermissionTooltip.php:124 +#: src/Module/Privacy/PermissionTooltip.php:110 msgid "Remote privacy information not available." msgstr "Личная информация удаленно недоступна." -#: src/Module/Privacy/PermissionTooltip.php:131 +#: src/Module/Privacy/PermissionTooltip.php:117 msgid "Visible to:" msgstr "Кто может видеть:" -#: src/Module/Privacy/PermissionTooltip.php:133 +#: src/Module/Privacy/PermissionTooltip.php:119 msgid "CC:" msgstr "" -#: src/Module/Privacy/PermissionTooltip.php:134 +#: src/Module/Privacy/PermissionTooltip.php:120 msgid "BCC:" msgstr "" -#: src/Module/Privacy/PermissionTooltip.php:135 +#: src/Module/Privacy/PermissionTooltip.php:121 msgid "Audience:" msgstr "" -#: src/Module/Privacy/PermissionTooltip.php:136 +#: src/Module/Privacy/PermissionTooltip.php:122 msgid "Attributed To:" msgstr "" -#: src/Module/Privacy/PermissionTooltip.php:234 +#: src/Module/Privacy/PermissionTooltip.php:220 #, php-format msgid "Collection (%s)" msgstr "Коллекция (%s)" -#: src/Module/Privacy/PermissionTooltip.php:238 +#: src/Module/Privacy/PermissionTooltip.php:224 #, php-format msgid "Followers (%s)" msgstr "Подписчики (%s)" -#: src/Module/Privacy/PermissionTooltip.php:255 +#: src/Module/Privacy/PermissionTooltip.php:241 #, php-format msgid "%d more" msgstr "%d ещё" -#: src/Module/Profile/Contacts.php:159 +#: src/Module/Profile/Contacts.php:145 msgid "No contacts." msgstr "Нет контактов." -#: src/Module/Profile/Conversations.php:106 -#: src/Module/Profile/Conversations.php:109 src/Module/Profile/Profile.php:353 -#: src/Module/Profile/Profile.php:356 src/Protocol/Feed.php:1114 -#: src/Protocol/OStatus.php:1011 -#, php-format -msgid "%s's timeline" -msgstr "Лента %s" - -#: src/Module/Profile/Conversations.php:107 src/Module/Profile/Profile.php:354 -#: src/Protocol/Feed.php:1118 src/Protocol/OStatus.php:1016 +#: src/Module/Profile/Conversations.php:92 src/Module/Profile/Profile.php:339 +#: src/Protocol/Feed.php:1097 #, php-format msgid "%s's posts" msgstr "Записи %s" -#: src/Module/Profile/Conversations.php:108 src/Module/Profile/Profile.php:355 -#: src/Protocol/Feed.php:1121 src/Protocol/OStatus.php:1020 +#: src/Module/Profile/Conversations.php:93 src/Module/Profile/Profile.php:340 +#: src/Protocol/Feed.php:1100 #, 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:192 -#: src/Module/Settings/Profile/Photo/Index.php:58 +#: src/Module/Profile/Conversations.php:94 src/Module/Profile/Profile.php:341 +#: src/Protocol/Feed.php:1093 +#, php-format +msgid "%s's timeline" +msgstr "Лента %s" + +#: src/Module/Profile/Photos.php:150 src/Module/Profile/Photos.php:153 +#: src/Module/Profile/Photos.php:178 +#: src/Module/Settings/Profile/Photo/Index.php:44 #, php-format msgid "Image exceeds size limit of %s" msgstr "Изображение превышает лимит размера в %s" -#: src/Module/Profile/Photos.php:170 +#: src/Module/Profile/Photos.php:156 msgid "Image upload didn't complete, please try again" msgstr "Не получилось загрузить изображение, попробуйте снова" -#: src/Module/Profile/Photos.php:173 +#: src/Module/Profile/Photos.php:159 msgid "Image file is missing" msgstr "Файл изображения не найден" -#: src/Module/Profile/Photos.php:178 +#: src/Module/Profile/Photos.php:164 msgid "" "Server can't accept new file upload at this time, please contact your " "administrator" msgstr "Сервер не принимает новые файлы для загрузки в настоящий момент, пожалуйста, свяжитесь с администратором" -#: src/Module/Profile/Photos.php:200 +#: src/Module/Profile/Photos.php:186 msgid "Image file is empty." msgstr "Файл изображения пуст." -#: src/Module/Profile/Photos.php:352 +#: src/Module/Profile/Photos.php:338 msgid "View Album" msgstr "Просмотреть альбом" -#: src/Module/Profile/Profile.php:114 src/Module/Profile/Restricted.php:50 +#: src/Module/Profile/Profile.php:100 src/Module/Profile/Restricted.php:36 msgid "Profile not found." msgstr "Профиль не найден." -#: src/Module/Profile/Profile.php:160 +#: src/Module/Profile/Profile.php:146 #, php-format msgid "" "You're currently viewing your profile as %s Cancel" msgstr "Сейчас вы видите свой профиль как %s Отмена" -#: src/Module/Profile/Profile.php:169 +#: src/Module/Profile/Profile.php:155 msgid "Full Name:" msgstr "Полное имя:" -#: src/Module/Profile/Profile.php:174 +#: src/Module/Profile/Profile.php:160 msgid "Member since:" msgstr "Зарегистрирован с:" -#: src/Module/Profile/Profile.php:180 +#: src/Module/Profile/Profile.php:166 msgid "j F, Y" msgstr "j F, Y" -#: src/Module/Profile/Profile.php:181 +#: src/Module/Profile/Profile.php:167 msgid "j F" msgstr "j F" -#: src/Module/Profile/Profile.php:189 src/Util/Temporal.php:168 +#: src/Module/Profile/Profile.php:175 src/Util/Temporal.php:154 msgid "Birthday:" msgstr "День рождения:" -#: src/Module/Profile/Profile.php:192 -#: src/Module/Settings/Profile/Index.php:296 src/Util/Temporal.php:170 +#: src/Module/Profile/Profile.php:178 +#: src/Module/Settings/Profile/Index.php:282 src/Util/Temporal.php:156 msgid "Age: " msgstr "Возраст: " -#: src/Module/Profile/Profile.php:192 -#: src/Module/Settings/Profile/Index.php:296 src/Util/Temporal.php:170 +#: src/Module/Profile/Profile.php:178 +#: src/Module/Settings/Profile/Index.php:282 src/Util/Temporal.php:156 #, php-format msgid "%d year old" msgid_plural "%d years old" @@ -9355,46 +9336,46 @@ msgstr[1] "%dгода" msgstr[2] "%dлет" msgstr[3] "%dлет" -#: src/Module/Profile/Profile.php:197 -#: src/Module/Settings/Profile/Index.php:289 +#: src/Module/Profile/Profile.php:183 +#: src/Module/Settings/Profile/Index.php:275 msgid "Description:" msgstr "Описание:" -#: src/Module/Profile/Profile.php:263 +#: src/Module/Profile/Profile.php:249 msgid "Groups:" msgstr "Группы:" -#: src/Module/Profile/Profile.php:275 +#: src/Module/Profile/Profile.php:261 msgid "View profile as:" msgstr "Посмотреть профиль как:" -#: src/Module/Profile/Profile.php:292 +#: src/Module/Profile/Profile.php:278 msgid "View as" msgstr "Посмотреть как" -#: src/Module/Profile/RemoteFollow.php:82 +#: src/Module/Profile/RemoteFollow.php:68 msgid "Profile unavailable." msgstr "Профиль недоступен." -#: src/Module/Profile/RemoteFollow.php:88 +#: src/Module/Profile/RemoteFollow.php:74 msgid "Invalid locator" msgstr "Недопустимый локатор" -#: src/Module/Profile/RemoteFollow.php:95 +#: src/Module/Profile/RemoteFollow.php:81 msgid "The provided profile link doesn't seem to be valid" msgstr "Указанная ссылка на профиль не выглядит правильной" -#: src/Module/Profile/RemoteFollow.php:100 +#: src/Module/Profile/RemoteFollow.php:86 msgid "" "Remote subscription can't be done for your network. Please subscribe " "directly on your system." msgstr "Удаленная подписка не может быть выполнена на вашей сети. Пожалуйста, подпишитесь на вашей системе." -#: src/Module/Profile/RemoteFollow.php:128 +#: src/Module/Profile/RemoteFollow.php:114 msgid "Friend/Connection Request" msgstr "Запрос в друзья / на подключение" -#: src/Module/Profile/RemoteFollow.php:129 +#: src/Module/Profile/RemoteFollow.php:115 #, php-format msgid "" "Enter your Webfinger address (user@domain.tld) or profile URL here. If this " @@ -9402,579 +9383,579 @@ msgid "" " or %s directly on your system." msgstr "Введите здесь ваш Webfinger-адрес (user@domain.tld) или ссылку на профиль. Если это не поддерживается вашей системой, вам нужно подписаться на %s или %s непосредственно на вашей системе." -#: src/Module/Profile/RemoteFollow.php:130 +#: src/Module/Profile/RemoteFollow.php:116 #, php-format msgid "" "If you are not yet a member of the free social web, follow " "this link to find a public Friendica node and join us today." msgstr "Если вы ещё не член свободной социальной сети, пройдите по этой ссылке, чтобы найти публичный узел Friendica и присоединитесь к нам сегодня." -#: src/Module/Profile/RemoteFollow.php:131 +#: src/Module/Profile/RemoteFollow.php:117 msgid "Your Webfinger address or profile URL:" msgstr "Ваш адрес Webfinger или ссылка на профиль:" -#: src/Module/Profile/Restricted.php:59 +#: src/Module/Profile/Restricted.php:45 msgid "Restricted profile" msgstr "Закрытый профиль" -#: src/Module/Profile/Restricted.php:60 +#: src/Module/Profile/Restricted.php:46 msgid "" "This profile has been restricted which prevents access to their public " "content from anonymous visitors." msgstr "Доступ к этому профилю был ограничен, анонимные пользователи не могут его просматривать." -#: src/Module/Profile/Schedule.php:83 +#: src/Module/Profile/Schedule.php:69 msgid "Scheduled" msgstr "Запланировано" -#: src/Module/Profile/Schedule.php:84 +#: src/Module/Profile/Schedule.php:70 msgid "Content" msgstr "Содержание" -#: src/Module/Profile/Schedule.php:85 +#: src/Module/Profile/Schedule.php:71 msgid "Remove post" msgstr "Удалить запись" -#: src/Module/Register.php:91 +#: src/Module/Register.php:77 msgid "Only parent users can create additional accounts." msgstr "Только основные пользователи могут создавать дополнительные учётные записи." -#: src/Module/Register.php:106 src/Module/User/Import.php:112 +#: src/Module/Register.php:92 src/Module/User/Import.php:98 msgid "" "This site has exceeded the number of allowed daily account registrations. " "Please try again tomorrow." msgstr "Этот сайт превысил допустимое количество ежедневных регистраций. Пожалуйста, повторите попытку завтра." -#: src/Module/Register.php:123 +#: src/Module/Register.php:109 msgid "" "You may (optionally) fill in this form via OpenID by supplying your OpenID " "and clicking \"Register\"." msgstr "Вы можете (по желанию), заполнить эту форму с помощью OpenID, предоставив ваш OpenID и нажав кнопку \"Регистрация\"." -#: src/Module/Register.php:124 +#: src/Module/Register.php:110 msgid "" "If you are not familiar with OpenID, please leave that field blank and fill " "in the rest of the items." msgstr "Если вы не знакомы с OpenID, пожалуйста, оставьте это поле пустым и заполните остальные элементы." -#: src/Module/Register.php:125 +#: src/Module/Register.php:111 msgid "Your OpenID (optional): " msgstr "Ваш OpenID (необязательно):" -#: src/Module/Register.php:134 +#: src/Module/Register.php:120 msgid "Include your profile in member directory?" msgstr "Включить ваш профиль в каталог участников?" -#: src/Module/Register.php:155 +#: src/Module/Register.php:141 msgid "Note for the admin" msgstr "Сообщение для администратора" -#: src/Module/Register.php:155 +#: src/Module/Register.php:141 msgid "Leave a message for the admin, why you want to join this node" msgstr "Сообщения для администратора сайта на тему \"почему я хочу присоединиться к вам\"" -#: src/Module/Register.php:156 +#: src/Module/Register.php:142 msgid "Membership on this site is by invitation only." msgstr "Членство на сайте только по приглашению." -#: src/Module/Register.php:157 +#: src/Module/Register.php:143 msgid "Your invitation code: " msgstr "Ваш код приглашения:" -#: src/Module/Register.php:165 +#: src/Module/Register.php:151 msgid "Your Display Name (as you would like it to be displayed on this system" msgstr "Ваше полное имя (как вы бы хотели его видеть здесь" -#: src/Module/Register.php:166 +#: src/Module/Register.php:152 msgid "" "Your Email Address: (Initial information will be send there, so this has to " "be an existing address.)" msgstr "Ваш адрес электронной почты: (Информация для входа будет отправлена туда, это должен быть существующий адрес.)" -#: src/Module/Register.php:167 +#: src/Module/Register.php:153 msgid "Please repeat your e-mail address:" msgstr "Пожалуйста, введите адрес электронной почты ещё раз:" -#: src/Module/Register.php:169 src/Module/Security/PasswordTooLong.php:100 -#: src/Module/Settings/Account.php:569 +#: src/Module/Register.php:155 src/Module/Security/PasswordTooLong.php:86 +#: src/Module/Settings/Account.php:555 msgid "New Password:" msgstr "Новый пароль:" -#: src/Module/Register.php:169 +#: src/Module/Register.php:155 msgid "Leave empty for an auto generated password." msgstr "Оставьте пустым для автоматической генерации пароля." -#: src/Module/Register.php:170 src/Module/Security/PasswordTooLong.php:101 -#: src/Module/Settings/Account.php:570 +#: src/Module/Register.php:156 src/Module/Security/PasswordTooLong.php:87 +#: src/Module/Settings/Account.php:556 msgid "Confirm:" msgstr "Подтвердите:" -#: src/Module/Register.php:171 +#: src/Module/Register.php:157 #, php-format msgid "" "Choose a profile nickname. This must begin with a text character. Your " "profile address on this site will then be \"nickname@%s\"." msgstr "Выберите псевдоним. Он должен начинаться с буквы. Адрес вашего профиля на этом сайте будет \"псевдоним@%s\"." -#: src/Module/Register.php:172 +#: src/Module/Register.php:158 msgid "Choose a nickname: " msgstr "Выберите псевдоним: " -#: src/Module/Register.php:180 src/Module/User/Import.php:118 +#: src/Module/Register.php:166 src/Module/User/Import.php:104 msgid "Import" msgstr "Импорт" -#: src/Module/Register.php:181 +#: src/Module/Register.php:167 msgid "Import your profile to this friendica instance" msgstr "Импорт своего профиля в этот экземпляр friendica" -#: src/Module/Register.php:188 +#: src/Module/Register.php:174 msgid "Note: This node explicitly contains adult content" msgstr "Внимание: на этом сервере размещаются материалы для взрослых." -#: src/Module/Register.php:190 src/Module/Settings/Delegation.php:181 +#: src/Module/Register.php:176 src/Module/Settings/Delegation.php:167 msgid "Parent Password:" msgstr "Родительский пароль:" -#: src/Module/Register.php:190 src/Module/Settings/Delegation.php:181 +#: src/Module/Register.php:176 src/Module/Settings/Delegation.php:167 msgid "" "Please enter the password of the parent account to legitimize your request." msgstr "Пожалуйста введите пароль от родительского аккаунта для подтверждения запроса." -#: src/Module/Register.php:219 +#: src/Module/Register.php:205 msgid "Password doesn't match." msgstr "Пароль не совпадает" -#: src/Module/Register.php:225 +#: src/Module/Register.php:211 msgid "Please enter your password." msgstr "Пожалуйста, введите ваш пароль." -#: src/Module/Register.php:267 +#: src/Module/Register.php:253 msgid "You have entered too much information." msgstr "Вы ввели слишком много информации." -#: src/Module/Register.php:290 +#: src/Module/Register.php:276 msgid "Please enter the identical mail address in the second field." msgstr "Пожалуйста, введите тот же самый адрес почты во второе поле." -#: src/Module/Register.php:298 +#: src/Module/Register.php:284 msgid "Nickname cannot start with a digit." msgstr "Ник не может начинаться с цифры" -#: src/Module/Register.php:300 +#: src/Module/Register.php:286 msgid "Nickname can only contain US-ASCII characters." msgstr "Ник может содержать только латинские символы" -#: src/Module/Register.php:329 +#: src/Module/Register.php:315 msgid "The additional account was created." msgstr "Дополнительная учётная запись создана." -#: src/Module/Register.php:354 +#: src/Module/Register.php:340 msgid "" "Registration successful. Please check your email for further instructions." msgstr "Регистрация успешна. Пожалуйста, проверьте свою электронную почту для получения дальнейших инструкций." -#: src/Module/Register.php:361 +#: src/Module/Register.php:347 #, php-format msgid "" "Failed to send email message. Here your accout details:
login: %s
" "password: %s

You can change your password after login." msgstr "Ошибка отправки письма. Вот ваши учетные данные:
логин: %s
пароль: %s

Вы сможете изменить пароль после входа." -#: src/Module/Register.php:367 +#: src/Module/Register.php:353 msgid "Registration successful." msgstr "Регистрация успешна." -#: src/Module/Register.php:376 src/Module/Register.php:383 -#: src/Module/Register.php:393 +#: src/Module/Register.php:362 src/Module/Register.php:369 +#: src/Module/Register.php:379 msgid "Your registration can not be processed." msgstr "Ваша регистрация не может быть обработана." -#: src/Module/Register.php:382 +#: src/Module/Register.php:368 msgid "You have to leave a request note for the admin." msgstr "Вам нужно написать обращение к администратору." -#: src/Module/Register.php:392 +#: src/Module/Register.php:378 msgid "An internal error occured." msgstr "Возникла внутренняя ошибка." -#: src/Module/Register.php:414 +#: src/Module/Register.php:400 msgid "Your registration is pending approval by the site owner." msgstr "Ваша регистрация в ожидании одобрения владельцем сайта." -#: src/Module/Search/Acl.php:78 +#: src/Module/Search/Acl.php:64 msgid "You must be logged in to use this module." msgstr "Вам нужно войти, чтобы использовать этот модуль." -#: src/Module/Search/Index.php:69 +#: src/Module/Search/Index.php:55 msgid "Only logged in users are permitted to perform a search." msgstr "Только зарегистрированные пользователи могут использовать поиск." -#: src/Module/Search/Index.php:89 +#: src/Module/Search/Index.php:75 msgid "Only one search per minute is permitted for not logged in users." msgstr "Незарегистрированные пользователи могут выполнять поиск раз в минуту." -#: src/Module/Search/Index.php:205 +#: src/Module/Search/Index.php:191 #, php-format msgid "Items tagged with: %s" msgstr "Элементы с тегами: %s" -#: src/Module/Search/Saved.php:63 +#: src/Module/Search/Saved.php:49 msgid "Search term was not saved." msgstr "Поисковый запрос не сохранён." -#: src/Module/Search/Saved.php:66 +#: src/Module/Search/Saved.php:52 msgid "Search term already saved." msgstr "Такой запрос уже сохранён." -#: src/Module/Search/Saved.php:72 +#: src/Module/Search/Saved.php:58 msgid "Search term was not removed." msgstr "Поисковый запрос не был удалён." -#: src/Module/Security/Login.php:127 +#: src/Module/Security/Login.php:113 msgid "Create a New Account" msgstr "Создать новый аккаунт" -#: src/Module/Security/Login.php:146 +#: src/Module/Security/Login.php:132 msgid "Your OpenID: " msgstr "Ваш OpenID: " -#: src/Module/Security/Login.php:149 +#: src/Module/Security/Login.php:135 msgid "" "Please enter your username and password to add the OpenID to your existing " "account." msgstr "Пожалуйста, введите ваше имя пользователя и пароль для того, чтобы добавить OpenID к вашей учётной записи." -#: src/Module/Security/Login.php:151 +#: src/Module/Security/Login.php:137 msgid "Or login using OpenID: " msgstr "Или зайти с OpenID: " -#: src/Module/Security/Login.php:165 +#: src/Module/Security/Login.php:151 msgid "Password: " msgstr "Пароль: " -#: src/Module/Security/Login.php:166 +#: src/Module/Security/Login.php:152 msgid "Remember me" msgstr "Запомнить" -#: src/Module/Security/Login.php:175 +#: src/Module/Security/Login.php:161 msgid "Forgot your password?" msgstr "Забыли пароль?" -#: src/Module/Security/Login.php:178 +#: src/Module/Security/Login.php:164 msgid "Website Terms of Service" msgstr "Правила сайта" -#: src/Module/Security/Login.php:179 +#: src/Module/Security/Login.php:165 msgid "terms of service" msgstr "правила" -#: src/Module/Security/Login.php:181 +#: src/Module/Security/Login.php:167 msgid "Website Privacy Policy" msgstr "Политика конфиденциальности сервера" -#: src/Module/Security/Login.php:182 +#: src/Module/Security/Login.php:168 msgid "privacy policy" msgstr "политика конфиденциальности" -#: src/Module/Security/Logout.php:89 -#: src/Module/Security/TwoFactor/SignOut.php:78 -#: src/Module/Security/TwoFactor/SignOut.php:86 -#: src/Module/Security/TwoFactor/SignOut.php:108 -#: src/Module/Security/TwoFactor/SignOut.php:115 +#: src/Module/Security/Logout.php:75 +#: src/Module/Security/TwoFactor/SignOut.php:64 +#: src/Module/Security/TwoFactor/SignOut.php:72 +#: src/Module/Security/TwoFactor/SignOut.php:94 +#: src/Module/Security/TwoFactor/SignOut.php:101 msgid "Logged out." msgstr "Выход из системы." -#: src/Module/Security/OpenID.php:54 +#: src/Module/Security/OpenID.php:40 msgid "OpenID protocol error. No ID returned" msgstr "Ошибка протокола OpenID. Не возвращён ID." -#: src/Module/Security/OpenID.php:90 +#: src/Module/Security/OpenID.php:76 msgid "" "Account not found. Please login to your existing account to add the OpenID " "to it." msgstr "Учётная запись не найдена. Пожалуйста, зайдите в вашу существующую запись, чтобы добавить OpenID к ней." -#: src/Module/Security/OpenID.php:92 +#: src/Module/Security/OpenID.php:78 msgid "" "Account not found. Please register a new account or login to your existing " "account to add the OpenID to it." msgstr "Учётная запись не найдена. Пожалуйста, зарегистрируйте новую учётную запись или зайдите в существующую, чтобы добавить к ней OpenID." -#: src/Module/Security/PasswordTooLong.php:57 -#: src/Module/Settings/Account.php:67 +#: src/Module/Security/PasswordTooLong.php:43 +#: src/Module/Settings/Account.php:53 msgid "Passwords do not match." msgstr "Пароли не совпадают" -#: src/Module/Security/PasswordTooLong.php:64 +#: src/Module/Security/PasswordTooLong.php:50 msgid "Password does not need changing." msgstr "Смена пароля не требуется." -#: src/Module/Security/PasswordTooLong.php:77 -#: src/Module/Settings/Account.php:81 +#: src/Module/Security/PasswordTooLong.php:63 +#: src/Module/Settings/Account.php:67 msgid "Password unchanged." msgstr "Пароль не поменялся" -#: src/Module/Security/PasswordTooLong.php:91 +#: src/Module/Security/PasswordTooLong.php:77 msgid "Password Too Long" msgstr "Пароль слишком длинный" -#: src/Module/Security/PasswordTooLong.php:92 +#: src/Module/Security/PasswordTooLong.php:78 msgid "" "Since version 2022.09, we've realized that any password longer than 72 " "characters is truncated during hashing. To prevent any confusion about this " "behavior, please update your password to be fewer or equal to 72 characters." msgstr "С версии 2022.09 мы поняли, что пароли длиннее 72 символов обрезаются при хешировании. Чтобы избежать связанных с этим неожиданностей, пожалуйста, смените ваш пароль, чтобы его длина не превышала 72 символа." -#: src/Module/Security/PasswordTooLong.php:93 +#: src/Module/Security/PasswordTooLong.php:79 msgid "Update Password" msgstr "Изменить пароль" -#: src/Module/Security/PasswordTooLong.php:99 -#: src/Module/Settings/Account.php:571 +#: src/Module/Security/PasswordTooLong.php:85 +#: src/Module/Settings/Account.php:557 msgid "Current Password:" msgstr "Текущий пароль:" -#: src/Module/Security/PasswordTooLong.php:99 -#: src/Module/Settings/Account.php:571 +#: src/Module/Security/PasswordTooLong.php:85 +#: src/Module/Settings/Account.php:557 msgid "Your current password to confirm the changes" msgstr "Ваш текущий пароль, для подтверждения изменений" -#: src/Module/Security/PasswordTooLong.php:100 -#: src/Module/Settings/Account.php:555 +#: src/Module/Security/PasswordTooLong.php:86 +#: src/Module/Settings/Account.php:541 msgid "" "Allowed characters are a-z, A-Z, 0-9 and special characters except white " "spaces and accentuated letters." msgstr "Допустимые символы a-z, A-Z, 0-9 и специальные символы за исключением пробелов и букв с акцентами." -#: src/Module/Security/PasswordTooLong.php:100 -#: src/Module/Settings/Account.php:556 +#: src/Module/Security/PasswordTooLong.php:86 +#: src/Module/Settings/Account.php:542 msgid "Password length is limited to 72 characters." msgstr "Длина пароля ограничена 72-мя символами." -#: src/Module/Security/TwoFactor/Recovery.php:74 +#: src/Module/Security/TwoFactor/Recovery.php:60 #, php-format msgid "Remaining recovery codes: %d" msgstr "Осталось кодов для восстановления: %d" -#: src/Module/Security/TwoFactor/Recovery.php:80 -#: src/Module/Security/TwoFactor/Verify.php:77 -#: src/Module/Settings/TwoFactor/Verify.php:98 +#: src/Module/Security/TwoFactor/Recovery.php:66 +#: src/Module/Security/TwoFactor/Verify.php:63 +#: src/Module/Settings/TwoFactor/Verify.php:84 msgid "Invalid code, please retry." msgstr "Неправильный код, попробуйте ещё." -#: src/Module/Security/TwoFactor/Recovery.php:99 +#: src/Module/Security/TwoFactor/Recovery.php:85 msgid "Two-factor recovery" msgstr "Двухфакторное восстановление доступа" -#: src/Module/Security/TwoFactor/Recovery.php:100 +#: src/Module/Security/TwoFactor/Recovery.php:86 msgid "" "

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

" msgstr "

Вы можете ввести один из ваших одноразовых кодов восстановления в случае, если у вас нет доступа к мобильному устройству.

" -#: src/Module/Security/TwoFactor/Recovery.php:101 +#: src/Module/Security/TwoFactor/Recovery.php:87 #, php-format msgid "Don’t have your phone? Enter a two-factor recovery code" msgstr "Нет телефона? Введите код восстановления" -#: src/Module/Security/TwoFactor/Recovery.php:102 +#: src/Module/Security/TwoFactor/Recovery.php:88 msgid "Please enter a recovery code" msgstr "Пожалуйста, введите код восстановления" -#: src/Module/Security/TwoFactor/Recovery.php:103 +#: src/Module/Security/TwoFactor/Recovery.php:89 msgid "Submit recovery code and complete login" msgstr "Отправить код восстановления и завершить вход" -#: src/Module/Security/TwoFactor/SignOut.php:122 +#: src/Module/Security/TwoFactor/SignOut.php:108 msgid "Sign out of this browser?" msgstr "Выйти из этого браузера?" -#: src/Module/Security/TwoFactor/SignOut.php:123 +#: src/Module/Security/TwoFactor/SignOut.php:109 msgid "" "

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

" msgstr "

Если вы доверяете этому браузеру, то при следующем входе код двухфакторной аутентификации запрошен не будет.

" -#: src/Module/Security/TwoFactor/SignOut.php:124 +#: src/Module/Security/TwoFactor/SignOut.php:110 msgid "Sign out" msgstr "Выйти" -#: src/Module/Security/TwoFactor/SignOut.php:126 +#: src/Module/Security/TwoFactor/SignOut.php:112 msgid "Trust and sign out" msgstr "Доверять и выйти" -#: src/Module/Security/TwoFactor/Trust.php:96 +#: src/Module/Security/TwoFactor/Trust.php:82 msgid "Couldn't save browser to Cookie." msgstr "Не удалось сохранить браузер в Cookie" -#: src/Module/Security/TwoFactor/Trust.php:141 +#: src/Module/Security/TwoFactor/Trust.php:127 msgid "Trust this browser?" msgstr "Доверять этому браузеру?" -#: src/Module/Security/TwoFactor/Trust.php:142 +#: src/Module/Security/TwoFactor/Trust.php:128 msgid "" "

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

" msgstr "

Если вы решите доверять этому браузеру, то при следующем входе код двухфакторной аутентификации запрошен не будет.

" -#: src/Module/Security/TwoFactor/Trust.php:143 +#: src/Module/Security/TwoFactor/Trust.php:129 msgid "Not now" msgstr "Не сейчас" -#: src/Module/Security/TwoFactor/Trust.php:144 +#: src/Module/Security/TwoFactor/Trust.php:130 msgid "Don't trust" msgstr "Не доверять" -#: src/Module/Security/TwoFactor/Trust.php:145 +#: src/Module/Security/TwoFactor/Trust.php:131 msgid "Trust" msgstr "Доверять" -#: src/Module/Security/TwoFactor/Verify.php:97 +#: src/Module/Security/TwoFactor/Verify.php:83 msgid "" "

Open the two-factor authentication app on your device to get an " "authentication code and verify your identity.

" msgstr "

Откройте приложение для двухфакторной аутентификации на вашем устройстве, чтобы получить код аутентификации и подтвердить вашу личность.

" -#: src/Module/Security/TwoFactor/Verify.php:100 +#: src/Module/Security/TwoFactor/Verify.php:86 #, php-format msgid "" "If you do not have access to your authentication code you can use a two-factor recovery code." msgstr "Если у вас нет доступа к кодам аутентификации, вы можете использовать код восстановления." -#: src/Module/Security/TwoFactor/Verify.php:101 -#: src/Module/Settings/TwoFactor/Verify.php:158 +#: src/Module/Security/TwoFactor/Verify.php:87 +#: src/Module/Settings/TwoFactor/Verify.php:144 msgid "Please enter a code from your authentication app" msgstr "Пожалуйста, введите код из вашего приложения для аутентификации" -#: src/Module/Security/TwoFactor/Verify.php:102 +#: src/Module/Security/TwoFactor/Verify.php:88 msgid "Verify code and complete login" msgstr "Введите код для завершения входа" -#: src/Module/Settings/Account.php:96 +#: src/Module/Settings/Account.php:82 msgid "Please use a shorter name." msgstr "Пожалуйста, выберите имя короче." -#: src/Module/Settings/Account.php:99 +#: src/Module/Settings/Account.php:85 msgid "Name too short." msgstr "Имя слишком короткое" -#: src/Module/Settings/Account.php:108 +#: src/Module/Settings/Account.php:94 msgid "Wrong Password." msgstr "Неправильный пароль" -#: src/Module/Settings/Account.php:113 +#: src/Module/Settings/Account.php:99 msgid "Invalid email." msgstr "Неправильный адрес почты" -#: src/Module/Settings/Account.php:117 +#: src/Module/Settings/Account.php:103 msgid "Cannot change to that email." msgstr "Нельзя установить этот адрес почты" -#: src/Module/Settings/Account.php:146 src/Module/Settings/Account.php:195 -#: src/Module/Settings/Account.php:216 src/Module/Settings/Account.php:300 -#: src/Module/Settings/Account.php:329 +#: src/Module/Settings/Account.php:132 src/Module/Settings/Account.php:181 +#: src/Module/Settings/Account.php:202 src/Module/Settings/Account.php:286 +#: src/Module/Settings/Account.php:315 msgid "Settings were not updated." msgstr "Настройки не были изменены." -#: src/Module/Settings/Account.php:347 +#: src/Module/Settings/Account.php:333 msgid "Contact CSV file upload error" msgstr "Ошибка загрузки CSV с контактами" -#: src/Module/Settings/Account.php:366 +#: src/Module/Settings/Account.php:352 msgid "Importing Contacts done" msgstr "Импорт контактов завершён" -#: src/Module/Settings/Account.php:379 +#: src/Module/Settings/Account.php:365 msgid "Relocate message has been send to your contacts" msgstr "Перемещённое сообщение было отправлено списку контактов" -#: src/Module/Settings/Account.php:396 +#: src/Module/Settings/Account.php:382 msgid "Unable to find your profile. Please contact your admin." msgstr "Не получается найти ваш профиль. Пожалуйста свяжитесь с администратором." -#: src/Module/Settings/Account.php:438 +#: src/Module/Settings/Account.php:424 msgid "" "Account for a service that automatically shares content based on user " "defined channels." msgstr "Учётная запись, которая автоматически публикует контент из каналов, созданных пользователем." -#: src/Module/Settings/Account.php:448 +#: src/Module/Settings/Account.php:434 msgid "Personal Page Subtypes" msgstr "Подтипы личной страницы" -#: src/Module/Settings/Account.php:449 +#: src/Module/Settings/Account.php:435 msgid "Community Group Subtypes" msgstr "Типы групп сообществ" -#: src/Module/Settings/Account.php:460 +#: src/Module/Settings/Account.php:446 msgid "Account for a personal profile." msgstr "Личная учётная запись" -#: src/Module/Settings/Account.php:467 +#: src/Module/Settings/Account.php:453 msgid "" "Account for an organisation that automatically approves contact requests as " "\"Followers\"." msgstr "Учётная запись организации, которая автоматически одобряет новых подписчиков." -#: src/Module/Settings/Account.php:474 +#: src/Module/Settings/Account.php:460 msgid "" "Account for a news reflector that automatically approves contact requests as" " \"Followers\"." msgstr "Учётная запись новостной ленты, которая автоматически одобряет новых подписчиков." -#: src/Module/Settings/Account.php:481 +#: src/Module/Settings/Account.php:467 msgid "Account for community discussions." msgstr "Учётная запись для совместных обсуждений." -#: src/Module/Settings/Account.php:489 +#: src/Module/Settings/Account.php:475 msgid "" "Account for a regular personal profile that requires manual approval of " "\"Friends\" and \"Followers\"." msgstr "Личная учётная запись, которая требует ручного одобрения для новых подписчиков и друзей." -#: src/Module/Settings/Account.php:496 +#: src/Module/Settings/Account.php:482 msgid "" "Account for a public profile that automatically approves contact requests as" " \"Followers\"." msgstr "Учётная запись для публичного профиля, которая автоматически одобряет новых подписчиков." -#: src/Module/Settings/Account.php:503 +#: src/Module/Settings/Account.php:489 msgid "Automatically approves all contact requests." msgstr "Автоматически одобряет все запросы на подписку." -#: src/Module/Settings/Account.php:510 +#: src/Module/Settings/Account.php:496 msgid "Contact requests have to be manually approved." msgstr "Запросы на добавление одобряются вручную." -#: src/Module/Settings/Account.php:517 +#: src/Module/Settings/Account.php:503 msgid "" "Account for a popular profile that automatically approves contact requests " "as \"Friends\"." msgstr "Учётная запись для публичной личности, которая автоматически добавляет все новые контакты в друзья." -#: src/Module/Settings/Account.php:522 +#: src/Module/Settings/Account.php:508 msgid "Private Group [Experimental]" msgstr "Частная группа [экспериментально]" -#: src/Module/Settings/Account.php:524 +#: src/Module/Settings/Account.php:510 msgid "Requires manual approval of contact requests." msgstr "Требует ручного одобрения запросов на подписку." -#: src/Module/Settings/Account.php:533 +#: src/Module/Settings/Account.php:519 msgid "OpenID:" msgstr "OpenID:" -#: src/Module/Settings/Account.php:533 +#: src/Module/Settings/Account.php:519 msgid "(Optional) Allow this OpenID to login to this account." msgstr "(Необязательно) Разрешить этому OpenID входить в этот аккаунт" -#: src/Module/Settings/Account.php:541 +#: src/Module/Settings/Account.php:527 msgid "Publish your profile in your local site directory?" msgstr "Опубликовать ваш профиль в каталоге вашего сервера?" -#: src/Module/Settings/Account.php:541 +#: src/Module/Settings/Account.php:527 #, php-format msgid "" "Your profile will be published in this node's local " @@ -9982,94 +9963,94 @@ msgid "" " system settings." msgstr "Ваш профиль будет опубликован в локальном каталоге этого сервера. Данные вашего профиля могут быть доступны публично в зависимости от настроек." -#: src/Module/Settings/Account.php:547 +#: src/Module/Settings/Account.php:533 #, php-format msgid "" "Your profile will also be published in the global friendica directories " "(e.g. %s)." msgstr "Ваш профиль так же будет опубликован в глобальных каталогах Френдики (напр. %s)." -#: src/Module/Settings/Account.php:560 +#: src/Module/Settings/Account.php:546 msgid "Account Settings" msgstr "Настройки аккаунта" -#: src/Module/Settings/Account.php:561 +#: src/Module/Settings/Account.php:547 #, php-format msgid "Your Identity Address is '%s' or '%s'." msgstr "Ваш адрес: '%s' или '%s'." -#: src/Module/Settings/Account.php:568 +#: src/Module/Settings/Account.php:554 msgid "Password Settings" msgstr "Смена пароля" -#: src/Module/Settings/Account.php:570 +#: src/Module/Settings/Account.php:556 msgid "Leave password fields blank unless changing" msgstr "Оставьте поля пароля пустыми, если он не изменяется" -#: src/Module/Settings/Account.php:572 +#: src/Module/Settings/Account.php:558 msgid "Password:" msgstr "Пароль:" -#: src/Module/Settings/Account.php:572 +#: src/Module/Settings/Account.php:558 msgid "Your current password to confirm the changes of the email address" msgstr "Ваш текущий пароль для подтверждения смены адреса почты" -#: src/Module/Settings/Account.php:575 +#: src/Module/Settings/Account.php:561 msgid "Delete OpenID URL" msgstr "Удалить ссылку OpenID" -#: src/Module/Settings/Account.php:577 +#: src/Module/Settings/Account.php:563 msgid "Basic Settings" msgstr "Основные параметры" -#: src/Module/Settings/Account.php:578 -#: src/Module/Settings/Profile/Index.php:288 +#: src/Module/Settings/Account.php:564 +#: src/Module/Settings/Profile/Index.php:274 msgid "Display name:" msgstr "Отображаемое имя:" -#: src/Module/Settings/Account.php:579 +#: src/Module/Settings/Account.php:565 msgid "Email Address:" msgstr "Адрес электронной почты:" -#: src/Module/Settings/Account.php:580 +#: src/Module/Settings/Account.php:566 msgid "Your Timezone:" msgstr "Ваш часовой пояс:" -#: src/Module/Settings/Account.php:581 +#: src/Module/Settings/Account.php:567 msgid "Your Language:" msgstr "Ваш язык:" -#: src/Module/Settings/Account.php:581 +#: src/Module/Settings/Account.php:567 msgid "" "Set the language we use to show you friendica interface and to send you " "emails" msgstr "Выберите язык, на котором вы будете видеть интерфейс Friendica и на котором вы будете получать письма" -#: src/Module/Settings/Account.php:582 +#: src/Module/Settings/Account.php:568 msgid "Default Post Location:" msgstr "Местонахождение по умолчанию:" -#: src/Module/Settings/Account.php:583 +#: src/Module/Settings/Account.php:569 msgid "Use Browser Location:" msgstr "Использовать определение местоположения браузером:" -#: src/Module/Settings/Account.php:585 +#: src/Module/Settings/Account.php:571 msgid "Security and Privacy Settings" msgstr "Параметры безопасности и конфиденциальности" -#: src/Module/Settings/Account.php:587 +#: src/Module/Settings/Account.php:573 msgid "Maximum Friend Requests/Day:" msgstr "Максимум запросов в друзья в день:" -#: src/Module/Settings/Account.php:587 +#: src/Module/Settings/Account.php:573 msgid "(to prevent spam abuse)" msgstr "(для предотвращения спама)" -#: src/Module/Settings/Account.php:589 +#: src/Module/Settings/Account.php:575 msgid "Allow your profile to be searchable globally?" msgstr "Сделать ваш профиль доступным для поиска глобально?" -#: src/Module/Settings/Account.php:589 +#: src/Module/Settings/Account.php:575 msgid "" "Activate this setting if you want others to easily find and follow you. Your" " profile will be searchable on remote systems. This setting also determines " @@ -10077,43 +10058,43 @@ msgid "" "indexed or not." msgstr "Включите эту настройку, если вы хотите, чтобы другие люди могли легко вас находить. Ваш профиль станет доступным для поиска на других узлах. Так же эта настройка разрешает поисковым системам индексировать ваш профиль." -#: src/Module/Settings/Account.php:590 +#: src/Module/Settings/Account.php:576 msgid "Hide your contact/friend list from viewers of your profile?" msgstr "Скрыть список ваших контактов/друзей от просмотра в вашем профиле?" -#: src/Module/Settings/Account.php:590 +#: src/Module/Settings/Account.php:576 msgid "" "A list of your contacts is displayed on your profile page. Activate this " "option to disable the display of your contact list." msgstr "Список ваших контактов отображается на вашей странице профиля. Включите эту настройку, чтобы скрыть отображение вашего списка контактов." -#: src/Module/Settings/Account.php:591 +#: src/Module/Settings/Account.php:577 msgid "Hide your public content from anonymous viewers" msgstr "Скрыть ваши публичные записи от анонимных посетителей" -#: src/Module/Settings/Account.php:591 +#: src/Module/Settings/Account.php:577 msgid "" "Anonymous visitors will only see your basic profile details. Your public " "posts and replies will still be freely accessible on the remote servers of " "your followers and through relays." msgstr "Анонимные посетители увидят только основные данные профиля. Публичные записи и комментарии будут там скрыты, но при этом доступны на серверах ваших подписчиков и через релеи." -#: src/Module/Settings/Account.php:592 +#: src/Module/Settings/Account.php:578 msgid "Make public posts unlisted" msgstr "Скрыть публичные записи из общих лент" -#: src/Module/Settings/Account.php:592 +#: src/Module/Settings/Account.php:578 msgid "" "Your public posts will not appear on the community pages or in search " "results, nor be sent to relay servers. However they can still appear on " "public feeds on remote servers." msgstr "Ваши публичные записи не будут отражаться в общей ленте сервера или в результатах поиска, так же они не будут отправляться на ретранслтяторы. Тем не менее, они всё равно могут быть доступны в публичных лентах других серверов." -#: src/Module/Settings/Account.php:593 +#: src/Module/Settings/Account.php:579 msgid "Make all posted pictures accessible" msgstr "Сделать все опубликованные изображения доступными" -#: src/Module/Settings/Account.php:593 +#: src/Module/Settings/Account.php:579 msgid "" "This option makes every posted picture accessible via the direct link. This " "is a workaround for the problem that most other networks can't handle " @@ -10121,352 +10102,352 @@ msgid "" "public on your photo albums though." msgstr "Эта настройка делает все опубликованные изображения доступными по прямой ссылке. Это можно применить для решения проблем с другими социальными сетями, которые не умеют работать с разрешениями доступа для изображений. Непубличные изображения в любом случае не будут доступны для просмотра публично в ваших альбомах." -#: src/Module/Settings/Account.php:594 +#: src/Module/Settings/Account.php:580 msgid "Allow friends to post to your profile page?" msgstr "Разрешить друзьям оставлять сообщения на страницу вашего профиля?" -#: src/Module/Settings/Account.php:594 +#: src/Module/Settings/Account.php:580 msgid "" "Your contacts may write posts on your profile wall. These posts will be " "distributed to your contacts" msgstr "Ваши контакты могут оставлять записи на стене вашего профиля. Эти записи будут распространены вашим подписчикам." -#: src/Module/Settings/Account.php:595 +#: src/Module/Settings/Account.php:581 msgid "Allow friends to tag your posts?" msgstr "Разрешить друзьям отмечать ваши сообщения?" -#: src/Module/Settings/Account.php:595 +#: src/Module/Settings/Account.php:581 msgid "Your contacts can add additional tags to your posts." msgstr "Ваши контакты могут добавлять дополнительные теги к вашим записям." -#: src/Module/Settings/Account.php:596 +#: src/Module/Settings/Account.php:582 msgid "Default privacy circle for new contacts" msgstr "Круг по-умолчанию для новых контактов" -#: src/Module/Settings/Account.php:597 +#: src/Module/Settings/Account.php:583 msgid "Default privacy circle for new group contacts" msgstr "Круг по-умолчанию для новых групп" -#: src/Module/Settings/Account.php:598 +#: src/Module/Settings/Account.php:584 msgid "Default Post Permissions" msgstr "Разрешение на сообщения по умолчанию" -#: src/Module/Settings/Account.php:602 +#: src/Module/Settings/Account.php:588 msgid "Expiration settings" msgstr "Очистка старых записей" -#: src/Module/Settings/Account.php:603 +#: src/Module/Settings/Account.php:589 msgid "Automatically expire posts after this many days:" msgstr "Автоматическое истекание срока действия сообщения после стольких дней:" -#: src/Module/Settings/Account.php:603 +#: src/Module/Settings/Account.php:589 msgid "If empty, posts will not expire. Expired posts will be deleted" msgstr "Если пусто, срок действия сообщений не будет ограничен. Сообщения с истекшим сроком действия будут удалены" -#: src/Module/Settings/Account.php:604 +#: src/Module/Settings/Account.php:590 msgid "Expire posts" msgstr "Удалять старые записи" -#: src/Module/Settings/Account.php:604 +#: src/Module/Settings/Account.php:590 msgid "When activated, posts and comments will be expired." msgstr "Если включено, то старые записи и комментарии будут удаляться." -#: src/Module/Settings/Account.php:605 +#: src/Module/Settings/Account.php:591 msgid "Expire personal notes" msgstr "Удалять персональные заметки" -#: src/Module/Settings/Account.php:605 +#: src/Module/Settings/Account.php:591 msgid "" "When activated, the personal notes on your profile page will be expired." msgstr "Если включено, старые личные заметки из вашего профиля будут удаляться." -#: src/Module/Settings/Account.php:606 +#: src/Module/Settings/Account.php:592 msgid "Expire starred posts" msgstr "Удалять избранные записи" -#: src/Module/Settings/Account.php:606 +#: src/Module/Settings/Account.php:592 msgid "" "Starring posts keeps them from being expired. That behaviour is overwritten " "by this setting." msgstr "Добавление записи в избранные защищает её от удаления. Эта настройка выключает эту защиту." -#: src/Module/Settings/Account.php:607 +#: src/Module/Settings/Account.php:593 msgid "Only expire posts by others" msgstr "Удалять только записи других людей" -#: src/Module/Settings/Account.php:607 +#: src/Module/Settings/Account.php:593 msgid "" "When activated, your own posts never expire. Then the settings above are " "only valid for posts you received." msgstr "Если включено, ваши собственные записи никогда не удаляются. В этом случае все настройки выше применяются только к записям, которые вы получаете от других." -#: src/Module/Settings/Account.php:610 +#: src/Module/Settings/Account.php:596 msgid "Notification Settings" msgstr "Настройка уведомлений" -#: src/Module/Settings/Account.php:611 +#: src/Module/Settings/Account.php:597 msgid "Send a notification email when:" msgstr "Отправлять уведомление по электронной почте, когда:" -#: src/Module/Settings/Account.php:612 +#: src/Module/Settings/Account.php:598 msgid "You receive an introduction" msgstr "Вы получили запрос" -#: src/Module/Settings/Account.php:613 +#: src/Module/Settings/Account.php:599 msgid "Your introductions are confirmed" msgstr "Ваши запросы подтверждены" -#: src/Module/Settings/Account.php:614 +#: src/Module/Settings/Account.php:600 msgid "Someone writes on your profile wall" msgstr "Кто-то пишет на стене вашего профиля" -#: src/Module/Settings/Account.php:615 +#: src/Module/Settings/Account.php:601 msgid "Someone writes a followup comment" msgstr "Кто-то пишет последующий комментарий" -#: src/Module/Settings/Account.php:616 +#: src/Module/Settings/Account.php:602 msgid "You receive a private message" msgstr "Вы получаете личное сообщение" -#: src/Module/Settings/Account.php:617 +#: src/Module/Settings/Account.php:603 msgid "You receive a friend suggestion" msgstr "Вы получили предложение о добавлении в друзья" -#: src/Module/Settings/Account.php:618 +#: src/Module/Settings/Account.php:604 msgid "You are tagged in a post" msgstr "Вы отмечены в записи" -#: src/Module/Settings/Account.php:620 +#: src/Module/Settings/Account.php:606 msgid "Create a desktop notification when:" msgstr "Показывать уведомление при:" -#: src/Module/Settings/Account.php:621 +#: src/Module/Settings/Account.php:607 msgid "Someone tagged you" msgstr "Вас отметили" -#: src/Module/Settings/Account.php:622 +#: src/Module/Settings/Account.php:608 msgid "Someone directly commented on your post" msgstr "На вашу запись написали комментарий" -#: src/Module/Settings/Account.php:623 +#: src/Module/Settings/Account.php:609 msgid "Someone liked your content" msgstr "Ваша запись кому-то понравилась" -#: src/Module/Settings/Account.php:623 src/Module/Settings/Account.php:624 +#: src/Module/Settings/Account.php:609 src/Module/Settings/Account.php:610 msgid "Can only be enabled, when the direct comment notification is enabled." msgstr "Может быть включено только при включении уведомлений о комментариях к вашим записям." -#: src/Module/Settings/Account.php:624 +#: src/Module/Settings/Account.php:610 msgid "Someone shared your content" msgstr "Вашей записью поделились" -#: src/Module/Settings/Account.php:625 +#: src/Module/Settings/Account.php:611 msgid "Someone commented in your thread" msgstr "В обсуждении вашей записи написали комментарий" -#: src/Module/Settings/Account.php:626 +#: src/Module/Settings/Account.php:612 msgid "Someone commented in a thread where you commented" msgstr "Написали в диалоге, где вы оставляли комментарии" -#: src/Module/Settings/Account.php:627 +#: src/Module/Settings/Account.php:613 msgid "Someone commented in a thread where you interacted" msgstr "Написали в диалоге, где вы принимали любое участие" -#: src/Module/Settings/Account.php:629 +#: src/Module/Settings/Account.php:615 msgid "Activate desktop notifications" msgstr "Активировать уведомления на рабочем столе" -#: src/Module/Settings/Account.php:629 +#: src/Module/Settings/Account.php:615 msgid "Show desktop popup on new notifications" msgstr "Показывать уведомления на рабочем столе" -#: src/Module/Settings/Account.php:633 +#: src/Module/Settings/Account.php:619 msgid "Text-only notification emails" msgstr "Только текстовые письма" -#: src/Module/Settings/Account.php:635 +#: src/Module/Settings/Account.php:621 msgid "Send text only notification emails, without the html part" msgstr "Отправлять только текстовые уведомления, без HTML" -#: src/Module/Settings/Account.php:639 +#: src/Module/Settings/Account.php:625 msgid "Show detailled notifications" msgstr "Показывать подробные уведомления" -#: src/Module/Settings/Account.php:641 +#: src/Module/Settings/Account.php:627 msgid "" "Per default, notifications are condensed to a single notification per item. " "When enabled every notification is displayed." msgstr "По-умолчанию уведомления группируются в одно для каждой записи. Эта настройка показывает все уведомления по отдельности." -#: src/Module/Settings/Account.php:645 +#: src/Module/Settings/Account.php:631 msgid "Show notifications of ignored contacts" msgstr "Показывать уведомления игнорируемых контактов" -#: src/Module/Settings/Account.php:647 +#: src/Module/Settings/Account.php:633 msgid "" "You don't see posts from ignored contacts. But you still see their comments." " This setting controls if you want to still receive regular notifications " "that are caused by ignored contacts or not." msgstr "Вы не видите записи от игнорируемых контактов, но вы видите их комментарии. Эта настройка определяет, хотите ли вы получать уведомления от действий игнорируемых контактов или нет." -#: src/Module/Settings/Account.php:650 +#: src/Module/Settings/Account.php:636 msgid "Advanced Account/Page Type Settings" msgstr "Расширенные настройки учётной записи" -#: src/Module/Settings/Account.php:651 +#: src/Module/Settings/Account.php:637 msgid "Change the behaviour of this account for special situations" msgstr "Измените поведение этого аккаунта в специальных ситуациях" -#: src/Module/Settings/Account.php:654 +#: src/Module/Settings/Account.php:640 msgid "Import Contacts" msgstr "Импорт контактов" -#: src/Module/Settings/Account.php:655 +#: src/Module/Settings/Account.php:641 msgid "" "Upload a CSV file that contains the handle of your followed accounts in the " "first column you exported from the old account." msgstr "Загрузите файл CSV, который содержит адреса ваших контактов в первой колонке. Вы можете экспортировать его из вашей старой учётной записи." -#: src/Module/Settings/Account.php:656 +#: src/Module/Settings/Account.php:642 msgid "Upload File" msgstr "Загрузить файл" -#: src/Module/Settings/Account.php:659 +#: src/Module/Settings/Account.php:645 msgid "Relocate" msgstr "Перемещение" -#: src/Module/Settings/Account.php:660 +#: src/Module/Settings/Account.php:646 msgid "" "If you have moved this profile from another server, and some of your " "contacts don't receive your updates, try pushing this button." msgstr "Если вы переместили эту анкету с другого сервера, и некоторые из ваших контактов не получили ваши обновления, попробуйте нажать эту кнопку." -#: src/Module/Settings/Account.php:661 +#: src/Module/Settings/Account.php:647 msgid "Resend relocate message to contacts" msgstr "Отправить перемещённые сообщения контактам" -#: src/Module/Settings/Addons.php:86 +#: src/Module/Settings/Addons.php:72 msgid "Addon Settings" msgstr "Настройки дополнений" -#: src/Module/Settings/Addons.php:87 +#: src/Module/Settings/Addons.php:73 msgid "No Addon settings configured" msgstr "Настройки дополнений не изменены" -#: src/Module/Settings/Channels.php:148 +#: src/Module/Settings/Channels.php:134 msgid "" "This page can be used to define the channels that will automatically be " "reshared by your account." msgstr "На этой странице можно определить каналы, которые будут автоматически публиковаться этой учётной записью." -#: src/Module/Settings/Channels.php:153 +#: src/Module/Settings/Channels.php:139 msgid "This page can be used to define your own channels." msgstr "На этой странице вы можете определить свои собственные каналы" -#: src/Module/Settings/Channels.php:182 +#: src/Module/Settings/Channels.php:168 msgid "Publish" msgstr "Публиковать" -#: src/Module/Settings/Channels.php:182 +#: src/Module/Settings/Channels.php:168 msgid "" "When selected, the channel results are reshared. This only works for public " "ActivityPub posts from the public timeline or the user defined circles." msgstr "Если включено, содержимое канала будет публиковаться. Это будет работать только для публичных записей, поступивших по ActivityPub из публичной ленты или кругов пользователя." -#: src/Module/Settings/Channels.php:190 src/Module/Settings/Channels.php:211 -#: src/Module/Settings/Display.php:338 +#: src/Module/Settings/Channels.php:176 src/Module/Settings/Channels.php:197 +#: src/Module/Settings/Display.php:324 msgid "Label" msgstr "Название" -#: src/Module/Settings/Channels.php:191 src/Module/Settings/Channels.php:212 -#: src/Module/Settings/Display.php:339 -#: src/Module/Settings/TwoFactor/AppSpecific.php:137 +#: src/Module/Settings/Channels.php:177 src/Module/Settings/Channels.php:198 +#: src/Module/Settings/Display.php:325 +#: src/Module/Settings/TwoFactor/AppSpecific.php:123 msgid "Description" msgstr "Описание" -#: src/Module/Settings/Channels.php:192 src/Module/Settings/Channels.php:213 +#: src/Module/Settings/Channels.php:178 src/Module/Settings/Channels.php:199 msgid "Access Key" msgstr "Горячая клавиша" -#: src/Module/Settings/Channels.php:193 src/Module/Settings/Channels.php:214 +#: src/Module/Settings/Channels.php:179 src/Module/Settings/Channels.php:200 msgid "Circle/Channel" msgstr "Круг/Канал" -#: src/Module/Settings/Channels.php:194 src/Module/Settings/Channels.php:215 +#: src/Module/Settings/Channels.php:180 src/Module/Settings/Channels.php:201 msgid "Include Tags" msgstr "Включить теги" -#: src/Module/Settings/Channels.php:195 src/Module/Settings/Channels.php:216 +#: src/Module/Settings/Channels.php:181 src/Module/Settings/Channels.php:202 msgid "Exclude Tags" msgstr "Исключить теги" -#: src/Module/Settings/Channels.php:196 src/Module/Settings/Channels.php:217 +#: src/Module/Settings/Channels.php:182 src/Module/Settings/Channels.php:203 msgid "Minimum Size" msgstr "Минимальный размер" -#: src/Module/Settings/Channels.php:197 src/Module/Settings/Channels.php:218 +#: src/Module/Settings/Channels.php:183 src/Module/Settings/Channels.php:204 msgid "Maximum Size" msgstr "Максимальный размер" -#: src/Module/Settings/Channels.php:198 src/Module/Settings/Channels.php:219 +#: src/Module/Settings/Channels.php:184 src/Module/Settings/Channels.php:205 msgid "Full Text Search" msgstr "Полнотекстовый поиск" -#: src/Module/Settings/Channels.php:202 src/Module/Settings/Channels.php:223 +#: src/Module/Settings/Channels.php:188 src/Module/Settings/Channels.php:209 msgid "Select all languages that you want to see in this channel." msgstr "Выберите все языки, которые вы хотите видеть в этом канале." -#: src/Module/Settings/Channels.php:204 +#: src/Module/Settings/Channels.php:190 msgid "Delete channel" msgstr "Удалить канал" -#: src/Module/Settings/Channels.php:204 +#: src/Module/Settings/Channels.php:190 msgid "Check to delete this entry from the channel list" msgstr "Отметьте, чтобы удалить этот канал из списка" -#: src/Module/Settings/Channels.php:211 +#: src/Module/Settings/Channels.php:197 msgid "Short name for the channel. It is displayed on the channels widget." msgstr "Короткое название для канала, будет отображаться в их списке." -#: src/Module/Settings/Channels.php:212 +#: src/Module/Settings/Channels.php:198 msgid "This should describe the content of the channel in a few word." msgstr "Описание содержимого канала в нескольких словах." -#: src/Module/Settings/Channels.php:213 +#: src/Module/Settings/Channels.php:199 msgid "" "When you want to access this channel via an access key, you can define it " "here. Pay attention to not use an already used one." msgstr "Если вы хотите сделать доступ к каналу по горячей клавише, определите её здесь. Будьте внимательны и не берите уже используемую где-то клавишу." -#: src/Module/Settings/Channels.php:214 +#: src/Module/Settings/Channels.php:200 msgid "Select a circle or channel, that your channel should be based on." msgstr "Выберите круг или канал, на основе которого будет создан этот." -#: src/Module/Settings/Channels.php:215 +#: src/Module/Settings/Channels.php:201 msgid "" "Comma separated list of tags. A post will be used when it contains any of " "the listed tags." msgstr "Список тегов через запятую. Запись попадёт в канал, если в ней есть любой из них." -#: src/Module/Settings/Channels.php:216 +#: src/Module/Settings/Channels.php:202 msgid "" "Comma separated list of tags. If a post contain any of these tags, then it " "will not be part of nthis channel." msgstr "Список тегов через запятую. Запись не попадёт в канал, если в ней есть любой из них." -#: src/Module/Settings/Channels.php:217 +#: src/Module/Settings/Channels.php:203 msgid "" "Minimum post size. Leave empty for no minimum size. The size is calculated " "without links, attached posts, mentions or hashtags." msgstr "Минимальный размер записи. Оставьте пустым для отключения. Размер считается без учёта ссылок, приложенных записей, отметок и тегов." -#: src/Module/Settings/Channels.php:218 +#: src/Module/Settings/Channels.php:204 msgid "" "Maximum post size. Leave empty for no maximum size. The size is calculated " "without links, attached posts, mentions or hashtags." msgstr "Максимальный размер записи. Оставьте пустым для отключения. Размер считается без учёта ссылок, приложенных записей, отметок и тегов." -#: src/Module/Settings/Channels.php:219 +#: src/Module/Settings/Channels.php:205 #, php-format msgid "" "Search terms for the body, supports the \"boolean mode\" operators from " @@ -10474,600 +10455,589 @@ msgid "" "keywords: %s" msgstr "Поисковый запрос для записей, можно использовать операторы \"boolean mode\" для MariaDB. Справка по операторам и ключевым словам: %s" -#: src/Module/Settings/Channels.php:220 +#: src/Module/Settings/Channels.php:206 msgid "Check to display images in the channel." msgstr "Отметьте для включения записей с картинками." -#: src/Module/Settings/Channels.php:221 +#: src/Module/Settings/Channels.php:207 msgid "Check to display videos in the channel." msgstr "Отметьте для включения записей с видео." -#: src/Module/Settings/Channels.php:222 +#: src/Module/Settings/Channels.php:208 msgid "Check to display audio in the channel." msgstr "Отметьте для включения записей со аудио." -#: src/Module/Settings/Channels.php:227 +#: src/Module/Settings/Channels.php:213 msgid "Add new entry to the channel list" msgstr "Добавить в список каналов" -#: src/Module/Settings/Channels.php:228 +#: src/Module/Settings/Channels.php:214 msgid "Add" msgstr "Добавить" -#: src/Module/Settings/Channels.php:230 +#: src/Module/Settings/Channels.php:216 msgid "Current Entries in the channel list" msgstr "Текущий список каналов" -#: src/Module/Settings/Channels.php:233 +#: src/Module/Settings/Channels.php:219 msgid "Delete entry from the channel list" msgstr "Удалить из списка каналов" -#: src/Module/Settings/Channels.php:234 +#: src/Module/Settings/Channels.php:220 msgid "Delete entry from the channel list?" msgstr "Удалить запись из списка каналов?" -#: src/Module/Settings/Connectors.php:122 +#: src/Module/Settings/Connectors.php:108 msgid "Failed to connect with email account using the settings provided." msgstr "Не удалось подключиться к аккаунту e-mail, используя указанные настройки." -#: src/Module/Settings/Connectors.php:169 -#: src/Module/Settings/Connectors.php:170 +#: src/Module/Settings/Connectors.php:155 +#: src/Module/Settings/Connectors.php:156 msgid "Diaspora (Socialhome, Hubzilla)" msgstr "Diaspora (Socialhome, Hubzilla)" -#: src/Module/Settings/Connectors.php:169 -#: src/Module/Settings/Connectors.php:173 +#: src/Module/Settings/Connectors.php:155 #, php-format msgid "Built-in support for %s connectivity is enabled" msgstr "Встроенная поддержка для %s включена" -#: src/Module/Settings/Connectors.php:170 -#: src/Module/Settings/Connectors.php:172 +#: src/Module/Settings/Connectors.php:156 #, php-format msgid "Built-in support for %s connectivity is disabled" msgstr "Встроенная поддержка для %s отключена" -#: src/Module/Settings/Connectors.php:172 -#: src/Module/Settings/Connectors.php:173 -msgid "OStatus (GNU Social)" -msgstr "OStatus (GNU Social)" - -#: src/Module/Settings/Connectors.php:185 +#: src/Module/Settings/Connectors.php:167 msgid "Email access is disabled on this site." msgstr "Доступ эл. почты отключен на этом сайте." -#: src/Module/Settings/Connectors.php:200 -#: src/Module/Settings/Connectors.php:254 +#: src/Module/Settings/Connectors.php:182 +#: src/Module/Settings/Connectors.php:233 msgid "None" msgstr "Ничего" -#: src/Module/Settings/Connectors.php:204 +#: src/Module/Settings/Connectors.php:186 msgid "Default (Mastodon will display the title and a link to the post)" msgstr "По-умолчанию (Mastodon будет показывать запись как заголовок и ссылку на статью)" -#: src/Module/Settings/Connectors.php:205 +#: src/Module/Settings/Connectors.php:187 msgid "" "Use the summary (Mastodon and some others will treat it as content warning)" msgstr "Показывать выдержку (Mastodon и некоторые другие платформы покажут это как предупреждение о контенте)" -#: src/Module/Settings/Connectors.php:206 +#: src/Module/Settings/Connectors.php:188 msgid "Embed the title in the body" msgstr "Добавлять заголовок в текст записи" -#: src/Module/Settings/Connectors.php:218 +#: src/Module/Settings/Connectors.php:199 msgid "General Social Media Settings" msgstr "Общие настройки социальных медиа" -#: src/Module/Settings/Connectors.php:221 +#: src/Module/Settings/Connectors.php:202 msgid "Followed content scope" msgstr "Какие записи показывать в ленте" -#: src/Module/Settings/Connectors.php:223 +#: src/Module/Settings/Connectors.php:204 msgid "" "By default, conversations in which your follows participated but didn't " "start will be shown in your timeline. You can turn this behavior off, or " "expand it to the conversations in which your follows liked a post." msgstr "По-умолчанию в вашу ленту попадают и записи, которые ваши контакты не создали сами, а лишь прокомментировали. Вы можете отключить это, либо наоборот расширить до загрузки записей, которым ваши контакты поставили отметку \"нравится\"." -#: src/Module/Settings/Connectors.php:225 +#: src/Module/Settings/Connectors.php:206 msgid "Only conversations my follows started" msgstr "Только записи, созданные моими контактами" -#: src/Module/Settings/Connectors.php:226 +#: src/Module/Settings/Connectors.php:207 msgid "Conversations my follows started or commented on (default)" msgstr "Записи, которые мои контакты создали или прокомментировали (по-умолчанию)" -#: src/Module/Settings/Connectors.php:227 +#: src/Module/Settings/Connectors.php:208 msgid "Any conversation my follows interacted with, including likes" msgstr "Любые записи, с которыми мои контакты взаимодействовали, включая лайки" -#: src/Module/Settings/Connectors.php:230 +#: src/Module/Settings/Connectors.php:211 msgid "Collapse sensitive posts" msgstr "Сворачивать чувствительные записи" -#: src/Module/Settings/Connectors.php:230 +#: src/Module/Settings/Connectors.php:211 msgid "" "If a post is marked as \"sensitive\", it will be displayed in a collapsed " "state, if this option is enabled." msgstr "Если это включено и запись помечена как \"чувствительная\", она будет отображаться в свёрнутом виде." -#: src/Module/Settings/Connectors.php:231 +#: src/Module/Settings/Connectors.php:212 msgid "Enable intelligent shortening" msgstr "Включить умное сокращение" -#: src/Module/Settings/Connectors.php:231 +#: src/Module/Settings/Connectors.php:212 msgid "" "Normally the system tries to find the best link to add to shortened posts. " "If disabled, every shortened post will always point to the original " "friendica post." msgstr "Обычно система пытается найти лучшую ссылку для добавления к сокращенной записи. Если эта настройка включена, то каждая сокращенная запись будет указывать на оригинальную запись в Friendica." -#: src/Module/Settings/Connectors.php:232 +#: src/Module/Settings/Connectors.php:213 msgid "Enable simple text shortening" msgstr "Включить простое сокращение текста" -#: src/Module/Settings/Connectors.php:232 +#: src/Module/Settings/Connectors.php:213 msgid "" "Normally the system shortens posts at the next line feed. If this option is " "enabled then the system will shorten the text at the maximum character " "limit." msgstr "Обычно система обрезает записи на следующей строке. Если эта настройка включена, система будет сокращать записи по достижении лимита символов." -#: src/Module/Settings/Connectors.php:233 +#: src/Module/Settings/Connectors.php:214 msgid "Attach the link title" msgstr "Присоединять заголовок ссылок" -#: src/Module/Settings/Connectors.php:233 +#: src/Module/Settings/Connectors.php:214 msgid "" "When activated, the title of the attached link will be added as a title on " "posts to Diaspora. This is mostly helpful with \"remote-self\" contacts that" " share feed content." msgstr "Если включено. заголовок добавленной ссылки будет добавлен к записи в Диаспоре как заголовок. Это в основном нужно для контактов \"мой двойник\", которые публикуют содержимое ленты." -#: src/Module/Settings/Connectors.php:234 +#: src/Module/Settings/Connectors.php:215 msgid "API: Use spoiler field as title" msgstr "API: Использовать спойлер как заголовок" -#: src/Module/Settings/Connectors.php:234 +#: src/Module/Settings/Connectors.php:215 msgid "" "When activated, the \"spoiler_text\" field in the API will be used for the " "title on standalone posts. When deactivated it will be used for spoiler " "text. For comments it will always be used for spoiler text." msgstr "Если включено, поле \"spoiler_text\" в API будет использоваться как заголовок для отдельных записей. Если отключено, то оно будет использоваться как спойлер. Для комментариев оно всегда используется как спойлер." -#: src/Module/Settings/Connectors.php:235 +#: src/Module/Settings/Connectors.php:216 msgid "API: Automatically links at the end of the post as attached posts" msgstr "API: Автоматически загружать ссылки в конце записей" -#: src/Module/Settings/Connectors.php:235 +#: src/Module/Settings/Connectors.php:216 msgid "" "When activated, added links at the end of the post react the same way as " "added links in the web interface." msgstr "Если включено, ссылки в конце записей будут обрабатываться так же, как ссылки, добавленные через веб-интерфейс." -#: src/Module/Settings/Connectors.php:236 +#: src/Module/Settings/Connectors.php:217 msgid "Article Mode" msgstr "Режим статей" -#: src/Module/Settings/Connectors.php:236 +#: src/Module/Settings/Connectors.php:217 msgid "" "Controls how posts with titles are transmitted. Mastodon and its forks don't" " display the content of these posts if the post is created in the correct " "(default) way." msgstr "Как будут передаваться записи, у которых указан заголовок. Mastodon и похожие платформы не показывают содержимое таких записей, если они созданы в обычном формате (по-умолчанию), оставляя лишь ссылку на них." -#: src/Module/Settings/Connectors.php:237 +#: src/Module/Settings/Connectors.php:218 msgid "Your legacy ActivityPub/GNU Social account" msgstr "Ваша старая учётная запись ActivityPub/GNU Social" -#: src/Module/Settings/Connectors.php:237 +#: src/Module/Settings/Connectors.php:218 msgid "" "If you enter your old account name from an ActivityPub based system or your " "GNU Social/Statusnet account name here (in the format user@domain.tld), your" " contacts will be added automatically. The field will be emptied when done." msgstr "Если вы введете тут вашу старую учетную запись от платформы совместимой с ActivityPub или GNU Social/Statusnet (в виде пользователь@домен), ваши контакты оттуда будут автоматически добавлены. Поле будет очищено когда все контакты будут добавлены." -#: src/Module/Settings/Connectors.php:239 -msgid "Repair OStatus subscriptions" -msgstr "Починить подписки OStatus" - -#: src/Module/Settings/Connectors.php:243 +#: src/Module/Settings/Connectors.php:222 msgid "Email/Mailbox Setup" msgstr "Настройка эл. почты / почтового ящика" -#: src/Module/Settings/Connectors.php:244 +#: src/Module/Settings/Connectors.php:223 msgid "" "If you wish to communicate with email contacts using this service " "(optional), please specify how to connect to your mailbox." msgstr "Если вы хотите общаться с Email контактами, используя этот сервис (по желанию), пожалуйста, уточните, как подключиться к вашему почтовому ящику." -#: src/Module/Settings/Connectors.php:245 +#: src/Module/Settings/Connectors.php:224 msgid "Last successful email check:" msgstr "Последняя успешная проверка электронной почты:" -#: src/Module/Settings/Connectors.php:247 +#: src/Module/Settings/Connectors.php:226 msgid "IMAP server name:" msgstr "Имя IMAP сервера:" -#: src/Module/Settings/Connectors.php:248 +#: src/Module/Settings/Connectors.php:227 msgid "IMAP port:" msgstr "Порт IMAP:" -#: src/Module/Settings/Connectors.php:249 +#: src/Module/Settings/Connectors.php:228 msgid "Security:" msgstr "Безопасность:" -#: src/Module/Settings/Connectors.php:250 +#: src/Module/Settings/Connectors.php:229 msgid "Email login name:" msgstr "Логин эл. почты:" -#: src/Module/Settings/Connectors.php:251 +#: src/Module/Settings/Connectors.php:230 msgid "Email password:" msgstr "Пароль эл. почты:" -#: src/Module/Settings/Connectors.php:252 +#: src/Module/Settings/Connectors.php:231 msgid "Reply-to address:" msgstr "Адрес для ответа:" -#: src/Module/Settings/Connectors.php:253 +#: src/Module/Settings/Connectors.php:232 msgid "Send public posts to all email contacts:" msgstr "Отправлять открытые сообщения на все контакты электронной почты:" -#: src/Module/Settings/Connectors.php:254 +#: src/Module/Settings/Connectors.php:233 msgid "Action after import:" msgstr "Действие после импорта:" -#: src/Module/Settings/Connectors.php:254 +#: src/Module/Settings/Connectors.php:233 msgid "Move to folder" msgstr "Переместить в папку" -#: src/Module/Settings/Connectors.php:255 +#: src/Module/Settings/Connectors.php:234 msgid "Move to folder:" msgstr "Переместить в папку:" -#: src/Module/Settings/Delegation.php:73 +#: src/Module/Settings/Delegation.php:59 msgid "Delegation successfully granted." msgstr "Делегирование успешно предоставлено." -#: src/Module/Settings/Delegation.php:75 +#: src/Module/Settings/Delegation.php:61 msgid "Parent user not found, unavailable or password doesn't match." msgstr "Родительский пользователь не найден, недоступен или пароль не совпадает." -#: src/Module/Settings/Delegation.php:79 +#: src/Module/Settings/Delegation.php:65 msgid "Delegation successfully revoked." msgstr "Делегирование успешно отменено." -#: src/Module/Settings/Delegation.php:98 -#: src/Module/Settings/Delegation.php:120 +#: src/Module/Settings/Delegation.php:84 +#: src/Module/Settings/Delegation.php:106 msgid "" "Delegated administrators can view but not change delegation permissions." msgstr "Администраторы-делегаты могут видеть, но не менять разрешения делегирования." -#: src/Module/Settings/Delegation.php:112 +#: src/Module/Settings/Delegation.php:98 msgid "Delegate user not found." msgstr "Пользователь-делегат не найден." -#: src/Module/Settings/Delegation.php:169 +#: src/Module/Settings/Delegation.php:155 msgid "No parent user" msgstr "Нет родительского пользователя" -#: src/Module/Settings/Delegation.php:180 -#: src/Module/Settings/Delegation.php:191 +#: src/Module/Settings/Delegation.php:166 +#: src/Module/Settings/Delegation.php:177 msgid "Parent User" msgstr "Родительский пользователь" -#: src/Module/Settings/Delegation.php:188 +#: src/Module/Settings/Delegation.php:174 msgid "Additional Accounts" msgstr "Дополнительные учётные записи" -#: src/Module/Settings/Delegation.php:189 +#: src/Module/Settings/Delegation.php:175 msgid "" "Register additional accounts that are automatically connected to your " "existing account so you can manage them from this account." msgstr "Регистрируйте дополнительные учётные записи, которые будут автоматически соединены с вашей основной учётной записью и вы сможете ими из неё управлять." -#: src/Module/Settings/Delegation.php:190 +#: src/Module/Settings/Delegation.php:176 msgid "Register an additional account" msgstr "Зарегистрируйте дополнительную учётную запись" -#: src/Module/Settings/Delegation.php:192 +#: src/Module/Settings/Delegation.php:178 msgid "" "Parent users have total control about this account, including the account " "settings. Please double check whom you give this access." msgstr "Родительские пользователи имеют полное управление этим профилем, включая все его настройки. Будьте очень осторожны с предоставлением этого доступа." -#: src/Module/Settings/Delegation.php:195 +#: src/Module/Settings/Delegation.php:181 msgid "Delegates" msgstr "Делегаты" -#: src/Module/Settings/Delegation.php:196 +#: src/Module/Settings/Delegation.php:182 msgid "" "Delegates are able to manage all aspects of this account/page except for " "basic account settings. Please do not delegate your personal account to " "anybody that you do not trust completely." msgstr "Доверенные лица могут управлять всеми аспектами этого аккаунта/страницы, за исключением основных настроек аккаунта. Пожалуйста, не предоставляйте доступ в личный кабинет тому, кому вы не полностью доверяете." -#: src/Module/Settings/Delegation.php:197 +#: src/Module/Settings/Delegation.php:183 msgid "Existing Page Delegates" msgstr "Существующие уполномоченные страницы" -#: src/Module/Settings/Delegation.php:198 +#: src/Module/Settings/Delegation.php:184 msgid "Potential Delegates" msgstr "Возможные доверенные лица" -#: src/Module/Settings/Delegation.php:199 +#: src/Module/Settings/Delegation.php:185 msgid "No entries." msgstr "Нет записей." -#: src/Module/Settings/Display.php:183 +#: src/Module/Settings/Display.php:169 msgid "The theme you chose isn't available." msgstr "Выбранная вами тема недоступна." -#: src/Module/Settings/Display.php:223 +#: src/Module/Settings/Display.php:209 #, php-format msgid "%s - (Unsupported)" msgstr "%s - (Не поддерживается)" -#: src/Module/Settings/Display.php:260 +#: src/Module/Settings/Display.php:246 msgid "No preview" msgstr "Нет предпросмотра" -#: src/Module/Settings/Display.php:261 +#: src/Module/Settings/Display.php:247 msgid "No image" msgstr "Без изображения" -#: src/Module/Settings/Display.php:262 +#: src/Module/Settings/Display.php:248 msgid "Small Image" msgstr "Маленькое изображение" -#: src/Module/Settings/Display.php:263 +#: src/Module/Settings/Display.php:249 msgid "Large Image" msgstr "Большое изображение" -#: src/Module/Settings/Display.php:308 +#: src/Module/Settings/Display.php:294 msgid "Display Settings" msgstr "Внешний вид" -#: src/Module/Settings/Display.php:310 +#: src/Module/Settings/Display.php:296 msgid "General Theme Settings" msgstr "Общие настройки тем" -#: src/Module/Settings/Display.php:311 +#: src/Module/Settings/Display.php:297 msgid "Custom Theme Settings" msgstr "Личные настройки тем" -#: src/Module/Settings/Display.php:312 +#: src/Module/Settings/Display.php:298 msgid "Content Settings" msgstr "Настройки контента" -#: src/Module/Settings/Display.php:313 view/theme/duepuntozero/config.php:86 -#: view/theme/frio/config.php:151 view/theme/quattro/config.php:88 -#: view/theme/vier/config.php:136 +#: src/Module/Settings/Display.php:299 view/theme/duepuntozero/config.php:74 +#: view/theme/frio/config.php:139 view/theme/quattro/config.php:76 +#: view/theme/vier/config.php:124 msgid "Theme settings" msgstr "Настройки темы" -#: src/Module/Settings/Display.php:314 +#: src/Module/Settings/Display.php:300 msgid "Timelines" msgstr "Ленты" -#: src/Module/Settings/Display.php:321 +#: src/Module/Settings/Display.php:307 msgid "Display Theme:" msgstr "Показать тему:" -#: src/Module/Settings/Display.php:322 +#: src/Module/Settings/Display.php:308 msgid "Mobile Theme:" msgstr "Мобильная тема:" -#: src/Module/Settings/Display.php:325 +#: src/Module/Settings/Display.php:311 msgid "Number of items to display per page:" msgstr "Количество элементов, отображаемых на одной странице:" -#: src/Module/Settings/Display.php:325 src/Module/Settings/Display.php:326 +#: src/Module/Settings/Display.php:311 src/Module/Settings/Display.php:312 msgid "Maximum of 100 items" msgstr "Максимум 100 элементов" -#: src/Module/Settings/Display.php:326 +#: src/Module/Settings/Display.php:312 msgid "Number of items to display per page when viewed from mobile device:" msgstr "Количество элементов на странице, когда просмотр осуществляется с мобильных устройств:" -#: src/Module/Settings/Display.php:327 +#: src/Module/Settings/Display.php:313 msgid "Update browser every xx seconds" msgstr "Обновление браузера каждые хх секунд" -#: src/Module/Settings/Display.php:327 +#: src/Module/Settings/Display.php:313 msgid "Minimum of 10 seconds. Enter -1 to disable it." msgstr "Минимум 10 секунд. Введите -1 для отключения." -#: src/Module/Settings/Display.php:328 +#: src/Module/Settings/Display.php:314 msgid "Display emoticons" msgstr "Показывать смайлики" -#: src/Module/Settings/Display.php:328 +#: src/Module/Settings/Display.php:314 msgid "When enabled, emoticons are replaced with matching symbols." msgstr "Когда включено, соответствующие символы отображаются как смайлики." -#: src/Module/Settings/Display.php:329 +#: src/Module/Settings/Display.php:315 msgid "Infinite scroll" msgstr "Бесконечная прокрутка" -#: src/Module/Settings/Display.php:329 +#: src/Module/Settings/Display.php:315 msgid "Automatic fetch new items when reaching the page end." msgstr "Автоматически подгружать новые записи, когда вы оказываетесь в конце страницы." -#: src/Module/Settings/Display.php:330 +#: src/Module/Settings/Display.php:316 msgid "Enable Smart Threading" msgstr "Включить умное ветвление обсуждений" -#: src/Module/Settings/Display.php:330 +#: src/Module/Settings/Display.php:316 msgid "Enable the automatic suppression of extraneous thread indentation." msgstr "Включить автоматическое удаление излишних отступов в ветках обсуждений." -#: src/Module/Settings/Display.php:331 +#: src/Module/Settings/Display.php:317 msgid "Display the Dislike feature" msgstr "Показывать \"Не нравится\"" -#: src/Module/Settings/Display.php:331 +#: src/Module/Settings/Display.php:317 msgid "" "Display the Dislike button and dislike reactions on posts and comments." msgstr "Показывать кнопку \"Не нравится\" и соответствующие реакции на записях и комментариях." -#: src/Module/Settings/Display.php:332 +#: src/Module/Settings/Display.php:318 msgid "Display the resharer" msgstr "Показывать поделившегося" -#: src/Module/Settings/Display.php:332 +#: src/Module/Settings/Display.php:318 msgid "Display the first resharer as icon and text on a reshared item." msgstr "Показывать первого из поделившихся записью в виде значка над этой записью." -#: src/Module/Settings/Display.php:333 +#: src/Module/Settings/Display.php:319 msgid "Stay local" msgstr "Оставаться локально" -#: src/Module/Settings/Display.php:333 +#: src/Module/Settings/Display.php:319 msgid "Don't go to a remote system when following a contact link." msgstr "Не переходить на другие серверы по ссылкам профилей." -#: src/Module/Settings/Display.php:334 +#: src/Module/Settings/Display.php:320 msgid "Show the post deletion checkbox" msgstr "Показывать отметку для удаления записи" -#: src/Module/Settings/Display.php:334 +#: src/Module/Settings/Display.php:320 msgid "Display the checkbox for the post deletion on the network page." msgstr "Показывать галочку отметки записей для удаления на странице ленты" -#: src/Module/Settings/Display.php:335 +#: src/Module/Settings/Display.php:321 msgid "DIsplay the event list" msgstr "Показывать события" -#: src/Module/Settings/Display.php:335 +#: src/Module/Settings/Display.php:321 msgid "Display the birthday reminder and event list on the network page." msgstr "Показывать напоминания о днях рождения и список событий на странице ленты." -#: src/Module/Settings/Display.php:336 +#: src/Module/Settings/Display.php:322 msgid "Link preview mode" msgstr "Предпросмотр ссылок" -#: src/Module/Settings/Display.php:336 +#: src/Module/Settings/Display.php:322 msgid "Appearance of the link preview that is added to each post with a link." msgstr "Внешний вид предпросмотра ссылок, который появляется в записях со ссылками." -#: src/Module/Settings/Display.php:341 +#: src/Module/Settings/Display.php:327 msgid "Bookmark" msgstr "Главное меню" -#: src/Module/Settings/Display.php:343 +#: src/Module/Settings/Display.php:329 msgid "" "Enable timelines that you want to see in the channels widget. Bookmark " "timelines that you want to see in the top menu." msgstr "Включите ленты, которые вы хотите видеть в меню каналов слева, выберите ленты, которые будут отображаться в главном меню сверху." -#: src/Module/Settings/Display.php:345 +#: src/Module/Settings/Display.php:331 msgid "Channel languages:" msgstr "Языки каналов:" -#: src/Module/Settings/Display.php:345 +#: src/Module/Settings/Display.php:331 msgid "Select all languages that you want to see in your channels." msgstr "Выберите все языки, которые вы хотите видеть в своих каналах." -#: src/Module/Settings/Display.php:347 +#: src/Module/Settings/Display.php:333 msgid "Beginning of week:" msgstr "Начало недели:" -#: src/Module/Settings/Display.php:348 +#: src/Module/Settings/Display.php:334 msgid "Default calendar view:" msgstr "Вид календаря по-умолчанию:" -#: src/Module/Settings/Features.php:73 +#: src/Module/Settings/Features.php:59 msgid "Additional Features" msgstr "Дополнительные возможности" -#: src/Module/Settings/OAuth.php:71 +#: src/Module/Settings/OAuth.php:57 msgid "Connected Apps" msgstr "Подключенные приложения" -#: src/Module/Settings/OAuth.php:75 +#: src/Module/Settings/OAuth.php:61 msgid "Remove authorization" msgstr "Удалить авторизацию" -#: src/Module/Settings/Profile/Index.php:116 +#: src/Module/Settings/Profile/Index.php:102 msgid "Display Name is required." msgstr "Необходимо указать имя" -#: src/Module/Settings/Profile/Index.php:170 +#: src/Module/Settings/Profile/Index.php:156 msgid "Profile couldn't be updated." msgstr "Профиль не получилось обновить." -#: src/Module/Settings/Profile/Index.php:210 -#: src/Module/Settings/Profile/Index.php:231 +#: src/Module/Settings/Profile/Index.php:196 +#: src/Module/Settings/Profile/Index.php:217 msgid "Label:" msgstr "Поле:" -#: src/Module/Settings/Profile/Index.php:211 -#: src/Module/Settings/Profile/Index.php:232 +#: src/Module/Settings/Profile/Index.php:197 +#: src/Module/Settings/Profile/Index.php:218 msgid "Value:" msgstr "Значение:" -#: src/Module/Settings/Profile/Index.php:222 -#: src/Module/Settings/Profile/Index.php:243 +#: src/Module/Settings/Profile/Index.php:208 +#: src/Module/Settings/Profile/Index.php:229 msgid "Field Permissions" msgstr "Право просмотра поля" -#: src/Module/Settings/Profile/Index.php:223 -#: src/Module/Settings/Profile/Index.php:244 +#: src/Module/Settings/Profile/Index.php:209 +#: src/Module/Settings/Profile/Index.php:230 msgid "(click to open/close)" msgstr "(нажмите, чтобы открыть / закрыть)" -#: src/Module/Settings/Profile/Index.php:229 +#: src/Module/Settings/Profile/Index.php:215 msgid "Add a new profile field" msgstr "Добавить новое поле профиля" -#: src/Module/Settings/Profile/Index.php:252 +#: src/Module/Settings/Profile/Index.php:238 msgid "" "The homepage is verified. A rel=\"me\" link back to your Friendica profile " "page was found on the homepage." msgstr "Домашняя страница подтверждена. Ссылка с атрибутом rel=\"me\", указывающая на ваш профиль Friendica, была найдена на странице." -#: src/Module/Settings/Profile/Index.php:254 +#: src/Module/Settings/Profile/Index.php:240 #, php-format msgid "" "To verify your homepage, add a rel=\"me\" link to it, pointing to your " "profile URL (%s)." msgstr "Для верификации вашей домашней страницы добавьте на неё ссылку с атрибутом rel=\"me\" указывающую на ваш профиль (%s)." -#: src/Module/Settings/Profile/Index.php:260 +#: src/Module/Settings/Profile/Index.php:246 msgid "Profile Actions" msgstr "Действия профиля" -#: src/Module/Settings/Profile/Index.php:261 +#: src/Module/Settings/Profile/Index.php:247 msgid "Edit Profile Details" msgstr "Редактировать детали профиля" -#: src/Module/Settings/Profile/Index.php:263 +#: src/Module/Settings/Profile/Index.php:249 msgid "Change Profile Photo" msgstr "Изменить фото профиля" -#: src/Module/Settings/Profile/Index.php:266 +#: src/Module/Settings/Profile/Index.php:252 msgid "Profile picture" msgstr "Картинка профиля" -#: src/Module/Settings/Profile/Index.php:267 +#: src/Module/Settings/Profile/Index.php:253 msgid "Location" msgstr "Местонахождение" -#: src/Module/Settings/Profile/Index.php:268 src/Util/Temporal.php:97 -#: src/Util/Temporal.php:99 +#: src/Module/Settings/Profile/Index.php:254 src/Util/Temporal.php:83 +#: src/Util/Temporal.php:85 msgid "Miscellaneous" msgstr "Разное" -#: src/Module/Settings/Profile/Index.php:269 +#: src/Module/Settings/Profile/Index.php:255 msgid "Custom Profile Fields" msgstr "Произвольные поля профиля" -#: src/Module/Settings/Profile/Index.php:270 src/Module/Welcome.php:58 +#: src/Module/Settings/Profile/Index.php:256 src/Module/Welcome.php:44 msgid "Upload Profile Photo" msgstr "Загрузить фото профиля" -#: src/Module/Settings/Profile/Index.php:271 +#: src/Module/Settings/Profile/Index.php:257 #, php-format msgid "" "

Custom fields appear on your profile page.

\n" @@ -11077,396 +11047,396 @@ msgid "" "\t\t\t\t

Non-public fields can only be seen by the selected Friendica contacts or the Friendica contacts in the selected circles.

" msgstr "

Произвольные поля видны на вашей странице профиля.

\n\t\t\t\t

Вы можете использовать BBCode в значениях полей.

\n\t\t\t\t

Меняйте порядок перетаскиванием.

\n\t\t\t\t

Сотрите название для удаления поля.

\n\t\t\t\t

Закрытые поля будут видны только выбранным контактам из Friendica, либо контактам из выбранных кругов.

" -#: src/Module/Settings/Profile/Index.php:291 +#: src/Module/Settings/Profile/Index.php:277 msgid "Street Address:" msgstr "Адрес:" -#: src/Module/Settings/Profile/Index.php:292 +#: src/Module/Settings/Profile/Index.php:278 msgid "Locality/City:" msgstr "Город / Населенный пункт:" -#: src/Module/Settings/Profile/Index.php:293 +#: src/Module/Settings/Profile/Index.php:279 msgid "Region/State:" msgstr "Район / Область:" -#: src/Module/Settings/Profile/Index.php:294 +#: src/Module/Settings/Profile/Index.php:280 msgid "Postal/Zip Code:" msgstr "Почтовый индекс:" -#: src/Module/Settings/Profile/Index.php:295 +#: src/Module/Settings/Profile/Index.php:281 msgid "Country:" msgstr "Страна:" -#: src/Module/Settings/Profile/Index.php:297 +#: src/Module/Settings/Profile/Index.php:283 msgid "XMPP (Jabber) address:" msgstr "Адрес XMPP (Jabber):" -#: src/Module/Settings/Profile/Index.php:297 +#: src/Module/Settings/Profile/Index.php:283 msgid "" "The XMPP address will be published so that people can follow you there." msgstr "Этот адрес XMPP будет виден в профиле, чтобы другие люди могли вас там найти." -#: src/Module/Settings/Profile/Index.php:298 +#: src/Module/Settings/Profile/Index.php:284 msgid "Matrix (Element) address:" msgstr "Адрес Matrix (Element):" -#: src/Module/Settings/Profile/Index.php:298 +#: src/Module/Settings/Profile/Index.php:284 msgid "" "The Matrix address will be published so that people can follow you there." msgstr "Этот адрес Matrix будет виден в профиле, чтобы другие люди могли вас там найти." -#: src/Module/Settings/Profile/Index.php:299 +#: src/Module/Settings/Profile/Index.php:285 msgid "Homepage URL:" msgstr "Адрес домашней странички:" -#: src/Module/Settings/Profile/Index.php:300 +#: src/Module/Settings/Profile/Index.php:286 msgid "Public Keywords:" msgstr "Общественные ключевые слова:" -#: src/Module/Settings/Profile/Index.php:300 +#: src/Module/Settings/Profile/Index.php:286 msgid "(Used for suggesting potential friends, can be seen by others)" msgstr "(Используется для предложения потенциальным друзьям, могут увидеть другие)" -#: src/Module/Settings/Profile/Index.php:301 +#: src/Module/Settings/Profile/Index.php:287 msgid "Private Keywords:" msgstr "Личные ключевые слова:" -#: src/Module/Settings/Profile/Index.php:301 +#: src/Module/Settings/Profile/Index.php:287 msgid "(Used for searching profiles, never shown to others)" msgstr "(Используется для поиска профилей, никогда не показывается другим)" -#: src/Module/Settings/Profile/Photo/Crop.php:107 -#: src/Module/Settings/Profile/Photo/Crop.php:125 -#: src/Module/Settings/Profile/Photo/Crop.php:143 -#: src/Module/Settings/Profile/Photo/Index.php:100 +#: src/Module/Settings/Profile/Photo/Crop.php:93 +#: src/Module/Settings/Profile/Photo/Crop.php:111 +#: src/Module/Settings/Profile/Photo/Crop.php:129 +#: src/Module/Settings/Profile/Photo/Index.php:86 #, php-format msgid "Image size reduction [%s] failed." msgstr "Уменьшение размера изображения [%s] не удалось." -#: src/Module/Settings/Profile/Photo/Crop.php:150 +#: src/Module/Settings/Profile/Photo/Crop.php:136 msgid "" "Shift-reload the page or clear browser cache if the new photo does not " "display immediately." msgstr "Перезагрузите страницу с зажатой клавишей \"Shift\" для того, чтобы увидеть свое новое фото немедленно." -#: src/Module/Settings/Profile/Photo/Crop.php:155 +#: src/Module/Settings/Profile/Photo/Crop.php:141 msgid "Unable to process image" msgstr "Не удается обработать изображение" -#: src/Module/Settings/Profile/Photo/Crop.php:174 +#: src/Module/Settings/Profile/Photo/Crop.php:160 msgid "Photo not found." msgstr "Фото не найдено." -#: src/Module/Settings/Profile/Photo/Crop.php:196 +#: src/Module/Settings/Profile/Photo/Crop.php:182 msgid "Profile picture successfully updated." msgstr "Картинка профиля успешно обновлена." -#: src/Module/Settings/Profile/Photo/Crop.php:222 -#: src/Module/Settings/Profile/Photo/Crop.php:226 +#: src/Module/Settings/Profile/Photo/Crop.php:208 +#: src/Module/Settings/Profile/Photo/Crop.php:212 msgid "Crop Image" msgstr "Обрезать изображение" -#: src/Module/Settings/Profile/Photo/Crop.php:223 +#: src/Module/Settings/Profile/Photo/Crop.php:209 msgid "Please adjust the image cropping for optimum viewing." msgstr "Пожалуйста, настройте обрезку изображения для оптимального просмотра." -#: src/Module/Settings/Profile/Photo/Crop.php:225 +#: src/Module/Settings/Profile/Photo/Crop.php:211 msgid "Use Image As Is" msgstr "Использовать картинку как есть" -#: src/Module/Settings/Profile/Photo/Index.php:46 +#: src/Module/Settings/Profile/Photo/Index.php:32 msgid "Missing uploaded image." msgstr "Отсутствует загруженное изображение" -#: src/Module/Settings/Profile/Photo/Index.php:123 +#: src/Module/Settings/Profile/Photo/Index.php:109 msgid "Profile Picture Settings" msgstr "Настройки картинки профиля" -#: src/Module/Settings/Profile/Photo/Index.php:124 +#: src/Module/Settings/Profile/Photo/Index.php:110 msgid "Current Profile Picture" msgstr "Текущая картинка профиля" -#: src/Module/Settings/Profile/Photo/Index.php:125 +#: src/Module/Settings/Profile/Photo/Index.php:111 msgid "Upload Profile Picture" msgstr "Загрузить картинку профиля" -#: src/Module/Settings/Profile/Photo/Index.php:126 +#: src/Module/Settings/Profile/Photo/Index.php:112 msgid "Upload Picture:" msgstr "Загрузить картинку:" -#: src/Module/Settings/Profile/Photo/Index.php:131 +#: src/Module/Settings/Profile/Photo/Index.php:117 msgid "or" msgstr "или" -#: src/Module/Settings/Profile/Photo/Index.php:133 +#: src/Module/Settings/Profile/Photo/Index.php:119 msgid "skip this step" msgstr "пропустить этот шаг" -#: src/Module/Settings/Profile/Photo/Index.php:135 +#: src/Module/Settings/Profile/Photo/Index.php:121 msgid "select a photo from your photo albums" msgstr "выберите фото из ваших фотоальбомов" -#: src/Module/Settings/RemoveMe.php:76 +#: src/Module/Settings/RemoveMe.php:62 msgid "" "There was a validation error, please make sure you're logged in with the " "account you want to remove and try again." msgstr "Возникла ошибка валидации, пожалуйста, проверьте, что вы зашли под учётной записью, которую хотите удалить, и попробуйте ещё." -#: src/Module/Settings/RemoveMe.php:76 +#: src/Module/Settings/RemoveMe.php:62 msgid "If this error persists, please contact your administrator." msgstr "Если эта ошибка сохраняется, пожалуйста, свяжитесь с администратором." -#: src/Module/Settings/RemoveMe.php:90 -#: src/Navigation/Notifications/Repository/Notify.php:471 -#: src/Navigation/Notifications/Repository/Notify.php:492 +#: src/Module/Settings/RemoveMe.php:76 +#: src/Navigation/Notifications/Repository/Notify.php:457 +#: src/Navigation/Notifications/Repository/Notify.php:478 msgid "[Friendica System Notify]" msgstr "[Системное уведомление Friendica]" -#: src/Module/Settings/RemoveMe.php:90 +#: src/Module/Settings/RemoveMe.php:76 msgid "User deleted their account" msgstr "Пользователь удалил свою учётную запись" -#: src/Module/Settings/RemoveMe.php:91 +#: src/Module/Settings/RemoveMe.php:77 msgid "" "On your Friendica node an user deleted their account. Please ensure that " "their data is removed from the backups." msgstr "Пользователь удалил свою учётную запись на вашем сервере Friendica. Пожалуйста, убедитесь, что их данные будут удалены из резервных копий." -#: src/Module/Settings/RemoveMe.php:92 +#: src/Module/Settings/RemoveMe.php:78 #, php-format msgid "The user id is %d" msgstr "id пользователя: %d" -#: src/Module/Settings/RemoveMe.php:105 +#: src/Module/Settings/RemoveMe.php:91 msgid "Your account has been successfully removed. Bye bye!" msgstr "Ваша учётная запись была успешно удалена. Всего хорошего!" -#: src/Module/Settings/RemoveMe.php:130 +#: src/Module/Settings/RemoveMe.php:116 msgid "Remove My Account" msgstr "Удалить мой аккаунт" -#: src/Module/Settings/RemoveMe.php:131 +#: src/Module/Settings/RemoveMe.php:117 msgid "" "This will completely remove your account. Once this has been done it is not " "recoverable." msgstr "Это позволит полностью удалить ваш аккаунт. Как только это будет сделано, аккаунт восстановлению не подлежит." -#: src/Module/Settings/RemoveMe.php:136 +#: src/Module/Settings/RemoveMe.php:122 msgid "Please enter your password for verification:" msgstr "Пожалуйста, введите свой пароль для проверки:" -#: src/Module/Settings/Server/Action.php:60 +#: src/Module/Settings/Server/Action.php:46 msgid "Do you want to ignore this server?" msgstr "Вы хотите игнорировать этот сервер?" -#: src/Module/Settings/Server/Action.php:64 +#: src/Module/Settings/Server/Action.php:50 msgid "Do you want to unignore this server?" msgstr "Вы хотите прекратить игнорировать этот сервер?" -#: src/Module/Settings/Server/Action.php:74 -#: src/Module/Settings/Server/Index.php:104 +#: src/Module/Settings/Server/Action.php:60 +#: src/Module/Settings/Server/Index.php:90 msgid "Remote server settings" msgstr "Настройки сервера" -#: src/Module/Settings/Server/Action.php:77 +#: src/Module/Settings/Server/Action.php:63 msgid "Server URL" msgstr "URL сервера" -#: src/Module/Settings/Server/Index.php:78 +#: src/Module/Settings/Server/Index.php:64 msgid "Settings saved" msgstr "Настройки сохранены" -#: src/Module/Settings/Server/Index.php:105 +#: src/Module/Settings/Server/Index.php:91 msgid "" "Here you can find all the remote servers you have taken individual " "moderation actions against. For a list of servers your node has blocked, " "please check out the Information page." msgstr "Здесь вы можете найти все серверы, к которым вы применяли действия модерации. Чтобы посмотреть список серверов, которые заблокировал ваш узел, пожалуйста, посмотрите страницу информации об узле." -#: src/Module/Settings/Server/Index.php:110 +#: src/Module/Settings/Server/Index.php:96 msgid "Delete all your settings for the remote server" msgstr "Удалить ваши настройки для удалённого сервера" -#: src/Module/Settings/Server/Index.php:111 +#: src/Module/Settings/Server/Index.php:97 msgid "Save changes" msgstr "Сохранить изменения" -#: src/Module/Settings/TwoFactor/AppSpecific.php:69 -#: src/Module/Settings/TwoFactor/Recovery.php:67 -#: src/Module/Settings/TwoFactor/Trusted.php:70 -#: src/Module/Settings/TwoFactor/Verify.php:72 +#: src/Module/Settings/TwoFactor/AppSpecific.php:55 +#: src/Module/Settings/TwoFactor/Recovery.php:53 +#: src/Module/Settings/TwoFactor/Trusted.php:56 +#: src/Module/Settings/TwoFactor/Verify.php:58 msgid "Please enter your password to access this page." msgstr "Пожалуйста, введите ваш пароль для доступа к этой странице." -#: src/Module/Settings/TwoFactor/AppSpecific.php:87 +#: src/Module/Settings/TwoFactor/AppSpecific.php:73 msgid "App-specific password generation failed: The description is empty." msgstr "Создание пароля приложения не удалось: не указано описание" -#: src/Module/Settings/TwoFactor/AppSpecific.php:90 +#: src/Module/Settings/TwoFactor/AppSpecific.php:76 msgid "" "App-specific password generation failed: This description already exists." msgstr "Создание пароля приложения не удалось: такое описание уже есть." -#: src/Module/Settings/TwoFactor/AppSpecific.php:94 +#: src/Module/Settings/TwoFactor/AppSpecific.php:80 msgid "New app-specific password generated." msgstr "Новый пароль приложения сгенерирован" -#: src/Module/Settings/TwoFactor/AppSpecific.php:100 +#: src/Module/Settings/TwoFactor/AppSpecific.php:86 msgid "App-specific passwords successfully revoked." msgstr "Пароли для приложений успешно отозваны" -#: src/Module/Settings/TwoFactor/AppSpecific.php:110 +#: src/Module/Settings/TwoFactor/AppSpecific.php:96 msgid "App-specific password successfully revoked." msgstr "Пароль для приложения успешно отозван" -#: src/Module/Settings/TwoFactor/AppSpecific.php:131 +#: src/Module/Settings/TwoFactor/AppSpecific.php:117 msgid "Two-factor app-specific passwords" msgstr "Пароли для приложений" -#: src/Module/Settings/TwoFactor/AppSpecific.php:133 +#: src/Module/Settings/TwoFactor/AppSpecific.php:119 msgid "" "

App-specific passwords are randomly generated passwords used instead your" " regular password to authenticate your account on third-party applications " "that don't support two-factor authentication.

" msgstr "

Пароли для приложений это случайно сгенерированные пароли, используемые вместо основного пароля для приложений, которые не поддерживают двухфакторную аутентификацию.

" -#: src/Module/Settings/TwoFactor/AppSpecific.php:134 +#: src/Module/Settings/TwoFactor/AppSpecific.php:120 msgid "" "Make sure to copy your new app-specific password now. You won’t be able to " "see it again!" msgstr "Убедитесь, что вы скопировали этот новый пароль сейчас. Вы больше его не увидите!" -#: src/Module/Settings/TwoFactor/AppSpecific.php:138 +#: src/Module/Settings/TwoFactor/AppSpecific.php:124 msgid "Last Used" msgstr "Последнее использование" -#: src/Module/Settings/TwoFactor/AppSpecific.php:139 +#: src/Module/Settings/TwoFactor/AppSpecific.php:125 msgid "Revoke" msgstr "Отозвать" -#: src/Module/Settings/TwoFactor/AppSpecific.php:140 +#: src/Module/Settings/TwoFactor/AppSpecific.php:126 msgid "Revoke All" msgstr "Отозвать все" -#: src/Module/Settings/TwoFactor/AppSpecific.php:143 +#: src/Module/Settings/TwoFactor/AppSpecific.php:129 msgid "" "When you generate a new app-specific password, you must use it right away, " "it will be shown to you once after you generate it." msgstr "Когда вы создадите новый пароль приложения, вам нужно использовать его сразу же. Он будет показан один раз после его создания." -#: src/Module/Settings/TwoFactor/AppSpecific.php:144 +#: src/Module/Settings/TwoFactor/AppSpecific.php:130 msgid "Generate new app-specific password" msgstr "Создать новый пароль приложения" -#: src/Module/Settings/TwoFactor/AppSpecific.php:145 +#: src/Module/Settings/TwoFactor/AppSpecific.php:131 msgid "Friendiqa on my Fairphone 2..." msgstr "Friendiqa на моём Fairphone 2..." -#: src/Module/Settings/TwoFactor/AppSpecific.php:146 +#: src/Module/Settings/TwoFactor/AppSpecific.php:132 msgid "Generate" msgstr "Сгенерировать" -#: src/Module/Settings/TwoFactor/Index.php:88 +#: src/Module/Settings/TwoFactor/Index.php:74 msgid "Two-factor authentication successfully disabled." msgstr "Двухфакторная аутентификация успешно выключена." -#: src/Module/Settings/TwoFactor/Index.php:141 +#: src/Module/Settings/TwoFactor/Index.php:127 msgid "" "

Use an application on a mobile device to get two-factor authentication " "codes when prompted on login.

" msgstr "

Используйте приложение на мобильном устройстве для получения кодов второго фактора при входе.

" -#: src/Module/Settings/TwoFactor/Index.php:145 +#: src/Module/Settings/TwoFactor/Index.php:131 msgid "Authenticator app" msgstr "Приложение аутентификации" -#: src/Module/Settings/TwoFactor/Index.php:146 +#: src/Module/Settings/TwoFactor/Index.php:132 msgid "Configured" msgstr "Настроено" -#: src/Module/Settings/TwoFactor/Index.php:146 +#: src/Module/Settings/TwoFactor/Index.php:132 msgid "Not Configured" msgstr "Не настроено" -#: src/Module/Settings/TwoFactor/Index.php:147 +#: src/Module/Settings/TwoFactor/Index.php:133 msgid "

You haven't finished configuring your authenticator app.

" msgstr "

Вы не закончили настройку приложения для аутентификации.

" -#: src/Module/Settings/TwoFactor/Index.php:148 +#: src/Module/Settings/TwoFactor/Index.php:134 msgid "

Your authenticator app is correctly configured.

" msgstr "

Ваше приложение для аутентификации настроено.

" -#: src/Module/Settings/TwoFactor/Index.php:150 +#: src/Module/Settings/TwoFactor/Index.php:136 msgid "Recovery codes" msgstr "Коды восстановления" -#: src/Module/Settings/TwoFactor/Index.php:151 +#: src/Module/Settings/TwoFactor/Index.php:137 msgid "Remaining valid codes" msgstr "Оставшиеся коды восстановления" -#: src/Module/Settings/TwoFactor/Index.php:153 +#: src/Module/Settings/TwoFactor/Index.php:139 msgid "" "

These one-use codes can replace an authenticator app code in case you " "have lost access to it.

" msgstr "

Эти одноразовые коды могут заменить приложение для аутентификации, если вы его потеряете.

" -#: src/Module/Settings/TwoFactor/Index.php:155 +#: src/Module/Settings/TwoFactor/Index.php:141 msgid "App-specific passwords" msgstr "Пароли для приложений" -#: src/Module/Settings/TwoFactor/Index.php:156 +#: src/Module/Settings/TwoFactor/Index.php:142 msgid "Generated app-specific passwords" msgstr "Пароли для приложений" -#: src/Module/Settings/TwoFactor/Index.php:158 +#: src/Module/Settings/TwoFactor/Index.php:144 msgid "" "

These randomly generated passwords allow you to authenticate on apps not " "supporting two-factor authentication.

" msgstr "

Эти случайно сгенерированные пароли могут быть использованы в приложениях, не поддерживающих двухфакторную аутентификацию.

" -#: src/Module/Settings/TwoFactor/Index.php:161 +#: src/Module/Settings/TwoFactor/Index.php:147 msgid "Current password:" msgstr "Текущий пароль:" -#: src/Module/Settings/TwoFactor/Index.php:161 +#: src/Module/Settings/TwoFactor/Index.php:147 msgid "" "You need to provide your current password to change two-factor " "authentication settings." msgstr "Вам нужно ввести ваш текущий пароль для изменения настроек аутентификации." -#: src/Module/Settings/TwoFactor/Index.php:162 +#: src/Module/Settings/TwoFactor/Index.php:148 msgid "Enable two-factor authentication" msgstr "Включить двухфакторную аутентификацию" -#: src/Module/Settings/TwoFactor/Index.php:163 +#: src/Module/Settings/TwoFactor/Index.php:149 msgid "Disable two-factor authentication" msgstr "Отключить двухфакторную аутентификацию" -#: src/Module/Settings/TwoFactor/Index.php:164 +#: src/Module/Settings/TwoFactor/Index.php:150 msgid "Show recovery codes" msgstr "Показать коды восстановления" -#: src/Module/Settings/TwoFactor/Index.php:165 +#: src/Module/Settings/TwoFactor/Index.php:151 msgid "Manage app-specific passwords" msgstr "Управление паролями приложений" -#: src/Module/Settings/TwoFactor/Index.php:166 +#: src/Module/Settings/TwoFactor/Index.php:152 msgid "Manage trusted browsers" msgstr "Управление доверенными браузерами" -#: src/Module/Settings/TwoFactor/Index.php:167 +#: src/Module/Settings/TwoFactor/Index.php:153 msgid "Finish app configuration" msgstr "Закончить настройку приложения" -#: src/Module/Settings/TwoFactor/Recovery.php:83 +#: src/Module/Settings/TwoFactor/Recovery.php:69 msgid "New recovery codes successfully generated." msgstr "Новые коды восстановления успешно сгенерированы." -#: src/Module/Settings/TwoFactor/Recovery.php:109 +#: src/Module/Settings/TwoFactor/Recovery.php:95 msgid "Two-factor recovery codes" msgstr "Коды восстановления для ДФА" -#: src/Module/Settings/TwoFactor/Recovery.php:111 +#: src/Module/Settings/TwoFactor/Recovery.php:97 msgid "" "

Recovery codes can be used to access your account in the event you lose " "access to your device and cannot receive two-factor authentication " @@ -11475,68 +11445,68 @@ msgid "" "account.

" msgstr "

Коды восстановления могут быть использованы для входа в случае, если вы потеряли доступ к приложению и не можете получить коды второго фактора.

Храните их в безопасном месте! Если вы потеряете устройство с приложением и эти коды, то вы потеряете доступ к вашей учётной записи.

" -#: src/Module/Settings/TwoFactor/Recovery.php:113 +#: src/Module/Settings/TwoFactor/Recovery.php:99 msgid "" "When you generate new recovery codes, you must copy the new codes. Your old " "codes won’t work anymore." msgstr "Когда вы создаёте новые коды восстановления, вам нужно их сохранить. Ранее созданные коды больше не будут работать." -#: src/Module/Settings/TwoFactor/Recovery.php:114 +#: src/Module/Settings/TwoFactor/Recovery.php:100 msgid "Generate new recovery codes" msgstr "Сгенерировать новые коды восстановления." -#: src/Module/Settings/TwoFactor/Recovery.php:116 +#: src/Module/Settings/TwoFactor/Recovery.php:102 msgid "Next: Verification" msgstr "Далее: Проверка" -#: src/Module/Settings/TwoFactor/Trusted.php:87 +#: src/Module/Settings/TwoFactor/Trusted.php:73 msgid "Trusted browsers successfully removed." msgstr "Доверенные браузеры успешно удалены." -#: src/Module/Settings/TwoFactor/Trusted.php:97 +#: src/Module/Settings/TwoFactor/Trusted.php:83 msgid "Trusted browser successfully removed." msgstr "Доверенный браузер успешно удалён." -#: src/Module/Settings/TwoFactor/Trusted.php:139 +#: src/Module/Settings/TwoFactor/Trusted.php:125 msgid "Two-factor Trusted Browsers" msgstr "Доверенные браузеры" -#: src/Module/Settings/TwoFactor/Trusted.php:140 +#: src/Module/Settings/TwoFactor/Trusted.php:126 msgid "" "Trusted browsers are individual browsers you chose to skip two-factor " "authentication to access Friendica. Please use this feature sparingly, as it" " can negate the benefit of two-factor authentication." msgstr "Доверенные браузеры это браузеры, где вы можете пропускать использование двухфакторной аутентификации. Используйте эту возможность с осторожностью, так как это может лишить преимуществ двухфакторной аутентификации." -#: src/Module/Settings/TwoFactor/Trusted.php:141 +#: src/Module/Settings/TwoFactor/Trusted.php:127 msgid "Device" msgstr "Устройство" -#: src/Module/Settings/TwoFactor/Trusted.php:142 +#: src/Module/Settings/TwoFactor/Trusted.php:128 msgid "OS" msgstr "ОС" -#: src/Module/Settings/TwoFactor/Trusted.php:144 +#: src/Module/Settings/TwoFactor/Trusted.php:130 msgid "Trusted" msgstr "Доверие" -#: src/Module/Settings/TwoFactor/Trusted.php:145 +#: src/Module/Settings/TwoFactor/Trusted.php:131 msgid "Created At" msgstr "Создано" -#: src/Module/Settings/TwoFactor/Trusted.php:146 +#: src/Module/Settings/TwoFactor/Trusted.php:132 msgid "Last Use" msgstr "Последнее использование" -#: src/Module/Settings/TwoFactor/Trusted.php:148 +#: src/Module/Settings/TwoFactor/Trusted.php:134 msgid "Remove All" msgstr "Удалить все" -#: src/Module/Settings/TwoFactor/Verify.php:94 +#: src/Module/Settings/TwoFactor/Verify.php:80 msgid "Two-factor authentication successfully activated." msgstr "Двухфакторная аутентификация успешно включена." -#: src/Module/Settings/TwoFactor/Verify.php:128 +#: src/Module/Settings/TwoFactor/Verify.php:114 #, php-format msgid "" "

Or you can submit the authentication settings manually:

\n" @@ -11556,105 +11526,105 @@ msgid "" "" msgstr "

Или вы можете ввести настройки аутентификации вручную:

\n
\n\t
Issuer
\n\t
%s
\n\t
Account Name
\n\t
%s
\n\t
Secret Key
\n\t
%s
\n\t
Type
\n\t
Time-based
\n\t
Number of digits
\n\t
6
\n\t
Hashing algorithm
\n\t
SHA-1
\n
" -#: src/Module/Settings/TwoFactor/Verify.php:148 +#: src/Module/Settings/TwoFactor/Verify.php:134 msgid "Two-factor code verification" msgstr "Проверка кода второго фактора" -#: src/Module/Settings/TwoFactor/Verify.php:150 +#: src/Module/Settings/TwoFactor/Verify.php:136 msgid "" "

Please scan this QR Code with your authenticator app and submit the " "provided code.

" msgstr "

Пожалуйста, отсканируйте этот QR-код вашим приложением для аутентификации и введите полученный код.

" -#: src/Module/Settings/TwoFactor/Verify.php:152 +#: src/Module/Settings/TwoFactor/Verify.php:138 #, php-format msgid "" "

Or you can open the following URL in your mobile device:

%s

" msgstr "

Или вы можете открыть следующую ссылку на вашем мобильном устройстве:

%s

" -#: src/Module/Settings/TwoFactor/Verify.php:159 +#: src/Module/Settings/TwoFactor/Verify.php:145 msgid "Verify code and enable two-factor authentication" msgstr "Проверить код и включить двухфакторную аутентификацию" -#: src/Module/Settings/UserExport.php:90 +#: src/Module/Settings/UserExport.php:76 msgid "Export account" msgstr "Экспорт аккаунта" -#: src/Module/Settings/UserExport.php:90 +#: src/Module/Settings/UserExport.php:76 msgid "" "Export your account info and contacts. Use this to make a backup of your " "account and/or to move it to another server." msgstr "Экспорт ваших регистрационных данные и контактов. Используйте, чтобы создать резервную копию вашего аккаунта и/или переместить его на другой сервер." -#: src/Module/Settings/UserExport.php:91 +#: src/Module/Settings/UserExport.php:77 msgid "Export all" msgstr "Экспорт всего" -#: src/Module/Settings/UserExport.php:91 +#: src/Module/Settings/UserExport.php:77 msgid "" "Export your account info, contacts and all your items as json. Could be a " "very big file, and could take a lot of time. Use this to make a full backup " "of your account (photos are not exported)" msgstr "Выгрузить информацию о вашей учётной записи, контактах и всех ваших записях как файл JSON. Это может занять много времени и создать очень большой файл. Используйте это для создания резервной копии вашей учётной записи (изображения в неё не войдут)." -#: src/Module/Settings/UserExport.php:92 +#: src/Module/Settings/UserExport.php:78 msgid "Export Contacts to CSV" msgstr "Экспорт контактов в CSV" -#: src/Module/Settings/UserExport.php:92 +#: src/Module/Settings/UserExport.php:78 msgid "" "Export the list of the accounts you are following as CSV file. Compatible to" " e.g. Mastodon." msgstr "Выгрузить список пользователей, на которых вы подписаны, в CSV-файл. Совместимо с Mastodon и др." -#: src/Module/Special/DisplayNotFound.php:35 +#: src/Module/Special/DisplayNotFound.php:21 msgid "The top-level post isn't visible." msgstr "Родительская запись скрыта." -#: src/Module/Special/DisplayNotFound.php:36 +#: src/Module/Special/DisplayNotFound.php:22 msgid "The top-level post was deleted." msgstr "Родительская запись была удалена." -#: src/Module/Special/DisplayNotFound.php:37 +#: src/Module/Special/DisplayNotFound.php:23 msgid "" "This node has blocked the top-level author or the author of the shared post." msgstr "Этот узел заблокировал автора основной записи или поделившегося ей." -#: src/Module/Special/DisplayNotFound.php:38 +#: src/Module/Special/DisplayNotFound.php:24 msgid "" "You have ignored or blocked the top-level author or the author of the shared" " post." msgstr "Вы игнорируете или заблокировали автора основной записи или поделившегося ей." -#: src/Module/Special/DisplayNotFound.php:39 +#: src/Module/Special/DisplayNotFound.php:25 msgid "" "You have ignored the top-level author's server or the shared post author's " "server." msgstr "Вы игорируете сервер автора основной записи или сервер поделившегося ей." -#: src/Module/Special/DisplayNotFound.php:45 +#: src/Module/Special/DisplayNotFound.php:31 msgid "Conversation Not Found" msgstr "Запись не найдена" -#: src/Module/Special/DisplayNotFound.php:46 +#: src/Module/Special/DisplayNotFound.php:32 msgid "Unfortunately, the requested conversation isn't available to you." msgstr "К сожалению, эта запись вам недоступна." -#: src/Module/Special/DisplayNotFound.php:47 +#: src/Module/Special/DisplayNotFound.php:33 msgid "Possible reasons include:" msgstr "Возможные причины этого:" -#: src/Module/Special/HTTPException.php:78 +#: src/Module/Special/HTTPException.php:64 msgid "Stack trace:" msgstr "Stack trace:" -#: src/Module/Special/HTTPException.php:83 +#: src/Module/Special/HTTPException.php:69 #, php-format msgid "Exception thrown in %s:%d" msgstr "Exception thrown in %s:%d" -#: src/Module/Tos.php:58 src/Module/Tos.php:107 +#: src/Module/Tos.php:44 src/Module/Tos.php:93 msgid "" "At the time of registration, and for providing communications between the " "user account and their contacts, the user has to provide a display name (pen" @@ -11667,14 +11637,14 @@ msgid "" "settings, it is not necessary for communication." msgstr "При регистрации и для организации взаимодействия между пользователем и другими контактами, пользователь должен указать отображаемое имя (псевдоним), имя учётной записи (ник) и действующий адрес электронной почты. Имена будут видны на странице профиля для любого посетителя, даже если другие данные будут скрыты. Адрес электронной почты будет использоваться только для отправки пользователю уведомлений о действиях, но не будет нигде отображаться. Добавление пользователя в каталог узла или глобальный каталог опционально и управляется настройками, оно не обязательно для общения в сети." -#: src/Module/Tos.php:59 src/Module/Tos.php:108 +#: src/Module/Tos.php:45 src/Module/Tos.php:94 msgid "" "This data is required for communication and is passed on to the nodes of the" " communication partners and is stored there. Users can enter additional " "private data that may be transmitted to the communication partners accounts." msgstr "Эти данные необходимы для взаимодействия и передаются другим узлам партнёров по сети и сохраняются там. Пользователи могут добавить дополнительные личные данные, которые тоже могут передаваться на другие узлы." -#: src/Module/Tos.php:60 src/Module/Tos.php:109 +#: src/Module/Tos.php:46 src/Module/Tos.php:95 #, php-format msgid "" "At any point in time a logged in user can export their account data from the" @@ -11685,98 +11655,98 @@ msgid "" "from the nodes of the communication partners." msgstr "В любой момент вошедший в систему пользователь может экспортировать свои данные через настройки. Если пользователь хочет удалить свою учётную запись, они могут сделать это через %1$s/settings/removeme. Удаление данных будет без возможности восстановления. Запрос на удаление данных будет так же передан на узлы партнёров по сети." -#: src/Module/Tos.php:63 src/Module/Tos.php:106 +#: src/Module/Tos.php:49 src/Module/Tos.php:92 msgid "Privacy Statement" msgstr "Положение о конфиденциальности" -#: src/Module/Tos.php:103 +#: src/Module/Tos.php:89 msgid "Rules" msgstr "Правила" -#: src/Module/Update/Display.php:45 +#: src/Module/Update/Display.php:31 msgid "Parameter uri_id is missing." msgstr "Параметр uri_id отсутствует." -#: src/Module/Update/Display.php:55 +#: src/Module/Update/Display.php:41 msgid "The requested item doesn't exist or has been deleted." msgstr "Запрошенная запись не существует или была удалена." -#: src/Module/User/Delegation.php:146 +#: src/Module/User/Delegation.php:132 #, php-format msgid "You are now logged in as %s" msgstr "Вы вошли как %s" -#: src/Module/User/Delegation.php:185 +#: src/Module/User/Delegation.php:171 msgid "Switch between your accounts" msgstr "Переключить учётную запись" -#: src/Module/User/Delegation.php:186 +#: src/Module/User/Delegation.php:172 msgid "Manage your accounts" msgstr "Управление учётными записями" -#: src/Module/User/Delegation.php:187 +#: src/Module/User/Delegation.php:173 msgid "" "Toggle between different identities or community/group pages which share " "your account details or which you have been granted \"manage\" permissions" msgstr "Переключайтесь между разными профилями или страницами сообществ/групп, которые зарегистрированы на одинаковые контактные данные, либо вам предоставлено право управления ими." -#: src/Module/User/Delegation.php:188 +#: src/Module/User/Delegation.php:174 msgid "Select an identity to manage: " msgstr "Выберите учётную запись:" -#: src/Module/User/Import.php:104 +#: src/Module/User/Import.php:90 msgid "User imports on closed servers can only be done by an administrator." msgstr "Импорт пользователей на закрытых серверах может быть произведён только администратором." -#: src/Module/User/Import.php:120 +#: src/Module/User/Import.php:106 msgid "Move account" msgstr "Удалить аккаунт" -#: src/Module/User/Import.php:121 +#: src/Module/User/Import.php:107 msgid "You can import an account from another Friendica server." msgstr "Вы можете импортировать учетную запись с другого сервера Friendica." -#: src/Module/User/Import.php:122 +#: src/Module/User/Import.php:108 msgid "" "You need to export your account from the old server and upload it here. We " "will recreate your old account here with all your contacts. We will try also" " to inform your friends that you moved here." msgstr "Вам нужно экспортировать свой ​​аккаунт со старого сервера и загрузить его сюда. Мы восстановим ваш ​​старый аккаунт здесь со всеми вашими контактами. Мы постараемся также сообщить друзьям, что вы переехали сюда." -#: src/Module/User/Import.php:123 +#: src/Module/User/Import.php:109 msgid "" "This feature is experimental. We can't import contacts from the OStatus " "network (GNU Social/Statusnet) or from Diaspora" msgstr "Это экспериментальная функция. Мы не можем импортировать контакты из сети OStatus (GNU Social/ StatusNet) или из Diaspora" -#: src/Module/User/Import.php:124 +#: src/Module/User/Import.php:110 msgid "Account file" msgstr "Файл аккаунта" -#: src/Module/User/Import.php:124 +#: src/Module/User/Import.php:110 msgid "" "To export your account, go to \"Settings->Export your personal data\" and " "select \"Export account\"" msgstr "Для экспорта аккаунта, перейдите в \"Настройки->Экспортировать ваши данные\" и выберите \"Экспорт аккаунта\"" -#: src/Module/User/Import.php:218 +#: src/Module/User/Import.php:204 msgid "Error decoding account file" msgstr "Ошибка расшифровки файла аккаунта" -#: src/Module/User/Import.php:223 +#: src/Module/User/Import.php:209 msgid "Error! No version data in file! This is not a Friendica account file?" msgstr "Ошибка! Неправильная версия данных в файле! Это не файл аккаунта Friendica?" -#: src/Module/User/Import.php:231 +#: src/Module/User/Import.php:217 #, php-format msgid "User '%s' already exists on this server!" msgstr "Пользователь '%s' уже существует на этом сервере!" -#: src/Module/User/Import.php:268 +#: src/Module/User/Import.php:254 msgid "User creation error" msgstr "Ошибка создания пользователя" -#: src/Module/User/Import.php:317 +#: src/Module/User/Import.php:303 #, php-format msgid "%d contact not imported" msgid_plural "%d contacts not imported" @@ -11785,23 +11755,23 @@ msgstr[1] "%d контакты не импортированы" msgstr[2] "%d контакты не импортированы" msgstr[3] "%d контакты не импортированы" -#: src/Module/User/Import.php:366 +#: src/Module/User/Import.php:352 msgid "User profile creation error" msgstr "Ошибка создания профиля пользователя" -#: src/Module/User/Import.php:417 +#: src/Module/User/Import.php:403 msgid "Done. You can now login with your username and password" msgstr "Завершено. Теперь вы можете войти с вашим логином и паролем" -#: src/Module/Welcome.php:44 +#: src/Module/Welcome.php:30 msgid "Welcome to Friendica" msgstr "Добро пожаловать в Friendica" -#: src/Module/Welcome.php:45 +#: src/Module/Welcome.php:31 msgid "New Member Checklist" msgstr "Новый контрольный список участников" -#: src/Module/Welcome.php:46 +#: src/Module/Welcome.php:32 msgid "" "We would like to offer some tips and links to help make your experience " "enjoyable. Click any item to visit the relevant page. A link to this page " @@ -11809,33 +11779,33 @@ msgid "" "registration and then will quietly disappear." msgstr "Мы хотели бы предложить некоторые советы и ссылки, помогающие сделать вашу работу приятнее. Нажмите на любой элемент, чтобы посетить соответствующую страницу. Ссылка на эту страницу будет видна на вашей домашней странице в течение двух недель после первоначальной регистрации, а затем она исчезнет." -#: src/Module/Welcome.php:48 +#: src/Module/Welcome.php:34 msgid "Getting Started" msgstr "Начало работы" -#: src/Module/Welcome.php:49 +#: src/Module/Welcome.php:35 msgid "Friendica Walk-Through" msgstr "Знакомство с Friendica" -#: src/Module/Welcome.php:50 +#: src/Module/Welcome.php:36 msgid "" "On your Quick Start page - find a brief introduction to your " "profile and network tabs, make some new connections, and find some groups to" " join." msgstr "На вашей странице Быстрый старт - можно найти краткое введение в ваш профиль и сетевые закладки, создать новые связи, и найти группы, чтобы присоединиться к ним." -#: src/Module/Welcome.php:53 +#: src/Module/Welcome.php:39 msgid "Go to Your Settings" msgstr "Перейти к вашим настройкам" -#: src/Module/Welcome.php:54 +#: src/Module/Welcome.php:40 msgid "" "On your Settings page - change your initial password. Also make a " "note of your Identity Address. This looks just like an email address - and " "will be useful in making friends on the free social web." msgstr "На вашей странице Настройки - вы можете изменить свой первоначальный пароль. Также обратите внимание на ваш личный адрес. Он выглядит так же, как адрес электронной почты - и будет полезен для поиска друзей в свободной социальной сети." -#: src/Module/Welcome.php:55 +#: src/Module/Welcome.php:41 msgid "" "Review the other settings, particularly the privacy settings. An unpublished" " directory listing is like having an unlisted phone number. In general, you " @@ -11843,77 +11813,77 @@ msgid "" "potential friends know exactly how to find you." msgstr "Просмотрите другие установки, в частности, параметры конфиденциальности. Неопубликованные пункты каталога с частными номерами телефона. В общем, вам, вероятно, следует опубликовать свою информацию - если все ваши друзья и потенциальные друзья точно знают, как вас найти." -#: src/Module/Welcome.php:59 +#: src/Module/Welcome.php:45 msgid "" "Upload a profile photo if you have not done so already. Studies have shown " "that people with real photos of themselves are ten times more likely to make" " friends than people who do not." msgstr "Загрузите фотографию профиля, если вы еще не сделали это. Исследования показали, что люди с реальными фотографиями имеют в десять раз больше шансов подружиться, чем люди, которые этого не делают." -#: src/Module/Welcome.php:60 +#: src/Module/Welcome.php:46 msgid "Edit Your Profile" msgstr "Редактировать профиль" -#: src/Module/Welcome.php:61 +#: src/Module/Welcome.php:47 msgid "" "Edit your default profile to your liking. Review the " "settings for hiding your list of friends and hiding the profile from unknown" " visitors." msgstr "Отредактируйте профиль по умолчанию на свой ​​вкус. Просмотрите установки для сокрытия вашего списка друзей и сокрытия профиля от неизвестных посетителей." -#: src/Module/Welcome.php:62 +#: src/Module/Welcome.php:48 msgid "Profile Keywords" msgstr "Ключевые слова профиля" -#: src/Module/Welcome.php:63 +#: src/Module/Welcome.php:49 msgid "" "Set some public keywords for your profile which describe your interests. We " "may be able to find other people with similar interests and suggest " "friendships." msgstr "Установите некоторые публичные ключевые слова для вашего профиля, которые описывают ваши интересы. Мы можем помочь найти других людей со схожими интересами и предложить дружбу." -#: src/Module/Welcome.php:65 +#: src/Module/Welcome.php:51 msgid "Connecting" msgstr "Подключение" -#: src/Module/Welcome.php:67 +#: src/Module/Welcome.php:53 msgid "Importing Emails" msgstr "Импортирование Email-ов" -#: src/Module/Welcome.php:68 +#: src/Module/Welcome.php:54 msgid "" "Enter your email access information on your Connector Settings page if you " "wish to import and interact with friends or mailing lists from your email " "INBOX" msgstr "Введите информацию о доступе к вашему email на странице настроек вашего коннектора, если вы хотите импортировать, и общаться с друзьями или получать рассылки на ваш ящик электронной почты" -#: src/Module/Welcome.php:69 +#: src/Module/Welcome.php:55 msgid "Go to Your Contacts Page" msgstr "Перейти на страницу ваших контактов" -#: src/Module/Welcome.php:70 +#: src/Module/Welcome.php:56 msgid "" "Your Contacts page is your gateway to managing friendships and connecting " "with friends on other networks. Typically you enter their address or site " "URL in the Add New Contact dialog." msgstr "Ваша страница контактов - это ваш шлюз к управлению дружбой и общением с друзьями в других сетях. Обычно вы вводите свой ​​адрес или адрес сайта в диалог Добавить новый контакт." -#: src/Module/Welcome.php:71 +#: src/Module/Welcome.php:57 msgid "Go to Your Site's Directory" msgstr "Перейти в каталог вашего сайта" -#: src/Module/Welcome.php:72 +#: src/Module/Welcome.php:58 msgid "" "The Directory page lets you find other people in this network or other " "federated sites. Look for a Connect or Follow link on " "their profile page. Provide your own Identity Address if requested." msgstr "На странице каталога вы можете найти других людей в этой сети или на других похожих сайтах. Ищите ссылки Подключить или Подписаться на страницах их профилей. Укажите свой собственный адрес идентификации, если требуется." -#: src/Module/Welcome.php:73 +#: src/Module/Welcome.php:59 msgid "Finding New People" msgstr "Поиск людей" -#: src/Module/Welcome.php:74 +#: src/Module/Welcome.php:60 msgid "" "On the side panel of the Contacts page are several tools to find new " "friends. We can match people by interest, look up people by name or " @@ -11922,412 +11892,408 @@ msgid "" "hours." msgstr "На боковой панели страницы Контакты есть несколько инструментов, чтобы найти новых друзей. Мы можем искать по соответствию интересам, посмотреть людей по имени или интересам, и внести предложения на основе сетевых отношений. На новом сайте, предложения дружбы, как правило, начинают заполняться в течение 24 часов." -#: src/Module/Welcome.php:77 +#: src/Module/Welcome.php:63 msgid "Add Your Contacts To Circle" msgstr "Добавьте ваши контакты в круги" -#: src/Module/Welcome.php:78 +#: src/Module/Welcome.php:64 msgid "" "Once you have made some friends, organize them into private conversation " "circles from the sidebar of your Contacts page and then you can interact " "with each circle privately on your Network page." msgstr "После того, как вы найдете несколько друзей, соберите их в круги частных бесед в боковой панели на странице Контакты, а затем вы можете взаимодействовать с каждой группой приватно в вашей ленте." -#: src/Module/Welcome.php:80 +#: src/Module/Welcome.php:66 msgid "Why Aren't My Posts Public?" msgstr "Почему мои записи не публичные?" -#: src/Module/Welcome.php:81 +#: src/Module/Welcome.php:67 msgid "" "Friendica respects your privacy. By default, your posts will only show up to" " people you've added as friends. For more information, see the help section " "from the link above." msgstr "Friendica уважает вашу приватность. По умолчанию, ваши сообщения будут показываться только для людей, которых вы добавили в список друзей. Для получения дополнительной информации см. раздел справки по ссылке выше." -#: src/Module/Welcome.php:83 +#: src/Module/Welcome.php:69 msgid "Getting Help" msgstr "Получить помощь" -#: src/Module/Welcome.php:84 +#: src/Module/Welcome.php:70 msgid "Go to the Help Section" msgstr "Перейти в раздел справки" -#: src/Module/Welcome.php:85 +#: src/Module/Welcome.php:71 msgid "" "Our help pages may be consulted for detail on other program" " features and resources." msgstr "Наши страницы помощи могут проконсультировать о подробностях и возможностях программы и ресурса." -#: src/Navigation/Notifications/Factory/FormattedNavNotification.php:161 +#: src/Navigation/Notifications/Factory/FormattedNavNotification.php:147 msgid "{0} wants to follow you" msgstr "{0} хочет подписаться на вас" -#: src/Navigation/Notifications/Factory/FormattedNavNotification.php:163 +#: src/Navigation/Notifications/Factory/FormattedNavNotification.php:149 msgid "{0} has started following you" msgstr "{0} подписался на вас" -#: src/Navigation/Notifications/Factory/FormattedNotify.php:96 +#: src/Navigation/Notifications/Factory/FormattedNotify.php:82 #, php-format msgid "%s liked %s's post" msgstr "%s нравится %s сообшение" -#: src/Navigation/Notifications/Factory/FormattedNotify.php:108 +#: src/Navigation/Notifications/Factory/FormattedNotify.php:94 #, php-format msgid "%s disliked %s's post" msgstr "%s не нравится сообщение %s" -#: src/Navigation/Notifications/Factory/FormattedNotify.php:120 +#: src/Navigation/Notifications/Factory/FormattedNotify.php:106 #, php-format msgid "%s is attending %s's event" msgstr "%s будет присутствовать на событии %s" -#: src/Navigation/Notifications/Factory/FormattedNotify.php:132 +#: src/Navigation/Notifications/Factory/FormattedNotify.php:118 #, php-format msgid "%s is not attending %s's event" msgstr "%s не будет присутствовать на событии %s" -#: src/Navigation/Notifications/Factory/FormattedNotify.php:144 +#: src/Navigation/Notifications/Factory/FormattedNotify.php:130 #, php-format msgid "%s may attending %s's event" msgstr "%s возможно будет присутствовать на событии %s" -#: src/Navigation/Notifications/Factory/FormattedNotify.php:174 +#: src/Navigation/Notifications/Factory/FormattedNotify.php:160 #, php-format msgid "%s is now friends with %s" msgstr "%s теперь друзья с %s" -#: src/Navigation/Notifications/Factory/FormattedNotify.php:341 -#: src/Navigation/Notifications/Factory/FormattedNotify.php:379 +#: src/Navigation/Notifications/Factory/FormattedNotify.php:327 +#: src/Navigation/Notifications/Factory/FormattedNotify.php:365 #, php-format msgid "%s commented on %s's post" msgstr "%s прокомментировал %s сообщение" -#: src/Navigation/Notifications/Factory/FormattedNotify.php:378 +#: src/Navigation/Notifications/Factory/FormattedNotify.php:364 #, php-format msgid "%s created a new post" msgstr "%s написал новое сообщение" -#: src/Navigation/Notifications/Factory/Introduction.php:132 +#: src/Navigation/Notifications/Factory/Introduction.php:118 msgid "Friend Suggestion" msgstr "Предложение в друзья" -#: src/Navigation/Notifications/Factory/Introduction.php:158 +#: src/Navigation/Notifications/Factory/Introduction.php:144 msgid "Friend/Connect Request" msgstr "Запрос в друзья / на подключение" -#: src/Navigation/Notifications/Factory/Introduction.php:158 -msgid "New Follower" -msgstr "Новый подписчик" - -#: src/Navigation/Notifications/Factory/Notification.php:134 +#: src/Navigation/Notifications/Factory/Notification.php:120 #, php-format msgid "%1$s wants to follow you" msgstr "%1$s хочет подписаться на вас." -#: src/Navigation/Notifications/Factory/Notification.php:136 +#: src/Navigation/Notifications/Factory/Notification.php:122 #, php-format msgid "%1$s has started following you" msgstr "%1$s подписался на вас" -#: src/Navigation/Notifications/Factory/Notification.php:208 +#: src/Navigation/Notifications/Factory/Notification.php:194 #, php-format msgid "%1$s liked your comment on %2$s" msgstr "%1$s нравится ваш комментарий %2$s" -#: src/Navigation/Notifications/Factory/Notification.php:211 +#: src/Navigation/Notifications/Factory/Notification.php:197 #, php-format msgid "%1$s liked your post %2$s" msgstr "%1$s нравится ваша запись %2$s" -#: src/Navigation/Notifications/Factory/Notification.php:218 +#: src/Navigation/Notifications/Factory/Notification.php:204 #, php-format msgid "%1$s disliked your comment on %2$s" msgstr "%1$s не нравится ваш комментарий %2$s" -#: src/Navigation/Notifications/Factory/Notification.php:221 +#: src/Navigation/Notifications/Factory/Notification.php:207 #, php-format msgid "%1$s disliked your post %2$s" msgstr "%1$s не нравится ваша запись %2$s" -#: src/Navigation/Notifications/Factory/Notification.php:228 +#: src/Navigation/Notifications/Factory/Notification.php:214 #, php-format msgid "%1$s shared your comment %2$s" msgstr "%1$s поделился вашим комментарием %2$s" -#: src/Navigation/Notifications/Factory/Notification.php:231 -#: src/Navigation/Notifications/Factory/Notification.php:316 +#: src/Navigation/Notifications/Factory/Notification.php:217 +#: src/Navigation/Notifications/Factory/Notification.php:302 #, php-format msgid "%1$s shared your post %2$s" msgstr "%1$s поделился вашей записью %2$s" -#: src/Navigation/Notifications/Factory/Notification.php:235 -#: src/Navigation/Notifications/Factory/Notification.php:305 +#: src/Navigation/Notifications/Factory/Notification.php:221 +#: src/Navigation/Notifications/Factory/Notification.php:291 #, php-format msgid "%1$s shared the post %2$s from %3$s" msgstr "%1$s поделился записью %2$s от %3$s" -#: src/Navigation/Notifications/Factory/Notification.php:237 -#: src/Navigation/Notifications/Factory/Notification.php:307 +#: src/Navigation/Notifications/Factory/Notification.php:223 +#: src/Navigation/Notifications/Factory/Notification.php:293 #, php-format msgid "%1$s shared a post from %3$s" msgstr "%1$s поделился записью от %3$s" -#: src/Navigation/Notifications/Factory/Notification.php:239 -#: src/Navigation/Notifications/Factory/Notification.php:309 +#: src/Navigation/Notifications/Factory/Notification.php:225 +#: src/Navigation/Notifications/Factory/Notification.php:295 #, php-format msgid "%1$s shared the post %2$s" msgstr "%1$s поделился записью %2$s" -#: src/Navigation/Notifications/Factory/Notification.php:241 -#: src/Navigation/Notifications/Factory/Notification.php:311 +#: src/Navigation/Notifications/Factory/Notification.php:227 +#: src/Navigation/Notifications/Factory/Notification.php:297 #, php-format msgid "%1$s shared a post" msgstr "%1$s поделился записью" -#: src/Navigation/Notifications/Factory/Notification.php:249 +#: src/Navigation/Notifications/Factory/Notification.php:235 #, php-format msgid "%1$s wants to attend your event %2$s" msgstr "%1$s хочет прийти на ваше событие %2$s" -#: src/Navigation/Notifications/Factory/Notification.php:256 +#: src/Navigation/Notifications/Factory/Notification.php:242 #, php-format msgid "%1$s does not want to attend your event %2$s" msgstr "%1$s не хочет приходить на ваше событие %2$s" -#: src/Navigation/Notifications/Factory/Notification.php:263 +#: src/Navigation/Notifications/Factory/Notification.php:249 #, php-format msgid "%1$s maybe wants to attend your event %2$s" msgstr "%1$s возможно захочет прийти на в ваше событие %2$s" -#: src/Navigation/Notifications/Factory/Notification.php:270 +#: src/Navigation/Notifications/Factory/Notification.php:256 #, php-format msgid "%1$s tagged you on %2$s" msgstr "%1$s отметил(а) вас в %2$s" -#: src/Navigation/Notifications/Factory/Notification.php:274 +#: src/Navigation/Notifications/Factory/Notification.php:260 #, php-format msgid "%1$s replied to you on %2$s" msgstr "%1$s ответил(а) на %2$s" -#: src/Navigation/Notifications/Factory/Notification.php:278 +#: src/Navigation/Notifications/Factory/Notification.php:264 #, php-format msgid "%1$s commented in your thread %2$s" msgstr "%1$s ответил(а) в вашем обсуждении %2$s" -#: src/Navigation/Notifications/Factory/Notification.php:282 +#: src/Navigation/Notifications/Factory/Notification.php:268 #, php-format msgid "%1$s commented on your comment %2$s" msgstr "%1$s ответил(а) на ваш комментарий %2$s" -#: src/Navigation/Notifications/Factory/Notification.php:289 +#: src/Navigation/Notifications/Factory/Notification.php:275 #, php-format msgid "%1$s commented in their thread %2$s" msgstr "%1$s ответил(а) в своём обсуждении %2$s" -#: src/Navigation/Notifications/Factory/Notification.php:291 +#: src/Navigation/Notifications/Factory/Notification.php:277 #, php-format msgid "%1$s commented in their thread" msgstr "%1$s ответил(а) в своём обсуждении" -#: src/Navigation/Notifications/Factory/Notification.php:293 +#: src/Navigation/Notifications/Factory/Notification.php:279 #, php-format msgid "%1$s commented in the thread %2$s from %3$s" msgstr "%1$s ответил(а) в обсуждении %2$s от %3$s" -#: src/Navigation/Notifications/Factory/Notification.php:295 +#: src/Navigation/Notifications/Factory/Notification.php:281 #, php-format msgid "%1$s commented in the thread from %3$s" msgstr "%1$s ответил(а) в обсуждении от %3$s" -#: src/Navigation/Notifications/Factory/Notification.php:300 +#: src/Navigation/Notifications/Factory/Notification.php:286 #, php-format msgid "%1$s commented on your thread %2$s" msgstr "%1$s ответил(а) в вашем обсуждении %2$s" -#: src/Navigation/Notifications/Repository/Notify.php:225 -#: src/Navigation/Notifications/Repository/Notify.php:754 +#: src/Navigation/Notifications/Repository/Notify.php:211 +#: src/Navigation/Notifications/Repository/Notify.php:740 msgid "[Friendica:Notify]" msgstr "[Friendica]" -#: src/Navigation/Notifications/Repository/Notify.php:293 +#: src/Navigation/Notifications/Repository/Notify.php:279 #, php-format msgid "%s New mail received at %s" msgstr "%s Новая почта получена в %s" -#: src/Navigation/Notifications/Repository/Notify.php:295 +#: src/Navigation/Notifications/Repository/Notify.php:281 #, php-format msgid "%1$s sent you a new private message at %2$s." msgstr "%1$s отправил вам новое личное сообщение на %2$s." -#: src/Navigation/Notifications/Repository/Notify.php:296 +#: src/Navigation/Notifications/Repository/Notify.php:282 msgid "a private message" msgstr "личное сообщение" -#: src/Navigation/Notifications/Repository/Notify.php:296 +#: src/Navigation/Notifications/Repository/Notify.php:282 #, php-format msgid "%1$s sent you %2$s." msgstr "%1$s послал вам %2$s." -#: src/Navigation/Notifications/Repository/Notify.php:298 +#: src/Navigation/Notifications/Repository/Notify.php:284 #, php-format msgid "Please visit %s to view and/or reply to your private messages." msgstr "Пожалуйста, посетите %s для просмотра и/или ответа на личные сообщения." -#: src/Navigation/Notifications/Repository/Notify.php:328 +#: src/Navigation/Notifications/Repository/Notify.php:314 #, php-format msgid "%1$s commented on %2$s's %3$s %4$s" msgstr "%1$s прокомментировал(а) %2$s %3$s %4$s" -#: src/Navigation/Notifications/Repository/Notify.php:333 +#: src/Navigation/Notifications/Repository/Notify.php:319 #, php-format msgid "%1$s commented on your %2$s %3$s" msgstr "%1$s прокомментировал(а) ваш %2$s %3$s" -#: src/Navigation/Notifications/Repository/Notify.php:337 +#: src/Navigation/Notifications/Repository/Notify.php:323 #, php-format msgid "%1$s commented on their %2$s %3$s" msgstr "%1$s прокомментировал(а) свой %2$s %3$s" -#: src/Navigation/Notifications/Repository/Notify.php:341 -#: src/Navigation/Notifications/Repository/Notify.php:788 +#: src/Navigation/Notifications/Repository/Notify.php:327 +#: src/Navigation/Notifications/Repository/Notify.php:774 #, php-format msgid "%1$s Comment to conversation #%2$d by %3$s" msgstr "%1$s Комментариев к разговору #%2$d от %3$s" -#: src/Navigation/Notifications/Repository/Notify.php:343 +#: src/Navigation/Notifications/Repository/Notify.php:329 #, php-format msgid "%s commented on an item/conversation you have been following." msgstr "%s оставил комментарий к элементу/беседе, за которой вы следите." -#: src/Navigation/Notifications/Repository/Notify.php:347 -#: src/Navigation/Notifications/Repository/Notify.php:362 -#: src/Navigation/Notifications/Repository/Notify.php:814 +#: src/Navigation/Notifications/Repository/Notify.php:333 +#: src/Navigation/Notifications/Repository/Notify.php:348 +#: src/Navigation/Notifications/Repository/Notify.php:800 #, php-format msgid "Please visit %s to view and/or reply to the conversation." msgstr "Пожалуйста посетите %s для просмотра и/или ответа в беседу." -#: src/Navigation/Notifications/Repository/Notify.php:354 +#: src/Navigation/Notifications/Repository/Notify.php:340 #, php-format msgid "%s %s posted to your profile wall" msgstr "%s %s размещены на стене вашего профиля" -#: src/Navigation/Notifications/Repository/Notify.php:356 +#: src/Navigation/Notifications/Repository/Notify.php:342 #, php-format msgid "%1$s posted to your profile wall at %2$s" msgstr "%1$s написал на вашей стене на %2$s" -#: src/Navigation/Notifications/Repository/Notify.php:357 +#: src/Navigation/Notifications/Repository/Notify.php:343 #, php-format msgid "%1$s posted to [url=%2$s]your wall[/url]" msgstr "%1$s написал на [url=%2$s]вашей стене[/url]" -#: src/Navigation/Notifications/Repository/Notify.php:370 +#: src/Navigation/Notifications/Repository/Notify.php:356 #, php-format msgid "%s Introduction received" msgstr "%s Входящих получено" -#: src/Navigation/Notifications/Repository/Notify.php:372 +#: src/Navigation/Notifications/Repository/Notify.php:358 #, php-format msgid "You've received an introduction from '%1$s' at %2$s" msgstr "Вы получили запрос от '%1$s' на %2$s" -#: src/Navigation/Notifications/Repository/Notify.php:373 +#: src/Navigation/Notifications/Repository/Notify.php:359 #, php-format msgid "You've received [url=%1$s]an introduction[/url] from %2$s." msgstr "Вы получили [url=%1$s]запрос[/url] от %2$s." -#: src/Navigation/Notifications/Repository/Notify.php:378 -#: src/Navigation/Notifications/Repository/Notify.php:424 +#: src/Navigation/Notifications/Repository/Notify.php:364 +#: src/Navigation/Notifications/Repository/Notify.php:410 #, php-format msgid "You may visit their profile at %s" msgstr "Вы можете посмотреть его профиль здесь %s" -#: src/Navigation/Notifications/Repository/Notify.php:380 +#: src/Navigation/Notifications/Repository/Notify.php:366 #, php-format msgid "Please visit %s to approve or reject the introduction." msgstr "Посетите %s для подтверждения или отказа запроса." -#: src/Navigation/Notifications/Repository/Notify.php:387 +#: src/Navigation/Notifications/Repository/Notify.php:373 #, php-format msgid "%s A new person is sharing with you" msgstr "%s Новый человек поделился с Вами" -#: src/Navigation/Notifications/Repository/Notify.php:389 -#: src/Navigation/Notifications/Repository/Notify.php:390 +#: src/Navigation/Notifications/Repository/Notify.php:375 +#: src/Navigation/Notifications/Repository/Notify.php:376 #, php-format msgid "%1$s is sharing with you at %2$s" msgstr "%1$s делится с вами на %2$s" -#: src/Navigation/Notifications/Repository/Notify.php:397 +#: src/Navigation/Notifications/Repository/Notify.php:383 #, php-format msgid "%s You have a new follower" msgstr "%s У Вас новый подписчик" -#: src/Navigation/Notifications/Repository/Notify.php:399 -#: src/Navigation/Notifications/Repository/Notify.php:400 +#: src/Navigation/Notifications/Repository/Notify.php:385 +#: src/Navigation/Notifications/Repository/Notify.php:386 #, php-format msgid "You have a new follower at %2$s : %1$s" msgstr "У вас новый подписчик на %2$s : %1$s" -#: src/Navigation/Notifications/Repository/Notify.php:413 +#: src/Navigation/Notifications/Repository/Notify.php:399 #, php-format msgid "%s Friend suggestion received" msgstr "%s Получено дружеское приглашение" -#: src/Navigation/Notifications/Repository/Notify.php:415 +#: src/Navigation/Notifications/Repository/Notify.php:401 #, php-format msgid "You've received a friend suggestion from '%1$s' at %2$s" msgstr "Вы получили предложение дружбы от '%1$s' на %2$s" -#: src/Navigation/Notifications/Repository/Notify.php:416 +#: src/Navigation/Notifications/Repository/Notify.php:402 #, php-format msgid "" "You've received [url=%1$s]a friend suggestion[/url] for %2$s from %3$s." msgstr "У вас [url=%1$s]новое предложение дружбы[/url] для %2$s от %3$s." -#: src/Navigation/Notifications/Repository/Notify.php:422 +#: src/Navigation/Notifications/Repository/Notify.php:408 msgid "Name:" msgstr "Имя:" -#: src/Navigation/Notifications/Repository/Notify.php:423 +#: src/Navigation/Notifications/Repository/Notify.php:409 msgid "Photo:" msgstr "Фото:" -#: src/Navigation/Notifications/Repository/Notify.php:426 +#: src/Navigation/Notifications/Repository/Notify.php:412 #, php-format msgid "Please visit %s to approve or reject the suggestion." msgstr "Пожалуйста, посетите %s для подтверждения, или отказа запроса." -#: src/Navigation/Notifications/Repository/Notify.php:434 -#: src/Navigation/Notifications/Repository/Notify.php:449 +#: src/Navigation/Notifications/Repository/Notify.php:420 +#: src/Navigation/Notifications/Repository/Notify.php:435 #, php-format msgid "%s Connection accepted" msgstr "%s Соединение принято" -#: src/Navigation/Notifications/Repository/Notify.php:436 -#: src/Navigation/Notifications/Repository/Notify.php:451 +#: src/Navigation/Notifications/Repository/Notify.php:422 +#: src/Navigation/Notifications/Repository/Notify.php:437 #, php-format msgid "'%1$s' has accepted your connection request at %2$s" msgstr "'%1$s' принял соединение с вами на %2$s" -#: src/Navigation/Notifications/Repository/Notify.php:437 -#: src/Navigation/Notifications/Repository/Notify.php:452 +#: src/Navigation/Notifications/Repository/Notify.php:423 +#: src/Navigation/Notifications/Repository/Notify.php:438 #, php-format msgid "%2$s has accepted your [url=%1$s]connection request[/url]." msgstr "%2$s принял ваше [url=%1$s]предложение о соединении[/url]." -#: src/Navigation/Notifications/Repository/Notify.php:442 +#: src/Navigation/Notifications/Repository/Notify.php:428 msgid "" "You are now mutual friends and may exchange status updates, photos, and " "email without restriction." msgstr "Вы теперь взаимные друзья и можете обмениваться статусами, фотографиями и письмами без ограничений." -#: src/Navigation/Notifications/Repository/Notify.php:444 +#: src/Navigation/Notifications/Repository/Notify.php:430 #, php-format msgid "Please visit %s if you wish to make any changes to this relationship." msgstr "Посетите %s если вы хотите сделать изменения в этом отношении." -#: src/Navigation/Notifications/Repository/Notify.php:457 +#: src/Navigation/Notifications/Repository/Notify.php:443 #, php-format msgid "" "'%1$s' has chosen to accept you a fan, which restricts some forms of " @@ -12336,34 +12302,34 @@ msgid "" "automatically." msgstr "%1$s решил принять приглашение и пометил вас как фаната, что запрещает некоторые формы общения - например, личные сообщения и некоторые действия с профилем. Если эта страница знаменитости или сообщества, то эти настройки были применены автоматически." -#: src/Navigation/Notifications/Repository/Notify.php:459 +#: src/Navigation/Notifications/Repository/Notify.php:445 #, php-format msgid "" "'%1$s' may choose to extend this into a two-way or more permissive " "relationship in the future." msgstr "%1$s может расширить взаимоотношения до более мягких в будущем." -#: src/Navigation/Notifications/Repository/Notify.php:461 +#: src/Navigation/Notifications/Repository/Notify.php:447 #, php-format msgid "Please visit %s if you wish to make any changes to this relationship." msgstr "Посетите %s если вы хотите сделать изменения в этом отношении." -#: src/Navigation/Notifications/Repository/Notify.php:471 +#: src/Navigation/Notifications/Repository/Notify.php:457 msgid "registration request" msgstr "запрос регистрации" -#: src/Navigation/Notifications/Repository/Notify.php:473 +#: src/Navigation/Notifications/Repository/Notify.php:459 #, php-format msgid "You've received a registration request from '%1$s' at %2$s" msgstr "Вы получили запрос на регистрацию от '%1$s' на %2$s" -#: src/Navigation/Notifications/Repository/Notify.php:474 +#: src/Navigation/Notifications/Repository/Notify.php:460 #, php-format msgid "You've received a [url=%1$s]registration request[/url] from %2$s." msgstr "Вы получили [url=%1$s]запрос регистрации[/url] от %2$s." -#: src/Navigation/Notifications/Repository/Notify.php:479 -#: src/Navigation/Notifications/Repository/Notify.php:500 +#: src/Navigation/Notifications/Repository/Notify.php:465 +#: src/Navigation/Notifications/Repository/Notify.php:486 #, php-format msgid "" "Display Name:\t%s\n" @@ -12371,288 +12337,288 @@ msgid "" "Login Name:\t%s (%s)" msgstr "Полное имя:\t%s\nРасположение:\t%s\nИмя для входа:\t%s (%s)" -#: src/Navigation/Notifications/Repository/Notify.php:485 +#: src/Navigation/Notifications/Repository/Notify.php:471 #, php-format msgid "Please visit %s to approve or reject the request." msgstr "Пожалуйста, посетите %s чтобы подтвердить или отвергнуть запрос." -#: src/Navigation/Notifications/Repository/Notify.php:492 +#: src/Navigation/Notifications/Repository/Notify.php:478 msgid "new registration" msgstr "новая регистрация" -#: src/Navigation/Notifications/Repository/Notify.php:494 +#: src/Navigation/Notifications/Repository/Notify.php:480 #, php-format msgid "You've received a new registration from '%1$s' at %2$s" msgstr "У вас новая регистрация от '%1$s' на %2$s" -#: src/Navigation/Notifications/Repository/Notify.php:495 +#: src/Navigation/Notifications/Repository/Notify.php:481 #, php-format msgid "You've received a [url=%1$s]new registration[/url] from %2$s." msgstr "У вас [url=%1$s]новая регистрация[/url] от %2$s." -#: src/Navigation/Notifications/Repository/Notify.php:506 +#: src/Navigation/Notifications/Repository/Notify.php:492 #, php-format msgid "Please visit %s to have a look at the new registration." msgstr "Пожалуйста, посетите %s для просмотра новой регистрации." -#: src/Navigation/Notifications/Repository/Notify.php:782 +#: src/Navigation/Notifications/Repository/Notify.php:768 #, php-format msgid "%s %s tagged you" msgstr "%s %s отметил(и) Вас" -#: src/Navigation/Notifications/Repository/Notify.php:785 +#: src/Navigation/Notifications/Repository/Notify.php:771 #, php-format msgid "%s %s shared a new post" msgstr "%s %s поделился(-ась) новой записью" -#: src/Navigation/Notifications/Repository/Notify.php:793 +#: src/Navigation/Notifications/Repository/Notify.php:779 #, php-format msgid "%1$s %2$s liked your post #%3$d" msgstr "%1$s %2$s нравится ваша запись #%3$d" -#: src/Navigation/Notifications/Repository/Notify.php:796 +#: src/Navigation/Notifications/Repository/Notify.php:782 #, php-format msgid "%1$s %2$s liked your comment on #%3$d" msgstr "%1$s %2$s нравится ваш комментарий в #%3$d" -#: src/Object/EMail/ItemCCEMail.php:42 +#: src/Object/EMail/ItemCCEMail.php:28 #, php-format msgid "" "This message was sent to you by %s, a member of the Friendica social " "network." msgstr "Это сообщение было отправлено вам %s, участником социальной сети Friendica." -#: src/Object/EMail/ItemCCEMail.php:44 +#: src/Object/EMail/ItemCCEMail.php:30 #, php-format msgid "You may visit them online at %s" msgstr "Вы можете посетить их в онлайне на %s" -#: src/Object/EMail/ItemCCEMail.php:45 +#: src/Object/EMail/ItemCCEMail.php:31 msgid "" "Please contact the sender by replying to this post if you do not wish to " "receive these messages." msgstr "Пожалуйста, свяжитесь с отправителем, ответив на это сообщение, если вы не хотите получать эти сообщения." -#: src/Object/EMail/ItemCCEMail.php:49 +#: src/Object/EMail/ItemCCEMail.php:35 #, php-format msgid "%s posted an update." msgstr "%s отправил/а/ обновление." -#: src/Object/Post.php:138 +#: src/Object/Post.php:124 msgid "Private Message" msgstr "Приватная запись" -#: src/Object/Post.php:142 +#: src/Object/Post.php:128 msgid "Public Message" msgstr "Публичная запись" -#: src/Object/Post.php:146 +#: src/Object/Post.php:132 msgid "Unlisted Message" msgstr "Запись без публикации в общих лентах" -#: src/Object/Post.php:182 +#: src/Object/Post.php:168 msgid "This entry was edited" msgstr "Эта запись была отредактирована" -#: src/Object/Post.php:210 +#: src/Object/Post.php:196 msgid "Connector Message" msgstr "Сообщение-коннектор" -#: src/Object/Post.php:239 src/Object/Post.php:241 +#: src/Object/Post.php:225 src/Object/Post.php:227 msgid "Edit" msgstr "Редактировать" -#: src/Object/Post.php:275 +#: src/Object/Post.php:261 msgid "Delete globally" msgstr "Удалить везде" -#: src/Object/Post.php:275 +#: src/Object/Post.php:261 msgid "Remove locally" msgstr "Убрать для себя" -#: src/Object/Post.php:282 +#: src/Object/Post.php:268 #, php-format msgid "Block %s" msgstr "Заблокировать %s" -#: src/Object/Post.php:287 +#: src/Object/Post.php:273 #, php-format msgid "Ignore %s" msgstr "Игнорировать %s" -#: src/Object/Post.php:292 +#: src/Object/Post.php:278 #, php-format msgid "Collapse %s" msgstr "Сворачивать %s" -#: src/Object/Post.php:296 +#: src/Object/Post.php:282 msgid "Report post" msgstr "Пожаловаться" -#: src/Object/Post.php:307 +#: src/Object/Post.php:293 msgid "Save to folder" msgstr "Сохранить в папку" -#: src/Object/Post.php:347 +#: src/Object/Post.php:333 msgid "I will attend" msgstr "Я буду" -#: src/Object/Post.php:347 +#: src/Object/Post.php:333 msgid "I will not attend" msgstr "Меня не будет" -#: src/Object/Post.php:347 +#: src/Object/Post.php:333 msgid "I might attend" msgstr "Возможно" -#: src/Object/Post.php:394 +#: src/Object/Post.php:380 msgid "Ignore thread" msgstr "Игнорировать обсуждение" -#: src/Object/Post.php:395 +#: src/Object/Post.php:381 msgid "Unignore thread" msgstr "Не игнорировать обсуждение" -#: src/Object/Post.php:396 +#: src/Object/Post.php:382 msgid "Toggle ignore status" msgstr "Переключить игнорирование" -#: src/Object/Post.php:406 +#: src/Object/Post.php:392 msgid "Add star" msgstr "Добавить в Избранное" -#: src/Object/Post.php:407 +#: src/Object/Post.php:393 msgid "Remove star" msgstr "Убрать из Избранного" -#: src/Object/Post.php:408 +#: src/Object/Post.php:394 msgid "Toggle star status" msgstr "Добавить/убрать из Избранного" -#: src/Object/Post.php:419 +#: src/Object/Post.php:405 msgid "Pin" msgstr "Закрепить" -#: src/Object/Post.php:420 +#: src/Object/Post.php:406 msgid "Unpin" msgstr "Открепить" -#: src/Object/Post.php:421 +#: src/Object/Post.php:407 msgid "Toggle pin status" msgstr "Закрепить/открепить" -#: src/Object/Post.php:424 +#: src/Object/Post.php:410 msgid "Pinned" msgstr "Закреплено" -#: src/Object/Post.php:429 +#: src/Object/Post.php:415 msgid "Add tag" msgstr "Добавить тег" -#: src/Object/Post.php:444 +#: src/Object/Post.php:430 msgid "Quote share this" msgstr "Поделиться с комментарием" -#: src/Object/Post.php:444 +#: src/Object/Post.php:430 msgid "Quote Share" msgstr "Цитировать" -#: src/Object/Post.php:447 +#: src/Object/Post.php:433 msgid "Reshare this" msgstr "Поделиться этим с подписчиками" -#: src/Object/Post.php:447 +#: src/Object/Post.php:433 msgid "Reshare" msgstr "Поделиться" -#: src/Object/Post.php:448 +#: src/Object/Post.php:434 msgid "Cancel your Reshare" msgstr "Отменить репост" -#: src/Object/Post.php:448 +#: src/Object/Post.php:434 msgid "Unshare" msgstr "Отменить репост" -#: src/Object/Post.php:492 +#: src/Object/Post.php:478 #, php-format msgid "%s (Received %s)" msgstr "%s (Получено %s)" -#: src/Object/Post.php:498 +#: src/Object/Post.php:484 msgid "Comment this item on your system" msgstr "Прокомментировать это на вашем узле" -#: src/Object/Post.php:498 +#: src/Object/Post.php:484 msgid "Remote comment" msgstr "Загруженный комментарий" -#: src/Object/Post.php:520 +#: src/Object/Post.php:506 msgid "Share via ..." msgstr "Отправить в ..." -#: src/Object/Post.php:520 +#: src/Object/Post.php:506 msgid "Share via external services" msgstr "Поделиться через сторонние сервисы" -#: src/Object/Post.php:527 +#: src/Object/Post.php:513 msgid "Unknown parent" msgstr "Источник неизвестен" -#: src/Object/Post.php:531 +#: src/Object/Post.php:517 #, php-format msgid "in reply to %s" msgstr "в ответ на %s" -#: src/Object/Post.php:533 +#: src/Object/Post.php:519 msgid "Parent is probably private or not federated." msgstr "Источник приватный или не федерируется." -#: src/Object/Post.php:557 +#: src/Object/Post.php:543 msgid "to" msgstr "к" -#: src/Object/Post.php:558 +#: src/Object/Post.php:544 msgid "via" msgstr "через" -#: src/Object/Post.php:559 +#: src/Object/Post.php:545 msgid "Wall-to-Wall" msgstr "Стена-на-Стену" -#: src/Object/Post.php:560 +#: src/Object/Post.php:546 msgid "via Wall-To-Wall:" msgstr "через Стена-на-Стену:" -#: src/Object/Post.php:613 +#: src/Object/Post.php:599 #, php-format msgid "Reply to %s" msgstr "Ответ %s" -#: src/Object/Post.php:616 +#: src/Object/Post.php:602 msgid "More" msgstr "Ещё" -#: src/Object/Post.php:635 +#: src/Object/Post.php:621 msgid "Notifier task is pending" msgstr "Постановка в очередь" -#: src/Object/Post.php:636 +#: src/Object/Post.php:622 msgid "Delivery to remote servers is pending" msgstr "Ожидается отправка адресатам" -#: src/Object/Post.php:637 +#: src/Object/Post.php:623 msgid "Delivery to remote servers is underway" msgstr "Отправка адресатам в процессе" -#: src/Object/Post.php:638 +#: src/Object/Post.php:624 msgid "Delivery to remote servers is mostly done" msgstr "Отправка адресатам почти завершилась" -#: src/Object/Post.php:639 +#: src/Object/Post.php:625 msgid "Delivery to remote servers is done" msgstr "Отправка адресатам завершена" -#: src/Object/Post.php:661 +#: src/Object/Post.php:647 #, php-format msgid "%d comment" msgid_plural "%d comments" @@ -12661,485 +12627,467 @@ msgstr[1] "%d комментариев" msgstr[2] "%d комментариев" msgstr[3] "%d комментариев" -#: src/Object/Post.php:662 +#: src/Object/Post.php:648 msgid "Show more" msgstr "Показать больше" -#: src/Object/Post.php:663 +#: src/Object/Post.php:649 msgid "Show fewer" msgstr "Показать меньше" -#: src/Object/Post.php:700 +#: src/Object/Post.php:686 #, php-format msgid "Reshared by: %s" msgstr "Репост от: %s" -#: src/Object/Post.php:705 +#: src/Object/Post.php:691 #, php-format msgid "Viewed by: %s" msgstr "Просмотрено: %s" -#: src/Object/Post.php:710 +#: src/Object/Post.php:696 #, php-format msgid "Read by: %s" msgstr "Прочитано: %s" -#: src/Object/Post.php:715 +#: src/Object/Post.php:701 #, php-format msgid "Liked by: %s" msgstr "Понравилось: %s" -#: src/Object/Post.php:720 +#: src/Object/Post.php:706 #, php-format msgid "Disliked by: %s" msgstr "Не понравилось: %s" -#: src/Object/Post.php:725 +#: src/Object/Post.php:711 #, php-format msgid "Attended by: %s" msgstr "Присутствуют: %s" -#: src/Object/Post.php:730 +#: src/Object/Post.php:716 #, php-format msgid "Maybe attended by: %s" msgstr "Под вопросом: %s" -#: src/Object/Post.php:735 +#: src/Object/Post.php:721 #, php-format msgid "Not attended by: %s" msgstr "Не присутствуют: %s" -#: src/Object/Post.php:740 +#: src/Object/Post.php:726 #, php-format msgid "Commented by: %s" msgstr "Прокомментировали: %s" -#: src/Object/Post.php:745 +#: src/Object/Post.php:731 #, php-format msgid "Reacted with %s by: %s" msgstr "Отреагировали как %s : %s" -#: src/Object/Post.php:768 +#: src/Object/Post.php:754 #, php-format msgid "Quote shared by: %s" msgstr "Процитировано: %s" -#: src/Protocol/ActivityPub/Receiver.php:571 +#: src/Protocol/ActivityPub/Receiver.php:557 msgid "Chat" msgstr "Чат" -#: src/Protocol/Delivery.php:544 +#: src/Protocol/Delivery.php:530 msgid "(no subject)" msgstr "(нет темы)" -#: src/Protocol/OStatus.php:1392 -#, php-format -msgid "%s is now following %s." -msgstr "%s теперь подписан на %s." - -#: src/Protocol/OStatus.php:1393 -msgid "following" -msgstr "следует" - -#: src/Protocol/OStatus.php:1396 -#, php-format -msgid "%s stopped following %s." -msgstr "%s отписался от %s." - -#: src/Protocol/OStatus.php:1397 -msgid "stopped following" -msgstr "отписка от" - -#: src/Render/FriendicaSmartyEngine.php:56 +#: src/Render/FriendicaSmartyEngine.php:42 #, php-format msgid "The folder %s must be writable by webserver." msgstr "Каталог %s должен быть доступен для записи веб-сервером." -#: src/Security/Authentication.php:214 +#: src/Security/Authentication.php:200 msgid "Login failed." msgstr "Войти не удалось." -#: src/Security/Authentication.php:259 +#: src/Security/Authentication.php:245 msgid "Login failed. Please check your credentials." msgstr "Ошибка входа. Пожалуйста, проверьте данные для входа." -#: src/Security/Authentication.php:373 +#: src/Security/Authentication.php:359 #, php-format msgid "Welcome %s" msgstr "Добро пожаловать, %s" -#: src/Security/Authentication.php:374 +#: src/Security/Authentication.php:360 msgid "Please upload a profile photo." msgstr "Пожалуйста, загрузите фотографию профиля." -#: src/Security/OpenWebAuth.php:163 +#: src/Security/OpenWebAuth.php:149 #, php-format msgid "OpenWebAuth: %1$s welcomes %2$s" msgstr "OpenWebAuth: %1$s приветствует %2$s" -#: src/Util/EMailer/MailBuilder.php:260 +#: src/Util/EMailer/MailBuilder.php:246 msgid "Friendica Notification" msgstr "Уведомление Friendica" -#: src/Util/EMailer/NotifyMailBuilder.php:78 -#: src/Util/EMailer/SystemMailBuilder.php:54 +#: src/Util/EMailer/NotifyMailBuilder.php:64 +#: src/Util/EMailer/SystemMailBuilder.php:40 #, php-format msgid "%1$s, %2$s Administrator" msgstr "%1$s, %2$s Администратор" -#: src/Util/EMailer/NotifyMailBuilder.php:80 -#: src/Util/EMailer/SystemMailBuilder.php:56 +#: src/Util/EMailer/NotifyMailBuilder.php:66 +#: src/Util/EMailer/SystemMailBuilder.php:42 #, php-format msgid "%s Administrator" msgstr "%s Администратор" -#: src/Util/EMailer/NotifyMailBuilder.php:193 -#: src/Util/EMailer/NotifyMailBuilder.php:217 -#: src/Util/EMailer/SystemMailBuilder.php:101 -#: src/Util/EMailer/SystemMailBuilder.php:118 +#: src/Util/EMailer/NotifyMailBuilder.php:179 +#: src/Util/EMailer/NotifyMailBuilder.php:203 +#: src/Util/EMailer/SystemMailBuilder.php:87 +#: src/Util/EMailer/SystemMailBuilder.php:104 msgid "thanks" msgstr "спасибо" -#: src/Util/Temporal.php:172 +#: src/Util/Temporal.php:158 msgid "YYYY-MM-DD or MM-DD" msgstr "YYYY-MM-DD или MM-DD" -#: src/Util/Temporal.php:280 +#: src/Util/Temporal.php:266 #, php-format msgid "Time zone: %s Change in Settings" msgstr "Временная зона: %s Изменить в Настройках" -#: src/Util/Temporal.php:320 src/Util/Temporal.php:329 +#: src/Util/Temporal.php:306 src/Util/Temporal.php:315 msgid "never" msgstr "никогда" -#: src/Util/Temporal.php:343 +#: src/Util/Temporal.php:329 msgid "less than a second ago" msgstr "менее секунды назад" -#: src/Util/Temporal.php:352 +#: src/Util/Temporal.php:338 msgid "year" msgstr "год" -#: src/Util/Temporal.php:352 +#: src/Util/Temporal.php:338 msgid "years" msgstr "лет" -#: src/Util/Temporal.php:353 +#: src/Util/Temporal.php:339 msgid "months" msgstr "мес." -#: src/Util/Temporal.php:354 +#: src/Util/Temporal.php:340 msgid "weeks" msgstr "нед." -#: src/Util/Temporal.php:355 +#: src/Util/Temporal.php:341 msgid "days" msgstr "дней" -#: src/Util/Temporal.php:356 +#: src/Util/Temporal.php:342 msgid "hour" msgstr "час" -#: src/Util/Temporal.php:356 +#: src/Util/Temporal.php:342 msgid "hours" msgstr "час." -#: src/Util/Temporal.php:357 +#: src/Util/Temporal.php:343 msgid "minute" msgstr "мин." -#: src/Util/Temporal.php:357 +#: src/Util/Temporal.php:343 msgid "minutes" msgstr "мин." -#: src/Util/Temporal.php:358 +#: src/Util/Temporal.php:344 msgid "second" msgstr "секунда" -#: src/Util/Temporal.php:358 +#: src/Util/Temporal.php:344 msgid "seconds" msgstr "сек." -#: src/Util/Temporal.php:367 +#: src/Util/Temporal.php:353 #, php-format msgid "in %1$d %2$s" msgstr "через %1$d %2$s" -#: src/Util/Temporal.php:370 +#: src/Util/Temporal.php:356 #, php-format msgid "%1$d %2$s ago" msgstr "%1$d %2$s назад" -#: src/Worker/PushSubscription.php:110 +#: src/Worker/PushSubscription.php:96 msgid "Notification from Friendica" msgstr "Уведомление от Friendica" -#: src/Worker/PushSubscription.php:111 +#: src/Worker/PushSubscription.php:97 msgid "Empty Post" msgstr "Пустая запись" -#: view/theme/duepuntozero/config.php:68 +#: view/theme/duepuntozero/config.php:56 msgid "default" msgstr "По умолчанию" -#: view/theme/duepuntozero/config.php:69 +#: view/theme/duepuntozero/config.php:57 msgid "greenzero" msgstr "greenzero" -#: view/theme/duepuntozero/config.php:70 +#: view/theme/duepuntozero/config.php:58 msgid "purplezero" msgstr "purplezero" -#: view/theme/duepuntozero/config.php:71 +#: view/theme/duepuntozero/config.php:59 msgid "easterbunny" msgstr "easterbunny" -#: view/theme/duepuntozero/config.php:72 +#: view/theme/duepuntozero/config.php:60 msgid "darkzero" msgstr "darkzero" -#: view/theme/duepuntozero/config.php:73 +#: view/theme/duepuntozero/config.php:61 msgid "comix" msgstr "comix" -#: view/theme/duepuntozero/config.php:74 +#: view/theme/duepuntozero/config.php:62 msgid "slackr" msgstr "slackr" -#: view/theme/duepuntozero/config.php:87 +#: view/theme/duepuntozero/config.php:75 msgid "Variations" msgstr "Вариации" -#: view/theme/frio/config.php:146 +#: view/theme/frio/config.php:134 msgid "Note" msgstr "Примечание" -#: view/theme/frio/config.php:146 +#: view/theme/frio/config.php:134 msgid "Check image permissions if all users are allowed to see the image" msgstr "Проверьте настройки разрешений изображения, оно должно быть видно всем пользователям" -#: view/theme/frio/config.php:152 +#: view/theme/frio/config.php:140 msgid "Appearance" msgstr "Внешний вид" -#: view/theme/frio/config.php:153 +#: view/theme/frio/config.php:141 msgid "Accent color" msgstr "Цвет акцентов" -#: view/theme/frio/config.php:153 +#: view/theme/frio/config.php:141 msgid "Blue" msgstr "Синий" -#: view/theme/frio/config.php:153 +#: view/theme/frio/config.php:141 msgid "Red" msgstr "Красный" -#: view/theme/frio/config.php:153 +#: view/theme/frio/config.php:141 msgid "Purple" msgstr "Фиолетовый" -#: view/theme/frio/config.php:153 +#: view/theme/frio/config.php:141 msgid "Green" msgstr "Зелёный" -#: view/theme/frio/config.php:153 +#: view/theme/frio/config.php:141 msgid "Pink" msgstr "Розовый" -#: view/theme/frio/config.php:154 +#: view/theme/frio/config.php:142 msgid "Copy or paste schemestring" msgstr "Скопируйте или вставьте код темы" -#: view/theme/frio/config.php:154 +#: view/theme/frio/config.php:142 msgid "" "You can copy this string to share your theme with others. Pasting here " "applies the schemestring" msgstr "Вы можете скопировать эту строку и поделиться настройками вашей темы с другими. Вставка строки здесь применяет настройки оформления темы." -#: view/theme/frio/config.php:155 +#: view/theme/frio/config.php:143 msgid "Navigation bar background color" msgstr "Цвет фона навигационной панели" -#: view/theme/frio/config.php:156 +#: view/theme/frio/config.php:144 msgid "Navigation bar icon color " msgstr "Цвет значков навигационной панели" -#: view/theme/frio/config.php:157 +#: view/theme/frio/config.php:145 msgid "Link color" msgstr "Цвет ссылок" -#: view/theme/frio/config.php:158 +#: view/theme/frio/config.php:146 msgid "Set the background color" msgstr "Установить цвет фона" -#: view/theme/frio/config.php:159 +#: view/theme/frio/config.php:147 msgid "Content background opacity" msgstr "Прозрачность фона основного содержимого" -#: view/theme/frio/config.php:160 +#: view/theme/frio/config.php:148 msgid "Set the background image" msgstr "Установить фоновую картинку" -#: view/theme/frio/config.php:161 +#: view/theme/frio/config.php:149 msgid "Background image style" msgstr "Стиль фонового изображения" -#: view/theme/frio/config.php:164 +#: view/theme/frio/config.php:152 msgid "Always open Compose page" msgstr "Всегда открывать страницу редактора" -#: view/theme/frio/config.php:164 +#: view/theme/frio/config.php:152 msgid "" "The New Post button always open the 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:168 +#: view/theme/frio/config.php:156 msgid "Login page background image" msgstr "Фоновое изображение страницы входа" -#: view/theme/frio/config.php:172 +#: view/theme/frio/config.php:160 msgid "Login page background color" msgstr "Цвет фона страницы входа" -#: view/theme/frio/config.php:172 +#: view/theme/frio/config.php:160 msgid "Leave background image and color empty for theme defaults" msgstr "Оставьте настройки фоновых цвета и изображения пустыми, чтобы применить настройки темы по-умолчанию." -#: view/theme/frio/php/Image.php:39 +#: view/theme/frio/php/Image.php:27 msgid "Top Banner" msgstr "Верхний баннер" -#: view/theme/frio/php/Image.php:39 +#: view/theme/frio/php/Image.php:27 msgid "" "Resize image to the width of the screen and show background color below on " "long pages." msgstr "Растянуть изображение по ширине экрана и показать заливку цветом под ним на длинных страницах." -#: view/theme/frio/php/Image.php:40 +#: view/theme/frio/php/Image.php:28 msgid "Full screen" msgstr "Во весь экран" -#: view/theme/frio/php/Image.php:40 +#: view/theme/frio/php/Image.php:28 msgid "" "Resize image to fill entire screen, clipping either the right or the bottom." msgstr "Растянуть изображение во весь экран, обрезав его часть справа или снизу." -#: view/theme/frio/php/Image.php:41 +#: view/theme/frio/php/Image.php:29 msgid "Single row mosaic" msgstr "Мозаика в один ряд" -#: view/theme/frio/php/Image.php:41 +#: view/theme/frio/php/Image.php:29 msgid "" "Resize image to repeat it on a single row, either vertical or horizontal." msgstr "Растянуть и размножить изображение в один ряд, вертикально или горизонтально." -#: view/theme/frio/php/Image.php:42 +#: view/theme/frio/php/Image.php:30 msgid "Mosaic" msgstr "Мозаика" -#: view/theme/frio/php/Image.php:42 +#: view/theme/frio/php/Image.php:30 msgid "Repeat image to fill the screen." msgstr "Размножить изображение по всему экрану." -#: view/theme/frio/php/default.php:82 view/theme/frio/php/standard.php:40 +#: view/theme/frio/php/default.php:70 view/theme/frio/php/standard.php:28 msgid "Skip to main content" msgstr "Пропустить до основного содержимого" -#: view/theme/frio/php/default.php:153 view/theme/frio/php/standard.php:75 +#: view/theme/frio/php/default.php:141 view/theme/frio/php/standard.php:63 msgid "Back to top" msgstr "Наверх" -#: view/theme/frio/php/scheme.php:105 +#: view/theme/frio/php/scheme.php:93 msgid "Light" msgstr "Светлая" -#: view/theme/frio/php/scheme.php:106 +#: view/theme/frio/php/scheme.php:94 msgid "Dark" msgstr "Тёмная" -#: view/theme/frio/php/scheme.php:107 +#: view/theme/frio/php/scheme.php:95 msgid "Black" msgstr "Чёрная" -#: view/theme/frio/php/scheme.php:118 +#: view/theme/frio/php/scheme.php:106 msgid "Custom" msgstr "Другое" -#: view/theme/frio/theme.php:214 +#: view/theme/frio/theme.php:202 msgid "Guest" msgstr "Гость" -#: view/theme/frio/theme.php:217 +#: view/theme/frio/theme.php:205 msgid "Visitor" msgstr "Посетитель" -#: view/theme/quattro/config.php:89 +#: view/theme/quattro/config.php:77 msgid "Alignment" msgstr "Выравнивание" -#: view/theme/quattro/config.php:89 +#: view/theme/quattro/config.php:77 msgid "Left" msgstr "Слева" -#: view/theme/quattro/config.php:89 +#: view/theme/quattro/config.php:77 msgid "Center" msgstr "Центр" -#: view/theme/quattro/config.php:90 +#: view/theme/quattro/config.php:78 msgid "Color scheme" msgstr "Цветовая схема" -#: view/theme/quattro/config.php:91 +#: view/theme/quattro/config.php:79 msgid "Posts font size" msgstr "Размер шрифта записей" -#: view/theme/quattro/config.php:92 +#: view/theme/quattro/config.php:80 msgid "Textareas font size" msgstr "Размер шрифта текстовых полей" -#: view/theme/vier/config.php:91 +#: view/theme/vier/config.php:79 msgid "Comma separated list of helper groups" msgstr "Список групп поддержки через запятую" -#: view/theme/vier/config.php:131 +#: view/theme/vier/config.php:119 msgid "don't show" msgstr "не показывать" -#: view/theme/vier/config.php:131 +#: view/theme/vier/config.php:119 msgid "show" msgstr "показывать" -#: view/theme/vier/config.php:137 +#: view/theme/vier/config.php:125 msgid "Set style" msgstr "Установить стиль" -#: view/theme/vier/config.php:138 +#: view/theme/vier/config.php:126 msgid "Community Pages" msgstr "Страницы сообщества" -#: view/theme/vier/config.php:139 view/theme/vier/theme.php:148 +#: view/theme/vier/config.php:127 view/theme/vier/theme.php:136 msgid "Community Profiles" msgstr "Профили сообщества" -#: view/theme/vier/config.php:140 +#: view/theme/vier/config.php:128 msgid "Help or @NewHere ?" msgstr "Помощь" -#: view/theme/vier/config.php:141 view/theme/vier/theme.php:319 +#: view/theme/vier/config.php:129 view/theme/vier/theme.php:307 msgid "Connect Services" msgstr "Подключить службы" -#: view/theme/vier/config.php:142 +#: view/theme/vier/config.php:130 msgid "Find Friends" msgstr "Найти друзей" -#: view/theme/vier/config.php:143 view/theme/vier/theme.php:175 +#: view/theme/vier/config.php:131 view/theme/vier/theme.php:163 msgid "Last users" msgstr "Последние пользователи" -#: view/theme/vier/theme.php:234 +#: view/theme/vier/theme.php:222 msgid "Quick Start" msgstr "Быстрый старт" diff --git a/view/lang/ru/strings.php b/view/lang/ru/strings.php index ff41a5321d..27c37c762e 100644 --- a/view/lang/ru/strings.php +++ b/view/lang/ru/strings.php @@ -856,7 +856,6 @@ $a->strings['An author or name was not found.'] = 'Автор или имя не $a->strings['No browser URL could be matched to this address.'] = 'Нет URL браузера, который соответствует этому адресу.'; $a->strings['Unable to match @-style Identity Address with a known protocol or email contact.'] = 'Не получается совместить этот адрес с известным протоколом или контактом электронной почты.'; $a->strings['Use mailto: in front of address to force email check.'] = 'Bcgjkmpeqnt mailto: перед адресом для быстрого доступа к email.'; -$a->strings['The profile address specified belongs to a network which has been disabled on this site.'] = 'Указанный адрес профиля принадлежит сети, недоступной на этом сайта.'; $a->strings['Limited profile. This person will be unable to receive direct/personal notifications from you.'] = 'Ограниченный профиль. Этот человек не сможет получить прямые / личные уведомления от вас.'; $a->strings['Unable to retrieve contact information.'] = 'Невозможно получить контактную информацию.'; $a->strings['Starts:'] = 'Начало:'; @@ -881,7 +880,6 @@ $a->strings['Show map'] = 'Показать карту'; $a->strings['Hide map'] = 'Скрыть карту'; $a->strings['%s\'s birthday'] = 'день рождения %s'; $a->strings['Happy Birthday %s'] = 'С днём рождения %s'; -$a->strings['Detected languages in this post:\n%s'] = 'Обнаруженные в этой записи языки:\n%s'; $a->strings['activity'] = 'активность'; $a->strings['comment'] = 'комментарий'; $a->strings['post'] = 'пост'; @@ -1263,8 +1261,6 @@ $a->strings['Posts per user on community page'] = 'Число записей н $a->strings['Enable Mail support'] = 'Включить поддержку электронной почты'; $a->strings['Enable built-in mail support to poll IMAP folders and to reply via mail.'] = 'Включает встроенную поддержку электронной почты, позволяющую работать с папками IMAP и отвечать по почте.'; $a->strings['Mail support can\'t be enabled because the PHP IMAP module is not installed.'] = 'Поддержка почты не может быть включена, так как не установлен модуль PHP IMAP.'; -$a->strings['Enable OStatus support'] = 'Включить поддержку OStatus'; -$a->strings['Enable built-in OStatus (StatusNet, GNU Social etc.) compatibility. All communications in OStatus are public.'] = 'Включить встроенную поддержку OStatus (StatusNet, GNU Social и т.п.). Всё общение в OStatus происходит публично.'; $a->strings['Diaspora support can\'t be enabled because Friendica was installed into a sub directory.'] = 'Поддержка Diaspora не может быть включена, так как Френдика была установлена в подкаталог.'; $a->strings['Enable Diaspora support'] = 'Включить поддержку Diaspora'; $a->strings['Enable built-in Diaspora network compatibility for communicating with diaspora servers.'] = 'Включить встроенную поддержку Diaspora для общения с серверами сети Diaspora.'; @@ -1306,7 +1302,6 @@ $a->strings['When the database cleanup is enabled, this defines the days after w $a->strings['Lifespan of unclaimed items'] = 'Время жизни ничейных элементов'; $a->strings['When the database cleanup is enabled, this defines the days after which unclaimed remote items (mostly content from the relay) will be deleted. Default value is 90 days. Defaults to the general lifespan value of remote items if set to 0.'] = 'Когда очистка базы данных включена, эта настройка определяет число дней, после которого ничейные элементы (в основном, данные с ретранслятора) будут удалены. Значение по умолчанию 90 дней. Приравнивается ко времени жизни элементов других серверов, если выставлено в 0.'; $a->strings['Lifespan of raw conversation data'] = 'Время жизни необработанных данных коммуникаций.'; -$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.'] = 'Эти данные используются для ActivityPub и OStatus, а так же для диагностики. Обычно их можно спокойно удалять после 14 дней, значение по-умолчанию 90 дней.'; $a->strings['Maximum numbers of comments per post'] = 'Максимальное число комментариев для записи'; $a->strings['How much comments should be shown for each post? Default value is 100.'] = 'Сколько комментариев должно быть показано для каждой записи? Значение по-умолчанию: 100.'; $a->strings['Maximum numbers of comments per post on the display page'] = 'Максимальное число комментариев на запись при его просмотре'; @@ -1580,7 +1575,6 @@ $a->strings['Submit Request'] = 'Отправить запрос'; $a->strings['You already added this contact.'] = 'Вы уже добавили этот контакт.'; $a->strings['The network type couldn\'t be detected. Contact can\'t be added.'] = 'Тип сети не может быть определен. Контакт не может быть добавлен.'; $a->strings['Diaspora support isn\'t enabled. Contact can\'t be added.'] = 'Поддержка Diaspora не включена. Контакт не может быть добавлен.'; -$a->strings['OStatus support is disabled. Contact can\'t be added.'] = 'Поддержка OStatus выключена. Контакт не может быть добавлен.'; $a->strings['Please answer the following:'] = 'Пожалуйста, ответьте следующее:'; $a->strings['Your Identity Address:'] = 'Ваш адрес:'; $a->strings['Profile URL'] = 'URL профиля'; @@ -2087,10 +2081,6 @@ $a->strings['Incomplete request data'] = 'Неполные данные запр $a->strings['Please copy the following authentication code into your application and close this window: %s'] = 'Пожалуйста, скопируйте следующий код аутентификации в ваше приложение и закройте это окно: %s'; $a->strings['Invalid data or unknown client'] = 'Ошибочные данные или неизвестный клиент'; $a->strings['Unsupported or missing grant type'] = 'Неподдерживаемый или отсутствующий тип гранта.'; -$a->strings['Resubscribing to OStatus contacts'] = 'Переподписаться на OStatus-контакты.'; -$a->strings['Keep this window open until done.'] = 'Держать окно открытым до завершения.'; -$a->strings['✔ Done'] = '✔ Готово'; -$a->strings['No OStatus contacts to resubscribe to.'] = 'Нет контактов OStatus для переподписки.'; $a->strings['Subscribing to contacts'] = 'Подписка на контакты'; $a->strings['No contact provided.'] = 'Не указан контакт.'; $a->strings['Couldn\'t fetch information for contact.'] = 'Невозможно получить информацию о контакте.'; @@ -2102,6 +2092,7 @@ $a->strings['Done'] = 'Готово'; $a->strings['success'] = 'удачно'; $a->strings['failed'] = 'неудача'; $a->strings['ignored'] = 'игнорирован'; +$a->strings['Keep this window open until done.'] = 'Держать окно открытым до завершения.'; $a->strings['The Photo is not available.'] = 'Фото недоступно.'; $a->strings['The Photo with id %s is not available.'] = 'Фотография с id %s недоступна.'; $a->strings['Invalid external resource with url %s.'] = 'Проблема с внешним ресурсом по адресу %s.'; @@ -2125,9 +2116,9 @@ $a->strings['Collection (%s)'] = 'Коллекция (%s)'; $a->strings['Followers (%s)'] = 'Подписчики (%s)'; $a->strings['%d more'] = '%d ещё'; $a->strings['No contacts.'] = 'Нет контактов.'; -$a->strings['%s\'s timeline'] = 'Лента %s'; $a->strings['%s\'s posts'] = 'Записи %s'; $a->strings['%s\'s comments'] = 'Комментарии %s'; +$a->strings['%s\'s timeline'] = 'Лента %s'; $a->strings['Image exceeds size limit of %s'] = 'Изображение превышает лимит размера в %s'; $a->strings['Image upload didn\'t complete, please try again'] = 'Не получилось загрузить изображение, попробуйте снова'; $a->strings['Image file is missing'] = 'Файл изображения не найден'; @@ -2403,7 +2394,6 @@ $a->strings['Failed to connect with email account using the settings provided.'] $a->strings['Diaspora (Socialhome, Hubzilla)'] = 'Diaspora (Socialhome, Hubzilla)'; $a->strings['Built-in support for %s connectivity is enabled'] = 'Встроенная поддержка для %s включена'; $a->strings['Built-in support for %s connectivity is disabled'] = 'Встроенная поддержка для %s отключена'; -$a->strings['OStatus (GNU Social)'] = 'OStatus (GNU Social)'; $a->strings['Email access is disabled on this site.'] = 'Доступ эл. почты отключен на этом сайте.'; $a->strings['None'] = 'Ничего'; $a->strings['Default (Mastodon will display the title and a link to the post)'] = 'По-умолчанию (Mastodon будет показывать запись как заголовок и ссылку на статью)'; @@ -2431,7 +2421,6 @@ $a->strings['Article Mode'] = 'Режим статей'; $a->strings['Controls how posts with titles are transmitted. Mastodon and its forks don\'t display the content of these posts if the post is created in the correct (default) way.'] = 'Как будут передаваться записи, у которых указан заголовок. Mastodon и похожие платформы не показывают содержимое таких записей, если они созданы в обычном формате (по-умолчанию), оставляя лишь ссылку на них.'; $a->strings['Your legacy ActivityPub/GNU Social account'] = 'Ваша старая учётная запись ActivityPub/GNU Social'; $a->strings['If you enter your old account name from an ActivityPub based system or your GNU Social/Statusnet account name here (in the format user@domain.tld), your contacts will be added automatically. The field will be emptied when done.'] = 'Если вы введете тут вашу старую учетную запись от платформы совместимой с ActivityPub или GNU Social/Statusnet (в виде пользователь@домен), ваши контакты оттуда будут автоматически добавлены. Поле будет очищено когда все контакты будут добавлены.'; -$a->strings['Repair OStatus subscriptions'] = 'Починить подписки OStatus'; $a->strings['Email/Mailbox Setup'] = 'Настройка эл. почты / почтового ящика'; $a->strings['If you wish to communicate with email contacts using this service (optional), please specify how to connect to your mailbox.'] = 'Если вы хотите общаться с Email контактами, используя этот сервис (по желанию), пожалуйста, уточните, как подключиться к вашему почтовому ящику.'; $a->strings['Last successful email check:'] = 'Последняя успешная проверка электронной почты:'; @@ -2757,7 +2746,6 @@ $a->strings['%s commented on %s\'s post'] = '%s прокомментировал $a->strings['%s created a new post'] = '%s написал новое сообщение'; $a->strings['Friend Suggestion'] = 'Предложение в друзья'; $a->strings['Friend/Connect Request'] = 'Запрос в друзья / на подключение'; -$a->strings['New Follower'] = 'Новый подписчик'; $a->strings['%1$s wants to follow you'] = '%1$s хочет подписаться на вас.'; $a->strings['%1$s has started following you'] = '%1$s подписался на вас'; $a->strings['%1$s liked your comment on %2$s'] = '%1$s нравится ваш комментарий %2$s'; @@ -2914,10 +2902,6 @@ $a->strings['Reacted with %s by: %s'] = 'Отреагировали как %s : $a->strings['Quote shared by: %s'] = 'Процитировано: %s'; $a->strings['Chat'] = 'Чат'; $a->strings['(no subject)'] = '(нет темы)'; -$a->strings['%s is now following %s.'] = '%s теперь подписан на %s.'; -$a->strings['following'] = 'следует'; -$a->strings['%s stopped following %s.'] = '%s отписался от %s.'; -$a->strings['stopped following'] = 'отписка от'; $a->strings['The folder %s must be writable by webserver.'] = 'Каталог %s должен быть доступен для записи веб-сервером.'; $a->strings['Login failed.'] = 'Войти не удалось.'; $a->strings['Login failed. Please check your credentials.'] = 'Ошибка входа. Пожалуйста, проверьте данные для входа.'; diff --git a/view/lang/sv/messages.po b/view/lang/sv/messages.po index 9840d159a6..080c40c757 100644 --- a/view/lang/sv/messages.po +++ b/view/lang/sv/messages.po @@ -1,8 +1,7 @@ # FRIENDICA Distributed Social Network -# SPDX-FileCopyrightText: Copyright (C) 2010-2024, the Friendica project -# -# SPDX-License-Identifier: AGPL-3.0-or-later -# +# Copyright (C) 2010-2024, the Friendica project +# This file is distributed under the same license as the Friendica package. +# # Translators: # Hypolite Petovan , 2019 # efef6ec5b435a041fce803c7f8af77d2_2341d43, 2017 @@ -15,7 +14,7 @@ msgid "" msgstr "" "Project-Id-Version: friendica\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-05-15 12:16+0000\n" +"POT-Creation-Date: 2024-10-07 20:46+0000\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" @@ -25,77 +24,77 @@ msgstr "" "Language: sv\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: mod/item.php:101 mod/item.php:104 mod/item.php:171 mod/item.php:174 +#: mod/item.php:89 mod/item.php:92 mod/item.php:159 mod/item.php:162 msgid "Unable to locate original post." msgstr "Hittar inte det ursprungliga inlägget." -#: mod/item.php:139 +#: mod/item.php:127 msgid "Post updated." msgstr "Inlägget uppdaterades." -#: mod/item.php:204 mod/item.php:208 +#: mod/item.php:192 mod/item.php:196 msgid "Item wasn't stored." msgstr "Objektet lagrades inte." -#: mod/item.php:218 +#: mod/item.php:206 msgid "Item couldn't be fetched." msgstr "Objektet kunde inte hämtas." -#: mod/item.php:260 mod/item.php:264 +#: mod/item.php:250 mod/item.php:254 msgid "Empty post discarded." msgstr "Tomt inlägg. Inte sparat." -#: mod/item.php:435 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 +#: mod/item.php:425 src/Module/Admin/Themes/Details.php:31 +#: src/Module/Admin/Themes/Index.php:51 src/Module/Debug/ItemBody.php:28 +#: src/Module/Debug/ItemBody.php:43 src/Module/Item/Feed.php:66 msgid "Item not found." msgstr "Hittar inte." -#: mod/item.php:459 mod/message.php:66 mod/message.php:112 mod/notes.php:45 -#: mod/photos.php:146 mod/photos.php:662 src/Model/Event.php:520 -#: src/Module/Attach.php:55 src/Module/BaseApi.php:103 -#: src/Module/BaseNotifications.php:98 src/Module/BaseSettings.php:50 -#: src/Module/Calendar/Event/API.php:88 src/Module/Calendar/Event/Form.php:84 -#: src/Module/Calendar/Export.php:82 src/Module/Calendar/Show.php:82 -#: src/Module/Circle.php:41 src/Module/Circle.php:84 -#: src/Module/Contact/Advanced.php:60 src/Module/Contact/Follow.php:87 -#: src/Module/Contact/Follow.php:160 src/Module/Contact/MatchInterests.php:87 -#: src/Module/Contact/Suggestions.php:54 src/Module/Contact/Unfollow.php:66 -#: src/Module/Contact/Unfollow.php:80 src/Module/Contact/Unfollow.php:112 -#: src/Module/FollowConfirm.php:38 src/Module/FriendSuggest.php:57 -#: src/Module/Invite.php:42 src/Module/Invite.php:131 -#: src/Module/Notifications/Notification.php:76 -#: src/Module/Notifications/Notification.php:107 -#: src/Module/OStatus/Repair.php:60 src/Module/OStatus/Subscribe.php:68 -#: src/Module/Post/Edit.php:76 src/Module/Profile/Common.php:75 -#: src/Module/Profile/Contacts.php:78 src/Module/Profile/Photos.php:92 -#: src/Module/Profile/Schedule.php:39 src/Module/Profile/Schedule.php:56 -#: src/Module/Register.php:78 src/Module/Register.php:91 -#: src/Module/Register.php:207 src/Module/Register.php:246 -#: src/Module/Search/Directory.php:37 src/Module/Settings/Account.php:50 -#: src/Module/Settings/Account.php:386 src/Module/Settings/Channels.php:66 -#: src/Module/Settings/Channels.php:141 src/Module/Settings/Delegation.php:90 -#: src/Module/Settings/Display.php:90 src/Module/Settings/Display.php:197 -#: src/Module/Settings/Profile/Photo/Crop.php:165 -#: src/Module/Settings/Profile/Photo/Index.php:110 -#: src/Module/Settings/RemoveMe.php:119 src/Module/Settings/UserExport.php:78 -#: src/Module/Settings/UserExport.php:114 -#: src/Module/Settings/UserExport.php:213 -#: src/Module/Settings/UserExport.php:233 -#: src/Module/Settings/UserExport.php:298 src/Module/User/Delegation.php:154 -#: src/Module/User/Import.php:85 src/Module/User/Import.php:92 +#: mod/item.php:449 mod/message.php:54 mod/message.php:100 mod/notes.php:33 +#: mod/photos.php:135 mod/photos.php:627 src/Model/Event.php:506 +#: src/Module/Attach.php:41 src/Module/BaseApi.php:89 +#: src/Module/BaseNotifications.php:84 src/Module/BaseSettings.php:36 +#: src/Module/Calendar/Event/API.php:74 src/Module/Calendar/Event/Form.php:70 +#: src/Module/Calendar/Export.php:68 src/Module/Calendar/Show.php:68 +#: src/Module/Circle.php:27 src/Module/Circle.php:70 +#: src/Module/Contact/Advanced.php:46 src/Module/Contact/Follow.php:73 +#: src/Module/Contact/Follow.php:141 src/Module/Contact/MatchInterests.php:73 +#: src/Module/Contact/Suggestions.php:40 src/Module/Contact/Unfollow.php:52 +#: src/Module/Contact/Unfollow.php:66 src/Module/Contact/Unfollow.php:98 +#: src/Module/FollowConfirm.php:24 src/Module/FriendSuggest.php:43 +#: src/Module/Invite.php:28 src/Module/Invite.php:117 +#: src/Module/Notifications/Notification.php:62 +#: src/Module/Notifications/Notification.php:93 +#: src/Module/OStatus/Subscribe.php:54 src/Module/Post/Edit.php:62 +#: src/Module/Profile/Common.php:61 src/Module/Profile/Contacts.php:64 +#: src/Module/Profile/Photos.php:78 src/Module/Profile/Schedule.php:25 +#: src/Module/Profile/Schedule.php:42 src/Module/Register.php:70 +#: src/Module/Register.php:83 src/Module/Register.php:199 +#: src/Module/Register.php:238 src/Module/Search/Directory.php:23 +#: src/Module/Settings/Account.php:36 src/Module/Settings/Account.php:377 +#: src/Module/Settings/Channels.php:52 src/Module/Settings/Channels.php:127 +#: src/Module/Settings/Delegation.php:76 src/Module/Settings/Display.php:76 +#: src/Module/Settings/Display.php:183 +#: src/Module/Settings/Profile/Photo/Crop.php:151 +#: src/Module/Settings/Profile/Photo/Index.php:96 +#: src/Module/Settings/RemoveMe.php:105 src/Module/Settings/UserExport.php:64 +#: src/Module/Settings/UserExport.php:100 +#: src/Module/Settings/UserExport.php:199 +#: src/Module/Settings/UserExport.php:219 +#: src/Module/Settings/UserExport.php:284 src/Module/User/Delegation.php:140 +#: src/Module/User/Import.php:71 src/Module/User/Import.php:78 msgid "Permission denied." msgstr "Åtkomst nekad." -#: mod/lostpass.php:40 +#: mod/lostpass.php:28 msgid "No valid account found." msgstr "Inget giltigt konto hittades." -#: mod/lostpass.php:52 +#: mod/lostpass.php:40 msgid "Password reset request issued. Check your email." msgstr "Nytt lösenord har begärts. Kolla din mail." -#: mod/lostpass.php:58 +#: mod/lostpass.php:46 #, php-format msgid "" "\n" @@ -111,7 +110,7 @@ msgid "" "\t\tissued this request." msgstr "\n\t\tHej %1$s,\n\t\t\tNågon begärde nyligen att \"%2$s\" skulle återställa ditt lösenord.\n\t\tFör att utföra denna begäran, vänligen besök länken nedan eller kopiera den till din webläsare.\n\n\t\tOm du INTE begärde återställning av ditt lösenord så ska du INTE följa länken, utan ignorera detta mail. Denna begäran om återställning blir snart ogiltig.\n\n\t\tDitt lösenord kommer inte att återställas om vi inte kan verifiera att det var du som begärde det." -#: mod/lostpass.php:69 +#: mod/lostpass.php:57 #, php-format msgid "" "\n" @@ -128,70 +127,70 @@ msgid "" "\t\tLogin Name:\t%3$s" msgstr "\n\t\tFölj denna länk snart för att bekräfta din identitet:\n\n\t\t%1$s\n\n\t\tDu kommer sedan att få ett mail med det nya lösenordet.\n\t\tDu kan ändra det lösenordet från dina konto-inställningar efter att du loggat in.\n\n\t\tDina inloggningsuppgifter:\n\n\t\tWeb-plats:\t%2$s\n\t\tAnvändarnamn:\t%3$s" -#: mod/lostpass.php:84 +#: mod/lostpass.php:72 #, php-format msgid "Password reset requested at %s" msgstr "Nytt lösenord på %s har begärts" -#: mod/lostpass.php:100 +#: mod/lostpass.php:88 msgid "" "Request could not be verified. (You may have previously submitted it.) " "Password reset failed." msgstr "Begäran kunde inte verifieras. (Du kanske redan skickat den?) Det gick inte att byta lösenord." -#: mod/lostpass.php:113 +#: mod/lostpass.php:101 msgid "Request has expired, please make a new one." msgstr "Förfrågningen har slutat gälla, vänligen gör en ny." -#: mod/lostpass.php:128 +#: mod/lostpass.php:116 msgid "Forgot your Password?" msgstr "Glömt lösenordet?" -#: mod/lostpass.php:129 +#: mod/lostpass.php:117 msgid "" "Enter your email address and submit to have your password reset. Then check " "your email for further instructions." msgstr "Ange din e-postadress för att få ett nytt lösenord. Du kommer att få ett meddelande med vidare instruktioner via e-post." -#: mod/lostpass.php:130 src/Module/Security/Login.php:160 +#: mod/lostpass.php:118 src/Module/Security/Login.php:150 msgid "Nickname or Email: " msgstr "Användarnamn eller e-post:" -#: mod/lostpass.php:131 +#: mod/lostpass.php:119 msgid "Reset" msgstr "Skicka" -#: mod/lostpass.php:146 src/Module/Security/Login.php:172 +#: mod/lostpass.php:134 src/Module/Security/Login.php:162 msgid "Password Reset" msgstr "Glömt lösenordet?" -#: mod/lostpass.php:147 +#: mod/lostpass.php:135 msgid "Your password has been reset as requested." msgstr "Nu har du fått ett nytt lösenord." -#: mod/lostpass.php:148 +#: mod/lostpass.php:136 msgid "Your new password is" msgstr "Det nya lösenordet är" -#: mod/lostpass.php:149 +#: mod/lostpass.php:137 msgid "Save or copy your new password - and then" msgstr "Spara eller kopiera lösenordet och" -#: mod/lostpass.php:150 +#: mod/lostpass.php:138 msgid "click here to login" msgstr "klicka här för att logga in" -#: mod/lostpass.php:151 +#: mod/lostpass.php:139 msgid "" "Your password may be changed from the Settings page after " "successful login." msgstr "När du loggat in kan du byta lösenord på sidan Inställningar." -#: mod/lostpass.php:155 +#: mod/lostpass.php:143 msgid "Your password has been reset." msgstr "Ditt lösenord har återställts." -#: mod/lostpass.php:158 +#: mod/lostpass.php:146 #, php-format msgid "" "\n" @@ -202,7 +201,7 @@ msgid "" "\t\t" msgstr "" -#: mod/lostpass.php:164 +#: mod/lostpass.php:152 #, php-format msgid "" "\n" @@ -216,2408 +215,2415 @@ msgid "" "\t\t" msgstr "" -#: mod/lostpass.php:176 +#: mod/lostpass.php:164 #, php-format msgid "Your password has been changed at %s" msgstr "Ditt lösenord ändrades den %s" -#: mod/message.php:45 mod/message.php:127 src/Content/Nav.php:321 +#: mod/message.php:33 mod/message.php:115 src/Content/Nav.php:307 msgid "New Message" msgstr "Nytt meddelande" -#: mod/message.php:81 +#: mod/message.php:69 msgid "No recipient selected." msgstr "Ingen mottagare har valts." -#: mod/message.php:86 +#: mod/message.php:74 msgid "Unable to locate contact information." msgstr "Det gick inte att hitta kontaktuppgifterna." -#: mod/message.php:90 +#: mod/message.php:78 msgid "Message could not be sent." msgstr "Det gick inte att skicka meddelandet." -#: mod/message.php:94 +#: mod/message.php:82 msgid "Message collection failure." msgstr "Insamling av meddelanden misslyckades." -#: mod/message.php:121 src/Module/Notifications/Introductions.php:135 -#: src/Module/Notifications/Introductions.php:170 -#: src/Module/Notifications/Notification.php:85 +#: mod/message.php:109 src/Module/Notifications/Introductions.php:127 +#: src/Module/Notifications/Introductions.php:162 +#: src/Module/Notifications/Notification.php:71 msgid "Discard" msgstr "Ta bort" -#: mod/message.php:134 src/Content/Nav.php:318 view/theme/frio/theme.php:244 +#: mod/message.php:122 src/Content/Nav.php:304 view/theme/frio/theme.php:232 msgid "Messages" msgstr "Meddelanden" -#: mod/message.php:147 +#: mod/message.php:135 msgid "Conversation not found." msgstr "Konversationen hittades inte." -#: mod/message.php:152 +#: mod/message.php:140 msgid "Message was not deleted." msgstr "Meddelandet togs inte bort." -#: mod/message.php:167 +#: mod/message.php:155 msgid "Conversation was not removed." msgstr "Konversationen togs inte bort." -#: mod/message.php:180 mod/message.php:285 +#: mod/message.php:168 mod/message.php:273 msgid "Please enter a link URL:" msgstr "Ange en länk (URL):" -#: mod/message.php:189 +#: mod/message.php:177 msgid "Send Private Message" msgstr "Skicka personligt meddelande" -#: mod/message.php:190 mod/message.php:345 -#: src/Module/Privacy/PermissionTooltip.php:132 +#: mod/message.php:178 mod/message.php:333 +#: src/Module/Privacy/PermissionTooltip.php:118 msgid "To:" msgstr "Till:" -#: mod/message.php:191 mod/message.php:346 +#: mod/message.php:179 mod/message.php:334 msgid "Subject:" msgstr "Rubrik:" -#: mod/message.php:195 mod/message.php:349 src/Module/Invite.php:171 +#: mod/message.php:183 mod/message.php:337 src/Module/Invite.php:157 msgid "Your message:" msgstr "Meddelande:" -#: mod/message.php:198 mod/message.php:353 src/Content/Conversation.php:369 -#: src/Module/Post/Edit.php:131 +#: mod/message.php:186 mod/message.php:341 src/Content/Conversation.php:355 +#: src/Module/Post/Edit.php:117 msgid "Upload photo" msgstr "Ladda upp bild" -#: mod/message.php:199 mod/message.php:354 src/Module/Post/Edit.php:135 +#: mod/message.php:187 mod/message.php:342 src/Module/Post/Edit.php:121 msgid "Insert web link" msgstr "Infoga länk" -#: mod/message.php:200 mod/message.php:356 mod/photos.php:1290 -#: src/Content/Conversation.php:400 src/Content/Conversation.php:1576 -#: src/Module/Item/Compose.php:213 src/Module/Post/Edit.php:145 -#: src/Object/Post.php:618 +#: mod/message.php:188 mod/message.php:344 mod/photos.php:1255 +#: src/Content/Conversation.php:386 src/Content/Conversation.php:1562 +#: src/Module/Item/Compose.php:199 src/Module/Post/Edit.php:131 +#: src/Object/Post.php:604 msgid "Please wait" msgstr "Var god vänta" -#: mod/message.php:201 mod/message.php:355 mod/photos.php:693 -#: mod/photos.php:813 mod/photos.php:1090 mod/photos.php:1131 -#: mod/photos.php:1187 mod/photos.php:1267 -#: src/Module/Calendar/Event/Form.php:250 src/Module/Contact/Advanced.php:132 +#: mod/message.php:189 mod/message.php:343 mod/photos.php:658 +#: mod/photos.php:778 mod/photos.php:1055 mod/photos.php:1096 +#: mod/photos.php:1152 mod/photos.php:1232 +#: src/Module/Calendar/Event/Form.php:236 src/Module/Contact/Advanced.php:118 #: src/Module/Contact/Profile.php:370 -#: src/Module/Debug/ActivityPubConversion.php:140 -#: 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 -#: src/Module/Invite.php:178 src/Module/Item/Compose.php:196 -#: src/Module/Moderation/Item/Source.php:79 -#: src/Module/Moderation/Report/Create.php:168 -#: src/Module/Moderation/Report/Create.php:183 -#: src/Module/Moderation/Report/Create.php:211 -#: src/Module/Moderation/Report/Create.php:263 -#: src/Module/Profile/Profile.php: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:1159 view/theme/duepuntozero/config.php:85 -#: view/theme/frio/config.php:150 view/theme/quattro/config.php:87 -#: view/theme/vier/config.php:135 +#: src/Module/Debug/ActivityPubConversion.php:132 +#: src/Module/Debug/Babel.php:307 src/Module/Debug/Localtime.php:50 +#: src/Module/Debug/Probe.php:40 src/Module/Debug/WebFinger.php:37 +#: src/Module/FriendSuggest.php:131 src/Module/Install.php:220 +#: src/Module/Install.php:260 src/Module/Install.php:295 +#: src/Module/Invite.php:164 src/Module/Item/Compose.php:182 +#: src/Module/Moderation/Item/Source.php:71 +#: src/Module/Moderation/Report/Create.php:154 +#: src/Module/Moderation/Report/Create.php:169 +#: src/Module/Moderation/Report/Create.php:197 +#: src/Module/Moderation/Report/Create.php:249 +#: src/Module/Profile/Profile.php:262 +#: src/Module/Settings/Profile/Index.php:248 +#: src/Module/Settings/Server/Action.php:65 src/Module/User/Delegation.php:175 +#: src/Object/Post.php:1145 view/theme/duepuntozero/config.php:73 +#: view/theme/frio/config.php:138 view/theme/quattro/config.php:75 +#: view/theme/vier/config.php:123 msgid "Submit" msgstr "Spara" -#: mod/message.php:222 +#: mod/message.php:210 msgid "No messages." msgstr "Inga meddelanden." -#: mod/message.php:278 +#: mod/message.php:266 msgid "Message not available." msgstr "Meddelandet är inte tillgängligt." -#: mod/message.php:322 +#: mod/message.php:310 msgid "Delete message" msgstr "Ta bort meddelande" -#: mod/message.php:324 mod/message.php:453 +#: mod/message.php:312 mod/message.php:441 msgid "D, d M Y - g:i A" msgstr "D, d M Y - g:i A" -#: mod/message.php:339 mod/message.php:450 +#: mod/message.php:327 mod/message.php:438 msgid "Delete conversation" msgstr "Ta bort konversation" -#: mod/message.php:341 +#: mod/message.php:329 msgid "" "No secure communications available. You may be able to " "respond from the sender's profile page." msgstr "Inga säkra kommunikationer tillgängliga. Du
kanske
kan ha möjlighet att svara från sändarens profilsida." -#: mod/message.php:344 +#: mod/message.php:332 msgid "Send Reply" msgstr "Skicka svar" -#: mod/message.php:424 +#: mod/message.php:412 #, php-format msgid "Unknown sender - %s" msgstr "Okänd sändare - %s" -#: mod/message.php:426 +#: mod/message.php:414 #, php-format msgid "You and %s" msgstr "Du och %s" -#: mod/message.php:428 +#: mod/message.php:416 #, php-format msgid "%s and You" msgstr "%s och Du" -#: mod/message.php:456 +#: mod/message.php:444 #, php-format msgid "%d message" msgid_plural "%d messages" msgstr[0] "%d meddelande" msgstr[1] "%d meddelanden" -#: mod/notes.php:52 src/Module/BaseProfile.php:108 +#: mod/notes.php:40 src/Module/BaseProfile.php:94 msgid "Personal Notes" msgstr "Personliga anteckningar" -#: mod/notes.php:56 +#: mod/notes.php:44 msgid "Personal notes are visible only by yourself." msgstr "Personliga anteckningar kan endast ses av dig själv." -#: mod/notes.php:57 src/Content/Text/HTML.php:861 -#: src/Module/Admin/Storage.php:142 src/Module/Filer/SaveTag.php:74 -#: src/Module/Post/Edit.php:129 src/Module/Settings/Channels.php:229 +#: mod/notes.php:45 src/Content/Text/HTML.php:847 +#: src/Module/Admin/Storage.php:128 src/Module/Filer/SaveTag.php:60 +#: src/Module/Post/Edit.php:115 src/Module/Settings/Channels.php:215 msgid "Save" msgstr "Spara" -#: mod/photos.php:65 mod/photos.php:128 mod/photos.php:572 -#: src/Model/Event.php:512 src/Model/Profile.php:234 -#: src/Module/Calendar/Export.php:74 src/Module/Calendar/Show.php:74 -#: src/Module/DFRN/Poll.php:43 src/Module/Feed.php:64 src/Module/HCard.php:51 -#: src/Module/Profile/Common.php:62 src/Module/Profile/Common.php:71 -#: src/Module/Profile/Contacts.php:64 src/Module/Profile/Contacts.php:72 -#: src/Module/Profile/Conversations.php:91 src/Module/Profile/Media.php:56 -#: src/Module/Profile/Photos.php:83 src/Module/Profile/RemoteFollow.php:71 -#: src/Module/Register.php:268 +#: mod/photos.php:54 mod/photos.php:117 mod/photos.php:537 +#: src/Model/Event.php:498 src/Model/Profile.php:213 +#: src/Module/Calendar/Export.php:60 src/Module/Calendar/Show.php:60 +#: src/Module/Feed.php:52 src/Module/HCard.php:37 +#: src/Module/Profile/Common.php:48 src/Module/Profile/Common.php:57 +#: src/Module/Profile/Contacts.php:50 src/Module/Profile/Contacts.php:58 +#: src/Module/Profile/Conversations.php:77 src/Module/Profile/Media.php:42 +#: src/Module/Profile/Photos.php:69 src/Module/Profile/RemoteFollow.php:57 +#: src/Module/Register.php:260 msgid "User not found." msgstr "Användaren hittades inte." -#: mod/photos.php:102 src/Module/BaseProfile.php:68 -#: src/Module/Profile/Photos.php:375 +#: mod/photos.php:91 src/Module/BaseProfile.php:54 +#: src/Module/Profile/Photos.php:361 msgid "Photo Albums" msgstr "Fotoalbum" -#: mod/photos.php:103 src/Module/Profile/Photos.php:376 -#: src/Module/Profile/Photos.php:396 +#: mod/photos.php:92 src/Module/Profile/Photos.php:362 +#: src/Module/Profile/Photos.php:382 msgid "Recent Photos" msgstr "Nyligen tillagda bilder" -#: mod/photos.php:105 mod/photos.php:861 src/Module/Profile/Photos.php:378 -#: src/Module/Profile/Photos.php:398 +#: mod/photos.php:94 mod/photos.php:826 src/Module/Profile/Photos.php:364 +#: src/Module/Profile/Photos.php:384 msgid "Upload New Photos" msgstr "Ladda upp bilder" -#: mod/photos.php:117 src/Module/BaseSettings.php:72 -#: src/Module/Profile/Photos.php:359 +#: mod/photos.php:106 src/Module/BaseSettings.php:58 +#: src/Module/Profile/Photos.php:345 msgid "everybody" msgstr "alla" -#: mod/photos.php:153 +#: mod/photos.php:142 msgid "Contact information unavailable" msgstr "Kommer inte åt kontaktuppgifter." -#: mod/photos.php:182 +#: mod/photos.php:171 msgid "Album not found." msgstr "Albumet finns inte." -#: mod/photos.php:238 +#: mod/photos.php:227 msgid "Album successfully deleted" msgstr "Borttagningen av albumet lyckades" -#: mod/photos.php:240 +#: mod/photos.php:229 msgid "Album was empty." msgstr "Albumet var tomt." -#: mod/photos.php:271 +#: mod/photos.php:260 msgid "Failed to delete the photo." msgstr "Borttagningen av fotot misslyckades." -#: mod/photos.php:539 +#: mod/photos.php:504 msgid "a photo" msgstr "ett foto" -#: mod/photos.php:539 +#: mod/photos.php:504 #, 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:576 src/Module/Conversation/Community.php:160 -#: src/Module/Directory.php:48 src/Module/Profile/Photos.php:293 -#: src/Module/Search/Index.php:65 +#: mod/photos.php:541 src/Module/Conversation/Community.php:148 +#: src/Module/Directory.php:35 src/Module/Profile/Photos.php:279 +#: src/Module/Search/Index.php:51 msgid "Public access denied." msgstr "Publik åtkomst nekades." -#: mod/photos.php:581 +#: mod/photos.php:546 msgid "No photos selected" msgstr "Inga bilder har valts" -#: mod/photos.php:709 +#: mod/photos.php:674 #, php-format msgid "The maximum accepted image size is %s" msgstr "" -#: mod/photos.php:716 +#: mod/photos.php:681 msgid "Upload Photos" msgstr "Ladda upp bilder" -#: mod/photos.php:720 mod/photos.php:809 +#: mod/photos.php:685 mod/photos.php:774 msgid "New album name: " msgstr "Nytt album med namn: " -#: mod/photos.php:721 +#: mod/photos.php:686 msgid "or select existing album:" msgstr "eller välj befintligt album:" -#: mod/photos.php:722 +#: mod/photos.php:687 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:725 mod/photos.php:1086 src/Content/Conversation.php:402 -#: src/Module/Calendar/Event/Form.php:253 src/Module/Post/Edit.php:183 +#: mod/photos.php:690 mod/photos.php:1051 src/Content/Conversation.php:388 +#: src/Module/Calendar/Event/Form.php:239 src/Module/Post/Edit.php:169 msgid "Permissions" msgstr "Åtkomst" -#: mod/photos.php:790 +#: mod/photos.php:755 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:791 mod/photos.php:814 +#: mod/photos.php:756 mod/photos.php:779 msgid "Delete Album" msgstr "Ta bort album" -#: mod/photos.php:792 mod/photos.php:892 src/Content/Conversation.php:417 -#: 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 -#: src/Module/Media/Photo/Browser.php:88 src/Module/Post/Edit.php:167 -#: src/Module/Post/Tag/Remove.php:109 src/Module/Profile/RemoteFollow.php:134 -#: src/Module/Security/TwoFactor/SignOut.php:125 +#: mod/photos.php:757 mod/photos.php:857 src/Content/Conversation.php:403 +#: src/Module/Contact/Follow.php:154 src/Module/Contact/Revoke.php:92 +#: src/Module/Contact/Unfollow.php:112 +#: src/Module/Media/Attachment/Browser.php:63 +#: src/Module/Media/Photo/Browser.php:74 src/Module/Post/Edit.php:153 +#: src/Module/Post/Tag/Remove.php:95 src/Module/Profile/RemoteFollow.php:120 +#: src/Module/Security/TwoFactor/SignOut.php:111 msgid "Cancel" msgstr "Avbryt" -#: mod/photos.php:818 +#: mod/photos.php:783 msgid "Edit Album" msgstr "Redigera album" -#: mod/photos.php:819 +#: mod/photos.php:784 msgid "Drop Album" msgstr "Släpp albumet" -#: mod/photos.php:823 +#: mod/photos.php:788 msgid "Show Newest First" msgstr "Visa nyaste först" -#: mod/photos.php:825 +#: mod/photos.php:790 msgid "Show Oldest First" msgstr "Visa äldsta först" -#: mod/photos.php:846 src/Module/Profile/Photos.php:346 +#: mod/photos.php:811 src/Module/Profile/Photos.php:332 msgid "View Photo" msgstr "Visa bild" -#: mod/photos.php:878 +#: mod/photos.php:843 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:880 +#: mod/photos.php:845 msgid "Photo not available" msgstr "Bilden är inte tillgänglig" -#: mod/photos.php:890 +#: mod/photos.php:855 msgid "Do you really want to delete this photo?" msgstr "Vill du verkligen ta bort det här fotot?" -#: mod/photos.php:891 mod/photos.php:1091 +#: mod/photos.php:856 mod/photos.php:1056 msgid "Delete Photo" msgstr "Ta bort bild" -#: mod/photos.php:989 +#: mod/photos.php:954 msgid "View photo" msgstr "Visa fotot" -#: mod/photos.php:991 +#: mod/photos.php:956 msgid "Edit photo" msgstr "Hantera bild" -#: mod/photos.php:992 +#: mod/photos.php:957 msgid "Delete photo" msgstr "Ta bort fotot" -#: mod/photos.php:993 +#: mod/photos.php:958 msgid "Use as profile photo" msgstr "Använd som ett profilfoto" -#: mod/photos.php:1000 +#: mod/photos.php:965 msgid "Private Photo" msgstr "Privat foto" -#: mod/photos.php:1006 +#: mod/photos.php:971 msgid "View Full Size" msgstr "Visa fullstor" -#: mod/photos.php:1059 +#: mod/photos.php:1024 msgid "Tags: " msgstr "Taggar: " -#: mod/photos.php:1062 +#: mod/photos.php:1027 msgid "[Select tags to remove]" msgstr "[Välj taggar att ta bort]" -#: mod/photos.php:1077 +#: mod/photos.php:1042 msgid "New album name" msgstr "Nytt album med namn" -#: mod/photos.php:1078 +#: mod/photos.php:1043 msgid "Caption" msgstr "Caption" -#: mod/photos.php:1079 +#: mod/photos.php:1044 msgid "Add a Tag" msgstr "Lägg till tagg" -#: mod/photos.php:1079 +#: mod/photos.php:1044 msgid "" "Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping" msgstr "Exempel: @adam, @Anna_Andersson, @johan@exempel.com, #Stockholm, #camping" -#: mod/photos.php:1080 +#: mod/photos.php:1045 msgid "Do not rotate" msgstr "Rotera inte" -#: mod/photos.php:1081 +#: mod/photos.php:1046 msgid "Rotate CW (right)" msgstr "Rotera medurs (höger)" -#: mod/photos.php:1082 +#: mod/photos.php:1047 msgid "Rotate CCW (left)" msgstr "Rotera Moturs (vänster)" -#: mod/photos.php:1128 mod/photos.php:1184 mod/photos.php:1264 -#: src/Module/Contact.php:618 src/Module/Item/Compose.php:195 -#: src/Object/Post.php:1156 +#: mod/photos.php:1093 mod/photos.php:1149 mod/photos.php:1229 +#: src/Module/Contact.php:600 src/Module/Item/Compose.php:181 +#: src/Object/Post.php:1142 msgid "This is you" msgstr "Det här är du" -#: mod/photos.php:1130 mod/photos.php:1186 mod/photos.php:1266 -#: src/Module/Moderation/Reports.php:110 src/Object/Post.php:612 -#: src/Object/Post.php:1158 +#: mod/photos.php:1095 mod/photos.php:1151 mod/photos.php:1231 +#: src/Module/Moderation/Reports.php:102 src/Object/Post.php:598 +#: src/Object/Post.php:1144 msgid "Comment" msgstr "Kommentera" -#: mod/photos.php:1132 mod/photos.php:1188 mod/photos.php:1268 -#: src/Content/Conversation.php:414 src/Module/Calendar/Event/Form.php:248 -#: src/Module/Item/Compose.php:208 src/Module/Post/Edit.php:165 -#: src/Object/Post.php:1172 +#: mod/photos.php:1097 mod/photos.php:1153 mod/photos.php:1233 +#: src/Content/Conversation.php:400 src/Module/Calendar/Event/Form.php:234 +#: src/Module/Item/Compose.php:194 src/Module/Post/Edit.php:151 +#: src/Object/Post.php:1158 msgid "Preview" msgstr "Förhandsgranskning" -#: mod/photos.php:1133 src/Content/Conversation.php:368 -#: src/Module/Post/Edit.php:130 src/Object/Post.php:1160 +#: mod/photos.php:1098 src/Content/Conversation.php:354 +#: src/Module/Post/Edit.php:116 src/Object/Post.php:1146 msgid "Loading..." msgstr "Laddar..." -#: mod/photos.php:1225 src/Content/Conversation.php:1498 -#: src/Object/Post.php:274 +#: mod/photos.php:1190 src/Content/Conversation.php:1484 +#: src/Object/Post.php:260 msgid "Select" msgstr "Välj" -#: mod/photos.php:1226 src/Content/Conversation.php:1499 -#: src/Module/Moderation/Users/Active.php:136 -#: src/Module/Moderation/Users/Blocked.php:136 -#: src/Module/Moderation/Users/Index.php:151 -#: src/Module/Settings/Connectors.php:244 -#: src/Module/Settings/Server/Index.php:109 +#: mod/photos.php:1191 src/Content/Conversation.php:1485 +#: src/Module/Moderation/Users/Active.php:122 +#: src/Module/Moderation/Users/Blocked.php:122 +#: src/Module/Moderation/Users/Index.php:137 +#: src/Module/Settings/Connectors.php:233 +#: src/Module/Settings/Server/Index.php:95 msgid "Delete" msgstr "Ta bort" -#: mod/photos.php:1287 src/Object/Post.php:440 +#: mod/photos.php:1252 src/Object/Post.php:426 msgid "Like" msgstr "Gilla" -#: mod/photos.php:1288 src/Object/Post.php:440 +#: mod/photos.php:1253 src/Object/Post.php:426 msgid "I like this (toggle)" msgstr "Jag gillar det här (växla)" -#: mod/photos.php:1289 src/Object/Post.php:441 +#: mod/photos.php:1254 src/Object/Post.php:427 msgid "Dislike" msgstr "Ogilla" -#: mod/photos.php:1291 src/Object/Post.php:441 +#: mod/photos.php:1256 src/Object/Post.php:427 msgid "I don't like this (toggle)" msgstr "Jag ogillar det här (växla)" -#: mod/photos.php:1313 +#: mod/photos.php:1278 msgid "Map" msgstr "Karta" -#: src/App.php:438 +#: src/App.php:432 msgid "No system theme config value set." msgstr "" -#: src/App.php:546 +#: src/App.php:540 msgid "Apologies but the website is unavailable at the moment." msgstr "Ursäkta, men hemsidan är inte tillgänglig för tillfället. " -#: src/App/Page.php:250 +#: src/App/Page.php:236 msgid "Delete this item?" msgstr "Ta bort?" -#: src/App/Page.php:251 +#: src/App/Page.php:237 msgid "" "Block this author? They won't be able to follow you nor see your public " "posts, and you won't be able to see their posts and their notifications." msgstr "" -#: src/App/Page.php:252 +#: src/App/Page.php:238 msgid "" "Ignore this author? You won't be able to see their posts and their " "notifications." msgstr "" -#: src/App/Page.php:253 +#: src/App/Page.php:239 msgid "Collapse this author's posts?" msgstr "" -#: src/App/Page.php:254 +#: src/App/Page.php:240 msgid "Ignore this author's server?" msgstr "" -#: src/App/Page.php:255 src/Module/Settings/Server/Action.php:61 -#: src/Module/Settings/Server/Index.php:108 +#: src/App/Page.php:241 src/Module/Settings/Server/Action.php:47 +#: src/Module/Settings/Server/Index.php:94 msgid "" "You won't see any content from this server including reshares in your " "Network page, the community pages and individual conversations." msgstr "" -#: src/App/Page.php:257 +#: src/App/Page.php:243 msgid "Like not successful" msgstr "" -#: src/App/Page.php:258 +#: src/App/Page.php:244 msgid "Dislike not successful" msgstr "" -#: src/App/Page.php:259 +#: src/App/Page.php:245 msgid "Sharing not successful" msgstr "" -#: src/App/Page.php:260 +#: src/App/Page.php:246 msgid "Attendance unsuccessful" msgstr "" -#: src/App/Page.php:261 +#: src/App/Page.php:247 msgid "Backend error" msgstr "" -#: src/App/Page.php:262 +#: src/App/Page.php:248 msgid "Network error" msgstr "" -#: src/App/Page.php:265 +#: src/App/Page.php:251 msgid "Drop files here to upload" msgstr "" -#: src/App/Page.php:266 +#: src/App/Page.php:252 msgid "Your browser does not support drag and drop file uploads." msgstr "" -#: src/App/Page.php:267 +#: src/App/Page.php:253 msgid "" "Please use the fallback form below to upload your files like in the olden " "days." msgstr "" -#: src/App/Page.php:268 +#: src/App/Page.php:254 msgid "File is too big ({{filesize}}MiB). Max filesize: {{maxFilesize}}MiB." msgstr "" -#: src/App/Page.php:269 +#: src/App/Page.php:255 msgid "You can't upload files of this type." msgstr "" -#: src/App/Page.php:270 +#: src/App/Page.php:256 msgid "Server responded with {{statusCode}} code." msgstr "" -#: src/App/Page.php:271 +#: src/App/Page.php:257 msgid "Cancel upload" msgstr "" -#: src/App/Page.php:272 +#: src/App/Page.php:258 msgid "Upload canceled." msgstr "" -#: src/App/Page.php:273 +#: src/App/Page.php:259 msgid "Are you sure you want to cancel this upload?" msgstr "" -#: src/App/Page.php:274 +#: src/App/Page.php:260 msgid "Remove file" msgstr "" -#: src/App/Page.php:275 +#: src/App/Page.php:261 msgid "You can't upload any more files." msgstr "" -#: src/App/Page.php:353 +#: src/App/Page.php:339 msgid "toggle mobile" msgstr "växla mobil" -#: src/App/Router.php:309 +#: src/App/Router.php:295 #, php-format msgid "Method not allowed for this module. Allowed method(s): %s" msgstr "" -#: src/App/Router.php:311 src/Module/HTTPException/PageNotFound.php:49 +#: src/App/Router.php:297 src/Module/HTTPException/PageNotFound.php:35 +#: src/Module/Stats.php:49 msgid "Page not found." msgstr "Sidan hittades inte." -#: src/App/Router.php:323 +#: src/App/Router.php:309 msgid "You must be logged in to use addons. " msgstr "Du måste vara inloggad för att använda insticksprogram." -#: src/BaseModule.php:407 +#: src/BaseModule.php:393 msgid "" "The form security token was not correct. This probably happened because the " "form has been opened for too long (>3 hours) before submitting it." msgstr "" -#: src/BaseModule.php:434 +#: src/BaseModule.php:420 msgid "All contacts" msgstr "Alla kontakter" -#: src/BaseModule.php:439 src/Content/Conversation/Factory/Channel.php:46 -#: src/Content/Widget.php:240 src/Core/ACL.php:195 src/Module/Contact.php:414 -#: src/Module/Privacy/PermissionTooltip.php:164 -#: src/Module/Privacy/PermissionTooltip.php:186 -#: src/Module/Settings/Channels.php:160 +#: src/BaseModule.php:425 src/Content/Conversation/Factory/Channel.php:32 +#: src/Content/Widget.php:218 src/Core/ACL.php:181 src/Module/Contact.php:395 +#: src/Module/Privacy/PermissionTooltip.php:150 +#: src/Module/Privacy/PermissionTooltip.php:172 +#: src/Module/Settings/Channels.php:146 msgid "Followers" msgstr "Följare" -#: src/BaseModule.php:444 src/Content/Widget.php:241 -#: src/Module/Contact.php:417 src/Module/Settings/Channels.php:159 +#: src/BaseModule.php:430 src/Content/Widget.php:219 +#: src/Module/Contact.php:398 src/Module/Settings/Channels.php:145 msgid "Following" msgstr "Följer" -#: src/BaseModule.php:449 src/Content/Widget.php:242 -#: src/Module/Contact.php:420 +#: src/BaseModule.php:435 src/Content/Widget.php:220 +#: src/Module/Contact.php:401 msgid "Mutual friends" msgstr "" -#: src/BaseModule.php:457 +#: src/BaseModule.php:443 msgid "Common" msgstr "Vanlig" -#: src/Console/Addon.php:175 src/Console/Addon.php:199 +#: src/Console/Addon.php:161 src/Console/Addon.php:185 msgid "Addon not found" msgstr "Insticksprogrammet hittades inte" -#: src/Console/Addon.php:179 +#: src/Console/Addon.php:165 msgid "Addon already enabled" msgstr "Insticksprogrammet är redan aktiverat" -#: src/Console/Addon.php:203 +#: src/Console/Addon.php:189 msgid "Addon already disabled" msgstr "Insticksprogrammet är redan inaktiverat" -#: src/Console/ArchiveContact.php:106 +#: src/Console/ArchiveContact.php:92 #, php-format msgid "Could not find any unarchived contact entry for this URL (%s)" msgstr "" -#: src/Console/ArchiveContact.php:109 +#: src/Console/ArchiveContact.php:95 msgid "The contact entries have been archived" msgstr "Kontaktuppgifterna har arkiverats" -#: src/Console/GlobalCommunityBlock.php:96 -#: src/Module/Moderation/Blocklist/Contact.php:65 +#: src/Console/ClearAvatarCache.php:73 +msgid "" +"The avatar cache needs to be disabled in local.config.php to use this " +"command." +msgstr "" + +#: src/Console/GlobalCommunityBlock.php:82 +#: src/Module/Moderation/Blocklist/Contact.php:51 #, php-format msgid "Could not find any contact entry for this URL (%s)" msgstr "Kunde inte hitta någon kontakt för denna URL (%s)" -#: src/Console/GlobalCommunityBlock.php:101 -#: src/Module/Moderation/Blocklist/Contact.php:82 +#: src/Console/GlobalCommunityBlock.php:87 +#: src/Module/Moderation/Blocklist/Contact.php:68 msgid "The contact has been blocked from the node" msgstr "" -#: src/Console/MergeContacts.php:75 +#: src/Console/MergeContacts.php:61 #, php-format msgid "%d %s, %d duplicates." msgstr "" -#: src/Console/MergeContacts.php:78 +#: src/Console/MergeContacts.php:64 #, php-format msgid "uri-id is empty for contact %s." msgstr "" -#: src/Console/MergeContacts.php:91 +#: src/Console/MergeContacts.php:77 #, php-format msgid "No valid first contact found for uri-id %d." msgstr "" -#: src/Console/MergeContacts.php:102 +#: src/Console/MergeContacts.php:88 #, php-format msgid "Wrong duplicate found for uri-id %d in %d (url: %s != %s)." msgstr "" -#: src/Console/MergeContacts.php:106 +#: src/Console/MergeContacts.php:92 #, php-format msgid "Wrong duplicate found for uri-id %d in %d (nurl: %s != %s)." msgstr "" -#: src/Console/MergeContacts.php:142 +#: src/Console/MergeContacts.php:128 #, php-format msgid "Deletion of id %d failed" msgstr "Kunde inte ta bort id %d" -#: src/Console/MergeContacts.php:144 +#: src/Console/MergeContacts.php:130 #, php-format msgid "Deletion of id %d was successful" msgstr "Id %d har tagits bort" -#: src/Console/MergeContacts.php:150 +#: src/Console/MergeContacts.php:136 #, php-format msgid "Updating \"%s\" in \"%s\" from %d to %d" msgstr "" -#: src/Console/MergeContacts.php:152 +#: src/Console/MergeContacts.php:138 msgid " - found" msgstr "- hittad" -#: src/Console/MergeContacts.php:159 +#: src/Console/MergeContacts.php:145 msgid " - failed" msgstr "- misslyckad" -#: src/Console/MergeContacts.php:161 +#: src/Console/MergeContacts.php:147 msgid " - success" msgstr "- framgång" -#: src/Console/MergeContacts.php:165 +#: src/Console/MergeContacts.php:151 msgid " - deleted" msgstr "- borttagen" -#: src/Console/MergeContacts.php:168 +#: src/Console/MergeContacts.php:154 msgid " - done" msgstr "- klar" -#: src/Console/MoveToAvatarCache.php:91 +#: src/Console/MoveToAvatarCache.php:77 msgid "The avatar cache needs to be enabled to use this command." msgstr "" -#: src/Console/MoveToAvatarCache.php:109 +#: src/Console/MoveToAvatarCache.php:95 #, php-format msgid "no resource in photo %s" msgstr "" -#: src/Console/MoveToAvatarCache.php:137 +#: src/Console/MoveToAvatarCache.php:123 #, php-format msgid "no photo with id %s" msgstr "" -#: src/Console/MoveToAvatarCache.php:146 +#: src/Console/MoveToAvatarCache.php:132 #, php-format msgid "no image data for photo with id %s" msgstr "" -#: src/Console/MoveToAvatarCache.php:155 +#: src/Console/MoveToAvatarCache.php:141 #, php-format msgid "invalid image for id %s" msgstr "" -#: src/Console/MoveToAvatarCache.php:168 +#: src/Console/MoveToAvatarCache.php:154 #, php-format msgid "Quit on invalid photo %s" msgstr "" -#: src/Console/PostUpdate.php:87 +#: src/Console/PostUpdate.php:73 #, php-format msgid "Post update version number has been set to %s." msgstr "" -#: src/Console/PostUpdate.php:95 +#: src/Console/PostUpdate.php:81 msgid "Check for pending update actions." msgstr "" -#: src/Console/PostUpdate.php:97 +#: src/Console/PostUpdate.php:83 msgid "Done." msgstr "Färdig." -#: src/Console/PostUpdate.php:99 +#: src/Console/PostUpdate.php:85 msgid "Execute pending post updates." msgstr "" -#: src/Console/PostUpdate.php:105 +#: src/Console/PostUpdate.php:91 msgid "All pending post updates are done." msgstr "" -#: src/Console/User.php:158 src/Console/User.php:246 +#: src/Console/User.php:144 src/Console/User.php:232 msgid "Enter user nickname: " msgstr "Ange smeknamn för användaren:" -#: src/Console/User.php:182 src/Model/User.php:824 -#: src/Module/Api/Twitter/ContactEndpoint.php:74 -#: src/Module/Moderation/Users/Active.php:71 -#: src/Module/Moderation/Users/Blocked.php:71 -#: src/Module/Moderation/Users/Index.php:78 -#: src/Module/Moderation/Users/Pending.php:67 +#: src/Console/User.php:168 src/Model/User.php:831 +#: src/Module/Api/Twitter/ContactEndpoint.php:60 +#: src/Module/Moderation/Users/Active.php:57 +#: src/Module/Moderation/Users/Blocked.php:57 +#: src/Module/Moderation/Users/Index.php:64 +#: src/Module/Moderation/Users/Pending.php:53 msgid "User not found" msgstr "Användaren hittades inte" -#: src/Console/User.php:202 +#: src/Console/User.php:188 msgid "Enter new password: " msgstr "Ange nytt lösenord:" -#: src/Console/User.php:210 src/Module/Security/PasswordTooLong.php:69 -#: src/Module/Settings/Account.php:75 +#: src/Console/User.php:196 src/Module/Security/PasswordTooLong.php:55 +#: src/Module/Settings/Account.php:61 msgid "Password update failed. Please try again." msgstr "Det blev fel när lösenordet skulle ändras. Försök igen." -#: src/Console/User.php:213 src/Module/Security/PasswordTooLong.php:72 -#: src/Module/Settings/Account.php:78 +#: src/Console/User.php:199 src/Module/Security/PasswordTooLong.php:58 +#: src/Module/Settings/Account.php:64 msgid "Password changed." msgstr "Lösenordet har ändrats." -#: src/Console/User.php:238 +#: src/Console/User.php:224 msgid "Enter user name: " msgstr "Ange användarnamn:" -#: src/Console/User.php:254 +#: src/Console/User.php:240 msgid "Enter user email address: " msgstr "Ange användarens e-postadress:" -#: src/Console/User.php:262 +#: src/Console/User.php:248 msgid "Enter a language (optional): " msgstr "Ange ett språk (valfritt):" -#: src/Console/User.php:267 +#: src/Console/User.php:253 msgid "Enter URL of an image to use as avatar (optional): " msgstr "" -#: src/Console/User.php:292 +#: src/Console/User.php:278 msgid "User is not pending." msgstr "" -#: src/Console/User.php:324 +#: src/Console/User.php:310 msgid "User has already been marked for deletion." msgstr "Användaren har redan blivit markerad för borttagning." -#: src/Console/User.php:329 +#: src/Console/User.php:315 #, php-format msgid "Type \"yes\" to delete %s" msgstr "Skriv \"ja\" för att ta bort %s" -#: src/Console/User.php:331 +#: src/Console/User.php:317 msgid "Deletion aborted." msgstr "Borttagningen avbröts." -#: src/Console/User.php:456 +#: src/Console/User.php:442 msgid "Enter category: " msgstr "Ange kategori:" -#: src/Console/User.php:466 +#: src/Console/User.php:452 msgid "Enter key: " msgstr "Ange nyckel:" -#: src/Console/User.php:500 +#: src/Console/User.php:486 msgid "Enter value: " msgstr "Ange värde:" -#: src/Content/BoundariesPager.php:116 src/Content/Pager.php:171 +#: src/Content/BoundariesPager.php:102 src/Content/Pager.php:157 msgid "newer" msgstr "nyare" -#: src/Content/BoundariesPager.php:124 src/Content/Pager.php:176 +#: src/Content/BoundariesPager.php:110 src/Content/Pager.php:162 msgid "older" msgstr "äldre" -#: src/Content/ContactSelector.php:51 +#: src/Content/ContactSelector.php:37 msgid "Frequently" msgstr "Ofta" -#: src/Content/ContactSelector.php:52 +#: src/Content/ContactSelector.php:38 msgid "Hourly" msgstr "Varje timme" -#: src/Content/ContactSelector.php:53 +#: src/Content/ContactSelector.php:39 msgid "Twice daily" msgstr "Två gånger dagligen" -#: src/Content/ContactSelector.php:54 +#: src/Content/ContactSelector.php:40 msgid "Daily" msgstr "Dagligen" -#: src/Content/ContactSelector.php:55 +#: src/Content/ContactSelector.php:41 msgid "Weekly" msgstr "Varje vecka" -#: src/Content/ContactSelector.php:56 +#: src/Content/ContactSelector.php:42 msgid "Monthly" msgstr "Varje månad" -#: src/Content/ContactSelector.php:126 +#: src/Content/ContactSelector.php:112 msgid "DFRN" msgstr "DFRN" -#: src/Content/ContactSelector.php:127 +#: src/Content/ContactSelector.php:113 msgid "OStatus" msgstr "OStatus" -#: src/Content/ContactSelector.php:128 +#: src/Content/ContactSelector.php:114 msgid "RSS/Atom" msgstr "RSS/Atom" -#: src/Content/ContactSelector.php:129 -#: src/Module/Moderation/Users/Active.php:126 -#: src/Module/Moderation/Users/Blocked.php:126 -#: src/Module/Moderation/Users/Create.php:72 -#: src/Module/Moderation/Users/Deleted.php:83 -#: src/Module/Moderation/Users/Index.php:140 -#: src/Module/Moderation/Users/Index.php:160 -#: src/Module/Moderation/Users/Pending.php:99 +#: src/Content/ContactSelector.php:115 +#: src/Module/Moderation/Users/Active.php:112 +#: src/Module/Moderation/Users/Blocked.php:112 +#: src/Module/Moderation/Users/Create.php:58 +#: src/Module/Moderation/Users/Deleted.php:69 +#: src/Module/Moderation/Users/Index.php:126 +#: src/Module/Moderation/Users/Index.php:146 +#: src/Module/Moderation/Users/Pending.php:85 msgid "Email" msgstr "E-postadress" -#: src/Content/ContactSelector.php:130 src/Module/Debug/Babel.php:309 +#: src/Content/ContactSelector.php:116 src/Module/Debug/Babel.php:301 msgid "Diaspora" msgstr "Diaspora" -#: src/Content/ContactSelector.php:131 +#: src/Content/ContactSelector.php:117 msgid "Zot!" msgstr "Zot!" -#: src/Content/ContactSelector.php:132 +#: src/Content/ContactSelector.php:118 msgid "LinkedIn" msgstr "LinkedIn" -#: src/Content/ContactSelector.php:133 +#: src/Content/ContactSelector.php:119 msgid "XMPP/IM" msgstr "XMPP/IM" -#: src/Content/ContactSelector.php:134 +#: src/Content/ContactSelector.php:120 msgid "MySpace" msgstr "MySpace" -#: src/Content/ContactSelector.php:135 +#: src/Content/ContactSelector.php:121 msgid "Google+" msgstr "Google+" -#: src/Content/ContactSelector.php:136 +#: src/Content/ContactSelector.php:122 msgid "pump.io" msgstr "pump.io" -#: src/Content/ContactSelector.php:137 +#: src/Content/ContactSelector.php:123 msgid "Twitter" msgstr "Twitter" -#: src/Content/ContactSelector.php:138 +#: src/Content/ContactSelector.php:124 msgid "Discourse" msgstr "Discourse" -#: src/Content/ContactSelector.php:139 +#: src/Content/ContactSelector.php:125 msgid "Diaspora Connector" msgstr "" -#: src/Content/ContactSelector.php:140 +#: src/Content/ContactSelector.php:126 msgid "GNU Social Connector" msgstr "" -#: src/Content/ContactSelector.php:141 +#: src/Content/ContactSelector.php:127 msgid "ActivityPub" msgstr "ActivityPub" -#: src/Content/ContactSelector.php:142 +#: src/Content/ContactSelector.php:128 msgid "pnut" msgstr "pnut" -#: src/Content/ContactSelector.php:143 +#: src/Content/ContactSelector.php:129 msgid "Tumblr" msgstr "" -#: src/Content/ContactSelector.php:144 +#: src/Content/ContactSelector.php:130 msgid "Bluesky" msgstr "" -#: src/Content/ContactSelector.php:180 +#: src/Content/ContactSelector.php:166 #, php-format msgid "%s (via %s)" msgstr "" -#: src/Content/Conversation.php:226 +#: src/Content/Conversation.php:212 msgid "and" msgstr "och" -#: src/Content/Conversation.php:229 +#: src/Content/Conversation.php:215 #, php-format msgid "and %d other people" msgstr "och %d andra" -#: src/Content/Conversation.php:235 +#: src/Content/Conversation.php:221 #, php-format msgid "%2$s likes this." msgid_plural "%2$s like this." msgstr[0] "" msgstr[1] "" -#: src/Content/Conversation.php:237 +#: src/Content/Conversation.php:223 #, php-format msgid "%2$s doesn't like this." msgid_plural "%2$s don't like this." msgstr[0] "" msgstr[1] "" -#: src/Content/Conversation.php:239 +#: src/Content/Conversation.php:225 #, php-format msgid "%2$s attends." msgid_plural "%2$s attend." msgstr[0] "" msgstr[1] "" -#: src/Content/Conversation.php:241 +#: src/Content/Conversation.php:227 #, php-format msgid "%2$s doesn't attend." msgid_plural "%2$s don't attend." msgstr[0] "" msgstr[1] "" -#: src/Content/Conversation.php:243 +#: src/Content/Conversation.php:229 #, php-format msgid "%2$s attends maybe." msgid_plural "%2$s attend maybe." msgstr[0] "" msgstr[1] "" -#: src/Content/Conversation.php:245 +#: src/Content/Conversation.php:231 #, php-format msgid "%2$s reshared this." msgid_plural "%2$s reshared this." msgstr[0] "" msgstr[1] "" -#: src/Content/Conversation.php:276 +#: src/Content/Conversation.php:262 #, php-format msgid " likes this" msgid_plural " like this" msgstr[0] "" msgstr[1] "" -#: src/Content/Conversation.php:279 +#: src/Content/Conversation.php:265 #, php-format msgid " doesn't like this" msgid_plural " don't like this" msgstr[0] "" msgstr[1] "" -#: src/Content/Conversation.php:282 +#: src/Content/Conversation.php:268 #, php-format msgid " attends" msgid_plural " attend" msgstr[0] "" msgstr[1] "" -#: src/Content/Conversation.php:285 +#: src/Content/Conversation.php:271 #, php-format msgid " doesn't attend" msgid_plural " don't attend" msgstr[0] "" msgstr[1] "" -#: src/Content/Conversation.php:288 +#: src/Content/Conversation.php:274 #, php-format msgid " attends maybe" msgid_plural " attend maybe" msgstr[0] "" msgstr[1] "" -#: src/Content/Conversation.php:291 +#: src/Content/Conversation.php:277 #, php-format msgid " reshared this" msgid_plural " reshared this" msgstr[0] "" msgstr[1] "" -#: src/Content/Conversation.php:337 +#: src/Content/Conversation.php:323 msgid "Visible to everybody" msgstr "Synlig för alla" -#: src/Content/Conversation.php:338 src/Module/Item/Compose.php:207 -#: src/Object/Post.php:1171 +#: src/Content/Conversation.php:324 src/Module/Item/Compose.php:193 +#: src/Object/Post.php:1157 msgid "Please enter a image/video/audio/webpage URL:" msgstr "Vänligen fyll i URL till en bild/video/ljudklipp/hemsida:" -#: src/Content/Conversation.php:339 +#: src/Content/Conversation.php:325 msgid "Tag term:" msgstr "Märkning/tagg:" -#: src/Content/Conversation.php:340 src/Module/Filer/SaveTag.php:73 +#: src/Content/Conversation.php:326 src/Module/Filer/SaveTag.php:59 msgid "Save to Folder:" msgstr "Spara till mapp:" -#: src/Content/Conversation.php:341 +#: src/Content/Conversation.php:327 msgid "Where are you right now?" msgstr "Var är du just nu?" -#: src/Content/Conversation.php:342 +#: src/Content/Conversation.php:328 msgid "Delete item(s)?" msgstr "Ta bort?" -#: src/Content/Conversation.php:354 src/Module/Item/Compose.php:182 +#: src/Content/Conversation.php:340 src/Module/Item/Compose.php:168 msgid "Created at" msgstr "" -#: src/Content/Conversation.php:364 +#: src/Content/Conversation.php:350 msgid "New Post" msgstr "Nytt inlägg" -#: src/Content/Conversation.php:367 +#: src/Content/Conversation.php:353 msgid "Share" msgstr "Publicera" -#: src/Content/Conversation.php:370 src/Module/Post/Edit.php:132 +#: src/Content/Conversation.php:356 src/Module/Post/Edit.php:118 msgid "upload photo" msgstr "ladda upp bild" -#: src/Content/Conversation.php:371 src/Module/Post/Edit.php:133 +#: src/Content/Conversation.php:357 src/Module/Post/Edit.php:119 msgid "Attach file" msgstr "Bifoga fil" -#: src/Content/Conversation.php:372 src/Module/Post/Edit.php:134 +#: src/Content/Conversation.php:358 src/Module/Post/Edit.php:120 msgid "attach file" msgstr "bifoga fil" -#: src/Content/Conversation.php:373 src/Module/Item/Compose.php:197 -#: src/Module/Post/Edit.php:171 src/Object/Post.php:1161 +#: src/Content/Conversation.php:359 src/Module/Item/Compose.php:183 +#: src/Module/Post/Edit.php:157 src/Object/Post.php:1147 msgid "Bold" msgstr "Fet" -#: src/Content/Conversation.php:374 src/Module/Item/Compose.php:198 -#: src/Module/Post/Edit.php:172 src/Object/Post.php:1162 +#: src/Content/Conversation.php:360 src/Module/Item/Compose.php:184 +#: src/Module/Post/Edit.php:158 src/Object/Post.php:1148 msgid "Italic" msgstr "Kursiv" -#: src/Content/Conversation.php:375 src/Module/Item/Compose.php:199 -#: src/Module/Post/Edit.php:173 src/Object/Post.php:1163 +#: src/Content/Conversation.php:361 src/Module/Item/Compose.php:185 +#: src/Module/Post/Edit.php:159 src/Object/Post.php:1149 msgid "Underline" msgstr "Understruken" -#: src/Content/Conversation.php:376 src/Module/Item/Compose.php:200 -#: src/Module/Post/Edit.php:174 src/Object/Post.php:1165 +#: src/Content/Conversation.php:362 src/Module/Item/Compose.php:186 +#: src/Module/Post/Edit.php:160 src/Object/Post.php:1151 msgid "Quote" msgstr "Citat" -#: src/Content/Conversation.php:377 src/Module/Item/Compose.php:201 -#: src/Module/Post/Edit.php:175 src/Object/Post.php:1166 +#: src/Content/Conversation.php:363 src/Module/Item/Compose.php:187 +#: src/Module/Post/Edit.php:161 src/Object/Post.php:1152 msgid "Add emojis" msgstr "" -#: src/Content/Conversation.php:378 src/Module/Item/Compose.php:202 -#: src/Object/Post.php:1164 +#: src/Content/Conversation.php:364 src/Module/Item/Compose.php:188 +#: src/Object/Post.php:1150 msgid "Content Warning" msgstr "" -#: src/Content/Conversation.php:379 src/Module/Item/Compose.php:203 -#: src/Module/Post/Edit.php:176 src/Object/Post.php:1167 +#: src/Content/Conversation.php:365 src/Module/Item/Compose.php:189 +#: src/Module/Post/Edit.php:162 src/Object/Post.php:1153 msgid "Code" msgstr "Källkod" -#: src/Content/Conversation.php:380 src/Module/Item/Compose.php:204 -#: src/Object/Post.php:1168 +#: src/Content/Conversation.php:366 src/Module/Item/Compose.php:190 +#: src/Object/Post.php:1154 msgid "Image" msgstr "Bild" -#: src/Content/Conversation.php:381 src/Module/Item/Compose.php:205 -#: src/Module/Post/Edit.php:177 src/Object/Post.php:1169 +#: src/Content/Conversation.php:367 src/Module/Item/Compose.php:191 +#: src/Module/Post/Edit.php:163 src/Object/Post.php:1155 msgid "Link" msgstr "Länk" -#: src/Content/Conversation.php:382 src/Module/Item/Compose.php:206 -#: src/Module/Post/Edit.php:178 src/Object/Post.php:1170 +#: src/Content/Conversation.php:368 src/Module/Item/Compose.php:192 +#: src/Module/Post/Edit.php:164 src/Object/Post.php:1156 msgid "Link or Media" msgstr "Länk eller media" -#: src/Content/Conversation.php:383 +#: src/Content/Conversation.php:369 msgid "Video" msgstr "Video" -#: src/Content/Conversation.php:384 src/Module/Item/Compose.php:209 -#: src/Module/Post/Edit.php:141 +#: src/Content/Conversation.php:370 src/Module/Item/Compose.php:195 +#: src/Module/Post/Edit.php:127 msgid "Set your location" msgstr "Ange plats" -#: src/Content/Conversation.php:385 src/Module/Post/Edit.php:142 +#: src/Content/Conversation.php:371 src/Module/Post/Edit.php:128 msgid "set location" msgstr "ange plats" -#: src/Content/Conversation.php:386 src/Module/Post/Edit.php:143 +#: src/Content/Conversation.php:372 src/Module/Post/Edit.php:129 msgid "Clear browser location" msgstr "Clear browser location" -#: src/Content/Conversation.php:387 src/Module/Post/Edit.php:144 +#: src/Content/Conversation.php:373 src/Module/Post/Edit.php:130 msgid "clear location" msgstr "rensa plats" -#: src/Content/Conversation.php:389 src/Module/Item/Compose.php:214 -#: src/Module/Post/Edit.php:157 +#: src/Content/Conversation.php:375 src/Module/Item/Compose.php:200 +#: src/Module/Post/Edit.php:143 msgid "Set title" msgstr "Ange rubrik" -#: src/Content/Conversation.php:391 src/Module/Item/Compose.php:215 -#: src/Module/Post/Edit.php:159 +#: src/Content/Conversation.php:377 src/Module/Item/Compose.php:201 +#: src/Module/Post/Edit.php:145 msgid "Categories (comma-separated list)" msgstr "Kategorier (kommaseparerad lista)" -#: src/Content/Conversation.php:396 src/Module/Item/Compose.php:231 +#: src/Content/Conversation.php:382 src/Module/Item/Compose.php:217 msgid "Scheduled at" msgstr "Schemalades vid" -#: src/Content/Conversation.php:401 src/Module/Post/Edit.php:146 +#: src/Content/Conversation.php:387 src/Module/Post/Edit.php:132 msgid "Permission settings" msgstr "Åtkomstinställningar" -#: src/Content/Conversation.php:410 src/Module/Post/Edit.php:155 +#: src/Content/Conversation.php:396 src/Module/Post/Edit.php:141 msgid "Public post" msgstr "Offentligt inlägg" -#: src/Content/Conversation.php:424 src/Content/Widget/VCard.php:131 -#: src/Model/Profile.php:483 src/Module/Admin/Logs/View.php:94 -#: src/Module/Post/Edit.php:181 +#: src/Content/Conversation.php:410 src/Content/Widget/VCard.php:117 +#: src/Model/Profile.php:462 src/Module/Admin/Logs/View.php:80 +#: src/Module/Post/Edit.php:167 msgid "Message" msgstr "Meddelande" -#: src/Content/Conversation.php:425 src/Module/Post/Edit.php:182 -#: src/Module/Settings/TwoFactor/Trusted.php:143 +#: src/Content/Conversation.php:411 src/Module/Post/Edit.php:168 +#: src/Module/Settings/TwoFactor/Trusted.php:129 msgid "Browser" msgstr "Bläddra" -#: src/Content/Conversation.php:427 src/Module/Post/Edit.php:185 +#: src/Content/Conversation.php:413 src/Module/Post/Edit.php:171 msgid "Open Compose page" msgstr "" -#: src/Content/Conversation.php:594 +#: src/Content/Conversation.php:580 msgid "remove" msgstr "ta bort" -#: src/Content/Conversation.php:598 +#: src/Content/Conversation.php:584 msgid "Delete Selected Items" msgstr "Ta bort valda föremål" -#: src/Content/Conversation.php:726 src/Content/Conversation.php:729 -#: src/Content/Conversation.php:732 src/Content/Conversation.php:735 -#: src/Content/Conversation.php:738 +#: src/Content/Conversation.php:712 src/Content/Conversation.php:715 +#: src/Content/Conversation.php:718 src/Content/Conversation.php:721 +#: src/Content/Conversation.php:724 #, php-format msgid "You had been addressed (%s)." msgstr "" -#: src/Content/Conversation.php:741 +#: src/Content/Conversation.php:727 #, php-format msgid "You are following %s." msgstr "Du följer %s." -#: src/Content/Conversation.php:746 +#: src/Content/Conversation.php:732 #, php-format msgid "You subscribed to %s." msgstr "" -#: src/Content/Conversation.php:748 +#: src/Content/Conversation.php:734 msgid "You subscribed to one or more tags in this post." msgstr "" -#: src/Content/Conversation.php:768 +#: src/Content/Conversation.php:754 #, php-format msgid "%s reshared this." msgstr "" -#: src/Content/Conversation.php:770 +#: src/Content/Conversation.php:756 msgid "Reshared" msgstr "Delad igen" -#: src/Content/Conversation.php:770 +#: src/Content/Conversation.php:756 #, php-format msgid "Reshared by %s <%s>" msgstr "Delad igen av %s <%s>" -#: src/Content/Conversation.php:773 +#: src/Content/Conversation.php:759 #, php-format msgid "%s is participating in this thread." msgstr "%s deltar i den här tråden." -#: src/Content/Conversation.php:776 +#: src/Content/Conversation.php:762 msgid "Stored for general reasons" msgstr "" -#: src/Content/Conversation.php:779 +#: src/Content/Conversation.php:765 msgid "Global post" msgstr "" -#: src/Content/Conversation.php:782 +#: src/Content/Conversation.php:768 msgid "Sent via an relay server" msgstr "" -#: src/Content/Conversation.php:782 +#: src/Content/Conversation.php:768 #, php-format msgid "Sent via the relay server %s <%s>" msgstr "" -#: src/Content/Conversation.php:785 +#: src/Content/Conversation.php:771 msgid "Fetched" msgstr "Hämtad" -#: src/Content/Conversation.php:785 +#: src/Content/Conversation.php:771 #, php-format msgid "Fetched because of %s <%s>" msgstr "Hämtades på grund av %s <%s>" -#: src/Content/Conversation.php:788 +#: src/Content/Conversation.php:774 msgid "Stored because of a child post to complete this thread." msgstr "" -#: src/Content/Conversation.php:791 +#: src/Content/Conversation.php:777 msgid "Local delivery" msgstr "" -#: src/Content/Conversation.php:794 +#: src/Content/Conversation.php:780 msgid "Stored because of your activity (like, comment, star, ...)" msgstr "" -#: src/Content/Conversation.php:797 +#: src/Content/Conversation.php:783 msgid "Distributed" msgstr "" -#: src/Content/Conversation.php:800 +#: src/Content/Conversation.php:786 msgid "Pushed to us" msgstr "" -#: src/Content/Conversation.php:1518 src/Object/Post.php:261 +#: src/Content/Conversation.php:1504 src/Object/Post.php:247 msgid "Pinned item" msgstr "" -#: src/Content/Conversation.php:1535 src/Object/Post.php:555 -#: src/Object/Post.php:556 +#: src/Content/Conversation.php:1521 src/Object/Post.php:541 +#: src/Object/Post.php:542 #, php-format msgid "View %s's profile @ %s" msgstr "Visa profilen som tillhör %s @ %s" -#: src/Content/Conversation.php:1549 src/Object/Post.php:543 +#: src/Content/Conversation.php:1535 src/Object/Post.php:529 msgid "Categories:" msgstr "Kategorier:" -#: src/Content/Conversation.php:1550 src/Object/Post.php:544 +#: src/Content/Conversation.php:1536 src/Object/Post.php:530 msgid "Filed under:" msgstr "Sparad under:" -#: src/Content/Conversation.php:1558 src/Object/Post.php:570 +#: src/Content/Conversation.php:1544 src/Object/Post.php:556 #, php-format msgid "%s from %s" msgstr "%s från %s" -#: src/Content/Conversation.php:1574 +#: src/Content/Conversation.php:1560 msgid "View in context" msgstr "Visa i sitt sammanhang" -#: src/Content/Conversation/Factory/Channel.php:42 +#: src/Content/Conversation/Factory/Channel.php:28 msgid "For you" msgstr "" -#: src/Content/Conversation/Factory/Channel.php:42 +#: src/Content/Conversation/Factory/Channel.php:28 msgid "Posts from contacts you interact with and who interact with you" msgstr "" -#: src/Content/Conversation/Factory/Channel.php:43 +#: src/Content/Conversation/Factory/Channel.php:29 msgid "Discover" msgstr "" -#: src/Content/Conversation/Factory/Channel.php:43 +#: src/Content/Conversation/Factory/Channel.php:29 msgid "Posts from accounts that you don't follow, but that you might like." msgstr "" -#: src/Content/Conversation/Factory/Channel.php:44 +#: src/Content/Conversation/Factory/Channel.php:30 msgid "What's Hot" msgstr "" -#: src/Content/Conversation/Factory/Channel.php:44 +#: src/Content/Conversation/Factory/Channel.php:30 msgid "Posts with a lot of interactions" msgstr "" -#: src/Content/Conversation/Factory/Channel.php:45 +#: src/Content/Conversation/Factory/Channel.php:31 #, php-format msgid "Posts in %s" msgstr "" -#: src/Content/Conversation/Factory/Channel.php:46 +#: src/Content/Conversation/Factory/Channel.php:32 msgid "Posts from your followers that you don't follow" msgstr "" -#: src/Content/Conversation/Factory/Channel.php:47 +#: src/Content/Conversation/Factory/Channel.php:33 msgid "Sharers of sharers" msgstr "" -#: src/Content/Conversation/Factory/Channel.php:47 +#: src/Content/Conversation/Factory/Channel.php:33 msgid "Posts from accounts that are followed by accounts that you follow" msgstr "" -#: src/Content/Conversation/Factory/Channel.php:48 +#: src/Content/Conversation/Factory/Channel.php:34 msgid "Quiet sharers" msgstr "" -#: src/Content/Conversation/Factory/Channel.php:48 +#: src/Content/Conversation/Factory/Channel.php:34 msgid "Posts from accounts that you follow but who don't post very often" msgstr "" -#: src/Content/Conversation/Factory/Channel.php:49 -#: src/Module/Settings/Channels.php:199 src/Module/Settings/Channels.php:220 +#: src/Content/Conversation/Factory/Channel.php:35 +#: src/Module/Settings/Channels.php:185 src/Module/Settings/Channels.php:206 msgid "Images" msgstr "" -#: src/Content/Conversation/Factory/Channel.php:49 +#: src/Content/Conversation/Factory/Channel.php:35 msgid "Posts with images" msgstr "" -#: src/Content/Conversation/Factory/Channel.php:50 -#: src/Module/Settings/Channels.php:201 src/Module/Settings/Channels.php:222 +#: src/Content/Conversation/Factory/Channel.php:36 +#: src/Module/Settings/Channels.php:187 src/Module/Settings/Channels.php:208 msgid "Audio" msgstr "" -#: src/Content/Conversation/Factory/Channel.php:50 +#: src/Content/Conversation/Factory/Channel.php:36 msgid "Posts with audio" msgstr "" -#: src/Content/Conversation/Factory/Channel.php:51 -#: src/Module/Settings/Channels.php:200 src/Module/Settings/Channels.php:221 +#: src/Content/Conversation/Factory/Channel.php:37 +#: src/Module/Settings/Channels.php:186 src/Module/Settings/Channels.php:207 msgid "Videos" msgstr "" -#: src/Content/Conversation/Factory/Channel.php:51 +#: src/Content/Conversation/Factory/Channel.php:37 msgid "Posts with videos" msgstr "" -#: src/Content/Conversation/Factory/Community.php:43 +#: src/Content/Conversation/Factory/Community.php:29 msgid "Local Community" msgstr "" -#: src/Content/Conversation/Factory/Community.php:43 +#: src/Content/Conversation/Factory/Community.php:29 msgid "Posts from local users on this server" msgstr "" -#: src/Content/Conversation/Factory/Community.php:47 -#: src/Module/Settings/Channels.php:150 src/Module/Settings/Channels.php:155 +#: src/Content/Conversation/Factory/Community.php:33 +#: src/Module/Settings/Channels.php:136 src/Module/Settings/Channels.php:141 msgid "Global Community" msgstr "" -#: src/Content/Conversation/Factory/Community.php:47 +#: src/Content/Conversation/Factory/Community.php:33 msgid "Posts from users of the whole federated network" msgstr "" -#: src/Content/Conversation/Factory/Network.php:38 -#: src/Module/Settings/Channels.php:156 +#: src/Content/Conversation/Factory/Network.php:24 +#: src/Module/Settings/Channels.php:142 msgid "Latest Activity" msgstr "" -#: src/Content/Conversation/Factory/Network.php:38 +#: src/Content/Conversation/Factory/Network.php:24 msgid "Sort by latest activity" msgstr "" -#: src/Content/Conversation/Factory/Network.php:39 -#: src/Module/Settings/Channels.php:157 +#: src/Content/Conversation/Factory/Network.php:25 +#: src/Module/Settings/Channels.php:143 msgid "Latest Posts" msgstr "" -#: src/Content/Conversation/Factory/Network.php:39 +#: src/Content/Conversation/Factory/Network.php:25 msgid "Sort by post received date" msgstr "" -#: src/Content/Conversation/Factory/Network.php:40 -#: src/Module/Settings/Channels.php:158 +#: src/Content/Conversation/Factory/Network.php:26 +#: src/Module/Settings/Channels.php:144 msgid "Latest Creation" msgstr "" -#: src/Content/Conversation/Factory/Network.php:40 +#: src/Content/Conversation/Factory/Network.php:26 msgid "Sort by post creation date" msgstr "" -#: src/Content/Conversation/Factory/Network.php:41 -#: src/Module/Settings/Profile/Index.php:260 +#: src/Content/Conversation/Factory/Network.php:27 +#: src/Module/Settings/Profile/Index.php:251 msgid "Personal" msgstr "Privat" -#: src/Content/Conversation/Factory/Network.php:41 +#: src/Content/Conversation/Factory/Network.php:27 msgid "Posts that mention or involve you" msgstr "Inlägg som nämnde eller involverade dig" -#: src/Content/Conversation/Factory/Network.php:42 src/Object/Post.php:411 +#: src/Content/Conversation/Factory/Network.php:28 src/Object/Post.php:397 msgid "Starred" msgstr "Stjärnmärkt" -#: src/Content/Conversation/Factory/Network.php:42 +#: src/Content/Conversation/Factory/Network.php:28 msgid "Favourite Posts" msgstr "Favoriserade inlägg" -#: src/Content/Feature.php:107 +#: src/Content/Feature.php:93 msgid "General Features" msgstr "Generella funktioner" -#: src/Content/Feature.php:109 +#: src/Content/Feature.php:95 msgid "Photo Location" msgstr "" -#: src/Content/Feature.php:109 +#: src/Content/Feature.php:95 msgid "" "Photo metadata is normally stripped. This extracts the location (if present)" " prior to stripping metadata and links it to a map." msgstr "" -#: src/Content/Feature.php:110 +#: src/Content/Feature.php:96 msgid "Display the community in the navigation" msgstr "" -#: src/Content/Feature.php:110 +#: src/Content/Feature.php:96 msgid "" "If enabled, the community can be accessed via the navigation menu. " "Independent from this setting, the community timelines can always be " "accessed via the channels." msgstr "" -#: src/Content/Feature.php:115 +#: src/Content/Feature.php:101 msgid "Post Composition Features" msgstr "" -#: src/Content/Feature.php:116 +#: src/Content/Feature.php:102 msgid "Explicit Mentions" msgstr "" -#: src/Content/Feature.php:116 +#: src/Content/Feature.php:102 msgid "" "Add explicit mentions to comment box for manual control over who gets " "mentioned in replies." msgstr "" -#: src/Content/Feature.php:117 +#: src/Content/Feature.php:103 msgid "Add an abstract from ActivityPub content warnings" msgstr "" -#: src/Content/Feature.php:117 +#: src/Content/Feature.php:103 msgid "" "Add an abstract when commenting on ActivityPub posts with a content warning." " Abstracts are displayed as content warning on systems like Mastodon or " "Pleroma." msgstr "" -#: src/Content/Feature.php:122 +#: src/Content/Feature.php:108 msgid "Post/Comment Tools" msgstr "" -#: src/Content/Feature.php:123 +#: src/Content/Feature.php:109 msgid "Post Categories" msgstr "" -#: src/Content/Feature.php:123 +#: src/Content/Feature.php:109 msgid "Add categories to your posts" msgstr "Lägg till kategorier till dina inlägg" -#: src/Content/Feature.php:128 +#: src/Content/Feature.php:114 msgid "Network Widgets" msgstr "" -#: src/Content/Feature.php:129 src/Content/Widget.php:216 -#: src/Model/Circle.php:601 src/Module/Contact.php:400 -#: src/Module/Welcome.php:76 +#: src/Content/Feature.php:115 src/Content/Widget.php:194 +#: src/Model/Circle.php:587 src/Module/Contact.php:381 +#: src/Module/Welcome.php:62 msgid "Circles" msgstr "" -#: src/Content/Feature.php:129 +#: src/Content/Feature.php:115 msgid "" "Display posts that have been created by accounts of the selected circle." msgstr "" -#: src/Content/Feature.php:130 src/Content/GroupManager.php:147 -#: src/Content/Nav.php:278 src/Content/Text/HTML.php:882 -#: src/Content/Widget.php:538 src/Model/User.php:1390 +#: src/Content/Feature.php:116 src/Content/GroupManager.php:133 +#: src/Content/Nav.php:264 src/Content/Text/HTML.php:868 +#: src/Content/Widget.php:516 src/Model/User.php:1390 msgid "Groups" msgstr "" -#: src/Content/Feature.php:130 +#: src/Content/Feature.php:116 msgid "Display posts that have been distributed by the selected group." msgstr "" -#: src/Content/Feature.php:131 src/Content/Widget.php:507 +#: src/Content/Feature.php:117 src/Content/Widget.php:485 msgid "Archives" msgstr "Arkiv" -#: src/Content/Feature.php:131 +#: src/Content/Feature.php:117 msgid "Display an archive where posts can be selected by month and year." msgstr "" -#: src/Content/Feature.php:132 src/Content/Widget.php:289 +#: src/Content/Feature.php:118 src/Content/Widget.php:267 msgid "Protocols" msgstr "Protokoll" -#: src/Content/Feature.php:132 +#: src/Content/Feature.php:118 msgid "Display posts with the selected protocols." msgstr "" -#: src/Content/Feature.php:133 src/Content/Widget.php:544 -#: src/Module/Settings/Account.php:442 +#: src/Content/Feature.php:119 src/Content/Widget.php:522 +#: src/Module/Settings/Account.php:433 msgid "Account Types" msgstr "Typer av konton" -#: src/Content/Feature.php:133 +#: src/Content/Feature.php:119 msgid "Display posts done by accounts with the selected account type." msgstr "" -#: src/Content/Feature.php:134 src/Content/Widget.php:593 -#: src/Module/Admin/Site.php:472 src/Module/BaseSettings.php:125 -#: src/Module/Settings/Channels.php:225 src/Module/Settings/Display.php:315 +#: src/Content/Feature.php:120 src/Content/Widget.php:571 +#: src/Module/Admin/Site.php:464 src/Module/BaseSettings.php:111 +#: src/Module/Settings/Channels.php:211 src/Module/Settings/Display.php:301 msgid "Channels" msgstr "" -#: src/Content/Feature.php:134 +#: src/Content/Feature.php:120 msgid "Display posts in the system channels and user defined channels." msgstr "" -#: src/Content/Feature.php:135 src/Content/Widget/SavedSearches.php:60 +#: src/Content/Feature.php:121 src/Content/Widget/SavedSearches.php:46 msgid "Saved Searches" msgstr "Sparade sökningar" -#: src/Content/Feature.php:135 +#: src/Content/Feature.php:121 msgid "Display posts that contain subscribed hashtags." msgstr "" -#: src/Content/Feature.php:136 src/Content/Widget.php:319 +#: src/Content/Feature.php:122 src/Content/Widget.php:297 msgid "Saved Folders" msgstr "Sparade mappar" -#: src/Content/Feature.php:136 +#: src/Content/Feature.php:122 msgid "Display a list of folders in which posts are stored." msgstr "" -#: src/Content/Feature.php:137 src/Module/Conversation/Timeline.php:199 +#: src/Content/Feature.php:123 src/Module/Conversation/Timeline.php:186 msgid "Own Contacts" msgstr "Egna kontakter" -#: src/Content/Feature.php:137 +#: src/Content/Feature.php:123 msgid "" "Include or exclude posts from subscribed accounts. This widget is not " "visible on all channels." msgstr "" -#: src/Content/Feature.php:138 +#: src/Content/Feature.php:124 msgid "Trending Tags" msgstr "" -#: src/Content/Feature.php:138 +#: src/Content/Feature.php:124 msgid "Display a list of the most popular tags in recent public posts." msgstr "" -#: src/Content/Feature.php:143 +#: src/Content/Feature.php:129 msgid "Advanced Profile Settings" msgstr "Avancerade profil-inställningar" -#: src/Content/Feature.php:144 +#: src/Content/Feature.php:130 msgid "Tag Cloud" msgstr "Taggmoln" -#: src/Content/Feature.php:144 +#: src/Content/Feature.php:130 msgid "Provide a personal tag cloud on your profile page" msgstr "" -#: src/Content/Feature.php:145 +#: src/Content/Feature.php:131 msgid "Display Membership Date" msgstr "Visa datum för medlemskap" -#: src/Content/Feature.php:145 +#: src/Content/Feature.php:131 msgid "Display membership date in profile" msgstr "Visa datum för medlemskapet i profilen" -#: src/Content/Feature.php:150 +#: src/Content/Feature.php:136 msgid "Advanced Calendar Settings" msgstr "" -#: src/Content/Feature.php:151 +#: src/Content/Feature.php:137 msgid "Allow anonymous access to your calendar" msgstr "" -#: src/Content/Feature.php:151 +#: src/Content/Feature.php:137 msgid "" "Allows anonymous visitors to consult your calendar and your public events. " "Contact birthday events are private to you." msgstr "" -#: src/Content/GroupManager.php:149 +#: src/Content/GroupManager.php:135 msgid "External link to group" msgstr "" -#: src/Content/GroupManager.php:153 src/Content/Widget.php:513 +#: src/Content/GroupManager.php:139 src/Content/Widget.php:491 msgid "show less" msgstr "visa mindre" -#: src/Content/GroupManager.php:154 src/Content/Widget.php:411 -#: src/Content/Widget.php:514 +#: src/Content/GroupManager.php:140 src/Content/Widget.php:389 +#: src/Content/Widget.php:492 msgid "show more" msgstr "visa mer" -#: src/Content/GroupManager.php:155 +#: src/Content/GroupManager.php:141 msgid "Create new group" msgstr "" -#: src/Content/Item.php:331 src/Model/Item.php:3256 +#: src/Content/Item.php:317 src/Model/Item.php:3272 msgid "event" msgstr "händelse" -#: src/Content/Item.php:334 src/Content/Item.php:344 +#: src/Content/Item.php:320 src/Content/Item.php:330 msgid "status" msgstr "status" -#: src/Content/Item.php:340 src/Model/Item.php:3258 -#: src/Module/Post/Tag/Add.php:123 +#: src/Content/Item.php:326 src/Model/Item.php:3274 +#: src/Module/Post/Tag/Add.php:109 msgid "photo" msgstr "foto" -#: src/Content/Item.php:354 src/Module/Post/Tag/Add.php:141 +#: src/Content/Item.php:340 src/Module/Post/Tag/Add.php:127 #, php-format msgid "%1$s tagged %2$s's %3$s with %4$s" msgstr "%1$s taggade %2$ss %3$s med %4$s" -#: src/Content/Item.php:428 view/theme/frio/theme.php:265 +#: src/Content/Item.php:414 view/theme/frio/theme.php:253 msgid "Follow Thread" msgstr "Följ tråd" -#: src/Content/Item.php:429 src/Model/Contact.php:1233 +#: src/Content/Item.php:415 src/Model/Contact.php:1249 msgid "View Status" msgstr "Visa status" -#: src/Content/Item.php:430 src/Content/Item.php:453 -#: src/Model/Contact.php:1168 src/Model/Contact.php:1224 -#: src/Model/Contact.php:1234 src/Module/Directory.php:157 -#: src/Module/Settings/Profile/Index.php:259 +#: src/Content/Item.php:416 src/Content/Item.php:439 +#: src/Model/Contact.php:1184 src/Model/Contact.php:1240 +#: src/Model/Contact.php:1250 src/Module/Directory.php:144 +#: src/Module/Settings/Profile/Index.php:250 msgid "View Profile" msgstr "Visa profil" -#: src/Content/Item.php:431 src/Model/Contact.php:1235 +#: src/Content/Item.php:417 src/Model/Contact.php:1251 msgid "View Photos" msgstr "Visa foton" -#: src/Content/Item.php:432 src/Model/Contact.php:1202 -#: src/Model/Profile.php:468 +#: src/Content/Item.php:418 src/Model/Contact.php:1218 +#: src/Model/Profile.php:447 msgid "Network Posts" msgstr "Nätverksinlägg" -#: src/Content/Item.php:433 src/Model/Contact.php:1226 -#: src/Model/Contact.php:1237 +#: src/Content/Item.php:419 src/Model/Contact.php:1242 +#: src/Model/Contact.php:1253 msgid "View Contact" msgstr "Visa kontakt" -#: src/Content/Item.php:434 src/Model/Contact.php:1238 +#: src/Content/Item.php:420 src/Model/Contact.php:1254 msgid "Send PM" msgstr "Skicka privat meddelande" -#: src/Content/Item.php:435 src/Module/Contact.php:467 +#: src/Content/Item.php:421 src/Module/Contact.php:449 #: src/Module/Contact/Profile.php:518 -#: src/Module/Moderation/Blocklist/Contact.php:116 -#: src/Module/Moderation/Users/Active.php:137 -#: src/Module/Moderation/Users/Index.php:152 +#: src/Module/Moderation/Blocklist/Contact.php:102 +#: src/Module/Moderation/Users/Active.php:123 +#: src/Module/Moderation/Users/Index.php:138 msgid "Block" msgstr "Blockera" -#: src/Content/Item.php:436 src/Module/Contact.php:468 +#: src/Content/Item.php:422 src/Module/Contact.php:450 #: src/Module/Contact/Profile.php:526 -#: src/Module/Notifications/Introductions.php:134 -#: src/Module/Notifications/Introductions.php:206 -#: src/Module/Notifications/Notification.php:89 +#: src/Module/Notifications/Introductions.php:126 +#: src/Module/Notifications/Introductions.php:198 +#: src/Module/Notifications/Notification.php:75 msgid "Ignore" msgstr "Ignorera" -#: src/Content/Item.php:437 src/Module/Contact.php:469 +#: src/Content/Item.php:423 src/Module/Contact.php:451 #: src/Module/Contact/Profile.php:534 msgid "Collapse" msgstr "" -#: src/Content/Item.php:438 src/Object/Post.php:302 +#: src/Content/Item.php:424 src/Object/Post.php:288 #, php-format msgid "Ignore %s server" msgstr "" -#: src/Content/Item.php:442 src/Module/Settings/Channels.php:202 -#: src/Module/Settings/Channels.php:223 src/Object/Post.php:516 +#: src/Content/Item.php:428 src/Module/Settings/Channels.php:188 +#: src/Module/Settings/Channels.php:209 src/Object/Post.php:502 msgid "Languages" msgstr "Språk" -#: src/Content/Item.php:445 src/Object/Post.php:596 +#: src/Content/Item.php:431 src/Object/Post.php:582 msgid "Search Text" msgstr "" -#: src/Content/Item.php:450 src/Content/Widget.php:80 -#: src/Model/Contact.php:1227 src/Model/Contact.php:1239 -#: src/Module/Contact/Follow.php:167 view/theme/vier/theme.php:195 +#: src/Content/Item.php:436 src/Content/Widget.php:66 +#: src/Model/Contact.php:1243 src/Model/Contact.php:1255 +#: src/Module/Contact/Follow.php:148 view/theme/vier/theme.php:183 msgid "Connect/Follow" msgstr "Gör till kontakt/Följ" -#: src/Content/Item.php:884 +#: src/Content/Item.php:870 msgid "Unable to fetch user." msgstr "" -#: src/Content/Nav.php:121 +#: src/Content/Nav.php:107 msgid "Nothing new here" msgstr "Inget nytt här" -#: src/Content/Nav.php:125 src/Module/Special/HTTPException.php:77 +#: src/Content/Nav.php:111 src/Module/Special/HTTPException.php:63 msgid "Go back" msgstr "Gå tillbaka" -#: src/Content/Nav.php:126 +#: src/Content/Nav.php:112 msgid "Clear notifications" msgstr "Rensa aviseringar" -#: src/Content/Nav.php:127 src/Content/Text/HTML.php:869 +#: src/Content/Nav.php:113 src/Content/Text/HTML.php:855 msgid "@name, !group, #tags, content" msgstr "" -#: src/Content/Nav.php:222 src/Module/Security/Login.php:157 +#: src/Content/Nav.php:208 src/Module/Security/Login.php:147 msgid "Logout" msgstr "Logga ut" -#: src/Content/Nav.php:222 +#: src/Content/Nav.php:208 msgid "End this session" msgstr "Avsluta den här sessionen" -#: src/Content/Nav.php:224 src/Module/Bookmarklet.php:44 -#: src/Module/Security/Login.php:158 +#: src/Content/Nav.php:210 src/Module/Bookmarklet.php:30 +#: src/Module/Security/Login.php:148 msgid "Login" msgstr "Logga in" -#: src/Content/Nav.php:224 +#: src/Content/Nav.php:210 msgid "Sign in" msgstr "Logga in" -#: src/Content/Nav.php:229 src/Module/BaseProfile.php:57 -#: src/Module/Contact.php:511 +#: src/Content/Nav.php:215 src/Module/BaseProfile.php:43 +#: src/Module/Contact.php:493 msgid "Conversations" msgstr "" -#: src/Content/Nav.php:229 +#: src/Content/Nav.php:215 msgid "Conversations you started" msgstr "" -#: src/Content/Nav.php:230 src/Module/BaseProfile.php:49 -#: src/Module/BaseSettings.php:98 src/Module/Contact.php:503 -#: src/Module/Contact/Profile.php:425 src/Module/Profile/Profile.php:268 -#: src/Module/Welcome.php:57 view/theme/frio/theme.php:233 +#: src/Content/Nav.php:216 src/Module/BaseProfile.php:35 +#: src/Module/BaseSettings.php:84 src/Module/Contact.php:485 +#: src/Module/Contact/Profile.php:425 src/Module/Profile/Profile.php:256 +#: src/Module/Welcome.php:43 view/theme/frio/theme.php:221 msgid "Profile" msgstr "Profil" -#: src/Content/Nav.php:230 view/theme/frio/theme.php:233 +#: src/Content/Nav.php:216 view/theme/frio/theme.php:221 msgid "Your profile page" msgstr "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:237 +#: src/Content/Nav.php:217 src/Module/BaseProfile.php:51 +#: src/Module/Media/Photo/Browser.php:60 view/theme/frio/theme.php:225 msgid "Photos" msgstr "Bilder" -#: src/Content/Nav.php:231 view/theme/frio/theme.php:237 +#: src/Content/Nav.php:217 view/theme/frio/theme.php:225 msgid "Your photos" msgstr "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:238 +#: src/Content/Nav.php:218 src/Module/BaseProfile.php:59 +#: src/Module/BaseProfile.php:62 src/Module/Contact.php:509 +#: view/theme/frio/theme.php:226 msgid "Media" msgstr "Media" -#: src/Content/Nav.php:232 view/theme/frio/theme.php:238 +#: src/Content/Nav.php:218 view/theme/frio/theme.php:226 msgid "Your postings with media" msgstr "" -#: src/Content/Nav.php:233 src/Content/Nav.php:293 -#: src/Module/BaseProfile.php:85 src/Module/BaseProfile.php:88 -#: src/Module/BaseProfile.php:96 src/Module/BaseProfile.php:99 -#: src/Module/Settings/Display.php:316 view/theme/frio/theme.php:239 -#: view/theme/frio/theme.php:243 +#: src/Content/Nav.php:219 src/Content/Nav.php:279 +#: src/Module/BaseProfile.php:71 src/Module/BaseProfile.php:74 +#: src/Module/BaseProfile.php:82 src/Module/BaseProfile.php:85 +#: src/Module/Settings/Display.php:302 view/theme/frio/theme.php:227 +#: view/theme/frio/theme.php:231 msgid "Calendar" msgstr "" -#: src/Content/Nav.php:233 view/theme/frio/theme.php:239 +#: src/Content/Nav.php:219 view/theme/frio/theme.php:227 msgid "Your calendar" msgstr "" -#: src/Content/Nav.php:234 +#: src/Content/Nav.php:220 msgid "Personal notes" msgstr "Personliga anteckningar" -#: src/Content/Nav.php:234 +#: src/Content/Nav.php:220 msgid "Your personal notes" msgstr "Dina personliga anteckningar" -#: src/Content/Nav.php:251 src/Content/Nav.php:308 +#: src/Content/Nav.php:237 src/Content/Nav.php:294 msgid "Home" msgstr "Hem" -#: src/Content/Nav.php:251 src/Module/Settings/OAuth.php:73 +#: src/Content/Nav.php:237 src/Module/Settings/OAuth.php:59 msgid "Home Page" msgstr "Hemsida" -#: src/Content/Nav.php:255 src/Module/Register.php:169 -#: src/Module/Security/Login.php:124 +#: src/Content/Nav.php:241 src/Module/Register.php:161 +#: src/Module/Security/Login.php:114 msgid "Register" msgstr "Registrera" -#: src/Content/Nav.php:255 +#: src/Content/Nav.php:241 msgid "Create an account" msgstr "Skapa ett konto" -#: src/Content/Nav.php:261 src/Module/Help.php:67 -#: src/Module/Settings/TwoFactor/AppSpecific.php:132 -#: src/Module/Settings/TwoFactor/Index.php:139 -#: src/Module/Settings/TwoFactor/Recovery.php:110 -#: src/Module/Settings/TwoFactor/Verify.php:149 view/theme/vier/theme.php:240 +#: src/Content/Nav.php:247 src/Module/Help.php:53 +#: src/Module/Settings/TwoFactor/AppSpecific.php:118 +#: src/Module/Settings/TwoFactor/Index.php:125 +#: src/Module/Settings/TwoFactor/Recovery.php:96 +#: src/Module/Settings/TwoFactor/Verify.php:135 view/theme/vier/theme.php:228 msgid "Help" msgstr "Hjälp" -#: src/Content/Nav.php:261 +#: src/Content/Nav.php:247 msgid "Help and documentation" msgstr "Hjälp och dokumentation" -#: src/Content/Nav.php:265 +#: src/Content/Nav.php:251 msgid "Apps" msgstr "Apps" -#: src/Content/Nav.php:265 +#: src/Content/Nav.php:251 msgid "Addon applications, utilities, games" msgstr "" -#: src/Content/Nav.php:269 src/Content/Text/HTML.php:867 -#: src/Module/Admin/Logs/View.php:88 src/Module/Search/Index.php:112 +#: src/Content/Nav.php:255 src/Content/Text/HTML.php:853 +#: src/Module/Admin/Logs/View.php:74 src/Module/Search/Index.php:98 msgid "Search" msgstr "Sök" -#: src/Content/Nav.php:269 +#: src/Content/Nav.php:255 msgid "Search site content" msgstr "Sök innehåll på sidan" -#: src/Content/Nav.php:272 src/Content/Text/HTML.php:876 +#: src/Content/Nav.php:258 src/Content/Text/HTML.php:862 msgid "Full Text" msgstr "Fullständig text" -#: src/Content/Nav.php:273 src/Content/Text/HTML.php:877 -#: src/Content/Widget/TagCloud.php:68 +#: src/Content/Nav.php:259 src/Content/Text/HTML.php:863 +#: src/Content/Widget/TagCloud.php:54 msgid "Tags" msgstr "Taggar" -#: src/Content/Nav.php:274 src/Content/Nav.php:329 -#: src/Content/Text/HTML.php:878 src/Module/BaseProfile.php:127 -#: src/Module/BaseProfile.php:130 src/Module/Contact.php:426 -#: src/Module/Contact.php:535 view/theme/frio/theme.php:246 +#: src/Content/Nav.php:260 src/Content/Nav.php:315 +#: src/Content/Text/HTML.php:864 src/Module/BaseProfile.php:113 +#: src/Module/BaseProfile.php:116 src/Module/Contact.php:407 +#: src/Module/Contact.php:517 view/theme/frio/theme.php:234 msgid "Contacts" msgstr "Kontakter" -#: src/Content/Nav.php:289 +#: src/Content/Nav.php:275 msgid "Community" msgstr "Gemenskap" -#: src/Content/Nav.php:289 +#: src/Content/Nav.php:275 msgid "Conversations on this and other servers" msgstr "Konversationer i den här och andra servrar" -#: src/Content/Nav.php:296 +#: src/Content/Nav.php:282 msgid "Directory" msgstr "Medlemskatalog" -#: src/Content/Nav.php:296 +#: src/Content/Nav.php:282 msgid "People directory" msgstr "" -#: src/Content/Nav.php:298 src/Module/BaseAdmin.php:85 -#: src/Module/BaseModeration.php:108 +#: src/Content/Nav.php:284 src/Module/BaseAdmin.php:71 +#: src/Module/BaseModeration.php:94 msgid "Information" msgstr "Information" -#: src/Content/Nav.php:298 +#: src/Content/Nav.php:284 msgid "Information about this friendica instance" msgstr "Information om den här friendica-instansen" -#: src/Content/Nav.php:301 src/Module/Admin/Tos.php:78 -#: src/Module/BaseAdmin.php:95 src/Module/Register.php:177 -#: src/Module/Tos.php:101 +#: src/Content/Nav.php:287 src/Module/Admin/Tos.php:64 +#: src/Module/BaseAdmin.php:81 src/Module/Register.php:169 +#: src/Module/Tos.php:87 msgid "Terms of Service" msgstr "Villkor för användning" -#: src/Content/Nav.php:301 +#: src/Content/Nav.php:287 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:242 +#: src/Content/Nav.php:292 view/theme/frio/theme.php:230 msgid "Network" msgstr "Nätverk" -#: src/Content/Nav.php:306 view/theme/frio/theme.php:242 +#: src/Content/Nav.php:292 view/theme/frio/theme.php:230 msgid "Conversations from your friends" msgstr "Konversationer från dina vänner" -#: src/Content/Nav.php:308 view/theme/frio/theme.php:232 +#: src/Content/Nav.php:294 view/theme/frio/theme.php:220 msgid "Your posts and conversations" msgstr "Dina inlägg och konversationer" -#: src/Content/Nav.php:312 +#: src/Content/Nav.php:298 msgid "Introductions" msgstr "Presentationer" -#: src/Content/Nav.php:312 +#: src/Content/Nav.php:298 msgid "Friend Requests" msgstr "Vänförfrågningar" -#: src/Content/Nav.php:313 src/Module/BaseNotifications.php:149 -#: src/Module/Notifications/Introductions.php:75 +#: src/Content/Nav.php:299 src/Module/BaseNotifications.php:135 +#: src/Module/Notifications/Introductions.php:61 msgid "Notifications" msgstr "Aviseringar" -#: src/Content/Nav.php:314 +#: src/Content/Nav.php:300 msgid "See all notifications" msgstr "Se alla aviseringar" -#: src/Content/Nav.php:315 src/Module/Settings/Connectors.php:244 +#: src/Content/Nav.php:301 src/Module/Settings/Connectors.php:233 msgid "Mark as seen" msgstr "Markera som läst" -#: src/Content/Nav.php:315 +#: src/Content/Nav.php:301 msgid "Mark all system notifications as seen" msgstr "" -#: src/Content/Nav.php:318 view/theme/frio/theme.php:244 +#: src/Content/Nav.php:304 view/theme/frio/theme.php:232 msgid "Private mail" msgstr "Privat e-post" -#: src/Content/Nav.php:319 +#: src/Content/Nav.php:305 msgid "Inbox" msgstr "Inkorg" -#: src/Content/Nav.php:320 +#: src/Content/Nav.php:306 msgid "Outbox" msgstr "Utkorg" -#: src/Content/Nav.php:324 +#: src/Content/Nav.php:310 msgid "Accounts" msgstr "Konton" -#: src/Content/Nav.php:324 +#: src/Content/Nav.php:310 msgid "Manage other pages" 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:245 +#: src/Content/Nav.php:313 src/Module/Admin/Addons/Details.php:100 +#: src/Module/Admin/Themes/Details.php:85 src/Module/BaseSettings.php:168 +#: src/Module/Welcome.php:38 view/theme/frio/theme.php:233 msgid "Settings" msgstr "Inställningar" -#: src/Content/Nav.php:327 view/theme/frio/theme.php:245 +#: src/Content/Nav.php:313 view/theme/frio/theme.php:233 msgid "Account settings" msgstr "Kontoinställningar" -#: src/Content/Nav.php:329 view/theme/frio/theme.php:246 +#: src/Content/Nav.php:315 view/theme/frio/theme.php:234 msgid "Manage/edit friends and contacts" msgstr "Hantera/redigera vänner och kontakter" -#: src/Content/Nav.php:334 src/Module/BaseAdmin.php:119 +#: src/Content/Nav.php:320 src/Module/BaseAdmin.php:105 msgid "Admin" msgstr "Administratör" -#: src/Content/Nav.php:334 +#: src/Content/Nav.php:320 msgid "Site setup and configuration" msgstr "" -#: src/Content/Nav.php:335 src/Module/BaseModeration.php:128 -#: src/Module/Moderation/Blocklist/Contact.php:110 -#: src/Module/Moderation/Blocklist/Server/Add.php:121 -#: src/Module/Moderation/Blocklist/Server/Import.php:118 -#: src/Module/Moderation/Blocklist/Server/Index.php:95 -#: src/Module/Moderation/Item/Delete.php:61 -#: src/Module/Moderation/Reports.php:104 src/Module/Moderation/Summary.php:75 -#: src/Module/Moderation/Users/Active.php:133 -#: src/Module/Moderation/Users/Blocked.php:133 -#: src/Module/Moderation/Users/Deleted.php:80 -#: src/Module/Moderation/Users/Index.php:147 +#: src/Content/Nav.php:321 src/Module/BaseModeration.php:114 +#: src/Module/Moderation/Blocklist/Contact.php:96 +#: src/Module/Moderation/Blocklist/Server/Add.php:107 +#: src/Module/Moderation/Blocklist/Server/Import.php:102 +#: src/Module/Moderation/Blocklist/Server/Index.php:81 +#: src/Module/Moderation/Item/Delete.php:47 +#: src/Module/Moderation/Reports.php:96 src/Module/Moderation/Summary.php:61 +#: src/Module/Moderation/Users/Active.php:119 +#: src/Module/Moderation/Users/Blocked.php:119 +#: src/Module/Moderation/Users/Deleted.php:66 +#: src/Module/Moderation/Users/Index.php:133 msgid "Moderation" msgstr "" -#: src/Content/Nav.php:335 +#: src/Content/Nav.php:321 msgid "Content and user moderation" msgstr "" -#: src/Content/Nav.php:338 +#: src/Content/Nav.php:324 msgid "Navigation" msgstr "Navigering" -#: src/Content/Nav.php:338 +#: src/Content/Nav.php:324 msgid "Site map" msgstr "Karta över webbplatsen" -#: src/Content/Pager.php:216 +#: src/Content/Pager.php:202 msgid "first" msgstr "första" -#: src/Content/Pager.php:221 +#: src/Content/Pager.php:207 msgid "prev" msgstr "föreg" -#: src/Content/Pager.php:276 +#: src/Content/Pager.php:262 msgid "next" msgstr "nästa" -#: src/Content/Pager.php:281 +#: src/Content/Pager.php:267 msgid "last" msgstr "sista" -#: src/Content/Text/BBCode.php:702 src/Content/Text/BBCode.php:1878 -#: src/Content/Text/BBCode.php:1879 +#: src/Content/Text/BBCode.php:689 src/Content/Text/BBCode.php:1862 +#: src/Content/Text/BBCode.php:1863 msgid "Image/photo" msgstr "Bild/foto" -#: src/Content/Text/BBCode.php:920 +#: src/Content/Text/BBCode.php:907 #, php-format msgid "%2$s %3$s" msgstr "%2$s %3$s" -#: src/Content/Text/BBCode.php:945 src/Model/Item.php:4012 -#: src/Model/Item.php:4018 src/Model/Item.php:4019 +#: src/Content/Text/BBCode.php:929 src/Model/Item.php:4028 +#: src/Model/Item.php:4034 src/Model/Item.php:4035 msgid "Link to source" msgstr "Länk till källa" -#: src/Content/Text/BBCode.php:1759 src/Content/Text/HTML.php:906 +#: src/Content/Text/BBCode.php:1743 src/Content/Text/HTML.php:892 msgid "Click to open/close" msgstr "Klicka för att öppna/stänga" -#: src/Content/Text/BBCode.php:1814 +#: src/Content/Text/BBCode.php:1798 msgid "$1 wrote:" msgstr "$1 skrev:" -#: src/Content/Text/BBCode.php:1888 src/Content/Text/BBCode.php:1889 +#: src/Content/Text/BBCode.php:1872 src/Content/Text/BBCode.php:1873 msgid "Encrypted content" msgstr "Krypterat innehåll" -#: src/Content/Text/BBCode.php:2194 +#: src/Content/Text/BBCode.php:2205 msgid "Invalid source protocol" msgstr "Ogiltigt källprotokoll" -#: src/Content/Text/BBCode.php:2213 +#: src/Content/Text/BBCode.php:2224 msgid "Invalid link protocol" msgstr "Ogiltigt länkprotokoll" -#: src/Content/Text/HTML.php:784 +#: src/Content/Text/HTML.php:770 msgid "Loading more entries..." msgstr "Laddar fler poster..." -#: src/Content/Text/HTML.php:785 +#: src/Content/Text/HTML.php:771 msgid "The end" msgstr "Slut" -#: src/Content/Text/HTML.php:861 src/Content/Widget/VCard.php:127 -#: src/Model/Profile.php:477 src/Module/Contact/Profile.php:478 +#: src/Content/Text/HTML.php:847 src/Content/Widget/VCard.php:113 +#: src/Model/Profile.php:456 src/Module/Contact/Profile.php:478 msgid "Follow" msgstr "Följ" -#: src/Content/Widget.php:51 +#: src/Content/Widget.php:37 msgid "Add New Contact" msgstr "Lägg till kontakt" -#: src/Content/Widget.php:52 +#: src/Content/Widget.php:38 msgid "Enter address or web location" msgstr "Fyll i adress eller plats på internet" -#: src/Content/Widget.php:53 +#: src/Content/Widget.php:39 msgid "Example: bob@example.com, http://example.com/barbara" msgstr "Exempel: adam@exempel.com, http://exempel.com/bertil" -#: src/Content/Widget.php:55 +#: src/Content/Widget.php:41 msgid "Connect" msgstr "Skicka kontaktförfrågan" -#: src/Content/Widget.php:72 +#: src/Content/Widget.php:58 #, php-format msgid "%d invitation available" msgid_plural "%d invitations available" msgstr[0] "%d inbjudning tillgänglig" msgstr[1] "%d inbjudningar tillgängliga" -#: src/Content/Widget.php:78 view/theme/vier/theme.php:193 +#: src/Content/Widget.php:64 view/theme/vier/theme.php:181 msgid "Find People" msgstr "Hitta personer" -#: src/Content/Widget.php:79 view/theme/vier/theme.php:194 +#: src/Content/Widget.php:65 view/theme/vier/theme.php:182 msgid "Enter name or interest" msgstr "Ange namn eller intresse" -#: src/Content/Widget.php:81 view/theme/vier/theme.php:196 +#: src/Content/Widget.php:67 view/theme/vier/theme.php:184 msgid "Examples: Robert Morgenstein, Fishing" msgstr "Exempel: Robert Morgenstein, Fiskning" -#: src/Content/Widget.php:82 src/Module/Contact.php:460 -#: src/Module/Directory.php:96 view/theme/vier/theme.php:197 +#: src/Content/Widget.php:68 src/Module/Contact.php:441 +#: src/Module/Directory.php:83 view/theme/vier/theme.php:185 msgid "Find" msgstr "Sök" -#: src/Content/Widget.php:83 src/Module/Contact/Suggestions.php:73 -#: view/theme/vier/theme.php:198 +#: src/Content/Widget.php:69 src/Module/Contact/Suggestions.php:59 +#: view/theme/vier/theme.php:186 msgid "Friend Suggestions" msgstr "Vän-förslag" -#: src/Content/Widget.php:84 view/theme/vier/theme.php:199 +#: src/Content/Widget.php:70 view/theme/vier/theme.php:187 msgid "Similar Interests" msgstr "Liknande intressen" -#: src/Content/Widget.php:85 view/theme/vier/theme.php:200 +#: src/Content/Widget.php:71 view/theme/vier/theme.php:188 msgid "Random Profile" msgstr "Slumpmässig profil" -#: src/Content/Widget.php:86 view/theme/vier/theme.php:201 +#: src/Content/Widget.php:72 view/theme/vier/theme.php:189 msgid "Invite Friends" msgstr "Bjud in folk du känner" -#: src/Content/Widget.php:87 src/Module/Directory.php:88 -#: view/theme/vier/theme.php:202 +#: src/Content/Widget.php:73 src/Module/Directory.php:75 +#: view/theme/vier/theme.php:190 msgid "Global Directory" msgstr "Medlemskatalog för flera sajter (global)" -#: src/Content/Widget.php:89 view/theme/vier/theme.php:204 +#: src/Content/Widget.php:75 view/theme/vier/theme.php:192 msgid "Local Directory" msgstr "Lokal-mapp" -#: src/Content/Widget.php:218 +#: src/Content/Widget.php:196 msgid "Everyone" msgstr "Alla" -#: src/Content/Widget.php:243 src/Module/Contact.php:423 +#: src/Content/Widget.php:221 src/Module/Contact.php:404 msgid "No relationship" msgstr "" -#: src/Content/Widget.php:248 +#: src/Content/Widget.php:226 msgid "Relationships" msgstr "Relationer" -#: src/Content/Widget.php:250 src/Module/Circle.php:294 -#: src/Module/Contact.php:344 +#: src/Content/Widget.php:228 src/Module/Circle.php:280 +#: src/Module/Contact.php:325 msgid "All Contacts" msgstr "Alla kontakter" -#: src/Content/Widget.php:291 +#: src/Content/Widget.php:269 msgid "All Protocols" msgstr "Alla protokoll" -#: src/Content/Widget.php:321 src/Content/Widget.php:352 +#: src/Content/Widget.php:299 src/Content/Widget.php:330 msgid "Everything" msgstr "Allting" -#: src/Content/Widget.php:350 +#: src/Content/Widget.php:328 msgid "Categories" msgstr "Kategorier" -#: src/Content/Widget.php:407 +#: src/Content/Widget.php:385 #, 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:515 +#: src/Content/Widget.php:493 msgid "On this date" msgstr "" -#: src/Content/Widget.php:535 +#: src/Content/Widget.php:513 msgid "Persons" msgstr "Personer" -#: src/Content/Widget.php:536 +#: src/Content/Widget.php:514 msgid "Organisations" msgstr "Organisationer" -#: src/Content/Widget.php:537 src/Model/Contact.php:1729 +#: src/Content/Widget.php:515 src/Model/Contact.php:1747 msgid "News" msgstr "Nyheter" -#: src/Content/Widget.php:539 +#: src/Content/Widget.php:517 msgid "Relays" msgstr "" -#: src/Content/Widget.php:546 src/Module/Moderation/BaseUsers.php:69 +#: src/Content/Widget.php:524 src/Module/Moderation/BaseUsers.php:56 msgid "All" msgstr "Alla" -#: src/Content/Widget/CalendarExport.php:56 +#: src/Content/Widget/CalendarExport.php:42 msgid "Export" msgstr "Exportera" -#: src/Content/Widget/CalendarExport.php:57 +#: src/Content/Widget/CalendarExport.php:43 msgid "Export calendar as ical" msgstr "Exportera kalender som ical" -#: src/Content/Widget/CalendarExport.php:58 +#: src/Content/Widget/CalendarExport.php:44 msgid "Export calendar as csv" msgstr "Exportera kalender som csv" -#: src/Content/Widget/ContactBlock.php:79 +#: src/Content/Widget/ContactBlock.php:65 msgid "No contacts" msgstr "Inga kontakter" -#: src/Content/Widget/ContactBlock.php:110 +#: src/Content/Widget/ContactBlock.php:96 #, php-format msgid "%d Contact" msgid_plural "%d Contacts" msgstr[0] "%d kontakt" msgstr[1] "%d kontakter" -#: src/Content/Widget/ContactBlock.php:127 +#: src/Content/Widget/ContactBlock.php:113 msgid "View Contacts" msgstr "Visa kontakter" -#: src/Content/Widget/SavedSearches.php:47 +#: src/Content/Widget/SavedSearches.php:33 msgid "Remove term" msgstr "Ta bort villkor" -#: src/Content/Widget/TrendingTags.php:53 +#: src/Content/Widget/TrendingTags.php:39 #, php-format msgid "Trending Tags (last %d hour)" msgid_plural "Trending Tags (last %d hours)" msgstr[0] "Trendande taggar (senaste %d timmen)" msgstr[1] "Trendande taggar (de senaste %d timmarna)" -#: src/Content/Widget/TrendingTags.php:54 +#: src/Content/Widget/TrendingTags.php:40 msgid "More Trending Tags" msgstr "Fler trendande taggar" -#: src/Content/Widget/VCard.php:105 src/Model/Contact.php:1196 -#: src/Model/Profile.php:462 +#: src/Content/Widget/VCard.php:91 src/Model/Contact.php:1212 +#: src/Model/Profile.php:441 msgid "Post to group" msgstr "" -#: src/Content/Widget/VCard.php:110 src/Model/Contact.php:1200 -#: src/Model/Profile.php:466 src/Module/Moderation/Item/Source.php:85 +#: src/Content/Widget/VCard.php:96 src/Model/Contact.php:1216 +#: src/Model/Profile.php:445 src/Module/Moderation/Item/Source.php:77 msgid "Mention" msgstr "Nämn" -#: src/Content/Widget/VCard.php:120 src/Model/Profile.php:381 -#: src/Module/Contact/Profile.php:414 src/Module/Profile/Profile.php:199 +#: src/Content/Widget/VCard.php:106 src/Model/Profile.php:360 +#: src/Module/Contact/Profile.php:414 src/Module/Profile/Profile.php:187 msgid "XMPP:" msgstr "XMPP:" -#: src/Content/Widget/VCard.php:121 src/Model/Profile.php:382 -#: src/Module/Contact/Profile.php:416 src/Module/Profile/Profile.php:203 +#: src/Content/Widget/VCard.php:107 src/Model/Profile.php:361 +#: src/Module/Contact/Profile.php:416 src/Module/Profile/Profile.php:191 msgid "Matrix:" msgstr "Matrix:" -#: src/Content/Widget/VCard.php:122 src/Model/Event.php:82 -#: src/Model/Event.php:109 src/Model/Event.php:471 src/Model/Event.php:960 -#: src/Model/Profile.php:376 src/Module/Contact/Profile.php:412 -#: src/Module/Directory.php:147 src/Module/Notifications/Introductions.php:187 -#: src/Module/Profile/Profile.php:221 +#: src/Content/Widget/VCard.php:108 src/Model/Event.php:68 +#: src/Model/Event.php:95 src/Model/Event.php:457 src/Model/Event.php:946 +#: src/Model/Profile.php:355 src/Module/Contact/Profile.php:412 +#: src/Module/Directory.php:134 src/Module/Notifications/Introductions.php:179 +#: src/Module/Profile/Profile.php:209 msgid "Location:" msgstr "Plats:" -#: src/Content/Widget/VCard.php:125 src/Model/Profile.php:490 -#: src/Module/Notifications/Introductions.php:201 +#: src/Content/Widget/VCard.php:111 src/Model/Profile.php:469 +#: src/Module/Notifications/Introductions.php:193 msgid "Network:" msgstr "Nätverk:" -#: src/Content/Widget/VCard.php:129 src/Model/Contact.php:1228 -#: src/Model/Contact.php:1240 src/Model/Profile.php:479 +#: src/Content/Widget/VCard.php:115 src/Model/Contact.php:1244 +#: src/Model/Contact.php:1256 src/Model/Profile.php:458 #: src/Module/Contact/Profile.php:470 msgid "Unfollow" msgstr "Avfölj" -#: src/Content/Widget/VCard.php:135 src/Model/Contact.php:1198 -#: src/Model/Profile.php:464 +#: src/Content/Widget/VCard.php:121 src/Model/Contact.php:1214 +#: src/Model/Profile.php:443 msgid "View group" msgstr "" -#: src/Core/ACL.php:166 src/Module/Profile/Profile.php:269 +#: src/Core/ACL.php:152 src/Module/Profile/Profile.php:257 msgid "Yourself" msgstr "Du själv" -#: src/Core/ACL.php:202 src/Module/Privacy/PermissionTooltip.php:170 -#: src/Module/Privacy/PermissionTooltip.php:192 +#: src/Core/ACL.php:188 src/Module/Privacy/PermissionTooltip.php:156 +#: src/Module/Privacy/PermissionTooltip.php:178 msgid "Mutuals" msgstr "Ömsesidiga" -#: src/Core/ACL.php:294 +#: src/Core/ACL.php:280 msgid "Post to Email" msgstr "" -#: src/Core/ACL.php:321 src/Module/Privacy/PermissionTooltip.php:117 -#: src/Module/Privacy/PermissionTooltip.php:231 +#: src/Core/ACL.php:307 src/Module/Privacy/PermissionTooltip.php:103 +#: src/Module/Privacy/PermissionTooltip.php:217 msgid "Public" msgstr "Publik" -#: src/Core/ACL.php:322 +#: src/Core/ACL.php:308 msgid "" "This content will be shown to all your followers and can be seen in the " "community pages and by anyone with its link." msgstr "" -#: src/Core/ACL.php:323 src/Module/Privacy/PermissionTooltip.php:119 +#: src/Core/ACL.php:309 src/Module/Privacy/PermissionTooltip.php:105 msgid "Limited/Private" msgstr "Begränsad/Privat" -#: src/Core/ACL.php:324 +#: src/Core/ACL.php:310 msgid "" "This content will be shown only to the people in the first box, to the " "exception of the people mentioned in the second box. It won't appear " "anywhere public." msgstr "" -#: src/Core/ACL.php:324 +#: src/Core/ACL.php:310 msgid "" "Start typing the name of a contact or a circle to show a filtered list. You " "can also mention the special circles \"Followers\" and \"Mutuals\"." msgstr "" -#: src/Core/ACL.php:325 +#: src/Core/ACL.php:311 msgid "Show to:" msgstr "Visa till:" -#: src/Core/ACL.php:326 +#: src/Core/ACL.php:312 msgid "Except to:" msgstr "Förutom till:" -#: src/Core/ACL.php:327 src/Module/Post/Edit.php:154 +#: src/Core/ACL.php:313 src/Module/Post/Edit.php:140 msgid "CC: email addresses" msgstr "Kopia: e-postadresser" -#: src/Core/ACL.php:328 src/Module/Post/Edit.php:160 +#: src/Core/ACL.php:314 src/Module/Post/Edit.php:146 msgid "Example: bob@example.com, mary@example.com" msgstr "Exempel: adam@exempel.com, bertil@exempel.com" -#: src/Core/ACL.php:329 +#: src/Core/ACL.php:315 msgid "Connectors" msgstr "" -#: src/Core/Installer.php:180 +#: src/Core/Installer.php:166 msgid "" "The database configuration file \"config/local.config.php\" could not be " "written. Please use the enclosed text to create a configuration file in your" " web server root." msgstr "" -#: src/Core/Installer.php:197 +#: src/Core/Installer.php:183 msgid "" "You may need to import the file \"database.sql\" manually using phpmyadmin " "or mysql." msgstr "Du kanske måste importera filen \"database.sql\" manuellt med phpmyadmin eller mysql." -#: src/Core/Installer.php:198 src/Module/Install.php:207 -#: src/Module/Install.php:350 +#: src/Core/Installer.php:184 src/Module/Install.php:193 +#: src/Module/Install.php:336 msgid "Please see the file \"doc/INSTALL.md\"." msgstr "Vänligen se filen \"doc/INSTALL.md\"." -#: src/Core/Installer.php:259 +#: src/Core/Installer.php:245 msgid "Could not find a command line version of PHP in the web server PATH." msgstr "Could not find a command line version of PHP in the web server PATH." -#: src/Core/Installer.php:260 +#: src/Core/Installer.php:246 msgid "" "If you don't have a command line version of PHP installed on your server, " "you will not be able to run the background processing. See 'Setup the worker'" msgstr "Om du inte har en kommandoradsversion av PHP installerad på din server kommer du inte att kunna köra bakgrundsbearbetningen." -#: src/Core/Installer.php:265 +#: src/Core/Installer.php:251 msgid "PHP executable path" msgstr "" -#: src/Core/Installer.php:265 +#: src/Core/Installer.php:251 msgid "" "Enter full path to php executable. You can leave this blank to continue the " "installation." msgstr "" -#: src/Core/Installer.php:270 +#: src/Core/Installer.php:256 msgid "Command line PHP" msgstr "Kommandorad för PHP" -#: src/Core/Installer.php:279 +#: src/Core/Installer.php:265 msgid "PHP executable is not the php cli binary (could be cgi-fgci version)" msgstr "" -#: src/Core/Installer.php:280 +#: src/Core/Installer.php:266 msgid "Found PHP version: " msgstr "Hittade PHP-version:" -#: src/Core/Installer.php:282 +#: src/Core/Installer.php:268 msgid "PHP cli binary" msgstr "" -#: src/Core/Installer.php:295 +#: src/Core/Installer.php:281 msgid "" "The command line version of PHP on your system does not have " "\"register_argc_argv\" enabled." msgstr "The command line version of PHP on your system does not have \"register_argc_argv\" enabled." -#: src/Core/Installer.php:296 +#: src/Core/Installer.php:282 msgid "This is required for message delivery to work." msgstr "Det krävs för att meddelanden ska kunna levereras." -#: src/Core/Installer.php:301 +#: src/Core/Installer.php:287 msgid "PHP register_argc_argv" msgstr "" -#: src/Core/Installer.php:333 +#: src/Core/Installer.php:319 msgid "" "Error: the \"openssl_pkey_new\" function on this system is not able to " "generate encryption keys" msgstr "Fel: funktionen \"openssl_pkey_new\" kan inte skapa krypteringsnycklar" -#: src/Core/Installer.php:334 +#: src/Core/Installer.php:320 msgid "" "If running under Windows, please see " "\"http://www.php.net/manual/en/openssl.installation.php\"." msgstr "Läs mer på \"http://www.php.net/manual/en/openssl.installation.php\" om du kör Windows." -#: src/Core/Installer.php:337 +#: src/Core/Installer.php:323 msgid "Generate encryption keys" msgstr "Generera krypteringsnycklar" -#: src/Core/Installer.php:388 +#: src/Core/Installer.php:374 msgid "" "Error: Apache webserver mod-rewrite module is required but not installed." msgstr "Error: Apache webserver mod-rewrite module is required but not installed." -#: src/Core/Installer.php:392 +#: src/Core/Installer.php:378 msgid "Apache mod_rewrite module" msgstr "" -#: src/Core/Installer.php:398 +#: src/Core/Installer.php:384 msgid "Error: PDO or MySQLi PHP module required but not installed." msgstr "" -#: src/Core/Installer.php:402 +#: src/Core/Installer.php:388 msgid "Error: The MySQL driver for PDO is not installed." msgstr "Fel: MySQL-drivrutinen för PDO är inte installerad." -#: src/Core/Installer.php:405 +#: src/Core/Installer.php:391 msgid "PDO or MySQLi PHP module" msgstr "" -#: src/Core/Installer.php:411 +#: src/Core/Installer.php:397 msgid "Error: The IntlChar module is not installed." msgstr "" -#: src/Core/Installer.php:414 +#: src/Core/Installer.php:400 msgid "IntlChar PHP module" msgstr "" -#: src/Core/Installer.php:422 +#: src/Core/Installer.php:408 msgid "Error, XML PHP module required but not installed." msgstr "" -#: src/Core/Installer.php:426 +#: src/Core/Installer.php:412 msgid "XML PHP module" msgstr "" -#: src/Core/Installer.php:429 +#: src/Core/Installer.php:415 msgid "libCurl PHP module" msgstr "PHP-modul för libCurl" -#: src/Core/Installer.php:430 +#: src/Core/Installer.php:416 msgid "Error: libCURL PHP module required but not installed." msgstr "Error: libCURL PHP module required but not installed." -#: src/Core/Installer.php:436 +#: src/Core/Installer.php:422 msgid "GD graphics PHP module" msgstr "" -#: src/Core/Installer.php:437 +#: src/Core/Installer.php:423 msgid "" "Error: GD graphics PHP module with JPEG support required but not installed." msgstr "Error: GD graphics PHP module with JPEG support required but not installed." -#: src/Core/Installer.php:443 +#: src/Core/Installer.php:429 msgid "OpenSSL PHP module" msgstr "PHP-modul för OpenSSL" -#: src/Core/Installer.php:444 +#: src/Core/Installer.php:430 msgid "Error: openssl PHP module required but not installed." msgstr "Error: openssl PHP module required but not installed." -#: src/Core/Installer.php:450 +#: src/Core/Installer.php:436 msgid "mb_string PHP module" msgstr "" -#: src/Core/Installer.php:451 +#: src/Core/Installer.php:437 msgid "Error: mb_string PHP module required but not installed." msgstr "" -#: src/Core/Installer.php:457 +#: src/Core/Installer.php:443 msgid "iconv PHP module" msgstr "" -#: src/Core/Installer.php:458 +#: src/Core/Installer.php:444 msgid "Error: iconv PHP module required but not installed." msgstr "" -#: src/Core/Installer.php:464 +#: src/Core/Installer.php:450 msgid "POSIX PHP module" msgstr "" -#: src/Core/Installer.php:465 +#: src/Core/Installer.php:451 msgid "Error: POSIX PHP module required but not installed." msgstr "" -#: src/Core/Installer.php:471 +#: src/Core/Installer.php:457 msgid "Program execution functions" msgstr "" -#: src/Core/Installer.php:472 +#: src/Core/Installer.php:458 msgid "" "Error: Program execution functions (proc_open) required but not enabled." msgstr "" -#: src/Core/Installer.php:478 +#: src/Core/Installer.php:464 msgid "JSON PHP module" msgstr "" -#: src/Core/Installer.php:479 +#: src/Core/Installer.php:465 msgid "Error: JSON PHP module required but not installed." msgstr "" -#: src/Core/Installer.php:485 +#: src/Core/Installer.php:471 msgid "File Information PHP module" msgstr "" -#: src/Core/Installer.php:486 +#: src/Core/Installer.php:472 msgid "Error: File Information PHP module required but not installed." msgstr "" -#: src/Core/Installer.php:492 +#: src/Core/Installer.php:478 msgid "GNU Multiple Precision PHP module" msgstr "" -#: src/Core/Installer.php:493 +#: src/Core/Installer.php:479 msgid "Error: GNU Multiple Precision PHP module required but not installed." msgstr "" -#: src/Core/Installer.php:499 +#: src/Core/Installer.php:485 msgid "IDN Functions PHP module" msgstr "" -#: src/Core/Installer.php:500 +#: src/Core/Installer.php:486 msgid "Error: IDN Functions PHP module required but not installed." msgstr "" -#: src/Core/Installer.php:523 +#: src/Core/Installer.php:509 msgid "" "The web installer needs to be able to create a file called " "\"local.config.php\" in the \"config\" folder of your web server and it is " "unable to do so." msgstr "" -#: src/Core/Installer.php:524 +#: src/Core/Installer.php:510 msgid "" "This is most often a permission setting, as the web server may not be able " "to write files in your folder - even if you can." msgstr "This is most often a permission setting, as the web server may not be able to write files in your folder - even if you can." -#: src/Core/Installer.php:525 +#: src/Core/Installer.php:511 msgid "" "At the end of this procedure, we will give you a text to save in a file " "named local.config.php in your Friendica \"config\" folder." msgstr "" -#: src/Core/Installer.php:526 +#: src/Core/Installer.php:512 msgid "" "You can alternatively skip this procedure and perform a manual installation." " Please see the file \"doc/INSTALL.md\" for instructions." msgstr "" -#: src/Core/Installer.php:529 +#: src/Core/Installer.php:515 msgid "config/local.config.php is writable" msgstr "config/local.config.php är skrivbar" -#: src/Core/Installer.php:549 +#: src/Core/Installer.php:535 msgid "" "Friendica uses the Smarty3 template engine to render its web views. Smarty3 " "compiles templates to PHP to speed up rendering." msgstr "" -#: src/Core/Installer.php:550 +#: src/Core/Installer.php:536 msgid "" "In order to store these compiled templates, the web server needs to have " "write access to the directory view/smarty3/ under the Friendica top level " "folder." msgstr "" -#: src/Core/Installer.php:551 +#: src/Core/Installer.php:537 msgid "" "Please ensure that the user that your web server runs as (e.g. www-data) has" " write access to this folder." msgstr "" -#: src/Core/Installer.php:552 +#: src/Core/Installer.php:538 msgid "" "Note: as a security measure, you should give the web server write access to " "view/smarty3/ only--not the template files (.tpl) that it contains." msgstr "" -#: src/Core/Installer.php:555 +#: src/Core/Installer.php:541 msgid "view/smarty3 is writable" msgstr "view/smarty3 är skrivbar" -#: src/Core/Installer.php:583 +#: src/Core/Installer.php:569 msgid "" "Url rewrite in .htaccess seems not working. Make sure you copied .htaccess-" "dist to .htaccess." msgstr "" -#: src/Core/Installer.php:584 +#: src/Core/Installer.php:570 msgid "" "In some circumstances (like running inside containers), you can skip this " "error." msgstr "" -#: src/Core/Installer.php:586 +#: src/Core/Installer.php:572 msgid "Error message from Curl when fetching" msgstr "" -#: src/Core/Installer.php:592 +#: src/Core/Installer.php:578 msgid "Url rewrite is working" msgstr "" -#: src/Core/Installer.php:621 +#: src/Core/Installer.php:607 msgid "" "The detection of TLS to secure the communication between the browser and the" " new Friendica server failed." msgstr "" -#: src/Core/Installer.php:622 +#: src/Core/Installer.php:608 msgid "" "It is highly encouraged to use Friendica only over a secure connection as " "sensitive information like passwords will be transmitted." msgstr "" -#: src/Core/Installer.php:623 +#: src/Core/Installer.php:609 msgid "Please ensure that the connection to the server is secure." msgstr "" -#: src/Core/Installer.php:624 +#: src/Core/Installer.php:610 msgid "No TLS detected" msgstr "Ingen TLS upptäcktes" -#: src/Core/Installer.php:626 +#: src/Core/Installer.php:612 msgid "TLS detected" msgstr "TLS upptäcktes" -#: src/Core/Installer.php:643 +#: src/Core/Installer.php:629 msgid "ImageMagick PHP extension is not installed" msgstr "" -#: src/Core/Installer.php:645 +#: src/Core/Installer.php:631 msgid "ImageMagick PHP extension is installed" msgstr "" -#: src/Core/Installer.php:666 +#: src/Core/Installer.php:652 msgid "Database already in use." msgstr "Databas används redan." -#: src/Core/Installer.php:671 +#: src/Core/Installer.php:657 msgid "Could not connect to database." msgstr "Kunde inte ansluta till databasen." -#: src/Core/L10n.php:444 src/Model/Item.php:2300 +#: src/Core/L10n.php:430 src/Model/Item.php:2315 msgid "Undetermined" msgstr "" -#: src/Core/L10n.php:451 +#: src/Core/L10n.php:437 #, php-format msgid "%s (%s)" msgstr "" -#: src/Core/L10n.php:499 src/Model/Event.php:430 -#: src/Module/Settings/Display.php:284 +#: src/Core/L10n.php:485 src/Model/Event.php:416 +#: src/Module/Settings/Display.php:270 msgid "Monday" msgstr "måndag" -#: src/Core/L10n.php:499 src/Model/Event.php:431 -#: src/Module/Settings/Display.php:285 +#: src/Core/L10n.php:485 src/Model/Event.php:417 +#: src/Module/Settings/Display.php:271 msgid "Tuesday" msgstr "tisdag" -#: src/Core/L10n.php:499 src/Model/Event.php:432 -#: src/Module/Settings/Display.php:286 +#: src/Core/L10n.php:485 src/Model/Event.php:418 +#: src/Module/Settings/Display.php:272 msgid "Wednesday" msgstr "onsdag" -#: src/Core/L10n.php:499 src/Model/Event.php:433 -#: src/Module/Settings/Display.php:287 +#: src/Core/L10n.php:485 src/Model/Event.php:419 +#: src/Module/Settings/Display.php:273 msgid "Thursday" msgstr "torsdag" -#: src/Core/L10n.php:499 src/Model/Event.php:434 -#: src/Module/Settings/Display.php:288 +#: src/Core/L10n.php:485 src/Model/Event.php:420 +#: src/Module/Settings/Display.php:274 msgid "Friday" msgstr "fredag" -#: src/Core/L10n.php:499 src/Model/Event.php:435 -#: src/Module/Settings/Display.php:289 +#: src/Core/L10n.php:485 src/Model/Event.php:421 +#: src/Module/Settings/Display.php:275 msgid "Saturday" msgstr "lördag" -#: src/Core/L10n.php:499 src/Model/Event.php:429 -#: src/Module/Settings/Display.php:283 +#: src/Core/L10n.php:485 src/Model/Event.php:415 +#: src/Module/Settings/Display.php:269 msgid "Sunday" msgstr "söndag" -#: src/Core/L10n.php:503 src/Model/Event.php:450 +#: src/Core/L10n.php:489 src/Model/Event.php:436 msgid "January" msgstr "januari" -#: src/Core/L10n.php:503 src/Model/Event.php:451 +#: src/Core/L10n.php:489 src/Model/Event.php:437 msgid "February" msgstr "februari" -#: src/Core/L10n.php:503 src/Model/Event.php:452 +#: src/Core/L10n.php:489 src/Model/Event.php:438 msgid "March" msgstr "mars" -#: src/Core/L10n.php:503 src/Model/Event.php:453 +#: src/Core/L10n.php:489 src/Model/Event.php:439 msgid "April" msgstr "april" -#: src/Core/L10n.php:503 src/Core/L10n.php:522 src/Model/Event.php:441 +#: src/Core/L10n.php:489 src/Core/L10n.php:508 src/Model/Event.php:427 msgid "May" msgstr "maj" -#: src/Core/L10n.php:503 src/Model/Event.php:454 +#: src/Core/L10n.php:489 src/Model/Event.php:440 msgid "June" msgstr "juni" -#: src/Core/L10n.php:503 src/Model/Event.php:455 +#: src/Core/L10n.php:489 src/Model/Event.php:441 msgid "July" msgstr "juli" -#: src/Core/L10n.php:503 src/Model/Event.php:456 +#: src/Core/L10n.php:489 src/Model/Event.php:442 msgid "August" msgstr "augusti" -#: src/Core/L10n.php:503 src/Model/Event.php:457 +#: src/Core/L10n.php:489 src/Model/Event.php:443 msgid "September" msgstr "september" -#: src/Core/L10n.php:503 src/Model/Event.php:458 +#: src/Core/L10n.php:489 src/Model/Event.php:444 msgid "October" msgstr "oktober" -#: src/Core/L10n.php:503 src/Model/Event.php:459 +#: src/Core/L10n.php:489 src/Model/Event.php:445 msgid "November" msgstr "november" -#: src/Core/L10n.php:503 src/Model/Event.php:460 +#: src/Core/L10n.php:489 src/Model/Event.php:446 msgid "December" msgstr "december" -#: src/Core/L10n.php:518 src/Model/Event.php:422 +#: src/Core/L10n.php:504 src/Model/Event.php:408 msgid "Mon" msgstr "Mån" -#: src/Core/L10n.php:518 src/Model/Event.php:423 +#: src/Core/L10n.php:504 src/Model/Event.php:409 msgid "Tue" msgstr "Tis" -#: src/Core/L10n.php:518 src/Model/Event.php:424 +#: src/Core/L10n.php:504 src/Model/Event.php:410 msgid "Wed" msgstr "Ons" -#: src/Core/L10n.php:518 src/Model/Event.php:425 +#: src/Core/L10n.php:504 src/Model/Event.php:411 msgid "Thu" msgstr "Tor" -#: src/Core/L10n.php:518 src/Model/Event.php:426 +#: src/Core/L10n.php:504 src/Model/Event.php:412 msgid "Fri" msgstr "Fre" -#: src/Core/L10n.php:518 src/Model/Event.php:427 +#: src/Core/L10n.php:504 src/Model/Event.php:413 msgid "Sat" msgstr "Lör" -#: src/Core/L10n.php:518 src/Model/Event.php:421 +#: src/Core/L10n.php:504 src/Model/Event.php:407 msgid "Sun" msgstr "Sön" -#: src/Core/L10n.php:522 src/Model/Event.php:437 +#: src/Core/L10n.php:508 src/Model/Event.php:423 msgid "Jan" msgstr "Jan" -#: src/Core/L10n.php:522 src/Model/Event.php:438 +#: src/Core/L10n.php:508 src/Model/Event.php:424 msgid "Feb" msgstr "Feb" -#: src/Core/L10n.php:522 src/Model/Event.php:439 +#: src/Core/L10n.php:508 src/Model/Event.php:425 msgid "Mar" msgstr "Mar" -#: src/Core/L10n.php:522 src/Model/Event.php:440 +#: src/Core/L10n.php:508 src/Model/Event.php:426 msgid "Apr" msgstr "Apr" -#: src/Core/L10n.php:522 src/Model/Event.php:442 +#: src/Core/L10n.php:508 src/Model/Event.php:428 msgid "Jun" msgstr "Jun" -#: src/Core/L10n.php:522 src/Model/Event.php:443 +#: src/Core/L10n.php:508 src/Model/Event.php:429 msgid "Jul" msgstr "Jul" -#: src/Core/L10n.php:522 src/Model/Event.php:444 +#: src/Core/L10n.php:508 src/Model/Event.php:430 msgid "Aug" msgstr "Aug" -#: src/Core/L10n.php:522 +#: src/Core/L10n.php:508 msgid "Sep" msgstr "Sep" -#: src/Core/L10n.php:522 src/Model/Event.php:446 +#: src/Core/L10n.php:508 src/Model/Event.php:432 msgid "Oct" msgstr "Okt" -#: src/Core/L10n.php:522 src/Model/Event.php:447 +#: src/Core/L10n.php:508 src/Model/Event.php:433 msgid "Nov" msgstr "Nov" -#: src/Core/L10n.php:522 src/Model/Event.php:448 +#: src/Core/L10n.php:508 src/Model/Event.php:434 msgid "Dec" msgstr "Dec" -#: src/Core/Logger/Util/LoggerSettingsCheck.php:60 +#: src/Core/Logger/Util/LoggerSettingsCheck.php:46 #, php-format msgid "The logfile '%s' is not usable. No logging possible (error: '%s')" msgstr "" -#: src/Core/Logger/Util/LoggerSettingsCheck.php:85 +#: src/Core/Logger/Util/LoggerSettingsCheck.php:71 #, php-format msgid "" "The debug logfile '%s' is not usable. No logging possible (error: '%s')" msgstr "" -#: src/Core/Renderer.php:92 src/Core/Renderer.php:121 -#: src/Core/Renderer.php:150 src/Core/Renderer.php:184 -#: src/Render/FriendicaSmartyEngine.php:60 +#: src/Core/Renderer.php:78 src/Core/Renderer.php:107 +#: src/Core/Renderer.php:136 src/Core/Renderer.php:170 +#: src/Render/FriendicaSmartyEngine.php:46 msgid "" "Friendica can't display this page at the moment, please contact the " "administrator." msgstr "" -#: src/Core/Renderer.php:146 +#: src/Core/Renderer.php:132 msgid "template engine cannot be registered without a name." msgstr "" -#: src/Core/Renderer.php:180 +#: src/Core/Renderer.php:166 msgid "template engine is not registered!" msgstr "" -#: src/Core/Storage/Type/FilesystemConfig.php:78 +#: src/Core/Storage/Type/FilesystemConfig.php:64 msgid "Storage base path" msgstr "" -#: src/Core/Storage/Type/FilesystemConfig.php:80 +#: src/Core/Storage/Type/FilesystemConfig.php:66 msgid "" "Folder where uploaded files are saved. For maximum security, This should be " "a path outside web server folder tree" msgstr "" -#: src/Core/Storage/Type/FilesystemConfig.php:93 +#: src/Core/Storage/Type/FilesystemConfig.php:79 msgid "Enter a valid existing folder" msgstr "Ange en giltig befintlig mapp" -#: src/Core/Update.php:80 +#: src/Core/Update.php:66 #, php-format msgid "" "Updates from version %s are not supported. Please update at least to version" " 2021.01 and wait until the postupdate finished version 1383." msgstr "" -#: src/Core/Update.php:91 +#: src/Core/Update.php:77 #, php-format msgid "" "Updates from postupdate version %s are not supported. Please update at least" " to version 2021.01 and wait until the postupdate finished version 1383." msgstr "" -#: src/Core/Update.php:183 +#: src/Core/Update.php:169 #, php-format msgid "%s: executing pre update %d" msgstr "" -#: src/Core/Update.php:225 +#: src/Core/Update.php:211 #, php-format msgid "%s: executing post update %d" msgstr "" -#: src/Core/Update.php:299 +#: src/Core/Update.php:285 #, php-format msgid "Update %s failed. See error logs." msgstr "Uppdateringen %s misslyckades. Se fler loggar." -#: src/Core/Update.php:339 +#: src/Core/Update.php:325 #, php-format msgid "" "\n" @@ -3170,49 +3176,49 @@ msgid "" "\t\t\t\tfriendica developer if you can not help me on your own. My database might be invalid." msgstr "" -#: src/Core/Update.php:345 +#: src/Core/Update.php:331 #, php-format msgid "The error message is\\n[pre]%s[/pre]" msgstr "Felmeddelandet är \\n[pre]%s[/pre]" -#: src/Core/Update.php:349 src/Core/Update.php:377 +#: src/Core/Update.php:335 src/Core/Update.php:363 msgid "[Friendica Notify] Database update" msgstr "[Friendica-avisering] Uppdatering av databas" -#: src/Core/Update.php:371 +#: src/Core/Update.php:357 #, php-format msgid "" "\n" "\t\t\t\tThe friendica database was successfully updated from %s to %s." msgstr "" -#: src/Database/DBStructure.php:57 +#: src/Database/DBStructure.php:43 #, php-format msgid "The database version had been set to %s." msgstr "Databas-versionen har ställts in till %s." -#: src/Database/DBStructure.php:82 +#: src/Database/DBStructure.php:68 #, php-format msgid "" "The post update is at version %d, it has to be at %d to safely drop the " "tables." msgstr "" -#: src/Database/DBStructure.php:95 +#: src/Database/DBStructure.php:81 msgid "No unused tables found." msgstr "" -#: src/Database/DBStructure.php:100 +#: src/Database/DBStructure.php:86 msgid "" "These tables are not used for friendica and will be deleted when you execute" " \"dbstructure drop -e\":" msgstr "" -#: src/Database/DBStructure.php:137 +#: src/Database/DBStructure.php:123 msgid "There are no tables on MyISAM or InnoDB with the Antelope file format." msgstr "" -#: src/Database/DBStructure.php:161 +#: src/Database/DBStructure.php:147 #, php-format msgid "" "\n" @@ -3220,629 +3226,625 @@ msgid "" "%s\n" msgstr "" -#: src/Database/DBStructure.php:164 +#: src/Database/DBStructure.php:150 msgid "Errors encountered performing database changes: " msgstr "" -#: src/Database/DBStructure.php:232 +#: src/Database/DBStructure.php:218 msgid "Another database update is currently running." msgstr "" -#: src/Database/DBStructure.php:236 +#: src/Database/DBStructure.php:222 #, php-format msgid "%s: Database update" msgstr "%s: Uppdatering av databas" -#: src/Database/DBStructure.php:493 +#: src/Database/DBStructure.php:479 #, php-format msgid "%s: updating %s table." msgstr "" -#: src/Factory/Api/Mastodon/Error.php:42 +#: src/Factory/Api/Mastodon/Error.php:28 msgid "Record not found" msgstr "Posten hittades inte" -#: src/Factory/Api/Mastodon/Error.php:49 +#: src/Factory/Api/Mastodon/Error.php:35 msgid "Unprocessable Entity" msgstr "" -#: src/Factory/Api/Mastodon/Error.php:56 +#: src/Factory/Api/Mastodon/Error.php:42 msgid "Unauthorized" msgstr "Ej autentiserad" -#: src/Factory/Api/Mastodon/Error.php:62 +#: src/Factory/Api/Mastodon/Error.php:48 msgid "" "Token is not authorized with a valid user or is missing a required scope" msgstr "" -#: src/Factory/Api/Mastodon/Error.php:69 +#: src/Factory/Api/Mastodon/Error.php:55 msgid "Internal Server Error" msgstr "Internt server-fel" -#: src/LegacyModule.php:63 +#: src/LegacyModule.php:49 #, php-format msgid "Legacy module file not found: %s" msgstr "" -#: src/Model/Circle.php:106 +#: src/Model/Circle.php:92 msgid "" "A deleted circle with this name was revived. Existing item permissions " "may apply to this circle and any future members. If this is" " not what you intended, please create another circle with a different name." msgstr "" -#: src/Model/Circle.php:544 +#: src/Model/Circle.php:530 msgid "Everybody" msgstr "Alla" -#: src/Model/Circle.php:563 +#: src/Model/Circle.php:549 msgid "edit" msgstr "redigera" -#: src/Model/Circle.php:600 +#: src/Model/Circle.php:586 msgid "add" msgstr "lägg till" -#: src/Model/Circle.php:605 +#: src/Model/Circle.php:591 msgid "Edit circle" msgstr "" -#: src/Model/Circle.php:606 src/Module/Circle.php:195 +#: src/Model/Circle.php:592 src/Module/Circle.php:181 msgid "Contacts not in any circle" msgstr "" -#: src/Model/Circle.php:608 +#: src/Model/Circle.php:594 msgid "Create a new circle" msgstr "" -#: src/Model/Circle.php:609 src/Module/Circle.php:180 -#: src/Module/Circle.php:203 src/Module/Circle.php:278 +#: src/Model/Circle.php:595 src/Module/Circle.php:166 +#: src/Module/Circle.php:189 src/Module/Circle.php:264 msgid "Circle Name: " msgstr "" -#: src/Model/Circle.php:610 +#: src/Model/Circle.php:596 msgid "Edit circles" msgstr "" -#: src/Model/Contact.php:1247 src/Module/Moderation/Users/Pending.php:102 -#: src/Module/Notifications/Introductions.php:132 -#: src/Module/Notifications/Introductions.php:204 +#: src/Model/Contact.php:1263 src/Module/Moderation/Users/Pending.php:88 +#: src/Module/Notifications/Introductions.php:124 +#: src/Module/Notifications/Introductions.php:196 msgid "Approve" msgstr "Godkänn" -#: src/Model/Contact.php:1725 +#: src/Model/Contact.php:1743 msgid "Organisation" msgstr "Organisation" -#: src/Model/Contact.php:1733 +#: src/Model/Contact.php:1751 msgid "Group" msgstr "" -#: src/Model/Contact.php:1737 src/Module/Moderation/BaseUsers.php:131 +#: src/Model/Contact.php:1755 src/Module/Moderation/BaseUsers.php:120 msgid "Relay" msgstr "Fördröj" -#: src/Model/Contact.php:3046 +#: src/Model/Contact.php:3070 msgid "Disallowed profile URL." msgstr "Otillåten profil-URL." -#: src/Model/Contact.php:3051 src/Module/Friendica.php:100 +#: src/Model/Contact.php:3075 src/Module/Friendica.php:86 msgid "Blocked domain" msgstr "Blockerad domän" -#: src/Model/Contact.php:3056 +#: src/Model/Contact.php:3080 msgid "Connect URL missing." msgstr "" -#: src/Model/Contact.php:3065 +#: src/Model/Contact.php:3089 msgid "" "The contact could not be added. Please check the relevant network " "credentials in your Settings -> Social Networks page." msgstr "" -#: src/Model/Contact.php:3083 +#: src/Model/Contact.php:3107 #, php-format msgid "Expected network %s does not match actual network %s" msgstr "" -#: src/Model/Contact.php:3100 +#: src/Model/Contact.php:3124 msgid "This seems to be a relay account. They can't be followed by users." msgstr "" -#: src/Model/Contact.php:3107 +#: src/Model/Contact.php:3131 msgid "The profile address specified does not provide adequate information." msgstr "Angiven profiladress ger inte tillräcklig information." -#: src/Model/Contact.php:3109 +#: src/Model/Contact.php:3133 msgid "No compatible communication protocols or feeds were discovered." msgstr "Inga kompatibla kommunikationsprotokoll eller flöden hittades." -#: src/Model/Contact.php:3112 +#: src/Model/Contact.php:3136 msgid "An author or name was not found." msgstr "En författare eller namnet hittades inte." -#: src/Model/Contact.php:3115 +#: src/Model/Contact.php:3139 msgid "No browser URL could be matched to this address." msgstr "" -#: src/Model/Contact.php:3118 +#: src/Model/Contact.php:3142 msgid "" "Unable to match @-style Identity Address with a known protocol or email " "contact." msgstr "" -#: src/Model/Contact.php:3119 +#: src/Model/Contact.php:3143 msgid "Use mailto: in front of address to force email check." msgstr "" -#: src/Model/Contact.php:3125 -msgid "" -"The profile address specified belongs to a network which has been disabled " -"on this site." -msgstr "" - -#: src/Model/Contact.php:3130 +#: src/Model/Contact.php:3149 msgid "" "Limited profile. This person will be unable to receive direct/personal " "notifications from you." msgstr "Begränsad profil. Den här personen kommer inte att kunna ta emot personliga meddelanden från dig." -#: src/Model/Contact.php:3196 +#: src/Model/Contact.php:3208 msgid "Unable to retrieve contact information." msgstr "Det gick inte att komma åt kontaktinformationen." -#: src/Model/Event.php:54 +#: src/Model/Event.php:40 msgid "l F d, Y \\@ g:i A \\G\\M\\TP (e)" msgstr "" -#: src/Model/Event.php:75 src/Model/Event.php:92 src/Model/Event.php:469 -#: src/Model/Event.php:942 +#: src/Model/Event.php:61 src/Model/Event.php:78 src/Model/Event.php:455 +#: src/Model/Event.php:928 msgid "Starts:" msgstr "Börjar:" -#: src/Model/Event.php:78 src/Model/Event.php:98 src/Model/Event.php:470 -#: src/Model/Event.php:946 +#: src/Model/Event.php:64 src/Model/Event.php:84 src/Model/Event.php:456 +#: src/Model/Event.php:932 msgid "Finishes:" msgstr "Slutar:" -#: src/Model/Event.php:419 +#: src/Model/Event.php:405 msgid "all-day" msgstr "hela dagen" -#: src/Model/Event.php:445 +#: src/Model/Event.php:431 msgid "Sept" msgstr "Sept" -#: src/Model/Event.php:462 src/Module/Calendar/Show.php:128 -#: src/Util/Temporal.php:343 +#: src/Model/Event.php:448 src/Module/Calendar/Show.php:114 +#: src/Util/Temporal.php:329 msgid "today" msgstr "idag" -#: src/Model/Event.php:463 src/Module/Calendar/Show.php:129 -#: src/Module/Settings/Display.php:294 src/Util/Temporal.php:353 +#: src/Model/Event.php:449 src/Module/Calendar/Show.php:115 +#: src/Module/Settings/Display.php:280 src/Util/Temporal.php:339 msgid "month" msgstr "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/Model/Event.php:450 src/Module/Calendar/Show.php:116 +#: src/Module/Settings/Display.php:281 src/Util/Temporal.php:340 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/Model/Event.php:451 src/Module/Calendar/Show.php:117 +#: src/Module/Settings/Display.php:282 src/Util/Temporal.php:341 msgid "day" msgstr "dag" -#: src/Model/Event.php:467 +#: src/Model/Event.php:453 msgid "No events to display" msgstr "Inga evenemang att visa" -#: src/Model/Event.php:516 src/Module/DFRN/Poll.php:47 src/Module/Feed.php:68 -#: src/Module/Update/Profile.php:56 +#: src/Model/Event.php:502 src/Module/Feed.php:56 +#: src/Module/Update/Profile.php:42 msgid "Access to this profile has been restricted." msgstr "Åtkomst till den här profilen har begränsats." -#: src/Model/Event.php:558 src/Module/Calendar/Event/Show.php:67 +#: src/Model/Event.php:544 src/Module/Calendar/Event/Show.php:53 msgid "Event not found." msgstr "" -#: src/Model/Event.php:637 +#: src/Model/Event.php:623 msgid "l, F j" msgstr "l, F j" -#: src/Model/Event.php:664 +#: src/Model/Event.php:650 msgid "Edit event" msgstr "Redigera evenemang" -#: src/Model/Event.php:665 +#: src/Model/Event.php:651 msgid "Duplicate event" msgstr "Fördubbla evenemanget" -#: src/Model/Event.php:666 +#: src/Model/Event.php:652 msgid "Delete event" msgstr "Ta bort evenemanget" -#: src/Model/Event.php:896 src/Module/Debug/Localtime.php:38 +#: src/Model/Event.php:882 src/Module/Debug/Localtime.php:24 msgid "l F d, Y \\@ g:i A" msgstr "" -#: src/Model/Event.php:897 +#: src/Model/Event.php:883 msgid "D g:i A" msgstr "" -#: src/Model/Event.php:898 +#: src/Model/Event.php:884 msgid "g:i A" msgstr "" -#: src/Model/Event.php:961 src/Model/Event.php:963 +#: src/Model/Event.php:947 src/Model/Event.php:949 msgid "Show map" msgstr "Visa karta" -#: src/Model/Event.php:962 +#: src/Model/Event.php:948 msgid "Hide map" msgstr "Göm karta" -#: src/Model/Event.php:1055 +#: src/Model/Event.php:1041 #, php-format msgid "%s's birthday" msgstr "%s's födelsedag" -#: src/Model/Event.php:1056 +#: src/Model/Event.php:1042 #, php-format msgid "Happy Birthday %s" msgstr "Grattis på födelsedagen %s" -#: src/Model/Item.php:2307 +#: src/Model/Item.php:2322 #, php-format msgid "%s (%s - %s): %s" msgstr "" -#: src/Model/Item.php:2309 +#: src/Model/Item.php:2324 #, php-format msgid "%s (%s): %s" msgstr "" -#: src/Model/Item.php:2312 +#: src/Model/Item.php:2327 #, php-format -msgid "Detected languages in this post:\\n%s" -msgstr "Upptäckte språken i det här inlägget:\\n%s" +msgid "" +"Detected languages in this post:\n" +"%s" +msgstr "" -#: src/Model/Item.php:3260 +#: src/Model/Item.php:3276 msgid "activity" msgstr "aktivitet" -#: src/Model/Item.php:3262 +#: src/Model/Item.php:3278 msgid "comment" msgstr "kommentar" -#: src/Model/Item.php:3265 src/Module/Post/Tag/Add.php:123 +#: src/Model/Item.php:3281 src/Module/Post/Tag/Add.php:109 msgid "post" msgstr "inlägg" -#: src/Model/Item.php:3435 +#: src/Model/Item.php:3451 #, php-format msgid "%s is blocked" msgstr "" -#: src/Model/Item.php:3437 +#: src/Model/Item.php:3453 #, php-format msgid "%s is ignored" msgstr "" -#: src/Model/Item.php:3439 +#: src/Model/Item.php:3455 #, php-format msgid "Content from %s is collapsed" msgstr "" -#: src/Model/Item.php:3443 +#: src/Model/Item.php:3459 msgid "Sensitive content" msgstr "" -#: src/Model/Item.php:3912 +#: src/Model/Item.php:3928 msgid "bytes" msgstr "bytes" -#: src/Model/Item.php:3943 +#: src/Model/Item.php:3959 #, 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:3945 +#: src/Model/Item.php:3961 #, php-format msgid "%2$s (%1$d vote)" msgid_plural "%2$s (%1$d votes)" msgstr[0] "" msgstr[1] "" -#: src/Model/Item.php:3950 +#: src/Model/Item.php:3966 #, php-format msgid "%d voter. Poll end: %s" msgid_plural "%d voters. Poll end: %s" msgstr[0] "" msgstr[1] "" -#: src/Model/Item.php:3952 +#: src/Model/Item.php:3968 #, php-format msgid "%d voter." msgid_plural "%d voters." msgstr[0] "" msgstr[1] "" -#: src/Model/Item.php:3954 +#: src/Model/Item.php:3970 #, php-format msgid "Poll end: %s" msgstr "Omröstningen slut om: %s" -#: src/Model/Item.php:3995 src/Model/Item.php:3996 +#: src/Model/Item.php:4011 src/Model/Item.php:4012 msgid "View on separate page" msgstr "Visa på en separat sida" -#: src/Model/Mail.php:135 +#: src/Model/Mail.php:121 msgid "[no subject]" msgstr "[ingen rubrik]" -#: src/Model/Photo.php:1198 src/Module/Media/Photo/Upload.php:168 +#: src/Model/Photo.php:1194 src/Module/Media/Photo/Upload.php:154 msgid "Wall Photos" msgstr "Loggbilder" -#: src/Model/Profile.php:364 src/Module/Profile/Profile.php:283 -#: src/Module/Profile/Profile.php:285 +#: src/Model/Profile.php:343 src/Module/Profile/Profile.php:271 +#: src/Module/Profile/Profile.php:273 msgid "Edit profile" msgstr "Redigera profil" -#: src/Model/Profile.php:366 +#: src/Model/Profile.php:345 msgid "Change profile photo" msgstr "Byt profilbild" -#: src/Model/Profile.php:379 src/Module/Directory.php:152 -#: src/Module/Profile/Profile.php:209 +#: src/Model/Profile.php:358 src/Module/Directory.php:139 +#: src/Module/Profile/Profile.php:197 msgid "Homepage:" msgstr "Hemsida:" -#: src/Model/Profile.php:380 src/Module/Contact/Profile.php:418 -#: src/Module/Notifications/Introductions.php:189 +#: src/Model/Profile.php:359 src/Module/Contact/Profile.php:418 +#: src/Module/Notifications/Introductions.php:181 msgid "About:" msgstr "Om:" -#: src/Model/Profile.php:481 +#: src/Model/Profile.php:460 msgid "Atom feed" msgstr "Atom-flöde" -#: src/Model/Profile.php:488 +#: src/Model/Profile.php:467 msgid "This website has been verified to belong to the same person." msgstr "" -#: src/Model/Profile.php:539 +#: src/Model/Profile.php:518 msgid "F d" msgstr "F d" -#: src/Model/Profile.php:603 src/Model/Profile.php:680 +#: src/Model/Profile.php:582 src/Model/Profile.php:663 msgid "[today]" msgstr "[idag]" -#: src/Model/Profile.php:612 +#: src/Model/Profile.php:591 msgid "Birthday Reminders" msgstr "Födelsedagspåminnelser" -#: src/Model/Profile.php:613 +#: src/Model/Profile.php:592 msgid "Birthdays this week:" msgstr "Födelsedagar denna vecka:" -#: src/Model/Profile.php:629 +#: src/Model/Profile.php:608 msgid "g A l F d" msgstr "g A l F d" -#: src/Model/Profile.php:667 +#: src/Model/Profile.php:650 msgid "[No description]" msgstr "[Ingen beskrivning]" -#: src/Model/Profile.php:693 +#: src/Model/Profile.php:676 msgid "Event Reminders" msgstr "Evenemangspåminnare" -#: src/Model/Profile.php:694 +#: src/Model/Profile.php:677 msgid "Upcoming events the next 7 days:" msgstr "Evenemang som kommer de kommande 7 dagarna:" -#: src/Model/Profile.php:882 -#, php-format -msgid "OpenWebAuth: %1$s welcomes %2$s" -msgstr "OpenWebAuth: %1$s välkomnar %2$s" - -#: src/Model/Profile.php:1022 +#: src/Model/Profile.php:789 msgid "Hometown:" msgstr "Hemstad:" -#: src/Model/Profile.php:1023 +#: src/Model/Profile.php:790 msgid "Marital Status:" msgstr "Civilstånd:" -#: src/Model/Profile.php:1024 +#: src/Model/Profile.php:791 msgid "With:" msgstr "Med:" -#: src/Model/Profile.php:1025 +#: src/Model/Profile.php:792 msgid "Since:" msgstr "Sedan:" -#: src/Model/Profile.php:1026 +#: src/Model/Profile.php:793 msgid "Sexual Preference:" msgstr "Sexualitet" -#: src/Model/Profile.php:1027 +#: src/Model/Profile.php:794 msgid "Political Views:" msgstr "Politisk åskådning:" -#: src/Model/Profile.php:1028 +#: src/Model/Profile.php:795 msgid "Religious Views:" msgstr "Religion:" -#: src/Model/Profile.php:1029 +#: src/Model/Profile.php:796 msgid "Likes:" msgstr "Gillar:" -#: src/Model/Profile.php:1030 +#: src/Model/Profile.php:797 msgid "Dislikes:" msgstr "Ogillar:" -#: src/Model/Profile.php:1031 +#: src/Model/Profile.php:798 msgid "Title/Description:" msgstr "Titel/Beskrivning:" -#: src/Model/Profile.php:1032 src/Module/Admin/Summary.php:197 -#: src/Module/Moderation/Report/Create.php:280 -#: src/Module/Moderation/Summary.php:76 +#: src/Model/Profile.php:799 src/Module/Admin/Summary.php:183 +#: src/Module/Moderation/Report/Create.php:266 +#: src/Module/Moderation/Summary.php:62 msgid "Summary" msgstr "Sammanfattning" -#: src/Model/Profile.php:1033 +#: src/Model/Profile.php:800 msgid "Musical interests" msgstr "Musik" -#: src/Model/Profile.php:1034 +#: src/Model/Profile.php:801 msgid "Books, literature" msgstr "Böcker, litteratur" -#: src/Model/Profile.php:1035 +#: src/Model/Profile.php:802 msgid "Television" msgstr "TV" -#: src/Model/Profile.php:1036 +#: src/Model/Profile.php:803 msgid "Film/dance/culture/entertainment" msgstr "Film/Dans/Kultur/Nöje" -#: src/Model/Profile.php:1037 +#: src/Model/Profile.php:804 msgid "Hobbies/Interests" msgstr "Hobbys/Intressen" -#: src/Model/Profile.php:1038 +#: src/Model/Profile.php:805 msgid "Love/romance" msgstr "Kärlek/Romantik" -#: src/Model/Profile.php:1039 +#: src/Model/Profile.php:806 msgid "Work/employment" msgstr "Arbete" -#: src/Model/Profile.php:1040 +#: src/Model/Profile.php:807 msgid "School/education" msgstr "Skola/Utbildning" -#: src/Model/Profile.php:1041 +#: src/Model/Profile.php:808 msgid "Contact information and Social Networks" msgstr "Kontaktuppgifter och sociala nätverk" -#: src/Model/User.php:233 src/Model/User.php:1303 +#: src/Model/Profile.php:856 +#, php-format +msgid "Responsible account: %s" +msgstr "" + +#: src/Model/User.php:217 src/Model/User.php:1310 msgid "SERIOUS ERROR: Generation of security keys failed." msgstr "SERIOUS ERROR: Generation of security keys failed." -#: src/Model/User.php:733 src/Model/User.php:766 +#: src/Model/User.php:740 src/Model/User.php:773 msgid "Login failed" msgstr "Inloggningen misslyckades" -#: src/Model/User.php:798 +#: src/Model/User.php:805 msgid "Not enough information to authenticate" msgstr "Inte tillräckligt med information för att autentisera" -#: src/Model/User.php:923 +#: src/Model/User.php:930 msgid "Password can't be empty" msgstr "Lösenordet kan inte vara tomt" -#: src/Model/User.php:965 +#: src/Model/User.php:972 msgid "Empty passwords are not allowed." msgstr "Tomma lösenord är inte tillåtna." -#: src/Model/User.php:969 +#: src/Model/User.php:976 msgid "" "The new password has been exposed in a public data dump, please choose " "another." msgstr "" -#: src/Model/User.php:973 +#: src/Model/User.php:980 msgid "The password length is limited to 72 characters." msgstr "" -#: src/Model/User.php:977 +#: src/Model/User.php:984 msgid "The password can't contain white spaces nor accentuated letters" msgstr "" -#: src/Model/User.php:1186 +#: src/Model/User.php:1193 msgid "Passwords do not match. Password unchanged." msgstr "Lösenorden skiljer sig åt. Lösenordet ändras inte." -#: src/Model/User.php:1193 +#: src/Model/User.php:1200 msgid "An invitation is required." msgstr "En inbjudning krävs." -#: src/Model/User.php:1197 +#: src/Model/User.php:1204 msgid "Invitation could not be verified." msgstr "Inbjudningen kunde inte bekräftas." -#: src/Model/User.php:1205 +#: src/Model/User.php:1212 msgid "Invalid OpenID url" msgstr "Ogiltig OpenID-URL" -#: src/Model/User.php:1218 src/Security/Authentication.php:230 +#: src/Model/User.php:1225 src/Security/Authentication.php:214 msgid "" "We encountered a problem while logging in with the OpenID you provided. " "Please check the correct spelling of the ID." msgstr "" -#: src/Model/User.php:1218 src/Security/Authentication.php:230 +#: src/Model/User.php:1225 src/Security/Authentication.php:214 msgid "The error message was:" msgstr "Felmeddelandet var:" -#: src/Model/User.php:1224 +#: src/Model/User.php:1231 msgid "Please enter the required information." msgstr "Fyll i alla obligatoriska fält." -#: src/Model/User.php:1238 +#: src/Model/User.php:1245 #, 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:1245 +#: src/Model/User.php:1252 #, php-format msgid "Username should be at least %s character." msgid_plural "Username should be at least %s characters." msgstr[0] "Användarnamnet bör ha åtminstone %s tecken." msgstr[1] "Användarnamn borde ha åtminstone %s tecken." -#: src/Model/User.php:1249 +#: src/Model/User.php:1256 #, 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:1257 +#: src/Model/User.php:1264 msgid "That doesn't appear to be your full (First Last) name." msgstr "Du verkar inte ha angett ditt fullständiga namn." -#: src/Model/User.php:1262 +#: src/Model/User.php:1269 msgid "Your email domain is not among those allowed on this site." msgstr "Din e-postdomän är inte tillåten på den här webbplatsen." -#: src/Model/User.php:1266 +#: src/Model/User.php:1273 msgid "Not a valid email address." msgstr "Ogiltig e-postadress." -#: src/Model/User.php:1269 +#: src/Model/User.php:1276 msgid "The nickname was blocked from registration by the nodes admin." msgstr "" -#: src/Model/User.php:1273 src/Model/User.php:1279 +#: src/Model/User.php:1280 src/Model/User.php:1286 msgid "Cannot use that email." msgstr "Otillåten e-postadress." -#: src/Model/User.php:1285 +#: src/Model/User.php:1292 msgid "Your nickname can only contain a-z, 0-9 and _." msgstr "" -#: src/Model/User.php:1293 src/Model/User.php:1350 +#: src/Model/User.php:1300 src/Model/User.php:1350 msgid "Nickname is already registered. Please choose another." msgstr "Användarnamnet är upptaget. Välj ett annat." @@ -3867,11 +3869,11 @@ msgid "" "An error occurred creating your default contact circle. Please try again." msgstr "" -#: src/Model/User.php:1422 +#: src/Model/User.php:1428 msgid "Profile Photos" msgstr "Profilbilder" -#: src/Model/User.php:1604 +#: src/Model/User.php:1616 #, php-format msgid "" "\n" @@ -3879,7 +3881,7 @@ msgid "" "\t\t\tthe administrator of %2$s has set up an account for you." msgstr "" -#: src/Model/User.php:1607 +#: src/Model/User.php:1619 #, php-format msgid "" "\n" @@ -3910,12 +3912,12 @@ msgid "" "\t\tThank you and welcome to %4$s." msgstr "" -#: src/Model/User.php:1639 src/Model/User.php:1745 +#: src/Model/User.php:1651 src/Model/User.php:1757 #, php-format msgid "Registration details for %s" msgstr "Registreringsdetaljer för 1%s" -#: src/Model/User.php:1659 +#: src/Model/User.php:1671 #, php-format msgid "" "\n" @@ -3930,12 +3932,12 @@ msgid "" "\t\t" msgstr "" -#: src/Model/User.php:1678 +#: src/Model/User.php:1690 #, php-format msgid "Registration at %s" msgstr "" -#: src/Model/User.php:1702 +#: src/Model/User.php:1714 #, php-format msgid "" "\n" @@ -3944,7 +3946,7 @@ msgid "" "\t\t\t" msgstr "" -#: src/Model/User.php:1710 +#: src/Model/User.php:1722 #, php-format msgid "" "\n" @@ -3975,93 +3977,91 @@ msgid "" "\t\t\tThank you and welcome to %2$s." msgstr "" -#: src/Model/User.php:1772 +#: src/Model/User.php:1784 msgid "" "User with delegates can't be removed, please remove delegate users first" msgstr "" -#: src/Module/Admin/Addons/Details.php:65 +#: src/Module/Admin/Addons/Details.php:51 msgid "Addon not found." msgstr "Insticksprogrammet hittades inte." -#: src/Module/Admin/Addons/Details.php:76 src/Module/Admin/Addons/Index.php:49 +#: src/Module/Admin/Addons/Details.php:62 src/Module/Admin/Addons/Index.php:41 #, php-format msgid "Addon %s disabled." msgstr "Insticksprogrammet %s är inaktiverat." -#: src/Module/Admin/Addons/Details.php:79 src/Module/Admin/Addons/Index.php:51 +#: src/Module/Admin/Addons/Details.php:65 src/Module/Admin/Addons/Index.php:43 #, php-format msgid "Addon %s enabled." msgstr "Insticksprogrammet %s är aktiverat." -#: src/Module/Admin/Addons/Details.php:88 -#: src/Module/Admin/Themes/Details.php:46 +#: src/Module/Admin/Addons/Details.php:74 +#: src/Module/Admin/Themes/Details.php:38 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/Addons/Details.php:77 +#: src/Module/Admin/Themes/Details.php:41 src/Module/Settings/Display.php:326 msgid "Enable" msgstr "Aktivera" -#: src/Module/Admin/Addons/Details.php:111 -#: src/Module/Admin/Addons/Index.php:67 src/Module/Admin/Federation.php:220 -#: src/Module/Admin/Logs/Settings.php:88 src/Module/Admin/Logs/View.php:85 -#: src/Module/Admin/Queue.php:73 src/Module/Admin/Site.php:455 -#: 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 -#: src/Module/Moderation/Users/Pending.php:96 +#: src/Module/Admin/Addons/Details.php:97 src/Module/Admin/Addons/Index.php:59 +#: src/Module/Admin/Federation.php:206 src/Module/Admin/Logs/Settings.php:74 +#: src/Module/Admin/Logs/View.php:71 src/Module/Admin/Queue.php:59 +#: src/Module/Admin/Site.php:447 src/Module/Admin/Storage.php:124 +#: src/Module/Admin/Summary.php:182 src/Module/Admin/Themes/Details.php:82 +#: src/Module/Admin/Themes/Index.php:103 src/Module/Admin/Tos.php:63 +#: src/Module/Moderation/Users/Create.php:47 +#: src/Module/Moderation/Users/Pending.php:82 msgid "Administration" msgstr "Administration" -#: src/Module/Admin/Addons/Details.php:112 -#: src/Module/Admin/Addons/Index.php:68 src/Module/BaseAdmin.php:92 -#: src/Module/BaseSettings.php:139 +#: src/Module/Admin/Addons/Details.php:98 src/Module/Admin/Addons/Index.php:60 +#: src/Module/BaseAdmin.php:78 src/Module/BaseSettings.php:125 msgid "Addons" msgstr "Insticksprogram" -#: src/Module/Admin/Addons/Details.php:113 -#: src/Module/Admin/Themes/Details.php:92 +#: src/Module/Admin/Addons/Details.php:99 +#: src/Module/Admin/Themes/Details.php:84 msgid "Toggle" msgstr "Växla" -#: src/Module/Admin/Addons/Details.php:120 -#: src/Module/Admin/Themes/Details.php:100 +#: src/Module/Admin/Addons/Details.php:106 +#: src/Module/Admin/Themes/Details.php:92 msgid "Author: " msgstr "Författare:" -#: src/Module/Admin/Addons/Details.php:121 -#: src/Module/Admin/Themes/Details.php:101 +#: src/Module/Admin/Addons/Details.php:107 +#: src/Module/Admin/Themes/Details.php:93 msgid "Maintainer: " msgstr "Underhållare:" -#: src/Module/Admin/Addons/Index.php:42 +#: src/Module/Admin/Addons/Index.php:34 msgid "Addons reloaded" msgstr "" -#: src/Module/Admin/Addons/Index.php:53 +#: src/Module/Admin/Addons/Index.php:45 #, php-format msgid "Addon %s failed to install." msgstr "" -#: src/Module/Admin/Addons/Index.php:69 src/Module/Admin/Features.php:83 -#: src/Module/Admin/Logs/Settings.php:90 src/Module/Admin/Site.php:458 -#: src/Module/Admin/Themes/Index.php:113 src/Module/Admin/Tos.php:86 -#: src/Module/Settings/Account.php:558 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/Features.php:75 +#: src/Module/Admin/Addons/Index.php:61 src/Module/Admin/Features.php:69 +#: src/Module/Admin/Logs/Settings.php:76 src/Module/Admin/Site.php:450 +#: src/Module/Admin/Themes/Index.php:105 src/Module/Admin/Tos.php:72 +#: src/Module/Settings/Account.php:549 src/Module/Settings/Addons.php:64 +#: src/Module/Settings/Connectors.php:149 +#: src/Module/Settings/Connectors.php:235 +#: src/Module/Settings/Delegation.php:179 src/Module/Settings/Display.php:295 +#: src/Module/Settings/Features.php:61 msgid "Save Settings" msgstr "Spara inställningar" -#: src/Module/Admin/Addons/Index.php:70 +#: src/Module/Admin/Addons/Index.php:62 msgid "Reload active addons" msgstr "" -#: src/Module/Admin/Addons/Index.php:74 +#: src/Module/Admin/Addons/Index.php:66 #, php-format msgid "" "There are currently no addons available on your node. You can find the " @@ -4069,158 +4069,158 @@ msgid "" " the open addon registry at %2$s" msgstr "" -#: src/Module/Admin/DBSync.php:51 +#: src/Module/Admin/DBSync.php:37 msgid "Update has been marked successful" msgstr "Uppdateringen har blivit markerad som lyckad" -#: src/Module/Admin/DBSync.php:59 +#: src/Module/Admin/DBSync.php:45 #, php-format msgid "Database structure update %s was successfully applied." msgstr "" -#: src/Module/Admin/DBSync.php:61 +#: src/Module/Admin/DBSync.php:47 #, php-format msgid "Executing of database structure update %s failed with error: %s" msgstr "" -#: src/Module/Admin/DBSync.php:76 +#: src/Module/Admin/DBSync.php:62 #, php-format msgid "Executing %s failed with error: %s" msgstr "" -#: src/Module/Admin/DBSync.php:78 +#: src/Module/Admin/DBSync.php:64 #, php-format msgid "Update %s was successfully applied." msgstr "Verkställningen av uppdateringen av %s lyckades." -#: src/Module/Admin/DBSync.php:81 +#: src/Module/Admin/DBSync.php:67 #, php-format msgid "Update %s did not return a status. Unknown if it succeeded." msgstr "" -#: src/Module/Admin/DBSync.php:84 +#: src/Module/Admin/DBSync.php:70 #, php-format msgid "There was no additional update function %s that needed to be called." msgstr "" -#: src/Module/Admin/DBSync.php:105 +#: src/Module/Admin/DBSync.php:91 msgid "No failed updates." msgstr "Inga misslyckade uppdateringar." -#: src/Module/Admin/DBSync.php:106 +#: src/Module/Admin/DBSync.php:92 msgid "Check database structure" msgstr "Kolla databas-strukturen" -#: src/Module/Admin/DBSync.php:110 +#: src/Module/Admin/DBSync.php:96 msgid "Failed Updates" msgstr "Misslyckade uppdatering" -#: src/Module/Admin/DBSync.php:111 +#: src/Module/Admin/DBSync.php:97 msgid "" "This does not include updates prior to 1139, which did not return a status." msgstr "" -#: src/Module/Admin/DBSync.php:112 +#: src/Module/Admin/DBSync.php:98 msgid "Mark success (if update was manually applied)" msgstr "" -#: src/Module/Admin/DBSync.php:113 +#: src/Module/Admin/DBSync.php:99 msgid "Attempt to execute this update step automatically" msgstr "" -#: src/Module/Admin/Features.php:67 -#: src/Module/Notifications/Introductions.php:144 -#: src/Module/OAuth/Acknowledge.php:55 src/Module/Register.php:132 -#: src/Module/Settings/TwoFactor/Trusted.php:129 +#: src/Module/Admin/Features.php:53 +#: src/Module/Notifications/Introductions.php:136 +#: src/Module/OAuth/Acknowledge.php:41 src/Module/Register.php:124 +#: src/Module/Settings/TwoFactor/Trusted.php:115 msgid "No" msgstr "Nej" -#: src/Module/Admin/Features.php:67 src/Module/Contact/Revoke.php:108 -#: src/Module/Notifications/Introductions.php:144 -#: src/Module/OAuth/Acknowledge.php:54 src/Module/Register.php:131 -#: src/Module/Settings/TwoFactor/Trusted.php:129 +#: src/Module/Admin/Features.php:53 src/Module/Contact/Revoke.php:91 +#: src/Module/Notifications/Introductions.php:136 +#: src/Module/OAuth/Acknowledge.php:40 src/Module/Register.php:123 +#: src/Module/Settings/TwoFactor/Trusted.php:115 msgid "Yes" msgstr "Ja" -#: src/Module/Admin/Features.php:67 +#: src/Module/Admin/Features.php:53 msgid "Locked" msgstr "" -#: src/Module/Admin/Features.php:81 +#: src/Module/Admin/Features.php:67 msgid "Manage Additional Features" msgstr "Hantera ytterligare funktioner" -#: src/Module/Admin/Federation.php:82 -#: src/Module/Moderation/Report/Create.php:191 -#: src/Module/Moderation/Report/Create.php:316 +#: src/Module/Admin/Federation.php:68 +#: src/Module/Moderation/Report/Create.php:177 +#: src/Module/Moderation/Report/Create.php:302 msgid "Other" msgstr "Annat" -#: src/Module/Admin/Federation.php:160 src/Module/Admin/Federation.php:408 +#: src/Module/Admin/Federation.php:146 src/Module/Admin/Federation.php:394 msgid "unknown" msgstr "okänd" -#: src/Module/Admin/Federation.php:193 +#: src/Module/Admin/Federation.php:179 #, php-format msgid "%2$s total system" msgid_plural "%2$s total systems" msgstr[0] "" msgstr[1] "" -#: src/Module/Admin/Federation.php:194 +#: src/Module/Admin/Federation.php:180 #, php-format msgid "%2$s active user last month" msgid_plural "%2$s active users last month" msgstr[0] "" msgstr[1] "" -#: src/Module/Admin/Federation.php:195 +#: src/Module/Admin/Federation.php:181 #, php-format msgid "%2$s active user last six months" msgid_plural "%2$s active users last six months" msgstr[0] "" msgstr[1] "" -#: src/Module/Admin/Federation.php:196 +#: src/Module/Admin/Federation.php:182 #, php-format msgid "%2$s registered user" msgid_plural "%2$s registered users" msgstr[0] "" msgstr[1] "" -#: src/Module/Admin/Federation.php:197 +#: src/Module/Admin/Federation.php:183 #, php-format msgid "%2$s locally created post or comment" msgid_plural "%2$s locally created posts and comments" msgstr[0] "" msgstr[1] "" -#: src/Module/Admin/Federation.php:200 +#: src/Module/Admin/Federation.php:186 #, php-format msgid "%2$s post per user" msgid_plural "%2$s posts per user" msgstr[0] "" msgstr[1] "" -#: src/Module/Admin/Federation.php:205 +#: src/Module/Admin/Federation.php:191 #, php-format msgid "%2$s user per system" msgid_plural "%2$s users per system" msgstr[0] "" msgstr[1] "" -#: src/Module/Admin/Federation.php:215 +#: src/Module/Admin/Federation.php:201 msgid "" "This page offers you some numbers to the known part of the federated social " "network your Friendica node is part of. These numbers are not complete but " "only reflect the part of the network your node is aware of." msgstr "" -#: src/Module/Admin/Federation.php:221 src/Module/BaseAdmin.php:87 +#: src/Module/Admin/Federation.php:207 src/Module/BaseAdmin.php:73 msgid "Federation Statistics" msgstr "" -#: src/Module/Admin/Federation.php:224 +#: src/Module/Admin/Federation.php:210 #, php-format msgid "" "Currently this node is aware of %2$s node (%3$s active users last month, " @@ -4233,58 +4233,58 @@ msgid_plural "" msgstr[0] "" msgstr[1] "" -#: src/Module/Admin/Logs/Settings.php:47 +#: src/Module/Admin/Logs/Settings.php:33 #, php-format msgid "The logfile '%s' is not writable. No logging possible" msgstr "" -#: src/Module/Admin/Logs/Settings.php:80 +#: src/Module/Admin/Logs/Settings.php:66 msgid "PHP log currently enabled." msgstr "" -#: src/Module/Admin/Logs/Settings.php:82 +#: src/Module/Admin/Logs/Settings.php:68 msgid "PHP log currently disabled." msgstr "" -#: src/Module/Admin/Logs/Settings.php:89 src/Module/BaseAdmin.php:102 -#: src/Module/BaseAdmin.php:103 +#: src/Module/Admin/Logs/Settings.php:75 src/Module/BaseAdmin.php:88 +#: src/Module/BaseAdmin.php:89 msgid "Logs" msgstr "Loggar" -#: src/Module/Admin/Logs/Settings.php:91 +#: src/Module/Admin/Logs/Settings.php:77 msgid "Clear" msgstr "Rensa" -#: src/Module/Admin/Logs/Settings.php:94 +#: src/Module/Admin/Logs/Settings.php:80 msgid "Enable Debugging" msgstr "Aktivera avlusning" -#: src/Module/Admin/Logs/Settings.php:94 src/Module/Admin/Logs/Settings.php:95 -#: src/Module/Admin/Logs/Settings.php:96 src/Module/Admin/Site.php:478 -#: src/Module/Admin/Site.php:486 +#: src/Module/Admin/Logs/Settings.php:80 src/Module/Admin/Logs/Settings.php:81 +#: src/Module/Admin/Logs/Settings.php:82 src/Module/Admin/Site.php:470 +#: src/Module/Admin/Site.php:478 msgid "" "Read-only because it is set by an environment variable" msgstr "" -#: src/Module/Admin/Logs/Settings.php:95 +#: src/Module/Admin/Logs/Settings.php:81 msgid "Log file" msgstr "Logg-fil" -#: src/Module/Admin/Logs/Settings.php:95 +#: src/Module/Admin/Logs/Settings.php:81 msgid "" "Must be writable by web server. Relative to your Friendica top-level " "directory." msgstr "" -#: src/Module/Admin/Logs/Settings.php:96 +#: src/Module/Admin/Logs/Settings.php:82 msgid "Log level" msgstr "Logg-nivå" -#: src/Module/Admin/Logs/Settings.php:98 +#: src/Module/Admin/Logs/Settings.php:84 msgid "PHP logging" msgstr "PHP-loggning" -#: src/Module/Admin/Logs/Settings.php:99 +#: src/Module/Admin/Logs/Settings.php:85 msgid "" "To temporarily enable logging of PHP errors and warnings you can prepend the" " following to the index.php file of your installation. The filename set in " @@ -4293,402 +4293,407 @@ msgid "" "'display_errors' is to enable these options, set to '0' to disable them." msgstr "" -#: src/Module/Admin/Logs/View.php:72 +#: src/Module/Admin/Logs/View.php:58 #, php-format msgid "" "Error trying to open %1$s log file.
Check to see if " "file %1$s exist and is readable." msgstr "" -#: src/Module/Admin/Logs/View.php:81 +#: src/Module/Admin/Logs/View.php:67 #, php-format msgid "" "Couldn't open %1$s log file.
Check to see if file %1$s " "is readable." msgstr "" -#: src/Module/Admin/Logs/View.php:86 src/Module/BaseAdmin.php:104 +#: src/Module/Admin/Logs/View.php:72 src/Module/BaseAdmin.php:90 msgid "View Logs" msgstr "Visa loggar" -#: src/Module/Admin/Logs/View.php:89 +#: src/Module/Admin/Logs/View.php:75 msgid "Search in logs" msgstr "Sök i loggar" -#: src/Module/Admin/Logs/View.php:90 -#: src/Module/Notifications/Notifications.php:140 +#: src/Module/Admin/Logs/View.php:76 +#: src/Module/Notifications/Notifications.php:132 msgid "Show all" msgstr "Visa alla" -#: src/Module/Admin/Logs/View.php:91 +#: src/Module/Admin/Logs/View.php:77 msgid "Date" msgstr "Datum" -#: src/Module/Admin/Logs/View.php:92 +#: src/Module/Admin/Logs/View.php:78 msgid "Level" msgstr "Nivå" -#: src/Module/Admin/Logs/View.php:93 +#: src/Module/Admin/Logs/View.php:79 msgid "Context" msgstr "Sammanhang" -#: src/Module/Admin/Logs/View.php:95 +#: src/Module/Admin/Logs/View.php:81 msgid "ALL" msgstr "ALLA" -#: src/Module/Admin/Logs/View.php:96 +#: src/Module/Admin/Logs/View.php:82 msgid "View details" msgstr "Visa detaljer" -#: src/Module/Admin/Logs/View.php:97 +#: src/Module/Admin/Logs/View.php:83 msgid "Click to view details" msgstr "Klicka för att visa detaljer" -#: src/Module/Admin/Logs/View.php:98 src/Module/Calendar/Event/Form.php:207 +#: src/Module/Admin/Logs/View.php:84 src/Module/Calendar/Event/Form.php:193 msgid "Event details" msgstr "Evenemangets detaljer" -#: src/Module/Admin/Logs/View.php:99 +#: src/Module/Admin/Logs/View.php:85 msgid "Data" msgstr "Data" -#: src/Module/Admin/Logs/View.php:100 -#: src/Module/Debug/ActivityPubConversion.php:57 +#: src/Module/Admin/Logs/View.php:86 +#: src/Module/Debug/ActivityPubConversion.php:49 msgid "Source" msgstr "Källa" -#: src/Module/Admin/Logs/View.php:101 +#: src/Module/Admin/Logs/View.php:87 msgid "File" msgstr "Fil" -#: src/Module/Admin/Logs/View.php:102 +#: src/Module/Admin/Logs/View.php:88 msgid "Line" msgstr "Rad" -#: src/Module/Admin/Logs/View.php:103 +#: src/Module/Admin/Logs/View.php:89 msgid "Function" msgstr "Funktion" -#: src/Module/Admin/Logs/View.php:104 +#: src/Module/Admin/Logs/View.php:90 msgid "UID" msgstr "UID" -#: src/Module/Admin/Logs/View.php:105 +#: src/Module/Admin/Logs/View.php:91 msgid "Process ID" msgstr "" -#: src/Module/Admin/Logs/View.php:106 +#: src/Module/Admin/Logs/View.php:92 msgid "Close" msgstr "Stäng" -#: src/Module/Admin/Queue.php:50 +#: src/Module/Admin/Queue.php:36 msgid "Inspect Deferred Worker Queue" msgstr "" -#: src/Module/Admin/Queue.php:51 +#: src/Module/Admin/Queue.php:37 msgid "" "This page lists the deferred worker jobs. This are jobs that couldn't be " "executed at the first time." msgstr "" -#: src/Module/Admin/Queue.php:54 +#: src/Module/Admin/Queue.php:40 msgid "Inspect Worker Queue" msgstr "" -#: src/Module/Admin/Queue.php:55 +#: src/Module/Admin/Queue.php:41 msgid "" "This page lists the currently queued worker jobs. These jobs are handled by " "the worker cronjob you've set up during install." msgstr "" -#: src/Module/Admin/Queue.php:76 +#: src/Module/Admin/Queue.php:62 msgid "ID" msgstr "ID" -#: src/Module/Admin/Queue.php:77 +#: src/Module/Admin/Queue.php:63 msgid "Command" msgstr "Kommando" -#: src/Module/Admin/Queue.php:78 +#: src/Module/Admin/Queue.php:64 msgid "Job Parameters" msgstr "Jobb-parametrar" -#: src/Module/Admin/Queue.php:79 src/Module/Moderation/Reports.php:110 -#: src/Module/Settings/OAuth.php:74 +#: src/Module/Admin/Queue.php:65 src/Module/Moderation/Reports.php:102 +#: src/Module/Settings/OAuth.php:60 msgid "Created" msgstr "Skapades" -#: src/Module/Admin/Queue.php:80 +#: src/Module/Admin/Queue.php:66 msgid "Next Try" msgstr "" -#: src/Module/Admin/Queue.php:81 +#: src/Module/Admin/Queue.php:67 msgid "Priority" msgstr "Prioritet" -#: src/Module/Admin/Site.php:243 +#: src/Module/Admin/Site.php:230 +#, php-format +msgid "%s is no valid input for maximum media size" +msgstr "" + +#: src/Module/Admin/Site.php:235 #, 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:362 src/Module/Settings/Display.php:201 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:379 src/Module/Settings/Display.php:211 #, php-format msgid "%s - (Experimental)" msgstr "%s - (Experimentell)" -#: src/Module/Admin/Site.php:399 +#: src/Module/Admin/Site.php:391 msgid "No community page" msgstr "Ingen gemenskapssida" -#: src/Module/Admin/Site.php:400 +#: src/Module/Admin/Site.php:392 msgid "No community page for visitors" msgstr "" -#: src/Module/Admin/Site.php:401 +#: src/Module/Admin/Site.php:393 msgid "Public postings from users of this site" msgstr "" -#: src/Module/Admin/Site.php:402 +#: src/Module/Admin/Site.php:394 msgid "Public postings from the federated network" msgstr "" -#: src/Module/Admin/Site.php:403 +#: src/Module/Admin/Site.php:395 msgid "Public postings from local users and the federated network" msgstr "" -#: src/Module/Admin/Site.php:409 +#: src/Module/Admin/Site.php:401 msgid "Multi user instance" msgstr "Instans för flertalet användare" -#: src/Module/Admin/Site.php:432 +#: src/Module/Admin/Site.php:424 msgid "Closed" msgstr "Stängd" -#: src/Module/Admin/Site.php:433 +#: src/Module/Admin/Site.php:425 msgid "Requires approval" msgstr "Kräver godkännande" -#: src/Module/Admin/Site.php:434 +#: src/Module/Admin/Site.php:426 msgid "Open" msgstr "Öppen" -#: src/Module/Admin/Site.php:438 +#: src/Module/Admin/Site.php:430 msgid "Don't check" msgstr "Kolla inte" -#: src/Module/Admin/Site.php:439 +#: src/Module/Admin/Site.php:431 msgid "check the stable version" msgstr "kolla den stabila versionen" -#: src/Module/Admin/Site.php:440 +#: src/Module/Admin/Site.php:432 msgid "check the development version" msgstr "kolla utvecklingsversionen" -#: src/Module/Admin/Site.php:444 +#: src/Module/Admin/Site.php:436 msgid "none" msgstr "ingen" -#: src/Module/Admin/Site.php:445 +#: src/Module/Admin/Site.php:437 msgid "Local contacts" msgstr "Lokala kontakter " -#: src/Module/Admin/Site.php:446 +#: src/Module/Admin/Site.php:438 msgid "Interactors" msgstr "" -#: src/Module/Admin/Site.php:456 src/Module/BaseAdmin.php:90 +#: src/Module/Admin/Site.php:448 src/Module/BaseAdmin.php:76 msgid "Site" msgstr "Sida" -#: src/Module/Admin/Site.php:457 +#: src/Module/Admin/Site.php:449 msgid "General Information" msgstr "Generell information" -#: src/Module/Admin/Site.php:459 +#: src/Module/Admin/Site.php:451 msgid "Republish users to directory" msgstr "" -#: src/Module/Admin/Site.php:460 src/Module/Register.php:153 +#: src/Module/Admin/Site.php:452 src/Module/Register.php:145 msgid "Registration" msgstr "Registrering" -#: src/Module/Admin/Site.php:461 +#: src/Module/Admin/Site.php:453 msgid "File upload" msgstr "Fil-uppladdning" -#: src/Module/Admin/Site.php:462 +#: src/Module/Admin/Site.php:454 msgid "Policies" msgstr "Policyer" -#: src/Module/Admin/Site.php:463 src/Module/Calendar/Event/Form.php:252 -#: src/Module/Contact.php:546 src/Module/Profile/Profile.php:276 +#: src/Module/Admin/Site.php:455 src/Module/Calendar/Event/Form.php:238 +#: src/Module/Contact.php:528 src/Module/Profile/Profile.php:264 msgid "Advanced" msgstr "Avancerat" -#: src/Module/Admin/Site.php:464 +#: src/Module/Admin/Site.php:456 msgid "Auto Discovered Contact Directory" msgstr "" -#: src/Module/Admin/Site.php:465 +#: src/Module/Admin/Site.php:457 msgid "Performance" msgstr "Prestanda" -#: src/Module/Admin/Site.php:466 +#: src/Module/Admin/Site.php:458 msgid "Worker" msgstr "Arbetare" -#: src/Module/Admin/Site.php:467 +#: src/Module/Admin/Site.php:459 msgid "Message Relay" msgstr "Meddelandefördröjning" -#: src/Module/Admin/Site.php:468 +#: src/Module/Admin/Site.php:460 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:461 msgid "The system is not subscribed to any relays at the moment." msgstr "" -#: src/Module/Admin/Site.php:470 +#: src/Module/Admin/Site.php:462 msgid "The system is currently subscribed to the following relays:" msgstr "" -#: src/Module/Admin/Site.php:473 +#: src/Module/Admin/Site.php:465 msgid "Relocate Node" msgstr "" -#: src/Module/Admin/Site.php:474 +#: src/Module/Admin/Site.php:466 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:467 msgid "(Friendica directory)# bin/console relocate https://newdomain.com" msgstr "" -#: src/Module/Admin/Site.php:478 +#: src/Module/Admin/Site.php:470 msgid "Site name" msgstr "Namn på sida" -#: src/Module/Admin/Site.php:479 +#: src/Module/Admin/Site.php:471 msgid "Sender Email" msgstr "Sändare av e-post" -#: src/Module/Admin/Site.php:479 +#: src/Module/Admin/Site.php:471 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:472 msgid "Name of the system actor" msgstr "" -#: src/Module/Admin/Site.php:480 +#: src/Module/Admin/Site.php:472 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:473 msgid "Banner/Logo" msgstr "Banderoll/Logga" -#: src/Module/Admin/Site.php:482 +#: src/Module/Admin/Site.php:474 msgid "Email Banner/Logo" msgstr "E-postbanderoll/logga" -#: src/Module/Admin/Site.php:483 +#: src/Module/Admin/Site.php:475 msgid "Shortcut icon" msgstr "Genvägsikon" -#: src/Module/Admin/Site.php:483 +#: src/Module/Admin/Site.php:475 msgid "Link to an icon that will be used for browsers." msgstr "" -#: src/Module/Admin/Site.php:484 +#: src/Module/Admin/Site.php:476 msgid "Touch icon" msgstr "" -#: src/Module/Admin/Site.php:484 +#: src/Module/Admin/Site.php:476 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:477 msgid "Additional Info" msgstr "Ytterligare info" -#: src/Module/Admin/Site.php:485 +#: src/Module/Admin/Site.php:477 #, 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:478 msgid "System language" msgstr "Systemets språk" -#: src/Module/Admin/Site.php:487 +#: src/Module/Admin/Site.php:479 msgid "System theme" msgstr "Systemets tema" -#: src/Module/Admin/Site.php:487 +#: src/Module/Admin/Site.php:479 #, 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:480 msgid "Mobile system theme" msgstr "" -#: src/Module/Admin/Site.php:488 +#: src/Module/Admin/Site.php:480 msgid "Theme for mobile devices" msgstr "Tema för mobilenheter" -#: src/Module/Admin/Site.php:489 +#: src/Module/Admin/Site.php:481 msgid "Force SSL" msgstr "Tvinga SSL" -#: src/Module/Admin/Site.php:489 +#: src/Module/Admin/Site.php:481 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:482 msgid "Show help entry from navigation menu" msgstr "" -#: src/Module/Admin/Site.php:490 +#: src/Module/Admin/Site.php:482 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:483 msgid "Single user instance" msgstr "" -#: src/Module/Admin/Site.php:491 +#: src/Module/Admin/Site.php:483 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:485 msgid "Maximum image size" msgstr "Maximal bildstorlek" -#: src/Module/Admin/Site.php:493 +#: src/Module/Admin/Site.php:485 #, 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 +4701,47 @@ 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:489 msgid "Maximum image length" msgstr "Maximal bildlängd" -#: src/Module/Admin/Site.php:497 +#: src/Module/Admin/Site.php:489 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:490 msgid "JPEG image quality" msgstr "Kvalité för JPEG-bilden" -#: src/Module/Admin/Site.php:498 +#: src/Module/Admin/Site.php:490 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:491 +msgid "Maximum media file size" +msgstr "" + +#: src/Module/Admin/Site.php:491 +#, php-format +msgid "" +"Maximum size in bytes of uploaded media files. Default is 0, which means no limits. You can put k, m, or g behind the desired value for KiB, MiB, GiB, respectively.\n" +"\t\t\t\t\t\t\t\t\t\t\t\t\tThe value of upload_max_filesize in your PHP.ini needs be set to at least the desired limit.\n" +"\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:496 msgid "Register policy" msgstr "Registrera policy" -#: src/Module/Admin/Site.php:501 +#: src/Module/Admin/Site.php:497 msgid "Maximum Users" msgstr "" -#: src/Module/Admin/Site.php:501 +#: src/Module/Admin/Site.php:497 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,167 +4749,167 @@ msgid "" "not when the policy is set to approval." msgstr "" -#: src/Module/Admin/Site.php:502 +#: src/Module/Admin/Site.php:498 msgid "Maximum Daily Registrations" msgstr "Maximala registreringar varje dag" -#: src/Module/Admin/Site.php:502 +#: src/Module/Admin/Site.php:498 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:499 msgid "Register text" msgstr "Registrera text" -#: src/Module/Admin/Site.php:503 +#: src/Module/Admin/Site.php:499 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:500 msgid "Forbidden Nicknames" msgstr "Förbjudna smeknamn" -#: src/Module/Admin/Site.php:504 +#: src/Module/Admin/Site.php:500 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:501 msgid "Accounts abandoned after x days" msgstr "Konton som övergavs efter x dagar" -#: src/Module/Admin/Site.php:505 +#: src/Module/Admin/Site.php:501 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:502 msgid "Allowed friend domains" msgstr "Tillåtna vän-domäner" -#: src/Module/Admin/Site.php:506 +#: src/Module/Admin/Site.php:502 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:503 msgid "Allowed email domains" msgstr "Tillåtna e-postdomäner" -#: src/Module/Admin/Site.php:507 +#: src/Module/Admin/Site.php:503 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:504 msgid "Disallowed email domains" msgstr "" -#: src/Module/Admin/Site.php:508 +#: src/Module/Admin/Site.php:504 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:509 +#: src/Module/Admin/Site.php:505 msgid "No OEmbed rich content" msgstr "" -#: src/Module/Admin/Site.php:509 +#: src/Module/Admin/Site.php:505 msgid "" "Don't show the rich content (e.g. embedded PDF), except from the domains " "listed below." msgstr "" -#: src/Module/Admin/Site.php:510 +#: src/Module/Admin/Site.php:506 msgid "Trusted third-party domains" msgstr "" -#: src/Module/Admin/Site.php:510 +#: src/Module/Admin/Site.php:506 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:511 +#: src/Module/Admin/Site.php:507 msgid "Block public" msgstr "Blockera publik" -#: src/Module/Admin/Site.php:511 +#: src/Module/Admin/Site.php:507 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:512 +#: src/Module/Admin/Site.php:508 msgid "Force publish" msgstr "Tvinga publicering" -#: src/Module/Admin/Site.php:512 +#: src/Module/Admin/Site.php:508 msgid "" "Check to force all profiles on this site to be listed in the site directory." msgstr "" -#: src/Module/Admin/Site.php:512 +#: src/Module/Admin/Site.php:508 msgid "Enabling this may violate privacy laws like the GDPR" msgstr "" -#: src/Module/Admin/Site.php:513 +#: src/Module/Admin/Site.php:509 msgid "Global directory URL" msgstr "" -#: src/Module/Admin/Site.php:513 +#: src/Module/Admin/Site.php:509 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:514 +#: src/Module/Admin/Site.php:510 msgid "Private posts by default for new users" msgstr "Privata inlägg som standard för nya användare" -#: src/Module/Admin/Site.php:514 +#: src/Module/Admin/Site.php:510 msgid "" "Set default post permissions for all new members to the default privacy " "circle rather than public." msgstr "" -#: src/Module/Admin/Site.php:515 +#: src/Module/Admin/Site.php:511 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:515 +#: src/Module/Admin/Site.php:511 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:516 +#: src/Module/Admin/Site.php:512 msgid "Disallow public access to addons listed in the apps menu." msgstr "" -#: src/Module/Admin/Site.php:516 +#: src/Module/Admin/Site.php:512 msgid "" "Checking this box will restrict addons listed in the apps menu to members " "only." msgstr "" -#: src/Module/Admin/Site.php:517 +#: src/Module/Admin/Site.php:513 msgid "Don't embed private images in posts" msgstr "" -#: src/Module/Admin/Site.php:517 +#: src/Module/Admin/Site.php:513 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 " @@ -4900,11 +4917,11 @@ msgid "" "while." msgstr "" -#: src/Module/Admin/Site.php:518 +#: src/Module/Admin/Site.php:514 msgid "Explicit Content" msgstr "" -#: src/Module/Admin/Site.php:518 +#: src/Module/Admin/Site.php:514 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 " @@ -4913,329 +4930,319 @@ msgid "" "will be shown at the user registration page." msgstr "" -#: src/Module/Admin/Site.php:519 +#: src/Module/Admin/Site.php:515 msgid "Only local search" msgstr "" -#: src/Module/Admin/Site.php:519 +#: src/Module/Admin/Site.php:515 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:516 msgid "Blocked tags for trending tags" msgstr "" -#: src/Module/Admin/Site.php:520 +#: src/Module/Admin/Site.php:516 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:517 msgid "Cache contact avatars" msgstr "" -#: src/Module/Admin/Site.php:521 +#: src/Module/Admin/Site.php:517 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:518 msgid "Allow Users to set remote_self" msgstr "" -#: src/Module/Admin/Site.php:522 +#: src/Module/Admin/Site.php:518 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:519 msgid "Allow Users to set up relay channels" msgstr "" -#: src/Module/Admin/Site.php:523 +#: src/Module/Admin/Site.php:519 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:520 msgid "Adjust the feed poll frequency" msgstr "" -#: src/Module/Admin/Site.php:524 +#: src/Module/Admin/Site.php:520 msgid "Automatically detect and set the best feed poll frequency." msgstr "" -#: src/Module/Admin/Site.php:525 +#: src/Module/Admin/Site.php:521 msgid "Minimum poll interval" msgstr "" -#: src/Module/Admin/Site.php:525 +#: src/Module/Admin/Site.php:521 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:522 msgid "Enable multiple registrations" msgstr "" -#: src/Module/Admin/Site.php:526 +#: src/Module/Admin/Site.php:522 msgid "Enable users to register additional accounts for use as pages." msgstr "" -#: src/Module/Admin/Site.php:527 +#: src/Module/Admin/Site.php:523 msgid "Enable OpenID" msgstr "" -#: src/Module/Admin/Site.php:527 +#: src/Module/Admin/Site.php:523 msgid "Enable OpenID support for registration and logins." msgstr "" -#: src/Module/Admin/Site.php:528 +#: src/Module/Admin/Site.php:524 msgid "Enable full name check" msgstr "" -#: src/Module/Admin/Site.php:528 +#: src/Module/Admin/Site.php:524 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:525 msgid "Email administrators on new registration" msgstr "" -#: src/Module/Admin/Site.php:529 +#: src/Module/Admin/Site.php:525 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:526 msgid "Community pages for visitors" msgstr "" -#: src/Module/Admin/Site.php:530 +#: src/Module/Admin/Site.php:526 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:527 msgid "Posts per user on community page" msgstr "" -#: src/Module/Admin/Site.php:531 +#: src/Module/Admin/Site.php:527 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:528 msgid "Posts per server on community page" msgstr "" -#: src/Module/Admin/Site.php:532 +#: src/Module/Admin/Site.php:528 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:530 msgid "Enable Mail support" msgstr "" -#: src/Module/Admin/Site.php:534 +#: src/Module/Admin/Site.php:530 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:531 msgid "" "Mail support can't be enabled because the PHP IMAP module is not installed." msgstr "" -#: src/Module/Admin/Site.php:536 -msgid "Enable OStatus support" -msgstr "" - -#: src/Module/Admin/Site.php:536 -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:533 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:534 msgid "Enable Diaspora support" msgstr "Aktivera Diaspora-support" -#: src/Module/Admin/Site.php:539 +#: src/Module/Admin/Site.php:534 msgid "" "Enable built-in Diaspora network compatibility for communicating with " "diaspora servers." msgstr "" -#: src/Module/Admin/Site.php:540 +#: src/Module/Admin/Site.php:535 msgid "Verify SSL" msgstr "Bekräfta SSL" -#: src/Module/Admin/Site.php:540 +#: src/Module/Admin/Site.php:535 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:536 msgid "Proxy user" msgstr "Proxy-användare" -#: src/Module/Admin/Site.php:541 +#: src/Module/Admin/Site.php:536 msgid "User name for the proxy server." msgstr "" -#: src/Module/Admin/Site.php:542 +#: src/Module/Admin/Site.php:537 msgid "Proxy URL" msgstr "URL för proxy" -#: src/Module/Admin/Site.php:542 +#: src/Module/Admin/Site.php:537 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:538 msgid "Network timeout" msgstr "Tidsgräns för nätverket" -#: src/Module/Admin/Site.php:543 +#: src/Module/Admin/Site.php:538 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:539 msgid "Maximum Load Average" msgstr "" -#: src/Module/Admin/Site.php:544 +#: src/Module/Admin/Site.php:539 #, 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:540 msgid "Minimal Memory" msgstr "" -#: src/Module/Admin/Site.php:545 +#: src/Module/Admin/Site.php:540 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:541 msgid "Periodically optimize tables" msgstr "" -#: src/Module/Admin/Site.php:546 +#: src/Module/Admin/Site.php:541 msgid "Periodically optimize tables like the cache and the workerqueue" msgstr "" -#: src/Module/Admin/Site.php:548 +#: src/Module/Admin/Site.php:543 msgid "Discover followers/followings from contacts" msgstr "" -#: src/Module/Admin/Site.php:548 +#: src/Module/Admin/Site.php:543 msgid "" "If enabled, contacts are checked for their followers and following contacts." msgstr "" -#: src/Module/Admin/Site.php:549 +#: src/Module/Admin/Site.php:544 msgid "None - deactivated" msgstr "" -#: src/Module/Admin/Site.php:550 +#: src/Module/Admin/Site.php:545 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:546 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:548 msgid "Only update contacts/servers with local data" msgstr "" -#: src/Module/Admin/Site.php:553 +#: src/Module/Admin/Site.php:548 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:549 msgid "Synchronize the contacts with the directory server" msgstr "" -#: src/Module/Admin/Site.php:554 +#: src/Module/Admin/Site.php:549 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:551 msgid "Discover contacts from other servers" msgstr "" -#: src/Module/Admin/Site.php:556 +#: src/Module/Admin/Site.php:551 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:552 msgid "Days between requery" msgstr "" -#: src/Module/Admin/Site.php:557 +#: src/Module/Admin/Site.php:552 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:553 msgid "Search the local directory" msgstr "" -#: src/Module/Admin/Site.php:558 +#: src/Module/Admin/Site.php:553 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:555 msgid "Publish server information" msgstr "" -#: src/Module/Admin/Site.php:560 +#: src/Module/Admin/Site.php:555 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 +5250,50 @@ msgid "" " href=\"http://the-federation.info/\">the-federation.info for details." msgstr "" -#: src/Module/Admin/Site.php:562 +#: src/Module/Admin/Site.php:557 msgid "Check upstream version" msgstr "" -#: src/Module/Admin/Site.php:562 +#: src/Module/Admin/Site.php:557 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:558 msgid "Suppress Tags" msgstr "" -#: src/Module/Admin/Site.php:563 +#: src/Module/Admin/Site.php:558 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:559 msgid "Clean database" msgstr "" -#: src/Module/Admin/Site.php:564 +#: src/Module/Admin/Site.php:559 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:560 msgid "Lifespan of remote items" msgstr "" -#: src/Module/Admin/Site.php:565 +#: src/Module/Admin/Site.php:560 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:561 msgid "Lifespan of unclaimed items" msgstr "" -#: src/Module/Admin/Site.php:566 +#: src/Module/Admin/Site.php:561 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 +5301,184 @@ msgid "" "items if set to 0." msgstr "" -#: src/Module/Admin/Site.php:567 +#: src/Module/Admin/Site.php:562 msgid "Lifespan of raw conversation data" msgstr "" -#: src/Module/Admin/Site.php:567 +#: src/Module/Admin/Site.php:562 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." +"The conversation data is used for ActivityPub, 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:563 msgid "Maximum numbers of comments per post" msgstr "" -#: src/Module/Admin/Site.php:568 +#: src/Module/Admin/Site.php:563 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:564 msgid "Maximum numbers of comments per post on the display page" msgstr "" -#: src/Module/Admin/Site.php:569 +#: src/Module/Admin/Site.php:564 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:565 msgid "Items per page" msgstr "" -#: src/Module/Admin/Site.php:570 +#: src/Module/Admin/Site.php:565 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:566 msgid "Items per page for mobile devices" msgstr "" -#: src/Module/Admin/Site.php:571 +#: src/Module/Admin/Site.php:566 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:567 msgid "Temp path" msgstr "Tillfällig genväg" -#: src/Module/Admin/Site.php:572 +#: src/Module/Admin/Site.php:567 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:568 msgid "Only search in tags" msgstr "Sök endast i taggar" -#: src/Module/Admin/Site.php:573 +#: src/Module/Admin/Site.php:568 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:569 +msgid "Limited search scope" +msgstr "" + +#: src/Module/Admin/Site.php:569 +msgid "" +"If enabled, searches will only be performed in the data used for the " +"channels and not in all posts." +msgstr "" + +#: src/Module/Admin/Site.php:570 msgid "Maximum age of items in the search table" msgstr "" -#: src/Module/Admin/Site.php:574 +#: src/Module/Admin/Site.php:570 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:571 msgid "Generate counts per contact circle when calculating network count" msgstr "" -#: src/Module/Admin/Site.php:575 +#: src/Module/Admin/Site.php:571 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:572 msgid "Process \"view\" activities" msgstr "" -#: src/Module/Admin/Site.php:576 +#: src/Module/Admin/Site.php:572 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:573 msgid "Days, after which a contact is archived" msgstr "" -#: src/Module/Admin/Site.php:577 +#: src/Module/Admin/Site.php:573 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:575 msgid "Maximum number of parallel workers" msgstr "" -#: src/Module/Admin/Site.php:579 +#: src/Module/Admin/Site.php:575 #, 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:576 msgid "Maximum load for workers" msgstr "" -#: src/Module/Admin/Site.php:580 +#: src/Module/Admin/Site.php:576 msgid "Maximum load that causes a cooldown before each worker function call." msgstr "" -#: src/Module/Admin/Site.php:581 +#: src/Module/Admin/Site.php:577 msgid "Enable fastlane" msgstr "" -#: src/Module/Admin/Site.php:581 +#: src/Module/Admin/Site.php:577 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:578 msgid "Decoupled receiver" msgstr "" -#: src/Module/Admin/Site.php:582 +#: src/Module/Admin/Site.php:578 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:579 msgid "Cron interval" msgstr "" -#: src/Module/Admin/Site.php:583 +#: src/Module/Admin/Site.php:579 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:580 msgid "Worker defer limit" msgstr "" -#: src/Module/Admin/Site.php:584 +#: src/Module/Admin/Site.php:580 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:581 msgid "Worker fetch limit" msgstr "" -#: src/Module/Admin/Site.php:585 +#: src/Module/Admin/Site.php:581 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,214 +5486,214 @@ msgid "" "system." msgstr "" -#: src/Module/Admin/Site.php:587 +#: src/Module/Admin/Site.php:583 msgid "Direct relay transfer" msgstr "" -#: src/Module/Admin/Site.php:587 +#: src/Module/Admin/Site.php:583 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:584 msgid "Relay scope" msgstr "" -#: src/Module/Admin/Site.php:588 +#: src/Module/Admin/Site.php:584 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:314 -#: src/Module/Settings/TwoFactor/Index.php:146 +#: src/Module/Admin/Site.php:584 src/Module/Contact/Profile.php:314 +#: src/Module/Settings/TwoFactor/Index.php:132 msgid "Disabled" msgstr "" -#: src/Module/Admin/Site.php:588 +#: src/Module/Admin/Site.php:584 msgid "all" msgstr "" -#: src/Module/Admin/Site.php:588 +#: src/Module/Admin/Site.php:584 msgid "tags" msgstr "" -#: src/Module/Admin/Site.php:589 +#: src/Module/Admin/Site.php:585 msgid "Server tags" msgstr "" -#: src/Module/Admin/Site.php:589 +#: src/Module/Admin/Site.php:585 msgid "Comma separated list of tags for the \"tags\" subscription." msgstr "" -#: src/Module/Admin/Site.php:590 +#: src/Module/Admin/Site.php:586 msgid "Deny Server tags" msgstr "" -#: src/Module/Admin/Site.php:590 +#: src/Module/Admin/Site.php:586 msgid "Comma separated list of tags that are rejected." msgstr "" -#: src/Module/Admin/Site.php:591 +#: src/Module/Admin/Site.php:587 msgid "Maximum amount of tags" msgstr "" -#: src/Module/Admin/Site.php:591 +#: src/Module/Admin/Site.php:587 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:588 msgid "Allow user tags" msgstr "" -#: src/Module/Admin/Site.php:592 +#: src/Module/Admin/Site.php:588 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:589 msgid "Deny undetected languages" msgstr "" -#: src/Module/Admin/Site.php:593 +#: src/Module/Admin/Site.php:589 msgid "If enabled, posts with undetected languages will be rejected." msgstr "" -#: src/Module/Admin/Site.php:594 +#: src/Module/Admin/Site.php:590 msgid "Language Quality" msgstr "" -#: src/Module/Admin/Site.php:594 +#: src/Module/Admin/Site.php:590 msgid "The minimum language quality that is required to accept the post." msgstr "" -#: src/Module/Admin/Site.php:595 +#: src/Module/Admin/Site.php:591 msgid "Number of languages for the language detection" msgstr "" -#: src/Module/Admin/Site.php:595 +#: src/Module/Admin/Site.php:591 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:593 msgid "Maximum age of channel" msgstr "" -#: src/Module/Admin/Site.php:597 +#: src/Module/Admin/Site.php:593 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:594 msgid "Maximum number of channel posts" msgstr "" -#: src/Module/Admin/Site.php:598 +#: src/Module/Admin/Site.php:594 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:595 msgid "Interaction score days" msgstr "" -#: src/Module/Admin/Site.php:599 +#: src/Module/Admin/Site.php:595 msgid "Number of days that are used to calculate the interaction score." msgstr "" -#: src/Module/Admin/Site.php:600 +#: src/Module/Admin/Site.php:596 msgid "Maximum number of posts per author" msgstr "" -#: src/Module/Admin/Site.php:600 +#: src/Module/Admin/Site.php:596 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:597 msgid "Sharer interaction days" msgstr "" -#: src/Module/Admin/Site.php:601 +#: src/Module/Admin/Site.php:597 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:600 msgid "Start Relocation" msgstr "" -#: src/Module/Admin/Storage.php:46 +#: src/Module/Admin/Storage.php:32 #, php-format msgid "Storage backend, %s is invalid." msgstr "" -#: src/Module/Admin/Storage.php:73 +#: src/Module/Admin/Storage.php:59 #, php-format msgid "Storage backend %s error: %s" msgstr "" -#: src/Module/Admin/Storage.php:84 src/Module/Admin/Storage.php:87 +#: src/Module/Admin/Storage.php:70 src/Module/Admin/Storage.php:73 msgid "Invalid storage backend setting value." msgstr "" -#: src/Module/Admin/Storage.php:139 +#: src/Module/Admin/Storage.php:125 msgid "Current Storage Backend" msgstr "" -#: src/Module/Admin/Storage.php:140 +#: src/Module/Admin/Storage.php:126 msgid "Storage Configuration" msgstr "" -#: src/Module/Admin/Storage.php:141 src/Module/BaseAdmin.php:91 +#: src/Module/Admin/Storage.php:127 src/Module/BaseAdmin.php:77 msgid "Storage" msgstr "" -#: src/Module/Admin/Storage.php:143 +#: src/Module/Admin/Storage.php:129 msgid "Save & Use storage backend" msgstr "" -#: src/Module/Admin/Storage.php:144 +#: src/Module/Admin/Storage.php:130 msgid "Use storage backend" msgstr "" -#: src/Module/Admin/Storage.php:145 +#: src/Module/Admin/Storage.php:131 msgid "Save & Reload" msgstr "" -#: src/Module/Admin/Storage.php:146 +#: src/Module/Admin/Storage.php:132 msgid "This backend doesn't have custom settings" msgstr "" -#: src/Module/Admin/Storage.php:148 +#: src/Module/Admin/Storage.php:134 msgid "" "Changing the current backend is prohibited because it is set by an " "environment variable" msgstr "" -#: src/Module/Admin/Storage.php:150 +#: src/Module/Admin/Storage.php:136 msgid "Database (legacy)" msgstr "" -#: src/Module/Admin/Summary.php:55 +#: src/Module/Admin/Summary.php:41 #, php-format msgid "Template engine (%s) error: %s" msgstr "" -#: src/Module/Admin/Summary.php:59 +#: src/Module/Admin/Summary.php:45 #, php-format msgid "" "Your DB still runs with MyISAM tables. You should change the engine type to " @@ -5688,7 +5704,7 @@ msgid "" " an automatic conversion.
" msgstr "" -#: src/Module/Admin/Summary.php:64 +#: src/Module/Admin/Summary.php:50 #, php-format msgid "" "Your DB still runs with InnoDB tables in the Antelope file format. You " @@ -5699,7 +5715,7 @@ msgid "" " installation for an automatic conversion.
" msgstr "" -#: src/Module/Admin/Summary.php:74 +#: src/Module/Admin/Summary.php:60 #, php-format msgid "" "Your table_definition_cache is too low (%d). This can lead to the database " @@ -5707,46 +5723,46 @@ msgid "" " to %d. See here for more information.
" msgstr "" -#: src/Module/Admin/Summary.php:85 +#: src/Module/Admin/Summary.php:71 #, php-format msgid "" "There is a new version of Friendica available for download. Your current " "version is %1$s, upstream version is %2$s" msgstr "" -#: src/Module/Admin/Summary.php:94 +#: src/Module/Admin/Summary.php:80 msgid "" "The database update failed. Please run \"php bin/console.php dbstructure " "update\" from the command line and have a look at the errors that might " "appear." msgstr "" -#: src/Module/Admin/Summary.php:98 +#: src/Module/Admin/Summary.php:84 msgid "" "The last update failed. Please run \"php bin/console.php dbstructure " "update\" from the command line and have a look at the errors that might " "appear. (Some of the errors are possibly inside the logfile.)" msgstr "" -#: src/Module/Admin/Summary.php:102 +#: src/Module/Admin/Summary.php:88 msgid "" "The system.url entry is missing. This is a low level setting and can lead to" " unexpected behavior. Please add a valid entry as soon as possible in the " "config file or per console command!" msgstr "" -#: src/Module/Admin/Summary.php:107 +#: src/Module/Admin/Summary.php:93 msgid "The worker was never executed. Please check your database structure!" msgstr "" -#: src/Module/Admin/Summary.php:109 +#: src/Module/Admin/Summary.php:95 #, php-format msgid "" "The last worker execution was on %s UTC. This is older than one hour. Please" " check your crontab settings." msgstr "" -#: src/Module/Admin/Summary.php:114 +#: src/Module/Admin/Summary.php:100 #, php-format msgid "" "Friendica's configuration now is stored in config/local.config.php, please " @@ -5755,7 +5771,7 @@ msgid "" "help with the transition." msgstr "" -#: src/Module/Admin/Summary.php:118 +#: src/Module/Admin/Summary.php:104 #, php-format msgid "" "Friendica's configuration now is stored in config/local.config.php, please " @@ -5764,7 +5780,7 @@ msgid "" "page for help with the transition." msgstr "" -#: src/Module/Admin/Summary.php:124 +#: src/Module/Admin/Summary.php:110 #, php-format msgid "" "%s is not reachable on your system. This is a severe " @@ -5772,107 +5788,107 @@ msgid "" "href=\"%s\">the installation page for help." msgstr "" -#: src/Module/Admin/Summary.php:148 +#: src/Module/Admin/Summary.php:134 #, php-format msgid "" "Friendica's system.basepath was updated from '%s' to '%s'. Please remove the" " system.basepath from your db to avoid differences." msgstr "" -#: src/Module/Admin/Summary.php:156 +#: src/Module/Admin/Summary.php:142 #, php-format msgid "" "Friendica's current system.basepath '%s' is wrong and the config file '%s' " "isn't used." msgstr "" -#: src/Module/Admin/Summary.php:164 +#: src/Module/Admin/Summary.php:150 #, php-format msgid "" "Friendica's current system.basepath '%s' is not equal to the config file " "'%s'. Please fix your configuration." msgstr "" -#: src/Module/Admin/Summary.php:175 +#: src/Module/Admin/Summary.php:161 msgid "Message queues" msgstr "Meddelandeköer" -#: src/Module/Admin/Summary.php:181 +#: src/Module/Admin/Summary.php:167 msgid "Server Settings" msgstr "" -#: src/Module/Admin/Summary.php:199 +#: src/Module/Admin/Summary.php:185 msgid "Version" msgstr "Version" -#: src/Module/Admin/Summary.php:203 +#: src/Module/Admin/Summary.php:189 msgid "Active addons" msgstr "" -#: src/Module/Admin/Themes/Details.php:57 src/Module/Admin/Themes/Index.php:65 +#: src/Module/Admin/Themes/Details.php:49 src/Module/Admin/Themes/Index.php:57 #, php-format msgid "Theme %s disabled." msgstr "" -#: src/Module/Admin/Themes/Details.php:59 src/Module/Admin/Themes/Index.php:67 +#: src/Module/Admin/Themes/Details.php:51 src/Module/Admin/Themes/Index.php:59 #, php-format msgid "Theme %s successfully enabled." msgstr "" -#: src/Module/Admin/Themes/Details.php:61 src/Module/Admin/Themes/Index.php:69 +#: src/Module/Admin/Themes/Details.php:53 src/Module/Admin/Themes/Index.php:61 #, php-format msgid "Theme %s failed to install." msgstr "" -#: src/Module/Admin/Themes/Details.php:83 +#: src/Module/Admin/Themes/Details.php:75 msgid "Screenshot" msgstr "Skärmdump" -#: src/Module/Admin/Themes/Details.php:91 -#: src/Module/Admin/Themes/Index.php:112 src/Module/BaseAdmin.php:93 +#: src/Module/Admin/Themes/Details.php:83 +#: src/Module/Admin/Themes/Index.php:104 src/Module/BaseAdmin.php:79 msgid "Themes" msgstr "Teman" -#: src/Module/Admin/Themes/Embed.php:80 +#: src/Module/Admin/Themes/Embed.php:66 msgid "Unknown theme." msgstr "" -#: src/Module/Admin/Themes/Index.php:51 +#: src/Module/Admin/Themes/Index.php:43 msgid "Themes reloaded" msgstr "" -#: src/Module/Admin/Themes/Index.php:114 +#: src/Module/Admin/Themes/Index.php:106 msgid "Reload active themes" msgstr "" -#: src/Module/Admin/Themes/Index.php:118 +#: src/Module/Admin/Themes/Index.php:110 #, php-format msgid "No themes found on the system. They should be placed in %1$s" msgstr "" -#: src/Module/Admin/Themes/Index.php:119 +#: src/Module/Admin/Themes/Index.php:111 msgid "[Experimental]" msgstr "[Experimentiell]" -#: src/Module/Admin/Themes/Index.php:120 +#: src/Module/Admin/Themes/Index.php:112 msgid "[Unsupported]" msgstr "[Stöds inte]" -#: src/Module/Admin/Tos.php:79 +#: src/Module/Admin/Tos.php:65 msgid "Display Terms of Service" msgstr "" -#: src/Module/Admin/Tos.php:79 +#: src/Module/Admin/Tos.php:65 msgid "" "Enable the Terms of Service page. If this is enabled a link to the terms " "will be added to the registration form and the general information page." msgstr "" -#: src/Module/Admin/Tos.php:80 +#: src/Module/Admin/Tos.php:66 msgid "Display Privacy Statement" msgstr "" -#: src/Module/Admin/Tos.php:80 +#: src/Module/Admin/Tos.php:66 #, php-format msgid "" "Show some informations regarding the needed information to operate the node " @@ -5880,167 +5896,167 @@ msgid "" "noreferrer\">EU-GDPR." msgstr "" -#: src/Module/Admin/Tos.php:81 +#: src/Module/Admin/Tos.php:67 msgid "Privacy Statement Preview" msgstr "" -#: src/Module/Admin/Tos.php:83 +#: src/Module/Admin/Tos.php:69 msgid "The Terms of Service" msgstr "" -#: src/Module/Admin/Tos.php:83 +#: src/Module/Admin/Tos.php:69 msgid "" "Enter the Terms of Service for your node here. You can use BBCode. Headers " "of sections should be [h2] and below." msgstr "" -#: src/Module/Admin/Tos.php:84 +#: src/Module/Admin/Tos.php:70 msgid "The rules" msgstr "" -#: src/Module/Admin/Tos.php:84 +#: src/Module/Admin/Tos.php:70 msgid "Enter your system rules here. Each line represents one rule." msgstr "" -#: src/Module/Api/ApiResponse.php:293 +#: src/Module/Api/ApiResponse.php:279 #, php-format msgid "API endpoint %s %s is not implemented but might be in the future." msgstr "" -#: src/Module/Api/Mastodon/Apps.php:73 +#: src/Module/Api/Mastodon/Apps.php:59 msgid "Missing parameters" msgstr "" -#: src/Module/Api/Mastodon/Statuses/Bookmark.php:50 +#: src/Module/Api/Mastodon/Statuses/Bookmark.php:36 msgid "Only starting posts can be bookmarked" msgstr "" -#: src/Module/Api/Mastodon/Statuses/Mute.php:51 +#: src/Module/Api/Mastodon/Statuses/Mute.php:37 msgid "Only starting posts can be muted" msgstr "" -#: src/Module/Api/Mastodon/Statuses/Reblog.php:58 +#: src/Module/Api/Mastodon/Statuses/Reblog.php:44 #, php-format msgid "Posts from %s can't be shared" msgstr "" -#: src/Module/Api/Mastodon/Statuses/Unbookmark.php:51 +#: src/Module/Api/Mastodon/Statuses/Unbookmark.php:37 msgid "Only starting posts can be unbookmarked" msgstr "" -#: src/Module/Api/Mastodon/Statuses/Unmute.php:51 +#: src/Module/Api/Mastodon/Statuses/Unmute.php:37 msgid "Only starting posts can be unmuted" msgstr "" -#: src/Module/Api/Mastodon/Statuses/Unreblog.php:64 +#: src/Module/Api/Mastodon/Statuses/Unreblog.php:50 #, php-format msgid "Posts from %s can't be unshared" msgstr "" -#: src/Module/Api/Twitter/ContactEndpoint.php:66 +#: src/Module/Api/Twitter/ContactEndpoint.php:52 msgid "Contact not found" msgstr "" -#: src/Module/Apps.php:62 +#: src/Module/Apps.php:48 msgid "No installed applications." msgstr "Inga installerade applikationer." -#: src/Module/Apps.php:67 +#: src/Module/Apps.php:53 msgid "Applications" msgstr "Applikationer" -#: src/Module/Attach.php:49 src/Module/Attach.php:61 +#: src/Module/Attach.php:35 src/Module/Attach.php:47 msgid "Item was not found." msgstr "Objektet hittades inte." -#: src/Module/BaseAdmin.php:54 src/Module/BaseAdmin.php:58 -#: src/Module/BaseModeration.php:77 src/Module/BaseModeration.php:81 +#: src/Module/BaseAdmin.php:40 src/Module/BaseAdmin.php:44 +#: src/Module/BaseModeration.php:63 src/Module/BaseModeration.php:67 msgid "Please login to continue." msgstr "Vänligen logga in för att fortsätta." -#: src/Module/BaseAdmin.php:63 +#: src/Module/BaseAdmin.php:49 msgid "You don't have access to administration pages." msgstr "" -#: src/Module/BaseAdmin.php:67 +#: src/Module/BaseAdmin.php:53 msgid "" "Submanaged account can't access the administration pages. Please log back in" " as the main account." msgstr "" -#: src/Module/BaseAdmin.php:86 src/Module/BaseModeration.php:109 +#: src/Module/BaseAdmin.php:72 src/Module/BaseModeration.php:95 msgid "Overview" msgstr "" -#: src/Module/BaseAdmin.php:89 src/Module/BaseModeration.php:112 +#: src/Module/BaseAdmin.php:75 src/Module/BaseModeration.php:98 msgid "Configuration" msgstr "" -#: src/Module/BaseAdmin.php:94 src/Module/BaseSettings.php:110 +#: src/Module/BaseAdmin.php:80 src/Module/BaseSettings.php:96 msgid "Additional features" msgstr "Ytterligare funktioner" -#: src/Module/BaseAdmin.php:97 +#: src/Module/BaseAdmin.php:83 msgid "Database" msgstr "" -#: src/Module/BaseAdmin.php:98 +#: src/Module/BaseAdmin.php:84 msgid "DB updates" msgstr "DB-uppdateringar" -#: src/Module/BaseAdmin.php:99 +#: src/Module/BaseAdmin.php:85 msgid "Inspect Deferred Workers" msgstr "" -#: src/Module/BaseAdmin.php:100 +#: src/Module/BaseAdmin.php:86 msgid "Inspect worker Queue" msgstr "" -#: src/Module/BaseAdmin.php:106 src/Module/BaseModeration.php:120 +#: src/Module/BaseAdmin.php:92 src/Module/BaseModeration.php:106 msgid "Diagnostics" msgstr "" -#: src/Module/BaseAdmin.php:107 +#: src/Module/BaseAdmin.php:93 msgid "PHP Info" msgstr "" -#: src/Module/BaseAdmin.php:108 +#: src/Module/BaseAdmin.php:94 msgid "probe address" msgstr "" -#: src/Module/BaseAdmin.php:109 +#: src/Module/BaseAdmin.php:95 msgid "check webfinger" msgstr "" -#: src/Module/BaseAdmin.php:110 +#: src/Module/BaseAdmin.php:96 msgid "Babel" msgstr "" -#: src/Module/BaseAdmin.php:111 src/Module/Debug/ActivityPubConversion.php:137 +#: src/Module/BaseAdmin.php:97 src/Module/Debug/ActivityPubConversion.php:129 msgid "ActivityPub Conversion" msgstr "" -#: src/Module/BaseAdmin.php:120 +#: src/Module/BaseAdmin.php:106 msgid "Addon Features" msgstr "" -#: src/Module/BaseAdmin.php:121 src/Module/BaseModeration.php:129 +#: src/Module/BaseAdmin.php:107 src/Module/BaseModeration.php:115 msgid "User registrations waiting for confirmation" msgstr "Användarens registreringar väntar på bekräftelse" -#: src/Module/BaseApi.php:455 src/Module/BaseApi.php:471 -#: src/Module/BaseApi.php:487 +#: src/Module/BaseApi.php:441 src/Module/BaseApi.php:457 +#: src/Module/BaseApi.php:473 msgid "Too Many Requests" msgstr "" -#: src/Module/BaseApi.php:456 +#: src/Module/BaseApi.php:442 #, php-format msgid "Daily posting limit of %d post reached. The post was rejected." msgid_plural "Daily posting limit of %d posts reached. The post was rejected." msgstr[0] "Daglig gräns av %d upplägg nådd. Upplägget avvisades." msgstr[1] "Daglig gräns av %d upplägg nådd. Upplägget avvisades." -#: src/Module/BaseApi.php:472 +#: src/Module/BaseApi.php:458 #, php-format msgid "Weekly posting limit of %d post reached. The post was rejected." msgid_plural "" @@ -6048,7 +6064,7 @@ msgid_plural "" msgstr[0] "Veckovis gräns av %d inlägg nådd. Inlägged avvisades." msgstr[1] "Veckovis gräns av %d inlägg nådd. Inlägged avvisades." -#: src/Module/BaseApi.php:488 +#: src/Module/BaseApi.php:474 #, php-format msgid "Monthly posting limit of %d post reached. The post was rejected." msgid_plural "" @@ -6056,84 +6072,84 @@ msgid_plural "" msgstr[0] "" msgstr[1] "" -#: src/Module/BaseModeration.php:86 +#: src/Module/BaseModeration.php:72 msgid "You don't have access to moderation pages." msgstr "" -#: src/Module/BaseModeration.php:90 +#: src/Module/BaseModeration.php:76 msgid "" "Submanaged account can't access the moderation pages. Please log back in as " "the main account." msgstr "" -#: src/Module/BaseModeration.php:110 src/Module/Moderation/Reports.php:109 +#: src/Module/BaseModeration.php:96 src/Module/Moderation/Reports.php:101 msgid "Reports" msgstr "" -#: src/Module/BaseModeration.php:113 src/Module/Moderation/Users/Index.php:148 -#: src/Module/Moderation/Users/Index.php:158 +#: src/Module/BaseModeration.php:99 src/Module/Moderation/Users/Index.php:134 +#: src/Module/Moderation/Users/Index.php:144 msgid "Users" msgstr "Användare" -#: src/Module/BaseModeration.php:115 +#: src/Module/BaseModeration.php:101 msgid "Tools" msgstr "" -#: src/Module/BaseModeration.php:116 +#: src/Module/BaseModeration.php:102 msgid "Contact Blocklist" msgstr "" -#: src/Module/BaseModeration.php:117 +#: src/Module/BaseModeration.php:103 msgid "Server Blocklist" msgstr "" -#: src/Module/BaseModeration.php:118 src/Module/Moderation/Item/Delete.php:62 +#: src/Module/BaseModeration.php:104 src/Module/Moderation/Item/Delete.php:48 msgid "Delete Item" msgstr "Ta bort objekt" -#: src/Module/BaseModeration.php:121 src/Module/Moderation/Item/Source.php:76 +#: src/Module/BaseModeration.php:107 src/Module/Moderation/Item/Source.php:68 msgid "Item Source" msgstr "Objektets källa" -#: src/Module/BaseProfile.php:52 src/Module/Contact.php:506 +#: src/Module/BaseProfile.php:38 src/Module/Contact.php:488 msgid "Profile Details" msgstr "Profildetaljer" -#: src/Module/BaseProfile.php:60 +#: src/Module/BaseProfile.php:46 msgid "Conversations started" msgstr "" -#: src/Module/BaseProfile.php:111 +#: src/Module/BaseProfile.php:97 msgid "Only You Can See This" msgstr "Endast du kan se det här" -#: src/Module/BaseProfile.php:116 src/Module/Profile/Schedule.php:81 +#: src/Module/BaseProfile.php:102 src/Module/Profile/Schedule.php:67 msgid "Scheduled Posts" msgstr "" -#: src/Module/BaseProfile.php:119 +#: src/Module/BaseProfile.php:105 msgid "Posts that are scheduled for publishing" msgstr "" -#: src/Module/BaseProfile.php:138 src/Module/BaseProfile.php:141 +#: src/Module/BaseProfile.php:124 src/Module/BaseProfile.php:127 msgid "Tips for New Members" msgstr "Tips för nya medlemmar" -#: src/Module/BaseSearch.php:71 +#: src/Module/BaseSearch.php:57 #, php-format msgid "People Search - %s" msgstr "" -#: src/Module/BaseSearch.php:75 +#: src/Module/BaseSearch.php:61 #, php-format msgid "Group Search - %s" msgstr "" -#: src/Module/BaseSearch.php:121 src/Module/Contact/MatchInterests.php:140 +#: src/Module/BaseSearch.php:107 src/Module/Contact/MatchInterests.php:136 msgid "No matches" msgstr "Ingen träff" -#: src/Module/BaseSearch.php:147 +#: src/Module/BaseSearch.php:133 #, php-format msgid "" "%d result was filtered out because your node blocks the domain it is " @@ -6146,594 +6162,590 @@ msgid_plural "" msgstr[0] "" msgstr[1] "" -#: src/Module/BaseSettings.php:78 +#: src/Module/BaseSettings.php:64 msgid "Account" msgstr "Konto" -#: src/Module/BaseSettings.php:85 src/Module/Security/TwoFactor/Verify.php:96 -#: src/Module/Settings/TwoFactor/Index.php:138 +#: src/Module/BaseSettings.php:71 src/Module/Security/TwoFactor/Verify.php:82 +#: src/Module/Settings/TwoFactor/Index.php:124 msgid "Two-factor authentication" msgstr "" -#: src/Module/BaseSettings.php:118 +#: src/Module/BaseSettings.php:104 msgid "Display" msgstr "Skärm" -#: src/Module/BaseSettings.php:132 src/Module/Settings/Connectors.php:204 +#: src/Module/BaseSettings.php:118 src/Module/Settings/Connectors.php:195 msgid "Social Networks" msgstr "Sociala nätverk" -#: src/Module/BaseSettings.php:146 src/Module/Settings/Delegation.php:194 +#: src/Module/BaseSettings.php:132 src/Module/Settings/Delegation.php:180 msgid "Manage Accounts" msgstr "" -#: src/Module/BaseSettings.php:153 +#: src/Module/BaseSettings.php:139 msgid "Connected apps" msgstr "Anslutna appar" -#: src/Module/BaseSettings.php:160 +#: src/Module/BaseSettings.php:146 msgid "Remote servers" msgstr "" -#: src/Module/BaseSettings.php:167 src/Module/Settings/UserExport.php:98 +#: src/Module/BaseSettings.php:153 src/Module/Settings/UserExport.php:84 msgid "Export personal data" msgstr "Exporter personlig data" -#: src/Module/BaseSettings.php:174 +#: src/Module/BaseSettings.php:160 msgid "Remove account" msgstr "Ta bort konto" -#: src/Module/Bookmarklet.php:54 +#: src/Module/Bookmarklet.php:40 msgid "This page is missing a url parameter." msgstr "" -#: src/Module/Bookmarklet.php:66 +#: src/Module/Bookmarklet.php:52 msgid "The post was created" msgstr "Inlägget skapades" -#: src/Module/Calendar/Event/API.php:100 src/Module/Calendar/Event/API.php:135 -#: src/Module/Calendar/Event/Form.php:80 +#: src/Module/Calendar/Event/API.php:86 src/Module/Calendar/Event/API.php:121 +#: src/Module/Calendar/Event/Form.php:66 msgid "Invalid Request" msgstr "" -#: src/Module/Calendar/Event/API.php:109 +#: src/Module/Calendar/Event/API.php:95 msgid "Event id is missing." msgstr "" -#: src/Module/Calendar/Event/API.php:131 +#: src/Module/Calendar/Event/API.php:117 msgid "Failed to remove event" msgstr "Borttagning av evenemanget misslyckades" -#: src/Module/Calendar/Event/API.php:187 src/Module/Calendar/Event/API.php:189 +#: src/Module/Calendar/Event/API.php:173 src/Module/Calendar/Event/API.php:175 msgid "Event can not end before it has started." msgstr "Evenemanget kan inte sluta före det har börjat." -#: src/Module/Calendar/Event/API.php:196 src/Module/Calendar/Event/API.php:198 +#: src/Module/Calendar/Event/API.php:182 src/Module/Calendar/Event/API.php:184 msgid "Event title and start time are required." msgstr "Evenemangets titel och start-tid krävs." -#: src/Module/Calendar/Event/Form.php:208 +#: src/Module/Calendar/Event/Form.php:194 msgid "Starting date and Title are required." msgstr "Start-datum och titel krävs." -#: src/Module/Calendar/Event/Form.php:209 -#: src/Module/Calendar/Event/Form.php:214 +#: src/Module/Calendar/Event/Form.php:195 +#: src/Module/Calendar/Event/Form.php:200 msgid "Event Starts:" msgstr "Evenemanget börjar:" -#: src/Module/Calendar/Event/Form.php:209 -#: src/Module/Calendar/Event/Form.php:237 src/Module/Debug/Probe.php:59 -#: src/Module/Install.php:201 src/Module/Install.php:227 -#: src/Module/Install.php:232 src/Module/Install.php:246 -#: src/Module/Install.php:255 src/Module/Install.php:260 -#: src/Module/Install.php:266 src/Module/Install.php:271 -#: src/Module/Install.php:285 src/Module/Install.php:298 -#: src/Module/Install.php:325 -#: src/Module/Moderation/Blocklist/Server/Add.php:136 -#: src/Module/Moderation/Blocklist/Server/Add.php:138 -#: src/Module/Moderation/Blocklist/Server/Import.php:129 -#: src/Module/Moderation/Blocklist/Server/Index.php:86 -#: src/Module/Moderation/Blocklist/Server/Index.php:87 -#: src/Module/Moderation/Blocklist/Server/Index.php:115 -#: src/Module/Moderation/Blocklist/Server/Index.php:116 -#: src/Module/Moderation/Item/Delete.php:67 src/Module/Register.php:149 -#: src/Module/Security/TwoFactor/Verify.php:101 -#: src/Module/Settings/Channels.php:190 src/Module/Settings/Channels.php:211 -#: src/Module/Settings/TwoFactor/Index.php:161 -#: src/Module/Settings/TwoFactor/Verify.php:158 +#: src/Module/Calendar/Event/Form.php:195 +#: src/Module/Calendar/Event/Form.php:223 src/Module/Debug/Probe.php:45 +#: src/Module/Install.php:187 src/Module/Install.php:213 +#: src/Module/Install.php:218 src/Module/Install.php:232 +#: src/Module/Install.php:241 src/Module/Install.php:246 +#: src/Module/Install.php:252 src/Module/Install.php:257 +#: src/Module/Install.php:271 src/Module/Install.php:284 +#: src/Module/Install.php:311 +#: src/Module/Moderation/Blocklist/Server/Add.php:122 +#: src/Module/Moderation/Blocklist/Server/Add.php:124 +#: src/Module/Moderation/Blocklist/Server/Import.php:113 +#: src/Module/Moderation/Blocklist/Server/Index.php:72 +#: src/Module/Moderation/Blocklist/Server/Index.php:73 +#: src/Module/Moderation/Blocklist/Server/Index.php:101 +#: src/Module/Moderation/Blocklist/Server/Index.php:102 +#: src/Module/Moderation/Item/Delete.php:53 src/Module/Register.php:141 +#: src/Module/Security/TwoFactor/Verify.php:87 +#: src/Module/Settings/Channels.php:176 src/Module/Settings/Channels.php:197 +#: src/Module/Settings/TwoFactor/Index.php:147 +#: src/Module/Settings/TwoFactor/Verify.php:144 msgid "Required" msgstr "Krävs" -#: src/Module/Calendar/Event/Form.php:223 -#: src/Module/Calendar/Event/Form.php:247 +#: src/Module/Calendar/Event/Form.php:209 +#: src/Module/Calendar/Event/Form.php:233 msgid "Finish date/time is not known or not relevant" msgstr "Slut-datum/tid är inte känt eller icke relevant" -#: src/Module/Calendar/Event/Form.php:225 -#: src/Module/Calendar/Event/Form.php:230 +#: src/Module/Calendar/Event/Form.php:211 +#: src/Module/Calendar/Event/Form.php:216 msgid "Event Finishes:" msgstr "Evenemanget slutar:" -#: src/Module/Calendar/Event/Form.php:237 -#: src/Module/Calendar/Event/Form.php:243 +#: src/Module/Calendar/Event/Form.php:223 +#: src/Module/Calendar/Event/Form.php:229 msgid "Title (BBCode not allowed)" msgstr "" -#: src/Module/Calendar/Event/Form.php:239 +#: src/Module/Calendar/Event/Form.php:225 msgid "Description (BBCode allowed)" msgstr "" -#: src/Module/Calendar/Event/Form.php:241 +#: src/Module/Calendar/Event/Form.php:227 msgid "Location (BBCode not allowed)" msgstr "" -#: src/Module/Calendar/Event/Form.php:244 -#: src/Module/Calendar/Event/Form.php:245 +#: src/Module/Calendar/Event/Form.php:230 +#: src/Module/Calendar/Event/Form.php:231 msgid "Share this event" msgstr "Dela det här evenemanget" -#: src/Module/Calendar/Event/Form.php:251 src/Module/Profile/Profile.php:275 +#: src/Module/Calendar/Event/Form.php:237 src/Module/Profile/Profile.php:263 msgid "Basic" msgstr "Standard" -#: src/Module/Calendar/Export.php:94 +#: src/Module/Calendar/Export.php:80 msgid "This calendar format is not supported" msgstr "Kalenderformatet stöds inte" -#: src/Module/Calendar/Export.php:96 +#: src/Module/Calendar/Export.php:82 msgid "No exportable data found" msgstr "Inga data att exportera hittades" -#: src/Module/Calendar/Export.php:113 +#: src/Module/Calendar/Export.php:99 msgid "calendar" msgstr "kalender" -#: src/Module/Calendar/Show.php:124 +#: src/Module/Calendar/Show.php:110 msgid "Events" msgstr "Evenemang" -#: src/Module/Calendar/Show.php:125 +#: src/Module/Calendar/Show.php:111 msgid "View" msgstr "Visa" -#: src/Module/Calendar/Show.php:126 +#: src/Module/Calendar/Show.php:112 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:118 src/Module/Settings/Display.php:283 msgid "list" msgstr "lista" -#: src/Module/Circle.php:57 +#: src/Module/Circle.php:43 msgid "Could not create circle." msgstr "" -#: src/Module/Circle.php:68 src/Module/Circle.php:216 -#: src/Module/Circle.php:240 +#: src/Module/Circle.php:54 src/Module/Circle.php:202 +#: src/Module/Circle.php:226 msgid "Circle not found." msgstr "" -#: src/Module/Circle.php:74 +#: src/Module/Circle.php:60 msgid "Circle name was not changed." msgstr "" -#: src/Module/Circle.php:92 +#: src/Module/Circle.php:78 msgid "Unknown circle." msgstr "" -#: src/Module/Circle.php:98 src/Module/Circle.php:107 -#: src/Module/Contact/Advanced.php:70 src/Module/Contact/Advanced.php:109 -#: src/Module/Contact/Contacts.php:71 src/Module/Contact/Conversations.php:86 -#: src/Module/Contact/Conversations.php:91 -#: src/Module/Contact/Conversations.php:96 src/Module/Contact/Media.php:61 -#: src/Module/Contact/Posts.php:78 src/Module/Contact/Posts.php:83 -#: src/Module/Contact/Posts.php:88 src/Module/Contact/Profile.php:159 -#: src/Module/Contact/Profile.php:164 src/Module/Contact/Profile.php:169 -#: src/Module/Contact/Redir.php:95 src/Module/Contact/Redir.php:141 -#: src/Module/FriendSuggest.php:71 src/Module/FriendSuggest.php:109 +#: src/Module/Circle.php:84 src/Module/Circle.php:93 +#: src/Module/Contact/Advanced.php:56 src/Module/Contact/Advanced.php:95 +#: src/Module/Contact/Contacts.php:57 src/Module/Contact/Conversations.php:72 +#: src/Module/Contact/Conversations.php:77 +#: src/Module/Contact/Conversations.php:82 src/Module/Contact/Media.php:47 +#: src/Module/Contact/Posts.php:64 src/Module/Contact/Posts.php:69 +#: src/Module/Contact/Posts.php:74 src/Module/Contact/Profile.php:145 +#: src/Module/Contact/Profile.php:150 src/Module/Contact/Profile.php:169 +#: src/Module/Contact/Redir.php:77 src/Module/Contact/Redir.php:131 +#: src/Module/FriendSuggest.php:57 src/Module/FriendSuggest.php:95 msgid "Contact not found." msgstr "Kontakten hittades inte." -#: src/Module/Circle.php:102 src/Module/Contact/Contacts.php:66 +#: src/Module/Circle.php:88 src/Module/Contact/Contacts.php:52 msgid "Invalid contact." msgstr "Ogiltig kontakt." -#: src/Module/Circle.php:111 src/Module/Contact/Revoke.php:73 +#: src/Module/Circle.php:97 src/Module/Contact/Revoke.php:56 msgid "Contact is deleted." msgstr "" -#: src/Module/Circle.php:117 +#: src/Module/Circle.php:103 msgid "Unable to add the contact to the circle." msgstr "" -#: src/Module/Circle.php:120 +#: src/Module/Circle.php:106 msgid "Contact successfully added to circle." msgstr "" -#: src/Module/Circle.php:124 +#: src/Module/Circle.php:110 msgid "Unable to remove the contact from the circle." msgstr "" -#: src/Module/Circle.php:127 +#: src/Module/Circle.php:113 msgid "Contact successfully removed from circle." msgstr "" -#: src/Module/Circle.php:131 +#: src/Module/Circle.php:117 msgid "Bad request." msgstr "" -#: src/Module/Circle.php:172 +#: src/Module/Circle.php:158 msgid "Save Circle" msgstr "" -#: src/Module/Circle.php:173 +#: src/Module/Circle.php:159 msgid "Filter" msgstr "" -#: src/Module/Circle.php:179 +#: src/Module/Circle.php:165 msgid "Create a circle of contacts/friends." msgstr "" -#: src/Module/Circle.php:221 +#: src/Module/Circle.php:207 msgid "Unable to remove circle." msgstr "" -#: src/Module/Circle.php:272 +#: src/Module/Circle.php:258 msgid "Delete Circle" msgstr "" -#: src/Module/Circle.php:282 +#: src/Module/Circle.php:268 msgid "Edit Circle Name" msgstr "" -#: src/Module/Circle.php:292 +#: src/Module/Circle.php:278 msgid "Members" msgstr "Medlemmar" -#: src/Module/Circle.php:295 +#: src/Module/Circle.php:281 msgid "Circle is empty" msgstr "" -#: src/Module/Circle.php:311 +#: src/Module/Circle.php:297 msgid "Remove contact from circle" msgstr "" -#: src/Module/Circle.php:334 +#: src/Module/Circle.php:320 msgid "Click on a contact to add or remove." msgstr "Klicka på en kontakt för att lägga till eller ta bort." -#: src/Module/Circle.php:351 +#: src/Module/Circle.php:337 msgid "Add contact to circle" msgstr "" -#: src/Module/Contact.php:96 +#: src/Module/Contact.php:88 #, php-format msgid "%d contact edited." msgid_plural "%d contacts edited." msgstr[0] "" msgstr[1] "" -#: src/Module/Contact.php:347 +#: src/Module/Contact.php:328 msgid "Show all contacts" msgstr "Visa alla kontakter" -#: src/Module/Contact.php:352 src/Module/Contact.php:431 -#: src/Module/Moderation/BaseUsers.php:85 +#: src/Module/Contact.php:333 src/Module/Contact.php:412 +#: src/Module/Moderation/BaseUsers.php:72 msgid "Pending" msgstr "Väntande" -#: src/Module/Contact.php:355 +#: src/Module/Contact.php:336 msgid "Only show pending contacts" msgstr "" -#: src/Module/Contact.php:360 src/Module/Contact.php:434 -#: src/Module/Moderation/BaseUsers.php:93 +#: src/Module/Contact.php:341 src/Module/Contact.php:415 +#: src/Module/Moderation/BaseUsers.php:80 msgid "Blocked" msgstr "Blockerad" -#: src/Module/Contact.php:363 +#: src/Module/Contact.php:344 msgid "Only show blocked contacts" msgstr "Visa endast blockerade kontakter" -#: src/Module/Contact.php:368 src/Module/Contact.php:440 -#: src/Module/Settings/Server/Index.php:107 src/Object/Post.php:399 +#: src/Module/Contact.php:349 src/Module/Contact.php:421 +#: src/Module/Settings/Server/Index.php:93 src/Object/Post.php:385 msgid "Ignored" msgstr "Ignorerade" -#: src/Module/Contact.php:371 +#: src/Module/Contact.php:352 msgid "Only show ignored contacts" msgstr "Visa endast ignorerade kontakter" -#: src/Module/Contact.php:376 src/Module/Contact.php:443 +#: src/Module/Contact.php:357 src/Module/Contact.php:424 msgid "Collapsed" msgstr "" -#: src/Module/Contact.php:379 +#: src/Module/Contact.php:360 msgid "Only show collapsed contacts" msgstr "" -#: src/Module/Contact.php:384 src/Module/Contact.php:446 +#: src/Module/Contact.php:365 src/Module/Contact.php:427 msgid "Archived" msgstr "Arkiverat" -#: src/Module/Contact.php:387 +#: src/Module/Contact.php:368 msgid "Only show archived contacts" msgstr "Visa endast arkiverade kontakter" -#: src/Module/Contact.php:392 src/Module/Contact.php:437 +#: src/Module/Contact.php:373 src/Module/Contact.php:418 msgid "Hidden" msgstr "Gömda" -#: src/Module/Contact.php:395 +#: src/Module/Contact.php:376 msgid "Only show hidden contacts" msgstr "Visa endast gömda kontakter" -#: src/Module/Contact.php:403 +#: src/Module/Contact.php:384 msgid "Organize your contact circles" msgstr "" -#: src/Module/Contact.php:458 +#: src/Module/Contact.php:439 msgid "Search your contacts" msgstr "Sök dina kontakter" -#: src/Module/Contact.php:459 src/Module/Search/Index.php:207 +#: src/Module/Contact.php:440 src/Module/Search/Index.php:193 #, php-format msgid "Results for: %s" msgstr "" -#: src/Module/Contact.php:466 +#: src/Module/Contact.php:448 msgid "Update" msgstr "Uppdatera" -#: src/Module/Contact.php:467 src/Module/Contact/Profile.php:518 -#: src/Module/Moderation/Blocklist/Contact.php:117 -#: src/Module/Moderation/Users/Blocked.php:138 -#: src/Module/Moderation/Users/Index.php:154 +#: src/Module/Contact.php:449 src/Module/Contact/Profile.php:518 +#: src/Module/Moderation/Blocklist/Contact.php:103 +#: src/Module/Moderation/Users/Blocked.php:124 +#: src/Module/Moderation/Users/Index.php:140 msgid "Unblock" msgstr "Avblockera" -#: src/Module/Contact.php:468 src/Module/Contact/Profile.php:526 +#: src/Module/Contact.php:450 src/Module/Contact/Profile.php:526 msgid "Unignore" msgstr "Sluta ignorera" -#: src/Module/Contact.php:469 src/Module/Contact/Profile.php:534 +#: src/Module/Contact.php:451 src/Module/Contact/Profile.php:534 msgid "Uncollapse" msgstr "" -#: src/Module/Contact.php:471 +#: src/Module/Contact.php:453 msgid "Batch Actions" msgstr "" -#: src/Module/Contact.php:514 +#: src/Module/Contact.php:496 msgid "Conversations started by this contact" msgstr "" -#: src/Module/Contact.php:519 +#: src/Module/Contact.php:501 msgid "Posts and Comments" msgstr "" -#: src/Module/Contact.php:522 +#: src/Module/Contact.php:504 msgid "Individual Posts and Replies" msgstr "" -#: src/Module/Contact.php:530 +#: src/Module/Contact.php:512 msgid "Posts containing media objects" msgstr "" -#: src/Module/Contact.php:538 +#: src/Module/Contact.php:520 msgid "View all known contacts" msgstr "" -#: src/Module/Contact.php:549 +#: src/Module/Contact.php:531 msgid "Advanced Contact Settings" msgstr "" -#: src/Module/Contact.php:585 +#: src/Module/Contact.php:567 msgid "Mutual Friendship" msgstr "Ömsesidig vänskap" -#: src/Module/Contact.php:589 +#: src/Module/Contact.php:571 msgid "is a fan of yours" msgstr "är ett fan till dig" -#: src/Module/Contact.php:593 +#: src/Module/Contact.php:575 msgid "you are a fan of" msgstr "du är fan till" -#: src/Module/Contact.php:611 +#: src/Module/Contact.php:593 msgid "Pending outgoing contact request" msgstr "Väntande utgående kontaktbegäran" -#: src/Module/Contact.php:613 +#: src/Module/Contact.php:595 msgid "Pending incoming contact request" msgstr "Väntande inkommande kontaktbegäran" -#: src/Module/Contact.php:626 src/Module/Contact/Profile.php:377 +#: src/Module/Contact.php:608 src/Module/Contact/Profile.php:377 #, php-format msgid "Visit %s's profile [%s]" msgstr "Besök %s's profil [%s]" -#: src/Module/Contact/Advanced.php:99 +#: src/Module/Contact/Advanced.php:85 msgid "Contact update failed." msgstr "Det gick inte att uppdatera kontakt." -#: src/Module/Contact/Advanced.php:130 +#: src/Module/Contact/Advanced.php:116 msgid "Return to contact editor" msgstr "" -#: src/Module/Contact/Advanced.php:134 -#: src/Module/Moderation/Blocklist/Contact.php:122 -#: src/Module/Moderation/Reports.php:110 -#: src/Module/Moderation/Users/Active.php:126 -#: src/Module/Moderation/Users/Blocked.php:126 -#: src/Module/Moderation/Users/Create.php:70 -#: src/Module/Moderation/Users/Deleted.php:83 -#: src/Module/Moderation/Users/Index.php:140 -#: src/Module/Moderation/Users/Index.php:160 -#: src/Module/Moderation/Users/Pending.php:99 src/Module/Settings/OAuth.php:72 +#: src/Module/Contact/Advanced.php:120 +#: src/Module/Moderation/Blocklist/Contact.php:108 +#: src/Module/Moderation/Reports.php:102 +#: src/Module/Moderation/Users/Active.php:112 +#: src/Module/Moderation/Users/Blocked.php:112 +#: src/Module/Moderation/Users/Create.php:56 +#: src/Module/Moderation/Users/Deleted.php:69 +#: src/Module/Moderation/Users/Index.php:126 +#: src/Module/Moderation/Users/Index.php:146 +#: src/Module/Moderation/Users/Pending.php:85 src/Module/Settings/OAuth.php:58 msgid "Name" msgstr "Namn" -#: src/Module/Contact/Advanced.php:135 +#: src/Module/Contact/Advanced.php:121 msgid "Account Nickname" msgstr "" -#: src/Module/Contact/Advanced.php:136 +#: src/Module/Contact/Advanced.php:122 msgid "Account URL" msgstr "" -#: src/Module/Contact/Advanced.php:137 +#: src/Module/Contact/Advanced.php:123 msgid "Poll/Feed URL" msgstr "" -#: src/Module/Contact/Advanced.php:138 +#: src/Module/Contact/Advanced.php:124 msgid "New photo from this URL" msgstr "Nytt foto från den här webbadressen" -#: src/Module/Contact/Contacts.php:89 +#: src/Module/Contact/Contacts.php:75 msgid "No known contacts." msgstr "Inga kända kontakter." -#: src/Module/Contact/Contacts.php:103 src/Module/Profile/Common.php:128 +#: src/Module/Contact/Contacts.php:89 src/Module/Profile/Common.php:114 msgid "No common contacts." msgstr "Inga gemensamma kontakter." -#: src/Module/Contact/Contacts.php:115 src/Module/Profile/Contacts.php:135 +#: src/Module/Contact/Contacts.php:101 src/Module/Profile/Contacts.php:121 #, php-format msgid "Follower (%s)" msgid_plural "Followers (%s)" msgstr[0] "Följare (%s)" msgstr[1] "Följare (%s)" -#: src/Module/Contact/Contacts.php:119 src/Module/Profile/Contacts.php:138 +#: src/Module/Contact/Contacts.php:105 src/Module/Profile/Contacts.php:124 #, php-format msgid "Following (%s)" msgid_plural "Following (%s)" msgstr[0] "Följer (%s)" msgstr[1] "Följer (%s)" -#: src/Module/Contact/Contacts.php:123 src/Module/Profile/Contacts.php:141 +#: src/Module/Contact/Contacts.php:109 src/Module/Profile/Contacts.php:127 #, php-format msgid "Mutual friend (%s)" msgid_plural "Mutual friends (%s)" msgstr[0] "Gemensam vän (%s)" msgstr[1] "Gemensamma vänner (%s)" -#: src/Module/Contact/Contacts.php:125 src/Module/Profile/Contacts.php:143 +#: src/Module/Contact/Contacts.php:111 src/Module/Profile/Contacts.php:129 #, php-format msgid "These contacts both follow and are followed by %s." msgstr "" -#: src/Module/Contact/Contacts.php:131 src/Module/Profile/Common.php:116 +#: src/Module/Contact/Contacts.php:117 src/Module/Profile/Common.php:102 #, php-format msgid "Common contact (%s)" msgid_plural "Common contacts (%s)" msgstr[0] "" msgstr[1] "" -#: src/Module/Contact/Contacts.php:133 src/Module/Profile/Common.php:118 +#: src/Module/Contact/Contacts.php:119 src/Module/Profile/Common.php:104 #, php-format msgid "" "Both %s and yourself have publicly interacted with these " "contacts (follow, comment or likes on public posts)." msgstr "" -#: src/Module/Contact/Contacts.php:139 src/Module/Profile/Contacts.php:149 +#: src/Module/Contact/Contacts.php:125 src/Module/Profile/Contacts.php:135 #, php-format msgid "Contact (%s)" msgid_plural "Contacts (%s)" msgstr[0] "" msgstr[1] "" -#: src/Module/Contact/Follow.php:70 src/Module/Contact/Redir.php:63 -#: src/Module/Contact/Redir.php:223 src/Module/Conversation/Community.php:166 -#: src/Module/Debug/ItemBody.php:38 src/Module/Diaspora/Receive.php:57 -#: src/Module/Item/Display.php:96 src/Module/Item/Feed.php:59 -#: src/Module/Item/Follow.php:41 src/Module/Item/Ignore.php:41 -#: src/Module/Item/Language.php:53 src/Module/Item/Pin.php:41 -#: src/Module/Item/Pin.php:56 src/Module/Item/Searchtext.php:53 -#: src/Module/Item/Star.php:42 src/Module/Update/Display.php:37 +#: src/Module/Contact/Follow.php:56 src/Module/Contact/Redir.php:45 +#: src/Module/Contact/Redir.php:206 src/Module/Conversation/Community.php:154 +#: src/Module/Debug/ItemBody.php:24 src/Module/Diaspora/Receive.php:45 +#: src/Module/Item/Display.php:82 src/Module/Item/Feed.php:45 +#: src/Module/Item/Follow.php:27 src/Module/Item/Ignore.php:27 +#: src/Module/Item/Language.php:39 src/Module/Item/Pin.php:27 +#: src/Module/Item/Pin.php:42 src/Module/Item/Searchtext.php:39 +#: src/Module/Item/Star.php:28 src/Module/Update/Display.php:23 msgid "Access denied." msgstr "Åtkomst nekad." -#: src/Module/Contact/Follow.php:105 src/Module/Contact/Unfollow.php:125 -#: src/Module/Profile/RemoteFollow.php:133 +#: src/Module/Contact/Follow.php:91 src/Module/Contact/Unfollow.php:111 +#: src/Module/Profile/RemoteFollow.php:119 msgid "Submit Request" msgstr "Skicka förfrågan" -#: src/Module/Contact/Follow.php:115 +#: src/Module/Contact/Follow.php:101 msgid "You already added this contact." msgstr "Du har redan lagt till den här kontakten." -#: src/Module/Contact/Follow.php:130 +#: src/Module/Contact/Follow.php:116 msgid "The network type couldn't be detected. Contact can't be added." msgstr "Nätverkstypen kunde inte upptäckas. Kontakten kan inte läggas till." -#: src/Module/Contact/Follow.php:138 +#: src/Module/Contact/Follow.php:124 msgid "Diaspora support isn't enabled. Contact can't be added." msgstr "Stödet för Diaspora är inte aktiverat. Kontakten kan inte läggas till." -#: src/Module/Contact/Follow.php:143 -msgid "OStatus support is disabled. Contact can't be added." -msgstr "Stödet för OStatus är inaktiverat. Kontakten kan inte läggas till." - -#: src/Module/Contact/Follow.php:168 src/Module/Profile/RemoteFollow.php:132 +#: src/Module/Contact/Follow.php:149 src/Module/Profile/RemoteFollow.php:118 msgid "Please answer the following:" msgstr "Var vänlig besvara följande:" -#: src/Module/Contact/Follow.php:169 src/Module/Contact/Unfollow.php:123 +#: src/Module/Contact/Follow.php:150 src/Module/Contact/Unfollow.php:109 msgid "Your Identity Address:" msgstr "Din adress (ditt ID):" -#: src/Module/Contact/Follow.php:170 src/Module/Contact/Profile.php:408 -#: src/Module/Contact/Unfollow.php:129 -#: src/Module/Moderation/Blocklist/Contact.php:131 -#: src/Module/Moderation/Reports.php:117 -#: src/Module/Notifications/Introductions.php:129 -#: src/Module/Notifications/Introductions.php:198 +#: src/Module/Contact/Follow.php:151 src/Module/Contact/Profile.php:408 +#: src/Module/Contact/Unfollow.php:115 +#: src/Module/Moderation/Blocklist/Contact.php:117 +#: src/Module/Moderation/Reports.php:109 +#: src/Module/Notifications/Introductions.php:121 +#: src/Module/Notifications/Introductions.php:190 msgid "Profile URL" msgstr "URL för profil" -#: src/Module/Contact/Follow.php:171 src/Module/Contact/Profile.php:420 -#: src/Module/Notifications/Introductions.php:191 -#: src/Module/Profile/Profile.php:234 +#: src/Module/Contact/Follow.php:152 src/Module/Contact/Profile.php:420 +#: src/Module/Notifications/Introductions.php:183 +#: src/Module/Profile/Profile.php:222 msgid "Tags:" msgstr "Taggar:" -#: src/Module/Contact/Follow.php:182 +#: src/Module/Contact/Follow.php:163 #, php-format msgid "%s knows you" msgstr "%s känner dig" -#: src/Module/Contact/Follow.php:183 +#: src/Module/Contact/Follow.php:164 msgid "Add a personal note:" msgstr "Lägg till ett personligt meddelande:" -#: src/Module/Contact/Follow.php:192 src/Module/Contact/Unfollow.php:138 +#: src/Module/Contact/Follow.php:173 src/Module/Contact/Unfollow.php:124 msgid "Posts and Replies" msgstr "" -#: src/Module/Contact/Follow.php:221 +#: src/Module/Contact/Follow.php:202 msgid "The contact could not be added." msgstr "Kontakten kunde inte läggas till." -#: src/Module/Contact/MatchInterests.php:95 -#: src/Module/Media/Attachment/Upload.php:77 -#: src/Module/Media/Attachment/Upload.php:82 -#: src/Module/Media/Photo/Upload.php:81 src/Module/Media/Photo/Upload.php:86 -#: src/Module/Media/Photo/Upload.php:135 +#: src/Module/Contact/MatchInterests.php:81 +#: src/Module/Media/Attachment/Upload.php:63 +#: src/Module/Media/Attachment/Upload.php:68 +#: src/Module/Media/Photo/Upload.php:67 src/Module/Media/Photo/Upload.php:72 +#: src/Module/Media/Photo/Upload.php:121 msgid "Invalid request." msgstr "Ogiltig förfrågning." -#: src/Module/Contact/MatchInterests.php:102 +#: src/Module/Contact/MatchInterests.php:88 msgid "No keywords to match. Please add keywords to your profile." msgstr "" -#: src/Module/Contact/MatchInterests.php:145 +#: src/Module/Contact/MatchInterests.php:141 msgid "Profile Match" msgstr "Matcha profiler" -#: src/Module/Contact/Profile.php:145 +#: src/Module/Contact/Profile.php:131 msgid "Failed to update contact record." msgstr "Det blev fel när kontakten skulle uppdateras." @@ -6871,7 +6883,7 @@ msgid "Block/Unblock contact" msgstr "Spärra kontakt eller häv spärr" #: src/Module/Contact/Profile.php:379 -#: src/Module/Moderation/Report/Create.php:293 +#: src/Module/Moderation/Report/Create.php:279 msgid "Ignore contact" msgstr "Ignorera kontakt" @@ -6916,7 +6928,7 @@ msgid "Manage remote servers" msgstr "" #: src/Module/Contact/Profile.php:400 -#: src/Module/Notifications/Introductions.php:192 +#: src/Module/Notifications/Introductions.php:184 msgid "Hide this contact from others" msgstr "Göm den här kontakten för andra" @@ -6944,12 +6956,12 @@ msgid "" msgstr "" #: src/Module/Contact/Profile.php:421 -#: src/Module/Settings/TwoFactor/Index.php:160 +#: src/Module/Settings/TwoFactor/Index.php:146 msgid "Actions" msgstr "" #: src/Module/Contact/Profile.php:423 -#: src/Module/Settings/TwoFactor/Index.php:140 view/theme/frio/theme.php:232 +#: src/Module/Settings/TwoFactor/Index.php:126 view/theme/frio/theme.php:220 msgid "Status" msgstr "Status" @@ -7024,8 +7036,8 @@ msgstr "" #: src/Module/Contact/Profile.php:441 msgid "" -"If enabled, posts from this contact will only appear in channels, but not in" -" the network stream." +"If enabled, posts from this contact will only appear in channels and network" +" streams in circles, but not in the general network stream." msgstr "" #: src/Module/Contact/Profile.php:509 @@ -7044,7 +7056,7 @@ msgstr "" msgid "Toggle Collapsed status" msgstr "" -#: src/Module/Contact/Profile.php:543 src/Module/Contact/Revoke.php:106 +#: src/Module/Contact/Profile.php:543 src/Module/Contact/Revoke.php:89 msgid "Revoke Follow" msgstr "" @@ -7052,639 +7064,635 @@ msgstr "" msgid "Revoke the follow from this contact" msgstr "" -#: src/Module/Contact/Redir.php:135 src/Module/Contact/Redir.php:187 +#: src/Module/Contact/Redir.php:125 msgid "Bad Request." msgstr "Dålig begäran." -#: src/Module/Contact/Revoke.php:63 -msgid "Unknown contact." -msgstr "" - -#: src/Module/Contact/Revoke.php:77 +#: src/Module/Contact/Revoke.php:60 msgid "Contact is being deleted." msgstr "" -#: src/Module/Contact/Revoke.php:91 +#: src/Module/Contact/Revoke.php:74 msgid "Follow was successfully revoked." msgstr "" -#: src/Module/Contact/Revoke.php:107 +#: src/Module/Contact/Revoke.php:90 msgid "" "Do you really want to revoke this contact's follow? This cannot be undone " "and they will have to manually follow you back again." msgstr "" -#: src/Module/Contact/Suggestions.php:62 +#: src/Module/Contact/Suggestions.php:48 msgid "" "No suggestions available. If this is a new site, please try again in 24 " "hours." msgstr "" -#: src/Module/Contact/Unfollow.php:98 src/Module/Contact/Unfollow.php:167 +#: src/Module/Contact/Unfollow.php:84 src/Module/Contact/Unfollow.php:153 msgid "You aren't following this contact." msgstr "Du följer inte den här kontakten." -#: src/Module/Contact/Unfollow.php:103 +#: src/Module/Contact/Unfollow.php:89 msgid "Unfollowing is currently not supported by your network." msgstr "Avföljning stöds för närvarande inte av ditt nätverk." -#: src/Module/Contact/Unfollow.php:121 +#: src/Module/Contact/Unfollow.php:107 msgid "Disconnect/Unfollow" msgstr "Koppla ur/Avfölj" -#: src/Module/Contact/Unfollow.php:175 +#: src/Module/Contact/Unfollow.php:161 msgid "Contact was successfully unfollowed" msgstr "Avföljningen av kontakten lyckades" -#: src/Module/Contact/Unfollow.php:178 +#: src/Module/Contact/Unfollow.php:164 msgid "Unable to unfollow this contact, please contact your administrator" msgstr "" -#: src/Module/Conversation/Channel.php:139 -#: src/Module/Conversation/Community.php:126 src/Module/Search/Index.php:152 -#: src/Module/Search/Index.php:194 +#: src/Module/Conversation/Channel.php:125 +#: src/Module/Conversation/Community.php:114 src/Module/Search/Index.php:138 +#: src/Module/Search/Index.php:180 msgid "No results." msgstr "Inga resultat." -#: src/Module/Conversation/Channel.php:177 +#: src/Module/Conversation/Channel.php:163 msgid "Channel not available." msgstr "" -#: src/Module/Conversation/Community.php:92 +#: src/Module/Conversation/Community.php:80 msgid "" "This community stream shows all public posts received by this node. They may" " not reflect the opinions of this node’s users." msgstr "" -#: src/Module/Conversation/Community.php:180 +#: src/Module/Conversation/Community.php:168 msgid "Community option not available." msgstr "" -#: src/Module/Conversation/Community.php:196 +#: src/Module/Conversation/Community.php:184 msgid "Not available." msgstr "Inte tillgängligt." -#: src/Module/Conversation/Network.php:214 +#: src/Module/Conversation/Network.php:202 msgid "No such circle" msgstr "" -#: src/Module/Conversation/Network.php:218 +#: src/Module/Conversation/Network.php:206 #, php-format msgid "Circle: %s" msgstr "" -#: src/Module/Conversation/Network.php:237 +#: src/Module/Conversation/Network.php:226 #, php-format msgid "Error %d (%s) while fetching the timeline." msgstr "" -#: src/Module/Conversation/Network.php:314 +#: src/Module/Conversation/Network.php:304 msgid "Network feed not available." msgstr "" -#: src/Module/Conversation/Timeline.php:203 +#: src/Module/Conversation/Timeline.php:190 msgid "Include" msgstr "Inkludera" -#: src/Module/Conversation/Timeline.php:204 +#: src/Module/Conversation/Timeline.php:191 msgid "Hide" msgstr "Dölj" -#: src/Module/Credits.php:44 +#: src/Module/Credits.php:30 msgid "Credits" msgstr "" -#: src/Module/Credits.php:45 +#: src/Module/Credits.php:31 msgid "" "Friendica is a community project, that would not be possible without the " "help of many people. Here is a list of those who have contributed to the " "code or the translation of Friendica. Thank you all!" msgstr "" -#: src/Module/Debug/ActivityPubConversion.php:53 +#: src/Module/Debug/ActivityPubConversion.php:45 msgid "Formatted" msgstr "" -#: src/Module/Debug/ActivityPubConversion.php:65 +#: src/Module/Debug/ActivityPubConversion.php:57 msgid "Activity" msgstr "" -#: src/Module/Debug/ActivityPubConversion.php:117 +#: src/Module/Debug/ActivityPubConversion.php:109 msgid "Object data" msgstr "" -#: src/Module/Debug/ActivityPubConversion.php:124 +#: src/Module/Debug/ActivityPubConversion.php:116 msgid "Result Item" msgstr "" -#: src/Module/Debug/ActivityPubConversion.php:129 -#: src/Module/Debug/Babel.php:294 src/Module/Moderation/Item/Source.php:87 -#: src/Module/Security/TwoFactor/Verify.php:98 +#: src/Module/Debug/ActivityPubConversion.php:121 +#: src/Module/Debug/Babel.php:286 src/Module/Moderation/Item/Source.php:79 +#: src/Module/Security/TwoFactor/Verify.php:84 msgid "Error" msgid_plural "Errors" msgstr[0] "Fel" msgstr[1] "Fel" -#: src/Module/Debug/ActivityPubConversion.php:138 +#: src/Module/Debug/ActivityPubConversion.php:130 msgid "Source activity" msgstr "" -#: src/Module/Debug/Babel.php:52 +#: src/Module/Debug/Babel.php:44 msgid "Source input" msgstr "" -#: src/Module/Debug/Babel.php:58 +#: src/Module/Debug/Babel.php:50 msgid "BBCode::toPlaintext" msgstr "" -#: src/Module/Debug/Babel.php:64 +#: src/Module/Debug/Babel.php:56 msgid "BBCode::convert (raw HTML)" msgstr "" -#: src/Module/Debug/Babel.php:69 +#: src/Module/Debug/Babel.php:61 msgid "BBCode::convert (hex)" msgstr "" -#: src/Module/Debug/Babel.php:74 +#: src/Module/Debug/Babel.php:66 msgid "BBCode::convert" msgstr "" -#: src/Module/Debug/Babel.php:80 +#: src/Module/Debug/Babel.php:72 msgid "BBCode::convert => HTML::toBBCode" msgstr "" -#: src/Module/Debug/Babel.php:86 +#: src/Module/Debug/Babel.php:78 msgid "BBCode::toMarkdown" msgstr "" -#: src/Module/Debug/Babel.php:92 +#: src/Module/Debug/Babel.php:84 msgid "BBCode::toMarkdown => Markdown::convert (raw HTML)" msgstr "" -#: src/Module/Debug/Babel.php:96 +#: src/Module/Debug/Babel.php:88 msgid "BBCode::toMarkdown => Markdown::convert" msgstr "" -#: src/Module/Debug/Babel.php:102 +#: src/Module/Debug/Babel.php:94 msgid "BBCode::toMarkdown => Markdown::toBBCode" msgstr "" -#: src/Module/Debug/Babel.php:108 +#: src/Module/Debug/Babel.php:100 msgid "BBCode::toMarkdown => Markdown::convert => HTML::toBBCode" msgstr "" -#: src/Module/Debug/Babel.php:116 +#: src/Module/Debug/Babel.php:108 msgid "Item Body" msgstr "" -#: src/Module/Debug/Babel.php:120 +#: src/Module/Debug/Babel.php:112 msgid "Item Tags" msgstr "" -#: src/Module/Debug/Babel.php:126 +#: src/Module/Debug/Babel.php:118 msgid "PageInfo::appendToBody" msgstr "" -#: src/Module/Debug/Babel.php:131 +#: src/Module/Debug/Babel.php:123 msgid "PageInfo::appendToBody => BBCode::convert (raw HTML)" msgstr "" -#: src/Module/Debug/Babel.php:135 +#: src/Module/Debug/Babel.php:127 msgid "PageInfo::appendToBody => BBCode::convert" msgstr "" -#: src/Module/Debug/Babel.php:142 +#: src/Module/Debug/Babel.php:134 msgid "Source input (Diaspora format)" msgstr "" -#: src/Module/Debug/Babel.php:151 +#: src/Module/Debug/Babel.php:143 msgid "Source input (Markdown)" msgstr "" -#: src/Module/Debug/Babel.php:157 +#: src/Module/Debug/Babel.php:149 msgid "Markdown::convert (raw HTML)" msgstr "" -#: src/Module/Debug/Babel.php:162 +#: src/Module/Debug/Babel.php:154 msgid "Markdown::convert" msgstr "" -#: src/Module/Debug/Babel.php:168 +#: src/Module/Debug/Babel.php:160 msgid "Markdown::toBBCode" msgstr "" -#: src/Module/Debug/Babel.php:175 +#: src/Module/Debug/Babel.php:167 msgid "Raw HTML input" msgstr "" -#: src/Module/Debug/Babel.php:180 +#: src/Module/Debug/Babel.php:172 msgid "HTML Input" msgstr "" -#: src/Module/Debug/Babel.php:187 +#: src/Module/Debug/Babel.php:179 msgid "HTML Purified (raw)" msgstr "" -#: src/Module/Debug/Babel.php:192 +#: src/Module/Debug/Babel.php:184 msgid "HTML Purified (hex)" msgstr "" -#: src/Module/Debug/Babel.php:197 +#: src/Module/Debug/Babel.php:189 msgid "HTML Purified" msgstr "" -#: src/Module/Debug/Babel.php:203 +#: src/Module/Debug/Babel.php:195 msgid "HTML::toBBCode" msgstr "" -#: src/Module/Debug/Babel.php:209 +#: src/Module/Debug/Babel.php:201 msgid "HTML::toBBCode => BBCode::convert" msgstr "" -#: src/Module/Debug/Babel.php:214 +#: src/Module/Debug/Babel.php:206 msgid "HTML::toBBCode => BBCode::convert (raw HTML)" msgstr "" -#: src/Module/Debug/Babel.php:220 +#: src/Module/Debug/Babel.php:212 msgid "HTML::toBBCode => BBCode::toPlaintext" msgstr "" -#: src/Module/Debug/Babel.php:226 +#: src/Module/Debug/Babel.php:218 msgid "HTML::toMarkdown" msgstr "" -#: src/Module/Debug/Babel.php:232 +#: src/Module/Debug/Babel.php:224 msgid "HTML::toPlaintext" msgstr "" -#: src/Module/Debug/Babel.php:238 +#: src/Module/Debug/Babel.php:230 msgid "HTML::toPlaintext (compact)" msgstr "" -#: src/Module/Debug/Babel.php:256 +#: src/Module/Debug/Babel.php:248 msgid "Decoded post" msgstr "" -#: src/Module/Debug/Babel.php:277 +#: src/Module/Debug/Babel.php:269 msgid "Post array before expand entities" msgstr "" -#: src/Module/Debug/Babel.php:284 +#: src/Module/Debug/Babel.php:276 msgid "Post converted" msgstr "" -#: src/Module/Debug/Babel.php:289 +#: src/Module/Debug/Babel.php:281 msgid "Converted body" msgstr "" -#: src/Module/Debug/Babel.php:295 +#: src/Module/Debug/Babel.php:287 msgid "Twitter addon is absent from the addon/ folder." msgstr "" -#: src/Module/Debug/Babel.php:305 +#: src/Module/Debug/Babel.php:297 msgid "Babel Diagnostic" msgstr "" -#: src/Module/Debug/Babel.php:307 +#: src/Module/Debug/Babel.php:299 msgid "Source text" msgstr "" -#: src/Module/Debug/Babel.php:308 +#: src/Module/Debug/Babel.php:300 msgid "BBCode" msgstr "" -#: src/Module/Debug/Babel.php:310 +#: src/Module/Debug/Babel.php:302 msgid "Markdown" msgstr "" -#: src/Module/Debug/Babel.php:311 +#: src/Module/Debug/Babel.php:303 msgid "HTML" msgstr "" -#: src/Module/Debug/Babel.php:313 +#: src/Module/Debug/Babel.php:305 msgid "Twitter Source / Tweet URL (requires API key)" msgstr "" -#: src/Module/Debug/Feed.php:53 src/Module/Filer/SaveTag.php:47 -#: src/Module/Settings/Profile/Index.php:177 +#: src/Module/Debug/Feed.php:39 src/Module/Filer/SaveTag.php:33 +#: src/Module/Settings/Profile/Index.php:166 msgid "You must be logged in to use this module" msgstr "Du måste vara inloggad för att använda denna modul" -#: src/Module/Debug/Feed.php:78 +#: src/Module/Debug/Feed.php:64 msgid "Source URL" msgstr "" -#: src/Module/Debug/Localtime.php:49 +#: src/Module/Debug/Localtime.php:35 msgid "Time Conversion" msgstr "Tidskonvertering" -#: src/Module/Debug/Localtime.php:50 +#: src/Module/Debug/Localtime.php:36 msgid "" "Friendica provides this service for sharing events with other networks and " "friends in unknown timezones." msgstr "" -#: src/Module/Debug/Localtime.php:51 +#: src/Module/Debug/Localtime.php:37 #, php-format msgid "UTC time: %s" msgstr "UTC-tid: %s" -#: src/Module/Debug/Localtime.php:54 +#: src/Module/Debug/Localtime.php:40 #, php-format msgid "Current timezone: %s" msgstr "Nuvarande tidszon: %s" -#: src/Module/Debug/Localtime.php:58 +#: src/Module/Debug/Localtime.php:44 #, php-format msgid "Converted localtime: %s" msgstr "Konverterad lokaltid: %s" -#: src/Module/Debug/Localtime.php:62 +#: src/Module/Debug/Localtime.php:48 msgid "Please select your timezone:" msgstr "Vänligen välj din tidszon:" -#: src/Module/Debug/Probe.php:38 src/Module/Debug/WebFinger.php:37 +#: src/Module/Debug/Probe.php:24 src/Module/Debug/WebFinger.php:23 msgid "Only logged in users are permitted to perform a probing." msgstr "" -#: src/Module/Debug/Probe.php:52 +#: src/Module/Debug/Probe.php:38 msgid "Probe Diagnostic" msgstr "" -#: src/Module/Debug/Probe.php:53 +#: src/Module/Debug/Probe.php:39 msgid "Output" msgstr "" -#: src/Module/Debug/Probe.php:56 +#: src/Module/Debug/Probe.php:42 msgid "Lookup address" msgstr "" -#: src/Module/Debug/WebFinger.php:50 +#: src/Module/Debug/WebFinger.php:36 msgid "Webfinger Diagnostic" msgstr "" -#: src/Module/Debug/WebFinger.php:52 +#: src/Module/Debug/WebFinger.php:38 msgid "Lookup address:" msgstr "" -#: src/Module/Directory.php:74 +#: src/Module/Directory.php:61 msgid "No entries (some entries may be hidden)." msgstr "Inget att visa. (Man kan välja att inte synas här)" -#: src/Module/Directory.php:90 +#: src/Module/Directory.php:77 msgid "Find on this site" msgstr "Hitta på den här sidan" -#: src/Module/Directory.php:92 +#: src/Module/Directory.php:79 msgid "Results for:" msgstr "" -#: src/Module/Directory.php:94 +#: src/Module/Directory.php:81 msgid "Site Directory" msgstr "Medlemskatalog" -#: src/Module/Filer/RemoveTag.php:105 +#: src/Module/Filer/RemoveTag.php:91 msgid "Item was not deleted" msgstr "" -#: src/Module/Filer/RemoveTag.php:115 +#: src/Module/Filer/RemoveTag.php:101 msgid "Item was not removed" msgstr "" -#: src/Module/Filer/SaveTag.php:73 +#: src/Module/Filer/SaveTag.php:59 msgid "- select -" msgstr "- välj -" -#: src/Module/FriendSuggest.php:82 +#: src/Module/FriendSuggest.php:68 msgid "Suggested contact not found." msgstr "" -#: src/Module/FriendSuggest.php:100 +#: src/Module/FriendSuggest.php:86 msgid "Friend suggestion sent." msgstr "Vän-förslag skickades." -#: src/Module/FriendSuggest.php:137 +#: src/Module/FriendSuggest.php:123 msgid "Suggest Friends" msgstr "Föreslå vänner" -#: src/Module/FriendSuggest.php:140 +#: src/Module/FriendSuggest.php:126 #, php-format msgid "Suggest a friend for %s" msgstr "Föreslå en vän till %s" -#: src/Module/Friendica.php:81 +#: src/Module/Friendica.php:67 msgid "Installed addons/apps:" msgstr "" -#: src/Module/Friendica.php:86 +#: src/Module/Friendica.php:72 msgid "No installed addons/apps" msgstr "" -#: src/Module/Friendica.php:91 +#: src/Module/Friendica.php:77 #, php-format msgid "Read about the Terms of Service of this node." msgstr "" -#: src/Module/Friendica.php:98 +#: src/Module/Friendica.php:84 msgid "On this server the following remote servers are blocked." msgstr "" -#: src/Module/Friendica.php:101 -#: src/Module/Moderation/Blocklist/Server/Index.php:87 -#: src/Module/Moderation/Blocklist/Server/Index.php:111 -#: src/Module/Settings/Channels.php:232 +#: src/Module/Friendica.php:87 +#: src/Module/Moderation/Blocklist/Server/Index.php:73 +#: src/Module/Moderation/Blocklist/Server/Index.php:97 +#: src/Module/Settings/Channels.php:218 msgid "Reason for the block" msgstr "Anledning för blockeringen" -#: src/Module/Friendica.php:103 +#: src/Module/Friendica.php:89 msgid "Download this list in CSV format" msgstr "" -#: src/Module/Friendica.php:117 +#: src/Module/Friendica.php:103 #, php-format msgid "" "This is Friendica, version %s that is running at the web location %s. The " "database version is %s, the post update version is %s." msgstr "" -#: src/Module/Friendica.php:122 +#: src/Module/Friendica.php:108 msgid "" "Please visit Friendi.ca to learn more " "about the Friendica project." msgstr "" -#: src/Module/Friendica.php:123 +#: src/Module/Friendica.php:109 msgid "Bug reports and issues: please visit" msgstr "Anmäl buggar eller andra problem, gå till" -#: src/Module/Friendica.php:123 +#: src/Module/Friendica.php:109 msgid "the bugtracker at github" msgstr "" -#: src/Module/Friendica.php:124 +#: src/Module/Friendica.php:110 msgid "Suggestions, praise, etc. - please email \"info\" at \"friendi - dot - ca" msgstr "" -#: src/Module/HCard.php:45 +#: src/Module/HCard.php:31 msgid "No profile" msgstr "Ingen profil" -#: src/Module/HTTPException/MethodNotAllowed.php:31 +#: src/Module/HTTPException/MethodNotAllowed.php:17 msgid "Method Not Allowed." msgstr "" -#: src/Module/Help.php:60 +#: src/Module/Help.php:46 msgid "Help:" msgstr "Hjälp:" -#: src/Module/Home.php:63 +#: src/Module/Home.php:52 #, php-format msgid "Welcome to %s" msgstr "Välkommen till %s" -#: src/Module/Install.php:189 +#: src/Module/Install.php:175 msgid "Friendica Communications Server - Setup" msgstr "" -#: src/Module/Install.php:200 +#: src/Module/Install.php:186 msgid "System check" msgstr "Systemkontroll" -#: src/Module/Install.php:202 src/Module/Install.php:247 -#: src/Module/Install.php:326 +#: src/Module/Install.php:188 src/Module/Install.php:233 +#: src/Module/Install.php:312 msgid "Requirement not satisfied" msgstr "" -#: src/Module/Install.php:203 +#: src/Module/Install.php:189 msgid "Optional requirement not satisfied" msgstr "" -#: src/Module/Install.php:204 +#: src/Module/Install.php:190 msgid "OK" msgstr "" -#: src/Module/Install.php:208 +#: src/Module/Install.php:194 msgid "Next" msgstr "Nästa" -#: src/Module/Install.php:209 +#: src/Module/Install.php:195 msgid "Check again" msgstr "Kolla igen" -#: src/Module/Install.php:222 +#: src/Module/Install.php:208 msgid "Base settings" msgstr "" -#: src/Module/Install.php:224 +#: src/Module/Install.php:210 msgid "Base path to installation" msgstr "Grundväg till installationen" -#: src/Module/Install.php:226 +#: src/Module/Install.php:212 msgid "" "If the system cannot detect the correct path to your installation, enter the" " correct path here. This setting should only be set if you are using a " "restricted system and symbolic links to your webroot." msgstr "" -#: src/Module/Install.php:229 +#: src/Module/Install.php:215 msgid "The Friendica system URL" msgstr "" -#: src/Module/Install.php:231 +#: src/Module/Install.php:217 msgid "" "Overwrite this field in case the system URL determination isn't right, " "otherwise leave it as is." msgstr "" -#: src/Module/Install.php:242 +#: src/Module/Install.php:228 msgid "Database connection" msgstr "Databas-anslutning" -#: src/Module/Install.php:243 +#: src/Module/Install.php:229 msgid "" "In order to install Friendica we need to know how to connect to your " "database." msgstr "För att kunna installera Friendica så behöver vi veta hur du ansluter till din databas." -#: src/Module/Install.php:244 +#: src/Module/Install.php:230 msgid "" "Please contact your hosting provider or site administrator if you have " "questions about these settings." msgstr "Please contact your hosting provider or site administrator if you have questions about these settings." -#: src/Module/Install.php:245 +#: src/Module/Install.php:231 msgid "" "The database you specify below should already exist. If it does not, please " "create it before continuing." msgstr "" -#: src/Module/Install.php:252 +#: src/Module/Install.php:238 msgid "Database Server Name" msgstr "Database Server Name" -#: src/Module/Install.php:257 +#: src/Module/Install.php:243 msgid "Database Login Name" msgstr "Database Login Name" -#: src/Module/Install.php:263 +#: src/Module/Install.php:249 msgid "Database Login Password" msgstr "Database Login Password" -#: src/Module/Install.php:265 +#: src/Module/Install.php:251 msgid "For security reasons the password must not be empty" msgstr "" -#: src/Module/Install.php:268 +#: src/Module/Install.php:254 msgid "Database Name" msgstr "Database Name" -#: src/Module/Install.php:272 src/Module/Install.php:300 +#: src/Module/Install.php:258 src/Module/Install.php:286 msgid "Please select a default timezone for your website" msgstr "Please select a default timezone for your website" -#: src/Module/Install.php:287 +#: src/Module/Install.php:273 msgid "Site settings" msgstr "" -#: src/Module/Install.php:295 +#: src/Module/Install.php:281 msgid "Site administrator email address" msgstr "" -#: src/Module/Install.php:297 +#: src/Module/Install.php:283 msgid "" "Your account email address must match this in order to use the web admin " "panel." msgstr "" -#: src/Module/Install.php:304 +#: src/Module/Install.php:290 msgid "System Language:" msgstr "" -#: src/Module/Install.php:306 +#: src/Module/Install.php:292 msgid "" "Set the default language for your Friendica installation interface and to " "send emails." msgstr "" -#: src/Module/Install.php:318 +#: src/Module/Install.php:304 msgid "Your Friendica site database has been installed." msgstr "Databasen för din friendicasajt har installerats." -#: src/Module/Install.php:328 +#: src/Module/Install.php:314 msgid "Installation finished" msgstr "" -#: src/Module/Install.php:348 +#: src/Module/Install.php:334 msgid "

What next

" msgstr "

Det som kommer härnäst

" -#: src/Module/Install.php:349 +#: src/Module/Install.php:335 msgid "" "IMPORTANT: You will need to [manually] setup a scheduled task for the " "worker." msgstr "" -#: src/Module/Install.php:352 +#: src/Module/Install.php:338 #, php-format msgid "" "Go to your new Friendica node registration page " @@ -7692,40 +7700,40 @@ msgid "" " administrator email. This will allow you to enter the site admin panel." msgstr "" -#: src/Module/Invite.php:57 +#: src/Module/Invite.php:43 msgid "Total invitation limit exceeded." msgstr "" -#: src/Module/Invite.php:82 +#: src/Module/Invite.php:68 #, php-format msgid "%s : Not a valid email address." msgstr "%s : Ogiltig e-postadress." -#: src/Module/Invite.php:108 +#: src/Module/Invite.php:94 msgid "Please join us on Friendica" msgstr "" -#: src/Module/Invite.php:117 +#: src/Module/Invite.php:103 msgid "Invitation limit exceeded. Please contact your site administrator." msgstr "" -#: src/Module/Invite.php:121 +#: src/Module/Invite.php:107 #, php-format msgid "%s : Message delivery failed." msgstr "%s : Meddelandet kom inte fram." -#: src/Module/Invite.php:125 +#: src/Module/Invite.php:111 #, php-format msgid "%d message sent." msgid_plural "%d messages sent." msgstr[0] "%d meddelande har skickats." msgstr[1] "%d meddelanden har skickats." -#: src/Module/Invite.php:143 +#: src/Module/Invite.php:129 msgid "You have no more invitations available" msgstr "Du har inga fler inbjudningar tillgängliga" -#: src/Module/Invite.php:150 +#: src/Module/Invite.php:136 #, php-format msgid "" "Visit %s for a list of public sites that you can join. Friendica members on " @@ -7733,14 +7741,14 @@ msgid "" " other social networks." msgstr "" -#: src/Module/Invite.php:152 +#: src/Module/Invite.php:138 #, php-format msgid "" "To accept this invitation, please visit and register at %s or any other " "public Friendica website." msgstr "" -#: src/Module/Invite.php:153 +#: src/Module/Invite.php:139 #, php-format msgid "" "Friendica sites all inter-connect to create a huge privacy-enhanced social " @@ -7749,337 +7757,337 @@ msgid "" "sites you can join." msgstr "" -#: src/Module/Invite.php:157 +#: src/Module/Invite.php:143 msgid "" "Our apologies. This system is not currently configured to connect with other" " public sites or invite members." msgstr "" -#: src/Module/Invite.php:160 +#: src/Module/Invite.php:146 msgid "" "Friendica sites all inter-connect to create a huge privacy-enhanced social " "web that is owned and controlled by its members. They can also connect with " "many traditional social networks." msgstr "" -#: src/Module/Invite.php:159 +#: src/Module/Invite.php:145 #, php-format msgid "To accept this invitation, please visit and register at %s." msgstr "" -#: src/Module/Invite.php:167 +#: src/Module/Invite.php:153 msgid "Send invitations" msgstr "Skicka inbjudningar" -#: src/Module/Invite.php:168 +#: src/Module/Invite.php:154 msgid "Enter email addresses, one per line:" msgstr "Ange e-postadresser, en per rad:" -#: src/Module/Invite.php:172 +#: src/Module/Invite.php:158 msgid "" "You are cordially invited to join me and other close friends on Friendica - " "and help us to create a better social web." msgstr "" -#: src/Module/Invite.php:174 +#: src/Module/Invite.php:160 msgid "You will need to supply this invitation code: $invite_code" msgstr "" -#: src/Module/Invite.php:174 +#: src/Module/Invite.php:160 msgid "" "Once you have registered, please connect with me via my profile page at:" msgstr "Vi kan bli kontakter via min profil. Besök min profil här när du har registrerat dig:" -#: src/Module/Invite.php:176 +#: src/Module/Invite.php:162 msgid "" "For more information about the Friendica project and why we feel it is " "important, please visit http://friendi.ca" msgstr "" -#: src/Module/Item/Compose.php:94 +#: src/Module/Item/Compose.php:80 msgid "Please enter a post body." msgstr "" -#: src/Module/Item/Compose.php:105 +#: src/Module/Item/Compose.php:91 msgid "This feature is only available with the frio theme." msgstr "" -#: src/Module/Item/Compose.php:129 +#: src/Module/Item/Compose.php:115 msgid "Compose new personal note" msgstr "" -#: src/Module/Item/Compose.php:138 +#: src/Module/Item/Compose.php:124 msgid "Compose new post" msgstr "" -#: src/Module/Item/Compose.php:194 +#: src/Module/Item/Compose.php:180 msgid "Visibility" msgstr "" -#: src/Module/Item/Compose.php:210 +#: src/Module/Item/Compose.php:196 msgid "Clear the location" msgstr "" -#: src/Module/Item/Compose.php:211 +#: src/Module/Item/Compose.php:197 msgid "Location services are unavailable on your device" msgstr "" -#: src/Module/Item/Compose.php:212 +#: src/Module/Item/Compose.php:198 msgid "" "Location services are disabled. Please check the website's permissions on " "your device" msgstr "" -#: src/Module/Item/Compose.php:218 +#: src/Module/Item/Compose.php:204 msgid "" "You can make this page always open when you use the New Post button in the " "Theme Customization settings." msgstr "" -#: src/Module/Item/Feed.php:86 +#: src/Module/Item/Feed.php:72 msgid "The feed for this item is unavailable." msgstr "Flödet för det här föremålet är otillgängligt." -#: src/Module/Item/Follow.php:51 +#: src/Module/Item/Follow.php:37 msgid "Unable to follow this item." msgstr "" -#: src/Module/Maintenance.php:48 src/Module/Maintenance.php:53 +#: src/Module/Maintenance.php:34 src/Module/Maintenance.php:39 msgid "System down for maintenance" msgstr "Systemet är nere för underhåll" -#: src/Module/Maintenance.php:54 +#: src/Module/Maintenance.php:40 msgid "" "This Friendica node is currently in maintenance mode, either automatically " "because it is self-updating or manually by the node administrator. This " "condition should be temporary, please come back in a few minutes." msgstr "" -#: src/Module/Manifest.php:40 +#: src/Module/Manifest.php:26 msgid "A Decentralized Social Network" msgstr "" -#: src/Module/Media/Attachment/Browser.php:58 -#: src/Module/Media/Photo/Browser.php:59 +#: src/Module/Media/Attachment/Browser.php:44 +#: src/Module/Media/Photo/Browser.php:45 msgid "You need to be logged in to access this page." msgstr "" -#: src/Module/Media/Attachment/Browser.php:74 +#: src/Module/Media/Attachment/Browser.php:60 msgid "Files" msgstr "Filer" -#: src/Module/Media/Attachment/Browser.php:79 -#: src/Module/Media/Photo/Browser.php:90 -#: src/Module/Settings/Profile/Photo/Index.php:127 +#: src/Module/Media/Attachment/Browser.php:65 +#: src/Module/Media/Photo/Browser.php:76 +#: src/Module/Settings/Profile/Photo/Index.php:113 msgid "Upload" msgstr "Ladda upp" -#: src/Module/Media/Attachment/Upload.php:97 +#: src/Module/Media/Attachment/Upload.php:83 msgid "Sorry, maybe your upload is bigger than the PHP configuration allows" msgstr "" -#: src/Module/Media/Attachment/Upload.php:97 +#: src/Module/Media/Attachment/Upload.php:83 msgid "Or - did you try to upload an empty file?" msgstr "Eller - provade du att ladda upp en tom fil?" -#: src/Module/Media/Attachment/Upload.php:104 +#: src/Module/Media/Attachment/Upload.php:90 #, php-format msgid "File exceeds size limit of %s" msgstr "Filen överstiger maxstorleken %s" -#: src/Module/Media/Attachment/Upload.php:114 +#: src/Module/Media/Attachment/Upload.php:100 msgid "File upload failed." msgstr "Uppladdning av filen misslyckades." -#: src/Module/Media/Photo/Upload.php:150 src/Module/Media/Photo/Upload.php:151 -#: src/Module/Profile/Photos.php:215 -#: src/Module/Settings/Profile/Photo/Index.php:67 +#: src/Module/Media/Photo/Upload.php:136 src/Module/Media/Photo/Upload.php:137 +#: src/Module/Profile/Photos.php:201 +#: src/Module/Settings/Profile/Photo/Index.php:53 msgid "Unable to process image." msgstr "Det gick inte att behandla bilden." -#: src/Module/Media/Photo/Upload.php:176 src/Module/Profile/Photos.php:235 -#: src/Module/Settings/Profile/Photo/Index.php:94 +#: src/Module/Media/Photo/Upload.php:162 src/Module/Profile/Photos.php:221 +#: src/Module/Settings/Profile/Photo/Index.php:80 msgid "Image upload failed." msgstr "Fel vid bilduppladdning." -#: src/Module/Moderation/BaseUsers.php:72 +#: src/Module/Moderation/BaseUsers.php:59 msgid "List of all users" msgstr "Lista över alla användare" -#: src/Module/Moderation/BaseUsers.php:77 +#: src/Module/Moderation/BaseUsers.php:64 msgid "Active" msgstr "Aktiv" -#: src/Module/Moderation/BaseUsers.php:80 +#: src/Module/Moderation/BaseUsers.php:67 msgid "List of active accounts" msgstr "Lista över aktiva konton" -#: src/Module/Moderation/BaseUsers.php:88 +#: src/Module/Moderation/BaseUsers.php:75 msgid "List of pending registrations" msgstr "Lista över väntande registreringar" -#: src/Module/Moderation/BaseUsers.php:96 +#: src/Module/Moderation/BaseUsers.php:83 msgid "List of blocked users" msgstr "Lista över blockerade användare" -#: src/Module/Moderation/BaseUsers.php:101 +#: src/Module/Moderation/BaseUsers.php:88 msgid "Deleted" msgstr "Ta bort" -#: src/Module/Moderation/BaseUsers.php:104 +#: src/Module/Moderation/BaseUsers.php:91 msgid "List of pending user deletions" msgstr "Lista över väntande borttagningar av användare" -#: src/Module/Moderation/BaseUsers.php:119 src/Module/Settings/Account.php:482 +#: src/Module/Moderation/BaseUsers.php:108 src/Module/Settings/Account.php:473 msgid "Normal Account Page" msgstr "Normal konto-sida" -#: src/Module/Moderation/BaseUsers.php:120 src/Module/Settings/Account.php:489 +#: src/Module/Moderation/BaseUsers.php:109 src/Module/Settings/Account.php:480 msgid "Soapbox Page" msgstr "" -#: src/Module/Moderation/BaseUsers.php:121 src/Module/Settings/Account.php:496 +#: src/Module/Moderation/BaseUsers.php:110 src/Module/Settings/Account.php:487 msgid "Public Group" msgstr "" -#: src/Module/Moderation/BaseUsers.php:122 src/Module/Settings/Account.php:503 +#: src/Module/Moderation/BaseUsers.php:111 src/Module/Settings/Account.php:494 msgid "Public Group - Restricted" msgstr "" -#: src/Module/Moderation/BaseUsers.php:123 src/Module/Settings/Account.php:510 +#: src/Module/Moderation/BaseUsers.php:112 src/Module/Settings/Account.php:501 msgid "Automatic Friend Page" msgstr "" -#: src/Module/Moderation/BaseUsers.php:124 +#: src/Module/Moderation/BaseUsers.php:113 msgid "Private Group" msgstr "" -#: src/Module/Moderation/BaseUsers.php:127 -#: src/Module/Moderation/Summary.php:53 src/Module/Settings/Account.php:453 +#: src/Module/Moderation/BaseUsers.php:116 +#: src/Module/Moderation/Summary.php:39 src/Module/Settings/Account.php:444 msgid "Personal Page" msgstr "Personlig sida" -#: src/Module/Moderation/BaseUsers.php:128 -#: src/Module/Moderation/Summary.php:54 src/Module/Settings/Account.php:460 +#: src/Module/Moderation/BaseUsers.php:117 +#: src/Module/Moderation/Summary.php:40 src/Module/Settings/Account.php:451 msgid "Organisation Page" msgstr "Sida för organisation" -#: src/Module/Moderation/BaseUsers.php:129 -#: src/Module/Moderation/Summary.php:55 src/Module/Settings/Account.php:467 +#: src/Module/Moderation/BaseUsers.php:118 +#: src/Module/Moderation/Summary.php:41 src/Module/Settings/Account.php:458 msgid "News Page" msgstr "" -#: src/Module/Moderation/BaseUsers.php:130 -#: src/Module/Moderation/Summary.php:56 src/Module/Settings/Account.php:474 +#: src/Module/Moderation/BaseUsers.php:119 +#: src/Module/Moderation/Summary.php:42 src/Module/Settings/Account.php:465 msgid "Community Group" msgstr "" -#: src/Module/Moderation/Blocklist/Contact.php:70 +#: src/Module/Moderation/Blocklist/Contact.php:56 msgid "You can't block a local contact, please block the user instead" msgstr "Du kan inte blockera en lokal kontakt, vänligen blockera användaren istället" -#: src/Module/Moderation/Blocklist/Contact.php:89 +#: src/Module/Moderation/Blocklist/Contact.php:75 #, php-format msgid "%s contact unblocked" msgid_plural "%s contacts unblocked" msgstr[0] "" msgstr[1] "" -#: src/Module/Moderation/Blocklist/Contact.php:111 +#: src/Module/Moderation/Blocklist/Contact.php:97 msgid "Remote Contact Blocklist" msgstr "" -#: src/Module/Moderation/Blocklist/Contact.php:112 +#: src/Module/Moderation/Blocklist/Contact.php:98 msgid "" "This page allows you to prevent any message from a remote contact to reach " "your node." msgstr "" -#: src/Module/Moderation/Blocklist/Contact.php:113 +#: src/Module/Moderation/Blocklist/Contact.php:99 msgid "Block Remote Contact" msgstr "" -#: src/Module/Moderation/Blocklist/Contact.php:114 -#: src/Module/Moderation/Users/Active.php:135 -#: src/Module/Moderation/Users/Blocked.php:135 -#: src/Module/Moderation/Users/Index.php:149 -#: src/Module/Moderation/Users/Pending.php:98 +#: src/Module/Moderation/Blocklist/Contact.php:100 +#: src/Module/Moderation/Users/Active.php:121 +#: src/Module/Moderation/Users/Blocked.php:121 +#: src/Module/Moderation/Users/Index.php:135 +#: src/Module/Moderation/Users/Pending.php:84 msgid "select all" msgstr "välj alla" -#: src/Module/Moderation/Blocklist/Contact.php:115 +#: src/Module/Moderation/Blocklist/Contact.php:101 msgid "select none" msgstr "välj ingen" -#: src/Module/Moderation/Blocklist/Contact.php:118 +#: src/Module/Moderation/Blocklist/Contact.php:104 msgid "No remote contact is blocked from this node." msgstr "" -#: src/Module/Moderation/Blocklist/Contact.php:120 +#: src/Module/Moderation/Blocklist/Contact.php:106 msgid "Blocked Remote Contacts" msgstr "" -#: src/Module/Moderation/Blocklist/Contact.php:121 +#: src/Module/Moderation/Blocklist/Contact.php:107 msgid "Block New Remote Contact" msgstr "" -#: src/Module/Moderation/Blocklist/Contact.php:122 -#: src/Module/Moderation/Reports.php:110 +#: src/Module/Moderation/Blocklist/Contact.php:108 +#: src/Module/Moderation/Reports.php:102 msgid "Photo" msgstr "Foto" -#: src/Module/Moderation/Blocklist/Contact.php:122 +#: src/Module/Moderation/Blocklist/Contact.php:108 msgid "Reason" msgstr "Anledning" -#: src/Module/Moderation/Blocklist/Contact.php:128 +#: src/Module/Moderation/Blocklist/Contact.php:114 #, php-format msgid "%s total blocked contact" msgid_plural "%s total blocked contacts" msgstr[0] "" msgstr[1] "" -#: src/Module/Moderation/Blocklist/Contact.php:131 +#: src/Module/Moderation/Blocklist/Contact.php:117 msgid "URL of the remote contact to block." msgstr "" -#: src/Module/Moderation/Blocklist/Contact.php:132 +#: src/Module/Moderation/Blocklist/Contact.php:118 msgid "Also purge contact" msgstr "" -#: src/Module/Moderation/Blocklist/Contact.php:132 +#: src/Module/Moderation/Blocklist/Contact.php:118 msgid "" "Removes all content related to this contact from the node. Keeps the contact" " record. This action cannot be undone." msgstr "" -#: src/Module/Moderation/Blocklist/Contact.php:133 -#: src/Module/Moderation/Blocklist/Server/Import.php:124 +#: src/Module/Moderation/Blocklist/Contact.php:119 +#: src/Module/Moderation/Blocklist/Server/Import.php:108 msgid "Block Reason" msgstr "Anledning för blockering" -#: src/Module/Moderation/Blocklist/Server/Add.php:80 +#: src/Module/Moderation/Blocklist/Server/Add.php:66 msgid "Server domain pattern added to the blocklist." msgstr "" -#: src/Module/Moderation/Blocklist/Server/Add.php:88 +#: src/Module/Moderation/Blocklist/Server/Add.php:74 #, php-format msgid "%s server scheduled to be purged." msgid_plural "%s servers scheduled to be purged." msgstr[0] "" msgstr[1] "" -#: src/Module/Moderation/Blocklist/Server/Add.php:120 -#: src/Module/Moderation/Blocklist/Server/Import.php:117 +#: src/Module/Moderation/Blocklist/Server/Add.php:106 +#: src/Module/Moderation/Blocklist/Server/Import.php:101 msgid "← Return to the list" msgstr "" -#: src/Module/Moderation/Blocklist/Server/Add.php:122 +#: src/Module/Moderation/Blocklist/Server/Add.php:108 msgid "Block A New Server Domain Pattern" msgstr "" -#: src/Module/Moderation/Blocklist/Server/Add.php:123 -#: src/Module/Moderation/Blocklist/Server/Index.php:99 +#: src/Module/Moderation/Blocklist/Server/Add.php:109 +#: src/Module/Moderation/Blocklist/Server/Index.php:85 msgid "" "

The server domain pattern syntax is case-insensitive shell wildcard, comprising the following special characters:

\n" "
    \n" @@ -8088,57 +8096,57 @@ msgid "" "
" msgstr "" -#: src/Module/Moderation/Blocklist/Server/Add.php:128 -#: src/Module/Moderation/Blocklist/Server/Index.php:107 +#: src/Module/Moderation/Blocklist/Server/Add.php:114 +#: src/Module/Moderation/Blocklist/Server/Index.php:93 msgid "Check pattern" msgstr "" -#: src/Module/Moderation/Blocklist/Server/Add.php:129 +#: src/Module/Moderation/Blocklist/Server/Add.php:115 msgid "Matching known servers" msgstr "Matchar kända servrar" -#: src/Module/Moderation/Blocklist/Server/Add.php:130 -#: src/Module/Settings/Server/Action.php:76 -#: src/Module/Settings/Server/Index.php:106 +#: src/Module/Moderation/Blocklist/Server/Add.php:116 +#: src/Module/Settings/Server/Action.php:62 +#: src/Module/Settings/Server/Index.php:92 msgid "Server Name" msgstr "Namn på server" -#: src/Module/Moderation/Blocklist/Server/Add.php:131 +#: src/Module/Moderation/Blocklist/Server/Add.php:117 msgid "Server Domain" msgstr "Serverns domän" -#: src/Module/Moderation/Blocklist/Server/Add.php:132 +#: src/Module/Moderation/Blocklist/Server/Add.php:118 msgid "Known Contacts" msgstr "Kända kontakter" -#: src/Module/Moderation/Blocklist/Server/Add.php:133 +#: src/Module/Moderation/Blocklist/Server/Add.php:119 #, php-format msgid "%d known server" msgid_plural "%d known servers" msgstr[0] "%d känd server" msgstr[1] "%d kända servrar" -#: src/Module/Moderation/Blocklist/Server/Add.php:134 +#: src/Module/Moderation/Blocklist/Server/Add.php:120 msgid "Add pattern to the blocklist" msgstr "Lägg till mönster till blockeringslistan" -#: src/Module/Moderation/Blocklist/Server/Add.php:136 -#: src/Module/Moderation/Blocklist/Server/Index.php:116 +#: src/Module/Moderation/Blocklist/Server/Add.php:122 +#: src/Module/Moderation/Blocklist/Server/Index.php:102 msgid "Server Domain Pattern" msgstr "" -#: src/Module/Moderation/Blocklist/Server/Add.php:136 -#: src/Module/Moderation/Blocklist/Server/Index.php:116 +#: src/Module/Moderation/Blocklist/Server/Add.php:122 +#: src/Module/Moderation/Blocklist/Server/Index.php:102 msgid "" "The domain pattern of the new server to add to the blocklist. Do not include" " the protocol." msgstr "" -#: src/Module/Moderation/Blocklist/Server/Add.php:137 +#: src/Module/Moderation/Blocklist/Server/Add.php:123 msgid "Purge server" msgstr "" -#: src/Module/Moderation/Blocklist/Server/Add.php:137 +#: src/Module/Moderation/Blocklist/Server/Add.php:123 msgid "" "Also purges all the locally stored content authored by the known contacts " "registered on that server. Keeps the contacts and the server records. This " @@ -8150,301 +8158,301 @@ msgid_plural "" msgstr[0] "" msgstr[1] "" -#: src/Module/Moderation/Blocklist/Server/Add.php:138 +#: src/Module/Moderation/Blocklist/Server/Add.php:124 msgid "Block reason" msgstr "" -#: src/Module/Moderation/Blocklist/Server/Add.php:138 +#: src/Module/Moderation/Blocklist/Server/Add.php:124 msgid "" "The reason why you blocked this server domain pattern. This reason will be " "shown publicly in the server information page." msgstr "" -#: src/Module/Moderation/Blocklist/Server/Import.php:74 -#: src/Module/Moderation/Blocklist/Server/Import.php:83 +#: src/Module/Moderation/Blocklist/Server/Import.php:60 +#: src/Module/Moderation/Blocklist/Server/Import.php:67 msgid "Error importing pattern file" msgstr "" -#: src/Module/Moderation/Blocklist/Server/Import.php:89 +#: src/Module/Moderation/Blocklist/Server/Import.php:74 msgid "Local blocklist replaced with the provided file." msgstr "" -#: src/Module/Moderation/Blocklist/Server/Import.php:93 +#: src/Module/Moderation/Blocklist/Server/Import.php:78 #, php-format msgid "%d pattern was added to the local blocklist." msgid_plural "%d patterns were added to the local blocklist." msgstr[0] "" msgstr[1] "" -#: src/Module/Moderation/Blocklist/Server/Import.php:95 +#: src/Module/Moderation/Blocklist/Server/Import.php:80 msgid "No pattern was added to the local blocklist." msgstr "" -#: src/Module/Moderation/Blocklist/Server/Import.php:119 +#: src/Module/Moderation/Blocklist/Server/Import.php:103 msgid "Import a Server Domain Pattern Blocklist" msgstr "" -#: src/Module/Moderation/Blocklist/Server/Import.php:120 +#: src/Module/Moderation/Blocklist/Server/Import.php:104 msgid "" "

This file can be downloaded from the /friendica path of any " "Friendica server.

" msgstr "" -#: src/Module/Moderation/Blocklist/Server/Import.php:121 -#: src/Module/Moderation/Blocklist/Server/Index.php:106 +#: src/Module/Moderation/Blocklist/Server/Import.php:105 +#: src/Module/Moderation/Blocklist/Server/Index.php:92 msgid "Upload file" msgstr "" -#: src/Module/Moderation/Blocklist/Server/Import.php:122 +#: src/Module/Moderation/Blocklist/Server/Import.php:106 msgid "Patterns to import" msgstr "" -#: src/Module/Moderation/Blocklist/Server/Import.php:123 +#: src/Module/Moderation/Blocklist/Server/Import.php:107 msgid "Domain Pattern" msgstr "" -#: src/Module/Moderation/Blocklist/Server/Import.php:125 +#: src/Module/Moderation/Blocklist/Server/Import.php:109 msgid "Import Mode" msgstr "" -#: src/Module/Moderation/Blocklist/Server/Import.php:126 +#: src/Module/Moderation/Blocklist/Server/Import.php:110 msgid "Import Patterns" msgstr "" -#: src/Module/Moderation/Blocklist/Server/Import.php:127 +#: src/Module/Moderation/Blocklist/Server/Import.php:111 #, php-format msgid "%d total pattern" msgid_plural "%d total patterns" msgstr[0] "" msgstr[1] "" -#: src/Module/Moderation/Blocklist/Server/Import.php:129 -#: src/Module/Moderation/Blocklist/Server/Index.php:115 +#: src/Module/Moderation/Blocklist/Server/Import.php:113 +#: src/Module/Moderation/Blocklist/Server/Index.php:101 msgid "Server domain pattern blocklist CSV file" msgstr "" -#: src/Module/Moderation/Blocklist/Server/Import.php:130 +#: src/Module/Moderation/Blocklist/Server/Import.php:114 msgid "Append" msgstr "" -#: src/Module/Moderation/Blocklist/Server/Import.php:130 +#: src/Module/Moderation/Blocklist/Server/Import.php:114 msgid "" "Imports patterns from the file that weren't already existing in the current " "blocklist." msgstr "" -#: src/Module/Moderation/Blocklist/Server/Import.php:131 +#: src/Module/Moderation/Blocklist/Server/Import.php:115 msgid "Replace" msgstr "" -#: src/Module/Moderation/Blocklist/Server/Import.php:131 +#: src/Module/Moderation/Blocklist/Server/Import.php:115 msgid "Replaces the current blocklist by the imported patterns." msgstr "" -#: src/Module/Moderation/Blocklist/Server/Index.php:86 -#: src/Module/Moderation/Blocklist/Server/Index.php:110 -#: src/Module/Settings/Channels.php:231 +#: src/Module/Moderation/Blocklist/Server/Index.php:72 +#: src/Module/Moderation/Blocklist/Server/Index.php:96 +#: src/Module/Settings/Channels.php:217 msgid "Blocked server domain pattern" msgstr "" -#: src/Module/Moderation/Blocklist/Server/Index.php:88 +#: src/Module/Moderation/Blocklist/Server/Index.php:74 msgid "Delete server domain pattern" msgstr "" -#: src/Module/Moderation/Blocklist/Server/Index.php:88 +#: src/Module/Moderation/Blocklist/Server/Index.php:74 msgid "Check to delete this entry from the blocklist" msgstr "" -#: src/Module/Moderation/Blocklist/Server/Index.php:96 +#: src/Module/Moderation/Blocklist/Server/Index.php:82 msgid "Server Domain Pattern Blocklist" msgstr "" -#: src/Module/Moderation/Blocklist/Server/Index.php:97 +#: src/Module/Moderation/Blocklist/Server/Index.php:83 msgid "" "This page can be used to define a blocklist of server domain patterns from " "the federated network that are not allowed to interact with your node. For " "each domain pattern you should also provide the reason why you block it." msgstr "" -#: src/Module/Moderation/Blocklist/Server/Index.php:98 +#: src/Module/Moderation/Blocklist/Server/Index.php:84 msgid "" "The list of blocked server domain patterns will be made publically available" " on the /friendica page so that your users and " "people investigating communication problems can find the reason easily." msgstr "" -#: src/Module/Moderation/Blocklist/Server/Index.php:104 +#: src/Module/Moderation/Blocklist/Server/Index.php:90 msgid "Import server domain pattern blocklist" msgstr "" -#: src/Module/Moderation/Blocklist/Server/Index.php:105 +#: src/Module/Moderation/Blocklist/Server/Index.php:91 msgid "Add new entry to the blocklist" msgstr "Lägg till ny post till blockeringslistan" -#: src/Module/Moderation/Blocklist/Server/Index.php:108 +#: src/Module/Moderation/Blocklist/Server/Index.php:94 msgid "Save changes to the blocklist" msgstr "Spara ändringen i blockeringslistan" -#: src/Module/Moderation/Blocklist/Server/Index.php:109 +#: src/Module/Moderation/Blocklist/Server/Index.php:95 msgid "Current Entries in the Blocklist" msgstr "Nuvarande poster i blockeringslistan" -#: src/Module/Moderation/Blocklist/Server/Index.php:112 +#: src/Module/Moderation/Blocklist/Server/Index.php:98 msgid "Delete entry from the blocklist" msgstr "Ta bort post från blockeringslistan" -#: src/Module/Moderation/Blocklist/Server/Index.php:113 +#: src/Module/Moderation/Blocklist/Server/Index.php:99 msgid "Delete entry from the blocklist?" msgstr "Ta bort post från blockeringslistan?" -#: src/Module/Moderation/Item/Delete.php:50 +#: src/Module/Moderation/Item/Delete.php:36 msgid "Item marked for deletion." msgstr "Objektet är markerat för borttagning." -#: src/Module/Moderation/Item/Delete.php:63 +#: src/Module/Moderation/Item/Delete.php:49 msgid "Delete this Item" msgstr "Ta bort det här objektet" -#: src/Module/Moderation/Item/Delete.php:64 +#: src/Module/Moderation/Item/Delete.php:50 msgid "" "On this page you can delete an item from your node. If the item is a top " "level posting, the entire thread will be deleted." msgstr "" -#: src/Module/Moderation/Item/Delete.php:65 +#: src/Module/Moderation/Item/Delete.php:51 msgid "" "You need to know the GUID of the item. You can find it e.g. by looking at " "the display URL. The last part of http://example.com/display/123456 is the " "GUID, here 123456." msgstr "" -#: src/Module/Moderation/Item/Delete.php:67 +#: src/Module/Moderation/Item/Delete.php:53 msgid "GUID" msgstr "GUID" -#: src/Module/Moderation/Item/Delete.php:67 +#: src/Module/Moderation/Item/Delete.php:53 msgid "The GUID of the item you want to delete." msgstr "Objektets GUID som du vill ta bort." -#: src/Module/Moderation/Item/Source.php:77 +#: src/Module/Moderation/Item/Source.php:69 msgid "Item Id" msgstr "" -#: src/Module/Moderation/Item/Source.php:78 +#: src/Module/Moderation/Item/Source.php:70 msgid "Item URI" msgstr "" -#: src/Module/Moderation/Item/Source.php:80 +#: src/Module/Moderation/Item/Source.php:72 msgid "Terms" msgstr "Villkor" -#: src/Module/Moderation/Item/Source.php:81 +#: src/Module/Moderation/Item/Source.php:73 msgid "Tag" msgstr "Taggar" -#: src/Module/Moderation/Item/Source.php:82 -#: src/Module/Moderation/Users/Active.php:126 -#: src/Module/Moderation/Users/Blocked.php:126 -#: src/Module/Moderation/Users/Index.php:140 +#: src/Module/Moderation/Item/Source.php:74 +#: src/Module/Moderation/Users/Active.php:112 +#: src/Module/Moderation/Users/Blocked.php:112 +#: src/Module/Moderation/Users/Index.php:126 msgid "Type" msgstr "Typ" -#: src/Module/Moderation/Item/Source.php:83 +#: src/Module/Moderation/Item/Source.php:75 msgid "Term" msgstr "Villkor" -#: src/Module/Moderation/Item/Source.php:84 +#: src/Module/Moderation/Item/Source.php:76 msgid "URL" msgstr "Webbadress" -#: src/Module/Moderation/Item/Source.php:86 +#: src/Module/Moderation/Item/Source.php:78 msgid "Implicit Mention" msgstr "" -#: src/Module/Moderation/Item/Source.php:88 +#: src/Module/Moderation/Item/Source.php:80 msgid "Item not found" msgstr "Hittades inte" -#: src/Module/Moderation/Item/Source.php:89 +#: src/Module/Moderation/Item/Source.php:81 msgid "No source recorded" msgstr "" -#: src/Module/Moderation/Item/Source.php:90 +#: src/Module/Moderation/Item/Source.php:82 msgid "" "Please make sure the debug.store_source config key is set in " "config/local.config.php for future items to have sources." msgstr "" -#: src/Module/Moderation/Item/Source.php:92 +#: src/Module/Moderation/Item/Source.php:84 msgid "Item Guid" msgstr "" -#: src/Module/Moderation/Report/Create.php:95 +#: src/Module/Moderation/Report/Create.php:81 msgid "Contact not found or their server is already blocked on this node." msgstr "" -#: src/Module/Moderation/Report/Create.php:136 +#: src/Module/Moderation/Report/Create.php:122 msgid "Please login to access this page." msgstr "" -#: src/Module/Moderation/Report/Create.php:165 -#: src/Module/Moderation/Report/Create.php:180 -#: src/Module/Moderation/Report/Create.php:208 -#: src/Module/Moderation/Report/Create.php:260 -#: src/Module/Moderation/Report/Create.php:279 +#: src/Module/Moderation/Report/Create.php:151 +#: src/Module/Moderation/Report/Create.php:166 +#: src/Module/Moderation/Report/Create.php:194 +#: src/Module/Moderation/Report/Create.php:246 +#: src/Module/Moderation/Report/Create.php:265 msgid "Create Moderation Report" msgstr "" -#: src/Module/Moderation/Report/Create.php:166 +#: src/Module/Moderation/Report/Create.php:152 msgid "Pick Contact" msgstr "" -#: src/Module/Moderation/Report/Create.php:167 +#: src/Module/Moderation/Report/Create.php:153 msgid "" "Please enter below the contact address or profile URL you would like to " "create a moderation report about." msgstr "" -#: src/Module/Moderation/Report/Create.php:171 +#: src/Module/Moderation/Report/Create.php:157 msgid "Contact address/URL" msgstr "" -#: src/Module/Moderation/Report/Create.php:181 +#: src/Module/Moderation/Report/Create.php:167 msgid "Pick Category" msgstr "" -#: src/Module/Moderation/Report/Create.php:182 +#: src/Module/Moderation/Report/Create.php:168 msgid "Please pick below the category of your report." msgstr "" -#: src/Module/Moderation/Report/Create.php:186 -#: src/Module/Moderation/Report/Create.php:311 +#: src/Module/Moderation/Report/Create.php:172 +#: src/Module/Moderation/Report/Create.php:297 msgid "Spam" msgstr "" -#: src/Module/Moderation/Report/Create.php:186 +#: src/Module/Moderation/Report/Create.php:172 msgid "" "This contact is publishing many repeated/overly long posts/replies or " "advertising their product/websites in otherwise irrelevant conversations." msgstr "" -#: src/Module/Moderation/Report/Create.php:187 -#: src/Module/Moderation/Report/Create.php:312 +#: src/Module/Moderation/Report/Create.php:173 +#: src/Module/Moderation/Report/Create.php:298 msgid "Illegal Content" msgstr "" -#: src/Module/Moderation/Report/Create.php:187 +#: src/Module/Moderation/Report/Create.php:173 msgid "" "This contact is publishing content that is considered illegal in this node's" " hosting juridiction." msgstr "" -#: src/Module/Moderation/Report/Create.php:188 -#: src/Module/Moderation/Report/Create.php:313 +#: src/Module/Moderation/Report/Create.php:174 +#: src/Module/Moderation/Report/Create.php:299 msgid "Community Safety" msgstr "" -#: src/Module/Moderation/Report/Create.php:188 +#: src/Module/Moderation/Report/Create.php:174 msgid "" "This contact aggravated you or other people, by being provocative or " "insensitive, intentionally or not. This includes disclosing people's private" @@ -8452,12 +8460,12 @@ msgid "" "replies." msgstr "" -#: src/Module/Moderation/Report/Create.php:189 -#: src/Module/Moderation/Report/Create.php:314 +#: src/Module/Moderation/Report/Create.php:175 +#: src/Module/Moderation/Report/Create.php:300 msgid "Unwanted Content/Behavior" msgstr "" -#: src/Module/Moderation/Report/Create.php:189 +#: src/Module/Moderation/Report/Create.php:175 msgid "" "This contact has repeatedly published content irrelevant to the node's theme" " or is openly criticizing the node's administration/moderation without " @@ -8465,89 +8473,89 @@ msgid "" "nitpicking on a sensitive topic." msgstr "" -#: src/Module/Moderation/Report/Create.php:190 -#: src/Module/Moderation/Report/Create.php:315 +#: src/Module/Moderation/Report/Create.php:176 +#: src/Module/Moderation/Report/Create.php:301 msgid "Rules Violation" msgstr "" -#: src/Module/Moderation/Report/Create.php:190 +#: src/Module/Moderation/Report/Create.php:176 msgid "" "This contact violated one or more rules of this node. You will be able to " "pick which one(s) in the next step." msgstr "" -#: src/Module/Moderation/Report/Create.php:191 +#: src/Module/Moderation/Report/Create.php:177 msgid "" "Please elaborate below why you submitted this report. The more details you " "provide, the better your report can be handled." msgstr "" -#: src/Module/Moderation/Report/Create.php:193 +#: src/Module/Moderation/Report/Create.php:179 msgid "Additional Information" msgstr "" -#: src/Module/Moderation/Report/Create.php:193 +#: src/Module/Moderation/Report/Create.php:179 msgid "" "Please provide any additional information relevant to this particular " "report. You will be able to attach posts by this contact in the next step, " "but any context is welcome." msgstr "" -#: src/Module/Moderation/Report/Create.php:209 +#: src/Module/Moderation/Report/Create.php:195 msgid "Pick Rules" msgstr "" -#: src/Module/Moderation/Report/Create.php:210 +#: src/Module/Moderation/Report/Create.php:196 msgid "Please pick below the node rules you believe this contact violated." msgstr "" -#: src/Module/Moderation/Report/Create.php:261 +#: src/Module/Moderation/Report/Create.php:247 msgid "Pick Posts" msgstr "" -#: src/Module/Moderation/Report/Create.php:262 +#: src/Module/Moderation/Report/Create.php:248 msgid "Please optionally pick posts to attach to your report." msgstr "" -#: src/Module/Moderation/Report/Create.php:281 +#: src/Module/Moderation/Report/Create.php:267 msgid "Submit Report" msgstr "" -#: src/Module/Moderation/Report/Create.php:282 +#: src/Module/Moderation/Report/Create.php:268 msgid "Further Action" msgstr "" -#: src/Module/Moderation/Report/Create.php:283 +#: src/Module/Moderation/Report/Create.php:269 msgid "" "You can also perform one of the following action on the contact you " "reported:" msgstr "" -#: src/Module/Moderation/Report/Create.php:291 +#: src/Module/Moderation/Report/Create.php:277 msgid "Nothing" msgstr "" -#: src/Module/Moderation/Report/Create.php:292 +#: src/Module/Moderation/Report/Create.php:278 msgid "Collapse contact" msgstr "" -#: src/Module/Moderation/Report/Create.php:292 +#: src/Module/Moderation/Report/Create.php:278 msgid "" "Their posts and replies will keep appearing in your Network page but their " "content will be collapsed by default." msgstr "" -#: src/Module/Moderation/Report/Create.php:293 +#: src/Module/Moderation/Report/Create.php:279 msgid "" "Their posts won't appear in your Network page anymore, but their replies can" " appear in forum threads. They still can follow you." msgstr "" -#: src/Module/Moderation/Report/Create.php:294 +#: src/Module/Moderation/Report/Create.php:280 msgid "Block contact" msgstr "" -#: src/Module/Moderation/Report/Create.php:294 +#: src/Module/Moderation/Report/Create.php:280 msgid "" "Their posts won't appear in your Network page anymore, but their replies can" " appear in forum threads, with their content collapsed by default. They " @@ -8555,708 +8563,694 @@ msgid "" "means." msgstr "" -#: src/Module/Moderation/Report/Create.php:297 +#: src/Module/Moderation/Report/Create.php:283 msgid "Forward report" msgstr "" -#: src/Module/Moderation/Report/Create.php:297 +#: src/Module/Moderation/Report/Create.php:283 msgid "Would you ike to forward this report to the remote server?" msgstr "" -#: src/Module/Moderation/Report/Create.php:330 +#: src/Module/Moderation/Report/Create.php:316 msgid "1. Pick a contact" msgstr "" -#: src/Module/Moderation/Report/Create.php:331 +#: src/Module/Moderation/Report/Create.php:317 msgid "2. Pick a category" msgstr "" -#: src/Module/Moderation/Report/Create.php:332 +#: src/Module/Moderation/Report/Create.php:318 msgid "2a. Pick rules" msgstr "" -#: src/Module/Moderation/Report/Create.php:333 +#: src/Module/Moderation/Report/Create.php:319 msgid "2b. Add comment" msgstr "" -#: src/Module/Moderation/Report/Create.php:334 +#: src/Module/Moderation/Report/Create.php:320 msgid "3. Pick posts" msgstr "" -#: src/Module/Moderation/Reports.php:105 +#: src/Module/Moderation/Reports.php:97 msgid "List of reports" msgstr "" -#: src/Module/Moderation/Reports.php:106 +#: src/Module/Moderation/Reports.php:98 msgid "This page display reports created by our or remote users." msgstr "" -#: src/Module/Moderation/Reports.php:107 +#: src/Module/Moderation/Reports.php:99 msgid "No report exists at this node." msgstr "" -#: src/Module/Moderation/Reports.php:110 +#: src/Module/Moderation/Reports.php:102 msgid "Category" msgstr "" -#: src/Module/Moderation/Reports.php:114 +#: src/Module/Moderation/Reports.php:106 #, php-format msgid "%s total report" msgid_plural "%s total reports" msgstr[0] "" msgstr[1] "" -#: src/Module/Moderation/Reports.php:117 +#: src/Module/Moderation/Reports.php:109 msgid "URL of the reported contact." msgstr "" -#: src/Module/Moderation/Summary.php:57 src/Module/Settings/Account.php:431 +#: src/Module/Moderation/Summary.php:43 src/Module/Settings/Account.php:422 msgid "Channel Relay" msgstr "" -#: src/Module/Moderation/Summary.php:77 +#: src/Module/Moderation/Summary.php:63 msgid "Registered users" msgstr "Registrerade användare" -#: src/Module/Moderation/Summary.php:79 +#: src/Module/Moderation/Summary.php:65 msgid "Pending registrations" msgstr "Väntande registreringar" -#: src/Module/Moderation/Users/Active.php:43 -#: src/Module/Moderation/Users/Index.php:43 +#: src/Module/Moderation/Users/Active.php:29 +#: src/Module/Moderation/Users/Index.php:29 #, php-format msgid "%s user blocked" msgid_plural "%s users blocked" msgstr[0] "" msgstr[1] "" -#: src/Module/Moderation/Users/Active.php:51 -#: src/Module/Moderation/Users/Active.php:85 -#: src/Module/Moderation/Users/Blocked.php:51 -#: src/Module/Moderation/Users/Blocked.php:85 -#: src/Module/Moderation/Users/Index.php:58 -#: src/Module/Moderation/Users/Index.php:92 +#: src/Module/Moderation/Users/Active.php:37 +#: src/Module/Moderation/Users/Active.php:71 +#: src/Module/Moderation/Users/Blocked.php:37 +#: src/Module/Moderation/Users/Blocked.php:71 +#: src/Module/Moderation/Users/Index.php:44 +#: src/Module/Moderation/Users/Index.php:78 msgid "You can't remove yourself" msgstr "" -#: src/Module/Moderation/Users/Active.php:55 -#: src/Module/Moderation/Users/Blocked.php:55 -#: src/Module/Moderation/Users/Index.php:62 +#: src/Module/Moderation/Users/Active.php:41 +#: src/Module/Moderation/Users/Blocked.php:41 +#: src/Module/Moderation/Users/Index.php:48 #, php-format msgid "%s user deleted" msgid_plural "%s users deleted" msgstr[0] "%sanvändare togs bort" msgstr[1] "%s användare togs bort" -#: src/Module/Moderation/Users/Active.php:83 -#: src/Module/Moderation/Users/Blocked.php:83 -#: src/Module/Moderation/Users/Index.php:90 +#: src/Module/Moderation/Users/Active.php:69 +#: src/Module/Moderation/Users/Blocked.php:69 +#: src/Module/Moderation/Users/Index.php:76 #, php-format msgid "User \"%s\" deleted" msgstr "" -#: src/Module/Moderation/Users/Active.php:93 -#: src/Module/Moderation/Users/Index.php:100 +#: src/Module/Moderation/Users/Active.php:79 +#: src/Module/Moderation/Users/Index.php:86 #, php-format msgid "User \"%s\" blocked" msgstr "" -#: src/Module/Moderation/Users/Active.php:126 -#: src/Module/Moderation/Users/Blocked.php:126 -#: src/Module/Moderation/Users/Deleted.php:83 -#: src/Module/Moderation/Users/Index.php:140 -#: src/Module/Moderation/Users/Index.php:160 +#: src/Module/Moderation/Users/Active.php:112 +#: src/Module/Moderation/Users/Blocked.php:112 +#: src/Module/Moderation/Users/Deleted.php:69 +#: src/Module/Moderation/Users/Index.php:126 +#: src/Module/Moderation/Users/Index.php:146 msgid "Register date" msgstr "Datum för registrering" -#: src/Module/Moderation/Users/Active.php:126 -#: src/Module/Moderation/Users/Blocked.php:126 -#: src/Module/Moderation/Users/Deleted.php:83 -#: src/Module/Moderation/Users/Index.php:140 -#: src/Module/Moderation/Users/Index.php:160 +#: src/Module/Moderation/Users/Active.php:112 +#: src/Module/Moderation/Users/Blocked.php:112 +#: src/Module/Moderation/Users/Deleted.php:69 +#: src/Module/Moderation/Users/Index.php:126 +#: src/Module/Moderation/Users/Index.php:146 msgid "Last login" msgstr "Senaste inloggning" -#: src/Module/Moderation/Users/Active.php:126 -#: src/Module/Moderation/Users/Blocked.php:126 -#: src/Module/Moderation/Users/Deleted.php:83 -#: src/Module/Moderation/Users/Index.php:140 -#: src/Module/Moderation/Users/Index.php:160 +#: src/Module/Moderation/Users/Active.php:112 +#: src/Module/Moderation/Users/Blocked.php:112 +#: src/Module/Moderation/Users/Deleted.php:69 +#: src/Module/Moderation/Users/Index.php:126 +#: src/Module/Moderation/Users/Index.php:146 msgid "Last public item" msgstr "" -#: src/Module/Moderation/Users/Active.php:134 +#: src/Module/Moderation/Users/Active.php:120 msgid "Active Accounts" msgstr "" -#: src/Module/Moderation/Users/Active.php:138 -#: src/Module/Moderation/Users/Blocked.php:137 -#: src/Module/Moderation/Users/Index.php:153 +#: src/Module/Moderation/Users/Active.php:124 +#: src/Module/Moderation/Users/Blocked.php:123 +#: src/Module/Moderation/Users/Index.php:139 msgid "User blocked" msgstr "" -#: src/Module/Moderation/Users/Active.php:139 -#: src/Module/Moderation/Users/Blocked.php:139 -#: src/Module/Moderation/Users/Index.php:155 +#: src/Module/Moderation/Users/Active.php:125 +#: src/Module/Moderation/Users/Blocked.php:125 +#: src/Module/Moderation/Users/Index.php:141 msgid "Site admin" msgstr "" -#: src/Module/Moderation/Users/Active.php:140 -#: src/Module/Moderation/Users/Blocked.php:140 -#: src/Module/Moderation/Users/Index.php:156 +#: src/Module/Moderation/Users/Active.php:126 +#: src/Module/Moderation/Users/Blocked.php:126 +#: src/Module/Moderation/Users/Index.php:142 msgid "Account expired" msgstr "Kontot slutade gälla" -#: src/Module/Moderation/Users/Active.php:141 -#: src/Module/Moderation/Users/Index.php:159 +#: src/Module/Moderation/Users/Active.php:127 +#: src/Module/Moderation/Users/Index.php:145 msgid "Create a new user" msgstr "" -#: src/Module/Moderation/Users/Active.php:147 -#: src/Module/Moderation/Users/Blocked.php:146 -#: src/Module/Moderation/Users/Index.php:165 +#: src/Module/Moderation/Users/Active.php:133 +#: src/Module/Moderation/Users/Blocked.php:132 +#: src/Module/Moderation/Users/Index.php:151 msgid "" "Selected users will be deleted!\\n\\nEverything these users had posted on " "this site will be permanently deleted!\\n\\nAre you sure?" msgstr "" -#: src/Module/Moderation/Users/Active.php:148 -#: src/Module/Moderation/Users/Blocked.php:147 -#: src/Module/Moderation/Users/Index.php:166 +#: src/Module/Moderation/Users/Active.php:134 +#: src/Module/Moderation/Users/Blocked.php:133 +#: src/Module/Moderation/Users/Index.php:152 msgid "" "The user {0} will be deleted!\\n\\nEverything this user has posted on this " "site will be permanently deleted!\\n\\nAre you sure?" msgstr "" -#: src/Module/Moderation/Users/Blocked.php:43 -#: src/Module/Moderation/Users/Index.php:50 +#: src/Module/Moderation/Users/Blocked.php:29 +#: src/Module/Moderation/Users/Index.php:36 #, php-format msgid "%s user unblocked" msgid_plural "%s users unblocked" msgstr[0] "" msgstr[1] "" -#: src/Module/Moderation/Users/Blocked.php:92 -#: src/Module/Moderation/Users/Index.php:106 +#: src/Module/Moderation/Users/Blocked.php:78 +#: src/Module/Moderation/Users/Index.php:92 #, php-format msgid "User \"%s\" unblocked" msgstr "" -#: src/Module/Moderation/Users/Blocked.php:134 +#: src/Module/Moderation/Users/Blocked.php:120 msgid "Blocked Users" msgstr "" -#: src/Module/Moderation/Users/Create.php:62 +#: src/Module/Moderation/Users/Create.php:48 msgid "New User" msgstr "Ny användare" -#: src/Module/Moderation/Users/Create.php:63 +#: src/Module/Moderation/Users/Create.php:49 msgid "Add User" msgstr "Lägg till användare" -#: src/Module/Moderation/Users/Create.php:70 +#: src/Module/Moderation/Users/Create.php:56 msgid "Name of the new user." msgstr "Namn på den nya användaren." -#: src/Module/Moderation/Users/Create.php:71 +#: src/Module/Moderation/Users/Create.php:57 msgid "Nickname" msgstr "Smeknamn" -#: src/Module/Moderation/Users/Create.php:71 +#: src/Module/Moderation/Users/Create.php:57 msgid "Nickname of the new user." msgstr "Smeknamn på den nya användaren." -#: src/Module/Moderation/Users/Create.php:72 +#: src/Module/Moderation/Users/Create.php:58 msgid "Email address of the new user." msgstr "E-postadress för den nya användaren." -#: src/Module/Moderation/Users/Deleted.php:81 +#: src/Module/Moderation/Users/Deleted.php:67 msgid "Users awaiting permanent deletion" msgstr "" -#: src/Module/Moderation/Users/Deleted.php:83 -#: src/Module/Moderation/Users/Index.php:160 +#: src/Module/Moderation/Users/Deleted.php:69 +#: src/Module/Moderation/Users/Index.php:146 msgid "Permanent deletion" msgstr "" -#: src/Module/Moderation/Users/Index.php:150 +#: src/Module/Moderation/Users/Index.php:136 msgid "User waiting for permanent deletion" msgstr "" -#: src/Module/Moderation/Users/Pending.php:44 +#: src/Module/Moderation/Users/Pending.php:30 #, php-format msgid "%s user approved" msgid_plural "%s users approved" msgstr[0] "" msgstr[1] "" -#: src/Module/Moderation/Users/Pending.php:51 +#: src/Module/Moderation/Users/Pending.php:37 #, php-format msgid "%s registration revoked" msgid_plural "%s registrations revoked" msgstr[0] "" msgstr[1] "" -#: src/Module/Moderation/Users/Pending.php:76 +#: src/Module/Moderation/Users/Pending.php:62 msgid "Account approved." msgstr "Kontot har godkänts." -#: src/Module/Moderation/Users/Pending.php:82 +#: src/Module/Moderation/Users/Pending.php:68 msgid "Registration revoked" msgstr "" -#: src/Module/Moderation/Users/Pending.php:97 +#: src/Module/Moderation/Users/Pending.php:83 msgid "User registrations awaiting review" msgstr "" -#: src/Module/Moderation/Users/Pending.php:99 +#: src/Module/Moderation/Users/Pending.php:85 msgid "Request date" msgstr "Datum för begäran" -#: src/Module/Moderation/Users/Pending.php:100 +#: src/Module/Moderation/Users/Pending.php:86 msgid "No registrations." msgstr "Inga registreringar." -#: src/Module/Moderation/Users/Pending.php:101 +#: src/Module/Moderation/Users/Pending.php:87 msgid "Note from the user" msgstr "" -#: src/Module/Moderation/Users/Pending.php:103 +#: src/Module/Moderation/Users/Pending.php:89 msgid "Deny" msgstr "Avslå" -#: src/Module/Notifications/Introductions.php:99 +#: src/Module/Notifications/Introductions.php:91 msgid "Show Ignored Requests" msgstr "Visa förfrågningar du ignorerat" -#: src/Module/Notifications/Introductions.php:99 +#: src/Module/Notifications/Introductions.php:91 msgid "Hide Ignored Requests" msgstr "Dölj förfrågningar du ignorerat" -#: src/Module/Notifications/Introductions.php:115 -#: src/Module/Notifications/Introductions.php:178 +#: src/Module/Notifications/Introductions.php:107 +#: src/Module/Notifications/Introductions.php:170 msgid "Notification type:" msgstr "" -#: src/Module/Notifications/Introductions.php:118 +#: src/Module/Notifications/Introductions.php:110 msgid "Suggested by:" msgstr "" -#: src/Module/Notifications/Introductions.php:143 +#: src/Module/Notifications/Introductions.php:135 msgid "Claims to be known to you: " msgstr "Hävdar att du vet vem han/hon är: " -#: src/Module/Notifications/Introductions.php:152 +#: src/Module/Notifications/Introductions.php:144 msgid "Shall your connection be bidirectional or not?" msgstr "" -#: src/Module/Notifications/Introductions.php:153 +#: src/Module/Notifications/Introductions.php:145 #, php-format msgid "" "Accepting %s as a friend allows %s to subscribe to your posts, and you will " "also receive updates from them in your news feed." msgstr "" -#: src/Module/Notifications/Introductions.php:154 +#: src/Module/Notifications/Introductions.php:146 #, php-format msgid "" "Accepting %s as a subscriber allows them to subscribe to your posts, but you" " will not receive updates from them in your news feed." msgstr "" -#: src/Module/Notifications/Introductions.php:156 +#: src/Module/Notifications/Introductions.php:148 msgid "Friend" msgstr "Vän" -#: src/Module/Notifications/Introductions.php:157 +#: src/Module/Notifications/Introductions.php:149 msgid "Subscriber" msgstr "" -#: src/Module/Notifications/Introductions.php:216 +#: src/Module/Notifications/Introductions.php:208 msgid "No introductions." msgstr "Inga presentationer." -#: src/Module/Notifications/Introductions.php:217 -#: src/Module/Notifications/Notifications.php:135 +#: src/Module/Notifications/Introductions.php:209 +#: src/Module/Notifications/Notifications.php:127 #, php-format msgid "No more %s notifications." msgstr "" -#: src/Module/Notifications/Notification.php:135 +#: src/Module/Notifications/Notification.php:121 msgid "You must be logged in to show this page." msgstr "" -#: src/Module/Notifications/Notifications.php:66 +#: src/Module/Notifications/Notifications.php:52 msgid "Network Notifications" msgstr "Nätverksaviseringar" -#: src/Module/Notifications/Notifications.php:72 +#: src/Module/Notifications/Notifications.php:58 msgid "System Notifications" msgstr "Systemets aviseringar" -#: src/Module/Notifications/Notifications.php:78 +#: src/Module/Notifications/Notifications.php:64 msgid "Personal Notifications" msgstr "Privata aviseringar" -#: src/Module/Notifications/Notifications.php:84 +#: src/Module/Notifications/Notifications.php:70 msgid "Home Notifications" msgstr "Hem-aviseringar" -#: src/Module/Notifications/Notifications.php:140 +#: src/Module/Notifications/Notifications.php:132 msgid "Show unread" msgstr "" -#: src/Module/Notifications/Ping.php:220 +#: src/Module/Notifications/Ping.php:206 msgid "{0} requested registration" msgstr "{0} bad om registrering" -#: src/Module/Notifications/Ping.php:229 +#: src/Module/Notifications/Ping.php:215 #, php-format msgid "{0} and %d others requested registration" msgstr "{0} och %d andra bad om registrering" -#: src/Module/OAuth/Acknowledge.php:51 +#: src/Module/OAuth/Acknowledge.php:37 msgid "Authorize application connection" msgstr "" -#: src/Module/OAuth/Acknowledge.php:53 +#: src/Module/OAuth/Acknowledge.php:39 msgid "" "Do you want to authorize this application to access your posts and contacts," " and/or create new posts for you?" msgstr "Vill du ge den här applikationen åtkomst till dina inlägg och kontakter, och/eller skapa nya inlägg för dig?" -#: src/Module/OAuth/Authorize.php:54 +#: src/Module/OAuth/Authorize.php:40 msgid "Unsupported or missing response type" msgstr "" -#: src/Module/OAuth/Authorize.php:59 src/Module/OAuth/Token.php:75 +#: src/Module/OAuth/Authorize.php:45 src/Module/OAuth/Token.php:61 msgid "Incomplete request data" msgstr "" -#: src/Module/OAuth/Authorize.php:106 +#: src/Module/OAuth/Authorize.php:92 #, php-format msgid "" "Please copy the following authentication code into your application and " "close this window: %s" msgstr "" -#: src/Module/OAuth/Token.php:80 +#: src/Module/OAuth/Token.php:66 msgid "Invalid data or unknown client" msgstr "" -#: src/Module/OAuth/Token.php:105 +#: src/Module/OAuth/Token.php:91 msgid "Unsupported or missing grant type" msgstr "" -#: src/Module/OStatus/Repair.php:83 -msgid "Resubscribing to OStatus contacts" -msgstr "" - -#: src/Module/OStatus/Repair.php:84 src/Module/OStatus/Subscribe.php:160 -msgid "Keep this window open until done." -msgstr "Håll det här fönstret öppet tills du är klar." - -#: src/Module/OStatus/Repair.php:85 -msgid "✔ Done" -msgstr "" - -#: src/Module/OStatus/Repair.php:86 -msgid "No OStatus contacts to resubscribe to." -msgstr "" - -#: src/Module/OStatus/Subscribe.php:72 +#: src/Module/OStatus/Subscribe.php:58 msgid "Subscribing to contacts" msgstr "Prenumererar på kontakter" -#: src/Module/OStatus/Subscribe.php:81 +#: src/Module/OStatus/Subscribe.php:67 msgid "No contact provided." msgstr "Ingen kontakt angedd" -#: src/Module/OStatus/Subscribe.php:87 +#: src/Module/OStatus/Subscribe.php:73 msgid "Couldn't fetch information for contact." msgstr "Kunde inte hämta information för kontakten." -#: src/Module/OStatus/Subscribe.php:98 +#: src/Module/OStatus/Subscribe.php:84 msgid "Couldn't fetch friends for contact." msgstr "Kunde inte hämta vänner för kontakt." -#: src/Module/OStatus/Subscribe.php:104 src/Module/OStatus/Subscribe.php:115 +#: src/Module/OStatus/Subscribe.php:90 src/Module/OStatus/Subscribe.php:101 msgid "Couldn't fetch following contacts." msgstr "Kunde inte hämta följande kontakter." -#: src/Module/OStatus/Subscribe.php:110 +#: src/Module/OStatus/Subscribe.php:96 msgid "Couldn't fetch remote profile." msgstr "Kunde inte hämta profil" -#: src/Module/OStatus/Subscribe.php:120 +#: src/Module/OStatus/Subscribe.php:106 msgid "Unsupported network" msgstr "Nätverket stöds inte" -#: src/Module/OStatus/Subscribe.php:136 +#: src/Module/OStatus/Subscribe.php:122 msgid "Done" msgstr "Färdig" -#: src/Module/OStatus/Subscribe.php:150 +#: src/Module/OStatus/Subscribe.php:136 msgid "success" msgstr "lyckades" -#: src/Module/OStatus/Subscribe.php:152 +#: src/Module/OStatus/Subscribe.php:138 msgid "failed" msgstr "misslyckades" -#: src/Module/OStatus/Subscribe.php:155 +#: src/Module/OStatus/Subscribe.php:141 msgid "ignored" msgstr "ignorerades" -#: src/Module/Photo.php:124 +#: src/Module/OStatus/Subscribe.php:146 +msgid "Keep this window open until done." +msgstr "Håll det här fönstret öppet tills du är klar." + +#: src/Module/Photo.php:108 msgid "The Photo is not available." msgstr "" -#: src/Module/Photo.php:149 +#: src/Module/Photo.php:133 #, php-format msgid "The Photo with id %s is not available." msgstr "" -#: src/Module/Photo.php:190 +#: src/Module/Photo.php:174 #, php-format msgid "Invalid external resource with url %s." msgstr "" -#: src/Module/Photo.php:192 +#: src/Module/Photo.php:176 #, php-format msgid "Invalid photo with id %s." msgstr "" -#: src/Module/Post/Edit.php:82 src/Module/Post/Edit.php:96 +#: src/Module/Post/Edit.php:68 src/Module/Post/Edit.php:82 msgid "Post not found." msgstr "" -#: src/Module/Post/Edit.php:102 +#: src/Module/Post/Edit.php:88 msgid "Edit post" msgstr "Ändra inlägg" -#: src/Module/Post/Edit.php:136 +#: src/Module/Post/Edit.php:122 msgid "web link" msgstr "webblänk" -#: src/Module/Post/Edit.php:137 +#: src/Module/Post/Edit.php:123 msgid "Insert video link" msgstr "Klistra in videolänk" -#: src/Module/Post/Edit.php:138 +#: src/Module/Post/Edit.php:124 msgid "video link" msgstr "videolänk" -#: src/Module/Post/Edit.php:139 +#: src/Module/Post/Edit.php:125 msgid "Insert audio link" msgstr "Klistra in ljudlänk" -#: src/Module/Post/Edit.php:140 +#: src/Module/Post/Edit.php:126 msgid "audio link" msgstr "ljudlänk" -#: src/Module/Post/Tag/Remove.php:106 +#: src/Module/Post/Tag/Remove.php:92 msgid "Remove Item Tag" msgstr "Ta bort tagg" -#: src/Module/Post/Tag/Remove.php:107 +#: src/Module/Post/Tag/Remove.php:93 msgid "Select a tag to remove: " msgstr "Välj vilken tagg som ska tas bort: " -#: src/Module/Post/Tag/Remove.php:108 -#: src/Module/Settings/TwoFactor/Trusted.php:147 +#: src/Module/Post/Tag/Remove.php:94 +#: src/Module/Settings/TwoFactor/Trusted.php:133 msgid "Remove" msgstr "Ta bort" -#: src/Module/Privacy/PermissionTooltip.php:71 +#: src/Module/Privacy/PermissionTooltip.php:57 #, php-format msgid "Wrong type \"%s\", expected one of: %s" msgstr "" -#: src/Module/Privacy/PermissionTooltip.php:101 +#: src/Module/Privacy/PermissionTooltip.php:87 msgid "Model not found" msgstr "" -#: src/Module/Privacy/PermissionTooltip.php:118 +#: src/Module/Privacy/PermissionTooltip.php:104 msgid "Unlisted" msgstr "" -#: src/Module/Privacy/PermissionTooltip.php:124 +#: src/Module/Privacy/PermissionTooltip.php:110 msgid "Remote privacy information not available." msgstr "Remote privacy information not available." -#: src/Module/Privacy/PermissionTooltip.php:131 +#: src/Module/Privacy/PermissionTooltip.php:117 msgid "Visible to:" msgstr "Synlig för:" -#: src/Module/Privacy/PermissionTooltip.php:133 +#: src/Module/Privacy/PermissionTooltip.php:119 msgid "CC:" msgstr "" -#: src/Module/Privacy/PermissionTooltip.php:134 +#: src/Module/Privacy/PermissionTooltip.php:120 msgid "BCC:" msgstr "" -#: src/Module/Privacy/PermissionTooltip.php:135 +#: src/Module/Privacy/PermissionTooltip.php:121 msgid "Audience:" msgstr "" -#: src/Module/Privacy/PermissionTooltip.php:136 +#: src/Module/Privacy/PermissionTooltip.php:122 msgid "Attributed To:" msgstr "" -#: src/Module/Privacy/PermissionTooltip.php:234 +#: src/Module/Privacy/PermissionTooltip.php:220 #, php-format msgid "Collection (%s)" msgstr "" -#: src/Module/Privacy/PermissionTooltip.php:238 +#: src/Module/Privacy/PermissionTooltip.php:224 #, php-format msgid "Followers (%s)" msgstr "" -#: src/Module/Privacy/PermissionTooltip.php:255 +#: src/Module/Privacy/PermissionTooltip.php:241 #, php-format msgid "%d more" msgstr "" -#: src/Module/Profile/Contacts.php:159 +#: src/Module/Profile/Contacts.php:145 msgid "No contacts." msgstr "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:1095 -#: src/Protocol/OStatus.php:1011 -#, php-format -msgid "%s's timeline" -msgstr "" - -#: src/Module/Profile/Conversations.php:107 src/Module/Profile/Profile.php:352 -#: src/Protocol/Feed.php:1099 src/Protocol/OStatus.php:1016 +#: src/Module/Profile/Conversations.php:92 src/Module/Profile/Profile.php:339 +#: src/Protocol/Feed.php:1097 #, php-format msgid "%s's posts" msgstr "" -#: src/Module/Profile/Conversations.php:108 src/Module/Profile/Profile.php:353 -#: src/Protocol/Feed.php:1102 src/Protocol/OStatus.php:1020 +#: src/Module/Profile/Conversations.php:93 src/Module/Profile/Profile.php:340 +#: src/Protocol/Feed.php:1100 #, php-format msgid "%s's comments" msgstr "" -#: src/Module/Profile/Photos.php:164 src/Module/Profile/Photos.php:167 -#: src/Module/Profile/Photos.php:192 -#: src/Module/Settings/Profile/Photo/Index.php:58 +#: src/Module/Profile/Conversations.php:94 src/Module/Profile/Profile.php:341 +#: src/Protocol/Feed.php:1093 +#, php-format +msgid "%s's timeline" +msgstr "" + +#: src/Module/Profile/Photos.php:150 src/Module/Profile/Photos.php:153 +#: src/Module/Profile/Photos.php:178 +#: src/Module/Settings/Profile/Photo/Index.php:44 #, php-format msgid "Image exceeds size limit of %s" msgstr "Bildstorlek överstiger %s" -#: src/Module/Profile/Photos.php:170 +#: src/Module/Profile/Photos.php:156 msgid "Image upload didn't complete, please try again" msgstr "Uppladdningen av bilden slutfördes inte, vänligen försök igen." -#: src/Module/Profile/Photos.php:173 +#: src/Module/Profile/Photos.php:159 msgid "Image file is missing" msgstr "Bildfilen saknas" -#: src/Module/Profile/Photos.php:178 +#: src/Module/Profile/Photos.php:164 msgid "" "Server can't accept new file upload at this time, please contact your " "administrator" msgstr "Servern kan just nu inte acceptera uppladdning av en ny fil, vänligen kontakta din administratör" -#: src/Module/Profile/Photos.php:200 +#: src/Module/Profile/Photos.php:186 msgid "Image file is empty." msgstr "Bildfilen är tom." -#: src/Module/Profile/Photos.php:352 +#: src/Module/Profile/Photos.php:338 msgid "View Album" msgstr "Titta i album" -#: src/Module/Profile/Profile.php:112 src/Module/Profile/Restricted.php:50 +#: src/Module/Profile/Profile.php:100 src/Module/Profile/Restricted.php:36 msgid "Profile not found." msgstr "Profilen hittades inte." -#: src/Module/Profile/Profile.php:158 +#: src/Module/Profile/Profile.php:146 #, php-format msgid "" "You're currently viewing your profile as %s Cancel" msgstr "" -#: src/Module/Profile/Profile.php:167 +#: src/Module/Profile/Profile.php:155 msgid "Full Name:" msgstr "Fullständigt namn:" -#: src/Module/Profile/Profile.php:172 +#: src/Module/Profile/Profile.php:160 msgid "Member since:" msgstr "" -#: src/Module/Profile/Profile.php:178 +#: src/Module/Profile/Profile.php:166 msgid "j F, Y" msgstr "j F, Y" -#: src/Module/Profile/Profile.php:179 +#: src/Module/Profile/Profile.php:167 msgid "j F" msgstr "j F" -#: src/Module/Profile/Profile.php:187 src/Util/Temporal.php:168 +#: src/Module/Profile/Profile.php:175 src/Util/Temporal.php:154 msgid "Birthday:" msgstr "Födelsedatum:" -#: src/Module/Profile/Profile.php:190 -#: src/Module/Settings/Profile/Index.php:291 src/Util/Temporal.php:170 +#: src/Module/Profile/Profile.php:178 +#: src/Module/Settings/Profile/Index.php:282 src/Util/Temporal.php:156 msgid "Age: " msgstr "Ålder: " -#: src/Module/Profile/Profile.php:190 -#: src/Module/Settings/Profile/Index.php:291 src/Util/Temporal.php:170 +#: src/Module/Profile/Profile.php:178 +#: src/Module/Settings/Profile/Index.php:282 src/Util/Temporal.php:156 #, php-format msgid "%d year old" msgid_plural "%d years old" msgstr[0] "" msgstr[1] "" -#: src/Module/Profile/Profile.php:195 -#: src/Module/Settings/Profile/Index.php:284 +#: src/Module/Profile/Profile.php:183 +#: src/Module/Settings/Profile/Index.php:275 msgid "Description:" msgstr "Beskrivning:" -#: src/Module/Profile/Profile.php:261 +#: src/Module/Profile/Profile.php:249 msgid "Groups:" msgstr "" -#: src/Module/Profile/Profile.php:273 +#: src/Module/Profile/Profile.php:261 msgid "View profile as:" msgstr "" -#: src/Module/Profile/Profile.php:290 +#: src/Module/Profile/Profile.php:278 msgid "View as" msgstr "" -#: src/Module/Profile/RemoteFollow.php:82 +#: src/Module/Profile/RemoteFollow.php:68 msgid "Profile unavailable." msgstr "Profilen är inte tillgänglig." -#: src/Module/Profile/RemoteFollow.php:88 +#: src/Module/Profile/RemoteFollow.php:74 msgid "Invalid locator" msgstr "Invalid locator" -#: src/Module/Profile/RemoteFollow.php:95 +#: src/Module/Profile/RemoteFollow.php:81 msgid "The provided profile link doesn't seem to be valid" msgstr "" -#: src/Module/Profile/RemoteFollow.php:100 +#: src/Module/Profile/RemoteFollow.php:86 msgid "" "Remote subscription can't be done for your network. Please subscribe " "directly on your system." msgstr "" -#: src/Module/Profile/RemoteFollow.php:128 +#: src/Module/Profile/RemoteFollow.php:114 msgid "Friend/Connection Request" msgstr "Vän- eller kontaktförfrågan" -#: src/Module/Profile/RemoteFollow.php:129 +#: src/Module/Profile/RemoteFollow.php:115 #, php-format msgid "" "Enter your Webfinger address (user@domain.tld) or profile URL here. If this " @@ -9264,579 +9258,579 @@ msgid "" " or %s directly on your system." msgstr "" -#: src/Module/Profile/RemoteFollow.php:130 +#: src/Module/Profile/RemoteFollow.php:116 #, php-format msgid "" "If you are not yet a member of the free social web, follow " "this link to find a public Friendica node and join us today." msgstr "" -#: src/Module/Profile/RemoteFollow.php:131 +#: src/Module/Profile/RemoteFollow.php:117 msgid "Your Webfinger address or profile URL:" msgstr "" -#: src/Module/Profile/Restricted.php:59 +#: src/Module/Profile/Restricted.php:45 msgid "Restricted profile" msgstr "" -#: src/Module/Profile/Restricted.php:60 +#: src/Module/Profile/Restricted.php:46 msgid "" "This profile has been restricted which prevents access to their public " "content from anonymous visitors." msgstr "" -#: src/Module/Profile/Schedule.php:83 +#: src/Module/Profile/Schedule.php:69 msgid "Scheduled" msgstr "" -#: src/Module/Profile/Schedule.php:84 +#: src/Module/Profile/Schedule.php:70 msgid "Content" msgstr "" -#: src/Module/Profile/Schedule.php:85 +#: src/Module/Profile/Schedule.php:71 msgid "Remove post" msgstr "" -#: src/Module/Register.php:85 +#: src/Module/Register.php:77 msgid "Only parent users can create additional accounts." msgstr "" -#: src/Module/Register.php:100 src/Module/User/Import.php:112 +#: src/Module/Register.php:92 src/Module/User/Import.php:98 msgid "" "This site has exceeded the number of allowed daily account registrations. " "Please try again tomorrow." msgstr "" -#: src/Module/Register.php:117 +#: src/Module/Register.php:109 msgid "" "You may (optionally) fill in this form via OpenID by supplying your OpenID " "and clicking \"Register\"." msgstr "" -#: src/Module/Register.php:118 +#: src/Module/Register.php:110 msgid "" "If you are not familiar with OpenID, please leave that field blank and fill " "in the rest of the items." msgstr "Om du inte vet vad OpenID är, eller inte vill använda det, kan du lämna det fältet tomt och fylla i resten." -#: src/Module/Register.php:119 +#: src/Module/Register.php:111 msgid "Your OpenID (optional): " msgstr "OpenID (om du vill): " -#: src/Module/Register.php:128 +#: src/Module/Register.php:120 msgid "Include your profile in member directory?" msgstr "Ta med profilen i medlemskatalogen?" -#: src/Module/Register.php:149 +#: src/Module/Register.php:141 msgid "Note for the admin" msgstr "" -#: src/Module/Register.php:149 +#: src/Module/Register.php:141 msgid "Leave a message for the admin, why you want to join this node" msgstr "" -#: src/Module/Register.php:150 +#: src/Module/Register.php:142 msgid "Membership on this site is by invitation only." msgstr "" -#: src/Module/Register.php:151 +#: src/Module/Register.php:143 msgid "Your invitation code: " msgstr "" -#: src/Module/Register.php:159 +#: src/Module/Register.php:151 msgid "Your Display Name (as you would like it to be displayed on this system" msgstr "" -#: src/Module/Register.php:160 +#: src/Module/Register.php:152 msgid "" "Your Email Address: (Initial information will be send there, so this has to " "be an existing address.)" msgstr "" -#: src/Module/Register.php:161 +#: src/Module/Register.php:153 msgid "Please repeat your e-mail address:" msgstr "" -#: src/Module/Register.php:163 src/Module/Security/PasswordTooLong.php:100 -#: src/Module/Settings/Account.php:564 +#: src/Module/Register.php:155 src/Module/Security/PasswordTooLong.php:86 +#: src/Module/Settings/Account.php:555 msgid "New Password:" msgstr "Nytt lösenord" -#: src/Module/Register.php:163 +#: src/Module/Register.php:155 msgid "Leave empty for an auto generated password." msgstr "" -#: src/Module/Register.php:164 src/Module/Security/PasswordTooLong.php:101 -#: src/Module/Settings/Account.php:565 +#: src/Module/Register.php:156 src/Module/Security/PasswordTooLong.php:87 +#: src/Module/Settings/Account.php:556 msgid "Confirm:" msgstr "Bekräfta (repetera):" -#: src/Module/Register.php:165 +#: src/Module/Register.php:157 #, php-format msgid "" "Choose a profile nickname. This must begin with a text character. Your " "profile address on this site will then be \"nickname@%s\"." msgstr "" -#: src/Module/Register.php:166 +#: src/Module/Register.php:158 msgid "Choose a nickname: " msgstr "Välj ett användarnamn: " -#: src/Module/Register.php:174 src/Module/User/Import.php:118 +#: src/Module/Register.php:166 src/Module/User/Import.php:104 msgid "Import" msgstr "Importera" -#: src/Module/Register.php:175 +#: src/Module/Register.php:167 msgid "Import your profile to this friendica instance" msgstr "Importera din profil till den här friendica-instansen" -#: src/Module/Register.php:182 +#: src/Module/Register.php:174 msgid "Note: This node explicitly contains adult content" msgstr "" -#: src/Module/Register.php:184 src/Module/Settings/Delegation.php:181 +#: src/Module/Register.php:176 src/Module/Settings/Delegation.php:167 msgid "Parent Password:" msgstr "" -#: src/Module/Register.php:184 src/Module/Settings/Delegation.php:181 +#: src/Module/Register.php:176 src/Module/Settings/Delegation.php:167 msgid "" "Please enter the password of the parent account to legitimize your request." msgstr "" -#: src/Module/Register.php:213 +#: src/Module/Register.php:205 msgid "Password doesn't match." msgstr "" -#: src/Module/Register.php:219 +#: src/Module/Register.php:211 msgid "Please enter your password." msgstr "" -#: src/Module/Register.php:261 +#: src/Module/Register.php:253 msgid "You have entered too much information." msgstr "" -#: src/Module/Register.php:284 +#: src/Module/Register.php:276 msgid "Please enter the identical mail address in the second field." msgstr "" -#: src/Module/Register.php:292 +#: src/Module/Register.php:284 msgid "Nickname cannot start with a digit." msgstr "" -#: src/Module/Register.php:294 +#: src/Module/Register.php:286 msgid "Nickname can only contain US-ASCII characters." msgstr "" -#: src/Module/Register.php:323 +#: src/Module/Register.php:315 msgid "The additional account was created." msgstr "" -#: src/Module/Register.php:348 +#: src/Module/Register.php:340 msgid "" "Registration successful. Please check your email for further instructions." msgstr "Registrering klar. Kolla din e-post för vidare information." -#: src/Module/Register.php:355 +#: src/Module/Register.php:347 #, php-format msgid "" "Failed to send email message. Here your accout details:
login: %s
" "password: %s

You can change your password after login." msgstr "" -#: src/Module/Register.php:361 +#: src/Module/Register.php:353 msgid "Registration successful." msgstr "" -#: src/Module/Register.php:370 src/Module/Register.php:377 -#: src/Module/Register.php:387 +#: src/Module/Register.php:362 src/Module/Register.php:369 +#: src/Module/Register.php:379 msgid "Your registration can not be processed." msgstr "Det går inte att behandla registreringen." -#: src/Module/Register.php:376 +#: src/Module/Register.php:368 msgid "You have to leave a request note for the admin." msgstr "" -#: src/Module/Register.php:386 +#: src/Module/Register.php:378 msgid "An internal error occured." msgstr "" -#: src/Module/Register.php:408 +#: src/Module/Register.php:400 msgid "Your registration is pending approval by the site owner." msgstr "Din registrering inväntar godkännande av webbplatsens ägare." -#: src/Module/Search/Acl.php:73 +#: src/Module/Search/Acl.php:64 msgid "You must be logged in to use this module." msgstr "" -#: src/Module/Search/Index.php:69 +#: src/Module/Search/Index.php:55 msgid "Only logged in users are permitted to perform a search." msgstr "" -#: src/Module/Search/Index.php:89 +#: src/Module/Search/Index.php:75 msgid "Only one search per minute is permitted for not logged in users." msgstr "" -#: src/Module/Search/Index.php:205 +#: src/Module/Search/Index.php:191 #, php-format msgid "Items tagged with: %s" msgstr "" -#: src/Module/Search/Saved.php:59 +#: src/Module/Search/Saved.php:49 msgid "Search term was not saved." msgstr "" -#: src/Module/Search/Saved.php:62 +#: src/Module/Search/Saved.php:52 msgid "Search term already saved." msgstr "" -#: src/Module/Search/Saved.php:68 +#: src/Module/Search/Saved.php:58 msgid "Search term was not removed." msgstr "" -#: src/Module/Security/Login.php:123 +#: src/Module/Security/Login.php:113 msgid "Create a New Account" msgstr "Skapa nytt konto" -#: src/Module/Security/Login.php:142 +#: src/Module/Security/Login.php:132 msgid "Your OpenID: " msgstr "" -#: src/Module/Security/Login.php:145 +#: src/Module/Security/Login.php:135 msgid "" "Please enter your username and password to add the OpenID to your existing " "account." msgstr "" -#: src/Module/Security/Login.php:147 +#: src/Module/Security/Login.php:137 msgid "Or login using OpenID: " msgstr "eller logga in genom att använda OpenID:" -#: src/Module/Security/Login.php:161 +#: src/Module/Security/Login.php:151 msgid "Password: " msgstr "Lösenord: " -#: src/Module/Security/Login.php:162 +#: src/Module/Security/Login.php:152 msgid "Remember me" msgstr "Kom ihåg mig" -#: src/Module/Security/Login.php:171 +#: src/Module/Security/Login.php:161 msgid "Forgot your password?" msgstr "Har du glömt lösenordet?" -#: src/Module/Security/Login.php:174 +#: src/Module/Security/Login.php:164 msgid "Website Terms of Service" msgstr "" -#: src/Module/Security/Login.php:175 +#: src/Module/Security/Login.php:165 msgid "terms of service" msgstr "användarvillkor" -#: src/Module/Security/Login.php:177 +#: src/Module/Security/Login.php:167 msgid "Website Privacy Policy" msgstr "Integritetspolicy för hemsidan" -#: src/Module/Security/Login.php:178 +#: src/Module/Security/Login.php:168 msgid "privacy policy" msgstr "integritetspolicy" -#: src/Module/Security/Logout.php:84 -#: src/Module/Security/TwoFactor/SignOut.php:78 -#: src/Module/Security/TwoFactor/SignOut.php:86 -#: src/Module/Security/TwoFactor/SignOut.php:108 -#: src/Module/Security/TwoFactor/SignOut.php:115 +#: src/Module/Security/Logout.php:75 +#: src/Module/Security/TwoFactor/SignOut.php:64 +#: src/Module/Security/TwoFactor/SignOut.php:72 +#: src/Module/Security/TwoFactor/SignOut.php:94 +#: src/Module/Security/TwoFactor/SignOut.php:101 msgid "Logged out." msgstr "Utloggad." -#: src/Module/Security/OpenID.php:54 +#: src/Module/Security/OpenID.php:40 msgid "OpenID protocol error. No ID returned" msgstr "" -#: src/Module/Security/OpenID.php:90 +#: src/Module/Security/OpenID.php:76 msgid "" "Account not found. Please login to your existing account to add the OpenID " "to it." msgstr "" -#: src/Module/Security/OpenID.php:92 +#: src/Module/Security/OpenID.php:78 msgid "" "Account not found. Please register a new account or login to your existing " "account to add the OpenID to it." msgstr "" -#: src/Module/Security/PasswordTooLong.php:57 -#: src/Module/Settings/Account.php:67 +#: src/Module/Security/PasswordTooLong.php:43 +#: src/Module/Settings/Account.php:53 msgid "Passwords do not match." msgstr "Lösenorden matchar inte." -#: src/Module/Security/PasswordTooLong.php:64 +#: src/Module/Security/PasswordTooLong.php:50 msgid "Password does not need changing." msgstr "" -#: src/Module/Security/PasswordTooLong.php:77 -#: src/Module/Settings/Account.php:81 +#: src/Module/Security/PasswordTooLong.php:63 +#: src/Module/Settings/Account.php:67 msgid "Password unchanged." msgstr "Lösenordet oändrat." -#: src/Module/Security/PasswordTooLong.php:91 +#: src/Module/Security/PasswordTooLong.php:77 msgid "Password Too Long" msgstr "" -#: src/Module/Security/PasswordTooLong.php:92 +#: src/Module/Security/PasswordTooLong.php:78 msgid "" "Since version 2022.09, we've realized that any password longer than 72 " "characters is truncated during hashing. To prevent any confusion about this " "behavior, please update your password to be fewer or equal to 72 characters." msgstr "" -#: src/Module/Security/PasswordTooLong.php:93 +#: src/Module/Security/PasswordTooLong.php:79 msgid "Update Password" msgstr "" -#: src/Module/Security/PasswordTooLong.php:99 -#: src/Module/Settings/Account.php:566 +#: src/Module/Security/PasswordTooLong.php:85 +#: src/Module/Settings/Account.php:557 msgid "Current Password:" msgstr "Nuvarande lösenord:" -#: src/Module/Security/PasswordTooLong.php:99 -#: src/Module/Settings/Account.php:566 +#: src/Module/Security/PasswordTooLong.php:85 +#: src/Module/Settings/Account.php:557 msgid "Your current password to confirm the changes" msgstr "Ditt nuvarande lösenord för att bekräfta ändringar" -#: src/Module/Security/PasswordTooLong.php:100 -#: src/Module/Settings/Account.php:550 +#: src/Module/Security/PasswordTooLong.php:86 +#: src/Module/Settings/Account.php:541 msgid "" "Allowed characters are a-z, A-Z, 0-9 and special characters except white " "spaces and accentuated letters." msgstr "" -#: src/Module/Security/PasswordTooLong.php:100 -#: src/Module/Settings/Account.php:551 +#: src/Module/Security/PasswordTooLong.php:86 +#: src/Module/Settings/Account.php:542 msgid "Password length is limited to 72 characters." msgstr "" -#: src/Module/Security/TwoFactor/Recovery.php:74 +#: src/Module/Security/TwoFactor/Recovery.php:60 #, php-format msgid "Remaining recovery codes: %d" msgstr "" -#: src/Module/Security/TwoFactor/Recovery.php:80 -#: src/Module/Security/TwoFactor/Verify.php:77 -#: src/Module/Settings/TwoFactor/Verify.php:98 +#: src/Module/Security/TwoFactor/Recovery.php:66 +#: src/Module/Security/TwoFactor/Verify.php:63 +#: src/Module/Settings/TwoFactor/Verify.php:84 msgid "Invalid code, please retry." msgstr "" -#: src/Module/Security/TwoFactor/Recovery.php:99 +#: src/Module/Security/TwoFactor/Recovery.php:85 msgid "Two-factor recovery" msgstr "" -#: src/Module/Security/TwoFactor/Recovery.php:100 +#: src/Module/Security/TwoFactor/Recovery.php:86 msgid "" "

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

" msgstr "" -#: src/Module/Security/TwoFactor/Recovery.php:101 +#: src/Module/Security/TwoFactor/Recovery.php:87 #, php-format msgid "Don’t have your phone? Enter a two-factor recovery code" msgstr "" -#: src/Module/Security/TwoFactor/Recovery.php:102 +#: src/Module/Security/TwoFactor/Recovery.php:88 msgid "Please enter a recovery code" msgstr "" -#: src/Module/Security/TwoFactor/Recovery.php:103 +#: src/Module/Security/TwoFactor/Recovery.php:89 msgid "Submit recovery code and complete login" msgstr "" -#: src/Module/Security/TwoFactor/SignOut.php:122 +#: src/Module/Security/TwoFactor/SignOut.php:108 msgid "Sign out of this browser?" msgstr "" -#: src/Module/Security/TwoFactor/SignOut.php:123 +#: src/Module/Security/TwoFactor/SignOut.php:109 msgid "" "

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

" msgstr "" -#: src/Module/Security/TwoFactor/SignOut.php:124 +#: src/Module/Security/TwoFactor/SignOut.php:110 msgid "Sign out" msgstr "" -#: src/Module/Security/TwoFactor/SignOut.php:126 +#: src/Module/Security/TwoFactor/SignOut.php:112 msgid "Trust and sign out" msgstr "" -#: src/Module/Security/TwoFactor/Trust.php:96 +#: src/Module/Security/TwoFactor/Trust.php:82 msgid "Couldn't save browser to Cookie." msgstr "" -#: src/Module/Security/TwoFactor/Trust.php:141 +#: src/Module/Security/TwoFactor/Trust.php:127 msgid "Trust this browser?" msgstr "" -#: src/Module/Security/TwoFactor/Trust.php:142 +#: src/Module/Security/TwoFactor/Trust.php:128 msgid "" "

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

" msgstr "" -#: src/Module/Security/TwoFactor/Trust.php:143 +#: src/Module/Security/TwoFactor/Trust.php:129 msgid "Not now" msgstr "" -#: src/Module/Security/TwoFactor/Trust.php:144 +#: src/Module/Security/TwoFactor/Trust.php:130 msgid "Don't trust" msgstr "" -#: src/Module/Security/TwoFactor/Trust.php:145 +#: src/Module/Security/TwoFactor/Trust.php:131 msgid "Trust" msgstr "" -#: src/Module/Security/TwoFactor/Verify.php:97 +#: src/Module/Security/TwoFactor/Verify.php:83 msgid "" "

Open the two-factor authentication app on your device to get an " "authentication code and verify your identity.

" msgstr "" -#: src/Module/Security/TwoFactor/Verify.php:100 +#: src/Module/Security/TwoFactor/Verify.php:86 #, php-format msgid "" "If you do not have access to your authentication code you can use a two-factor recovery code." msgstr "" -#: src/Module/Security/TwoFactor/Verify.php:101 -#: src/Module/Settings/TwoFactor/Verify.php:158 +#: src/Module/Security/TwoFactor/Verify.php:87 +#: src/Module/Settings/TwoFactor/Verify.php:144 msgid "Please enter a code from your authentication app" msgstr "" -#: src/Module/Security/TwoFactor/Verify.php:102 +#: src/Module/Security/TwoFactor/Verify.php:88 msgid "Verify code and complete login" msgstr "" -#: src/Module/Settings/Account.php:96 +#: src/Module/Settings/Account.php:82 msgid "Please use a shorter name." msgstr "Vänligen ange ett kortare namn." -#: src/Module/Settings/Account.php:99 +#: src/Module/Settings/Account.php:85 msgid "Name too short." msgstr "Namnet för kort." -#: src/Module/Settings/Account.php:108 +#: src/Module/Settings/Account.php:94 msgid "Wrong Password." msgstr "Fel lösenord." -#: src/Module/Settings/Account.php:113 +#: src/Module/Settings/Account.php:99 msgid "Invalid email." msgstr "Ogiltig e-postadress." -#: src/Module/Settings/Account.php:117 +#: src/Module/Settings/Account.php:103 msgid "Cannot change to that email." msgstr "Kan inte byta till den e-postadressen." -#: src/Module/Settings/Account.php:146 src/Module/Settings/Account.php:195 -#: src/Module/Settings/Account.php:216 src/Module/Settings/Account.php:300 -#: src/Module/Settings/Account.php:329 +#: src/Module/Settings/Account.php:132 src/Module/Settings/Account.php:181 +#: src/Module/Settings/Account.php:202 src/Module/Settings/Account.php:286 +#: src/Module/Settings/Account.php:315 msgid "Settings were not updated." msgstr "Inställningarna uppdaterades inte." -#: src/Module/Settings/Account.php:342 +#: src/Module/Settings/Account.php:333 msgid "Contact CSV file upload error" msgstr "" -#: src/Module/Settings/Account.php:361 +#: src/Module/Settings/Account.php:352 msgid "Importing Contacts done" msgstr "" -#: src/Module/Settings/Account.php:374 +#: src/Module/Settings/Account.php:365 msgid "Relocate message has been send to your contacts" msgstr "" -#: src/Module/Settings/Account.php:391 +#: src/Module/Settings/Account.php:382 msgid "Unable to find your profile. Please contact your admin." msgstr "Kunde inte hitta din profil. Vänligen kontakta din admin." -#: src/Module/Settings/Account.php:433 +#: src/Module/Settings/Account.php:424 msgid "" "Account for a service that automatically shares content based on user " "defined channels." msgstr "" -#: src/Module/Settings/Account.php:443 +#: src/Module/Settings/Account.php:434 msgid "Personal Page Subtypes" msgstr "" -#: src/Module/Settings/Account.php:444 +#: src/Module/Settings/Account.php:435 msgid "Community Group Subtypes" msgstr "" -#: src/Module/Settings/Account.php:455 +#: src/Module/Settings/Account.php:446 msgid "Account for a personal profile." msgstr "Konto för personlig profil." -#: src/Module/Settings/Account.php:462 +#: src/Module/Settings/Account.php:453 msgid "" "Account for an organisation that automatically approves contact requests as " "\"Followers\"." msgstr "" -#: src/Module/Settings/Account.php:469 +#: src/Module/Settings/Account.php:460 msgid "" "Account for a news reflector that automatically approves contact requests as" " \"Followers\"." msgstr "" -#: src/Module/Settings/Account.php:476 +#: src/Module/Settings/Account.php:467 msgid "Account for community discussions." msgstr "" -#: src/Module/Settings/Account.php:484 +#: src/Module/Settings/Account.php:475 msgid "" "Account for a regular personal profile that requires manual approval of " "\"Friends\" and \"Followers\"." msgstr "" -#: src/Module/Settings/Account.php:491 +#: src/Module/Settings/Account.php:482 msgid "" "Account for a public profile that automatically approves contact requests as" " \"Followers\"." msgstr "" -#: src/Module/Settings/Account.php:498 +#: src/Module/Settings/Account.php:489 msgid "Automatically approves all contact requests." msgstr "Godkänner automatiskt alla kontaktförfrågningar." -#: src/Module/Settings/Account.php:505 +#: src/Module/Settings/Account.php:496 msgid "Contact requests have to be manually approved." msgstr "" -#: src/Module/Settings/Account.php:512 +#: src/Module/Settings/Account.php:503 msgid "" "Account for a popular profile that automatically approves contact requests " "as \"Friends\"." msgstr "" -#: src/Module/Settings/Account.php:517 +#: src/Module/Settings/Account.php:508 msgid "Private Group [Experimental]" msgstr "" -#: src/Module/Settings/Account.php:519 +#: src/Module/Settings/Account.php:510 msgid "Requires manual approval of contact requests." msgstr "" -#: src/Module/Settings/Account.php:528 +#: src/Module/Settings/Account.php:519 msgid "OpenID:" msgstr "OpenID:" -#: src/Module/Settings/Account.php:528 +#: src/Module/Settings/Account.php:519 msgid "(Optional) Allow this OpenID to login to this account." msgstr "(Valfritt) Tillåt detta OpenID för att logga in till det här kontot." -#: src/Module/Settings/Account.php:536 +#: src/Module/Settings/Account.php:527 msgid "Publish your profile in your local site directory?" msgstr "" -#: src/Module/Settings/Account.php:536 +#: src/Module/Settings/Account.php:527 #, php-format msgid "" "Your profile will be published in this node's local " @@ -9844,94 +9838,94 @@ msgid "" " system settings." msgstr "" -#: src/Module/Settings/Account.php:542 +#: src/Module/Settings/Account.php:533 #, php-format msgid "" "Your profile will also be published in the global friendica directories " "(e.g. %s)." msgstr "" -#: src/Module/Settings/Account.php:555 +#: src/Module/Settings/Account.php:546 msgid "Account Settings" msgstr "Kontoinställningar" -#: src/Module/Settings/Account.php:556 +#: src/Module/Settings/Account.php:547 #, php-format msgid "Your Identity Address is '%s' or '%s'." msgstr "" -#: src/Module/Settings/Account.php:563 +#: src/Module/Settings/Account.php:554 msgid "Password Settings" msgstr "Lösenordsinställningar" -#: src/Module/Settings/Account.php:565 +#: src/Module/Settings/Account.php:556 msgid "Leave password fields blank unless changing" msgstr "Lämna fältet tomt om du inte vill byta lösenord" -#: src/Module/Settings/Account.php:567 +#: src/Module/Settings/Account.php:558 msgid "Password:" msgstr "Lösenord:" -#: src/Module/Settings/Account.php:567 +#: src/Module/Settings/Account.php:558 msgid "Your current password to confirm the changes of the email address" msgstr "" -#: src/Module/Settings/Account.php:570 +#: src/Module/Settings/Account.php:561 msgid "Delete OpenID URL" msgstr "" -#: src/Module/Settings/Account.php:572 +#: src/Module/Settings/Account.php:563 msgid "Basic Settings" msgstr "Grundläggande inställningar" -#: src/Module/Settings/Account.php:573 -#: src/Module/Settings/Profile/Index.php:283 +#: src/Module/Settings/Account.php:564 +#: src/Module/Settings/Profile/Index.php:274 msgid "Display name:" msgstr "" -#: src/Module/Settings/Account.php:574 +#: src/Module/Settings/Account.php:565 msgid "Email Address:" msgstr "E-postadress:" -#: src/Module/Settings/Account.php:575 +#: src/Module/Settings/Account.php:566 msgid "Your Timezone:" msgstr "Tidszon:" -#: src/Module/Settings/Account.php:576 +#: src/Module/Settings/Account.php:567 msgid "Your Language:" msgstr "Ditt språk:" -#: src/Module/Settings/Account.php:576 +#: src/Module/Settings/Account.php:567 msgid "" "Set the language we use to show you friendica interface and to send you " "emails" msgstr "" -#: src/Module/Settings/Account.php:577 +#: src/Module/Settings/Account.php:568 msgid "Default Post Location:" msgstr "Default Post Location:" -#: src/Module/Settings/Account.php:578 +#: src/Module/Settings/Account.php:569 msgid "Use Browser Location:" msgstr "Använd webbläsarens positionering:" -#: src/Module/Settings/Account.php:580 +#: src/Module/Settings/Account.php:571 msgid "Security and Privacy Settings" msgstr "Inställningar för säkerhet och sekretess" -#: src/Module/Settings/Account.php:582 +#: src/Module/Settings/Account.php:573 msgid "Maximum Friend Requests/Day:" msgstr "Maximalt antal kontaktförfrågningar per dygn:" -#: src/Module/Settings/Account.php:582 +#: src/Module/Settings/Account.php:573 msgid "(to prevent spam abuse)" msgstr "(för att motverka spam)" -#: src/Module/Settings/Account.php:584 +#: src/Module/Settings/Account.php:575 msgid "Allow your profile to be searchable globally?" msgstr "Tillåta att din profil ska vara sökbar globalt?" -#: src/Module/Settings/Account.php:584 +#: src/Module/Settings/Account.php:575 msgid "" "Activate this setting if you want others to easily find and follow you. Your" " profile will be searchable on remote systems. This setting also determines " @@ -9939,43 +9933,43 @@ msgid "" "indexed or not." msgstr "" -#: src/Module/Settings/Account.php:585 +#: src/Module/Settings/Account.php:576 msgid "Hide your contact/friend list from viewers of your profile?" msgstr "" -#: src/Module/Settings/Account.php:585 +#: src/Module/Settings/Account.php:576 msgid "" "A list of your contacts is displayed on your profile page. Activate this " "option to disable the display of your contact list." msgstr "" -#: src/Module/Settings/Account.php:586 +#: src/Module/Settings/Account.php:577 msgid "Hide your public content from anonymous viewers" msgstr "" -#: src/Module/Settings/Account.php:586 +#: src/Module/Settings/Account.php:577 msgid "" "Anonymous visitors will only see your basic profile details. Your public " "posts and replies will still be freely accessible on the remote servers of " "your followers and through relays." msgstr "" -#: src/Module/Settings/Account.php:587 +#: src/Module/Settings/Account.php:578 msgid "Make public posts unlisted" msgstr "" -#: src/Module/Settings/Account.php:587 +#: src/Module/Settings/Account.php:578 msgid "" "Your public posts will not appear on the community pages or in search " "results, nor be sent to relay servers. However they can still appear on " "public feeds on remote servers." msgstr "" -#: src/Module/Settings/Account.php:588 +#: src/Module/Settings/Account.php:579 msgid "Make all posted pictures accessible" msgstr "" -#: src/Module/Settings/Account.php:588 +#: src/Module/Settings/Account.php:579 msgid "" "This option makes every posted picture accessible via the direct link. This " "is a workaround for the problem that most other networks can't handle " @@ -9983,352 +9977,352 @@ msgid "" "public on your photo albums though." msgstr "" -#: src/Module/Settings/Account.php:589 +#: src/Module/Settings/Account.php:580 msgid "Allow friends to post to your profile page?" msgstr "Tillåta vänner att göra inlägg på din profilsida?" -#: src/Module/Settings/Account.php:589 +#: src/Module/Settings/Account.php:580 msgid "" "Your contacts may write posts on your profile wall. These posts will be " "distributed to your contacts" msgstr "" -#: src/Module/Settings/Account.php:590 +#: src/Module/Settings/Account.php:581 msgid "Allow friends to tag your posts?" msgstr "Tillåt vänner att tagga dina inlägg?" -#: src/Module/Settings/Account.php:590 +#: src/Module/Settings/Account.php:581 msgid "Your contacts can add additional tags to your posts." msgstr "Dina kontakter kan lägga till ytterligare taggar till dina inlägg." -#: src/Module/Settings/Account.php:591 +#: src/Module/Settings/Account.php:582 msgid "Default privacy circle for new contacts" msgstr "" -#: src/Module/Settings/Account.php:592 +#: src/Module/Settings/Account.php:583 msgid "Default privacy circle for new group contacts" msgstr "" -#: src/Module/Settings/Account.php:593 +#: src/Module/Settings/Account.php:584 msgid "Default Post Permissions" msgstr "Standardåtkomst för inlägg" -#: src/Module/Settings/Account.php:597 +#: src/Module/Settings/Account.php:588 msgid "Expiration settings" msgstr "" -#: src/Module/Settings/Account.php:598 +#: src/Module/Settings/Account.php:589 msgid "Automatically expire posts after this many days:" msgstr "" -#: src/Module/Settings/Account.php:598 +#: src/Module/Settings/Account.php:589 msgid "If empty, posts will not expire. Expired posts will be deleted" msgstr "" -#: src/Module/Settings/Account.php:599 +#: src/Module/Settings/Account.php:590 msgid "Expire posts" msgstr "" -#: src/Module/Settings/Account.php:599 +#: src/Module/Settings/Account.php:590 msgid "When activated, posts and comments will be expired." msgstr "" -#: src/Module/Settings/Account.php:600 +#: src/Module/Settings/Account.php:591 msgid "Expire personal notes" msgstr "" -#: src/Module/Settings/Account.php:600 +#: src/Module/Settings/Account.php:591 msgid "" "When activated, the personal notes on your profile page will be expired." msgstr "" -#: src/Module/Settings/Account.php:601 +#: src/Module/Settings/Account.php:592 msgid "Expire starred posts" msgstr "" -#: src/Module/Settings/Account.php:601 +#: src/Module/Settings/Account.php:592 msgid "" "Starring posts keeps them from being expired. That behaviour is overwritten " "by this setting." msgstr "" -#: src/Module/Settings/Account.php:602 +#: src/Module/Settings/Account.php:593 msgid "Only expire posts by others" msgstr "" -#: src/Module/Settings/Account.php:602 +#: src/Module/Settings/Account.php:593 msgid "" "When activated, your own posts never expire. Then the settings above are " "only valid for posts you received." msgstr "" -#: src/Module/Settings/Account.php:605 +#: src/Module/Settings/Account.php:596 msgid "Notification Settings" msgstr "Aviseringsinställningar" -#: src/Module/Settings/Account.php:606 +#: src/Module/Settings/Account.php:597 msgid "Send a notification email when:" msgstr "Skicka ett aviseringsmail när:" -#: src/Module/Settings/Account.php:607 +#: src/Module/Settings/Account.php:598 msgid "You receive an introduction" msgstr "En kontaktförfrågan anländer" -#: src/Module/Settings/Account.php:608 +#: src/Module/Settings/Account.php:599 msgid "Your introductions are confirmed" msgstr "Dina förfrågningar godkänns" -#: src/Module/Settings/Account.php:609 +#: src/Module/Settings/Account.php:600 msgid "Someone writes on your profile wall" msgstr "Någon gör inlägg på din profilsida" -#: src/Module/Settings/Account.php:610 +#: src/Module/Settings/Account.php:601 msgid "Someone writes a followup comment" msgstr "Någon gör ett inlägg i samma tråd som du" -#: src/Module/Settings/Account.php:611 +#: src/Module/Settings/Account.php:602 msgid "You receive a private message" msgstr "Du får personliga meddelanden" -#: src/Module/Settings/Account.php:612 +#: src/Module/Settings/Account.php:603 msgid "You receive a friend suggestion" msgstr "Du tar emot ett vän-förslag" -#: src/Module/Settings/Account.php:613 +#: src/Module/Settings/Account.php:604 msgid "You are tagged in a post" msgstr "Du är taggad i ett inlägg" -#: src/Module/Settings/Account.php:615 +#: src/Module/Settings/Account.php:606 msgid "Create a desktop notification when:" msgstr "Skapa en skrivbordsavisering när:" -#: src/Module/Settings/Account.php:616 +#: src/Module/Settings/Account.php:607 msgid "Someone tagged you" msgstr "" -#: src/Module/Settings/Account.php:617 +#: src/Module/Settings/Account.php:608 msgid "Someone directly commented on your post" msgstr "" -#: src/Module/Settings/Account.php:618 +#: src/Module/Settings/Account.php:609 msgid "Someone liked your content" msgstr "Någon gillade ditt innehåll" -#: src/Module/Settings/Account.php:618 src/Module/Settings/Account.php:619 +#: src/Module/Settings/Account.php:609 src/Module/Settings/Account.php:610 msgid "Can only be enabled, when the direct comment notification is enabled." msgstr "" -#: src/Module/Settings/Account.php:619 +#: src/Module/Settings/Account.php:610 msgid "Someone shared your content" msgstr "Någon delade ditt innehåll" -#: src/Module/Settings/Account.php:620 +#: src/Module/Settings/Account.php:611 msgid "Someone commented in your thread" msgstr "" -#: src/Module/Settings/Account.php:621 +#: src/Module/Settings/Account.php:612 msgid "Someone commented in a thread where you commented" msgstr "" -#: src/Module/Settings/Account.php:622 +#: src/Module/Settings/Account.php:613 msgid "Someone commented in a thread where you interacted" msgstr "" -#: src/Module/Settings/Account.php:624 +#: src/Module/Settings/Account.php:615 msgid "Activate desktop notifications" msgstr "Aktivera skrivbordsaviseringar" -#: src/Module/Settings/Account.php:624 +#: src/Module/Settings/Account.php:615 msgid "Show desktop popup on new notifications" msgstr "" -#: src/Module/Settings/Account.php:628 +#: src/Module/Settings/Account.php:619 msgid "Text-only notification emails" msgstr "" -#: src/Module/Settings/Account.php:630 +#: src/Module/Settings/Account.php:621 msgid "Send text only notification emails, without the html part" msgstr "" -#: src/Module/Settings/Account.php:634 +#: src/Module/Settings/Account.php:625 msgid "Show detailled notifications" msgstr "Visa detaljerade aviseringar" -#: src/Module/Settings/Account.php:636 +#: src/Module/Settings/Account.php:627 msgid "" "Per default, notifications are condensed to a single notification per item. " "When enabled every notification is displayed." msgstr "" -#: src/Module/Settings/Account.php:640 +#: src/Module/Settings/Account.php:631 msgid "Show notifications of ignored contacts" msgstr "" -#: src/Module/Settings/Account.php:642 +#: src/Module/Settings/Account.php:633 msgid "" "You don't see posts from ignored contacts. But you still see their comments." " This setting controls if you want to still receive regular notifications " "that are caused by ignored contacts or not." msgstr "" -#: src/Module/Settings/Account.php:645 +#: src/Module/Settings/Account.php:636 msgid "Advanced Account/Page Type Settings" msgstr "" -#: src/Module/Settings/Account.php:646 +#: src/Module/Settings/Account.php:637 msgid "Change the behaviour of this account for special situations" msgstr "" -#: src/Module/Settings/Account.php:649 +#: src/Module/Settings/Account.php:640 msgid "Import Contacts" msgstr "Importera kontakter" -#: src/Module/Settings/Account.php:650 +#: src/Module/Settings/Account.php:641 msgid "" "Upload a CSV file that contains the handle of your followed accounts in the " "first column you exported from the old account." msgstr "" -#: src/Module/Settings/Account.php:651 +#: src/Module/Settings/Account.php:642 msgid "Upload File" msgstr "Ladda upp fil" -#: src/Module/Settings/Account.php:654 +#: src/Module/Settings/Account.php:645 msgid "Relocate" msgstr "Omlokalisera" -#: src/Module/Settings/Account.php:655 +#: src/Module/Settings/Account.php:646 msgid "" "If you have moved this profile from another server, and some of your " "contacts don't receive your updates, try pushing this button." msgstr "Om du har flyttat den här profilen från en annan server och några av dina kontakter inte får dina uppdateringar, försök att trycka på den här knappen." -#: src/Module/Settings/Account.php:656 +#: src/Module/Settings/Account.php:647 msgid "Resend relocate message to contacts" msgstr "" -#: src/Module/Settings/Addons.php:86 +#: src/Module/Settings/Addons.php:72 msgid "Addon Settings" msgstr "Inställningar för Tillägg" -#: src/Module/Settings/Addons.php:87 +#: src/Module/Settings/Addons.php:73 msgid "No Addon settings configured" msgstr "Inga inställningar för Tillägg har gjorts" -#: src/Module/Settings/Channels.php:148 +#: src/Module/Settings/Channels.php:134 msgid "" "This page can be used to define the channels that will automatically be " "reshared by your account." msgstr "" -#: src/Module/Settings/Channels.php:153 +#: src/Module/Settings/Channels.php:139 msgid "This page can be used to define your own channels." msgstr "" -#: src/Module/Settings/Channels.php:182 +#: src/Module/Settings/Channels.php:168 msgid "Publish" msgstr "" -#: src/Module/Settings/Channels.php:182 +#: src/Module/Settings/Channels.php:168 msgid "" "When selected, the channel results are reshared. This only works for public " "ActivityPub posts from the public timeline or the user defined circles." msgstr "" -#: src/Module/Settings/Channels.php:190 src/Module/Settings/Channels.php:211 -#: src/Module/Settings/Display.php:338 +#: src/Module/Settings/Channels.php:176 src/Module/Settings/Channels.php:197 +#: src/Module/Settings/Display.php:324 msgid "Label" msgstr "" -#: src/Module/Settings/Channels.php:191 src/Module/Settings/Channels.php:212 -#: src/Module/Settings/Display.php:339 -#: src/Module/Settings/TwoFactor/AppSpecific.php:137 +#: src/Module/Settings/Channels.php:177 src/Module/Settings/Channels.php:198 +#: src/Module/Settings/Display.php:325 +#: src/Module/Settings/TwoFactor/AppSpecific.php:123 msgid "Description" msgstr "" -#: src/Module/Settings/Channels.php:192 src/Module/Settings/Channels.php:213 +#: src/Module/Settings/Channels.php:178 src/Module/Settings/Channels.php:199 msgid "Access Key" msgstr "" -#: src/Module/Settings/Channels.php:193 src/Module/Settings/Channels.php:214 +#: src/Module/Settings/Channels.php:179 src/Module/Settings/Channels.php:200 msgid "Circle/Channel" msgstr "" -#: src/Module/Settings/Channels.php:194 src/Module/Settings/Channels.php:215 +#: src/Module/Settings/Channels.php:180 src/Module/Settings/Channels.php:201 msgid "Include Tags" msgstr "" -#: src/Module/Settings/Channels.php:195 src/Module/Settings/Channels.php:216 +#: src/Module/Settings/Channels.php:181 src/Module/Settings/Channels.php:202 msgid "Exclude Tags" msgstr "" -#: src/Module/Settings/Channels.php:196 src/Module/Settings/Channels.php:217 +#: src/Module/Settings/Channels.php:182 src/Module/Settings/Channels.php:203 msgid "Minimum Size" msgstr "" -#: src/Module/Settings/Channels.php:197 src/Module/Settings/Channels.php:218 +#: src/Module/Settings/Channels.php:183 src/Module/Settings/Channels.php:204 msgid "Maximum Size" msgstr "" -#: src/Module/Settings/Channels.php:198 src/Module/Settings/Channels.php:219 +#: src/Module/Settings/Channels.php:184 src/Module/Settings/Channels.php:205 msgid "Full Text Search" msgstr "" -#: src/Module/Settings/Channels.php:202 src/Module/Settings/Channels.php:223 +#: src/Module/Settings/Channels.php:188 src/Module/Settings/Channels.php:209 msgid "Select all languages that you want to see in this channel." msgstr "" -#: src/Module/Settings/Channels.php:204 +#: src/Module/Settings/Channels.php:190 msgid "Delete channel" msgstr "" -#: src/Module/Settings/Channels.php:204 +#: src/Module/Settings/Channels.php:190 msgid "Check to delete this entry from the channel list" msgstr "" -#: src/Module/Settings/Channels.php:211 +#: src/Module/Settings/Channels.php:197 msgid "Short name for the channel. It is displayed on the channels widget." msgstr "" -#: src/Module/Settings/Channels.php:212 +#: src/Module/Settings/Channels.php:198 msgid "This should describe the content of the channel in a few word." msgstr "" -#: src/Module/Settings/Channels.php:213 +#: src/Module/Settings/Channels.php:199 msgid "" "When you want to access this channel via an access key, you can define it " "here. Pay attention to not use an already used one." msgstr "" -#: src/Module/Settings/Channels.php:214 +#: src/Module/Settings/Channels.php:200 msgid "Select a circle or channel, that your channel should be based on." msgstr "" -#: src/Module/Settings/Channels.php:215 +#: src/Module/Settings/Channels.php:201 msgid "" "Comma separated list of tags. A post will be used when it contains any of " "the listed tags." msgstr "" -#: src/Module/Settings/Channels.php:216 +#: src/Module/Settings/Channels.php:202 msgid "" "Comma separated list of tags. If a post contain any of these tags, then it " "will not be part of nthis channel." msgstr "" -#: src/Module/Settings/Channels.php:217 +#: src/Module/Settings/Channels.php:203 msgid "" "Minimum post size. Leave empty for no minimum size. The size is calculated " "without links, attached posts, mentions or hashtags." msgstr "" -#: src/Module/Settings/Channels.php:218 +#: src/Module/Settings/Channels.php:204 msgid "" "Maximum post size. Leave empty for no maximum size. The size is calculated " "without links, attached posts, mentions or hashtags." msgstr "" -#: src/Module/Settings/Channels.php:219 +#: src/Module/Settings/Channels.php:205 #, php-format msgid "" "Search terms for the body, supports the \"boolean mode\" operators from " @@ -10336,576 +10330,589 @@ msgid "" "keywords: %s" msgstr "" -#: src/Module/Settings/Channels.php:220 +#: src/Module/Settings/Channels.php:206 msgid "Check to display images in the channel." msgstr "" -#: src/Module/Settings/Channels.php:221 +#: src/Module/Settings/Channels.php:207 msgid "Check to display videos in the channel." msgstr "" -#: src/Module/Settings/Channels.php:222 +#: src/Module/Settings/Channels.php:208 msgid "Check to display audio in the channel." msgstr "" -#: src/Module/Settings/Channels.php:227 +#: src/Module/Settings/Channels.php:213 msgid "Add new entry to the channel list" msgstr "" -#: src/Module/Settings/Channels.php:228 +#: src/Module/Settings/Channels.php:214 msgid "Add" msgstr "Lägg till" -#: src/Module/Settings/Channels.php:230 +#: src/Module/Settings/Channels.php:216 msgid "Current Entries in the channel list" msgstr "" -#: src/Module/Settings/Channels.php:233 +#: src/Module/Settings/Channels.php:219 msgid "Delete entry from the channel list" msgstr "" -#: src/Module/Settings/Channels.php:234 +#: src/Module/Settings/Channels.php:220 msgid "Delete entry from the channel list?" msgstr "" -#: src/Module/Settings/Connectors.php:120 +#: src/Module/Settings/Connectors.php:108 msgid "Failed to connect with email account using the settings provided." msgstr "Kunde inte ansluta till e-postkontot med aktuella inställningar" -#: src/Module/Settings/Connectors.php:166 -#: src/Module/Settings/Connectors.php:167 +#: src/Module/Settings/Connectors.php:155 +#: src/Module/Settings/Connectors.php:156 msgid "Diaspora (Socialhome, Hubzilla)" msgstr "Diaspora (Socialhome, Hubzilla)" -#: src/Module/Settings/Connectors.php:166 -#: src/Module/Settings/Connectors.php:170 +#: src/Module/Settings/Connectors.php:155 #, php-format msgid "Built-in support for %s connectivity is enabled" msgstr "" -#: src/Module/Settings/Connectors.php:167 -#: src/Module/Settings/Connectors.php:169 +#: src/Module/Settings/Connectors.php:156 #, php-format msgid "Built-in support for %s connectivity is disabled" msgstr "" -#: src/Module/Settings/Connectors.php:169 -#: src/Module/Settings/Connectors.php:170 -msgid "OStatus (GNU Social)" -msgstr "OStatus (GNU Social)" - -#: src/Module/Settings/Connectors.php:182 +#: src/Module/Settings/Connectors.php:167 msgid "Email access is disabled on this site." msgstr "E-poståtkomst är inaktiverat på den här sidan." -#: src/Module/Settings/Connectors.php:197 -#: src/Module/Settings/Connectors.php:244 +#: src/Module/Settings/Connectors.php:182 +#: src/Module/Settings/Connectors.php:233 msgid "None" msgstr "Ingen" -#: src/Module/Settings/Connectors.php:209 +#: src/Module/Settings/Connectors.php:186 +msgid "Default (Mastodon will display the title and a link to the post)" +msgstr "" + +#: src/Module/Settings/Connectors.php:187 +msgid "" +"Use the summary (Mastodon and some others will treat it as content warning)" +msgstr "" + +#: src/Module/Settings/Connectors.php:188 +msgid "Embed the title in the body" +msgstr "" + +#: src/Module/Settings/Connectors.php:199 msgid "General Social Media Settings" msgstr "Generella inställningar för sociala medier" -#: src/Module/Settings/Connectors.php:212 +#: src/Module/Settings/Connectors.php:202 msgid "Followed content scope" msgstr "" -#: src/Module/Settings/Connectors.php:214 +#: src/Module/Settings/Connectors.php:204 msgid "" "By default, conversations in which your follows participated but didn't " "start will be shown in your timeline. You can turn this behavior off, or " "expand it to the conversations in which your follows liked a post." msgstr "" -#: src/Module/Settings/Connectors.php:216 +#: src/Module/Settings/Connectors.php:206 msgid "Only conversations my follows started" msgstr "" -#: src/Module/Settings/Connectors.php:217 +#: src/Module/Settings/Connectors.php:207 msgid "Conversations my follows started or commented on (default)" msgstr "" -#: src/Module/Settings/Connectors.php:218 +#: src/Module/Settings/Connectors.php:208 msgid "Any conversation my follows interacted with, including likes" msgstr "" -#: src/Module/Settings/Connectors.php:221 +#: src/Module/Settings/Connectors.php:211 msgid "Collapse sensitive posts" msgstr "" -#: src/Module/Settings/Connectors.php:221 +#: src/Module/Settings/Connectors.php:211 msgid "" "If a post is marked as \"sensitive\", it will be displayed in a collapsed " "state, if this option is enabled." msgstr "" -#: src/Module/Settings/Connectors.php:222 +#: src/Module/Settings/Connectors.php:212 msgid "Enable intelligent shortening" msgstr "Aktivera intelligent förkortning" -#: src/Module/Settings/Connectors.php:222 +#: src/Module/Settings/Connectors.php:212 msgid "" "Normally the system tries to find the best link to add to shortened posts. " "If disabled, every shortened post will always point to the original " "friendica post." msgstr "" -#: src/Module/Settings/Connectors.php:223 +#: src/Module/Settings/Connectors.php:213 msgid "Enable simple text shortening" msgstr "" -#: src/Module/Settings/Connectors.php:223 +#: src/Module/Settings/Connectors.php:213 msgid "" "Normally the system shortens posts at the next line feed. If this option is " "enabled then the system will shorten the text at the maximum character " "limit." msgstr "" -#: src/Module/Settings/Connectors.php:224 +#: src/Module/Settings/Connectors.php:214 msgid "Attach the link title" msgstr "" -#: src/Module/Settings/Connectors.php:224 +#: src/Module/Settings/Connectors.php:214 msgid "" "When activated, the title of the attached link will be added as a title on " "posts to Diaspora. This is mostly helpful with \"remote-self\" contacts that" " share feed content." msgstr "" -#: src/Module/Settings/Connectors.php:225 +#: src/Module/Settings/Connectors.php:215 msgid "API: Use spoiler field as title" msgstr "" -#: src/Module/Settings/Connectors.php:225 +#: src/Module/Settings/Connectors.php:215 msgid "" "When activated, the \"spoiler_text\" field in the API will be used for the " "title on standalone posts. When deactivated it will be used for spoiler " "text. For comments it will always be used for spoiler text." msgstr "" -#: src/Module/Settings/Connectors.php:226 +#: src/Module/Settings/Connectors.php:216 msgid "API: Automatically links at the end of the post as attached posts" msgstr "" -#: src/Module/Settings/Connectors.php:226 +#: src/Module/Settings/Connectors.php:216 msgid "" "When activated, added links at the end of the post react the same way as " "added links in the web interface." msgstr "" -#: src/Module/Settings/Connectors.php:227 +#: src/Module/Settings/Connectors.php:217 +msgid "Article Mode" +msgstr "" + +#: src/Module/Settings/Connectors.php:217 +msgid "" +"Controls how posts with titles are transmitted. Mastodon and its forks don't" +" display the content of these posts if the post is created in the correct " +"(default) way." +msgstr "" + +#: src/Module/Settings/Connectors.php:218 msgid "Your legacy ActivityPub/GNU Social account" msgstr "" -#: src/Module/Settings/Connectors.php:227 +#: src/Module/Settings/Connectors.php:218 msgid "" "If you enter your old account name from an ActivityPub based system or your " "GNU Social/Statusnet account name here (in the format user@domain.tld), your" " contacts will be added automatically. The field will be emptied when done." msgstr "" -#: src/Module/Settings/Connectors.php:229 -msgid "Repair OStatus subscriptions" -msgstr "Reparera OStatus-prenumerationer" - -#: src/Module/Settings/Connectors.php:233 +#: src/Module/Settings/Connectors.php:222 msgid "Email/Mailbox Setup" msgstr "" -#: src/Module/Settings/Connectors.php:234 +#: src/Module/Settings/Connectors.php:223 msgid "" "If you wish to communicate with email contacts using this service " "(optional), please specify how to connect to your mailbox." msgstr "För att kommunicera via e-post med denna tjänst (valfritt), vänligen ange anslutningssätt till ditt e-postkonto." -#: src/Module/Settings/Connectors.php:235 +#: src/Module/Settings/Connectors.php:224 msgid "Last successful email check:" msgstr "" -#: src/Module/Settings/Connectors.php:237 +#: src/Module/Settings/Connectors.php:226 msgid "IMAP server name:" msgstr "Namn på IMAP-server:" -#: src/Module/Settings/Connectors.php:238 +#: src/Module/Settings/Connectors.php:227 msgid "IMAP port:" msgstr "Port för IMAP:" -#: src/Module/Settings/Connectors.php:239 +#: src/Module/Settings/Connectors.php:228 msgid "Security:" msgstr "Säkerhet:" -#: src/Module/Settings/Connectors.php:240 +#: src/Module/Settings/Connectors.php:229 msgid "Email login name:" msgstr "Inloggningsnamn för e-post:" -#: src/Module/Settings/Connectors.php:241 +#: src/Module/Settings/Connectors.php:230 msgid "Email password:" msgstr "Lösenord för e-post:" -#: src/Module/Settings/Connectors.php:242 +#: src/Module/Settings/Connectors.php:231 msgid "Reply-to address:" msgstr "Svara till-adress:" -#: src/Module/Settings/Connectors.php:243 +#: src/Module/Settings/Connectors.php:232 msgid "Send public posts to all email contacts:" msgstr "Skicka publika inlägg till alla e-postkontakter:" -#: src/Module/Settings/Connectors.php:244 +#: src/Module/Settings/Connectors.php:233 msgid "Action after import:" msgstr "Åtgärd efter importering:" -#: src/Module/Settings/Connectors.php:244 +#: src/Module/Settings/Connectors.php:233 msgid "Move to folder" msgstr "Flytta till mapp" -#: src/Module/Settings/Connectors.php:245 +#: src/Module/Settings/Connectors.php:234 msgid "Move to folder:" msgstr "Flytta till mapp:" -#: src/Module/Settings/Delegation.php:73 +#: src/Module/Settings/Delegation.php:59 msgid "Delegation successfully granted." msgstr "" -#: src/Module/Settings/Delegation.php:75 +#: src/Module/Settings/Delegation.php:61 msgid "Parent user not found, unavailable or password doesn't match." msgstr "" -#: src/Module/Settings/Delegation.php:79 +#: src/Module/Settings/Delegation.php:65 msgid "Delegation successfully revoked." msgstr "" -#: src/Module/Settings/Delegation.php:98 -#: src/Module/Settings/Delegation.php:120 +#: src/Module/Settings/Delegation.php:84 +#: src/Module/Settings/Delegation.php:106 msgid "" "Delegated administrators can view but not change delegation permissions." msgstr "" -#: src/Module/Settings/Delegation.php:112 +#: src/Module/Settings/Delegation.php:98 msgid "Delegate user not found." msgstr "" -#: src/Module/Settings/Delegation.php:169 +#: src/Module/Settings/Delegation.php:155 msgid "No parent user" msgstr "" -#: src/Module/Settings/Delegation.php:180 -#: src/Module/Settings/Delegation.php:191 +#: src/Module/Settings/Delegation.php:166 +#: src/Module/Settings/Delegation.php:177 msgid "Parent User" msgstr "" -#: src/Module/Settings/Delegation.php:188 +#: src/Module/Settings/Delegation.php:174 msgid "Additional Accounts" msgstr "" -#: src/Module/Settings/Delegation.php:189 +#: src/Module/Settings/Delegation.php:175 msgid "" "Register additional accounts that are automatically connected to your " "existing account so you can manage them from this account." msgstr "" -#: src/Module/Settings/Delegation.php:190 +#: src/Module/Settings/Delegation.php:176 msgid "Register an additional account" msgstr "" -#: src/Module/Settings/Delegation.php:192 +#: src/Module/Settings/Delegation.php:178 msgid "" "Parent users have total control about this account, including the account " "settings. Please double check whom you give this access." msgstr "" -#: src/Module/Settings/Delegation.php:195 +#: src/Module/Settings/Delegation.php:181 msgid "Delegates" msgstr "" -#: src/Module/Settings/Delegation.php:196 +#: src/Module/Settings/Delegation.php:182 msgid "" "Delegates are able to manage all aspects of this account/page except for " "basic account settings. Please do not delegate your personal account to " "anybody that you do not trust completely." msgstr "" -#: src/Module/Settings/Delegation.php:197 +#: src/Module/Settings/Delegation.php:183 msgid "Existing Page Delegates" msgstr "" -#: src/Module/Settings/Delegation.php:198 +#: src/Module/Settings/Delegation.php:184 msgid "Potential Delegates" msgstr "Potentiella delegater" -#: src/Module/Settings/Delegation.php:199 +#: src/Module/Settings/Delegation.php:185 msgid "No entries." msgstr "Inga poster." -#: src/Module/Settings/Display.php:183 +#: src/Module/Settings/Display.php:169 msgid "The theme you chose isn't available." msgstr "" -#: src/Module/Settings/Display.php:223 +#: src/Module/Settings/Display.php:209 #, php-format msgid "%s - (Unsupported)" msgstr "" -#: src/Module/Settings/Display.php:260 +#: src/Module/Settings/Display.php:246 msgid "No preview" msgstr "" -#: src/Module/Settings/Display.php:261 +#: src/Module/Settings/Display.php:247 msgid "No image" msgstr "" -#: src/Module/Settings/Display.php:262 +#: src/Module/Settings/Display.php:248 msgid "Small Image" msgstr "" -#: src/Module/Settings/Display.php:263 +#: src/Module/Settings/Display.php:249 msgid "Large Image" msgstr "" -#: src/Module/Settings/Display.php:308 +#: src/Module/Settings/Display.php:294 msgid "Display Settings" msgstr "Skärm-inställningar" -#: src/Module/Settings/Display.php:310 +#: src/Module/Settings/Display.php:296 msgid "General Theme Settings" msgstr "" -#: src/Module/Settings/Display.php:311 +#: src/Module/Settings/Display.php:297 msgid "Custom Theme Settings" msgstr "" -#: src/Module/Settings/Display.php:312 +#: src/Module/Settings/Display.php:298 msgid "Content Settings" msgstr "" -#: src/Module/Settings/Display.php:313 view/theme/duepuntozero/config.php:86 -#: view/theme/frio/config.php:151 view/theme/quattro/config.php:88 -#: view/theme/vier/config.php:136 +#: src/Module/Settings/Display.php:299 view/theme/duepuntozero/config.php:74 +#: view/theme/frio/config.php:139 view/theme/quattro/config.php:76 +#: view/theme/vier/config.php:124 msgid "Theme settings" msgstr "Tema-inställningar" -#: src/Module/Settings/Display.php:314 +#: src/Module/Settings/Display.php:300 msgid "Timelines" msgstr "" -#: src/Module/Settings/Display.php:321 +#: src/Module/Settings/Display.php:307 msgid "Display Theme:" msgstr "Tema/utseende:" -#: src/Module/Settings/Display.php:322 +#: src/Module/Settings/Display.php:308 msgid "Mobile Theme:" msgstr "Mobil-tema:" -#: src/Module/Settings/Display.php:325 +#: src/Module/Settings/Display.php:311 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:311 src/Module/Settings/Display.php:312 msgid "Maximum of 100 items" msgstr "Maximalt 100 objekt" -#: src/Module/Settings/Display.php:326 +#: src/Module/Settings/Display.php:312 msgid "Number of items to display per page when viewed from mobile device:" msgstr "" -#: src/Module/Settings/Display.php:327 +#: src/Module/Settings/Display.php:313 msgid "Update browser every xx seconds" msgstr "Uppdatera webbläsaren var xx sekunder" -#: src/Module/Settings/Display.php:327 +#: src/Module/Settings/Display.php:313 msgid "Minimum of 10 seconds. Enter -1 to disable it." msgstr "" -#: src/Module/Settings/Display.php:328 +#: src/Module/Settings/Display.php:314 msgid "Display emoticons" msgstr "" -#: src/Module/Settings/Display.php:328 +#: src/Module/Settings/Display.php:314 msgid "When enabled, emoticons are replaced with matching symbols." msgstr "" -#: src/Module/Settings/Display.php:329 +#: src/Module/Settings/Display.php:315 msgid "Infinite scroll" msgstr "Oändlig skroll" -#: src/Module/Settings/Display.php:329 +#: src/Module/Settings/Display.php:315 msgid "Automatic fetch new items when reaching the page end." msgstr "" -#: src/Module/Settings/Display.php:330 +#: src/Module/Settings/Display.php:316 msgid "Enable Smart Threading" msgstr "" -#: src/Module/Settings/Display.php:330 +#: src/Module/Settings/Display.php:316 msgid "Enable the automatic suppression of extraneous thread indentation." msgstr "" -#: src/Module/Settings/Display.php:331 +#: src/Module/Settings/Display.php:317 msgid "Display the Dislike feature" msgstr "" -#: src/Module/Settings/Display.php:331 +#: src/Module/Settings/Display.php:317 msgid "" "Display the Dislike button and dislike reactions on posts and comments." msgstr "" -#: src/Module/Settings/Display.php:332 +#: src/Module/Settings/Display.php:318 msgid "Display the resharer" msgstr "" -#: src/Module/Settings/Display.php:332 +#: src/Module/Settings/Display.php:318 msgid "Display the first resharer as icon and text on a reshared item." msgstr "" -#: src/Module/Settings/Display.php:333 +#: src/Module/Settings/Display.php:319 msgid "Stay local" msgstr "" -#: src/Module/Settings/Display.php:333 +#: src/Module/Settings/Display.php:319 msgid "Don't go to a remote system when following a contact link." msgstr "" -#: src/Module/Settings/Display.php:334 +#: src/Module/Settings/Display.php:320 msgid "Show the post deletion checkbox" msgstr "" -#: src/Module/Settings/Display.php:334 +#: src/Module/Settings/Display.php:320 msgid "Display the checkbox for the post deletion on the network page." msgstr "" -#: src/Module/Settings/Display.php:335 +#: src/Module/Settings/Display.php:321 msgid "DIsplay the event list" msgstr "" -#: src/Module/Settings/Display.php:335 +#: src/Module/Settings/Display.php:321 msgid "Display the birthday reminder and event list on the network page." msgstr "" -#: src/Module/Settings/Display.php:336 +#: src/Module/Settings/Display.php:322 msgid "Link preview mode" msgstr "" -#: src/Module/Settings/Display.php:336 +#: src/Module/Settings/Display.php:322 msgid "Appearance of the link preview that is added to each post with a link." msgstr "" -#: src/Module/Settings/Display.php:341 +#: src/Module/Settings/Display.php:327 msgid "Bookmark" msgstr "" -#: src/Module/Settings/Display.php:343 +#: src/Module/Settings/Display.php:329 msgid "" "Enable timelines that you want to see in the channels widget. Bookmark " "timelines that you want to see in the top menu." msgstr "" -#: src/Module/Settings/Display.php:345 +#: src/Module/Settings/Display.php:331 msgid "Channel languages:" msgstr "" -#: src/Module/Settings/Display.php:345 +#: src/Module/Settings/Display.php:331 msgid "Select all languages that you want to see in your channels." msgstr "" -#: src/Module/Settings/Display.php:347 +#: src/Module/Settings/Display.php:333 msgid "Beginning of week:" msgstr "" -#: src/Module/Settings/Display.php:348 +#: src/Module/Settings/Display.php:334 msgid "Default calendar view:" msgstr "" -#: src/Module/Settings/Features.php:73 +#: src/Module/Settings/Features.php:59 msgid "Additional Features" msgstr "Ytterligare funktioner" -#: src/Module/Settings/OAuth.php:71 +#: src/Module/Settings/OAuth.php:57 msgid "Connected Apps" msgstr "Anslutna appar" -#: src/Module/Settings/OAuth.php:75 +#: src/Module/Settings/OAuth.php:61 msgid "Remove authorization" msgstr "Ta bort autentisering" -#: src/Module/Settings/Profile/Index.php:116 +#: src/Module/Settings/Profile/Index.php:102 msgid "Display Name is required." msgstr "" -#: src/Module/Settings/Profile/Index.php:167 +#: src/Module/Settings/Profile/Index.php:156 msgid "Profile couldn't be updated." msgstr "" -#: src/Module/Settings/Profile/Index.php:205 -#: src/Module/Settings/Profile/Index.php:226 +#: src/Module/Settings/Profile/Index.php:196 +#: src/Module/Settings/Profile/Index.php:217 msgid "Label:" msgstr "" -#: src/Module/Settings/Profile/Index.php:206 -#: src/Module/Settings/Profile/Index.php:227 +#: src/Module/Settings/Profile/Index.php:197 +#: src/Module/Settings/Profile/Index.php:218 msgid "Value:" msgstr "" -#: src/Module/Settings/Profile/Index.php:217 -#: src/Module/Settings/Profile/Index.php:238 +#: src/Module/Settings/Profile/Index.php:208 +#: src/Module/Settings/Profile/Index.php:229 msgid "Field Permissions" msgstr "" -#: src/Module/Settings/Profile/Index.php:218 -#: src/Module/Settings/Profile/Index.php:239 +#: src/Module/Settings/Profile/Index.php:209 +#: src/Module/Settings/Profile/Index.php:230 msgid "(click to open/close)" msgstr "(klicka för att öppna/stänga)" -#: src/Module/Settings/Profile/Index.php:224 +#: src/Module/Settings/Profile/Index.php:215 msgid "Add a new profile field" msgstr "" -#: src/Module/Settings/Profile/Index.php:247 +#: src/Module/Settings/Profile/Index.php:238 msgid "" "The homepage is verified. A rel=\"me\" link back to your Friendica profile " "page was found on the homepage." msgstr "" -#: src/Module/Settings/Profile/Index.php:249 +#: src/Module/Settings/Profile/Index.php:240 #, php-format msgid "" "To verify your homepage, add a rel=\"me\" link to it, pointing to your " "profile URL (%s)." msgstr "" -#: src/Module/Settings/Profile/Index.php:255 +#: src/Module/Settings/Profile/Index.php:246 msgid "Profile Actions" msgstr "" -#: src/Module/Settings/Profile/Index.php:256 +#: src/Module/Settings/Profile/Index.php:247 msgid "Edit Profile Details" msgstr "Ändra profilen" -#: src/Module/Settings/Profile/Index.php:258 +#: src/Module/Settings/Profile/Index.php:249 msgid "Change Profile Photo" msgstr "Byt profilfoto" -#: src/Module/Settings/Profile/Index.php:261 +#: src/Module/Settings/Profile/Index.php:252 msgid "Profile picture" msgstr "Profilbild" -#: src/Module/Settings/Profile/Index.php:262 +#: src/Module/Settings/Profile/Index.php:253 msgid "Location" msgstr "Plats" -#: src/Module/Settings/Profile/Index.php:263 src/Util/Temporal.php:97 -#: src/Util/Temporal.php:99 +#: src/Module/Settings/Profile/Index.php:254 src/Util/Temporal.php:83 +#: src/Util/Temporal.php:85 msgid "Miscellaneous" msgstr "Blandat" -#: src/Module/Settings/Profile/Index.php:264 +#: src/Module/Settings/Profile/Index.php:255 msgid "Custom Profile Fields" msgstr "" -#: src/Module/Settings/Profile/Index.php:265 src/Module/Welcome.php:58 +#: src/Module/Settings/Profile/Index.php:256 src/Module/Welcome.php:44 msgid "Upload Profile Photo" msgstr "Ladda upp profilbild" -#: src/Module/Settings/Profile/Index.php:266 +#: src/Module/Settings/Profile/Index.php:257 #, php-format msgid "" "

Custom fields appear on your profile page.

\n" @@ -10915,396 +10922,396 @@ msgid "" "\t\t\t\t

Non-public fields can only be seen by the selected Friendica contacts or the Friendica contacts in the selected circles.

" msgstr "" -#: src/Module/Settings/Profile/Index.php:286 +#: src/Module/Settings/Profile/Index.php:277 msgid "Street Address:" msgstr "Gatuadress:" -#: src/Module/Settings/Profile/Index.php:287 +#: src/Module/Settings/Profile/Index.php:278 msgid "Locality/City:" msgstr "Plats/Stad:" -#: src/Module/Settings/Profile/Index.php:288 +#: src/Module/Settings/Profile/Index.php:279 msgid "Region/State:" msgstr "Region:" -#: src/Module/Settings/Profile/Index.php:289 +#: src/Module/Settings/Profile/Index.php:280 msgid "Postal/Zip Code:" msgstr "Postnummer:" -#: src/Module/Settings/Profile/Index.php:290 +#: src/Module/Settings/Profile/Index.php:281 msgid "Country:" msgstr "Land:" -#: src/Module/Settings/Profile/Index.php:292 +#: src/Module/Settings/Profile/Index.php:283 msgid "XMPP (Jabber) address:" msgstr "" -#: src/Module/Settings/Profile/Index.php:292 +#: src/Module/Settings/Profile/Index.php:283 msgid "" "The XMPP address will be published so that people can follow you there." msgstr "" -#: src/Module/Settings/Profile/Index.php:293 +#: src/Module/Settings/Profile/Index.php:284 msgid "Matrix (Element) address:" msgstr "" -#: src/Module/Settings/Profile/Index.php:293 +#: src/Module/Settings/Profile/Index.php:284 msgid "" "The Matrix address will be published so that people can follow you there." msgstr "" -#: src/Module/Settings/Profile/Index.php:294 +#: src/Module/Settings/Profile/Index.php:285 msgid "Homepage URL:" msgstr "Hemsida: (URL)" -#: src/Module/Settings/Profile/Index.php:295 +#: src/Module/Settings/Profile/Index.php:286 msgid "Public Keywords:" msgstr "Offentliga nyckelord:" -#: src/Module/Settings/Profile/Index.php:295 +#: src/Module/Settings/Profile/Index.php:286 msgid "(Used for suggesting potential friends, can be seen by others)" msgstr "(Obs, synliga för andra. Används för att föreslå potentiella vänner.)" -#: src/Module/Settings/Profile/Index.php:296 +#: src/Module/Settings/Profile/Index.php:287 msgid "Private Keywords:" msgstr "Privata nyckelord:" -#: src/Module/Settings/Profile/Index.php:296 +#: src/Module/Settings/Profile/Index.php:287 msgid "(Used for searching profiles, never shown to others)" msgstr "(Obs, kan ge sökträffar vid sökning av profiler. Visas annars inte för andra.)" -#: src/Module/Settings/Profile/Photo/Crop.php:107 -#: src/Module/Settings/Profile/Photo/Crop.php:125 -#: src/Module/Settings/Profile/Photo/Crop.php:143 -#: src/Module/Settings/Profile/Photo/Index.php:100 +#: src/Module/Settings/Profile/Photo/Crop.php:93 +#: src/Module/Settings/Profile/Photo/Crop.php:111 +#: src/Module/Settings/Profile/Photo/Crop.php:129 +#: src/Module/Settings/Profile/Photo/Index.php:86 #, php-format msgid "Image size reduction [%s] failed." msgstr "" -#: src/Module/Settings/Profile/Photo/Crop.php:150 +#: src/Module/Settings/Profile/Photo/Crop.php:136 msgid "" "Shift-reload the page or clear browser cache if the new photo does not " "display immediately." msgstr "" -#: src/Module/Settings/Profile/Photo/Crop.php:155 +#: src/Module/Settings/Profile/Photo/Crop.php:141 msgid "Unable to process image" msgstr "Det gick inte att behandla bilden" -#: src/Module/Settings/Profile/Photo/Crop.php:174 +#: src/Module/Settings/Profile/Photo/Crop.php:160 msgid "Photo not found." msgstr "" -#: src/Module/Settings/Profile/Photo/Crop.php:196 +#: src/Module/Settings/Profile/Photo/Crop.php:182 msgid "Profile picture successfully updated." msgstr "" -#: src/Module/Settings/Profile/Photo/Crop.php:222 -#: src/Module/Settings/Profile/Photo/Crop.php:226 +#: src/Module/Settings/Profile/Photo/Crop.php:208 +#: src/Module/Settings/Profile/Photo/Crop.php:212 msgid "Crop Image" msgstr "Beskär bild" -#: src/Module/Settings/Profile/Photo/Crop.php:223 +#: src/Module/Settings/Profile/Photo/Crop.php:209 msgid "Please adjust the image cropping for optimum viewing." msgstr "Välj hur bilden ska beskäras för att bli så bra som möjligt." -#: src/Module/Settings/Profile/Photo/Crop.php:225 +#: src/Module/Settings/Profile/Photo/Crop.php:211 msgid "Use Image As Is" msgstr "" -#: src/Module/Settings/Profile/Photo/Index.php:46 +#: src/Module/Settings/Profile/Photo/Index.php:32 msgid "Missing uploaded image." msgstr "" -#: src/Module/Settings/Profile/Photo/Index.php:123 +#: src/Module/Settings/Profile/Photo/Index.php:109 msgid "Profile Picture Settings" msgstr "" -#: src/Module/Settings/Profile/Photo/Index.php:124 +#: src/Module/Settings/Profile/Photo/Index.php:110 msgid "Current Profile Picture" msgstr "" -#: src/Module/Settings/Profile/Photo/Index.php:125 +#: src/Module/Settings/Profile/Photo/Index.php:111 msgid "Upload Profile Picture" msgstr "" -#: src/Module/Settings/Profile/Photo/Index.php:126 +#: src/Module/Settings/Profile/Photo/Index.php:112 msgid "Upload Picture:" msgstr "" -#: src/Module/Settings/Profile/Photo/Index.php:131 +#: src/Module/Settings/Profile/Photo/Index.php:117 msgid "or" msgstr "eller" -#: src/Module/Settings/Profile/Photo/Index.php:133 +#: src/Module/Settings/Profile/Photo/Index.php:119 msgid "skip this step" msgstr "hoppa över det här steget" -#: src/Module/Settings/Profile/Photo/Index.php:135 +#: src/Module/Settings/Profile/Photo/Index.php:121 msgid "select a photo from your photo albums" msgstr "välj en bild från ett album" -#: src/Module/Settings/RemoveMe.php:76 +#: src/Module/Settings/RemoveMe.php:62 msgid "" "There was a validation error, please make sure you're logged in with the " "account you want to remove and try again." msgstr "" -#: src/Module/Settings/RemoveMe.php:76 +#: src/Module/Settings/RemoveMe.php:62 msgid "If this error persists, please contact your administrator." msgstr "" -#: src/Module/Settings/RemoveMe.php:90 -#: src/Navigation/Notifications/Repository/Notify.php:471 -#: src/Navigation/Notifications/Repository/Notify.php:492 +#: src/Module/Settings/RemoveMe.php:76 +#: src/Navigation/Notifications/Repository/Notify.php:457 +#: src/Navigation/Notifications/Repository/Notify.php:478 msgid "[Friendica System Notify]" msgstr "[System-avisering för Friendica]" -#: src/Module/Settings/RemoveMe.php:90 +#: src/Module/Settings/RemoveMe.php:76 msgid "User deleted their account" msgstr "Användaren tog bort sitt konto" -#: src/Module/Settings/RemoveMe.php:91 +#: src/Module/Settings/RemoveMe.php:77 msgid "" "On your Friendica node an user deleted their account. Please ensure that " "their data is removed from the backups." msgstr "" -#: src/Module/Settings/RemoveMe.php:92 +#: src/Module/Settings/RemoveMe.php:78 #, php-format msgid "The user id is %d" msgstr "ID för användaren är %d" -#: src/Module/Settings/RemoveMe.php:105 +#: src/Module/Settings/RemoveMe.php:91 msgid "Your account has been successfully removed. Bye bye!" msgstr "" -#: src/Module/Settings/RemoveMe.php:130 +#: src/Module/Settings/RemoveMe.php:116 msgid "Remove My Account" msgstr "Ta bort mitt konto" -#: src/Module/Settings/RemoveMe.php:131 +#: src/Module/Settings/RemoveMe.php:117 msgid "" "This will completely remove your account. Once this has been done it is not " "recoverable." msgstr "Detta kommer att ta bort kontot helt och hållet. Efter att det är gjort går det inte att återställa." -#: src/Module/Settings/RemoveMe.php:136 +#: src/Module/Settings/RemoveMe.php:122 msgid "Please enter your password for verification:" msgstr "Ange lösenordet igen för säkerhets skull:" -#: src/Module/Settings/Server/Action.php:60 +#: src/Module/Settings/Server/Action.php:46 msgid "Do you want to ignore this server?" msgstr "" -#: src/Module/Settings/Server/Action.php:64 +#: src/Module/Settings/Server/Action.php:50 msgid "Do you want to unignore this server?" msgstr "" -#: src/Module/Settings/Server/Action.php:74 -#: src/Module/Settings/Server/Index.php:104 +#: src/Module/Settings/Server/Action.php:60 +#: src/Module/Settings/Server/Index.php:90 msgid "Remote server settings" msgstr "" -#: src/Module/Settings/Server/Action.php:77 +#: src/Module/Settings/Server/Action.php:63 msgid "Server URL" msgstr "" -#: src/Module/Settings/Server/Index.php:78 +#: src/Module/Settings/Server/Index.php:64 msgid "Settings saved" msgstr "" -#: src/Module/Settings/Server/Index.php:105 +#: src/Module/Settings/Server/Index.php:91 msgid "" "Here you can find all the remote servers you have taken individual " "moderation actions against. For a list of servers your node has blocked, " "please check out the Information page." msgstr "" -#: src/Module/Settings/Server/Index.php:110 +#: src/Module/Settings/Server/Index.php:96 msgid "Delete all your settings for the remote server" msgstr "" -#: src/Module/Settings/Server/Index.php:111 +#: src/Module/Settings/Server/Index.php:97 msgid "Save changes" msgstr "" -#: src/Module/Settings/TwoFactor/AppSpecific.php:69 -#: src/Module/Settings/TwoFactor/Recovery.php:67 -#: src/Module/Settings/TwoFactor/Trusted.php:70 -#: src/Module/Settings/TwoFactor/Verify.php:72 +#: src/Module/Settings/TwoFactor/AppSpecific.php:55 +#: src/Module/Settings/TwoFactor/Recovery.php:53 +#: src/Module/Settings/TwoFactor/Trusted.php:56 +#: src/Module/Settings/TwoFactor/Verify.php:58 msgid "Please enter your password to access this page." msgstr "" -#: src/Module/Settings/TwoFactor/AppSpecific.php:87 +#: src/Module/Settings/TwoFactor/AppSpecific.php:73 msgid "App-specific password generation failed: The description is empty." msgstr "" -#: src/Module/Settings/TwoFactor/AppSpecific.php:90 +#: src/Module/Settings/TwoFactor/AppSpecific.php:76 msgid "" "App-specific password generation failed: This description already exists." msgstr "" -#: src/Module/Settings/TwoFactor/AppSpecific.php:94 +#: src/Module/Settings/TwoFactor/AppSpecific.php:80 msgid "New app-specific password generated." msgstr "" -#: src/Module/Settings/TwoFactor/AppSpecific.php:100 +#: src/Module/Settings/TwoFactor/AppSpecific.php:86 msgid "App-specific passwords successfully revoked." msgstr "" -#: src/Module/Settings/TwoFactor/AppSpecific.php:110 +#: src/Module/Settings/TwoFactor/AppSpecific.php:96 msgid "App-specific password successfully revoked." msgstr "" -#: src/Module/Settings/TwoFactor/AppSpecific.php:131 +#: src/Module/Settings/TwoFactor/AppSpecific.php:117 msgid "Two-factor app-specific passwords" msgstr "" -#: src/Module/Settings/TwoFactor/AppSpecific.php:133 +#: src/Module/Settings/TwoFactor/AppSpecific.php:119 msgid "" "

App-specific passwords are randomly generated passwords used instead your" " regular password to authenticate your account on third-party applications " "that don't support two-factor authentication.

" msgstr "" -#: src/Module/Settings/TwoFactor/AppSpecific.php:134 +#: src/Module/Settings/TwoFactor/AppSpecific.php:120 msgid "" "Make sure to copy your new app-specific password now. You won’t be able to " "see it again!" msgstr "" -#: src/Module/Settings/TwoFactor/AppSpecific.php:138 +#: src/Module/Settings/TwoFactor/AppSpecific.php:124 msgid "Last Used" msgstr "" -#: src/Module/Settings/TwoFactor/AppSpecific.php:139 +#: src/Module/Settings/TwoFactor/AppSpecific.php:125 msgid "Revoke" msgstr "" -#: src/Module/Settings/TwoFactor/AppSpecific.php:140 +#: src/Module/Settings/TwoFactor/AppSpecific.php:126 msgid "Revoke All" msgstr "" -#: src/Module/Settings/TwoFactor/AppSpecific.php:143 +#: src/Module/Settings/TwoFactor/AppSpecific.php:129 msgid "" "When you generate a new app-specific password, you must use it right away, " "it will be shown to you once after you generate it." msgstr "" -#: src/Module/Settings/TwoFactor/AppSpecific.php:144 +#: src/Module/Settings/TwoFactor/AppSpecific.php:130 msgid "Generate new app-specific password" msgstr "" -#: src/Module/Settings/TwoFactor/AppSpecific.php:145 +#: src/Module/Settings/TwoFactor/AppSpecific.php:131 msgid "Friendiqa on my Fairphone 2..." msgstr "" -#: src/Module/Settings/TwoFactor/AppSpecific.php:146 +#: src/Module/Settings/TwoFactor/AppSpecific.php:132 msgid "Generate" msgstr "" -#: src/Module/Settings/TwoFactor/Index.php:88 +#: src/Module/Settings/TwoFactor/Index.php:74 msgid "Two-factor authentication successfully disabled." msgstr "" -#: src/Module/Settings/TwoFactor/Index.php:141 +#: src/Module/Settings/TwoFactor/Index.php:127 msgid "" "

Use an application on a mobile device to get two-factor authentication " "codes when prompted on login.

" msgstr "" -#: src/Module/Settings/TwoFactor/Index.php:145 +#: src/Module/Settings/TwoFactor/Index.php:131 msgid "Authenticator app" msgstr "" -#: src/Module/Settings/TwoFactor/Index.php:146 +#: src/Module/Settings/TwoFactor/Index.php:132 msgid "Configured" msgstr "" -#: src/Module/Settings/TwoFactor/Index.php:146 +#: src/Module/Settings/TwoFactor/Index.php:132 msgid "Not Configured" msgstr "" -#: src/Module/Settings/TwoFactor/Index.php:147 +#: src/Module/Settings/TwoFactor/Index.php:133 msgid "

You haven't finished configuring your authenticator app.

" msgstr "" -#: src/Module/Settings/TwoFactor/Index.php:148 +#: src/Module/Settings/TwoFactor/Index.php:134 msgid "

Your authenticator app is correctly configured.

" msgstr "" -#: src/Module/Settings/TwoFactor/Index.php:150 +#: src/Module/Settings/TwoFactor/Index.php:136 msgid "Recovery codes" msgstr "" -#: src/Module/Settings/TwoFactor/Index.php:151 +#: src/Module/Settings/TwoFactor/Index.php:137 msgid "Remaining valid codes" msgstr "" -#: src/Module/Settings/TwoFactor/Index.php:153 +#: src/Module/Settings/TwoFactor/Index.php:139 msgid "" "

These one-use codes can replace an authenticator app code in case you " "have lost access to it.

" msgstr "" -#: src/Module/Settings/TwoFactor/Index.php:155 +#: src/Module/Settings/TwoFactor/Index.php:141 msgid "App-specific passwords" msgstr "" -#: src/Module/Settings/TwoFactor/Index.php:156 +#: src/Module/Settings/TwoFactor/Index.php:142 msgid "Generated app-specific passwords" msgstr "" -#: src/Module/Settings/TwoFactor/Index.php:158 +#: src/Module/Settings/TwoFactor/Index.php:144 msgid "" "

These randomly generated passwords allow you to authenticate on apps not " "supporting two-factor authentication.

" msgstr "" -#: src/Module/Settings/TwoFactor/Index.php:161 +#: src/Module/Settings/TwoFactor/Index.php:147 msgid "Current password:" msgstr "" -#: src/Module/Settings/TwoFactor/Index.php:161 +#: src/Module/Settings/TwoFactor/Index.php:147 msgid "" "You need to provide your current password to change two-factor " "authentication settings." msgstr "" -#: src/Module/Settings/TwoFactor/Index.php:162 +#: src/Module/Settings/TwoFactor/Index.php:148 msgid "Enable two-factor authentication" msgstr "" -#: src/Module/Settings/TwoFactor/Index.php:163 +#: src/Module/Settings/TwoFactor/Index.php:149 msgid "Disable two-factor authentication" msgstr "" -#: src/Module/Settings/TwoFactor/Index.php:164 +#: src/Module/Settings/TwoFactor/Index.php:150 msgid "Show recovery codes" msgstr "" -#: src/Module/Settings/TwoFactor/Index.php:165 +#: src/Module/Settings/TwoFactor/Index.php:151 msgid "Manage app-specific passwords" msgstr "" -#: src/Module/Settings/TwoFactor/Index.php:166 +#: src/Module/Settings/TwoFactor/Index.php:152 msgid "Manage trusted browsers" msgstr "" -#: src/Module/Settings/TwoFactor/Index.php:167 +#: src/Module/Settings/TwoFactor/Index.php:153 msgid "Finish app configuration" msgstr "" -#: src/Module/Settings/TwoFactor/Recovery.php:83 +#: src/Module/Settings/TwoFactor/Recovery.php:69 msgid "New recovery codes successfully generated." msgstr "" -#: src/Module/Settings/TwoFactor/Recovery.php:109 +#: src/Module/Settings/TwoFactor/Recovery.php:95 msgid "Two-factor recovery codes" msgstr "" -#: src/Module/Settings/TwoFactor/Recovery.php:111 +#: src/Module/Settings/TwoFactor/Recovery.php:97 msgid "" "

Recovery codes can be used to access your account in the event you lose " "access to your device and cannot receive two-factor authentication " @@ -11313,68 +11320,68 @@ msgid "" "account.

" msgstr "" -#: src/Module/Settings/TwoFactor/Recovery.php:113 +#: src/Module/Settings/TwoFactor/Recovery.php:99 msgid "" "When you generate new recovery codes, you must copy the new codes. Your old " "codes won’t work anymore." msgstr "" -#: src/Module/Settings/TwoFactor/Recovery.php:114 +#: src/Module/Settings/TwoFactor/Recovery.php:100 msgid "Generate new recovery codes" msgstr "" -#: src/Module/Settings/TwoFactor/Recovery.php:116 +#: src/Module/Settings/TwoFactor/Recovery.php:102 msgid "Next: Verification" msgstr "" -#: src/Module/Settings/TwoFactor/Trusted.php:87 +#: src/Module/Settings/TwoFactor/Trusted.php:73 msgid "Trusted browsers successfully removed." msgstr "" -#: src/Module/Settings/TwoFactor/Trusted.php:97 +#: src/Module/Settings/TwoFactor/Trusted.php:83 msgid "Trusted browser successfully removed." msgstr "" -#: src/Module/Settings/TwoFactor/Trusted.php:139 +#: src/Module/Settings/TwoFactor/Trusted.php:125 msgid "Two-factor Trusted Browsers" msgstr "" -#: src/Module/Settings/TwoFactor/Trusted.php:140 +#: src/Module/Settings/TwoFactor/Trusted.php:126 msgid "" "Trusted browsers are individual browsers you chose to skip two-factor " "authentication to access Friendica. Please use this feature sparingly, as it" " can negate the benefit of two-factor authentication." msgstr "" -#: src/Module/Settings/TwoFactor/Trusted.php:141 +#: src/Module/Settings/TwoFactor/Trusted.php:127 msgid "Device" msgstr "" -#: src/Module/Settings/TwoFactor/Trusted.php:142 +#: src/Module/Settings/TwoFactor/Trusted.php:128 msgid "OS" msgstr "" -#: src/Module/Settings/TwoFactor/Trusted.php:144 +#: src/Module/Settings/TwoFactor/Trusted.php:130 msgid "Trusted" msgstr "" -#: src/Module/Settings/TwoFactor/Trusted.php:145 +#: src/Module/Settings/TwoFactor/Trusted.php:131 msgid "Created At" msgstr "" -#: src/Module/Settings/TwoFactor/Trusted.php:146 +#: src/Module/Settings/TwoFactor/Trusted.php:132 msgid "Last Use" msgstr "" -#: src/Module/Settings/TwoFactor/Trusted.php:148 +#: src/Module/Settings/TwoFactor/Trusted.php:134 msgid "Remove All" msgstr "" -#: src/Module/Settings/TwoFactor/Verify.php:94 +#: src/Module/Settings/TwoFactor/Verify.php:80 msgid "Two-factor authentication successfully activated." msgstr "" -#: src/Module/Settings/TwoFactor/Verify.php:128 +#: src/Module/Settings/TwoFactor/Verify.php:114 #, php-format msgid "" "

Or you can submit the authentication settings manually:

\n" @@ -11394,105 +11401,105 @@ msgid "" "" msgstr "" -#: src/Module/Settings/TwoFactor/Verify.php:148 +#: src/Module/Settings/TwoFactor/Verify.php:134 msgid "Two-factor code verification" msgstr "" -#: src/Module/Settings/TwoFactor/Verify.php:150 +#: src/Module/Settings/TwoFactor/Verify.php:136 msgid "" "

Please scan this QR Code with your authenticator app and submit the " "provided code.

" msgstr "" -#: src/Module/Settings/TwoFactor/Verify.php:152 +#: src/Module/Settings/TwoFactor/Verify.php:138 #, php-format msgid "" "

Or you can open the following URL in your mobile device:

%s

" msgstr "" -#: src/Module/Settings/TwoFactor/Verify.php:159 +#: src/Module/Settings/TwoFactor/Verify.php:145 msgid "Verify code and enable two-factor authentication" msgstr "" -#: src/Module/Settings/UserExport.php:90 +#: src/Module/Settings/UserExport.php:76 msgid "Export account" msgstr "Exportera konto" -#: src/Module/Settings/UserExport.php:90 +#: src/Module/Settings/UserExport.php:76 msgid "" "Export your account info and contacts. Use this to make a backup of your " "account and/or to move it to another server." msgstr "" -#: src/Module/Settings/UserExport.php:91 +#: src/Module/Settings/UserExport.php:77 msgid "Export all" msgstr "Exportera allt" -#: src/Module/Settings/UserExport.php:91 +#: src/Module/Settings/UserExport.php:77 msgid "" "Export your account info, contacts and all your items as json. Could be a " "very big file, and could take a lot of time. Use this to make a full backup " "of your account (photos are not exported)" msgstr "" -#: src/Module/Settings/UserExport.php:92 +#: src/Module/Settings/UserExport.php:78 msgid "Export Contacts to CSV" msgstr "" -#: src/Module/Settings/UserExport.php:92 +#: src/Module/Settings/UserExport.php:78 msgid "" "Export the list of the accounts you are following as CSV file. Compatible to" " e.g. Mastodon." msgstr "" -#: src/Module/Special/DisplayNotFound.php:35 +#: src/Module/Special/DisplayNotFound.php:21 msgid "The top-level post isn't visible." msgstr "" -#: src/Module/Special/DisplayNotFound.php:36 +#: src/Module/Special/DisplayNotFound.php:22 msgid "The top-level post was deleted." msgstr "" -#: src/Module/Special/DisplayNotFound.php:37 +#: src/Module/Special/DisplayNotFound.php:23 msgid "" "This node has blocked the top-level author or the author of the shared post." msgstr "" -#: src/Module/Special/DisplayNotFound.php:38 +#: src/Module/Special/DisplayNotFound.php:24 msgid "" "You have ignored or blocked the top-level author or the author of the shared" " post." msgstr "" -#: src/Module/Special/DisplayNotFound.php:39 +#: src/Module/Special/DisplayNotFound.php:25 msgid "" "You have ignored the top-level author's server or the shared post author's " "server." msgstr "" -#: src/Module/Special/DisplayNotFound.php:45 +#: src/Module/Special/DisplayNotFound.php:31 msgid "Conversation Not Found" msgstr "" -#: src/Module/Special/DisplayNotFound.php:46 +#: src/Module/Special/DisplayNotFound.php:32 msgid "Unfortunately, the requested conversation isn't available to you." msgstr "" -#: src/Module/Special/DisplayNotFound.php:47 +#: src/Module/Special/DisplayNotFound.php:33 msgid "Possible reasons include:" msgstr "" -#: src/Module/Special/HTTPException.php:78 +#: src/Module/Special/HTTPException.php:64 msgid "Stack trace:" msgstr "" -#: src/Module/Special/HTTPException.php:83 +#: src/Module/Special/HTTPException.php:69 #, php-format msgid "Exception thrown in %s:%d" msgstr "" -#: src/Module/Tos.php:58 src/Module/Tos.php:107 +#: src/Module/Tos.php:44 src/Module/Tos.php:93 msgid "" "At the time of registration, and for providing communications between the " "user account and their contacts, the user has to provide a display name (pen" @@ -11505,14 +11512,14 @@ msgid "" "settings, it is not necessary for communication." msgstr "" -#: src/Module/Tos.php:59 src/Module/Tos.php:108 +#: src/Module/Tos.php:45 src/Module/Tos.php:94 msgid "" "This data is required for communication and is passed on to the nodes of the" " communication partners and is stored there. Users can enter additional " "private data that may be transmitted to the communication partners accounts." msgstr "" -#: src/Module/Tos.php:60 src/Module/Tos.php:109 +#: src/Module/Tos.php:46 src/Module/Tos.php:95 #, php-format msgid "" "At any point in time a logged in user can export their account data from the" @@ -11523,121 +11530,121 @@ msgid "" "from the nodes of the communication partners." msgstr "" -#: src/Module/Tos.php:63 src/Module/Tos.php:106 +#: src/Module/Tos.php:49 src/Module/Tos.php:92 msgid "Privacy Statement" msgstr "" -#: src/Module/Tos.php:103 +#: src/Module/Tos.php:89 msgid "Rules" msgstr "" -#: src/Module/Update/Display.php:45 +#: src/Module/Update/Display.php:31 msgid "Parameter uri_id is missing." msgstr "" -#: src/Module/Update/Display.php:55 +#: src/Module/Update/Display.php:41 msgid "The requested item doesn't exist or has been deleted." msgstr "" -#: src/Module/User/Delegation.php:146 +#: src/Module/User/Delegation.php:132 #, php-format msgid "You are now logged in as %s" msgstr "Du är nu inloggad som %s" -#: src/Module/User/Delegation.php:185 +#: src/Module/User/Delegation.php:171 msgid "Switch between your accounts" msgstr "Växla mellan dina konton" -#: src/Module/User/Delegation.php:186 +#: src/Module/User/Delegation.php:172 msgid "Manage your accounts" msgstr "Hantera dina konton" -#: src/Module/User/Delegation.php:187 +#: src/Module/User/Delegation.php:173 msgid "" "Toggle between different identities or community/group pages which share " "your account details or which you have been granted \"manage\" permissions" msgstr "" -#: src/Module/User/Delegation.php:188 +#: src/Module/User/Delegation.php:174 msgid "Select an identity to manage: " msgstr "Välj vilken identitet du vill hantera: " -#: src/Module/User/Import.php:104 +#: src/Module/User/Import.php:90 msgid "User imports on closed servers can only be done by an administrator." msgstr "" -#: src/Module/User/Import.php:120 +#: src/Module/User/Import.php:106 msgid "Move account" msgstr "Flytta konto" -#: src/Module/User/Import.php:121 +#: src/Module/User/Import.php:107 msgid "You can import an account from another Friendica server." msgstr "Du kan importera ett konto från en annan Friendica-server." -#: src/Module/User/Import.php:122 +#: src/Module/User/Import.php:108 msgid "" "You need to export your account from the old server and upload it here. We " "will recreate your old account here with all your contacts. We will try also" " to inform your friends that you moved here." msgstr "" -#: src/Module/User/Import.php:123 +#: src/Module/User/Import.php:109 msgid "" "This feature is experimental. We can't import contacts from the OStatus " "network (GNU Social/Statusnet) or from Diaspora" msgstr "" -#: src/Module/User/Import.php:124 +#: src/Module/User/Import.php:110 msgid "Account file" msgstr "" -#: src/Module/User/Import.php:124 +#: src/Module/User/Import.php:110 msgid "" "To export your account, go to \"Settings->Export your personal data\" and " "select \"Export account\"" msgstr "För att exportera ditt konto, gå till \"Inställningar->Exportera din personliga data\" och välj \"Exportera konto\"" -#: src/Module/User/Import.php:218 +#: src/Module/User/Import.php:204 msgid "Error decoding account file" msgstr "" -#: src/Module/User/Import.php:223 +#: src/Module/User/Import.php:209 msgid "Error! No version data in file! This is not a Friendica account file?" msgstr "" -#: src/Module/User/Import.php:231 +#: src/Module/User/Import.php:217 #, php-format msgid "User '%s' already exists on this server!" msgstr "Användaren '%s' existerar redan i den här servern!" -#: src/Module/User/Import.php:268 +#: src/Module/User/Import.php:254 msgid "User creation error" msgstr "Fel uppstod när användaren skulle skapas" -#: src/Module/User/Import.php:317 +#: src/Module/User/Import.php:303 #, php-format msgid "%d contact not imported" msgid_plural "%d contacts not imported" msgstr[0] "%d kontakt importerades inte" msgstr[1] "%d kontakterna importerades inte" -#: src/Module/User/Import.php:366 +#: src/Module/User/Import.php:352 msgid "User profile creation error" msgstr "" -#: src/Module/User/Import.php:417 +#: src/Module/User/Import.php:403 msgid "Done. You can now login with your username and password" msgstr "Färdig. Du kan nu logga in med ditt användarnamn och lösenord" -#: src/Module/Welcome.php:44 +#: src/Module/Welcome.php:30 msgid "Welcome to Friendica" msgstr "Välkommen till Friendica" -#: src/Module/Welcome.php:45 +#: src/Module/Welcome.php:31 msgid "New Member Checklist" msgstr "" -#: src/Module/Welcome.php:46 +#: src/Module/Welcome.php:32 msgid "" "We would like to offer some tips and links to help make your experience " "enjoyable. Click any item to visit the relevant page. A link to this page " @@ -11645,33 +11652,33 @@ msgid "" "registration and then will quietly disappear." msgstr "" -#: src/Module/Welcome.php:48 +#: src/Module/Welcome.php:34 msgid "Getting Started" msgstr "Komma igång" -#: src/Module/Welcome.php:49 +#: src/Module/Welcome.php:35 msgid "Friendica Walk-Through" msgstr "Genomgång av Friendica" -#: src/Module/Welcome.php:50 +#: src/Module/Welcome.php:36 msgid "" "On your Quick Start page - find a brief introduction to your " "profile and network tabs, make some new connections, and find some groups to" " join." msgstr "" -#: src/Module/Welcome.php:53 +#: src/Module/Welcome.php:39 msgid "Go to Your Settings" msgstr "Gå till dina inställningar" -#: src/Module/Welcome.php:54 +#: src/Module/Welcome.php:40 msgid "" "On your Settings page - change your initial password. Also make a " "note of your Identity Address. This looks just like an email address - and " "will be useful in making friends on the free social web." msgstr "" -#: src/Module/Welcome.php:55 +#: src/Module/Welcome.php:41 msgid "" "Review the other settings, particularly the privacy settings. An unpublished" " directory listing is like having an unlisted phone number. In general, you " @@ -11679,77 +11686,77 @@ msgid "" "potential friends know exactly how to find you." msgstr "" -#: src/Module/Welcome.php:59 +#: src/Module/Welcome.php:45 msgid "" "Upload a profile photo if you have not done so already. Studies have shown " "that people with real photos of themselves are ten times more likely to make" " friends than people who do not." msgstr "" -#: src/Module/Welcome.php:60 +#: src/Module/Welcome.php:46 msgid "Edit Your Profile" msgstr "Redigera din profil" -#: src/Module/Welcome.php:61 +#: src/Module/Welcome.php:47 msgid "" "Edit your default profile to your liking. Review the " "settings for hiding your list of friends and hiding the profile from unknown" " visitors." msgstr "" -#: src/Module/Welcome.php:62 +#: src/Module/Welcome.php:48 msgid "Profile Keywords" msgstr "" -#: src/Module/Welcome.php:63 +#: src/Module/Welcome.php:49 msgid "" "Set some public keywords for your profile which describe your interests. We " "may be able to find other people with similar interests and suggest " "friendships." msgstr "" -#: src/Module/Welcome.php:65 +#: src/Module/Welcome.php:51 msgid "Connecting" msgstr "Ansluter" -#: src/Module/Welcome.php:67 +#: src/Module/Welcome.php:53 msgid "Importing Emails" msgstr "Importerar e-post" -#: src/Module/Welcome.php:68 +#: src/Module/Welcome.php:54 msgid "" "Enter your email access information on your Connector Settings page if you " "wish to import and interact with friends or mailing lists from your email " "INBOX" msgstr "" -#: src/Module/Welcome.php:69 +#: src/Module/Welcome.php:55 msgid "Go to Your Contacts Page" msgstr "" -#: src/Module/Welcome.php:70 +#: src/Module/Welcome.php:56 msgid "" "Your Contacts page is your gateway to managing friendships and connecting " "with friends on other networks. Typically you enter their address or site " "URL in the Add New Contact dialog." msgstr "" -#: src/Module/Welcome.php:71 +#: src/Module/Welcome.php:57 msgid "Go to Your Site's Directory" msgstr "" -#: src/Module/Welcome.php:72 +#: src/Module/Welcome.php:58 msgid "" "The Directory page lets you find other people in this network or other " "federated sites. Look for a Connect or Follow link on " "their profile page. Provide your own Identity Address if requested." msgstr "" -#: src/Module/Welcome.php:73 +#: src/Module/Welcome.php:59 msgid "Finding New People" msgstr "Hitta nya personer" -#: src/Module/Welcome.php:74 +#: src/Module/Welcome.php:60 msgid "" "On the side panel of the Contacts page are several tools to find new " "friends. We can match people by interest, look up people by name or " @@ -11758,412 +11765,408 @@ msgid "" "hours." msgstr "" -#: src/Module/Welcome.php:77 +#: src/Module/Welcome.php:63 msgid "Add Your Contacts To Circle" msgstr "" -#: src/Module/Welcome.php:78 +#: src/Module/Welcome.php:64 msgid "" "Once you have made some friends, organize them into private conversation " "circles from the sidebar of your Contacts page and then you can interact " "with each circle privately on your Network page." msgstr "" -#: src/Module/Welcome.php:80 +#: src/Module/Welcome.php:66 msgid "Why Aren't My Posts Public?" msgstr "Varför visas inte mina inlägg publikt?" -#: src/Module/Welcome.php:81 +#: src/Module/Welcome.php:67 msgid "" "Friendica respects your privacy. By default, your posts will only show up to" " people you've added as friends. For more information, see the help section " "from the link above." msgstr "" -#: src/Module/Welcome.php:83 +#: src/Module/Welcome.php:69 msgid "Getting Help" msgstr "Få hjälp" -#: src/Module/Welcome.php:84 +#: src/Module/Welcome.php:70 msgid "Go to the Help Section" msgstr "Gå till Hjälp-sektionen" -#: src/Module/Welcome.php:85 +#: src/Module/Welcome.php:71 msgid "" "Our help pages may be consulted for detail on other program" " features and resources." msgstr "" -#: src/Navigation/Notifications/Factory/FormattedNavNotification.php:161 +#: src/Navigation/Notifications/Factory/FormattedNavNotification.php:147 msgid "{0} wants to follow you" msgstr "" -#: src/Navigation/Notifications/Factory/FormattedNavNotification.php:163 +#: src/Navigation/Notifications/Factory/FormattedNavNotification.php:149 msgid "{0} has started following you" msgstr "" -#: src/Navigation/Notifications/Factory/FormattedNotify.php:96 +#: src/Navigation/Notifications/Factory/FormattedNotify.php:82 #, php-format msgid "%s liked %s's post" msgstr "%sgillade %s's inlägg" -#: src/Navigation/Notifications/Factory/FormattedNotify.php:108 +#: src/Navigation/Notifications/Factory/FormattedNotify.php:94 #, php-format msgid "%s disliked %s's post" msgstr "%s gillade inte %s's inlägg" -#: src/Navigation/Notifications/Factory/FormattedNotify.php:120 +#: src/Navigation/Notifications/Factory/FormattedNotify.php:106 #, php-format msgid "%s is attending %s's event" msgstr "" -#: src/Navigation/Notifications/Factory/FormattedNotify.php:132 +#: src/Navigation/Notifications/Factory/FormattedNotify.php:118 #, php-format msgid "%s is not attending %s's event" msgstr "" -#: src/Navigation/Notifications/Factory/FormattedNotify.php:144 +#: src/Navigation/Notifications/Factory/FormattedNotify.php:130 #, php-format msgid "%s may attending %s's event" msgstr "" -#: src/Navigation/Notifications/Factory/FormattedNotify.php:174 +#: src/Navigation/Notifications/Factory/FormattedNotify.php:160 #, php-format msgid "%s is now friends with %s" msgstr "%s är nu vänner med %s" -#: src/Navigation/Notifications/Factory/FormattedNotify.php:341 -#: src/Navigation/Notifications/Factory/FormattedNotify.php:379 +#: src/Navigation/Notifications/Factory/FormattedNotify.php:327 +#: src/Navigation/Notifications/Factory/FormattedNotify.php:365 #, php-format msgid "%s commented on %s's post" msgstr "%s kommenterade på %s's inlägg" -#: src/Navigation/Notifications/Factory/FormattedNotify.php:378 +#: src/Navigation/Notifications/Factory/FormattedNotify.php:364 #, php-format msgid "%s created a new post" msgstr "%s skapade ett nytt inlägg" -#: src/Navigation/Notifications/Factory/Introduction.php:132 +#: src/Navigation/Notifications/Factory/Introduction.php:118 msgid "Friend Suggestion" msgstr "Vän-förslag" -#: src/Navigation/Notifications/Factory/Introduction.php:158 +#: src/Navigation/Notifications/Factory/Introduction.php:144 msgid "Friend/Connect Request" msgstr "Vän- eller kontaktförfrågan" -#: src/Navigation/Notifications/Factory/Introduction.php:158 -msgid "New Follower" -msgstr "En som vill följa dig" - -#: src/Navigation/Notifications/Factory/Notification.php:134 +#: src/Navigation/Notifications/Factory/Notification.php:120 #, php-format msgid "%1$s wants to follow you" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:136 +#: src/Navigation/Notifications/Factory/Notification.php:122 #, php-format msgid "%1$s has started following you" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:208 +#: src/Navigation/Notifications/Factory/Notification.php:194 #, php-format msgid "%1$s liked your comment on %2$s" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:211 +#: src/Navigation/Notifications/Factory/Notification.php:197 #, php-format msgid "%1$s liked your post %2$s" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:218 +#: src/Navigation/Notifications/Factory/Notification.php:204 #, php-format msgid "%1$s disliked your comment on %2$s" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:221 +#: src/Navigation/Notifications/Factory/Notification.php:207 #, php-format msgid "%1$s disliked your post %2$s" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:228 +#: src/Navigation/Notifications/Factory/Notification.php:214 #, php-format msgid "%1$s shared your comment %2$s" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:231 -#: src/Navigation/Notifications/Factory/Notification.php:316 +#: src/Navigation/Notifications/Factory/Notification.php:217 +#: src/Navigation/Notifications/Factory/Notification.php:302 #, php-format msgid "%1$s shared your post %2$s" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:235 -#: src/Navigation/Notifications/Factory/Notification.php:305 +#: src/Navigation/Notifications/Factory/Notification.php:221 +#: src/Navigation/Notifications/Factory/Notification.php:291 #, php-format msgid "%1$s shared the post %2$s from %3$s" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:237 -#: src/Navigation/Notifications/Factory/Notification.php:307 +#: src/Navigation/Notifications/Factory/Notification.php:223 +#: src/Navigation/Notifications/Factory/Notification.php:293 #, php-format msgid "%1$s shared a post from %3$s" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:239 -#: src/Navigation/Notifications/Factory/Notification.php:309 +#: src/Navigation/Notifications/Factory/Notification.php:225 +#: src/Navigation/Notifications/Factory/Notification.php:295 #, php-format msgid "%1$s shared the post %2$s" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:241 -#: src/Navigation/Notifications/Factory/Notification.php:311 +#: src/Navigation/Notifications/Factory/Notification.php:227 +#: src/Navigation/Notifications/Factory/Notification.php:297 #, php-format msgid "%1$s shared a post" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:249 +#: src/Navigation/Notifications/Factory/Notification.php:235 #, php-format msgid "%1$s wants to attend your event %2$s" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:256 +#: src/Navigation/Notifications/Factory/Notification.php:242 #, php-format msgid "%1$s does not want to attend your event %2$s" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:263 +#: src/Navigation/Notifications/Factory/Notification.php:249 #, php-format msgid "%1$s maybe wants to attend your event %2$s" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:270 +#: src/Navigation/Notifications/Factory/Notification.php:256 #, php-format msgid "%1$s tagged you on %2$s" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:274 +#: src/Navigation/Notifications/Factory/Notification.php:260 #, php-format msgid "%1$s replied to you on %2$s" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:278 +#: src/Navigation/Notifications/Factory/Notification.php:264 #, php-format msgid "%1$s commented in your thread %2$s" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:282 +#: src/Navigation/Notifications/Factory/Notification.php:268 #, php-format msgid "%1$s commented on your comment %2$s" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:289 +#: src/Navigation/Notifications/Factory/Notification.php:275 #, php-format msgid "%1$s commented in their thread %2$s" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:291 +#: src/Navigation/Notifications/Factory/Notification.php:277 #, php-format msgid "%1$s commented in their thread" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:293 +#: src/Navigation/Notifications/Factory/Notification.php:279 #, php-format msgid "%1$s commented in the thread %2$s from %3$s" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:295 +#: src/Navigation/Notifications/Factory/Notification.php:281 #, php-format msgid "%1$s commented in the thread from %3$s" msgstr "" -#: src/Navigation/Notifications/Factory/Notification.php:300 +#: src/Navigation/Notifications/Factory/Notification.php:286 #, php-format msgid "%1$s commented on your thread %2$s" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:225 -#: src/Navigation/Notifications/Repository/Notify.php:754 +#: src/Navigation/Notifications/Repository/Notify.php:211 +#: src/Navigation/Notifications/Repository/Notify.php:740 msgid "[Friendica:Notify]" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:293 +#: src/Navigation/Notifications/Repository/Notify.php:279 #, php-format msgid "%s New mail received at %s" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:295 +#: src/Navigation/Notifications/Repository/Notify.php:281 #, php-format msgid "%1$s sent you a new private message at %2$s." msgstr "%1$sskickade ett privat meddelande till dig %2$s." -#: src/Navigation/Notifications/Repository/Notify.php:296 +#: src/Navigation/Notifications/Repository/Notify.php:282 msgid "a private message" msgstr "ett privat meddelande" -#: src/Navigation/Notifications/Repository/Notify.php:296 +#: src/Navigation/Notifications/Repository/Notify.php:282 #, php-format msgid "%1$s sent you %2$s." msgstr "%1$sskickade%2$s." -#: src/Navigation/Notifications/Repository/Notify.php:298 +#: src/Navigation/Notifications/Repository/Notify.php:284 #, php-format msgid "Please visit %s to view and/or reply to your private messages." msgstr "Gå till %sför att se och svara på dina privata meddelanden." -#: src/Navigation/Notifications/Repository/Notify.php:328 +#: src/Navigation/Notifications/Repository/Notify.php:314 #, php-format msgid "%1$s commented on %2$s's %3$s %4$s" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:333 +#: src/Navigation/Notifications/Repository/Notify.php:319 #, php-format msgid "%1$s commented on your %2$s %3$s" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:337 +#: src/Navigation/Notifications/Repository/Notify.php:323 #, php-format msgid "%1$s commented on their %2$s %3$s" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:341 -#: src/Navigation/Notifications/Repository/Notify.php:788 +#: src/Navigation/Notifications/Repository/Notify.php:327 +#: src/Navigation/Notifications/Repository/Notify.php:774 #, php-format msgid "%1$s Comment to conversation #%2$d by %3$s" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:343 +#: src/Navigation/Notifications/Repository/Notify.php:329 #, php-format msgid "%s commented on an item/conversation you have been following." msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:347 -#: src/Navigation/Notifications/Repository/Notify.php:362 -#: src/Navigation/Notifications/Repository/Notify.php:814 +#: src/Navigation/Notifications/Repository/Notify.php:333 +#: src/Navigation/Notifications/Repository/Notify.php:348 +#: src/Navigation/Notifications/Repository/Notify.php:800 #, php-format msgid "Please visit %s to view and/or reply to the conversation." msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:354 +#: src/Navigation/Notifications/Repository/Notify.php:340 #, php-format msgid "%s %s posted to your profile wall" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:356 +#: src/Navigation/Notifications/Repository/Notify.php:342 #, php-format msgid "%1$s posted to your profile wall at %2$s" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:357 +#: src/Navigation/Notifications/Repository/Notify.php:343 #, php-format msgid "%1$s posted to [url=%2$s]your wall[/url]" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:370 +#: src/Navigation/Notifications/Repository/Notify.php:356 #, php-format msgid "%s Introduction received" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:372 +#: src/Navigation/Notifications/Repository/Notify.php:358 #, php-format msgid "You've received an introduction from '%1$s' at %2$s" msgstr "Du tog emot en introduktion från '%1$s' vid %2$s" -#: src/Navigation/Notifications/Repository/Notify.php:373 +#: src/Navigation/Notifications/Repository/Notify.php:359 #, php-format msgid "You've received [url=%1$s]an introduction[/url] from %2$s." msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:378 -#: src/Navigation/Notifications/Repository/Notify.php:424 +#: src/Navigation/Notifications/Repository/Notify.php:364 +#: src/Navigation/Notifications/Repository/Notify.php:410 #, php-format msgid "You may visit their profile at %s" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:380 +#: src/Navigation/Notifications/Repository/Notify.php:366 #, php-format msgid "Please visit %s to approve or reject the introduction." msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:387 +#: src/Navigation/Notifications/Repository/Notify.php:373 #, php-format msgid "%s A new person is sharing with you" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:389 -#: src/Navigation/Notifications/Repository/Notify.php:390 +#: src/Navigation/Notifications/Repository/Notify.php:375 +#: src/Navigation/Notifications/Repository/Notify.php:376 #, php-format msgid "%1$s is sharing with you at %2$s" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:397 +#: src/Navigation/Notifications/Repository/Notify.php:383 #, php-format msgid "%s You have a new follower" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:399 -#: src/Navigation/Notifications/Repository/Notify.php:400 +#: src/Navigation/Notifications/Repository/Notify.php:385 +#: src/Navigation/Notifications/Repository/Notify.php:386 #, php-format msgid "You have a new follower at %2$s : %1$s" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:413 +#: src/Navigation/Notifications/Repository/Notify.php:399 #, php-format msgid "%s Friend suggestion received" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:415 +#: src/Navigation/Notifications/Repository/Notify.php:401 #, php-format msgid "You've received a friend suggestion from '%1$s' at %2$s" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:416 +#: src/Navigation/Notifications/Repository/Notify.php:402 #, php-format msgid "" "You've received [url=%1$s]a friend suggestion[/url] for %2$s from %3$s." msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:422 +#: src/Navigation/Notifications/Repository/Notify.php:408 msgid "Name:" msgstr "Namn:" -#: src/Navigation/Notifications/Repository/Notify.php:423 +#: src/Navigation/Notifications/Repository/Notify.php:409 msgid "Photo:" msgstr "Foto:" -#: src/Navigation/Notifications/Repository/Notify.php:426 +#: src/Navigation/Notifications/Repository/Notify.php:412 #, php-format msgid "Please visit %s to approve or reject the suggestion." msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:434 -#: src/Navigation/Notifications/Repository/Notify.php:449 +#: src/Navigation/Notifications/Repository/Notify.php:420 +#: src/Navigation/Notifications/Repository/Notify.php:435 #, php-format msgid "%s Connection accepted" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:436 -#: src/Navigation/Notifications/Repository/Notify.php:451 +#: src/Navigation/Notifications/Repository/Notify.php:422 +#: src/Navigation/Notifications/Repository/Notify.php:437 #, php-format msgid "'%1$s' has accepted your connection request at %2$s" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:437 -#: src/Navigation/Notifications/Repository/Notify.php:452 +#: src/Navigation/Notifications/Repository/Notify.php:423 +#: src/Navigation/Notifications/Repository/Notify.php:438 #, php-format msgid "%2$s has accepted your [url=%1$s]connection request[/url]." msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:442 +#: src/Navigation/Notifications/Repository/Notify.php:428 msgid "" "You are now mutual friends and may exchange status updates, photos, and " "email without restriction." msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:444 +#: src/Navigation/Notifications/Repository/Notify.php:430 #, php-format msgid "Please visit %s if you wish to make any changes to this relationship." msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:457 +#: src/Navigation/Notifications/Repository/Notify.php:443 #, php-format msgid "" "'%1$s' has chosen to accept you a fan, which restricts some forms of " @@ -12172,34 +12175,34 @@ msgid "" "automatically." msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:459 +#: src/Navigation/Notifications/Repository/Notify.php:445 #, php-format msgid "" "'%1$s' may choose to extend this into a two-way or more permissive " "relationship in the future." msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:461 +#: src/Navigation/Notifications/Repository/Notify.php:447 #, php-format msgid "Please visit %s if you wish to make any changes to this relationship." msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:471 +#: src/Navigation/Notifications/Repository/Notify.php:457 msgid "registration request" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:473 +#: src/Navigation/Notifications/Repository/Notify.php:459 #, php-format msgid "You've received a registration request from '%1$s' at %2$s" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:474 +#: src/Navigation/Notifications/Repository/Notify.php:460 #, php-format msgid "You've received a [url=%1$s]registration request[/url] from %2$s." msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:479 -#: src/Navigation/Notifications/Repository/Notify.php:500 +#: src/Navigation/Notifications/Repository/Notify.php:465 +#: src/Navigation/Notifications/Repository/Notify.php:486 #, php-format msgid "" "Display Name:\t%s\n" @@ -12207,768 +12210,755 @@ msgid "" "Login Name:\t%s (%s)" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:485 +#: src/Navigation/Notifications/Repository/Notify.php:471 #, php-format msgid "Please visit %s to approve or reject the request." msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:492 +#: src/Navigation/Notifications/Repository/Notify.php:478 msgid "new registration" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:494 +#: src/Navigation/Notifications/Repository/Notify.php:480 #, php-format msgid "You've received a new registration from '%1$s' at %2$s" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:495 +#: src/Navigation/Notifications/Repository/Notify.php:481 #, php-format msgid "You've received a [url=%1$s]new registration[/url] from %2$s." msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:506 +#: src/Navigation/Notifications/Repository/Notify.php:492 #, php-format msgid "Please visit %s to have a look at the new registration." msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:782 +#: src/Navigation/Notifications/Repository/Notify.php:768 #, php-format msgid "%s %s tagged you" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:785 +#: src/Navigation/Notifications/Repository/Notify.php:771 #, php-format msgid "%s %s shared a new post" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:793 +#: src/Navigation/Notifications/Repository/Notify.php:779 #, php-format msgid "%1$s %2$s liked your post #%3$d" msgstr "" -#: src/Navigation/Notifications/Repository/Notify.php:796 +#: src/Navigation/Notifications/Repository/Notify.php:782 #, php-format msgid "%1$s %2$s liked your comment on #%3$d" msgstr "" -#: src/Object/EMail/ItemCCEMail.php:42 +#: src/Object/EMail/ItemCCEMail.php:28 #, php-format msgid "" "This message was sent to you by %s, a member of the Friendica social " "network." msgstr "" -#: src/Object/EMail/ItemCCEMail.php:44 +#: src/Object/EMail/ItemCCEMail.php:30 #, php-format msgid "You may visit them online at %s" msgstr "" -#: src/Object/EMail/ItemCCEMail.php:45 +#: src/Object/EMail/ItemCCEMail.php:31 msgid "" "Please contact the sender by replying to this post if you do not wish to " "receive these messages." msgstr "Kontakta avsändaren genom att svara på det här meddelandet om du inte vill ha sådana här meddelanden." -#: src/Object/EMail/ItemCCEMail.php:49 +#: src/Object/EMail/ItemCCEMail.php:35 #, php-format msgid "%s posted an update." msgstr "%s har gjort ett inlägg." -#: src/Object/Post.php:138 +#: src/Object/Post.php:124 msgid "Private Message" msgstr "Privat meddelande" -#: src/Object/Post.php:142 +#: src/Object/Post.php:128 msgid "Public Message" msgstr "" -#: src/Object/Post.php:146 +#: src/Object/Post.php:132 msgid "Unlisted Message" msgstr "" -#: src/Object/Post.php:182 +#: src/Object/Post.php:168 msgid "This entry was edited" msgstr "Den här posten redigerades" -#: src/Object/Post.php:210 +#: src/Object/Post.php:196 msgid "Connector Message" msgstr "" -#: src/Object/Post.php:239 src/Object/Post.php:241 +#: src/Object/Post.php:225 src/Object/Post.php:227 msgid "Edit" msgstr "Ändra" -#: src/Object/Post.php:275 +#: src/Object/Post.php:261 msgid "Delete globally" msgstr "" -#: src/Object/Post.php:275 +#: src/Object/Post.php:261 msgid "Remove locally" msgstr "" -#: src/Object/Post.php:282 +#: src/Object/Post.php:268 #, php-format msgid "Block %s" msgstr "" -#: src/Object/Post.php:287 +#: src/Object/Post.php:273 #, php-format msgid "Ignore %s" msgstr "" -#: src/Object/Post.php:292 +#: src/Object/Post.php:278 #, php-format msgid "Collapse %s" msgstr "" -#: src/Object/Post.php:296 +#: src/Object/Post.php:282 msgid "Report post" msgstr "" -#: src/Object/Post.php:307 +#: src/Object/Post.php:293 msgid "Save to folder" msgstr "" -#: src/Object/Post.php:347 +#: src/Object/Post.php:333 msgid "I will attend" msgstr "" -#: src/Object/Post.php:347 +#: src/Object/Post.php:333 msgid "I will not attend" msgstr "" -#: src/Object/Post.php:347 +#: src/Object/Post.php:333 msgid "I might attend" msgstr "" -#: src/Object/Post.php:394 +#: src/Object/Post.php:380 msgid "Ignore thread" msgstr "" -#: src/Object/Post.php:395 +#: src/Object/Post.php:381 msgid "Unignore thread" msgstr "" -#: src/Object/Post.php:396 +#: src/Object/Post.php:382 msgid "Toggle ignore status" msgstr "" -#: src/Object/Post.php:406 +#: src/Object/Post.php:392 msgid "Add star" msgstr "" -#: src/Object/Post.php:407 +#: src/Object/Post.php:393 msgid "Remove star" msgstr "" -#: src/Object/Post.php:408 +#: src/Object/Post.php:394 msgid "Toggle star status" msgstr "" -#: src/Object/Post.php:419 +#: src/Object/Post.php:405 msgid "Pin" msgstr "" -#: src/Object/Post.php:420 +#: src/Object/Post.php:406 msgid "Unpin" msgstr "" -#: src/Object/Post.php:421 +#: src/Object/Post.php:407 msgid "Toggle pin status" msgstr "" -#: src/Object/Post.php:424 +#: src/Object/Post.php:410 msgid "Pinned" msgstr "" -#: src/Object/Post.php:429 +#: src/Object/Post.php:415 msgid "Add tag" msgstr "" -#: src/Object/Post.php:444 +#: src/Object/Post.php:430 msgid "Quote share this" msgstr "" -#: src/Object/Post.php:444 +#: src/Object/Post.php:430 msgid "Quote Share" msgstr "" -#: src/Object/Post.php:447 +#: src/Object/Post.php:433 msgid "Reshare this" msgstr "" -#: src/Object/Post.php:447 +#: src/Object/Post.php:433 msgid "Reshare" msgstr "" -#: src/Object/Post.php:448 +#: src/Object/Post.php:434 msgid "Cancel your Reshare" msgstr "" -#: src/Object/Post.php:448 +#: src/Object/Post.php:434 msgid "Unshare" msgstr "" -#: src/Object/Post.php:492 +#: src/Object/Post.php:478 #, php-format msgid "%s (Received %s)" msgstr "" -#: src/Object/Post.php:498 +#: src/Object/Post.php:484 msgid "Comment this item on your system" msgstr "" -#: src/Object/Post.php:498 +#: src/Object/Post.php:484 msgid "Remote comment" msgstr "" -#: src/Object/Post.php:520 +#: src/Object/Post.php:506 msgid "Share via ..." msgstr "" -#: src/Object/Post.php:520 +#: src/Object/Post.php:506 msgid "Share via external services" msgstr "" -#: src/Object/Post.php:527 +#: src/Object/Post.php:513 msgid "Unknown parent" msgstr "" -#: src/Object/Post.php:531 +#: src/Object/Post.php:517 #, php-format msgid "in reply to %s" msgstr "" -#: src/Object/Post.php:533 +#: src/Object/Post.php:519 msgid "Parent is probably private or not federated." msgstr "" -#: src/Object/Post.php:557 +#: src/Object/Post.php:543 msgid "to" msgstr "till" -#: src/Object/Post.php:558 +#: src/Object/Post.php:544 msgid "via" msgstr "via" -#: src/Object/Post.php:559 +#: src/Object/Post.php:545 msgid "Wall-to-Wall" msgstr "Profil-till-profil" -#: src/Object/Post.php:560 +#: src/Object/Post.php:546 msgid "via Wall-To-Wall:" msgstr "via profil-till-profil:" -#: src/Object/Post.php:613 +#: src/Object/Post.php:599 #, php-format msgid "Reply to %s" msgstr "" -#: src/Object/Post.php:616 +#: src/Object/Post.php:602 msgid "More" msgstr "" -#: src/Object/Post.php:635 +#: src/Object/Post.php:621 msgid "Notifier task is pending" msgstr "" -#: src/Object/Post.php:636 +#: src/Object/Post.php:622 msgid "Delivery to remote servers is pending" msgstr "" -#: src/Object/Post.php:637 +#: src/Object/Post.php:623 msgid "Delivery to remote servers is underway" msgstr "" -#: src/Object/Post.php:638 +#: src/Object/Post.php:624 msgid "Delivery to remote servers is mostly done" msgstr "" -#: src/Object/Post.php:639 +#: src/Object/Post.php:625 msgid "Delivery to remote servers is done" msgstr "" -#: src/Object/Post.php:661 +#: src/Object/Post.php:647 #, php-format msgid "%d comment" msgid_plural "%d comments" msgstr[0] "%d kommentar" msgstr[1] "%d kommentarer" -#: src/Object/Post.php:662 +#: src/Object/Post.php:648 msgid "Show more" msgstr "" -#: src/Object/Post.php:663 +#: src/Object/Post.php:649 msgid "Show fewer" msgstr "" -#: src/Object/Post.php:700 +#: src/Object/Post.php:686 #, php-format msgid "Reshared by: %s" msgstr "" -#: src/Object/Post.php:705 +#: src/Object/Post.php:691 #, php-format msgid "Viewed by: %s" msgstr "" -#: src/Object/Post.php:710 +#: src/Object/Post.php:696 #, php-format msgid "Read by: %s" msgstr "" -#: src/Object/Post.php:715 +#: src/Object/Post.php:701 #, php-format msgid "Liked by: %s" msgstr "" -#: src/Object/Post.php:720 +#: src/Object/Post.php:706 #, php-format msgid "Disliked by: %s" msgstr "" -#: src/Object/Post.php:725 +#: src/Object/Post.php:711 #, php-format msgid "Attended by: %s" msgstr "" -#: src/Object/Post.php:730 +#: src/Object/Post.php:716 #, php-format msgid "Maybe attended by: %s" msgstr "" -#: src/Object/Post.php:735 +#: src/Object/Post.php:721 #, php-format msgid "Not attended by: %s" msgstr "" -#: src/Object/Post.php:740 +#: src/Object/Post.php:726 #, php-format msgid "Commented by: %s" msgstr "" -#: src/Object/Post.php:745 +#: src/Object/Post.php:731 #, php-format msgid "Reacted with %s by: %s" msgstr "" -#: src/Object/Post.php:768 +#: src/Object/Post.php:754 #, php-format msgid "Quote shared by: %s" msgstr "" -#: src/Protocol/ActivityPub/Receiver.php:568 +#: src/Protocol/ActivityPub/Receiver.php:557 msgid "Chat" msgstr "" -#: src/Protocol/Delivery.php:544 +#: src/Protocol/Delivery.php:530 msgid "(no subject)" msgstr "" -#: src/Protocol/OStatus.php:1392 -#, php-format -msgid "%s is now following %s." -msgstr "" - -#: src/Protocol/OStatus.php:1393 -msgid "following" -msgstr "följer" - -#: src/Protocol/OStatus.php:1396 -#, php-format -msgid "%s stopped following %s." -msgstr "" - -#: src/Protocol/OStatus.php:1397 -msgid "stopped following" -msgstr "följer inte längre" - -#: src/Render/FriendicaSmartyEngine.php:56 +#: src/Render/FriendicaSmartyEngine.php:42 #, php-format msgid "The folder %s must be writable by webserver." msgstr "" -#: src/Security/Authentication.php:216 +#: src/Security/Authentication.php:200 msgid "Login failed." msgstr "Inloggningen misslyckades." -#: src/Security/Authentication.php:261 +#: src/Security/Authentication.php:245 msgid "Login failed. Please check your credentials." msgstr "" -#: src/Security/Authentication.php:375 +#: src/Security/Authentication.php:359 #, php-format msgid "Welcome %s" msgstr "" -#: src/Security/Authentication.php:376 +#: src/Security/Authentication.php:360 msgid "Please upload a profile photo." msgstr "Vänligen ladda upp ett profil-foto." -#: src/Util/EMailer/MailBuilder.php:260 +#: src/Security/OpenWebAuth.php:149 +#, php-format +msgid "OpenWebAuth: %1$s welcomes %2$s" +msgstr "OpenWebAuth: %1$s välkomnar %2$s" + +#: src/Util/EMailer/MailBuilder.php:246 msgid "Friendica Notification" msgstr "" -#: src/Util/EMailer/NotifyMailBuilder.php:78 -#: src/Util/EMailer/SystemMailBuilder.php:54 +#: src/Util/EMailer/NotifyMailBuilder.php:64 +#: src/Util/EMailer/SystemMailBuilder.php:40 #, php-format msgid "%1$s, %2$s Administrator" msgstr "" -#: src/Util/EMailer/NotifyMailBuilder.php:80 -#: src/Util/EMailer/SystemMailBuilder.php:56 +#: src/Util/EMailer/NotifyMailBuilder.php:66 +#: src/Util/EMailer/SystemMailBuilder.php:42 #, php-format msgid "%s Administrator" msgstr "" -#: src/Util/EMailer/NotifyMailBuilder.php:193 -#: src/Util/EMailer/NotifyMailBuilder.php:217 -#: src/Util/EMailer/SystemMailBuilder.php:101 -#: src/Util/EMailer/SystemMailBuilder.php:118 +#: src/Util/EMailer/NotifyMailBuilder.php:179 +#: src/Util/EMailer/NotifyMailBuilder.php:203 +#: src/Util/EMailer/SystemMailBuilder.php:87 +#: src/Util/EMailer/SystemMailBuilder.php:104 msgid "thanks" msgstr "" -#: src/Util/Temporal.php:172 +#: src/Util/Temporal.php:158 msgid "YYYY-MM-DD or MM-DD" msgstr "" -#: src/Util/Temporal.php:280 +#: src/Util/Temporal.php:266 #, php-format msgid "Time zone: %s Change in Settings" msgstr "" -#: src/Util/Temporal.php:320 src/Util/Temporal.php:329 +#: src/Util/Temporal.php:306 src/Util/Temporal.php:315 msgid "never" msgstr "" -#: src/Util/Temporal.php:343 +#: src/Util/Temporal.php:329 msgid "less than a second ago" msgstr "" -#: src/Util/Temporal.php:352 +#: src/Util/Temporal.php:338 msgid "year" msgstr "" -#: src/Util/Temporal.php:352 +#: src/Util/Temporal.php:338 msgid "years" msgstr "" -#: src/Util/Temporal.php:353 +#: src/Util/Temporal.php:339 msgid "months" msgstr "" -#: src/Util/Temporal.php:354 +#: src/Util/Temporal.php:340 msgid "weeks" msgstr "" -#: src/Util/Temporal.php:355 +#: src/Util/Temporal.php:341 msgid "days" msgstr "" -#: src/Util/Temporal.php:356 +#: src/Util/Temporal.php:342 msgid "hour" msgstr "" -#: src/Util/Temporal.php:356 +#: src/Util/Temporal.php:342 msgid "hours" msgstr "" -#: src/Util/Temporal.php:357 +#: src/Util/Temporal.php:343 msgid "minute" msgstr "" -#: src/Util/Temporal.php:357 +#: src/Util/Temporal.php:343 msgid "minutes" msgstr "" -#: src/Util/Temporal.php:358 +#: src/Util/Temporal.php:344 msgid "second" msgstr "" -#: src/Util/Temporal.php:358 +#: src/Util/Temporal.php:344 msgid "seconds" msgstr "" -#: src/Util/Temporal.php:367 +#: src/Util/Temporal.php:353 #, php-format msgid "in %1$d %2$s" msgstr "" -#: src/Util/Temporal.php:370 +#: src/Util/Temporal.php:356 #, php-format msgid "%1$d %2$s ago" msgstr "" -#: src/Worker/PushSubscription.php:110 +#: src/Worker/PushSubscription.php:96 msgid "Notification from Friendica" msgstr "" -#: src/Worker/PushSubscription.php:111 +#: src/Worker/PushSubscription.php:97 msgid "Empty Post" msgstr "" -#: view/theme/duepuntozero/config.php:68 +#: view/theme/duepuntozero/config.php:56 msgid "default" msgstr "" -#: view/theme/duepuntozero/config.php:69 +#: view/theme/duepuntozero/config.php:57 msgid "greenzero" msgstr "" -#: view/theme/duepuntozero/config.php:70 +#: view/theme/duepuntozero/config.php:58 msgid "purplezero" msgstr "" -#: view/theme/duepuntozero/config.php:71 +#: view/theme/duepuntozero/config.php:59 msgid "easterbunny" msgstr "" -#: view/theme/duepuntozero/config.php:72 +#: view/theme/duepuntozero/config.php:60 msgid "darkzero" msgstr "" -#: view/theme/duepuntozero/config.php:73 +#: view/theme/duepuntozero/config.php:61 msgid "comix" msgstr "" -#: view/theme/duepuntozero/config.php:74 +#: view/theme/duepuntozero/config.php:62 msgid "slackr" msgstr "" -#: view/theme/duepuntozero/config.php:87 +#: view/theme/duepuntozero/config.php:75 msgid "Variations" msgstr "" -#: view/theme/frio/config.php:146 +#: view/theme/frio/config.php:134 msgid "Note" msgstr "" -#: view/theme/frio/config.php:146 +#: view/theme/frio/config.php:134 msgid "Check image permissions if all users are allowed to see the image" msgstr "" -#: view/theme/frio/config.php:152 +#: view/theme/frio/config.php:140 msgid "Appearance" msgstr "" -#: view/theme/frio/config.php:153 +#: view/theme/frio/config.php:141 msgid "Accent color" msgstr "" -#: view/theme/frio/config.php:153 +#: view/theme/frio/config.php:141 msgid "Blue" msgstr "" -#: view/theme/frio/config.php:153 +#: view/theme/frio/config.php:141 msgid "Red" msgstr "" -#: view/theme/frio/config.php:153 +#: view/theme/frio/config.php:141 msgid "Purple" msgstr "" -#: view/theme/frio/config.php:153 +#: view/theme/frio/config.php:141 msgid "Green" msgstr "" -#: view/theme/frio/config.php:153 +#: view/theme/frio/config.php:141 msgid "Pink" msgstr "" -#: view/theme/frio/config.php:154 +#: view/theme/frio/config.php:142 msgid "Copy or paste schemestring" msgstr "" -#: view/theme/frio/config.php:154 +#: view/theme/frio/config.php:142 msgid "" "You can copy this string to share your theme with others. Pasting here " "applies the schemestring" msgstr "" -#: view/theme/frio/config.php:155 +#: view/theme/frio/config.php:143 msgid "Navigation bar background color" msgstr "" -#: view/theme/frio/config.php:156 +#: view/theme/frio/config.php:144 msgid "Navigation bar icon color " msgstr "" -#: view/theme/frio/config.php:157 +#: view/theme/frio/config.php:145 msgid "Link color" msgstr "" -#: view/theme/frio/config.php:158 +#: view/theme/frio/config.php:146 msgid "Set the background color" msgstr "" -#: view/theme/frio/config.php:159 +#: view/theme/frio/config.php:147 msgid "Content background opacity" msgstr "" -#: view/theme/frio/config.php:160 +#: view/theme/frio/config.php:148 msgid "Set the background image" msgstr "" -#: view/theme/frio/config.php:161 +#: view/theme/frio/config.php:149 msgid "Background image style" msgstr "" -#: view/theme/frio/config.php:164 +#: view/theme/frio/config.php:152 msgid "Always open Compose page" msgstr "" -#: view/theme/frio/config.php:164 +#: view/theme/frio/config.php:152 msgid "" "The New Post button always open the 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:168 +#: view/theme/frio/config.php:156 msgid "Login page background image" msgstr "" -#: view/theme/frio/config.php:172 +#: view/theme/frio/config.php:160 msgid "Login page background color" msgstr "" -#: view/theme/frio/config.php:172 +#: view/theme/frio/config.php:160 msgid "Leave background image and color empty for theme defaults" msgstr "" -#: view/theme/frio/php/Image.php:39 +#: view/theme/frio/php/Image.php:27 msgid "Top Banner" msgstr "" -#: view/theme/frio/php/Image.php:39 +#: view/theme/frio/php/Image.php:27 msgid "" "Resize image to the width of the screen and show background color below on " "long pages." msgstr "" -#: view/theme/frio/php/Image.php:40 +#: view/theme/frio/php/Image.php:28 msgid "Full screen" msgstr "" -#: view/theme/frio/php/Image.php:40 +#: view/theme/frio/php/Image.php:28 msgid "" "Resize image to fill entire screen, clipping either the right or the bottom." msgstr "" -#: view/theme/frio/php/Image.php:41 +#: view/theme/frio/php/Image.php:29 msgid "Single row mosaic" msgstr "" -#: view/theme/frio/php/Image.php:41 +#: view/theme/frio/php/Image.php:29 msgid "" "Resize image to repeat it on a single row, either vertical or horizontal." msgstr "" -#: view/theme/frio/php/Image.php:42 +#: view/theme/frio/php/Image.php:30 msgid "Mosaic" msgstr "" -#: view/theme/frio/php/Image.php:42 +#: view/theme/frio/php/Image.php:30 msgid "Repeat image to fill the screen." msgstr "" -#: view/theme/frio/php/default.php:82 view/theme/frio/php/standard.php:40 +#: view/theme/frio/php/default.php:70 view/theme/frio/php/standard.php:28 msgid "Skip to main content" msgstr "" -#: view/theme/frio/php/default.php:153 view/theme/frio/php/standard.php:75 +#: view/theme/frio/php/default.php:141 view/theme/frio/php/standard.php:63 msgid "Back to top" msgstr "" -#: view/theme/frio/php/scheme.php:105 +#: view/theme/frio/php/scheme.php:93 msgid "Light" msgstr "" -#: view/theme/frio/php/scheme.php:106 +#: view/theme/frio/php/scheme.php:94 msgid "Dark" msgstr "" -#: view/theme/frio/php/scheme.php:107 +#: view/theme/frio/php/scheme.php:95 msgid "Black" msgstr "" -#: view/theme/frio/php/scheme.php:118 +#: view/theme/frio/php/scheme.php:106 msgid "Custom" msgstr "" -#: view/theme/frio/theme.php:214 +#: view/theme/frio/theme.php:202 msgid "Guest" msgstr "" -#: view/theme/frio/theme.php:217 +#: view/theme/frio/theme.php:205 msgid "Visitor" msgstr "" -#: view/theme/quattro/config.php:89 +#: view/theme/quattro/config.php:77 msgid "Alignment" msgstr "" -#: view/theme/quattro/config.php:89 +#: view/theme/quattro/config.php:77 msgid "Left" msgstr "" -#: view/theme/quattro/config.php:89 +#: view/theme/quattro/config.php:77 msgid "Center" msgstr "" -#: view/theme/quattro/config.php:90 +#: view/theme/quattro/config.php:78 msgid "Color scheme" msgstr "" -#: view/theme/quattro/config.php:91 +#: view/theme/quattro/config.php:79 msgid "Posts font size" msgstr "" -#: view/theme/quattro/config.php:92 +#: view/theme/quattro/config.php:80 msgid "Textareas font size" msgstr "" -#: view/theme/vier/config.php:91 +#: view/theme/vier/config.php:79 msgid "Comma separated list of helper groups" msgstr "" -#: view/theme/vier/config.php:131 +#: view/theme/vier/config.php:119 msgid "don't show" msgstr "" -#: view/theme/vier/config.php:131 +#: view/theme/vier/config.php:119 msgid "show" msgstr "" -#: view/theme/vier/config.php:137 +#: view/theme/vier/config.php:125 msgid "Set style" msgstr "" -#: view/theme/vier/config.php:138 +#: view/theme/vier/config.php:126 msgid "Community Pages" msgstr "" -#: view/theme/vier/config.php:139 view/theme/vier/theme.php:148 +#: view/theme/vier/config.php:127 view/theme/vier/theme.php:136 msgid "Community Profiles" msgstr "" -#: view/theme/vier/config.php:140 +#: view/theme/vier/config.php:128 msgid "Help or @NewHere ?" msgstr "" -#: view/theme/vier/config.php:141 view/theme/vier/theme.php:319 +#: view/theme/vier/config.php:129 view/theme/vier/theme.php:307 msgid "Connect Services" msgstr "" -#: view/theme/vier/config.php:142 +#: view/theme/vier/config.php:130 msgid "Find Friends" msgstr "" -#: view/theme/vier/config.php:143 view/theme/vier/theme.php:175 +#: view/theme/vier/config.php:131 view/theme/vier/theme.php:163 msgid "Last users" msgstr "" -#: view/theme/vier/theme.php:234 +#: view/theme/vier/theme.php:222 msgid "Quick Start" msgstr "" diff --git a/view/lang/sv/strings.php b/view/lang/sv/strings.php index dffa8e521d..246d3858df 100644 --- a/view/lang/sv/strings.php +++ b/view/lang/sv/strings.php @@ -531,7 +531,6 @@ $a->strings['Show map'] = 'Visa karta'; $a->strings['Hide map'] = 'Göm karta'; $a->strings['%s\'s birthday'] = '%s\'s födelsedag'; $a->strings['Happy Birthday %s'] = 'Grattis på födelsedagen %s'; -$a->strings['Detected languages in this post:\n%s'] = 'Upptäckte språken i det här inlägget:\n%s'; $a->strings['activity'] = 'aktivitet'; $a->strings['comment'] = 'kommentar'; $a->strings['post'] = 'inlägg'; @@ -553,7 +552,6 @@ $a->strings['g A l F d'] = 'g A l F d'; $a->strings['[No description]'] = '[Ingen beskrivning]'; $a->strings['Event Reminders'] = 'Evenemangspåminnare'; $a->strings['Upcoming events the next 7 days:'] = 'Evenemang som kommer de kommande 7 dagarna:'; -$a->strings['OpenWebAuth: %1$s welcomes %2$s'] = 'OpenWebAuth: %1$s välkomnar %2$s'; $a->strings['Hometown:'] = 'Hemstad:'; $a->strings['Marital Status:'] = 'Civilstånd:'; $a->strings['With:'] = 'Med:'; @@ -799,7 +797,6 @@ $a->strings['Submit Request'] = 'Skicka förfrågan'; $a->strings['You already added this contact.'] = 'Du har redan lagt till den här kontakten.'; $a->strings['The network type couldn\'t be detected. Contact can\'t be added.'] = 'Nätverkstypen kunde inte upptäckas. Kontakten kan inte läggas till.'; $a->strings['Diaspora support isn\'t enabled. Contact can\'t be added.'] = 'Stödet för Diaspora är inte aktiverat. Kontakten kan inte läggas till.'; -$a->strings['OStatus support is disabled. Contact can\'t be added.'] = 'Stödet för OStatus är inaktiverat. Kontakten kan inte läggas till.'; $a->strings['Please answer the following:'] = 'Var vänlig besvara följande:'; $a->strings['Your Identity Address:'] = 'Din adress (ditt ID):'; $a->strings['Profile URL'] = 'URL för profil'; @@ -976,7 +973,6 @@ $a->strings['Home Notifications'] = 'Hem-aviseringar'; $a->strings['{0} requested registration'] = '{0} bad om registrering'; $a->strings['{0} and %d others requested registration'] = '{0} och %d andra bad om registrering'; $a->strings['Do you want to authorize this application to access your posts and contacts, and/or create new posts for you?'] = 'Vill du ge den här applikationen åtkomst till dina inlägg och kontakter, och/eller skapa nya inlägg för dig?'; -$a->strings['Keep this window open until done.'] = 'Håll det här fönstret öppet tills du är klar.'; $a->strings['Subscribing to contacts'] = 'Prenumererar på kontakter'; $a->strings['No contact provided.'] = 'Ingen kontakt angedd'; $a->strings['Couldn\'t fetch information for contact.'] = 'Kunde inte hämta information för kontakten.'; @@ -988,6 +984,7 @@ $a->strings['Done'] = 'Färdig'; $a->strings['success'] = 'lyckades'; $a->strings['failed'] = 'misslyckades'; $a->strings['ignored'] = 'ignorerades'; +$a->strings['Keep this window open until done.'] = 'Håll det här fönstret öppet tills du är klar.'; $a->strings['Edit post'] = 'Ändra inlägg'; $a->strings['web link'] = 'webblänk'; $a->strings['Insert video link'] = 'Klistra in videolänk'; @@ -1092,12 +1089,10 @@ $a->strings['No Addon settings configured'] = 'Inga inställningar för Tillägg $a->strings['Add'] = 'Lägg till'; $a->strings['Failed to connect with email account using the settings provided.'] = 'Kunde inte ansluta till e-postkontot med aktuella inställningar'; $a->strings['Diaspora (Socialhome, Hubzilla)'] = 'Diaspora (Socialhome, Hubzilla)'; -$a->strings['OStatus (GNU Social)'] = 'OStatus (GNU Social)'; $a->strings['Email access is disabled on this site.'] = 'E-poståtkomst är inaktiverat på den här sidan.'; $a->strings['None'] = 'Ingen'; $a->strings['General Social Media Settings'] = 'Generella inställningar för sociala medier'; $a->strings['Enable intelligent shortening'] = 'Aktivera intelligent förkortning'; -$a->strings['Repair OStatus subscriptions'] = 'Reparera OStatus-prenumerationer'; $a->strings['If you wish to communicate with email contacts using this service (optional), please specify how to connect to your mailbox.'] = 'För att kommunicera via e-post med denna tjänst (valfritt), vänligen ange anslutningssätt till ditt e-postkonto.'; $a->strings['IMAP server name:'] = 'Namn på IMAP-server:'; $a->strings['IMAP port:'] = 'Port för IMAP:'; @@ -1185,7 +1180,6 @@ $a->strings['%s commented on %s\'s post'] = '%s kommenterade på %s\'s inlägg'; $a->strings['%s created a new post'] = '%s skapade ett nytt inlägg'; $a->strings['Friend Suggestion'] = 'Vän-förslag'; $a->strings['Friend/Connect Request'] = 'Vän- eller kontaktförfrågan'; -$a->strings['New Follower'] = 'En som vill följa dig'; $a->strings['%1$s sent you a new private message at %2$s.'] = '%1$sskickade ett privat meddelande till dig %2$s.'; $a->strings['a private message'] = 'ett privat meddelande'; $a->strings['%1$s sent you %2$s.'] = '%1$sskickade%2$s.'; @@ -1206,7 +1200,6 @@ $a->strings['%d comment'] = [ 0 => '%d kommentar', 1 => '%d kommentarer', ]; -$a->strings['following'] = 'följer'; -$a->strings['stopped following'] = 'följer inte längre'; $a->strings['Login failed.'] = 'Inloggningen misslyckades.'; $a->strings['Please upload a profile photo.'] = 'Vänligen ladda upp ett profil-foto.'; +$a->strings['OpenWebAuth: %1$s welcomes %2$s'] = 'OpenWebAuth: %1$s välkomnar %2$s'; From cfe32397ab8e7860747e861637c688c2680de208 Mon Sep 17 00:00:00 2001 From: Tobias Diekershoff Date: Wed, 16 Oct 2024 05:40:44 +0000 Subject: [PATCH 06/54] fix reuse for translation files --- REUSE.toml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/REUSE.toml b/REUSE.toml index 7f6336e640..b7e959535b 100644 --- a/REUSE.toml +++ b/REUSE.toml @@ -129,7 +129,10 @@ SPDX-FileCopyrightText = "2010-2024 The Friendica Project" SPDX-License-Identifier = "CC0-1.0" [[annotations]] -path = "view/lang/**/strings.php" +path = [ + "view/lang/**/strings.php", + "view/lang/**/messages.po" + ] SPDX-FileCopyrightText = "2010-2024 The Friendica Project" SPDX-License-Identifier = "AGPL-3.0-or-later" From b10255ca442ee7c20c045b980fdf645189bd1830 Mon Sep 17 00:00:00 2001 From: Michael Date: Thu, 17 Oct 2024 22:04:31 +0000 Subject: [PATCH 07/54] Issue 14471: Fix wegfinger request --- src/Module/Xrd.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Module/Xrd.php b/src/Module/Xrd.php index 7c156f5174..3e55f0571b 100644 --- a/src/Module/Xrd.php +++ b/src/Module/Xrd.php @@ -33,14 +33,14 @@ class Xrd extends BaseModule } $uri = urldecode(trim($_GET['uri'])); - $mode = self::getAcceptedContentType($_SERVER['HTTP_ACCEPT'] ?? '', Response::TYPE_JSON); + $mode = self::getAcceptedContentType($_SERVER['HTTP_ACCEPT'] ?? '', Response::TYPE_XML); } else { if (empty($_GET['resource'])) { throw new BadRequestException(); } $uri = urldecode(trim($_GET['resource'])); - $mode = self::getAcceptedContentType($_SERVER['HTTP_ACCEPT'] ?? '', Response::TYPE_XML); + $mode = self::getAcceptedContentType($_SERVER['HTTP_ACCEPT'] ?? '', Response::TYPE_JSON); } if (Network::isValidHttpUrl($uri)) { From 301717802d10cfc988118878bb211c45fa26812c Mon Sep 17 00:00:00 2001 From: Michael Date: Fri, 18 Oct 2024 19:00:13 +0000 Subject: [PATCH 08/54] Issue 14174 and 14421: Option to hide emojis and pictures without description --- src/App/Page.php | 7 + src/Content/Text/BBCode.php | 6 +- src/Model/Item.php | 3 + src/Module/Settings/Display.php | 46 ++- view/lang/C/messages.po | 384 +++++++++--------- view/templates/settings/display.tpl | 3 +- .../theme/frio/templates/settings/display.tpl | 2 + 7 files changed, 245 insertions(+), 206 deletions(-) diff --git a/src/App/Page.php b/src/App/Page.php index e9434a6a22..eb7772f34f 100644 --- a/src/App/Page.php +++ b/src/App/Page.php @@ -273,6 +273,13 @@ class Page implements ArrayAccess '$max_imagesize' => round(Images::getMaxUploadBytes() / 1000000, 0), ]) . $this->page['htmlhead']; + + if ($pConfig->get($localUID, 'accessibility', 'hide_empty_descriptions')) { + $this->page['htmlhead'] .= "\n"; + } + if ($pConfig->get($localUID, 'accessibility', 'hide_custom_emojis')) { + $this->page['htmlhead'] .= "\n"; + } } /** diff --git a/src/Content/Text/BBCode.php b/src/Content/Text/BBCode.php index b54beef039..367ecf1811 100644 --- a/src/Content/Text/BBCode.php +++ b/src/Content/Text/BBCode.php @@ -686,7 +686,7 @@ class BBCode // to the last element $newbody = str_replace( '[$#saved_image' . $cnt . '#$]', - '' . DI::l10n()->t('Image/photo') . '', + '' . DI::l10n()->t('Image/photo') . '', $newbody ); $cnt++; @@ -1859,8 +1859,8 @@ class BBCode $text ); - $text = preg_replace("/\[img\](.*?)\[\/img\]/ism", '' . DI::l10n()->t('Image/photo') . '', $text); - $text = preg_replace("/\[zmg\](.*?)\[\/zmg\]/ism", '' . DI::l10n()->t('Image/photo') . '', $text); + $text = preg_replace("/\[img\](.*?)\[\/img\]/ism", '' . DI::l10n()->t('Image/photo') . '', $text); + $text = preg_replace("/\[zmg\](.*?)\[\/zmg\]/ism", '' . DI::l10n()->t('Image/photo') . '', $text); $text = self::convertImages($text, $simple_html, $uriid); diff --git a/src/Model/Item.php b/src/Model/Item.php index 06f824e6fe..6ce65dcf61 100644 --- a/src/Model/Item.php +++ b/src/Model/Item.php @@ -3733,6 +3733,9 @@ class Item continue; } + if (empty($PostMedia->description) && DI::pConfig()->get(DI::userSession()->getLocalUserId(), 'accessibility', 'hide_empty_descriptions')) { + continue; + } $images[] = $PostMedia->withUrl(new Uri($src_url))->withPreview(new Uri($preview_url), $preview_size); } } diff --git a/src/Module/Settings/Display.php b/src/Module/Settings/Display.php index fd62230442..8b3160fce5 100644 --- a/src/Module/Settings/Display.php +++ b/src/Module/Settings/Display.php @@ -80,23 +80,25 @@ class Display extends BaseSettings $user = User::getById($uid); - $theme = trim($request['theme']); - $mobile_theme = trim($request['mobile_theme'] ?? ''); - $enable_smile = (bool)$request['enable_smile']; - $enable = (array)$request['enable']; - $bookmark = (array)$request['bookmark']; - $channel_languages = (array)$request['channel_languages']; - $first_day_of_week = (bool)$request['first_day_of_week']; - $calendar_default_view = trim($request['calendar_default_view']); - $infinite_scroll = (bool)$request['infinite_scroll']; - $enable_smart_threading = (bool)$request['enable_smart_threading']; - $enable_dislike = (bool)$request['enable_dislike']; - $display_resharer = (bool)$request['display_resharer']; - $stay_local = (bool)$request['stay_local']; - $show_page_drop = (bool)$request['show_page_drop']; - $display_eventlist = (bool)$request['display_eventlist']; - $preview_mode = (int)$request['preview_mode']; - $browser_update = (int)$request['browser_update']; + $theme = trim($request['theme']); + $mobile_theme = trim($request['mobile_theme'] ?? ''); + $enable_smile = (bool)$request['enable_smile']; + $enable = (array)$request['enable']; + $bookmark = (array)$request['bookmark']; + $channel_languages = (array)$request['channel_languages']; + $first_day_of_week = (bool)$request['first_day_of_week']; + $calendar_default_view = trim($request['calendar_default_view']); + $infinite_scroll = (bool)$request['infinite_scroll']; + $enable_smart_threading = (bool)$request['enable_smart_threading']; + $enable_dislike = (bool)$request['enable_dislike']; + $display_resharer = (bool)$request['display_resharer']; + $stay_local = (bool)$request['stay_local']; + $hide_empty_descriptions = (bool)$request['hide_empty_descriptions']; + $hide_custom_emojis = (bool)$request['hide_custom_emojis']; + $show_page_drop = (bool)$request['show_page_drop']; + $display_eventlist = (bool)$request['display_eventlist']; + $preview_mode = (int)$request['preview_mode']; + $browser_update = (int)$request['browser_update']; if ($browser_update != -1) { $browser_update = $browser_update * 1000; if ($browser_update < 10000) { @@ -147,10 +149,13 @@ class Display extends BaseSettings $this->pConfig->set($uid, 'system', 'show_page_drop' , $show_page_drop); $this->pConfig->set($uid, 'system', 'display_eventlist' , $display_eventlist); $this->pConfig->set($uid, 'system', 'preview_mode' , $preview_mode); - + $this->pConfig->set($uid, 'system', 'network_timelines' , $network_timelines); $this->pConfig->set($uid, 'system', 'enabled_timelines' , $enabled_timelines); $this->pConfig->set($uid, 'channel', 'languages' , $channel_languages); + + $this->pConfig->set($uid, 'accessibility', 'hide_empty_descriptions', $hide_empty_descriptions); + $this->pConfig->set($uid, 'accessibility', 'hide_custom_emojis' , $hide_custom_emojis); $this->pConfig->set($uid, 'calendar', 'first_day_of_week' , $first_day_of_week); $this->pConfig->set($uid, 'calendar', 'default_view' , $calendar_default_view); @@ -240,6 +245,9 @@ class Display extends BaseSettings $stay_local = $this->pConfig->get($uid, 'system', 'stay_local', false); $show_page_drop = $this->pConfig->get($uid, 'system', 'show_page_drop', true); $display_eventlist = $this->pConfig->get($uid, 'system', 'display_eventlist', true); + + $hide_empty_descriptions = $this->pConfig->get($uid, 'accessibility', 'hide_empty_descriptions', false); + $hide_custom_emojis = $this->pConfig->get($uid, 'accessibility', 'hide_custom_emojis', false); $preview_mode = $this->pConfig->get($uid, 'system', 'preview_mode', BBCode::PREVIEW_LARGE); $preview_modes = [ @@ -320,6 +328,8 @@ class Display extends BaseSettings '$show_page_drop' => ['show_page_drop' , $this->t('Show the post deletion checkbox'), $show_page_drop, $this->t("Display the checkbox for the post deletion on the network page.")], '$display_eventlist' => ['display_eventlist' , $this->t('DIsplay the event list'), $display_eventlist, $this->t("Display the birthday reminder and event list on the network page.")], '$preview_mode' => ['preview_mode' , $this->t('Link preview mode'), $preview_mode, $this->t('Appearance of the link preview that is added to each post with a link.'), $preview_modes, false], + '$hide_empty_descriptions' => ['hide_empty_descriptions' , $this->t('Hide pictures with empty alternative text'), $hide_empty_descriptions, $this->t("Don't display pictures that are missing the alternative text.")], + '$hide_custom_emojis' => ['hide_custom_emojis' , $this->t('Hide custom emojis'), $hide_custom_emojis, $this->t("Don't display custom emojis.")], '$timeline_label' => $this->t('Label'), '$timeline_descriptiom' => $this->t('Description'), diff --git a/view/lang/C/messages.po b/view/lang/C/messages.po index 813289edb5..8ecb08c432 100644 --- a/view/lang/C/messages.po +++ b/view/lang/C/messages.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: 2024.09-rc\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-10-07 20:46+0000\n" +"POT-Creation-Date: 2024-10-18 19:06+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -51,8 +51,8 @@ msgstr "" #: src/Module/Calendar/Event/API.php:74 src/Module/Calendar/Event/Form.php:70 #: src/Module/Calendar/Export.php:68 src/Module/Calendar/Show.php:68 #: src/Module/Circle.php:27 src/Module/Circle.php:70 -#: src/Module/Contact/Advanced.php:46 src/Module/Contact/Follow.php:73 -#: src/Module/Contact/Follow.php:141 src/Module/Contact/MatchInterests.php:73 +#: src/Module/Contact/Advanced.php:46 src/Module/Contact/Follow.php:77 +#: src/Module/Contact/Follow.php:145 src/Module/Contact/MatchInterests.php:73 #: src/Module/Contact/Suggestions.php:40 src/Module/Contact/Unfollow.php:52 #: src/Module/Contact/Unfollow.php:66 src/Module/Contact/Unfollow.php:98 #: src/Module/FollowConfirm.php:24 src/Module/FriendSuggest.php:43 @@ -68,7 +68,7 @@ msgstr "" #: src/Module/Settings/Account.php:36 src/Module/Settings/Account.php:377 #: src/Module/Settings/Channels.php:52 src/Module/Settings/Channels.php:127 #: src/Module/Settings/Delegation.php:76 src/Module/Settings/Display.php:76 -#: src/Module/Settings/Display.php:183 +#: src/Module/Settings/Display.php:188 #: src/Module/Settings/Profile/Photo/Crop.php:151 #: src/Module/Settings/Profile/Photo/Index.php:96 #: src/Module/Settings/RemoveMe.php:105 src/Module/Settings/UserExport.php:64 @@ -291,7 +291,7 @@ msgstr "" #: mod/photos.php:778 mod/photos.php:1055 mod/photos.php:1096 #: mod/photos.php:1152 mod/photos.php:1232 #: src/Module/Calendar/Event/Form.php:236 src/Module/Contact/Advanced.php:118 -#: src/Module/Contact/Profile.php:370 +#: src/Module/Contact/Profile.php:371 #: src/Module/Debug/ActivityPubConversion.php:132 #: src/Module/Debug/Babel.php:307 src/Module/Debug/Localtime.php:50 #: src/Module/Debug/Probe.php:40 src/Module/Debug/WebFinger.php:37 @@ -481,7 +481,7 @@ msgid "Delete Album" msgstr "" #: mod/photos.php:757 mod/photos.php:857 src/Content/Conversation.php:403 -#: src/Module/Contact/Follow.php:154 src/Module/Contact/Revoke.php:92 +#: src/Module/Contact/Follow.php:158 src/Module/Contact/Revoke.php:92 #: src/Module/Contact/Unfollow.php:112 #: src/Module/Media/Attachment/Browser.php:63 #: src/Module/Media/Photo/Browser.php:74 src/Module/Post/Edit.php:153 @@ -745,7 +745,7 @@ msgstr "" msgid "You can't upload any more files." msgstr "" -#: src/App/Page.php:339 +#: src/App/Page.php:346 msgid "toggle mobile" msgstr "" @@ -1741,7 +1741,7 @@ msgstr "" #: src/Content/Feature.php:120 src/Content/Widget.php:571 #: src/Module/Admin/Site.php:464 src/Module/BaseSettings.php:111 -#: src/Module/Settings/Channels.php:211 src/Module/Settings/Display.php:301 +#: src/Module/Settings/Channels.php:211 src/Module/Settings/Display.php:309 msgid "Channels" msgstr "" @@ -1881,7 +1881,7 @@ msgid "Send PM" msgstr "" #: src/Content/Item.php:421 src/Module/Contact.php:449 -#: src/Module/Contact/Profile.php:518 +#: src/Module/Contact/Profile.php:519 #: src/Module/Moderation/Blocklist/Contact.php:102 #: src/Module/Moderation/Users/Active.php:123 #: src/Module/Moderation/Users/Index.php:138 @@ -1889,7 +1889,7 @@ msgid "Block" msgstr "" #: src/Content/Item.php:422 src/Module/Contact.php:450 -#: src/Module/Contact/Profile.php:526 +#: src/Module/Contact/Profile.php:527 #: src/Module/Notifications/Introductions.php:126 #: src/Module/Notifications/Introductions.php:198 #: src/Module/Notifications/Notification.php:75 @@ -1897,7 +1897,7 @@ msgid "Ignore" msgstr "" #: src/Content/Item.php:423 src/Module/Contact.php:451 -#: src/Module/Contact/Profile.php:534 +#: src/Module/Contact/Profile.php:535 msgid "Collapse" msgstr "" @@ -1917,7 +1917,7 @@ msgstr "" #: src/Content/Item.php:436 src/Content/Widget.php:66 #: src/Model/Contact.php:1243 src/Model/Contact.php:1255 -#: src/Module/Contact/Follow.php:148 view/theme/vier/theme.php:183 +#: src/Module/Contact/Follow.php:152 view/theme/vier/theme.php:183 msgid "Connect/Follow" msgstr "" @@ -1969,7 +1969,7 @@ msgstr "" #: src/Content/Nav.php:216 src/Module/BaseProfile.php:35 #: src/Module/BaseSettings.php:84 src/Module/Contact.php:485 -#: src/Module/Contact/Profile.php:425 src/Module/Profile/Profile.php:256 +#: src/Module/Contact/Profile.php:426 src/Module/Profile/Profile.php:256 #: src/Module/Welcome.php:43 view/theme/frio/theme.php:221 msgid "Profile" msgstr "" @@ -2000,7 +2000,7 @@ msgstr "" #: src/Content/Nav.php:219 src/Content/Nav.php:279 #: src/Module/BaseProfile.php:71 src/Module/BaseProfile.php:74 #: src/Module/BaseProfile.php:82 src/Module/BaseProfile.php:85 -#: src/Module/Settings/Display.php:302 view/theme/frio/theme.php:227 +#: src/Module/Settings/Display.php:310 view/theme/frio/theme.php:227 #: view/theme/frio/theme.php:231 msgid "Calendar" msgstr "" @@ -2245,8 +2245,8 @@ msgstr "" msgid "%2$s %3$s" msgstr "" -#: src/Content/Text/BBCode.php:929 src/Model/Item.php:4028 -#: src/Model/Item.php:4034 src/Model/Item.php:4035 +#: src/Content/Text/BBCode.php:929 src/Model/Item.php:4031 +#: src/Model/Item.php:4037 src/Model/Item.php:4038 msgid "Link to source" msgstr "" @@ -2279,7 +2279,7 @@ msgid "The end" msgstr "" #: src/Content/Text/HTML.php:847 src/Content/Widget/VCard.php:113 -#: src/Model/Profile.php:456 src/Module/Contact/Profile.php:478 +#: src/Model/Profile.php:456 src/Module/Contact/Profile.php:479 msgid "Follow" msgstr "" @@ -2462,18 +2462,18 @@ msgid "Mention" msgstr "" #: src/Content/Widget/VCard.php:106 src/Model/Profile.php:360 -#: src/Module/Contact/Profile.php:414 src/Module/Profile/Profile.php:187 +#: src/Module/Contact/Profile.php:415 src/Module/Profile/Profile.php:187 msgid "XMPP:" msgstr "" #: src/Content/Widget/VCard.php:107 src/Model/Profile.php:361 -#: src/Module/Contact/Profile.php:416 src/Module/Profile/Profile.php:191 +#: src/Module/Contact/Profile.php:417 src/Module/Profile/Profile.php:191 msgid "Matrix:" msgstr "" #: src/Content/Widget/VCard.php:108 src/Model/Event.php:68 #: src/Model/Event.php:95 src/Model/Event.php:457 src/Model/Event.php:946 -#: src/Model/Profile.php:355 src/Module/Contact/Profile.php:412 +#: src/Model/Profile.php:355 src/Module/Contact/Profile.php:413 #: src/Module/Directory.php:134 src/Module/Notifications/Introductions.php:179 #: src/Module/Profile/Profile.php:209 msgid "Location:" @@ -2486,7 +2486,7 @@ msgstr "" #: src/Content/Widget/VCard.php:115 src/Model/Contact.php:1244 #: src/Model/Contact.php:1256 src/Model/Profile.php:458 -#: src/Module/Contact/Profile.php:470 +#: src/Module/Contact/Profile.php:471 msgid "Unfollow" msgstr "" @@ -2844,37 +2844,37 @@ msgid "%s (%s)" msgstr "" #: src/Core/L10n.php:485 src/Model/Event.php:416 -#: src/Module/Settings/Display.php:270 +#: src/Module/Settings/Display.php:278 msgid "Monday" msgstr "" #: src/Core/L10n.php:485 src/Model/Event.php:417 -#: src/Module/Settings/Display.php:271 +#: src/Module/Settings/Display.php:279 msgid "Tuesday" msgstr "" #: src/Core/L10n.php:485 src/Model/Event.php:418 -#: src/Module/Settings/Display.php:272 +#: src/Module/Settings/Display.php:280 msgid "Wednesday" msgstr "" #: src/Core/L10n.php:485 src/Model/Event.php:419 -#: src/Module/Settings/Display.php:273 +#: src/Module/Settings/Display.php:281 msgid "Thursday" msgstr "" #: src/Core/L10n.php:485 src/Model/Event.php:420 -#: src/Module/Settings/Display.php:274 +#: src/Module/Settings/Display.php:282 msgid "Friday" msgstr "" #: src/Core/L10n.php:485 src/Model/Event.php:421 -#: src/Module/Settings/Display.php:275 +#: src/Module/Settings/Display.php:283 msgid "Saturday" msgstr "" #: src/Core/L10n.php:485 src/Model/Event.php:415 -#: src/Module/Settings/Display.php:269 +#: src/Module/Settings/Display.php:277 msgid "Sunday" msgstr "" @@ -3297,17 +3297,17 @@ msgid "today" msgstr "" #: src/Model/Event.php:449 src/Module/Calendar/Show.php:115 -#: src/Module/Settings/Display.php:280 src/Util/Temporal.php:339 +#: src/Module/Settings/Display.php:288 src/Util/Temporal.php:339 msgid "month" msgstr "" #: src/Model/Event.php:450 src/Module/Calendar/Show.php:116 -#: src/Module/Settings/Display.php:281 src/Util/Temporal.php:340 +#: src/Module/Settings/Display.php:289 src/Util/Temporal.php:340 msgid "week" msgstr "" #: src/Model/Event.php:451 src/Module/Calendar/Show.php:117 -#: src/Module/Settings/Display.php:282 src/Util/Temporal.php:341 +#: src/Module/Settings/Display.php:290 src/Util/Temporal.php:341 msgid "day" msgstr "" @@ -3418,44 +3418,44 @@ msgstr "" msgid "Sensitive content" msgstr "" -#: src/Model/Item.php:3928 +#: src/Model/Item.php:3931 msgid "bytes" msgstr "" -#: src/Model/Item.php:3959 +#: src/Model/Item.php:3962 #, 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:3961 +#: src/Model/Item.php:3964 #, php-format msgid "%2$s (%1$d vote)" msgid_plural "%2$s (%1$d votes)" msgstr[0] "" msgstr[1] "" -#: src/Model/Item.php:3966 +#: src/Model/Item.php:3969 #, php-format msgid "%d voter. Poll end: %s" msgid_plural "%d voters. Poll end: %s" msgstr[0] "" msgstr[1] "" -#: src/Model/Item.php:3968 +#: src/Model/Item.php:3971 #, php-format msgid "%d voter." msgid_plural "%d voters." msgstr[0] "" msgstr[1] "" -#: src/Model/Item.php:3970 +#: src/Model/Item.php:3973 #, php-format msgid "Poll end: %s" msgstr "" -#: src/Model/Item.php:4011 src/Model/Item.php:4012 +#: src/Model/Item.php:4014 src/Model/Item.php:4015 msgid "View on separate page" msgstr "" @@ -3481,7 +3481,7 @@ msgstr "" msgid "Homepage:" msgstr "" -#: src/Model/Profile.php:359 src/Module/Contact/Profile.php:418 +#: src/Model/Profile.php:359 src/Module/Contact/Profile.php:419 #: src/Module/Notifications/Introductions.php:181 msgid "About:" msgstr "" @@ -3872,7 +3872,7 @@ msgid "Disable" msgstr "" #: src/Module/Admin/Addons/Details.php:77 -#: src/Module/Admin/Themes/Details.php:41 src/Module/Settings/Display.php:326 +#: src/Module/Admin/Themes/Details.php:41 src/Module/Settings/Display.php:336 msgid "Enable" msgstr "" @@ -3922,7 +3922,7 @@ msgstr "" #: src/Module/Settings/Account.php:549 src/Module/Settings/Addons.php:64 #: src/Module/Settings/Connectors.php:149 #: src/Module/Settings/Connectors.php:235 -#: src/Module/Settings/Delegation.php:179 src/Module/Settings/Display.php:295 +#: src/Module/Settings/Delegation.php:179 src/Module/Settings/Display.php:303 #: src/Module/Settings/Features.php:61 msgid "Save Settings" msgstr "" @@ -4277,11 +4277,11 @@ msgstr "" msgid "%s is no valid input for maximum image size" msgstr "" -#: src/Module/Admin/Site.php:362 src/Module/Settings/Display.php:201 +#: src/Module/Admin/Site.php:362 src/Module/Settings/Display.php:206 msgid "No special theme for mobile devices" msgstr "" -#: src/Module/Admin/Site.php:379 src/Module/Settings/Display.php:211 +#: src/Module/Admin/Site.php:379 src/Module/Settings/Display.php:216 #, php-format msgid "%s - (Experimental)" msgstr "" @@ -5175,7 +5175,7 @@ msgstr "" 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:584 src/Module/Contact/Profile.php:314 +#: src/Module/Admin/Site.php:584 src/Module/Contact/Profile.php:315 #: src/Module/Settings/TwoFactor/Index.php:132 msgid "Disabled" msgstr "" @@ -5902,7 +5902,7 @@ msgstr "" msgid "Create New Event" msgstr "" -#: src/Module/Calendar/Show.php:118 src/Module/Settings/Display.php:283 +#: src/Module/Calendar/Show.php:118 src/Module/Settings/Display.php:291 msgid "list" msgstr "" @@ -5928,8 +5928,8 @@ msgstr "" #: src/Module/Contact/Conversations.php:77 #: src/Module/Contact/Conversations.php:82 src/Module/Contact/Media.php:47 #: src/Module/Contact/Posts.php:64 src/Module/Contact/Posts.php:69 -#: src/Module/Contact/Posts.php:74 src/Module/Contact/Profile.php:145 -#: src/Module/Contact/Profile.php:150 src/Module/Contact/Profile.php:169 +#: src/Module/Contact/Posts.php:74 src/Module/Contact/Profile.php:146 +#: src/Module/Contact/Profile.php:151 src/Module/Contact/Profile.php:170 #: src/Module/Contact/Redir.php:77 src/Module/Contact/Redir.php:131 #: src/Module/FriendSuggest.php:57 src/Module/FriendSuggest.php:95 msgid "Contact not found." @@ -6086,18 +6086,18 @@ msgstr "" msgid "Update" msgstr "" -#: src/Module/Contact.php:449 src/Module/Contact/Profile.php:518 +#: src/Module/Contact.php:449 src/Module/Contact/Profile.php:519 #: src/Module/Moderation/Blocklist/Contact.php:103 #: src/Module/Moderation/Users/Blocked.php:124 #: src/Module/Moderation/Users/Index.php:140 msgid "Unblock" msgstr "" -#: src/Module/Contact.php:450 src/Module/Contact/Profile.php:526 +#: src/Module/Contact.php:450 src/Module/Contact/Profile.php:527 msgid "Unignore" msgstr "" -#: src/Module/Contact.php:451 src/Module/Contact/Profile.php:534 +#: src/Module/Contact.php:451 src/Module/Contact/Profile.php:535 msgid "Uncollapse" msgstr "" @@ -6149,7 +6149,7 @@ msgstr "" msgid "Pending incoming contact request" msgstr "" -#: src/Module/Contact.php:608 src/Module/Contact/Profile.php:377 +#: src/Module/Contact.php:608 src/Module/Contact/Profile.php:378 #, php-format msgid "Visit %s's profile [%s]" msgstr "" @@ -6255,32 +6255,32 @@ msgstr[1] "" msgid "Access denied." msgstr "" -#: src/Module/Contact/Follow.php:91 src/Module/Contact/Unfollow.php:111 +#: src/Module/Contact/Follow.php:95 src/Module/Contact/Unfollow.php:111 #: src/Module/Profile/RemoteFollow.php:119 msgid "Submit Request" msgstr "" -#: src/Module/Contact/Follow.php:101 +#: src/Module/Contact/Follow.php:105 msgid "You already added this contact." msgstr "" -#: src/Module/Contact/Follow.php:116 +#: src/Module/Contact/Follow.php:120 msgid "The network type couldn't be detected. Contact can't be added." msgstr "" -#: src/Module/Contact/Follow.php:124 +#: src/Module/Contact/Follow.php:128 msgid "Diaspora support isn't enabled. Contact can't be added." msgstr "" -#: src/Module/Contact/Follow.php:149 src/Module/Profile/RemoteFollow.php:118 +#: src/Module/Contact/Follow.php:153 src/Module/Profile/RemoteFollow.php:118 msgid "Please answer the following:" msgstr "" -#: src/Module/Contact/Follow.php:150 src/Module/Contact/Unfollow.php:109 +#: src/Module/Contact/Follow.php:154 src/Module/Contact/Unfollow.php:109 msgid "Your Identity Address:" msgstr "" -#: src/Module/Contact/Follow.php:151 src/Module/Contact/Profile.php:408 +#: src/Module/Contact/Follow.php:155 src/Module/Contact/Profile.php:409 #: src/Module/Contact/Unfollow.php:115 #: src/Module/Moderation/Blocklist/Contact.php:117 #: src/Module/Moderation/Reports.php:109 @@ -6289,26 +6289,26 @@ msgstr "" msgid "Profile URL" msgstr "" -#: src/Module/Contact/Follow.php:152 src/Module/Contact/Profile.php:420 +#: src/Module/Contact/Follow.php:156 src/Module/Contact/Profile.php:421 #: src/Module/Notifications/Introductions.php:183 #: src/Module/Profile/Profile.php:222 msgid "Tags:" msgstr "" -#: src/Module/Contact/Follow.php:163 +#: src/Module/Contact/Follow.php:167 #, php-format msgid "%s knows you" msgstr "" -#: src/Module/Contact/Follow.php:164 +#: src/Module/Contact/Follow.php:168 msgid "Add a personal note:" msgstr "" -#: src/Module/Contact/Follow.php:173 src/Module/Contact/Unfollow.php:124 +#: src/Module/Contact/Follow.php:177 src/Module/Contact/Unfollow.php:124 msgid "Posts and Replies" msgstr "" -#: src/Module/Contact/Follow.php:202 +#: src/Module/Contact/Follow.php:206 msgid "The contact could not be added." msgstr "" @@ -6332,297 +6332,297 @@ msgstr "" msgid "Failed to update contact record." msgstr "" -#: src/Module/Contact/Profile.php:195 +#: src/Module/Contact/Profile.php:196 msgid "Contact has been unblocked" msgstr "" -#: src/Module/Contact/Profile.php:199 +#: src/Module/Contact/Profile.php:200 msgid "Contact has been blocked" msgstr "" -#: src/Module/Contact/Profile.php:211 +#: src/Module/Contact/Profile.php:212 msgid "Contact has been unignored" msgstr "" -#: src/Module/Contact/Profile.php:215 +#: src/Module/Contact/Profile.php:216 msgid "Contact has been ignored" msgstr "" -#: src/Module/Contact/Profile.php:227 +#: src/Module/Contact/Profile.php:228 msgid "Contact has been uncollapsed" msgstr "" -#: src/Module/Contact/Profile.php:231 +#: src/Module/Contact/Profile.php:232 msgid "Contact has been collapsed" msgstr "" -#: src/Module/Contact/Profile.php:259 -#, php-format -msgid "You are mutual friends with %s" -msgstr "" - #: src/Module/Contact/Profile.php:260 #, php-format -msgid "You are sharing with %s" +msgid "You are mutual friends with %s" msgstr "" #: src/Module/Contact/Profile.php:261 #, php-format +msgid "You are sharing with %s" +msgstr "" + +#: src/Module/Contact/Profile.php:262 +#, php-format msgid "%s is sharing with you" msgstr "" -#: src/Module/Contact/Profile.php:277 +#: src/Module/Contact/Profile.php:278 msgid "Private communications are not available for this contact." msgstr "" -#: src/Module/Contact/Profile.php:287 +#: src/Module/Contact/Profile.php:288 msgid "This contact is on a server you ignored." msgstr "" -#: src/Module/Contact/Profile.php:290 +#: src/Module/Contact/Profile.php:291 msgid "Never" msgstr "" -#: src/Module/Contact/Profile.php:293 +#: src/Module/Contact/Profile.php:294 msgid "(Update was not successful)" msgstr "" -#: src/Module/Contact/Profile.php:293 +#: src/Module/Contact/Profile.php:294 msgid "(Update was successful)" msgstr "" -#: src/Module/Contact/Profile.php:295 src/Module/Contact/Profile.php:489 +#: src/Module/Contact/Profile.php:296 src/Module/Contact/Profile.php:490 msgid "Suggest friends" msgstr "" -#: src/Module/Contact/Profile.php:299 +#: src/Module/Contact/Profile.php:300 #, php-format msgid "Network type: %s" msgstr "" -#: src/Module/Contact/Profile.php:304 +#: src/Module/Contact/Profile.php:305 msgid "Communications lost with this contact!" msgstr "" -#: src/Module/Contact/Profile.php:310 +#: src/Module/Contact/Profile.php:311 msgid "Fetch further information for feeds" msgstr "" -#: src/Module/Contact/Profile.php:312 +#: src/Module/Contact/Profile.php:313 msgid "Fetch information like preview pictures, title and teaser from the feed item. You can activate this if the feed doesn't contain much text. Keywords are taken from the meta header in the feed item and are posted as hash tags." msgstr "" -#: src/Module/Contact/Profile.php:315 +#: src/Module/Contact/Profile.php:316 msgid "Fetch information" msgstr "" -#: src/Module/Contact/Profile.php:316 +#: src/Module/Contact/Profile.php:317 msgid "Fetch keywords" msgstr "" -#: src/Module/Contact/Profile.php:317 +#: src/Module/Contact/Profile.php:318 msgid "Fetch information and keywords" msgstr "" -#: src/Module/Contact/Profile.php:327 src/Module/Contact/Profile.php:332 -#: src/Module/Contact/Profile.php:337 src/Module/Contact/Profile.php:343 +#: src/Module/Contact/Profile.php:328 src/Module/Contact/Profile.php:333 +#: src/Module/Contact/Profile.php:338 src/Module/Contact/Profile.php:344 msgid "No mirroring" msgstr "" -#: src/Module/Contact/Profile.php:328 src/Module/Contact/Profile.php:338 -#: src/Module/Contact/Profile.php:344 +#: src/Module/Contact/Profile.php:329 src/Module/Contact/Profile.php:339 +#: src/Module/Contact/Profile.php:345 msgid "Mirror as my own posting" msgstr "" -#: src/Module/Contact/Profile.php:333 src/Module/Contact/Profile.php:339 +#: src/Module/Contact/Profile.php:334 src/Module/Contact/Profile.php:340 msgid "Native reshare" msgstr "" -#: src/Module/Contact/Profile.php:359 +#: src/Module/Contact/Profile.php:360 msgid "Contact Information / Notes" msgstr "" -#: src/Module/Contact/Profile.php:360 +#: src/Module/Contact/Profile.php:361 msgid "Contact Settings" msgstr "" -#: src/Module/Contact/Profile.php:368 +#: src/Module/Contact/Profile.php:369 msgid "Contact" msgstr "" -#: src/Module/Contact/Profile.php:372 +#: src/Module/Contact/Profile.php:373 msgid "Their personal note" msgstr "" -#: src/Module/Contact/Profile.php:374 +#: src/Module/Contact/Profile.php:375 msgid "Edit contact notes" msgstr "" -#: src/Module/Contact/Profile.php:378 +#: src/Module/Contact/Profile.php:379 msgid "Block/Unblock contact" msgstr "" -#: src/Module/Contact/Profile.php:379 +#: src/Module/Contact/Profile.php:380 #: src/Module/Moderation/Report/Create.php:279 msgid "Ignore contact" msgstr "" -#: src/Module/Contact/Profile.php:380 +#: src/Module/Contact/Profile.php:381 msgid "View conversations" msgstr "" -#: src/Module/Contact/Profile.php:385 +#: src/Module/Contact/Profile.php:386 msgid "Last update:" msgstr "" -#: src/Module/Contact/Profile.php:387 +#: src/Module/Contact/Profile.php:388 msgid "Update public posts" msgstr "" -#: src/Module/Contact/Profile.php:389 src/Module/Contact/Profile.php:499 +#: src/Module/Contact/Profile.php:390 src/Module/Contact/Profile.php:500 msgid "Update now" msgstr "" -#: src/Module/Contact/Profile.php:391 +#: src/Module/Contact/Profile.php:392 msgid "Awaiting connection acknowledge" msgstr "" -#: src/Module/Contact/Profile.php:392 +#: src/Module/Contact/Profile.php:393 msgid "Currently blocked" msgstr "" -#: src/Module/Contact/Profile.php:393 +#: src/Module/Contact/Profile.php:394 msgid "Currently ignored" msgstr "" -#: src/Module/Contact/Profile.php:394 +#: src/Module/Contact/Profile.php:395 msgid "Currently collapsed" msgstr "" -#: src/Module/Contact/Profile.php:395 +#: src/Module/Contact/Profile.php:396 msgid "Currently archived" msgstr "" -#: src/Module/Contact/Profile.php:398 +#: src/Module/Contact/Profile.php:399 msgid "Manage remote servers" msgstr "" -#: src/Module/Contact/Profile.php:400 +#: src/Module/Contact/Profile.php:401 #: src/Module/Notifications/Introductions.php:184 msgid "Hide this contact from others" msgstr "" -#: src/Module/Contact/Profile.php:400 +#: src/Module/Contact/Profile.php:401 msgid "Replies/likes to your public posts may still be visible" msgstr "" -#: src/Module/Contact/Profile.php:401 +#: src/Module/Contact/Profile.php:402 msgid "Notification for new posts" msgstr "" -#: src/Module/Contact/Profile.php:401 +#: src/Module/Contact/Profile.php:402 msgid "Send a notification of every new post of this contact" msgstr "" -#: src/Module/Contact/Profile.php:403 +#: src/Module/Contact/Profile.php:404 msgid "Keyword Deny List" msgstr "" -#: src/Module/Contact/Profile.php:403 +#: src/Module/Contact/Profile.php:404 msgid "Comma separated list of keywords that should not be converted to hashtags, when \"Fetch information and keywords\" is selected" msgstr "" -#: src/Module/Contact/Profile.php:421 +#: src/Module/Contact/Profile.php:422 #: src/Module/Settings/TwoFactor/Index.php:146 msgid "Actions" msgstr "" -#: src/Module/Contact/Profile.php:423 +#: src/Module/Contact/Profile.php:424 #: src/Module/Settings/TwoFactor/Index.php:126 view/theme/frio/theme.php:220 msgid "Status" msgstr "" -#: src/Module/Contact/Profile.php:429 +#: src/Module/Contact/Profile.php:430 msgid "Mirror postings from this contact" msgstr "" -#: src/Module/Contact/Profile.php:431 +#: src/Module/Contact/Profile.php:432 msgid "Mark this contact as remote_self, this will cause friendica to repost new entries from this contact." msgstr "" -#: src/Module/Contact/Profile.php:434 +#: src/Module/Contact/Profile.php:435 msgid "Channel Settings" msgstr "" -#: src/Module/Contact/Profile.php:435 +#: src/Module/Contact/Profile.php:436 msgid "Frequency of this contact in relevant channels" msgstr "" -#: src/Module/Contact/Profile.php:436 +#: src/Module/Contact/Profile.php:437 msgid "Depending on the type of the channel not all posts from this contact are displayed. By default, posts need to have a minimum amount of interactions (comments, likes) to show in your channels. On the other hand there can be contacts who flood the channel, so you might want to see only some of their posts. Or you don't want to see their content at all, but you don't want to block or hide the contact completely." msgstr "" -#: src/Module/Contact/Profile.php:437 +#: src/Module/Contact/Profile.php:438 msgid "Default frequency" msgstr "" -#: src/Module/Contact/Profile.php:437 +#: src/Module/Contact/Profile.php:438 msgid "Posts by this contact are displayed in the \"for you\" channel if you interact often with this contact or if a post reached some level of interaction." msgstr "" -#: src/Module/Contact/Profile.php:438 +#: src/Module/Contact/Profile.php:439 msgid "Display all posts of this contact" msgstr "" -#: src/Module/Contact/Profile.php:438 +#: src/Module/Contact/Profile.php:439 msgid "All posts from this contact will appear on the \"for you\" channel" msgstr "" -#: src/Module/Contact/Profile.php:439 +#: src/Module/Contact/Profile.php:440 msgid "Display only few posts" msgstr "" -#: src/Module/Contact/Profile.php:439 +#: src/Module/Contact/Profile.php:440 msgid "When a contact creates a lot of posts in a short period, this setting reduces the number of displayed posts in every channel." msgstr "" -#: src/Module/Contact/Profile.php:440 +#: src/Module/Contact/Profile.php:441 msgid "Never display posts" msgstr "" -#: src/Module/Contact/Profile.php:440 +#: src/Module/Contact/Profile.php:441 msgid "Posts from this contact will never be displayed in any channel" msgstr "" -#: src/Module/Contact/Profile.php:441 +#: src/Module/Contact/Profile.php:442 msgid "Channel Only" msgstr "" -#: src/Module/Contact/Profile.php:441 +#: src/Module/Contact/Profile.php:442 msgid "If enabled, posts from this contact will only appear in channels and network streams in circles, but not in the general network stream." msgstr "" -#: src/Module/Contact/Profile.php:509 +#: src/Module/Contact/Profile.php:510 msgid "Refetch contact data" msgstr "" -#: src/Module/Contact/Profile.php:520 +#: src/Module/Contact/Profile.php:521 msgid "Toggle Blocked status" msgstr "" -#: src/Module/Contact/Profile.php:528 +#: src/Module/Contact/Profile.php:529 msgid "Toggle Ignored status" msgstr "" -#: src/Module/Contact/Profile.php:536 +#: src/Module/Contact/Profile.php:537 msgid "Toggle Collapsed status" msgstr "" -#: src/Module/Contact/Profile.php:543 src/Module/Contact/Revoke.php:89 +#: src/Module/Contact/Profile.php:544 src/Module/Contact/Revoke.php:89 msgid "Revoke Follow" msgstr "" -#: src/Module/Contact/Profile.php:545 +#: src/Module/Contact/Profile.php:546 msgid "Revoke the follow from this contact" msgstr "" @@ -9553,12 +9553,12 @@ msgid "When selected, the channel results are reshared. This only works for publ msgstr "" #: src/Module/Settings/Channels.php:176 src/Module/Settings/Channels.php:197 -#: src/Module/Settings/Display.php:324 +#: src/Module/Settings/Display.php:334 msgid "Label" msgstr "" #: src/Module/Settings/Channels.php:177 src/Module/Settings/Channels.php:198 -#: src/Module/Settings/Display.php:325 +#: src/Module/Settings/Display.php:335 #: src/Module/Settings/TwoFactor/AppSpecific.php:123 msgid "Description" msgstr "" @@ -9917,178 +9917,194 @@ msgstr "" msgid "No entries." msgstr "" -#: src/Module/Settings/Display.php:169 +#: src/Module/Settings/Display.php:174 msgid "The theme you chose isn't available." msgstr "" -#: src/Module/Settings/Display.php:209 +#: src/Module/Settings/Display.php:214 #, php-format msgid "%s - (Unsupported)" msgstr "" -#: src/Module/Settings/Display.php:246 +#: src/Module/Settings/Display.php:254 msgid "No preview" msgstr "" -#: src/Module/Settings/Display.php:247 +#: src/Module/Settings/Display.php:255 msgid "No image" msgstr "" -#: src/Module/Settings/Display.php:248 +#: src/Module/Settings/Display.php:256 msgid "Small Image" msgstr "" -#: src/Module/Settings/Display.php:249 +#: src/Module/Settings/Display.php:257 msgid "Large Image" msgstr "" -#: src/Module/Settings/Display.php:294 +#: src/Module/Settings/Display.php:302 msgid "Display Settings" msgstr "" -#: src/Module/Settings/Display.php:296 +#: src/Module/Settings/Display.php:304 msgid "General Theme Settings" msgstr "" -#: src/Module/Settings/Display.php:297 +#: src/Module/Settings/Display.php:305 msgid "Custom Theme Settings" msgstr "" -#: src/Module/Settings/Display.php:298 +#: src/Module/Settings/Display.php:306 msgid "Content Settings" msgstr "" -#: src/Module/Settings/Display.php:299 view/theme/duepuntozero/config.php:74 +#: src/Module/Settings/Display.php:307 view/theme/duepuntozero/config.php:74 #: view/theme/frio/config.php:139 view/theme/quattro/config.php:76 #: view/theme/vier/config.php:124 msgid "Theme settings" msgstr "" -#: src/Module/Settings/Display.php:300 +#: src/Module/Settings/Display.php:308 msgid "Timelines" msgstr "" -#: src/Module/Settings/Display.php:307 +#: src/Module/Settings/Display.php:315 msgid "Display Theme:" msgstr "" -#: src/Module/Settings/Display.php:308 +#: src/Module/Settings/Display.php:316 msgid "Mobile Theme:" msgstr "" -#: src/Module/Settings/Display.php:311 +#: src/Module/Settings/Display.php:319 msgid "Number of items to display per page:" msgstr "" -#: src/Module/Settings/Display.php:311 src/Module/Settings/Display.php:312 +#: src/Module/Settings/Display.php:319 src/Module/Settings/Display.php:320 msgid "Maximum of 100 items" msgstr "" -#: src/Module/Settings/Display.php:312 +#: src/Module/Settings/Display.php:320 msgid "Number of items to display per page when viewed from mobile device:" msgstr "" -#: src/Module/Settings/Display.php:313 +#: src/Module/Settings/Display.php:321 msgid "Update browser every xx seconds" msgstr "" -#: src/Module/Settings/Display.php:313 +#: src/Module/Settings/Display.php:321 msgid "Minimum of 10 seconds. Enter -1 to disable it." msgstr "" -#: src/Module/Settings/Display.php:314 +#: src/Module/Settings/Display.php:322 msgid "Display emoticons" msgstr "" -#: src/Module/Settings/Display.php:314 +#: src/Module/Settings/Display.php:322 msgid "When enabled, emoticons are replaced with matching symbols." msgstr "" -#: src/Module/Settings/Display.php:315 +#: src/Module/Settings/Display.php:323 msgid "Infinite scroll" msgstr "" -#: src/Module/Settings/Display.php:315 +#: src/Module/Settings/Display.php:323 msgid "Automatic fetch new items when reaching the page end." msgstr "" -#: src/Module/Settings/Display.php:316 +#: src/Module/Settings/Display.php:324 msgid "Enable Smart Threading" msgstr "" -#: src/Module/Settings/Display.php:316 +#: src/Module/Settings/Display.php:324 msgid "Enable the automatic suppression of extraneous thread indentation." msgstr "" -#: src/Module/Settings/Display.php:317 +#: src/Module/Settings/Display.php:325 msgid "Display the Dislike feature" msgstr "" -#: src/Module/Settings/Display.php:317 +#: src/Module/Settings/Display.php:325 msgid "Display the Dislike button and dislike reactions on posts and comments." msgstr "" -#: src/Module/Settings/Display.php:318 +#: src/Module/Settings/Display.php:326 msgid "Display the resharer" msgstr "" -#: src/Module/Settings/Display.php:318 +#: src/Module/Settings/Display.php:326 msgid "Display the first resharer as icon and text on a reshared item." msgstr "" -#: src/Module/Settings/Display.php:319 +#: src/Module/Settings/Display.php:327 msgid "Stay local" msgstr "" -#: src/Module/Settings/Display.php:319 +#: src/Module/Settings/Display.php:327 msgid "Don't go to a remote system when following a contact link." msgstr "" -#: src/Module/Settings/Display.php:320 +#: src/Module/Settings/Display.php:328 msgid "Show the post deletion checkbox" msgstr "" -#: src/Module/Settings/Display.php:320 +#: src/Module/Settings/Display.php:328 msgid "Display the checkbox for the post deletion on the network page." msgstr "" -#: src/Module/Settings/Display.php:321 +#: src/Module/Settings/Display.php:329 msgid "DIsplay the event list" msgstr "" -#: src/Module/Settings/Display.php:321 +#: src/Module/Settings/Display.php:329 msgid "Display the birthday reminder and event list on the network page." msgstr "" -#: src/Module/Settings/Display.php:322 +#: src/Module/Settings/Display.php:330 msgid "Link preview mode" msgstr "" -#: src/Module/Settings/Display.php:322 +#: src/Module/Settings/Display.php:330 msgid "Appearance of the link preview that is added to each post with a link." msgstr "" -#: src/Module/Settings/Display.php:327 +#: src/Module/Settings/Display.php:331 +msgid "Hide pictures with empty alternative text" +msgstr "" + +#: src/Module/Settings/Display.php:331 +msgid "Don't display pictures that are missing the alternative text." +msgstr "" + +#: src/Module/Settings/Display.php:332 +msgid "Hide custom emojis" +msgstr "" + +#: src/Module/Settings/Display.php:332 +msgid "Don't display custom emojis." +msgstr "" + +#: src/Module/Settings/Display.php:337 msgid "Bookmark" msgstr "" -#: src/Module/Settings/Display.php:329 +#: src/Module/Settings/Display.php:339 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:331 +#: src/Module/Settings/Display.php:341 msgid "Channel languages:" msgstr "" -#: src/Module/Settings/Display.php:331 +#: src/Module/Settings/Display.php:341 msgid "Select all languages that you want to see in your channels." msgstr "" -#: src/Module/Settings/Display.php:333 +#: src/Module/Settings/Display.php:343 msgid "Beginning of week:" msgstr "" -#: src/Module/Settings/Display.php:334 +#: src/Module/Settings/Display.php:344 msgid "Default calendar view:" msgstr "" diff --git a/view/templates/settings/display.tpl b/view/templates/settings/display.tpl index d92a701c4e..e7f9247612 100644 --- a/view/templates/settings/display.tpl +++ b/view/templates/settings/display.tpl @@ -28,7 +28,8 @@ {{include file="field_checkbox.tpl" field=$show_page_drop}} {{include file="field_checkbox.tpl" field=$display_eventlist}} {{include file="field_select.tpl" field=$preview_mode}} - + {{include file="field_checkbox.tpl" field=$hide_empty_descriptions}} + {{include file="field_checkbox.tpl" field=$hide_custom_emojis}}

{{$timeline_title}}

{{$timeline_explanation}} diff --git a/view/theme/frio/templates/settings/display.tpl b/view/theme/frio/templates/settings/display.tpl index e91feff34a..7fbf05480f 100644 --- a/view/theme/frio/templates/settings/display.tpl +++ b/view/theme/frio/templates/settings/display.tpl @@ -75,6 +75,8 @@ {{include file="field_checkbox.tpl" field=$show_page_drop}} {{include file="field_checkbox.tpl" field=$display_eventlist}} {{include file="field_select.tpl" field=$preview_mode}} + {{include file="field_checkbox.tpl" field=$hide_empty_descriptions}} + {{include file="field_checkbox.tpl" field=$hide_custom_emojis}}

What other networks does it interact with?

-

Every network that speaks either the DFRN2, ActivityPub, OStatus or diaspora* protocol. Currently this list includes: diaspora*, friendica, funkwhale, ganggo, GNU social, Hubzilla, Mastodon, NextClout social, pixelfed, Pleroma, postActivi, Osada, Socialhome and many more.

+

Every network that speaks either the DFRN2, ActivityPub or diaspora* protocol. Currently this list includes: diaspora*, friendica, funkwhale, ganggo, GNU social, Hubzilla, Mastodon, NextClout social, pixelfed, Pleroma, Socialhome and many more.

Learn more at fediverse.party

From 122f61a603bfc4781131078745b5aad35f860555 Mon Sep 17 00:00:00 2001 From: Michael Date: Fri, 25 Oct 2024 12:50:25 +0000 Subject: [PATCH 20/54] Issue 14478: Improved logging --- src/Module/OAuth/Authorize.php | 5 +++-- src/Security/OAuth.php | 1 + 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/src/Module/OAuth/Authorize.php b/src/Module/OAuth/Authorize.php index 266f00402e..cd7b274ba6 100644 --- a/src/Module/OAuth/Authorize.php +++ b/src/Module/OAuth/Authorize.php @@ -36,17 +36,18 @@ class Authorize extends BaseApi ], $request); if ($request['response_type'] != 'code') { - Logger::warning('Unsupported or missing response type', ['request' => $_REQUEST]); + Logger::warning('Unsupported or missing response type', ['request' => $request]); $this->logAndJsonError(422, $this->errorFactory->UnprocessableEntity($this->t('Unsupported or missing response type'))); } if (empty($request['client_id']) || empty($request['redirect_uri'])) { - Logger::warning('Incomplete request data', ['request' => $_REQUEST]); + Logger::warning('Incomplete request data', ['request' => $request]); $this->logAndJsonError(422, $this->errorFactory->UnprocessableEntity($this->t('Incomplete request data'))); } $application = OAuth::getApplication($request['client_id'], $request['client_secret'], $request['redirect_uri']); if (empty($application)) { + Logger::warning('An application could not be fetched.', ['request' => $request]); $this->logAndJsonError(422, $this->errorFactory->UnprocessableEntity()); } diff --git a/src/Security/OAuth.php b/src/Security/OAuth.php index a24bb0e8d0..2add1ce584 100644 --- a/src/Security/OAuth.php +++ b/src/Security/OAuth.php @@ -131,6 +131,7 @@ class OAuth // The redirect_uri could contain several URI that are separated by spaces. if (($application['redirect_uri'] != $redirect_uri) && !in_array($redirect_uri, explode(' ', $application['redirect_uri']))) { + Logger::warning('Redirection uri does not match', ['redirect_uri' => $redirect_uri, 'application-redirect_uri' => $application['redirect_uri']]); return []; } From 63b1adecea3a17a4b32b6553c4766574dafa173c Mon Sep 17 00:00:00 2001 From: Michael Date: Fri, 25 Oct 2024 19:52:47 +0000 Subject: [PATCH 21/54] Issue 14478: Fix OAuth registration with Buffer --- src/Security/OAuth.php | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/Security/OAuth.php b/src/Security/OAuth.php index 2add1ce584..9a50a438d7 100644 --- a/src/Security/OAuth.php +++ b/src/Security/OAuth.php @@ -129,8 +129,9 @@ class OAuth return []; } - // The redirect_uri could contain several URI that are separated by spaces. - if (($application['redirect_uri'] != $redirect_uri) && !in_array($redirect_uri, explode(' ', $application['redirect_uri']))) { + // The redirect_uri could contain several URI that are separated by spaces or new lines. + $uris = explode(' ', str_replace(["\n", "\r", "\t"], ' ', $application['redirect_uri'])); + if (!in_array($redirect_uri, $uris)) { Logger::warning('Redirection uri does not match', ['redirect_uri' => $redirect_uri, 'application-redirect_uri' => $application['redirect_uri']]); return []; } From 9261f2955382f8d0b99a847b698ca1dc853a3b01 Mon Sep 17 00:00:00 2001 From: Michael Date: Sat, 26 Oct 2024 15:34:17 +0000 Subject: [PATCH 22/54] Issue 14495: Rich HTML content with embedded pictures --- src/Factory/Api/Mastodon/Status.php | 4 ++-- src/Object/Api/Mastodon/Status/FriendicaExtension.php | 7 ++++++- 2 files changed, 8 insertions(+), 3 deletions(-) diff --git a/src/Factory/Api/Mastodon/Status.php b/src/Factory/Api/Mastodon/Status.php index 005ab68085..cd02890f2d 100644 --- a/src/Factory/Api/Mastodon/Status.php +++ b/src/Factory/Api/Mastodon/Status.php @@ -328,7 +328,7 @@ class Status extends BaseFactory $delivery_data = $uid != $item['uid'] ? null : new FriendicaDeliveryData($item['delivery_queue_count'], $item['delivery_queue_done'], $item['delivery_queue_failed']); $visibility_data = $uid != $item['uid'] ? null : new FriendicaVisibility($this->aclFormatter->expand($item['allow_cid']), $this->aclFormatter->expand($item['deny_cid']), $this->aclFormatter->expand($item['allow_gid']), $this->aclFormatter->expand($item['deny_gid'])); - $friendica = new FriendicaExtension($item['title'] ?? '', $item['changed'], $item['commented'], $item['received'], $counts->dislikes, $origin_dislike, $network, $platform, $version, $sitename, $delivery_data, $visibility_data); + $friendica = new FriendicaExtension($item['title'] ?? '', $item['changed'], $item['commented'], $item['received'], $counts->dislikes, $origin_dislike, $network, $platform, $version, $sitename, $delivery_data, $visibility_data, BBCode::convertForUriId($item['uri-id'], $item['body'], BBCode::EXTERNAL)); return new \Friendica\Object\Api\Mastodon\Status($item, $account, $counts, $userAttributes, $sensitive, $application, $mentions, $tags, $card, $attachments, $in_reply, $reshare, $friendica, $quote, $poll, $emojis); } @@ -399,7 +399,7 @@ class Status extends BaseFactory $attachments = []; $in_reply = []; $reshare = []; - $friendica = new FriendicaExtension('', null, null, null, 0, false, null, null, null, null, null, null); + $friendica = new FriendicaExtension('', null, null, null, 0, false, null, null, null, null, null, null, BBCode::convertForUriId($item['uri-id'], $item['body'], BBCode::EXTERNAL)); return new \Friendica\Object\Api\Mastodon\Status($item, $account, $counts, $userAttributes, $sensitive, $application, $mentions, $tags, $card, $attachments, $in_reply, $reshare, $friendica); } diff --git a/src/Object/Api/Mastodon/Status/FriendicaExtension.php b/src/Object/Api/Mastodon/Status/FriendicaExtension.php index cca002c7a1..4564be254b 100644 --- a/src/Object/Api/Mastodon/Status/FriendicaExtension.php +++ b/src/Object/Api/Mastodon/Status/FriendicaExtension.php @@ -57,6 +57,9 @@ class FriendicaExtension extends BaseDataTransferObject */ protected $visibility; + /** @var string|null */ + protected $content; + /** * Creates a FriendicaExtension object * @@ -86,7 +89,8 @@ class FriendicaExtension extends BaseDataTransferObject ?string $version, ?string $sitename, ?FriendicaDeliveryData $delivery_data, - ?FriendicaVisibility $visibility + ?FriendicaVisibility $visibility, + ?string $content ) { $this->title = $title; $this->changed_at = $changed_at ? DateTimeFormat::utc($changed_at, DateTimeFormat::JSON) : null; @@ -100,6 +104,7 @@ class FriendicaExtension extends BaseDataTransferObject $this->version = $version; $this->sitename = $sitename; $this->visibility = $visibility; + $this->content = $content; } /** From 676f54b7b2132048023b59b26ecf4acd03e686b0 Mon Sep 17 00:00:00 2001 From: Michael Date: Sat, 26 Oct 2024 15:36:41 +0000 Subject: [PATCH 23/54] Don't show "(AP)" at platform names anymore --- src/Content/ContactSelector.php | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/Content/ContactSelector.php b/src/Content/ContactSelector.php index 0d5101b1f9..52cc980fc3 100644 --- a/src/Content/ContactSelector.php +++ b/src/Content/ContactSelector.php @@ -155,15 +155,15 @@ class ContactSelector if (!empty($platform)) { $networkname = $platform; - - if ($network == Protocol::ACTIVITYPUB) { - $networkname .= ' (AP)'; - } } } - if (!empty($protocol) && ($protocol != $network)) { + if (!empty($protocol) && ($protocol != $network) && $network != Protocol::DFRN) { $networkname = DI::l10n()->t('%s (via %s)', $networkname, self::networkToName($protocol)); + } elseif (in_array($network, ['', $protocol]) && ($network == Protocol::DFRN)) { + $networkname .= ' (DFRN)'; + } elseif (in_array($network, ['', $protocol]) && ($network == Protocol::DIASPORA) && ($platform != 'diaspora')) { + $networkname .= ' (Diaspora)'; } return $networkname; From 306a07ca3cbefb8758bee03be0c0c7a1769e2760 Mon Sep 17 00:00:00 2001 From: Michael Date: Sat, 26 Oct 2024 15:43:23 +0000 Subject: [PATCH 24/54] Improved cached context file --- static/security-data-integrity-v1.jsonld | 12 ++++-------- 1 file changed, 4 insertions(+), 8 deletions(-) diff --git a/static/security-data-integrity-v1.jsonld b/static/security-data-integrity-v1.jsonld index 28116e761f..267c90635f 100644 --- a/static/security-data-integrity-v1.jsonld +++ b/static/security-data-integrity-v1.jsonld @@ -35,23 +35,19 @@ }, "assertionMethod": { "@id": "https://w3id.org/security#assertionMethod", - "@type": "@id", - "@container": "@set" + "@type": "@id" }, "authentication": { "@id": "https://w3id.org/security#authenticationMethod", - "@type": "@id", - "@container": "@set" + "@type": "@id" }, "capabilityInvocation": { "@id": "https://w3id.org/security#capabilityInvocationMethod", - "@type": "@id", - "@container": "@set" + "@type": "@id" }, "capabilityDelegation": { "@id": "https://w3id.org/security#capabilityDelegationMethod", - "@type": "@id", - "@container": "@set" + "@type": "@id" }, "keyAgreement": { "@id": "https://w3id.org/security#keyAgreementMethod", From ea5a19972e74e66822a8dabb7fea6575d0f76ae9 Mon Sep 17 00:00:00 2001 From: Michael Date: Sat, 26 Oct 2024 15:48:12 +0000 Subject: [PATCH 25/54] The code for archiving and unarchiving contacts is improved --- src/Model/Contact.php | 31 +++++++++++++------------------ 1 file changed, 13 insertions(+), 18 deletions(-) diff --git a/src/Model/Contact.php b/src/Model/Contact.php index e88f8dc6aa..c510e670e4 100644 --- a/src/Model/Contact.php +++ b/src/Model/Contact.php @@ -1082,17 +1082,17 @@ class Contact */ public static function markForArchival(array $contact) { - if (!isset($contact['url']) && !empty($contact['id'])) { - $fields = ['id', 'url', 'archive', 'self', 'term-date']; + if ((!isset($contact['url']) || !isset($contact['uri-id'])) && !empty($contact['id'])) { + $fields = ['id', 'uri-id', 'url', 'archive', 'self', 'term-date']; $contact = DBA::selectFirst('contact', $fields, ['id' => $contact['id']]); if (!DBA::isResult($contact)) { return; } - } elseif (!isset($contact['url'])) { + } elseif (!isset($contact['url']) || !isset($contact['uri-id'])) { Logger::info('Empty contact', ['contact' => $contact]); } - Logger::info('Contact is marked for archival', ['id' => $contact['id'], 'term-date' => $contact['term-date']]); + Logger::info('Contact is marked for archival', ['id' => $contact['id'], 'archive' => $contact['archive'], 'term-date' => $contact['term-date'], 'url' => $contact['url']]); // Contact already archived or "self" contact? => nothing to do if ($contact['archive'] || $contact['self']) { @@ -1100,8 +1100,7 @@ class Contact } if ($contact['term-date'] <= DBA::NULL_DATETIME) { - self::update(['term-date' => DateTimeFormat::utcNow()], ['id' => $contact['id']]); - self::update(['term-date' => DateTimeFormat::utcNow()], ['`nurl` = ? AND `term-date` <= ? AND NOT `self`', Strings::normaliseLink($contact['url']), DBA::NULL_DATETIME]); + self::update(['term-date' => DateTimeFormat::utcNow()], ['uri-id' => $contact['uri-id'], 'self' => false]); } else { /* @todo * We really should send a notification to the owner after 2-3 weeks @@ -1118,8 +1117,7 @@ class Contact * delete, though if the owner tries to unarchive them we'll start * the whole process over again. */ - self::update(['archive' => true], ['id' => $contact['id']]); - self::update(['archive' => true], ['nurl' => Strings::normaliseLink($contact['url']), 'self' => false]); + self::update(['archive' => true], ['uri-id' => $contact['uri-id'], 'self' => false]); } } } @@ -1144,28 +1142,25 @@ class Contact } } - $condition = ['`id` = ? AND (`term-date` > ? OR `archive`)', $contact['id'], DBA::NULL_DATETIME]; - $exists = DBA::exists('contact', $condition); - // We don't need to update, we never marked this contact for archival - if (!$exists) { + $condition = ['`id` = ? AND (`term-date` > ? OR `archive`)', $contact['id'], DBA::NULL_DATETIME]; + if (!DBA::exists('contact', $condition)) { return; } - Logger::info('Contact is marked as vital again', ['id' => $contact['id'], 'term-date' => $contact['term-date']]); - - if (!isset($contact['url']) && !empty($contact['id'])) { - $fields = ['id', 'url', 'batch']; + if ((!isset($contact['url']) || !isset($contact['uri-id'])) && !empty($contact['id'])) { + $fields = ['id', 'uri-id', 'url', 'batch', 'term-date']; $contact = DBA::selectFirst('contact', $fields, ['id' => $contact['id']]); if (!DBA::isResult($contact)) { return; } } + Logger::info('Contact is marked as vital again', ['id' => $contact['id'], 'term-date' => $contact['term-date'], 'url' => $contact['url']]); + // It's a miracle. Our dead contact has inexplicably come back to life. $fields = ['failed' => false, 'term-date' => DBA::NULL_DATETIME, 'archive' => false]; - self::update($fields, ['id' => $contact['id']]); - self::update($fields, ['nurl' => Strings::normaliseLink($contact['url']), 'self' => false]); + self::update($fields, ['uri-id' => $contact['uri-id'], 'self' => false]); } /** From e9064aff32589b2ea806fb62e15648b99de5cda0 Mon Sep 17 00:00:00 2001 From: Michael Date: Sun, 27 Oct 2024 15:48:06 +0000 Subject: [PATCH 26/54] Issue 14491: CSS class for pictures with or without alt descriptions --- src/Content/Text/BBCode.php | 13 +++++++------ view/templates/content/image/single.tpl | 4 ++-- .../content/image/single_with_height_allocation.tpl | 4 ++-- 3 files changed, 11 insertions(+), 10 deletions(-) diff --git a/src/Content/Text/BBCode.php b/src/Content/Text/BBCode.php index 367ecf1811..2eb4e62f16 100644 --- a/src/Content/Text/BBCode.php +++ b/src/Content/Text/BBCode.php @@ -686,7 +686,7 @@ class BBCode // to the last element $newbody = str_replace( '[$#saved_image' . $cnt . '#$]', - '' . DI::l10n()->t('Image/photo') . '', + '', $newbody ); $cnt++; @@ -849,6 +849,7 @@ class BBCode $img_str .= ' ' . $key . '="' . htmlspecialchars($value, ENT_COMPAT) . '"'; } } + $img_str .= ' ' . empty($attributes['alt']) ? 'class="empty-description"' : 'class="has-alt-description"'; return $img_str . '>'; }, $text @@ -1826,8 +1827,8 @@ class BBCode $text ); - $text = preg_replace("/\[img\=([0-9]*)x([0-9]*)\](.*?)\[\/img\]/ism", '', $text); - $text = preg_replace("/\[zmg\=([0-9]*)x([0-9]*)\](.*?)\[\/zmg\]/ism", '', $text); + $text = preg_replace("/\[img\=([0-9]*)x([0-9]*)\](.*?)\[\/img\]/ism", '', $text); + $text = preg_replace("/\[zmg\=([0-9]*)x([0-9]*)\](.*?)\[\/zmg\]/ism", '', $text); $text = preg_replace_callback( "/\[[iz]mg\=(.*?)\](.*?)\[\/[iz]mg\]/ism", @@ -1836,7 +1837,7 @@ class BBCode $alt = htmlspecialchars($matches[2], ENT_COMPAT); // Fix for Markdown problems with Diaspora, see issue #12701 if (($simple_html != self::DIASPORA) || strpos($matches[2], '"') === false) { - return '' . $alt . ''; + return '' . $alt . ''; } else { return '' . $alt . ''; } @@ -1859,8 +1860,8 @@ class BBCode $text ); - $text = preg_replace("/\[img\](.*?)\[\/img\]/ism", '' . DI::l10n()->t('Image/photo') . '', $text); - $text = preg_replace("/\[zmg\](.*?)\[\/zmg\]/ism", '' . DI::l10n()->t('Image/photo') . '', $text); + $text = preg_replace("/\[img\](.*?)\[\/img\]/ism", '', $text); + $text = preg_replace("/\[zmg\](.*?)\[\/zmg\]/ism", '', $text); $text = self::convertImages($text, $simple_html, $uriid); diff --git a/view/templates/content/image/single.tpl b/view/templates/content/image/single.tpl index 3b7c81e323..a4c5f0c92b 100644 --- a/view/templates/content/image/single.tpl +++ b/view/templates/content/image/single.tpl @@ -5,10 +5,10 @@ * SPDX-License-Identifier: AGPL-3.0-or-later *}} {{if $image->preview}} -{{$image->description}} +{{$image->description}}description}}class="has-alt-description"{{else}}class="empty-description"{{/if}} loading="lazy"> {{else}}
- {{$image->description}} + {{$image->description}}description}}class="has-alt-description"{{else}}class="empty-description"{{/if}} loading="lazy"> {{if $image->description}}
{{$image->description}}
{{/if}} diff --git a/view/templates/content/image/single_with_height_allocation.tpl b/view/templates/content/image/single_with_height_allocation.tpl index adc41d7189..c16672fe11 100644 --- a/view/templates/content/image/single_with_height_allocation.tpl +++ b/view/templates/content/image/single_with_height_allocation.tpl @@ -14,10 +14,10 @@
{{if $image->preview}} - {{$image->description}} + {{$image->description}}description}}class="has-alt-description"{{else}}class="empty-description"{{/if}} loading="lazy"> {{else}} - {{$image->description}} + {{$image->description}}description}}class="has-alt-description"{{else}}class="empty-description"{{/if}} loading="lazy"> {{if $image->description}}
{{$image->description}}
{{/if}} From e614c2a68a0d9a8cbf67649c8350a8c25ae1273b Mon Sep 17 00:00:00 2001 From: Philipp Date: Sun, 27 Oct 2024 20:13:41 +0100 Subject: [PATCH 27/54] Add Prometheus exporter link --- doc/tools.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/doc/tools.md b/doc/tools.md index ef916553ad..2a273e3650 100644 --- a/doc/tools.md +++ b/doc/tools.md @@ -84,3 +84,9 @@ The following will compress */var/log/friendica* (assuming this is the location To monitor the health status of your Friendica installation, you can use for example a tool like Zabbix. Please define 'stats_key' in your local.config.php in the 'system' section to be able to access the statistics page at /stats?key=your-defined-stats_key The statistics contain data about the worker performance, the last cron call, number of reports, inbound and outbound packets, posts and comments. + +### Prometheus + +To use [prometheus](https://prometheus.io) for gathering metrics, use the [Friendica exporter](https://git.friendi.ca/friendica/friendica-exporter). + +You can find the installation instructions here: https://git.friendi.ca/friendica/friendica-exporter#installation From 89bc4af2c62bdfcc93a8c90ca5633e7b1e033a0f Mon Sep 17 00:00:00 2001 From: Michael Date: Sun, 27 Oct 2024 19:14:51 +0000 Subject: [PATCH 28/54] Issue 13270: Fix display of private comments on the profile page --- src/Module/Profile/Conversations.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Module/Profile/Conversations.php b/src/Module/Profile/Conversations.php index 20ff5040e5..d250b58765 100644 --- a/src/Module/Profile/Conversations.php +++ b/src/Module/Profile/Conversations.php @@ -225,7 +225,7 @@ class Conversations extends BaseProfile $items = array_merge($items, $pinned); } - $o .= $this->conversation->render($items, Conversation::MODE_PROFILE, false, false, 'pinned_received', $profile['uid']); + $o .= $this->conversation->render($items, Conversation::MODE_PROFILE, false, false, 'pinned_received', $this->session->getLocalUserId()); $o .= $pager->renderMinimal(count($items)); From 815d886677b5811379a25bf7f1261fee86559901 Mon Sep 17 00:00:00 2001 From: Michael Date: Sun, 27 Oct 2024 19:18:58 +0000 Subject: [PATCH 29/54] messages.po updated --- view/lang/C/messages.po | 207 ++++++++++++++++++++-------------------- 1 file changed, 101 insertions(+), 106 deletions(-) diff --git a/view/lang/C/messages.po b/view/lang/C/messages.po index 174c12cdaf..134b1adb9f 100644 --- a/view/lang/C/messages.po +++ b/view/lang/C/messages.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: 2024.09-rc\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-10-20 19:53+0000\n" +"POT-Creation-Date: 2024-10-27 19:18+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -755,7 +755,7 @@ msgid "Method not allowed for this module. Allowed method(s): %s" msgstr "" #: src/App/Router.php:297 src/Module/HTTPException/PageNotFound.php:35 -#: src/Module/Stats.php:49 +#: src/Module/Stats.php:56 msgid "Page not found." msgstr "" @@ -772,19 +772,19 @@ msgid "All contacts" msgstr "" #: src/BaseModule.php:425 src/Content/Conversation/Factory/Channel.php:32 -#: src/Content/Widget.php:218 src/Core/ACL.php:181 src/Module/Contact.php:395 +#: src/Content/Widget.php:254 src/Core/ACL.php:181 src/Module/Contact.php:395 #: src/Module/Privacy/PermissionTooltip.php:150 #: src/Module/Privacy/PermissionTooltip.php:172 #: src/Module/Settings/Channels.php:146 msgid "Followers" msgstr "" -#: src/BaseModule.php:430 src/Content/Widget.php:219 src/Module/Contact.php:398 +#: src/BaseModule.php:430 src/Content/Widget.php:255 src/Module/Contact.php:398 #: src/Module/Settings/Channels.php:145 msgid "Following" msgstr "" -#: src/BaseModule.php:435 src/Content/Widget.php:220 src/Module/Contact.php:401 +#: src/BaseModule.php:435 src/Content/Widget.php:256 src/Module/Contact.php:401 msgid "Mutual friends" msgstr "" @@ -1125,7 +1125,7 @@ msgstr "" msgid "Bluesky" msgstr "" -#: src/Content/ContactSelector.php:166 +#: src/Content/ContactSelector.php:162 #, php-format msgid "%s (via %s)" msgstr "" @@ -1694,7 +1694,7 @@ msgstr "" msgid "Network Widgets" msgstr "" -#: src/Content/Feature.php:115 src/Content/Widget.php:194 +#: src/Content/Feature.php:115 src/Content/Widget.php:230 #: src/Model/Circle.php:587 src/Module/Contact.php:381 #: src/Module/Welcome.php:62 msgid "Circles" @@ -1706,7 +1706,7 @@ msgstr "" #: src/Content/Feature.php:116 src/Content/GroupManager.php:133 #: src/Content/Nav.php:264 src/Content/Text/HTML.php:868 -#: src/Content/Widget.php:516 src/Model/User.php:1390 +#: src/Content/Widget.php:552 src/Model/User.php:1390 msgid "Groups" msgstr "" @@ -1714,7 +1714,7 @@ msgstr "" msgid "Display posts that have been distributed by the selected group." msgstr "" -#: src/Content/Feature.php:117 src/Content/Widget.php:485 +#: src/Content/Feature.php:117 src/Content/Widget.php:521 msgid "Archives" msgstr "" @@ -1722,7 +1722,7 @@ msgstr "" msgid "Display an archive where posts can be selected by month and year." msgstr "" -#: src/Content/Feature.php:118 src/Content/Widget.php:267 +#: src/Content/Feature.php:118 src/Content/Widget.php:303 msgid "Protocols" msgstr "" @@ -1730,7 +1730,7 @@ msgstr "" msgid "Display posts with the selected protocols." msgstr "" -#: src/Content/Feature.php:119 src/Content/Widget.php:522 +#: src/Content/Feature.php:119 src/Content/Widget.php:558 #: src/Module/Settings/Account.php:433 msgid "Account Types" msgstr "" @@ -1739,7 +1739,7 @@ msgstr "" msgid "Display posts done by accounts with the selected account type." msgstr "" -#: src/Content/Feature.php:120 src/Content/Widget.php:571 +#: src/Content/Feature.php:120 src/Content/Widget.php:607 #: src/Module/Admin/Site.php:464 src/Module/BaseSettings.php:111 #: src/Module/Settings/Channels.php:211 src/Module/Settings/Display.php:309 msgid "Channels" @@ -1757,7 +1757,7 @@ msgstr "" msgid "Display posts that contain subscribed hashtags." msgstr "" -#: src/Content/Feature.php:122 src/Content/Widget.php:297 +#: src/Content/Feature.php:122 src/Content/Widget.php:333 msgid "Saved Folders" msgstr "" @@ -1817,12 +1817,12 @@ msgstr "" msgid "External link to group" msgstr "" -#: src/Content/GroupManager.php:139 src/Content/Widget.php:491 +#: src/Content/GroupManager.php:139 src/Content/Widget.php:527 msgid "show less" msgstr "" -#: src/Content/GroupManager.php:140 src/Content/Widget.php:389 -#: src/Content/Widget.php:492 +#: src/Content/GroupManager.php:140 src/Content/Widget.php:425 +#: src/Content/Widget.php:528 msgid "show more" msgstr "" @@ -1852,31 +1852,31 @@ msgstr "" msgid "Follow Thread" msgstr "" -#: src/Content/Item.php:415 src/Model/Contact.php:1249 +#: src/Content/Item.php:415 src/Model/Contact.php:1244 msgid "View Status" msgstr "" -#: src/Content/Item.php:416 src/Content/Item.php:439 src/Model/Contact.php:1184 -#: src/Model/Contact.php:1240 src/Model/Contact.php:1250 +#: src/Content/Item.php:416 src/Content/Item.php:439 src/Model/Contact.php:1179 +#: src/Model/Contact.php:1235 src/Model/Contact.php:1245 #: src/Module/Directory.php:144 src/Module/Settings/Profile/Index.php:250 msgid "View Profile" msgstr "" -#: src/Content/Item.php:417 src/Model/Contact.php:1251 +#: src/Content/Item.php:417 src/Model/Contact.php:1246 msgid "View Photos" msgstr "" -#: src/Content/Item.php:418 src/Model/Contact.php:1218 +#: src/Content/Item.php:418 src/Model/Contact.php:1213 #: src/Model/Profile.php:447 msgid "Network Posts" msgstr "" -#: src/Content/Item.php:419 src/Model/Contact.php:1242 -#: src/Model/Contact.php:1253 +#: src/Content/Item.php:419 src/Model/Contact.php:1237 +#: src/Model/Contact.php:1248 msgid "View Contact" msgstr "" -#: src/Content/Item.php:420 src/Model/Contact.php:1254 +#: src/Content/Item.php:420 src/Model/Contact.php:1249 msgid "Send PM" msgstr "" @@ -1916,7 +1916,7 @@ msgid "Search Text" msgstr "" #: src/Content/Item.php:436 src/Content/Widget.php:66 -#: src/Model/Contact.php:1243 src/Model/Contact.php:1255 +#: src/Model/Contact.php:1238 src/Model/Contact.php:1250 #: src/Module/Contact/Follow.php:152 view/theme/vier/theme.php:183 msgid "Connect/Follow" msgstr "" @@ -2235,38 +2235,33 @@ msgstr "" msgid "last" msgstr "" -#: src/Content/Text/BBCode.php:689 src/Content/Text/BBCode.php:1862 -#: src/Content/Text/BBCode.php:1863 -msgid "Image/photo" -msgstr "" - -#: src/Content/Text/BBCode.php:907 +#: src/Content/Text/BBCode.php:908 #, php-format msgid "%2$s %3$s" msgstr "" -#: src/Content/Text/BBCode.php:929 src/Model/Item.php:4031 +#: src/Content/Text/BBCode.php:930 src/Model/Item.php:4031 #: src/Model/Item.php:4037 src/Model/Item.php:4038 msgid "Link to source" msgstr "" -#: src/Content/Text/BBCode.php:1743 src/Content/Text/HTML.php:892 +#: src/Content/Text/BBCode.php:1744 src/Content/Text/HTML.php:892 msgid "Click to open/close" msgstr "" -#: src/Content/Text/BBCode.php:1798 +#: src/Content/Text/BBCode.php:1799 msgid "$1 wrote:" msgstr "" -#: src/Content/Text/BBCode.php:1872 src/Content/Text/BBCode.php:1873 +#: src/Content/Text/BBCode.php:1873 src/Content/Text/BBCode.php:1874 msgid "Encrypted content" msgstr "" -#: src/Content/Text/BBCode.php:2205 +#: src/Content/Text/BBCode.php:2206 msgid "Invalid source protocol" msgstr "" -#: src/Content/Text/BBCode.php:2224 +#: src/Content/Text/BBCode.php:2225 msgid "Invalid link protocol" msgstr "" @@ -2349,63 +2344,63 @@ msgstr "" msgid "Local Directory" msgstr "" -#: src/Content/Widget.php:196 +#: src/Content/Widget.php:232 msgid "Everyone" msgstr "" -#: src/Content/Widget.php:221 src/Module/Contact.php:404 +#: src/Content/Widget.php:257 src/Module/Contact.php:404 msgid "No relationship" msgstr "" -#: src/Content/Widget.php:226 +#: src/Content/Widget.php:262 msgid "Relationships" msgstr "" -#: src/Content/Widget.php:228 src/Module/Circle.php:280 +#: src/Content/Widget.php:264 src/Module/Circle.php:280 #: src/Module/Contact.php:325 msgid "All Contacts" msgstr "" -#: src/Content/Widget.php:269 +#: src/Content/Widget.php:305 msgid "All Protocols" msgstr "" -#: src/Content/Widget.php:299 src/Content/Widget.php:330 +#: src/Content/Widget.php:335 src/Content/Widget.php:366 msgid "Everything" msgstr "" -#: src/Content/Widget.php:328 +#: src/Content/Widget.php:364 msgid "Categories" msgstr "" -#: src/Content/Widget.php:385 +#: src/Content/Widget.php:421 #, php-format msgid "%d contact in common" msgid_plural "%d contacts in common" msgstr[0] "" msgstr[1] "" -#: src/Content/Widget.php:493 +#: src/Content/Widget.php:529 msgid "On this date" msgstr "" -#: src/Content/Widget.php:513 +#: src/Content/Widget.php:549 msgid "Persons" msgstr "" -#: src/Content/Widget.php:514 +#: src/Content/Widget.php:550 msgid "Organisations" msgstr "" -#: src/Content/Widget.php:515 src/Model/Contact.php:1755 +#: src/Content/Widget.php:551 src/Model/Contact.php:1750 msgid "News" msgstr "" -#: src/Content/Widget.php:517 +#: src/Content/Widget.php:553 msgid "Relays" msgstr "" -#: src/Content/Widget.php:524 src/Module/Moderation/BaseUsers.php:56 +#: src/Content/Widget.php:560 src/Module/Moderation/BaseUsers.php:56 msgid "All" msgstr "" @@ -2451,12 +2446,12 @@ msgstr[1] "" msgid "More Trending Tags" msgstr "" -#: src/Content/Widget/VCard.php:96 src/Model/Contact.php:1212 +#: src/Content/Widget/VCard.php:96 src/Model/Contact.php:1207 #: src/Model/Profile.php:441 msgid "Post to group" msgstr "" -#: src/Content/Widget/VCard.php:101 src/Model/Contact.php:1216 +#: src/Content/Widget/VCard.php:101 src/Model/Contact.php:1211 #: src/Model/Profile.php:445 src/Module/Moderation/Item/Source.php:77 msgid "Mention" msgstr "" @@ -2484,13 +2479,13 @@ msgstr "" msgid "Network:" msgstr "" -#: src/Content/Widget/VCard.php:120 src/Model/Contact.php:1244 -#: src/Model/Contact.php:1256 src/Model/Profile.php:458 +#: src/Content/Widget/VCard.php:120 src/Model/Contact.php:1239 +#: src/Model/Contact.php:1251 src/Model/Profile.php:458 #: src/Module/Contact/Profile.php:476 msgid "Unfollow" msgstr "" -#: src/Content/Widget/VCard.php:126 src/Model/Contact.php:1214 +#: src/Content/Widget/VCard.php:126 src/Model/Contact.php:1209 #: src/Model/Profile.php:443 msgid "View group" msgstr "" @@ -3033,32 +3028,32 @@ msgstr "" msgid "Enter a valid existing folder" msgstr "" -#: src/Core/Update.php:66 +#: src/Core/Update.php:104 #, php-format msgid "Updates from version %s are not supported. Please update at least to version 2021.01 and wait until the postupdate finished version 1383." msgstr "" -#: src/Core/Update.php:77 +#: src/Core/Update.php:115 #, php-format msgid "Updates from postupdate version %s are not supported. Please update at least to version 2021.01 and wait until the postupdate finished version 1383." msgstr "" -#: src/Core/Update.php:169 +#: src/Core/Update.php:207 #, php-format msgid "%s: executing pre update %d" msgstr "" -#: src/Core/Update.php:211 +#: src/Core/Update.php:249 #, php-format msgid "%s: executing post update %d" msgstr "" -#: src/Core/Update.php:285 +#: src/Core/Update.php:323 #, php-format msgid "Update %s failed. See error logs." msgstr "" -#: src/Core/Update.php:325 +#: src/Core/Update.php:363 #, php-format msgid "" "\n" @@ -3068,16 +3063,16 @@ msgid "" "\t\t\t\tfriendica developer if you can not help me on your own. My database might be invalid." msgstr "" -#: src/Core/Update.php:331 +#: src/Core/Update.php:369 #, php-format msgid "The error message is\\n[pre]%s[/pre]" msgstr "" -#: src/Core/Update.php:335 src/Core/Update.php:363 +#: src/Core/Update.php:373 src/Core/Update.php:401 msgid "[Friendica Notify] Database update" msgstr "" -#: src/Core/Update.php:357 +#: src/Core/Update.php:395 #, php-format msgid "" "\n" @@ -3118,16 +3113,16 @@ msgstr "" msgid "Errors encountered performing database changes: " msgstr "" -#: src/Database/DBStructure.php:218 +#: src/Database/DBStructure.php:228 msgid "Another database update is currently running." msgstr "" -#: src/Database/DBStructure.php:222 +#: src/Database/DBStructure.php:232 #, php-format msgid "%s: Database update" msgstr "" -#: src/Database/DBStructure.php:479 +#: src/Database/DBStructure.php:489 #, php-format msgid "%s: updating %s table." msgstr "" @@ -3194,84 +3189,84 @@ msgstr "" msgid "Edit circles" msgstr "" -#: src/Model/Contact.php:1263 src/Module/Moderation/Users/Pending.php:88 +#: src/Model/Contact.php:1258 src/Module/Moderation/Users/Pending.php:88 #: src/Module/Notifications/Introductions.php:124 #: src/Module/Notifications/Introductions.php:196 msgid "Approve" msgstr "" -#: src/Model/Contact.php:1599 src/Model/Contact.php:1671 +#: src/Model/Contact.php:1594 src/Model/Contact.php:1666 #: src/Module/Contact/Profile.php:360 #, php-format msgid "%s has blocked you" msgstr "" -#: src/Model/Contact.php:1751 +#: src/Model/Contact.php:1746 msgid "Organisation" msgstr "" -#: src/Model/Contact.php:1759 +#: src/Model/Contact.php:1754 msgid "Group" msgstr "" -#: src/Model/Contact.php:1763 src/Module/Moderation/BaseUsers.php:120 +#: src/Model/Contact.php:1758 src/Module/Moderation/BaseUsers.php:120 msgid "Relay" msgstr "" -#: src/Model/Contact.php:3078 +#: src/Model/Contact.php:3073 msgid "Disallowed profile URL." msgstr "" -#: src/Model/Contact.php:3083 src/Module/Friendica.php:86 +#: src/Model/Contact.php:3078 src/Module/Friendica.php:86 msgid "Blocked domain" msgstr "" -#: src/Model/Contact.php:3088 +#: src/Model/Contact.php:3083 msgid "Connect URL missing." msgstr "" -#: src/Model/Contact.php:3097 +#: src/Model/Contact.php:3092 msgid "The contact could not be added. Please check the relevant network credentials in your Settings -> Social Networks page." msgstr "" -#: src/Model/Contact.php:3115 +#: src/Model/Contact.php:3110 #, php-format msgid "Expected network %s does not match actual network %s" msgstr "" -#: src/Model/Contact.php:3132 +#: src/Model/Contact.php:3127 msgid "This seems to be a relay account. They can't be followed by users." msgstr "" -#: src/Model/Contact.php:3139 +#: src/Model/Contact.php:3134 msgid "The profile address specified does not provide adequate information." msgstr "" -#: src/Model/Contact.php:3141 +#: src/Model/Contact.php:3136 msgid "No compatible communication protocols or feeds were discovered." msgstr "" -#: src/Model/Contact.php:3144 +#: src/Model/Contact.php:3139 msgid "An author or name was not found." msgstr "" -#: src/Model/Contact.php:3147 +#: src/Model/Contact.php:3142 msgid "No browser URL could be matched to this address." msgstr "" -#: src/Model/Contact.php:3150 +#: src/Model/Contact.php:3145 msgid "Unable to match @-style Identity Address with a known protocol or email contact." msgstr "" -#: src/Model/Contact.php:3151 +#: src/Model/Contact.php:3146 msgid "Use mailto: in front of address to force email check." msgstr "" -#: src/Model/Contact.php:3157 +#: src/Model/Contact.php:3152 msgid "Limited profile. This person will be unable to receive direct/personal notifications from you." msgstr "" -#: src/Model/Contact.php:3216 +#: src/Model/Contact.php:3211 msgid "Unable to retrieve contact information." msgstr "" @@ -3572,7 +3567,7 @@ msgstr "" msgid "Title/Description:" msgstr "" -#: src/Model/Profile.php:799 src/Module/Admin/Summary.php:183 +#: src/Model/Profile.php:799 src/Module/Admin/Summary.php:176 #: src/Module/Moderation/Report/Create.php:266 #: src/Module/Moderation/Summary.php:62 msgid "Summary" @@ -3886,7 +3881,7 @@ msgstr "" #: src/Module/Admin/Federation.php:206 src/Module/Admin/Logs/Settings.php:74 #: src/Module/Admin/Logs/View.php:71 src/Module/Admin/Queue.php:59 #: src/Module/Admin/Site.php:447 src/Module/Admin/Storage.php:124 -#: src/Module/Admin/Summary.php:182 src/Module/Admin/Themes/Details.php:82 +#: src/Module/Admin/Summary.php:175 src/Module/Admin/Themes/Details.php:82 #: src/Module/Admin/Themes/Index.php:103 src/Module/Admin/Tos.php:63 #: src/Module/Moderation/Users/Create.php:47 #: src/Module/Moderation/Users/Pending.php:82 @@ -5364,75 +5359,75 @@ msgstr "" msgid "Your table_definition_cache is too low (%d). This can lead to the database error \"Prepared statement needs to be re-prepared\". Please set it at least to %d. See here for more information.
" msgstr "" -#: src/Module/Admin/Summary.php:71 +#: src/Module/Admin/Summary.php:68 #, php-format msgid "There is a new version of Friendica available for download. Your current version is %1$s, upstream version is %2$s" msgstr "" -#: src/Module/Admin/Summary.php:80 +#: src/Module/Admin/Summary.php:76 msgid "The database update failed. Please run \"php bin/console.php dbstructure update\" from the command line and have a look at the errors that might appear." msgstr "" -#: src/Module/Admin/Summary.php:84 +#: src/Module/Admin/Summary.php:80 msgid "The last update failed. Please run \"php bin/console.php dbstructure update\" from the command line and have a look at the errors that might appear. (Some of the errors are possibly inside the logfile.)" msgstr "" -#: src/Module/Admin/Summary.php:88 +#: src/Module/Admin/Summary.php:84 msgid "The system.url entry is missing. This is a low level setting and can lead to unexpected behavior. Please add a valid entry as soon as possible in the config file or per console command!" msgstr "" -#: src/Module/Admin/Summary.php:93 +#: src/Module/Admin/Summary.php:89 msgid "The worker was never executed. Please check your database structure!" msgstr "" -#: src/Module/Admin/Summary.php:95 +#: src/Module/Admin/Summary.php:91 #, php-format msgid "The last worker execution was on %s UTC. This is older than one hour. Please check your crontab settings." msgstr "" -#: src/Module/Admin/Summary.php:100 +#: src/Module/Admin/Summary.php:96 #, php-format msgid "Friendica's configuration now is stored in config/local.config.php, please copy config/local-sample.config.php and move your config from .htconfig.php. See the Config help page for help with the transition." msgstr "" -#: src/Module/Admin/Summary.php:104 +#: src/Module/Admin/Summary.php:100 #, php-format msgid "Friendica's configuration now is stored in config/local.config.php, please copy config/local-sample.config.php and move your config from config/local.ini.php. See the Config help page for help with the transition." msgstr "" -#: src/Module/Admin/Summary.php:110 +#: src/Module/Admin/Summary.php:106 #, php-format msgid "%s is not reachable on your system. This is a severe configuration issue that prevents server to server communication. See the installation page for help." msgstr "" -#: src/Module/Admin/Summary.php:134 +#: src/Module/Admin/Summary.php:130 #, php-format msgid "Friendica's system.basepath was updated from '%s' to '%s'. Please remove the system.basepath from your db to avoid differences." msgstr "" -#: src/Module/Admin/Summary.php:142 +#: src/Module/Admin/Summary.php:138 #, php-format msgid "Friendica's current system.basepath '%s' is wrong and the config file '%s' isn't used." msgstr "" -#: src/Module/Admin/Summary.php:150 +#: src/Module/Admin/Summary.php:146 #, php-format msgid "Friendica's current system.basepath '%s' is not equal to the config file '%s'. Please fix your configuration." msgstr "" -#: src/Module/Admin/Summary.php:161 +#: src/Module/Admin/Summary.php:157 msgid "Message queues" msgstr "" -#: src/Module/Admin/Summary.php:167 +#: src/Module/Admin/Summary.php:160 msgid "Server Settings" msgstr "" -#: src/Module/Admin/Summary.php:185 +#: src/Module/Admin/Summary.php:178 msgid "Version" msgstr "" -#: src/Module/Admin/Summary.php:189 +#: src/Module/Admin/Summary.php:182 msgid "Active addons" msgstr "" @@ -8376,7 +8371,7 @@ msgstr "" msgid "Incomplete request data" msgstr "" -#: src/Module/OAuth/Authorize.php:92 +#: src/Module/OAuth/Authorize.php:93 #, php-format msgid "Please copy the following authentication code into your application and close this window: %s" msgstr "" From 42117a391c270625bd791dc0c72b6bf4ace7ca64 Mon Sep 17 00:00:00 2001 From: Michael Date: Mon, 28 Oct 2024 20:57:20 +0000 Subject: [PATCH 30/54] Issue 14478: Always use an existing application for OAuth --- src/Module/Api/Mastodon/Apps.php | 24 +++++++++++++++--------- 1 file changed, 15 insertions(+), 9 deletions(-) diff --git a/src/Module/Api/Mastodon/Apps.php b/src/Module/Api/Mastodon/Apps.php index 706e186095..1552bc2117 100644 --- a/src/Module/Api/Mastodon/Apps.php +++ b/src/Module/Api/Mastodon/Apps.php @@ -59,28 +59,34 @@ class Apps extends BaseApi $this->logAndJsonError(422, $this->errorFactory->UnprocessableEntity($this->t('Missing parameters'))); } - $client_id = bin2hex(random_bytes(32)); - $client_secret = bin2hex(random_bytes(32)); - - $fields = ['client_id' => $client_id, 'client_secret' => $client_secret, 'name' => $request['client_name'], 'redirect_uri' => $request['redirect_uris']]; + $fields = ['name' => $request['client_name'], 'redirect_uri' => $request['redirect_uris']]; if (!empty($request['scopes'])) { $fields['scopes'] = $request['scopes']; } - $fields['read'] = (stripos($request['scopes'], self::SCOPE_READ) !== false); - $fields['write'] = (stripos($request['scopes'], self::SCOPE_WRITE) !== false); - $fields['follow'] = (stripos($request['scopes'], self::SCOPE_FOLLOW) !== false); - $fields['push'] = (stripos($request['scopes'], self::SCOPE_PUSH) !== false); - if (!empty($request['website'])) { $fields['website'] = $request['website']; } + $application = DBA::selectFirst('application', ['id'], $fields); + if (!empty($application['id'])) { + $this->logger->debug('Found existing application', ['request' => $request, 'id' => $application['id']]); + $this->jsonExit(DI::mstdnApplication()->createFromApplicationId($application['id'])->toArray()); + } + + $fields['read'] = (stripos($request['scopes'], self::SCOPE_READ) !== false); + $fields['write'] = (stripos($request['scopes'], self::SCOPE_WRITE) !== false); + $fields['follow'] = (stripos($request['scopes'], self::SCOPE_FOLLOW) !== false); + $fields['push'] = (stripos($request['scopes'], self::SCOPE_PUSH) !== false); + $fields['client_id'] = bin2hex(random_bytes(32)); + $fields['client_secret'] = bin2hex(random_bytes(32)); + if (!DBA::insert('application', $fields)) { $this->logAndJsonError(500, $this->errorFactory->InternalError()); } + $this->logger->debug('Create new application', ['request' => $request, 'id' => DBA::lastInsertId()]); $this->jsonExit(DI::mstdnApplication()->createFromApplicationId(DBA::lastInsertId())->toArray()); } } From 61435984b03bc572ce4f045066b0cef0837f336f Mon Sep 17 00:00:00 2001 From: Tobias Diekershoff Date: Tue, 29 Oct 2024 06:57:00 +0100 Subject: [PATCH 31/54] remove old reverence to addons.friendi.ca fixes #14512 The URL of the addon repository is corrected with this PR as well. --- src/Module/Admin/Addons/Index.php | 2 +- view/lang/C/messages.po | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/Module/Admin/Addons/Index.php b/src/Module/Admin/Addons/Index.php index 4c12027552..8ebf1f918d 100644 --- a/src/Module/Admin/Addons/Index.php +++ b/src/Module/Admin/Addons/Index.php @@ -63,7 +63,7 @@ class Index extends BaseAdmin '$function' => 'addons', '$addons' => $addons, '$pcount' => count($addons), - '$noplugshint' => DI::l10n()->t('There are currently no addons available on your node. You can find the official addon repository at %1$s and might find other interesting addons in the open addon registry at %2$s', 'https://github.com/friendica/friendica-addons', 'http://addons.friendi.ca'), + '$noplugshint' => DI::l10n()->t('There are currently no addons available on your node. You can find the official addon repository at %1$s.', 'https://git.friendi.ca/friendica/friendica-addons'), '$form_security_token' => self::getFormSecurityToken('admin_addons'), ]); } diff --git a/view/lang/C/messages.po b/view/lang/C/messages.po index 134b1adb9f..bf278ac011 100644 --- a/view/lang/C/messages.po +++ b/view/lang/C/messages.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: 2024.09-rc\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-10-27 19:18+0000\n" +"POT-Creation-Date: 2024-10-29 05:54+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -3934,7 +3934,7 @@ msgstr "" #: src/Module/Admin/Addons/Index.php:66 #, php-format -msgid "There are currently no addons available on your node. You can find the official addon repository at %1$s and might find other interesting addons in the open addon registry at %2$s" +msgid "There are currently no addons available on your node. You can find the official addon repository at %1$s." msgstr "" #: src/Module/Admin/DBSync.php:37 From db95def246a54004abf10bece6ed218c73ad3321 Mon Sep 17 00:00:00 2001 From: Tobias Diekershoff Date: Tue, 29 Oct 2024 07:07:05 +0100 Subject: [PATCH 32/54] fix gettext error xgettext was complaining that the term 'Error' was used once without the plural form --- src/Module/Moderation/Item/Source.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Module/Moderation/Item/Source.php b/src/Module/Moderation/Item/Source.php index 80edbe04b9..b82f8d54a7 100644 --- a/src/Module/Moderation/Item/Source.php +++ b/src/Module/Moderation/Item/Source.php @@ -76,7 +76,7 @@ class Source extends BaseModeration 'urllbl' => $this->t('URL'), 'mentionlbl' => $this->t('Mention'), 'implicitlbl' => $this->t('Implicit Mention'), - 'error' => $this->t('Error'), + 'error' => $this->tt('Error','Errors', 1), 'notfound' => $this->t('Item not found'), 'nosource' => $this->t('No source recorded'), 'noconfig' => !$this->config->get('debug', 'store_source') ? $this->t('Please make sure the debug.store_source config key is set in config/local.config.php for future items to have sources.') : '', From 718722419fe2daf3eaa4a20f850553f27964e726 Mon Sep 17 00:00:00 2001 From: Tobias Diekershoff Date: Tue, 29 Oct 2024 08:02:33 +0100 Subject: [PATCH 33/54] recreate messages.po --- view/lang/C/messages.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/view/lang/C/messages.po b/view/lang/C/messages.po index bf278ac011..dafd67761c 100644 --- a/view/lang/C/messages.po +++ b/view/lang/C/messages.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: 2024.09-rc\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-10-29 05:54+0000\n" +"POT-Creation-Date: 2024-10-29 07:00+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" From 94ad35a5dfdedb90c0aa8c2a7cd7e78eb5159b23 Mon Sep 17 00:00:00 2001 From: Michael Date: Wed, 30 Oct 2024 05:07:58 +0000 Subject: [PATCH 34/54] Prevent dead contacts from being revived --- 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 c510e670e4..a440d1e599 100644 --- a/src/Model/Contact.php +++ b/src/Model/Contact.php @@ -1367,7 +1367,7 @@ class Contact $personal_contact = DBA::selectFirst('contact', $fields, ["`nurl` = ? AND `uid` != 0", Strings::normaliseLink($url)]); } - if (DBA::isResult($personal_contact)) { + if (DBA::isResult($personal_contact) && !Probe::isProbable($personal_contact['network'])) { Logger::info('Take contact data from personal contact', ['url' => $url, 'update' => $update, 'contact' => $personal_contact]); $data = $personal_contact; $data['photo'] = $personal_contact['avatar']; From 5e3f9d1235ca950da43bcc507cd2b722fa1ef1ba Mon Sep 17 00:00:00 2001 From: Michael Date: Thu, 31 Oct 2024 18:27:26 +0000 Subject: [PATCH 35/54] Improved delivery / fix falsely delivery content via DFRN --- src/Protocol/ActivityPub/Transmitter.php | 100 ++++++++----------- src/Worker/Notifier.php | 119 ++++++++++++++--------- 2 files changed, 112 insertions(+), 107 deletions(-) diff --git a/src/Protocol/ActivityPub/Transmitter.php b/src/Protocol/ActivityPub/Transmitter.php index c0f2a2c383..ad53f22a21 100644 --- a/src/Protocol/ActivityPub/Transmitter.php +++ b/src/Protocol/ActivityPub/Transmitter.php @@ -637,14 +637,6 @@ class Transmitter $audience[] = $owner['url']; } - if (self::isAnnounce($item) || self::isAPPost($last_id)) { - // Will be activated in a later step - $networks = Protocol::FEDERATED; - } else { - // For now only send to these contacts: - $networks = [Protocol::ACTIVITYPUB]; - } - $data = ['to' => [], 'cc' => [], 'bto' => [], 'bcc' => [], 'audience' => $audience]; if ($item['gravity'] == Item::GRAVITY_PARENT) { @@ -704,7 +696,7 @@ class Transmitter $cid = Contact::getIdForURL($term['url'], $item['uid']); if (!empty($cid) && in_array($cid, $receiver_list)) { $contact = DBA::selectFirst('contact', ['url', 'network', 'protocol', 'gsid'], ['id' => $cid, 'network' => Protocol::FEDERATED]); - if (!DBA::isResult($contact) || !self::isAPContact($contact, $networks)) { + if (!DBA::isResult($contact)) { continue; } @@ -741,7 +733,7 @@ class Transmitter } $contact = DBA::selectFirst('contact', ['url', 'hidden', 'network', 'protocol', 'gsid'], ['id' => $receiver, 'network' => Protocol::FEDERATED]); - if (!DBA::isResult($contact) || !self::isAPContact($contact, $networks)) { + if (!DBA::isResult($contact)) { continue; } @@ -984,44 +976,16 @@ class Transmitter return DBA::exists('inbox-status', ['url' => $url, 'archive' => true]); } - /** - * Check if a given contact should be delivered via AP - * - * @param array $contact Contact array - * @param array $networks Array with networks - * @return bool Whether the used protocol matches ACTIVITYPUB - * @throws Exception - */ - private static function isAPContact(array $contact, array $networks): bool - { - if (in_array($contact['network'], $networks) || ($contact['protocol'] == Protocol::ACTIVITYPUB)) { - return true; - } - - return GServer::getProtocol($contact['gsid'] ?? 0) == Post\DeliveryData::ACTIVITYPUB; - } - /** * Fetches a list of inboxes of followers of a given user * * @param integer $uid User ID - * @param boolean $all_ap Retrieve all AP enabled inboxes * @return array of follower inboxes * @throws \Friendica\Network\HTTPException\InternalServerErrorException * @throws \ImagickException */ - public static function fetchTargetInboxesforUser(int $uid, bool $all_ap = false): array + public static function fetchTargetInboxesforUser(int $uid): array { - $inboxes = []; - - if ($all_ap) { - // Will be activated in a later step - $networks = Protocol::FEDERATED; - } else { - // For now only send to these contacts: - $networks = [Protocol::ACTIVITYPUB]; - } - $condition = [ 'uid' => $uid, 'self' => false, @@ -1029,37 +993,51 @@ class Transmitter 'pending' => false, 'blocked' => false, 'network' => Protocol::FEDERATED, - 'contact-type' => [Contact::TYPE_UNKNOWN, Contact::TYPE_PERSON, Contact::TYPE_NEWS, Contact::TYPE_ORGANISATION], ]; if (!empty($uid)) { $condition['rel'] = [Contact::FOLLOWER, Contact::FRIEND]; } - $contacts = DBA::select('contact', ['id', 'url', 'network', 'protocol', 'gsid'], $condition); - while ($contact = DBA::fetch($contacts)) { - if (!self::isAPContact($contact, $networks)) { + return self::addInboxesForCondition($condition, []); + } + + /** + * Fetch inboxes for a list of contacts + * + * @param array $recipients + * @param array $inboxes + * @return array + */ + public static function addInboxesForRecipients(array $recipients, array $inboxes): array + { + return self::addInboxesForCondition(['id' => $recipients], $inboxes); + } + + /** + * Get a list of inboxes for a given contact condition + * + * @param array $condition + * @param array $inboxes + * @return array + */ + private static function addInboxesForCondition(array $condition, array $inboxes): array + { + $condition = DBA::mergeConditions($condition, ["(`ap-inbox` IS NOT NULL OR `ap-sharedinbox` IS NOT NULL)"]); + + $accounts = DBA::select('account-user-view', ['id', 'url', 'ap-inbox', 'ap-sharedinbox'], $condition); + while ($account = DBA::fetch($accounts)) { + if (!empty($account['ap-sharedinbox']) && !Contact::isLocal($account['url'])) { + $target = $account['ap-sharedinbox']; + } elseif (!empty($account['ap-inbox'])) { + $target = $account['ap-inbox']; + } else { continue; } - - if (Network::isUrlBlocked($contact['url'])) { - continue; - } - - $profile = APContact::getByURL($contact['url'], false); - if (!empty($profile)) { - if (empty($profile['sharedinbox']) || Contact::isLocal($contact['url'])) { - $target = $profile['inbox']; - } else { - $target = $profile['sharedinbox']; - } - if (!self::archivedInbox($target)) { - $inboxes[$target][] = $contact['id']; - } + if (!Transmitter::archivedInbox($target) && (empty($inboxes[$target]) || !in_array($account['id'], $inboxes[$target]))) { + $inboxes[$target][] = $account['id']; } } - DBA::close($contacts); - return $inboxes; } @@ -1106,7 +1084,7 @@ class Transmitter } if ($item_profile && ($receiver == $item_profile['followers']) && ($uid == $profile_uid)) { - $inboxes = array_merge_recursive($inboxes, self::fetchTargetInboxesforUser($uid, true)); + $inboxes = array_merge_recursive($inboxes, self::fetchTargetInboxesforUser($uid)); } else { $profile = APContact::getByURL($receiver, false); if (!empty($profile)) { diff --git a/src/Worker/Notifier.php b/src/Worker/Notifier.php index 73ff4685f8..760d324d2d 100644 --- a/src/Worker/Notifier.php +++ b/src/Worker/Notifier.php @@ -23,6 +23,7 @@ use Friendica\Model\Tag; use Friendica\Model\User; use Friendica\Protocol\Activity; use Friendica\Protocol\ActivityPub; +use Friendica\Protocol\ActivityPub\Transmitter; use Friendica\Protocol\Diaspora; use Friendica\Protocol\Delivery; use Friendica\Util\LDSignature; @@ -161,16 +162,16 @@ class Notifier Logger::info('Got post', ['guid' => $target_item['guid'], 'uri-id' => $target_item['uri-id'], 'network' => $target_item['network'], 'parent-network' => $parent['network'], 'thread-parent-network' => $thr_parent['network']]); - if (!self::isRemovalActivity($cmd, $owner, Protocol::ACTIVITYPUB)) { - $apdelivery = self::activityPubDelivery($cmd, $target_item, $parent, $thr_parent, $a->getQueueValue('priority'), $a->getQueueValue('created'), $owner); - $ap_contacts = $apdelivery['contacts']; - $delivery_queue_count += $apdelivery['count']; - // Restrict distribution to AP, when there are no permissions. - if (($target_item['private'] == Item::PRIVATE) && empty($target_item['allow_cid']) && empty($target_item['allow_gid']) && empty($target_item['deny_cid']) && empty($target_item['deny_gid'])) { - $only_ap_delivery = true; - $public_message = false; - $diaspora_delivery = false; - } + // Restrict distribution to AP, when there are no permissions. + if (!self::isRemovalActivity($cmd, $owner, Protocol::ACTIVITYPUB) && ($target_item['private'] == Item::PRIVATE) && empty($target_item['allow_cid']) && empty($target_item['allow_gid']) && empty($target_item['deny_cid']) && empty($target_item['deny_gid'])) { + $only_ap_delivery = true; + $public_message = false; + $diaspora_delivery = false; + } + + if (!$target_item['origin'] && $target_item['network'] == Protocol::ACTIVITYPUB) { + $only_ap_delivery = true; + $diaspora_delivery = false; } // Only deliver threaded replies (comment to a comment) to Diaspora @@ -195,9 +196,9 @@ class Notifier // if $parent['wall'] == 1 we will already have the parent message in our array // and we will relay the whole lot. - $localhost = str_replace('www.','', DI::baseUrl()->getHost()); - if (strpos($localhost,':')) { - $localhost = substr($localhost,0,strpos($localhost,':')); + $localhost = str_replace('www.', '', DI::baseUrl()->getHost()); + if (strpos($localhost, ':')) { + $localhost = substr($localhost, 0, strpos($localhost, ':')); } /** * @@ -209,7 +210,7 @@ class Notifier $relay_to_owner = false; - if (!$top_level && ($parent['wall'] == 0) && (stristr($target_item['uri'],$localhost))) { + if (!$top_level && ($parent['wall'] == 0) && (stristr($target_item['uri'], $localhost))) { $relay_to_owner = true; } @@ -227,12 +228,6 @@ class Notifier // Special treatment for group posts if (Item::isGroupPost($target_item['uri-id'])) { $relay_to_owner = true; - $direct_group_delivery = true; - } - - // Avoid that comments in a group thread are sent to OStatus - if (Item::isGroupPost($parent['uri-id'])) { - $direct_group_delivery = true; } $exclusive_delivery = false; @@ -279,17 +274,19 @@ class Notifier return; } - if (strlen($parent['allow_cid']) + if ( + strlen($parent['allow_cid']) || strlen($parent['allow_gid']) || strlen($parent['deny_cid']) - || strlen($parent['deny_gid'])) { + || strlen($parent['deny_gid']) + ) { $public_message = false; // private recipients, not public } $aclFormatter = DI::aclFormatter(); $allow_people = $aclFormatter->expand($parent['allow_cid']); - $allow_circles = Circle::expand($uid, $aclFormatter->expand($parent['allow_gid']),true); + $allow_circles = Circle::expand($uid, $aclFormatter->expand($parent['allow_gid']), true); $deny_people = $aclFormatter->expand($parent['deny_cid']); $deny_circles = Circle::expand($uid, $aclFormatter->expand($parent['deny_gid'])); @@ -297,10 +294,10 @@ class Notifier $recipients[] = $item['contact-id']; // pull out additional tagged people to notify (if public message) if ($public_message && $item['inform']) { - $people = explode(',',$item['inform']); + $people = explode(',', $item['inform']); foreach ($people as $person) { - if (substr($person,0,4) === 'cid:') { - $recipients[] = intval(substr($person,4)); + if (substr($person, 0, 4) === 'cid:') { + $recipients[] = intval(substr($person, 4)); } } } @@ -313,7 +310,7 @@ class Notifier // If this is a public message and pubmail is set on the parent, include all your email contacts if ( function_exists('imap_open') - && !DI::config()->get('system','imap_disabled') + && !DI::config()->get('system', 'imap_disabled') && $public_message && intval($target_item['pubmail']) ) { @@ -338,12 +335,17 @@ class Notifier $public_message = false; } + if ($only_ap_delivery) { + $recipients = []; + } elseif ($followup) { + $recipients = $recipients_followup; + } + + $apdelivery = self::activityPubDelivery($cmd, $target_item, $parent, $thr_parent, $a->getQueueValue('priority'), $a->getQueueValue('created'), $recipients); + $ap_contacts = $apdelivery['contacts']; + $delivery_queue_count += $apdelivery['count']; + if (empty($delivery_contacts_stmt)) { - if ($only_ap_delivery) { - $recipients = $ap_contacts; - } elseif ($followup) { - $recipients = $recipients_followup; - } $condition = ['id' => $recipients, 'self' => false, 'uid' => [0, $uid], 'blocked' => false, 'pending' => false, 'archive' => false]; if (!empty($networks)) { @@ -370,18 +372,25 @@ class Notifier $participants = Diaspora::participantsForThread($target_item, $participants); } - $condition = ['network' => Protocol::DFRN, 'uid' => $owner['uid'], 'blocked' => false, - 'pending' => false, 'archive' => false, 'rel' => [Contact::FOLLOWER, Contact::FRIEND]]; + $condition = [ + 'network' => Protocol::DFRN, + 'uid' => $owner['uid'], + 'self' => false, + 'blocked' => false, + 'pending' => false, + 'archive' => false, + 'rel' => [Contact::FOLLOWER, Contact::FRIEND] + ]; $contacts = DBA::selectToArray('contact', ['id', 'uri-id', 'url', 'addr', 'name', 'network', 'protocol', 'baseurl', 'gsid'], $condition); $conversants = array_merge($contacts, $participants); - $delivery_queue_count += self::delivery($cmd, $post_uriid, $sender_uid, $target_item, $thr_parent, $owner, $batch_delivery, true, $conversants, $ap_contacts, []); + $delivery_queue_count += self::delivery($cmd, $post_uriid, $sender_uid, $target_item, $parent, $thr_parent, $owner, $batch_delivery, true, $conversants, $ap_contacts, []); } $contacts = DBA::toArray($delivery_contacts_stmt); - $delivery_queue_count += self::delivery($cmd, $post_uriid, $sender_uid, $target_item, $thr_parent, $owner, $batch_delivery, false, $contacts, $ap_contacts, $conversants); + $delivery_queue_count += self::delivery($cmd, $post_uriid, $sender_uid, $target_item, $parent, $thr_parent, $owner, $batch_delivery, false, $contacts, $ap_contacts, $conversants); if (!empty($target_item)) { Logger::info('Calling hooks for ' . $cmd . ' ' . $target_id); @@ -411,6 +420,7 @@ class Notifier * @param int $post_uriid * @param int $sender_uid * @param array $target_item + * @param array $parent * @param array $thr_parent * @param array $owner * @param bool $batch_delivery @@ -422,7 +432,7 @@ class Notifier * @throws InternalServerErrorException * @throws Exception */ - private static function delivery(string $cmd, int $post_uriid, int $sender_uid, array $target_item, array $thr_parent, array $owner, bool $batch_delivery, bool $in_batch, array $contacts, array $ap_contacts, array $conversants = []): int + private static function delivery(string $cmd, int $post_uriid, int $sender_uid, array $target_item, array $parent, array $thr_parent, array $owner, bool $batch_delivery, bool $in_batch, array $contacts, array $ap_contacts, array $conversants = []): int { $a = DI::app(); $delivery_queue_count = 0; @@ -433,6 +443,13 @@ class Notifier } foreach ($contacts as $contact) { + // Transmit via Diaspora if the thread had started as Diaspora post. + // Also transmit via Diaspora if this is a direct answer to a Diaspora comment. + if (($contact['network'] != Protocol::DIASPORA) && in_array(Protocol::DIASPORA, [$parent['network'] ?? '', $thr_parent['network'] ?? '', $target_item['network'] ?? ''])) { + Logger::info('Enforcing the Diaspora protocol', ['id' => $contact['id'], 'network' => $contact['network'], 'parent' => $parent['network'], 'thread-parent' => $thr_parent['network'], 'post' => $target_item['network']]); + $contact['network'] = Protocol::DIASPORA; + } + // Direct delivery of local contacts if (!in_array($cmd, [Delivery::RELOCATION, Delivery::SUGGESTION, Delivery::MAIL]) && $target_uid = User::getIdForURL($contact['url'])) { if ($cmd == Delivery::DELETION) { @@ -453,14 +470,19 @@ class Notifier continue; } - // Deletions are always sent via DFRN as well. - // This is done until we can perform deletions of foreign comments on our own threads via AP. - if (($cmd != Delivery::DELETION) && in_array($contact['id'], $ap_contacts)) { - Logger::info('Contact is already delivered via AP, so skip delivery via legacy DFRN/Diaspora', ['target' => $post_uriid, 'uid' => $sender_uid, 'contact' => $contact['url']]); + $cdata = Contact::getPublicAndUserContactID($contact['id'], $sender_uid); + if (in_array($cdata['public'] ?: $contact['id'], $ap_contacts)) { + Logger::info('The public contact is already delivered via AP, so skip delivery via legacy DFRN/Diaspora', ['batch' => $in_batch, 'target' => $post_uriid, 'uid' => $sender_uid, 'contact' => $contact['url']]); + continue; + } elseif (in_array($cdata['user'] ?: $contact['id'], $ap_contacts)) { + Logger::info('The user contact is already delivered via AP, so skip delivery via legacy DFRN/Diaspora', ['batch' => $in_batch, 'target' => $post_uriid, 'uid' => $sender_uid, 'contact' => $contact['url']]); continue; } if (!empty($contact['id']) && Contact::isArchived($contact['id'])) { + // We mark the contact here, since we could have only got here, when the "archived" value on this + // specific contact hadn't been set. + Contact::markForArchival($contact); Logger::info('Contact is archived, so skip delivery', ['target' => $post_uriid, 'uid' => $sender_uid, 'contact' => $contact['url']]); continue; } @@ -578,7 +600,7 @@ class Notifier */ private static function isRemovalActivity(string $cmd, array $owner, string $network): bool { - return ($cmd == Delivery::DELETION) && $owner['account_removed'] && in_array($network, [Protocol::ACTIVITYPUB, Protocol::DIASPORA]); + return ($cmd == Delivery::REMOVAL) && $owner['account_removed'] && in_array($network, [Protocol::ACTIVITYPUB, Protocol::DIASPORA]); } /** @@ -602,7 +624,7 @@ class Notifier return false; } - while($contact = DBA::fetch($contacts_stmt)) { + while ($contact = DBA::fetch($contacts_stmt)) { Contact::terminateFriendship($contact); } DBA::close($contacts_stmt); @@ -623,15 +645,16 @@ class Notifier * @param array $target_item * @param array $parent * @param array $thr_parent - * @param int $priority The priority the Notifier queue item was created with - * @param string $created The date the Notifier queue item was created on + * @param int $priority The priority the Notifier queue item was created with + * @param string $created The date the Notifier queue item was created on + * @param array $recipients Array of receivers * * @return array 'count' => The number of delivery tasks created, 'contacts' => their contact ids * @throws \Friendica\Network\HTTPException\InternalServerErrorException * @throws \ImagickException * @todo Unused parameter $owner */ - private static function activityPubDelivery($cmd, array $target_item, array $parent, array $thr_parent, int $priority, string $created, $owner): array + private static function activityPubDelivery($cmd, array $target_item, array $parent, array $thr_parent, int $priority, string $created, array $recipients): array { // Don't deliver via AP when the starting post isn't from a federated network if (!in_array($parent['network'], Protocol::FEDERATED)) { @@ -697,6 +720,10 @@ class Notifier return ['count' => 0, 'contacts' => []]; } + if ($target_item['private'] != Item::PRIVATE) { + $inboxes = Transmitter::addInboxesForRecipients($recipients, $inboxes); + } + if (empty($inboxes) && empty($relay_inboxes)) { Logger::info('No inboxes found for item ' . $target_item['id'] . ' with URL ' . $target_item['uri'] . '. It will not be distributed.'); return ['count' => 0, 'contacts' => []]; From ea9d0fb9b037ab09f0cb0a420e6777591be1a093 Mon Sep 17 00:00:00 2001 From: Michael Date: Sat, 2 Nov 2024 17:35:49 +0000 Subject: [PATCH 36/54] Process deletions via ActivityPub --- src/Model/Contact.php | 2 +- src/Protocol/ActivityPub/Transmitter.php | 2 +- src/Protocol/DFRN.php | 3 ++- src/Protocol/Diaspora.php | 2 +- src/Util/HTTPSignature.php | 4 +++- src/Worker/Notifier.php | 2 +- 6 files changed, 9 insertions(+), 6 deletions(-) diff --git a/src/Model/Contact.php b/src/Model/Contact.php index a440d1e599..a9ef2276ab 100644 --- a/src/Model/Contact.php +++ b/src/Model/Contact.php @@ -1082,7 +1082,7 @@ class Contact */ public static function markForArchival(array $contact) { - if ((!isset($contact['url']) || !isset($contact['uri-id'])) && !empty($contact['id'])) { + if ((!isset($contact['uri-id']) || !isset($contact['url']) || !isset($contact['archive']) || !isset($contact['self']) || !isset($contact['term-date'])) && !empty($contact['id'])) { $fields = ['id', 'uri-id', 'url', 'archive', 'self', 'term-date']; $contact = DBA::selectFirst('contact', $fields, ['id' => $contact['id']]); if (!DBA::isResult($contact)) { diff --git a/src/Protocol/ActivityPub/Transmitter.php b/src/Protocol/ActivityPub/Transmitter.php index ad53f22a21..883a97c10a 100644 --- a/src/Protocol/ActivityPub/Transmitter.php +++ b/src/Protocol/ActivityPub/Transmitter.php @@ -1391,7 +1391,7 @@ class Transmitter } } - if (!$api_mode && !$item['origin']) { + if (!$api_mode && !$item['deleted'] && !$item['origin']) { Logger::debug('Post is not ours and is not stored', ['id' => $item['id'], 'uri-id' => $item['uri-id']]); return false; } diff --git a/src/Protocol/DFRN.php b/src/Protocol/DFRN.php index 7b82adaf91..8ea8dfd37a 100644 --- a/src/Protocol/DFRN.php +++ b/src/Protocol/DFRN.php @@ -986,7 +986,7 @@ class DFRN Logger::notice('Got exception', ['code' => $th->getCode(), 'message' => $th->getMessage()]); return -25; } - Item::incrementOutbound(Protocol::DFRN); + $xml = $postResult->getBodyString(); $curl_stat = $postResult->getReturnCode(); @@ -1017,6 +1017,7 @@ class DFRN if (!empty($contact['gsid'])) { GServer::setReachableById($contact['gsid'], Protocol::DFRN); + Item::incrementOutbound(Protocol::DFRN); } if (!empty($res->message)) { diff --git a/src/Protocol/Diaspora.php b/src/Protocol/Diaspora.php index 94fec1b00d..74963025e9 100644 --- a/src/Protocol/Diaspora.php +++ b/src/Protocol/Diaspora.php @@ -2962,7 +2962,6 @@ class Diaspora return 0; } $return_code = $postResult->getReturnCode(); - Item::incrementOutbound(Protocol::DIASPORA); } else { Logger::notice('test_mode'); return 200; @@ -2971,6 +2970,7 @@ class Diaspora if (!empty($contact['gsid']) && (empty($return_code) || $postResult->isTimeout())) { GServer::setFailureById($contact['gsid']); } elseif (!empty($contact['gsid']) && ($return_code >= 200) && ($return_code <= 299)) { + Item::incrementOutbound(Protocol::DIASPORA); GServer::setReachableById($contact['gsid'], Protocol::DIASPORA); } diff --git a/src/Util/HTTPSignature.php b/src/Util/HTTPSignature.php index 68bd049855..0fdfccf330 100644 --- a/src/Util/HTTPSignature.php +++ b/src/Util/HTTPSignature.php @@ -297,7 +297,9 @@ class HTTPSignature self::setInboxStatus($target, ($return_code >= 200) && ($return_code <= 299)); - Item::incrementOutbound(Protocol::ACTIVITYPUB); + if (($return_code >= 200) && ($return_code <= 299)) { + Item::incrementOutbound(Protocol::ACTIVITYPUB); + } return $postResult; } diff --git a/src/Worker/Notifier.php b/src/Worker/Notifier.php index 760d324d2d..f693d3da53 100644 --- a/src/Worker/Notifier.php +++ b/src/Worker/Notifier.php @@ -527,7 +527,7 @@ class Notifier continue; } - Logger::info('Delivery', ['batch' => $in_batch, 'target' => $post_uriid, 'uid' => $sender_uid, 'guid' => $target_item['guid'] ?? '', 'to' => $contact]); + Logger::info('Delivery', ['cmd' => $cmd, 'batch' => $in_batch, 'target' => $post_uriid, 'uid' => $sender_uid, 'guid' => $target_item['guid'] ?? '', 'to' => $contact]); // Ensure that posts with our own protocol arrives before Diaspora posts arrive. // Situation is that sometimes Friendica servers receive Friendica posts over the Diaspora protocol first. From 67a8c5073cc45c1f9beb8f25d66f1d64540950de Mon Sep 17 00:00:00 2001 From: Michael Date: Mon, 4 Nov 2024 20:27:17 +0000 Subject: [PATCH 37/54] Fix installation --- src/Module/Install.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/Module/Install.php b/src/Module/Install.php index f9d9782250..171474e6a3 100644 --- a/src/Module/Install.php +++ b/src/Module/Install.php @@ -87,7 +87,7 @@ class Install extends BaseModule // so we may not have a css at all. Here we set a static css file for the install procedure pages Renderer::$theme['stylesheet'] = $this->baseUrl . '/view/install/style.css'; - $this->currentWizardStep = ($_POST['pass'] ?? '') ?: self::SYSTEM_CHECK; + $this->currentWizardStep = ($_REQUEST['pass'] ?? '') ?: self::SYSTEM_CHECK; } protected function post(array $request = []) @@ -164,6 +164,7 @@ class Install extends BaseModule break; } + DI::baseUrl()->redirect('install?pass=' . $this->currentWizardStep); } protected function content(array $request = []): string From f6b4f974f0d219f69727b0a66c5eb5b092408e64 Mon Sep 17 00:00:00 2001 From: Michael Date: Mon, 4 Nov 2024 21:08:06 +0000 Subject: [PATCH 38/54] Only transmit via AP if the relayed post is an AP post --- src/Worker/Notifier.php | 110 ++++++++++++++++------------------------ 1 file changed, 45 insertions(+), 65 deletions(-) diff --git a/src/Worker/Notifier.php b/src/Worker/Notifier.php index f693d3da53..4dbbcc5076 100644 --- a/src/Worker/Notifier.php +++ b/src/Worker/Notifier.php @@ -47,7 +47,6 @@ class Notifier Logger::info('Invoked', ['cmd' => $cmd, 'target' => $post_uriid, 'sender_uid' => $sender_uid]); $target_id = $post_uriid; - $top_level = false; $recipients = []; $delivery_contacts_stmt = null; @@ -127,8 +126,6 @@ class Notifier $item['deleted'] = 1; } } - - $top_level = $target_item['gravity'] == Item::GRAVITY_PARENT; } $owner = User::getOwnerDataById($uid); @@ -172,6 +169,7 @@ class Notifier if (!$target_item['origin'] && $target_item['network'] == Protocol::ACTIVITYPUB) { $only_ap_delivery = true; $diaspora_delivery = false; + Logger::debug('Only AP Delivery', ['guid' => $target_item['guid'], 'uri-id' => $target_item['uri-id'], 'network' => $target_item['network'], 'parent-network' => $parent['network'], 'thread-parent-network' => $thr_parent['network']]); } // Only deliver threaded replies (comment to a comment) to Diaspora @@ -195,33 +193,13 @@ class Notifier // if $parent['wall'] == 1 we will already have the parent message in our array // and we will relay the whole lot. - - $localhost = str_replace('www.', '', DI::baseUrl()->getHost()); - if (strpos($localhost, ':')) { - $localhost = substr($localhost, 0, strpos($localhost, ':')); - } - /** - * - * Be VERY CAREFUL if you make any changes to the following several lines. Seemingly innocuous changes - * have been known to cause runaway conditions which affected several servers, along with - * permissions issues. - * - */ - $relay_to_owner = false; - if (!$top_level && ($parent['wall'] == 0) && (stristr($target_item['uri'], $localhost))) { + if (($target_item['gravity'] != Item::GRAVITY_PARENT) && !$parent['wall'] && $target_item['origin']) { $relay_to_owner = true; } - // until the 'origin' flag has been in use for several months - // we will just use it as a fallback test - // later we will be able to use it as the primary test of whether or not to relay. - - if (!$target_item['origin']) { - $relay_to_owner = false; - } - if ($parent['origin']) { + if (!$target_item['origin'] || $parent['origin']) { $relay_to_owner = false; } @@ -345,53 +323,55 @@ class Notifier $ap_contacts = $apdelivery['contacts']; $delivery_queue_count += $apdelivery['count']; - if (empty($delivery_contacts_stmt)) { - $condition = ['id' => $recipients, 'self' => false, 'uid' => [0, $uid], - 'blocked' => false, 'pending' => false, 'archive' => false]; - if (!empty($networks)) { - $condition['network'] = $networks; - } - $delivery_contacts_stmt = DBA::select('contact', ['id', 'uri-id', 'addr', 'url', 'network', 'protocol', 'baseurl', 'gsid', 'batch'], $condition); - } - - $conversants = []; - $batch_delivery = false; - - if ($public_message && !in_array($cmd, [Delivery::MAIL, Delivery::SUGGESTION]) && !$followup) { - $participants = []; - - if ($diaspora_delivery && !$unlisted) { - $batch_delivery = true; - - $participants = DBA::selectToArray('contact', ['batch', 'network', 'protocol', 'baseurl', 'gsid', 'id', 'url', 'name'], - ["`network` = ? AND `batch` != '' AND `uid` = ? AND `rel` != ? AND NOT `blocked` AND NOT `pending` AND NOT `archive`", Protocol::DIASPORA, $owner['uid'], Contact::SHARING], - ['group_by' => ['batch', 'network', 'protocol']]); - - // Fetch the participation list - // The function will ensure that there are no duplicates - $participants = Diaspora::participantsForThread($target_item, $participants); + if (!$only_ap_delivery) { + if (empty($delivery_contacts_stmt)) { + $condition = ['id' => $recipients, 'self' => false, 'uid' => [0, $uid], + 'blocked' => false, 'pending' => false, 'archive' => false]; + if (!empty($networks)) { + $condition['network'] = $networks; + } + $delivery_contacts_stmt = DBA::select('contact', ['id', 'uri-id', 'addr', 'url', 'network', 'protocol', 'baseurl', 'gsid', 'batch'], $condition); } - $condition = [ - 'network' => Protocol::DFRN, - 'uid' => $owner['uid'], - 'self' => false, - 'blocked' => false, - 'pending' => false, - 'archive' => false, - 'rel' => [Contact::FOLLOWER, Contact::FRIEND] - ]; + $conversants = []; + $batch_delivery = false; - $contacts = DBA::selectToArray('contact', ['id', 'uri-id', 'url', 'addr', 'name', 'network', 'protocol', 'baseurl', 'gsid'], $condition); + if ($public_message && !in_array($cmd, [Delivery::MAIL, Delivery::SUGGESTION]) && !$followup) { + $participants = []; - $conversants = array_merge($contacts, $participants); + if ($diaspora_delivery && !$unlisted) { + $batch_delivery = true; - $delivery_queue_count += self::delivery($cmd, $post_uriid, $sender_uid, $target_item, $parent, $thr_parent, $owner, $batch_delivery, true, $conversants, $ap_contacts, []); + $participants = DBA::selectToArray('contact', ['batch', 'network', 'protocol', 'baseurl', 'gsid', 'id', 'url', 'name'], + ["`network` = ? AND `batch` != '' AND `uid` = ? AND `rel` != ? AND NOT `blocked` AND NOT `pending` AND NOT `archive`", Protocol::DIASPORA, $owner['uid'], Contact::SHARING], + ['group_by' => ['batch', 'network', 'protocol']]); + + // Fetch the participation list + // The function will ensure that there are no duplicates + $participants = Diaspora::participantsForThread($target_item, $participants); + } + + $condition = [ + 'network' => Protocol::DFRN, + 'uid' => $owner['uid'], + 'self' => false, + 'blocked' => false, + 'pending' => false, + 'archive' => false, + 'rel' => [Contact::FOLLOWER, Contact::FRIEND] + ]; + + $contacts = DBA::selectToArray('contact', ['id', 'uri-id', 'url', 'addr', 'name', 'network', 'protocol', 'baseurl', 'gsid'], $condition); + + $conversants = array_merge($contacts, $participants); + + $delivery_queue_count += self::delivery($cmd, $post_uriid, $sender_uid, $target_item, $parent, $thr_parent, $owner, $batch_delivery, true, $conversants, $ap_contacts, []); + } + + $contacts = DBA::toArray($delivery_contacts_stmt); + $delivery_queue_count += self::delivery($cmd, $post_uriid, $sender_uid, $target_item, $parent, $thr_parent, $owner, $batch_delivery, false, $contacts, $ap_contacts, $conversants); } - $contacts = DBA::toArray($delivery_contacts_stmt); - $delivery_queue_count += self::delivery($cmd, $post_uriid, $sender_uid, $target_item, $parent, $thr_parent, $owner, $batch_delivery, false, $contacts, $ap_contacts, $conversants); - if (!empty($target_item)) { Logger::info('Calling hooks for ' . $cmd . ' ' . $target_id); From 29310562a5d9e590a3b0a905f90f93927da2fde8 Mon Sep 17 00:00:00 2001 From: Michael Date: Tue, 5 Nov 2024 07:41:14 +0000 Subject: [PATCH 39/54] Notifier: Only relay public posts --- src/Worker/Notifier.php | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/Worker/Notifier.php b/src/Worker/Notifier.php index 4dbbcc5076..438c0e5e77 100644 --- a/src/Worker/Notifier.php +++ b/src/Worker/Notifier.php @@ -169,7 +169,7 @@ class Notifier if (!$target_item['origin'] && $target_item['network'] == Protocol::ACTIVITYPUB) { $only_ap_delivery = true; $diaspora_delivery = false; - Logger::debug('Only AP Delivery', ['guid' => $target_item['guid'], 'uri-id' => $target_item['uri-id'], 'network' => $target_item['network'], 'parent-network' => $parent['network'], 'thread-parent-network' => $thr_parent['network']]); + Logger::debug('Remote post arrived via AP', ['guid' => $target_item['guid'], 'uri-id' => $target_item['uri-id'], 'network' => $target_item['network'], 'parent-network' => $parent['network'], 'thread-parent-network' => $thr_parent['network']]); } // Only deliver threaded replies (comment to a comment) to Diaspora @@ -683,10 +683,10 @@ class Notifier Logger::info('Origin item will be distributed', ['id' => $target_item['id'], 'url' => $target_item['uri'], 'verb' => $target_item['verb']]); $check_signature = false; - } elseif (!Post\Activity::exists($target_item['uri-id'])) { - Logger::info('Remote item is no AP post. It will not be distributed.', ['id' => $target_item['id'], 'url' => $target_item['uri'], 'verb' => $target_item['verb']]); + } elseif (!$target_item['deleted'] && !Post\Activity::exists($target_item['uri-id'])) { + Logger::info('Remote activity not found. It will not be distributed.', ['id' => $target_item['id'], 'url' => $target_item['uri'], 'verb' => $target_item['verb']]); return ['count' => 0, 'contacts' => []]; - } elseif ($parent['origin'] && (($target_item['gravity'] != Item::GRAVITY_ACTIVITY) || DI::config()->get('system', 'redistribute_activities'))) { + } elseif ($parent['origin'] && ($target_item['private'] != Item::PRIVATE) && (($target_item['gravity'] != Item::GRAVITY_ACTIVITY) || DI::config()->get('system', 'redistribute_activities'))) { $inboxes = ActivityPub\Transmitter::fetchTargetInboxes($parent, $uid); if (in_array($target_item['private'], [Item::PUBLIC])) { From 1226cd4487694bf207203eef72c486ebf65f3963 Mon Sep 17 00:00:00 2001 From: Michael Date: Tue, 5 Nov 2024 11:04:57 +0000 Subject: [PATCH 40/54] "Connector" added as parcel --- src/Model/Conversation.php | 1 + 1 file changed, 1 insertion(+) diff --git a/src/Model/Conversation.php b/src/Model/Conversation.php index 510dd0f1c0..8637880074 100644 --- a/src/Model/Conversation.php +++ b/src/Model/Conversation.php @@ -30,6 +30,7 @@ class Conversation const PARCEL_ATOM03 = 15; const PARCEL_OPML = 16; const PARCEL_TWITTER = 67; + const PARCEL_CONNECTOR = 68; const PARCEL_UNKNOWN = 255; /** From 97b38b99df8313b94b5b70b63e16960532fd3808 Mon Sep 17 00:00:00 2001 From: Michael Date: Tue, 5 Nov 2024 11:03:12 +0000 Subject: [PATCH 41/54] Fixes "foreach() argument must be of type array|object, string given" --- src/Worker/UpdateServerDirectory.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Worker/UpdateServerDirectory.php b/src/Worker/UpdateServerDirectory.php index d907c4b5c0..cf3634d878 100644 --- a/src/Worker/UpdateServerDirectory.php +++ b/src/Worker/UpdateServerDirectory.php @@ -76,7 +76,7 @@ class UpdateServerDirectory } $accounts = json_decode($result, true); - if (empty($accounts)) { + if (!is_array($accounts)) { Logger::info('No contacts', ['url' => $gserver['url']]); return; } From e73566c0a1bab49ca1da8011d61197289189c563 Mon Sep 17 00:00:00 2001 From: Michael Date: Sat, 2 Nov 2024 16:11:29 +0000 Subject: [PATCH 42/54] SVG icons for various fediverse systems --- LICENSES/AGPL-3.0-only.txt | 661 ++++++++++++++++++ LICENSES/CC-PDDC.txt | 9 + LICENSES/EUPL-1.2.txt | 287 ++++++++ LICENSES/Zlib.txt | 15 + images/platforms/black/akkoma.svg | 7 + images/platforms/black/akkoma.svg.license | 2 + images/platforms/black/bluesky.svg | 1 + images/platforms/black/bluesky.svg.license | 2 + images/platforms/black/calckey.svg | 13 + images/platforms/black/calckey.svg.license | 2 + images/platforms/black/diaspora.svg | 8 + images/platforms/black/diaspora.svg.license | 2 + images/platforms/black/discourse.svg | 2 + images/platforms/black/discourse.svg.license | 2 + images/platforms/black/email.svg | 4 + images/platforms/black/email.svg.license | 2 + images/platforms/black/firefish.svg | 1 + images/platforms/black/firefish.svg.license | 2 + images/platforms/black/flipboard.svg | 2 + images/platforms/black/flipboard.svg.license | 2 + images/platforms/black/friendica.svg | 8 + images/platforms/black/friendica.svg.license | 3 + images/platforms/black/glitchsoc.svg | 7 + images/platforms/black/glitchsoc.svg.license | 2 + images/platforms/black/gnusocial.svg | 10 + images/platforms/black/gnusocial.svg.license | 2 + images/platforms/black/gotosocial.svg | 9 + images/platforms/black/gotosocial.svg.license | 2 + images/platforms/black/hometown.svg | 17 + images/platforms/black/hometown.svg.license | 2 + images/platforms/black/hubzilla.svg | 8 + images/platforms/black/hubzilla.svg.license | 2 + images/platforms/black/iceshrimp.svg | 1 + images/platforms/black/iceshrimp.svg.license | 2 + images/platforms/black/lemmy.svg | 75 ++ images/platforms/black/lemmy.svg.license | 2 + images/platforms/black/mastodon.svg | 9 + images/platforms/black/mastodon.svg.license | 2 + images/platforms/black/mbin.svg | 1 + images/platforms/black/mbin.svg.license | 2 + images/platforms/black/misskey.svg | 1 + images/platforms/black/misskey.svg.license | 2 + images/platforms/black/mobilizon.svg | 2 + images/platforms/black/mobilizon.svg.license | 2 + images/platforms/black/peertube.svg | 7 + images/platforms/black/peertube.svg.license | 2 + images/platforms/black/pixelfed.svg | 8 + images/platforms/black/pixelfed.svg.license | 2 + images/platforms/black/pleroma.svg | 8 + images/platforms/black/pleroma.svg.license | 2 + images/platforms/black/plume.svg | 9 + images/platforms/black/plume.svg.license | 2 + images/platforms/black/pump-io.svg | 108 +++ images/platforms/black/pump-io.svg.license | 2 + images/platforms/black/rss.svg | 8 + images/platforms/black/rss.svg.license | 2 + images/platforms/black/sharkey.svg | 1 + images/platforms/black/sharkey.svg.license | 2 + images/platforms/black/threads.svg | 1 + images/platforms/black/threads.svg.license | 2 + images/platforms/black/tumblr.svg | 19 + images/platforms/black/tumblr.svg.license | 2 + images/platforms/black/wordpress.svg | 10 + images/platforms/black/wordpress.svg.license | 2 + images/platforms/color/activitypub.svg | 288 ++++++++ .../platforms/color/activitypub.svg.license | 2 + images/platforms/color/akkoma.svg | 7 + images/platforms/color/akkoma.svg.license | 2 + images/platforms/color/bluesky.svg | 4 + images/platforms/color/bluesky.svg.license | 2 + images/platforms/color/discourse.svg | 8 + images/platforms/color/discourse.svg.license | 2 + images/platforms/color/firefish.svg | 153 ++++ images/platforms/color/firefish.svg.license | 2 + images/platforms/color/flipboard.svg | 9 + images/platforms/color/flipboard.svg.license | 2 + images/platforms/color/friendica.svg | 1 + images/platforms/color/friendica.svg.license | 2 + images/platforms/color/gnusocial.svg | 99 +++ images/platforms/color/gnusocial.svg.license | 2 + images/platforms/color/mastodon.svg | 10 + images/platforms/color/mastodon.svg.license | 2 + images/platforms/color/peertube.svg | 1 + images/platforms/color/peertube.svg.license | 2 + images/platforms/color/pixelfed.svg | 101 +++ images/platforms/color/pixelfed.svg.license | 2 + images/platforms/color/pleroma.svg | 75 ++ images/platforms/color/pleroma.svg.license | 2 + images/platforms/color/rss.svg | 18 + images/platforms/color/rss.svg.license | 2 + images/platforms/color/tumblr.svg | 18 + images/platforms/color/tumblr.svg.license | 2 + images/platforms/color/wordpress.svg | 1 + images/platforms/color/wordpress.svg.license | 2 + src/Content/ContactSelector.php | 117 +++- src/Content/Conversation.php | 1 + src/Content/Text/BBCode.php | 1 + src/Content/Widget/VCard.php | 3 + src/Core/Protocol.php | 18 +- src/Model/GServer.php | 21 + src/Module/Admin/Federation.php | 7 + .../Moderation/Blocklist/Server/Add.php | 1 + src/Module/Settings/Display.php | 4 + src/Object/Post.php | 1 + view/lang/C/messages.po | 406 +++++------ view/templates/admin/federation.tpl | 7 +- view/templates/settings/display.tpl | 1 + view/templates/shared_content.tpl | 20 +- view/theme/frio/css/style.css | 8 +- view/theme/frio/scheme/black.css | 4 + view/theme/frio/scheme/dark.css | 4 + view/theme/frio/templates/search_item.tpl | 6 +- .../theme/frio/templates/settings/display.tpl | 1 + view/theme/frio/templates/wall_thread.tpl | 18 +- view/theme/frio/templates/widget/vcard.tpl | 6 +- 115 files changed, 2640 insertions(+), 236 deletions(-) create mode 100644 LICENSES/AGPL-3.0-only.txt create mode 100644 LICENSES/CC-PDDC.txt create mode 100644 LICENSES/EUPL-1.2.txt create mode 100644 LICENSES/Zlib.txt create mode 100644 images/platforms/black/akkoma.svg create mode 100644 images/platforms/black/akkoma.svg.license create mode 100644 images/platforms/black/bluesky.svg create mode 100644 images/platforms/black/bluesky.svg.license create mode 100644 images/platforms/black/calckey.svg create mode 100644 images/platforms/black/calckey.svg.license create mode 100644 images/platforms/black/diaspora.svg create mode 100644 images/platforms/black/diaspora.svg.license create mode 100644 images/platforms/black/discourse.svg create mode 100644 images/platforms/black/discourse.svg.license create mode 100644 images/platforms/black/email.svg create mode 100644 images/platforms/black/email.svg.license create mode 100644 images/platforms/black/firefish.svg create mode 100644 images/platforms/black/firefish.svg.license create mode 100644 images/platforms/black/flipboard.svg create mode 100644 images/platforms/black/flipboard.svg.license create mode 100644 images/platforms/black/friendica.svg create mode 100644 images/platforms/black/friendica.svg.license create mode 100644 images/platforms/black/glitchsoc.svg create mode 100644 images/platforms/black/glitchsoc.svg.license create mode 100644 images/platforms/black/gnusocial.svg create mode 100644 images/platforms/black/gnusocial.svg.license create mode 100644 images/platforms/black/gotosocial.svg create mode 100644 images/platforms/black/gotosocial.svg.license create mode 100644 images/platforms/black/hometown.svg create mode 100644 images/platforms/black/hometown.svg.license create mode 100644 images/platforms/black/hubzilla.svg create mode 100644 images/platforms/black/hubzilla.svg.license create mode 100644 images/platforms/black/iceshrimp.svg create mode 100644 images/platforms/black/iceshrimp.svg.license create mode 100644 images/platforms/black/lemmy.svg create mode 100644 images/platforms/black/lemmy.svg.license create mode 100644 images/platforms/black/mastodon.svg create mode 100644 images/platforms/black/mastodon.svg.license create mode 100644 images/platforms/black/mbin.svg create mode 100644 images/platforms/black/mbin.svg.license create mode 100644 images/platforms/black/misskey.svg create mode 100644 images/platforms/black/misskey.svg.license create mode 100644 images/platforms/black/mobilizon.svg create mode 100644 images/platforms/black/mobilizon.svg.license create mode 100644 images/platforms/black/peertube.svg create mode 100644 images/platforms/black/peertube.svg.license create mode 100644 images/platforms/black/pixelfed.svg create mode 100644 images/platforms/black/pixelfed.svg.license create mode 100644 images/platforms/black/pleroma.svg create mode 100644 images/platforms/black/pleroma.svg.license create mode 100644 images/platforms/black/plume.svg create mode 100644 images/platforms/black/plume.svg.license create mode 100644 images/platforms/black/pump-io.svg create mode 100644 images/platforms/black/pump-io.svg.license create mode 100644 images/platforms/black/rss.svg create mode 100644 images/platforms/black/rss.svg.license create mode 100644 images/platforms/black/sharkey.svg create mode 100644 images/platforms/black/sharkey.svg.license create mode 100644 images/platforms/black/threads.svg create mode 100644 images/platforms/black/threads.svg.license create mode 100644 images/platforms/black/tumblr.svg create mode 100644 images/platforms/black/tumblr.svg.license create mode 100644 images/platforms/black/wordpress.svg create mode 100644 images/platforms/black/wordpress.svg.license create mode 100644 images/platforms/color/activitypub.svg create mode 100644 images/platforms/color/activitypub.svg.license create mode 100644 images/platforms/color/akkoma.svg create mode 100644 images/platforms/color/akkoma.svg.license create mode 100644 images/platforms/color/bluesky.svg create mode 100644 images/platforms/color/bluesky.svg.license create mode 100644 images/platforms/color/discourse.svg create mode 100644 images/platforms/color/discourse.svg.license create mode 100644 images/platforms/color/firefish.svg create mode 100644 images/platforms/color/firefish.svg.license create mode 100644 images/platforms/color/flipboard.svg create mode 100644 images/platforms/color/flipboard.svg.license create mode 100644 images/platforms/color/friendica.svg create mode 100644 images/platforms/color/friendica.svg.license create mode 100644 images/platforms/color/gnusocial.svg create mode 100644 images/platforms/color/gnusocial.svg.license create mode 100644 images/platforms/color/mastodon.svg create mode 100644 images/platforms/color/mastodon.svg.license create mode 100644 images/platforms/color/peertube.svg create mode 100644 images/platforms/color/peertube.svg.license create mode 100644 images/platforms/color/pixelfed.svg create mode 100644 images/platforms/color/pixelfed.svg.license create mode 100644 images/platforms/color/pleroma.svg create mode 100644 images/platforms/color/pleroma.svg.license create mode 100644 images/platforms/color/rss.svg create mode 100644 images/platforms/color/rss.svg.license create mode 100644 images/platforms/color/tumblr.svg create mode 100644 images/platforms/color/tumblr.svg.license create mode 100644 images/platforms/color/wordpress.svg create mode 100644 images/platforms/color/wordpress.svg.license diff --git a/LICENSES/AGPL-3.0-only.txt b/LICENSES/AGPL-3.0-only.txt new file mode 100644 index 0000000000..be3f7b28e5 --- /dev/null +++ b/LICENSES/AGPL-3.0-only.txt @@ -0,0 +1,661 @@ + GNU AFFERO GENERAL PUBLIC LICENSE + Version 3, 19 November 2007 + + Copyright (C) 2007 Free Software Foundation, Inc. + Everyone is permitted to copy and distribute verbatim copies + of this license document, but changing it is not allowed. + + Preamble + + The GNU Affero General Public License is a free, copyleft license for +software and other kinds of works, specifically designed to ensure +cooperation with the community in the case of network server software. + + The licenses for most software and other practical works are designed +to take away your freedom to share and change the works. By contrast, +our General Public Licenses are intended to guarantee your freedom to +share and change all versions of a program--to make sure it remains free +software for all its users. + + When we speak of free software, we are referring to freedom, not +price. Our General Public Licenses are designed to make sure that you +have the freedom to distribute copies of free software (and charge for +them if you wish), that you receive source code or can get it if you +want it, that you can change the software or use pieces of it in new +free programs, and that you know you can do these things. + + Developers that use our General Public Licenses protect your rights +with two steps: (1) assert copyright on the software, and (2) offer +you this License which gives you legal permission to copy, distribute +and/or modify the software. + + A secondary benefit of defending all users' freedom is that +improvements made in alternate versions of the program, if they +receive widespread use, become available for other developers to +incorporate. Many developers of free software are heartened and +encouraged by the resulting cooperation. However, in the case of +software used on network servers, this result may fail to come about. +The GNU General Public License permits making a modified version and +letting the public access it on a server without ever releasing its +source code to the public. + + The GNU Affero General Public License is designed specifically to +ensure that, in such cases, the modified source code becomes available +to the community. It requires the operator of a network server to +provide the source code of the modified version running there to the +users of that server. Therefore, public use of a modified version, on +a publicly accessible server, gives the public access to the source +code of the modified version. + + An older license, called the Affero General Public License and +published by Affero, was designed to accomplish similar goals. This is +a different license, not a version of the Affero GPL, but Affero has +released a new version of the Affero GPL which permits relicensing under +this license. + + The precise terms and conditions for copying, distribution and +modification follow. + + TERMS AND CONDITIONS + + 0. Definitions. + + "This License" refers to version 3 of the GNU Affero General Public License. + + "Copyright" also means copyright-like laws that apply to other kinds of +works, such as semiconductor masks. + + "The Program" refers to any copyrightable work licensed under this +License. Each licensee is addressed as "you". "Licensees" and +"recipients" may be individuals or organizations. + + To "modify" a work means to copy from or adapt all or part of the work +in a fashion requiring copyright permission, other than the making of an +exact copy. The resulting work is called a "modified version" of the +earlier work or a work "based on" the earlier work. + + A "covered work" means either the unmodified Program or a work based +on the Program. + + To "propagate" a work means to do anything with it that, without +permission, would make you directly or secondarily liable for +infringement under applicable copyright law, except executing it on a +computer or modifying a private copy. Propagation includes copying, +distribution (with or without modification), making available to the +public, and in some countries other activities as well. + + To "convey" a work means any kind of propagation that enables other +parties to make or receive copies. Mere interaction with a user through +a computer network, with no transfer of a copy, is not conveying. + + An interactive user interface displays "Appropriate Legal Notices" +to the extent that it includes a convenient and prominently visible +feature that (1) displays an appropriate copyright notice, and (2) +tells the user that there is no warranty for the work (except to the +extent that warranties are provided), that licensees may convey the +work under this License, and how to view a copy of this License. If +the interface presents a list of user commands or options, such as a +menu, a prominent item in the list meets this criterion. + + 1. Source Code. + + The "source code" for a work means the preferred form of the work +for making modifications to it. "Object code" means any non-source +form of a work. + + A "Standard Interface" means an interface that either is an official +standard defined by a recognized standards body, or, in the case of +interfaces specified for a particular programming language, one that +is widely used among developers working in that language. + + The "System Libraries" of an executable work include anything, other +than the work as a whole, that (a) is included in the normal form of +packaging a Major Component, but which is not part of that Major +Component, and (b) serves only to enable use of the work with that +Major Component, or to implement a Standard Interface for which an +implementation is available to the public in source code form. A +"Major Component", in this context, means a major essential component +(kernel, window system, and so on) of the specific operating system +(if any) on which the executable work runs, or a compiler used to +produce the work, or an object code interpreter used to run it. + + The "Corresponding Source" for a work in object code form means all +the source code needed to generate, install, and (for an executable +work) run the object code and to modify the work, including scripts to +control those activities. However, it does not include the work's +System Libraries, or general-purpose tools or generally available free +programs which are used unmodified in performing those activities but +which are not part of the work. For example, Corresponding Source +includes interface definition files associated with source files for +the work, and the source code for shared libraries and dynamically +linked subprograms that the work is specifically designed to require, +such as by intimate data communication or control flow between those +subprograms and other parts of the work. + + The Corresponding Source need not include anything that users +can regenerate automatically from other parts of the Corresponding +Source. + + The Corresponding Source for a work in source code form is that +same work. + + 2. Basic Permissions. + + All rights granted under this License are granted for the term of +copyright on the Program, and are irrevocable provided the stated +conditions are met. This License explicitly affirms your unlimited +permission to run the unmodified Program. The output from running a +covered work is covered by this License only if the output, given its +content, constitutes a covered work. This License acknowledges your +rights of fair use or other equivalent, as provided by copyright law. + + You may make, run and propagate covered works that you do not +convey, without conditions so long as your license otherwise remains +in force. You may convey covered works to others for the sole purpose +of having them make modifications exclusively for you, or provide you +with facilities for running those works, provided that you comply with +the terms of this License in conveying all material for which you do +not control copyright. Those thus making or running the covered works +for you must do so exclusively on your behalf, under your direction +and control, on terms that prohibit them from making any copies of +your copyrighted material outside their relationship with you. + + Conveying under any other circumstances is permitted solely under +the conditions stated below. Sublicensing is not allowed; section 10 +makes it unnecessary. + + 3. Protecting Users' Legal Rights From Anti-Circumvention Law. + + No covered work shall be deemed part of an effective technological +measure under any applicable law fulfilling obligations under article +11 of the WIPO copyright treaty adopted on 20 December 1996, or +similar laws prohibiting or restricting circumvention of such +measures. + + When you convey a covered work, you waive any legal power to forbid +circumvention of technological measures to the extent such circumvention +is effected by exercising rights under this License with respect to +the covered work, and you disclaim any intention to limit operation or +modification of the work as a means of enforcing, against the work's +users, your or third parties' legal rights to forbid circumvention of +technological measures. + + 4. Conveying Verbatim Copies. + + You may convey verbatim copies of the Program's source code as you +receive it, in any medium, provided that you conspicuously and +appropriately publish on each copy an appropriate copyright notice; +keep intact all notices stating that this License and any +non-permissive terms added in accord with section 7 apply to the code; +keep intact all notices of the absence of any warranty; and give all +recipients a copy of this License along with the Program. + + You may charge any price or no price for each copy that you convey, +and you may offer support or warranty protection for a fee. + + 5. Conveying Modified Source Versions. + + You may convey a work based on the Program, or the modifications to +produce it from the Program, in the form of source code under the +terms of section 4, provided that you also meet all of these conditions: + + a) The work must carry prominent notices stating that you modified + it, and giving a relevant date. + + b) The work must carry prominent notices stating that it is + released under this License and any conditions added under section + 7. This requirement modifies the requirement in section 4 to + "keep intact all notices". + + c) You must license the entire work, as a whole, under this + License to anyone who comes into possession of a copy. This + License will therefore apply, along with any applicable section 7 + additional terms, to the whole of the work, and all its parts, + regardless of how they are packaged. This License gives no + permission to license the work in any other way, but it does not + invalidate such permission if you have separately received it. + + d) If the work has interactive user interfaces, each must display + Appropriate Legal Notices; however, if the Program has interactive + interfaces that do not display Appropriate Legal Notices, your + work need not make them do so. + + A compilation of a covered work with other separate and independent +works, which are not by their nature extensions of the covered work, +and which are not combined with it such as to form a larger program, +in or on a volume of a storage or distribution medium, is called an +"aggregate" if the compilation and its resulting copyright are not +used to limit the access or legal rights of the compilation's users +beyond what the individual works permit. Inclusion of a covered work +in an aggregate does not cause this License to apply to the other +parts of the aggregate. + + 6. Conveying Non-Source Forms. + + You may convey a covered work in object code form under the terms +of sections 4 and 5, provided that you also convey the +machine-readable Corresponding Source under the terms of this License, +in one of these ways: + + a) Convey the object code in, or embodied in, a physical product + (including a physical distribution medium), accompanied by the + Corresponding Source fixed on a durable physical medium + customarily used for software interchange. + + b) Convey the object code in, or embodied in, a physical product + (including a physical distribution medium), accompanied by a + written offer, valid for at least three years and valid for as + long as you offer spare parts or customer support for that product + model, to give anyone who possesses the object code either (1) a + copy of the Corresponding Source for all the software in the + product that is covered by this License, on a durable physical + medium customarily used for software interchange, for a price no + more than your reasonable cost of physically performing this + conveying of source, or (2) access to copy the + Corresponding Source from a network server at no charge. + + c) Convey individual copies of the object code with a copy of the + written offer to provide the Corresponding Source. This + alternative is allowed only occasionally and noncommercially, and + only if you received the object code with such an offer, in accord + with subsection 6b. + + d) Convey the object code by offering access from a designated + place (gratis or for a charge), and offer equivalent access to the + Corresponding Source in the same way through the same place at no + further charge. You need not require recipients to copy the + Corresponding Source along with the object code. If the place to + copy the object code is a network server, the Corresponding Source + may be on a different server (operated by you or a third party) + that supports equivalent copying facilities, provided you maintain + clear directions next to the object code saying where to find the + Corresponding Source. Regardless of what server hosts the + Corresponding Source, you remain obligated to ensure that it is + available for as long as needed to satisfy these requirements. + + e) Convey the object code using peer-to-peer transmission, provided + you inform other peers where the object code and Corresponding + Source of the work are being offered to the general public at no + charge under subsection 6d. + + A separable portion of the object code, whose source code is excluded +from the Corresponding Source as a System Library, need not be +included in conveying the object code work. + + A "User Product" is either (1) a "consumer product", which means any +tangible personal property which is normally used for personal, family, +or household purposes, or (2) anything designed or sold for incorporation +into a dwelling. In determining whether a product is a consumer product, +doubtful cases shall be resolved in favor of coverage. For a particular +product received by a particular user, "normally used" refers to a +typical or common use of that class of product, regardless of the status +of the particular user or of the way in which the particular user +actually uses, or expects or is expected to use, the product. A product +is a consumer product regardless of whether the product has substantial +commercial, industrial or non-consumer uses, unless such uses represent +the only significant mode of use of the product. + + "Installation Information" for a User Product means any methods, +procedures, authorization keys, or other information required to install +and execute modified versions of a covered work in that User Product from +a modified version of its Corresponding Source. The information must +suffice to ensure that the continued functioning of the modified object +code is in no case prevented or interfered with solely because +modification has been made. + + If you convey an object code work under this section in, or with, or +specifically for use in, a User Product, and the conveying occurs as +part of a transaction in which the right of possession and use of the +User Product is transferred to the recipient in perpetuity or for a +fixed term (regardless of how the transaction is characterized), the +Corresponding Source conveyed under this section must be accompanied +by the Installation Information. But this requirement does not apply +if neither you nor any third party retains the ability to install +modified object code on the User Product (for example, the work has +been installed in ROM). + + The requirement to provide Installation Information does not include a +requirement to continue to provide support service, warranty, or updates +for a work that has been modified or installed by the recipient, or for +the User Product in which it has been modified or installed. Access to a +network may be denied when the modification itself materially and +adversely affects the operation of the network or violates the rules and +protocols for communication across the network. + + Corresponding Source conveyed, and Installation Information provided, +in accord with this section must be in a format that is publicly +documented (and with an implementation available to the public in +source code form), and must require no special password or key for +unpacking, reading or copying. + + 7. Additional Terms. + + "Additional permissions" are terms that supplement the terms of this +License by making exceptions from one or more of its conditions. +Additional permissions that are applicable to the entire Program shall +be treated as though they were included in this License, to the extent +that they are valid under applicable law. If additional permissions +apply only to part of the Program, that part may be used separately +under those permissions, but the entire Program remains governed by +this License without regard to the additional permissions. + + When you convey a copy of a covered work, you may at your option +remove any additional permissions from that copy, or from any part of +it. (Additional permissions may be written to require their own +removal in certain cases when you modify the work.) You may place +additional permissions on material, added by you to a covered work, +for which you have or can give appropriate copyright permission. + + Notwithstanding any other provision of this License, for material you +add to a covered work, you may (if authorized by the copyright holders of +that material) supplement the terms of this License with terms: + + a) Disclaiming warranty or limiting liability differently from the + terms of sections 15 and 16 of this License; or + + b) Requiring preservation of specified reasonable legal notices or + author attributions in that material or in the Appropriate Legal + Notices displayed by works containing it; or + + c) Prohibiting misrepresentation of the origin of that material, or + requiring that modified versions of such material be marked in + reasonable ways as different from the original version; or + + d) Limiting the use for publicity purposes of names of licensors or + authors of the material; or + + e) Declining to grant rights under trademark law for use of some + trade names, trademarks, or service marks; or + + f) Requiring indemnification of licensors and authors of that + material by anyone who conveys the material (or modified versions of + it) with contractual assumptions of liability to the recipient, for + any liability that these contractual assumptions directly impose on + those licensors and authors. + + All other non-permissive additional terms are considered "further +restrictions" within the meaning of section 10. If the Program as you +received it, or any part of it, contains a notice stating that it is +governed by this License along with a term that is a further +restriction, you may remove that term. If a license document contains +a further restriction but permits relicensing or conveying under this +License, you may add to a covered work material governed by the terms +of that license document, provided that the further restriction does +not survive such relicensing or conveying. + + If you add terms to a covered work in accord with this section, you +must place, in the relevant source files, a statement of the +additional terms that apply to those files, or a notice indicating +where to find the applicable terms. + + Additional terms, permissive or non-permissive, may be stated in the +form of a separately written license, or stated as exceptions; +the above requirements apply either way. + + 8. Termination. + + You may not propagate or modify a covered work except as expressly +provided under this License. Any attempt otherwise to propagate or +modify it is void, and will automatically terminate your rights under +this License (including any patent licenses granted under the third +paragraph of section 11). + + However, if you cease all violation of this License, then your +license from a particular copyright holder is reinstated (a) +provisionally, unless and until the copyright holder explicitly and +finally terminates your license, and (b) permanently, if the copyright +holder fails to notify you of the violation by some reasonable means +prior to 60 days after the cessation. + + Moreover, your license from a particular copyright holder is +reinstated permanently if the copyright holder notifies you of the +violation by some reasonable means, this is the first time you have +received notice of violation of this License (for any work) from that +copyright holder, and you cure the violation prior to 30 days after +your receipt of the notice. + + Termination of your rights under this section does not terminate the +licenses of parties who have received copies or rights from you under +this License. If your rights have been terminated and not permanently +reinstated, you do not qualify to receive new licenses for the same +material under section 10. + + 9. Acceptance Not Required for Having Copies. + + You are not required to accept this License in order to receive or +run a copy of the Program. Ancillary propagation of a covered work +occurring solely as a consequence of using peer-to-peer transmission +to receive a copy likewise does not require acceptance. However, +nothing other than this License grants you permission to propagate or +modify any covered work. These actions infringe copyright if you do +not accept this License. Therefore, by modifying or propagating a +covered work, you indicate your acceptance of this License to do so. + + 10. Automatic Licensing of Downstream Recipients. + + Each time you convey a covered work, the recipient automatically +receives a license from the original licensors, to run, modify and +propagate that work, subject to this License. You are not responsible +for enforcing compliance by third parties with this License. + + An "entity transaction" is a transaction transferring control of an +organization, or substantially all assets of one, or subdividing an +organization, or merging organizations. If propagation of a covered +work results from an entity transaction, each party to that +transaction who receives a copy of the work also receives whatever +licenses to the work the party's predecessor in interest had or could +give under the previous paragraph, plus a right to possession of the +Corresponding Source of the work from the predecessor in interest, if +the predecessor has it or can get it with reasonable efforts. + + You may not impose any further restrictions on the exercise of the +rights granted or affirmed under this License. For example, you may +not impose a license fee, royalty, or other charge for exercise of +rights granted under this License, and you may not initiate litigation +(including a cross-claim or counterclaim in a lawsuit) alleging that +any patent claim is infringed by making, using, selling, offering for +sale, or importing the Program or any portion of it. + + 11. Patents. + + A "contributor" is a copyright holder who authorizes use under this +License of the Program or a work on which the Program is based. The +work thus licensed is called the contributor's "contributor version". + + A contributor's "essential patent claims" are all patent claims +owned or controlled by the contributor, whether already acquired or +hereafter acquired, that would be infringed by some manner, permitted +by this License, of making, using, or selling its contributor version, +but do not include claims that would be infringed only as a +consequence of further modification of the contributor version. For +purposes of this definition, "control" includes the right to grant +patent sublicenses in a manner consistent with the requirements of +this License. + + Each contributor grants you a non-exclusive, worldwide, royalty-free +patent license under the contributor's essential patent claims, to +make, use, sell, offer for sale, import and otherwise run, modify and +propagate the contents of its contributor version. + + In the following three paragraphs, a "patent license" is any express +agreement or commitment, however denominated, not to enforce a patent +(such as an express permission to practice a patent or covenant not to +sue for patent infringement). To "grant" such a patent license to a +party means to make such an agreement or commitment not to enforce a +patent against the party. + + If you convey a covered work, knowingly relying on a patent license, +and the Corresponding Source of the work is not available for anyone +to copy, free of charge and under the terms of this License, through a +publicly available network server or other readily accessible means, +then you must either (1) cause the Corresponding Source to be so +available, or (2) arrange to deprive yourself of the benefit of the +patent license for this particular work, or (3) arrange, in a manner +consistent with the requirements of this License, to extend the patent +license to downstream recipients. "Knowingly relying" means you have +actual knowledge that, but for the patent license, your conveying the +covered work in a country, or your recipient's use of the covered work +in a country, would infringe one or more identifiable patents in that +country that you have reason to believe are valid. + + If, pursuant to or in connection with a single transaction or +arrangement, you convey, or propagate by procuring conveyance of, a +covered work, and grant a patent license to some of the parties +receiving the covered work authorizing them to use, propagate, modify +or convey a specific copy of the covered work, then the patent license +you grant is automatically extended to all recipients of the covered +work and works based on it. + + A patent license is "discriminatory" if it does not include within +the scope of its coverage, prohibits the exercise of, or is +conditioned on the non-exercise of one or more of the rights that are +specifically granted under this License. You may not convey a covered +work if you are a party to an arrangement with a third party that is +in the business of distributing software, under which you make payment +to the third party based on the extent of your activity of conveying +the work, and under which the third party grants, to any of the +parties who would receive the covered work from you, a discriminatory +patent license (a) in connection with copies of the covered work +conveyed by you (or copies made from those copies), or (b) primarily +for and in connection with specific products or compilations that +contain the covered work, unless you entered into that arrangement, +or that patent license was granted, prior to 28 March 2007. + + Nothing in this License shall be construed as excluding or limiting +any implied license or other defenses to infringement that may +otherwise be available to you under applicable patent law. + + 12. No Surrender of Others' Freedom. + + If conditions are imposed on you (whether by court order, agreement or +otherwise) that contradict the conditions of this License, they do not +excuse you from the conditions of this License. If you cannot convey a +covered work so as to satisfy simultaneously your obligations under this +License and any other pertinent obligations, then as a consequence you may +not convey it at all. For example, if you agree to terms that obligate you +to collect a royalty for further conveying from those to whom you convey +the Program, the only way you could satisfy both those terms and this +License would be to refrain entirely from conveying the Program. + + 13. Remote Network Interaction; Use with the GNU General Public License. + + Notwithstanding any other provision of this License, if you modify the +Program, your modified version must prominently offer all users +interacting with it remotely through a computer network (if your version +supports such interaction) an opportunity to receive the Corresponding +Source of your version by providing access to the Corresponding Source +from a network server at no charge, through some standard or customary +means of facilitating copying of software. This Corresponding Source +shall include the Corresponding Source for any work covered by version 3 +of the GNU General Public License that is incorporated pursuant to the +following paragraph. + + Notwithstanding any other provision of this License, you have +permission to link or combine any covered work with a work licensed +under version 3 of the GNU General Public License into a single +combined work, and to convey the resulting work. The terms of this +License will continue to apply to the part which is the covered work, +but the work with which it is combined will remain governed by version +3 of the GNU General Public License. + + 14. Revised Versions of this License. + + The Free Software Foundation may publish revised and/or new versions of +the GNU Affero General Public License from time to time. Such new versions +will be similar in spirit to the present version, but may differ in detail to +address new problems or concerns. + + Each version is given a distinguishing version number. If the +Program specifies that a certain numbered version of the GNU Affero General +Public License "or any later version" applies to it, you have the +option of following the terms and conditions either of that numbered +version or of any later version published by the Free Software +Foundation. If the Program does not specify a version number of the +GNU Affero General Public License, you may choose any version ever published +by the Free Software Foundation. + + If the Program specifies that a proxy can decide which future +versions of the GNU Affero General Public License can be used, that proxy's +public statement of acceptance of a version permanently authorizes you +to choose that version for the Program. + + Later license versions may give you additional or different +permissions. However, no additional obligations are imposed on any +author or copyright holder as a result of your choosing to follow a +later version. + + 15. Disclaimer of Warranty. + + THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY +APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT +HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY +OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, +THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR +PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM +IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF +ALL NECESSARY SERVICING, REPAIR OR CORRECTION. + + 16. Limitation of Liability. + + IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING +WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS +THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY +GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE +USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF +DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD +PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), +EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF +SUCH DAMAGES. + + 17. Interpretation of Sections 15 and 16. + + If the disclaimer of warranty and limitation of liability provided +above cannot be given local legal effect according to their terms, +reviewing courts shall apply local law that most closely approximates +an absolute waiver of all civil liability in connection with the +Program, unless a warranty or assumption of liability accompanies a +copy of the Program in return for a fee. + + END OF TERMS AND CONDITIONS + + How to Apply These Terms to Your New Programs + + If you develop a new program, and you want it to be of the greatest +possible use to the public, the best way to achieve this is to make it +free software which everyone can redistribute and change under these terms. + + To do so, attach the following notices to the program. It is safest +to attach them to the start of each source file to most effectively +state the exclusion of warranty; and each file should have at least +the "copyright" line and a pointer to where the full notice is found. + + + Copyright (C) + + This program is free software: you can redistribute it and/or modify + it under the terms of the GNU Affero General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU Affero General Public License for more details. + + You should have received a copy of the GNU Affero General Public License + along with this program. If not, see . + +Also add information on how to contact you by electronic and paper mail. + + If your software can interact with users remotely through a computer +network, you should also make sure that it provides a way for users to +get its source. For example, if your program is a web application, its +interface could display a "Source" link that leads users to an archive +of the code. There are many ways you could offer source, and different +solutions will be better for different programs; see section 13 for the +specific requirements. + + You should also get your employer (if you work as a programmer) or school, +if any, to sign a "copyright disclaimer" for the program, if necessary. +For more information on this, and how to apply and follow the GNU AGPL, see +. diff --git a/LICENSES/CC-PDDC.txt b/LICENSES/CC-PDDC.txt new file mode 100644 index 0000000000..846c9c00b8 --- /dev/null +++ b/LICENSES/CC-PDDC.txt @@ -0,0 +1,9 @@ +Creative Commons Public Domain Dedication and Certification + +The person or persons who have associated work with this document (the "Dedicator" or "Certifier") hereby either (a) certifies that, to the best of his knowledge, the work of authorship identified is in the public domain of the country from which the work is published, or (b) hereby dedicates whatever copyright the dedicators holds in the work of authorship identified below (the "Work") to the public domain. A certifier, moreover, dedicates any copyright interest he may have in the associated work, and for these purposes, is described as a "dedicator" below. + +A certifier has taken reasonable steps to verify the copyright status of this work. Certifier recognizes that his good faith efforts may not shield him from liability if in fact the work certified is not in the public domain. + +Dedicator makes this dedication for the benefit of the public at large and to the detriment of the Dedicator's heirs and successors. Dedicator intends this dedication to be an overt act of relinquishment in perpetuity of all present and future rights under copyright law, whether vested or contingent, in the Work. Dedicator understands that such relinquishment of all rights includes the relinquishment of all rights to enforce (by lawsuit or otherwise) those copyrights in the Work. + +Dedicator recognizes that, once placed in the public domain, the Work may be freely reproduced, distributed, transmitted, used, modified, built upon, or otherwise exploited by anyone for any purpose, commercial or non-commercial, and in any way, including by methods that have not yet been invented or conceived. diff --git a/LICENSES/EUPL-1.2.txt b/LICENSES/EUPL-1.2.txt new file mode 100644 index 0000000000..7aed2eafc9 --- /dev/null +++ b/LICENSES/EUPL-1.2.txt @@ -0,0 +1,287 @@ + EUROPEAN UNION PUBLIC LICENCE v. 1.2 + EUPL © the European Union 2007, 2016 + +This European Union Public Licence (the 'EUPL') applies to the Work (as defined +below) which is provided under the terms of this Licence. Any use of the Work, +other than as authorised under this Licence is prohibited (to the extent such +use is covered by a right of the copyright holder of the Work). + +The Work is provided under the terms of this Licence when the Licensor (as +defined below) has placed the following notice immediately following the +copyright notice for the Work: + + Licensed under the EUPL + +or has expressed by any other means his willingness to license under the EUPL. + +1. Definitions + +In this Licence, the following terms have the following meaning: + +- 'The Licence': this Licence. + +- 'The Original Work': the work or software distributed or communicated by the + Licensor under this Licence, available as Source Code and also as Executable + Code as the case may be. + +- 'Derivative Works': the works or software that could be created by the + Licensee, based upon the Original Work or modifications thereof. This Licence + does not define the extent of modification or dependence on the Original Work + required in order to classify a work as a Derivative Work; this extent is + determined by copyright law applicable in the country mentioned in Article 15. + +- 'The Work': the Original Work or its Derivative Works. + +- 'The Source Code': the human-readable form of the Work which is the most + convenient for people to study and modify. + +- 'The Executable Code': any code which has generally been compiled and which is + meant to be interpreted by a computer as a program. + +- 'The Licensor': the natural or legal person that distributes or communicates + the Work under the Licence. + +- 'Contributor(s)': any natural or legal person who modifies the Work under the + Licence, or otherwise contributes to the creation of a Derivative Work. + +- 'The Licensee' or 'You': any natural or legal person who makes any usage of + the Work under the terms of the Licence. + +- 'Distribution' or 'Communication': any act of selling, giving, lending, + renting, distributing, communicating, transmitting, or otherwise making + available, online or offline, copies of the Work or providing access to its + essential functionalities at the disposal of any other natural or legal + person. + +2. Scope of the rights granted by the Licence + +The Licensor hereby grants You a worldwide, royalty-free, non-exclusive, +sublicensable licence to do the following, for the duration of copyright vested +in the Original Work: + +- use the Work in any circumstance and for all usage, +- reproduce the Work, +- modify the Work, and make Derivative Works based upon the Work, +- communicate to the public, including the right to make available or display + the Work or copies thereof to the public and perform publicly, as the case may + be, the Work, +- distribute the Work or copies thereof, +- lend and rent the Work or copies thereof, +- sublicense rights in the Work or copies thereof. + +Those rights can be exercised on any media, supports and formats, whether now +known or later invented, as far as the applicable law permits so. + +In the countries where moral rights apply, the Licensor waives his right to +exercise his moral right to the extent allowed by law in order to make effective +the licence of the economic rights here above listed. + +The Licensor grants to the Licensee royalty-free, non-exclusive usage rights to +any patents held by the Licensor, to the extent necessary to make use of the +rights granted on the Work under this Licence. + +3. Communication of the Source Code + +The Licensor may provide the Work either in its Source Code form, or as +Executable Code. If the Work is provided as Executable Code, the Licensor +provides in addition a machine-readable copy of the Source Code of the Work +along with each copy of the Work that the Licensor distributes or indicates, in +a notice following the copyright notice attached to the Work, a repository where +the Source Code is easily and freely accessible for as long as the Licensor +continues to distribute or communicate the Work. + +4. Limitations on copyright + +Nothing in this Licence is intended to deprive the Licensee of the benefits from +any exception or limitation to the exclusive rights of the rights owners in the +Work, of the exhaustion of those rights or of other applicable limitations +thereto. + +5. Obligations of the Licensee + +The grant of the rights mentioned above is subject to some restrictions and +obligations imposed on the Licensee. Those obligations are the following: + +Attribution right: The Licensee shall keep intact all copyright, patent or +trademarks notices and all notices that refer to the Licence and to the +disclaimer of warranties. The Licensee must include a copy of such notices and a +copy of the Licence with every copy of the Work he/she distributes or +communicates. The Licensee must cause any Derivative Work to carry prominent +notices stating that the Work has been modified and the date of modification. + +Copyleft clause: If the Licensee distributes or communicates copies of the +Original Works or Derivative Works, this Distribution or Communication will be +done under the terms of this Licence or of a later version of this Licence +unless the Original Work is expressly distributed only under this version of the +Licence — for example by communicating 'EUPL v. 1.2 only'. The Licensee +(becoming Licensor) cannot offer or impose any additional terms or conditions on +the Work or Derivative Work that alter or restrict the terms of the Licence. + +Compatibility clause: If the Licensee Distributes or Communicates Derivative +Works or copies thereof based upon both the Work and another work licensed under +a Compatible Licence, this Distribution or Communication can be done under the +terms of this Compatible Licence. For the sake of this clause, 'Compatible +Licence' refers to the licences listed in the appendix attached to this Licence. +Should the Licensee's obligations under the Compatible Licence conflict with +his/her obligations under this Licence, the obligations of the Compatible +Licence shall prevail. + +Provision of Source Code: When distributing or communicating copies of the Work, +the Licensee will provide a machine-readable copy of the Source Code or indicate +a repository where this Source will be easily and freely available for as long +as the Licensee continues to distribute or communicate the Work. + +Legal Protection: This Licence does not grant permission to use the trade names, +trademarks, service marks, or names of the Licensor, except as required for +reasonable and customary use in describing the origin of the Work and +reproducing the content of the copyright notice. + +6. Chain of Authorship + +The original Licensor warrants that the copyright in the Original Work granted +hereunder is owned by him/her or licensed to him/her and that he/she has the +power and authority to grant the Licence. + +Each Contributor warrants that the copyright in the modifications he/she brings +to the Work are owned by him/her or licensed to him/her and that he/she has the +power and authority to grant the Licence. + +Each time You accept the Licence, the original Licensor and subsequent +Contributors grant You a licence to their contributions to the Work, under the +terms of this Licence. + +7. Disclaimer of Warranty + +The Work is a work in progress, which is continuously improved by numerous +Contributors. It is not a finished work and may therefore contain defects or +'bugs' inherent to this type of development. + +For the above reason, the Work is provided under the Licence on an 'as is' basis +and without warranties of any kind concerning the Work, including without +limitation merchantability, fitness for a particular purpose, absence of defects +or errors, accuracy, non-infringement of intellectual property rights other than +copyright as stated in Article 6 of this Licence. + +This disclaimer of warranty is an essential part of the Licence and a condition +for the grant of any rights to the Work. + +8. Disclaimer of Liability + +Except in the cases of wilful misconduct or damages directly caused to natural +persons, the Licensor will in no event be liable for any direct or indirect, +material or moral, damages of any kind, arising out of the Licence or of the use +of the Work, including without limitation, damages for loss of goodwill, work +stoppage, computer failure or malfunction, loss of data or any commercial +damage, even if the Licensor has been advised of the possibility of such damage. +However, the Licensor will be liable under statutory product liability laws as +far such laws apply to the Work. + +9. Additional agreements + +While distributing the Work, You may choose to conclude an additional agreement, +defining obligations or services consistent with this Licence. However, if +accepting obligations, You may act only on your own behalf and on your sole +responsibility, not on behalf of the original Licensor or any other Contributor, +and only if You agree to indemnify, defend, and hold each Contributor harmless +for any liability incurred by, or claims asserted against such Contributor by +the fact You have accepted any warranty or additional liability. + +10. Acceptance of the Licence + +The provisions of this Licence can be accepted by clicking on an icon 'I agree' +placed under the bottom of a window displaying the text of this Licence or by +affirming consent in any other similar way, in accordance with the rules of +applicable law. Clicking on that icon indicates your clear and irrevocable +acceptance of this Licence and all of its terms and conditions. + +Similarly, you irrevocably accept this Licence and all of its terms and +conditions by exercising any rights granted to You by Article 2 of this Licence, +such as the use of the Work, the creation by You of a Derivative Work or the +Distribution or Communication by You of the Work or copies thereof. + +11. Information to the public + +In case of any Distribution or Communication of the Work by means of electronic +communication by You (for example, by offering to download the Work from a +remote location) the distribution channel or media (for example, a website) must +at least provide to the public the information requested by the applicable law +regarding the Licensor, the Licence and the way it may be accessible, concluded, +stored and reproduced by the Licensee. + +12. Termination of the Licence + +The Licence and the rights granted hereunder will terminate automatically upon +any breach by the Licensee of the terms of the Licence. + +Such a termination will not terminate the licences of any person who has +received the Work from the Licensee under the Licence, provided such persons +remain in full compliance with the Licence. + +13. Miscellaneous + +Without prejudice of Article 9 above, the Licence represents the complete +agreement between the Parties as to the Work. + +If any provision of the Licence is invalid or unenforceable under applicable +law, this will not affect the validity or enforceability of the Licence as a +whole. Such provision will be construed or reformed so as necessary to make it +valid and enforceable. + +The European Commission may publish other linguistic versions or new versions of +this Licence or updated versions of the Appendix, so far this is required and +reasonable, without reducing the scope of the rights granted by the Licence. New +versions of the Licence will be published with a unique version number. + +All linguistic versions of this Licence, approved by the European Commission, +have identical value. Parties can take advantage of the linguistic version of +their choice. + +14. Jurisdiction + +Without prejudice to specific agreement between parties, + +- any litigation resulting from the interpretation of this License, arising + between the European Union institutions, bodies, offices or agencies, as a + Licensor, and any Licensee, will be subject to the jurisdiction of the Court + of Justice of the European Union, as laid down in article 272 of the Treaty on + the Functioning of the European Union, + +- any litigation arising between other parties and resulting from the + interpretation of this License, will be subject to the exclusive jurisdiction + of the competent court where the Licensor resides or conducts its primary + business. + +15. Applicable Law + +Without prejudice to specific agreement between parties, + +- this Licence shall be governed by the law of the European Union Member State + where the Licensor has his seat, resides or has his registered office, + +- this licence shall be governed by Belgian law if the Licensor has no seat, + residence or registered office inside a European Union Member State. + +Appendix + +'Compatible Licences' according to Article 5 EUPL are: + +- GNU General Public License (GPL) v. 2, v. 3 +- GNU Affero General Public License (AGPL) v. 3 +- Open Software License (OSL) v. 2.1, v. 3.0 +- Eclipse Public License (EPL) v. 1.0 +- CeCILL v. 2.0, v. 2.1 +- Mozilla Public Licence (MPL) v. 2 +- GNU Lesser General Public Licence (LGPL) v. 2.1, v. 3 +- Creative Commons Attribution-ShareAlike v. 3.0 Unported (CC BY-SA 3.0) for + works other than software +- European Union Public Licence (EUPL) v. 1.1, v. 1.2 +- Québec Free and Open-Source Licence — Reciprocity (LiLiQ-R) or Strong + Reciprocity (LiLiQ-R+). + +The European Commission may update this Appendix to later versions of the above +licences without producing a new version of the EUPL, as long as they provide +the rights granted in Article 2 of this Licence and protect the covered Source +Code from exclusive appropriation. + +All other changes or additions to this Appendix require the production of a new +EUPL version. diff --git a/LICENSES/Zlib.txt b/LICENSES/Zlib.txt new file mode 100644 index 0000000000..480c61edca --- /dev/null +++ b/LICENSES/Zlib.txt @@ -0,0 +1,15 @@ +This software is provided 'as-is', without any express or implied +warranty. In no event will the authors be held liable for any damages +arising from the use of this software. + +Permission is granted to anyone to use this software for any purpose, +including commercial applications, and to alter it and redistribute it +freely, subject to the following restrictions: + +1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. +2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. +3. This notice may not be removed or altered from any source distribution. diff --git a/images/platforms/black/akkoma.svg b/images/platforms/black/akkoma.svg new file mode 100644 index 0000000000..db6fbd5372 --- /dev/null +++ b/images/platforms/black/akkoma.svg @@ -0,0 +1,7 @@ + + + Akkoma + + + + \ No newline at end of file diff --git a/images/platforms/black/akkoma.svg.license b/images/platforms/black/akkoma.svg.license new file mode 100644 index 0000000000..3ffce40c5f --- /dev/null +++ b/images/platforms/black/akkoma.svg.license @@ -0,0 +1,2 @@ +SPDX-FileCopyrightText: wakest https://codeberg.org/FediverseIconography +SPDX-License-Identifier: GPL-3.0-only diff --git a/images/platforms/black/bluesky.svg b/images/platforms/black/bluesky.svg new file mode 100644 index 0000000000..ce0126edac --- /dev/null +++ b/images/platforms/black/bluesky.svg @@ -0,0 +1 @@ +Bluesky \ No newline at end of file diff --git a/images/platforms/black/bluesky.svg.license b/images/platforms/black/bluesky.svg.license new file mode 100644 index 0000000000..00bd211190 --- /dev/null +++ b/images/platforms/black/bluesky.svg.license @@ -0,0 +1,2 @@ +SPDX-FileCopyrightText: https://github.com/simple-icons/simple-icons/ +SPDX-License-Identifier: CC0-1.0 diff --git a/images/platforms/black/calckey.svg b/images/platforms/black/calckey.svg new file mode 100644 index 0000000000..b7d247c66f --- /dev/null +++ b/images/platforms/black/calckey.svg @@ -0,0 +1,13 @@ + + + Calckey + + + + + + + + + + \ No newline at end of file diff --git a/images/platforms/black/calckey.svg.license b/images/platforms/black/calckey.svg.license new file mode 100644 index 0000000000..482f1809d0 --- /dev/null +++ b/images/platforms/black/calckey.svg.license @@ -0,0 +1,2 @@ +SPDX-FileCopyrightText: ThatOneCalculator https://commons.wikimedia.org/wiki/File:Calckey_Logomark.svg +SPDX-License-Identifier: CC-BY-4.0 diff --git a/images/platforms/black/diaspora.svg b/images/platforms/black/diaspora.svg new file mode 100644 index 0000000000..5eedacaccc --- /dev/null +++ b/images/platforms/black/diaspora.svg @@ -0,0 +1,8 @@ + + + + + + \ No newline at end of file diff --git a/images/platforms/black/diaspora.svg.license b/images/platforms/black/diaspora.svg.license new file mode 100644 index 0000000000..33acc29726 --- /dev/null +++ b/images/platforms/black/diaspora.svg.license @@ -0,0 +1,2 @@ +SPDX-FileCopyrightText: Matthias Pfefferle https://github.com/pfefferle/openwebicons?ref=svgrepo.com +SPDX-License-Identifier: CC0-1.0 diff --git a/images/platforms/black/discourse.svg b/images/platforms/black/discourse.svg new file mode 100644 index 0000000000..250d6389ed --- /dev/null +++ b/images/platforms/black/discourse.svg @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/images/platforms/black/discourse.svg.license b/images/platforms/black/discourse.svg.license new file mode 100644 index 0000000000..38caf821b0 --- /dev/null +++ b/images/platforms/black/discourse.svg.license @@ -0,0 +1,2 @@ +SPDX-FileCopyrightText: Kenan Gundogan https://www.svgrepo.com/svg/394118/discourse +SPDX-License-Identifier: MIT diff --git a/images/platforms/black/email.svg b/images/platforms/black/email.svg new file mode 100644 index 0000000000..04c39cbfd9 --- /dev/null +++ b/images/platforms/black/email.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/images/platforms/black/email.svg.license b/images/platforms/black/email.svg.license new file mode 100644 index 0000000000..d51dd6d76e --- /dev/null +++ b/images/platforms/black/email.svg.license @@ -0,0 +1,2 @@ +SPDX-FileCopyrightText: Instructure Ui https://github.com/instructure/instructure-ui?ref=svgrepo.com +SPDX-License-Identifier: MIT diff --git a/images/platforms/black/firefish.svg b/images/platforms/black/firefish.svg new file mode 100644 index 0000000000..800668c539 --- /dev/null +++ b/images/platforms/black/firefish.svg @@ -0,0 +1 @@ +Firefish \ No newline at end of file diff --git a/images/platforms/black/firefish.svg.license b/images/platforms/black/firefish.svg.license new file mode 100644 index 0000000000..00bd211190 --- /dev/null +++ b/images/platforms/black/firefish.svg.license @@ -0,0 +1,2 @@ +SPDX-FileCopyrightText: https://github.com/simple-icons/simple-icons/ +SPDX-License-Identifier: CC0-1.0 diff --git a/images/platforms/black/flipboard.svg b/images/platforms/black/flipboard.svg new file mode 100644 index 0000000000..5e30e51ff1 --- /dev/null +++ b/images/platforms/black/flipboard.svg @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/images/platforms/black/flipboard.svg.license b/images/platforms/black/flipboard.svg.license new file mode 100644 index 0000000000..fa07a94d1f --- /dev/null +++ b/images/platforms/black/flipboard.svg.license @@ -0,0 +1,2 @@ +SPDX-FileCopyrightText: Kenan Gundogan https://www.svgrepo.com/svg/394160/flipboard +SPDX-License-Identifier: MIT diff --git a/images/platforms/black/friendica.svg b/images/platforms/black/friendica.svg new file mode 100644 index 0000000000..9195f0a8d5 --- /dev/null +++ b/images/platforms/black/friendica.svg @@ -0,0 +1,8 @@ + + + + + + \ No newline at end of file diff --git a/images/platforms/black/friendica.svg.license b/images/platforms/black/friendica.svg.license new file mode 100644 index 0000000000..0c5f79700d --- /dev/null +++ b/images/platforms/black/friendica.svg.license @@ -0,0 +1,3 @@ +SPDX-FileCopyrightText: Matthias Pfefferle https://github.com/pfefferle/openwebicons?ref=svgrepo.com +SPDX-License-Identifier: CC0-1.0 + diff --git a/images/platforms/black/glitchsoc.svg b/images/platforms/black/glitchsoc.svg new file mode 100644 index 0000000000..b097a6608a --- /dev/null +++ b/images/platforms/black/glitchsoc.svg @@ -0,0 +1,7 @@ + + + Glitch-soc Alt 1 + + + + \ No newline at end of file diff --git a/images/platforms/black/glitchsoc.svg.license b/images/platforms/black/glitchsoc.svg.license new file mode 100644 index 0000000000..a53eead85a --- /dev/null +++ b/images/platforms/black/glitchsoc.svg.license @@ -0,0 +1,2 @@ +SPDX-FileCopyrightText: Copyright (C) 2016-2024 Eugen Rochko & other Mastodon contributors +SPDX-License-Identifier: AGPL-3.0-only diff --git a/images/platforms/black/gnusocial.svg b/images/platforms/black/gnusocial.svg new file mode 100644 index 0000000000..8314f315f0 --- /dev/null +++ b/images/platforms/black/gnusocial.svg @@ -0,0 +1,10 @@ + + + + + + \ No newline at end of file diff --git a/images/platforms/black/gnusocial.svg.license b/images/platforms/black/gnusocial.svg.license new file mode 100644 index 0000000000..33acc29726 --- /dev/null +++ b/images/platforms/black/gnusocial.svg.license @@ -0,0 +1,2 @@ +SPDX-FileCopyrightText: Matthias Pfefferle https://github.com/pfefferle/openwebicons?ref=svgrepo.com +SPDX-License-Identifier: CC0-1.0 diff --git a/images/platforms/black/gotosocial.svg b/images/platforms/black/gotosocial.svg new file mode 100644 index 0000000000..128032e499 --- /dev/null +++ b/images/platforms/black/gotosocial.svg @@ -0,0 +1,9 @@ + + + GoToSocial + + + + + + \ No newline at end of file diff --git a/images/platforms/black/gotosocial.svg.license b/images/platforms/black/gotosocial.svg.license new file mode 100644 index 0000000000..92bf50a2b6 --- /dev/null +++ b/images/platforms/black/gotosocial.svg.license @@ -0,0 +1,2 @@ +SPDX-FileCopyrightText: Anna Abramek https://abramek.art/ +SPDX-License-Identifier: CC-BY-SA-4.0 diff --git a/images/platforms/black/hometown.svg b/images/platforms/black/hometown.svg new file mode 100644 index 0000000000..33cc6fbe79 --- /dev/null +++ b/images/platforms/black/hometown.svg @@ -0,0 +1,17 @@ + + + Hometown + + + + + + + + + + + + + + \ No newline at end of file diff --git a/images/platforms/black/hometown.svg.license b/images/platforms/black/hometown.svg.license new file mode 100644 index 0000000000..50895de908 --- /dev/null +++ b/images/platforms/black/hometown.svg.license @@ -0,0 +1,2 @@ +SPDX-FileCopyrightText: Copyright (C) 2016-2022 Eugen Rochko & other Mastodon contributors +SPDX-License-Identifier: AGPL-3.0-or-later diff --git a/images/platforms/black/hubzilla.svg b/images/platforms/black/hubzilla.svg new file mode 100644 index 0000000000..b175f2a759 --- /dev/null +++ b/images/platforms/black/hubzilla.svg @@ -0,0 +1,8 @@ + + + + + + \ No newline at end of file diff --git a/images/platforms/black/hubzilla.svg.license b/images/platforms/black/hubzilla.svg.license new file mode 100644 index 0000000000..33acc29726 --- /dev/null +++ b/images/platforms/black/hubzilla.svg.license @@ -0,0 +1,2 @@ +SPDX-FileCopyrightText: Matthias Pfefferle https://github.com/pfefferle/openwebicons?ref=svgrepo.com +SPDX-License-Identifier: CC0-1.0 diff --git a/images/platforms/black/iceshrimp.svg b/images/platforms/black/iceshrimp.svg new file mode 100644 index 0000000000..b0eaa569ac --- /dev/null +++ b/images/platforms/black/iceshrimp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/images/platforms/black/iceshrimp.svg.license b/images/platforms/black/iceshrimp.svg.license new file mode 100644 index 0000000000..a6ab3519b6 --- /dev/null +++ b/images/platforms/black/iceshrimp.svg.license @@ -0,0 +1,2 @@ +SPDX-FileCopyrightText: https://iceshrimp.dev/iceshrimp/iceshrimp.net +SPDX-License-Identifier: EUPL-1.2 diff --git a/images/platforms/black/lemmy.svg b/images/platforms/black/lemmy.svg new file mode 100644 index 0000000000..eb07724289 --- /dev/null +++ b/images/platforms/black/lemmy.svg @@ -0,0 +1,75 @@ + + + + + + + + + + + + diff --git a/images/platforms/black/lemmy.svg.license b/images/platforms/black/lemmy.svg.license new file mode 100644 index 0000000000..47758d23cf --- /dev/null +++ b/images/platforms/black/lemmy.svg.license @@ -0,0 +1,2 @@ +SPDX-FileCopyrightText: Andy Cuccaro https://commons.wikimedia.org/wiki/File:Lemmy_logo.svg +SPDX-License-Identifier: AGPL-3.0-or-later diff --git a/images/platforms/black/mastodon.svg b/images/platforms/black/mastodon.svg new file mode 100644 index 0000000000..9ecf4ba0e1 --- /dev/null +++ b/images/platforms/black/mastodon.svg @@ -0,0 +1,9 @@ + + + + + + \ No newline at end of file diff --git a/images/platforms/black/mastodon.svg.license b/images/platforms/black/mastodon.svg.license new file mode 100644 index 0000000000..33acc29726 --- /dev/null +++ b/images/platforms/black/mastodon.svg.license @@ -0,0 +1,2 @@ +SPDX-FileCopyrightText: Matthias Pfefferle https://github.com/pfefferle/openwebicons?ref=svgrepo.com +SPDX-License-Identifier: CC0-1.0 diff --git a/images/platforms/black/mbin.svg b/images/platforms/black/mbin.svg new file mode 100644 index 0000000000..70b51b4f7d --- /dev/null +++ b/images/platforms/black/mbin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/images/platforms/black/mbin.svg.license b/images/platforms/black/mbin.svg.license new file mode 100644 index 0000000000..aa9aa09b5c --- /dev/null +++ b/images/platforms/black/mbin.svg.license @@ -0,0 +1,2 @@ +SPDX-FileCopyrightText: grumpyDev https://github.com/mbinOrg/mbin?tab=readme-ov-file#credits +SPDX-License-Identifier: Zlib diff --git a/images/platforms/black/misskey.svg b/images/platforms/black/misskey.svg new file mode 100644 index 0000000000..02cb7288b9 --- /dev/null +++ b/images/platforms/black/misskey.svg @@ -0,0 +1 @@ + diff --git a/images/platforms/black/misskey.svg.license b/images/platforms/black/misskey.svg.license new file mode 100644 index 0000000000..fc85a362b6 --- /dev/null +++ b/images/platforms/black/misskey.svg.license @@ -0,0 +1,2 @@ +SPDX-FileCopyrightText: kakkokari-gtyih https://commons.wikimedia.org/wiki/File:Misskey_Mi_icon.svg +SPDX-License-Identifier: AGPL-3.0-or-later diff --git a/images/platforms/black/mobilizon.svg b/images/platforms/black/mobilizon.svg new file mode 100644 index 0000000000..a6caf78a59 --- /dev/null +++ b/images/platforms/black/mobilizon.svg @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/images/platforms/black/mobilizon.svg.license b/images/platforms/black/mobilizon.svg.license new file mode 100644 index 0000000000..690c5f7c1d --- /dev/null +++ b/images/platforms/black/mobilizon.svg.license @@ -0,0 +1,2 @@ +SPDX-FileCopyrightText: 2017 - 2024 Developed with ♥ by Framasoft +SPDX-License-Identifier: AGPL-3.0-only diff --git a/images/platforms/black/peertube.svg b/images/platforms/black/peertube.svg new file mode 100644 index 0000000000..554ca8d262 --- /dev/null +++ b/images/platforms/black/peertube.svg @@ -0,0 +1,7 @@ + + + PeerTube + + + + \ No newline at end of file diff --git a/images/platforms/black/peertube.svg.license b/images/platforms/black/peertube.svg.license new file mode 100644 index 0000000000..3ffce40c5f --- /dev/null +++ b/images/platforms/black/peertube.svg.license @@ -0,0 +1,2 @@ +SPDX-FileCopyrightText: wakest https://codeberg.org/FediverseIconography +SPDX-License-Identifier: GPL-3.0-only diff --git a/images/platforms/black/pixelfed.svg b/images/platforms/black/pixelfed.svg new file mode 100644 index 0000000000..214dbab31b --- /dev/null +++ b/images/platforms/black/pixelfed.svg @@ -0,0 +1,8 @@ + + + + + + \ No newline at end of file diff --git a/images/platforms/black/pixelfed.svg.license b/images/platforms/black/pixelfed.svg.license new file mode 100644 index 0000000000..33acc29726 --- /dev/null +++ b/images/platforms/black/pixelfed.svg.license @@ -0,0 +1,2 @@ +SPDX-FileCopyrightText: Matthias Pfefferle https://github.com/pfefferle/openwebicons?ref=svgrepo.com +SPDX-License-Identifier: CC0-1.0 diff --git a/images/platforms/black/pleroma.svg b/images/platforms/black/pleroma.svg new file mode 100644 index 0000000000..d03da50d2d --- /dev/null +++ b/images/platforms/black/pleroma.svg @@ -0,0 +1,8 @@ + + + + + + \ No newline at end of file diff --git a/images/platforms/black/pleroma.svg.license b/images/platforms/black/pleroma.svg.license new file mode 100644 index 0000000000..33acc29726 --- /dev/null +++ b/images/platforms/black/pleroma.svg.license @@ -0,0 +1,2 @@ +SPDX-FileCopyrightText: Matthias Pfefferle https://github.com/pfefferle/openwebicons?ref=svgrepo.com +SPDX-License-Identifier: CC0-1.0 diff --git a/images/platforms/black/plume.svg b/images/platforms/black/plume.svg new file mode 100644 index 0000000000..741aeee32c --- /dev/null +++ b/images/platforms/black/plume.svg @@ -0,0 +1,9 @@ + + + + + + + diff --git a/images/platforms/black/plume.svg.license b/images/platforms/black/plume.svg.license new file mode 100644 index 0000000000..d15e28f3ac --- /dev/null +++ b/images/platforms/black/plume.svg.license @@ -0,0 +1,2 @@ +SPDX-FileCopyrightText: https://github.com/Plume-org/Plume +SPDX-License-Identifier: AGPL-3.0-only diff --git a/images/platforms/black/pump-io.svg b/images/platforms/black/pump-io.svg new file mode 100644 index 0000000000..e4e4fc3533 --- /dev/null +++ b/images/platforms/black/pump-io.svg @@ -0,0 +1,108 @@ + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + diff --git a/images/platforms/black/pump-io.svg.license b/images/platforms/black/pump-io.svg.license new file mode 100644 index 0000000000..b3db2b09ce --- /dev/null +++ b/images/platforms/black/pump-io.svg.license @@ -0,0 +1,2 @@ +SPDX-FileCopyrightText: MathiasGebbe https://commons.wikimedia.org/wiki/File:Pump.io_Logo.svg +SPDX-License-Identifier: CC-BY-SA-3.0 diff --git a/images/platforms/black/rss.svg b/images/platforms/black/rss.svg new file mode 100644 index 0000000000..9fe37b87a6 --- /dev/null +++ b/images/platforms/black/rss.svg @@ -0,0 +1,8 @@ + + + + + + \ No newline at end of file diff --git a/images/platforms/black/rss.svg.license b/images/platforms/black/rss.svg.license new file mode 100644 index 0000000000..33acc29726 --- /dev/null +++ b/images/platforms/black/rss.svg.license @@ -0,0 +1,2 @@ +SPDX-FileCopyrightText: Matthias Pfefferle https://github.com/pfefferle/openwebicons?ref=svgrepo.com +SPDX-License-Identifier: CC0-1.0 diff --git a/images/platforms/black/sharkey.svg b/images/platforms/black/sharkey.svg new file mode 100644 index 0000000000..4fd2f3fd09 --- /dev/null +++ b/images/platforms/black/sharkey.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/images/platforms/black/sharkey.svg.license b/images/platforms/black/sharkey.svg.license new file mode 100644 index 0000000000..aa007dea4a --- /dev/null +++ b/images/platforms/black/sharkey.svg.license @@ -0,0 +1,2 @@ +SPDX-FileCopyrightText: https://activitypub.software/TransFem-org/Sharkey +SPDX-License-Identifier: AGPL-3.0-only diff --git a/images/platforms/black/threads.svg b/images/platforms/black/threads.svg new file mode 100644 index 0000000000..ae0ec86c42 --- /dev/null +++ b/images/platforms/black/threads.svg @@ -0,0 +1 @@ + diff --git a/images/platforms/black/threads.svg.license b/images/platforms/black/threads.svg.license new file mode 100644 index 0000000000..4c063fb3eb --- /dev/null +++ b/images/platforms/black/threads.svg.license @@ -0,0 +1,2 @@ +SPDX-FileCopyrightText: Meta Platforms, Inc. https://commons.wikimedia.org/wiki/File:Threads_(app)_logo.svg +SPDX-License-Identifier: CC-PDDC diff --git a/images/platforms/black/tumblr.svg b/images/platforms/black/tumblr.svg new file mode 100644 index 0000000000..2fe91e709e --- /dev/null +++ b/images/platforms/black/tumblr.svg @@ -0,0 +1,19 @@ + + + + + tumblr [#181] + Created with Sketch. + + + + + + + + + + + + + \ No newline at end of file diff --git a/images/platforms/black/tumblr.svg.license b/images/platforms/black/tumblr.svg.license new file mode 100644 index 0000000000..4c8c4b8e5d --- /dev/null +++ b/images/platforms/black/tumblr.svg.license @@ -0,0 +1,2 @@ +SPDX-FileCopyrightText: bypeople https://www.svgrepo.com/svg/513007/tumblr-181 +SPDX-License-Identifier: CC-PDDC diff --git a/images/platforms/black/wordpress.svg b/images/platforms/black/wordpress.svg new file mode 100644 index 0000000000..7c00c85c2d --- /dev/null +++ b/images/platforms/black/wordpress.svg @@ -0,0 +1,10 @@ + + + + + + \ No newline at end of file diff --git a/images/platforms/black/wordpress.svg.license b/images/platforms/black/wordpress.svg.license new file mode 100644 index 0000000000..33acc29726 --- /dev/null +++ b/images/platforms/black/wordpress.svg.license @@ -0,0 +1,2 @@ +SPDX-FileCopyrightText: Matthias Pfefferle https://github.com/pfefferle/openwebicons?ref=svgrepo.com +SPDX-License-Identifier: CC0-1.0 diff --git a/images/platforms/color/activitypub.svg b/images/platforms/color/activitypub.svg new file mode 100644 index 0000000000..f56d428fbc --- /dev/null +++ b/images/platforms/color/activitypub.svg @@ -0,0 +1,288 @@ + + + + + ActivityPub logo + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + ActivityPub logo + + 2017-04-15 + + + Robert Martinez + + + + + ActivityPub + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/images/platforms/color/activitypub.svg.license b/images/platforms/color/activitypub.svg.license new file mode 100644 index 0000000000..acef685eed --- /dev/null +++ b/images/platforms/color/activitypub.svg.license @@ -0,0 +1,2 @@ +SPDX-FileCopyrightText: mray https://commons.wikimedia.org/wiki/File:ActivityPub-logo-symbol.svg +SPDX-License-Identifier: CC0-1.0 diff --git a/images/platforms/color/akkoma.svg b/images/platforms/color/akkoma.svg new file mode 100644 index 0000000000..96dc8d8ce8 --- /dev/null +++ b/images/platforms/color/akkoma.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/images/platforms/color/akkoma.svg.license b/images/platforms/color/akkoma.svg.license new file mode 100644 index 0000000000..f3816d7841 --- /dev/null +++ b/images/platforms/color/akkoma.svg.license @@ -0,0 +1,2 @@ +SPDX-FileCopyrightText: floatingghost https://commons.wikimedia.org/wiki/File:Akkoma_logo.svg +SPDX-License-Identifier: AGPL-3.0-or-later diff --git a/images/platforms/color/bluesky.svg b/images/platforms/color/bluesky.svg new file mode 100644 index 0000000000..c71e2018a6 --- /dev/null +++ b/images/platforms/color/bluesky.svg @@ -0,0 +1,4 @@ + + + + diff --git a/images/platforms/color/bluesky.svg.license b/images/platforms/color/bluesky.svg.license new file mode 100644 index 0000000000..0a78ba51da --- /dev/null +++ b/images/platforms/color/bluesky.svg.license @@ -0,0 +1,2 @@ +SPDX-FileCopyrightText: Eric Bailey https://commons.wikimedia.org/wiki/File:Bluesky_Logo.svg +SPDX-License-Identifier: CC-PDDC diff --git a/images/platforms/color/discourse.svg b/images/platforms/color/discourse.svg new file mode 100644 index 0000000000..4cbb8c87b3 --- /dev/null +++ b/images/platforms/color/discourse.svg @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/images/platforms/color/discourse.svg.license b/images/platforms/color/discourse.svg.license new file mode 100644 index 0000000000..5c569fb582 --- /dev/null +++ b/images/platforms/color/discourse.svg.license @@ -0,0 +1,2 @@ +SPDX-FileCopyrightText: Discourse team https://commons.wikimedia.org/wiki/File:Discourse_icon.svg +SPDX-License-Identifier: GPL-2.0-only diff --git a/images/platforms/color/firefish.svg b/images/platforms/color/firefish.svg new file mode 100644 index 0000000000..7b36f4d77e --- /dev/null +++ b/images/platforms/color/firefish.svg @@ -0,0 +1,153 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/images/platforms/color/firefish.svg.license b/images/platforms/color/firefish.svg.license new file mode 100644 index 0000000000..93e1b24be1 --- /dev/null +++ b/images/platforms/color/firefish.svg.license @@ -0,0 +1,2 @@ +SPDX-FileCopyrightText: Kainoa Kanter https://commons.wikimedia.org/wiki/File:Firefish_animated.svg +SPDX-License-Identifier: AGPL-3.0-or-later diff --git a/images/platforms/color/flipboard.svg b/images/platforms/color/flipboard.svg new file mode 100644 index 0000000000..6f42ee490f --- /dev/null +++ b/images/platforms/color/flipboard.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/images/platforms/color/flipboard.svg.license b/images/platforms/color/flipboard.svg.license new file mode 100644 index 0000000000..92f3811c81 --- /dev/null +++ b/images/platforms/color/flipboard.svg.license @@ -0,0 +1,2 @@ +SPDX-FileCopyrightText: Flipboard, Inc. - Moving Brands https://commons.wikimedia.org/wiki/File:Flipboard_logo.svg +SPDX-License-Identifier: CC-PDDC diff --git a/images/platforms/color/friendica.svg b/images/platforms/color/friendica.svg new file mode 100644 index 0000000000..efbb051cd8 --- /dev/null +++ b/images/platforms/color/friendica.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/images/platforms/color/friendica.svg.license b/images/platforms/color/friendica.svg.license new file mode 100644 index 0000000000..7aaeaba96e --- /dev/null +++ b/images/platforms/color/friendica.svg.license @@ -0,0 +1,2 @@ +SPDX-FileCopyrightText: 2010-2024 the Friendica project +SPDX-License-Identifier: CC0-1.0 diff --git a/images/platforms/color/gnusocial.svg b/images/platforms/color/gnusocial.svg new file mode 100644 index 0000000000..ba61f345c7 --- /dev/null +++ b/images/platforms/color/gnusocial.svg @@ -0,0 +1,99 @@ + + + + + GNU Social Image Logo + + + + + + image/svg+xml + + GNU Social Image Logo + + + + + + + + + + + + + diff --git a/images/platforms/color/gnusocial.svg.license b/images/platforms/color/gnusocial.svg.license new file mode 100644 index 0000000000..bdcd7aa795 --- /dev/null +++ b/images/platforms/color/gnusocial.svg.license @@ -0,0 +1,2 @@ +SPDX-FileCopyrightText: Jonas Laugs, with lettering by Steven DuBois https://commons.wikimedia.org/wiki/File:GNU_Social_Image_Logo.svg +SPDX-License-Identifier: CC0-1.0 diff --git a/images/platforms/color/mastodon.svg b/images/platforms/color/mastodon.svg new file mode 100644 index 0000000000..a20e7981f6 --- /dev/null +++ b/images/platforms/color/mastodon.svg @@ -0,0 +1,10 @@ + + + + + + + + + + \ No newline at end of file diff --git a/images/platforms/color/mastodon.svg.license b/images/platforms/color/mastodon.svg.license new file mode 100644 index 0000000000..cd758551b8 --- /dev/null +++ b/images/platforms/color/mastodon.svg.license @@ -0,0 +1,2 @@ +SPDX-FileCopyrightText: Eugen Rochko & other Mastodon contributors https://commons.wikimedia.org/wiki/File:Mastodon_logotype_(simple)_new_hue.svg +SPDX-License-Identifier: AGPL-3.0-or-later diff --git a/images/platforms/color/peertube.svg b/images/platforms/color/peertube.svg new file mode 100644 index 0000000000..0e6e228e61 --- /dev/null +++ b/images/platforms/color/peertube.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/images/platforms/color/peertube.svg.license b/images/platforms/color/peertube.svg.license new file mode 100644 index 0000000000..13cba9b2e3 --- /dev/null +++ b/images/platforms/color/peertube.svg.license @@ -0,0 +1,2 @@ +SPDX-FileCopyrightText: PeerTube contributors https://commons.wikimedia.org/wiki/File:Logo_de_PeerTube.svg +SPDX-License-Identifier: CC-PDDC diff --git a/images/platforms/color/pixelfed.svg b/images/platforms/color/pixelfed.svg new file mode 100644 index 0000000000..dfaf03fbea --- /dev/null +++ b/images/platforms/color/pixelfed.svg @@ -0,0 +1,101 @@ + + + + icon/color/svg/pixelfed-icon-color + Created with Sketch. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/images/platforms/color/pixelfed.svg.license b/images/platforms/color/pixelfed.svg.license new file mode 100644 index 0000000000..a8129c266b --- /dev/null +++ b/images/platforms/color/pixelfed.svg.license @@ -0,0 +1,2 @@ +SPDX-FileCopyrightText: Mark Wilson & other Pixelfed contributors https://commons.wikimedia.org/wiki/File:Pixelfed_logo_multicolor_(September_2018).svg +SPDX-License-Identifier: CC-BY-SA-4.0 diff --git a/images/platforms/color/pleroma.svg b/images/platforms/color/pleroma.svg new file mode 100644 index 0000000000..2696052279 --- /dev/null +++ b/images/platforms/color/pleroma.svg @@ -0,0 +1,75 @@ + + + + + + image/svg+xml + + + + + + + + + + + + + + diff --git a/images/platforms/color/pleroma.svg.license b/images/platforms/color/pleroma.svg.license new file mode 100644 index 0000000000..a5c1aa75f2 --- /dev/null +++ b/images/platforms/color/pleroma.svg.license @@ -0,0 +1,2 @@ +SPDX-FileCopyrightText: Henry Jameson https://commons.wikimedia.org/wiki/File:Smaller_Pleroma_logo.svg +SPDX-License-Identifier: AGPL-3.0-or-later diff --git a/images/platforms/color/rss.svg b/images/platforms/color/rss.svg new file mode 100644 index 0000000000..a7f9cf196c --- /dev/null +++ b/images/platforms/color/rss.svg @@ -0,0 +1,18 @@ + + + + RSS feed icon + + + + + + + + + \ No newline at end of file diff --git a/images/platforms/color/rss.svg.license b/images/platforms/color/rss.svg.license new file mode 100644 index 0000000000..59f909d7b6 --- /dev/null +++ b/images/platforms/color/rss.svg.license @@ -0,0 +1,2 @@ +SPDX-FileCopyrightText: Jahoe https://commons.wikimedia.org/wiki/File:Generic_Feed-icon.svg +SPDX-License-Identifier: GPL-2.0-or-later diff --git a/images/platforms/color/tumblr.svg b/images/platforms/color/tumblr.svg new file mode 100644 index 0000000000..d4f4d6d4df --- /dev/null +++ b/images/platforms/color/tumblr.svg @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + + diff --git a/images/platforms/color/tumblr.svg.license b/images/platforms/color/tumblr.svg.license new file mode 100644 index 0000000000..39a4f64c06 --- /dev/null +++ b/images/platforms/color/tumblr.svg.license @@ -0,0 +1,2 @@ +SPDX-FileCopyrightText: ZyMOS https://commons.wikimedia.org/wiki/File:Tumblr.svg +SPDX-License-Identifier: CC-PDDC diff --git a/images/platforms/color/wordpress.svg b/images/platforms/color/wordpress.svg new file mode 100644 index 0000000000..7182535973 --- /dev/null +++ b/images/platforms/color/wordpress.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/images/platforms/color/wordpress.svg.license b/images/platforms/color/wordpress.svg.license new file mode 100644 index 0000000000..1fea8f7f81 --- /dev/null +++ b/images/platforms/color/wordpress.svg.license @@ -0,0 +1,2 @@ +SPDX-FileCopyrightText: WordPress https://commons.wikimedia.org/wiki/File:WordPress_blue_logo.svg +SPDX-License-Identifier: GPL-2.0-or-later diff --git a/src/Content/ContactSelector.php b/src/Content/ContactSelector.php index 52cc980fc3..9d72e78528 100644 --- a/src/Content/ContactSelector.php +++ b/src/Content/ContactSelector.php @@ -202,13 +202,33 @@ class ContactSelector Protocol::BLUESKY => 'circle', /// @todo ]; - $platform_icons = ['diaspora' => 'diaspora', 'friendica' => 'friendica', 'friendika' => 'friendica', - 'GNU Social' => 'gnu-social', 'gnusocial' => 'gnu-social', 'hubzilla' => 'hubzilla', - 'mastodon' => 'mastodon', 'hometown' => 'mastodon', 'peertube' => 'peertube', 'pixelfed' => 'pixelfed', - 'pleroma' => 'pleroma', 'akkoma' => 'pleroma', 'red' => 'hubzilla', 'redmatrix' => 'hubzilla', - 'socialhome' => 'social-home', 'wordpress' => 'wordpress', 'lemmy' => 'users', - 'plume' => 'plume', 'funkwhale' => 'funkwhale', 'nextcloud' => 'nextcloud', 'drupal' => 'drupal', - 'firefish' => 'fire', 'calckey' => 'calculator', 'kbin' => 'check', 'threads' => 'instagram']; + $platform_icons = [ + 'diaspora' => 'diaspora', + 'friendica' => 'friendica', + 'friendika' => 'friendica', + 'GNU Social' => 'gnu-social', + 'gnusocial' => 'gnu-social', + 'hubzilla' => 'hubzilla', + 'mastodon' => 'mastodon', + 'hometown' => 'mastodon', + 'peertube' => 'peertube', + 'pixelfed' => 'pixelfed', + 'pleroma' => 'pleroma', + 'akkoma' => 'pleroma', + 'red' => 'hubzilla', + 'redmatrix' => 'hubzilla', + 'socialhome' => 'social-home', + 'wordpress' => 'wordpress', + 'lemmy' => 'users', + 'plume' => 'plume', + 'funkwhale' => 'funkwhale', + 'nextcloud' => 'nextcloud', + 'drupal' => 'drupal', + 'firefish' => 'fire', + 'calckey' => 'calculator', + 'kbin' => 'check', + 'threads' => 'instagram' + ]; $search = array_keys($nets); $replace = array_values($nets); @@ -231,4 +251,87 @@ class ContactSelector return $network_icon; } + + public static function networkToSVG(string $network, string $profile = "", int $gsid = null, string $platform = '', int $uid = 0): string + { + $nets = [ + Protocol::ACTIVITYPUB => 'activitypub', // https://commons.wikimedia.org/wiki/File:ActivityPub-logo-symbol.svg + Protocol::BLUESKY => 'bluesky', // https://commons.wikimedia.org/wiki/File:Bluesky_Logo.svg + Protocol::DFRN => 'friendica', + Protocol::DIASPORA => 'diaspora', // https://www.svgrepo.com/svg/362315/diaspora + Protocol::DIASPORA2 => 'diaspora', // https://www.svgrepo.com/svg/362315/diaspora + Protocol::DISCOURSE => 'discourse', // https://commons.wikimedia.org/wiki/File:Discourse_icon.svg + Protocol::FEED => 'rss', // https://commons.wikimedia.org/wiki/File:Generic_Feed-icon.svg + Protocol::MAIL => 'email', // https://www.svgrepo.com/svg/501173/email + Protocol::OSTATUS => '', + Protocol::PNUT => '', + Protocol::PUMPIO => 'pump-io', // https://commons.wikimedia.org/wiki/File:Pump.io_Logo.svg + Protocol::STATUSNET => '', + Protocol::TUMBLR => 'tumblr', // https://commons.wikimedia.org/wiki/File:Tumblr.svg + Protocol::TWITTER => '', + Protocol::ZOT => 'hubzilla', // https://www.svgrepo.com/svg/362219/hubzilla + ]; + + $svg = [ + 'akkoma', // https://commons.wikimedia.org/wiki/File:Akkoma_logo.svg + 'calckey', // https://commons.wikimedia.org/wiki/File:Calckey_Logomark.svg + 'diaspora', // https://www.svgrepo.com/svg/362315/diaspora + 'firefish', // https://commons.wikimedia.org/wiki/File:Firefish_animated.svg + 'flipboard', // https://commons.wikimedia.org/wiki/File:Flipboard_logo.svg + 'friendica', + 'glitchsoc', // https://iconography.fediverse.info/black/glitch-soc.svg + 'gnusocial', // https://commons.wikimedia.org/wiki/File:GNU_Social_Image_Logo.svg + 'gotosocial', // https://iconography.fediverse.info/black/gotosocial.svg + 'hometown', // https://iconography.fediverse.info/black/hometown.svg + 'hubzilla', // https://www.svgrepo.com/svg/362219/hubzilla + 'iceshrimp', // https://iconography.fediverse.info/black/iceshrimp.svg + 'lemmy', // https://commons.wikimedia.org/wiki/File:Lemmy_logo.svg + 'mastodon', // https://commons.wikimedia.org/wiki/File:Mastodon_logotype_(simple)_new_hue.svg + 'mbin', // https://iconography.fediverse.info/black/mbin.svg + 'misskey', // https://commons.wikimedia.org/wiki/File:Misskey_Mi_icon.svg + 'mobilizon', // https://www.svgrepo.com/svg/517896/mobilizon + 'peertube', // https://commons.wikimedia.org/wiki/File:Logo_de_PeerTube.svg + 'pixelfed', // https://commons.wikimedia.org/wiki/File:Pixelfed_logo_multicolor_(September_2018).svg + 'pleroma', // https://commons.wikimedia.org/wiki/File:Smaller_Pleroma_logo.svg + 'plume', // https://commons.wikimedia.org/wiki/File:Plume.svg + 'sharkey', // https://iconography.fediverse.info/black/sharky.svg + 'threads', // https://commons.wikimedia.org/wiki/File:Threads_(app)_logo.svg + 'wordpress', // https://commons.wikimedia.org/wiki/File:WordPress_blue_logo.svg + ]; + + $search = array_keys($nets); + $replace = array_values($nets); + + $network_svg = str_replace($search, $replace, $network); + + if (in_array($network, Protocol::FEDERATED)) { + if (!empty($gsid) && !empty(self::$serverdata[$gsid])) { + $gserver = self::$serverdata[$gsid]; + } elseif (!empty($gsid)) { + $gserver = DBA::selectFirst('gserver', ['platform', 'network'], ['id' => $gsid]); + self::$serverdata[$gsid] = $gserver; + } elseif (!empty($platform)) { + $gserver = ['platform' => $platform]; + } elseif ($profile != "") { + $gserver = self::getServerForProfile($profile); + } + if (!empty($gserver['platform'])) { + $network_svg = in_array($gserver['platform'], $svg) ? $gserver['platform'] : $network_svg; + } + } + + if (empty($network_svg)) { + return ''; + } + + $color = ['activitypub', 'akkoma', 'bluesky', 'discourse', 'firefish', 'flipboard', + 'friendica', 'gnusocial', 'mastodon', 'peertube', 'pixelfed', 'pleroma', + 'rss', 'tumblr', 'wordpress']; + + if (($uid && DI::pConfig()->get($uid, 'accessibility', 'black_platform_icons')) || !in_array($network_svg, $color)) { + return 'images/platforms/black/' . $network_svg . '.svg'; + } else { + return 'images/platforms/color/' . $network_svg . '.svg'; + } + } } diff --git a/src/Content/Conversation.php b/src/Content/Conversation.php index 807fb6c0b1..07d2b6fb8e 100644 --- a/src/Content/Conversation.php +++ b/src/Content/Conversation.php @@ -1518,6 +1518,7 @@ class Conversation 'network' => $item['network'], 'network_name' => ContactSelector::networkToName($item['author-network'], $item['author-link'], $item['network'], $item['author-gsid']), 'network_icon' => ContactSelector::networkToIcon($item['network'], $item['author-link'], $item['author-gsid']), + 'network_svg' => ContactSelector::networkToSVG($item['network'], $item['author-link'], $item['author-gsid'], '', $this->session->getLocalUserId()), 'linktitle' => $this->l10n->t('View %s\'s profile @ %s', $profile_name, $item['author-link']), 'profile_url' => $profile_link, 'item_photo_menu_html' => $this->item->photoMenu($item, $formSecurityToken), diff --git a/src/Content/Text/BBCode.php b/src/Content/Text/BBCode.php index 2eb4e62f16..f1c9cadf7f 100644 --- a/src/Content/Text/BBCode.php +++ b/src/Content/Text/BBCode.php @@ -932,6 +932,7 @@ class BBCode '$guid' => $attributes['guid'], '$network_name' => ContactSelector::networkToName($network, $attributes['profile']), '$network_icon' => ContactSelector::networkToIcon($network, $attributes['profile']), + '$network_svg' => ContactSelector::networkToSVG($network, $attributes['profile']), '$content' => self::TOP_ANCHOR . self::setMentions(trim($content), 0, $network) . self::BOTTOM_ANCHOR, ]); break; diff --git a/src/Content/Widget/VCard.php b/src/Content/Widget/VCard.php index 3ccdaeb421..be98e93afa 100644 --- a/src/Content/Widget/VCard.php +++ b/src/Content/Widget/VCard.php @@ -43,9 +43,11 @@ class VCard if ($contact['network'] != '') { $network_link = Strings::formatNetworkName($contact['network'], $contact_url); $network_avatar = ContactSelector::networkToIcon($contact['network'], $contact_url); + $network_svg = ContactSelector::networkToSVG($contact['network'], $contact_url, 0, '', DI::userSession()->getLocalUserId()); } else { $network_link = ''; $network_avatar = ''; + $network_svg = ''; } $follow_link = ''; @@ -113,6 +115,7 @@ class VCard '$location' => DI::l10n()->t('Location:'), '$network_link' => $network_link, '$network_avatar' => $network_avatar, + '$network_svg' => $network_svg, '$network' => DI::l10n()->t('Network:'), '$account_type' => Contact::getAccountType($contact['contact-type']), '$follow' => DI::l10n()->t('Follow'), diff --git a/src/Core/Protocol.php b/src/Core/Protocol.php index 8270400025..1294050ab7 100644 --- a/src/Core/Protocol.php +++ b/src/Core/Protocol.php @@ -33,26 +33,26 @@ class Protocol const SUPPORT_PRIVATE = [self::DFRN, self::DIASPORA, self::MAIL, self::ACTIVITYPUB, self::PUMPIO]; // Supported through a connector - const DIASPORA2 = 'dspc'; // Diaspora connector - const PUMPIO = 'pump'; // pump.io - const TWITTER = 'twit'; // Twitter - const DISCOURSE = 'dscs'; // Discourse - const TUMBLR = 'tmbl'; // Tumblr const BLUESKY = 'bsky'; // Bluesky + const DIASPORA2 = 'dspc'; // Diaspora connector + const DISCOURSE = 'dscs'; // Discourse + const PNUT = 'pnut'; // pnut.io + const PUMPIO = 'pump'; // pump.io + const TUMBLR = 'tmbl'; // Tumblr + const TWITTER = 'twit'; // Twitter // Dead protocols - const OSTATUS = 'stat'; // GNU Social and other OStatus implementations - const STATUSNET = 'stac'; // Statusnet connector const APPNET = 'apdn'; // app.net - Dead protocol const FACEBOOK = 'face'; // Facebook API - Not working anymore, API is closed const GPLUS = 'goog'; // Google+ - Dead in 2019 + const OSTATUS = 'stat'; // GNU Social and other OStatus implementations + const STATUSNET = 'stac'; // Statusnet connector // Currently unsupported const ICALENDAR = 'ical'; // iCalendar - const MYSPACE = 'mysp'; // MySpace const LINKEDIN = 'lnkd'; // LinkedIn + const MYSPACE = 'mysp'; // MySpace const NEWS = 'nntp'; // Network News Transfer Protocol - const PNUT = 'pnut'; // pnut.io const XMPP = 'xmpp'; // XMPP const ZOT = 'zot!'; // Zot! diff --git a/src/Model/GServer.php b/src/Model/GServer.php index bda394cc84..73d7d1df08 100644 --- a/src/Model/GServer.php +++ b/src/Model/GServer.php @@ -753,6 +753,10 @@ class GServer $serverdata = self::detectNetworkViaContacts($url, $serverdata); } + if ($serverdata['platform'] == 'mastodon') { + $serverdata = self::detectMastodonForks($serverdata); + } + if (($serverdata['network'] == Protocol::PHANTOM) && in_array($serverdata['detection-method'], [self::DETECT_MANUAL, self::DETECT_BODY])) { self::setFailureByUrl($url); return false; @@ -1792,6 +1796,23 @@ class GServer return $serverdata; } + private static function detectMastodonForks(array $serverdata): array + { + if (strpos($serverdata['version'], 'glitch') !== false) { + $serverdata['platform'] = 'glitchsoc'; + } + + if (strpos($serverdata['version'], 'chuckya') !== false) { + $serverdata['platform'] = 'chuckya'; + } + + if (strpos($serverdata['version'], 'sakura') !== false) { + $serverdata['platform'] = 'sakura'; + } + + return $serverdata; + } + /** * Checks if the given server does have a '/poco' endpoint. * This is used for the 'PortableContact' functionality, diff --git a/src/Module/Admin/Federation.php b/src/Module/Admin/Federation.php index 99942e7c7a..7ca747d3e3 100644 --- a/src/Module/Admin/Federation.php +++ b/src/Module/Admin/Federation.php @@ -8,6 +8,7 @@ namespace Friendica\Module\Admin; use Friendica\App; +use Friendica\Content\ContactSelector; use Friendica\Core\Protocol; use Friendica\Core\Renderer; use Friendica\Database\DBA; @@ -36,6 +37,7 @@ class Federation extends BaseAdmin '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 + 'glitchsoc' => ['name' => 'Mastodon Glitch Edition', 'color' => '#82dcb9'], // Color from their site '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 @@ -128,6 +130,10 @@ class Federation extends BaseAdmin $platform = 'nomad'; } elseif(stristr($platform, 'pleroma')) { $platform = 'pleroma'; + } elseif(stristr($platform, 'glitchsoc')) { + $platform = 'glitchsoc'; + } elseif(stristr($platform, 'iceshrimp.net')) { + $platform = 'iceshrimp'; } elseif(stristr($platform, 'statusnet')) { $platform = 'gnusocial'; } elseif(stristr($platform, 'nextcloud')) { @@ -176,6 +182,7 @@ class Federation extends BaseAdmin } $gserver['platform'] = $systems[$platform]['name']; + $gserver['svg'] = ContactSelector::networkToSVG($gserver['network'], '', null, $platform, DI::userSession()->getLocalUserId()); $gserver['totallbl'] = DI::l10n()->tt('%2$s total system' , '%2$s total systems' , $gserver['total'], number_format($gserver['total'])); $gserver['monthlbl'] = DI::l10n()->tt('%2$s active user last month' , '%2$s active users last month' , $gserver['month'] ?? 0, number_format($gserver['month'] ?? 0)); $gserver['halfyearlbl'] = DI::l10n()->tt('%2$s active user last six months' , '%2$s active users last six months' , $gserver['halfyear'] ?? 0, number_format($gserver['halfyear'] ?? 0)); diff --git a/src/Module/Moderation/Blocklist/Server/Add.php b/src/Module/Moderation/Blocklist/Server/Add.php index f98a3ec716..aa80d47361 100644 --- a/src/Module/Moderation/Blocklist/Server/Add.php +++ b/src/Module/Moderation/Blocklist/Server/Add.php @@ -97,6 +97,7 @@ class Add extends BaseModeration array_walk($gservers, function (array &$gserver) { $gserver['domain'] = (new Uri($gserver['url']))->getHost(); $gserver['network_icon'] = ContactSelector::networkToIcon($gserver['network']); + $gserver['network_svg'] = ContactSelector::networkToSVG($gserver['network']); $gserver['network_name'] = ContactSelector::networkToName($gserver['network']); }); diff --git a/src/Module/Settings/Display.php b/src/Module/Settings/Display.php index 8b3160fce5..6e9cb02718 100644 --- a/src/Module/Settings/Display.php +++ b/src/Module/Settings/Display.php @@ -95,6 +95,7 @@ class Display extends BaseSettings $stay_local = (bool)$request['stay_local']; $hide_empty_descriptions = (bool)$request['hide_empty_descriptions']; $hide_custom_emojis = (bool)$request['hide_custom_emojis']; + $black_platform_icons = (bool)$request['black_platform_icons']; $show_page_drop = (bool)$request['show_page_drop']; $display_eventlist = (bool)$request['display_eventlist']; $preview_mode = (int)$request['preview_mode']; @@ -156,6 +157,7 @@ class Display extends BaseSettings $this->pConfig->set($uid, 'accessibility', 'hide_empty_descriptions', $hide_empty_descriptions); $this->pConfig->set($uid, 'accessibility', 'hide_custom_emojis' , $hide_custom_emojis); + $this->pConfig->set($uid, 'accessibility', 'black_platform_icons' , $black_platform_icons); $this->pConfig->set($uid, 'calendar', 'first_day_of_week' , $first_day_of_week); $this->pConfig->set($uid, 'calendar', 'default_view' , $calendar_default_view); @@ -248,6 +250,7 @@ class Display extends BaseSettings $hide_empty_descriptions = $this->pConfig->get($uid, 'accessibility', 'hide_empty_descriptions', false); $hide_custom_emojis = $this->pConfig->get($uid, 'accessibility', 'hide_custom_emojis', false); + $black_platform_icons = $this->pConfig->get($uid, 'accessibility', 'black_platform_icons', false); $preview_mode = $this->pConfig->get($uid, 'system', 'preview_mode', BBCode::PREVIEW_LARGE); $preview_modes = [ @@ -330,6 +333,7 @@ class Display extends BaseSettings '$preview_mode' => ['preview_mode' , $this->t('Link preview mode'), $preview_mode, $this->t('Appearance of the link preview that is added to each post with a link.'), $preview_modes, false], '$hide_empty_descriptions' => ['hide_empty_descriptions' , $this->t('Hide pictures with empty alternative text'), $hide_empty_descriptions, $this->t("Don't display pictures that are missing the alternative text.")], '$hide_custom_emojis' => ['hide_custom_emojis' , $this->t('Hide custom emojis'), $hide_custom_emojis, $this->t("Don't display custom emojis.")], + '$black_platform_icons' => ['black_platform_icons' , $this->t('Black platform Icons'), $black_platform_icons, $this->t("Use black platform icons instead of colored ones.")], '$timeline_label' => $this->t('Label'), '$timeline_descriptiom' => $this->t('Description'), diff --git a/src/Object/Post.php b/src/Object/Post.php index dfc98a6d14..1c9ef6ca8b 100644 --- a/src/Object/Post.php +++ b/src/Object/Post.php @@ -608,6 +608,7 @@ class Post 'network' => $item['network'], 'network_name' => ContactSelector::networkToName($item['author-network'], $item['author-link'], $item['network'], $item['author-gsid']), 'network_icon' => ContactSelector::networkToIcon($item['network'], $item['author-link'], $item['author-gsid']), + 'network_svg' => ContactSelector::networkToSVG($item['network'], $item['author-link'], $item['author-gsid'], '', DI::userSession()->getLocalUserId()), 'received' => $item['received'], 'commented' => $item['commented'], 'created_date' => $item['created'], diff --git a/view/lang/C/messages.po b/view/lang/C/messages.po index dafd67761c..de514387b9 100644 --- a/view/lang/C/messages.po +++ b/view/lang/C/messages.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: 2024.09-rc\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-10-29 07:00+0000\n" +"POT-Creation-Date: 2024-11-08 08:13+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/Settings/Account.php:36 src/Module/Settings/Account.php:377 #: src/Module/Settings/Channels.php:52 src/Module/Settings/Channels.php:127 #: src/Module/Settings/Delegation.php:76 src/Module/Settings/Display.php:76 -#: src/Module/Settings/Display.php:188 +#: src/Module/Settings/Display.php:190 #: src/Module/Settings/Profile/Photo/Crop.php:151 #: src/Module/Settings/Profile/Photo/Index.php:96 #: src/Module/Settings/RemoveMe.php:105 src/Module/Settings/UserExport.php:64 @@ -281,7 +281,7 @@ msgid "Insert web link" msgstr "" #: mod/message.php:188 mod/message.php:344 mod/photos.php:1255 -#: src/Content/Conversation.php:386 src/Content/Conversation.php:1562 +#: src/Content/Conversation.php:386 src/Content/Conversation.php:1563 #: src/Module/Item/Compose.php:199 src/Module/Post/Edit.php:131 #: src/Object/Post.php:604 msgid "Please wait" @@ -295,8 +295,8 @@ msgstr "" #: src/Module/Debug/ActivityPubConversion.php:132 #: src/Module/Debug/Babel.php:307 src/Module/Debug/Localtime.php:50 #: src/Module/Debug/Probe.php:40 src/Module/Debug/WebFinger.php:37 -#: src/Module/FriendSuggest.php:131 src/Module/Install.php:220 -#: src/Module/Install.php:260 src/Module/Install.php:295 +#: src/Module/FriendSuggest.php:131 src/Module/Install.php:221 +#: src/Module/Install.php:261 src/Module/Install.php:296 #: src/Module/Invite.php:164 src/Module/Item/Compose.php:182 #: src/Module/Moderation/Item/Source.php:71 #: src/Module/Moderation/Report/Create.php:154 @@ -305,7 +305,7 @@ msgstr "" #: src/Module/Moderation/Report/Create.php:249 #: src/Module/Profile/Profile.php:262 src/Module/Settings/Profile/Index.php:248 #: src/Module/Settings/Server/Action.php:65 src/Module/User/Delegation.php:175 -#: src/Object/Post.php:1145 view/theme/duepuntozero/config.php:73 +#: src/Object/Post.php:1146 view/theme/duepuntozero/config.php:73 #: view/theme/frio/config.php:138 view/theme/quattro/config.php:75 #: view/theme/vier/config.php:123 msgid "Submit" @@ -588,25 +588,25 @@ msgstr "" #: mod/photos.php:1093 mod/photos.php:1149 mod/photos.php:1229 #: src/Module/Contact.php:600 src/Module/Item/Compose.php:181 -#: src/Object/Post.php:1142 +#: src/Object/Post.php:1143 msgid "This is you" msgstr "" #: mod/photos.php:1095 mod/photos.php:1151 mod/photos.php:1231 #: src/Module/Moderation/Reports.php:102 src/Object/Post.php:598 -#: src/Object/Post.php:1144 +#: src/Object/Post.php:1145 msgid "Comment" msgstr "" #: mod/photos.php:1097 mod/photos.php:1153 mod/photos.php:1233 #: src/Content/Conversation.php:400 src/Module/Calendar/Event/Form.php:234 #: src/Module/Item/Compose.php:194 src/Module/Post/Edit.php:151 -#: src/Object/Post.php:1158 +#: src/Object/Post.php:1159 msgid "Preview" msgstr "" #: mod/photos.php:1098 src/Content/Conversation.php:354 -#: src/Module/Post/Edit.php:116 src/Object/Post.php:1146 +#: src/Module/Post/Edit.php:116 src/Object/Post.php:1147 msgid "Loading..." msgstr "" @@ -1228,7 +1228,7 @@ msgid "Visible to everybody" msgstr "" #: src/Content/Conversation.php:324 src/Module/Item/Compose.php:193 -#: src/Object/Post.php:1157 +#: src/Object/Post.php:1158 msgid "Please enter a image/video/audio/webpage URL:" msgstr "" @@ -1273,52 +1273,52 @@ msgid "attach file" msgstr "" #: src/Content/Conversation.php:359 src/Module/Item/Compose.php:183 -#: src/Module/Post/Edit.php:157 src/Object/Post.php:1147 +#: src/Module/Post/Edit.php:157 src/Object/Post.php:1148 msgid "Bold" msgstr "" #: src/Content/Conversation.php:360 src/Module/Item/Compose.php:184 -#: src/Module/Post/Edit.php:158 src/Object/Post.php:1148 +#: src/Module/Post/Edit.php:158 src/Object/Post.php:1149 msgid "Italic" msgstr "" #: src/Content/Conversation.php:361 src/Module/Item/Compose.php:185 -#: src/Module/Post/Edit.php:159 src/Object/Post.php:1149 +#: src/Module/Post/Edit.php:159 src/Object/Post.php:1150 msgid "Underline" msgstr "" #: src/Content/Conversation.php:362 src/Module/Item/Compose.php:186 -#: src/Module/Post/Edit.php:160 src/Object/Post.php:1151 +#: src/Module/Post/Edit.php:160 src/Object/Post.php:1152 msgid "Quote" msgstr "" #: src/Content/Conversation.php:363 src/Module/Item/Compose.php:187 -#: src/Module/Post/Edit.php:161 src/Object/Post.php:1152 +#: src/Module/Post/Edit.php:161 src/Object/Post.php:1153 msgid "Add emojis" msgstr "" #: src/Content/Conversation.php:364 src/Module/Item/Compose.php:188 -#: src/Object/Post.php:1150 +#: src/Object/Post.php:1151 msgid "Content Warning" msgstr "" #: src/Content/Conversation.php:365 src/Module/Item/Compose.php:189 -#: src/Module/Post/Edit.php:162 src/Object/Post.php:1153 +#: src/Module/Post/Edit.php:162 src/Object/Post.php:1154 msgid "Code" msgstr "" #: src/Content/Conversation.php:366 src/Module/Item/Compose.php:190 -#: src/Object/Post.php:1154 +#: src/Object/Post.php:1155 msgid "Image" msgstr "" #: src/Content/Conversation.php:367 src/Module/Item/Compose.php:191 -#: src/Module/Post/Edit.php:163 src/Object/Post.php:1155 +#: src/Module/Post/Edit.php:163 src/Object/Post.php:1156 msgid "Link" msgstr "" #: src/Content/Conversation.php:368 src/Module/Item/Compose.php:192 -#: src/Module/Post/Edit.php:164 src/Object/Post.php:1156 +#: src/Module/Post/Edit.php:164 src/Object/Post.php:1157 msgid "Link or Media" msgstr "" @@ -1365,7 +1365,7 @@ msgstr "" msgid "Public post" msgstr "" -#: src/Content/Conversation.php:410 src/Content/Widget/VCard.php:122 +#: src/Content/Conversation.php:410 src/Content/Widget/VCard.php:125 #: src/Model/Profile.php:462 src/Module/Admin/Logs/View.php:80 #: src/Module/Post/Edit.php:167 msgid "Message" @@ -1478,26 +1478,26 @@ msgstr "" msgid "Pinned item" msgstr "" -#: src/Content/Conversation.php:1521 src/Object/Post.php:541 +#: src/Content/Conversation.php:1522 src/Object/Post.php:541 #: src/Object/Post.php:542 #, php-format msgid "View %s's profile @ %s" msgstr "" -#: src/Content/Conversation.php:1535 src/Object/Post.php:529 +#: src/Content/Conversation.php:1536 src/Object/Post.php:529 msgid "Categories:" msgstr "" -#: src/Content/Conversation.php:1536 src/Object/Post.php:530 +#: src/Content/Conversation.php:1537 src/Object/Post.php:530 msgid "Filed under:" msgstr "" -#: src/Content/Conversation.php:1544 src/Object/Post.php:556 +#: src/Content/Conversation.php:1545 src/Object/Post.php:556 #, php-format msgid "%s from %s" msgstr "" -#: src/Content/Conversation.php:1560 +#: src/Content/Conversation.php:1561 msgid "View in context" msgstr "" @@ -1741,7 +1741,7 @@ msgstr "" #: src/Content/Feature.php:120 src/Content/Widget.php:607 #: src/Module/Admin/Site.php:464 src/Module/BaseSettings.php:111 -#: src/Module/Settings/Channels.php:211 src/Module/Settings/Display.php:309 +#: src/Module/Settings/Channels.php:211 src/Module/Settings/Display.php:312 msgid "Channels" msgstr "" @@ -2000,7 +2000,7 @@ msgstr "" #: src/Content/Nav.php:219 src/Content/Nav.php:279 #: src/Module/BaseProfile.php:71 src/Module/BaseProfile.php:74 #: src/Module/BaseProfile.php:82 src/Module/BaseProfile.php:85 -#: src/Module/Settings/Display.php:310 view/theme/frio/theme.php:227 +#: src/Module/Settings/Display.php:313 view/theme/frio/theme.php:227 #: view/theme/frio/theme.php:231 msgid "Calendar" msgstr "" @@ -2195,7 +2195,7 @@ msgstr "" #: src/Content/Nav.php:321 src/Module/BaseModeration.php:114 #: src/Module/Moderation/Blocklist/Contact.php:96 -#: src/Module/Moderation/Blocklist/Server/Add.php:107 +#: src/Module/Moderation/Blocklist/Server/Add.php:108 #: src/Module/Moderation/Blocklist/Server/Import.php:102 #: src/Module/Moderation/Blocklist/Server/Index.php:81 #: src/Module/Moderation/Item/Delete.php:47 @@ -2245,23 +2245,23 @@ msgstr "" msgid "Link to source" msgstr "" -#: src/Content/Text/BBCode.php:1744 src/Content/Text/HTML.php:892 +#: src/Content/Text/BBCode.php:1745 src/Content/Text/HTML.php:892 msgid "Click to open/close" msgstr "" -#: src/Content/Text/BBCode.php:1799 +#: src/Content/Text/BBCode.php:1800 msgid "$1 wrote:" msgstr "" -#: src/Content/Text/BBCode.php:1873 src/Content/Text/BBCode.php:1874 +#: src/Content/Text/BBCode.php:1874 src/Content/Text/BBCode.php:1875 msgid "Encrypted content" msgstr "" -#: src/Content/Text/BBCode.php:2206 +#: src/Content/Text/BBCode.php:2207 msgid "Invalid source protocol" msgstr "" -#: src/Content/Text/BBCode.php:2225 +#: src/Content/Text/BBCode.php:2226 msgid "Invalid link protocol" msgstr "" @@ -2273,7 +2273,7 @@ msgstr "" msgid "The end" msgstr "" -#: src/Content/Text/HTML.php:847 src/Content/Widget/VCard.php:118 +#: src/Content/Text/HTML.php:847 src/Content/Widget/VCard.php:121 #: src/Model/Profile.php:456 src/Module/Contact/Profile.php:484 msgid "Follow" msgstr "" @@ -2446,27 +2446,27 @@ msgstr[1] "" msgid "More Trending Tags" msgstr "" -#: src/Content/Widget/VCard.php:96 src/Model/Contact.php:1207 +#: src/Content/Widget/VCard.php:98 src/Model/Contact.php:1207 #: src/Model/Profile.php:441 msgid "Post to group" msgstr "" -#: src/Content/Widget/VCard.php:101 src/Model/Contact.php:1211 +#: src/Content/Widget/VCard.php:103 src/Model/Contact.php:1211 #: src/Model/Profile.php:445 src/Module/Moderation/Item/Source.php:77 msgid "Mention" msgstr "" -#: src/Content/Widget/VCard.php:111 src/Model/Profile.php:360 +#: src/Content/Widget/VCard.php:113 src/Model/Profile.php:360 #: src/Module/Contact/Profile.php:420 src/Module/Profile/Profile.php:187 msgid "XMPP:" msgstr "" -#: src/Content/Widget/VCard.php:112 src/Model/Profile.php:361 +#: src/Content/Widget/VCard.php:114 src/Model/Profile.php:361 #: src/Module/Contact/Profile.php:422 src/Module/Profile/Profile.php:191 msgid "Matrix:" msgstr "" -#: src/Content/Widget/VCard.php:113 src/Model/Event.php:68 +#: src/Content/Widget/VCard.php:115 src/Model/Event.php:68 #: src/Model/Event.php:95 src/Model/Event.php:457 src/Model/Event.php:946 #: src/Model/Profile.php:355 src/Module/Contact/Profile.php:418 #: src/Module/Directory.php:134 src/Module/Notifications/Introductions.php:179 @@ -2474,18 +2474,18 @@ msgstr "" msgid "Location:" msgstr "" -#: src/Content/Widget/VCard.php:116 src/Model/Profile.php:469 +#: src/Content/Widget/VCard.php:119 src/Model/Profile.php:469 #: src/Module/Notifications/Introductions.php:193 msgid "Network:" msgstr "" -#: src/Content/Widget/VCard.php:120 src/Model/Contact.php:1239 +#: src/Content/Widget/VCard.php:123 src/Model/Contact.php:1239 #: src/Model/Contact.php:1251 src/Model/Profile.php:458 #: src/Module/Contact/Profile.php:476 msgid "Unfollow" msgstr "" -#: src/Content/Widget/VCard.php:126 src/Model/Contact.php:1209 +#: src/Content/Widget/VCard.php:129 src/Model/Contact.php:1209 #: src/Model/Profile.php:443 msgid "View group" msgstr "" @@ -2552,8 +2552,8 @@ msgstr "" msgid "You may need to import the file \"database.sql\" manually using phpmyadmin or mysql." msgstr "" -#: src/Core/Installer.php:184 src/Module/Install.php:193 -#: src/Module/Install.php:336 +#: src/Core/Installer.php:184 src/Module/Install.php:194 +#: src/Module/Install.php:337 msgid "Please see the file \"doc/INSTALL.md\"." msgstr "" @@ -2839,37 +2839,37 @@ msgid "%s (%s)" msgstr "" #: src/Core/L10n.php:485 src/Model/Event.php:416 -#: src/Module/Settings/Display.php:278 +#: src/Module/Settings/Display.php:281 msgid "Monday" msgstr "" #: src/Core/L10n.php:485 src/Model/Event.php:417 -#: src/Module/Settings/Display.php:279 +#: src/Module/Settings/Display.php:282 msgid "Tuesday" msgstr "" #: src/Core/L10n.php:485 src/Model/Event.php:418 -#: src/Module/Settings/Display.php:280 +#: src/Module/Settings/Display.php:283 msgid "Wednesday" msgstr "" #: src/Core/L10n.php:485 src/Model/Event.php:419 -#: src/Module/Settings/Display.php:281 +#: src/Module/Settings/Display.php:284 msgid "Thursday" msgstr "" #: src/Core/L10n.php:485 src/Model/Event.php:420 -#: src/Module/Settings/Display.php:282 +#: src/Module/Settings/Display.php:285 msgid "Friday" msgstr "" #: src/Core/L10n.php:485 src/Model/Event.php:421 -#: src/Module/Settings/Display.php:283 +#: src/Module/Settings/Display.php:286 msgid "Saturday" msgstr "" #: src/Core/L10n.php:485 src/Model/Event.php:415 -#: src/Module/Settings/Display.php:277 +#: src/Module/Settings/Display.php:280 msgid "Sunday" msgstr "" @@ -3298,17 +3298,17 @@ msgid "today" msgstr "" #: src/Model/Event.php:449 src/Module/Calendar/Show.php:115 -#: src/Module/Settings/Display.php:288 src/Util/Temporal.php:339 +#: src/Module/Settings/Display.php:291 src/Util/Temporal.php:339 msgid "month" msgstr "" #: src/Model/Event.php:450 src/Module/Calendar/Show.php:116 -#: src/Module/Settings/Display.php:289 src/Util/Temporal.php:340 +#: src/Module/Settings/Display.php:292 src/Util/Temporal.php:340 msgid "week" msgstr "" #: src/Model/Event.php:451 src/Module/Calendar/Show.php:117 -#: src/Module/Settings/Display.php:290 src/Util/Temporal.php:341 +#: src/Module/Settings/Display.php:293 src/Util/Temporal.php:341 msgid "day" msgstr "" @@ -3873,12 +3873,12 @@ msgid "Disable" msgstr "" #: src/Module/Admin/Addons/Details.php:77 -#: src/Module/Admin/Themes/Details.php:41 src/Module/Settings/Display.php:336 +#: src/Module/Admin/Themes/Details.php:41 src/Module/Settings/Display.php:340 msgid "Enable" msgstr "" #: src/Module/Admin/Addons/Details.php:97 src/Module/Admin/Addons/Index.php:59 -#: src/Module/Admin/Federation.php:206 src/Module/Admin/Logs/Settings.php:74 +#: src/Module/Admin/Federation.php:213 src/Module/Admin/Logs/Settings.php:74 #: src/Module/Admin/Logs/View.php:71 src/Module/Admin/Queue.php:59 #: src/Module/Admin/Site.php:447 src/Module/Admin/Storage.php:124 #: src/Module/Admin/Summary.php:175 src/Module/Admin/Themes/Details.php:82 @@ -3923,7 +3923,7 @@ msgstr "" #: src/Module/Settings/Account.php:549 src/Module/Settings/Addons.php:64 #: src/Module/Settings/Connectors.php:149 #: src/Module/Settings/Connectors.php:235 -#: src/Module/Settings/Delegation.php:179 src/Module/Settings/Display.php:303 +#: src/Module/Settings/Delegation.php:179 src/Module/Settings/Display.php:306 #: src/Module/Settings/Features.php:61 msgid "Save Settings" msgstr "" @@ -4017,74 +4017,74 @@ msgstr "" msgid "Manage Additional Features" msgstr "" -#: src/Module/Admin/Federation.php:68 +#: src/Module/Admin/Federation.php:70 #: src/Module/Moderation/Report/Create.php:177 #: src/Module/Moderation/Report/Create.php:302 msgid "Other" msgstr "" -#: src/Module/Admin/Federation.php:146 src/Module/Admin/Federation.php:394 +#: src/Module/Admin/Federation.php:152 src/Module/Admin/Federation.php:401 msgid "unknown" msgstr "" -#: src/Module/Admin/Federation.php:179 +#: src/Module/Admin/Federation.php:186 #, php-format msgid "%2$s total system" msgid_plural "%2$s total systems" msgstr[0] "" msgstr[1] "" -#: src/Module/Admin/Federation.php:180 +#: src/Module/Admin/Federation.php:187 #, php-format msgid "%2$s active user last month" msgid_plural "%2$s active users last month" msgstr[0] "" msgstr[1] "" -#: src/Module/Admin/Federation.php:181 +#: src/Module/Admin/Federation.php:188 #, php-format msgid "%2$s active user last six months" msgid_plural "%2$s active users last six months" msgstr[0] "" msgstr[1] "" -#: src/Module/Admin/Federation.php:182 +#: src/Module/Admin/Federation.php:189 #, php-format msgid "%2$s registered user" msgid_plural "%2$s registered users" msgstr[0] "" msgstr[1] "" -#: src/Module/Admin/Federation.php:183 +#: src/Module/Admin/Federation.php:190 #, php-format msgid "%2$s locally created post or comment" msgid_plural "%2$s locally created posts and comments" msgstr[0] "" msgstr[1] "" -#: src/Module/Admin/Federation.php:186 +#: src/Module/Admin/Federation.php:193 #, php-format msgid "%2$s post per user" msgid_plural "%2$s posts per user" msgstr[0] "" msgstr[1] "" -#: src/Module/Admin/Federation.php:191 +#: src/Module/Admin/Federation.php:198 #, php-format msgid "%2$s user per system" msgid_plural "%2$s users per system" msgstr[0] "" msgstr[1] "" -#: src/Module/Admin/Federation.php:201 +#: src/Module/Admin/Federation.php:208 msgid "This page offers you some numbers to the known part of the federated social network your Friendica node is part of. These numbers are not complete but only reflect the part of the network your node is aware of." msgstr "" -#: src/Module/Admin/Federation.php:207 src/Module/BaseAdmin.php:73 +#: src/Module/Admin/Federation.php:214 src/Module/BaseAdmin.php:73 msgid "Federation Statistics" msgstr "" -#: src/Module/Admin/Federation.php:210 +#: src/Module/Admin/Federation.php:217 #, php-format msgid "Currently this node is aware of %2$s node (%3$s active users last month, %4$s active users last six months, %5$s registered users in total) from the following platforms:" msgid_plural "Currently this node is aware of %2$s nodes (%3$s active users last month, %4$s active users last six months, %5$s registered users in total) from the following platforms:" @@ -4278,11 +4278,11 @@ msgstr "" msgid "%s is no valid input for maximum image size" msgstr "" -#: src/Module/Admin/Site.php:362 src/Module/Settings/Display.php:206 +#: src/Module/Admin/Site.php:362 src/Module/Settings/Display.php:208 msgid "No special theme for mobile devices" msgstr "" -#: src/Module/Admin/Site.php:379 src/Module/Settings/Display.php:216 +#: src/Module/Admin/Site.php:379 src/Module/Settings/Display.php:218 #, php-format msgid "%s - (Experimental)" msgstr "" @@ -5826,14 +5826,14 @@ msgstr "" #: src/Module/Calendar/Event/Form.php:195 #: src/Module/Calendar/Event/Form.php:223 src/Module/Debug/Probe.php:45 -#: src/Module/Install.php:187 src/Module/Install.php:213 -#: src/Module/Install.php:218 src/Module/Install.php:232 -#: src/Module/Install.php:241 src/Module/Install.php:246 -#: src/Module/Install.php:252 src/Module/Install.php:257 -#: src/Module/Install.php:271 src/Module/Install.php:284 -#: src/Module/Install.php:311 -#: src/Module/Moderation/Blocklist/Server/Add.php:122 -#: src/Module/Moderation/Blocklist/Server/Add.php:124 +#: src/Module/Install.php:188 src/Module/Install.php:214 +#: src/Module/Install.php:219 src/Module/Install.php:233 +#: src/Module/Install.php:242 src/Module/Install.php:247 +#: src/Module/Install.php:253 src/Module/Install.php:258 +#: src/Module/Install.php:272 src/Module/Install.php:285 +#: src/Module/Install.php:312 +#: src/Module/Moderation/Blocklist/Server/Add.php:123 +#: src/Module/Moderation/Blocklist/Server/Add.php:125 #: src/Module/Moderation/Blocklist/Server/Import.php:113 #: src/Module/Moderation/Blocklist/Server/Index.php:72 #: src/Module/Moderation/Blocklist/Server/Index.php:73 @@ -5903,7 +5903,7 @@ msgstr "" msgid "Create New Event" msgstr "" -#: src/Module/Calendar/Show.php:118 src/Module/Settings/Display.php:291 +#: src/Module/Calendar/Show.php:118 src/Module/Settings/Display.php:294 msgid "list" msgstr "" @@ -7098,132 +7098,132 @@ msgstr "" msgid "Welcome to %s" msgstr "" -#: src/Module/Install.php:175 +#: src/Module/Install.php:176 msgid "Friendica Communications Server - Setup" msgstr "" -#: src/Module/Install.php:186 +#: src/Module/Install.php:187 msgid "System check" msgstr "" -#: src/Module/Install.php:188 src/Module/Install.php:233 -#: src/Module/Install.php:312 +#: src/Module/Install.php:189 src/Module/Install.php:234 +#: src/Module/Install.php:313 msgid "Requirement not satisfied" msgstr "" -#: src/Module/Install.php:189 +#: src/Module/Install.php:190 msgid "Optional requirement not satisfied" msgstr "" -#: src/Module/Install.php:190 +#: src/Module/Install.php:191 msgid "OK" msgstr "" -#: src/Module/Install.php:194 +#: src/Module/Install.php:195 msgid "Next" msgstr "" -#: src/Module/Install.php:195 +#: src/Module/Install.php:196 msgid "Check again" msgstr "" -#: src/Module/Install.php:208 +#: src/Module/Install.php:209 msgid "Base settings" msgstr "" -#: src/Module/Install.php:210 +#: src/Module/Install.php:211 msgid "Base path to installation" msgstr "" -#: src/Module/Install.php:212 +#: src/Module/Install.php:213 msgid "If the system cannot detect the correct path to your installation, enter the correct path here. This setting should only be set if you are using a restricted system and symbolic links to your webroot." msgstr "" -#: src/Module/Install.php:215 +#: src/Module/Install.php:216 msgid "The Friendica system URL" msgstr "" -#: src/Module/Install.php:217 +#: src/Module/Install.php:218 msgid "Overwrite this field in case the system URL determination isn't right, otherwise leave it as is." msgstr "" -#: src/Module/Install.php:228 +#: src/Module/Install.php:229 msgid "Database connection" msgstr "" -#: src/Module/Install.php:229 +#: src/Module/Install.php:230 msgid "In order to install Friendica we need to know how to connect to your database." msgstr "" -#: src/Module/Install.php:230 +#: src/Module/Install.php:231 msgid "Please contact your hosting provider or site administrator if you have questions about these settings." msgstr "" -#: src/Module/Install.php:231 +#: src/Module/Install.php:232 msgid "The database you specify below should already exist. If it does not, please create it before continuing." msgstr "" -#: src/Module/Install.php:238 +#: src/Module/Install.php:239 msgid "Database Server Name" msgstr "" -#: src/Module/Install.php:243 +#: src/Module/Install.php:244 msgid "Database Login Name" msgstr "" -#: src/Module/Install.php:249 +#: src/Module/Install.php:250 msgid "Database Login Password" msgstr "" -#: src/Module/Install.php:251 +#: src/Module/Install.php:252 msgid "For security reasons the password must not be empty" msgstr "" -#: src/Module/Install.php:254 +#: src/Module/Install.php:255 msgid "Database Name" msgstr "" -#: src/Module/Install.php:258 src/Module/Install.php:286 +#: src/Module/Install.php:259 src/Module/Install.php:287 msgid "Please select a default timezone for your website" msgstr "" -#: src/Module/Install.php:273 +#: src/Module/Install.php:274 msgid "Site settings" msgstr "" -#: src/Module/Install.php:281 +#: src/Module/Install.php:282 msgid "Site administrator email address" msgstr "" -#: src/Module/Install.php:283 +#: src/Module/Install.php:284 msgid "Your account email address must match this in order to use the web admin panel." msgstr "" -#: src/Module/Install.php:290 +#: src/Module/Install.php:291 msgid "System Language:" msgstr "" -#: src/Module/Install.php:292 +#: src/Module/Install.php:293 msgid "Set the default language for your Friendica installation interface and to send emails." msgstr "" -#: src/Module/Install.php:304 +#: src/Module/Install.php:305 msgid "Your Friendica site database has been installed." msgstr "" -#: src/Module/Install.php:314 +#: src/Module/Install.php:315 msgid "Installation finished" msgstr "" -#: src/Module/Install.php:334 +#: src/Module/Install.php:335 msgid "

What next

" msgstr "" -#: src/Module/Install.php:335 +#: src/Module/Install.php:336 msgid "IMPORTANT: You will need to [manually] setup a scheduled task for the worker." msgstr "" -#: src/Module/Install.php:338 +#: src/Module/Install.php:339 #, php-format msgid "Go to your new Friendica node registration page and register as new user. Remember to use the same email you have entered as administrator email. This will allow you to enter the site admin panel." msgstr "" @@ -7575,16 +7575,16 @@ msgid_plural "%s servers scheduled to be purged." msgstr[0] "" msgstr[1] "" -#: src/Module/Moderation/Blocklist/Server/Add.php:106 +#: src/Module/Moderation/Blocklist/Server/Add.php:107 #: src/Module/Moderation/Blocklist/Server/Import.php:101 msgid "← Return to the list" msgstr "" -#: src/Module/Moderation/Blocklist/Server/Add.php:108 +#: src/Module/Moderation/Blocklist/Server/Add.php:109 msgid "Block A New Server Domain Pattern" msgstr "" -#: src/Module/Moderation/Blocklist/Server/Add.php:109 +#: src/Module/Moderation/Blocklist/Server/Add.php:110 #: src/Module/Moderation/Blocklist/Server/Index.php:85 msgid "" "

The server domain pattern syntax is case-insensitive shell wildcard, comprising the following special characters:

\n" @@ -7594,65 +7594,65 @@ msgid "" "" msgstr "" -#: src/Module/Moderation/Blocklist/Server/Add.php:114 +#: src/Module/Moderation/Blocklist/Server/Add.php:115 #: src/Module/Moderation/Blocklist/Server/Index.php:93 msgid "Check pattern" msgstr "" -#: src/Module/Moderation/Blocklist/Server/Add.php:115 +#: src/Module/Moderation/Blocklist/Server/Add.php:116 msgid "Matching known servers" msgstr "" -#: src/Module/Moderation/Blocklist/Server/Add.php:116 +#: src/Module/Moderation/Blocklist/Server/Add.php:117 #: src/Module/Settings/Server/Action.php:62 #: src/Module/Settings/Server/Index.php:92 msgid "Server Name" msgstr "" -#: src/Module/Moderation/Blocklist/Server/Add.php:117 +#: src/Module/Moderation/Blocklist/Server/Add.php:118 msgid "Server Domain" msgstr "" -#: src/Module/Moderation/Blocklist/Server/Add.php:118 +#: src/Module/Moderation/Blocklist/Server/Add.php:119 msgid "Known Contacts" msgstr "" -#: src/Module/Moderation/Blocklist/Server/Add.php:119 +#: src/Module/Moderation/Blocklist/Server/Add.php:120 #, php-format msgid "%d known server" msgid_plural "%d known servers" msgstr[0] "" msgstr[1] "" -#: src/Module/Moderation/Blocklist/Server/Add.php:120 +#: src/Module/Moderation/Blocklist/Server/Add.php:121 msgid "Add pattern to the blocklist" msgstr "" -#: src/Module/Moderation/Blocklist/Server/Add.php:122 +#: src/Module/Moderation/Blocklist/Server/Add.php:123 #: src/Module/Moderation/Blocklist/Server/Index.php:102 msgid "Server Domain Pattern" msgstr "" -#: src/Module/Moderation/Blocklist/Server/Add.php:122 +#: src/Module/Moderation/Blocklist/Server/Add.php:123 #: src/Module/Moderation/Blocklist/Server/Index.php:102 msgid "The domain pattern of the new server to add to the blocklist. Do not include the protocol." msgstr "" -#: src/Module/Moderation/Blocklist/Server/Add.php:123 +#: src/Module/Moderation/Blocklist/Server/Add.php:124 msgid "Purge server" msgstr "" -#: src/Module/Moderation/Blocklist/Server/Add.php:123 +#: src/Module/Moderation/Blocklist/Server/Add.php:124 msgid "Also purges all the locally stored content authored by the known contacts registered on that server. Keeps the contacts and the server records. This action cannot be undone." msgid_plural "Also purges all the locally stored content authored by the known contacts registered on these servers. Keeps the contacts and the servers records. This action cannot be undone." msgstr[0] "" msgstr[1] "" -#: src/Module/Moderation/Blocklist/Server/Add.php:124 +#: src/Module/Moderation/Blocklist/Server/Add.php:125 msgid "Block reason" msgstr "" -#: src/Module/Moderation/Blocklist/Server/Add.php:124 +#: src/Module/Moderation/Blocklist/Server/Add.php:125 msgid "The reason why you blocked this server domain pattern. This reason will be shown publicly in the server information page." msgstr "" @@ -9554,12 +9554,12 @@ msgid "When selected, the channel results are reshared. This only works for publ msgstr "" #: src/Module/Settings/Channels.php:176 src/Module/Settings/Channels.php:197 -#: src/Module/Settings/Display.php:334 +#: src/Module/Settings/Display.php:338 msgid "Label" msgstr "" #: src/Module/Settings/Channels.php:177 src/Module/Settings/Channels.php:198 -#: src/Module/Settings/Display.php:335 +#: src/Module/Settings/Display.php:339 #: src/Module/Settings/TwoFactor/AppSpecific.php:124 msgid "Description" msgstr "" @@ -9918,194 +9918,202 @@ msgstr "" msgid "No entries." msgstr "" -#: src/Module/Settings/Display.php:174 +#: src/Module/Settings/Display.php:176 msgid "The theme you chose isn't available." msgstr "" -#: src/Module/Settings/Display.php:214 +#: src/Module/Settings/Display.php:216 #, php-format msgid "%s - (Unsupported)" msgstr "" -#: src/Module/Settings/Display.php:254 +#: src/Module/Settings/Display.php:257 msgid "No preview" msgstr "" -#: src/Module/Settings/Display.php:255 +#: src/Module/Settings/Display.php:258 msgid "No image" msgstr "" -#: src/Module/Settings/Display.php:256 +#: src/Module/Settings/Display.php:259 msgid "Small Image" msgstr "" -#: src/Module/Settings/Display.php:257 +#: src/Module/Settings/Display.php:260 msgid "Large Image" msgstr "" -#: src/Module/Settings/Display.php:302 +#: src/Module/Settings/Display.php:305 msgid "Display Settings" msgstr "" -#: src/Module/Settings/Display.php:304 +#: src/Module/Settings/Display.php:307 msgid "General Theme Settings" msgstr "" -#: src/Module/Settings/Display.php:305 +#: src/Module/Settings/Display.php:308 msgid "Custom Theme Settings" msgstr "" -#: src/Module/Settings/Display.php:306 +#: src/Module/Settings/Display.php:309 msgid "Content Settings" msgstr "" -#: src/Module/Settings/Display.php:307 view/theme/duepuntozero/config.php:74 +#: src/Module/Settings/Display.php:310 view/theme/duepuntozero/config.php:74 #: view/theme/frio/config.php:139 view/theme/quattro/config.php:76 #: view/theme/vier/config.php:124 msgid "Theme settings" msgstr "" -#: src/Module/Settings/Display.php:308 +#: src/Module/Settings/Display.php:311 msgid "Timelines" msgstr "" -#: src/Module/Settings/Display.php:315 +#: src/Module/Settings/Display.php:318 msgid "Display Theme:" msgstr "" -#: src/Module/Settings/Display.php:316 +#: src/Module/Settings/Display.php:319 msgid "Mobile Theme:" msgstr "" -#: src/Module/Settings/Display.php:319 +#: src/Module/Settings/Display.php:322 msgid "Number of items to display per page:" msgstr "" -#: src/Module/Settings/Display.php:319 src/Module/Settings/Display.php:320 +#: src/Module/Settings/Display.php:322 src/Module/Settings/Display.php:323 msgid "Maximum of 100 items" msgstr "" -#: src/Module/Settings/Display.php:320 +#: src/Module/Settings/Display.php:323 msgid "Number of items to display per page when viewed from mobile device:" msgstr "" -#: src/Module/Settings/Display.php:321 +#: src/Module/Settings/Display.php:324 msgid "Update browser every xx seconds" msgstr "" -#: src/Module/Settings/Display.php:321 +#: src/Module/Settings/Display.php:324 msgid "Minimum of 10 seconds. Enter -1 to disable it." msgstr "" -#: src/Module/Settings/Display.php:322 +#: src/Module/Settings/Display.php:325 msgid "Display emoticons" msgstr "" -#: src/Module/Settings/Display.php:322 +#: src/Module/Settings/Display.php:325 msgid "When enabled, emoticons are replaced with matching symbols." msgstr "" -#: src/Module/Settings/Display.php:323 +#: src/Module/Settings/Display.php:326 msgid "Infinite scroll" msgstr "" -#: src/Module/Settings/Display.php:323 +#: src/Module/Settings/Display.php:326 msgid "Automatic fetch new items when reaching the page end." msgstr "" -#: src/Module/Settings/Display.php:324 +#: src/Module/Settings/Display.php:327 msgid "Enable Smart Threading" msgstr "" -#: src/Module/Settings/Display.php:324 +#: src/Module/Settings/Display.php:327 msgid "Enable the automatic suppression of extraneous thread indentation." msgstr "" -#: src/Module/Settings/Display.php:325 +#: src/Module/Settings/Display.php:328 msgid "Display the Dislike feature" msgstr "" -#: src/Module/Settings/Display.php:325 +#: src/Module/Settings/Display.php:328 msgid "Display the Dislike button and dislike reactions on posts and comments." msgstr "" -#: src/Module/Settings/Display.php:326 +#: src/Module/Settings/Display.php:329 msgid "Display the resharer" msgstr "" -#: src/Module/Settings/Display.php:326 +#: src/Module/Settings/Display.php:329 msgid "Display the first resharer as icon and text on a reshared item." msgstr "" -#: src/Module/Settings/Display.php:327 +#: src/Module/Settings/Display.php:330 msgid "Stay local" msgstr "" -#: src/Module/Settings/Display.php:327 +#: src/Module/Settings/Display.php:330 msgid "Don't go to a remote system when following a contact link." msgstr "" -#: src/Module/Settings/Display.php:328 +#: src/Module/Settings/Display.php:331 msgid "Show the post deletion checkbox" msgstr "" -#: src/Module/Settings/Display.php:328 +#: src/Module/Settings/Display.php:331 msgid "Display the checkbox for the post deletion on the network page." msgstr "" -#: src/Module/Settings/Display.php:329 +#: src/Module/Settings/Display.php:332 msgid "DIsplay the event list" msgstr "" -#: src/Module/Settings/Display.php:329 +#: src/Module/Settings/Display.php:332 msgid "Display the birthday reminder and event list on the network page." msgstr "" -#: src/Module/Settings/Display.php:330 +#: src/Module/Settings/Display.php:333 msgid "Link preview mode" msgstr "" -#: src/Module/Settings/Display.php:330 +#: src/Module/Settings/Display.php:333 msgid "Appearance of the link preview that is added to each post with a link." msgstr "" -#: src/Module/Settings/Display.php:331 +#: src/Module/Settings/Display.php:334 msgid "Hide pictures with empty alternative text" msgstr "" -#: src/Module/Settings/Display.php:331 +#: src/Module/Settings/Display.php:334 msgid "Don't display pictures that are missing the alternative text." msgstr "" -#: src/Module/Settings/Display.php:332 +#: src/Module/Settings/Display.php:335 msgid "Hide custom emojis" msgstr "" -#: src/Module/Settings/Display.php:332 +#: src/Module/Settings/Display.php:335 msgid "Don't display custom emojis." msgstr "" -#: src/Module/Settings/Display.php:337 +#: src/Module/Settings/Display.php:336 +msgid "Black platform Icons" +msgstr "" + +#: src/Module/Settings/Display.php:336 +msgid "Use black platform icons instead of colored ones." +msgstr "" + +#: src/Module/Settings/Display.php:341 msgid "Bookmark" msgstr "" -#: src/Module/Settings/Display.php:339 +#: src/Module/Settings/Display.php:343 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:341 +#: src/Module/Settings/Display.php:345 msgid "Channel languages:" msgstr "" -#: src/Module/Settings/Display.php:341 +#: src/Module/Settings/Display.php:345 msgid "Select all languages that you want to see in your channels." msgstr "" -#: src/Module/Settings/Display.php:343 +#: src/Module/Settings/Display.php:347 msgid "Beginning of week:" msgstr "" -#: src/Module/Settings/Display.php:344 +#: src/Module/Settings/Display.php:348 msgid "Default calendar view:" msgstr "" @@ -11615,92 +11623,92 @@ msgstr "" msgid "More" msgstr "" -#: src/Object/Post.php:621 +#: src/Object/Post.php:622 msgid "Notifier task is pending" msgstr "" -#: src/Object/Post.php:622 +#: src/Object/Post.php:623 msgid "Delivery to remote servers is pending" msgstr "" -#: src/Object/Post.php:623 +#: src/Object/Post.php:624 msgid "Delivery to remote servers is underway" msgstr "" -#: src/Object/Post.php:624 +#: src/Object/Post.php:625 msgid "Delivery to remote servers is mostly done" msgstr "" -#: src/Object/Post.php:625 +#: src/Object/Post.php:626 msgid "Delivery to remote servers is done" msgstr "" -#: src/Object/Post.php:647 +#: src/Object/Post.php:648 #, php-format msgid "%d comment" msgid_plural "%d comments" msgstr[0] "" msgstr[1] "" -#: src/Object/Post.php:648 +#: src/Object/Post.php:649 msgid "Show more" msgstr "" -#: src/Object/Post.php:649 +#: src/Object/Post.php:650 msgid "Show fewer" msgstr "" -#: src/Object/Post.php:686 +#: src/Object/Post.php:687 #, php-format msgid "Reshared by: %s" msgstr "" -#: src/Object/Post.php:691 +#: src/Object/Post.php:692 #, php-format msgid "Viewed by: %s" msgstr "" -#: src/Object/Post.php:696 +#: src/Object/Post.php:697 #, php-format msgid "Read by: %s" msgstr "" -#: src/Object/Post.php:701 +#: src/Object/Post.php:702 #, php-format msgid "Liked by: %s" msgstr "" -#: src/Object/Post.php:706 +#: src/Object/Post.php:707 #, php-format msgid "Disliked by: %s" msgstr "" -#: src/Object/Post.php:711 +#: src/Object/Post.php:712 #, php-format msgid "Attended by: %s" msgstr "" -#: src/Object/Post.php:716 +#: src/Object/Post.php:717 #, php-format msgid "Maybe attended by: %s" msgstr "" -#: src/Object/Post.php:721 +#: src/Object/Post.php:722 #, php-format msgid "Not attended by: %s" msgstr "" -#: src/Object/Post.php:726 +#: src/Object/Post.php:727 #, php-format msgid "Commented by: %s" msgstr "" -#: src/Object/Post.php:731 +#: src/Object/Post.php:732 #, php-format msgid "Reacted with %s by: %s" msgstr "" -#: src/Object/Post.php:754 +#: src/Object/Post.php:755 #, php-format msgid "Quote shared by: %s" msgstr "" diff --git a/view/templates/admin/federation.tpl b/view/templates/admin/federation.tpl index 5a78a6d165..ec366b7abd 100644 --- a/view/templates/admin/federation.tpl +++ b/view/templates/admin/federation.tpl @@ -57,17 +57,18 @@ } }); - +
{{foreach $counts as $c}} {{if $c[0]['total'] > 0}} + - -
{{if $c[0]['svg']}}{{/if}} {{$c[0]['platform']}} {{$c[0]['total']}} {{$c[0]['network']}}
+
    {{if $c[0]['total']}}
  • {{$c[0]['totallbl']}}
  • {{/if}} {{if $c[0]['month']}}
  • {{$c[0]['monthlbl']}}
  • {{/if}} @@ -80,7 +81,7 @@
+