diff --git a/README.md b/README.md index 4dedf006b1..d4a49330e4 100644 --- a/README.md +++ b/README.md @@ -3,27 +3,28 @@ Friendica - your open and free social network Welcome to the free social web. Friendica is a platform for decentralised social communication linking to other independent social and corporate services. -Friendica connects you to a federated communications network of thousands of servers called the Fediverse. Through various protocols you can interact with anyone on [Friendica]( https://friendi.ca), [Mastodon](https://joinmastodon.org), [Lemmy](https://join-lemmy.org/), [Diaspora](https://diasporafoundation.org), [Misskey](https://join.misskey.page), [Peertube](https://joinpeertube.org/), [Pixelfed](https://pixelfed.org/), [Pleroma](https://pleroma.social) and many more. Receiving content from Tumblr, Wordpress and RSS is also possible. Friendica allows to import and mirror your content via add-ons such as ITTT and Buffer. You can customize and control how publicly or privately you want to share your content. +Friendica connects you to a federated communications network of thousands of servers called the Fediverse. +Through various protocols you can interact with anyone on [Friendica]( https://friendi.ca), [Mastodon](https://joinmastodon.org), [Lemmy](https://join-lemmy.org/), [Diaspora](https://diasporafoundation.org), [Misskey](https://join.misskey.page), [Peertube](https://joinpeertube.org/), [Pixelfed](https://pixelfed.org/), [Pleroma](https://pleroma.social) and many more. +Receiving content from Tumblr, WordPress and RSS is also possible. +Friendica allows to import and mirror your content via add-ons such as ITTT and Buffer. +You can control the privacy scope of your content. -Being part of the Fediverse allows you to be free from data-harvesting corporations. Enjoy open social communication, independent of any specific provider. +Being part of the Fediverse allows you to be free from data-harvesting corporations. +Enjoy open social communication, independent of any specific provider. -[Join Friendica](https://dir.friendica.social/servers) today or setup [your own Friendica instance](doc/Install.md). +[Join Friendica](https://dir.friendica.social/servers) today or set up [your own Friendica instance](doc/Install.md). ### Friendica on desktop -![Frio theme in desktop browser](images/screenshots/friendica-2023-10-frio-desktop.png?raw=true "Frio theme in desktop browser") +![Frio theme in desktop browser](images/screenshots/friendica-2023-12-frio-desktop.png?raw=true "Frio theme in desktop browser") ### Friendica on mobile

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

-### Alternative Theme "Vier" - -![Vier theme in desktop browser](images/screenshots/friendica-vier-community.png?raw=true "Vier theme in desktop browser") - ## Endorsements -- [![Awesome Humane Tech](images/humane-tech-badge.svg)](https://codeberg.org/teaserbot-labs/delightful-humane-design) In August 2020 Friendica was added to the curated delightful humane design resources in the [Fediverse category](https://codeberg.org/teaserbot-labs/delightful-humane-design#fediverse). +- Friendica is listed on [![Awesome Humane Tech](images/humane-tech-badge.svg)](https://codeberg.org/teaserbot-labs/delightful-humane-design) in the [Fediverse category](https://codeberg.org/teaserbot-labs/delightful-humane-design#fediverse). diff --git a/database.sql b/database.sql index 87fbd84a61..5f98cd402a 100644 --- a/database.sql +++ b/database.sql @@ -73,8 +73,6 @@ CREATE TABLE IF NOT EXISTS `user` ( `blockwall` boolean NOT NULL DEFAULT '0' COMMENT 'Prohibit contacts to post to the profile page of the user', `hidewall` boolean NOT NULL DEFAULT '0' COMMENT 'Hide profile details from unknown viewers', `blocktags` boolean NOT NULL DEFAULT '0' COMMENT 'Prohibit contacts to tag the post of this user', - `unkmail` boolean NOT NULL DEFAULT '0' COMMENT 'Permit unknown people to send private mails to this user', - `cntunkmail` int unsigned NOT NULL DEFAULT 10 COMMENT '', `notify-flags` smallint unsigned NOT NULL DEFAULT 65535 COMMENT 'email notification options', `page-flags` tinyint unsigned NOT NULL DEFAULT 0 COMMENT 'page/profile type', `account-type` tinyint unsigned NOT NULL DEFAULT 0 COMMENT '', @@ -2967,8 +2965,6 @@ CREATE VIEW `owner-view` AS SELECT `user`.`blockwall` AS `blockwall`, `user`.`hidewall` AS `hidewall`, `user`.`blocktags` AS `blocktags`, - `user`.`unkmail` AS `unkmail`, - `user`.`cntunkmail` AS `cntunkmail`, `user`.`notify-flags` AS `notify-flags`, `user`.`page-flags` AS `page-flags`, `user`.`account-type` AS `account-type`, diff --git a/doc/database/db_user.md b/doc/database/db_user.md index c1aefd6bee..108a689ad1 100644 --- a/doc/database/db_user.md +++ b/doc/database/db_user.md @@ -34,8 +34,6 @@ Fields | blockwall | Prohibit contacts to post to the profile page of the user | boolean | NO | | 0 | | | hidewall | Hide profile details from unknown viewers | boolean | NO | | 0 | | | blocktags | Prohibit contacts to tag the post of this user | boolean | NO | | 0 | | -| unkmail | Permit unknown people to send private mails to this user | boolean | NO | | 0 | | -| cntunkmail | | int unsigned | NO | | 10 | | | notify-flags | email notification options | smallint unsigned | NO | | 65535 | | | page-flags | page/profile type | tinyint unsigned | NO | | 0 | | | account-type | | tinyint unsigned | NO | | 0 | | diff --git a/images/screenshots/friendica-2023-10-frio-desktop.png b/images/screenshots/friendica-2023-10-frio-desktop.png deleted file mode 100644 index e06f971365..0000000000 Binary files a/images/screenshots/friendica-2023-10-frio-desktop.png and /dev/null differ diff --git a/images/screenshots/friendica-2023-12-frio-desktop.png b/images/screenshots/friendica-2023-12-frio-desktop.png new file mode 100644 index 0000000000..1a926ffb65 Binary files /dev/null and b/images/screenshots/friendica-2023-12-frio-desktop.png differ diff --git a/src/Model/Profile.php b/src/Model/Profile.php index cd25ba4eec..44835bda9a 100644 --- a/src/Model/Profile.php +++ b/src/Model/Profile.php @@ -352,8 +352,6 @@ class Profile if (Contact::canReceivePrivateMessages($profile_contact)) { if ($visitor_is_followed || $visitor_is_following) { $wallmessage_link = $visitor_base_path . '/message/new/' . $profile_contact['id']; - } elseif ($visitor_is_authenticated && !empty($profile['unkmail'])) { - $wallmessage_link = 'profile/' . $profile['nickname'] . '/unkmail'; } } } diff --git a/src/Module/Profile/UnkMail.php b/src/Module/Profile/UnkMail.php deleted file mode 100644 index ddb617f99b..0000000000 --- a/src/Module/Profile/UnkMail.php +++ /dev/null @@ -1,165 +0,0 @@ -. - * - */ - -namespace Friendica\Module\Profile; - -use Friendica\App; -use Friendica\Core\L10n; -use Friendica\Core\Renderer; -use Friendica\Core\Session\Capability\IHandleUserSessions; -use Friendica\Database\Database; -use Friendica\Model\Mail; -use Friendica\Model\User; -use Friendica\Module\Response; -use Friendica\Navigation\SystemMessages; -use Friendica\Util\DateTimeFormat; -use Friendica\Util\Profiler; -use Friendica\Util\Strings; -use Psr\Log\LoggerInterface; - -/** - * Unknown Mail module - */ -class UnkMail extends \Friendica\BaseModule -{ - /** @var IHandleUserSessions */ - private $userSessions; - - /** @var SystemMessages */ - private $systemMessages; - - /** @var Database */ - private $database; - - /** @var App\Page */ - private $page; - - public function __construct(App\Page $page, Database $database, SystemMessages $systemMessages, IHandleUserSessions $userSessions, L10n $l10n, App\BaseURL $baseUrl, App\Arguments $args, LoggerInterface $logger, Profiler $profiler, Response $response, array $server, array $parameters = []) - { - parent::__construct($l10n, $baseUrl, $args, $logger, $profiler, $response, $server, $parameters); - - $this->userSessions = $userSessions; - $this->systemMessages = $systemMessages; - $this->database = $database; - $this->page = $page; - } - - protected function post(array $request = []) - { - $replyto = $this->userSessions->getMyUrl(); - if (!$replyto) { - $this->systemMessages->addNotice($this->l10n->t('Permission denied.')); - return; - } - - $recipient = $this->parameters['nickname']; - $subject = trim($request['subject'] ?? ''); - $body = Strings::escapeHtml(trim($request['body'] ?? '')); - - if (!$body) { - $this->systemMessages->addNotice($this->l10n->t('Empty message body.')); - return; - } - - $user = User::getByNickname($recipient); - if (empty($user)) { - return; - } - - if (!$user['unkmail']) { - return; - } - - $total = $this->database->count('mail', ["`uid` = ? AND `created` > ? AND `unknown`", $user['uid'], DateTimeFormat::utc('now - 1 day')]); - if ($total > $user['cntunkmail']) { - return; - } - - $ret = Mail::sendWall($user, $body, $subject, $replyto); - - switch ($ret) { - case -1: - $this->systemMessages->addNotice($this->l10n->t('No recipient selected.')); - break; - case -2: - $this->systemMessages->addNotice($this->l10n->t('Unable to check your home location.')); - break; - case -3: - $this->systemMessages->addNotice($this->l10n->t('Message could not be sent.')); - break; - case -4: - $this->systemMessages->addNotice($this->l10n->t('Message collection failure.')); - break; - } - - $this->baseUrl->redirect('profile/' . $user['nickname']); - } - - protected function content(array $request = []): string - { - $returnUrl = 'profile/' . $this->parameters['nickname']; - - if (!$this->userSessions->getMyUrl()) { - $this->systemMessages->addNotice($this->l10n->t('Permission denied.')); - $this->baseUrl->redirect($returnUrl); - } - - $user = User::getByNickname($this->parameters['nickname']); - if (empty($user)) { - $this->systemMessages->addNotice($this->l10n->t('Recipient not found.')); - $this->baseUrl->redirect($returnUrl); - } - - if (!$user['unkmail']) { - $this->systemMessages->addNotice($this->l10n->t('Permission denied.')); - $this->baseUrl->redirect($returnUrl); - } - - $total = $this->database->count('mail', ["`uid` = ? AND `created` > ? AND `unknown`", $user['uid'], DateTimeFormat::utc('now - 1 day')]); - if ($total > $user['cntunkmail']) { - $this->systemMessages->addNotice($this->l10n->t('Number of daily wall messages for %s exceeded. Message failed.', $user['username'])); - $this->baseUrl->redirect($returnUrl); - } - - $tpl = Renderer::getMarkupTemplate('profile/unkmail-header.tpl'); - $this->page['htmlhead'] .= Renderer::replaceMacros($tpl, [ - '$nickname' => $user['nickname'], - '$linkurl' => $this->l10n->t('Please enter a link URL:') - ]); - - $tpl = Renderer::getMarkupTemplate('profile/unkmail.tpl'); - return Renderer::replaceMacros($tpl, [ - '$l10n' => [ - 'header' => $this->l10n->t('Send Private Message'), - 'subheader' => $this->l10n->t('If you wish for %s to respond, please check that the privacy settings on your site allow private mail from unknown senders.', $user['username']), - 'insert' => $this->l10n->t('Insert web link'), - 'wait' => $this->l10n->t('Please wait'), - 'submit' => $this->l10n->t('Submit'), - ], - - '$nickname' => $user['nickname'], - - '$to' => ['to' , $this->l10n->t('To') , $user['username'], '', '', 'disabled'], - '$subject' => ['subject', $this->l10n->t('Subject') , $request['subject'] ?? ''], - '$body' => ['body' , $this->l10n->t('Your message'), $request['body'] ?? ''], - ]); - } -} diff --git a/src/Module/Settings/Account.php b/src/Module/Settings/Account.php index 2c3b57ab9f..41d4f0fc58 100644 --- a/src/Module/Settings/Account.php +++ b/src/Module/Settings/Account.php @@ -160,8 +160,6 @@ class Account extends BaseSettings $hidewall = !empty($request['hidewall']); $blockwall = empty($request['blockwall']); // this setting is inverted! $blocktags = empty($request['blocktags']); // this setting is inverted! - $unkmail = !empty($request['unkmail']); - $cntunkmail = intval($request['cntunkmail'] ?? 0); $def_gid = intval($request['circle-selection'] ?? 0); $aclFormatter = DI::aclFormatter(); @@ -185,8 +183,6 @@ class Account extends BaseSettings 'blockwall' => $blockwall, 'hidewall' => $hidewall, 'blocktags' => $blocktags, - 'unkmail' => $unkmail, - 'cntunkmail' => $cntunkmail, ]; $profile_fields = [ @@ -408,8 +404,6 @@ class Account extends BaseSettings $openid = $user['openid']; $maxreq = $user['maxreq']; $expire = $user['expire'] ?: ''; - $unkmail = $user['unkmail']; - $cntunkmail = $user['cntunkmail']; $expire_items = DI::pConfig()->get(DI::userSession()->getLocalUserId(), 'expire', 'items', true); $expire_notes = DI::pConfig()->get(DI::userSession()->getLocalUserId(), 'expire', 'notes', true); @@ -571,8 +565,6 @@ class Account extends BaseSettings '$accessiblephotos' => ['accessible-photos', DI::l10n()->t('Make all posted pictures accessible'), DI::pConfig()->get(DI::userSession()->getLocalUserId(), 'system', 'accessible-photos'), DI::l10n()->t("This option makes every posted picture accessible via the direct link. This is a workaround for the problem that most other networks can't handle permissions on pictures. Non public pictures still won't be visible for the public on your photo albums though.")], '$blockwall' => ['blockwall', DI::l10n()->t('Allow friends to post to your profile page?'), (intval($user['blockwall']) ? '0' : '1'), DI::l10n()->t('Your contacts may write posts on your profile wall. These posts will be distributed to your contacts')], '$blocktags' => ['blocktags', DI::l10n()->t('Allow friends to tag your posts?'), (intval($user['blocktags']) ? '0' : '1'), DI::l10n()->t('Your contacts can add additional tags to your posts.')], - '$unkmail' => ['unkmail', DI::l10n()->t('Permit unknown people to send you private mail?'), $unkmail, DI::l10n()->t('Friendica network users may send you private messages even if they are not in your contact list.')], - '$cntunkmail' => ['cntunkmail', DI::l10n()->t('Maximum private messages per day from unknown people:'), $cntunkmail, DI::l10n()->t("(to prevent spam abuse)")], '$circle_select' => Circle::getSelectorHTML(DI::userSession()->getLocalUserId(), $user['def_gid'], 'circle-selection', DI::l10n()->t('Default privacy circle for new contacts')), '$circle_select_group' => Circle::getSelectorHTML(DI::userSession()->getLocalUserId(), DI::pConfig()->get(DI::userSession()->getLocalUserId(), 'system', 'default-group-gid', $user['def_gid']), 'circle-selection-group', DI::l10n()->t('Default privacy circle for new group contacts')), '$permissions' => DI::l10n()->t('Default Post Permissions'), diff --git a/static/dbstructure.config.php b/static/dbstructure.config.php index 5265232366..f1c4d4bda6 100644 --- a/static/dbstructure.config.php +++ b/static/dbstructure.config.php @@ -130,8 +130,6 @@ return [ "blockwall" => ["type" => "boolean", "not null" => "1", "default" => "0", "comment" => "Prohibit contacts to post to the profile page of the user"], "hidewall" => ["type" => "boolean", "not null" => "1", "default" => "0", "comment" => "Hide profile details from unknown viewers"], "blocktags" => ["type" => "boolean", "not null" => "1", "default" => "0", "comment" => "Prohibit contacts to tag the post of this user"], - "unkmail" => ["type" => "boolean", "not null" => "1", "default" => "0", "comment" => "Permit unknown people to send private mails to this user"], - "cntunkmail" => ["type" => "int unsigned", "not null" => "1", "default" => "10", "comment" => ""], "notify-flags" => ["type" => "smallint unsigned", "not null" => "1", "default" => "65535", "comment" => "email notification options"], "page-flags" => ["type" => "tinyint unsigned", "not null" => "1", "default" => "0", "comment" => "page/profile type"], "account-type" => ["type" => "tinyint unsigned", "not null" => "1", "default" => "0", "comment" => ""], diff --git a/static/dbview.config.php b/static/dbview.config.php index fcb5ca1676..f0183db81a 100644 --- a/static/dbview.config.php +++ b/static/dbview.config.php @@ -1002,8 +1002,6 @@ "blockwall" => ["user", "blockwall"], "hidewall" => ["user", "hidewall"], "blocktags" => ["user", "blocktags"], - "unkmail" => ["user", "unkmail"], - "cntunkmail" => ["user", "cntunkmail"], "notify-flags" => ["user", "notify-flags"], "page-flags" => ["user", "page-flags"], "account-type" => ["user", "account-type"], diff --git a/static/routes.config.php b/static/routes.config.php index 30360fa7d7..1b2529ed00 100644 --- a/static/routes.config.php +++ b/static/routes.config.php @@ -41,7 +41,6 @@ $profileRoutes = [ '/restricted' => [Module\Profile\Restricted::class, [R::GET ]], '/schedule' => [Module\Profile\Schedule::class, [R::GET, R::POST]], '/conversations[/{category}[/{date1}[/{date2}]]]' => [Module\Profile\Conversations::class, [R::GET]], - '/unkmail' => [Module\Profile\UnkMail::class, [R::GET, R::POST]], ]; $apiRoutes = [ @@ -125,7 +124,7 @@ $apiRoutes = [ '/list[.{extension:json|xml|rss|atom}]' => [Module\Api\Twitter\Lists\Lists::class, [R::GET ]], '/ownerships[.{extension:json|xml|rss|atom}]' => [Module\Api\Twitter\Lists\Ownership::class, [R::GET ]], '/statuses[.{extension:json|xml|rss|atom}]' => [Module\Api\Twitter\Lists\Statuses::class, [R::GET ]], - '/subscriptions[.{extension:json|xml|rss|atom}]' => [Module\Api\Friendica\Lists\Lists::class, [R::GET ]], + '/subscriptions[.{extension:json|xml|rss|atom}]' => [Module\Api\Twitter\Lists\Lists::class, [R::GET ]], '/update[.{extension:json|xml|rss|atom}]' => [Module\Api\Twitter\Lists\Update::class, [ R::POST]], ], diff --git a/view/lang/C/messages.po b/view/lang/C/messages.po index a664c00d7f..b81cf81d4d 100644 --- a/view/lang/C/messages.po +++ b/view/lang/C/messages.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: 2024.03-dev\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-01-02 20:55+0000\n" +"POT-Creation-Date: 2024-01-03 07:31+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -63,14 +63,12 @@ msgstr "" #: 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/Profile/UnkMail.php:69 src/Module/Profile/UnkMail.php:121 -#: src/Module/Profile/UnkMail.php:132 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:388 -#: src/Module/Settings/Channels.php:56 src/Module/Settings/Channels.php:112 -#: src/Module/Settings/Delegation.php:90 src/Module/Settings/Display.php:90 -#: src/Module/Settings/Display.php:197 +#: src/Module/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:384 src/Module/Settings/Channels.php:56 +#: src/Module/Settings/Channels.php:112 src/Module/Settings/Delegation.php:90 +#: src/Module/Settings/Display.php:90 src/Module/Settings/Display.php:197 #: src/Module/Settings/Profile/Photo/Crop.php:165 #: src/Module/Settings/Profile/Photo/Index.php:112 #: src/Module/Settings/RemoveMe.php:119 src/Module/Settings/UserExport.php:80 @@ -224,7 +222,7 @@ msgstr "" msgid "New Message" msgstr "" -#: mod/message.php:82 src/Module/Profile/UnkMail.php:100 +#: mod/message.php:82 msgid "No recipient selected." msgstr "" @@ -232,11 +230,11 @@ msgstr "" msgid "Unable to locate contact information." msgstr "" -#: mod/message.php:91 src/Module/Profile/UnkMail.php:106 +#: mod/message.php:91 msgid "Message could not be sent." msgstr "" -#: mod/message.php:95 src/Module/Profile/UnkMail.php:109 +#: mod/message.php:95 msgid "Message collection failure." msgstr "" @@ -262,11 +260,11 @@ msgstr "" msgid "Conversation was not removed." msgstr "" -#: mod/message.php:181 mod/message.php:286 src/Module/Profile/UnkMail.php:145 +#: mod/message.php:181 mod/message.php:286 msgid "Please enter a link URL:" msgstr "" -#: mod/message.php:190 src/Module/Profile/UnkMail.php:151 +#: mod/message.php:190 msgid "Send Private Message" msgstr "" @@ -288,14 +286,13 @@ msgid "Upload photo" msgstr "" #: mod/message.php:200 mod/message.php:355 src/Module/Post/Edit.php:135 -#: src/Module/Profile/UnkMail.php:153 msgid "Insert web link" msgstr "" #: mod/message.php:201 mod/message.php:357 mod/photos.php:1301 #: src/Content/Conversation.php:401 src/Content/Conversation.php:1586 #: src/Module/Item/Compose.php:206 src/Module/Post/Edit.php:145 -#: src/Module/Profile/UnkMail.php:154 src/Object/Post.php:609 +#: src/Object/Post.php:609 msgid "Please wait" msgstr "" @@ -315,8 +312,7 @@ msgstr "" #: 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/Profile/UnkMail.php:155 -#: src/Module/Settings/Profile/Index.php:257 +#: 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 @@ -1382,7 +1378,7 @@ msgid "Public post" msgstr "" #: src/Content/Conversation.php:426 src/Content/Widget/VCard.php:131 -#: src/Model/Profile.php:485 src/Module/Admin/Logs/View.php:92 +#: src/Model/Profile.php:483 src/Module/Admin/Logs/View.php:92 #: src/Module/Post/Edit.php:181 msgid "Message" msgstr "" @@ -1747,26 +1743,26 @@ msgid "" "Contact birthday events are private to you." msgstr "" -#: src/Content/GroupManager.php:152 src/Content/Nav.php:278 +#: src/Content/GroupManager.php:147 src/Content/Nav.php:278 #: src/Content/Text/HTML.php:880 src/Content/Widget.php:537 #: src/Model/User.php:1368 msgid "Groups" msgstr "" -#: src/Content/GroupManager.php:154 +#: src/Content/GroupManager.php:149 msgid "External link to group" msgstr "" -#: src/Content/GroupManager.php:158 src/Content/Widget.php:512 +#: src/Content/GroupManager.php:153 src/Content/Widget.php:512 msgid "show less" msgstr "" -#: src/Content/GroupManager.php:159 src/Content/Widget.php:410 +#: src/Content/GroupManager.php:154 src/Content/Widget.php:410 #: src/Content/Widget.php:513 msgid "show more" msgstr "" -#: src/Content/GroupManager.php:160 +#: src/Content/GroupManager.php:155 msgid "Create new group" msgstr "" @@ -1807,7 +1803,7 @@ msgid "View Photos" msgstr "" #: src/Content/Item.php:433 src/Model/Contact.php:1211 -#: src/Model/Profile.php:470 +#: src/Model/Profile.php:468 msgid "Network Posts" msgstr "" @@ -2224,7 +2220,7 @@ msgid "The end" msgstr "" #: src/Content/Text/HTML.php:859 src/Content/Widget/VCard.php:127 -#: src/Model/Profile.php:479 src/Module/Contact/Profile.php:471 +#: src/Model/Profile.php:477 src/Module/Contact/Profile.php:471 msgid "Follow" msgstr "" @@ -2363,7 +2359,7 @@ msgstr "" msgid "News" msgstr "" -#: src/Content/Widget.php:542 src/Module/Settings/Account.php:434 +#: src/Content/Widget.php:542 src/Module/Settings/Account.php:428 msgid "Account Types" msgstr "" @@ -2424,46 +2420,46 @@ msgid "More Trending Tags" msgstr "" #: src/Content/Widget/VCard.php:106 src/Model/Contact.php:1204 -#: src/Model/Profile.php:463 +#: src/Model/Profile.php:461 msgid "Post to group" msgstr "" #: src/Content/Widget/VCard.php:110 src/Model/Contact.php:1209 -#: src/Model/Profile.php:468 src/Module/Moderation/Item/Source.php:85 +#: src/Model/Profile.php:466 src/Module/Moderation/Item/Source.php:85 msgid "Mention" msgstr "" -#: src/Content/Widget/VCard.php:120 src/Model/Profile.php:382 +#: src/Content/Widget/VCard.php:120 src/Model/Profile.php:380 #: src/Module/Contact/Profile.php:408 src/Module/Profile/Profile.php:199 msgid "XMPP:" msgstr "" -#: src/Content/Widget/VCard.php:121 src/Model/Profile.php:383 +#: src/Content/Widget/VCard.php:121 src/Model/Profile.php:381 #: src/Module/Contact/Profile.php:410 src/Module/Profile/Profile.php:203 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:963 -#: src/Model/Profile.php:377 src/Module/Contact/Profile.php:406 +#: 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 msgid "Location:" msgstr "" -#: src/Content/Widget/VCard.php:125 src/Model/Profile.php:492 +#: src/Content/Widget/VCard.php:125 src/Model/Profile.php:490 #: src/Module/Notifications/Introductions.php:201 msgid "Network:" msgstr "" #: src/Content/Widget/VCard.php:129 src/Model/Contact.php:1237 -#: src/Model/Contact.php:1249 src/Model/Profile.php:481 +#: src/Model/Contact.php:1249 src/Model/Profile.php:479 #: src/Module/Contact/Profile.php:463 msgid "Unfollow" msgstr "" #: src/Content/Widget/VCard.php:135 src/Model/Contact.php:1206 -#: src/Model/Profile.php:465 +#: src/Model/Profile.php:463 msgid "View group" msgstr "" @@ -3504,149 +3500,149 @@ msgstr "" msgid "Wall Photos" msgstr "" -#: src/Model/Profile.php:365 src/Module/Profile/Profile.php:283 +#: src/Model/Profile.php:363 src/Module/Profile/Profile.php:283 #: src/Module/Profile/Profile.php:285 msgid "Edit profile" msgstr "" -#: src/Model/Profile.php:367 +#: src/Model/Profile.php:365 msgid "Change profile photo" msgstr "" -#: src/Model/Profile.php:380 src/Module/Directory.php:152 +#: src/Model/Profile.php:378 src/Module/Directory.php:152 #: src/Module/Profile/Profile.php:209 msgid "Homepage:" msgstr "" -#: src/Model/Profile.php:381 src/Module/Contact/Profile.php:412 +#: src/Model/Profile.php:379 src/Module/Contact/Profile.php:412 #: src/Module/Notifications/Introductions.php:189 msgid "About:" msgstr "" -#: src/Model/Profile.php:483 +#: src/Model/Profile.php:481 msgid "Atom feed" msgstr "" -#: src/Model/Profile.php:490 +#: src/Model/Profile.php:488 msgid "This website has been verified to belong to the same person." msgstr "" -#: src/Model/Profile.php:541 +#: src/Model/Profile.php:539 msgid "F d" msgstr "" -#: src/Model/Profile.php:605 src/Model/Profile.php:682 +#: src/Model/Profile.php:603 src/Model/Profile.php:680 msgid "[today]" msgstr "" -#: src/Model/Profile.php:614 +#: src/Model/Profile.php:612 msgid "Birthday Reminders" msgstr "" -#: src/Model/Profile.php:615 +#: src/Model/Profile.php:613 msgid "Birthdays this week:" msgstr "" -#: src/Model/Profile.php:631 +#: src/Model/Profile.php:629 msgid "g A l F d" msgstr "" -#: src/Model/Profile.php:669 +#: src/Model/Profile.php:667 msgid "[No description]" msgstr "" -#: src/Model/Profile.php:695 +#: src/Model/Profile.php:693 msgid "Event Reminders" msgstr "" -#: src/Model/Profile.php:696 +#: src/Model/Profile.php:694 msgid "Upcoming events the next 7 days:" msgstr "" -#: src/Model/Profile.php:895 +#: src/Model/Profile.php:893 #, php-format msgid "OpenWebAuth: %1$s welcomes %2$s" msgstr "" -#: src/Model/Profile.php:1035 +#: src/Model/Profile.php:1033 msgid "Hometown:" msgstr "" -#: src/Model/Profile.php:1036 +#: src/Model/Profile.php:1034 msgid "Marital Status:" msgstr "" -#: src/Model/Profile.php:1037 +#: src/Model/Profile.php:1035 msgid "With:" msgstr "" -#: src/Model/Profile.php:1038 +#: src/Model/Profile.php:1036 msgid "Since:" msgstr "" -#: src/Model/Profile.php:1039 +#: src/Model/Profile.php:1037 msgid "Sexual Preference:" msgstr "" -#: src/Model/Profile.php:1040 +#: src/Model/Profile.php:1038 msgid "Political Views:" msgstr "" -#: src/Model/Profile.php:1041 +#: src/Model/Profile.php:1039 msgid "Religious Views:" msgstr "" -#: src/Model/Profile.php:1042 +#: src/Model/Profile.php:1040 msgid "Likes:" msgstr "" -#: src/Model/Profile.php:1043 +#: src/Model/Profile.php:1041 msgid "Dislikes:" msgstr "" -#: src/Model/Profile.php:1044 +#: src/Model/Profile.php:1042 msgid "Title/Description:" msgstr "" -#: src/Model/Profile.php:1045 src/Module/Admin/Summary.php:197 +#: src/Model/Profile.php:1043 src/Module/Admin/Summary.php:197 #: src/Module/Moderation/Report/Create.php:280 #: src/Module/Moderation/Summary.php:77 msgid "Summary" msgstr "" -#: src/Model/Profile.php:1046 +#: src/Model/Profile.php:1044 msgid "Musical interests" msgstr "" -#: src/Model/Profile.php:1047 +#: src/Model/Profile.php:1045 msgid "Books, literature" msgstr "" -#: src/Model/Profile.php:1048 +#: src/Model/Profile.php:1046 msgid "Television" msgstr "" -#: src/Model/Profile.php:1049 +#: src/Model/Profile.php:1047 msgid "Film/dance/culture/entertainment" msgstr "" -#: src/Model/Profile.php:1050 +#: src/Model/Profile.php:1048 msgid "Hobbies/Interests" msgstr "" -#: src/Model/Profile.php:1051 +#: src/Model/Profile.php:1049 msgid "Love/romance" msgstr "" -#: src/Model/Profile.php:1052 +#: src/Model/Profile.php:1050 msgid "Work/employment" msgstr "" -#: src/Model/Profile.php:1053 +#: src/Model/Profile.php:1051 msgid "School/education" msgstr "" -#: src/Model/Profile.php:1054 +#: src/Model/Profile.php:1052 msgid "Contact information and Social Networks" msgstr "" @@ -3977,7 +3973,7 @@ 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:452 #: src/Module/Admin/Themes/Index.php:113 src/Module/Admin/Tos.php:86 -#: src/Module/Settings/Account.php:541 src/Module/Settings/Addons.php:78 +#: src/Module/Settings/Account.php:535 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 @@ -6215,7 +6211,6 @@ msgid "Contact not found." msgstr "" #: src/Module/Circle.php:102 src/Module/Contact/Contacts.php:66 -#: src/Module/Conversation/Network.php:231 msgid "Invalid contact." msgstr "" @@ -7001,21 +6996,21 @@ msgstr "" msgid "Not available." msgstr "" -#: src/Module/Conversation/Network.php:217 +#: src/Module/Conversation/Network.php:200 msgid "No such circle" msgstr "" -#: src/Module/Conversation/Network.php:221 +#: src/Module/Conversation/Network.php:204 #, php-format msgid "Circle: %s" msgstr "" -#: src/Module/Conversation/Network.php:250 +#: src/Module/Conversation/Network.php:223 #, php-format msgid "Error %d (%s) while fetching the timeline." msgstr "" -#: src/Module/Conversation/Network.php:329 +#: src/Module/Conversation/Network.php:300 msgid "Network feed not available." msgstr "" @@ -7811,19 +7806,19 @@ msgstr "" msgid "List of pending user deletions" msgstr "" -#: src/Module/Moderation/BaseUsers.php:119 src/Module/Settings/Account.php:472 +#: src/Module/Moderation/BaseUsers.php:119 src/Module/Settings/Account.php:466 msgid "Normal Account Page" msgstr "" -#: src/Module/Moderation/BaseUsers.php:120 src/Module/Settings/Account.php:479 +#: src/Module/Moderation/BaseUsers.php:120 src/Module/Settings/Account.php:473 msgid "Soapbox Page" msgstr "" -#: src/Module/Moderation/BaseUsers.php:121 src/Module/Settings/Account.php:486 +#: src/Module/Moderation/BaseUsers.php:121 src/Module/Settings/Account.php:480 msgid "Public Group" msgstr "" -#: src/Module/Moderation/BaseUsers.php:122 src/Module/Settings/Account.php:493 +#: src/Module/Moderation/BaseUsers.php:122 src/Module/Settings/Account.php:487 msgid "Automatic Friend Page" msgstr "" @@ -7831,19 +7826,19 @@ msgstr "" msgid "Private Group" msgstr "" -#: src/Module/Moderation/BaseUsers.php:126 src/Module/Settings/Account.php:444 +#: src/Module/Moderation/BaseUsers.php:126 src/Module/Settings/Account.php:438 msgid "Personal Page" msgstr "" -#: src/Module/Moderation/BaseUsers.php:127 src/Module/Settings/Account.php:451 +#: src/Module/Moderation/BaseUsers.php:127 src/Module/Settings/Account.php:445 msgid "Organisation Page" msgstr "" -#: src/Module/Moderation/BaseUsers.php:128 src/Module/Settings/Account.php:458 +#: src/Module/Moderation/BaseUsers.php:128 src/Module/Settings/Account.php:452 msgid "News Page" msgstr "" -#: src/Module/Moderation/BaseUsers.php:129 src/Module/Settings/Account.php:465 +#: src/Module/Moderation/BaseUsers.php:129 src/Module/Settings/Account.php:459 msgid "Community Group" msgstr "" @@ -9208,42 +9203,6 @@ msgstr "" msgid "Remove post" msgstr "" -#: src/Module/Profile/UnkMail.php:78 -msgid "Empty message body." -msgstr "" - -#: src/Module/Profile/UnkMail.php:103 -msgid "Unable to check your home location." -msgstr "" - -#: src/Module/Profile/UnkMail.php:127 -msgid "Recipient not found." -msgstr "" - -#: src/Module/Profile/UnkMail.php:138 -#, php-format -msgid "Number of daily wall messages for %s exceeded. Message failed." -msgstr "" - -#: src/Module/Profile/UnkMail.php:152 -#, php-format -msgid "" -"If you wish for %s to respond, please check that the privacy settings on " -"your site allow private mail from unknown senders." -msgstr "" - -#: src/Module/Profile/UnkMail.php:160 -msgid "To" -msgstr "" - -#: src/Module/Profile/UnkMail.php:161 -msgid "Subject" -msgstr "" - -#: src/Module/Profile/UnkMail.php:162 -msgid "Your message" -msgstr "" - #: src/Module/Register.php:84 msgid "Only parent users can create additional accounts." msgstr "" @@ -9305,7 +9264,7 @@ msgid "Please repeat your e-mail address:" msgstr "" #: src/Module/Register.php:162 src/Module/Security/PasswordTooLong.php:100 -#: src/Module/Settings/Account.php:547 +#: src/Module/Settings/Account.php:541 msgid "New Password:" msgstr "" @@ -9314,7 +9273,7 @@ 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:548 +#: src/Module/Settings/Account.php:542 msgid "Confirm:" msgstr "" @@ -9532,24 +9491,24 @@ msgid "Update Password" msgstr "" #: src/Module/Security/PasswordTooLong.php:99 -#: src/Module/Settings/Account.php:549 +#: src/Module/Settings/Account.php:543 msgid "Current Password:" msgstr "" #: src/Module/Security/PasswordTooLong.php:99 -#: src/Module/Settings/Account.php:549 +#: src/Module/Settings/Account.php:543 msgid "Your current password to confirm the changes" msgstr "" #: src/Module/Security/PasswordTooLong.php:100 -#: src/Module/Settings/Account.php:533 +#: src/Module/Settings/Account.php:527 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:534 +#: src/Module/Settings/Account.php:528 msgid "Password length is limited to 72 characters." msgstr "" @@ -9674,99 +9633,99 @@ msgstr "" msgid "Cannot change to that email." msgstr "" -#: src/Module/Settings/Account.php:146 src/Module/Settings/Account.php:199 -#: src/Module/Settings/Account.php:220 src/Module/Settings/Account.php:304 -#: src/Module/Settings/Account.php:331 +#: 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:327 msgid "Settings were not updated." msgstr "" -#: src/Module/Settings/Account.php:344 +#: src/Module/Settings/Account.php:340 msgid "Contact CSV file upload error" msgstr "" -#: src/Module/Settings/Account.php:363 +#: src/Module/Settings/Account.php:359 msgid "Importing Contacts done" msgstr "" -#: src/Module/Settings/Account.php:376 +#: src/Module/Settings/Account.php:372 msgid "Relocate message has been send to your contacts" msgstr "" -#: src/Module/Settings/Account.php:393 +#: src/Module/Settings/Account.php:389 msgid "Unable to find your profile. Please contact your admin." msgstr "" -#: src/Module/Settings/Account.php:435 +#: src/Module/Settings/Account.php:429 msgid "Personal Page Subtypes" msgstr "" -#: src/Module/Settings/Account.php:436 +#: src/Module/Settings/Account.php:430 msgid "Community Group Subtypes" msgstr "" -#: src/Module/Settings/Account.php:446 +#: src/Module/Settings/Account.php:440 msgid "Account for a personal profile." msgstr "" -#: src/Module/Settings/Account.php:453 +#: src/Module/Settings/Account.php:447 msgid "" "Account for an organisation that automatically approves contact requests as " "\"Followers\"." msgstr "" -#: src/Module/Settings/Account.php:460 +#: src/Module/Settings/Account.php:454 msgid "" "Account for a news reflector that automatically approves contact requests as " "\"Followers\"." msgstr "" -#: src/Module/Settings/Account.php:467 +#: src/Module/Settings/Account.php:461 msgid "Account for community discussions." msgstr "" -#: src/Module/Settings/Account.php:474 +#: src/Module/Settings/Account.php:468 msgid "" "Account for a regular personal profile that requires manual approval of " "\"Friends\" and \"Followers\"." msgstr "" -#: src/Module/Settings/Account.php:481 +#: src/Module/Settings/Account.php:475 msgid "" "Account for a public profile that automatically approves contact requests as " "\"Followers\"." msgstr "" -#: src/Module/Settings/Account.php:488 +#: src/Module/Settings/Account.php:482 msgid "Automatically approves all contact requests." msgstr "" -#: src/Module/Settings/Account.php:495 +#: src/Module/Settings/Account.php:489 msgid "" "Account for a popular profile that automatically approves contact requests " "as \"Friends\"." msgstr "" -#: src/Module/Settings/Account.php:500 +#: src/Module/Settings/Account.php:494 msgid "Private Group [Experimental]" msgstr "" -#: src/Module/Settings/Account.php:502 +#: src/Module/Settings/Account.php:496 msgid "Requires manual approval of contact requests." msgstr "" -#: src/Module/Settings/Account.php:511 +#: src/Module/Settings/Account.php:505 msgid "OpenID:" msgstr "" -#: src/Module/Settings/Account.php:511 +#: src/Module/Settings/Account.php:505 msgid "(Optional) Allow this OpenID to login to this account." msgstr "" -#: src/Module/Settings/Account.php:519 +#: src/Module/Settings/Account.php:513 msgid "Publish your profile in your local site directory?" msgstr "" -#: src/Module/Settings/Account.php:519 +#: src/Module/Settings/Account.php:513 #, php-format msgid "" "Your profile will be published in this node's local " @@ -9774,94 +9733,94 @@ msgid "" "system settings." msgstr "" -#: src/Module/Settings/Account.php:525 +#: src/Module/Settings/Account.php:519 #, php-format msgid "" "Your profile will also be published in the global friendica directories (e." "g. %s)." msgstr "" -#: src/Module/Settings/Account.php:538 +#: src/Module/Settings/Account.php:532 msgid "Account Settings" msgstr "" -#: src/Module/Settings/Account.php:539 +#: src/Module/Settings/Account.php:533 #, php-format msgid "Your Identity Address is '%s' or '%s'." msgstr "" -#: src/Module/Settings/Account.php:546 +#: src/Module/Settings/Account.php:540 msgid "Password Settings" msgstr "" -#: src/Module/Settings/Account.php:548 +#: src/Module/Settings/Account.php:542 msgid "Leave password fields blank unless changing" msgstr "" -#: src/Module/Settings/Account.php:550 +#: src/Module/Settings/Account.php:544 msgid "Password:" msgstr "" -#: src/Module/Settings/Account.php:550 +#: src/Module/Settings/Account.php:544 msgid "Your current password to confirm the changes of the email address" msgstr "" -#: src/Module/Settings/Account.php:553 +#: src/Module/Settings/Account.php:547 msgid "Delete OpenID URL" msgstr "" -#: src/Module/Settings/Account.php:555 +#: src/Module/Settings/Account.php:549 msgid "Basic Settings" msgstr "" -#: src/Module/Settings/Account.php:556 +#: src/Module/Settings/Account.php:550 #: src/Module/Settings/Profile/Index.php:283 msgid "Display name:" msgstr "" -#: src/Module/Settings/Account.php:557 +#: src/Module/Settings/Account.php:551 msgid "Email Address:" msgstr "" -#: src/Module/Settings/Account.php:558 +#: src/Module/Settings/Account.php:552 msgid "Your Timezone:" msgstr "" -#: src/Module/Settings/Account.php:559 +#: src/Module/Settings/Account.php:553 msgid "Your Language:" msgstr "" -#: src/Module/Settings/Account.php:559 +#: src/Module/Settings/Account.php:553 msgid "" "Set the language we use to show you friendica interface and to send you " "emails" msgstr "" -#: src/Module/Settings/Account.php:560 +#: src/Module/Settings/Account.php:554 msgid "Default Post Location:" msgstr "" -#: src/Module/Settings/Account.php:561 +#: src/Module/Settings/Account.php:555 msgid "Use Browser Location:" msgstr "" -#: src/Module/Settings/Account.php:563 +#: src/Module/Settings/Account.php:557 msgid "Security and Privacy Settings" msgstr "" -#: src/Module/Settings/Account.php:565 +#: src/Module/Settings/Account.php:559 msgid "Maximum Friend Requests/Day:" msgstr "" -#: src/Module/Settings/Account.php:565 src/Module/Settings/Account.php:575 +#: src/Module/Settings/Account.php:559 msgid "(to prevent spam abuse)" msgstr "" -#: src/Module/Settings/Account.php:567 +#: src/Module/Settings/Account.php:561 msgid "Allow your profile to be searchable globally?" msgstr "" -#: src/Module/Settings/Account.php:567 +#: src/Module/Settings/Account.php:561 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 +9828,43 @@ msgid "" "indexed or not." msgstr "" -#: src/Module/Settings/Account.php:568 +#: src/Module/Settings/Account.php:562 msgid "Hide your contact/friend list from viewers of your profile?" msgstr "" -#: src/Module/Settings/Account.php:568 +#: src/Module/Settings/Account.php:562 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:569 +#: src/Module/Settings/Account.php:563 msgid "Hide your public content from anonymous viewers" msgstr "" -#: src/Module/Settings/Account.php:569 +#: src/Module/Settings/Account.php:563 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:570 +#: src/Module/Settings/Account.php:564 msgid "Make public posts unlisted" msgstr "" -#: src/Module/Settings/Account.php:570 +#: src/Module/Settings/Account.php:564 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:571 +#: src/Module/Settings/Account.php:565 msgid "Make all posted pictures accessible" msgstr "" -#: src/Module/Settings/Account.php:571 +#: src/Module/Settings/Account.php:565 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,241 +9872,227 @@ msgid "" "public on your photo albums though." msgstr "" -#: src/Module/Settings/Account.php:572 +#: src/Module/Settings/Account.php:566 msgid "Allow friends to post to your profile page?" msgstr "" -#: src/Module/Settings/Account.php:572 +#: src/Module/Settings/Account.php:566 msgid "" "Your contacts may write posts on your profile wall. These posts will be " "distributed to your contacts" msgstr "" -#: src/Module/Settings/Account.php:573 +#: src/Module/Settings/Account.php:567 msgid "Allow friends to tag your posts?" msgstr "" -#: src/Module/Settings/Account.php:573 +#: src/Module/Settings/Account.php:567 msgid "Your contacts can add additional tags to your posts." msgstr "" -#: src/Module/Settings/Account.php:574 -msgid "Permit unknown people to send you private mail?" -msgstr "" - -#: src/Module/Settings/Account.php:574 -msgid "" -"Friendica network users may send you private messages even if they are not " -"in your contact list." -msgstr "" - -#: src/Module/Settings/Account.php:575 -msgid "Maximum private messages per day from unknown people:" -msgstr "" - -#: src/Module/Settings/Account.php:576 +#: src/Module/Settings/Account.php:568 msgid "Default privacy circle for new contacts" msgstr "" -#: src/Module/Settings/Account.php:577 +#: src/Module/Settings/Account.php:569 msgid "Default privacy circle for new group contacts" msgstr "" -#: src/Module/Settings/Account.php:578 +#: src/Module/Settings/Account.php:570 msgid "Default Post Permissions" msgstr "" -#: src/Module/Settings/Account.php:582 +#: src/Module/Settings/Account.php:574 msgid "Expiration settings" msgstr "" -#: src/Module/Settings/Account.php:583 +#: src/Module/Settings/Account.php:575 msgid "Automatically expire posts after this many days:" msgstr "" -#: src/Module/Settings/Account.php:583 +#: src/Module/Settings/Account.php:575 msgid "If empty, posts will not expire. Expired posts will be deleted" msgstr "" -#: src/Module/Settings/Account.php:584 +#: src/Module/Settings/Account.php:576 msgid "Expire posts" msgstr "" -#: src/Module/Settings/Account.php:584 +#: src/Module/Settings/Account.php:576 msgid "When activated, posts and comments will be expired." msgstr "" -#: src/Module/Settings/Account.php:585 +#: src/Module/Settings/Account.php:577 msgid "Expire personal notes" msgstr "" -#: src/Module/Settings/Account.php:585 +#: src/Module/Settings/Account.php:577 msgid "" "When activated, the personal notes on your profile page will be expired." msgstr "" -#: src/Module/Settings/Account.php:586 +#: src/Module/Settings/Account.php:578 msgid "Expire starred posts" msgstr "" -#: src/Module/Settings/Account.php:586 +#: src/Module/Settings/Account.php:578 msgid "" "Starring posts keeps them from being expired. That behaviour is overwritten " "by this setting." msgstr "" -#: src/Module/Settings/Account.php:587 +#: src/Module/Settings/Account.php:579 msgid "Only expire posts by others" msgstr "" -#: src/Module/Settings/Account.php:587 +#: src/Module/Settings/Account.php:579 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:590 +#: src/Module/Settings/Account.php:582 msgid "Notification Settings" msgstr "" -#: src/Module/Settings/Account.php:591 +#: src/Module/Settings/Account.php:583 msgid "Send a notification email when:" msgstr "" -#: src/Module/Settings/Account.php:592 +#: src/Module/Settings/Account.php:584 msgid "You receive an introduction" msgstr "" -#: src/Module/Settings/Account.php:593 +#: src/Module/Settings/Account.php:585 msgid "Your introductions are confirmed" msgstr "" -#: src/Module/Settings/Account.php:594 +#: src/Module/Settings/Account.php:586 msgid "Someone writes on your profile wall" msgstr "" -#: src/Module/Settings/Account.php:595 +#: src/Module/Settings/Account.php:587 msgid "Someone writes a followup comment" msgstr "" -#: src/Module/Settings/Account.php:596 +#: src/Module/Settings/Account.php:588 msgid "You receive a private message" msgstr "" -#: src/Module/Settings/Account.php:597 +#: src/Module/Settings/Account.php:589 msgid "You receive a friend suggestion" msgstr "" -#: src/Module/Settings/Account.php:598 +#: src/Module/Settings/Account.php:590 msgid "You are tagged in a post" msgstr "" -#: src/Module/Settings/Account.php:600 +#: src/Module/Settings/Account.php:592 msgid "Create a desktop notification when:" msgstr "" -#: src/Module/Settings/Account.php:601 +#: src/Module/Settings/Account.php:593 msgid "Someone tagged you" msgstr "" -#: src/Module/Settings/Account.php:602 +#: src/Module/Settings/Account.php:594 msgid "Someone directly commented on your post" msgstr "" -#: src/Module/Settings/Account.php:603 +#: src/Module/Settings/Account.php:595 msgid "Someone liked your content" msgstr "" -#: src/Module/Settings/Account.php:603 src/Module/Settings/Account.php:604 +#: src/Module/Settings/Account.php:595 src/Module/Settings/Account.php:596 msgid "Can only be enabled, when the direct comment notification is enabled." msgstr "" -#: src/Module/Settings/Account.php:604 +#: src/Module/Settings/Account.php:596 msgid "Someone shared your content" msgstr "" -#: src/Module/Settings/Account.php:605 +#: src/Module/Settings/Account.php:597 msgid "Someone commented in your thread" msgstr "" -#: src/Module/Settings/Account.php:606 +#: src/Module/Settings/Account.php:598 msgid "Someone commented in a thread where you commented" msgstr "" -#: src/Module/Settings/Account.php:607 +#: src/Module/Settings/Account.php:599 msgid "Someone commented in a thread where you interacted" msgstr "" -#: src/Module/Settings/Account.php:609 +#: src/Module/Settings/Account.php:601 msgid "Activate desktop notifications" msgstr "" -#: src/Module/Settings/Account.php:609 +#: src/Module/Settings/Account.php:601 msgid "Show desktop popup on new notifications" msgstr "" -#: src/Module/Settings/Account.php:613 +#: src/Module/Settings/Account.php:605 msgid "Text-only notification emails" msgstr "" -#: src/Module/Settings/Account.php:615 +#: src/Module/Settings/Account.php:607 msgid "Send text only notification emails, without the html part" msgstr "" -#: src/Module/Settings/Account.php:619 +#: src/Module/Settings/Account.php:611 msgid "Show detailled notifications" msgstr "" -#: src/Module/Settings/Account.php:621 +#: src/Module/Settings/Account.php:613 msgid "" "Per default, notifications are condensed to a single notification per item. " "When enabled every notification is displayed." msgstr "" -#: src/Module/Settings/Account.php:625 +#: src/Module/Settings/Account.php:617 msgid "Show notifications of ignored contacts" msgstr "" -#: src/Module/Settings/Account.php:627 +#: src/Module/Settings/Account.php:619 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:630 +#: src/Module/Settings/Account.php:622 msgid "Advanced Account/Page Type Settings" msgstr "" -#: src/Module/Settings/Account.php:631 +#: src/Module/Settings/Account.php:623 msgid "Change the behaviour of this account for special situations" msgstr "" -#: src/Module/Settings/Account.php:634 +#: src/Module/Settings/Account.php:626 msgid "Import Contacts" msgstr "" -#: src/Module/Settings/Account.php:635 +#: src/Module/Settings/Account.php:627 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:636 +#: src/Module/Settings/Account.php:628 msgid "Upload File" msgstr "" -#: src/Module/Settings/Account.php:639 +#: src/Module/Settings/Account.php:631 msgid "Relocate" msgstr "" -#: src/Module/Settings/Account.php:640 +#: src/Module/Settings/Account.php:632 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:641 +#: src/Module/Settings/Account.php:633 msgid "Resend relocate message to contacts" msgstr "" diff --git a/view/lang/de/messages.po b/view/lang/de/messages.po index 6177be0449..8bb856a0ec 100644 --- a/view/lang/de/messages.po +++ b/view/lang/de/messages.po @@ -1,5 +1,5 @@ # FRIENDICA Distributed Social Network -# Copyright (C) 2010-2023, the Friendica project +# Copyright (C) 2010-2024, the Friendica project # This file is distributed under the same license as the Friendica package. # # Translators: @@ -46,7 +46,7 @@ # Steffen K9, 2019 # Tobias Diekershoff , 2013-2016 # Tobias Diekershoff , 2011-2013 -# Tobias Diekershoff , 2016-2023 +# Tobias Diekershoff , 2016-2024 # Tobias Quathamer, 2023 # zottel , 2011-2012 # tschlotfeldt , 2011 @@ -56,9 +56,9 @@ msgid "" msgstr "" "Project-Id-Version: friendica\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-12-04 22:18+0000\n" +"POT-Creation-Date: 2024-01-02 20:55+0000\n" "PO-Revision-Date: 2011-05-05 10:19+0000\n" -"Last-Translator: Raroun, 2023\n" +"Last-Translator: Tobias Diekershoff , 2016-2024\n" "Language-Team: German (http://app.transifex.com/Friendica/friendica/language/de/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -116,7 +116,7 @@ msgstr "Beitrag nicht gefunden." #: src/Module/Register.php:90 src/Module/Register.php:206 #: src/Module/Register.php:245 src/Module/Search/Directory.php:37 #: src/Module/Settings/Account.php:50 src/Module/Settings/Account.php:388 -#: src/Module/Settings/Channels.php:56 src/Module/Settings/Channels.php:114 +#: src/Module/Settings/Channels.php:56 src/Module/Settings/Channels.php:112 #: src/Module/Settings/Delegation.php:90 src/Module/Settings/Display.php:90 #: src/Module/Settings/Display.php:197 #: src/Module/Settings/Profile/Photo/Crop.php:165 @@ -337,7 +337,7 @@ msgid "Insert web link" msgstr "Einen Link einfügen" #: mod/message.php:201 mod/message.php:357 mod/photos.php:1301 -#: src/Content/Conversation.php:401 src/Content/Conversation.php:1584 +#: src/Content/Conversation.php:401 src/Content/Conversation.php:1586 #: src/Module/Item/Compose.php:206 src/Module/Post/Edit.php:145 #: src/Module/Profile/UnkMail.php:154 src/Object/Post.php:609 msgid "Please wait" @@ -362,7 +362,7 @@ msgstr "Bitte warten" #: src/Module/Profile/Profile.php:274 src/Module/Profile/UnkMail.php:155 #: src/Module/Settings/Profile/Index.php:257 #: src/Module/Settings/Server/Action.php:79 src/Module/User/Delegation.php:189 -#: src/Object/Post.php:1149 view/theme/duepuntozero/config.php:85 +#: src/Object/Post.php:1154 view/theme/duepuntozero/config.php:85 #: view/theme/frio/config.php:171 view/theme/quattro/config.php:87 #: view/theme/vier/config.php:135 msgid "Submit" @@ -430,7 +430,7 @@ msgstr "Persönliche Notizen sind nur für dich sichtbar." #: mod/notes.php:57 src/Content/Text/HTML.php:859 #: src/Module/Admin/Storage.php:142 src/Module/Filer/SaveTag.php:74 -#: src/Module/Post/Edit.php:129 src/Module/Settings/Channels.php:162 +#: src/Module/Post/Edit.php:129 src/Module/Settings/Channels.php:171 msgid "Save" msgstr "Speichern" @@ -440,7 +440,7 @@ msgstr "Speichern" #: src/Module/DFRN/Poll.php:43 src/Module/Feed.php:65 src/Module/HCard.php:51 #: src/Module/Profile/Common.php:62 src/Module/Profile/Common.php:71 #: src/Module/Profile/Contacts.php:64 src/Module/Profile/Contacts.php:72 -#: src/Module/Profile/Conversations.php:91 src/Module/Profile/Media.php:38 +#: src/Module/Profile/Conversations.php:91 src/Module/Profile/Media.php:56 #: src/Module/Profile/Photos.php:83 src/Module/Profile/RemoteFollow.php:71 #: src/Module/Register.php:267 msgid "User not found." @@ -648,34 +648,34 @@ msgstr "Drehen EUS (links)" #: mod/photos.php:1139 mod/photos.php:1195 mod/photos.php:1275 #: src/Module/Contact.php:618 src/Module/Item/Compose.php:188 -#: src/Object/Post.php:1146 +#: src/Object/Post.php:1151 msgid "This is you" msgstr "Das bist du" #: mod/photos.php:1141 mod/photos.php:1197 mod/photos.php:1277 #: src/Module/Moderation/Reports.php:95 src/Object/Post.php:603 -#: src/Object/Post.php:1148 +#: src/Object/Post.php:1153 msgid "Comment" msgstr "Kommentar" #: mod/photos.php:1143 mod/photos.php:1199 mod/photos.php:1279 #: src/Content/Conversation.php:416 src/Module/Calendar/Event/Form.php:248 #: src/Module/Item/Compose.php:201 src/Module/Post/Edit.php:165 -#: src/Object/Post.php:1162 +#: src/Object/Post.php:1167 msgid "Preview" msgstr "Vorschau" #: mod/photos.php:1144 src/Content/Conversation.php:369 -#: src/Module/Post/Edit.php:130 src/Object/Post.php:1150 +#: src/Module/Post/Edit.php:130 src/Object/Post.php:1155 msgid "Loading..." msgstr "lädt..." -#: mod/photos.php:1236 src/Content/Conversation.php:1499 +#: mod/photos.php:1236 src/Content/Conversation.php:1501 #: src/Object/Post.php:261 msgid "Select" msgstr "Auswählen" -#: mod/photos.php:1237 src/Content/Conversation.php:1500 +#: 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 @@ -843,12 +843,12 @@ msgstr "Alle Kontakte" #: src/BaseModule.php:439 src/Content/Conversation/Factory/Channel.php:45 #: src/Content/Widget.php:239 src/Core/ACL.php:195 src/Module/Contact.php:414 #: src/Module/PermissionTooltip.php:141 src/Module/PermissionTooltip.php:163 -#: src/Module/Settings/Channels.php:121 +#: src/Module/Settings/Channels.php:119 msgid "Followers" msgstr "Folgende" #: src/BaseModule.php:444 src/Content/Widget.php:240 -#: src/Module/Contact.php:417 src/Module/Settings/Channels.php:120 +#: src/Module/Contact.php:417 src/Module/Settings/Channels.php:118 msgid "Following" msgstr "Gefolgte" @@ -1007,7 +1007,7 @@ msgstr "Alle ausstehenden Post-Updates wurden ausgeführt." msgid "Enter user nickname: " msgstr "Spitzname angeben:" -#: src/Console/User.php:182 src/Model/User.php:793 +#: src/Console/User.php:182 src/Model/User.php:806 #: src/Module/Api/Twitter/ContactEndpoint.php:74 #: src/Module/Moderation/Users/Active.php:71 #: src/Module/Moderation/Users/Blocked.php:71 @@ -1289,7 +1289,7 @@ msgid "Visible to everybody" msgstr "Für jedermann sichtbar" #: src/Content/Conversation.php:339 src/Module/Item/Compose.php:200 -#: src/Object/Post.php:1161 +#: src/Object/Post.php:1166 msgid "Please enter a image/video/audio/webpage URL:" msgstr "Bitte gib eine Bild/Video/Audio/Webseiten-URL ein:" @@ -1334,52 +1334,52 @@ msgid "attach file" msgstr "Datei anhängen" #: src/Content/Conversation.php:374 src/Module/Item/Compose.php:190 -#: src/Module/Post/Edit.php:171 src/Object/Post.php:1151 +#: src/Module/Post/Edit.php:171 src/Object/Post.php:1156 msgid "Bold" msgstr "Fett" #: src/Content/Conversation.php:375 src/Module/Item/Compose.php:191 -#: src/Module/Post/Edit.php:172 src/Object/Post.php:1152 +#: src/Module/Post/Edit.php:172 src/Object/Post.php:1157 msgid "Italic" msgstr "Kursiv" #: src/Content/Conversation.php:376 src/Module/Item/Compose.php:192 -#: src/Module/Post/Edit.php:173 src/Object/Post.php:1153 +#: src/Module/Post/Edit.php:173 src/Object/Post.php:1158 msgid "Underline" msgstr "Unterstrichen" #: src/Content/Conversation.php:377 src/Module/Item/Compose.php:193 -#: src/Module/Post/Edit.php:174 src/Object/Post.php:1155 +#: src/Module/Post/Edit.php:174 src/Object/Post.php:1160 msgid "Quote" msgstr "Zitat" #: src/Content/Conversation.php:378 src/Module/Item/Compose.php:194 -#: src/Module/Post/Edit.php:175 src/Object/Post.php:1156 +#: src/Module/Post/Edit.php:175 src/Object/Post.php:1161 msgid "Add emojis" msgstr "Emojis hinzufügen" #: src/Content/Conversation.php:379 src/Module/Item/Compose.php:195 -#: src/Object/Post.php:1154 +#: src/Object/Post.php:1159 msgid "Content Warning" msgstr "Inhaltswarnung" #: src/Content/Conversation.php:380 src/Module/Item/Compose.php:196 -#: src/Module/Post/Edit.php:176 src/Object/Post.php:1157 +#: src/Module/Post/Edit.php:176 src/Object/Post.php:1162 msgid "Code" msgstr "Code" #: src/Content/Conversation.php:381 src/Module/Item/Compose.php:197 -#: src/Object/Post.php:1158 +#: src/Object/Post.php:1163 msgid "Image" msgstr "Bild" #: src/Content/Conversation.php:382 src/Module/Item/Compose.php:198 -#: src/Module/Post/Edit.php:177 src/Object/Post.php:1159 +#: src/Module/Post/Edit.php:177 src/Object/Post.php:1164 msgid "Link" msgstr "Link" #: src/Content/Conversation.php:383 src/Module/Item/Compose.php:199 -#: src/Module/Post/Edit.php:178 src/Object/Post.php:1160 +#: src/Module/Post/Edit.php:178 src/Object/Post.php:1165 msgid "Link or Media" msgstr "Link oder Mediendatei" @@ -1449,116 +1449,116 @@ msgstr "löschen" msgid "Delete Selected Items" msgstr "Lösche die markierten Beiträge" -#: src/Content/Conversation.php:756 src/Content/Conversation.php:759 -#: src/Content/Conversation.php:762 src/Content/Conversation.php:765 -#: src/Content/Conversation.php:768 +#: src/Content/Conversation.php:729 src/Content/Conversation.php:732 +#: src/Content/Conversation.php:735 src/Content/Conversation.php:738 +#: src/Content/Conversation.php:741 #, php-format msgid "You had been addressed (%s)." msgstr "Du wurdest angeschrieben (%s)." -#: src/Content/Conversation.php:771 +#: src/Content/Conversation.php:744 #, php-format msgid "You are following %s." msgstr "Du folgst %s." -#: src/Content/Conversation.php:776 +#: src/Content/Conversation.php:749 #, php-format msgid "You subscribed to %s." msgstr "Du hast %s abonniert." -#: src/Content/Conversation.php:778 +#: src/Content/Conversation.php:751 msgid "You subscribed to one or more tags in this post." msgstr "Du folgst einem oder mehreren Hashtags dieses Beitrags." -#: src/Content/Conversation.php:798 +#: src/Content/Conversation.php:771 #, php-format msgid "%s reshared this." msgstr "%s hat dies geteilt" -#: src/Content/Conversation.php:800 +#: src/Content/Conversation.php:773 msgid "Reshared" msgstr "Geteilt" -#: src/Content/Conversation.php:800 +#: src/Content/Conversation.php:773 #, php-format msgid "Reshared by %s <%s>" msgstr "Geteilt von %s <%s>" -#: src/Content/Conversation.php:803 +#: src/Content/Conversation.php:776 #, php-format msgid "%s is participating in this thread." msgstr "%s ist an der Unterhaltung beteiligt." -#: src/Content/Conversation.php:806 +#: src/Content/Conversation.php:779 msgid "Stored for general reasons" msgstr "Aus allgemeinen Gründen aufbewahrt" -#: src/Content/Conversation.php:809 +#: src/Content/Conversation.php:782 msgid "Global post" msgstr "Globaler Beitrag" -#: src/Content/Conversation.php:812 +#: src/Content/Conversation.php:785 msgid "Sent via an relay server" msgstr "Über einen Relay-Server gesendet" -#: src/Content/Conversation.php:812 +#: src/Content/Conversation.php:785 #, php-format msgid "Sent via the relay server %s <%s>" msgstr "Über den Relay-Server %s <%s> gesendet" -#: src/Content/Conversation.php:815 +#: src/Content/Conversation.php:788 msgid "Fetched" msgstr "Abgerufen" -#: src/Content/Conversation.php:815 +#: src/Content/Conversation.php:788 #, php-format msgid "Fetched because of %s <%s>" msgstr "Wegen %s <%s> abgerufen" -#: src/Content/Conversation.php:818 +#: src/Content/Conversation.php:791 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:821 +#: src/Content/Conversation.php:794 msgid "Local delivery" msgstr "Lokale Zustellung" -#: src/Content/Conversation.php:824 +#: src/Content/Conversation.php:797 msgid "Stored because of your activity (like, comment, star, ...)" msgstr "Gespeichert aufgrund Ihrer Aktivität (Like, Kommentar, Stern, ...)" -#: src/Content/Conversation.php:827 +#: src/Content/Conversation.php:800 msgid "Distributed" msgstr "Verteilt" -#: src/Content/Conversation.php:830 +#: src/Content/Conversation.php:803 msgid "Pushed to us" msgstr "Zu uns gepusht" -#: src/Content/Conversation.php:1527 src/Object/Post.php:248 +#: src/Content/Conversation.php:1529 src/Object/Post.php:248 msgid "Pinned item" msgstr "Angehefteter Beitrag" -#: src/Content/Conversation.php:1544 src/Object/Post.php:548 +#: src/Content/Conversation.php:1546 src/Object/Post.php:548 #: src/Object/Post.php:549 #, php-format msgid "View %s's profile @ %s" msgstr "Das Profil von %s auf %s betrachten." -#: src/Content/Conversation.php:1557 src/Object/Post.php:536 +#: src/Content/Conversation.php:1559 src/Object/Post.php:536 msgid "Categories:" msgstr "Kategorien:" -#: src/Content/Conversation.php:1558 src/Object/Post.php:537 +#: src/Content/Conversation.php:1560 src/Object/Post.php:537 msgid "Filed under:" msgstr "Abgelegt unter:" -#: src/Content/Conversation.php:1566 src/Object/Post.php:562 +#: src/Content/Conversation.php:1568 src/Object/Post.php:562 #, php-format msgid "%s from %s" msgstr "%s von %s" -#: src/Content/Conversation.php:1582 +#: src/Content/Conversation.php:1584 msgid "View in context" msgstr "Im Zusammenhang betrachten" @@ -1596,7 +1596,7 @@ 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:47 -#: src/Module/Settings/Channels.php:138 src/Module/Settings/Channels.php:154 +#: src/Module/Settings/Channels.php:146 src/Module/Settings/Channels.php:163 msgid "Images" msgstr "Bilder" @@ -1605,7 +1605,7 @@ msgid "Posts with images" msgstr "Beiträge mit Bildern" #: src/Content/Conversation/Factory/Channel.php:48 -#: src/Module/Settings/Channels.php:140 src/Module/Settings/Channels.php:156 +#: src/Module/Settings/Channels.php:148 src/Module/Settings/Channels.php:165 msgid "Audio" msgstr "Audio" @@ -1614,7 +1614,7 @@ msgid "Posts with audio" msgstr "Beiträge mit Audio" #: src/Content/Conversation/Factory/Channel.php:49 -#: src/Module/Settings/Channels.php:139 src/Module/Settings/Channels.php:155 +#: src/Module/Settings/Channels.php:147 src/Module/Settings/Channels.php:164 msgid "Videos" msgstr "Videos" @@ -1631,7 +1631,7 @@ 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:118 +#: src/Module/Settings/Channels.php:116 msgid "Global Community" msgstr "Globale Gemeinschaft" @@ -1794,7 +1794,7 @@ msgstr "Anonyme Besucher können deinen Kalender öffnen und dort deine öffentl #: src/Content/GroupManager.php:152 src/Content/Nav.php:278 #: src/Content/Text/HTML.php:880 src/Content/Widget.php:537 -#: src/Model/User.php:1355 +#: src/Model/User.php:1368 msgid "Groups" msgstr "Gruppen" @@ -1815,7 +1815,7 @@ msgstr "mehr anzeigen" msgid "Create new group" msgstr "Neue Gruppe erstellen" -#: src/Content/Item.php:332 src/Model/Item.php:3137 +#: src/Content/Item.php:332 src/Model/Item.php:3166 msgid "event" msgstr "Veranstaltung" @@ -1823,7 +1823,7 @@ msgstr "Veranstaltung" msgid "status" msgstr "Status" -#: src/Content/Item.php:341 src/Model/Item.php:3139 +#: src/Content/Item.php:341 src/Model/Item.php:3168 #: src/Module/Post/Tag/Add.php:123 msgid "photo" msgstr "Foto" @@ -2095,7 +2095,7 @@ msgstr "Nutzungsbedingungen" msgid "Terms of Service of this Friendica instance" msgstr "Die Nutzungsbedingungen dieser Friendica-Instanz" -#: src/Content/Nav.php:306 src/Module/Settings/Channels.php:119 +#: src/Content/Nav.php:306 src/Module/Settings/Channels.php:117 #: view/theme/frio/theme.php:239 msgid "Network" msgstr "Netzwerk" @@ -2235,8 +2235,8 @@ msgstr "Bild/Foto" msgid "%2$s %3$s" msgstr "%2$s%3$s" -#: src/Content/Text/BBCode.php:994 src/Model/Item.php:3870 -#: src/Model/Item.php:3876 src/Model/Item.php:3877 +#: src/Content/Text/BBCode.php:994 src/Model/Item.php:3899 +#: src/Model/Item.php:3905 src/Model/Item.php:3906 msgid "Link to source" msgstr "Link zum Originalbeitrag" @@ -2404,7 +2404,7 @@ msgstr "Personen" msgid "Organisations" msgstr "Organisationen" -#: src/Content/Widget.php:536 src/Model/Contact.php:1714 +#: src/Content/Widget.php:536 src/Model/Contact.php:1738 msgid "News" msgstr "Nachrichten" @@ -2416,8 +2416,8 @@ msgstr "Kontenarten" msgid "All" msgstr "Alle" -#: src/Content/Widget.php:591 src/Module/Admin/Site.php:464 -#: src/Module/BaseSettings.php:125 src/Module/Settings/Channels.php:158 +#: src/Content/Widget.php:591 src/Module/Admin/Site.php:466 +#: src/Module/BaseSettings.php:125 src/Module/Settings/Channels.php:167 #: src/Module/Settings/Display.php:315 msgid "Channels" msgstr "Kanäle" @@ -3280,76 +3280,76 @@ msgstr "Circles bearbeiten" msgid "Approve" msgstr "Genehmigen" -#: src/Model/Contact.php:1710 +#: src/Model/Contact.php:1734 msgid "Organisation" msgstr "Organisation" -#: src/Model/Contact.php:1718 +#: src/Model/Contact.php:1742 msgid "Group" msgstr "Gruppe" -#: src/Model/Contact.php:3021 +#: src/Model/Contact.php:3045 msgid "Disallowed profile URL." msgstr "Nicht erlaubte Profil-URL." -#: src/Model/Contact.php:3026 src/Module/Friendica.php:101 +#: src/Model/Contact.php:3050 src/Module/Friendica.php:101 msgid "Blocked domain" msgstr "Blockierte Domain" -#: src/Model/Contact.php:3031 +#: src/Model/Contact.php:3055 msgid "Connect URL missing." msgstr "Connect-URL fehlt" -#: src/Model/Contact.php:3040 +#: src/Model/Contact.php:3064 msgid "" "The contact could not be added. Please check the relevant network " "credentials in your Settings -> Social Networks page." msgstr "Der Kontakt konnte nicht hinzugefügt werden. Bitte überprüfe die Einstellungen unter Einstellungen -> Soziale Netzwerke" -#: src/Model/Contact.php:3058 +#: src/Model/Contact.php:3082 #, 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:3075 +#: src/Model/Contact.php:3099 msgid "The profile address specified does not provide adequate information." msgstr "Die angegebene Profiladresse liefert unzureichende Informationen." -#: src/Model/Contact.php:3077 +#: src/Model/Contact.php:3101 msgid "No compatible communication protocols or feeds were discovered." msgstr "Es wurden keine kompatiblen Kommunikationsprotokolle oder Feeds gefunden." -#: src/Model/Contact.php:3080 +#: src/Model/Contact.php:3104 msgid "An author or name was not found." msgstr "Es wurde kein Autor oder Name gefunden." -#: src/Model/Contact.php:3083 +#: src/Model/Contact.php:3107 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:3086 +#: src/Model/Contact.php:3110 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:3087 +#: src/Model/Contact.php:3111 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:3093 +#: src/Model/Contact.php:3117 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:3098 +#: src/Model/Contact.php:3122 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:3164 +#: src/Model/Contact.php:3188 msgid "Unable to retrieve contact information." msgstr "Konnte die Kontaktinformationen nicht empfangen." @@ -3454,91 +3454,91 @@ msgstr "%ss Geburtstag" msgid "Happy Birthday %s" msgstr "Herzlichen Glückwunsch, %s" -#: src/Model/Item.php:2188 +#: src/Model/Item.php:2217 #, php-format msgid "%s (%s - %s): %s" msgstr "%s (%s - %s): %s" -#: src/Model/Item.php:2190 +#: src/Model/Item.php:2219 #, php-format msgid "%s (%s): %s" msgstr "%s (%s): %s" -#: src/Model/Item.php:2193 +#: src/Model/Item.php:2222 #, php-format msgid "Detected languages in this post:\\n%s" msgstr "Erkannte Sprachen in diesem Beitrag:\\n%s" -#: src/Model/Item.php:3141 +#: src/Model/Item.php:3170 msgid "activity" msgstr "Aktivität" -#: src/Model/Item.php:3143 +#: src/Model/Item.php:3172 msgid "comment" msgstr "Kommentar" -#: src/Model/Item.php:3146 src/Module/Post/Tag/Add.php:123 +#: src/Model/Item.php:3175 src/Module/Post/Tag/Add.php:123 msgid "post" msgstr "Beitrag" -#: src/Model/Item.php:3316 +#: src/Model/Item.php:3345 #, php-format msgid "%s is blocked" msgstr "%s ist blockiert" -#: src/Model/Item.php:3318 +#: src/Model/Item.php:3347 #, php-format msgid "%s is ignored" msgstr "%s ist ignoriert" -#: src/Model/Item.php:3320 +#: src/Model/Item.php:3349 #, php-format msgid "Content from %s is collapsed" msgstr "Inhalt vom %s ist zugeklappt" -#: src/Model/Item.php:3324 +#: src/Model/Item.php:3353 #, php-format msgid "Content warning: %s" msgstr "Inhaltswarnung: %s" -#: src/Model/Item.php:3777 +#: src/Model/Item.php:3806 msgid "bytes" msgstr "Byte" -#: src/Model/Item.php:3808 +#: src/Model/Item.php:3837 #, 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:3810 +#: src/Model/Item.php:3839 #, 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:3815 +#: src/Model/Item.php:3844 #, 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:3817 +#: src/Model/Item.php:3846 #, php-format msgid "%d voter." msgid_plural "%d voters." msgstr[0] "%d Stimme." msgstr[1] "%d Stimmen." -#: src/Model/Item.php:3819 +#: src/Model/Item.php:3848 #, php-format msgid "Poll end: %s" msgstr "Abstimmung endet: %s" -#: src/Model/Item.php:3853 src/Model/Item.php:3854 +#: src/Model/Item.php:3882 src/Model/Item.php:3883 msgid "View on separate page" msgstr "Auf separater Seite ansehen" @@ -3696,145 +3696,145 @@ msgstr "Schule/Ausbildung" msgid "Contact information and Social Networks" msgstr "Kontaktinformationen und Soziale Netzwerke" -#: src/Model/User.php:225 src/Model/User.php:1268 +#: src/Model/User.php:225 src/Model/User.php:1281 msgid "SERIOUS ERROR: Generation of security keys failed." msgstr "FATALER FEHLER: Sicherheitsschlüssel konnten nicht erzeugt werden." -#: src/Model/User.php:702 src/Model/User.php:735 +#: src/Model/User.php:715 src/Model/User.php:748 msgid "Login failed" msgstr "Anmeldung fehlgeschlagen" -#: src/Model/User.php:767 +#: src/Model/User.php:780 msgid "Not enough information to authenticate" msgstr "Nicht genügend Informationen für die Authentifizierung" -#: src/Model/User.php:888 +#: src/Model/User.php:901 msgid "Password can't be empty" msgstr "Das Passwort kann nicht leer sein" -#: src/Model/User.php:930 +#: src/Model/User.php:943 msgid "Empty passwords are not allowed." msgstr "Leere Passwörter sind nicht erlaubt." -#: src/Model/User.php:934 +#: src/Model/User.php:947 msgid "" "The new password has been exposed in a public data dump, please choose " "another." msgstr "Das neue Passwort wurde in einem öffentlichen Daten-Dump veröffentlicht. Bitte verwende ein anderes Passwort." -#: src/Model/User.php:938 +#: src/Model/User.php:951 msgid "The password length is limited to 72 characters." msgstr "Die Länge des Passworts ist auf 72 Zeichen begrenzt." -#: src/Model/User.php:942 +#: src/Model/User.php:955 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:1151 +#: src/Model/User.php:1164 msgid "Passwords do not match. Password unchanged." msgstr "Die Passwörter stimmen nicht überein. Das Passwort bleibt unverändert." -#: src/Model/User.php:1158 +#: src/Model/User.php:1171 msgid "An invitation is required." msgstr "Du benötigst eine Einladung." -#: src/Model/User.php:1162 +#: src/Model/User.php:1175 msgid "Invitation could not be verified." msgstr "Die Einladung konnte nicht überprüft werden." -#: src/Model/User.php:1170 +#: src/Model/User.php:1183 msgid "Invalid OpenID url" msgstr "Ungültige OpenID URL" -#: src/Model/User.php:1183 src/Security/Authentication.php:241 +#: src/Model/User.php:1196 src/Security/Authentication.php:241 msgid "" "We encountered a problem while logging in with the OpenID you provided. " "Please check the correct spelling of the ID." msgstr "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:1183 src/Security/Authentication.php:241 +#: src/Model/User.php:1196 src/Security/Authentication.php:241 msgid "The error message was:" msgstr "Die Fehlermeldung lautete:" -#: src/Model/User.php:1189 +#: src/Model/User.php:1202 msgid "Please enter the required information." msgstr "Bitte trage die erforderlichen Informationen ein." -#: src/Model/User.php:1203 +#: src/Model/User.php:1216 #, php-format msgid "" "system.username_min_length (%s) and system.username_max_length (%s) are " "excluding each other, swapping values." msgstr "system.username_min_length (%s) and system.username_max_length (%s) schließen sich gegenseitig aus, tausche Werte aus." -#: src/Model/User.php:1210 +#: src/Model/User.php:1223 #, php-format msgid "Username should be at least %s character." msgid_plural "Username should be at least %s characters." msgstr[0] "Der Benutzername sollte aus mindestens %s Zeichen bestehen." msgstr[1] "Der Benutzername sollte aus mindestens %s Zeichen bestehen." -#: src/Model/User.php:1214 +#: src/Model/User.php:1227 #, php-format msgid "Username should be at most %s character." msgid_plural "Username should be at most %s characters." msgstr[0] "Der Benutzername sollte aus maximal %s Zeichen bestehen." msgstr[1] "Der Benutzername sollte aus maximal %s Zeichen bestehen." -#: src/Model/User.php:1222 +#: src/Model/User.php:1235 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:1227 +#: src/Model/User.php:1240 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:1231 +#: src/Model/User.php:1244 msgid "Not a valid email address." msgstr "Keine gültige E-Mail-Adresse." -#: src/Model/User.php:1234 +#: src/Model/User.php:1247 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:1238 src/Model/User.php:1244 +#: src/Model/User.php:1251 src/Model/User.php:1257 msgid "Cannot use that email." msgstr "Konnte diese E-Mail-Adresse nicht verwenden." -#: src/Model/User.php:1250 +#: src/Model/User.php:1263 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:1258 src/Model/User.php:1315 +#: src/Model/User.php:1271 src/Model/User.php:1328 msgid "Nickname is already registered. Please choose another." msgstr "Dieser Spitzname ist bereits vergeben. Bitte wähle einen anderen." -#: src/Model/User.php:1302 src/Model/User.php:1306 +#: src/Model/User.php:1315 src/Model/User.php:1319 msgid "An error occurred during registration. Please try again." msgstr "Während der Anmeldung ist ein Fehler aufgetreten. Bitte versuche es noch einmal." -#: src/Model/User.php:1329 +#: src/Model/User.php:1342 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:1336 +#: src/Model/User.php:1349 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:1341 +#: src/Model/User.php:1354 msgid "Friends" msgstr "Kontakte" -#: src/Model/User.php:1345 +#: src/Model/User.php:1358 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:1389 +#: src/Model/User.php:1402 msgid "Profile Photos" msgstr "Profilbilder" -#: src/Model/User.php:1569 +#: src/Model/User.php:1582 #, php-format msgid "" "\n" @@ -3842,7 +3842,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:1572 +#: src/Model/User.php:1585 #, php-format msgid "" "\n" @@ -3873,12 +3873,12 @@ msgid "" "\t\tThank you and welcome to %4$s." msgstr "\nNachfolgend die Anmeldedetails:\n\nAdresse der Seite: %1$s\nBenutzername: %2$s\nPasswort: %3$s\n\nDu kannst dein Passwort unter \"Einstellungen\" ändern, sobald du dich angemeldet hast. \n\nBitte nimm dir ein paar Minuten, um die anderen Einstellungen auf dieser Seite zu kontrollieren. \n\nEventuell magst du ja auch einige Informationen über dich in deinem Profil veröffentlichen, damit andere Leute dich einfacher finden können. Bearbeite hierfür einfach dein Standard-Profil (über die Profil-Seite). \n\nWir empfehlen dir, ein zu dir passendes Profilbild zu wählen, damit dich alte Bekannte wiederfinden. Außerdem ist es nützlich, wenn du auf deinem Profil Schlüsselwörter angibst. Das erleichtert es, Leute zu finden, die deine Interessen teilen.\n\nWir respektieren deine Privatsphäre - keine dieser Angaben ist nötig. Wenn du neu im Netzwerk bist und noch niemanden kennst, dann können sie allerdings dabei helfen, neue und interessante Kontakte zu knüpfen.\n\nDu kannst dein Nutzerkonto jederzeit unter %1$s/settings/removeme wieder löschen.\n\nDanke und willkommen auf %4$s." -#: src/Model/User.php:1604 src/Model/User.php:1710 +#: src/Model/User.php:1617 src/Model/User.php:1723 #, php-format msgid "Registration details for %s" msgstr "Details der Registration von %s" -#: src/Model/User.php:1624 +#: src/Model/User.php:1637 #, php-format msgid "" "\n" @@ -3893,12 +3893,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:1643 +#: src/Model/User.php:1656 #, php-format msgid "Registration at %s" msgstr "Registrierung als %s" -#: src/Model/User.php:1667 +#: src/Model/User.php:1680 #, php-format msgid "" "\n" @@ -3907,7 +3907,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:1675 +#: src/Model/User.php:1688 #, php-format msgid "" "\n" @@ -3938,7 +3938,7 @@ msgid "" "\t\t\tThank you and welcome to %2$s." msgstr "\nDie Anmelde-Details sind die folgenden:\n\tAdresse der Seite:\t%3$s\n\tBenutzernamename:\t%1$s\n\tPasswort:\t%5$s\n\nDu kannst dein Passwort unter \"Einstellungen\" ändern, sobald du dich\nangemeldet hast.\n\nBitte nimm dir ein paar Minuten, um die anderen Einstellungen auf dieser\nSeite zu kontrollieren.\n\nEventuell magst du ja auch einige Informationen über dich in deinem\nProfil veröffentlichen, damit andere Leute dich einfacher finden können.\nBearbeite hierfür einfach dein Standard-Profil (über die Profil-Seite).\n\nWir empfehlen dir, ein zu dir passendes Profilbild zu wählen, damit dich alte Bekannte wiederfinden.\nAußerdem ist es nützlich, wenn du auf deinem Profil Schlüsselwörter\nangibst. Das erleichtert es, Leute zu finden, die deine Interessen teilen.\n\nWir respektieren deine Privatsphäre - keine dieser Angaben ist nötig.\nWenn du neu im Netzwerk bist und noch niemanden kennst, dann können sie\nallerdings dabei helfen, neue und interessante Kontakte zu knüpfen.\n\nSolltest du dein Nutzerkonto löschen wollen, kannst du dies unter %3$s/settings/removeme jederzeit tun.\n\nDanke für deine Aufmerksamkeit und willkommen auf %2$s." -#: src/Model/User.php:1737 +#: src/Model/User.php:1750 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" @@ -3968,9 +3968,9 @@ msgid "Enable" msgstr "Einschalten" #: src/Module/Admin/Addons/Details.php:111 -#: src/Module/Admin/Addons/Index.php:67 src/Module/Admin/Federation.php:214 +#: 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:447 +#: src/Module/Admin/Queue.php:72 src/Module/Admin/Site.php:449 #: src/Module/Admin/Storage.php:138 src/Module/Admin/Summary.php:196 #: src/Module/Admin/Themes/Details.php:90 #: src/Module/Admin/Themes/Index.php:111 src/Module/Admin/Tos.php:77 @@ -4010,7 +4010,7 @@ msgid "Addon %s failed to install." msgstr "Addon %s konnte nicht installiert werden" #: src/Module/Admin/Addons/Index.php:69 src/Module/Admin/Features.php:86 -#: src/Module/Admin/Logs/Settings.php:87 src/Module/Admin/Site.php:450 +#: src/Module/Admin/Logs/Settings.php:87 src/Module/Admin/Site.php:452 #: src/Module/Admin/Themes/Index.php:113 src/Module/Admin/Tos.php:86 #: src/Module/Settings/Account.php:541 src/Module/Settings/Addons.php:78 #: src/Module/Settings/Connectors.php:160 @@ -4100,77 +4100,77 @@ msgstr "Feature festlegen: %s" msgid "Manage Additional Features" msgstr "Zusätzliche Features Verwalten" -#: src/Module/Admin/Federation.php:76 +#: src/Module/Admin/Federation.php:80 #: src/Module/Moderation/Report/Create.php:191 #: src/Module/Moderation/Report/Create.php:316 msgid "Other" msgstr "Andere" -#: src/Module/Admin/Federation.php:154 src/Module/Admin/Federation.php:403 +#: src/Module/Admin/Federation.php:158 src/Module/Admin/Federation.php:407 msgid "unknown" msgstr "Unbekannt" -#: src/Module/Admin/Federation.php:187 +#: src/Module/Admin/Federation.php:191 #, 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:188 +#: src/Module/Admin/Federation.php:192 #, 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:189 +#: src/Module/Admin/Federation.php:193 #, 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:190 +#: src/Module/Admin/Federation.php:194 #, 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:191 +#: src/Module/Admin/Federation.php:195 #, 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:194 +#: src/Module/Admin/Federation.php:198 #, 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:199 +#: src/Module/Admin/Federation.php:203 #, 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:209 +#: src/Module/Admin/Federation.php:213 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:215 src/Module/BaseAdmin.php:87 +#: src/Module/Admin/Federation.php:219 src/Module/BaseAdmin.php:87 msgid "Federation Statistics" msgstr "Föderation Statistik" -#: src/Module/Admin/Federation.php:219 +#: src/Module/Admin/Federation.php:223 #, php-format msgid "" "Currently this node is aware of %2$s node (%3$s active users last month, " @@ -4210,8 +4210,8 @@ msgid "Enable Debugging" msgstr "Protokoll führen" #: src/Module/Admin/Logs/Settings.php:91 src/Module/Admin/Logs/Settings.php:92 -#: src/Module/Admin/Logs/Settings.php:93 src/Module/Admin/Site.php:470 -#: src/Module/Admin/Site.php:478 +#: src/Module/Admin/Logs/Settings.php:93 src/Module/Admin/Site.php:472 +#: src/Module/Admin/Site.php:480 msgid "" "Read-only because it is set by an environment variable" msgstr "Schreibgeschützt, weil es durch eine Umgebungsvariable festgelegt ist" @@ -4372,269 +4372,269 @@ msgstr "Erstellt" msgid "Priority" msgstr "Priorität" -#: src/Module/Admin/Site.php:239 +#: src/Module/Admin/Site.php:240 #, php-format msgid "%s is no valid input for maximum image size" msgstr "%s ist keine gültige Angabe der maximalen Größe von Bildern" -#: src/Module/Admin/Site.php:362 src/Module/Settings/Display.php:215 +#: src/Module/Admin/Site.php:364 src/Module/Settings/Display.php:215 msgid "No special theme for mobile devices" msgstr "Kein spezielles Theme für mobile Geräte verwenden." -#: src/Module/Admin/Site.php:379 src/Module/Settings/Display.php:225 +#: src/Module/Admin/Site.php:381 src/Module/Settings/Display.php:225 #, php-format msgid "%s - (Experimental)" msgstr "%s - (Experimentell)" -#: src/Module/Admin/Site.php:391 +#: src/Module/Admin/Site.php:393 msgid "No community page" msgstr "Keine Gemeinschaftsseite" -#: src/Module/Admin/Site.php:392 +#: src/Module/Admin/Site.php:394 msgid "No community page for visitors" msgstr "Keine Gemeinschaftsseite für Besucher" -#: src/Module/Admin/Site.php:393 +#: src/Module/Admin/Site.php:395 msgid "Public postings from users of this site" msgstr "Öffentliche Beiträge von NutzerInnen dieser Seite" -#: src/Module/Admin/Site.php:394 +#: src/Module/Admin/Site.php:396 msgid "Public postings from the federated network" msgstr "Öffentliche Beiträge aus dem föderalen Netzwerk" -#: src/Module/Admin/Site.php:395 +#: src/Module/Admin/Site.php:397 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:401 +#: src/Module/Admin/Site.php:403 msgid "Multi user instance" msgstr "Mehrbenutzer-Instanz" -#: src/Module/Admin/Site.php:424 +#: src/Module/Admin/Site.php:426 msgid "Closed" msgstr "Geschlossen" -#: src/Module/Admin/Site.php:425 +#: src/Module/Admin/Site.php:427 msgid "Requires approval" msgstr "Bedarf der Zustimmung" -#: src/Module/Admin/Site.php:426 +#: src/Module/Admin/Site.php:428 msgid "Open" msgstr "Offen" -#: src/Module/Admin/Site.php:430 +#: src/Module/Admin/Site.php:432 msgid "Don't check" msgstr "Nicht überprüfen" -#: src/Module/Admin/Site.php:431 +#: src/Module/Admin/Site.php:433 msgid "check the stable version" msgstr "überprüfe die stabile Version" -#: src/Module/Admin/Site.php:432 +#: src/Module/Admin/Site.php:434 msgid "check the development version" msgstr "überprüfe die Entwicklungsversion" -#: src/Module/Admin/Site.php:436 +#: src/Module/Admin/Site.php:438 msgid "none" msgstr "keine" -#: src/Module/Admin/Site.php:437 +#: src/Module/Admin/Site.php:439 msgid "Local contacts" msgstr "Lokale Kontakte" -#: src/Module/Admin/Site.php:438 +#: src/Module/Admin/Site.php:440 msgid "Interactors" msgstr "Interaktionen" -#: src/Module/Admin/Site.php:448 src/Module/BaseAdmin.php:90 +#: src/Module/Admin/Site.php:450 src/Module/BaseAdmin.php:90 msgid "Site" msgstr "Seite" -#: src/Module/Admin/Site.php:449 +#: src/Module/Admin/Site.php:451 msgid "General Information" msgstr "Allgemeine Informationen" -#: src/Module/Admin/Site.php:451 +#: src/Module/Admin/Site.php:453 msgid "Republish users to directory" msgstr "Nutzer erneut im globalen Verzeichnis veröffentlichen." -#: src/Module/Admin/Site.php:452 src/Module/Register.php:152 +#: src/Module/Admin/Site.php:454 src/Module/Register.php:152 msgid "Registration" msgstr "Registrierung" -#: src/Module/Admin/Site.php:453 +#: src/Module/Admin/Site.php:455 msgid "File upload" msgstr "Datei hochladen" -#: src/Module/Admin/Site.php:454 +#: src/Module/Admin/Site.php:456 msgid "Policies" msgstr "Regeln" -#: src/Module/Admin/Site.php:455 src/Module/Calendar/Event/Form.php:252 +#: src/Module/Admin/Site.php:457 src/Module/Calendar/Event/Form.php:252 #: src/Module/Contact.php:546 src/Module/Profile/Profile.php:276 msgid "Advanced" msgstr "Erweitert" -#: src/Module/Admin/Site.php:456 +#: src/Module/Admin/Site.php:458 msgid "Auto Discovered Contact Directory" msgstr "Automatisch ein Kontaktverzeichnis erstellen" -#: src/Module/Admin/Site.php:457 +#: src/Module/Admin/Site.php:459 msgid "Performance" msgstr "Performance" -#: src/Module/Admin/Site.php:458 +#: src/Module/Admin/Site.php:460 msgid "Worker" msgstr "Worker" -#: src/Module/Admin/Site.php:459 +#: src/Module/Admin/Site.php:461 msgid "Message Relay" msgstr "Nachrichten-Relais" -#: src/Module/Admin/Site.php:460 +#: src/Module/Admin/Site.php:462 msgid "" "Use the command \"console relay\" in the command line to add or remove " "relays." msgstr "Verwende den Befehl \"console relay\" auf der Kommandozeile um weitere Relays hinzu zu fügen oder zu entfernen." -#: src/Module/Admin/Site.php:461 +#: src/Module/Admin/Site.php:463 msgid "The system is not subscribed to any relays at the moment." msgstr "Das System hat derzeit keinerlei Relays abonniert." -#: src/Module/Admin/Site.php:462 +#: src/Module/Admin/Site.php:464 msgid "The system is currently subscribed to the following relays:" msgstr "Das System hat derzeit Abonnements bei folgenden Releays:" -#: src/Module/Admin/Site.php:465 +#: src/Module/Admin/Site.php:467 msgid "Relocate Node" msgstr "Knoten umziehen" -#: src/Module/Admin/Site.php:466 +#: src/Module/Admin/Site.php:468 msgid "" "Relocating your node enables you to change the DNS domain of this node and " "keep all the existing users and posts. This process takes a while and can " "only be started from the relocate console command like this:" msgstr "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:467 +#: src/Module/Admin/Site.php:469 msgid "(Friendica directory)# bin/console relocate https://newdomain.com" msgstr "(Friendica Verzeichnis)# bin/console relocate https://newdomain.com" -#: src/Module/Admin/Site.php:470 +#: src/Module/Admin/Site.php:472 msgid "Site name" msgstr "Seitenname" -#: src/Module/Admin/Site.php:471 +#: src/Module/Admin/Site.php:473 msgid "Sender Email" msgstr "Absender für Emails" -#: src/Module/Admin/Site.php:471 +#: src/Module/Admin/Site.php:473 msgid "" "The email address your server shall use to send notification emails from." msgstr "Die E-Mail Adresse, die dein Server zum Versenden von Benachrichtigungen verwenden soll." -#: src/Module/Admin/Site.php:472 +#: src/Module/Admin/Site.php:474 msgid "Name of the system actor" msgstr "Name des System-Actors" -#: src/Module/Admin/Site.php:472 +#: src/Module/Admin/Site.php:474 msgid "" "Name of the internal system account that is used to perform ActivityPub " "requests. This must be an unused username. If set, this can't be changed " "again." msgstr "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:473 +#: src/Module/Admin/Site.php:475 msgid "Banner/Logo" msgstr "Banner/Logo" -#: src/Module/Admin/Site.php:474 +#: src/Module/Admin/Site.php:476 msgid "Email Banner/Logo" msgstr "E-Mail Banner / Logo" -#: src/Module/Admin/Site.php:475 +#: src/Module/Admin/Site.php:477 msgid "Shortcut icon" msgstr "Shortcut Icon" -#: src/Module/Admin/Site.php:475 +#: src/Module/Admin/Site.php:477 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:476 +#: src/Module/Admin/Site.php:478 msgid "Touch icon" msgstr "Touch Icon" -#: src/Module/Admin/Site.php:476 +#: src/Module/Admin/Site.php:478 msgid "Link to an icon that will be used for tablets and mobiles." msgstr "Link zu einem Icon, das Tablets und Mobiltelefone verwenden sollen." -#: src/Module/Admin/Site.php:477 +#: src/Module/Admin/Site.php:479 msgid "Additional Info" msgstr "Zusätzliche Informationen" -#: src/Module/Admin/Site.php:477 +#: src/Module/Admin/Site.php:479 #, php-format msgid "" "For public servers: you can add additional information here that will be " "listed at %s/servers." msgstr "Für öffentliche Server kannst du hier zusätzliche Informationen angeben, die dann auf %s/servers angezeigt werden." -#: src/Module/Admin/Site.php:478 +#: src/Module/Admin/Site.php:480 msgid "System language" msgstr "Systemsprache" -#: src/Module/Admin/Site.php:479 +#: src/Module/Admin/Site.php:481 msgid "System theme" msgstr "Systemweites Theme" -#: src/Module/Admin/Site.php:479 +#: src/Module/Admin/Site.php:481 #, php-format msgid "" "Default system theme - may be over-ridden by user profiles - Change default theme settings" msgstr "Standard-Theme des Systems - kann von Benutzerprofilen überschrieben werden - Einstellungen des Standard-Themes ändern" -#: src/Module/Admin/Site.php:480 +#: src/Module/Admin/Site.php:482 msgid "Mobile system theme" msgstr "Systemweites mobiles Theme" -#: src/Module/Admin/Site.php:480 +#: src/Module/Admin/Site.php:482 msgid "Theme for mobile devices" msgstr "Theme für mobile Geräte" -#: src/Module/Admin/Site.php:481 +#: src/Module/Admin/Site.php:483 msgid "Force SSL" msgstr "Erzwinge SSL" -#: src/Module/Admin/Site.php:481 +#: src/Module/Admin/Site.php:483 msgid "" "Force all Non-SSL requests to SSL - Attention: on some systems it could lead" " to endless loops." msgstr "Erzwinge SSL für alle Nicht-SSL-Anfragen - Achtung: auf manchen Systemen verursacht dies eine Endlosschleife." -#: src/Module/Admin/Site.php:482 +#: src/Module/Admin/Site.php:484 msgid "Show help entry from navigation menu" msgstr "Zeige den Hilfe-Eintrag im Navigationsmenü an" -#: src/Module/Admin/Site.php:482 +#: src/Module/Admin/Site.php:484 msgid "" "Displays the menu entry for the Help pages from the navigation menu. It is " "always accessible by calling /help directly." msgstr "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:483 +#: src/Module/Admin/Site.php:485 msgid "Single user instance" msgstr "Ein-Nutzer Instanz" -#: src/Module/Admin/Site.php:483 +#: src/Module/Admin/Site.php:485 msgid "Make this instance multi-user or single-user for the named user" msgstr "Bestimmt, ob es sich bei dieser Instanz um eine Installation mit nur einen Nutzer oder mit mehreren Nutzern handelt." -#: src/Module/Admin/Site.php:485 +#: src/Module/Admin/Site.php:487 msgid "Maximum image size" msgstr "Maximale Bildgröße" -#: src/Module/Admin/Site.php:485 +#: src/Module/Admin/Site.php:487 #, php-format msgid "" "Maximum size in bytes of uploaded images. Default is 0, which means no limits. You can put k, m, or g behind the desired value for KiB, MiB, GiB, respectively.\n" @@ -4642,35 +4642,35 @@ msgid "" "\t\t\t\t\t\t\t\t\t\t\t\t\tCurrently upload_max_filesize is set to %s (%s byte)" msgstr "Die maximale Größe von Bildern in Bytes. Grundeinstellung ist 0, welches keine Limitierung durch die Bildgröße bedeutet. Du kannst k, m oder g als Abkürzung hinter der Zahl angeben um KiB, MIB oder GiB zu definieren.\n\t\t\t\t\t\t\t\t\t\t\t\t\tDer Wert der 1upload_max_filesize1 Variable in der php.ini Datei muss diesem Limit mindestens entsprechen.\n\t\t\t\t\t\t\t\t\t\t\t\t\tDerzeit ist 3upload_max_filesize3 auf %s (%sByte) gesetzt." -#: src/Module/Admin/Site.php:489 +#: src/Module/Admin/Site.php:491 msgid "Maximum image length" msgstr "Maximale Bildlänge" -#: src/Module/Admin/Site.php:489 +#: src/Module/Admin/Site.php:491 msgid "" "Maximum length in pixels of the longest side of uploaded images. Default is " "-1, which means no limits." msgstr "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:490 +#: src/Module/Admin/Site.php:492 msgid "JPEG image quality" msgstr "Qualität des JPEG Bildes" -#: src/Module/Admin/Site.php:490 +#: src/Module/Admin/Site.php:492 msgid "" "Uploaded JPEGS will be saved at this quality setting [0-100]. Default is " "100, which is full quality." msgstr "Hochgeladene JPEG-Bilder werden mit dieser Qualität [0-100] gespeichert. Grundeinstellung ist 100, kein Qualitätsverlust." -#: src/Module/Admin/Site.php:492 +#: src/Module/Admin/Site.php:494 msgid "Register policy" msgstr "Registrierungsmethode" -#: src/Module/Admin/Site.php:493 +#: src/Module/Admin/Site.php:495 msgid "Maximum Users" msgstr "Maximale Benutzeranzahl" -#: src/Module/Admin/Site.php:493 +#: src/Module/Admin/Site.php:495 msgid "" "If defined, the register policy is automatically closed when the given " "number of users is reached and reopens the registry when the number drops " @@ -4678,157 +4678,157 @@ 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:494 +#: src/Module/Admin/Site.php:496 msgid "Maximum Daily Registrations" msgstr "Maximum täglicher Registrierungen" -#: src/Module/Admin/Site.php:494 +#: src/Module/Admin/Site.php:496 msgid "" "If registration is permitted above, this sets the maximum number of new user" " registrations to accept per day. If register is set to closed, this " "setting has no effect." msgstr "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:495 +#: src/Module/Admin/Site.php:497 msgid "Register text" msgstr "Registrierungstext" -#: src/Module/Admin/Site.php:495 +#: src/Module/Admin/Site.php:497 msgid "" "Will be displayed prominently on the registration page. You can use BBCode " "here." msgstr "Wird gut sichtbar auf der Registrierungsseite angezeigt. BBCode kann verwendet werden." -#: src/Module/Admin/Site.php:496 +#: src/Module/Admin/Site.php:498 msgid "Forbidden Nicknames" msgstr "Verbotene Spitznamen" -#: src/Module/Admin/Site.php:496 +#: src/Module/Admin/Site.php:498 msgid "" "Comma separated list of nicknames that are forbidden from registration. " "Preset is a list of role names according RFC 2142." msgstr "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:497 +#: src/Module/Admin/Site.php:499 msgid "Accounts abandoned after x days" msgstr "Nutzerkonten gelten nach x Tagen als unbenutzt" -#: src/Module/Admin/Site.php:497 +#: src/Module/Admin/Site.php:499 msgid "" "Will not waste system resources polling external sites for abandonded " "accounts. Enter 0 for no time limit." msgstr "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:498 +#: src/Module/Admin/Site.php:500 msgid "Allowed friend domains" msgstr "Erlaubte Domains für Kontakte" -#: src/Module/Admin/Site.php:498 +#: src/Module/Admin/Site.php:500 msgid "" "Comma separated list of domains which are allowed to establish friendships " "with this site. Wildcards are accepted. Empty to allow any domains" msgstr "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:499 +#: src/Module/Admin/Site.php:501 msgid "Allowed email domains" msgstr "Erlaubte Domains für E-Mails" -#: src/Module/Admin/Site.php:499 +#: src/Module/Admin/Site.php:501 msgid "" "Comma separated list of domains which are allowed in email addresses for " "registrations to this site. Wildcards are accepted. Empty to allow any " "domains" msgstr "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:500 +#: src/Module/Admin/Site.php:502 msgid "No OEmbed rich content" msgstr "OEmbed nicht verwenden" -#: src/Module/Admin/Site.php:500 +#: src/Module/Admin/Site.php:502 msgid "" "Don't show the rich content (e.g. embedded PDF), except from the domains " "listed below." msgstr "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:501 +#: src/Module/Admin/Site.php:503 msgid "Trusted third-party domains" msgstr "Vertrauenswürdige Drittanbieter-Domains" -#: src/Module/Admin/Site.php:501 +#: src/Module/Admin/Site.php:503 msgid "" "Comma separated list of domains from which content is allowed to be embedded" " in posts like with OEmbed. All sub-domains of the listed domains are " "allowed as well." msgstr "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:502 +#: src/Module/Admin/Site.php:504 msgid "Block public" msgstr "Öffentlichen Zugriff blockieren" -#: src/Module/Admin/Site.php:502 +#: src/Module/Admin/Site.php:504 msgid "" "Check to block public access to all otherwise public personal pages on this " "site unless you are currently logged in." msgstr "Klicken, um öffentlichen Zugriff auf sonst öffentliche Profile zu blockieren, wenn man nicht eingeloggt ist." -#: src/Module/Admin/Site.php:503 +#: src/Module/Admin/Site.php:505 msgid "Force publish" msgstr "Erzwinge Veröffentlichung" -#: src/Module/Admin/Site.php:503 +#: src/Module/Admin/Site.php:505 msgid "" "Check to force all profiles on this site to be listed in the site directory." msgstr "Klicken, um Anzeige aller Profile dieses Servers im Verzeichnis zu erzwingen." -#: src/Module/Admin/Site.php:503 +#: src/Module/Admin/Site.php:505 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:504 +#: src/Module/Admin/Site.php:506 msgid "Global directory URL" msgstr "URL des weltweiten Verzeichnisses" -#: src/Module/Admin/Site.php:504 +#: src/Module/Admin/Site.php:506 msgid "" "URL to the global directory. If this is not set, the global directory is " "completely unavailable to the application." msgstr "URL des weltweiten Verzeichnisses. Wenn diese nicht gesetzt ist, ist das Verzeichnis für die Applikation nicht erreichbar." -#: src/Module/Admin/Site.php:505 +#: src/Module/Admin/Site.php:507 msgid "Private posts by default for new users" msgstr "Private Beiträge als Standard für neue Nutzer" -#: src/Module/Admin/Site.php:505 +#: src/Module/Admin/Site.php:507 msgid "" "Set default post permissions for all new members to the default privacy " "circle rather than public." msgstr "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:506 +#: src/Module/Admin/Site.php:508 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:506 +#: src/Module/Admin/Site.php:508 msgid "" "Don't include the content of a post/comment/private message/etc. in the " "email notifications that are sent out from this site, as a privacy measure." msgstr "Inhalte von Beiträgen/Kommentaren/privaten Nachrichten/usw. zum Datenschutz nicht in E-Mail-Benachrichtigungen einbinden." -#: src/Module/Admin/Site.php:507 +#: src/Module/Admin/Site.php:509 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:507 +#: src/Module/Admin/Site.php:509 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:508 +#: src/Module/Admin/Site.php:510 msgid "Don't embed private images in posts" msgstr "Private Bilder nicht in Beiträgen einbetten." -#: src/Module/Admin/Site.php:508 +#: src/Module/Admin/Site.php:510 msgid "" "Don't replace locally-hosted private photos in posts with an embedded copy " "of the image. This means that contacts who receive posts containing private " @@ -4836,11 +4836,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:509 +#: src/Module/Admin/Site.php:511 msgid "Explicit Content" msgstr "Sensibler Inhalt" -#: src/Module/Admin/Site.php:509 +#: src/Module/Admin/Site.php:511 msgid "" "Set this to announce that your node is used mostly for explicit content that" " might not be suited for minors. This information will be published in the " @@ -4849,319 +4849,329 @@ 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:510 +#: src/Module/Admin/Site.php:512 msgid "Proxify external content" msgstr "Proxy für externe Inhalte" -#: src/Module/Admin/Site.php:510 +#: src/Module/Admin/Site.php:512 msgid "" "Route external content via the proxy functionality. This is used for example" " for some OEmbed accesses and in some other rare cases." msgstr "Externe Inhalte werden durch einen Proxy geleitet. Die wird z.B. für das aufrufen von OEmbed Inhalten verwendet und einigen anderen seltenen Fällen." -#: src/Module/Admin/Site.php:511 +#: src/Module/Admin/Site.php:513 msgid "Only local search" msgstr "Nur lokale Suche" -#: src/Module/Admin/Site.php:511 +#: src/Module/Admin/Site.php:513 msgid "" "Blocks search for users who are not logged in to prevent crawlers from " "blocking your system." msgstr "Sperrt die Suche für nicht eingeloggte Benutzer, um zu verhindern, dass Crawler Ihr System blockieren." -#: src/Module/Admin/Site.php:512 +#: src/Module/Admin/Site.php:514 msgid "Blocked tags for trending tags" msgstr "Blockierte Tags für Trend-Tags" -#: src/Module/Admin/Site.php:512 +#: src/Module/Admin/Site.php:514 msgid "" "Comma separated list of hashtags that shouldn't be displayed in the trending" " tags." msgstr "Durch Kommata getrennte Liste von Hashtags, die nicht in den Trending Tags angezeigt werden sollen." -#: src/Module/Admin/Site.php:513 +#: src/Module/Admin/Site.php:515 msgid "Cache contact avatars" msgstr "Kontaktprofilbilder zwischenspeichern" -#: src/Module/Admin/Site.php:513 +#: src/Module/Admin/Site.php:515 msgid "" "Locally store the avatar pictures of the contacts. This uses a lot of " "storage space but it increases the performance." msgstr "Die Profilbilder der Kontakte zwischenspeichern. Der Zwischenspeicher verbraucht viel Platz im Speicherplatz, verbessert aber die Performance." -#: src/Module/Admin/Site.php:514 +#: src/Module/Admin/Site.php:516 msgid "Allow Users to set remote_self" msgstr "Nutzern erlauben, das remote_self Flag zu setzen" -#: src/Module/Admin/Site.php:514 +#: src/Module/Admin/Site.php:516 msgid "" "With checking this, every user is allowed to mark every contact as a " "remote_self in the repair contact dialog. Setting this flag on a contact " "causes mirroring every posting of that contact in the users stream." msgstr "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:515 +#: src/Module/Admin/Site.php:517 msgid "Adjust the feed poll frequency" msgstr "Einstellen der Abrufhäufigkeit" -#: src/Module/Admin/Site.php:515 +#: src/Module/Admin/Site.php:517 msgid "Automatically detect and set the best feed poll frequency." msgstr "Automatisches Erkennen und Einstellen der besten Abrufhäufigkeit." -#: src/Module/Admin/Site.php:516 +#: src/Module/Admin/Site.php:518 msgid "Minimum poll interval" msgstr "Minimales Abfrageintervall" -#: src/Module/Admin/Site.php:516 +#: src/Module/Admin/Site.php:518 msgid "" "Minimal distance in minutes between two polls for mail and feed contacts. " "Reasonable values are between 1 and 59." msgstr "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:517 +#: src/Module/Admin/Site.php:519 msgid "Enable multiple registrations" msgstr "Erlaube Mehrfachregistrierung" -#: src/Module/Admin/Site.php:517 +#: src/Module/Admin/Site.php:519 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:518 +#: src/Module/Admin/Site.php:520 msgid "Enable OpenID" msgstr "OpenID aktivieren" -#: src/Module/Admin/Site.php:518 +#: src/Module/Admin/Site.php:520 msgid "Enable OpenID support for registration and logins." msgstr "OpenID Unterstützung bei der Registrierung und dem Login aktivieren." -#: src/Module/Admin/Site.php:519 +#: src/Module/Admin/Site.php:521 msgid "Enable full name check" msgstr "Namen auf Vollständigkeit überprüfen" -#: src/Module/Admin/Site.php:519 +#: src/Module/Admin/Site.php:521 msgid "" "Prevents users from registering with a display name with fewer than two " "parts separated by spaces." msgstr "Verhindert, dass sich Benutzer mit einem Anzeigenamen registrieren, der aus weniger als zwei durch Leerzeichen getrennten Teilen besteht." -#: src/Module/Admin/Site.php:520 +#: src/Module/Admin/Site.php:522 msgid "Email administrators on new registration" msgstr "Email den Administratoren bei neuen Registrierungen" -#: src/Module/Admin/Site.php:520 +#: src/Module/Admin/Site.php:522 msgid "" "If enabled and the system is set to an open registration, an email for each " "new registration is sent to the administrators." msgstr "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:521 +#: src/Module/Admin/Site.php:523 msgid "Community pages for visitors" msgstr "Für Besucher verfügbare Gemeinschaftsseite" -#: src/Module/Admin/Site.php:521 +#: src/Module/Admin/Site.php:523 msgid "" "Which community pages should be available for visitors. Local users always " "see both pages." msgstr "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:522 +#: src/Module/Admin/Site.php:524 msgid "Posts per user on community page" msgstr "Anzahl der Beiträge pro Benutzer auf der Gemeinschaftsseite" -#: src/Module/Admin/Site.php:522 -msgid "" -"The maximum number of posts per user on the community page. (Not valid for " -"\"Global Community\")" -msgstr "Maximale Anzahl der Beiträge, die von jedem Nutzer auf der Gemeinschaftsseite angezeigt werden. (Gilt nicht für die 'Globale Gemeinschaftsseite')" - #: src/Module/Admin/Site.php:524 +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:525 +msgid "Posts per server on community page" +msgstr "Beiträge pro Server auf der Gemeinschaftsseite" + +#: src/Module/Admin/Site.php:525 +msgid "" +"The maximum number of posts per server on the global community page. This is" +" useful, when posts from a single server flood the global community page." +msgstr "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:527 msgid "Enable Mail support" msgstr "E-Mail Unterstützung aktivieren" -#: src/Module/Admin/Site.php:524 +#: src/Module/Admin/Site.php:527 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:525 +#: src/Module/Admin/Site.php:528 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:526 +#: src/Module/Admin/Site.php:529 msgid "Enable OStatus support" msgstr "OStatus Unterstützung aktivieren" -#: src/Module/Admin/Site.php:526 +#: src/Module/Admin/Site.php:529 msgid "" "Enable built-in OStatus (StatusNet, GNU Social etc.) compatibility. All " "communications in OStatus are public." msgstr "Aktiviere die OStatus (StatusNet, GNU Social usw.) Unterstützung. Die Kommunikation über das OStatus Protokoll ist grundsätzlich öffentlich." -#: src/Module/Admin/Site.php:528 +#: src/Module/Admin/Site.php:531 msgid "" "Diaspora support can't be enabled because Friendica was installed into a sub" " directory." msgstr "Diaspora Unterstützung kann nicht aktiviert werden, da Friendica in ein Unterverzeichnis installiert ist." -#: src/Module/Admin/Site.php:529 +#: src/Module/Admin/Site.php:532 msgid "Enable Diaspora support" msgstr "Diaspora-Unterstützung aktivieren" -#: src/Module/Admin/Site.php:529 +#: src/Module/Admin/Site.php:532 msgid "" "Enable built-in Diaspora network compatibility for communicating with " "diaspora servers." msgstr "Aktiviere die Unterstützung des Diaspora Protokolls zur Kommunikation mit Diaspora Servern." -#: src/Module/Admin/Site.php:530 +#: src/Module/Admin/Site.php:533 msgid "Verify SSL" msgstr "SSL Überprüfen" -#: src/Module/Admin/Site.php:530 +#: src/Module/Admin/Site.php:533 msgid "" "If you wish, you can turn on strict certificate checking. This will mean you" " cannot connect (at all) to self-signed SSL sites." msgstr "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:531 +#: src/Module/Admin/Site.php:534 msgid "Proxy user" msgstr "Proxy-Nutzer" -#: src/Module/Admin/Site.php:531 +#: src/Module/Admin/Site.php:534 msgid "User name for the proxy server." msgstr "Nutzername für den Proxy-Server" -#: src/Module/Admin/Site.php:532 +#: src/Module/Admin/Site.php:535 msgid "Proxy URL" msgstr "Proxy-URL" -#: src/Module/Admin/Site.php:532 +#: src/Module/Admin/Site.php:535 msgid "" "If you want to use a proxy server that Friendica should use to connect to " "the network, put the URL of the proxy here." msgstr "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:533 +#: src/Module/Admin/Site.php:536 msgid "Network timeout" msgstr "Netzwerk-Wartezeit" -#: src/Module/Admin/Site.php:533 +#: src/Module/Admin/Site.php:536 msgid "Value is in seconds. Set to 0 for unlimited (not recommended)." msgstr "Der Wert ist in Sekunden. Setze 0 für unbegrenzt (nicht empfohlen)." -#: src/Module/Admin/Site.php:534 +#: src/Module/Admin/Site.php:537 msgid "Maximum Load Average" msgstr "Maximum Load Average" -#: src/Module/Admin/Site.php:534 +#: src/Module/Admin/Site.php:537 #, php-format msgid "" "Maximum system load before delivery and poll processes are deferred - " "default %d." msgstr "Maximale System-LOAD bevor Verteil- und Empfangsprozesse verschoben werden - Standard %d" -#: src/Module/Admin/Site.php:535 +#: src/Module/Admin/Site.php:538 msgid "Minimal Memory" msgstr "Minimaler Speicher" -#: src/Module/Admin/Site.php:535 +#: src/Module/Admin/Site.php:538 msgid "" "Minimal free memory in MB for the worker. Needs access to /proc/meminfo - " "default 0 (deactivated)." msgstr "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:536 +#: src/Module/Admin/Site.php:539 msgid "Periodically optimize tables" msgstr "Optimiere die Tabellen regelmäßig" -#: src/Module/Admin/Site.php:536 +#: src/Module/Admin/Site.php:539 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:538 +#: src/Module/Admin/Site.php:541 msgid "Discover followers/followings from contacts" msgstr "Endecke folgende und gefolgte Kontakte von Kontakten" -#: src/Module/Admin/Site.php:538 +#: src/Module/Admin/Site.php:541 msgid "" "If enabled, contacts are checked for their followers and following contacts." msgstr "Ist dies aktiv, werden die Kontakte auf deren folgenden und gefolgten Kontakte überprüft." -#: src/Module/Admin/Site.php:539 +#: src/Module/Admin/Site.php:542 msgid "None - deactivated" msgstr "Keine - deaktiviert" -#: src/Module/Admin/Site.php:540 +#: src/Module/Admin/Site.php:543 msgid "" "Local contacts - contacts of our local contacts are discovered for their " "followers/followings." msgstr "Lokale Kontakte - Die Beziehungen der lokalen Kontakte werden analysiert." -#: src/Module/Admin/Site.php:541 +#: src/Module/Admin/Site.php:544 msgid "" "Interactors - contacts of our local contacts and contacts who interacted on " "locally visible postings are discovered for their followers/followings." msgstr "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:543 +#: src/Module/Admin/Site.php:546 msgid "Only update contacts/servers with local data" msgstr "Nur Kontakte/Server mit lokalen Daten aktualisieren" -#: src/Module/Admin/Site.php:543 +#: src/Module/Admin/Site.php:546 msgid "" "If enabled, the system will only look for changes in contacts and servers " "that engaged on this system by either being in a contact list of a user or " "when posts or comments exists from the contact on this system." msgstr "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:544 +#: src/Module/Admin/Site.php:547 msgid "Synchronize the contacts with the directory server" msgstr "Gleiche die Kontakte mit dem Directory-Server ab" -#: src/Module/Admin/Site.php:544 +#: src/Module/Admin/Site.php:547 msgid "" "if enabled, the system will check periodically for new contacts on the " "defined directory server." msgstr "Ist dies aktiv, wird das System regelmäßig auf dem Verzeichnis-Server nach neuen potentiellen Kontakten nachsehen." -#: src/Module/Admin/Site.php:546 +#: src/Module/Admin/Site.php:549 msgid "Discover contacts from other servers" msgstr "Neue Kontakte auf anderen Servern entdecken" -#: src/Module/Admin/Site.php:546 +#: src/Module/Admin/Site.php:549 msgid "" "Periodically query other servers for contacts and servers that they know of." " The system queries Friendica, Mastodon and Hubzilla servers. Keep it " "deactivated on small machines to decrease the database size and load." msgstr "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:547 +#: src/Module/Admin/Site.php:550 msgid "Days between requery" msgstr "Tage zwischen erneuten Abfragen" -#: src/Module/Admin/Site.php:547 +#: src/Module/Admin/Site.php:550 msgid "" "Number of days after which a server is requeried for their contacts and " "servers it knows of. This is only used when the discovery is activated." msgstr "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:548 +#: src/Module/Admin/Site.php:551 msgid "Search the local directory" msgstr "Lokales Verzeichnis durchsuchen" -#: src/Module/Admin/Site.php:548 +#: src/Module/Admin/Site.php:551 msgid "" "Search the local directory instead of the global directory. When searching " "locally, every search will be executed on the global directory in the " "background. This improves the search results when the search is repeated." msgstr "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:550 +#: src/Module/Admin/Site.php:553 msgid "Publish server information" msgstr "Server-Informationen veröffentlichen" -#: src/Module/Admin/Site.php:550 +#: src/Module/Admin/Site.php:553 msgid "" "If enabled, general server and usage data will be published. The data " "contains the name and version of the server, number of users with public " @@ -5169,50 +5179,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:552 +#: src/Module/Admin/Site.php:555 msgid "Check upstream version" msgstr "Suche nach Updates" -#: src/Module/Admin/Site.php:552 +#: src/Module/Admin/Site.php:555 msgid "" "Enables checking for new Friendica versions at github. If there is a new " "version, you will be informed in the admin panel overview." msgstr "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:553 +#: src/Module/Admin/Site.php:556 msgid "Suppress Tags" msgstr "Tags unterdrücken" -#: src/Module/Admin/Site.php:553 +#: src/Module/Admin/Site.php:556 msgid "Suppress showing a list of hashtags at the end of the posting." msgstr "Unterdrückt die Anzeige von Tags am Ende eines Beitrags." -#: src/Module/Admin/Site.php:554 +#: src/Module/Admin/Site.php:557 msgid "Clean database" msgstr "Datenbank aufräumen" -#: src/Module/Admin/Site.php:554 +#: src/Module/Admin/Site.php:557 msgid "" "Remove old remote items, orphaned database records and old content from some" " other helper tables." msgstr "Entferne alte Beiträge von anderen Knoten, verwaiste Einträge und alten Inhalt einiger Hilfstabellen." -#: src/Module/Admin/Site.php:555 +#: src/Module/Admin/Site.php:558 msgid "Lifespan of remote items" msgstr "Lebensdauer von Beiträgen anderer Knoten" -#: src/Module/Admin/Site.php:555 +#: src/Module/Admin/Site.php:558 msgid "" "When the database cleanup is enabled, this defines the days after which " "remote items will be deleted. Own items, and marked or filed items are " "always kept. 0 disables this behaviour." msgstr "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:556 +#: src/Module/Admin/Site.php:559 msgid "Lifespan of unclaimed items" msgstr "Lebensdauer nicht angeforderter Beiträge" -#: src/Module/Admin/Site.php:556 +#: src/Module/Admin/Site.php:559 msgid "" "When the database cleanup is enabled, this defines the days after which " "unclaimed remote items (mostly content from the relay) will be deleted. " @@ -5220,308 +5230,308 @@ 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:557 +#: src/Module/Admin/Site.php:560 msgid "Lifespan of raw conversation data" msgstr "Lebensdauer der Beiträge" -#: src/Module/Admin/Site.php:557 +#: src/Module/Admin/Site.php:560 msgid "" "The conversation data is used for ActivityPub and OStatus, as well as for " "debug purposes. It should be safe to remove it after 14 days, default is 90 " "days." msgstr "Die Konversationsdaten werden für ActivityPub und OStatus sowie für Debug-Zwecke verwendet. Sie sollten gefahrlos nach 14 Tagen entfernt werden können, der Standardwert beträgt 90 Tage." -#: src/Module/Admin/Site.php:558 +#: src/Module/Admin/Site.php:561 msgid "Maximum numbers of comments per post" msgstr "Maximale Anzahl von Kommentaren pro Beitrag" -#: src/Module/Admin/Site.php:558 +#: src/Module/Admin/Site.php:561 msgid "How much comments should be shown for each post? Default value is 100." msgstr "Wie viele Kommentare sollen pro Beitrag angezeigt werden? Standardwert sind 100." -#: src/Module/Admin/Site.php:559 +#: src/Module/Admin/Site.php:562 msgid "Maximum numbers of comments per post on the display page" msgstr "Maximale Anzahl von Kommentaren in der Einzelansicht" -#: src/Module/Admin/Site.php:559 +#: src/Module/Admin/Site.php:562 msgid "" "How many comments should be shown on the single view for each post? Default " "value is 1000." msgstr "Wie viele Kommentare sollen auf der Einzelansicht eines Beitrags angezeigt werden? Grundeinstellung sind 1000." -#: src/Module/Admin/Site.php:560 +#: src/Module/Admin/Site.php:563 msgid "Items per page" msgstr "Beiträge pro Seite" -#: src/Module/Admin/Site.php:560 +#: src/Module/Admin/Site.php:563 msgid "" "Number of items per page in stream pages (network, community, " "profile/contact statuses, search)." msgstr "Anzahl der Elemente pro Seite in den Stream-Seiten (Netzwerk, Community, Profil/Kontaktstatus, Suche)." -#: src/Module/Admin/Site.php:561 +#: src/Module/Admin/Site.php:564 msgid "Items per page for mobile devices" msgstr "Beiträge pro Seite für mobile Endgeräte" -#: src/Module/Admin/Site.php:561 +#: src/Module/Admin/Site.php:564 msgid "" "Number of items per page in stream pages (network, community, " "profile/contact statuses, search) for mobile devices." msgstr "Anzahl der Beiträge pro Seite in Stream-Seiten (Netzwerk, Community, Profil-/Kontaktstatus, Suche) für mobile Endgeräte." -#: src/Module/Admin/Site.php:562 +#: src/Module/Admin/Site.php:565 msgid "Temp path" msgstr "Temp-Pfad" -#: src/Module/Admin/Site.php:562 +#: src/Module/Admin/Site.php:565 msgid "" "If you have a restricted system where the webserver can't access the system " "temp path, enter another path here." msgstr "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:563 +#: src/Module/Admin/Site.php:566 msgid "Only search in tags" msgstr "Nur in Tags suchen" -#: src/Module/Admin/Site.php:563 +#: src/Module/Admin/Site.php:566 msgid "On large systems the text search can slow down the system extremely." msgstr "Auf großen Knoten kann die Volltext-Suche das System ausbremsen." -#: src/Module/Admin/Site.php:564 +#: src/Module/Admin/Site.php:567 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:564 +#: src/Module/Admin/Site.php:567 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:565 +#: src/Module/Admin/Site.php:568 msgid "Process \"view\" activities" msgstr "\"view\"-Aktivitäten verarbeiten" -#: src/Module/Admin/Site.php:565 +#: src/Module/Admin/Site.php:568 msgid "" "\"view\" activities are mostly geberated by Peertube systems. Per default " "they are not processed for performance reasons. Only activate this option on" " performant system." msgstr "\"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:566 +#: src/Module/Admin/Site.php:569 msgid "Days, after which a contact is archived" msgstr "Anzahl der Tage, nach denen ein Kontakt archiviert wird" -#: src/Module/Admin/Site.php:566 +#: src/Module/Admin/Site.php:569 msgid "" "Number of days that we try to deliver content or to update the contact data " "before we archive a contact." msgstr "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:568 +#: src/Module/Admin/Site.php:571 msgid "Maximum number of parallel workers" msgstr "Maximale Anzahl parallel laufender Worker" -#: src/Module/Admin/Site.php:568 +#: src/Module/Admin/Site.php:571 #, php-format msgid "" "On shared hosters set this to %d. On larger systems, values of %d are great." " Default value is %d." msgstr "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:569 +#: src/Module/Admin/Site.php:572 msgid "Maximum load for workers" -msgstr "" +msgstr "Maximale Last für Worker" -#: src/Module/Admin/Site.php:569 +#: src/Module/Admin/Site.php:572 msgid "Maximum load that causes a cooldown before each worker function call." -msgstr "" +msgstr "Maximale Auslastung des Systems, welche eine Verzögerung vor jedem Aufruf des Workers verursacht." -#: src/Module/Admin/Site.php:570 +#: src/Module/Admin/Site.php:573 msgid "Enable fastlane" msgstr "Aktiviere Fastlane" -#: src/Module/Admin/Site.php:570 +#: src/Module/Admin/Site.php:573 msgid "" "When enabed, the fastlane mechanism starts an additional worker if processes" " with higher priority are blocked by processes of lower priority." msgstr "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:571 +#: src/Module/Admin/Site.php:574 msgid "Decoupled receiver" -msgstr "" +msgstr "Entkoppelter Empfänger" -#: src/Module/Admin/Site.php:571 +#: src/Module/Admin/Site.php:574 msgid "" "Decouple incoming ActivityPub posts by processing them in the background via" " a worker process. Only enable this on fast systems." -msgstr "" +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:572 +#: src/Module/Admin/Site.php:575 msgid "Cron interval" msgstr "Cron Intervall" -#: src/Module/Admin/Site.php:572 +#: src/Module/Admin/Site.php:575 msgid "Minimal period in minutes between two calls of the \"Cron\" worker job." msgstr "Minimaler Intervall in Minuten zwischen zwei Aufrufen des \"Cron\" Arbeitsprozesses." -#: src/Module/Admin/Site.php:573 +#: src/Module/Admin/Site.php:576 msgid "Worker defer limit" -msgstr "" +msgstr "Worker-Verzögerungsgrenze" -#: src/Module/Admin/Site.php:573 +#: src/Module/Admin/Site.php:576 msgid "" "Per default the systems tries delivering for 15 times before dropping it." msgstr "Standardmäßig versucht das System 15 Mal zuzustellen, bevor es den Vorgang abbricht." -#: src/Module/Admin/Site.php:574 +#: src/Module/Admin/Site.php:577 msgid "Worker fetch limit" -msgstr "" +msgstr "Worker Abrufbegrenzung" -#: src/Module/Admin/Site.php:574 +#: src/Module/Admin/Site.php:577 msgid "" "Number of worker tasks that are fetched in a single query. Higher values " "should increase the performance, too high values will mostly likely decrease" " it. Only change it, when you know how to measure the performance of your " "system." -msgstr "" +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:576 +#: src/Module/Admin/Site.php:579 msgid "Direct relay transfer" msgstr "Direkte Relais-Übertragung" -#: src/Module/Admin/Site.php:576 +#: src/Module/Admin/Site.php:579 msgid "" "Enables the direct transfer to other servers without using the relay servers" msgstr "Aktiviert das direkte Verteilen an andere Server, ohne dass ein Relais-Server verwendet wird." -#: src/Module/Admin/Site.php:577 +#: src/Module/Admin/Site.php:580 msgid "Relay scope" msgstr "Geltungsbereich des Relais" -#: src/Module/Admin/Site.php:577 +#: src/Module/Admin/Site.php:580 msgid "" "Can be \"all\" or \"tags\". \"all\" means that every public post should be " "received. \"tags\" means that only posts with selected tags should be " "received." msgstr "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:577 src/Module/Contact/Profile.php:309 +#: src/Module/Admin/Site.php:580 src/Module/Contact/Profile.php:309 #: src/Module/Settings/TwoFactor/Index.php:146 msgid "Disabled" msgstr "Deaktiviert" -#: src/Module/Admin/Site.php:577 +#: src/Module/Admin/Site.php:580 msgid "all" msgstr "Alle" -#: src/Module/Admin/Site.php:577 +#: src/Module/Admin/Site.php:580 msgid "tags" msgstr "Schlagwörter" -#: src/Module/Admin/Site.php:578 +#: src/Module/Admin/Site.php:581 msgid "Server tags" msgstr "Server-Schlagworte" -#: src/Module/Admin/Site.php:578 +#: src/Module/Admin/Site.php:581 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:579 +#: src/Module/Admin/Site.php:582 msgid "Deny Server tags" msgstr "Server Tags ablehnen" -#: src/Module/Admin/Site.php:579 +#: src/Module/Admin/Site.php:582 msgid "Comma separated list of tags that are rejected." msgstr "Durch Kommas getrennte Liste der Tags, die abgelehnt werden" -#: src/Module/Admin/Site.php:580 +#: src/Module/Admin/Site.php:583 msgid "Allow user tags" msgstr "Verwende Schlagworte der Nutzer" -#: src/Module/Admin/Site.php:580 +#: src/Module/Admin/Site.php:583 msgid "" "If enabled, the tags from the saved searches will used for the \"tags\" " "subscription in addition to the \"relay_server_tags\"." msgstr "Ist dies aktiviert, werden die Schlagwörter der gespeicherten Suchen zusätzlich zu den oben definierten Server-Schlagworten abonniert." -#: src/Module/Admin/Site.php:581 +#: src/Module/Admin/Site.php:584 msgid "Deny undetected languages" -msgstr "" +msgstr "Nicht erkannte Sprachen ablehnen" -#: src/Module/Admin/Site.php:581 +#: src/Module/Admin/Site.php:584 msgid "If enabled, posts with undetected languages will be rejected." -msgstr "" +msgstr "Wenn diese Option aktiviert ist, werden Beiträge mit nicht erkannten Sprachen abgelehnt." -#: src/Module/Admin/Site.php:582 +#: src/Module/Admin/Site.php:585 msgid "Language Quality" -msgstr "" +msgstr "Sprachqualität" -#: src/Module/Admin/Site.php:582 +#: src/Module/Admin/Site.php:585 msgid "The minimum language quality that is required to accept the post." -msgstr "" +msgstr "Die minimale erkannte Sprachqualität, die erforderlich ist, um den Beitrag anzunehmen." -#: src/Module/Admin/Site.php:583 +#: src/Module/Admin/Site.php:586 msgid "Number of languages for the language detection" -msgstr "" +msgstr "Anzahl der Sprachen für die Spracherkennung" -#: src/Module/Admin/Site.php:583 +#: src/Module/Admin/Site.php:586 msgid "" "The system detects a list of languages per post. Only if the desired " "languages are in the list, the message will be accepted. The higher the " "number, the more posts will be falsely detected." msgstr "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:585 +#: src/Module/Admin/Site.php:588 msgid "Maximum age of channel" msgstr "Maximales Alter des Kanals" -#: src/Module/Admin/Site.php:585 +#: src/Module/Admin/Site.php:588 msgid "" "This defines the maximum age in hours of items that should be displayed in " "channels. This affects the channel performance." msgstr "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:586 +#: src/Module/Admin/Site.php:589 msgid "Maximum number of channel posts" -msgstr "" +msgstr "Maximale Anzahl von Kanalbeiträgen" -#: src/Module/Admin/Site.php:586 +#: src/Module/Admin/Site.php:589 msgid "" "For performance reasons, the channels use a dedicated table to store " "content. The higher the value the slower the channels." -msgstr "" +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:587 +#: src/Module/Admin/Site.php:590 msgid "Interaction score days" -msgstr "" +msgstr "Interaktionsscore Tage" -#: src/Module/Admin/Site.php:587 +#: src/Module/Admin/Site.php:590 msgid "Number of days that are used to calculate the interaction score." -msgstr "" +msgstr "Anzahl der Tage, die zur Berechnung des Interaktionsscores herangezogen werden." -#: src/Module/Admin/Site.php:588 +#: src/Module/Admin/Site.php:591 msgid "Maximum number of posts per author" -msgstr "" +msgstr "Maximale Anzahl von Beiträgen pro Autor" -#: src/Module/Admin/Site.php:588 +#: src/Module/Admin/Site.php:591 msgid "" "Maximum number of posts per page by author if the contact frequency is set " "to \"Display only few posts\". If there are more posts, then the post with " "the most interactions will be displayed." msgstr "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:589 +#: src/Module/Admin/Site.php:592 msgid "Sharer interaction days" -msgstr "" +msgstr "Interaktionstage für teilende" -#: src/Module/Admin/Site.php:589 +#: src/Module/Admin/Site.php:592 msgid "" "Number of days of the last interaction that are used to define which sharers" " are used for the \"sharers of sharers\" channel." -msgstr "" +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:592 +#: src/Module/Admin/Site.php:595 msgid "Start Relocation" msgstr "Umsiedlung starten" @@ -6143,7 +6153,7 @@ msgstr "Veranstaltungsbeginn:" #: src/Module/Moderation/Blocklist/Server/Index.php:116 #: src/Module/Moderation/Item/Delete.php:67 src/Module/Register.php:148 #: src/Module/Security/TwoFactor/Verify.php:101 -#: src/Module/Settings/Channels.php:131 src/Module/Settings/Channels.php:147 +#: src/Module/Settings/Channels.php:139 src/Module/Settings/Channels.php:156 #: src/Module/Settings/TwoFactor/Index.php:161 #: src/Module/Settings/TwoFactor/Verify.php:158 msgid "Required" @@ -6230,7 +6240,7 @@ msgstr "Unbekannter Circle." #: src/Module/Contact/Advanced.php:70 src/Module/Contact/Advanced.php:109 #: src/Module/Contact/Contacts.php:71 src/Module/Contact/Conversations.php:84 #: src/Module/Contact/Conversations.php:89 -#: src/Module/Contact/Conversations.php:94 src/Module/Contact/Media.php:43 +#: src/Module/Contact/Conversations.php:94 src/Module/Contact/Media.php:61 #: src/Module/Contact/Posts.php:78 src/Module/Contact/Posts.php:83 #: src/Module/Contact/Posts.php:88 src/Module/Contact/Profile.php:154 #: src/Module/Contact/Profile.php:159 src/Module/Contact/Profile.php:164 @@ -7044,15 +7054,15 @@ msgstr "Fehler %d (%s) beim Abruf der Timeline." msgid "Network feed not available." msgstr "Netzwerkfeed nicht verfügbar." -#: src/Module/Conversation/Timeline.php:166 +#: src/Module/Conversation/Timeline.php:168 msgid "Own Contacts" msgstr "Eigene Kontakte" -#: src/Module/Conversation/Timeline.php:170 +#: src/Module/Conversation/Timeline.php:172 msgid "Include" msgstr "Einschließen" -#: src/Module/Conversation/Timeline.php:171 +#: src/Module/Conversation/Timeline.php:173 msgid "Hide" msgstr "Verbergen" @@ -7398,7 +7408,7 @@ msgstr "Auf diesem Server werden die folgenden, entfernten Server blockiert." #: src/Module/Friendica.php:102 #: src/Module/Moderation/Blocklist/Server/Index.php:87 #: src/Module/Moderation/Blocklist/Server/Index.php:111 -#: src/Module/Settings/Channels.php:165 +#: src/Module/Settings/Channels.php:174 msgid "Reason for the block" msgstr "Begründung für die Blockierung" @@ -8145,7 +8155,7 @@ 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:164 +#: src/Module/Settings/Channels.php:173 msgid "Blocked server domain pattern" msgstr "Blockierte Server Domain Muster" @@ -10184,76 +10194,76 @@ msgstr "Addon Einstellungen" msgid "No Addon settings configured" msgstr "Keine Addon-Einstellungen konfiguriert" -#: src/Module/Settings/Channels.php:131 src/Module/Settings/Channels.php:147 +#: src/Module/Settings/Channels.php:139 src/Module/Settings/Channels.php:156 #: src/Module/Settings/Display.php:338 msgid "Label" msgstr "Bezeichnung" -#: src/Module/Settings/Channels.php:132 src/Module/Settings/Channels.php:148 +#: src/Module/Settings/Channels.php:140 src/Module/Settings/Channels.php:157 #: src/Module/Settings/Display.php:339 #: src/Module/Settings/TwoFactor/AppSpecific.php:137 msgid "Description" msgstr "Beschreibung" -#: src/Module/Settings/Channels.php:133 src/Module/Settings/Channels.php:149 +#: src/Module/Settings/Channels.php:141 src/Module/Settings/Channels.php:158 msgid "Access Key" msgstr "Zugriffsschlüssel" -#: src/Module/Settings/Channels.php:134 src/Module/Settings/Channels.php:150 +#: src/Module/Settings/Channels.php:142 src/Module/Settings/Channels.php:159 msgid "Circle/Channel" msgstr "Circle/Kanal" -#: src/Module/Settings/Channels.php:135 src/Module/Settings/Channels.php:151 +#: src/Module/Settings/Channels.php:143 src/Module/Settings/Channels.php:160 msgid "Include Tags" msgstr "Tags einschließen" -#: src/Module/Settings/Channels.php:136 src/Module/Settings/Channels.php:152 +#: src/Module/Settings/Channels.php:144 src/Module/Settings/Channels.php:161 msgid "Exclude Tags" msgstr "Tags ausschließen" -#: src/Module/Settings/Channels.php:137 src/Module/Settings/Channels.php:153 +#: src/Module/Settings/Channels.php:145 src/Module/Settings/Channels.php:162 msgid "Full Text Search" msgstr "Volltextsuche" -#: src/Module/Settings/Channels.php:141 +#: src/Module/Settings/Channels.php:149 msgid "Delete channel" msgstr "Lösche Kanal" -#: src/Module/Settings/Channels.php:141 +#: src/Module/Settings/Channels.php:149 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:147 +#: src/Module/Settings/Channels.php:156 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:148 +#: src/Module/Settings/Channels.php:157 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:149 +#: src/Module/Settings/Channels.php:158 msgid "" "When you want to access this channel via an access key, you can define it " "here. Pay attention to not use an already used one." msgstr "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:150 +#: src/Module/Settings/Channels.php:159 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:151 +#: src/Module/Settings/Channels.php:160 msgid "" "Comma separated list of tags. A post will be used when it contains any of " "the listed tags." msgstr "Durch Kommata getrennte Liste von Tags. Ein Beitrag wird verwendet, wenn er eines der aufgeführten Tags enthält." -#: src/Module/Settings/Channels.php:152 +#: src/Module/Settings/Channels.php:161 msgid "" "Comma separated list of tags. If a post contain any of these tags, then it " "will not be part of nthis channel." msgstr "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:153 +#: src/Module/Settings/Channels.php:162 #, php-format msgid "" "Search terms for the body, supports the \"boolean mode\" operators from " @@ -10261,39 +10271,39 @@ 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:154 +#: src/Module/Settings/Channels.php:163 msgid "Check to display images in the channel." msgstr "Aktiviere diese Option, um Bilder im Kanal anzuzeigen." -#: src/Module/Settings/Channels.php:155 +#: src/Module/Settings/Channels.php:164 msgid "Check to display videos in the channel." msgstr "Aktiviere diese Option, um Videos im Kanal anzuzeigen." -#: src/Module/Settings/Channels.php:156 +#: src/Module/Settings/Channels.php:165 msgid "Check to display audio in the channel." msgstr "Aktiviere diese Option, um Audio im Kanal anzuzeigen." -#: src/Module/Settings/Channels.php:159 +#: src/Module/Settings/Channels.php:168 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:160 +#: src/Module/Settings/Channels.php:169 msgid "Add new entry to the channel list" msgstr "Neuen Eintrag zur Kanalliste hinzufügen" -#: src/Module/Settings/Channels.php:161 +#: src/Module/Settings/Channels.php:170 msgid "Add" msgstr "Hinzufügen" -#: src/Module/Settings/Channels.php:163 +#: src/Module/Settings/Channels.php:172 msgid "Current Entries in the channel list" msgstr "Aktuelle Einträge in der Kanalliste" -#: src/Module/Settings/Channels.php:166 +#: src/Module/Settings/Channels.php:175 msgid "Delete entry from the channel list" msgstr "Eintrag aus der Kanalliste löschen" -#: src/Module/Settings/Channels.php:167 +#: src/Module/Settings/Channels.php:176 msgid "Delete entry from the channel list?" msgstr "Eintrag aus der Kanalliste löschen?" @@ -10706,11 +10716,11 @@ msgstr "Zeigt die Checkbox für das Löschen von Beiträgen auf der Netzwerkseit #: src/Module/Settings/Display.php:335 msgid "DIsplay the event list" -msgstr "" +msgstr "Anzeige der der anstehenden Ereignisse" #: src/Module/Settings/Display.php:335 msgid "Display the birthday reminder and event list on the network page." -msgstr "" +msgstr "Zeigt die Geburtstagserinnerungen und die anstehenden Veranstaltungen auf der Netzwerkseite an." #: src/Module/Settings/Display.php:336 msgid "Link preview mode" @@ -12446,40 +12456,45 @@ msgstr "Gesehen von: %s" #: src/Object/Post.php:701 #, php-format +msgid "Read by: %s" +msgstr "Gelesen von: %s" + +#: src/Object/Post.php:706 +#, php-format msgid "Liked by: %s" msgstr "Diese Menschen mögen das: %s" -#: src/Object/Post.php:706 +#: src/Object/Post.php:711 #, php-format msgid "Disliked by: %s" msgstr "Unbeliebt bei: %s" -#: src/Object/Post.php:711 +#: src/Object/Post.php:716 #, php-format msgid "Attended by: %s" msgstr "Besucht von: %s" -#: src/Object/Post.php:716 +#: src/Object/Post.php:721 #, php-format msgid "Maybe attended by: %s" msgstr "Vielleicht besucht von: %s" -#: src/Object/Post.php:721 +#: src/Object/Post.php:726 #, php-format msgid "Not attended by: %s" msgstr "Nicht besucht von: %s" -#: src/Object/Post.php:726 +#: src/Object/Post.php:731 #, php-format msgid "Commented by: %s" msgstr "Kommentiert von: %s" -#: src/Object/Post.php:731 +#: src/Object/Post.php:736 #, php-format msgid "Reacted with %s by: %s" msgstr "Reagierte mit %s von: %s" -#: src/Object/Post.php:754 +#: src/Object/Post.php:759 #, php-format msgid "Quote shared by: %s" msgstr "Zitat geteilt von: %s" diff --git a/view/lang/de/strings.php b/view/lang/de/strings.php index f5347c293b..1dd9a16e79 100644 --- a/view/lang/de/strings.php +++ b/view/lang/de/strings.php @@ -1324,7 +1324,9 @@ $a->strings['If enabled and the system is set to an open registration, an email $a->strings['Community pages for visitors'] = 'Für Besucher verfügbare Gemeinschaftsseite'; $a->strings['Which community pages should be available for visitors. Local users always see both pages.'] = 'Welche Gemeinschaftsseiten sollen für Besucher dieses Knotens verfügbar sein? Lokale Nutzer können grundsätzlich beide Seiten verwenden.'; $a->strings['Posts per user on community page'] = 'Anzahl der Beiträge pro Benutzer auf der Gemeinschaftsseite'; -$a->strings['The maximum number of posts per user on the community page. (Not valid for "Global Community")'] = 'Maximale Anzahl der Beiträge, die von jedem Nutzer auf der Gemeinschaftsseite angezeigt werden. (Gilt nicht für die \'Globale Gemeinschaftsseite\')'; +$a->strings['The maximum number of posts per user on the local community page. This is useful, when a single user floods the local community page.'] = 'Die maximale Anzahl von Beiträgen pro Benutzer auf der lokalen Gemeinschaftsseite. Dies ist nützlich, wenn ein einzelner Benutzer die lokale Gemeinschaftsseite überflutet.'; +$a->strings['Posts per server on community page'] = 'Beiträge pro Server auf der Gemeinschaftsseite'; +$a->strings['The maximum number of posts per server on the global community page. This is useful, when posts from a single server flood the global community page.'] = '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.'; $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.'; @@ -1396,11 +1398,18 @@ $a->strings['Days, after which a contact is archived'] = 'Anzahl der Tage, nach $a->strings['Number of days that we try to deliver content or to update the contact data before we archive a contact.'] = 'Die Anzahl der Tage, die wir versuchen, Inhalte zu liefern oder die Kontaktdaten zu aktualisieren, bevor wir einen Kontakt archivieren.'; $a->strings['Maximum number of parallel workers'] = 'Maximale Anzahl parallel laufender Worker'; $a->strings['On shared hosters set this to %d. On larger systems, values of %d are great. Default value is %d.'] = '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.'; +$a->strings['Maximum load for workers'] = 'Maximale Last für Worker'; +$a->strings['Maximum load that causes a cooldown before each worker function call.'] = 'Maximale Auslastung des Systems, welche eine Verzögerung vor jedem Aufruf des Workers verursacht.'; $a->strings['Enable fastlane'] = 'Aktiviere Fastlane'; $a->strings['When enabed, the fastlane mechanism starts an additional worker if processes with higher priority are blocked by processes of lower priority.'] = '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.'; +$a->strings['Decoupled receiver'] = 'Entkoppelter Empfänger'; +$a->strings['Decouple incoming ActivityPub posts by processing them in the background via a worker process. Only enable this on fast systems.'] = 'Entkoppelt eingehende ActivityPub-Beiträge, indem sie im Hintergrund über einen Worker-Prozess verarbeitet werden. Aktiviere dies nur auf schnellen Systemen.'; $a->strings['Cron interval'] = 'Cron Intervall'; $a->strings['Minimal period in minutes between two calls of the "Cron" worker job.'] = 'Minimaler Intervall in Minuten zwischen zwei Aufrufen des "Cron" Arbeitsprozesses.'; +$a->strings['Worker defer limit'] = 'Worker-Verzögerungsgrenze'; $a->strings['Per default the systems tries delivering for 15 times before dropping it.'] = 'Standardmäßig versucht das System 15 Mal zuzustellen, bevor es den Vorgang abbricht.'; +$a->strings['Worker fetch limit'] = 'Worker Abrufbegrenzung'; +$a->strings['Number of worker tasks that are fetched in a single query. Higher values should increase the performance, too high values will mostly likely decrease it. Only change it, when you know how to measure the performance of your system.'] = '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.'; $a->strings['Direct relay transfer'] = 'Direkte Relais-Übertragung'; $a->strings['Enables the direct transfer to other servers without using the relay servers'] = 'Aktiviert das direkte Verteilen an andere Server, ohne dass ein Relais-Server verwendet wird.'; $a->strings['Relay scope'] = 'Geltungsbereich des Relais'; @@ -1414,10 +1423,22 @@ $a->strings['Deny Server tags'] = 'Server Tags ablehnen'; $a->strings['Comma separated list of tags that are rejected.'] = 'Durch Kommas getrennte Liste der Tags, die abgelehnt werden'; $a->strings['Allow user tags'] = 'Verwende Schlagworte der Nutzer'; $a->strings['If enabled, the tags from the saved searches will used for the "tags" subscription in addition to the "relay_server_tags".'] = 'Ist dies aktiviert, werden die Schlagwörter der gespeicherten Suchen zusätzlich zu den oben definierten Server-Schlagworten abonniert.'; +$a->strings['Deny undetected languages'] = 'Nicht erkannte Sprachen ablehnen'; +$a->strings['If enabled, posts with undetected languages will be rejected.'] = 'Wenn diese Option aktiviert ist, werden Beiträge mit nicht erkannten Sprachen abgelehnt.'; +$a->strings['Language Quality'] = 'Sprachqualität'; +$a->strings['The minimum language quality that is required to accept the post.'] = 'Die minimale erkannte Sprachqualität, die erforderlich ist, um den Beitrag anzunehmen.'; +$a->strings['Number of languages for the language detection'] = 'Anzahl der Sprachen für die Spracherkennung'; $a->strings['The system detects a list of languages per post. Only if the desired languages are in the list, the message will be accepted. The higher the number, the more posts will be falsely detected.'] = '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.'; $a->strings['Maximum age of channel'] = 'Maximales Alter des Kanals'; $a->strings['This defines the maximum age in hours of items that should be displayed in channels. This affects the channel performance.'] = '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.'; +$a->strings['Maximum number of channel posts'] = 'Maximale Anzahl von Kanalbeiträgen'; +$a->strings['For performance reasons, the channels use a dedicated table to store content. The higher the value the slower the channels.'] = '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.'; +$a->strings['Interaction score days'] = 'Interaktionsscore Tage'; +$a->strings['Number of days that are used to calculate the interaction score.'] = 'Anzahl der Tage, die zur Berechnung des Interaktionsscores herangezogen werden.'; +$a->strings['Maximum number of posts per author'] = 'Maximale Anzahl von Beiträgen pro Autor'; $a->strings['Maximum number of posts per page by author if the contact frequency is set to "Display only few posts". If there are more posts, then the post with the most interactions will be displayed.'] = '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.'; +$a->strings['Sharer interaction days'] = 'Interaktionstage für teilende'; +$a->strings['Number of days of the last interaction that are used to define which sharers are used for the "sharers of sharers" channel.'] = 'Anzahl der Tage der letzten Interaktion, die verwendet werden, um festzulegen, welche teilenden für den Kanal "Geteilt von teilenden" verwendet werden.'; $a->strings['Start Relocation'] = 'Umsiedlung starten'; $a->strings['Storage backend, %s is invalid.'] = 'Speicher-Backend, %s ist ungültig.'; $a->strings['Storage backend %s error: %s'] = 'Speicher-Backend %s Fehler %s'; @@ -2617,6 +2638,8 @@ $a->strings['Stay local'] = 'Bleib lokal'; $a->strings['Don\'t go to a remote system when following a contact link.'] = 'Gehe nicht zu einem Remote-System, wenn einem Kontaktlink gefolgt wird'; $a->strings['Show the post deletion checkbox'] = 'Die Checkbox zum Löschen von Beiträgen anzeigen'; $a->strings['Display the checkbox for the post deletion on the network page.'] = 'Zeigt die Checkbox für das Löschen von Beiträgen auf der Netzwerkseite an.'; +$a->strings['DIsplay the event list'] = 'Anzeige der der anstehenden Ereignisse'; +$a->strings['Display the birthday reminder and event list on the network page.'] = 'Zeigt die Geburtstagserinnerungen und die anstehenden Veranstaltungen auf der Netzwerkseite an.'; $a->strings['Link preview mode'] = 'Vorschau Modus für Links'; $a->strings['Appearance of the link preview that is added to each post with a link.'] = 'Aussehen der Linkvorschau, die zu jedem Beitrag mit einem Link hinzugefügt wird.'; $a->strings['Bookmark'] = 'Lesezeichen'; @@ -3023,6 +3046,7 @@ $a->strings['Show more'] = 'Zeige mehr'; $a->strings['Show fewer'] = 'Zeige weniger'; $a->strings['Reshared by: %s'] = 'Geteilt von: %s'; $a->strings['Viewed by: %s'] = 'Gesehen von: %s'; +$a->strings['Read by: %s'] = 'Gelesen von: %s'; $a->strings['Liked by: %s'] = 'Diese Menschen mögen das: %s'; $a->strings['Disliked by: %s'] = 'Unbeliebt bei: %s'; $a->strings['Attended by: %s'] = 'Besucht von: %s'; diff --git a/view/lang/fr/messages.po b/view/lang/fr/messages.po index 1bf3e06e83..a3b23d1e2b 100644 --- a/view/lang/fr/messages.po +++ b/view/lang/fr/messages.po @@ -1,5 +1,5 @@ # FRIENDICA Distributed Social Network -# Copyright (C) 2010-2023, the Friendica project +# Copyright (C) 2010-2024, the Friendica project # This file is distributed under the same license as the Friendica package. # # Translators: @@ -9,7 +9,7 @@ # Damien Goutte-Gattat , 2015-2016 # Damien Goutte-Gattat , 2015 # Domovoy , 2012 -# Florent C., 2023 +# Florent C., 2023-2024 # Hypolite Petovan , 2019-2022 # Hypolite Petovan , 2016 # ddea8f3e14f60a9d025fc4f71a37997c_495639b <0e9b63e0a53589b1b93671e612021fcb_249620>, 2014 @@ -35,9 +35,9 @@ msgid "" msgstr "" "Project-Id-Version: friendica\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-12-04 22:18+0000\n" +"POT-Creation-Date: 2024-01-02 20:55+0000\n" "PO-Revision-Date: 2011-05-05 10:19+0000\n" -"Last-Translator: Florent C., 2023\n" +"Last-Translator: Florent C., 2023-2024\n" "Language-Team: French (http://app.transifex.com/Friendica/friendica/language/fr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -95,7 +95,7 @@ msgstr "Élément introuvable." #: src/Module/Register.php:90 src/Module/Register.php:206 #: src/Module/Register.php:245 src/Module/Search/Directory.php:37 #: src/Module/Settings/Account.php:50 src/Module/Settings/Account.php:388 -#: src/Module/Settings/Channels.php:56 src/Module/Settings/Channels.php:114 +#: src/Module/Settings/Channels.php:56 src/Module/Settings/Channels.php:112 #: src/Module/Settings/Delegation.php:90 src/Module/Settings/Display.php:90 #: src/Module/Settings/Display.php:197 #: src/Module/Settings/Profile/Photo/Crop.php:165 @@ -316,7 +316,7 @@ msgid "Insert web link" msgstr "Insérer lien web" #: mod/message.php:201 mod/message.php:357 mod/photos.php:1301 -#: src/Content/Conversation.php:401 src/Content/Conversation.php:1584 +#: src/Content/Conversation.php:401 src/Content/Conversation.php:1586 #: src/Module/Item/Compose.php:206 src/Module/Post/Edit.php:145 #: src/Module/Profile/UnkMail.php:154 src/Object/Post.php:609 msgid "Please wait" @@ -341,7 +341,7 @@ msgstr "Patientez" #: src/Module/Profile/Profile.php:274 src/Module/Profile/UnkMail.php:155 #: src/Module/Settings/Profile/Index.php:257 #: src/Module/Settings/Server/Action.php:79 src/Module/User/Delegation.php:189 -#: src/Object/Post.php:1149 view/theme/duepuntozero/config.php:85 +#: src/Object/Post.php:1154 view/theme/duepuntozero/config.php:85 #: view/theme/frio/config.php:171 view/theme/quattro/config.php:87 #: view/theme/vier/config.php:135 msgid "Submit" @@ -410,7 +410,7 @@ msgstr "Les notes personnelles ne sont visibles que par vous." #: mod/notes.php:57 src/Content/Text/HTML.php:859 #: src/Module/Admin/Storage.php:142 src/Module/Filer/SaveTag.php:74 -#: src/Module/Post/Edit.php:129 src/Module/Settings/Channels.php:162 +#: src/Module/Post/Edit.php:129 src/Module/Settings/Channels.php:171 msgid "Save" msgstr "Sauver" @@ -420,7 +420,7 @@ msgstr "Sauver" #: src/Module/DFRN/Poll.php:43 src/Module/Feed.php:65 src/Module/HCard.php:51 #: src/Module/Profile/Common.php:62 src/Module/Profile/Common.php:71 #: src/Module/Profile/Contacts.php:64 src/Module/Profile/Contacts.php:72 -#: src/Module/Profile/Conversations.php:91 src/Module/Profile/Media.php:38 +#: src/Module/Profile/Conversations.php:91 src/Module/Profile/Media.php:56 #: src/Module/Profile/Photos.php:83 src/Module/Profile/RemoteFollow.php:71 #: src/Module/Register.php:267 msgid "User not found." @@ -628,34 +628,34 @@ msgstr "Tourner dans le sens contraire des aiguilles d'une montre (vers la gauch #: mod/photos.php:1139 mod/photos.php:1195 mod/photos.php:1275 #: src/Module/Contact.php:618 src/Module/Item/Compose.php:188 -#: src/Object/Post.php:1146 +#: src/Object/Post.php:1151 msgid "This is you" msgstr "C'est vous" #: mod/photos.php:1141 mod/photos.php:1197 mod/photos.php:1277 #: src/Module/Moderation/Reports.php:95 src/Object/Post.php:603 -#: src/Object/Post.php:1148 +#: src/Object/Post.php:1153 msgid "Comment" msgstr "Commenter" #: mod/photos.php:1143 mod/photos.php:1199 mod/photos.php:1279 #: src/Content/Conversation.php:416 src/Module/Calendar/Event/Form.php:248 #: src/Module/Item/Compose.php:201 src/Module/Post/Edit.php:165 -#: src/Object/Post.php:1162 +#: src/Object/Post.php:1167 msgid "Preview" msgstr "Aperçu" #: mod/photos.php:1144 src/Content/Conversation.php:369 -#: src/Module/Post/Edit.php:130 src/Object/Post.php:1150 +#: src/Module/Post/Edit.php:130 src/Object/Post.php:1155 msgid "Loading..." msgstr "Chargement en cours..." -#: mod/photos.php:1236 src/Content/Conversation.php:1499 +#: mod/photos.php:1236 src/Content/Conversation.php:1501 #: src/Object/Post.php:261 msgid "Select" msgstr "Sélectionner" -#: mod/photos.php:1237 src/Content/Conversation.php:1500 +#: 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 @@ -823,12 +823,12 @@ msgstr "Tous les contacts" #: src/BaseModule.php:439 src/Content/Conversation/Factory/Channel.php:45 #: src/Content/Widget.php:239 src/Core/ACL.php:195 src/Module/Contact.php:414 #: src/Module/PermissionTooltip.php:141 src/Module/PermissionTooltip.php:163 -#: src/Module/Settings/Channels.php:121 +#: src/Module/Settings/Channels.php:119 msgid "Followers" msgstr "Abonnés" #: src/BaseModule.php:444 src/Content/Widget.php:240 -#: src/Module/Contact.php:417 src/Module/Settings/Channels.php:120 +#: src/Module/Contact.php:417 src/Module/Settings/Channels.php:118 msgid "Following" msgstr "Abonnements" @@ -987,7 +987,7 @@ msgstr "Toutes les mises à jour de publications en attente sont terminées." msgid "Enter user nickname: " msgstr "Entrer un pseudo :" -#: src/Console/User.php:182 src/Model/User.php:793 +#: src/Console/User.php:182 src/Model/User.php:806 #: src/Module/Api/Twitter/ContactEndpoint.php:74 #: src/Module/Moderation/Users/Active.php:71 #: src/Module/Moderation/Users/Blocked.php:71 @@ -1281,7 +1281,7 @@ msgid "Visible to everybody" msgstr "Visible par tout le monde" #: src/Content/Conversation.php:339 src/Module/Item/Compose.php:200 -#: src/Object/Post.php:1161 +#: src/Object/Post.php:1166 msgid "Please enter a image/video/audio/webpage URL:" msgstr "Veuillez entrer une URL d'image/vidéo/page web." @@ -1326,52 +1326,52 @@ msgid "attach file" msgstr "ajout fichier" #: src/Content/Conversation.php:374 src/Module/Item/Compose.php:190 -#: src/Module/Post/Edit.php:171 src/Object/Post.php:1151 +#: src/Module/Post/Edit.php:171 src/Object/Post.php:1156 msgid "Bold" msgstr "Gras" #: src/Content/Conversation.php:375 src/Module/Item/Compose.php:191 -#: src/Module/Post/Edit.php:172 src/Object/Post.php:1152 +#: src/Module/Post/Edit.php:172 src/Object/Post.php:1157 msgid "Italic" msgstr "Italique" #: src/Content/Conversation.php:376 src/Module/Item/Compose.php:192 -#: src/Module/Post/Edit.php:173 src/Object/Post.php:1153 +#: src/Module/Post/Edit.php:173 src/Object/Post.php:1158 msgid "Underline" msgstr "Souligné" #: src/Content/Conversation.php:377 src/Module/Item/Compose.php:193 -#: src/Module/Post/Edit.php:174 src/Object/Post.php:1155 +#: src/Module/Post/Edit.php:174 src/Object/Post.php:1160 msgid "Quote" msgstr "Citation" #: src/Content/Conversation.php:378 src/Module/Item/Compose.php:194 -#: src/Module/Post/Edit.php:175 src/Object/Post.php:1156 +#: src/Module/Post/Edit.php:175 src/Object/Post.php:1161 msgid "Add emojis" msgstr "Ajouter des émojis" #: src/Content/Conversation.php:379 src/Module/Item/Compose.php:195 -#: src/Object/Post.php:1154 +#: src/Object/Post.php:1159 msgid "Content Warning" msgstr "Avertissement de contenu" #: src/Content/Conversation.php:380 src/Module/Item/Compose.php:196 -#: src/Module/Post/Edit.php:176 src/Object/Post.php:1157 +#: src/Module/Post/Edit.php:176 src/Object/Post.php:1162 msgid "Code" msgstr "Code" #: src/Content/Conversation.php:381 src/Module/Item/Compose.php:197 -#: src/Object/Post.php:1158 +#: src/Object/Post.php:1163 msgid "Image" msgstr "Image" #: src/Content/Conversation.php:382 src/Module/Item/Compose.php:198 -#: src/Module/Post/Edit.php:177 src/Object/Post.php:1159 +#: src/Module/Post/Edit.php:177 src/Object/Post.php:1164 msgid "Link" msgstr "Lien" #: src/Content/Conversation.php:383 src/Module/Item/Compose.php:199 -#: src/Module/Post/Edit.php:178 src/Object/Post.php:1160 +#: src/Module/Post/Edit.php:178 src/Object/Post.php:1165 msgid "Link or Media" msgstr "Lien ou média" @@ -1441,116 +1441,116 @@ msgstr "enlever" msgid "Delete Selected Items" msgstr "Supprimer les éléments sélectionnés" -#: src/Content/Conversation.php:756 src/Content/Conversation.php:759 -#: src/Content/Conversation.php:762 src/Content/Conversation.php:765 -#: src/Content/Conversation.php:768 +#: src/Content/Conversation.php:729 src/Content/Conversation.php:732 +#: src/Content/Conversation.php:735 src/Content/Conversation.php:738 +#: src/Content/Conversation.php:741 #, php-format msgid "You had been addressed (%s)." msgstr "Vous avez été mentionné (%s)" -#: src/Content/Conversation.php:771 +#: src/Content/Conversation.php:744 #, php-format msgid "You are following %s." msgstr "Vous suivez %s." -#: src/Content/Conversation.php:776 +#: src/Content/Conversation.php:749 #, php-format msgid "You subscribed to %s." msgstr "Vous vous êtes abonné(e) à %s." -#: src/Content/Conversation.php:778 +#: src/Content/Conversation.php:751 msgid "You subscribed to one or more tags in this post." msgstr "Vous vous êtes abonné(e) à un tag ou plus de cette publication." -#: src/Content/Conversation.php:798 +#: src/Content/Conversation.php:771 #, php-format msgid "%s reshared this." msgstr "%s a partagé." -#: src/Content/Conversation.php:800 +#: src/Content/Conversation.php:773 msgid "Reshared" msgstr "Partagé" -#: src/Content/Conversation.php:800 +#: src/Content/Conversation.php:773 #, php-format msgid "Reshared by %s <%s>" msgstr "Partagé par %s <%s>" -#: src/Content/Conversation.php:803 +#: src/Content/Conversation.php:776 #, php-format msgid "%s is participating in this thread." msgstr "%s participe à ce fil de discussion" -#: src/Content/Conversation.php:806 +#: src/Content/Conversation.php:779 msgid "Stored for general reasons" msgstr "Stocké pour des raisons générales." -#: src/Content/Conversation.php:809 +#: src/Content/Conversation.php:782 msgid "Global post" msgstr "Publication globale" -#: src/Content/Conversation.php:812 +#: src/Content/Conversation.php:785 msgid "Sent via an relay server" msgstr "Envoyé via un serveur relais" -#: src/Content/Conversation.php:812 +#: src/Content/Conversation.php:785 #, php-format msgid "Sent via the relay server %s <%s>" msgstr "Envoyé par le serveur relais %s <%s>" -#: src/Content/Conversation.php:815 +#: src/Content/Conversation.php:788 msgid "Fetched" msgstr "Récupéré" -#: src/Content/Conversation.php:815 +#: src/Content/Conversation.php:788 #, php-format msgid "Fetched because of %s <%s>" msgstr "Récupéré grâce à %s <%s>" -#: src/Content/Conversation.php:818 +#: src/Content/Conversation.php:791 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:821 +#: src/Content/Conversation.php:794 msgid "Local delivery" msgstr "Distribution locale" -#: src/Content/Conversation.php:824 +#: src/Content/Conversation.php:797 msgid "Stored because of your activity (like, comment, star, ...)" msgstr "Stocké en lien avec votre activité (j'aime, commentaire, étoile...)" -#: src/Content/Conversation.php:827 +#: src/Content/Conversation.php:800 msgid "Distributed" msgstr "Distribué" -#: src/Content/Conversation.php:830 +#: src/Content/Conversation.php:803 msgid "Pushed to us" msgstr "Poussé vers nous" -#: src/Content/Conversation.php:1527 src/Object/Post.php:248 +#: src/Content/Conversation.php:1529 src/Object/Post.php:248 msgid "Pinned item" msgstr "Élément épinglé" -#: src/Content/Conversation.php:1544 src/Object/Post.php:548 +#: src/Content/Conversation.php:1546 src/Object/Post.php:548 #: src/Object/Post.php:549 #, php-format msgid "View %s's profile @ %s" msgstr "Voir le profil de %s @ %s" -#: src/Content/Conversation.php:1557 src/Object/Post.php:536 +#: src/Content/Conversation.php:1559 src/Object/Post.php:536 msgid "Categories:" msgstr "Catégories :" -#: src/Content/Conversation.php:1558 src/Object/Post.php:537 +#: src/Content/Conversation.php:1560 src/Object/Post.php:537 msgid "Filed under:" msgstr "Rangé sous :" -#: src/Content/Conversation.php:1566 src/Object/Post.php:562 +#: src/Content/Conversation.php:1568 src/Object/Post.php:562 #, php-format msgid "%s from %s" msgstr "%s de %s" -#: src/Content/Conversation.php:1582 +#: src/Content/Conversation.php:1584 msgid "View in context" msgstr "Voir dans le contexte" @@ -1588,7 +1588,7 @@ 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:47 -#: src/Module/Settings/Channels.php:138 src/Module/Settings/Channels.php:154 +#: src/Module/Settings/Channels.php:146 src/Module/Settings/Channels.php:163 msgid "Images" msgstr "Images" @@ -1597,7 +1597,7 @@ msgid "Posts with images" msgstr "Publications avec images" #: src/Content/Conversation/Factory/Channel.php:48 -#: src/Module/Settings/Channels.php:140 src/Module/Settings/Channels.php:156 +#: src/Module/Settings/Channels.php:148 src/Module/Settings/Channels.php:165 msgid "Audio" msgstr "Audio" @@ -1606,7 +1606,7 @@ msgid "Posts with audio" msgstr "Publications avec audio" #: src/Content/Conversation/Factory/Channel.php:49 -#: src/Module/Settings/Channels.php:139 src/Module/Settings/Channels.php:155 +#: src/Module/Settings/Channels.php:147 src/Module/Settings/Channels.php:164 msgid "Videos" msgstr "Vidéos" @@ -1623,7 +1623,7 @@ 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:118 +#: src/Module/Settings/Channels.php:116 msgid "Global Community" msgstr "Communauté globale" @@ -1786,7 +1786,7 @@ msgstr "Autorise les visiteurs anonymes à consulter votre calendrier et vos év #: src/Content/GroupManager.php:152 src/Content/Nav.php:278 #: src/Content/Text/HTML.php:880 src/Content/Widget.php:537 -#: src/Model/User.php:1355 +#: src/Model/User.php:1368 msgid "Groups" msgstr "Groupes" @@ -1807,7 +1807,7 @@ msgstr "montrer plus" msgid "Create new group" msgstr "Créer un nouveau groupe" -#: src/Content/Item.php:332 src/Model/Item.php:3137 +#: src/Content/Item.php:332 src/Model/Item.php:3166 msgid "event" msgstr "évènement" @@ -1815,7 +1815,7 @@ msgstr "évènement" msgid "status" msgstr "le statut" -#: src/Content/Item.php:341 src/Model/Item.php:3139 +#: src/Content/Item.php:341 src/Model/Item.php:3168 #: src/Module/Post/Tag/Add.php:123 msgid "photo" msgstr "photo" @@ -2087,7 +2087,7 @@ msgstr "Conditions de service" msgid "Terms of Service of this Friendica instance" msgstr "Conditions d'Utilisation de ce serveur Friendica" -#: src/Content/Nav.php:306 src/Module/Settings/Channels.php:119 +#: src/Content/Nav.php:306 src/Module/Settings/Channels.php:117 #: view/theme/frio/theme.php:239 msgid "Network" msgstr "Réseau" @@ -2227,8 +2227,8 @@ msgstr "Image/photo" msgid "%2$s %3$s" msgstr "%2$s %3$s" -#: src/Content/Text/BBCode.php:994 src/Model/Item.php:3870 -#: src/Model/Item.php:3876 src/Model/Item.php:3877 +#: src/Content/Text/BBCode.php:994 src/Model/Item.php:3899 +#: src/Model/Item.php:3905 src/Model/Item.php:3906 msgid "Link to source" msgstr "Lien vers la source" @@ -2398,7 +2398,7 @@ msgstr "Personnes" msgid "Organisations" msgstr "Organisations" -#: src/Content/Widget.php:536 src/Model/Contact.php:1714 +#: src/Content/Widget.php:536 src/Model/Contact.php:1738 msgid "News" msgstr "Nouvelles" @@ -2410,8 +2410,8 @@ msgstr "Type de compte" msgid "All" msgstr "Tout" -#: src/Content/Widget.php:591 src/Module/Admin/Site.php:464 -#: src/Module/BaseSettings.php:125 src/Module/Settings/Channels.php:158 +#: src/Content/Widget.php:591 src/Module/Admin/Site.php:466 +#: src/Module/BaseSettings.php:125 src/Module/Settings/Channels.php:167 #: src/Module/Settings/Display.php:315 msgid "Channels" msgstr "Chaînes" @@ -3276,76 +3276,76 @@ msgstr "Modifier les cercles" msgid "Approve" msgstr "Approuver" -#: src/Model/Contact.php:1710 +#: src/Model/Contact.php:1734 msgid "Organisation" msgstr "Organisation" -#: src/Model/Contact.php:1718 +#: src/Model/Contact.php:1742 msgid "Group" msgstr "Groupe" -#: src/Model/Contact.php:3021 +#: src/Model/Contact.php:3045 msgid "Disallowed profile URL." msgstr "URL de profil interdite." -#: src/Model/Contact.php:3026 src/Module/Friendica.php:101 +#: src/Model/Contact.php:3050 src/Module/Friendica.php:101 msgid "Blocked domain" msgstr "Domaine bloqué" -#: src/Model/Contact.php:3031 +#: src/Model/Contact.php:3055 msgid "Connect URL missing." msgstr "URL de connexion manquante." -#: src/Model/Contact.php:3040 +#: src/Model/Contact.php:3064 msgid "" "The contact could not be added. Please check the relevant network " "credentials in your Settings -> Social Networks page." msgstr "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:3058 +#: src/Model/Contact.php:3082 #, 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:3075 +#: src/Model/Contact.php:3099 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:3077 +#: src/Model/Contact.php:3101 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:3080 +#: src/Model/Contact.php:3104 msgid "An author or name was not found." msgstr "Aucun auteur ou nom d'auteur n'a pu être trouvé." -#: src/Model/Contact.php:3083 +#: src/Model/Contact.php:3107 msgid "No browser URL could be matched to this address." msgstr "Aucune URL de navigation ne correspond à cette adresse." -#: src/Model/Contact.php:3086 +#: src/Model/Contact.php:3110 msgid "" "Unable to match @-style Identity Address with a known protocol or email " "contact." msgstr "Impossible de faire correspondre l'adresse d'identité en \"@\" avec un protocole connu ou un contact courriel." -#: src/Model/Contact.php:3087 +#: src/Model/Contact.php:3111 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:3093 +#: src/Model/Contact.php:3117 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:3098 +#: src/Model/Contact.php:3122 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:3164 +#: src/Model/Contact.php:3188 msgid "Unable to retrieve contact information." msgstr "Impossible de récupérer les informations du contact." @@ -3450,58 +3450,58 @@ msgstr "Anniversaire de %s's" msgid "Happy Birthday %s" msgstr "Joyeux anniversaire, %s !" -#: src/Model/Item.php:2188 +#: src/Model/Item.php:2217 #, php-format msgid "%s (%s - %s): %s" msgstr "%s (%s - %s) : %s" -#: src/Model/Item.php:2190 +#: src/Model/Item.php:2219 #, php-format msgid "%s (%s): %s" msgstr "%s (%s) : %s" -#: src/Model/Item.php:2193 +#: src/Model/Item.php:2222 #, php-format msgid "Detected languages in this post:\\n%s" msgstr "Langues détectées dans cette publication :\\n%s" -#: src/Model/Item.php:3141 +#: src/Model/Item.php:3170 msgid "activity" msgstr "activité" -#: src/Model/Item.php:3143 +#: src/Model/Item.php:3172 msgid "comment" msgstr "commentaire" -#: src/Model/Item.php:3146 src/Module/Post/Tag/Add.php:123 +#: src/Model/Item.php:3175 src/Module/Post/Tag/Add.php:123 msgid "post" msgstr "publication" -#: src/Model/Item.php:3316 +#: src/Model/Item.php:3345 #, php-format msgid "%s is blocked" msgstr "%s est bloqué(e)" -#: src/Model/Item.php:3318 +#: src/Model/Item.php:3347 #, php-format msgid "%s is ignored" msgstr "%s est ignoré(e)" -#: src/Model/Item.php:3320 +#: src/Model/Item.php:3349 #, php-format msgid "Content from %s is collapsed" msgstr "Le contenu de %s est réduit" -#: src/Model/Item.php:3324 +#: src/Model/Item.php:3353 #, php-format msgid "Content warning: %s" msgstr "Avertissement de contenu: %s" -#: src/Model/Item.php:3777 +#: src/Model/Item.php:3806 msgid "bytes" msgstr "octets" -#: src/Model/Item.php:3808 +#: src/Model/Item.php:3837 #, php-format msgid "%2$s (%3$d%%, %1$d vote)" msgid_plural "%2$s (%3$d%%, %1$d votes)" @@ -3509,7 +3509,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:3810 +#: src/Model/Item.php:3839 #, php-format msgid "%2$s (%1$d vote)" msgid_plural "%2$s (%1$d votes)" @@ -3517,7 +3517,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:3815 +#: src/Model/Item.php:3844 #, php-format msgid "%d voter. Poll end: %s" msgid_plural "%d voters. Poll end: %s" @@ -3525,7 +3525,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:3817 +#: src/Model/Item.php:3846 #, php-format msgid "%d voter." msgid_plural "%d voters." @@ -3533,12 +3533,12 @@ msgstr[0] "%d votant." msgstr[1] "%d votants." msgstr[2] "%d votants." -#: src/Model/Item.php:3819 +#: src/Model/Item.php:3848 #, php-format msgid "Poll end: %s" msgstr "Fin du sondage : %s" -#: src/Model/Item.php:3853 src/Model/Item.php:3854 +#: src/Model/Item.php:3882 src/Model/Item.php:3883 msgid "View on separate page" msgstr "Voir dans une nouvelle page" @@ -3696,78 +3696,78 @@ msgstr "Études / Formation" msgid "Contact information and Social Networks" msgstr "Coordonnées / Réseaux sociaux" -#: src/Model/User.php:225 src/Model/User.php:1268 +#: src/Model/User.php:225 src/Model/User.php:1281 msgid "SERIOUS ERROR: Generation of security keys failed." msgstr "ERREUR FATALE : La génération des clés de sécurité a échoué." -#: src/Model/User.php:702 src/Model/User.php:735 +#: src/Model/User.php:715 src/Model/User.php:748 msgid "Login failed" msgstr "Échec de l'identification" -#: src/Model/User.php:767 +#: src/Model/User.php:780 msgid "Not enough information to authenticate" msgstr "Pas assez d'informations pour s'identifier" -#: src/Model/User.php:888 +#: src/Model/User.php:901 msgid "Password can't be empty" msgstr "Le mot de passe ne peut pas être vide" -#: src/Model/User.php:930 +#: src/Model/User.php:943 msgid "Empty passwords are not allowed." msgstr "Les mots de passe vides ne sont pas acceptés." -#: src/Model/User.php:934 +#: src/Model/User.php:947 msgid "" "The new password has been exposed in a public data dump, please choose " "another." msgstr "Le nouveau mot de passe fait partie d'une fuite de mot de passe publique, veuillez en choisir un autre." -#: src/Model/User.php:938 +#: src/Model/User.php:951 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:942 +#: src/Model/User.php:955 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:1151 +#: src/Model/User.php:1164 msgid "Passwords do not match. Password unchanged." msgstr "Les mots de passe ne correspondent pas. Aucun changement appliqué." -#: src/Model/User.php:1158 +#: src/Model/User.php:1171 msgid "An invitation is required." msgstr "Une invitation est requise." -#: src/Model/User.php:1162 +#: src/Model/User.php:1175 msgid "Invitation could not be verified." msgstr "L'invitation fournie n'a pu être validée." -#: src/Model/User.php:1170 +#: src/Model/User.php:1183 msgid "Invalid OpenID url" msgstr "Adresse OpenID invalide" -#: src/Model/User.php:1183 src/Security/Authentication.php:241 +#: src/Model/User.php:1196 src/Security/Authentication.php:241 msgid "" "We encountered a problem while logging in with the OpenID you provided. " "Please check the correct spelling of the ID." msgstr "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:1183 src/Security/Authentication.php:241 +#: src/Model/User.php:1196 src/Security/Authentication.php:241 msgid "The error message was:" msgstr "Le message d'erreur était :" -#: src/Model/User.php:1189 +#: src/Model/User.php:1202 msgid "Please enter the required information." msgstr "Entrez les informations requises." -#: src/Model/User.php:1203 +#: src/Model/User.php:1216 #, php-format msgid "" "system.username_min_length (%s) and system.username_max_length (%s) are " "excluding each other, swapping values." msgstr "system.username_min_length (%s) et system.username_max_length (%s) s'excluent mutuellement, leur valeur sont échangées." -#: src/Model/User.php:1210 +#: src/Model/User.php:1223 #, php-format msgid "Username should be at least %s character." msgid_plural "Username should be at least %s characters." @@ -3775,7 +3775,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:1214 +#: src/Model/User.php:1227 #, php-format msgid "Username should be at most %s character." msgid_plural "Username should be at most %s characters." @@ -3783,60 +3783,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:1222 +#: src/Model/User.php:1235 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:1227 +#: src/Model/User.php:1240 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:1231 +#: src/Model/User.php:1244 msgid "Not a valid email address." msgstr "Ceci n'est pas une adresse courriel valide." -#: src/Model/User.php:1234 +#: src/Model/User.php:1247 msgid "The nickname was blocked from registration by the nodes admin." msgstr "Cet identifiant utilisateur est réservé." -#: src/Model/User.php:1238 src/Model/User.php:1244 +#: src/Model/User.php:1251 src/Model/User.php:1257 msgid "Cannot use that email." msgstr "Impossible d'utiliser ce courriel." -#: src/Model/User.php:1250 +#: src/Model/User.php:1263 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:1258 src/Model/User.php:1315 +#: src/Model/User.php:1271 src/Model/User.php:1328 msgid "Nickname is already registered. Please choose another." msgstr "Pseudo déjà utilisé. Merci d'en choisir un autre." -#: src/Model/User.php:1302 src/Model/User.php:1306 +#: src/Model/User.php:1315 src/Model/User.php:1319 msgid "An error occurred during registration. Please try again." msgstr "Une erreur est survenue lors de l'inscription. Merci de recommencer." -#: src/Model/User.php:1329 +#: src/Model/User.php:1342 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:1336 +#: src/Model/User.php:1349 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:1341 +#: src/Model/User.php:1354 msgid "Friends" msgstr "Contacts" -#: src/Model/User.php:1345 +#: src/Model/User.php:1358 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:1389 +#: src/Model/User.php:1402 msgid "Profile Photos" msgstr "Photos du profil" -#: src/Model/User.php:1569 +#: src/Model/User.php:1582 #, php-format msgid "" "\n" @@ -3844,7 +3844,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:1572 +#: src/Model/User.php:1585 #, php-format msgid "" "\n" @@ -3875,12 +3875,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:1604 src/Model/User.php:1710 +#: src/Model/User.php:1617 src/Model/User.php:1723 #, php-format msgid "Registration details for %s" msgstr "Détails d'inscription pour %s" -#: src/Model/User.php:1624 +#: src/Model/User.php:1637 #, php-format msgid "" "\n" @@ -3895,12 +3895,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:1643 +#: src/Model/User.php:1656 #, php-format msgid "Registration at %s" msgstr "inscription à %s" -#: src/Model/User.php:1667 +#: src/Model/User.php:1680 #, php-format msgid "" "\n" @@ -3909,7 +3909,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:1675 +#: src/Model/User.php:1688 #, php-format msgid "" "\n" @@ -3940,7 +3940,7 @@ msgid "" "\t\t\tThank you and welcome to %2$s." msgstr "\n\t\t\tLes détails de connexion sont les suivants :\n\n\t\t\tAdresse :\t%3$s\n\t\t\tIdentifiant :\t\t%1$s\n\t\t\tMot de passe:\t\t%5$s\n\n\t\t\tVous pouvez modifier votre mot de passe à partir de la page \"Paramètres\"\n\t\t\tde votre compte après vous être connecté.\n\n\t\t\tVeuillez prendre quelques instants pour passer en revue les autres paramètres\n\t\t\tde votre compte sur cette page.\n\n\t\t\tVous pouvez également ajouter quelques informations de base à votre profil par\n\t\t\tdéfaut (sur la page \"Profils\") afin que d'autres personnes puissent vous trouver facilement.\n\n\t\t\tNous vous recommandons d'ajouter une photo de profil, des \"mots-clés\"\n\t\t\t(très utiles pour se faire de nouveaux amis) et peut-être le pays dans lequel\n\t\t\tvous vivez, si vous ne souhaitez pas être plus précis.\n\n\t\t\tNous respectons pleinement votre droit à la vie privée et aucun de ces éléments\n\t\t\tn'est nécessaire. Si vous êtes nouveau et que vous ne connaissez personne ici,\n\t\t\tils peuvent vous aider à vous faire de nouveaux amis intéressants.\n\n\t\t\tSi vous souhaitez supprimer votre compte, vous pouvez le faire à l'adresse %3$s/settings/removeme\n\n\t\t\tMerci et bienvenue sur %2$s." -#: src/Model/User.php:1737 +#: src/Model/User.php:1750 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." @@ -3970,9 +3970,9 @@ msgid "Enable" msgstr "Activer" #: src/Module/Admin/Addons/Details.php:111 -#: src/Module/Admin/Addons/Index.php:67 src/Module/Admin/Federation.php:214 +#: 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:447 +#: src/Module/Admin/Queue.php:72 src/Module/Admin/Site.php:449 #: src/Module/Admin/Storage.php:138 src/Module/Admin/Summary.php:196 #: src/Module/Admin/Themes/Details.php:90 #: src/Module/Admin/Themes/Index.php:111 src/Module/Admin/Tos.php:77 @@ -4012,7 +4012,7 @@ msgid "Addon %s failed to install." msgstr "L'extension %s a échoué à s'installer." #: src/Module/Admin/Addons/Index.php:69 src/Module/Admin/Features.php:86 -#: src/Module/Admin/Logs/Settings.php:87 src/Module/Admin/Site.php:450 +#: src/Module/Admin/Logs/Settings.php:87 src/Module/Admin/Site.php:452 #: src/Module/Admin/Themes/Index.php:113 src/Module/Admin/Tos.php:86 #: src/Module/Settings/Account.php:541 src/Module/Settings/Addons.php:78 #: src/Module/Settings/Connectors.php:160 @@ -4102,17 +4102,17 @@ msgstr "Verouiller la fonctionnalité %s" msgid "Manage Additional Features" msgstr "Gérer les fonctionnalités avancées" -#: src/Module/Admin/Federation.php:76 +#: src/Module/Admin/Federation.php:80 #: src/Module/Moderation/Report/Create.php:191 #: src/Module/Moderation/Report/Create.php:316 msgid "Other" msgstr "Autre" -#: src/Module/Admin/Federation.php:154 src/Module/Admin/Federation.php:403 +#: src/Module/Admin/Federation.php:158 src/Module/Admin/Federation.php:407 msgid "unknown" msgstr "inconnu" -#: src/Module/Admin/Federation.php:187 +#: src/Module/Admin/Federation.php:191 #, php-format msgid "%2$s total system" msgid_plural "%2$s total systems" @@ -4120,7 +4120,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:188 +#: src/Module/Admin/Federation.php:192 #, php-format msgid "%2$s active user last month" msgid_plural "%2$s active users last month" @@ -4128,7 +4128,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:189 +#: src/Module/Admin/Federation.php:193 #, php-format msgid "%2$s active user last six months" msgid_plural "%2$s active users last six months" @@ -4136,7 +4136,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:190 +#: src/Module/Admin/Federation.php:194 #, php-format msgid "%2$s registered user" msgid_plural "%2$s registered users" @@ -4144,7 +4144,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:191 +#: src/Module/Admin/Federation.php:195 #, php-format msgid "%2$s locally created post or comment" msgid_plural "%2$s locally created posts and comments" @@ -4152,7 +4152,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:194 +#: src/Module/Admin/Federation.php:198 #, php-format msgid "%2$s post per user" msgid_plural "%2$s posts per user" @@ -4160,7 +4160,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:199 +#: src/Module/Admin/Federation.php:203 #, php-format msgid "%2$s user per system" msgid_plural "%2$s users per system" @@ -4168,18 +4168,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:209 +#: src/Module/Admin/Federation.php:213 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:215 src/Module/BaseAdmin.php:87 +#: src/Module/Admin/Federation.php:219 src/Module/BaseAdmin.php:87 msgid "Federation Statistics" msgstr "Statistiques Federation" -#: src/Module/Admin/Federation.php:219 +#: src/Module/Admin/Federation.php:223 #, php-format msgid "" "Currently this node is aware of %2$s node (%3$s active users last month, " @@ -4220,8 +4220,8 @@ msgid "Enable Debugging" msgstr "Activer le déboggage" #: src/Module/Admin/Logs/Settings.php:91 src/Module/Admin/Logs/Settings.php:92 -#: src/Module/Admin/Logs/Settings.php:93 src/Module/Admin/Site.php:470 -#: src/Module/Admin/Site.php:478 +#: src/Module/Admin/Logs/Settings.php:93 src/Module/Admin/Site.php:472 +#: src/Module/Admin/Site.php:480 msgid "" "Read-only because it is set by an environment variable" msgstr "En lecture seule car configuré avec une variable d'environnement" @@ -4382,269 +4382,269 @@ msgstr "Créé" msgid "Priority" msgstr "Priorité" -#: src/Module/Admin/Site.php:239 +#: src/Module/Admin/Site.php:240 #, php-format msgid "%s is no valid input for maximum image size" msgstr "%s n'est pas une valeur valide pour la taille maximum d'image" -#: src/Module/Admin/Site.php:362 src/Module/Settings/Display.php:215 +#: src/Module/Admin/Site.php:364 src/Module/Settings/Display.php:215 msgid "No special theme for mobile devices" msgstr "Pas de thème particulier pour les terminaux mobiles" -#: src/Module/Admin/Site.php:379 src/Module/Settings/Display.php:225 +#: src/Module/Admin/Site.php:381 src/Module/Settings/Display.php:225 #, php-format msgid "%s - (Experimental)" msgstr "%s- (expérimental)" -#: src/Module/Admin/Site.php:391 +#: src/Module/Admin/Site.php:393 msgid "No community page" msgstr "Aucune page de communauté" -#: src/Module/Admin/Site.php:392 +#: src/Module/Admin/Site.php:394 msgid "No community page for visitors" msgstr "Aucune page communautaire pour les visiteurs" -#: src/Module/Admin/Site.php:393 +#: src/Module/Admin/Site.php:395 msgid "Public postings from users of this site" msgstr "Publications publiques des utilisateurs de ce site" -#: src/Module/Admin/Site.php:394 +#: src/Module/Admin/Site.php:396 msgid "Public postings from the federated network" msgstr "Publications publiques du réseau fédéré" -#: src/Module/Admin/Site.php:395 +#: src/Module/Admin/Site.php:397 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:401 +#: src/Module/Admin/Site.php:403 msgid "Multi user instance" msgstr "Instance multi-utilisateurs" -#: src/Module/Admin/Site.php:424 +#: src/Module/Admin/Site.php:426 msgid "Closed" msgstr "Fermé" -#: src/Module/Admin/Site.php:425 +#: src/Module/Admin/Site.php:427 msgid "Requires approval" msgstr "Demande une apptrobation" -#: src/Module/Admin/Site.php:426 +#: src/Module/Admin/Site.php:428 msgid "Open" msgstr "Ouvert" -#: src/Module/Admin/Site.php:430 +#: src/Module/Admin/Site.php:432 msgid "Don't check" msgstr "Ne pas rechercher" -#: src/Module/Admin/Site.php:431 +#: src/Module/Admin/Site.php:433 msgid "check the stable version" msgstr "Rechercher les versions stables" -#: src/Module/Admin/Site.php:432 +#: src/Module/Admin/Site.php:434 msgid "check the development version" msgstr "Rechercher les versions de développement" -#: src/Module/Admin/Site.php:436 +#: src/Module/Admin/Site.php:438 msgid "none" msgstr "aucun" -#: src/Module/Admin/Site.php:437 +#: src/Module/Admin/Site.php:439 msgid "Local contacts" msgstr "Contacts locaux" -#: src/Module/Admin/Site.php:438 +#: src/Module/Admin/Site.php:440 msgid "Interactors" msgstr "Interagisseurs" -#: src/Module/Admin/Site.php:448 src/Module/BaseAdmin.php:90 +#: src/Module/Admin/Site.php:450 src/Module/BaseAdmin.php:90 msgid "Site" msgstr "Site" -#: src/Module/Admin/Site.php:449 +#: src/Module/Admin/Site.php:451 msgid "General Information" msgstr "Information générale" -#: src/Module/Admin/Site.php:451 +#: src/Module/Admin/Site.php:453 msgid "Republish users to directory" msgstr "Republier les utilisateurs sur le répertoire" -#: src/Module/Admin/Site.php:452 src/Module/Register.php:152 +#: src/Module/Admin/Site.php:454 src/Module/Register.php:152 msgid "Registration" msgstr "Inscription" -#: src/Module/Admin/Site.php:453 +#: src/Module/Admin/Site.php:455 msgid "File upload" msgstr "Téléversement de fichier" -#: src/Module/Admin/Site.php:454 +#: src/Module/Admin/Site.php:456 msgid "Policies" msgstr "Politiques" -#: src/Module/Admin/Site.php:455 src/Module/Calendar/Event/Form.php:252 +#: src/Module/Admin/Site.php:457 src/Module/Calendar/Event/Form.php:252 #: src/Module/Contact.php:546 src/Module/Profile/Profile.php:276 msgid "Advanced" msgstr "Avancé" -#: src/Module/Admin/Site.php:456 +#: src/Module/Admin/Site.php:458 msgid "Auto Discovered Contact Directory" msgstr "Répertoire de Contacts Découverts Automatiquement" -#: src/Module/Admin/Site.php:457 +#: src/Module/Admin/Site.php:459 msgid "Performance" msgstr "Performance" -#: src/Module/Admin/Site.php:458 +#: src/Module/Admin/Site.php:460 msgid "Worker" msgstr "Tâche de fond" -#: src/Module/Admin/Site.php:459 +#: src/Module/Admin/Site.php:461 msgid "Message Relay" msgstr "Relai de publication" -#: src/Module/Admin/Site.php:460 +#: src/Module/Admin/Site.php:462 msgid "" "Use the command \"console relay\" in the command line to add or remove " "relays." msgstr "Utilisez la commande \"console relay\" en ligne de commande pour ajouter ou retirer des relais." -#: src/Module/Admin/Site.php:461 +#: src/Module/Admin/Site.php:463 msgid "The system is not subscribed to any relays at the moment." msgstr "Ce serveur n'est pas abonné à un relai pour le moment." -#: src/Module/Admin/Site.php:462 +#: src/Module/Admin/Site.php:464 msgid "The system is currently subscribed to the following relays:" msgstr "Ce serveur est actuellement abonné aux relais suivants:" -#: src/Module/Admin/Site.php:465 +#: src/Module/Admin/Site.php:467 msgid "Relocate Node" msgstr "Déplacer le nœud" -#: src/Module/Admin/Site.php:466 +#: src/Module/Admin/Site.php:468 msgid "" "Relocating your node enables you to change the DNS domain of this node and " "keep all the existing users and posts. This process takes a while and can " "only be started from the relocate console command like this:" msgstr "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:467 +#: src/Module/Admin/Site.php:469 msgid "(Friendica directory)# bin/console relocate https://newdomain.com" msgstr "(Friendica directory)# bin/console relocate https://nouveaudomaine.fr" -#: src/Module/Admin/Site.php:470 +#: src/Module/Admin/Site.php:472 msgid "Site name" msgstr "Nom du site" -#: src/Module/Admin/Site.php:471 +#: src/Module/Admin/Site.php:473 msgid "Sender Email" msgstr "Courriel de l'émetteur" -#: src/Module/Admin/Site.php:471 +#: src/Module/Admin/Site.php:473 msgid "" "The email address your server shall use to send notification emails from." msgstr "L'adresse courriel à partir de laquelle votre serveur enverra des courriels." -#: src/Module/Admin/Site.php:472 +#: src/Module/Admin/Site.php:474 msgid "Name of the system actor" msgstr "Nom du compte système" -#: src/Module/Admin/Site.php:472 +#: src/Module/Admin/Site.php:474 msgid "" "Name of the internal system account that is used to perform ActivityPub " "requests. This must be an unused username. If set, this can't be changed " "again." msgstr "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:473 +#: src/Module/Admin/Site.php:475 msgid "Banner/Logo" msgstr "Bannière/Logo" -#: src/Module/Admin/Site.php:474 +#: src/Module/Admin/Site.php:476 msgid "Email Banner/Logo" msgstr "Bannière/Logo de courriel" -#: src/Module/Admin/Site.php:475 +#: src/Module/Admin/Site.php:477 msgid "Shortcut icon" msgstr "Icône de raccourci" -#: src/Module/Admin/Site.php:475 +#: src/Module/Admin/Site.php:477 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:476 +#: src/Module/Admin/Site.php:478 msgid "Touch icon" msgstr "Icône pour systèmes tactiles" -#: src/Module/Admin/Site.php:476 +#: src/Module/Admin/Site.php:478 msgid "Link to an icon that will be used for tablets and mobiles." msgstr "Lien vers une icône qui sera utilisée pour les tablettes et les mobiles." -#: src/Module/Admin/Site.php:477 +#: src/Module/Admin/Site.php:479 msgid "Additional Info" msgstr "Informations supplémentaires" -#: src/Module/Admin/Site.php:477 +#: src/Module/Admin/Site.php:479 #, php-format msgid "" "For public servers: you can add additional information here that will be " "listed at %s/servers." msgstr "Description publique destinée au répertoire global de sites Friendica." -#: src/Module/Admin/Site.php:478 +#: src/Module/Admin/Site.php:480 msgid "System language" msgstr "Langue du système" -#: src/Module/Admin/Site.php:479 +#: src/Module/Admin/Site.php:481 msgid "System theme" msgstr "Thème du système" -#: src/Module/Admin/Site.php:479 +#: src/Module/Admin/Site.php:481 #, php-format msgid "" "Default system theme - may be over-ridden by user profiles - Change default theme settings" msgstr "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:480 +#: src/Module/Admin/Site.php:482 msgid "Mobile system theme" msgstr "Thème mobile" -#: src/Module/Admin/Site.php:480 +#: src/Module/Admin/Site.php:482 msgid "Theme for mobile devices" msgstr "Thème pour les terminaux mobiles" -#: src/Module/Admin/Site.php:481 +#: src/Module/Admin/Site.php:483 msgid "Force SSL" msgstr "SSL obligatoire" -#: src/Module/Admin/Site.php:481 +#: src/Module/Admin/Site.php:483 msgid "" "Force all Non-SSL requests to SSL - Attention: on some systems it could lead" " to endless loops." msgstr "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:482 +#: src/Module/Admin/Site.php:484 msgid "Show help entry from navigation menu" msgstr "Montrer l'aide dans le menu de navigation" -#: src/Module/Admin/Site.php:482 +#: src/Module/Admin/Site.php:484 msgid "" "Displays the menu entry for the Help pages from the navigation menu. It is " "always accessible by calling /help directly." msgstr "Montre l'Aide dans le menu de navigation. L'aide reste accessible en naviguant vers /help directement." -#: src/Module/Admin/Site.php:483 +#: src/Module/Admin/Site.php:485 msgid "Single user instance" msgstr "Instance mono-utilisateur" -#: src/Module/Admin/Site.php:483 +#: src/Module/Admin/Site.php:485 msgid "Make this instance multi-user or single-user for the named user" msgstr "Transformer cette en instance en multi-utilisateur ou mono-utilisateur pour cet l'utilisateur." -#: src/Module/Admin/Site.php:485 +#: src/Module/Admin/Site.php:487 msgid "Maximum image size" msgstr "Taille maximale des images" -#: src/Module/Admin/Site.php:485 +#: src/Module/Admin/Site.php:487 #, php-format msgid "" "Maximum size in bytes of uploaded images. Default is 0, which means no limits. You can put k, m, or g behind the desired value for KiB, MiB, GiB, respectively.\n" @@ -4652,35 +4652,35 @@ msgid "" "\t\t\t\t\t\t\t\t\t\t\t\t\tCurrently upload_max_filesize is set to %s (%s byte)" msgstr "Taille maximale en octets des images téléversées. La valeur par défaut est 0, ce qui signifie aucune limite. Vous pouvez indiquer k, m, ou g après la valeur désirée pour Kio, Mio, Gio respectivement.\n\t\t\t\t\t\t\t\t\t\t\t\t\tLa valeur de upload_max_filesize dans votre PHP.ini doit être définie au minimum à la valeur désirée.\n\t\t\t\t\t\t\t\t\t\t\t\t\tActuellement upload_max_filesize est définie à %s (%s octet)" -#: src/Module/Admin/Site.php:489 +#: src/Module/Admin/Site.php:491 msgid "Maximum image length" msgstr "Longueur maximale des images" -#: src/Module/Admin/Site.php:489 +#: src/Module/Admin/Site.php:491 msgid "" "Maximum length in pixels of the longest side of uploaded images. Default is " "-1, which means no limits." msgstr "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:490 +#: src/Module/Admin/Site.php:492 msgid "JPEG image quality" msgstr "Qualité JPEG des images" -#: src/Module/Admin/Site.php:490 +#: src/Module/Admin/Site.php:492 msgid "" "Uploaded JPEGS will be saved at this quality setting [0-100]. Default is " "100, which is full quality." msgstr "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:492 +#: src/Module/Admin/Site.php:494 msgid "Register policy" msgstr "Politique d'inscription" -#: src/Module/Admin/Site.php:493 +#: src/Module/Admin/Site.php:495 msgid "Maximum Users" msgstr "Utilisateurs maximum" -#: src/Module/Admin/Site.php:493 +#: src/Module/Admin/Site.php:495 msgid "" "If defined, the register policy is automatically closed when the given " "number of users is reached and reopens the registry when the number drops " @@ -4688,157 +4688,157 @@ 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:494 +#: src/Module/Admin/Site.php:496 msgid "Maximum Daily Registrations" msgstr "Inscriptions maximum par jour" -#: src/Module/Admin/Site.php:494 +#: src/Module/Admin/Site.php:496 msgid "" "If registration is permitted above, this sets the maximum number of new user" " registrations to accept per day. If register is set to closed, this " "setting has no effect." msgstr "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:495 +#: src/Module/Admin/Site.php:497 msgid "Register text" msgstr "Texte d'inscription" -#: src/Module/Admin/Site.php:495 +#: src/Module/Admin/Site.php:497 msgid "" "Will be displayed prominently on the registration page. You can use BBCode " "here." msgstr "Ce texte est affiché sur la page d'inscription. Les BBCodes sont autorisés." -#: src/Module/Admin/Site.php:496 +#: src/Module/Admin/Site.php:498 msgid "Forbidden Nicknames" msgstr "Identifiants réservés" -#: src/Module/Admin/Site.php:496 +#: src/Module/Admin/Site.php:498 msgid "" "Comma separated list of nicknames that are forbidden from registration. " "Preset is a list of role names according RFC 2142." msgstr "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:497 +#: src/Module/Admin/Site.php:499 msgid "Accounts abandoned after x days" msgstr "Les comptes sont abandonnés après x jours" -#: src/Module/Admin/Site.php:497 +#: src/Module/Admin/Site.php:499 msgid "" "Will not waste system resources polling external sites for abandonded " "accounts. Enter 0 for no time limit." msgstr "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:498 +#: src/Module/Admin/Site.php:500 msgid "Allowed friend domains" msgstr "Domaines autorisés" -#: src/Module/Admin/Site.php:498 +#: src/Module/Admin/Site.php:500 msgid "" "Comma separated list of domains which are allowed to establish friendships " "with this site. Wildcards are accepted. Empty to allow any domains" msgstr "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:499 +#: src/Module/Admin/Site.php:501 msgid "Allowed email domains" msgstr "Domaines courriel autorisés" -#: src/Module/Admin/Site.php:499 +#: src/Module/Admin/Site.php:501 msgid "" "Comma separated list of domains which are allowed in email addresses for " "registrations to this site. Wildcards are accepted. Empty to allow any " "domains" msgstr "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:500 +#: src/Module/Admin/Site.php:502 msgid "No OEmbed rich content" msgstr "Désactiver le texte riche avec OEmbed" -#: src/Module/Admin/Site.php:500 +#: src/Module/Admin/Site.php:502 msgid "" "Don't show the rich content (e.g. embedded PDF), except from the domains " "listed below." msgstr "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:501 +#: src/Module/Admin/Site.php:503 msgid "Trusted third-party domains" msgstr "Domaines tierce-partie de confiance" -#: src/Module/Admin/Site.php:501 +#: src/Module/Admin/Site.php:503 msgid "" "Comma separated list of domains from which content is allowed to be embedded" " in posts like with OEmbed. All sub-domains of the listed domains are " "allowed as well." msgstr "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:502 +#: src/Module/Admin/Site.php:504 msgid "Block public" msgstr "Interdire la publication globale" -#: src/Module/Admin/Site.php:502 +#: src/Module/Admin/Site.php:504 msgid "" "Check to block public access to all otherwise public personal pages on this " "site unless you are currently logged in." msgstr "Cocher pour bloquer les accès anonymes (non-connectés) à tout sauf aux pages personnelles publiques." -#: src/Module/Admin/Site.php:503 +#: src/Module/Admin/Site.php:505 msgid "Force publish" msgstr "Forcer la publication globale" -#: src/Module/Admin/Site.php:503 +#: src/Module/Admin/Site.php:505 msgid "" "Check to force all profiles on this site to be listed in the site directory." msgstr "Cocher pour publier obligatoirement tous les profils locaux dans l'annuaire du site." -#: src/Module/Admin/Site.php:503 +#: src/Module/Admin/Site.php:505 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:504 +#: src/Module/Admin/Site.php:506 msgid "Global directory URL" msgstr "URL de l'annuaire global" -#: src/Module/Admin/Site.php:504 +#: src/Module/Admin/Site.php:506 msgid "" "URL to the global directory. If this is not set, the global directory is " "completely unavailable to the application." msgstr "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:505 +#: src/Module/Admin/Site.php:507 msgid "Private posts by default for new users" msgstr "Publications privées par défaut pour les nouveaux utilisateurs" -#: src/Module/Admin/Site.php:505 +#: src/Module/Admin/Site.php:507 msgid "" "Set default post permissions for all new members to the default privacy " "circle rather than public." msgstr "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:506 +#: src/Module/Admin/Site.php:508 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:506 +#: src/Module/Admin/Site.php:508 msgid "" "Don't include the content of a post/comment/private message/etc. in the " "email notifications that are sent out from this site, as a privacy measure." msgstr "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:507 +#: src/Module/Admin/Site.php:509 msgid "Disallow public access to addons listed in the apps menu." msgstr "Interdire l’accès public pour les greffons listées dans le menu apps." -#: src/Module/Admin/Site.php:507 +#: src/Module/Admin/Site.php:509 msgid "" "Checking this box will restrict addons listed in the apps menu to members " "only." msgstr "Cocher cette case restreint la liste des greffons dans le menu des applications seulement aux membres." -#: src/Module/Admin/Site.php:508 +#: src/Module/Admin/Site.php:510 msgid "Don't embed private images in posts" msgstr "Ne pas miniaturiser les images privées dans les publications" -#: src/Module/Admin/Site.php:508 +#: src/Module/Admin/Site.php:510 msgid "" "Don't replace locally-hosted private photos in posts with an embedded copy " "of the image. This means that contacts who receive posts containing private " @@ -4846,11 +4846,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:509 +#: src/Module/Admin/Site.php:511 msgid "Explicit Content" msgstr "Contenu adulte" -#: src/Module/Admin/Site.php:509 +#: src/Module/Admin/Site.php:511 msgid "" "Set this to announce that your node is used mostly for explicit content that" " might not be suited for minors. This information will be published in the " @@ -4859,319 +4859,329 @@ 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:510 +#: src/Module/Admin/Site.php:512 msgid "Proxify external content" msgstr "Faire transiter le contenu externe par un proxy" -#: src/Module/Admin/Site.php:510 +#: src/Module/Admin/Site.php:512 msgid "" "Route external content via the proxy functionality. This is used for example" " for some OEmbed accesses and in some other rare cases." msgstr "Dirige le contenu externe par la fonctionnalité proxy. Cela est utilisé par exemple pour certains accès OEmbed et dans certains autres cas rares." -#: src/Module/Admin/Site.php:511 +#: src/Module/Admin/Site.php:513 msgid "Only local search" msgstr "Recherche locale uniquement" -#: src/Module/Admin/Site.php:511 +#: src/Module/Admin/Site.php:513 msgid "" "Blocks search for users who are not logged in to prevent crawlers from " "blocking your system." msgstr "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:512 +#: src/Module/Admin/Site.php:514 msgid "Blocked tags for trending tags" msgstr "Tags bloqués pour les tendances" -#: src/Module/Admin/Site.php:512 +#: src/Module/Admin/Site.php:514 msgid "" "Comma separated list of hashtags that shouldn't be displayed in the trending" " tags." msgstr "Liste de tags, séparés par des virgules, qui ne seront pas affichés dans les tendances." -#: src/Module/Admin/Site.php:513 +#: src/Module/Admin/Site.php:515 msgid "Cache contact avatars" msgstr "Mettre en cache les avatars des contacts" -#: src/Module/Admin/Site.php:513 +#: src/Module/Admin/Site.php:515 msgid "" "Locally store the avatar pictures of the contacts. This uses a lot of " "storage space but it increases the performance." msgstr "Stocker localement les images d'avatar des contacts. Cela utilise beaucoup d'espace disque mais améliore les performances." -#: src/Module/Admin/Site.php:514 +#: src/Module/Admin/Site.php:516 msgid "Allow Users to set remote_self" msgstr "Autoriser les utilisateurs à définir remote_self" -#: src/Module/Admin/Site.php:514 +#: src/Module/Admin/Site.php:516 msgid "" "With checking this, every user is allowed to mark every contact as a " "remote_self in the repair contact dialog. Setting this flag on a contact " "causes mirroring every posting of that contact in the users stream." msgstr "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:515 +#: src/Module/Admin/Site.php:517 msgid "Adjust the feed poll frequency" msgstr "Régler la fréquence d'interrogation" -#: src/Module/Admin/Site.php:515 +#: src/Module/Admin/Site.php:517 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:516 +#: src/Module/Admin/Site.php:518 msgid "Minimum poll interval" -msgstr "" +msgstr "Intervalle minimum de requêtage" -#: src/Module/Admin/Site.php:516 +#: src/Module/Admin/Site.php:518 msgid "" "Minimal distance in minutes between two polls for mail and feed contacts. " "Reasonable values are between 1 and 59." -msgstr "" +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:517 +#: src/Module/Admin/Site.php:519 msgid "Enable multiple registrations" msgstr "Autoriser les comptes multiples" -#: src/Module/Admin/Site.php:517 +#: src/Module/Admin/Site.php:519 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:518 +#: src/Module/Admin/Site.php:520 msgid "Enable OpenID" msgstr "Activer OpenID" -#: src/Module/Admin/Site.php:518 +#: src/Module/Admin/Site.php:520 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:519 +#: src/Module/Admin/Site.php:521 msgid "Enable full name check" msgstr "Activer la vérification du nom complet" -#: src/Module/Admin/Site.php:519 +#: src/Module/Admin/Site.php:521 msgid "" "Prevents users from registering with a display name with fewer than two " "parts separated by spaces." msgstr "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:520 +#: src/Module/Admin/Site.php:522 msgid "Email administrators on new registration" msgstr "Envoyer un courriel aux administrateurs lors d'une nouvelle inscription" -#: src/Module/Admin/Site.php:520 +#: src/Module/Admin/Site.php:522 msgid "" "If enabled and the system is set to an open registration, an email for each " "new registration is sent to the administrators." msgstr "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:521 +#: src/Module/Admin/Site.php:523 msgid "Community pages for visitors" msgstr "Affichage de la page communauté pour les utilisateurs anonymes" -#: src/Module/Admin/Site.php:521 +#: src/Module/Admin/Site.php:523 msgid "" "Which community pages should be available for visitors. Local users always " "see both pages." msgstr "Quelles pages communauté sont disponibles pour les utilisateurs anonymes." -#: src/Module/Admin/Site.php:522 +#: src/Module/Admin/Site.php:524 msgid "Posts per user on community page" msgstr "Nombre de publications par utilisateur sur la page de la communauté" -#: src/Module/Admin/Site.php:522 -msgid "" -"The maximum number of posts per user on the community page. (Not valid for " -"\"Global Community\")" -msgstr "Le nombre maximum de publications par auteur par page dans le flux communautaire local." - #: src/Module/Admin/Site.php:524 +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:525 +msgid "Posts per server on community page" +msgstr "Publications par serveur sur la page Communauté" + +#: src/Module/Admin/Site.php:525 +msgid "" +"The maximum number of posts per server on the global community page. This is" +" useful, when posts from a single server flood the global community page." +msgstr "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:527 msgid "Enable Mail support" msgstr "Activer la prise en charge e-mail" -#: src/Module/Admin/Site.php:524 +#: src/Module/Admin/Site.php:527 msgid "" "Enable built-in mail support to poll IMAP folders and to reply via mail." msgstr "Permet de se connecter à un compte IMAP et de répondre directement aux e-mails via Friendica." -#: src/Module/Admin/Site.php:525 +#: src/Module/Admin/Site.php:528 msgid "" "Mail support can't be enabled because the PHP IMAP module is not installed." msgstr "La prise en charge e-mail requiert le module PHP IMAP pour être activée." -#: src/Module/Admin/Site.php:526 +#: src/Module/Admin/Site.php:529 msgid "Enable OStatus support" msgstr "Activer la prise en charge d'OStatus" -#: src/Module/Admin/Site.php:526 +#: src/Module/Admin/Site.php:529 msgid "" "Enable built-in OStatus (StatusNet, GNU Social etc.) compatibility. All " "communications in OStatus are public." msgstr "Permet la communication avec des comptes distants via OStatus (StatusNet, GNU Social, etc...). Toutes les publications OStatus sont publiques." -#: src/Module/Admin/Site.php:528 +#: src/Module/Admin/Site.php:531 msgid "" "Diaspora support can't be enabled because Friendica was installed into a sub" " directory." msgstr "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:529 +#: src/Module/Admin/Site.php:532 msgid "Enable Diaspora support" msgstr "Activer le support de Diaspora" -#: src/Module/Admin/Site.php:529 +#: src/Module/Admin/Site.php:532 msgid "" "Enable built-in Diaspora network compatibility for communicating with " "diaspora servers." msgstr "Permet la communication avec des comptes distants via Diaspora. Ce protocole est principalement utilisé par la plate-forme Diaspora." -#: src/Module/Admin/Site.php:530 +#: src/Module/Admin/Site.php:533 msgid "Verify SSL" msgstr "Vérifier SSL" -#: src/Module/Admin/Site.php:530 +#: src/Module/Admin/Site.php:533 msgid "" "If you wish, you can turn on strict certificate checking. This will mean you" " cannot connect (at all) to self-signed SSL sites." msgstr "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:531 +#: src/Module/Admin/Site.php:534 msgid "Proxy user" msgstr "Utilisateur du proxy" -#: src/Module/Admin/Site.php:531 +#: src/Module/Admin/Site.php:534 msgid "User name for the proxy server." msgstr "Nom d'utilisateur pour le serveur proxy" -#: src/Module/Admin/Site.php:532 +#: src/Module/Admin/Site.php:535 msgid "Proxy URL" msgstr "URL du proxy" -#: src/Module/Admin/Site.php:532 +#: src/Module/Admin/Site.php:535 msgid "" "If you want to use a proxy server that Friendica should use to connect to " "the network, put the URL of the proxy here." msgstr "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:533 +#: src/Module/Admin/Site.php:536 msgid "Network timeout" msgstr "Dépassement du délai d'attente du réseau" -#: src/Module/Admin/Site.php:533 +#: src/Module/Admin/Site.php:536 msgid "Value is in seconds. Set to 0 for unlimited (not recommended)." msgstr "Valeur en secondes. Mettre à 0 pour 'illimité' (pas recommandé)." -#: src/Module/Admin/Site.php:534 +#: src/Module/Admin/Site.php:537 msgid "Maximum Load Average" msgstr "Plafond de la charge moyenne" -#: src/Module/Admin/Site.php:534 +#: src/Module/Admin/Site.php:537 #, php-format msgid "" "Maximum system load before delivery and poll processes are deferred - " "default %d." msgstr "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:535 +#: src/Module/Admin/Site.php:538 msgid "Minimal Memory" msgstr "Mémoire minimum" -#: src/Module/Admin/Site.php:535 +#: src/Module/Admin/Site.php:538 msgid "" "Minimal free memory in MB for the worker. Needs access to /proc/meminfo - " "default 0 (deactivated)." msgstr "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:536 +#: src/Module/Admin/Site.php:539 msgid "Periodically optimize tables" msgstr "Optimizer les tables régulièrement" -#: src/Module/Admin/Site.php:536 +#: src/Module/Admin/Site.php:539 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:538 +#: src/Module/Admin/Site.php:541 msgid "Discover followers/followings from contacts" msgstr "Découvrir la liste de contacts des contacts" -#: src/Module/Admin/Site.php:538 +#: src/Module/Admin/Site.php:541 msgid "" "If enabled, contacts are checked for their followers and following contacts." msgstr "Si activé, ce serveur collecte la liste d'abonnés et d'abonnements des contacts suivants." -#: src/Module/Admin/Site.php:539 +#: src/Module/Admin/Site.php:542 msgid "None - deactivated" msgstr "Aucun - désactivé" -#: src/Module/Admin/Site.php:540 +#: src/Module/Admin/Site.php:543 msgid "" "Local contacts - contacts of our local contacts are discovered for their " "followers/followings." msgstr "Contacts locaux : Les contacts des utilisateurs de ce serveur" -#: src/Module/Admin/Site.php:541 +#: src/Module/Admin/Site.php:544 msgid "" "Interactors - contacts of our local contacts and contacts who interacted on " "locally visible postings are discovered for their followers/followings." msgstr "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:543 +#: src/Module/Admin/Site.php:546 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:543 +#: src/Module/Admin/Site.php:546 msgid "" "If enabled, the system will only look for changes in contacts and servers " "that engaged on this system by either being in a contact list of a user or " "when posts or comments exists from the contact on this system." msgstr "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:544 +#: src/Module/Admin/Site.php:547 msgid "Synchronize the contacts with the directory server" msgstr "Synchroniser les contacts avec l'annuaire distant" -#: src/Module/Admin/Site.php:544 +#: src/Module/Admin/Site.php:547 msgid "" "if enabled, the system will check periodically for new contacts on the " "defined directory server." msgstr "Active l'ajout de nouveaux contacts depuis l'annuaire distant choisi." -#: src/Module/Admin/Site.php:546 +#: src/Module/Admin/Site.php:549 msgid "Discover contacts from other servers" msgstr "Découvrir des contacts des autres serveurs" -#: src/Module/Admin/Site.php:546 +#: src/Module/Admin/Site.php:549 msgid "" "Periodically query other servers for contacts and servers that they know of." " The system queries Friendica, Mastodon and Hubzilla servers. Keep it " "deactivated on small machines to decrease the database size and load." msgstr "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:547 +#: src/Module/Admin/Site.php:550 msgid "Days between requery" msgstr "Nombre de jours entre les requêtes" -#: src/Module/Admin/Site.php:547 +#: src/Module/Admin/Site.php:550 msgid "" "Number of days after which a server is requeried for their contacts and " "servers it knows of. This is only used when the discovery is activated." msgstr "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:548 +#: src/Module/Admin/Site.php:551 msgid "Search the local directory" msgstr "Chercher dans le répertoire local" -#: src/Module/Admin/Site.php:548 +#: src/Module/Admin/Site.php:551 msgid "" "Search the local directory instead of the global directory. When searching " "locally, every search will be executed on the global directory in the " "background. This improves the search results when the search is repeated." msgstr "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:550 +#: src/Module/Admin/Site.php:553 msgid "Publish server information" msgstr "Publier les informations du serveur" -#: src/Module/Admin/Site.php:550 +#: src/Module/Admin/Site.php:553 msgid "" "If enabled, general server and usage data will be published. The data " "contains the name and version of the server, number of users with public " @@ -5179,50 +5189,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:552 +#: src/Module/Admin/Site.php:555 msgid "Check upstream version" msgstr "Mises à jour" -#: src/Module/Admin/Site.php:552 +#: src/Module/Admin/Site.php:555 msgid "" "Enables checking for new Friendica versions at github. If there is a new " "version, you will be informed in the admin panel overview." msgstr "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:553 +#: src/Module/Admin/Site.php:556 msgid "Suppress Tags" msgstr "Masquer les tags" -#: src/Module/Admin/Site.php:553 +#: src/Module/Admin/Site.php:556 msgid "Suppress showing a list of hashtags at the end of the posting." msgstr "Ne pas afficher la liste des tags à la fin d’un message." -#: src/Module/Admin/Site.php:554 +#: src/Module/Admin/Site.php:557 msgid "Clean database" msgstr "Nettoyer la base de données" -#: src/Module/Admin/Site.php:554 +#: src/Module/Admin/Site.php:557 msgid "" "Remove old remote items, orphaned database records and old content from some" " other helper tables." msgstr "Supprime les conversations distantes anciennes, les enregistrements orphelins et le contenu obsolète de certaines tables de débogage." -#: src/Module/Admin/Site.php:555 +#: src/Module/Admin/Site.php:558 msgid "Lifespan of remote items" msgstr "Durée de vie des conversations distantes" -#: src/Module/Admin/Site.php:555 +#: src/Module/Admin/Site.php:558 msgid "" "When the database cleanup is enabled, this defines the days after which " "remote items will be deleted. Own items, and marked or filed items are " "always kept. 0 disables this behaviour." msgstr "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:556 +#: src/Module/Admin/Site.php:559 msgid "Lifespan of unclaimed items" msgstr "Durée de vie des conversations relayées" -#: src/Module/Admin/Site.php:556 +#: src/Module/Admin/Site.php:559 msgid "" "When the database cleanup is enabled, this defines the days after which " "unclaimed remote items (mostly content from the relay) will be deleted. " @@ -5230,165 +5240,165 @@ 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:557 +#: src/Module/Admin/Site.php:560 msgid "Lifespan of raw conversation data" msgstr "Durée de vie des méta-données de conversation" -#: src/Module/Admin/Site.php:557 +#: src/Module/Admin/Site.php:560 msgid "" "The conversation data is used for ActivityPub and OStatus, as well as for " "debug purposes. It should be safe to remove it after 14 days, default is 90 " "days." msgstr "Cette valeur représente le délai en jours après lequel les méta-données de conversations sont supprimées. Ces méta-données sont utilisées par les protocoles ActivityPub et OStatus, et pour le débogage. Il est prudent de conserver ces meta-données pendant au moins 14 jours. La valeur par défaut est 90 jours." -#: src/Module/Admin/Site.php:558 +#: src/Module/Admin/Site.php:561 msgid "Maximum numbers of comments per post" msgstr "Nombre maximum de commentaires par publication" -#: src/Module/Admin/Site.php:558 +#: src/Module/Admin/Site.php:561 msgid "How much comments should be shown for each post? Default value is 100." msgstr "Combien de commentaires doivent être affichés pour chaque publication? Valeur par défaut: 100." -#: src/Module/Admin/Site.php:559 +#: src/Module/Admin/Site.php:562 msgid "Maximum numbers of comments per post on the display page" msgstr "Nombre maximum de commentaires par conversation dans leur page dédié (/display)" -#: src/Module/Admin/Site.php:559 +#: src/Module/Admin/Site.php:562 msgid "" "How many comments should be shown on the single view for each post? Default " "value is 1000." msgstr "Valeur par défaut : 1 000." -#: src/Module/Admin/Site.php:560 +#: src/Module/Admin/Site.php:563 msgid "Items per page" msgstr "Éléments par page" -#: src/Module/Admin/Site.php:560 +#: src/Module/Admin/Site.php:563 msgid "" "Number of items per page in stream pages (network, community, " "profile/contact statuses, search)." msgstr "Nombre d'éléments par page (concerne les pages Réseau, Communauté, Statuts de profil/contact, Recherche)" -#: src/Module/Admin/Site.php:561 +#: src/Module/Admin/Site.php:564 msgid "Items per page for mobile devices" msgstr "Éléments par page pour les appareils mobiles" -#: src/Module/Admin/Site.php:561 +#: src/Module/Admin/Site.php:564 msgid "" "Number of items per page in stream pages (network, community, " "profile/contact statuses, search) for mobile devices." msgstr "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:562 +#: src/Module/Admin/Site.php:565 msgid "Temp path" msgstr "Chemin des fichiers temporaires" -#: src/Module/Admin/Site.php:562 +#: src/Module/Admin/Site.php:565 msgid "" "If you have a restricted system where the webserver can't access the system " "temp path, enter another path here." msgstr "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:563 +#: src/Module/Admin/Site.php:566 msgid "Only search in tags" msgstr "Rechercher seulement dans les tags" -#: src/Module/Admin/Site.php:563 +#: src/Module/Admin/Site.php:566 msgid "On large systems the text search can slow down the system extremely." msgstr "La recherche textuelle peut ralentir considérablement les systèmes de grande taille." -#: src/Module/Admin/Site.php:564 +#: src/Module/Admin/Site.php:567 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:564 +#: src/Module/Admin/Site.php:567 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:565 +#: src/Module/Admin/Site.php:568 msgid "Process \"view\" activities" msgstr "Traiter les activités \"view\"" -#: src/Module/Admin/Site.php:565 +#: src/Module/Admin/Site.php:568 msgid "" "\"view\" activities are mostly geberated by Peertube systems. Per default " "they are not processed for performance reasons. Only activate this option on" " performant system." msgstr "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:566 +#: src/Module/Admin/Site.php:569 msgid "Days, after which a contact is archived" msgstr "Nombre de jours après lesquels un contact est archivé" -#: src/Module/Admin/Site.php:566 +#: src/Module/Admin/Site.php:569 msgid "" "Number of days that we try to deliver content or to update the contact data " "before we archive a contact." msgstr "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:568 +#: src/Module/Admin/Site.php:571 msgid "Maximum number of parallel workers" msgstr "Nombre maximum de tâche de fond simultanés" -#: src/Module/Admin/Site.php:568 +#: src/Module/Admin/Site.php:571 #, php-format msgid "" "On shared hosters set this to %d. On larger systems, values of %d are great." " Default value is %d." msgstr "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:569 +#: src/Module/Admin/Site.php:572 msgid "Maximum load for workers" msgstr "Charge maximum pour les tâches de fond" -#: src/Module/Admin/Site.php:569 +#: src/Module/Admin/Site.php:572 msgid "Maximum load that causes a cooldown before each worker function call." msgstr "Génère un délai d'attente si une tache de fond atteint la charge maximale. " -#: src/Module/Admin/Site.php:570 +#: src/Module/Admin/Site.php:573 msgid "Enable fastlane" msgstr "Activer la file prioritaire" -#: src/Module/Admin/Site.php:570 +#: src/Module/Admin/Site.php:573 msgid "" "When enabed, the fastlane mechanism starts an additional worker if processes" " with higher priority are blocked by processes of lower priority." msgstr "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:571 +#: src/Module/Admin/Site.php:574 msgid "Decoupled receiver" msgstr "Récepteur découplé" -#: src/Module/Admin/Site.php:571 +#: src/Module/Admin/Site.php:574 msgid "" "Decouple incoming ActivityPub posts by processing them in the background via" " a worker process. Only enable this on fast systems." msgstr "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:572 +#: src/Module/Admin/Site.php:575 msgid "Cron interval" msgstr "Intervalle du cron" -#: src/Module/Admin/Site.php:572 +#: src/Module/Admin/Site.php:575 msgid "Minimal period in minutes between two calls of the \"Cron\" worker job." msgstr "Durée minimale entre deux appels de la tâche \"Cron\"" -#: src/Module/Admin/Site.php:573 +#: src/Module/Admin/Site.php:576 msgid "Worker defer limit" msgstr "Limite de report d'une tâche de fond" -#: src/Module/Admin/Site.php:573 +#: src/Module/Admin/Site.php:576 msgid "" "Per default the systems tries delivering for 15 times before dropping it." msgstr "Par défaut, le système tente d'effectuer un livraison 15 fois avant d'abandonner." -#: src/Module/Admin/Site.php:574 +#: src/Module/Admin/Site.php:577 msgid "Worker fetch limit" msgstr "Limite de récupération des tâches" -#: src/Module/Admin/Site.php:574 +#: src/Module/Admin/Site.php:577 msgid "" "Number of worker tasks that are fetched in a single query. Higher values " "should increase the performance, too high values will mostly likely decrease" @@ -5396,142 +5406,142 @@ 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:576 +#: src/Module/Admin/Site.php:579 msgid "Direct relay transfer" msgstr "Relai direct" -#: src/Module/Admin/Site.php:576 +#: src/Module/Admin/Site.php:579 msgid "" "Enables the direct transfer to other servers without using the relay servers" msgstr "Soumet les conversations publiques aux serveurs distants sans passer par le serveur relai." -#: src/Module/Admin/Site.php:577 +#: src/Module/Admin/Site.php:580 msgid "Relay scope" msgstr "Filtre du relai" -#: src/Module/Admin/Site.php:577 +#: src/Module/Admin/Site.php:580 msgid "" "Can be \"all\" or \"tags\". \"all\" means that every public post should be " "received. \"tags\" means that only posts with selected tags should be " "received." msgstr "\"Tous\" signifie que toutes les conversations publiques en provenance du relai sont acceptées. \"Tags\" signifie que seules les conversations comportant les tags suivants sont acceptées." -#: src/Module/Admin/Site.php:577 src/Module/Contact/Profile.php:309 +#: src/Module/Admin/Site.php:580 src/Module/Contact/Profile.php:309 #: src/Module/Settings/TwoFactor/Index.php:146 msgid "Disabled" msgstr "Désactivé" -#: src/Module/Admin/Site.php:577 +#: src/Module/Admin/Site.php:580 msgid "all" msgstr "Tous" -#: src/Module/Admin/Site.php:577 +#: src/Module/Admin/Site.php:580 msgid "tags" msgstr "tags" -#: src/Module/Admin/Site.php:578 +#: src/Module/Admin/Site.php:581 msgid "Server tags" msgstr "Tags de filtre du relai" -#: src/Module/Admin/Site.php:578 +#: src/Module/Admin/Site.php:581 msgid "Comma separated list of tags for the \"tags\" subscription." msgstr "Liste séparée par des virgules de tags exclusivement autorisés en provenance des relais." -#: src/Module/Admin/Site.php:579 +#: src/Module/Admin/Site.php:582 msgid "Deny Server tags" msgstr "Tags refusés" -#: src/Module/Admin/Site.php:579 +#: src/Module/Admin/Site.php:582 msgid "Comma separated list of tags that are rejected." msgstr "Liste séparée par des virgules de tags refusés en provenance des relais." -#: src/Module/Admin/Site.php:580 +#: src/Module/Admin/Site.php:583 msgid "Allow user tags" msgstr "Inclure les tags des utilisateurs" -#: src/Module/Admin/Site.php:580 +#: src/Module/Admin/Site.php:583 msgid "" "If enabled, the tags from the saved searches will used for the \"tags\" " "subscription in addition to the \"relay_server_tags\"." msgstr "Ajoute les tags des recherches enregistrées des utilisateurs aux tags exclusivement autorisés en provenance des relais." -#: src/Module/Admin/Site.php:581 +#: src/Module/Admin/Site.php:584 msgid "Deny undetected languages" msgstr "Refuser les langues non détectées" -#: src/Module/Admin/Site.php:581 +#: src/Module/Admin/Site.php:584 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:582 +#: src/Module/Admin/Site.php:585 msgid "Language Quality" msgstr "Qualité de la langue" -#: src/Module/Admin/Site.php:582 +#: src/Module/Admin/Site.php:585 msgid "The minimum language quality that is required to accept the post." msgstr "La qualité de la langue minimale requise pour accepter la publication." -#: src/Module/Admin/Site.php:583 +#: src/Module/Admin/Site.php:586 msgid "Number of languages for the language detection" msgstr "Nombre de langues pour la détection la de langue" -#: src/Module/Admin/Site.php:583 +#: src/Module/Admin/Site.php:586 msgid "" "The system detects a list of languages per post. Only if the desired " "languages are in the list, the message will be accepted. The higher the " "number, the more posts will be falsely detected." msgstr "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:585 +#: src/Module/Admin/Site.php:588 msgid "Maximum age of channel" msgstr "Age maximal d'une chaîne" -#: src/Module/Admin/Site.php:585 +#: src/Module/Admin/Site.php:588 msgid "" "This defines the maximum age in hours of items that should be displayed in " "channels. This affects the channel performance." msgstr "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:586 +#: src/Module/Admin/Site.php:589 msgid "Maximum number of channel posts" msgstr "Nombre maximum de publications sur une chaîne" -#: src/Module/Admin/Site.php:586 +#: src/Module/Admin/Site.php:589 msgid "" "For performance reasons, the channels use a dedicated table to store " "content. The higher the value the slower the channels." msgstr "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:587 +#: src/Module/Admin/Site.php:590 msgid "Interaction score days" msgstr "Intervalle pour le score d'interaction" -#: src/Module/Admin/Site.php:587 +#: src/Module/Admin/Site.php:590 msgid "Number of days that are used to calculate the interaction score." msgstr "Nombre de jours utilisés pour calculer le score d'interaction." -#: src/Module/Admin/Site.php:588 +#: src/Module/Admin/Site.php:591 msgid "Maximum number of posts per author" msgstr "Nombre maximum de publications par auteur" -#: src/Module/Admin/Site.php:588 +#: src/Module/Admin/Site.php:591 msgid "" "Maximum number of posts per page by author if the contact frequency is set " "to \"Display only few posts\". If there are more posts, then the post with " "the most interactions will be displayed." msgstr "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:589 +#: src/Module/Admin/Site.php:592 msgid "Sharer interaction days" msgstr "Intervalle d'interaction de partageurs" -#: src/Module/Admin/Site.php:589 +#: src/Module/Admin/Site.php:592 msgid "" "Number of days of the last interaction that are used to define which sharers" " are used for the \"sharers of sharers\" channel." msgstr "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:592 +#: src/Module/Admin/Site.php:595 msgid "Start Relocation" msgstr "Démarrer le déménagement" @@ -6157,7 +6167,7 @@ msgstr "Début de l'évènement :" #: src/Module/Moderation/Blocklist/Server/Index.php:116 #: src/Module/Moderation/Item/Delete.php:67 src/Module/Register.php:148 #: src/Module/Security/TwoFactor/Verify.php:101 -#: src/Module/Settings/Channels.php:131 src/Module/Settings/Channels.php:147 +#: src/Module/Settings/Channels.php:139 src/Module/Settings/Channels.php:156 #: src/Module/Settings/TwoFactor/Index.php:161 #: src/Module/Settings/TwoFactor/Verify.php:158 msgid "Required" @@ -6244,7 +6254,7 @@ msgstr "Cercle inconnu." #: src/Module/Contact/Advanced.php:70 src/Module/Contact/Advanced.php:109 #: src/Module/Contact/Contacts.php:71 src/Module/Contact/Conversations.php:84 #: src/Module/Contact/Conversations.php:89 -#: src/Module/Contact/Conversations.php:94 src/Module/Contact/Media.php:43 +#: src/Module/Contact/Conversations.php:94 src/Module/Contact/Media.php:61 #: src/Module/Contact/Posts.php:78 src/Module/Contact/Posts.php:83 #: src/Module/Contact/Posts.php:88 src/Module/Contact/Profile.php:154 #: src/Module/Contact/Profile.php:159 src/Module/Contact/Profile.php:164 @@ -7064,15 +7074,15 @@ msgstr "Erreur %d (%s) lors de la récupération du flux." msgid "Network feed not available." msgstr "Flux du réseau non disponible." -#: src/Module/Conversation/Timeline.php:166 +#: src/Module/Conversation/Timeline.php:168 msgid "Own Contacts" msgstr "Publications de vos propres contacts" -#: src/Module/Conversation/Timeline.php:170 +#: src/Module/Conversation/Timeline.php:172 msgid "Include" msgstr "Inclure" -#: src/Module/Conversation/Timeline.php:171 +#: src/Module/Conversation/Timeline.php:173 msgid "Hide" msgstr "Masquer" @@ -7419,7 +7429,7 @@ msgstr "Sur ce serveur, les serveurs suivants sont sur liste noire." #: src/Module/Friendica.php:102 #: src/Module/Moderation/Blocklist/Server/Index.php:87 #: src/Module/Moderation/Blocklist/Server/Index.php:111 -#: src/Module/Settings/Channels.php:165 +#: src/Module/Settings/Channels.php:174 msgid "Reason for the block" msgstr "Raison du blocage" @@ -8174,7 +8184,7 @@ 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:164 +#: src/Module/Settings/Channels.php:173 msgid "Blocked server domain pattern" msgstr "Filtre de domaine bloqué" @@ -10220,76 +10230,76 @@ msgstr "Paramètres d'extension" msgid "No Addon settings configured" msgstr "Aucuns paramètres d'Extension paramétré." -#: src/Module/Settings/Channels.php:131 src/Module/Settings/Channels.php:147 +#: src/Module/Settings/Channels.php:139 src/Module/Settings/Channels.php:156 #: src/Module/Settings/Display.php:338 msgid "Label" msgstr "Titre" -#: src/Module/Settings/Channels.php:132 src/Module/Settings/Channels.php:148 +#: src/Module/Settings/Channels.php:140 src/Module/Settings/Channels.php:157 #: src/Module/Settings/Display.php:339 #: src/Module/Settings/TwoFactor/AppSpecific.php:137 msgid "Description" msgstr "Description" -#: src/Module/Settings/Channels.php:133 src/Module/Settings/Channels.php:149 +#: src/Module/Settings/Channels.php:141 src/Module/Settings/Channels.php:158 msgid "Access Key" msgstr "Clé d'accès" -#: src/Module/Settings/Channels.php:134 src/Module/Settings/Channels.php:150 +#: src/Module/Settings/Channels.php:142 src/Module/Settings/Channels.php:159 msgid "Circle/Channel" msgstr "Cercle/Chaîne" -#: src/Module/Settings/Channels.php:135 src/Module/Settings/Channels.php:151 +#: src/Module/Settings/Channels.php:143 src/Module/Settings/Channels.php:160 msgid "Include Tags" msgstr "Inclure des tags" -#: src/Module/Settings/Channels.php:136 src/Module/Settings/Channels.php:152 +#: src/Module/Settings/Channels.php:144 src/Module/Settings/Channels.php:161 msgid "Exclude Tags" msgstr "Exclure des tags" -#: src/Module/Settings/Channels.php:137 src/Module/Settings/Channels.php:153 +#: src/Module/Settings/Channels.php:145 src/Module/Settings/Channels.php:162 msgid "Full Text Search" msgstr "Recherche de texte intégral" -#: src/Module/Settings/Channels.php:141 +#: src/Module/Settings/Channels.php:149 msgid "Delete channel" msgstr "Supprimer la chaîne" -#: src/Module/Settings/Channels.php:141 +#: src/Module/Settings/Channels.php:149 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:147 +#: src/Module/Settings/Channels.php:156 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:148 +#: src/Module/Settings/Channels.php:157 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:149 +#: src/Module/Settings/Channels.php:158 msgid "" "When you want to access this channel via an access key, you can define it " "here. Pay attention to not use an already used one." msgstr "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:150 +#: src/Module/Settings/Channels.php:159 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:151 +#: src/Module/Settings/Channels.php:160 msgid "" "Comma separated list of tags. A post will be used when it contains any of " "the listed tags." msgstr "Liste de tags séparés par des virgules. Une publication sera affichée si elle contient au moins un de ces tags." -#: src/Module/Settings/Channels.php:152 +#: src/Module/Settings/Channels.php:161 msgid "" "Comma separated list of tags. If a post contain any of these tags, then it " "will not be part of nthis channel." msgstr "Liste de tags séparés par des virgules. Si une publication contient un de ces tags, elle ne sera pas affichée sur cette chaîne." -#: src/Module/Settings/Channels.php:153 +#: src/Module/Settings/Channels.php:162 #, php-format msgid "" "Search terms for the body, supports the \"boolean mode\" operators from " @@ -10297,39 +10307,39 @@ 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:154 +#: src/Module/Settings/Channels.php:163 msgid "Check to display images in the channel." msgstr "Cochez pour afficher les images dans la chaîne." -#: src/Module/Settings/Channels.php:155 +#: src/Module/Settings/Channels.php:164 msgid "Check to display videos in the channel." msgstr "Cochez pour afficher la vidéo dans la chaîne." -#: src/Module/Settings/Channels.php:156 +#: src/Module/Settings/Channels.php:165 msgid "Check to display audio in the channel." msgstr "Cochez pour afficher l'audio dans la chaîne." -#: src/Module/Settings/Channels.php:159 +#: src/Module/Settings/Channels.php:168 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:160 +#: src/Module/Settings/Channels.php:169 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:161 +#: src/Module/Settings/Channels.php:170 msgid "Add" msgstr "Ajouter" -#: src/Module/Settings/Channels.php:163 +#: src/Module/Settings/Channels.php:172 msgid "Current Entries in the channel list" msgstr "Entrées actuelles dans la liste des chaînes" -#: src/Module/Settings/Channels.php:166 +#: src/Module/Settings/Channels.php:175 msgid "Delete entry from the channel list" msgstr "Supprimer l'entrée de la liste des chaînes" -#: src/Module/Settings/Channels.php:167 +#: src/Module/Settings/Channels.php:176 msgid "Delete entry from the channel list?" msgstr "Supprimer l'entrée de la liste des chaînes ?" @@ -12484,40 +12494,45 @@ msgstr "Vu par : %s" #: src/Object/Post.php:701 #, php-format +msgid "Read by: %s" +msgstr "Lu par : %s" + +#: src/Object/Post.php:706 +#, php-format msgid "Liked by: %s" msgstr "Aimé par : %s" -#: src/Object/Post.php:706 +#: src/Object/Post.php:711 #, php-format msgid "Disliked by: %s" msgstr "Pas aimé par : %s" -#: src/Object/Post.php:711 +#: src/Object/Post.php:716 #, php-format msgid "Attended by: %s" msgstr "Y assisteront : %s" -#: src/Object/Post.php:716 +#: src/Object/Post.php:721 #, php-format msgid "Maybe attended by: %s" msgstr "Y assisteront peut-être : %s" -#: src/Object/Post.php:721 +#: src/Object/Post.php:726 #, php-format msgid "Not attended by: %s" msgstr "N'y assisteront pas : %s" -#: src/Object/Post.php:726 +#: src/Object/Post.php:731 #, php-format msgid "Commented by: %s" msgstr "Commenté par : %s" -#: src/Object/Post.php:731 +#: src/Object/Post.php:736 #, php-format msgid "Reacted with %s by: %s" msgstr "La réaction %s a été faite par : %s" -#: src/Object/Post.php:754 +#: src/Object/Post.php:759 #, php-format msgid "Quote shared by: %s" msgstr "Cité et repartagé par : %s" diff --git a/view/lang/fr/strings.php b/view/lang/fr/strings.php index 45c34d76e8..f173c7ef25 100644 --- a/view/lang/fr/strings.php +++ b/view/lang/fr/strings.php @@ -1346,6 +1346,8 @@ $a->strings['Allow Users to set remote_self'] = 'Autoriser les utilisateurs à d $a->strings['With checking this, every user is allowed to mark every contact as a remote_self in the repair contact dialog. Setting this flag on a contact causes mirroring every posting of that contact in the users stream.'] = 'Cocher cette case, permet à chaque utilisateur de marquer chaque contact comme un remote_self dans la boîte de dialogue de réparation des contacts. Activer cette fonction à un contact engendre la réplique de toutes les publications d\'un contact dans le flux d\'activités des utilisateurs.'; $a->strings['Adjust the feed poll frequency'] = 'Régler la fréquence d\'interrogation'; $a->strings['Automatically detect and set the best feed poll frequency.'] = 'Détecte automatiquement et défini la meilleure fréquence d\'interrogation.'; +$a->strings['Minimum poll interval'] = 'Intervalle minimum de requêtage'; +$a->strings['Minimal distance in minutes between two polls for mail and feed contacts. Reasonable values are between 1 and 59.'] = 'Temps minimum entre deux requêtages en minutes pour les courriels et les contacts. Les valeurs raisonnables sont entre 1 et 59.'; $a->strings['Enable multiple registrations'] = 'Autoriser les comptes multiples'; $a->strings['Enable users to register additional accounts for use as pages.'] = 'Permet aux utilisateurs d\'enregistrer des comptes supplémentaires pour être utilisés comme pages.'; $a->strings['Enable OpenID'] = 'Activer OpenID'; @@ -1357,7 +1359,9 @@ $a->strings['If enabled and the system is set to an open registration, an email $a->strings['Community pages for visitors'] = 'Affichage de la page communauté pour les utilisateurs anonymes'; $a->strings['Which community pages should be available for visitors. Local users always see both pages.'] = 'Quelles pages communauté sont disponibles pour les utilisateurs anonymes.'; $a->strings['Posts per user on community page'] = 'Nombre de publications par utilisateur sur la page de la communauté'; -$a->strings['The maximum number of posts per user on the community page. (Not valid for "Global Community")'] = 'Le nombre maximum de publications par auteur par page dans le flux communautaire local.'; +$a->strings['The maximum number of posts per user on the local community page. This is useful, when a single user floods the local community page.'] = 'Nombre maximum de publications par utilisateur sur la page de communauté locale. Utile lorsqu\'un seul utilisateur inonde la page de communauté locale.'; +$a->strings['Posts per server on community page'] = 'Publications par serveur sur la page Communauté'; +$a->strings['The maximum number of posts per server on the global community page. This is useful, when posts from a single server flood the global community page.'] = 'Nombre maximum de publications par serveur sur la page de communauté globale. Utile lorsque les publications d\'un seul serveur inonde la page de communauté globale.'; $a->strings['Enable Mail support'] = 'Activer la prise en charge e-mail'; $a->strings['Enable built-in mail support to poll IMAP folders and to reply via mail.'] = 'Permet de se connecter à un compte IMAP et de répondre directement aux e-mails via Friendica.'; $a->strings['Mail support can\'t be enabled because the PHP IMAP module is not installed.'] = 'La prise en charge e-mail requiert le module PHP IMAP pour être activée.'; @@ -3097,6 +3101,7 @@ $a->strings['Show more'] = 'Montrer plus'; $a->strings['Show fewer'] = 'Montrer moins'; $a->strings['Reshared by: %s'] = 'Partagé par : %s'; $a->strings['Viewed by: %s'] = 'Vu par : %s'; +$a->strings['Read by: %s'] = 'Lu par : %s'; $a->strings['Liked by: %s'] = 'Aimé par : %s'; $a->strings['Disliked by: %s'] = 'Pas aimé par : %s'; $a->strings['Attended by: %s'] = 'Y assisteront : %s'; diff --git a/view/lang/ro/messages.po b/view/lang/ro/messages.po index 1fbc6e9990..2f553b8aa5 100644 --- a/view/lang/ro/messages.po +++ b/view/lang/ro/messages.po @@ -1,5 +1,5 @@ # FRIENDICA Distributed Social Network -# Copyright (C) 2010-2023, the Friendica project +# Copyright (C) 2010-2024, the Friendica project # This file is distributed under the same license as the Friendica package. # # Translators: @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: friendica\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-12-04 22:18+0000\n" +"POT-Creation-Date: 2024-01-02 20:55+0000\n" "PO-Revision-Date: 2011-05-05 10:19+0000\n" "Last-Translator: ktlinux, 2023\n" "Language-Team: Romanian (Romania) (http://app.transifex.com/Friendica/friendica/language/ro_RO/)\n" @@ -72,7 +72,7 @@ msgstr "Element negăsit." #: src/Module/Register.php:90 src/Module/Register.php:206 #: src/Module/Register.php:245 src/Module/Search/Directory.php:37 #: src/Module/Settings/Account.php:50 src/Module/Settings/Account.php:388 -#: src/Module/Settings/Channels.php:56 src/Module/Settings/Channels.php:114 +#: src/Module/Settings/Channels.php:56 src/Module/Settings/Channels.php:112 #: src/Module/Settings/Delegation.php:90 src/Module/Settings/Display.php:90 #: src/Module/Settings/Display.php:197 #: src/Module/Settings/Profile/Photo/Crop.php:165 @@ -248,7 +248,7 @@ msgstr "Renunțați" #: mod/message.php:135 src/Content/Nav.php:318 view/theme/frio/theme.php:241 msgid "Messages" -msgstr "Mesage" +msgstr "Mesaje" #: mod/message.php:148 msgid "Conversation not found." @@ -293,7 +293,7 @@ msgid "Insert web link" msgstr "Inserează link web" #: mod/message.php:201 mod/message.php:357 mod/photos.php:1301 -#: src/Content/Conversation.php:401 src/Content/Conversation.php:1584 +#: src/Content/Conversation.php:401 src/Content/Conversation.php:1586 #: src/Module/Item/Compose.php:206 src/Module/Post/Edit.php:145 #: src/Module/Profile/UnkMail.php:154 src/Object/Post.php:609 msgid "Please wait" @@ -318,7 +318,7 @@ msgstr "Aşteptaţi vă rog" #: src/Module/Profile/Profile.php:274 src/Module/Profile/UnkMail.php:155 #: src/Module/Settings/Profile/Index.php:257 #: src/Module/Settings/Server/Action.php:79 src/Module/User/Delegation.php:189 -#: src/Object/Post.php:1149 view/theme/duepuntozero/config.php:85 +#: src/Object/Post.php:1154 view/theme/duepuntozero/config.php:85 #: view/theme/frio/config.php:171 view/theme/quattro/config.php:87 #: view/theme/vier/config.php:135 msgid "Submit" @@ -326,7 +326,7 @@ msgstr "Trimite" #: mod/message.php:223 msgid "No messages." -msgstr "Nici-un mesaj." +msgstr "Niciun mesaj." #: mod/message.php:279 msgid "Message not available." @@ -387,7 +387,7 @@ msgstr "Notele Personale sunt vizibile doar pentru dumneavoastră" #: mod/notes.php:57 src/Content/Text/HTML.php:859 #: src/Module/Admin/Storage.php:142 src/Module/Filer/SaveTag.php:74 -#: src/Module/Post/Edit.php:129 src/Module/Settings/Channels.php:162 +#: src/Module/Post/Edit.php:129 src/Module/Settings/Channels.php:171 msgid "Save" msgstr "Salvare" @@ -397,7 +397,7 @@ msgstr "Salvare" #: src/Module/DFRN/Poll.php:43 src/Module/Feed.php:65 src/Module/HCard.php:51 #: src/Module/Profile/Common.php:62 src/Module/Profile/Common.php:71 #: src/Module/Profile/Contacts.php:64 src/Module/Profile/Contacts.php:72 -#: src/Module/Profile/Conversations.php:91 src/Module/Profile/Media.php:38 +#: src/Module/Profile/Conversations.php:91 src/Module/Profile/Media.php:56 #: src/Module/Profile/Photos.php:83 src/Module/Profile/RemoteFollow.php:71 #: src/Module/Register.php:267 msgid "User not found." @@ -605,34 +605,34 @@ msgstr "Rotire spre stânga" #: mod/photos.php:1139 mod/photos.php:1195 mod/photos.php:1275 #: src/Module/Contact.php:618 src/Module/Item/Compose.php:188 -#: src/Object/Post.php:1146 +#: src/Object/Post.php:1151 msgid "This is you" msgstr "Acesta eşti tu" #: mod/photos.php:1141 mod/photos.php:1197 mod/photos.php:1277 #: src/Module/Moderation/Reports.php:95 src/Object/Post.php:603 -#: src/Object/Post.php:1148 +#: src/Object/Post.php:1153 msgid "Comment" msgstr "Comentariu" #: mod/photos.php:1143 mod/photos.php:1199 mod/photos.php:1279 #: src/Content/Conversation.php:416 src/Module/Calendar/Event/Form.php:248 #: src/Module/Item/Compose.php:201 src/Module/Post/Edit.php:165 -#: src/Object/Post.php:1162 +#: src/Object/Post.php:1167 msgid "Preview" msgstr "Previzualizare" #: mod/photos.php:1144 src/Content/Conversation.php:369 -#: src/Module/Post/Edit.php:130 src/Object/Post.php:1150 +#: src/Module/Post/Edit.php:130 src/Object/Post.php:1155 msgid "Loading..." msgstr "Încărcare..." -#: mod/photos.php:1236 src/Content/Conversation.php:1499 +#: mod/photos.php:1236 src/Content/Conversation.php:1501 #: src/Object/Post.php:261 msgid "Select" msgstr "Select" -#: mod/photos.php:1237 src/Content/Conversation.php:1500 +#: 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 @@ -687,18 +687,18 @@ msgstr "Dorești să ignori acest autor? Nu îi vei mai putea vedea postările #: src/App/Page.php:252 msgid "Collapse this author's posts?" -msgstr "" +msgstr "Colapsați postările acestui autor?" #: src/App/Page.php:253 msgid "Ignore this author's server?" -msgstr "" +msgstr "Ignorați serverul acestui autor?" #: src/App/Page.php:254 src/Module/Settings/Server/Action.php:61 #: src/Module/Settings/Server/Index.php:108 msgid "" "You won't see any content from this server including reshares in your " "Network page, the community pages and individual conversations." -msgstr "" +msgstr "Nu veți mai vedea niciun conținut de la acest server, inclusiv redistribuirile din pagina dumneavoastră de Rețea, paginile de comunitate sau conversațiile individuale." #: src/App/Page.php:256 msgid "Like not successful" @@ -800,12 +800,12 @@ msgstr "Toate contactele" #: src/BaseModule.php:439 src/Content/Conversation/Factory/Channel.php:45 #: src/Content/Widget.php:239 src/Core/ACL.php:195 src/Module/Contact.php:414 #: src/Module/PermissionTooltip.php:141 src/Module/PermissionTooltip.php:163 -#: src/Module/Settings/Channels.php:121 +#: src/Module/Settings/Channels.php:119 msgid "Followers" msgstr "Urmăritori" #: src/BaseModule.php:444 src/Content/Widget.php:240 -#: src/Module/Contact.php:417 src/Module/Settings/Channels.php:120 +#: src/Module/Contact.php:417 src/Module/Settings/Channels.php:118 msgid "Following" msgstr "Urmăriți" @@ -964,7 +964,7 @@ msgstr "Toate actualizările de postare aflate în așteptare s-au terminat." msgid "Enter user nickname: " msgstr "Introduceți pseudonimul de utilizator:" -#: src/Console/User.php:182 src/Model/User.php:793 +#: src/Console/User.php:182 src/Model/User.php:806 #: src/Module/Api/Twitter/ContactEndpoint.php:74 #: src/Module/Moderation/Users/Active.php:71 #: src/Module/Moderation/Users/Blocked.php:71 @@ -980,7 +980,7 @@ msgstr "Introduceți noua parolă:" #: src/Console/User.php:210 src/Module/Security/PasswordTooLong.php:69 #: src/Module/Settings/Account.php:75 msgid "Password update failed. Please try again." -msgstr "Actualizarea parolei a eșuat. Vă rugăm să reîncercați." +msgstr "Actualizarea parolei a eșuat. Vă rugăm să încercați din nou." #: src/Console/User.php:213 src/Module/Security/PasswordTooLong.php:72 #: src/Module/Settings/Account.php:78 @@ -1258,7 +1258,7 @@ msgid "Visible to everybody" msgstr "Vizibil pentru toți" #: src/Content/Conversation.php:339 src/Module/Item/Compose.php:200 -#: src/Object/Post.php:1161 +#: src/Object/Post.php:1166 msgid "Please enter a image/video/audio/webpage URL:" msgstr "" @@ -1303,52 +1303,52 @@ msgid "attach file" msgstr "ataşează fişier" #: src/Content/Conversation.php:374 src/Module/Item/Compose.php:190 -#: src/Module/Post/Edit.php:171 src/Object/Post.php:1151 +#: src/Module/Post/Edit.php:171 src/Object/Post.php:1156 msgid "Bold" msgstr "Bold" #: src/Content/Conversation.php:375 src/Module/Item/Compose.php:191 -#: src/Module/Post/Edit.php:172 src/Object/Post.php:1152 +#: src/Module/Post/Edit.php:172 src/Object/Post.php:1157 msgid "Italic" msgstr "Italic" #: src/Content/Conversation.php:376 src/Module/Item/Compose.php:192 -#: src/Module/Post/Edit.php:173 src/Object/Post.php:1153 +#: src/Module/Post/Edit.php:173 src/Object/Post.php:1158 msgid "Underline" msgstr "Subliniat" #: src/Content/Conversation.php:377 src/Module/Item/Compose.php:193 -#: src/Module/Post/Edit.php:174 src/Object/Post.php:1155 +#: src/Module/Post/Edit.php:174 src/Object/Post.php:1160 msgid "Quote" msgstr "Citat" #: src/Content/Conversation.php:378 src/Module/Item/Compose.php:194 -#: src/Module/Post/Edit.php:175 src/Object/Post.php:1156 +#: src/Module/Post/Edit.php:175 src/Object/Post.php:1161 msgid "Add emojis" msgstr "Adaugă emoji-uri" #: src/Content/Conversation.php:379 src/Module/Item/Compose.php:195 -#: src/Object/Post.php:1154 +#: src/Object/Post.php:1159 msgid "Content Warning" msgstr "Avertisment de conținut" #: src/Content/Conversation.php:380 src/Module/Item/Compose.php:196 -#: src/Module/Post/Edit.php:176 src/Object/Post.php:1157 +#: src/Module/Post/Edit.php:176 src/Object/Post.php:1162 msgid "Code" msgstr "Code" #: src/Content/Conversation.php:381 src/Module/Item/Compose.php:197 -#: src/Object/Post.php:1158 +#: src/Object/Post.php:1163 msgid "Image" msgstr "Imagine" #: src/Content/Conversation.php:382 src/Module/Item/Compose.php:198 -#: src/Module/Post/Edit.php:177 src/Object/Post.php:1159 +#: src/Module/Post/Edit.php:177 src/Object/Post.php:1164 msgid "Link" msgstr "Link" #: src/Content/Conversation.php:383 src/Module/Item/Compose.php:199 -#: src/Module/Post/Edit.php:178 src/Object/Post.php:1160 +#: src/Module/Post/Edit.php:178 src/Object/Post.php:1165 msgid "Link or Media" msgstr "Link sau fișier media" @@ -1418,116 +1418,116 @@ msgstr "eliminare" msgid "Delete Selected Items" msgstr "Ștergeți Elementele Selectate" -#: src/Content/Conversation.php:756 src/Content/Conversation.php:759 -#: src/Content/Conversation.php:762 src/Content/Conversation.php:765 -#: src/Content/Conversation.php:768 +#: src/Content/Conversation.php:729 src/Content/Conversation.php:732 +#: src/Content/Conversation.php:735 src/Content/Conversation.php:738 +#: src/Content/Conversation.php:741 #, php-format msgid "You had been addressed (%s)." msgstr "" -#: src/Content/Conversation.php:771 +#: src/Content/Conversation.php:744 #, php-format msgid "You are following %s." msgstr "Dvs. urmăriți %s." -#: src/Content/Conversation.php:776 +#: src/Content/Conversation.php:749 #, php-format msgid "You subscribed to %s." msgstr "V-ați abonat la %s." -#: src/Content/Conversation.php:778 +#: src/Content/Conversation.php:751 msgid "You subscribed to one or more tags in this post." msgstr "V-ați abonat la una sau mai multe etichete prezente în această postare" -#: src/Content/Conversation.php:798 +#: src/Content/Conversation.php:771 #, php-format msgid "%s reshared this." msgstr "%s a redistribuit" -#: src/Content/Conversation.php:800 +#: src/Content/Conversation.php:773 msgid "Reshared" msgstr "Redistribuit" -#: src/Content/Conversation.php:800 +#: src/Content/Conversation.php:773 #, php-format msgid "Reshared by %s <%s>" msgstr "Redistribuit de %s <%s>" -#: src/Content/Conversation.php:803 +#: src/Content/Conversation.php:776 #, php-format msgid "%s is participating in this thread." msgstr "%s participă în acest fir de conversație" -#: src/Content/Conversation.php:806 +#: src/Content/Conversation.php:779 msgid "Stored for general reasons" msgstr "" -#: src/Content/Conversation.php:809 +#: src/Content/Conversation.php:782 msgid "Global post" msgstr "" -#: src/Content/Conversation.php:812 +#: src/Content/Conversation.php:785 msgid "Sent via an relay server" msgstr "Trimis printr-un server releu" -#: src/Content/Conversation.php:812 +#: src/Content/Conversation.php:785 #, php-format msgid "Sent via the relay server %s <%s>" msgstr "Trimis prin serverul releu %s <%s>" -#: src/Content/Conversation.php:815 +#: src/Content/Conversation.php:788 msgid "Fetched" msgstr "" -#: src/Content/Conversation.php:815 +#: src/Content/Conversation.php:788 #, php-format msgid "Fetched because of %s <%s>" msgstr "" -#: src/Content/Conversation.php:818 +#: src/Content/Conversation.php:791 msgid "Stored because of a child post to complete this thread." msgstr "Stocată din cauza unei postări inferioare pentru a completa acest fir." -#: src/Content/Conversation.php:821 +#: src/Content/Conversation.php:794 msgid "Local delivery" msgstr "" -#: src/Content/Conversation.php:824 +#: src/Content/Conversation.php:797 msgid "Stored because of your activity (like, comment, star, ...)" msgstr "" -#: src/Content/Conversation.php:827 +#: src/Content/Conversation.php:800 msgid "Distributed" msgstr "" -#: src/Content/Conversation.php:830 +#: src/Content/Conversation.php:803 msgid "Pushed to us" msgstr "" -#: src/Content/Conversation.php:1527 src/Object/Post.php:248 +#: src/Content/Conversation.php:1529 src/Object/Post.php:248 msgid "Pinned item" msgstr "Element fixat" -#: src/Content/Conversation.php:1544 src/Object/Post.php:548 +#: src/Content/Conversation.php:1546 src/Object/Post.php:548 #: src/Object/Post.php:549 #, php-format msgid "View %s's profile @ %s" msgstr "Vizualizaţi profilul %s @ %s" -#: src/Content/Conversation.php:1557 src/Object/Post.php:536 +#: src/Content/Conversation.php:1559 src/Object/Post.php:536 msgid "Categories:" msgstr "Categorii:" -#: src/Content/Conversation.php:1558 src/Object/Post.php:537 +#: src/Content/Conversation.php:1560 src/Object/Post.php:537 msgid "Filed under:" msgstr "Înscris în:" -#: src/Content/Conversation.php:1566 src/Object/Post.php:562 +#: src/Content/Conversation.php:1568 src/Object/Post.php:562 #, php-format msgid "%s from %s" msgstr "%s de la %s" -#: src/Content/Conversation.php:1582 +#: src/Content/Conversation.php:1584 msgid "View in context" msgstr "Vizualizare în context" @@ -1565,16 +1565,16 @@ msgid "Posts from accounts that are followed by accounts that you follow" msgstr "" #: src/Content/Conversation/Factory/Channel.php:47 -#: src/Module/Settings/Channels.php:138 src/Module/Settings/Channels.php:154 +#: src/Module/Settings/Channels.php:146 src/Module/Settings/Channels.php:163 msgid "Images" -msgstr "" +msgstr "Imagini" #: src/Content/Conversation/Factory/Channel.php:47 msgid "Posts with images" msgstr "Postări cu imagini" #: src/Content/Conversation/Factory/Channel.php:48 -#: src/Module/Settings/Channels.php:140 src/Module/Settings/Channels.php:156 +#: src/Module/Settings/Channels.php:148 src/Module/Settings/Channels.php:165 msgid "Audio" msgstr "" @@ -1583,7 +1583,7 @@ msgid "Posts with audio" msgstr "Postări cu audio" #: src/Content/Conversation/Factory/Channel.php:49 -#: src/Module/Settings/Channels.php:139 src/Module/Settings/Channels.php:155 +#: src/Module/Settings/Channels.php:147 src/Module/Settings/Channels.php:164 msgid "Videos" msgstr "Videoclipuri" @@ -1600,7 +1600,7 @@ msgid "Posts from local users on this server" msgstr "Postări ale utilizatorilor aflați pe acest server" #: src/Content/Conversation/Factory/Community.php:47 -#: src/Module/Settings/Channels.php:118 +#: src/Module/Settings/Channels.php:116 msgid "Global Community" msgstr "Comunitatea globală" @@ -1763,7 +1763,7 @@ msgstr "Permite vizitatorilor anonimi să vă consulte calendarul și evenimente #: src/Content/GroupManager.php:152 src/Content/Nav.php:278 #: src/Content/Text/HTML.php:880 src/Content/Widget.php:537 -#: src/Model/User.php:1355 +#: src/Model/User.php:1368 msgid "Groups" msgstr "Grupuri" @@ -1784,7 +1784,7 @@ msgstr "mai mult" msgid "Create new group" msgstr "Creează un grup nou" -#: src/Content/Item.php:332 src/Model/Item.php:3137 +#: src/Content/Item.php:332 src/Model/Item.php:3166 msgid "event" msgstr "eveniment" @@ -1792,7 +1792,7 @@ msgstr "eveniment" msgid "status" msgstr "status" -#: src/Content/Item.php:341 src/Model/Item.php:3139 +#: src/Content/Item.php:341 src/Model/Item.php:3168 #: src/Module/Post/Tag/Add.php:123 msgid "photo" msgstr "fotografie" @@ -1854,12 +1854,12 @@ msgstr "Ignoră" #: src/Content/Item.php:438 src/Module/Contact.php:469 #: src/Module/Contact/Profile.php:527 msgid "Collapse" -msgstr "" +msgstr "Colapsați" #: src/Content/Item.php:439 src/Object/Post.php:289 #, php-format msgid "Ignore %s server" -msgstr "" +msgstr "Ignorați serverul %s" #: src/Content/Item.php:443 src/Object/Post.php:509 msgid "Languages" @@ -2064,7 +2064,7 @@ msgstr "Condiții de Utilizare" msgid "Terms of Service of this Friendica instance" msgstr "Condițiile de Utilizare ale acestei instanțe de Friendica" -#: src/Content/Nav.php:306 src/Module/Settings/Channels.php:119 +#: src/Content/Nav.php:306 src/Module/Settings/Channels.php:117 #: view/theme/frio/theme.php:239 msgid "Network" msgstr "Reţea" @@ -2204,8 +2204,8 @@ msgstr "Imagine/fotografie" msgid "%2$s %3$s" msgstr "" -#: src/Content/Text/BBCode.php:994 src/Model/Item.php:3870 -#: src/Model/Item.php:3876 src/Model/Item.php:3877 +#: src/Content/Text/BBCode.php:994 src/Model/Item.php:3899 +#: src/Model/Item.php:3905 src/Model/Item.php:3906 msgid "Link to source" msgstr "" @@ -2375,7 +2375,7 @@ msgstr "Persoane" msgid "Organisations" msgstr "Organizații" -#: src/Content/Widget.php:536 src/Model/Contact.php:1714 +#: src/Content/Widget.php:536 src/Model/Contact.php:1738 msgid "News" msgstr "Știri" @@ -2387,8 +2387,8 @@ msgstr "Tipuri de cont" msgid "All" msgstr "Totul" -#: src/Content/Widget.php:591 src/Module/Admin/Site.php:464 -#: src/Module/BaseSettings.php:125 src/Module/Settings/Channels.php:158 +#: src/Content/Widget.php:591 src/Module/Admin/Site.php:466 +#: src/Module/BaseSettings.php:125 src/Module/Settings/Channels.php:167 #: src/Module/Settings/Display.php:315 msgid "Channels" msgstr "Canale" @@ -3253,76 +3253,76 @@ msgstr "Modifică cercuri" msgid "Approve" msgstr "Aprobă" -#: src/Model/Contact.php:1710 +#: src/Model/Contact.php:1734 msgid "Organisation" msgstr "Organizație" -#: src/Model/Contact.php:1718 +#: src/Model/Contact.php:1742 msgid "Group" msgstr "Grup" -#: src/Model/Contact.php:3021 +#: src/Model/Contact.php:3045 msgid "Disallowed profile URL." msgstr "Profil URL invalid." -#: src/Model/Contact.php:3026 src/Module/Friendica.php:101 +#: src/Model/Contact.php:3050 src/Module/Friendica.php:101 msgid "Blocked domain" msgstr "Domeniu blocat" -#: src/Model/Contact.php:3031 +#: src/Model/Contact.php:3055 msgid "Connect URL missing." msgstr "Lipseşte URL-ul de conectare." -#: src/Model/Contact.php:3040 +#: src/Model/Contact.php:3064 msgid "" "The contact could not be added. Please check the relevant network " "credentials in your Settings -> Social Networks page." msgstr "Contactul nu a putut fi adăugat. Vă rugăm să verificați credențialele relevante în pagina Setări -> Rețele Sociale" -#: src/Model/Contact.php:3058 +#: src/Model/Contact.php:3082 #, php-format msgid "Expected network %s does not match actual network %s" msgstr "" -#: src/Model/Contact.php:3075 +#: src/Model/Contact.php:3099 msgid "The profile address specified does not provide adequate information." msgstr "Adresa de profil specificată nu furnizează informații adecvate." -#: src/Model/Contact.php:3077 +#: src/Model/Contact.php:3101 msgid "No compatible communication protocols or feeds were discovered." msgstr "Nu au fost descoperite protocoale de comunicații sau fluxuri compatibile." -#: src/Model/Contact.php:3080 +#: src/Model/Contact.php:3104 msgid "An author or name was not found." msgstr "Un autor sau nume nu a fost găsit." -#: src/Model/Contact.php:3083 +#: src/Model/Contact.php:3107 msgid "No browser URL could be matched to this address." msgstr "Nici un URL de browser nu a putut fi corelat cu această adresă." -#: src/Model/Contact.php:3086 +#: src/Model/Contact.php:3110 msgid "" "Unable to match @-style Identity Address with a known protocol or email " "contact." msgstr "Nu se poate corela @-stilul pentru Adresa de Identitatea cu un protocol cunoscut sau contact de email." -#: src/Model/Contact.php:3087 +#: src/Model/Contact.php:3111 msgid "Use mailto: in front of address to force email check." msgstr "Utilizaţi mailto: în faţa adresei pentru a forţa verificarea de email." -#: src/Model/Contact.php:3093 +#: src/Model/Contact.php:3117 msgid "" "The profile address specified belongs to a network which has been disabled " "on this site." msgstr "Adresa de profil specificată aparţine unei reţele care a fost dezactivată pe acest site." -#: src/Model/Contact.php:3098 +#: src/Model/Contact.php:3122 msgid "" "Limited profile. This person will be unable to receive direct/personal " "notifications from you." msgstr "Profil limitat. Această persoană nu va putea primi notificări directe/personale, de la dvs." -#: src/Model/Contact.php:3164 +#: src/Model/Contact.php:3188 msgid "Unable to retrieve contact information." msgstr "Nu se pot localiza informaţiile de contact." @@ -3427,58 +3427,58 @@ msgstr "Ziua de naștere a lui %s" msgid "Happy Birthday %s" msgstr "La mulţi ani, %s!" -#: src/Model/Item.php:2188 +#: src/Model/Item.php:2217 #, php-format msgid "%s (%s - %s): %s" msgstr "" -#: src/Model/Item.php:2190 +#: src/Model/Item.php:2219 #, php-format msgid "%s (%s): %s" msgstr "" -#: src/Model/Item.php:2193 +#: src/Model/Item.php:2222 #, php-format msgid "Detected languages in this post:\\n%s" msgstr "Limbi recunoscute în această postare:\\n%s" -#: src/Model/Item.php:3141 +#: src/Model/Item.php:3170 msgid "activity" msgstr "activitate" -#: src/Model/Item.php:3143 +#: src/Model/Item.php:3172 msgid "comment" msgstr "" -#: src/Model/Item.php:3146 src/Module/Post/Tag/Add.php:123 +#: src/Model/Item.php:3175 src/Module/Post/Tag/Add.php:123 msgid "post" msgstr "postare" -#: src/Model/Item.php:3316 +#: src/Model/Item.php:3345 #, php-format msgid "%s is blocked" msgstr "%s este blocat(-ă)" -#: src/Model/Item.php:3318 +#: src/Model/Item.php:3347 #, php-format msgid "%s is ignored" msgstr "%s este ignorat(-ă)" -#: src/Model/Item.php:3320 +#: src/Model/Item.php:3349 #, php-format msgid "Content from %s is collapsed" -msgstr "" +msgstr "Conținutul de la %s este colapsat" -#: src/Model/Item.php:3324 +#: src/Model/Item.php:3353 #, php-format msgid "Content warning: %s" msgstr "Avertisment de conținut: %s" -#: src/Model/Item.php:3777 +#: src/Model/Item.php:3806 msgid "bytes" msgstr "octeţi" -#: src/Model/Item.php:3808 +#: src/Model/Item.php:3837 #, php-format msgid "%2$s (%3$d%%, %1$d vote)" msgid_plural "%2$s (%3$d%%, %1$d votes)" @@ -3486,7 +3486,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: src/Model/Item.php:3810 +#: src/Model/Item.php:3839 #, php-format msgid "%2$s (%1$d vote)" msgid_plural "%2$s (%1$d votes)" @@ -3494,7 +3494,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: src/Model/Item.php:3815 +#: src/Model/Item.php:3844 #, php-format msgid "%d voter. Poll end: %s" msgid_plural "%d voters. Poll end: %s" @@ -3502,7 +3502,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: src/Model/Item.php:3817 +#: src/Model/Item.php:3846 #, php-format msgid "%d voter." msgid_plural "%d voters." @@ -3510,12 +3510,12 @@ msgstr[0] "%d votant." msgstr[1] "%d votanți." msgstr[2] "%d de votanți." -#: src/Model/Item.php:3819 +#: src/Model/Item.php:3848 #, php-format msgid "Poll end: %s" msgstr "Sfârșitul sondajului: %s" -#: src/Model/Item.php:3853 src/Model/Item.php:3854 +#: src/Model/Item.php:3882 src/Model/Item.php:3883 msgid "View on separate page" msgstr "Vezi pe o pagină separată" @@ -3673,78 +3673,78 @@ msgstr "Școală/educație" msgid "Contact information and Social Networks" msgstr "Informaţii de Contact şi Reţele Sociale" -#: src/Model/User.php:225 src/Model/User.php:1268 +#: src/Model/User.php:225 src/Model/User.php:1281 msgid "SERIOUS ERROR: Generation of security keys failed." msgstr "EROARE GRAVĂ: Generarea de chei de securitate a eşuat." -#: src/Model/User.php:702 src/Model/User.php:735 +#: src/Model/User.php:715 src/Model/User.php:748 msgid "Login failed" msgstr "" -#: src/Model/User.php:767 +#: src/Model/User.php:780 msgid "Not enough information to authenticate" msgstr "" -#: src/Model/User.php:888 +#: src/Model/User.php:901 msgid "Password can't be empty" msgstr "Parola nu poate fi goală" -#: src/Model/User.php:930 +#: src/Model/User.php:943 msgid "Empty passwords are not allowed." msgstr "Parolele goale nu sunt permise." -#: src/Model/User.php:934 +#: src/Model/User.php:947 msgid "" "The new password has been exposed in a public data dump, please choose " "another." msgstr "" -#: src/Model/User.php:938 +#: src/Model/User.php:951 msgid "The password length is limited to 72 characters." msgstr "Lungimea parolei este limitată la 72 de caractere." -#: src/Model/User.php:942 +#: src/Model/User.php:955 msgid "The password can't contain white spaces nor accentuated letters" msgstr "Parola nu poate conține spații goale sau litere accentuate" -#: src/Model/User.php:1151 +#: src/Model/User.php:1164 msgid "Passwords do not match. Password unchanged." msgstr "Parolele nu coincid. Parolă neschimbată." -#: src/Model/User.php:1158 +#: src/Model/User.php:1171 msgid "An invitation is required." msgstr "O invitaţie este necesară." -#: src/Model/User.php:1162 +#: src/Model/User.php:1175 msgid "Invitation could not be verified." msgstr "Invitația nu s-a putut verifica." -#: src/Model/User.php:1170 +#: src/Model/User.php:1183 msgid "Invalid OpenID url" msgstr "URL OpenID invalid" -#: src/Model/User.php:1183 src/Security/Authentication.php:241 +#: src/Model/User.php:1196 src/Security/Authentication.php:241 msgid "" "We encountered a problem while logging in with the OpenID you provided. " "Please check the correct spelling of the ID." msgstr "Am întâmpinat o problemă în timpul autentificării cu datele OpenID pe care le-ați furnizat." -#: src/Model/User.php:1183 src/Security/Authentication.php:241 +#: src/Model/User.php:1196 src/Security/Authentication.php:241 msgid "The error message was:" msgstr "Mesajul de eroare a fost:" -#: src/Model/User.php:1189 +#: src/Model/User.php:1202 msgid "Please enter the required information." msgstr "Vă rugăm să introduceți informațiile solicitate." -#: src/Model/User.php:1203 +#: src/Model/User.php:1216 #, php-format msgid "" "system.username_min_length (%s) and system.username_max_length (%s) are " "excluding each other, swapping values." msgstr "" -#: src/Model/User.php:1210 +#: src/Model/User.php:1223 #, php-format msgid "Username should be at least %s character." msgid_plural "Username should be at least %s characters." @@ -3752,7 +3752,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: src/Model/User.php:1214 +#: src/Model/User.php:1227 #, php-format msgid "Username should be at most %s character." msgid_plural "Username should be at most %s characters." @@ -3760,60 +3760,60 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: src/Model/User.php:1222 +#: src/Model/User.php:1235 msgid "That doesn't appear to be your full (First Last) name." msgstr "Acesta nu pare a fi Numele (Prenumele) dvs. complet" -#: src/Model/User.php:1227 +#: src/Model/User.php:1240 msgid "Your email domain is not among those allowed on this site." msgstr "Domeniul dvs. de email nu este printre cele permise pe acest site." -#: src/Model/User.php:1231 +#: src/Model/User.php:1244 msgid "Not a valid email address." msgstr "Nu este o adresă vaildă de email." -#: src/Model/User.php:1234 +#: src/Model/User.php:1247 msgid "The nickname was blocked from registration by the nodes admin." msgstr "" -#: src/Model/User.php:1238 src/Model/User.php:1244 +#: src/Model/User.php:1251 src/Model/User.php:1257 msgid "Cannot use that email." msgstr "Nu se poate utiliza acest email." -#: src/Model/User.php:1250 +#: src/Model/User.php:1263 msgid "Your nickname can only contain a-z, 0-9 and _." msgstr "Pseudonimul dumneavoastră poate conținu numai a-z, 0-9 și _." -#: src/Model/User.php:1258 src/Model/User.php:1315 +#: src/Model/User.php:1271 src/Model/User.php:1328 msgid "Nickname is already registered. Please choose another." msgstr "Pseudonimul este deja înregistrat. Vă rugăm, alegeți un altul." -#: src/Model/User.php:1302 src/Model/User.php:1306 +#: src/Model/User.php:1315 src/Model/User.php:1319 msgid "An error occurred during registration. Please try again." msgstr "A intervenit o eroare în timpul înregistrării. Vă rugăm să reîncercați." -#: src/Model/User.php:1329 +#: src/Model/User.php:1342 msgid "An error occurred creating your default profile. Please try again." msgstr "A intervenit o eroare la crearea profilului dvs. implicit. Vă rugăm să reîncercați." -#: src/Model/User.php:1336 +#: src/Model/User.php:1349 msgid "An error occurred creating your self contact. Please try again." msgstr "" -#: src/Model/User.php:1341 +#: src/Model/User.php:1354 msgid "Friends" msgstr "Prieteni" -#: src/Model/User.php:1345 +#: src/Model/User.php:1358 msgid "" "An error occurred creating your default contact circle. Please try again." msgstr "" -#: src/Model/User.php:1389 +#: src/Model/User.php:1402 msgid "Profile Photos" msgstr "Poze profil" -#: src/Model/User.php:1569 +#: src/Model/User.php:1582 #, php-format msgid "" "\n" @@ -3821,7 +3821,7 @@ msgid "" "\t\t\tthe administrator of %2$s has set up an account for you." msgstr "" -#: src/Model/User.php:1572 +#: src/Model/User.php:1585 #, php-format msgid "" "\n" @@ -3852,12 +3852,12 @@ msgid "" "\t\tThank you and welcome to %4$s." msgstr "" -#: src/Model/User.php:1604 src/Model/User.php:1710 +#: src/Model/User.php:1617 src/Model/User.php:1723 #, php-format msgid "Registration details for %s" msgstr "Detaliile de înregistrare pentru %s" -#: src/Model/User.php:1624 +#: src/Model/User.php:1637 #, php-format msgid "" "\n" @@ -3872,12 +3872,12 @@ msgid "" "\t\t" msgstr "" -#: src/Model/User.php:1643 +#: src/Model/User.php:1656 #, php-format msgid "Registration at %s" msgstr "" -#: src/Model/User.php:1667 +#: src/Model/User.php:1680 #, php-format msgid "" "\n" @@ -3886,7 +3886,7 @@ msgid "" "\t\t\t" msgstr "" -#: src/Model/User.php:1675 +#: src/Model/User.php:1688 #, php-format msgid "" "\n" @@ -3917,7 +3917,7 @@ msgid "" "\t\t\tThank you and welcome to %2$s." msgstr "" -#: src/Model/User.php:1737 +#: src/Model/User.php:1750 msgid "" "User with delegates can't be removed, please remove delegate users first" msgstr "" @@ -3947,9 +3947,9 @@ msgid "Enable" msgstr "Activează" #: src/Module/Admin/Addons/Details.php:111 -#: src/Module/Admin/Addons/Index.php:67 src/Module/Admin/Federation.php:214 +#: 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:447 +#: src/Module/Admin/Queue.php:72 src/Module/Admin/Site.php:449 #: src/Module/Admin/Storage.php:138 src/Module/Admin/Summary.php:196 #: src/Module/Admin/Themes/Details.php:90 #: src/Module/Admin/Themes/Index.php:111 src/Module/Admin/Tos.php:77 @@ -3989,7 +3989,7 @@ msgid "Addon %s failed to install." msgstr "Suplimentul %s nu s-a putut instala." #: src/Module/Admin/Addons/Index.php:69 src/Module/Admin/Features.php:86 -#: src/Module/Admin/Logs/Settings.php:87 src/Module/Admin/Site.php:450 +#: src/Module/Admin/Logs/Settings.php:87 src/Module/Admin/Site.php:452 #: src/Module/Admin/Themes/Index.php:113 src/Module/Admin/Tos.php:86 #: src/Module/Settings/Account.php:541 src/Module/Settings/Addons.php:78 #: src/Module/Settings/Connectors.php:160 @@ -4079,17 +4079,17 @@ msgstr "" msgid "Manage Additional Features" msgstr "" -#: src/Module/Admin/Federation.php:76 +#: src/Module/Admin/Federation.php:80 #: src/Module/Moderation/Report/Create.php:191 #: src/Module/Moderation/Report/Create.php:316 msgid "Other" msgstr "Alta" -#: src/Module/Admin/Federation.php:154 src/Module/Admin/Federation.php:403 +#: src/Module/Admin/Federation.php:158 src/Module/Admin/Federation.php:407 msgid "unknown" msgstr "necunoscut" -#: src/Module/Admin/Federation.php:187 +#: src/Module/Admin/Federation.php:191 #, php-format msgid "%2$s total system" msgid_plural "%2$s total systems" @@ -4097,7 +4097,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: src/Module/Admin/Federation.php:188 +#: src/Module/Admin/Federation.php:192 #, php-format msgid "%2$s active user last month" msgid_plural "%2$s active users last month" @@ -4105,7 +4105,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: src/Module/Admin/Federation.php:189 +#: src/Module/Admin/Federation.php:193 #, php-format msgid "%2$s active user last six months" msgid_plural "%2$s active users last six months" @@ -4113,7 +4113,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: src/Module/Admin/Federation.php:190 +#: src/Module/Admin/Federation.php:194 #, php-format msgid "%2$s registered user" msgid_plural "%2$s registered users" @@ -4121,7 +4121,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: src/Module/Admin/Federation.php:191 +#: src/Module/Admin/Federation.php:195 #, php-format msgid "%2$s locally created post or comment" msgid_plural "%2$s locally created posts and comments" @@ -4129,7 +4129,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: src/Module/Admin/Federation.php:194 +#: src/Module/Admin/Federation.php:198 #, php-format msgid "%2$s post per user" msgid_plural "%2$s posts per user" @@ -4137,7 +4137,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: src/Module/Admin/Federation.php:199 +#: src/Module/Admin/Federation.php:203 #, php-format msgid "%2$s user per system" msgid_plural "%2$s users per system" @@ -4145,18 +4145,18 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: src/Module/Admin/Federation.php:209 +#: src/Module/Admin/Federation.php:213 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:215 src/Module/BaseAdmin.php:87 +#: src/Module/Admin/Federation.php:219 src/Module/BaseAdmin.php:87 msgid "Federation Statistics" msgstr "Statistici federație" -#: src/Module/Admin/Federation.php:219 +#: src/Module/Admin/Federation.php:223 #, php-format msgid "" "Currently this node is aware of %2$s node (%3$s active users last month, " @@ -4197,8 +4197,8 @@ msgid "Enable Debugging" msgstr "Activează Depanarea" #: src/Module/Admin/Logs/Settings.php:91 src/Module/Admin/Logs/Settings.php:92 -#: src/Module/Admin/Logs/Settings.php:93 src/Module/Admin/Site.php:470 -#: src/Module/Admin/Site.php:478 +#: src/Module/Admin/Logs/Settings.php:93 src/Module/Admin/Site.php:472 +#: src/Module/Admin/Site.php:480 msgid "" "Read-only because it is set by an environment variable" msgstr "" @@ -4359,269 +4359,269 @@ msgstr "" msgid "Priority" msgstr "Prioritate" -#: src/Module/Admin/Site.php:239 +#: src/Module/Admin/Site.php:240 #, php-format msgid "%s is no valid input for maximum image size" msgstr "" -#: src/Module/Admin/Site.php:362 src/Module/Settings/Display.php:215 +#: src/Module/Admin/Site.php:364 src/Module/Settings/Display.php:215 msgid "No special theme for mobile devices" msgstr "Nici-o temă specială pentru dispozitive mobile" -#: src/Module/Admin/Site.php:379 src/Module/Settings/Display.php:225 +#: src/Module/Admin/Site.php:381 src/Module/Settings/Display.php:225 #, php-format msgid "%s - (Experimental)" msgstr "" -#: src/Module/Admin/Site.php:391 +#: src/Module/Admin/Site.php:393 msgid "No community page" msgstr "" -#: src/Module/Admin/Site.php:392 +#: src/Module/Admin/Site.php:394 msgid "No community page for visitors" msgstr "" -#: src/Module/Admin/Site.php:393 +#: src/Module/Admin/Site.php:395 msgid "Public postings from users of this site" msgstr "Postări publice de la utilizatorii acestui site" -#: src/Module/Admin/Site.php:394 +#: src/Module/Admin/Site.php:396 msgid "Public postings from the federated network" msgstr "Postări publice din rețeaua federată" -#: src/Module/Admin/Site.php:395 +#: src/Module/Admin/Site.php:397 msgid "Public postings from local users and the federated network" msgstr "Postări publice atât de la utilizatori locali, cât și de la rețeaua federată" -#: src/Module/Admin/Site.php:401 +#: src/Module/Admin/Site.php:403 msgid "Multi user instance" msgstr "Instanţă utilizatori multipli" -#: src/Module/Admin/Site.php:424 +#: src/Module/Admin/Site.php:426 msgid "Closed" msgstr "Inchis" -#: src/Module/Admin/Site.php:425 +#: src/Module/Admin/Site.php:427 msgid "Requires approval" msgstr "Necesită aprobarea" -#: src/Module/Admin/Site.php:426 +#: src/Module/Admin/Site.php:428 msgid "Open" msgstr "Deschide" -#: src/Module/Admin/Site.php:430 +#: src/Module/Admin/Site.php:432 msgid "Don't check" msgstr "" -#: src/Module/Admin/Site.php:431 +#: src/Module/Admin/Site.php:433 msgid "check the stable version" msgstr "" -#: src/Module/Admin/Site.php:432 +#: src/Module/Admin/Site.php:434 msgid "check the development version" msgstr "" -#: src/Module/Admin/Site.php:436 +#: src/Module/Admin/Site.php:438 msgid "none" msgstr "" -#: src/Module/Admin/Site.php:437 +#: src/Module/Admin/Site.php:439 msgid "Local contacts" msgstr "" -#: src/Module/Admin/Site.php:438 +#: src/Module/Admin/Site.php:440 msgid "Interactors" msgstr "" -#: src/Module/Admin/Site.php:448 src/Module/BaseAdmin.php:90 +#: src/Module/Admin/Site.php:450 src/Module/BaseAdmin.php:90 msgid "Site" msgstr "Site" -#: src/Module/Admin/Site.php:449 +#: src/Module/Admin/Site.php:451 msgid "General Information" msgstr "Informații generale" -#: src/Module/Admin/Site.php:451 +#: src/Module/Admin/Site.php:453 msgid "Republish users to directory" msgstr "" -#: src/Module/Admin/Site.php:452 src/Module/Register.php:152 +#: src/Module/Admin/Site.php:454 src/Module/Register.php:152 msgid "Registration" msgstr "Registratură" -#: src/Module/Admin/Site.php:453 +#: src/Module/Admin/Site.php:455 msgid "File upload" msgstr "Fişier incărcat" -#: src/Module/Admin/Site.php:454 +#: src/Module/Admin/Site.php:456 msgid "Policies" msgstr "Politici" -#: src/Module/Admin/Site.php:455 src/Module/Calendar/Event/Form.php:252 +#: src/Module/Admin/Site.php:457 src/Module/Calendar/Event/Form.php:252 #: src/Module/Contact.php:546 src/Module/Profile/Profile.php:276 msgid "Advanced" msgstr "Avansat" -#: src/Module/Admin/Site.php:456 +#: src/Module/Admin/Site.php:458 msgid "Auto Discovered Contact Directory" msgstr "" -#: src/Module/Admin/Site.php:457 +#: src/Module/Admin/Site.php:459 msgid "Performance" msgstr "Performanţă" -#: src/Module/Admin/Site.php:458 +#: src/Module/Admin/Site.php:460 msgid "Worker" msgstr "" -#: src/Module/Admin/Site.php:459 +#: src/Module/Admin/Site.php:461 msgid "Message Relay" msgstr "" -#: src/Module/Admin/Site.php:460 +#: src/Module/Admin/Site.php:462 msgid "" "Use the command \"console relay\" in the command line to add or remove " "relays." msgstr "" -#: src/Module/Admin/Site.php:461 +#: src/Module/Admin/Site.php:463 msgid "The system is not subscribed to any relays at the moment." msgstr "Sistemul nu este abonat momentan la niciun releu." -#: src/Module/Admin/Site.php:462 +#: src/Module/Admin/Site.php:464 msgid "The system is currently subscribed to the following relays:" msgstr "Sistemul este abonat în mod curent la următoarele relee:" -#: src/Module/Admin/Site.php:465 +#: src/Module/Admin/Site.php:467 msgid "Relocate Node" msgstr "" -#: src/Module/Admin/Site.php:466 +#: src/Module/Admin/Site.php:468 msgid "" "Relocating your node enables you to change the DNS domain of this node and " "keep all the existing users and posts. This process takes a while and can " "only be started from the relocate console command like this:" msgstr "" -#: src/Module/Admin/Site.php:467 +#: src/Module/Admin/Site.php:469 msgid "(Friendica directory)# bin/console relocate https://newdomain.com" msgstr "" -#: src/Module/Admin/Site.php:470 +#: src/Module/Admin/Site.php:472 msgid "Site name" msgstr "Nume site" -#: src/Module/Admin/Site.php:471 +#: src/Module/Admin/Site.php:473 msgid "Sender Email" msgstr "" -#: src/Module/Admin/Site.php:471 +#: src/Module/Admin/Site.php:473 msgid "" "The email address your server shall use to send notification emails from." msgstr "" -#: src/Module/Admin/Site.php:472 +#: src/Module/Admin/Site.php:474 msgid "Name of the system actor" msgstr "" -#: src/Module/Admin/Site.php:472 +#: src/Module/Admin/Site.php:474 msgid "" "Name of the internal system account that is used to perform ActivityPub " "requests. This must be an unused username. If set, this can't be changed " "again." msgstr "" -#: src/Module/Admin/Site.php:473 +#: src/Module/Admin/Site.php:475 msgid "Banner/Logo" msgstr "Baner/Logo" -#: src/Module/Admin/Site.php:474 +#: src/Module/Admin/Site.php:476 msgid "Email Banner/Logo" msgstr "" -#: src/Module/Admin/Site.php:475 +#: src/Module/Admin/Site.php:477 msgid "Shortcut icon" msgstr "" -#: src/Module/Admin/Site.php:475 +#: src/Module/Admin/Site.php:477 msgid "Link to an icon that will be used for browsers." msgstr "" -#: src/Module/Admin/Site.php:476 +#: src/Module/Admin/Site.php:478 msgid "Touch icon" msgstr "" -#: src/Module/Admin/Site.php:476 +#: src/Module/Admin/Site.php:478 msgid "Link to an icon that will be used for tablets and mobiles." msgstr "" -#: src/Module/Admin/Site.php:477 +#: src/Module/Admin/Site.php:479 msgid "Additional Info" msgstr "Informaţii suplimentare" -#: src/Module/Admin/Site.php:477 +#: src/Module/Admin/Site.php:479 #, php-format msgid "" "For public servers: you can add additional information here that will be " "listed at %s/servers." msgstr "" -#: src/Module/Admin/Site.php:478 +#: src/Module/Admin/Site.php:480 msgid "System language" msgstr "Limbă System l" -#: src/Module/Admin/Site.php:479 +#: src/Module/Admin/Site.php:481 msgid "System theme" msgstr "Temă System " -#: src/Module/Admin/Site.php:479 +#: src/Module/Admin/Site.php:481 #, php-format msgid "" "Default system theme - may be over-ridden by user profiles - Change default theme settings" msgstr "" -#: src/Module/Admin/Site.php:480 +#: src/Module/Admin/Site.php:482 msgid "Mobile system theme" msgstr "Temă sisteme mobile" -#: src/Module/Admin/Site.php:480 +#: src/Module/Admin/Site.php:482 msgid "Theme for mobile devices" msgstr "Temă pentru dispozitivele mobile" -#: src/Module/Admin/Site.php:481 +#: src/Module/Admin/Site.php:483 msgid "Force SSL" msgstr "Forțează SSL" -#: src/Module/Admin/Site.php:481 +#: src/Module/Admin/Site.php:483 msgid "" "Force all Non-SSL requests to SSL - Attention: on some systems it could lead" " to endless loops." msgstr "" -#: src/Module/Admin/Site.php:482 +#: src/Module/Admin/Site.php:484 msgid "Show help entry from navigation menu" msgstr "" -#: src/Module/Admin/Site.php:482 +#: src/Module/Admin/Site.php:484 msgid "" "Displays the menu entry for the Help pages from the navigation menu. It is " "always accessible by calling /help directly." msgstr "" -#: src/Module/Admin/Site.php:483 +#: src/Module/Admin/Site.php:485 msgid "Single user instance" msgstr "Instanţă cu un singur utilizator" -#: src/Module/Admin/Site.php:483 +#: src/Module/Admin/Site.php:485 msgid "Make this instance multi-user or single-user for the named user" msgstr "Stabiliți această instanţă ca utilizator-multipli sau utilizator/unic, pentru utilizatorul respectiv" -#: src/Module/Admin/Site.php:485 +#: src/Module/Admin/Site.php:487 msgid "Maximum image size" msgstr "Maxim mărime imagine" -#: src/Module/Admin/Site.php:485 +#: src/Module/Admin/Site.php:487 #, php-format msgid "" "Maximum size in bytes of uploaded images. Default is 0, which means no limits. You can put k, m, or g behind the desired value for KiB, MiB, GiB, respectively.\n" @@ -4629,35 +4629,35 @@ msgid "" "\t\t\t\t\t\t\t\t\t\t\t\t\tCurrently upload_max_filesize is set to %s (%s byte)" msgstr "" -#: src/Module/Admin/Site.php:489 +#: src/Module/Admin/Site.php:491 msgid "Maximum image length" msgstr "Dimensiunea maximă a imaginii" -#: src/Module/Admin/Site.php:489 +#: src/Module/Admin/Site.php:491 msgid "" "Maximum length in pixels of the longest side of uploaded images. Default is " "-1, which means no limits." msgstr "Dimensiunea maximă în pixeli a celei mai lungi laturi a imaginii încărcate. Implicit este -1, ceea ce înseamnă fără limite." -#: src/Module/Admin/Site.php:490 +#: src/Module/Admin/Site.php:492 msgid "JPEG image quality" msgstr "Calitate imagine JPEG " -#: src/Module/Admin/Site.php:490 +#: src/Module/Admin/Site.php:492 msgid "" "Uploaded JPEGS will be saved at this quality setting [0-100]. Default is " "100, which is full quality." msgstr "Imaginile JPEG încărcate vor fi salvate cu această calitate stabilită [0-100]. Implicit este 100, ceea ce înseamnă calitate completă." -#: src/Module/Admin/Site.php:492 +#: src/Module/Admin/Site.php:494 msgid "Register policy" msgstr "Politici inregistrare " -#: src/Module/Admin/Site.php:493 +#: src/Module/Admin/Site.php:495 msgid "Maximum Users" msgstr "" -#: src/Module/Admin/Site.php:493 +#: src/Module/Admin/Site.php:495 msgid "" "If defined, the register policy is automatically closed when the given " "number of users is reached and reopens the registry when the number drops " @@ -4665,157 +4665,157 @@ msgid "" "not when the policy is set to approval." msgstr "" -#: src/Module/Admin/Site.php:494 +#: src/Module/Admin/Site.php:496 msgid "Maximum Daily Registrations" msgstr "Înregistrări Zilnice Maxime" -#: src/Module/Admin/Site.php:494 +#: src/Module/Admin/Site.php:496 msgid "" "If registration is permitted above, this sets the maximum number of new user" " registrations to accept per day. If register is set to closed, this " "setting has no effect." msgstr "Dacă înregistrarea este permisă de mai sus, aceasta stabileşte numărul maxim de utilizatori noi înregistraţi, acceptaţi pe zi. Dacă înregistrarea este stabilită ca închisă, această setare nu are efect." -#: src/Module/Admin/Site.php:495 +#: src/Module/Admin/Site.php:497 msgid "Register text" msgstr "Text înregistrare" -#: src/Module/Admin/Site.php:495 +#: src/Module/Admin/Site.php:497 msgid "" "Will be displayed prominently on the registration page. You can use BBCode " "here." msgstr "Va fi afișat în mod proeminent pe pagina de înregistrare. Puteți folosi BBCode aici." -#: src/Module/Admin/Site.php:496 +#: src/Module/Admin/Site.php:498 msgid "Forbidden Nicknames" msgstr "Pseudonime interzise" -#: src/Module/Admin/Site.php:496 +#: src/Module/Admin/Site.php:498 msgid "" "Comma separated list of nicknames that are forbidden from registration. " "Preset is a list of role names according RFC 2142." msgstr "" -#: src/Module/Admin/Site.php:497 +#: src/Module/Admin/Site.php:499 msgid "Accounts abandoned after x days" msgstr "Conturi abandonate după x zile" -#: src/Module/Admin/Site.php:497 +#: src/Module/Admin/Site.php:499 msgid "" "Will not waste system resources polling external sites for abandonded " "accounts. Enter 0 for no time limit." msgstr "Nu va risipi resurse de sistem interogând site-uri externe pentru conturi abandonate. Introduceţi 0 pentru nici-o limită de timp." -#: src/Module/Admin/Site.php:498 +#: src/Module/Admin/Site.php:500 msgid "Allowed friend domains" msgstr "Domenii prietene permise" -#: src/Module/Admin/Site.php:498 +#: src/Module/Admin/Site.php:500 msgid "" "Comma separated list of domains which are allowed to establish friendships " "with this site. Wildcards are accepted. Empty to allow any domains" msgstr "Lista cu separator prin virgulă a domeniilor ce sunt permise pentru a stabili relaţii de prietenie cu acest site. Metacaracterele sunt acceptate. Lăsaţi necompletat pentru a permite orice domeniu" -#: src/Module/Admin/Site.php:499 +#: src/Module/Admin/Site.php:501 msgid "Allowed email domains" msgstr "Domenii de email, permise" -#: src/Module/Admin/Site.php:499 +#: src/Module/Admin/Site.php:501 msgid "" "Comma separated list of domains which are allowed in email addresses for " "registrations to this site. Wildcards are accepted. Empty to allow any " "domains" msgstr "Lista cu separator prin virgulă a domeniilor ce sunt permise în adresele de email pentru înregistrările pe acest site. Metacaracterele sunt acceptate. Lăsaţi necompletat pentru a permite orice domeniu" -#: src/Module/Admin/Site.php:500 +#: src/Module/Admin/Site.php:502 msgid "No OEmbed rich content" msgstr "" -#: src/Module/Admin/Site.php:500 +#: src/Module/Admin/Site.php:502 msgid "" "Don't show the rich content (e.g. embedded PDF), except from the domains " "listed below." msgstr "" -#: src/Module/Admin/Site.php:501 +#: src/Module/Admin/Site.php:503 msgid "Trusted third-party domains" msgstr "Domenii terțe de încredere" -#: src/Module/Admin/Site.php:501 +#: src/Module/Admin/Site.php:503 msgid "" "Comma separated list of domains from which content is allowed to be embedded" " in posts like with OEmbed. All sub-domains of the listed domains are " "allowed as well." msgstr "" -#: src/Module/Admin/Site.php:502 +#: src/Module/Admin/Site.php:504 msgid "Block public" msgstr "Blocare acces public" -#: src/Module/Admin/Site.php:502 +#: src/Module/Admin/Site.php:504 msgid "" "Check to block public access to all otherwise public personal pages on this " "site unless you are currently logged in." msgstr "Bifați pentru a bloca accesul public, pe acest site, către toate paginile publice cu caracter personal, doar dacă nu sunteţi deja autentificat." -#: src/Module/Admin/Site.php:503 +#: src/Module/Admin/Site.php:505 msgid "Force publish" msgstr "Forțează publicarea" -#: src/Module/Admin/Site.php:503 +#: src/Module/Admin/Site.php:505 msgid "" "Check to force all profiles on this site to be listed in the site directory." msgstr "Bifați pentru a forţa, ca toate profilurile de pe acest site să fie enumerate în directorul site-ului." -#: src/Module/Admin/Site.php:503 +#: src/Module/Admin/Site.php:505 msgid "Enabling this may violate privacy laws like the GDPR" msgstr "Activarea acestei opțiuni poate viola legi dedicate intimității precum GDPR" -#: src/Module/Admin/Site.php:504 +#: src/Module/Admin/Site.php:506 msgid "Global directory URL" msgstr "URL director global" -#: src/Module/Admin/Site.php:504 +#: src/Module/Admin/Site.php:506 msgid "" "URL to the global directory. If this is not set, the global directory is " "completely unavailable to the application." msgstr "URL către directorul global. Dacă aceasta nu este setată, directorul global este complet indisponibil aplicației." -#: src/Module/Admin/Site.php:505 +#: src/Module/Admin/Site.php:507 msgid "Private posts by default for new users" msgstr "Postările private, ca implicit pentru utilizatori noi" -#: src/Module/Admin/Site.php:505 +#: src/Module/Admin/Site.php:507 msgid "" "Set default post permissions for all new members to the default privacy " "circle rather than public." msgstr "" -#: src/Module/Admin/Site.php:506 +#: src/Module/Admin/Site.php:508 msgid "Don't include post content in email notifications" msgstr "Nu include conţinutul postării în notificările prin email" -#: src/Module/Admin/Site.php:506 +#: src/Module/Admin/Site.php:508 msgid "" "Don't include the content of a post/comment/private message/etc. in the " "email notifications that are sent out from this site, as a privacy measure." msgstr "Nu include conținutul unui post/comentariu/mesaj privat/etc. în notificările prin email, ce sunt trimise de pe acest site, ca și masură de confidenţialitate." -#: src/Module/Admin/Site.php:507 +#: src/Module/Admin/Site.php:509 msgid "Disallow public access to addons listed in the apps menu." msgstr "Nu permiteţi accesul public la suplimentele enumerate în meniul de aplicaţii." -#: src/Module/Admin/Site.php:507 +#: src/Module/Admin/Site.php:509 msgid "" "Checking this box will restrict addons listed in the apps menu to members " "only." msgstr "Bifând această casetă va restricționa, suplimentele enumerate în meniul de aplicaţii, exclusiv la accesul membrilor." -#: src/Module/Admin/Site.php:508 +#: src/Module/Admin/Site.php:510 msgid "Don't embed private images in posts" msgstr "Nu încorpora imagini private în postări" -#: src/Module/Admin/Site.php:508 +#: src/Module/Admin/Site.php:510 msgid "" "Don't replace locally-hosted private photos in posts with an embedded copy " "of the image. This means that contacts who receive posts containing private " @@ -4823,11 +4823,11 @@ msgid "" "while." msgstr "Nu înlocui fotografiile private, locale, din postări cu o copie încorporată imaginii. Aceasta înseamnă că, contactele care primesc postări ce conțin fotografii private vor trebui să se autentifice şi să încarce fiecare imagine, ceea ce poate dura ceva timp." -#: src/Module/Admin/Site.php:509 +#: src/Module/Admin/Site.php:511 msgid "Explicit Content" msgstr "Conținut explicit" -#: src/Module/Admin/Site.php:509 +#: src/Module/Admin/Site.php:511 msgid "" "Set this to announce that your node is used mostly for explicit content that" " might not be suited for minors. This information will be published in the " @@ -4836,319 +4836,329 @@ msgid "" "will be shown at the user registration page." msgstr "" -#: src/Module/Admin/Site.php:510 +#: src/Module/Admin/Site.php:512 msgid "Proxify external content" msgstr "" -#: src/Module/Admin/Site.php:510 +#: src/Module/Admin/Site.php:512 msgid "" "Route external content via the proxy functionality. This is used for example" " for some OEmbed accesses and in some other rare cases." msgstr "" -#: src/Module/Admin/Site.php:511 +#: src/Module/Admin/Site.php:513 msgid "Only local search" msgstr "" -#: src/Module/Admin/Site.php:511 +#: src/Module/Admin/Site.php:513 msgid "" "Blocks search for users who are not logged in to prevent crawlers from " "blocking your system." msgstr "" -#: src/Module/Admin/Site.php:512 +#: src/Module/Admin/Site.php:514 msgid "Blocked tags for trending tags" msgstr "" -#: src/Module/Admin/Site.php:512 +#: src/Module/Admin/Site.php:514 msgid "" "Comma separated list of hashtags that shouldn't be displayed in the trending" " tags." msgstr "" -#: src/Module/Admin/Site.php:513 +#: src/Module/Admin/Site.php:515 msgid "Cache contact avatars" msgstr "" -#: src/Module/Admin/Site.php:513 +#: src/Module/Admin/Site.php:515 msgid "" "Locally store the avatar pictures of the contacts. This uses a lot of " "storage space but it increases the performance." msgstr "" -#: src/Module/Admin/Site.php:514 +#: src/Module/Admin/Site.php:516 msgid "Allow Users to set remote_self" msgstr "Permite utilizatorilor să-și stabilească remote_self" -#: src/Module/Admin/Site.php:514 +#: src/Module/Admin/Site.php:516 msgid "" "With checking this, every user is allowed to mark every contact as a " "remote_self in the repair contact dialog. Setting this flag on a contact " "causes mirroring every posting of that contact in the users stream." msgstr "Bifând aceasta, fiecărui utilizator îi este permis să marcheze fiecare contact, ca și propriu_la-distanță în dialogul de remediere contact. Stabilind acest marcaj unui un contact, va determina oglindirea fiecărei postări a respectivului contact, în fluxul utilizatorilor." -#: src/Module/Admin/Site.php:515 +#: src/Module/Admin/Site.php:517 msgid "Adjust the feed poll frequency" msgstr "" -#: src/Module/Admin/Site.php:515 +#: src/Module/Admin/Site.php:517 msgid "Automatically detect and set the best feed poll frequency." msgstr "" -#: src/Module/Admin/Site.php:516 +#: src/Module/Admin/Site.php:518 msgid "Minimum poll interval" msgstr "" -#: src/Module/Admin/Site.php:516 +#: src/Module/Admin/Site.php:518 msgid "" "Minimal distance in minutes between two polls for mail and feed contacts. " "Reasonable values are between 1 and 59." msgstr "" -#: src/Module/Admin/Site.php:517 +#: src/Module/Admin/Site.php:519 msgid "Enable multiple registrations" msgstr "Permite înregistrări multiple" -#: src/Module/Admin/Site.php:517 +#: src/Module/Admin/Site.php:519 msgid "Enable users to register additional accounts for use as pages." msgstr "Permite utilizatorilor să înregistreze conturi adiționale care să poată fi folosite drept pagini." -#: src/Module/Admin/Site.php:518 +#: src/Module/Admin/Site.php:520 msgid "Enable OpenID" msgstr "Activează OpenID" -#: src/Module/Admin/Site.php:518 +#: src/Module/Admin/Site.php:520 msgid "Enable OpenID support for registration and logins." msgstr "Activează suportul OpenID pentru înregistrare și login." -#: src/Module/Admin/Site.php:519 +#: src/Module/Admin/Site.php:521 msgid "Enable full name check" msgstr "" -#: src/Module/Admin/Site.php:519 +#: src/Module/Admin/Site.php:521 msgid "" "Prevents users from registering with a display name with fewer than two " "parts separated by spaces." msgstr "" -#: src/Module/Admin/Site.php:520 +#: src/Module/Admin/Site.php:522 msgid "Email administrators on new registration" msgstr "" -#: src/Module/Admin/Site.php:520 +#: src/Module/Admin/Site.php:522 msgid "" "If enabled and the system is set to an open registration, an email for each " "new registration is sent to the administrators." msgstr "" -#: src/Module/Admin/Site.php:521 +#: src/Module/Admin/Site.php:523 msgid "Community pages for visitors" msgstr "" -#: src/Module/Admin/Site.php:521 +#: src/Module/Admin/Site.php:523 msgid "" "Which community pages should be available for visitors. Local users always " "see both pages." msgstr "" -#: src/Module/Admin/Site.php:522 +#: src/Module/Admin/Site.php:524 msgid "Posts per user on community page" msgstr "" -#: src/Module/Admin/Site.php:522 -msgid "" -"The maximum number of posts per user on the community page. (Not valid for " -"\"Global Community\")" -msgstr "" - -#: src/Module/Admin/Site.php:524 -msgid "Enable Mail support" -msgstr "" - #: src/Module/Admin/Site.php:524 msgid "" -"Enable built-in mail support to poll IMAP folders and to reply via mail." +"The maximum number of posts per user on the local community page. This is " +"useful, when a single user floods the local community page." +msgstr "" + +#: src/Module/Admin/Site.php:525 +msgid "Posts per server on community page" msgstr "" #: src/Module/Admin/Site.php:525 msgid "" +"The maximum number of posts per server on the global community page. This is" +" useful, when posts from a single server flood the global community page." +msgstr "" + +#: src/Module/Admin/Site.php:527 +msgid "Enable Mail support" +msgstr "" + +#: src/Module/Admin/Site.php:527 +msgid "" +"Enable built-in mail support to poll IMAP folders and to reply via mail." +msgstr "" + +#: src/Module/Admin/Site.php:528 +msgid "" "Mail support can't be enabled because the PHP IMAP module is not installed." msgstr "" -#: src/Module/Admin/Site.php:526 +#: src/Module/Admin/Site.php:529 msgid "Enable OStatus support" msgstr "" -#: src/Module/Admin/Site.php:526 +#: src/Module/Admin/Site.php:529 msgid "" "Enable built-in OStatus (StatusNet, GNU Social etc.) compatibility. All " "communications in OStatus are public." msgstr "" -#: src/Module/Admin/Site.php:528 +#: src/Module/Admin/Site.php:531 msgid "" "Diaspora support can't be enabled because Friendica was installed into a sub" " directory." msgstr "Suportul pentru Diaspora nu poate fi activat deoarece Friendica a fost instalată într-un subdirector." -#: src/Module/Admin/Site.php:529 +#: src/Module/Admin/Site.php:532 msgid "Enable Diaspora support" msgstr "Activează Suport Diaspora" -#: src/Module/Admin/Site.php:529 +#: src/Module/Admin/Site.php:532 msgid "" "Enable built-in Diaspora network compatibility for communicating with " "diaspora servers." msgstr "" -#: src/Module/Admin/Site.php:530 +#: src/Module/Admin/Site.php:533 msgid "Verify SSL" msgstr "Verifică SSL" -#: src/Module/Admin/Site.php:530 +#: src/Module/Admin/Site.php:533 msgid "" "If you wish, you can turn on strict certificate checking. This will mean you" " cannot connect (at all) to self-signed SSL sites." msgstr "Dacă doriţi, puteţi porni verificarea cu strictețe a certificatului. Aceasta va însemna că nu vă puteţi conecta (deloc) la site-uri SSL auto-semnate." -#: src/Module/Admin/Site.php:531 +#: src/Module/Admin/Site.php:534 msgid "Proxy user" msgstr "Proxy user" -#: src/Module/Admin/Site.php:531 +#: src/Module/Admin/Site.php:534 msgid "User name for the proxy server." msgstr "" -#: src/Module/Admin/Site.php:532 +#: src/Module/Admin/Site.php:535 msgid "Proxy URL" msgstr "Proxy URL" -#: src/Module/Admin/Site.php:532 +#: src/Module/Admin/Site.php:535 msgid "" "If you want to use a proxy server that Friendica should use to connect to " "the network, put the URL of the proxy here." msgstr "" -#: src/Module/Admin/Site.php:533 +#: src/Module/Admin/Site.php:536 msgid "Network timeout" msgstr "Timp de expirare rețea" -#: src/Module/Admin/Site.php:533 +#: src/Module/Admin/Site.php:536 msgid "Value is in seconds. Set to 0 for unlimited (not recommended)." msgstr "Valoare exprimată în secunde. Stabiliți la 0 pentru nelimitat (nu este recomandat)." -#: src/Module/Admin/Site.php:534 +#: src/Module/Admin/Site.php:537 msgid "Maximum Load Average" msgstr "Media Maximă de Încărcare" -#: src/Module/Admin/Site.php:534 +#: src/Module/Admin/Site.php:537 #, php-format msgid "" "Maximum system load before delivery and poll processes are deferred - " "default %d." msgstr "" -#: src/Module/Admin/Site.php:535 +#: src/Module/Admin/Site.php:538 msgid "Minimal Memory" msgstr "" -#: src/Module/Admin/Site.php:535 +#: src/Module/Admin/Site.php:538 msgid "" "Minimal free memory in MB for the worker. Needs access to /proc/meminfo - " "default 0 (deactivated)." msgstr "" -#: src/Module/Admin/Site.php:536 +#: src/Module/Admin/Site.php:539 msgid "Periodically optimize tables" msgstr "" -#: src/Module/Admin/Site.php:536 +#: src/Module/Admin/Site.php:539 msgid "Periodically optimize tables like the cache and the workerqueue" msgstr "" -#: src/Module/Admin/Site.php:538 +#: src/Module/Admin/Site.php:541 msgid "Discover followers/followings from contacts" msgstr "" -#: src/Module/Admin/Site.php:538 +#: src/Module/Admin/Site.php:541 msgid "" "If enabled, contacts are checked for their followers and following contacts." msgstr "" -#: src/Module/Admin/Site.php:539 +#: src/Module/Admin/Site.php:542 msgid "None - deactivated" msgstr "" -#: src/Module/Admin/Site.php:540 +#: src/Module/Admin/Site.php:543 msgid "" "Local contacts - contacts of our local contacts are discovered for their " "followers/followings." msgstr "" -#: src/Module/Admin/Site.php:541 +#: src/Module/Admin/Site.php:544 msgid "" "Interactors - contacts of our local contacts and contacts who interacted on " "locally visible postings are discovered for their followers/followings." msgstr "" -#: src/Module/Admin/Site.php:543 +#: src/Module/Admin/Site.php:546 msgid "Only update contacts/servers with local data" msgstr "" -#: src/Module/Admin/Site.php:543 +#: src/Module/Admin/Site.php:546 msgid "" "If enabled, the system will only look for changes in contacts and servers " "that engaged on this system by either being in a contact list of a user or " "when posts or comments exists from the contact on this system." msgstr "" -#: src/Module/Admin/Site.php:544 +#: src/Module/Admin/Site.php:547 msgid "Synchronize the contacts with the directory server" msgstr "" -#: src/Module/Admin/Site.php:544 +#: src/Module/Admin/Site.php:547 msgid "" "if enabled, the system will check periodically for new contacts on the " "defined directory server." msgstr "" -#: src/Module/Admin/Site.php:546 +#: src/Module/Admin/Site.php:549 msgid "Discover contacts from other servers" msgstr "Descoperă contacte de pe alte servere" -#: src/Module/Admin/Site.php:546 +#: src/Module/Admin/Site.php:549 msgid "" "Periodically query other servers for contacts and servers that they know of." " The system queries Friendica, Mastodon and Hubzilla servers. Keep it " "deactivated on small machines to decrease the database size and load." msgstr "" -#: src/Module/Admin/Site.php:547 +#: src/Module/Admin/Site.php:550 msgid "Days between requery" msgstr "" -#: src/Module/Admin/Site.php:547 +#: src/Module/Admin/Site.php:550 msgid "" "Number of days after which a server is requeried for their contacts and " "servers it knows of. This is only used when the discovery is activated." msgstr "" -#: src/Module/Admin/Site.php:548 +#: src/Module/Admin/Site.php:551 msgid "Search the local directory" msgstr "" -#: src/Module/Admin/Site.php:548 +#: src/Module/Admin/Site.php:551 msgid "" "Search the local directory instead of the global directory. When searching " "locally, every search will be executed on the global directory in the " "background. This improves the search results when the search is repeated." msgstr "" -#: src/Module/Admin/Site.php:550 +#: src/Module/Admin/Site.php:553 msgid "Publish server information" msgstr "" -#: src/Module/Admin/Site.php:550 +#: src/Module/Admin/Site.php:553 msgid "" "If enabled, general server and usage data will be published. The data " "contains the name and version of the server, number of users with public " @@ -5156,50 +5166,50 @@ msgid "" " href=\"http://the-federation.info/\">the-federation.info for details." msgstr "" -#: src/Module/Admin/Site.php:552 +#: src/Module/Admin/Site.php:555 msgid "Check upstream version" msgstr "" -#: src/Module/Admin/Site.php:552 +#: src/Module/Admin/Site.php:555 msgid "" "Enables checking for new Friendica versions at github. If there is a new " "version, you will be informed in the admin panel overview." msgstr "" -#: src/Module/Admin/Site.php:553 +#: src/Module/Admin/Site.php:556 msgid "Suppress Tags" msgstr "" -#: src/Module/Admin/Site.php:553 +#: src/Module/Admin/Site.php:556 msgid "Suppress showing a list of hashtags at the end of the posting." msgstr "" -#: src/Module/Admin/Site.php:554 +#: src/Module/Admin/Site.php:557 msgid "Clean database" msgstr "" -#: src/Module/Admin/Site.php:554 +#: src/Module/Admin/Site.php:557 msgid "" "Remove old remote items, orphaned database records and old content from some" " other helper tables." msgstr "" -#: src/Module/Admin/Site.php:555 +#: src/Module/Admin/Site.php:558 msgid "Lifespan of remote items" msgstr "" -#: src/Module/Admin/Site.php:555 +#: src/Module/Admin/Site.php:558 msgid "" "When the database cleanup is enabled, this defines the days after which " "remote items will be deleted. Own items, and marked or filed items are " "always kept. 0 disables this behaviour." msgstr "" -#: src/Module/Admin/Site.php:556 +#: src/Module/Admin/Site.php:559 msgid "Lifespan of unclaimed items" msgstr "" -#: src/Module/Admin/Site.php:556 +#: src/Module/Admin/Site.php:559 msgid "" "When the database cleanup is enabled, this defines the days after which " "unclaimed remote items (mostly content from the relay) will be deleted. " @@ -5207,165 +5217,165 @@ msgid "" "items if set to 0." msgstr "" -#: src/Module/Admin/Site.php:557 +#: src/Module/Admin/Site.php:560 msgid "Lifespan of raw conversation data" msgstr "" -#: src/Module/Admin/Site.php:557 +#: src/Module/Admin/Site.php:560 msgid "" "The conversation data is used for ActivityPub and OStatus, as well as for " "debug purposes. It should be safe to remove it after 14 days, default is 90 " "days." msgstr "" -#: src/Module/Admin/Site.php:558 +#: src/Module/Admin/Site.php:561 msgid "Maximum numbers of comments per post" msgstr "Numărul maxim de comentarii per post" -#: src/Module/Admin/Site.php:558 +#: src/Module/Admin/Site.php:561 msgid "How much comments should be shown for each post? Default value is 100." msgstr "Câte comentarii ar trebui afișate pentru fiecare postare? Valoarea implicită este 100." -#: src/Module/Admin/Site.php:559 +#: src/Module/Admin/Site.php:562 msgid "Maximum numbers of comments per post on the display page" msgstr "" -#: src/Module/Admin/Site.php:559 +#: src/Module/Admin/Site.php:562 msgid "" "How many comments should be shown on the single view for each post? Default " "value is 1000." msgstr "" -#: src/Module/Admin/Site.php:560 +#: src/Module/Admin/Site.php:563 msgid "Items per page" msgstr "" -#: src/Module/Admin/Site.php:560 +#: src/Module/Admin/Site.php:563 msgid "" "Number of items per page in stream pages (network, community, " "profile/contact statuses, search)." msgstr "" -#: src/Module/Admin/Site.php:561 +#: src/Module/Admin/Site.php:564 msgid "Items per page for mobile devices" msgstr "" -#: src/Module/Admin/Site.php:561 +#: src/Module/Admin/Site.php:564 msgid "" "Number of items per page in stream pages (network, community, " "profile/contact statuses, search) for mobile devices." msgstr "" -#: src/Module/Admin/Site.php:562 +#: src/Module/Admin/Site.php:565 msgid "Temp path" msgstr "Calea Temp" -#: src/Module/Admin/Site.php:562 +#: src/Module/Admin/Site.php:565 msgid "" "If you have a restricted system where the webserver can't access the system " "temp path, enter another path here." msgstr "Dacă aveți un sistem restricționat unde serverul web nu poate accesa calea temp a sistemului, introduceți o nouă cale aici." -#: src/Module/Admin/Site.php:563 +#: src/Module/Admin/Site.php:566 msgid "Only search in tags" msgstr "Caută numai etichete" -#: src/Module/Admin/Site.php:563 +#: src/Module/Admin/Site.php:566 msgid "On large systems the text search can slow down the system extremely." msgstr "" -#: src/Module/Admin/Site.php:564 +#: src/Module/Admin/Site.php:567 msgid "Generate counts per contact circle when calculating network count" msgstr "" -#: src/Module/Admin/Site.php:564 +#: src/Module/Admin/Site.php:567 msgid "" "On systems with users that heavily use contact circles the query can be very" " expensive." msgstr "" -#: src/Module/Admin/Site.php:565 +#: src/Module/Admin/Site.php:568 msgid "Process \"view\" activities" msgstr "" -#: src/Module/Admin/Site.php:565 +#: src/Module/Admin/Site.php:568 msgid "" "\"view\" activities are mostly geberated by Peertube systems. Per default " "they are not processed for performance reasons. Only activate this option on" " performant system." msgstr "" -#: src/Module/Admin/Site.php:566 +#: src/Module/Admin/Site.php:569 msgid "Days, after which a contact is archived" msgstr "" -#: src/Module/Admin/Site.php:566 +#: src/Module/Admin/Site.php:569 msgid "" "Number of days that we try to deliver content or to update the contact data " "before we archive a contact." msgstr "" -#: src/Module/Admin/Site.php:568 +#: src/Module/Admin/Site.php:571 msgid "Maximum number of parallel workers" msgstr "" -#: src/Module/Admin/Site.php:568 +#: src/Module/Admin/Site.php:571 #, php-format msgid "" "On shared hosters set this to %d. On larger systems, values of %d are great." " Default value is %d." msgstr "" -#: src/Module/Admin/Site.php:569 +#: src/Module/Admin/Site.php:572 msgid "Maximum load for workers" msgstr "" -#: src/Module/Admin/Site.php:569 +#: src/Module/Admin/Site.php:572 msgid "Maximum load that causes a cooldown before each worker function call." msgstr "" -#: src/Module/Admin/Site.php:570 +#: src/Module/Admin/Site.php:573 msgid "Enable fastlane" msgstr "" -#: src/Module/Admin/Site.php:570 +#: src/Module/Admin/Site.php:573 msgid "" "When enabed, the fastlane mechanism starts an additional worker if processes" " with higher priority are blocked by processes of lower priority." msgstr "" -#: src/Module/Admin/Site.php:571 +#: src/Module/Admin/Site.php:574 msgid "Decoupled receiver" msgstr "" -#: src/Module/Admin/Site.php:571 +#: src/Module/Admin/Site.php:574 msgid "" "Decouple incoming ActivityPub posts by processing them in the background via" " a worker process. Only enable this on fast systems." msgstr "" -#: src/Module/Admin/Site.php:572 +#: src/Module/Admin/Site.php:575 msgid "Cron interval" msgstr "" -#: src/Module/Admin/Site.php:572 +#: src/Module/Admin/Site.php:575 msgid "Minimal period in minutes between two calls of the \"Cron\" worker job." msgstr "" -#: src/Module/Admin/Site.php:573 +#: src/Module/Admin/Site.php:576 msgid "Worker defer limit" msgstr "" -#: src/Module/Admin/Site.php:573 +#: src/Module/Admin/Site.php:576 msgid "" "Per default the systems tries delivering for 15 times before dropping it." msgstr "" -#: src/Module/Admin/Site.php:574 +#: src/Module/Admin/Site.php:577 msgid "Worker fetch limit" msgstr "" -#: src/Module/Admin/Site.php:574 +#: src/Module/Admin/Site.php:577 msgid "" "Number of worker tasks that are fetched in a single query. Higher values " "should increase the performance, too high values will mostly likely decrease" @@ -5373,142 +5383,142 @@ msgid "" "system." msgstr "" -#: src/Module/Admin/Site.php:576 +#: src/Module/Admin/Site.php:579 msgid "Direct relay transfer" msgstr "" -#: src/Module/Admin/Site.php:576 +#: src/Module/Admin/Site.php:579 msgid "" "Enables the direct transfer to other servers without using the relay servers" msgstr "" -#: src/Module/Admin/Site.php:577 +#: src/Module/Admin/Site.php:580 msgid "Relay scope" msgstr "" -#: src/Module/Admin/Site.php:577 +#: src/Module/Admin/Site.php:580 msgid "" "Can be \"all\" or \"tags\". \"all\" means that every public post should be " "received. \"tags\" means that only posts with selected tags should be " "received." msgstr "" -#: src/Module/Admin/Site.php:577 src/Module/Contact/Profile.php:309 +#: src/Module/Admin/Site.php:580 src/Module/Contact/Profile.php:309 #: src/Module/Settings/TwoFactor/Index.php:146 msgid "Disabled" msgstr "Dezactivat" -#: src/Module/Admin/Site.php:577 +#: src/Module/Admin/Site.php:580 msgid "all" msgstr "toate" -#: src/Module/Admin/Site.php:577 +#: src/Module/Admin/Site.php:580 msgid "tags" msgstr "etichete" -#: src/Module/Admin/Site.php:578 +#: src/Module/Admin/Site.php:581 msgid "Server tags" msgstr "Etichete server" -#: src/Module/Admin/Site.php:578 +#: src/Module/Admin/Site.php:581 msgid "Comma separated list of tags for the \"tags\" subscription." msgstr "" -#: src/Module/Admin/Site.php:579 +#: src/Module/Admin/Site.php:582 msgid "Deny Server tags" msgstr "" -#: src/Module/Admin/Site.php:579 +#: src/Module/Admin/Site.php:582 msgid "Comma separated list of tags that are rejected." msgstr "" -#: src/Module/Admin/Site.php:580 +#: src/Module/Admin/Site.php:583 msgid "Allow user tags" msgstr "" -#: src/Module/Admin/Site.php:580 +#: src/Module/Admin/Site.php:583 msgid "" "If enabled, the tags from the saved searches will used for the \"tags\" " "subscription in addition to the \"relay_server_tags\"." msgstr "" -#: src/Module/Admin/Site.php:581 +#: src/Module/Admin/Site.php:584 msgid "Deny undetected languages" msgstr "" -#: src/Module/Admin/Site.php:581 +#: src/Module/Admin/Site.php:584 msgid "If enabled, posts with undetected languages will be rejected." msgstr "" -#: src/Module/Admin/Site.php:582 +#: src/Module/Admin/Site.php:585 msgid "Language Quality" msgstr "" -#: src/Module/Admin/Site.php:582 +#: src/Module/Admin/Site.php:585 msgid "The minimum language quality that is required to accept the post." msgstr "" -#: src/Module/Admin/Site.php:583 +#: src/Module/Admin/Site.php:586 msgid "Number of languages for the language detection" msgstr "" -#: src/Module/Admin/Site.php:583 +#: src/Module/Admin/Site.php:586 msgid "" "The system detects a list of languages per post. Only if the desired " "languages are in the list, the message will be accepted. The higher the " "number, the more posts will be falsely detected." msgstr "" -#: src/Module/Admin/Site.php:585 +#: src/Module/Admin/Site.php:588 msgid "Maximum age of channel" msgstr "" -#: src/Module/Admin/Site.php:585 +#: src/Module/Admin/Site.php:588 msgid "" "This defines the maximum age in hours of items that should be displayed in " "channels. This affects the channel performance." msgstr "" -#: src/Module/Admin/Site.php:586 +#: src/Module/Admin/Site.php:589 msgid "Maximum number of channel posts" msgstr "" -#: src/Module/Admin/Site.php:586 +#: src/Module/Admin/Site.php:589 msgid "" "For performance reasons, the channels use a dedicated table to store " "content. The higher the value the slower the channels." msgstr "" -#: src/Module/Admin/Site.php:587 +#: src/Module/Admin/Site.php:590 msgid "Interaction score days" msgstr "" -#: src/Module/Admin/Site.php:587 +#: src/Module/Admin/Site.php:590 msgid "Number of days that are used to calculate the interaction score." msgstr "" -#: src/Module/Admin/Site.php:588 +#: src/Module/Admin/Site.php:591 msgid "Maximum number of posts per author" msgstr "" -#: src/Module/Admin/Site.php:588 +#: src/Module/Admin/Site.php:591 msgid "" "Maximum number of posts per page by author if the contact frequency is set " "to \"Display only few posts\". If there are more posts, then the post with " "the most interactions will be displayed." msgstr "" -#: src/Module/Admin/Site.php:589 +#: src/Module/Admin/Site.php:592 msgid "Sharer interaction days" msgstr "" -#: src/Module/Admin/Site.php:589 +#: src/Module/Admin/Site.php:592 msgid "" "Number of days of the last interaction that are used to define which sharers" " are used for the \"sharers of sharers\" channel." msgstr "" -#: src/Module/Admin/Site.php:592 +#: src/Module/Admin/Site.php:595 msgid "Start Relocation" msgstr "" @@ -6134,7 +6144,7 @@ msgstr "Evenimentul începe de la:" #: src/Module/Moderation/Blocklist/Server/Index.php:116 #: src/Module/Moderation/Item/Delete.php:67 src/Module/Register.php:148 #: src/Module/Security/TwoFactor/Verify.php:101 -#: src/Module/Settings/Channels.php:131 src/Module/Settings/Channels.php:147 +#: src/Module/Settings/Channels.php:139 src/Module/Settings/Channels.php:156 #: src/Module/Settings/TwoFactor/Index.php:161 #: src/Module/Settings/TwoFactor/Verify.php:158 msgid "Required" @@ -6221,7 +6231,7 @@ msgstr "Cerc negăsit." #: src/Module/Contact/Advanced.php:70 src/Module/Contact/Advanced.php:109 #: src/Module/Contact/Contacts.php:71 src/Module/Contact/Conversations.php:84 #: src/Module/Contact/Conversations.php:89 -#: src/Module/Contact/Conversations.php:94 src/Module/Contact/Media.php:43 +#: src/Module/Contact/Conversations.php:94 src/Module/Contact/Media.php:61 #: src/Module/Contact/Posts.php:78 src/Module/Contact/Posts.php:83 #: src/Module/Contact/Posts.php:88 src/Module/Contact/Profile.php:154 #: src/Module/Contact/Profile.php:159 src/Module/Contact/Profile.php:164 @@ -6344,7 +6354,7 @@ msgstr "Se afişează numai contactele ignorate" #: src/Module/Contact.php:376 src/Module/Contact.php:443 msgid "Collapsed" -msgstr "" +msgstr "Colapsat" #: src/Module/Contact.php:379 msgid "Only show collapsed contacts" @@ -7041,15 +7051,15 @@ msgstr "" msgid "Network feed not available." msgstr "" -#: src/Module/Conversation/Timeline.php:166 +#: src/Module/Conversation/Timeline.php:168 msgid "Own Contacts" msgstr "" -#: src/Module/Conversation/Timeline.php:170 +#: src/Module/Conversation/Timeline.php:172 msgid "Include" msgstr "Include" -#: src/Module/Conversation/Timeline.php:171 +#: src/Module/Conversation/Timeline.php:173 msgid "Hide" msgstr "Ascunde" @@ -7396,7 +7406,7 @@ msgstr "Pe acest server, următoarele servere sunt blocate." #: src/Module/Friendica.php:102 #: src/Module/Moderation/Blocklist/Server/Index.php:87 #: src/Module/Moderation/Blocklist/Server/Index.php:111 -#: src/Module/Settings/Channels.php:165 +#: src/Module/Settings/Channels.php:174 msgid "Reason for the block" msgstr "Motivul blocării" @@ -8151,7 +8161,7 @@ msgstr "" #: src/Module/Moderation/Blocklist/Server/Index.php:86 #: src/Module/Moderation/Blocklist/Server/Index.php:110 -#: src/Module/Settings/Channels.php:164 +#: src/Module/Settings/Channels.php:173 msgid "Blocked server domain pattern" msgstr "" @@ -9834,7 +9844,7 @@ msgstr "Configurări Parolă" #: src/Module/Settings/Account.php:548 msgid "Leave password fields blank unless changing" -msgstr "Lăsaţi câmpurile, pentru parolă, goale dacă nu doriți să modificați" +msgstr "Lăsați câmpurile pentru parolă goale dacă nu doriți să o modificați" #: src/Module/Settings/Account.php:550 msgid "Password:" @@ -9842,7 +9852,7 @@ msgstr "Parola:" #: src/Module/Settings/Account.php:550 msgid "Your current password to confirm the changes of the email address" -msgstr "" +msgstr "Parola dumneavoastră actuală pentru a confirma schimbările de adresă email." #: src/Module/Settings/Account.php:553 msgid "Delete OpenID URL" @@ -9909,17 +9919,17 @@ msgstr "" #: src/Module/Settings/Account.php:568 msgid "Hide your contact/friend list from viewers of your profile?" -msgstr "" +msgstr "Ascundeți lista dumneavoastră de contacte/prieteni vizitatorilor profilului?" #: src/Module/Settings/Account.php:568 msgid "" "A list of your contacts is displayed on your profile page. Activate this " "option to disable the display of your contact list." -msgstr "" +msgstr "O listă de contacte este afișată pe pagina de profil a dumneavoastră. Activați această opțiune pentru a dezactiva afișarea listei de contacte." #: src/Module/Settings/Account.php:569 msgid "Hide your public content from anonymous viewers" -msgstr "" +msgstr "Ascundeți-vă conținutul public utilizatorilor anonimi" #: src/Module/Settings/Account.php:569 msgid "" @@ -9977,7 +9987,7 @@ msgstr "Permiteți persoanelor necunoscute să vă trimită mesaje private?" msgid "" "Friendica network users may send you private messages even if they are not " "in your contact list." -msgstr "" +msgstr "Utilizatorii de pe rețeaua Friendica vă pot trimite mesaje private chiar și dacă nu fac parte din lista dumneavoastră de contacte." #: src/Module/Settings/Account.php:575 msgid "Maximum private messages per day from unknown people:" @@ -10042,7 +10052,7 @@ msgstr "Expiră numai postările celorlalți" msgid "" "When activated, your own posts never expire. Then the settings above are " "only valid for posts you received." -msgstr "" +msgstr "Când aceasta este activată, postările dumneavoastră nu vor expira niciodată. Apoi setările de mai sus devin valide doar pentru postările pe care le-ați primit." #: src/Module/Settings/Account.php:590 msgid "Notification Settings" @@ -10173,7 +10183,7 @@ msgstr "" #: src/Module/Settings/Account.php:636 msgid "Upload File" -msgstr "" +msgstr "Încărcați fișierul" #: src/Module/Settings/Account.php:639 msgid "Relocate" @@ -10197,76 +10207,76 @@ msgstr "Setări suplimente" msgid "No Addon settings configured" msgstr "" -#: src/Module/Settings/Channels.php:131 src/Module/Settings/Channels.php:147 +#: src/Module/Settings/Channels.php:139 src/Module/Settings/Channels.php:156 #: src/Module/Settings/Display.php:338 msgid "Label" -msgstr "" +msgstr "Etichetă" -#: src/Module/Settings/Channels.php:132 src/Module/Settings/Channels.php:148 +#: src/Module/Settings/Channels.php:140 src/Module/Settings/Channels.php:157 #: src/Module/Settings/Display.php:339 #: src/Module/Settings/TwoFactor/AppSpecific.php:137 msgid "Description" -msgstr "" +msgstr "Descriere" -#: src/Module/Settings/Channels.php:133 src/Module/Settings/Channels.php:149 +#: src/Module/Settings/Channels.php:141 src/Module/Settings/Channels.php:158 msgid "Access Key" -msgstr "" +msgstr "Cheie de acces" -#: src/Module/Settings/Channels.php:134 src/Module/Settings/Channels.php:150 +#: src/Module/Settings/Channels.php:142 src/Module/Settings/Channels.php:159 msgid "Circle/Channel" -msgstr "" +msgstr "Cerc/Canal" -#: src/Module/Settings/Channels.php:135 src/Module/Settings/Channels.php:151 +#: src/Module/Settings/Channels.php:143 src/Module/Settings/Channels.php:160 msgid "Include Tags" -msgstr "" +msgstr "Include etichete" -#: src/Module/Settings/Channels.php:136 src/Module/Settings/Channels.php:152 +#: src/Module/Settings/Channels.php:144 src/Module/Settings/Channels.php:161 msgid "Exclude Tags" -msgstr "" +msgstr "Exclude etichete" -#: src/Module/Settings/Channels.php:137 src/Module/Settings/Channels.php:153 +#: src/Module/Settings/Channels.php:145 src/Module/Settings/Channels.php:162 msgid "Full Text Search" msgstr "" -#: src/Module/Settings/Channels.php:141 +#: src/Module/Settings/Channels.php:149 msgid "Delete channel" -msgstr "" +msgstr "Ștergeți canalul" -#: src/Module/Settings/Channels.php:141 +#: src/Module/Settings/Channels.php:149 msgid "Check to delete this entry from the channel list" msgstr "" -#: src/Module/Settings/Channels.php:147 +#: src/Module/Settings/Channels.php:156 msgid "Short name for the channel. It is displayed on the channels widget." msgstr "Numele scurt al acestui canal. Va fi afișat în widget-ul cu canale." -#: src/Module/Settings/Channels.php:148 +#: src/Module/Settings/Channels.php:157 msgid "This should describe the content of the channel in a few word." msgstr "" -#: src/Module/Settings/Channels.php:149 +#: src/Module/Settings/Channels.php:158 msgid "" "When you want to access this channel via an access key, you can define it " "here. Pay attention to not use an already used one." msgstr "" -#: src/Module/Settings/Channels.php:150 +#: src/Module/Settings/Channels.php:159 msgid "Select a circle or channel, that your channel should be based on." msgstr "" -#: src/Module/Settings/Channels.php:151 +#: src/Module/Settings/Channels.php:160 msgid "" "Comma separated list of tags. A post will be used when it contains any of " "the listed tags." msgstr "" -#: src/Module/Settings/Channels.php:152 +#: src/Module/Settings/Channels.php:161 msgid "" "Comma separated list of tags. If a post contain any of these tags, then it " "will not be part of nthis channel." msgstr "" -#: src/Module/Settings/Channels.php:153 +#: src/Module/Settings/Channels.php:162 #, php-format msgid "" "Search terms for the body, supports the \"boolean mode\" operators from " @@ -10274,39 +10284,39 @@ msgid "" "keywords: %s" msgstr "" -#: src/Module/Settings/Channels.php:154 +#: src/Module/Settings/Channels.php:163 msgid "Check to display images in the channel." -msgstr "" +msgstr "Bifați pentru a afișa imagini în canal." -#: src/Module/Settings/Channels.php:155 +#: src/Module/Settings/Channels.php:164 msgid "Check to display videos in the channel." -msgstr "" +msgstr "Bifați pentru a afișa videoclipuri în canal." -#: src/Module/Settings/Channels.php:156 +#: src/Module/Settings/Channels.php:165 msgid "Check to display audio in the channel." -msgstr "" +msgstr "Bifați pentru a afișa audio în canal." -#: src/Module/Settings/Channels.php:159 +#: src/Module/Settings/Channels.php:168 msgid "This page can be used to define your own channels." msgstr "Această pagină poate fi folosită pentru a vă defini propriile canale." -#: src/Module/Settings/Channels.php:160 +#: src/Module/Settings/Channels.php:169 msgid "Add new entry to the channel list" -msgstr "" +msgstr "Adăugați o intrare nouă în lista canalului" -#: src/Module/Settings/Channels.php:161 +#: src/Module/Settings/Channels.php:170 msgid "Add" msgstr "Adăugare" -#: src/Module/Settings/Channels.php:163 +#: src/Module/Settings/Channels.php:172 msgid "Current Entries in the channel list" msgstr "" -#: src/Module/Settings/Channels.php:166 +#: src/Module/Settings/Channels.php:175 msgid "Delete entry from the channel list" msgstr "" -#: src/Module/Settings/Channels.php:167 +#: src/Module/Settings/Channels.php:176 msgid "Delete entry from the channel list?" msgstr "" @@ -10686,12 +10696,12 @@ msgstr "" #: src/Module/Settings/Display.php:331 msgid "Display the Dislike feature" -msgstr "" +msgstr "Afișați butonul Nu-mi place:" #: src/Module/Settings/Display.php:331 msgid "" "Display the Dislike button and dislike reactions on posts and comments." -msgstr "" +msgstr "Afișați butonul Nu-mi place și reacțiile Nu-mi place postărilor și comentariilor." #: src/Module/Settings/Display.php:332 msgid "Display the resharer" @@ -11063,7 +11073,7 @@ 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 "" +msgstr "Aici puteți vedea toate serverele externe împotriva cărora ați luat acțiuni de moderare. Pentru o listă a serverelor pe care nodul dumneavoastră le-a blocat, vă rugăm să verificați pagina de Informații." #: src/Module/Settings/Server/Index.php:110 msgid "Delete all your settings for the remote server" @@ -11082,24 +11092,24 @@ msgstr "" #: src/Module/Settings/TwoFactor/AppSpecific.php:87 msgid "App-specific password generation failed: The description is empty." -msgstr "" +msgstr "Generarea de parolă pentru o aplicație specifică a eșuat. Descrierea este goală." #: src/Module/Settings/TwoFactor/AppSpecific.php:90 msgid "" "App-specific password generation failed: This description already exists." -msgstr "" +msgstr "Generarea de parolă pentru o aplicație specifică a eșuat. Această descriere deja există." #: src/Module/Settings/TwoFactor/AppSpecific.php:94 msgid "New app-specific password generated." -msgstr "" +msgstr "Parola pentru o aplicație specifică a fost generată" #: src/Module/Settings/TwoFactor/AppSpecific.php:100 msgid "App-specific passwords successfully revoked." -msgstr "" +msgstr "Parolele de aplicații specifice au fost revocate cu succes." #: src/Module/Settings/TwoFactor/AppSpecific.php:110 msgid "App-specific password successfully revoked." -msgstr "" +msgstr "Parola pentru o aplicație specifică a fost revocată cu succes." #: src/Module/Settings/TwoFactor/AppSpecific.php:131 msgid "Two-factor app-specific passwords" @@ -11194,17 +11204,17 @@ msgstr "" #: src/Module/Settings/TwoFactor/Index.php:155 msgid "App-specific passwords" -msgstr "" +msgstr "Parole pentru aplicații specifice" #: src/Module/Settings/TwoFactor/Index.php:156 msgid "Generated app-specific passwords" -msgstr "" +msgstr "Parole generate pentru aplicații specifice" #: src/Module/Settings/TwoFactor/Index.php:158 msgid "" "

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

" -msgstr "" +msgstr "

Aceste parole generate aleatoriu vă permit să vă autentificați în aplicații care nu suportă autentificarea prin doi factori

" #: src/Module/Settings/TwoFactor/Index.php:161 msgid "Current password:" @@ -11214,7 +11224,7 @@ msgstr "Parola curentă:" msgid "" "You need to provide your current password to change two-factor " "authentication settings." -msgstr "" +msgstr "Aveți nevoie să furnizați parola dumneavoastră pentru a schimba setările autentificării cu doi factori." #: src/Module/Settings/TwoFactor/Index.php:162 msgid "Enable two-factor authentication" @@ -11246,7 +11256,7 @@ msgstr "" #: src/Module/Settings/TwoFactor/Recovery.php:109 msgid "Two-factor recovery codes" -msgstr "" +msgstr "Coduri de recuperare pentru autentificarea cu doi factori" #: src/Module/Settings/TwoFactor/Recovery.php:111 msgid "" @@ -11255,13 +11265,13 @@ msgid "" "codes.

Put these in a safe spot! If you lose your " "device and don’t have the recovery codes you will lose access to your " "account.

" -msgstr "" +msgstr "

Codurile de recuperare pot fi folosite pentru a vă accesa contul în cazul în care pierdeți accesul la dispozitivul dumneavoastră și nu mai puteți primi codurile de autentificare cu doi factori.

Puneți acestea într-un loc sigur! Dacă vă pierdeți dispozitivul și nu aveți codurile de recuperare veți pierde accesul la contul dumneavoastră.

" #: src/Module/Settings/TwoFactor/Recovery.php:113 msgid "" "When you generate new recovery codes, you must copy the new codes. Your old " "codes won’t work anymore." -msgstr "" +msgstr "Când veți genera noi coduri de recuperare, va trebui să copiați noile coduri. Vechile dumneavoastră coduri nu vor mai funcționa." #: src/Module/Settings/TwoFactor/Recovery.php:114 msgid "Generate new recovery codes" @@ -11316,7 +11326,7 @@ msgstr "" #: src/Module/Settings/TwoFactor/Verify.php:94 msgid "Two-factor authentication successfully activated." -msgstr "" +msgstr "Autentificarea cu doi factori a fost activată cu succes." #: src/Module/Settings/TwoFactor/Verify.php:128 #, php-format @@ -11346,7 +11356,7 @@ msgstr "" msgid "" "

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

" -msgstr "" +msgstr "

Vă rugăm să scanați acest cod QR cu aplicația dumneavoastră de autentificare și să furnizați codul oferit.

" #: src/Module/Settings/TwoFactor/Verify.php:152 #, php-format @@ -11357,7 +11367,7 @@ msgstr "" #: src/Module/Settings/TwoFactor/Verify.php:159 msgid "Verify code and enable two-factor authentication" -msgstr "" +msgstr "Verificați codul și activați autentificarea cu doi factori" #: src/Module/Settings/UserExport.php:90 msgid "Export account" @@ -11425,7 +11435,7 @@ msgstr "Din nefericire, conversația cerută nu este disponibilă." #: src/Module/Special/DisplayNotFound.php:47 msgid "Possible reasons include:" -msgstr "" +msgstr "Motivele posibile includ:" #: src/Module/Special/HTTPException.php:78 msgid "Stack trace:" @@ -11469,11 +11479,11 @@ msgstr "" #: src/Module/Tos.php:63 src/Module/Tos.php:106 msgid "Privacy Statement" -msgstr "" +msgstr "Declarație de Confidențialitate" #: src/Module/Tos.php:103 msgid "Rules" -msgstr "" +msgstr "Reguli" #: src/Module/Update/Display.php:45 msgid "Parameter uri_id is missing." @@ -11508,7 +11518,7 @@ msgstr "Selectaţi o identitate de gestionat:" #: src/Module/User/Import.php:103 msgid "User imports on closed servers can only be done by an administrator." -msgstr "" +msgstr "Importurile de utilizatori pe servere închise pot fi făcute doar de un administrator." #: src/Module/User/Import.php:119 msgid "Move account" @@ -11755,7 +11765,7 @@ msgstr "%s a apreciat ceea a publicat %s" #: src/Navigation/Notifications/Factory/FormattedNotify.php:108 #, php-format msgid "%s disliked %s's post" -msgstr "%s a nu a apreciat ceea a publicat %s" +msgstr "%s nu a apreciat ceea a publicat %s" #: src/Navigation/Notifications/Factory/FormattedNotify.php:120 #, php-format @@ -11823,7 +11833,7 @@ msgstr "Lui %1$s îi place postarea dumneavoastră %2$s" #: src/Navigation/Notifications/Factory/Notification.php:218 #, php-format msgid "%1$s disliked your comment on %2$s" -msgstr "" +msgstr "Lui %1$s nu-i place comentariul dumneavoastră la %2$s" #: src/Navigation/Notifications/Factory/Notification.php:221 #, php-format @@ -12461,40 +12471,45 @@ msgstr "" #: src/Object/Post.php:701 #, php-format -msgid "Liked by: %s" +msgid "Read by: %s" msgstr "" #: src/Object/Post.php:706 #, php-format -msgid "Disliked by: %s" +msgid "Liked by: %s" msgstr "" #: src/Object/Post.php:711 #, php-format -msgid "Attended by: %s" -msgstr "" +msgid "Disliked by: %s" +msgstr "Neapreciat de: %s" #: src/Object/Post.php:716 #, php-format -msgid "Maybe attended by: %s" +msgid "Attended by: %s" msgstr "" #: src/Object/Post.php:721 #, php-format -msgid "Not attended by: %s" +msgid "Maybe attended by: %s" msgstr "" #: src/Object/Post.php:726 #, php-format -msgid "Commented by: %s" +msgid "Not attended by: %s" msgstr "" #: src/Object/Post.php:731 #, php-format +msgid "Commented by: %s" +msgstr "" + +#: src/Object/Post.php:736 +#, php-format msgid "Reacted with %s by: %s" msgstr "" -#: src/Object/Post.php:754 +#: src/Object/Post.php:759 #, php-format msgid "Quote shared by: %s" msgstr "" diff --git a/view/lang/ro/strings.php b/view/lang/ro/strings.php index 41f3ee4615..05559486b1 100644 --- a/view/lang/ro/strings.php +++ b/view/lang/ro/strings.php @@ -72,7 +72,7 @@ $a->strings['Unable to locate contact information.'] = 'Nu se pot localiza infor $a->strings['Message could not be sent.'] = 'Mesajul nu a putut fi trimis.'; $a->strings['Message collection failure.'] = 'Eșec de colectare mesaj.'; $a->strings['Discard'] = 'Renunțați'; -$a->strings['Messages'] = 'Mesage'; +$a->strings['Messages'] = 'Mesaje'; $a->strings['Conversation not found.'] = 'Conversație negăsită.'; $a->strings['Message was not deleted.'] = 'Mesajul nu a fost șters.'; $a->strings['Conversation was not removed.'] = 'Conversația nu a fost ștearsă.'; @@ -85,7 +85,7 @@ $a->strings['Upload photo'] = 'Încarcă foto'; $a->strings['Insert web link'] = 'Inserează link web'; $a->strings['Please wait'] = 'Aşteptaţi vă rog'; $a->strings['Submit'] = 'Trimite'; -$a->strings['No messages.'] = 'Nici-un mesaj.'; +$a->strings['No messages.'] = 'Niciun mesaj.'; $a->strings['Message not available.'] = 'Mesaj nedisponibil'; $a->strings['Delete message'] = 'Şterge mesaj'; $a->strings['D, d M Y - g:i A'] = 'D, d M Y - g:i A'; @@ -164,6 +164,9 @@ $a->strings['Apologies but the website is unavailable at the moment.'] = 'Ne par $a->strings['Delete this item?'] = 'Ștergeți acest element?'; $a->strings['Block this author? They won\'t be able to follow you nor see your public posts, and you won\'t be able to see their posts and their notifications.'] = 'Dorești să blochezi acest autor? Acesta nu va mai putea să te urmărească și nici să îți vadă postările publice, iar tu nu vei mai putea să-i vezi postările și notificările.'; $a->strings['Ignore this author? You won\'t be able to see their posts and their notifications.'] = 'Dorești să ignori acest autor? Nu îi vei mai putea vedea postările și notificările.'; +$a->strings['Collapse this author\'s posts?'] = 'Colapsați postările acestui autor?'; +$a->strings['Ignore this author\'s server?'] = 'Ignorați serverul acestui autor?'; +$a->strings['You won\'t see any content from this server including reshares in your Network page, the community pages and individual conversations.'] = 'Nu veți mai vedea niciun conținut de la acest server, inclusiv redistribuirile din pagina dumneavoastră de Rețea, paginile de comunitate sau conversațiile individuale.'; $a->strings['Like not successful'] = 'Apreciere eșuată'; $a->strings['Dislike not successful'] = 'Neapreciere eșuată'; $a->strings['Sharing not successful'] = 'Distribuire eșuată'; @@ -198,7 +201,7 @@ $a->strings['All pending post updates are done.'] = 'Toate actualizările de pos $a->strings['Enter user nickname: '] = 'Introduceți pseudonimul de utilizator:'; $a->strings['User not found'] = 'Utilizator negăsit'; $a->strings['Enter new password: '] = 'Introduceți noua parolă:'; -$a->strings['Password update failed. Please try again.'] = 'Actualizarea parolei a eșuat. Vă rugăm să reîncercați.'; +$a->strings['Password update failed. Please try again.'] = 'Actualizarea parolei a eșuat. Vă rugăm să încercați din nou.'; $a->strings['Password changed.'] = 'Parola a fost schimbată.'; $a->strings['Enter user name: '] = 'Introduceți numele de utilizator:'; $a->strings['Enter a language (optional): '] = 'Introduceți o limbă (opțional):'; @@ -276,6 +279,7 @@ $a->strings['Filed under:'] = 'Înscris în:'; $a->strings['%s from %s'] = '%s de la %s'; $a->strings['View in context'] = 'Vizualizare în context'; $a->strings['For you'] = 'Pentru tine'; +$a->strings['Images'] = 'Imagini'; $a->strings['Posts with images'] = 'Postări cu imagini'; $a->strings['Posts with audio'] = 'Postări cu audio'; $a->strings['Videos'] = 'Videoclipuri'; @@ -329,6 +333,8 @@ $a->strings['Network Posts'] = 'Postări din Rețea'; $a->strings['Send PM'] = 'Trimiteți mesaj personal'; $a->strings['Block'] = 'Blochează'; $a->strings['Ignore'] = 'Ignoră'; +$a->strings['Collapse'] = 'Colapsați'; +$a->strings['Ignore %s server'] = 'Ignorați serverul %s'; $a->strings['Connect/Follow'] = 'Conectare/Urmărire'; $a->strings['Nothing new here'] = 'Nimic nou aici'; $a->strings['Clear notifications'] = 'Ştergeţi notificările'; @@ -574,6 +580,7 @@ $a->strings['activity'] = 'activitate'; $a->strings['post'] = 'postare'; $a->strings['%s is blocked'] = '%s este blocat(-ă)'; $a->strings['%s is ignored'] = '%s este ignorat(-ă)'; +$a->strings['Content from %s is collapsed'] = 'Conținutul de la %s este colapsat'; $a->strings['Content warning: %s'] = 'Avertisment de conținut: %s'; $a->strings['bytes'] = 'octeţi'; $a->strings['%d voter.'] = [ @@ -862,6 +869,7 @@ $a->strings['Blocked'] = 'Blocat'; $a->strings['Only show blocked contacts'] = 'Se afişează numai contactele blocate'; $a->strings['Ignored'] = 'Ignorat'; $a->strings['Only show ignored contacts'] = 'Se afişează numai contactele ignorate'; +$a->strings['Collapsed'] = 'Colapsat'; $a->strings['Archived'] = 'Arhivat'; $a->strings['Only show archived contacts'] = 'Se afişează numai contactele arhivate'; $a->strings['Hidden'] = 'Ascuns'; @@ -1306,8 +1314,9 @@ $a->strings['Your profile will be published in this node\'s local d $a->strings['Account Settings'] = 'Configurări Cont'; $a->strings['Your Identity Address is \'%s\' or \'%s\'.'] = 'Adresa dumneavoastră de identitate este \'%s\' sau \'%s\'.'; $a->strings['Password Settings'] = 'Configurări Parolă'; -$a->strings['Leave password fields blank unless changing'] = 'Lăsaţi câmpurile, pentru parolă, goale dacă nu doriți să modificați'; +$a->strings['Leave password fields blank unless changing'] = 'Lăsați câmpurile pentru parolă goale dacă nu doriți să o modificați'; $a->strings['Password:'] = 'Parola:'; +$a->strings['Your current password to confirm the changes of the email address'] = 'Parola dumneavoastră actuală pentru a confirma schimbările de adresă email.'; $a->strings['Basic Settings'] = 'Configurări de Bază'; $a->strings['Display name:'] = 'Numele afișat:'; $a->strings['Email Address:'] = 'Adresa de email:'; @@ -1319,6 +1328,9 @@ $a->strings['Use Browser Location:'] = 'Folosește Locația Navigatorului:'; $a->strings['Security and Privacy Settings'] = 'Configurări de Securitate și Confidențialitate'; $a->strings['Maximum Friend Requests/Day:'] = 'Solicitări de Prietenie, Maxime/Zi'; $a->strings['(to prevent spam abuse)'] = '(Pentru a preveni abuzul de tip spam)'; +$a->strings['Hide your contact/friend list from viewers of your profile?'] = 'Ascundeți lista dumneavoastră de contacte/prieteni vizitatorilor profilului?'; +$a->strings['A list of your contacts is displayed on your profile page. Activate this option to disable the display of your contact list.'] = 'O listă de contacte este afișată pe pagina de profil a dumneavoastră. Activați această opțiune pentru a dezactiva afișarea listei de contacte.'; +$a->strings['Hide your public content from anonymous viewers'] = 'Ascundeți-vă conținutul public utilizatorilor anonimi'; $a->strings['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.'] = 'Vizitatorii anonimi vor vedea numai detaliile tale de bază. Postările și comentariile tale publice vor putea fi în continuare accesibile pe alte servere ale urmăritorilor tăi și prin relee.'; $a->strings['Make public posts unlisted'] = 'Delistați postările publice'; $a->strings['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.'] = 'Postările dumneavoastră publice nu vor apărea pe paginile de comunitate sau în rezultatele de căutare și nici nu vor fi trimise către servere-releu. Cu toate acestea, ele încă mai pot apărea pe feed-uri publice ale altor servere.'; @@ -1327,6 +1339,7 @@ $a->strings['Your contacts may write posts on your profile wall. These posts wil $a->strings['Allow friends to tag your posts?'] = 'Permiteți prietenilor să vă eticheteze postările?'; $a->strings['Your contacts can add additional tags to your posts.'] = 'Contactele dumneavoastră pot adăuga etichete adiționale în postările dumneavoastră.'; $a->strings['Permit unknown people to send you private mail?'] = 'Permiteți persoanelor necunoscute să vă trimită mesaje private?'; +$a->strings['Friendica network users may send you private messages even if they are not in your contact list.'] = 'Utilizatorii de pe rețeaua Friendica vă pot trimite mesaje private chiar și dacă nu fac parte din lista dumneavoastră de contacte.'; $a->strings['Maximum private messages per day from unknown people:'] = 'Maximum de mesaje private pe zi, de la persoanele necunoscute:'; $a->strings['Default Post Permissions'] = 'Permisiuni Implicite Postări'; $a->strings['Expiration settings'] = 'Setări de expirare'; @@ -1338,6 +1351,7 @@ $a->strings['Expire personal notes'] = 'Expiră notițe personale'; $a->strings['When activated, the personal notes on your profile page will be expired.'] = 'Când va fi activată, notițele personale de pe pagina dumneavoastră de profil vor expira.'; $a->strings['Expire starred posts'] = 'Expiră postări cu steluță'; $a->strings['Only expire posts by others'] = 'Expiră numai postările celorlalți'; +$a->strings['When activated, your own posts never expire. Then the settings above are only valid for posts you received.'] = 'Când aceasta este activată, postările dumneavoastră nu vor expira niciodată. Apoi setările de mai sus devin valide doar pentru postările pe care le-ați primit.'; $a->strings['Notification Settings'] = 'Configurări de Notificare'; $a->strings['Send a notification email when:'] = 'Trimiteți o notificare email atunci când:'; $a->strings['You receive an introduction'] = 'Primiți o introducere'; @@ -1358,12 +1372,24 @@ $a->strings['Someone commented in a thread where you interacted'] = 'Cineva a co $a->strings['Activate desktop notifications'] = 'Activați notificările desktop'; $a->strings['Advanced Account/Page Type Settings'] = 'Configurări Avansate Cont/Tip Pagină'; $a->strings['Change the behaviour of this account for special situations'] = 'Modificați comportamentul acestui cont pentru situațiile speciale'; +$a->strings['Upload File'] = 'Încărcați fișierul'; $a->strings['Relocate'] = 'Mutare'; $a->strings['If you have moved this profile from another server, and some of your contacts don\'t receive your updates, try pushing this button.'] = 'Dacă aţi mutat acest profil dintr-un alt server, şi unele dintre contactele dvs. nu primesc actualizările dvs., încercaţi să apăsați acest buton.'; $a->strings['Resend relocate message to contacts'] = 'Retrimiteți contactelor, mesajul despre mutare'; $a->strings['Addon Settings'] = 'Setări suplimente'; +$a->strings['Label'] = 'Etichetă'; +$a->strings['Description'] = 'Descriere'; +$a->strings['Access Key'] = 'Cheie de acces'; +$a->strings['Circle/Channel'] = 'Cerc/Canal'; +$a->strings['Include Tags'] = 'Include etichete'; +$a->strings['Exclude Tags'] = 'Exclude etichete'; +$a->strings['Delete channel'] = 'Ștergeți canalul'; $a->strings['Short name for the channel. It is displayed on the channels widget.'] = 'Numele scurt al acestui canal. Va fi afișat în widget-ul cu canale.'; +$a->strings['Check to display images in the channel.'] = 'Bifați pentru a afișa imagini în canal.'; +$a->strings['Check to display videos in the channel.'] = 'Bifați pentru a afișa videoclipuri în canal.'; +$a->strings['Check to display audio in the channel.'] = 'Bifați pentru a afișa audio în canal.'; $a->strings['This page can be used to define your own channels.'] = 'Această pagină poate fi folosită pentru a vă defini propriile canale.'; +$a->strings['Add new entry to the channel list'] = 'Adăugați o intrare nouă în lista canalului'; $a->strings['Add'] = 'Adăugare'; $a->strings['Failed to connect with email account using the settings provided.'] = 'A eşuat conectarea cu, contul de email, folosind configurările furnizate.'; $a->strings['Diaspora (Socialhome, Hubzilla)'] = 'Diaspora (Socialhome, Hubzilla)'; @@ -1408,6 +1434,8 @@ $a->strings['Update browser every xx seconds'] = 'Actualizare browser la fiecare $a->strings['Display emoticons'] = 'Afișează emoticoanele'; $a->strings['When enabled, emoticons are replaced with matching symbols.'] = 'Când aceasta este activată, emoticoanele sunt înlocuite cu simboluri aferente acestora.'; $a->strings['Infinite scroll'] = 'Derulare infinită'; +$a->strings['Display the Dislike feature'] = 'Afișați butonul Nu-mi place:'; +$a->strings['Display the Dislike button and dislike reactions on posts and comments.'] = 'Afișați butonul Nu-mi place și reacțiile Nu-mi place postărilor și comentariilor.'; $a->strings['Enable timelines that you want to see in the channels widget. Bookmark timelines that you want to see in the top menu.'] = 'Activați cronologiile pe care vreți să le vedeți în widget-ul de canale. Marcați cronologiile pe care vreți să le vedeți în meniul de sus.'; $a->strings['Channel languages:'] = 'Limbile canalelor:'; $a->strings['Select all languages that you want to see in your channels.'] = 'Selectați toate limbile pe care vreți să le vedeți în canalele dumneavoastră.'; @@ -1466,22 +1494,38 @@ $a->strings['Remove My Account'] = 'Șterge Contul Meu'; $a->strings['This will completely remove your account. Once this has been done it is not recoverable.'] = 'Aceasta va elimina complet contul dvs. Odată ce a fostă, această acțiune este nerecuperabilă.'; $a->strings['Please enter your password for verification:'] = 'Vă rugăm să introduceţi parola dvs. pentru verificare:'; $a->strings['Remote server settings'] = 'Setări servere la distanță'; +$a->strings['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.'] = 'Aici puteți vedea toate serverele externe împotriva cărora ați luat acțiuni de moderare. Pentru o listă a serverelor pe care nodul dumneavoastră le-a blocat, vă rugăm să verificați pagina de Informații.'; $a->strings['Save changes'] = 'Salvează schimbările'; +$a->strings['App-specific password generation failed: The description is empty.'] = 'Generarea de parolă pentru o aplicație specifică a eșuat. Descrierea este goală.'; +$a->strings['App-specific password generation failed: This description already exists.'] = 'Generarea de parolă pentru o aplicație specifică a eșuat. Această descriere deja există.'; +$a->strings['New app-specific password generated.'] = 'Parola pentru o aplicație specifică a fost generată'; +$a->strings['App-specific passwords successfully revoked.'] = 'Parolele de aplicații specifice au fost revocate cu succes.'; +$a->strings['App-specific password successfully revoked.'] = 'Parola pentru o aplicație specifică a fost revocată cu succes.'; $a->strings['Friendiqa on my Fairphone 2...'] = 'Friendiqa pe Fairphone 2...'; $a->strings['Generate'] = 'Generează'; $a->strings['Two-factor authentication successfully disabled.'] = 'Autentificarea cu doi factori a fost dezactivată cu succes'; $a->strings['Recovery codes'] = 'Coduri de recupare'; $a->strings['Remaining valid codes'] = 'Coduri de recuperare valide rămase'; +$a->strings['App-specific passwords'] = 'Parole pentru aplicații specifice'; +$a->strings['Generated app-specific passwords'] = 'Parole generate pentru aplicații specifice'; +$a->strings['

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

'] = '

Aceste parole generate aleatoriu vă permit să vă autentificați în aplicații care nu suportă autentificarea prin doi factori

'; $a->strings['Current password:'] = 'Parola curentă:'; +$a->strings['You need to provide your current password to change two-factor authentication settings.'] = 'Aveți nevoie să furnizați parola dumneavoastră pentru a schimba setările autentificării cu doi factori.'; $a->strings['Enable two-factor authentication'] = 'Activați autentificarea prin doi factori'; $a->strings['Disable two-factor authentication'] = 'Eliminați autentificarea prin doi factori'; $a->strings['Show recovery codes'] = 'Arată codurile de recuperare'; $a->strings['Manage app-specific passwords'] = 'Administrați parole specifice aplicațiilor'; $a->strings['Manage trusted browsers'] = 'Administrați browsere de încredere'; +$a->strings['Two-factor recovery codes'] = 'Coduri de recuperare pentru autentificarea cu doi factori'; +$a->strings['

Recovery codes can be used to access your account in the event you lose access to your device and cannot receive two-factor authentication codes.

Put these in a safe spot! If you lose your device and don’t have the recovery codes you will lose access to your account.

'] = '

Codurile de recuperare pot fi folosite pentru a vă accesa contul în cazul în care pierdeți accesul la dispozitivul dumneavoastră și nu mai puteți primi codurile de autentificare cu doi factori.

Puneți acestea într-un loc sigur! Dacă vă pierdeți dispozitivul și nu aveți codurile de recuperare veți pierde accesul la contul dumneavoastră.

'; +$a->strings['When you generate new recovery codes, you must copy the new codes. Your old codes won’t work anymore.'] = 'Când veți genera noi coduri de recuperare, va trebui să copiați noile coduri. Vechile dumneavoastră coduri nu vor mai funcționa.'; $a->strings['Generate new recovery codes'] = 'Generați noi coduri de verificare'; $a->strings['Next: Verification'] = 'Următorul: Verificarea'; $a->strings['Device'] = 'Dispozitiv'; $a->strings['OS'] = 'Sistem de Operare'; +$a->strings['Two-factor authentication successfully activated.'] = 'Autentificarea cu doi factori a fost activată cu succes.'; +$a->strings['

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

'] = '

Vă rugăm să scanați acest cod QR cu aplicația dumneavoastră de autentificare și să furnizați codul oferit.

'; +$a->strings['Verify code and enable two-factor authentication'] = 'Verificați codul și activați autentificarea cu doi factori'; $a->strings['Export account'] = 'Exportare cont'; $a->strings['Export your account info and contacts. Use this to make a backup of your account and/or to move it to another server.'] = 'Exportați-vă informațiile contului şi contactele. Utilizaţi aceasta pentru a face o copie de siguranţă a contului dumneavoastră şi/sau pentru a-l muta pe un alt server.'; $a->strings['Export all'] = 'Exportare tot'; @@ -1495,12 +1539,16 @@ $a->strings['You have ignored or blocked the top-level author or the author of t $a->strings['You have ignored the top-level author\'s server or the shared post author\'s server.'] = 'Ați ignorat serverul autorului de nivel superior sau pe cel al autorului postării distribuite.'; $a->strings['Conversation Not Found'] = 'Conversație Negăsită'; $a->strings['Unfortunately, the requested conversation isn\'t available to you.'] = 'Din nefericire, conversația cerută nu este disponibilă.'; +$a->strings['Possible reasons include:'] = 'Motivele posibile includ:'; +$a->strings['Privacy Statement'] = 'Declarație de Confidențialitate'; +$a->strings['Rules'] = 'Reguli'; $a->strings['The requested item doesn\'t exist or has been deleted.'] = 'Elementul solicitat nu există sau a fost șters.'; $a->strings['You are now logged in as %s'] = 'V-ați logat ca %s'; $a->strings['Switch between your accounts'] = 'Comutați conturile dvs.'; $a->strings['Manage your accounts'] = 'Administrați-vă conturile'; $a->strings['Toggle between different identities or community/group pages which share your account details or which you have been granted "manage" permissions'] = 'Comutați între diferitele identităţi sau pagini de comunitate/grup, care împărtășesc detaliile contului dvs. sau pentru care v-au fost acordate drepturi de "gestionare "'; $a->strings['Select an identity to manage: '] = 'Selectaţi o identitate de gestionat:'; +$a->strings['User imports on closed servers can only be done by an administrator.'] = 'Importurile de utilizatori pe servere închise pot fi făcute doar de un administrator.'; $a->strings['Move account'] = 'Mutaţi contul'; $a->strings['You can import an account from another Friendica server.'] = 'Puteţi importa un cont dintr-un alt server Friendica.'; $a->strings['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.'] = 'Trebuie să vă exportați contul din vechiul server și să-l încărcați aici. Vă vom recrea vechiul cont, aici cu toate contactele sale. Vom încerca de asemenea să vă informăm prietenii că v-ați mutat aici.'; @@ -1545,7 +1593,7 @@ $a->strings['Getting Help'] = 'Obţinerea de Ajutor'; $a->strings['Go to the Help Section'] = 'Navigați la Secțiunea Ajutor'; $a->strings['Our help pages may be consulted for detail on other program features and resources.'] = 'Paginile noastre de ajutor pot fi consultate pentru detalii, prin alte funcții şi resurse de program.'; $a->strings['%s liked %s\'s post'] = '%s a apreciat ceea a publicat %s'; -$a->strings['%s disliked %s\'s post'] = '%s a nu a apreciat ceea a publicat %s'; +$a->strings['%s disliked %s\'s post'] = '%s nu a apreciat ceea a publicat %s'; $a->strings['%s is now friends with %s'] = '%s este acum prieten cu %s'; $a->strings['%s commented on %s\'s post'] = '%s a comentat la articolul postat de %s'; $a->strings['%s created a new post'] = '%s a creat o nouă postare'; @@ -1553,6 +1601,7 @@ $a->strings['Friend Suggestion'] = 'Sugestie Prietenie'; $a->strings['Friend/Connect Request'] = 'Prieten/Solicitare de Conectare'; $a->strings['New Follower'] = 'Susţinător Nou'; $a->strings['%1$s liked your post %2$s'] = 'Lui %1$s îi place postarea dumneavoastră %2$s'; +$a->strings['%1$s disliked your comment on %2$s'] = 'Lui %1$s nu-i place comentariul dumneavoastră la %2$s'; $a->strings['%1$s disliked your post %2$s'] = 'Lui %1$s nu-i place postarea dumneavoastră %2$s'; $a->strings['%1$s shared your post %2$s'] = '%1$s a distribuit postarea dumneavoastră %2$s'; $a->strings['%1$s shared the post %2$s from %3$s'] = '%1$s a distribuit postarea %2$s de la %3$s'; @@ -1609,6 +1658,7 @@ $a->strings['%d comment'] = [ 2 => '%d comentarii', ]; $a->strings['Reshared by: %s'] = 'Redistribuit de: %s'; +$a->strings['Disliked by: %s'] = 'Neapreciat de: %s'; $a->strings['following'] = 'urmărire'; $a->strings['stopped following'] = 'urmărire întreruptă'; $a->strings['Login failed.'] = 'Eşec la conectare'; diff --git a/view/templates/profile/unkmail-header.tpl b/view/templates/profile/unkmail-header.tpl deleted file mode 100644 index 2c7d8a9acc..0000000000 --- a/view/templates/profile/unkmail-header.tpl +++ /dev/null @@ -1,15 +0,0 @@ - - diff --git a/view/templates/profile/unkmail.tpl b/view/templates/profile/unkmail.tpl deleted file mode 100644 index 7faa155f29..0000000000 --- a/view/templates/profile/unkmail.tpl +++ /dev/null @@ -1,26 +0,0 @@ -
-

{{$l10n.header}}

-

{{$l10n.subheader}}

-
-
- {{include file="field_input.tpl" field=$to}} - - {{include file="field_input.tpl" field=$subject}} - - {{include file="field_textarea.tpl" field=$body}} - -
- - -
- -
-
-
-
-
-
diff --git a/view/templates/settings/account.tpl b/view/templates/settings/account.tpl index 6480c0de18..676b12bfdc 100644 --- a/view/templates/settings/account.tpl +++ b/view/templates/settings/account.tpl @@ -56,8 +56,6 @@ {{include file="field_checkbox.tpl" field=$blockwall}} {{include file="field_checkbox.tpl" field=$blocktags}} {{/if}} - {{include file="field_checkbox.tpl" field=$unkmail}} - {{include file="field_input.tpl" field=$cntunkmail}} {{$circle_select nofilter}} {{$circle_select_group nofilter}} diff --git a/view/theme/frio/templates/settings/account.tpl b/view/theme/frio/templates/settings/account.tpl index 35792fe3a7..375758c7e6 100644 --- a/view/theme/frio/templates/settings/account.tpl +++ b/view/theme/frio/templates/settings/account.tpl @@ -88,8 +88,6 @@ {{include file="field_checkbox.tpl" field=$blockwall}} {{include file="field_checkbox.tpl" field=$blocktags}} {{/if}} - {{include file="field_checkbox.tpl" field=$unkmail}} - {{include file="field_input.tpl" field=$cntunkmail}} {{$circle_select nofilter}} diff --git a/view/theme/smoothly/style.css b/view/theme/smoothly/style.css index 3e38030b97..dd15aafc8a 100644 --- a/view/theme/smoothly/style.css +++ b/view/theme/smoothly/style.css @@ -4494,7 +4494,6 @@ div #datebrowse-sidebar.widget { } #id_maxreq, -#id_cntunkmail, #id_expire { width: 75px; }